diff options
author | Anand Gore <anand.gore@broadcom.com> | 2022-05-16 20:38:06 +0300 |
---|---|---|
committer | Florian Fainelli <f.fainelli@gmail.com> | 2022-06-08 11:51:08 +0300 |
commit | fc85b7e64acb7fa45b37aeb2b0a4035bd9c5aed0 (patch) | |
tree | 73b7af113f076e2d7e7efaa2981c6aae67e69f38 /arch/arm/boot/dts/bcm963178.dts | |
parent | 312137db31447f04993c331c8452828e53ff63dc (diff) | |
download | linux-fc85b7e64acb7fa45b37aeb2b0a4035bd9c5aed0.tar.xz |
ARM: dts: add dts files for bcmbca soc 63178
Add dts for ARMv7 based broadband SoC BCM63178. bcm63178.dtsi is the
SoC description dts header and bcm963178.dts is a simple dts file for
Broadcom BCM963178 Reference board that only enable the UART port.
Signed-off-by: Anand Gore <anand.gore@broadcom.com>
Signed-off-by: Florian Fainelli <f.fainelli@gmail.com>
Diffstat (limited to 'arch/arm/boot/dts/bcm963178.dts')
-rw-r--r-- | arch/arm/boot/dts/bcm963178.dts | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/arch/arm/boot/dts/bcm963178.dts b/arch/arm/boot/dts/bcm963178.dts new file mode 100644 index 000000000000..fa096e9cde23 --- /dev/null +++ b/arch/arm/boot/dts/bcm963178.dts @@ -0,0 +1,30 @@ +// SPDX-License-Identifier: (GPL-2.0+ OR MIT) +/* + * Copyright 2019 Broadcom Ltd. + */ + +/dts-v1/; + +#include "bcm63178.dtsi" + +/ { + model = "Broadcom BCM963178 Reference Board"; + compatible = "brcm,bcm963178", "brcm,bcm63178", "brcm,bcmbca"; + + aliases { + serial0 = &uart0; + }; + + chosen { + stdout-path = "serial0:115200n8"; + }; + + memory@0 { + device_type = "memory"; + reg = <0x0 0x08000000>; + }; +}; + +&uart0 { + status = "okay"; +}; |