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 = "TECOM GW6000";
9 compatible = "tecom,gw6000", "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 36 1>;
26 linux,code = <KEY_RESTART>;
27 };
28 };
29 };
30  
31 &pflash {
32 status = "ok";
33  
3 office 34 linux,part-probe = "bcm63xxpart";
35  
1 office 36 partitions {
37 compatible = "fixed-partitions";
38 #address-cells = <1>;
39 #size-cells = <1>;
40  
41 cfe@0 {
42 label = "CFE";
43 reg = <0x000000 0x010000>;
44 read-only;
45 };
46  
47 linux@10000 {
48 label = "linux";
49 reg = <0x010000 0x3e0000>;
50 compatible = "brcm,bcm963xx-imagetag";
51 };
52  
53 nvram@3f0000 {
54 label = "nvram";
55 reg = <0x3f0000 0x010000>;
56 };
57 };
58 };
59  
60 &pinctrl {
61 pinctrl-names = "default";
62 pinctrl-0 = <&pinctrl_pci &pinctrl_ext_mii>;
63 };
64  
65 &uart0 {
66 status = "ok";
67 };