From 990cebf0a2c2e4dd9033c56acf7b1404a0c0f698 Mon Sep 17 00:00:00 2001 From: Philippe Reynes Date: Mon, 16 Jul 2018 19:06:15 +0200 Subject: bcm968380gerg: add initial support This add the initial support of the broadcom reference board bcm968380gerg with a bcm68380 SoC. This board has 512 MB of RAM, 128 MB of flash (nand), 2 USB port, 1 UART, 4 ethernet ports and BCM43217 (wifi). Signed-off-by: Philippe Reynes Reviewed-by: Daniel Schwierzeck --- arch/mips/dts/brcm,bcm968380gerg.dts | 40 ++++++++++++++++++++++++++++++++++++ arch/mips/mach-bmips/Kconfig | 12 +++++++++++ 2 files changed, 52 insertions(+) create mode 100644 arch/mips/dts/brcm,bcm968380gerg.dts (limited to 'arch/mips') diff --git a/arch/mips/dts/brcm,bcm968380gerg.dts b/arch/mips/dts/brcm,bcm968380gerg.dts new file mode 100644 index 0000000000..513045ee05 --- /dev/null +++ b/arch/mips/dts/brcm,bcm968380gerg.dts @@ -0,0 +1,40 @@ +// SPDX-License-Identifier: GPL-2.0+ +/* + * Copyright (C) 2018 Philippe Reynes + */ + +/dts-v1/; + +#include "brcm,bcm6838.dtsi" + +/ { + model = "Broadcom bcm68380gerg"; + compatible = "broadcom,bcm68380gerg", "brcm,bcm6838"; + + aliases { + serial0 = &uart0; + }; + + chosen { + stdout-path = "serial0:115200n8"; + }; +}; + +&memory { + force-size = <0x10000000>; +}; + +&uart0 { + u-boot,dm-pre-reloc; + status = "okay"; +}; + +&leds { + status = "okay"; + + led@0 { + reg = <0>; + active-low; + label = "bcm968380gerg:green:usb"; + }; +}; diff --git a/arch/mips/mach-bmips/Kconfig b/arch/mips/mach-bmips/Kconfig index ce02028578..521996599e 100644 --- a/arch/mips/mach-bmips/Kconfig +++ b/arch/mips/mach-bmips/Kconfig @@ -136,6 +136,17 @@ endchoice choice prompt "Board select" +config BOARD_BROADCOM_BCM968380GERG + bool "Broadcom bcm968380gerg" + depends on SOC_BMIPS_BCM6838 + select BMIPS_SUPPORTS_BOOT_RAM + help + Broadcom BCM968380GERG reference board with BCM68380 SoC with 512 MB + of RAM and 128 MB of flash (nand). + Between its different peripherals there's an integrated switch with 4 + ethernet ports, 2 USB ports, 1 UART, GPIO buttons and LEDs, and + a BCM43217 (PCIe). + config BOARD_COMTREND_AR5315U bool "Comtrend AR-5315u" depends on SOC_BMIPS_BCM6318 @@ -264,6 +275,7 @@ endchoice config BMIPS_SUPPORTS_BOOT_RAM bool +source "board/broadcom/bcm968380gerg/Kconfig" source "board/comtrend/ar5315u/Kconfig" source "board/comtrend/ar5387un/Kconfig" source "board/comtrend/ct5361/Kconfig" -- cgit