Skip to content

Commit 984829e

Browse files
Dan Haabffainelli
authored andcommitted
ARM: dts: BCM5301X: Add DT for Luxul XWC-2000
It's a simple network device based on BCM47094 with just a single Ethernet port. Signed-off-by: Dan Haab <[email protected]> Signed-off-by: Florian Fainelli <[email protected]>
1 parent 54ecb8f commit 984829e

File tree

2 files changed

+54
-0
lines changed

2 files changed

+54
-0
lines changed

arch/arm/boot/dts/Makefile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -113,6 +113,7 @@ dtb-$(CONFIG_ARCH_BCM_5301X) += \
113113
bcm47094-luxul-abr-4500.dtb \
114114
bcm47094-luxul-xap-1610.dtb \
115115
bcm47094-luxul-xbr-4500.dtb \
116+
bcm47094-luxul-xwc-2000.dtb \
116117
bcm47094-luxul-xwr-3100.dtb \
117118
bcm47094-luxul-xwr-3150-v1.dtb \
118119
bcm47094-netgear-r8500.dtb \
Lines changed: 53 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,53 @@
1+
// SPDX-License-Identifier: GPL-2.0-or-later OR MIT
2+
/*
3+
* Copyright 2019 Legrand AV Inc.
4+
*/
5+
6+
/dts-v1/;
7+
8+
#include "bcm47094.dtsi"
9+
#include "bcm5301x-nand-cs0-bch8.dtsi"
10+
11+
/ {
12+
compatible = "luxul,xwc-2000-v1", "brcm,bcm47094", "brcm,bcm4708";
13+
model = "Luxul XWC-2000 V1";
14+
15+
chosen {
16+
bootargs = "earlycon";
17+
};
18+
19+
memory {
20+
reg = <0x00000000 0x08000000
21+
0x88000000 0x18000000>;
22+
};
23+
24+
leds {
25+
compatible = "gpio-leds";
26+
27+
status {
28+
label = "bcm53xx:green:status";
29+
gpios = <&chipcommon 18 GPIO_ACTIVE_LOW>;
30+
linux,default-trigger = "timer";
31+
};
32+
};
33+
34+
gpio-keys {
35+
compatible = "gpio-keys";
36+
#address-cells = <1>;
37+
#size-cells = <0>;
38+
39+
restart {
40+
label = "Reset";
41+
linux,code = <KEY_RESTART>;
42+
gpios = <&chipcommon 19 GPIO_ACTIVE_LOW>;
43+
};
44+
};
45+
};
46+
47+
&uart1 {
48+
status = "okay";
49+
};
50+
51+
&spi_nor {
52+
status = "okay";
53+
};

0 commit comments

Comments
 (0)