aboutsummaryrefslogtreecommitdiffstats
path: root/target/linux/ramips/dts
diff options
context:
space:
mode:
authorAnton Arapov <arapov@gmail.com>2018-12-29 01:28:27 +0100
committerMathias Kresin <dev@kresin.me>2019-01-05 12:28:22 +0100
commit52f2d7d2a9dc3e142bb957462a30806eb5cebaf4 (patch)
treeee2f1c8361272cedff87f220d059c3a0093425fb /target/linux/ramips/dts
parenta54129d8aa62e63d2e1ab483cf67411d144f19d9 (diff)
downloadupstream-52f2d7d2a9dc3e142bb957462a30806eb5cebaf4.tar.gz
upstream-52f2d7d2a9dc3e142bb957462a30806eb5cebaf4.tar.bz2
upstream-52f2d7d2a9dc3e142bb957462a30806eb5cebaf4.zip
ramips: add RB750Gr3 native support
This patch adds support of MikroTik RouterBOARD 750Gr3, without the need to reflashing the bootloader. Installation through RouterBoot follows the usual MikroTik method https://openwrt.org/toh/mikrotik/common Since the image isn't compatible with RouterBOARD 750Gr3 installations which have replaced the bootloader, the former used userspace boardname is not added to the SUPPORTED_DEVICES, to prevent a brick while trying to upgrade to the image with native support. Signed-off-by: Anton Arapov <arapov@gmail.com> Signed-off-by: Thibaut VARĂˆNE <hacks@slashdirt.org> Signed-off-by: Mathias Kresin <dev@kresin.me>
Diffstat (limited to 'target/linux/ramips/dts')
-rw-r--r--target/linux/ramips/dts/RB750Gr3.dts58
1 files changed, 39 insertions, 19 deletions
diff --git a/target/linux/ramips/dts/RB750Gr3.dts b/target/linux/ramips/dts/RB750Gr3.dts
index 6b18cce78f..da9167ad81 100644
--- a/target/linux/ramips/dts/RB750Gr3.dts
+++ b/target/linux/ramips/dts/RB750Gr3.dts
@@ -22,7 +22,7 @@
};
chosen {
- bootargs = "console=ttyS0,57600";
+ bootargs = "console=ttyS0,115200";
};
gpio-leds {
@@ -89,34 +89,54 @@
#size-cells = <1>;
partition@0 {
- label = "u-boot";
- reg = <0x0 0x30000>;
+ label = "RouterBoot";
+ reg = <0x0 0x40000>;
read-only;
+ compatible = "fixed-partitions";
+ #address-cells = <1>;
+ #size-cells = <1>;
+
+ partition@0 {
+ label = "bootloader1";
+ reg = <0x0 0xf000>;
+ read-only;
+ };
+
+ hard_config: partition@f000 {
+ label = "hard_config";
+ reg = <0xf000 0x1000>;
+ read-only;
+ };
+
+ partition@10000 {
+ label = "bootloader2";
+ reg = <0x10000 0xf000>;
+ read-only;
+ };
+
+ partition@20000 {
+ label = "soft_config";
+ reg = <0x20000 0x1000>;
+ };
+
+ partition@30000 {
+ label = "bios";
+ reg = <0x30000 0x1000>;
+ read-only;
+ };
};
- partition@30000 {
- label = "u-boot-env";
- reg = <0x30000 0x10000>;
- read-only;
- };
-
- factory: partition@40000 {
- label = "factory";
- reg = <0x40000 0x10000>;
- read-only;
- };
-
- partition@50000 {
- compatible = "denx,uimage";
+ partition@40000 {
+ compatible = "mikrotik,minor";
label = "firmware";
- reg = <0x50000 0xfb0000>;
+ reg = <0x040000 0xfc0000>;
};
};
};
};
&ethernet {
- mtd-mac-address = <&factory 0xe000>;
+ mtd-mac-address = <&hard_config 0x0010>;
mtd-mac-address-increment = <1>;
};