From mboxrd@z Thu Jan 1 00:00:00 1970 From: =?UTF-8?q?=C3=81lvaro=20Fern=C3=A1ndez=20Rojas?= Date: Sat, 20 Jan 2018 19:16:01 +0100 Subject: [U-Boot] [PATCH v2 0/4] mips: bmips: add BCM6318 SoC support In-Reply-To: <20180120131725.4451-1-noltari@gmail.com> References: <20180120131725.4451-1-noltari@gmail.com> Message-ID: <20180120181605.13018-1-noltari@gmail.com> List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: 8bit To: u-boot@lists.denx.de BCM6318 is a single core BCM63xx SoC. v2: fix bcm6328 typo and add missing ngpios Á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 | 157 +++++++++++++++++++++ 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, 519 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 -- 2.11.0