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 = "ASMAX AR 1004g";
9 compatible = "asmax,ar1004g", "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 33 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 = "AR1004G:green:power";
35 gpios = <&pinctrl 0 1>;
36 default-state = "on";
37 };
38 inet_green {
39 label = "AR1004G:green:inet";
40 gpios = <&pinctrl 3 1>;
41 };
42 power_red {
43 label = "AR1004G:red:power";
44 gpios = <&pinctrl 6 1>;
45 };
46 };
47 };
48  
49 &pflash {
50 status = "ok";
51  
3 office 52 linux,part-probe = "bcm63xxpart";
53  
1 office 54 partitions {
55 compatible = "fixed-partitions";
56 #address-cells = <1>;
57 #size-cells = <1>;
58  
59 cfe@0 {
60 label = "CFE";
61 reg = <0x000000 0x010000>;
62 read-only;
63 };
64  
65 linux@10000 {
66 label = "linux";
67 reg = <0x010000 0x3e0000>;
68 compatible = "brcm,bcm963xx-imagetag";
69 };
70  
71 nvram@3f0000 {
72 label = "nvram";
73 reg = <0x3f0000 0x010000>;
74 };
75 };
76 };
77  
78 &pinctrl {
79 pinctrl-names = "default";
80 pinctrl-0 = <&pinctrl_ext_mii &pinctrl_pci>;
81 };
82  
83 &uart0 {
84 status = "ok";
85 };