OpenWrt – Blame information for rev 3

Subversion Repositories:
Rev:
Rev Author Line No. Line
1 office 1 /dts-v1/;
2  
3 #include "rt5350.dtsi"
4  
5 #include <dt-bindings/gpio/gpio.h>
6 #include <dt-bindings/input/input.h>
7  
8 / {
9 compatible = "intenso,memory2move", "ralink,rt5350-soc";
10 model = "Intenso Memory 2 Move";
11  
12 chosen {
13 bootargs = "console=ttyS0,57600n8 root=/dev/mtdblock5";
14 };
15  
3 office 16 gpio-leds {
1 office 17 compatible = "gpio-leds";
18  
3 office 19 wifi {
1 office 20 label = "m2m:blue:wifi";
21 gpios = <&gpio0 7 GPIO_ACTIVE_LOW>;
22 };
23  
24 wan {
25 label = "m2m:green:wan";
26 gpios = <&gpio0 12 GPIO_ACTIVE_LOW>;
27 };
28 };
29  
3 office 30 gpio-keys-polled {
1 office 31 compatible = "gpio-keys-polled";
3 office 32 #address-cells = <1>;
33 #size-cells = <0>;
1 office 34 poll-interval = <20>;
35  
36 power {
37 label = "power";
38 gpios = <&gpio0 1 GPIO_ACTIVE_LOW>;
39 linux,code = <KEY_POWER>;
40 };
41  
42 reset {
43 label = "reset";
44 gpios = <&gpio0 10 GPIO_ACTIVE_LOW>;
45 linux,code = <KEY_RESTART>;
46 };
47 };
48 };
49  
50 &spi0 {
51 status = "okay";
52  
53 m25p80@0 {
3 office 54 #address-cells = <1>;
55 #size-cells = <1>;
1 office 56 compatible = "jedec,spi-nor";
57 reg = <0>;
58 spi-max-frequency = <10000000>;
59  
3 office 60 partition@0 {
61 label = "Bootloader";
62 reg = <0x0 0x30000>;
63 read-only;
64 };
1 office 65  
3 office 66 partition@30000 {
67 label = "Config";
68 reg = <0x30000 0x10000>;
69 read-only;
70 };
1 office 71  
3 office 72 factory: partition@40000 {
73 label = "Factory";
74 reg = <0x40000 0x10000>;
75 read-only;
76 };
1 office 77  
3 office 78 partition@50000 {
79 label = "firmware";
80 reg = <0x50000 0x7b0000>;
1 office 81 };
82 };
83 };
84  
85 &pinctrl {
86 state_default: pinctrl0 {
87 gpio {
88 ralink,group = "i2c", "uartf";
89 ralink,function = "gpio";
90 };
91 };
92 };
93  
94 &ethernet {
95 mtd-mac-address = <&factory 0x28>;
96 };
97  
98 &esw {
99 mediatek,portmap = <0x2f>;
100 };
101  
102 &ehci {
103 status = "okay";
104 };
105  
106 &ohci {
107 status = "okay";
108 };
109  
110 &wmac {
111 ralink,mtd-eeprom = <&factory 0x0>;
112 };