1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
|
#include "rt3050.dtsi"
#include <dt-bindings/gpio/gpio.h>
#include <dt-bindings/input/input.h>
/ {
compatible = "unbranded,wr512-3gn", "ralink,rt3052-soc";
gpio-leds {
compatible = "gpio-leds";
3g {
label = "wr512-3gn:green:3g";
gpios = <&gpio0 9 GPIO_ACTIVE_LOW>;
};
gateway {
label = "wr512-3gn:green:gateway";
gpios = <&gpio0 11 GPIO_ACTIVE_LOW>;
};
ap {
label = "wr512-3gn:green:ap";
gpios = <&gpio0 12 GPIO_ACTIVE_LOW>;
};
wps {
label = "wr512-3gn:green:wps";
gpios = <&gpio0 14 GPIO_ACTIVE_LOW>;
};
station {
label = "wr512-3gn:green:station";
gpios = <&gpio0 13 GPIO_ACTIVE_LOW>;
};
};
gpio-keys-polled {
compatible = "gpio-keys-polled";
#address-cells = <1>;
#size-cells = <0>;
poll-interval = <20>;
reset_wps {
label = "reset_wps";
gpios = <&gpio0 10 GPIO_ACTIVE_LOW>;
linux,code = <KEY_RESTART>;
};
mode {
label = "mode";
gpios = <&gpio0 7 GPIO_ACTIVE_LOW>;
linux,code = <BTN_0>;
};
};
};
&pinctrl {
state_default: pinctrl0 {
gpio {
ralink,group = "spi", "i2c", "jtag", "rgmii", "mdio", "uartf";
ralink,function = "gpio";
};
};
};
&esw {
mediatek,portmap = <0x2f>;
};
&wmac {
ralink,mtd-eeprom = <&factory 0>;
};
&otg {
status = "okay";
};
|