OpenWrt – Blame information for rev 2

Subversion Repositories:
Rev:
Rev Author Line No. Line
1 office 1 /dts-v1/;
2  
3 #include "rt3050.dtsi"
4  
5 #include <dt-bindings/gpio/gpio.h>
6 #include <dt-bindings/input/input.h>
7  
8 / {
9 compatible = "dlink,dir-615-d1", "ralink,rt3050-soc";
10 model = "D-Link DIR-615 D";
11  
12 aliases {
13 led-boot = &led_status_green;
14 led-failsafe = &led_status_green;
15 led-running = &led_status_green;
16 led-upgrade = &led_status_green;
17 };
18  
19 cfi@1f000000 {
20 compatible = "cfi-flash";
21 reg = <0x1f000000 0x800000>;
22 bank-width = <2>;
23 device-width = <2>;
24  
25 partitions {
26 compatible = "fixed-partitions";
27 #address-cells = <1>;
28 #size-cells = <1>;
29  
30 partition@0 {
31 label = "u-boot";
32 reg = <0x0 0x30000>;
33 read-only;
34 };
35  
36 devdata: partition@30000 {
37 label = "devdata";
38 reg = <0x30000 0x10000>;
39 read-only;
40 };
41  
42 partition@40000 {
43 label = "devconf";
44 reg = <0x40000 0x10000>;
45 read-only;
46 };
47  
48 partition@50000 {
49 compatible = "denx,uimage";
50 label = "firmware";
51 reg = <0x50000 0x3b0000>;
52 };
53 };
54 };
55  
56 keys {
57 compatible = "gpio-keys-polled";
58 poll-interval = <20>;
59  
60 reset {
61 label = "reset";
62 gpios = <&gpio0 10 GPIO_ACTIVE_LOW>;
63 linux,code = <KEY_RESTART>;
64 };
65  
66 wps {
67 label = "wps";
68 gpios = <&gpio0 0 GPIO_ACTIVE_LOW>;
69 linux,code = <KEY_WPS_BUTTON>;
70 };
71 };
72  
73 leds {
74 compatible = "gpio-leds";
75  
76 status {
77 label = "dir-615-d:amber:status";
78 gpios = <&gpio0 8 GPIO_ACTIVE_LOW>;
79 };
80  
81 led_status_green: status2 {
82 label = "dir-615-d:green:status";
83 gpios = <&gpio0 9 GPIO_ACTIVE_LOW>;
84 default-state = "on";
85 };
86  
87 wan {
88 label = "dir-615-d:amber:wan";
89 gpios = <&gpio0 14 GPIO_ACTIVE_LOW>;
90 };
91  
92 wan2 {
93 label = "dir-615-d:green:wan";
94 gpios = <&gpio0 12 GPIO_ACTIVE_LOW>;
95 };
96  
97 wps {
98 label = "dir-615-d:blue:wps";
99 gpios = <&gpio0 13 GPIO_ACTIVE_LOW>;
100 };
101 };
102 };
103  
104 &esw {
105 mediatek,portmap = <0x2f>;
106 };
107  
108 &wmac {
109 ralink,mtd-eeprom = <&devdata 0x4000>;
110 };
111  
112 &pinctrl {
113 state_default: pinctrl0 {
114 gpio {
115 ralink,group = "i2c", "spi", "jtag", "mdio", "rgmii", "uartf";
116 ralink,function = "gpio";
117 };
118 };
119 };
120  
121