OpenWrt – Blame information for rev 3

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 = "teltonika,rut5xx", "ralink,rt3050-soc";
10 model = "Teltonika RUT5XX";
11  
3 office 12 gpio-leds {
1 office 13 compatible = "gpio-leds";
14  
3 office 15 status {
1 office 16 label = "rut5xx:green:status";
17 gpios = <&gpio0 14 GPIO_ACTIVE_LOW>;
18 };
19 };
20  
3 office 21 gpio-keys-polled {
1 office 22 compatible = "gpio-keys-polled";
3 office 23 #address-cells = <1>;
24 #size-cells = <0>;
1 office 25 poll-interval = <20>;
26  
27 reset {
28 label = "reset";
29 gpios = <&gpio0 10 GPIO_ACTIVE_LOW>;
30 linux,code = <KEY_RESTART>;
31 };
32 };
33 };
34  
35 &spi0 {
36 status = "okay";
37  
38 m25p80@0 {
3 office 39 #address-cells = <1>;
40 #size-cells = <1>;
1 office 41 compatible = "jedec,spi-nor";
42 reg = <0>;
43 spi-max-frequency = <10000000>;
44  
3 office 45 partition@0 {
46 label = "u-boot";
47 reg = <0x0 0x30000>;
48 read-only;
49 };
1 office 50  
3 office 51 partition@30000 {
52 label = "u-boot-env";
53 reg = <0x30000 0x10000>;
54 read-only;
55 };
1 office 56  
3 office 57 factory: partition@40000 {
58 label = "factory";
59 reg = <0x40000 0x10000>;
60 read-only;
61 };
1 office 62  
3 office 63 partition@50000 {
64 label = "firmware";
65 reg = <0x50000 0xfb0000>;
1 office 66 };
67 };
68 };
69  
70 &pinctrl {
71 state_default: pinctrl0 {
72 gpio {
73 ralink,group = "i2c", "jtag", "rgmii", "mdio", "uartf";
74 ralink,function = "gpio";
75 };
76 };
77 };
78  
79 &ethernet {
80 mtd-mac-address = <&factory 0x28>;
81 };
82  
83 &esw {
84 mediatek,portmap = <0x3e>;
85 };
86  
87 &wmac {
88 ralink,mtd-eeprom = <&factory 0>;
89 };
90  
91 &otg {
92 status = "okay";
93 };