mirror of
https://github.com/openwrt/openwrt.git
synced 2024-12-20 22:23:27 +00:00
55aac8463f
Like in the previous patches for various targets, this will remove the "devicename" from LED labels in bcm63xx, as it's useless and only creates complexity. The devicename is removed in DTS files and 01_leds, merging several cases on the way. A migration script is added for existing configurations. Note that a few labels were using "model::function" scheme without color specified, those were converting to just "function" and the necessary migrations were added to the migration script. Signed-off-by: Adrian Schmutzler <freifunk@adrianschmutzler.de>
126 lines
2.1 KiB
Plaintext
126 lines
2.1 KiB
Plaintext
/dts-v1/;
|
|
|
|
#include "bcm63268.dtsi"
|
|
|
|
#include <dt-bindings/input/input.h>
|
|
|
|
/ {
|
|
model = "SKY SR102";
|
|
compatible = "sky,sr102", "brcm,bcm63168", "brcm,bcm63268";
|
|
|
|
aliases {
|
|
led-boot = &led_power_white;
|
|
led-failsafe = &led_power_white;
|
|
led-running = &led_power_white;
|
|
led-upgrade = &led_power_white;
|
|
};
|
|
|
|
chosen {
|
|
bootargs = "rootfstype=squashfs,jffs2 noinitrd console=ttyS0,115200";
|
|
stdout-path = "serial0:115200n8";
|
|
};
|
|
|
|
keys {
|
|
compatible = "gpio-keys-polled";
|
|
#address-cells = <1>;
|
|
#size-cells = <0>;
|
|
poll-interval = <20>;
|
|
|
|
wps {
|
|
label = "wps";
|
|
gpios = <&pinctrl 33 0>;
|
|
linux,code = <KEY_WPS_BUTTON>;
|
|
debounce-interval = <60>;
|
|
};
|
|
};
|
|
|
|
leds {
|
|
compatible = "gpio-leds";
|
|
|
|
lan1_green {
|
|
label = "green:lan1";
|
|
gpios = <&pinctrl 1 1>;
|
|
};
|
|
power_red {
|
|
label = "red:power";
|
|
gpios = <&pinctrl 2 1>;
|
|
};
|
|
wifi_red {
|
|
label = "red:wifi";
|
|
gpios = <&pinctrl 3 1>;
|
|
};
|
|
inet_red {
|
|
label = "red:inet";
|
|
gpios = <&pinctrl 4 1>;
|
|
};
|
|
inet_white {
|
|
label = "white:inet";
|
|
gpios = <&pinctrl 5 0>;
|
|
};
|
|
led_power_white: power_white {
|
|
label = "white:power";
|
|
gpios = <&pinctrl 6 0>;
|
|
default-state = "on";
|
|
};
|
|
wifi_white {
|
|
label = "white:wifi";
|
|
gpios = <&pinctrl 8 0>;
|
|
};
|
|
lan2_red {
|
|
label = "red:lan2";
|
|
gpios = <&pinctrl 9 1>;
|
|
};
|
|
lan3_red {
|
|
label = "red:lan3";
|
|
gpios = <&pinctrl 10 1>;
|
|
};
|
|
lan4_red {
|
|
label = "red:lan4";
|
|
gpios = <&pinctrl 11 1>;
|
|
};
|
|
lan1_red {
|
|
label = "red:lan1";
|
|
gpios = <&pinctrl 12 1>;
|
|
};
|
|
lan2_green {
|
|
label = "green:lan2";
|
|
gpios = <&pinctrl 13 0>;
|
|
};
|
|
lan3_green {
|
|
label = "green:lan3";
|
|
gpios = <&pinctrl 14 1>;
|
|
};
|
|
lan4_green {
|
|
label = "green:lan4";
|
|
gpios = <&pinctrl 15 1>;
|
|
};
|
|
hd_white {
|
|
label = "white:hd";
|
|
gpios = <&pinctrl 18 0>;
|
|
};
|
|
};
|
|
};
|
|
|
|
&hsspi {
|
|
status = "okay";
|
|
|
|
flash@0 {
|
|
compatible = "jedec,spi-nor";
|
|
spi-max-frequency = <16666667>;
|
|
spi-tx-bus-width = <2>;
|
|
spi-rx-bus-width = <2>;
|
|
reg = <0>;
|
|
|
|
#address-cells = <1>;
|
|
#size-cells = <1>;
|
|
|
|
partitions {
|
|
compatible = "brcm,bcm963xx-cfe-nor-partitions";
|
|
};
|
|
};
|
|
};
|
|
|
|
&uart0 {
|
|
status = "okay";
|
|
};
|