[U-Boot] Pull request: u-boot-mips/master

Hi Tom,
please pull another update for Broadcom MIPS. This contains new SoC's, new boards and new drivers and some bugfixes.
Travis CI: https://travis-ci.org/danielschwierzeck/u-boot/builds/237925917
The following changes since commit ccbbada0a59fead35495409d0c2c7bcb22a40278:
Merge branch 'master' of git://git.denx.de/u-boot-mmc (2017-05-30 14:07:23 -0400)
are available in the git repository at:
git://git.denx.de/u-boot-mips.git master
for you to fetch changes up to c93bb1d7bb24930cd3591b0a5a980f77fabd1c29:
mips: bmips: fix BCM3380 periph clock frequency (2017-05-31 15:45:29 +0200)
---------------------------------------------------------------- Álvaro Fernández Rojas (25): dm: watchdog: add BCM6345 watchdog driver mips: bmips: add bcm6345-wdt driver support for BCM6358 mips: bmips: add bcm6345-wdt driver support for BCM6328 mips: bmips: add bcm6345-wdt driver support for BCM63268 dm: sysreset: add watchdog-reboot driver mips: bmips: add wdt-reboot driver support for BCM6358 mips: bmips: add wdt-reboot driver support for BCM6328 mips: bmips: add wdt-reboot driver support for BCM63268 dm: cpu: bmips: rename cpu_desc specific functions dm: cpu: bmips: add BCM6348 support dm: ram: bmips: split bcm6358_get_ram_size dm: ram: bmips: add BCM6338/BCM6348 support MIPS: add support for Broadcom MIPS BCM6348 SoC family MIPS: add BMIPS Comtrend CT-5361 board dm: cpu: bmips: add BCM3380 support MIPS: add support for Broadcom MIPS BCM3380 SoC family MIPS: add BMIPS Netgear CG3100D board dm: cpu: bmips: add BCM6338 support MIPS: add support for Broadcom MIPS BCM6338 SoC family MIPS: add BMIPS Sagem F@ST1704 board mips: bmips: add board descriptions dm: serial: bcm6345: fix uart stop bits dm: serial: bcm6345: fix baud rate clock calculation mips: bmips: extend baud rates support mips: bmips: fix BCM3380 periph clock frequency
arch/mips/dts/Makefile | 3 ++ arch/mips/dts/brcm,bcm3380.dtsi | 154 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ arch/mips/dts/brcm,bcm63268.dtsi | 11 +++++++ arch/mips/dts/brcm,bcm6328.dtsi | 11 +++++++ arch/mips/dts/brcm,bcm6338.dtsi | 118 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ arch/mips/dts/brcm,bcm6348.dtsi | 127 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ arch/mips/dts/brcm,bcm6358.dtsi | 11 +++++++ arch/mips/dts/comtrend,ct-5361.dts | 49 +++++++++++++++++++++++++++++++ arch/mips/dts/netgear,cg3100d.dts | 96 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ arch/mips/dts/sagem,f@st1704.dts | 50 ++++++++++++++++++++++++++++++++ arch/mips/mach-bmips/Kconfig | 96 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ arch/mips/mach-bmips/include/ioremap.h | 4 ++- board/comtrend/ct5361/Kconfig | 12 ++++++++ board/comtrend/ct5361/MAINTAINERS | 6 ++++ board/comtrend/ct5361/Makefile | 5 ++++ board/comtrend/ct5361/ct-5361.c | 7 +++++ board/netgear/cg3100d/Kconfig | 12 ++++++++ board/netgear/cg3100d/MAINTAINERS | 6 ++++ board/netgear/cg3100d/Makefile | 5 ++++ board/netgear/cg3100d/cg3100d.c | 7 +++++ board/sagem/f@st1704/Kconfig | 12 ++++++++ board/sagem/f@st1704/MAINTAINERS | 6 ++++ board/sagem/f@st1704/Makefile | 5 ++++ board/sagem/f@st1704/f@st1704.c | 7 +++++ configs/comtrend_ct5361_ram_defconfig | 57 ++++++++++++++++++++++++++++++++++++ configs/netgear_cg3100d_ram_defconfig | 56 ++++++++++++++++++++++++++++++++++++ configs/sagem_f@st1704_ram_defconfig | 52 +++++++++++++++++++++++++++++++++ drivers/cpu/bmips_cpu.c | 72 ++++++++++++++++++++++++++++++++++++++++++---- drivers/ram/bmips_ram.c | 54 ++++++++++++++++++++++++++++------- drivers/serial/serial_bcm6345.c | 10 ++++--- drivers/sysreset/Kconfig | 6 ++++ drivers/sysreset/Makefile | 1 + drivers/sysreset/sysreset_watchdog.c | 60 ++++++++++++++++++++++++++++++++++++++ drivers/watchdog/Kconfig | 8 ++++++ drivers/watchdog/Makefile | 1 + drivers/watchdog/bcm6345_wdt.c | 110 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ include/configs/bmips_bcm3380.h | 25 ++++++++++++++++ include/configs/bmips_bcm6338.h | 30 +++++++++++++++++++ include/configs/bmips_bcm6348.h | 30 +++++++++++++++++++ include/configs/bmips_common.h | 4 +++ include/configs/comtrend_ct5361.h | 20 +++++++++++++ include/configs/netgear_cg3100d.h | 15 ++++++++++ include/configs/sagem_f@st1704.h | 15 ++++++++++ include/dt-bindings/clock/bcm3380-clock.h | 23 +++++++++++++++ include/dt-bindings/clock/bcm6338-clock.h | 19 ++++++++++++ include/dt-bindings/clock/bcm6348-clock.h | 22 ++++++++++++++ include/dt-bindings/reset/bcm3380-reset.h | 16 +++++++++++ include/dt-bindings/reset/bcm6338-reset.h | 22 ++++++++++++++ include/dt-bindings/reset/bcm6348-reset.h | 22 ++++++++++++++ 49 files changed, 1550 insertions(+), 20 deletions(-) create mode 100644 arch/mips/dts/brcm,bcm3380.dtsi create mode 100644 arch/mips/dts/brcm,bcm6338.dtsi create mode 100644 arch/mips/dts/brcm,bcm6348.dtsi create mode 100644 arch/mips/dts/comtrend,ct-5361.dts create mode 100644 arch/mips/dts/netgear,cg3100d.dts create mode 100644 arch/mips/dts/sagem,f@st1704.dts create mode 100644 board/comtrend/ct5361/Kconfig create mode 100644 board/comtrend/ct5361/MAINTAINERS create mode 100644 board/comtrend/ct5361/Makefile create mode 100644 board/comtrend/ct5361/ct-5361.c create mode 100644 board/netgear/cg3100d/Kconfig create mode 100644 board/netgear/cg3100d/MAINTAINERS create mode 100644 board/netgear/cg3100d/Makefile create mode 100644 board/netgear/cg3100d/cg3100d.c create mode 100644 board/sagem/f@st1704/Kconfig create mode 100644 board/sagem/f@st1704/MAINTAINERS create mode 100644 board/sagem/f@st1704/Makefile create mode 100644 board/sagem/f@st1704/f@st1704.c create mode 100644 configs/comtrend_ct5361_ram_defconfig create mode 100644 configs/netgear_cg3100d_ram_defconfig create mode 100644 configs/sagem_f@st1704_ram_defconfig create mode 100644 drivers/sysreset/sysreset_watchdog.c create mode 100644 drivers/watchdog/bcm6345_wdt.c create mode 100644 include/configs/bmips_bcm3380.h create mode 100644 include/configs/bmips_bcm6338.h create mode 100644 include/configs/bmips_bcm6348.h create mode 100644 include/configs/comtrend_ct5361.h create mode 100644 include/configs/netgear_cg3100d.h create mode 100644 include/configs/sagem_f@st1704.h create mode 100644 include/dt-bindings/clock/bcm3380-clock.h create mode 100644 include/dt-bindings/clock/bcm6338-clock.h create mode 100644 include/dt-bindings/clock/bcm6348-clock.h create mode 100644 include/dt-bindings/reset/bcm3380-reset.h create mode 100644 include/dt-bindings/reset/bcm6338-reset.h create mode 100644 include/dt-bindings/reset/bcm6348-reset.h

On Wed, May 31, 2017 at 09:38:24PM +0200, Daniel Schwierzeck wrote:
Hi Tom,
please pull another update for Broadcom MIPS. This contains new SoC's, new boards and new drivers and some bugfixes.
Travis CI: https://travis-ci.org/danielschwierzeck/u-boot/builds/237925917
The following changes since commit ccbbada0a59fead35495409d0c2c7bcb22a40278:
Merge branch 'master' of git://git.denx.de/u-boot-mmc (2017-05-30 14:07:23 -0400)
are available in the git repository at:
git://git.denx.de/u-boot-mips.git master
for you to fetch changes up to c93bb1d7bb24930cd3591b0a5a980f77fabd1c29:
mips: bmips: fix BCM3380 periph clock frequency (2017-05-31 15:45:29 +0200)
Applied to u-boot/master, thanks!
participants (2)
-
Daniel Schwierzeck
-
Tom Rini