mirror of
https://github.com/openwrt/openwrt.git
synced 2024-12-20 14:13:16 +00:00
53 lines
890 B
Plaintext
53 lines
890 B
Plaintext
|
// SPDX-License-Identifier: GPL-2.0-or-later OR MIT
|
||
|
|
||
|
#include "tp9343_tplink_tl-wx.dtsi"
|
||
|
|
||
|
/ {
|
||
|
aliases {
|
||
|
led-boot = &led_system;
|
||
|
led-failsafe = &led_system;
|
||
|
led-running = &led_system;
|
||
|
led-upgrade = &led_system;
|
||
|
};
|
||
|
|
||
|
keys {
|
||
|
compatible = "gpio-keys";
|
||
|
|
||
|
reset {
|
||
|
label = "Reset button";
|
||
|
linux,code = <KEY_RESTART>;
|
||
|
gpios = <&gpio 1 GPIO_ACTIVE_LOW>;
|
||
|
};
|
||
|
};
|
||
|
|
||
|
leds {
|
||
|
compatible = "gpio-leds";
|
||
|
|
||
|
led_system: system {
|
||
|
label = "tp-link:green:system";
|
||
|
gpios = <&gpio 18 GPIO_ACTIVE_LOW>;
|
||
|
default-state = "on";
|
||
|
};
|
||
|
|
||
|
qss {
|
||
|
label = "tp-link:green:qss";
|
||
|
gpios = <&gpio 3 GPIO_ACTIVE_LOW>;
|
||
|
};
|
||
|
|
||
|
lan {
|
||
|
label = "tp-link:green:lan";
|
||
|
gpios = <&gpio 7 GPIO_ACTIVE_LOW>;
|
||
|
};
|
||
|
|
||
|
wlan {
|
||
|
label = "tp-link:green:wlan";
|
||
|
gpios = <&gpio 8 GPIO_ACTIVE_LOW>;
|
||
|
linux,default-trigger = "phy0tpt";
|
||
|
};
|
||
|
};
|
||
|
};
|
||
|
|
||
|
ð1 {
|
||
|
compatible = "syscon", "simple-mfd";
|
||
|
};
|