2019-03-15 20:02:54 +00:00
|
|
|
// SPDX-License-Identifier: GPL-2.0-or-later OR MIT
|
2020-09-25 19:52:57 +00:00
|
|
|
|
|
|
|
#include "qca953x.dtsi"
|
2019-03-15 20:02:54 +00:00
|
|
|
|
|
|
|
#include <dt-bindings/gpio/gpio.h>
|
|
|
|
#include <dt-bindings/input/input.h>
|
|
|
|
|
|
|
|
/ {
|
2020-10-06 12:08:28 +00:00
|
|
|
compatible = "ubnt,aircube-isp", "qca,qca9533";
|
2019-03-15 20:02:54 +00:00
|
|
|
model = "Ubiquiti airCube ISP";
|
|
|
|
|
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
|
|
|
aliases {
|
|
|
|
label-mac-device = &wmac;
|
|
|
|
};
|
|
|
|
|
2019-03-15 20:02:54 +00:00
|
|
|
keys {
|
|
|
|
compatible = "gpio-keys";
|
|
|
|
|
|
|
|
reset {
|
|
|
|
label = "reset";
|
|
|
|
linux,code = <KEY_RESTART>;
|
|
|
|
gpios = <&gpio 17 GPIO_ACTIVE_LOW>;
|
|
|
|
debounce-interval = <60>;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
&spi {
|
|
|
|
status = "okay";
|
|
|
|
|
|
|
|
flash@0 {
|
|
|
|
compatible = "jedec,spi-nor";
|
|
|
|
reg = <0>;
|
|
|
|
spi-max-frequency = <25000000>;
|
|
|
|
|
|
|
|
partitions {
|
|
|
|
compatible = "fixed-partitions";
|
|
|
|
#address-cells = <1>;
|
|
|
|
#size-cells = <1>;
|
|
|
|
|
|
|
|
partition@0 {
|
|
|
|
label = "u-boot";
|
|
|
|
reg = <0x000000 0x040000>;
|
|
|
|
read-only;
|
|
|
|
};
|
|
|
|
|
|
|
|
partition@40000 {
|
|
|
|
label = "u-boot-env";
|
|
|
|
reg = <0x040000 0x010000>;
|
|
|
|
read-only;
|
|
|
|
};
|
|
|
|
|
|
|
|
partition@50000 {
|
|
|
|
compatible = "denx,uimage";
|
|
|
|
label = "firmware";
|
|
|
|
reg = <0x050000 0xf60000>;
|
|
|
|
};
|
|
|
|
|
|
|
|
partition@fb0000 {
|
|
|
|
label = "cfg";
|
|
|
|
reg = <0xfb0000 0x040000>;
|
|
|
|
read-only;
|
|
|
|
};
|
|
|
|
|
2019-11-22 13:42:47 +00:00
|
|
|
art: partition@ff0000 {
|
|
|
|
label = "art";
|
2019-03-15 20:02:54 +00:00
|
|
|
reg = <0xff0000 0x010000>;
|
|
|
|
read-only;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
ð0 {
|
|
|
|
status = "okay";
|
2020-08-12 12:20:18 +00:00
|
|
|
|
2019-03-15 20:02:54 +00:00
|
|
|
phy-handle = <&swphy4>;
|
2020-08-12 12:20:18 +00:00
|
|
|
|
|
|
|
mtd-mac-address = <&art 0x0>;
|
2019-03-15 20:02:54 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
ð1 {
|
2019-11-22 13:42:47 +00:00
|
|
|
mtd-mac-address = <&art 0x6>;
|
2019-03-15 20:02:54 +00:00
|
|
|
|
|
|
|
gmac-config {
|
|
|
|
device = <&gmac>;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
&wmac {
|
|
|
|
status = "okay";
|
2019-11-22 13:42:47 +00:00
|
|
|
mtd-cal-data = <&art 0x1000>;
|
2019-03-15 20:02:54 +00:00
|
|
|
};
|