[U-Boot] [PULL] u-boot-mips/master
Daniel Schwierzeck
daniel.schwierzeck at gmail.com
Wed Mar 21 22:31:14 UTC 2018
Hi Tom,
please pull following changes:
- add initial support for Broadcom BCM6362 SoC and Netgear DGND3700v2 board
- add USB support for all Broadcom MIPS SoCs
- fix an array bounds check
The following changes since commit 9c0e2f6ed391f199ba1bf30c7d0b71123a012958:
Merge git://git.denx.de/u-boot-fsl-qoriq (2018-03-20 18:39:27 -0400)
are available in the Git repository at:
git://git.denx.de/u-boot-mips.git master
for you to fetch changes up to 358daa5b22f27d0e130ad1eb159b8b2c3c9e1011:
mips: bmips: add ar-5315 usb support (2018-03-21 23:23:13 +0100)
----------------------------------------------------------------
Heinrich Schuchardt (1):
mips: micronas/vct: check array bounds before access
Álvaro Fernández Rojas (23):
dm: cpu: bmips: add BCM6362 support
MIPS: add support for Broadcom MIPS BCM6362 SoC family
MIPS: add BMIPS Netgear DGND3700v2 board
mips: bmips: select OF_EMBED for all boards
phy: add support for bcm6348 usbh phy
mips: bmips: add support for bcm6348 usb
mips: bmips: add ct-5361 usb support
phy: add support for bcm6358 usbh phy
mips: bmips: add support for bcm6358 usb
mips: bmips: add hg556a usb support
mips: bmips: add nb4-ser usb support
phy: add support for bcm6368 usbh phy
mips: bmips: add support for bcm6368 usb
mips: bmips: add wap-5813n usb support
mips: bmips: add support for bcm6328 usb
mips: bmips: add ar-5387un usb support
mips: bmips: add support for bcm6362 usb
mips: bmips: add dgnd3700v2 usb support
mips: bmips: add support for bcm63268 usb
mips: bmips: add vr-3032u usb support
phy: add support for bcm6318 usbh phy
mips: bmips: add support for bcm6318 usb
mips: bmips: add ar-5315 usb support
arch/mips/dts/Makefile | 1 +
arch/mips/dts/brcm,bcm6318.dtsi | 30 ++++++++++++
arch/mips/dts/brcm,bcm63268.dtsi | 30 ++++++++++++
arch/mips/dts/brcm,bcm6328.dtsi | 30 ++++++++++++
arch/mips/dts/brcm,bcm6348.dtsi | 20 ++++++++
arch/mips/dts/brcm,bcm6358.dtsi | 27 +++++++++++
arch/mips/dts/brcm,bcm6362.dtsi | 216 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
arch/mips/dts/brcm,bcm6368.dtsi | 29 ++++++++++++
arch/mips/dts/comtrend,ar-5315u.dts | 12 +++++
arch/mips/dts/comtrend,ar-5387un.dts | 12 +++++
arch/mips/dts/comtrend,ct-5361.dts | 8 ++++
arch/mips/dts/comtrend,vr-3032u.dts | 12 +++++
arch/mips/dts/comtrend,wap-5813n.dts | 12 +++++
arch/mips/dts/huawei,hg556a.dts | 12 +++++
arch/mips/dts/netgear,dgnd3700v2.dts | 133 ++++++++++++++++++++++++++++++++++++++++++++++++++++
arch/mips/dts/sfr,nb4-ser.dts | 12 +++++
arch/mips/mach-bmips/Kconfig | 24 ++++++++++
board/micronas/vct/scc.c | 4 +-
board/netgear/dgnd3700v2/Kconfig | 12 +++++
board/netgear/dgnd3700v2/MAINTAINERS | 6 +++
board/netgear/dgnd3700v2/Makefile | 5 ++
board/netgear/dgnd3700v2/dgnd3700v2.c | 28 +++++++++++
configs/comtrend_ar5315u_ram_defconfig | 11 ++++-
configs/comtrend_ar5387un_ram_defconfig | 10 ++++
configs/comtrend_ct5361_ram_defconfig | 8 ++++
configs/comtrend_vr3032u_ram_defconfig | 10 ++++
configs/comtrend_wap5813n_ram_defconfig | 10 ++++
configs/huawei_hg556a_ram_defconfig | 10 ++++
configs/netgear_cg3100d_ram_defconfig | 1 +
configs/netgear_dgnd3700v2_ram_defconfig | 55 ++++++++++++++++++++++
configs/sagem_f at st1704_ram_defconfig | 1 +
configs/sfr_nb4-ser_ram_defconfig | 10 ++++
drivers/cpu/bmips_cpu.c | 51 ++++++++++++++++++++
drivers/phy/Kconfig | 25 ++++++++++
drivers/phy/Makefile | 4 ++
drivers/phy/bcm6318-usbh-phy.c | 144 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++
drivers/phy/bcm6348-usbh-phy.c | 94 +++++++++++++++++++++++++++++++++++++
drivers/phy/bcm6358-usbh-phy.c | 94 +++++++++++++++++++++++++++++++++++++
drivers/phy/bcm6368-usbh-phy.c | 196 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
include/configs/bmips_bcm6318.h | 7 +++
include/configs/bmips_bcm63268.h | 7 +++
include/configs/bmips_bcm6328.h | 7 +++
include/configs/bmips_bcm6348.h | 5 ++
include/configs/bmips_bcm6358.h | 7 +++
include/configs/bmips_bcm6362.h | 32 +++++++++++++
include/configs/bmips_bcm6368.h | 7 +++
include/configs/netgear_dgnd3700v2.h | 13 +++++
include/dt-bindings/clock/bcm6362-clock.h | 33 +++++++++++++
include/dt-bindings/power-domain/bcm6362-power-domain.h | 25 ++++++++++
include/dt-bindings/reset/bcm6362-reset.h | 28 +++++++++++
50 files changed, 1578 insertions(+), 2 deletions(-)
create mode 100644 arch/mips/dts/brcm,bcm6362.dtsi
create mode 100644 arch/mips/dts/netgear,dgnd3700v2.dts
create mode 100644 board/netgear/dgnd3700v2/Kconfig
create mode 100644 board/netgear/dgnd3700v2/MAINTAINERS
create mode 100644 board/netgear/dgnd3700v2/Makefile
create mode 100644 board/netgear/dgnd3700v2/dgnd3700v2.c
create mode 100644 configs/netgear_dgnd3700v2_ram_defconfig
create mode 100644 drivers/phy/bcm6318-usbh-phy.c
create mode 100644 drivers/phy/bcm6348-usbh-phy.c
create mode 100644 drivers/phy/bcm6358-usbh-phy.c
create mode 100644 drivers/phy/bcm6368-usbh-phy.c
create mode 100644 include/configs/bmips_bcm6362.h
create mode 100644 include/configs/netgear_dgnd3700v2.h
create mode 100644 include/dt-bindings/clock/bcm6362-clock.h
create mode 100644 include/dt-bindings/power-domain/bcm6362-power-domain.h
create mode 100644 include/dt-bindings/reset/bcm6362-reset.h
-------------- next part --------------
A non-text attachment was scrubbed...
Name: signature.asc
Type: application/pgp-signature
Size: 819 bytes
Desc: OpenPGP digital signature
URL: <http://lists.denx.de/pipermail/u-boot/attachments/20180321/3cee92a0/attachment.sig>
More information about the U-Boot
mailing list