
Hi Tom,
I hope it's okay for post RC1, but I wanted to wait until you had the Kconfig sorting stuff merged.
Travis CI: https://travis-ci.org/danielschwierzeck/u-boot/builds/413538994
The following changes since commit b1aad8dbe28415695b290726199681ced969c118:
zynqmp: Add avnet_ultra96_rev1_defconfig to the lits of boards (2018-08-07 11:36:39 -0400)
are available in the Git repository at:
git://git.denx.de/u-boot-mips.git master
for you to fetch changes up to 990cebf0a2c2e4dd9033c56acf7b1404a0c0f698:
bcm968380gerg: add initial support (2018-08-08 13:38:17 +0200)
---------------------------------------------------------------- Philippe Reynes (3): bmips: ram: add an option to force the size of the ram bcm6838: add initial support bcm968380gerg: add initial support
Tom Rini (2): mips: dbau1x00: Remove this board mips: au1x00: Remove support for these SoCs
arch/mips/Kconfig | 21 -- arch/mips/Makefile | 1 - arch/mips/dts/brcm,bcm6838.dtsi | 75 +++++ arch/mips/dts/brcm,bcm968380gerg.dts | 40 +++ arch/mips/include/asm/addrspace.h | 6 +- arch/mips/mach-au1x00/Makefile | 6 - arch/mips/mach-au1x00/au1x00_eth.c | 312 -------------------- arch/mips/mach-au1x00/au1x00_ide.c | 14 - arch/mips/mach-au1x00/au1x00_serial.c | 130 --------- arch/mips/mach-au1x00/au1x00_usb_ohci.c | 1609 -------------------------------------------------------------------------------------------------------- arch/mips/mach-au1x00/au1x00_usb_ohci.h | 416 --------------------------- arch/mips/mach-au1x00/include/mach/au1x00.h | 1071 --------------------------------------------------------------------- arch/mips/mach-bmips/Kconfig | 25 ++ board/broadcom/bcm968380gerg/Kconfig | 12 + board/broadcom/bcm968380gerg/Makefile | 3 + board/broadcom/bcm968380gerg/bcm968380gerg.c | 6 + board/broadcom/bcm968380gerg/board.c | 6 + board/dbau1x00/Kconfig | 46 --- board/dbau1x00/MAINTAINERS | 10 - board/dbau1x00/Makefile | 7 - board/dbau1x00/README | 63 ----- board/dbau1x00/dbau1x00.c | 118 -------- board/dbau1x00/lowlevel_init.S | 589 -------------------------------------- board/pb1x00/Kconfig | 27 -- board/pb1x00/MAINTAINERS | 6 - board/pb1x00/Makefile | 7 - board/pb1x00/README | 63 ----- board/pb1x00/flash.c | 26 -- board/pb1x00/lowlevel_init.S | 391 -------------------------- board/pb1x00/pb1x00.c | 108 ------- configs/bcm968380gerg_ram_defconfig | 48 ++++ configs/dbau1000_defconfig | 21 -- configs/dbau1100_defconfig | 21 -- configs/dbau1500_defconfig | 21 -- configs/dbau1550_defconfig | 16 -- configs/dbau1550_el_defconfig | 17 -- configs/pb1000_defconfig | 20 -- drivers/cpu/bmips_cpu.c | 33 +++ drivers/ram/bmips_ram.c | 8 +- drivers/serial/serial.c | 2 - drivers/usb/gadget/gadget_chips.h | 8 - include/configs/bmips_bcm6838.h | 24 ++ include/configs/broadcom_bcm968380gerg.h | 9 + include/configs/dbau1x00.h | 172 ------------ include/configs/pb1x00.h | 138 --------- include/netdev.h | 1 - include/serial.h | 1 - 47 files changed, 291 insertions(+), 5483 deletions(-) create mode 100644 arch/mips/dts/brcm,bcm6838.dtsi create mode 100644 arch/mips/dts/brcm,bcm968380gerg.dts delete mode 100644 arch/mips/mach-au1x00/Makefile delete mode 100644 arch/mips/mach-au1x00/au1x00_eth.c delete mode 100644 arch/mips/mach-au1x00/au1x00_ide.c delete mode 100644 arch/mips/mach-au1x00/au1x00_serial.c delete mode 100644 arch/mips/mach-au1x00/au1x00_usb_ohci.c delete mode 100644 arch/mips/mach-au1x00/au1x00_usb_ohci.h delete mode 100644 arch/mips/mach-au1x00/include/mach/au1x00.h create mode 100644 board/broadcom/bcm968380gerg/Kconfig create mode 100644 board/broadcom/bcm968380gerg/Makefile create mode 100644 board/broadcom/bcm968380gerg/bcm968380gerg.c create mode 100644 board/broadcom/bcm968380gerg/board.c delete mode 100644 board/dbau1x00/Kconfig delete mode 100644 board/dbau1x00/MAINTAINERS delete mode 100644 board/dbau1x00/Makefile delete mode 100644 board/dbau1x00/README delete mode 100644 board/dbau1x00/dbau1x00.c delete mode 100644 board/dbau1x00/lowlevel_init.S delete mode 100644 board/pb1x00/Kconfig delete mode 100644 board/pb1x00/MAINTAINERS delete mode 100644 board/pb1x00/Makefile delete mode 100644 board/pb1x00/README delete mode 100644 board/pb1x00/flash.c delete mode 100644 board/pb1x00/lowlevel_init.S delete mode 100644 board/pb1x00/pb1x00.c create mode 100644 configs/bcm968380gerg_ram_defconfig delete mode 100644 configs/dbau1000_defconfig delete mode 100644 configs/dbau1100_defconfig delete mode 100644 configs/dbau1500_defconfig delete mode 100644 configs/dbau1550_defconfig delete mode 100644 configs/dbau1550_el_defconfig delete mode 100644 configs/pb1000_defconfig create mode 100644 include/configs/bmips_bcm6838.h create mode 100644 include/configs/broadcom_bcm968380gerg.h delete mode 100644 include/configs/dbau1x00.h delete mode 100644 include/configs/pb1x00.h