OpenWrt – Blame information for rev 3

Subversion Repositories:
Rev:
Rev Author Line No. Line
1 office 1 /dts-v1/;
2  
3 #include "bcm6358.dtsi"
4  
5 #include <dt-bindings/input/input.h>
6  
7 / {
8 model = "D-Link DSL-2740B/DSL-2741B rev C2/3";
9 compatible = "d-link,dsl-274xb-c2", "brcm,bcm6358";
10  
11 chosen {
12 bootargs = "rootfstype=squashfs,jffs2 noinitrd console=ttyS0,115200";
13 stdout-path = "serial0:115200n8";
14 };
15  
3 office 16 gpio-keys-polled {
1 office 17 compatible = "gpio-keys-polled";
18 #address-cells = <1>;
19 #size-cells = <0>;
20 poll-interval = <20>;
3 office 21 debounce-interval = <60>;
1 office 22  
23 reset {
24 label = "reset";
25 gpios = <&pinctrl 34 1>;
26 linux,code = <KEY_RESTART>;
27 };
28 };
29  
3 office 30 gpio-leds {
1 office 31 compatible = "gpio-leds";
32  
33 inet_green {
34 label = "dsl-274xb:green:internet";
35 gpios = <&pinctrl 2 0>;
36 };
37 power_red {
38 label = "dsl-274xb:red:power";
39 gpios = <&pinctrl 4 1>;
40 };
41 power_green {
42 label = "dsl-274xb:green:power";
43 gpios = <&pinctrl 5 1>;
44 default-state = "on";
45 };
46 dsl_green {
47 label = "dsl-274xb:green:adsl";
48 gpios = <&pinctrl 9 1>;
49 };
50 inet_red {
51 label = "dsl-274xb:red:internet";
52 gpios = <&pinctrl 10 0>;
53 };
54 };
55 };
56  
57 &pflash {
58 status = "ok";
59  
3 office 60 linux,part-probe = "bcm63xxpart";
61  
1 office 62 partitions {
63 compatible = "fixed-partitions";
64 #address-cells = <1>;
65 #size-cells = <1>;
66  
67 cfe@0 {
68 label = "CFE";
69 reg = <0x000000 0x010000>;
70 read-only;
71 };
72  
73 linux@10000 {
74 label = "linux";
75 reg = <0x010000 0x3e0000>;
76 compatible = "brcm,bcm963xx-imagetag";
77 };
78  
79 nvram@3f0000 {
80 label = "nvram";
81 reg = <0x3f0000 0x010000>;
82 };
83 };
84 };
85  
86 &uart0 {
87 status = "ok";
88 };