diff options
author | Anand Gore <anand.gore@broadcom.com> | 2022-06-01 23:19:56 +0300 |
---|---|---|
committer | Florian Fainelli <f.fainelli@gmail.com> | 2022-06-08 11:54:24 +0300 |
commit | e663e06bd3f21e64bc2163910f626af68add6308 (patch) | |
tree | 91b48d6ad26347c50998e949d8c113cc44de7033 /arch/arm64/boot/dts/broadcom/bcmbca/bcm96858.dts | |
parent | 1ba56aeb391401c4cb2126c39f90b3cdbfabdb3f (diff) | |
download | linux-e663e06bd3f21e64bc2163910f626af68add6308.tar.xz |
ARM64: dts: Add DTS files for bcmbca SoC BCM6858
Add DTS for ARMv8 based broadband SoC BCM6858. bcm6858.dtsi is the SoC
description DTS header and bcm96858.dts is a simple DTS file for
Broadcom BCM96858 Reference board that only enables 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/arm64/boot/dts/broadcom/bcmbca/bcm96858.dts')
-rw-r--r-- | arch/arm64/boot/dts/broadcom/bcmbca/bcm96858.dts | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/arch/arm64/boot/dts/broadcom/bcmbca/bcm96858.dts b/arch/arm64/boot/dts/broadcom/bcmbca/bcm96858.dts new file mode 100644 index 000000000000..0cbf582f5d54 --- /dev/null +++ b/arch/arm64/boot/dts/broadcom/bcmbca/bcm96858.dts @@ -0,0 +1,30 @@ +// SPDX-License-Identifier: (GPL-2.0+ OR MIT) +/* + * Copyright 2022 Broadcom Ltd. + */ + +/dts-v1/; + +#include "bcm6858.dtsi" + +/ { + model = "Broadcom BCM96858 Reference Board"; + compatible = "brcm,bcm96858", "brcm,bcm6858", "brcm,bcmbca"; + + aliases { + serial0 = &uart0; + }; + + chosen { + stdout-path = "serial0:115200n8"; + }; + + memory@0 { + device_type = "memory"; + reg = <0x0 0x0 0x0 0x08000000>; + }; +}; + +&uart0 { + status = "okay"; +}; |