2018-05-07 08:10:49 +00:00
|
|
|
// SPDX-License-Identifier: GPL-2.0-or-later OR MIT
|
2020-09-25 19:52:57 +00:00
|
|
|
|
|
|
|
#include "ar9330.dtsi"
|
2018-05-06 08:20:11 +00:00
|
|
|
|
|
|
|
#include <dt-bindings/gpio/gpio.h>
|
|
|
|
#include <dt-bindings/input/input.h>
|
|
|
|
|
|
|
|
/ {
|
|
|
|
model = "GL.iNet GL-AR150";
|
2018-12-30 20:37:50 +00:00
|
|
|
compatible = "glinet,gl-ar150", "qca,ar9330";
|
2018-05-06 08:20:11 +00:00
|
|
|
|
|
|
|
aliases {
|
|
|
|
serial0 = &uart;
|
2020-05-31 10:46:26 +00:00
|
|
|
led-boot = &led_power;
|
|
|
|
led-failsafe = &led_power;
|
|
|
|
led-running = &led_power;
|
|
|
|
led-upgrade = &led_power;
|
ath79: provide label MAC address
This patch adds the label MAC address for several devices in
ath79.
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:
- alfa-network,ap121f
- avm,fritz300e
- ubnt-xm devices
For the following devices, label MAC address is tied to lan or
wan, so no node to link to exists in device tree:
- adtran,bsap1800-v2
- adtran,bsap1840
- dlink,dir-842-c1/-c2/-c3
- engenius,ecb1750
- iodata,etg3-r
- iodata,wn-ac1167dgr
- iodata,wn-ac1600dgr
- iodata,wn-ac1600dgr2
- iodata,wn-ag300dgr
- nec,wg800hp
- nec,wg1200cr
- trendnet,tew-823dru
Signed-off-by: Adrian Schmutzler <freifunk@adrianschmutzler.de>
2019-08-15 13:13:33 +00:00
|
|
|
label-mac-device = ð0;
|
2018-05-06 08:20:11 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
leds {
|
|
|
|
compatible = "gpio-leds";
|
|
|
|
|
2020-05-31 10:46:26 +00:00
|
|
|
wlan {
|
2018-05-06 08:20:11 +00:00
|
|
|
label = "gl-ar150:orange:wlan";
|
|
|
|
gpios = <&gpio 0 GPIO_ACTIVE_HIGH>;
|
2018-06-16 06:13:09 +00:00
|
|
|
linux,default-trigger = "phy0tpt";
|
2018-05-06 08:20:11 +00:00
|
|
|
};
|
|
|
|
|
2020-05-31 10:46:26 +00:00
|
|
|
configurable {
|
|
|
|
label = "gl-ar150:green:configurable";
|
2018-05-06 08:20:11 +00:00
|
|
|
gpios = <&gpio 13 GPIO_ACTIVE_HIGH>;
|
|
|
|
};
|
|
|
|
|
2020-05-31 10:46:26 +00:00
|
|
|
led_power: power {
|
|
|
|
label = "gl-ar150:green:power";
|
2018-05-06 08:20:11 +00:00
|
|
|
gpios = <&gpio 15 GPIO_ACTIVE_HIGH>;
|
2020-05-31 10:46:26 +00:00
|
|
|
default-state = "on";
|
2018-05-06 08:20:11 +00:00
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
keys {
|
2019-08-10 17:22:40 +00:00
|
|
|
compatible = "gpio-keys";
|
2018-05-06 08:20:11 +00:00
|
|
|
|
|
|
|
manual {
|
|
|
|
label = "manual";
|
|
|
|
linux,code = <BTN_7>;
|
|
|
|
gpios = <&gpio 7 GPIO_ACTIVE_HIGH>;
|
|
|
|
};
|
|
|
|
|
|
|
|
auto {
|
|
|
|
label = "auto";
|
|
|
|
linux,code = <BTN_8>;
|
|
|
|
gpios = <&gpio 8 GPIO_ACTIVE_HIGH>;
|
|
|
|
};
|
|
|
|
|
|
|
|
reset {
|
|
|
|
label = "reset";
|
|
|
|
linux,code = <KEY_RESTART>;
|
|
|
|
gpios = <&gpio 11 GPIO_ACTIVE_HIGH>;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
&uart {
|
|
|
|
status = "okay";
|
|
|
|
};
|
|
|
|
|
|
|
|
&usb {
|
|
|
|
dr_mode = "host";
|
|
|
|
status = "okay";
|
|
|
|
};
|
|
|
|
|
|
|
|
&usb_phy {
|
|
|
|
status = "okay";
|
|
|
|
gpios = <&gpio 6 GPIO_ACTIVE_HIGH>;
|
|
|
|
};
|
|
|
|
|
|
|
|
&spi {
|
|
|
|
status = "okay";
|
|
|
|
|
2019-11-05 18:23:33 +00:00
|
|
|
num-chipselects = <1>;
|
|
|
|
|
2018-08-06 06:17:24 +00:00
|
|
|
flash@0 {
|
2018-05-06 08:20:11 +00:00
|
|
|
compatible = "jedec,spi-nor";
|
2020-02-27 10:55:36 +00:00
|
|
|
spi-max-frequency = <50000000>;
|
2018-05-06 08:20:11 +00:00
|
|
|
reg = <0>;
|
|
|
|
|
2018-05-07 08:35:51 +00:00
|
|
|
partitions {
|
|
|
|
compatible = "fixed-partitions";
|
|
|
|
#address-cells = <1>;
|
|
|
|
#size-cells = <1>;
|
|
|
|
|
|
|
|
partition@0 {
|
|
|
|
label = "u-boot";
|
|
|
|
reg = <0x000000 0x040000>;
|
|
|
|
read-only;
|
|
|
|
};
|
|
|
|
|
|
|
|
partition@1 {
|
|
|
|
label = "u-boot-env";
|
|
|
|
reg = <0x040000 0x010000>;
|
|
|
|
};
|
|
|
|
|
|
|
|
partition@2 {
|
2018-11-29 13:07:59 +00:00
|
|
|
compatible = "denx,uimage";
|
2018-05-07 08:35:51 +00:00
|
|
|
label = "firmware";
|
|
|
|
reg = <0x050000 0xfa0000>;
|
|
|
|
};
|
|
|
|
|
|
|
|
art: partition@3 {
|
2019-06-05 13:59:30 +00:00
|
|
|
label = "art";
|
2018-05-07 08:35:51 +00:00
|
|
|
reg = <0xff0000 0x010000>;
|
|
|
|
read-only;
|
|
|
|
};
|
2018-05-06 08:20:11 +00:00
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
ð0 {
|
|
|
|
status = "okay";
|
|
|
|
|
|
|
|
mtd-mac-address = <&art 0x0>;
|
|
|
|
};
|
|
|
|
|
|
|
|
ð1 {
|
|
|
|
status = "okay";
|
|
|
|
|
|
|
|
mtd-mac-address = <&art 0x0>;
|
|
|
|
|
|
|
|
gmac-config {
|
|
|
|
device = <&gmac>;
|
|
|
|
|
|
|
|
switch-phy-addr-swap = <0>;
|
|
|
|
switch-phy-swap = <0>;
|
|
|
|
};
|
|
|
|
};
|
2018-05-14 05:11:56 +00:00
|
|
|
|
|
|
|
&wmac {
|
|
|
|
status = "okay";
|
2019-11-05 18:23:33 +00:00
|
|
|
|
2018-05-14 05:11:56 +00:00
|
|
|
mtd-cal-data = <&art 0x1000>;
|
|
|
|
mtd-mac-address = <&art 0x0>;
|
|
|
|
};
|