OpenWrt – Blame information for rev 3

Subversion Repositories:
Rev:
Rev Author Line No. Line
1 office 1 /dts-v1/;
2  
3 #include "bcm6348.dtsi"
4  
5 #include <dt-bindings/input/input.h>
6  
7 / {
8 model = "D-Link DSL-2640B rev B2";
9 compatible = "d-link,dsl-2640b-b", "brcm,bcm6348";
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 7 1>;
26 linux,code = <KEY_RESTART>;
27 };
28 };
29  
3 office 30 gpio-leds {
1 office 31 compatible = "gpio-leds";
32  
33 power_green {
34 label = "D-4P-W:green:power";
35 gpios = <&pinctrl 0 1>;
36 default-state = "on";
37 };
38 status {
39 label = "D-4P-W::status";
40 gpios = <&pinctrl 3 1>;
41 };
42 inet_green {
43 label = "D-4P-W:green:internet";
44 gpios = <&pinctrl 4 1>;
45 };
46 inet_red {
47 label = "D-4P-W:red:internet";
48 gpios = <&pinctrl 5 1>;
49 };
50 };
51 };
52  
53 &pflash {
54 status = "ok";
55  
3 office 56 linux,part-probe = "bcm63xxpart";
57  
1 office 58 partitions {
59 compatible = "fixed-partitions";
60 #address-cells = <1>;
61 #size-cells = <1>;
62  
63 cfe@0 {
64 label = "CFE";
65 reg = <0x000000 0x010000>;
66 read-only;
67 };
68  
69 linux@10000 {
70 label = "linux";
71 reg = <0x010000 0x3e0000>;
72 compatible = "brcm,bcm963xx-imagetag";
73 };
74  
75 nvram@3f0000 {
76 label = "nvram";
77 reg = <0x3f0000 0x010000>;
78 };
79 };
80 };
81  
82 &pinctrl {
83 pinctrl-names = "default";
84 pinctrl-0 = <&pinctrl_pci &pinctrl_ext_mii>;
85 };
86  
87 &uart0 {
88 status = "ok";
89 };