2017-05-29 09:24:49 +00:00
|
|
|
#include "mt7621.dtsi"
|
|
|
|
|
|
|
|
#include <dt-bindings/gpio/gpio.h>
|
|
|
|
#include <dt-bindings/input/input.h>
|
|
|
|
|
|
|
|
/ {
|
ramips: provide label MAC address
This patch adds the label MAC address for several devices in
ramips.
Some devices require setting the MAC address in 02_network:
For the following devices, the netif device can be linked in
device tree, but the MAC address cannot be read:
- cudy,wr1000
- dlink,dir-615-d
- dlink,dir-615-h1
- dlink,dir-860l-b1
- glinet,gl-mt300a
- glinet,gl-mt300n
- glinet,gl-mt750
- vocore,vocore2
- vocore,vocore2-lite
- zbtlink,zbt-we1326
- zbtlink,zbt-wg3526
For the following devices, label MAC address is tied to lan or
wan, so no node to link to exists in device tree:
- dlink,dir-510l
- dlink,dwr-116-a1
- dlink,dwr-118-a1
- dlink,dwr-118-a2
- dlink,dwr-921-c1
- dlink,dwr-922-e2
- all hiwifi devices
- lava,lr-25g001
- xiaomi,mir3p
Signed-off-by: Adrian Schmutzler <freifunk@adrianschmutzler.de>
2019-06-24 15:57:15 +00:00
|
|
|
aliases {
|
|
|
|
label-mac-device = ðernet;
|
|
|
|
};
|
|
|
|
|
2017-05-29 09:24:49 +00:00
|
|
|
chosen {
|
|
|
|
bootargs = "console=ttyS0,57600";
|
|
|
|
};
|
|
|
|
|
2018-12-30 11:17:25 +00:00
|
|
|
keys {
|
2019-09-20 12:03:02 +00:00
|
|
|
compatible = "gpio-keys";
|
2017-05-29 09:24:49 +00:00
|
|
|
|
|
|
|
reset {
|
|
|
|
label = "reset";
|
2020-03-03 21:22:24 +00:00
|
|
|
gpios = <&gpio 12 GPIO_ACTIVE_LOW>;
|
2017-05-29 09:24:49 +00:00
|
|
|
linux,code = <KEY_RESTART>;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
ðernet {
|
|
|
|
mtd-mac-address = <&factory 0x22>;
|
|
|
|
};
|
|
|
|
|
|
|
|
&nand {
|
|
|
|
status = "okay";
|
|
|
|
|
2018-08-01 20:32:34 +00:00
|
|
|
partitions {
|
|
|
|
compatible = "fixed-partitions";
|
|
|
|
#address-cells = <1>;
|
|
|
|
#size-cells = <1>;
|
2017-05-29 09:24:49 +00:00
|
|
|
|
2018-08-01 20:32:34 +00:00
|
|
|
partition@0 {
|
|
|
|
label = "u-boot";
|
|
|
|
reg = <0x0 0x80000>;
|
|
|
|
read-only;
|
|
|
|
};
|
2017-05-29 09:24:49 +00:00
|
|
|
|
2018-08-01 20:32:34 +00:00
|
|
|
partition@80000 {
|
|
|
|
label = "u-boot-env";
|
|
|
|
reg = <0x80000 0x60000>;
|
|
|
|
read-only;
|
|
|
|
};
|
2017-05-29 09:24:49 +00:00
|
|
|
|
2018-08-01 20:32:34 +00:00
|
|
|
factory: partition@e0000 {
|
|
|
|
label = "factory";
|
|
|
|
reg = <0xe0000 0x60000>;
|
|
|
|
};
|
2017-05-29 09:24:49 +00:00
|
|
|
|
2018-08-01 20:32:34 +00:00
|
|
|
partition@140000 {
|
|
|
|
label = "kernel1";
|
|
|
|
reg = <0x140000 0x300000>;
|
|
|
|
};
|
2017-05-29 09:24:49 +00:00
|
|
|
|
2018-08-01 20:32:34 +00:00
|
|
|
partition@440000 {
|
|
|
|
label = "kernel2";
|
|
|
|
reg = <0x440000 0x300000>;
|
|
|
|
};
|
|
|
|
|
|
|
|
partition@740000 {
|
|
|
|
label = "ubi";
|
|
|
|
reg = <0x740000 0xf7c0000>;
|
|
|
|
};
|
2017-05-29 09:24:49 +00:00
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2019-12-22 20:26:01 +00:00
|
|
|
&state_default {
|
|
|
|
gpio {
|
|
|
|
ralink,group = "uart2", "uart3", "i2c", "pcie", "rgmii2", "jtag";
|
|
|
|
ralink,function = "gpio";
|
2017-05-29 09:24:49 +00:00
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
&spi0 {
|
2018-07-22 08:33:42 +00:00
|
|
|
/*
|
|
|
|
* This board has 2Mb spi flash soldered in and visible
|
|
|
|
* from manufacturer's firmware.
|
|
|
|
* But this SoC shares spi and nand pins,
|
|
|
|
* and current driver doesn't handle this sharing well
|
|
|
|
*/
|
2017-05-29 09:24:49 +00:00
|
|
|
status = "disabled";
|
|
|
|
|
2018-12-06 09:02:29 +00:00
|
|
|
m25p80@1 {
|
2017-05-29 09:24:49 +00:00
|
|
|
compatible = "jedec,spi-nor";
|
|
|
|
reg = <1>;
|
|
|
|
spi-max-frequency = <10000000>;
|
|
|
|
|
2018-08-01 20:32:34 +00:00
|
|
|
partitions {
|
|
|
|
compatible = "fixed-partitions";
|
|
|
|
#address-cells = <1>;
|
|
|
|
#size-cells = <1>;
|
|
|
|
|
|
|
|
partition@0 {
|
|
|
|
label = "spi";
|
|
|
|
reg = <0x0 0x200000>;
|
|
|
|
read-only;
|
|
|
|
};
|
2017-05-29 09:24:49 +00:00
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
&xhci {
|
|
|
|
status = "disabled";
|
|
|
|
};
|