mirror of
https://git.openwrt.org/openwrt/openwrt.git
synced 2024-11-22 04:56:15 +00:00
8b0c053671
This patch updates all current APM82181 devices over to that "new LED naming scheme". This includes many updates to the device-tree: - dropped the deprecated, but beloved "label" property. - rename all DT leds node names to led-#. - add function and color properties. - utilized panic-indicator property. - dropped led- aliases (see below). migration scripts for all devices are included. For more information. See: <https://www.kernel.org/doc/html/latest/leds/leds-class.html> For the future: It looks like the color+function properties won over the dt-alias / label. This will need to be wired up into openwrt eventually. For APM821xx the situation is that all devices have a dedicated power and fault indicator. Signed-off-by: Christian Lamparter <chunkeey@gmail.com>
48 lines
798 B
Plaintext
48 lines
798 B
Plaintext
// SPDX-License-Identifier: GPL-2.0-only
|
|
|
|
/dts-v1/;
|
|
|
|
#include "netgear-wndap6x0.dtsi"
|
|
|
|
/ {
|
|
model = "Netgear WNDAP620";
|
|
compatible = "netgear,wndap620", "apm,bluestone";
|
|
};
|
|
|
|
&LEDS {
|
|
led-5 {
|
|
function = LED_FUNCTION_LAN;
|
|
function-enumerator = <1>;
|
|
color = <LED_COLOR_ID_GREEN>;
|
|
gpios = <&GPIO0 9 GPIO_ACTIVE_HIGH>;
|
|
};
|
|
|
|
led-6 {
|
|
function = LED_FUNCTION_LAN;
|
|
color = <LED_COLOR_ID_AMBER>;
|
|
gpios = <&GPIO0 10 GPIO_ACTIVE_HIGH>;
|
|
};
|
|
};
|
|
|
|
&PCIE0 {
|
|
/*
|
|
* relevant lspci topology:
|
|
*
|
|
* -+-[0000:40]---00.0-[41-7f]----00.0
|
|
*/
|
|
|
|
bridge@64,0 {
|
|
reg = <0x00400000 0 0 0 0>;
|
|
#address-cells = <3>;
|
|
#size-cells = <2>;
|
|
ranges;
|
|
|
|
wifi0: wifi@65,0 {
|
|
/* Atheros AR9380 5GHz */
|
|
compatible = "pci168c,0030";
|
|
reg = <0x00410000 0 0 0 0>;
|
|
interrupts = <1>; /* INTA */
|
|
};
|
|
};
|
|
};
|