From: "Álvaro Fernández Rojas" <noltari@gmail.com>
To: u-boot@lists.denx.de
Subject: [U-Boot] [PATCH v4 00/14] Add support for Broadcom MIPS SoCs
Date: Thu, 20 Apr 2017 21:12:11 +0200 [thread overview]
Message-ID: <1492715545-3010-1-git-send-email-noltari@gmail.com> (raw)
This adds support for some of the xDSL Broadcom MIPS SoCs:
- BCM6358
- BCM6328
- BCM63268
However, support for other SoCs could be added in the future:
- Other BCM63xx
- BCM33xx
- BCM71xx
v4: Introduce changes suggested by Simon Glass:
- Refactor cmd/cpu.
- Remove device_probe patch for sysreset.
v3: Introduce changes suggested by Simon Glass.
v2: Introduce changes suggested by Daniel Schwierzeck.
Álvaro Fernández Rojas (14):
cmd: cpu: fix NULL cpu feature prints
sysreset: add syscon-reboot driver
MIPS: allow using generic sysreset drivers
serial: add serial driver for BCM6345
cmd: cpu: refactor to ensure devices are probed and improve code style
cpu: add CPU driver for Broadcom MIPS SoCs
ram: add RAM driver for Broadcom MIPS SoCs
MIPS: add initial infrastructure for Broadcom MIPS SoCs
MIPS: add support for Broadcom MIPS BCM6358 SoC family
MIPS: add BMIPS Huawei HG556a board
MIPS: add support for Broadcom MIPS BCM6328 SoC family
MIPS: add BMIPS Comtrend AR-5387un board
MIPS: add support for Broadcom MIPS BCM63268 SoC family
MIPS: add BMIPS Comtrend VR-3032u board
arch/mips/Kconfig | 10 +
arch/mips/Makefile | 1 +
arch/mips/cpu/cpu.c | 2 +
arch/mips/cpu/start.S | 5 +
arch/mips/dts/Makefile | 3 +
arch/mips/dts/brcm,bcm63268.dtsi | 88 +++++++++
arch/mips/dts/brcm,bcm6328.dtsi | 88 +++++++++
arch/mips/dts/brcm,bcm6358.dtsi | 98 ++++++++++
arch/mips/dts/comtrend,ar-5387un.dts | 27 +++
arch/mips/dts/comtrend,vr-3032u.dts | 27 +++
arch/mips/dts/huawei,hg556a.dts | 31 ++++
arch/mips/mach-bmips/Kconfig | 86 +++++++++
arch/mips/mach-bmips/Makefile | 5 +
arch/mips/mach-bmips/dram.c | 37 ++++
arch/mips/mach-bmips/include/ioremap.h | 45 +++++
board/comtrend/ar5387un/Kconfig | 12 ++
board/comtrend/ar5387un/MAINTAINERS | 6 +
board/comtrend/ar5387un/Makefile | 5 +
board/comtrend/ar5387un/ar-5387un.c | 7 +
board/comtrend/vr3032u/Kconfig | 12 ++
board/comtrend/vr3032u/MAINTAINERS | 6 +
board/comtrend/vr3032u/Makefile | 5 +
board/comtrend/vr3032u/vr-3032u.c | 7 +
board/huawei/hg556a/Kconfig | 12 ++
board/huawei/hg556a/MAINTAINERS | 6 +
board/huawei/hg556a/Makefile | 5 +
board/huawei/hg556a/hg556a.c | 7 +
cmd/cpu.c | 31 ++--
configs/comtrend_ar5387un_ram_defconfig | 42 +++++
configs/comtrend_vr3032u_ram_defconfig | 42 +++++
configs/huawei_hg556a_ram_defconfig | 45 +++++
drivers/cpu/Makefile | 2 +
drivers/cpu/bmips_cpu.c | 280 ++++++++++++++++++++++++++++
drivers/ram/Makefile | 2 +
drivers/ram/bmips_ram.c | 126 +++++++++++++
drivers/serial/Kconfig | 14 ++
drivers/serial/Makefile | 1 +
drivers/serial/serial_bcm6345.c | 311 ++++++++++++++++++++++++++++++++
drivers/sysreset/Kconfig | 8 +
drivers/sysreset/Makefile | 1 +
drivers/sysreset/sysreset_syscon.c | 76 ++++++++
include/configs/bmips_bcm63268.h | 25 +++
include/configs/bmips_bcm6328.h | 25 +++
include/configs/bmips_bcm6358.h | 30 +++
include/configs/bmips_common.h | 27 +++
include/configs/comtrend_ar5387un.h | 15 ++
include/configs/comtrend_vr3032u.h | 15 ++
include/configs/huawei_hg556a.h | 18 ++
48 files changed, 1762 insertions(+), 17 deletions(-)
create mode 100644 arch/mips/dts/brcm,bcm63268.dtsi
create mode 100644 arch/mips/dts/brcm,bcm6328.dtsi
create mode 100644 arch/mips/dts/brcm,bcm6358.dtsi
create mode 100644 arch/mips/dts/comtrend,ar-5387un.dts
create mode 100644 arch/mips/dts/comtrend,vr-3032u.dts
create mode 100644 arch/mips/dts/huawei,hg556a.dts
create mode 100644 arch/mips/mach-bmips/Kconfig
create mode 100644 arch/mips/mach-bmips/Makefile
create mode 100644 arch/mips/mach-bmips/dram.c
create mode 100644 arch/mips/mach-bmips/include/ioremap.h
create mode 100644 board/comtrend/ar5387un/Kconfig
create mode 100644 board/comtrend/ar5387un/MAINTAINERS
create mode 100644 board/comtrend/ar5387un/Makefile
create mode 100644 board/comtrend/ar5387un/ar-5387un.c
create mode 100644 board/comtrend/vr3032u/Kconfig
create mode 100644 board/comtrend/vr3032u/MAINTAINERS
create mode 100644 board/comtrend/vr3032u/Makefile
create mode 100644 board/comtrend/vr3032u/vr-3032u.c
create mode 100644 board/huawei/hg556a/Kconfig
create mode 100644 board/huawei/hg556a/MAINTAINERS
create mode 100644 board/huawei/hg556a/Makefile
create mode 100644 board/huawei/hg556a/hg556a.c
create mode 100644 configs/comtrend_ar5387un_ram_defconfig
create mode 100644 configs/comtrend_vr3032u_ram_defconfig
create mode 100644 configs/huawei_hg556a_ram_defconfig
create mode 100644 drivers/cpu/bmips_cpu.c
create mode 100644 drivers/ram/bmips_ram.c
create mode 100644 drivers/serial/serial_bcm6345.c
create mode 100644 drivers/sysreset/sysreset_syscon.c
create mode 100644 include/configs/bmips_bcm63268.h
create mode 100644 include/configs/bmips_bcm6328.h
create mode 100644 include/configs/bmips_bcm6358.h
create mode 100644 include/configs/bmips_common.h
create mode 100644 include/configs/comtrend_ar5387un.h
create mode 100644 include/configs/comtrend_vr3032u.h
create mode 100644 include/configs/huawei_hg556a.h
--
2.1.4
next reply other threads:[~2017-04-20 19:12 UTC|newest]
Thread overview: 15+ messages / expand[flat|nested] mbox.gz Atom feed top
2017-04-20 19:12 Álvaro Fernández Rojas [this message]
2017-04-20 19:12 ` [U-Boot] [PATCH v4 01/14] cmd: cpu: fix NULL cpu feature prints Álvaro Fernández Rojas
2017-04-20 19:12 ` [U-Boot] [PATCH v4 02/14] sysreset: add syscon-reboot driver Álvaro Fernández Rojas
2017-04-20 19:12 ` [U-Boot] [PATCH v4 03/14] MIPS: allow using generic sysreset drivers Álvaro Fernández Rojas
2017-04-20 19:12 ` [U-Boot] [PATCH v4 04/14] serial: add serial driver for BCM6345 Álvaro Fernández Rojas
2017-04-20 19:12 ` [U-Boot] [PATCH v4 05/14] cmd: cpu: refactor to ensure devices are probed and improve code style Álvaro Fernández Rojas
2017-04-20 19:12 ` [U-Boot] [PATCH v4 06/14] cpu: add CPU driver for Broadcom MIPS SoCs Álvaro Fernández Rojas
2017-04-20 19:12 ` [U-Boot] [PATCH v4 07/14] ram: add RAM " Álvaro Fernández Rojas
2017-04-20 19:12 ` [U-Boot] [PATCH v4 08/14] MIPS: add initial infrastructure " Álvaro Fernández Rojas
2017-04-20 19:12 ` [U-Boot] [PATCH v4 09/14] MIPS: add support for Broadcom MIPS BCM6358 SoC family Álvaro Fernández Rojas
2017-04-20 19:12 ` [U-Boot] [PATCH v4 10/14] MIPS: add BMIPS Huawei HG556a board Álvaro Fernández Rojas
2017-04-20 19:12 ` [U-Boot] [PATCH v4 11/14] MIPS: add support for Broadcom MIPS BCM6328 SoC family Álvaro Fernández Rojas
2017-04-20 19:12 ` [U-Boot] [PATCH v4 12/14] MIPS: add BMIPS Comtrend AR-5387un board Álvaro Fernández Rojas
2017-04-20 19:12 ` [U-Boot] [PATCH v4 13/14] MIPS: add support for Broadcom MIPS BCM63268 SoC family Álvaro Fernández Rojas
2017-04-20 19:12 ` [U-Boot] [PATCH v4 14/14] MIPS: add BMIPS Comtrend VR-3032u board Álvaro Fernández Rojas
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1492715545-3010-1-git-send-email-noltari@gmail.com \
--to=noltari@gmail.com \
--cc=u-boot@lists.denx.de \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox