|
@@ -0,0 +1,127 @@
|
|
|
+#include <dt-bindings/leds/common.h>
|
|
|
+
|
|
|
+#include "mt7620a_tplink_archer.dtsi"
|
|
|
+
|
|
|
+/ {
|
|
|
+ compatible = "tplink,archer-c5-v4", "ralink,mt7620a-soc";
|
|
|
+ model = "TP-Link Archer C5 v4";
|
|
|
+
|
|
|
+ aliases {
|
|
|
+ led-boot = &led_power;
|
|
|
+ led-failsafe = &led_power;
|
|
|
+ led-running = &led_power;
|
|
|
+ led-upgrade = &led_power;
|
|
|
+ label-mac-device = ðernet;
|
|
|
+ };
|
|
|
+
|
|
|
+ leds {
|
|
|
+ compatible = "gpio-leds";
|
|
|
+
|
|
|
+ led_power: led-0 {
|
|
|
+ function = LED_FUNCTION_POWER;
|
|
|
+ color = <LED_COLOR_ID_GREEN>;
|
|
|
+ gpios = <&gpio2 2 GPIO_ACTIVE_LOW>;
|
|
|
+ };
|
|
|
+
|
|
|
+ led-1 {
|
|
|
+ function = LED_FUNCTION_WLAN;
|
|
|
+ color = <LED_COLOR_ID_GREEN>;
|
|
|
+ function-enumerator = <2>;
|
|
|
+ gpios = <&gpio0 14 GPIO_ACTIVE_LOW>;
|
|
|
+ linux,default-trigger = "phy1tpt";
|
|
|
+ };
|
|
|
+
|
|
|
+ led-2 {
|
|
|
+ function = LED_FUNCTION_WLAN;
|
|
|
+ color = <LED_COLOR_ID_GREEN>;
|
|
|
+ function-enumerator = <5>;
|
|
|
+ gpios = <&gpio0 12 GPIO_ACTIVE_LOW>;
|
|
|
+ linux,default-trigger = "phy0tpt";
|
|
|
+ };
|
|
|
+
|
|
|
+ led-3 {
|
|
|
+ function = LED_FUNCTION_WAN;
|
|
|
+ color = <LED_COLOR_ID_GREEN>;
|
|
|
+ gpios = <&gpio0 10 GPIO_ACTIVE_LOW>;
|
|
|
+ };
|
|
|
+
|
|
|
+ led-4 {
|
|
|
+ function = LED_FUNCTION_WAN;
|
|
|
+ color = <LED_COLOR_ID_ORANGE>;
|
|
|
+ gpios = <&gpio0 9 GPIO_ACTIVE_LOW>;
|
|
|
+ };
|
|
|
+
|
|
|
+ led-5 {
|
|
|
+ function = LED_FUNCTION_LAN;
|
|
|
+ color = <LED_COLOR_ID_GREEN>;
|
|
|
+ gpios = <&gpio0 8 GPIO_ACTIVE_HIGH>;
|
|
|
+ };
|
|
|
+
|
|
|
+ led-6 {
|
|
|
+ function = LED_FUNCTION_USB;
|
|
|
+ color = <LED_COLOR_ID_GREEN>;
|
|
|
+ gpios = <&gpio0 7 GPIO_ACTIVE_LOW>;
|
|
|
+ trigger-sources = <&ohci_port1>, <&ehci_port1>;
|
|
|
+ linux,default-trigger = "usbport";
|
|
|
+ };
|
|
|
+
|
|
|
+ led-7 {
|
|
|
+ function = LED_FUNCTION_WPS;
|
|
|
+ color = <LED_COLOR_ID_GREEN>;
|
|
|
+ gpios = <&gpio0 1 GPIO_ACTIVE_LOW>;
|
|
|
+ };
|
|
|
+ };
|
|
|
+
|
|
|
+ rtl8367s {
|
|
|
+ compatible = "realtek,rtl8367b";
|
|
|
+ cpu_port = <7>;
|
|
|
+ realtek,extif2 = <1 0 1 1 1 1 1 1 2>;
|
|
|
+ mii-bus = <&mdio0>;
|
|
|
+ phy-id = <29>;
|
|
|
+ };
|
|
|
+};
|
|
|
+
|
|
|
+&spi0 {
|
|
|
+ flash@0 {
|
|
|
+ #address-cells = <1>;
|
|
|
+ #size-cells = <1>;
|
|
|
+ };
|
|
|
+};
|
|
|
+
|
|
|
+&state_default {
|
|
|
+ gpio {
|
|
|
+ groups = "i2c", "uartf", "ephy", "rgmii2";
|
|
|
+ function = "gpio";
|
|
|
+ };
|
|
|
+};
|
|
|
+
|
|
|
+ðernet {
|
|
|
+ pinctrl-names = "default";
|
|
|
+ pinctrl-0 = <&rgmii1_pins &mdio_pins>;
|
|
|
+
|
|
|
+ port@5 {
|
|
|
+ status = "okay";
|
|
|
+ mediatek,fixed-link = <1000 1 1 1>;
|
|
|
+ phy-mode = "rgmii";
|
|
|
+ };
|
|
|
+
|
|
|
+ mdio0: mdio-bus {
|
|
|
+ status = "okay";
|
|
|
+ reset-gpios = <&gpio2 20 GPIO_ACTIVE_LOW>;
|
|
|
+ reset-delay-us = <10000>;
|
|
|
+ };
|
|
|
+};
|
|
|
+
|
|
|
+&wmac {
|
|
|
+ pinctrl-names = "default", "pa_gpio";
|
|
|
+ pinctrl-0 = <&pa_pins>;
|
|
|
+ pinctrl-1 = <&pa_gpio_pins>;
|
|
|
+
|
|
|
+ nvmem-cells = <&eeprom_radio_0>, <&macaddr_rom_f100 0>;
|
|
|
+ nvmem-cell-names = "eeprom", "mac-address";
|
|
|
+};
|
|
|
+
|
|
|
+&wifi {
|
|
|
+ nvmem-cells = <&eeprom_radio_8000>, <&macaddr_rom_f100 2>;
|
|
|
+ nvmem-cell-names = "eeprom", "mac-address";
|
|
|
+};
|