mirror of
https://github.com/openwrt/openwrt.git
synced 2024-12-20 06:08:08 +00:00
621297e867
The "/dts-v1/;" identifier is supposed to be present once at the top of a device tree file after the includes have been processed. In ramips, we therefore requested to have in the DTS files so far, and omit it in the DTSI files. However, essentially the syntax of the parent mtxxxx/rtxxxx DTSI files already determines the DTS version, so putting it into the DTS files is just a useless repetition. Consequently, this patch puts the dts-v1 statement into the top-level SoC-based DTSI files, and removes all other occurences. Since the dts-v1 statement needs to be before any other definitions, this also moves the includes accordingly where necessary. Signed-off-by: Adrian Schmutzler <freifunk@adrianschmutzler.de>
64 lines
1.3 KiB
Plaintext
64 lines
1.3 KiB
Plaintext
// SPDX-License-Identifier: GPL-2.0-or-later OR MIT
|
|
|
|
#include "mt7621_dlink_dir-xx60-a1.dtsi"
|
|
|
|
/ {
|
|
compatible = "dlink,dir-2660-a1", "mediatek,mt7621-soc";
|
|
model = "D-Link DIR-2660 A1";
|
|
|
|
aliases {
|
|
led-boot = &led_power_orange;
|
|
led-failsafe = &led_power_white;
|
|
led-running = &led_power_white;
|
|
led-upgrade = &led_net_orange;
|
|
};
|
|
|
|
leds {
|
|
compatible = "gpio-leds";
|
|
|
|
led_power_orange: power_orange {
|
|
label = "dir-2660-a1:orange:power";
|
|
gpios = <&gpio 8 GPIO_ACTIVE_LOW>;
|
|
};
|
|
|
|
led_power_white: power_white {
|
|
label = "dir-2660-a1:white:power";
|
|
gpios = <&gpio 16 GPIO_ACTIVE_LOW>;
|
|
};
|
|
|
|
led_net_orange: net_orange {
|
|
label = "dir-2660-a1:orange:net";
|
|
gpios = <&gpio 4 GPIO_ACTIVE_LOW>;
|
|
};
|
|
|
|
net_white {
|
|
label = "dir-2660-a1:white:net";
|
|
gpios = <&gpio 3 GPIO_ACTIVE_LOW>;
|
|
};
|
|
|
|
usb2_white {
|
|
label = "dir-2660-a1:white:usb2";
|
|
gpios = <&gpio 13 GPIO_ACTIVE_LOW>;
|
|
trigger-sources = <&ehci_port2>;
|
|
linux,default-trigger = "usbport";
|
|
};
|
|
|
|
usb3_white {
|
|
label = "dir-2660-a1:white:usb3";
|
|
gpios = <&gpio 14 GPIO_ACTIVE_LOW>;
|
|
trigger-sources = <&xhci_ehci_port1>;
|
|
linux,default-trigger = "usbport";
|
|
};
|
|
};
|
|
};
|
|
|
|
&wifi0 {
|
|
mtd-mac-address = <&factory 0xe000>;
|
|
mtd-mac-address-increment = <1>;
|
|
};
|
|
|
|
&wifi1 {
|
|
mtd-mac-address = <&factory 0xe000>;
|
|
mtd-mac-address-increment = <2>;
|
|
};
|