blob: 08959ed15630f4613ecc4f8a441ebbf1b630c74f [file] [log] [blame]
b.liue9582032025-04-17 19:18:16 +08001#include "bcm63268.dtsi"
2
3#include <dt-bindings/input/input.h>
4
5/ {
6 model = "Broadcom BCM963268BU_P300 reference board";
7 compatible = "brcm,bcm963268bu-p300", "brcm,bcm63268";
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 32 0>;
23 linux,code = <KEY_RESTART>;
24 debounce-interval = <60>;
25 };
26
27 wps {
28 label = "wps";
29 gpios = <&pinctrl 33 0>;
30 linux,code = <KEY_WPS_BUTTON>;
31 debounce-interval = <60>;
32 };
33 };
34};
35
36&hsspi {
37 status = "okay";
38
39 flash@0 {
40 compatible = "jedec,spi-nor";
41 spi-max-frequency = <20000000>;
42 spi-tx-bus-width = <2>;
43 spi-rx-bus-width = <2>;
44 reg = <0>;
45
46 #address-cells = <1>;
47 #size-cells = <1>;
48
49 partitions {
50 compatible = "brcm,bcm963xx-cfe-nor-partitions";
51 };
52 };
53};
54
55&uart0 {
56 status = "okay";
57};