The "/dts-v1/;" identifier is supposed to be present once at the top of a device tree file after the includes have been processed. Therefore, adding it to a DTS _and_ a DTSI file is actually wrong, as it will be present twice then (though the compiler does not complain about it). In ipq40xx, the dts-v1 statement is already included in qcom-ipq4019.dtsi, so we don't have to add it anywhere at all. However, based on the conditions stated above, this requires qcom-ipq4019.dtsi to be included as the first file in any DTS(I). Consequently, this patch removes all cases of dts-v1 for the ipq40xx target, and moves the includes accordingly where necessary. While at it, remove a few obviously unneeded includes on the way. Signed-off-by: Adrian Schmutzler <freifunk@adrianschmutzler.de>
81 lines
1.5 KiB
Plaintext
81 lines
1.5 KiB
Plaintext
// SPDX-License-Identifier: GPL-2.0-or-later OR MIT
|
|
|
|
#include "qcom-ipq4019-xx8300.dtsi"
|
|
|
|
/ {
|
|
model = "Linksys MR8300 (Dallas)";
|
|
compatible = "linksys,mr8300", "qcom,ipq4019";
|
|
|
|
aliases {
|
|
led-boot = &led_blue;
|
|
led-failsafe = &led_red;
|
|
led-running = &led_blue;
|
|
led-upgrade = &led_amber;
|
|
serial0 = &blsp1_uart1;
|
|
};
|
|
|
|
// Top panel LEDs, above Linksys logo
|
|
leds {
|
|
compatible = "gpio-leds";
|
|
|
|
led_red: red {
|
|
label = "mr8300:red:alarm";
|
|
gpios = <&tlmm 47 GPIO_ACTIVE_HIGH>;
|
|
};
|
|
|
|
led_amber: amber {
|
|
label = "mr8300:amber:programming";
|
|
gpios = <&tlmm 22 GPIO_ACTIVE_HIGH>;
|
|
panic-indicator;
|
|
};
|
|
|
|
led_blue: blue {
|
|
label = "mr8300:blue:power";
|
|
gpios = <&tlmm 46 GPIO_ACTIVE_HIGH>;
|
|
};
|
|
|
|
// On back panel, above USB socket
|
|
|
|
led_usb: usb {
|
|
label = "mr8300:green:usb";
|
|
gpios = <&tlmm 61 GPIO_ACTIVE_LOW>;
|
|
trigger-sources = <&usb3_port1>, <&usb3_port2>,
|
|
<&usb2_port1>;
|
|
linux,default-trigger = "usbport";
|
|
};
|
|
};
|
|
|
|
keys {
|
|
compatible = "gpio-keys";
|
|
|
|
reset {
|
|
label = "reset";
|
|
linux,code = <KEY_RESTART>;
|
|
gpios = <&tlmm 50 GPIO_ACTIVE_LOW>;
|
|
};
|
|
|
|
wps {
|
|
label = "wps";
|
|
linux,code = <KEY_WPS_BUTTON>;
|
|
gpios = <&tlmm 18 GPIO_ACTIVE_LOW>;
|
|
};
|
|
};
|
|
};
|
|
|
|
&wifi0 {
|
|
status = "okay";
|
|
qcom,ath10k-calibration-variant = "linksys-mr8300-v0-fcc";
|
|
};
|
|
|
|
&wifi1 {
|
|
status = "okay";
|
|
ieee80211-freq-limit = <5170000 5330000>;
|
|
qcom,ath10k-calibration-variant = "linksys-mr8300-v0-fcc";
|
|
};
|
|
|
|
&wifi2 {
|
|
status = "okay";
|
|
ieee80211-freq-limit = <5490000 5835000>;
|
|
qcom,ath10k-calibration-variant = "linksys-mr8300-v0-fcc";
|
|
};
|