mirror of https://github.com/hak5/openwrt.git
bcm53xx: backport DTS changes up to the first 4.15 queued commits
Signed-off-by: Rafał Miłecki <rafal@milecki.pl>openwrt-18.06
parent
b73986a826
commit
f98f83eada
|
@ -0,0 +1,135 @@
|
||||||
|
From 092ccf0415c720a1e9458a46fe75f77574027a55 Mon Sep 17 00:00:00 2001
|
||||||
|
From: Florian Fainelli <f.fainelli@gmail.com>
|
||||||
|
Date: Tue, 18 Jul 2017 12:37:37 -0700
|
||||||
|
Subject: [PATCH] ARM: dts: BCM53573: Add Broadcom BCM947189ACDBMR board
|
||||||
|
support
|
||||||
|
|
||||||
|
Adds support for the Broadcom reference board BCM947189ACDMBR which
|
||||||
|
features the following:
|
||||||
|
|
||||||
|
* 128MB of DRAM
|
||||||
|
* External MoCA support through a Broadcom BCM6802 chip
|
||||||
|
* 1x external Gigabit PHY through the external BCM6802
|
||||||
|
* 1x USB 2.0 port
|
||||||
|
* 1x PCIE slot
|
||||||
|
* Few configurable buttons and LEDs
|
||||||
|
|
||||||
|
Signed-off-by: Florian Fainelli <f.fainelli@gmail.com>
|
||||||
|
---
|
||||||
|
arch/arm/boot/dts/Makefile | 3 +-
|
||||||
|
arch/arm/boot/dts/bcm947189acdbmr.dts | 97 +++++++++++++++++++++++++++++++++++
|
||||||
|
2 files changed, 99 insertions(+), 1 deletion(-)
|
||||||
|
create mode 100644 arch/arm/boot/dts/bcm947189acdbmr.dts
|
||||||
|
|
||||||
|
--- a/arch/arm/boot/dts/Makefile
|
||||||
|
+++ b/arch/arm/boot/dts/Makefile
|
||||||
|
@@ -93,7 +93,8 @@ dtb-$(CONFIG_ARCH_BCM_5301X) += \
|
||||||
|
bcm953012hr.dtb \
|
||||||
|
bcm953012k.dtb
|
||||||
|
dtb-$(CONFIG_ARCH_BCM_53573) += \
|
||||||
|
- bcm47189-tenda-ac9.dtb
|
||||||
|
+ bcm47189-tenda-ac9.dtb \
|
||||||
|
+ bcm947189acdbmr.dtb
|
||||||
|
dtb-$(CONFIG_ARCH_BCM_63XX) += \
|
||||||
|
bcm963138dvt.dtb
|
||||||
|
dtb-$(CONFIG_ARCH_BCM_CYGNUS) += \
|
||||||
|
--- /dev/null
|
||||||
|
+++ b/arch/arm/boot/dts/bcm947189acdbmr.dts
|
||||||
|
@@ -0,0 +1,97 @@
|
||||||
|
+/*
|
||||||
|
+ * Copyright (C) 2017 Broadcom
|
||||||
|
+ * Author: Florian Fainelli <f.fainelli@gmail.com>
|
||||||
|
+ *
|
||||||
|
+ * Licensed under the ISC license.
|
||||||
|
+ */
|
||||||
|
+
|
||||||
|
+/dts-v1/;
|
||||||
|
+
|
||||||
|
+#include "bcm53573.dtsi"
|
||||||
|
+
|
||||||
|
+/ {
|
||||||
|
+ compatible = "brcm,bcm947189acdbmr", "brcm,bcm47189", "brcm,bcm53573";
|
||||||
|
+ model = "Broadcom BCM947189ACDBMR";
|
||||||
|
+
|
||||||
|
+ chosen {
|
||||||
|
+ bootargs = "console=ttyS0,115200 earlycon";
|
||||||
|
+ };
|
||||||
|
+
|
||||||
|
+ memory {
|
||||||
|
+ reg = <0x00000000 0x08000000>;
|
||||||
|
+ };
|
||||||
|
+
|
||||||
|
+ leds {
|
||||||
|
+ compatible = "gpio-leds";
|
||||||
|
+
|
||||||
|
+ wps {
|
||||||
|
+ label = "bcm53xx:blue:wps";
|
||||||
|
+ gpios = <&chipcommon 10 GPIO_ACTIVE_HIGH>;
|
||||||
|
+ };
|
||||||
|
+
|
||||||
|
+ 5ghz {
|
||||||
|
+ label = "bcm53xx:blue:5ghz";
|
||||||
|
+ gpios = <&chipcommon 11 GPIO_ACTIVE_HIGH>;
|
||||||
|
+ };
|
||||||
|
+
|
||||||
|
+ 2ghz {
|
||||||
|
+ label = "bcm53xx:blue:2ghz";
|
||||||
|
+ gpios = <&chipcommon 12 GPIO_ACTIVE_HIGH>;
|
||||||
|
+ };
|
||||||
|
+ };
|
||||||
|
+
|
||||||
|
+ gpio-keys {
|
||||||
|
+ compatible = "gpio-keys";
|
||||||
|
+ #address-cells = <1>;
|
||||||
|
+ #size-cells = <0>;
|
||||||
|
+
|
||||||
|
+ restart {
|
||||||
|
+ label = "Reset";
|
||||||
|
+ linux,code = <KEY_RESTART>;
|
||||||
|
+ gpios = <&chipcommon 7 GPIO_ACTIVE_HIGH>;
|
||||||
|
+ };
|
||||||
|
+
|
||||||
|
+ wps {
|
||||||
|
+ label = "WPS";
|
||||||
|
+ linux,code = <KEY_WPS_BUTTON>;
|
||||||
|
+ gpios = <&chipcommon 9 GPIO_ACTIVE_LOW>;
|
||||||
|
+ };
|
||||||
|
+ };
|
||||||
|
+
|
||||||
|
+ spi {
|
||||||
|
+ compatible = "spi-gpio";
|
||||||
|
+ num-chipselects = <1>;
|
||||||
|
+ gpio-sck = <&chipcommon 21 0>;
|
||||||
|
+ gpio-miso = <&chipcommon 22 0>;
|
||||||
|
+ gpio-mosi = <&chipcommon 23 0>;
|
||||||
|
+ cs-gpios = <&chipcommon 24 0>;
|
||||||
|
+ #address-cells = <1>;
|
||||||
|
+ #size-cells = <0>;
|
||||||
|
+
|
||||||
|
+ /* External BCM6802 MoCA chip is connected */
|
||||||
|
+ };
|
||||||
|
+};
|
||||||
|
+
|
||||||
|
+&pcie0 {
|
||||||
|
+ ranges = <0x00000000 0 0 0 0 0x00100000>;
|
||||||
|
+ #address-cells = <3>;
|
||||||
|
+ #size-cells = <2>;
|
||||||
|
+
|
||||||
|
+ bridge@0,0,0 {
|
||||||
|
+ reg = <0x0000 0 0 0 0>;
|
||||||
|
+ ranges = <0x00000000 0 0 0 0 0 0 0x00100000>;
|
||||||
|
+ #address-cells = <3>;
|
||||||
|
+ #size-cells = <2>;
|
||||||
|
+
|
||||||
|
+ wifi@0,1,0 {
|
||||||
|
+ reg = <0x0000 0 0 0 0>;
|
||||||
|
+ ranges = <0x00000000 0 0 0 0x00100000>;
|
||||||
|
+ #address-cells = <1>;
|
||||||
|
+ #size-cells = <1>;
|
||||||
|
+ };
|
||||||
|
+ };
|
||||||
|
+};
|
||||||
|
+
|
||||||
|
+&usb2 {
|
||||||
|
+ vcc-gpio = <&chipcommon 8 GPIO_ACTIVE_HIGH>;
|
||||||
|
+};
|
|
@ -0,0 +1,58 @@
|
||||||
|
From 0173b2cd6948b5b96ac4e8dbc3bcb4dd0b45c296 Mon Sep 17 00:00:00 2001
|
||||||
|
From: =?UTF-8?q?Rafa=C5=82=20Mi=C5=82ecki?= <rafal@milecki.pl>
|
||||||
|
Date: Thu, 17 Aug 2017 11:05:14 +0200
|
||||||
|
Subject: [PATCH] ARM: BCM53573: Specify ports for USB LED for Tenda AC9
|
||||||
|
MIME-Version: 1.0
|
||||||
|
Content-Type: text/plain; charset=UTF-8
|
||||||
|
Content-Transfer-Encoding: 8bit
|
||||||
|
|
||||||
|
This uses trigger-sources documented in commit 80dc6e1cd85fc ("dt-bindings:
|
||||||
|
leds: document new trigger-sources property") to specify USB ports. Such an
|
||||||
|
information can be used by operating system to setup LEDs behavior.
|
||||||
|
|
||||||
|
Signed-off-by: Rafał Miłecki <rafal@milecki.pl>
|
||||||
|
Signed-off-by: Florian Fainelli <f.fainelli@gmail.com>
|
||||||
|
---
|
||||||
|
arch/arm/boot/dts/bcm47189-tenda-ac9.dts | 2 ++
|
||||||
|
arch/arm/boot/dts/bcm53573.dtsi | 4 ++++
|
||||||
|
2 files changed, 6 insertions(+)
|
||||||
|
|
||||||
|
--- a/arch/arm/boot/dts/bcm47189-tenda-ac9.dts
|
||||||
|
+++ b/arch/arm/boot/dts/bcm47189-tenda-ac9.dts
|
||||||
|
@@ -26,6 +26,8 @@
|
||||||
|
usb {
|
||||||
|
label = "bcm53xx:blue:usb";
|
||||||
|
gpios = <&chipcommon 1 GPIO_ACTIVE_HIGH>;
|
||||||
|
+ trigger-sources = <&ohci_port1>, <&ehci_port1>;
|
||||||
|
+ linux,default-trigger = "usbport";
|
||||||
|
};
|
||||||
|
|
||||||
|
wps {
|
||||||
|
--- a/arch/arm/boot/dts/bcm53573.dtsi
|
||||||
|
+++ b/arch/arm/boot/dts/bcm53573.dtsi
|
||||||
|
@@ -138,10 +138,12 @@
|
||||||
|
|
||||||
|
ehci_port1: port@1 {
|
||||||
|
reg = <1>;
|
||||||
|
+ #trigger-source-cells = <0>;
|
||||||
|
};
|
||||||
|
|
||||||
|
ehci_port2: port@2 {
|
||||||
|
reg = <2>;
|
||||||
|
+ #trigger-source-cells = <0>;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
@@ -158,10 +160,12 @@
|
||||||
|
|
||||||
|
ohci_port1: port@1 {
|
||||||
|
reg = <1>;
|
||||||
|
+ #trigger-source-cells = <0>;
|
||||||
|
};
|
||||||
|
|
||||||
|
ohci_port2: port@2 {
|
||||||
|
reg = <2>;
|
||||||
|
+ #trigger-source-cells = <0>;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
|
@ -0,0 +1,30 @@
|
||||||
|
From 2460266f21f140936e627f28f28d1a4f30887ae9 Mon Sep 17 00:00:00 2001
|
||||||
|
From: =?UTF-8?q?Rafa=C5=82=20Mi=C5=82ecki?= <rafal@milecki.pl>
|
||||||
|
Date: Fri, 6 Oct 2017 10:52:35 +0200
|
||||||
|
Subject: [PATCH] ARM: dts: BCM5301X: Specify USB ports for USB LED of Luxul
|
||||||
|
XWR-1200
|
||||||
|
MIME-Version: 1.0
|
||||||
|
Content-Type: text/plain; charset=UTF-8
|
||||||
|
Content-Transfer-Encoding: 8bit
|
||||||
|
|
||||||
|
This info can be used by operating system to setup LED behavior.
|
||||||
|
|
||||||
|
Reported-by: Dan Haab <dhaab@luxul.com>
|
||||||
|
Signed-off-by: Rafał Miłecki <rafal@milecki.pl>
|
||||||
|
Signed-off-by: Florian Fainelli <f.fainelli@gmail.com>
|
||||||
|
---
|
||||||
|
arch/arm/boot/dts/bcm47081-luxul-xwr-1200.dts | 3 ++-
|
||||||
|
1 file changed, 2 insertions(+), 1 deletion(-)
|
||||||
|
|
||||||
|
--- a/arch/arm/boot/dts/bcm47081-luxul-xwr-1200.dts
|
||||||
|
+++ b/arch/arm/boot/dts/bcm47081-luxul-xwr-1200.dts
|
||||||
|
@@ -57,7 +57,8 @@
|
||||||
|
usb {
|
||||||
|
label = "bcm53xx:green:usb";
|
||||||
|
gpios = <&chipcommon 8 GPIO_ACTIVE_LOW>;
|
||||||
|
- linux,default-trigger = "none";
|
||||||
|
+ trigger-sources = <&ohci_port2>, <&ehci_port2>;
|
||||||
|
+ linux,default-trigger = "usbport";
|
||||||
|
};
|
||||||
|
|
||||||
|
status {
|
|
@ -0,0 +1,96 @@
|
||||||
|
From 1f4b0d5596d2e3ea8e953d578ab8444ce860d35d Mon Sep 17 00:00:00 2001
|
||||||
|
From: Dan Haab <dhaab@luxul.com>
|
||||||
|
Date: Mon, 9 Oct 2017 09:46:22 -0600
|
||||||
|
Subject: [PATCH] ARM: dts: BCM5301X: Add DT for Luxul XBR-4500
|
||||||
|
MIME-Version: 1.0
|
||||||
|
Content-Type: text/plain; charset=UTF-8
|
||||||
|
Content-Transfer-Encoding: 8bit
|
||||||
|
|
||||||
|
This is BCM47094 (AKA BCM4709C0) based router with ports-on-the-front
|
||||||
|
board design.
|
||||||
|
|
||||||
|
Signed-off-by: Dan Haab <dhaab@luxul.com>
|
||||||
|
Acked-by: Rafał Miłecki <rafal@milecki.pl>
|
||||||
|
Signed-off-by: Florian Fainelli <f.fainelli@gmail.com>
|
||||||
|
---
|
||||||
|
arch/arm/boot/dts/Makefile | 1 +
|
||||||
|
arch/arm/boot/dts/bcm47094-luxul-xbr-4500.dts | 63 +++++++++++++++++++++++++++
|
||||||
|
2 files changed, 64 insertions(+)
|
||||||
|
create mode 100644 arch/arm/boot/dts/bcm47094-luxul-xbr-4500.dts
|
||||||
|
|
||||||
|
--- a/arch/arm/boot/dts/Makefile
|
||||||
|
+++ b/arch/arm/boot/dts/Makefile
|
||||||
|
@@ -85,6 +85,7 @@ dtb-$(CONFIG_ARCH_BCM_5301X) += \
|
||||||
|
bcm4709-tplink-archer-c9-v1.dtb \
|
||||||
|
bcm47094-dlink-dir-885l.dtb \
|
||||||
|
bcm47094-linksys-panamera.dtb \
|
||||||
|
+ bcm47094-luxul-xbr-4500.dtb \
|
||||||
|
bcm47094-luxul-xwr-3100.dtb \
|
||||||
|
bcm47094-netgear-r8500.dtb \
|
||||||
|
bcm94708.dtb \
|
||||||
|
--- /dev/null
|
||||||
|
+++ b/arch/arm/boot/dts/bcm47094-luxul-xbr-4500.dts
|
||||||
|
@@ -0,0 +1,63 @@
|
||||||
|
+/*
|
||||||
|
+ * Copyright (C) 2017 Luxul Inc.
|
||||||
|
+ *
|
||||||
|
+ * Licensed under the ISC license.
|
||||||
|
+ */
|
||||||
|
+
|
||||||
|
+/dts-v1/;
|
||||||
|
+
|
||||||
|
+#include "bcm4708.dtsi"
|
||||||
|
+#include "bcm5301x-nand-cs0-bch8.dtsi"
|
||||||
|
+
|
||||||
|
+/ {
|
||||||
|
+ compatible = "luxul,xbr-4500-v1", "brcm,bcm47094", "brcm,bcm4708";
|
||||||
|
+ model = "Luxul XBR-4500 V1";
|
||||||
|
+
|
||||||
|
+ chosen {
|
||||||
|
+ bootargs = "earlycon";
|
||||||
|
+ };
|
||||||
|
+
|
||||||
|
+ memory {
|
||||||
|
+ reg = <0x00000000 0x08000000
|
||||||
|
+ 0x88000000 0x18000000>;
|
||||||
|
+ };
|
||||||
|
+
|
||||||
|
+ leds {
|
||||||
|
+ compatible = "gpio-leds";
|
||||||
|
+
|
||||||
|
+ status {
|
||||||
|
+ label = "bcm53xx:green:status";
|
||||||
|
+ gpios = <&chipcommon 20 GPIO_ACTIVE_HIGH>;
|
||||||
|
+ linux,default-trigger = "timer";
|
||||||
|
+ };
|
||||||
|
+
|
||||||
|
+ usb3 {
|
||||||
|
+ label = "bcm53xx:green:usb3";
|
||||||
|
+ gpios = <&chipcommon 19 GPIO_ACTIVE_HIGH>;
|
||||||
|
+ trigger-sources = <&ohci_port1>, <&ehci_port1>,
|
||||||
|
+ <&xhci_port1>;
|
||||||
|
+ linux,default-trigger = "usbport";
|
||||||
|
+ };
|
||||||
|
+
|
||||||
|
+ };
|
||||||
|
+
|
||||||
|
+ gpio-keys {
|
||||||
|
+ compatible = "gpio-keys";
|
||||||
|
+ #address-cells = <1>;
|
||||||
|
+ #size-cells = <0>;
|
||||||
|
+
|
||||||
|
+ restart {
|
||||||
|
+ label = "Reset";
|
||||||
|
+ linux,code = <KEY_RESTART>;
|
||||||
|
+ gpios = <&chipcommon 17 GPIO_ACTIVE_LOW>;
|
||||||
|
+ };
|
||||||
|
+ };
|
||||||
|
+};
|
||||||
|
+
|
||||||
|
+&usb3 {
|
||||||
|
+ vcc-gpio = <&chipcommon 18 GPIO_ACTIVE_HIGH>;
|
||||||
|
+};
|
||||||
|
+
|
||||||
|
+&spi_nor {
|
||||||
|
+ status = "okay";
|
||||||
|
+};
|
|
@ -0,0 +1,96 @@
|
||||||
|
From 65f78c4c41a9b9a7637e1dda2d5e41cf26ea971c Mon Sep 17 00:00:00 2001
|
||||||
|
From: Dan Haab <dhaab@luxul.com>
|
||||||
|
Date: Mon, 9 Oct 2017 09:46:23 -0600
|
||||||
|
Subject: [PATCH] ARM: dts: BCM5301X: Add DT for Luxul ABR-4500
|
||||||
|
MIME-Version: 1.0
|
||||||
|
Content-Type: text/plain; charset=UTF-8
|
||||||
|
Content-Transfer-Encoding: 8bit
|
||||||
|
|
||||||
|
This is BCM47094 (AKA BCM4709C0) based router with rear-facing ports
|
||||||
|
board design.
|
||||||
|
|
||||||
|
Signed-off-by: Dan Haab <dhaab@luxul.com>
|
||||||
|
Acked-by: Rafał Miłecki <rafal@milecki.pl>
|
||||||
|
Signed-off-by: Florian Fainelli <f.fainelli@gmail.com>
|
||||||
|
---
|
||||||
|
arch/arm/boot/dts/Makefile | 1 +
|
||||||
|
arch/arm/boot/dts/bcm47094-luxul-abr-4500.dts | 63 +++++++++++++++++++++++++++
|
||||||
|
2 files changed, 64 insertions(+)
|
||||||
|
create mode 100644 arch/arm/boot/dts/bcm47094-luxul-abr-4500.dts
|
||||||
|
|
||||||
|
--- a/arch/arm/boot/dts/Makefile
|
||||||
|
+++ b/arch/arm/boot/dts/Makefile
|
||||||
|
@@ -85,6 +85,7 @@ dtb-$(CONFIG_ARCH_BCM_5301X) += \
|
||||||
|
bcm4709-tplink-archer-c9-v1.dtb \
|
||||||
|
bcm47094-dlink-dir-885l.dtb \
|
||||||
|
bcm47094-linksys-panamera.dtb \
|
||||||
|
+ bcm47094-luxul-abr-4500.dtb \
|
||||||
|
bcm47094-luxul-xbr-4500.dtb \
|
||||||
|
bcm47094-luxul-xwr-3100.dtb \
|
||||||
|
bcm47094-netgear-r8500.dtb \
|
||||||
|
--- /dev/null
|
||||||
|
+++ b/arch/arm/boot/dts/bcm47094-luxul-abr-4500.dts
|
||||||
|
@@ -0,0 +1,63 @@
|
||||||
|
+/*
|
||||||
|
+ * Copyright (C) 2017 Luxul Inc.
|
||||||
|
+ *
|
||||||
|
+ * Licensed under the ISC license.
|
||||||
|
+ */
|
||||||
|
+
|
||||||
|
+/dts-v1/;
|
||||||
|
+
|
||||||
|
+#include "bcm4708.dtsi"
|
||||||
|
+#include "bcm5301x-nand-cs0-bch8.dtsi"
|
||||||
|
+
|
||||||
|
+/ {
|
||||||
|
+ compatible = "luxul,abr-4500-v1", "brcm,bcm47094", "brcm,bcm4708";
|
||||||
|
+ model = "Luxul ABR-4500 V1";
|
||||||
|
+
|
||||||
|
+ chosen {
|
||||||
|
+ bootargs = "earlycon";
|
||||||
|
+ };
|
||||||
|
+
|
||||||
|
+ memory {
|
||||||
|
+ reg = <0x00000000 0x08000000
|
||||||
|
+ 0x88000000 0x18000000>;
|
||||||
|
+ };
|
||||||
|
+
|
||||||
|
+ leds {
|
||||||
|
+ compatible = "gpio-leds";
|
||||||
|
+
|
||||||
|
+ status {
|
||||||
|
+ label = "bcm53xx:green:status";
|
||||||
|
+ gpios = <&chipcommon 20 GPIO_ACTIVE_LOW>;
|
||||||
|
+ linux,default-trigger = "timer";
|
||||||
|
+ };
|
||||||
|
+
|
||||||
|
+ usb3 {
|
||||||
|
+ label = "bcm53xx:green:usb3";
|
||||||
|
+ gpios = <&chipcommon 19 GPIO_ACTIVE_LOW>;
|
||||||
|
+ trigger-sources = <&ohci_port1>, <&ehci_port1>,
|
||||||
|
+ <&xhci_port1>;
|
||||||
|
+ linux,default-trigger = "usbport";
|
||||||
|
+ };
|
||||||
|
+
|
||||||
|
+ };
|
||||||
|
+
|
||||||
|
+ gpio-keys {
|
||||||
|
+ compatible = "gpio-keys";
|
||||||
|
+ #address-cells = <1>;
|
||||||
|
+ #size-cells = <0>;
|
||||||
|
+
|
||||||
|
+ restart {
|
||||||
|
+ label = "Reset";
|
||||||
|
+ linux,code = <KEY_RESTART>;
|
||||||
|
+ gpios = <&chipcommon 17 GPIO_ACTIVE_LOW>;
|
||||||
|
+ };
|
||||||
|
+ };
|
||||||
|
+};
|
||||||
|
+
|
||||||
|
+&usb3 {
|
||||||
|
+ vcc-gpio = <&chipcommon 18 GPIO_ACTIVE_HIGH>;
|
||||||
|
+};
|
||||||
|
+
|
||||||
|
+&spi_nor {
|
||||||
|
+ status = "okay";
|
||||||
|
+};
|
|
@ -0,0 +1,120 @@
|
||||||
|
From 0aa052ce1c3340850a7e5980b6d24b3ea5779591 Mon Sep 17 00:00:00 2001
|
||||||
|
From: Dan Haab <dhaab@luxul.com>
|
||||||
|
Date: Mon, 9 Oct 2017 09:46:59 -0600
|
||||||
|
Subject: [PATCH] ARM: dts: BCM53573: Add DT for Luxul XAP-810
|
||||||
|
MIME-Version: 1.0
|
||||||
|
Content-Type: text/plain; charset=UTF-8
|
||||||
|
Content-Transfer-Encoding: 8bit
|
||||||
|
|
||||||
|
This is BCM53573 WiSoC based access point with an extra BCM43217 chipset
|
||||||
|
used for 2.4 GHz.
|
||||||
|
|
||||||
|
Signed-off-by: Dan Haab <dhaab@luxul.com>
|
||||||
|
Acked-by: Rafał Miłecki <rafal@milecki.pl>
|
||||||
|
Signed-off-by: Florian Fainelli <f.fainelli@gmail.com>
|
||||||
|
---
|
||||||
|
arch/arm/boot/dts/Makefile | 1 +
|
||||||
|
arch/arm/boot/dts/bcm47189-luxul-xap-810.dts | 87 ++++++++++++++++++++++++++++
|
||||||
|
2 files changed, 88 insertions(+)
|
||||||
|
create mode 100644 arch/arm/boot/dts/bcm47189-luxul-xap-810.dts
|
||||||
|
|
||||||
|
--- a/arch/arm/boot/dts/Makefile
|
||||||
|
+++ b/arch/arm/boot/dts/Makefile
|
||||||
|
@@ -95,6 +95,7 @@ dtb-$(CONFIG_ARCH_BCM_5301X) += \
|
||||||
|
bcm953012hr.dtb \
|
||||||
|
bcm953012k.dtb
|
||||||
|
dtb-$(CONFIG_ARCH_BCM_53573) += \
|
||||||
|
+ bcm47189-luxul-xap-810.dtb \
|
||||||
|
bcm47189-tenda-ac9.dtb \
|
||||||
|
bcm947189acdbmr.dtb
|
||||||
|
dtb-$(CONFIG_ARCH_BCM_63XX) += \
|
||||||
|
--- /dev/null
|
||||||
|
+++ b/arch/arm/boot/dts/bcm47189-luxul-xap-810.dts
|
||||||
|
@@ -0,0 +1,87 @@
|
||||||
|
+/*
|
||||||
|
+ * Copyright 2017 Luxul Inc.
|
||||||
|
+ *
|
||||||
|
+ * Licensed under the ISC license.
|
||||||
|
+ */
|
||||||
|
+
|
||||||
|
+/dts-v1/;
|
||||||
|
+
|
||||||
|
+#include "bcm53573.dtsi"
|
||||||
|
+
|
||||||
|
+/ {
|
||||||
|
+ compatible = "luxul,xap-810-v1", "brcm,bcm47189", "brcm,bcm53573";
|
||||||
|
+ model = "Luxul XAP-810 V1";
|
||||||
|
+
|
||||||
|
+ chosen {
|
||||||
|
+ bootargs = "earlycon";
|
||||||
|
+ };
|
||||||
|
+
|
||||||
|
+ memory {
|
||||||
|
+ reg = <0x00000000 0x08000000>;
|
||||||
|
+ };
|
||||||
|
+
|
||||||
|
+ leds {
|
||||||
|
+ compatible = "gpio-leds";
|
||||||
|
+
|
||||||
|
+ 5ghz {
|
||||||
|
+ label = "bcm53xx:blue:5ghz";
|
||||||
|
+ gpios = <&chipcommon 11 GPIO_ACTIVE_HIGH>;
|
||||||
|
+ linux,default-trigger = "default-off";
|
||||||
|
+ };
|
||||||
|
+
|
||||||
|
+ system {
|
||||||
|
+ label = "bcm53xx:green:system";
|
||||||
|
+ gpios = <&chipcommon 15 GPIO_ACTIVE_HIGH>;
|
||||||
|
+ linux,default-trigger = "timer";
|
||||||
|
+ };
|
||||||
|
+ };
|
||||||
|
+
|
||||||
|
+ pcie0_leds {
|
||||||
|
+ compatible = "gpio-leds";
|
||||||
|
+
|
||||||
|
+ 2ghz {
|
||||||
|
+ label = "bcm53xx:blue:2ghz";
|
||||||
|
+ gpios = <&pcie0_chipcommon 3 GPIO_ACTIVE_HIGH>;
|
||||||
|
+ linux,default-trigger = "default-off";
|
||||||
|
+ };
|
||||||
|
+ };
|
||||||
|
+
|
||||||
|
+ gpio-keys {
|
||||||
|
+ compatible = "gpio-keys";
|
||||||
|
+ #address-cells = <1>;
|
||||||
|
+ #size-cells = <0>;
|
||||||
|
+
|
||||||
|
+ restart {
|
||||||
|
+ label = "Reset";
|
||||||
|
+ linux,code = <KEY_RESTART>;
|
||||||
|
+ gpios = <&chipcommon 7 GPIO_ACTIVE_LOW>;
|
||||||
|
+ };
|
||||||
|
+ };
|
||||||
|
+};
|
||||||
|
+
|
||||||
|
+&pcie0 {
|
||||||
|
+ ranges = <0x00000000 0 0 0 0 0x00100000>;
|
||||||
|
+ #address-cells = <3>;
|
||||||
|
+ #size-cells = <2>;
|
||||||
|
+
|
||||||
|
+ bridge@0,0,0 {
|
||||||
|
+ reg = <0x0000 0 0 0 0>;
|
||||||
|
+ ranges = <0x00000000 0 0 0 0 0 0 0x00100000>;
|
||||||
|
+ #address-cells = <3>;
|
||||||
|
+ #size-cells = <2>;
|
||||||
|
+
|
||||||
|
+ wifi@0,1,0 {
|
||||||
|
+ reg = <0x0000 0 0 0 0>;
|
||||||
|
+ ranges = <0x00000000 0 0 0 0x00100000>;
|
||||||
|
+ #address-cells = <1>;
|
||||||
|
+ #size-cells = <1>;
|
||||||
|
+
|
||||||
|
+ pcie0_chipcommon: chipcommon@0 {
|
||||||
|
+ reg = <0 0x1000>;
|
||||||
|
+
|
||||||
|
+ gpio-controller;
|
||||||
|
+ #gpio-cells = <2>;
|
||||||
|
+ };
|
||||||
|
+ };
|
||||||
|
+ };
|
||||||
|
+};
|
|
@ -0,0 +1,83 @@
|
||||||
|
From 7030ea600d560026b91726f2eb79c856b813afa9 Mon Sep 17 00:00:00 2001
|
||||||
|
From: Dan Haab <dhaab@luxul.com>
|
||||||
|
Date: Mon, 9 Oct 2017 09:47:00 -0600
|
||||||
|
Subject: [PATCH] ARM: dts: BCM53573: Add DT for Luxul XAP-1440
|
||||||
|
MIME-Version: 1.0
|
||||||
|
Content-Type: text/plain; charset=UTF-8
|
||||||
|
Content-Transfer-Encoding: 8bit
|
||||||
|
|
||||||
|
This is BCM53573 WiSoC based outdoor access point with an extra BCM43217
|
||||||
|
chipset used for 2.4 GHz.
|
||||||
|
|
||||||
|
Signed-off-by: Dan Haab <dhaab@luxul.com>
|
||||||
|
Acked-by: Rafał Miłecki <rafal@milecki.pl>
|
||||||
|
Signed-off-by: Florian Fainelli <f.fainelli@gmail.com>
|
||||||
|
---
|
||||||
|
arch/arm/boot/dts/Makefile | 1 +
|
||||||
|
arch/arm/boot/dts/bcm47189-luxul-xap-1440.dts | 50 +++++++++++++++++++++++++++
|
||||||
|
2 files changed, 51 insertions(+)
|
||||||
|
create mode 100644 arch/arm/boot/dts/bcm47189-luxul-xap-1440.dts
|
||||||
|
|
||||||
|
--- a/arch/arm/boot/dts/Makefile
|
||||||
|
+++ b/arch/arm/boot/dts/Makefile
|
||||||
|
@@ -95,6 +95,7 @@ dtb-$(CONFIG_ARCH_BCM_5301X) += \
|
||||||
|
bcm953012hr.dtb \
|
||||||
|
bcm953012k.dtb
|
||||||
|
dtb-$(CONFIG_ARCH_BCM_53573) += \
|
||||||
|
+ bcm47189-luxul-xap-1440.dtb \
|
||||||
|
bcm47189-luxul-xap-810.dtb \
|
||||||
|
bcm47189-tenda-ac9.dtb \
|
||||||
|
bcm947189acdbmr.dtb
|
||||||
|
--- /dev/null
|
||||||
|
+++ b/arch/arm/boot/dts/bcm47189-luxul-xap-1440.dts
|
||||||
|
@@ -0,0 +1,50 @@
|
||||||
|
+/*
|
||||||
|
+ * Copyright 2017 Luxul Inc.
|
||||||
|
+ *
|
||||||
|
+ * Licensed under the ISC license.
|
||||||
|
+ */
|
||||||
|
+
|
||||||
|
+/dts-v1/;
|
||||||
|
+
|
||||||
|
+#include "bcm53573.dtsi"
|
||||||
|
+
|
||||||
|
+/ {
|
||||||
|
+ compatible = "luxul,xap-1440-v1", "brcm,bcm47189", "brcm,bcm53573";
|
||||||
|
+ model = "Luxul XAP-1440 V1";
|
||||||
|
+
|
||||||
|
+ chosen {
|
||||||
|
+ bootargs = "earlycon";
|
||||||
|
+ };
|
||||||
|
+
|
||||||
|
+ memory {
|
||||||
|
+ reg = <0x00000000 0x08000000>;
|
||||||
|
+ };
|
||||||
|
+
|
||||||
|
+ leds {
|
||||||
|
+ compatible = "gpio-leds";
|
||||||
|
+
|
||||||
|
+ wlan {
|
||||||
|
+ label = "bcm53xx:blue:wlan";
|
||||||
|
+ gpios = <&chipcommon 10 GPIO_ACTIVE_LOW>;
|
||||||
|
+ linux,default-trigger = "default-off";
|
||||||
|
+ };
|
||||||
|
+
|
||||||
|
+ system {
|
||||||
|
+ label = "bcm53xx:green:system";
|
||||||
|
+ gpios = <&chipcommon 11 GPIO_ACTIVE_LOW>;
|
||||||
|
+ linux,default-trigger = "timer";
|
||||||
|
+ };
|
||||||
|
+ };
|
||||||
|
+
|
||||||
|
+ gpio-keys {
|
||||||
|
+ compatible = "gpio-keys";
|
||||||
|
+ #address-cells = <1>;
|
||||||
|
+ #size-cells = <0>;
|
||||||
|
+
|
||||||
|
+ restart {
|
||||||
|
+ label = "Reset";
|
||||||
|
+ linux,code = <KEY_RESTART>;
|
||||||
|
+ gpios = <&chipcommon 7 GPIO_ACTIVE_LOW>;
|
||||||
|
+ };
|
||||||
|
+ };
|
||||||
|
+};
|
|
@ -23,4 +23,48 @@ Signed-off-by: Rafał Miłecki <rafal@milecki.pl>
|
||||||
+ bootargs = "console=ttyS0,115200 earlycon";
|
+ bootargs = "console=ttyS0,115200 earlycon";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
memory {
|
||||||
|
--- a/arch/arm/boot/dts/bcm47094-luxul-abr-4500.dts
|
||||||
|
+++ b/arch/arm/boot/dts/bcm47094-luxul-abr-4500.dts
|
||||||
|
@@ -14,7 +14,7 @@
|
||||||
|
model = "Luxul ABR-4500 V1";
|
||||||
|
|
||||||
|
chosen {
|
||||||
|
- bootargs = "earlycon";
|
||||||
|
+ bootargs = "console=ttyS0,115200 earlycon";
|
||||||
|
};
|
||||||
|
|
||||||
|
memory {
|
||||||
|
--- a/arch/arm/boot/dts/bcm47094-luxul-xbr-4500.dts
|
||||||
|
+++ b/arch/arm/boot/dts/bcm47094-luxul-xbr-4500.dts
|
||||||
|
@@ -14,7 +14,7 @@
|
||||||
|
model = "Luxul XBR-4500 V1";
|
||||||
|
|
||||||
|
chosen {
|
||||||
|
- bootargs = "earlycon";
|
||||||
|
+ bootargs = "console=ttyS0,115200 earlycon";
|
||||||
|
};
|
||||||
|
|
||||||
|
memory {
|
||||||
|
--- a/arch/arm/boot/dts/bcm47189-luxul-xap-1440.dts
|
||||||
|
+++ b/arch/arm/boot/dts/bcm47189-luxul-xap-1440.dts
|
||||||
|
@@ -13,7 +13,7 @@
|
||||||
|
model = "Luxul XAP-1440 V1";
|
||||||
|
|
||||||
|
chosen {
|
||||||
|
- bootargs = "earlycon";
|
||||||
|
+ bootargs = "console=ttyS0,115200 earlycon";
|
||||||
|
};
|
||||||
|
|
||||||
|
memory {
|
||||||
|
--- a/arch/arm/boot/dts/bcm47189-luxul-xap-810.dts
|
||||||
|
+++ b/arch/arm/boot/dts/bcm47189-luxul-xap-810.dts
|
||||||
|
@@ -13,7 +13,7 @@
|
||||||
|
model = "Luxul XAP-810 V1";
|
||||||
|
|
||||||
|
chosen {
|
||||||
|
- bootargs = "earlycon";
|
||||||
|
+ bootargs = "console=ttyS0,115200 earlycon";
|
||||||
|
};
|
||||||
|
|
||||||
memory {
|
memory {
|
||||||
|
|
|
@ -0,0 +1,135 @@
|
||||||
|
From 092ccf0415c720a1e9458a46fe75f77574027a55 Mon Sep 17 00:00:00 2001
|
||||||
|
From: Florian Fainelli <f.fainelli@gmail.com>
|
||||||
|
Date: Tue, 18 Jul 2017 12:37:37 -0700
|
||||||
|
Subject: [PATCH] ARM: dts: BCM53573: Add Broadcom BCM947189ACDBMR board
|
||||||
|
support
|
||||||
|
|
||||||
|
Adds support for the Broadcom reference board BCM947189ACDMBR which
|
||||||
|
features the following:
|
||||||
|
|
||||||
|
* 128MB of DRAM
|
||||||
|
* External MoCA support through a Broadcom BCM6802 chip
|
||||||
|
* 1x external Gigabit PHY through the external BCM6802
|
||||||
|
* 1x USB 2.0 port
|
||||||
|
* 1x PCIE slot
|
||||||
|
* Few configurable buttons and LEDs
|
||||||
|
|
||||||
|
Signed-off-by: Florian Fainelli <f.fainelli@gmail.com>
|
||||||
|
---
|
||||||
|
arch/arm/boot/dts/Makefile | 3 +-
|
||||||
|
arch/arm/boot/dts/bcm947189acdbmr.dts | 97 +++++++++++++++++++++++++++++++++++
|
||||||
|
2 files changed, 99 insertions(+), 1 deletion(-)
|
||||||
|
create mode 100644 arch/arm/boot/dts/bcm947189acdbmr.dts
|
||||||
|
|
||||||
|
--- a/arch/arm/boot/dts/Makefile
|
||||||
|
+++ b/arch/arm/boot/dts/Makefile
|
||||||
|
@@ -103,7 +103,8 @@ dtb-$(CONFIG_ARCH_BCM_5301X) += \
|
||||||
|
bcm953012hr.dtb \
|
||||||
|
bcm953012k.dtb
|
||||||
|
dtb-$(CONFIG_ARCH_BCM_53573) += \
|
||||||
|
- bcm47189-tenda-ac9.dtb
|
||||||
|
+ bcm47189-tenda-ac9.dtb \
|
||||||
|
+ bcm947189acdbmr.dtb
|
||||||
|
dtb-$(CONFIG_ARCH_BCM_63XX) += \
|
||||||
|
bcm963138dvt.dtb
|
||||||
|
dtb-$(CONFIG_ARCH_BCM_CYGNUS) += \
|
||||||
|
--- /dev/null
|
||||||
|
+++ b/arch/arm/boot/dts/bcm947189acdbmr.dts
|
||||||
|
@@ -0,0 +1,97 @@
|
||||||
|
+/*
|
||||||
|
+ * Copyright (C) 2017 Broadcom
|
||||||
|
+ * Author: Florian Fainelli <f.fainelli@gmail.com>
|
||||||
|
+ *
|
||||||
|
+ * Licensed under the ISC license.
|
||||||
|
+ */
|
||||||
|
+
|
||||||
|
+/dts-v1/;
|
||||||
|
+
|
||||||
|
+#include "bcm53573.dtsi"
|
||||||
|
+
|
||||||
|
+/ {
|
||||||
|
+ compatible = "brcm,bcm947189acdbmr", "brcm,bcm47189", "brcm,bcm53573";
|
||||||
|
+ model = "Broadcom BCM947189ACDBMR";
|
||||||
|
+
|
||||||
|
+ chosen {
|
||||||
|
+ bootargs = "console=ttyS0,115200 earlycon";
|
||||||
|
+ };
|
||||||
|
+
|
||||||
|
+ memory {
|
||||||
|
+ reg = <0x00000000 0x08000000>;
|
||||||
|
+ };
|
||||||
|
+
|
||||||
|
+ leds {
|
||||||
|
+ compatible = "gpio-leds";
|
||||||
|
+
|
||||||
|
+ wps {
|
||||||
|
+ label = "bcm53xx:blue:wps";
|
||||||
|
+ gpios = <&chipcommon 10 GPIO_ACTIVE_HIGH>;
|
||||||
|
+ };
|
||||||
|
+
|
||||||
|
+ 5ghz {
|
||||||
|
+ label = "bcm53xx:blue:5ghz";
|
||||||
|
+ gpios = <&chipcommon 11 GPIO_ACTIVE_HIGH>;
|
||||||
|
+ };
|
||||||
|
+
|
||||||
|
+ 2ghz {
|
||||||
|
+ label = "bcm53xx:blue:2ghz";
|
||||||
|
+ gpios = <&chipcommon 12 GPIO_ACTIVE_HIGH>;
|
||||||
|
+ };
|
||||||
|
+ };
|
||||||
|
+
|
||||||
|
+ gpio-keys {
|
||||||
|
+ compatible = "gpio-keys";
|
||||||
|
+ #address-cells = <1>;
|
||||||
|
+ #size-cells = <0>;
|
||||||
|
+
|
||||||
|
+ restart {
|
||||||
|
+ label = "Reset";
|
||||||
|
+ linux,code = <KEY_RESTART>;
|
||||||
|
+ gpios = <&chipcommon 7 GPIO_ACTIVE_HIGH>;
|
||||||
|
+ };
|
||||||
|
+
|
||||||
|
+ wps {
|
||||||
|
+ label = "WPS";
|
||||||
|
+ linux,code = <KEY_WPS_BUTTON>;
|
||||||
|
+ gpios = <&chipcommon 9 GPIO_ACTIVE_LOW>;
|
||||||
|
+ };
|
||||||
|
+ };
|
||||||
|
+
|
||||||
|
+ spi {
|
||||||
|
+ compatible = "spi-gpio";
|
||||||
|
+ num-chipselects = <1>;
|
||||||
|
+ gpio-sck = <&chipcommon 21 0>;
|
||||||
|
+ gpio-miso = <&chipcommon 22 0>;
|
||||||
|
+ gpio-mosi = <&chipcommon 23 0>;
|
||||||
|
+ cs-gpios = <&chipcommon 24 0>;
|
||||||
|
+ #address-cells = <1>;
|
||||||
|
+ #size-cells = <0>;
|
||||||
|
+
|
||||||
|
+ /* External BCM6802 MoCA chip is connected */
|
||||||
|
+ };
|
||||||
|
+};
|
||||||
|
+
|
||||||
|
+&pcie0 {
|
||||||
|
+ ranges = <0x00000000 0 0 0 0 0x00100000>;
|
||||||
|
+ #address-cells = <3>;
|
||||||
|
+ #size-cells = <2>;
|
||||||
|
+
|
||||||
|
+ bridge@0,0,0 {
|
||||||
|
+ reg = <0x0000 0 0 0 0>;
|
||||||
|
+ ranges = <0x00000000 0 0 0 0 0 0 0x00100000>;
|
||||||
|
+ #address-cells = <3>;
|
||||||
|
+ #size-cells = <2>;
|
||||||
|
+
|
||||||
|
+ wifi@0,1,0 {
|
||||||
|
+ reg = <0x0000 0 0 0 0>;
|
||||||
|
+ ranges = <0x00000000 0 0 0 0x00100000>;
|
||||||
|
+ #address-cells = <1>;
|
||||||
|
+ #size-cells = <1>;
|
||||||
|
+ };
|
||||||
|
+ };
|
||||||
|
+};
|
||||||
|
+
|
||||||
|
+&usb2 {
|
||||||
|
+ vcc-gpio = <&chipcommon 8 GPIO_ACTIVE_HIGH>;
|
||||||
|
+};
|
|
@ -0,0 +1,58 @@
|
||||||
|
From 0173b2cd6948b5b96ac4e8dbc3bcb4dd0b45c296 Mon Sep 17 00:00:00 2001
|
||||||
|
From: =?UTF-8?q?Rafa=C5=82=20Mi=C5=82ecki?= <rafal@milecki.pl>
|
||||||
|
Date: Thu, 17 Aug 2017 11:05:14 +0200
|
||||||
|
Subject: [PATCH] ARM: BCM53573: Specify ports for USB LED for Tenda AC9
|
||||||
|
MIME-Version: 1.0
|
||||||
|
Content-Type: text/plain; charset=UTF-8
|
||||||
|
Content-Transfer-Encoding: 8bit
|
||||||
|
|
||||||
|
This uses trigger-sources documented in commit 80dc6e1cd85fc ("dt-bindings:
|
||||||
|
leds: document new trigger-sources property") to specify USB ports. Such an
|
||||||
|
information can be used by operating system to setup LEDs behavior.
|
||||||
|
|
||||||
|
Signed-off-by: Rafał Miłecki <rafal@milecki.pl>
|
||||||
|
Signed-off-by: Florian Fainelli <f.fainelli@gmail.com>
|
||||||
|
---
|
||||||
|
arch/arm/boot/dts/bcm47189-tenda-ac9.dts | 2 ++
|
||||||
|
arch/arm/boot/dts/bcm53573.dtsi | 4 ++++
|
||||||
|
2 files changed, 6 insertions(+)
|
||||||
|
|
||||||
|
--- a/arch/arm/boot/dts/bcm47189-tenda-ac9.dts
|
||||||
|
+++ b/arch/arm/boot/dts/bcm47189-tenda-ac9.dts
|
||||||
|
@@ -26,6 +26,8 @@
|
||||||
|
usb {
|
||||||
|
label = "bcm53xx:blue:usb";
|
||||||
|
gpios = <&chipcommon 1 GPIO_ACTIVE_HIGH>;
|
||||||
|
+ trigger-sources = <&ohci_port1>, <&ehci_port1>;
|
||||||
|
+ linux,default-trigger = "usbport";
|
||||||
|
};
|
||||||
|
|
||||||
|
wps {
|
||||||
|
--- a/arch/arm/boot/dts/bcm53573.dtsi
|
||||||
|
+++ b/arch/arm/boot/dts/bcm53573.dtsi
|
||||||
|
@@ -138,10 +138,12 @@
|
||||||
|
|
||||||
|
ehci_port1: port@1 {
|
||||||
|
reg = <1>;
|
||||||
|
+ #trigger-source-cells = <0>;
|
||||||
|
};
|
||||||
|
|
||||||
|
ehci_port2: port@2 {
|
||||||
|
reg = <2>;
|
||||||
|
+ #trigger-source-cells = <0>;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
@@ -158,10 +160,12 @@
|
||||||
|
|
||||||
|
ohci_port1: port@1 {
|
||||||
|
reg = <1>;
|
||||||
|
+ #trigger-source-cells = <0>;
|
||||||
|
};
|
||||||
|
|
||||||
|
ohci_port2: port@2 {
|
||||||
|
reg = <2>;
|
||||||
|
+ #trigger-source-cells = <0>;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
|
@ -0,0 +1,30 @@
|
||||||
|
From 2460266f21f140936e627f28f28d1a4f30887ae9 Mon Sep 17 00:00:00 2001
|
||||||
|
From: =?UTF-8?q?Rafa=C5=82=20Mi=C5=82ecki?= <rafal@milecki.pl>
|
||||||
|
Date: Fri, 6 Oct 2017 10:52:35 +0200
|
||||||
|
Subject: [PATCH] ARM: dts: BCM5301X: Specify USB ports for USB LED of Luxul
|
||||||
|
XWR-1200
|
||||||
|
MIME-Version: 1.0
|
||||||
|
Content-Type: text/plain; charset=UTF-8
|
||||||
|
Content-Transfer-Encoding: 8bit
|
||||||
|
|
||||||
|
This info can be used by operating system to setup LED behavior.
|
||||||
|
|
||||||
|
Reported-by: Dan Haab <dhaab@luxul.com>
|
||||||
|
Signed-off-by: Rafał Miłecki <rafal@milecki.pl>
|
||||||
|
Signed-off-by: Florian Fainelli <f.fainelli@gmail.com>
|
||||||
|
---
|
||||||
|
arch/arm/boot/dts/bcm47081-luxul-xwr-1200.dts | 3 ++-
|
||||||
|
1 file changed, 2 insertions(+), 1 deletion(-)
|
||||||
|
|
||||||
|
--- a/arch/arm/boot/dts/bcm47081-luxul-xwr-1200.dts
|
||||||
|
+++ b/arch/arm/boot/dts/bcm47081-luxul-xwr-1200.dts
|
||||||
|
@@ -57,7 +57,8 @@
|
||||||
|
usb {
|
||||||
|
label = "bcm53xx:green:usb";
|
||||||
|
gpios = <&chipcommon 8 GPIO_ACTIVE_LOW>;
|
||||||
|
- linux,default-trigger = "none";
|
||||||
|
+ trigger-sources = <&ohci_port2>, <&ehci_port2>;
|
||||||
|
+ linux,default-trigger = "usbport";
|
||||||
|
};
|
||||||
|
|
||||||
|
status {
|
|
@ -0,0 +1,96 @@
|
||||||
|
From 1f4b0d5596d2e3ea8e953d578ab8444ce860d35d Mon Sep 17 00:00:00 2001
|
||||||
|
From: Dan Haab <dhaab@luxul.com>
|
||||||
|
Date: Mon, 9 Oct 2017 09:46:22 -0600
|
||||||
|
Subject: [PATCH] ARM: dts: BCM5301X: Add DT for Luxul XBR-4500
|
||||||
|
MIME-Version: 1.0
|
||||||
|
Content-Type: text/plain; charset=UTF-8
|
||||||
|
Content-Transfer-Encoding: 8bit
|
||||||
|
|
||||||
|
This is BCM47094 (AKA BCM4709C0) based router with ports-on-the-front
|
||||||
|
board design.
|
||||||
|
|
||||||
|
Signed-off-by: Dan Haab <dhaab@luxul.com>
|
||||||
|
Acked-by: Rafał Miłecki <rafal@milecki.pl>
|
||||||
|
Signed-off-by: Florian Fainelli <f.fainelli@gmail.com>
|
||||||
|
---
|
||||||
|
arch/arm/boot/dts/Makefile | 1 +
|
||||||
|
arch/arm/boot/dts/bcm47094-luxul-xbr-4500.dts | 63 +++++++++++++++++++++++++++
|
||||||
|
2 files changed, 64 insertions(+)
|
||||||
|
create mode 100644 arch/arm/boot/dts/bcm47094-luxul-xbr-4500.dts
|
||||||
|
|
||||||
|
--- a/arch/arm/boot/dts/Makefile
|
||||||
|
+++ b/arch/arm/boot/dts/Makefile
|
||||||
|
@@ -95,6 +95,7 @@ dtb-$(CONFIG_ARCH_BCM_5301X) += \
|
||||||
|
bcm4709-tplink-archer-c9-v1.dtb \
|
||||||
|
bcm47094-dlink-dir-885l.dtb \
|
||||||
|
bcm47094-linksys-panamera.dtb \
|
||||||
|
+ bcm47094-luxul-xbr-4500.dtb \
|
||||||
|
bcm47094-luxul-xwr-3100.dtb \
|
||||||
|
bcm47094-netgear-r8500.dtb \
|
||||||
|
bcm94708.dtb \
|
||||||
|
--- /dev/null
|
||||||
|
+++ b/arch/arm/boot/dts/bcm47094-luxul-xbr-4500.dts
|
||||||
|
@@ -0,0 +1,63 @@
|
||||||
|
+/*
|
||||||
|
+ * Copyright (C) 2017 Luxul Inc.
|
||||||
|
+ *
|
||||||
|
+ * Licensed under the ISC license.
|
||||||
|
+ */
|
||||||
|
+
|
||||||
|
+/dts-v1/;
|
||||||
|
+
|
||||||
|
+#include "bcm4708.dtsi"
|
||||||
|
+#include "bcm5301x-nand-cs0-bch8.dtsi"
|
||||||
|
+
|
||||||
|
+/ {
|
||||||
|
+ compatible = "luxul,xbr-4500-v1", "brcm,bcm47094", "brcm,bcm4708";
|
||||||
|
+ model = "Luxul XBR-4500 V1";
|
||||||
|
+
|
||||||
|
+ chosen {
|
||||||
|
+ bootargs = "earlycon";
|
||||||
|
+ };
|
||||||
|
+
|
||||||
|
+ memory {
|
||||||
|
+ reg = <0x00000000 0x08000000
|
||||||
|
+ 0x88000000 0x18000000>;
|
||||||
|
+ };
|
||||||
|
+
|
||||||
|
+ leds {
|
||||||
|
+ compatible = "gpio-leds";
|
||||||
|
+
|
||||||
|
+ status {
|
||||||
|
+ label = "bcm53xx:green:status";
|
||||||
|
+ gpios = <&chipcommon 20 GPIO_ACTIVE_HIGH>;
|
||||||
|
+ linux,default-trigger = "timer";
|
||||||
|
+ };
|
||||||
|
+
|
||||||
|
+ usb3 {
|
||||||
|
+ label = "bcm53xx:green:usb3";
|
||||||
|
+ gpios = <&chipcommon 19 GPIO_ACTIVE_HIGH>;
|
||||||
|
+ trigger-sources = <&ohci_port1>, <&ehci_port1>,
|
||||||
|
+ <&xhci_port1>;
|
||||||
|
+ linux,default-trigger = "usbport";
|
||||||
|
+ };
|
||||||
|
+
|
||||||
|
+ };
|
||||||
|
+
|
||||||
|
+ gpio-keys {
|
||||||
|
+ compatible = "gpio-keys";
|
||||||
|
+ #address-cells = <1>;
|
||||||
|
+ #size-cells = <0>;
|
||||||
|
+
|
||||||
|
+ restart {
|
||||||
|
+ label = "Reset";
|
||||||
|
+ linux,code = <KEY_RESTART>;
|
||||||
|
+ gpios = <&chipcommon 17 GPIO_ACTIVE_LOW>;
|
||||||
|
+ };
|
||||||
|
+ };
|
||||||
|
+};
|
||||||
|
+
|
||||||
|
+&usb3 {
|
||||||
|
+ vcc-gpio = <&chipcommon 18 GPIO_ACTIVE_HIGH>;
|
||||||
|
+};
|
||||||
|
+
|
||||||
|
+&spi_nor {
|
||||||
|
+ status = "okay";
|
||||||
|
+};
|
|
@ -0,0 +1,96 @@
|
||||||
|
From 65f78c4c41a9b9a7637e1dda2d5e41cf26ea971c Mon Sep 17 00:00:00 2001
|
||||||
|
From: Dan Haab <dhaab@luxul.com>
|
||||||
|
Date: Mon, 9 Oct 2017 09:46:23 -0600
|
||||||
|
Subject: [PATCH] ARM: dts: BCM5301X: Add DT for Luxul ABR-4500
|
||||||
|
MIME-Version: 1.0
|
||||||
|
Content-Type: text/plain; charset=UTF-8
|
||||||
|
Content-Transfer-Encoding: 8bit
|
||||||
|
|
||||||
|
This is BCM47094 (AKA BCM4709C0) based router with rear-facing ports
|
||||||
|
board design.
|
||||||
|
|
||||||
|
Signed-off-by: Dan Haab <dhaab@luxul.com>
|
||||||
|
Acked-by: Rafał Miłecki <rafal@milecki.pl>
|
||||||
|
Signed-off-by: Florian Fainelli <f.fainelli@gmail.com>
|
||||||
|
---
|
||||||
|
arch/arm/boot/dts/Makefile | 1 +
|
||||||
|
arch/arm/boot/dts/bcm47094-luxul-abr-4500.dts | 63 +++++++++++++++++++++++++++
|
||||||
|
2 files changed, 64 insertions(+)
|
||||||
|
create mode 100644 arch/arm/boot/dts/bcm47094-luxul-abr-4500.dts
|
||||||
|
|
||||||
|
--- a/arch/arm/boot/dts/Makefile
|
||||||
|
+++ b/arch/arm/boot/dts/Makefile
|
||||||
|
@@ -95,6 +95,7 @@ dtb-$(CONFIG_ARCH_BCM_5301X) += \
|
||||||
|
bcm4709-tplink-archer-c9-v1.dtb \
|
||||||
|
bcm47094-dlink-dir-885l.dtb \
|
||||||
|
bcm47094-linksys-panamera.dtb \
|
||||||
|
+ bcm47094-luxul-abr-4500.dtb \
|
||||||
|
bcm47094-luxul-xbr-4500.dtb \
|
||||||
|
bcm47094-luxul-xwr-3100.dtb \
|
||||||
|
bcm47094-netgear-r8500.dtb \
|
||||||
|
--- /dev/null
|
||||||
|
+++ b/arch/arm/boot/dts/bcm47094-luxul-abr-4500.dts
|
||||||
|
@@ -0,0 +1,63 @@
|
||||||
|
+/*
|
||||||
|
+ * Copyright (C) 2017 Luxul Inc.
|
||||||
|
+ *
|
||||||
|
+ * Licensed under the ISC license.
|
||||||
|
+ */
|
||||||
|
+
|
||||||
|
+/dts-v1/;
|
||||||
|
+
|
||||||
|
+#include "bcm4708.dtsi"
|
||||||
|
+#include "bcm5301x-nand-cs0-bch8.dtsi"
|
||||||
|
+
|
||||||
|
+/ {
|
||||||
|
+ compatible = "luxul,abr-4500-v1", "brcm,bcm47094", "brcm,bcm4708";
|
||||||
|
+ model = "Luxul ABR-4500 V1";
|
||||||
|
+
|
||||||
|
+ chosen {
|
||||||
|
+ bootargs = "earlycon";
|
||||||
|
+ };
|
||||||
|
+
|
||||||
|
+ memory {
|
||||||
|
+ reg = <0x00000000 0x08000000
|
||||||
|
+ 0x88000000 0x18000000>;
|
||||||
|
+ };
|
||||||
|
+
|
||||||
|
+ leds {
|
||||||
|
+ compatible = "gpio-leds";
|
||||||
|
+
|
||||||
|
+ status {
|
||||||
|
+ label = "bcm53xx:green:status";
|
||||||
|
+ gpios = <&chipcommon 20 GPIO_ACTIVE_LOW>;
|
||||||
|
+ linux,default-trigger = "timer";
|
||||||
|
+ };
|
||||||
|
+
|
||||||
|
+ usb3 {
|
||||||
|
+ label = "bcm53xx:green:usb3";
|
||||||
|
+ gpios = <&chipcommon 19 GPIO_ACTIVE_LOW>;
|
||||||
|
+ trigger-sources = <&ohci_port1>, <&ehci_port1>,
|
||||||
|
+ <&xhci_port1>;
|
||||||
|
+ linux,default-trigger = "usbport";
|
||||||
|
+ };
|
||||||
|
+
|
||||||
|
+ };
|
||||||
|
+
|
||||||
|
+ gpio-keys {
|
||||||
|
+ compatible = "gpio-keys";
|
||||||
|
+ #address-cells = <1>;
|
||||||
|
+ #size-cells = <0>;
|
||||||
|
+
|
||||||
|
+ restart {
|
||||||
|
+ label = "Reset";
|
||||||
|
+ linux,code = <KEY_RESTART>;
|
||||||
|
+ gpios = <&chipcommon 17 GPIO_ACTIVE_LOW>;
|
||||||
|
+ };
|
||||||
|
+ };
|
||||||
|
+};
|
||||||
|
+
|
||||||
|
+&usb3 {
|
||||||
|
+ vcc-gpio = <&chipcommon 18 GPIO_ACTIVE_HIGH>;
|
||||||
|
+};
|
||||||
|
+
|
||||||
|
+&spi_nor {
|
||||||
|
+ status = "okay";
|
||||||
|
+};
|
|
@ -0,0 +1,120 @@
|
||||||
|
From 0aa052ce1c3340850a7e5980b6d24b3ea5779591 Mon Sep 17 00:00:00 2001
|
||||||
|
From: Dan Haab <dhaab@luxul.com>
|
||||||
|
Date: Mon, 9 Oct 2017 09:46:59 -0600
|
||||||
|
Subject: [PATCH] ARM: dts: BCM53573: Add DT for Luxul XAP-810
|
||||||
|
MIME-Version: 1.0
|
||||||
|
Content-Type: text/plain; charset=UTF-8
|
||||||
|
Content-Transfer-Encoding: 8bit
|
||||||
|
|
||||||
|
This is BCM53573 WiSoC based access point with an extra BCM43217 chipset
|
||||||
|
used for 2.4 GHz.
|
||||||
|
|
||||||
|
Signed-off-by: Dan Haab <dhaab@luxul.com>
|
||||||
|
Acked-by: Rafał Miłecki <rafal@milecki.pl>
|
||||||
|
Signed-off-by: Florian Fainelli <f.fainelli@gmail.com>
|
||||||
|
---
|
||||||
|
arch/arm/boot/dts/Makefile | 1 +
|
||||||
|
arch/arm/boot/dts/bcm47189-luxul-xap-810.dts | 87 ++++++++++++++++++++++++++++
|
||||||
|
2 files changed, 88 insertions(+)
|
||||||
|
create mode 100644 arch/arm/boot/dts/bcm47189-luxul-xap-810.dts
|
||||||
|
|
||||||
|
--- a/arch/arm/boot/dts/Makefile
|
||||||
|
+++ b/arch/arm/boot/dts/Makefile
|
||||||
|
@@ -105,6 +105,7 @@ dtb-$(CONFIG_ARCH_BCM_5301X) += \
|
||||||
|
bcm953012hr.dtb \
|
||||||
|
bcm953012k.dtb
|
||||||
|
dtb-$(CONFIG_ARCH_BCM_53573) += \
|
||||||
|
+ bcm47189-luxul-xap-810.dtb \
|
||||||
|
bcm47189-tenda-ac9.dtb \
|
||||||
|
bcm947189acdbmr.dtb
|
||||||
|
dtb-$(CONFIG_ARCH_BCM_63XX) += \
|
||||||
|
--- /dev/null
|
||||||
|
+++ b/arch/arm/boot/dts/bcm47189-luxul-xap-810.dts
|
||||||
|
@@ -0,0 +1,87 @@
|
||||||
|
+/*
|
||||||
|
+ * Copyright 2017 Luxul Inc.
|
||||||
|
+ *
|
||||||
|
+ * Licensed under the ISC license.
|
||||||
|
+ */
|
||||||
|
+
|
||||||
|
+/dts-v1/;
|
||||||
|
+
|
||||||
|
+#include "bcm53573.dtsi"
|
||||||
|
+
|
||||||
|
+/ {
|
||||||
|
+ compatible = "luxul,xap-810-v1", "brcm,bcm47189", "brcm,bcm53573";
|
||||||
|
+ model = "Luxul XAP-810 V1";
|
||||||
|
+
|
||||||
|
+ chosen {
|
||||||
|
+ bootargs = "earlycon";
|
||||||
|
+ };
|
||||||
|
+
|
||||||
|
+ memory {
|
||||||
|
+ reg = <0x00000000 0x08000000>;
|
||||||
|
+ };
|
||||||
|
+
|
||||||
|
+ leds {
|
||||||
|
+ compatible = "gpio-leds";
|
||||||
|
+
|
||||||
|
+ 5ghz {
|
||||||
|
+ label = "bcm53xx:blue:5ghz";
|
||||||
|
+ gpios = <&chipcommon 11 GPIO_ACTIVE_HIGH>;
|
||||||
|
+ linux,default-trigger = "default-off";
|
||||||
|
+ };
|
||||||
|
+
|
||||||
|
+ system {
|
||||||
|
+ label = "bcm53xx:green:system";
|
||||||
|
+ gpios = <&chipcommon 15 GPIO_ACTIVE_HIGH>;
|
||||||
|
+ linux,default-trigger = "timer";
|
||||||
|
+ };
|
||||||
|
+ };
|
||||||
|
+
|
||||||
|
+ pcie0_leds {
|
||||||
|
+ compatible = "gpio-leds";
|
||||||
|
+
|
||||||
|
+ 2ghz {
|
||||||
|
+ label = "bcm53xx:blue:2ghz";
|
||||||
|
+ gpios = <&pcie0_chipcommon 3 GPIO_ACTIVE_HIGH>;
|
||||||
|
+ linux,default-trigger = "default-off";
|
||||||
|
+ };
|
||||||
|
+ };
|
||||||
|
+
|
||||||
|
+ gpio-keys {
|
||||||
|
+ compatible = "gpio-keys";
|
||||||
|
+ #address-cells = <1>;
|
||||||
|
+ #size-cells = <0>;
|
||||||
|
+
|
||||||
|
+ restart {
|
||||||
|
+ label = "Reset";
|
||||||
|
+ linux,code = <KEY_RESTART>;
|
||||||
|
+ gpios = <&chipcommon 7 GPIO_ACTIVE_LOW>;
|
||||||
|
+ };
|
||||||
|
+ };
|
||||||
|
+};
|
||||||
|
+
|
||||||
|
+&pcie0 {
|
||||||
|
+ ranges = <0x00000000 0 0 0 0 0x00100000>;
|
||||||
|
+ #address-cells = <3>;
|
||||||
|
+ #size-cells = <2>;
|
||||||
|
+
|
||||||
|
+ bridge@0,0,0 {
|
||||||
|
+ reg = <0x0000 0 0 0 0>;
|
||||||
|
+ ranges = <0x00000000 0 0 0 0 0 0 0x00100000>;
|
||||||
|
+ #address-cells = <3>;
|
||||||
|
+ #size-cells = <2>;
|
||||||
|
+
|
||||||
|
+ wifi@0,1,0 {
|
||||||
|
+ reg = <0x0000 0 0 0 0>;
|
||||||
|
+ ranges = <0x00000000 0 0 0 0x00100000>;
|
||||||
|
+ #address-cells = <1>;
|
||||||
|
+ #size-cells = <1>;
|
||||||
|
+
|
||||||
|
+ pcie0_chipcommon: chipcommon@0 {
|
||||||
|
+ reg = <0 0x1000>;
|
||||||
|
+
|
||||||
|
+ gpio-controller;
|
||||||
|
+ #gpio-cells = <2>;
|
||||||
|
+ };
|
||||||
|
+ };
|
||||||
|
+ };
|
||||||
|
+};
|
|
@ -0,0 +1,83 @@
|
||||||
|
From 7030ea600d560026b91726f2eb79c856b813afa9 Mon Sep 17 00:00:00 2001
|
||||||
|
From: Dan Haab <dhaab@luxul.com>
|
||||||
|
Date: Mon, 9 Oct 2017 09:47:00 -0600
|
||||||
|
Subject: [PATCH] ARM: dts: BCM53573: Add DT for Luxul XAP-1440
|
||||||
|
MIME-Version: 1.0
|
||||||
|
Content-Type: text/plain; charset=UTF-8
|
||||||
|
Content-Transfer-Encoding: 8bit
|
||||||
|
|
||||||
|
This is BCM53573 WiSoC based outdoor access point with an extra BCM43217
|
||||||
|
chipset used for 2.4 GHz.
|
||||||
|
|
||||||
|
Signed-off-by: Dan Haab <dhaab@luxul.com>
|
||||||
|
Acked-by: Rafał Miłecki <rafal@milecki.pl>
|
||||||
|
Signed-off-by: Florian Fainelli <f.fainelli@gmail.com>
|
||||||
|
---
|
||||||
|
arch/arm/boot/dts/Makefile | 1 +
|
||||||
|
arch/arm/boot/dts/bcm47189-luxul-xap-1440.dts | 50 +++++++++++++++++++++++++++
|
||||||
|
2 files changed, 51 insertions(+)
|
||||||
|
create mode 100644 arch/arm/boot/dts/bcm47189-luxul-xap-1440.dts
|
||||||
|
|
||||||
|
--- a/arch/arm/boot/dts/Makefile
|
||||||
|
+++ b/arch/arm/boot/dts/Makefile
|
||||||
|
@@ -105,6 +105,7 @@ dtb-$(CONFIG_ARCH_BCM_5301X) += \
|
||||||
|
bcm953012hr.dtb \
|
||||||
|
bcm953012k.dtb
|
||||||
|
dtb-$(CONFIG_ARCH_BCM_53573) += \
|
||||||
|
+ bcm47189-luxul-xap-1440.dtb \
|
||||||
|
bcm47189-luxul-xap-810.dtb \
|
||||||
|
bcm47189-tenda-ac9.dtb \
|
||||||
|
bcm947189acdbmr.dtb
|
||||||
|
--- /dev/null
|
||||||
|
+++ b/arch/arm/boot/dts/bcm47189-luxul-xap-1440.dts
|
||||||
|
@@ -0,0 +1,50 @@
|
||||||
|
+/*
|
||||||
|
+ * Copyright 2017 Luxul Inc.
|
||||||
|
+ *
|
||||||
|
+ * Licensed under the ISC license.
|
||||||
|
+ */
|
||||||
|
+
|
||||||
|
+/dts-v1/;
|
||||||
|
+
|
||||||
|
+#include "bcm53573.dtsi"
|
||||||
|
+
|
||||||
|
+/ {
|
||||||
|
+ compatible = "luxul,xap-1440-v1", "brcm,bcm47189", "brcm,bcm53573";
|
||||||
|
+ model = "Luxul XAP-1440 V1";
|
||||||
|
+
|
||||||
|
+ chosen {
|
||||||
|
+ bootargs = "earlycon";
|
||||||
|
+ };
|
||||||
|
+
|
||||||
|
+ memory {
|
||||||
|
+ reg = <0x00000000 0x08000000>;
|
||||||
|
+ };
|
||||||
|
+
|
||||||
|
+ leds {
|
||||||
|
+ compatible = "gpio-leds";
|
||||||
|
+
|
||||||
|
+ wlan {
|
||||||
|
+ label = "bcm53xx:blue:wlan";
|
||||||
|
+ gpios = <&chipcommon 10 GPIO_ACTIVE_LOW>;
|
||||||
|
+ linux,default-trigger = "default-off";
|
||||||
|
+ };
|
||||||
|
+
|
||||||
|
+ system {
|
||||||
|
+ label = "bcm53xx:green:system";
|
||||||
|
+ gpios = <&chipcommon 11 GPIO_ACTIVE_LOW>;
|
||||||
|
+ linux,default-trigger = "timer";
|
||||||
|
+ };
|
||||||
|
+ };
|
||||||
|
+
|
||||||
|
+ gpio-keys {
|
||||||
|
+ compatible = "gpio-keys";
|
||||||
|
+ #address-cells = <1>;
|
||||||
|
+ #size-cells = <0>;
|
||||||
|
+
|
||||||
|
+ restart {
|
||||||
|
+ label = "Reset";
|
||||||
|
+ linux,code = <KEY_RESTART>;
|
||||||
|
+ gpios = <&chipcommon 7 GPIO_ACTIVE_LOW>;
|
||||||
|
+ };
|
||||||
|
+ };
|
||||||
|
+};
|
|
@ -23,4 +23,48 @@ Signed-off-by: Rafał Miłecki <rafal@milecki.pl>
|
||||||
+ bootargs = "console=ttyS0,115200 earlycon";
|
+ bootargs = "console=ttyS0,115200 earlycon";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
memory {
|
||||||
|
--- a/arch/arm/boot/dts/bcm47094-luxul-abr-4500.dts
|
||||||
|
+++ b/arch/arm/boot/dts/bcm47094-luxul-abr-4500.dts
|
||||||
|
@@ -14,7 +14,7 @@
|
||||||
|
model = "Luxul ABR-4500 V1";
|
||||||
|
|
||||||
|
chosen {
|
||||||
|
- bootargs = "earlycon";
|
||||||
|
+ bootargs = "console=ttyS0,115200 earlycon";
|
||||||
|
};
|
||||||
|
|
||||||
|
memory {
|
||||||
|
--- a/arch/arm/boot/dts/bcm47094-luxul-xbr-4500.dts
|
||||||
|
+++ b/arch/arm/boot/dts/bcm47094-luxul-xbr-4500.dts
|
||||||
|
@@ -14,7 +14,7 @@
|
||||||
|
model = "Luxul XBR-4500 V1";
|
||||||
|
|
||||||
|
chosen {
|
||||||
|
- bootargs = "earlycon";
|
||||||
|
+ bootargs = "console=ttyS0,115200 earlycon";
|
||||||
|
};
|
||||||
|
|
||||||
|
memory {
|
||||||
|
--- a/arch/arm/boot/dts/bcm47189-luxul-xap-1440.dts
|
||||||
|
+++ b/arch/arm/boot/dts/bcm47189-luxul-xap-1440.dts
|
||||||
|
@@ -13,7 +13,7 @@
|
||||||
|
model = "Luxul XAP-1440 V1";
|
||||||
|
|
||||||
|
chosen {
|
||||||
|
- bootargs = "earlycon";
|
||||||
|
+ bootargs = "console=ttyS0,115200 earlycon";
|
||||||
|
};
|
||||||
|
|
||||||
|
memory {
|
||||||
|
--- a/arch/arm/boot/dts/bcm47189-luxul-xap-810.dts
|
||||||
|
+++ b/arch/arm/boot/dts/bcm47189-luxul-xap-810.dts
|
||||||
|
@@ -13,7 +13,7 @@
|
||||||
|
model = "Luxul XAP-810 V1";
|
||||||
|
|
||||||
|
chosen {
|
||||||
|
- bootargs = "earlycon";
|
||||||
|
+ bootargs = "console=ttyS0,115200 earlycon";
|
||||||
|
};
|
||||||
|
|
||||||
memory {
|
memory {
|
||||||
|
|
Loading…
Reference in New Issue