
BCM6318 is a single core BCM63xx SoC.
Álvaro Fernández Rojas (4): dm: cpu: bmips: add BCM6318 support dm: ram: bmips: add BCM6318 support MIPS: add support for Broadcom MIPS BCM6318 SoC family MIPS: add BMIPS Comtrend AR-5315u board
arch/mips/dts/Makefile | 1 + arch/mips/dts/brcm,bcm6318.dtsi | 156 +++++++++++++++++++++ arch/mips/dts/comtrend,ar-5315u.dts | 85 +++++++++++ arch/mips/mach-bmips/Kconfig | 24 ++++ board/comtrend/ar5315u/Kconfig | 12 ++ board/comtrend/ar5315u/MAINTAINERS | 6 + board/comtrend/ar5315u/Makefile | 5 + board/comtrend/ar5315u/ar-5315u.c | 7 + configs/comtrend_ar5315u_ram_defconfig | 51 +++++++ drivers/cpu/bmips_cpu.c | 35 +++++ drivers/ram/bmips_ram.c | 19 +++ include/configs/bmips_bcm6318.h | 25 ++++ include/configs/comtrend_ar5315u.h | 16 +++ include/dt-bindings/clock/bcm6318-clock.h | 37 +++++ .../power-domain/bcm6318-power-domain.h | 13 ++ include/dt-bindings/reset/bcm6318-reset.h | 26 ++++ 16 files changed, 518 insertions(+) create mode 100644 arch/mips/dts/brcm,bcm6318.dtsi create mode 100644 arch/mips/dts/comtrend,ar-5315u.dts create mode 100644 board/comtrend/ar5315u/Kconfig create mode 100644 board/comtrend/ar5315u/MAINTAINERS create mode 100644 board/comtrend/ar5315u/Makefile create mode 100644 board/comtrend/ar5315u/ar-5315u.c create mode 100644 configs/comtrend_ar5315u_ram_defconfig create mode 100644 include/configs/bmips_bcm6318.h create mode 100644 include/configs/comtrend_ar5315u.h create mode 100644 include/dt-bindings/clock/bcm6318-clock.h create mode 100644 include/dt-bindings/power-domain/bcm6318-power-domain.h create mode 100644 include/dt-bindings/reset/bcm6318-reset.h