blob: 987903d525e934832ff308dc43823f16590fe720 [file] [log] [blame]
b.liue9582032025-04-17 19:18:16 +08001#include "bcm6348.dtsi"
2
3#include <dt-bindings/input/input.h>
4
5/ {
6 model = "Sagem F@st 2604";
7 compatible = "sagem,fast-2604", "brcm,bcm6348";
8
9 chosen {
10 bootargs = "rootfstype=squashfs,jffs2 noinitrd console=ttyS0,115200";
11 stdout-path = "serial0:115200n8";
12 };
13
14 keys {
15 compatible = "gpio-keys-polled";
16 #address-cells = <1>;
17 #size-cells = <0>;
18 poll-interval = <20>;
19
20 reset {
21 label = "reset";
22 gpios = <&pinctrl 33 1>;
23 linux,code = <KEY_RESTART>;
24 debounce-interval = <60>;
25 };
26 };
27
28 leds {
29 compatible = "gpio-leds";
30
31 power_green {
32 label = "green:power";
33 gpios = <&pinctrl 0 1>;
34 default-state = "on";
35 };
36 power_red {
37 label = "red:power";
38 gpios = <&pinctrl 1 1>;
39 };
40 inet_red {
41 label = "red:inet";
42 gpios = <&pinctrl 4 1>;
43 };
44 wps_green {
45 label = "green:wps";
46 gpios = <&pinctrl 5 1>;
47 };
48 };
49};
50
51&pflash {
52 status = "okay";
53
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_pci &pinctrl_ext_mii>;
81};
82
83&uart0 {
84 status = "okay";
85};