[U-Boot] [PULL] u-boot-mips
Daniel Schwierzeck
daniel.schwierzeck at gmail.com
Wed Jan 23 21:51:25 UTC 2019
Hi Tom,
please pull updates for MIPS
https://travis-ci.org/danielschwierzeck/u-boot/builds/483510787
The following changes since commit 7794fe2c8c1303d303dbc515955c6c5be706da88:
Merge git://git.denx.de/u-boot-nds32 (2019-01-22 22:00:20 -0500)
are available in the Git repository at:
git://git.denx.de/u-boot-mips.git tags/mips-pull-2019-01-23
for you to fetch changes up to a834cb817fb1a11607ea8e6394235843be079fdd:
MSCC: Add board support for Serval SoC family. (2019-01-23 18:28:09 +0100)
----------------------------------------------------------------
- MIPS: mscc: ocelot: add ethernet switch and network support
- MIPS: mscc: add support for ServalT SoC family
- MIPS: mscc: add support for Serval SoC family
----------------------------------------------------------------
Gregory CLEMENT (4):
MIPS: mscc: ocelot: Add ethernet nodes for Ocelot
net: add MSCC Ocelot switch support
MIPS: mscc: ocelot: add switch reset support
configs: mscc_ocelot: add network support
Horatiu Vultur (8):
pinctrl: mscc: Add gpio and pinctrl for Servalt SoC family.
MSCC: Add support for Servalt SoC family.
MSCC: Add board support for Servalt SoC family
pinctrl: mscc: Add gpio and pinctrl for Serval SoC family.
MSCC: Add support for Serval SoC family.
MSCC: add device tree for Serval pcb105 board
MSCC: Add device tree for Serval pcb106 board
MSCC: Add board support for Serval SoC family.
MAINTAINERS | 1 +
arch/mips/dts/Makefile | 2 +
arch/mips/dts/mscc,ocelot.dtsi | 97 +++
arch/mips/dts/mscc,serval.dtsi | 149 ++++
arch/mips/dts/mscc,servalt.dtsi | 149 ++++
arch/mips/dts/ocelot_pcb123.dts | 20 +
arch/mips/dts/serval_pcb105.dts | 56 ++
arch/mips/dts/serval_pcb106.dts | 56 ++
arch/mips/dts/servalt_pcb116.dts | 56 ++
arch/mips/mach-mscc/Kconfig | 17 +
arch/mips/mach-mscc/Makefile | 1 +
arch/mips/mach-mscc/cpu.c | 4 +-
arch/mips/mach-mscc/dram.c | 3 +-
arch/mips/mach-mscc/include/mach/common.h | 10 +
arch/mips/mach-mscc/include/mach/ddr.h | 30 +-
arch/mips/mach-mscc/include/mach/serval/serval.h | 24 +
.../include/mach/serval/serval_devcpu_gcb.h | 21 +
.../mach/serval/serval_devcpu_gcb_miim_regs.h | 25 +
.../include/mach/serval/serval_icpu_cfg.h | 314 +++++++++
arch/mips/mach-mscc/include/mach/servalt/servalt.h | 24 +
.../include/mach/servalt/servalt_devcpu_gcb.h | 20 +
.../mach/servalt/servalt_devcpu_gcb_miim_regs.h | 25 +
.../include/mach/servalt/servalt_icpu_cfg.h | 319 +++++++++
arch/mips/mach-mscc/reset.c | 27 +-
board/mscc/ocelot/ocelot.c | 24 +
board/mscc/serval/Kconfig | 14 +
board/mscc/serval/Makefile | 3 +
board/mscc/serval/serval.c | 74 ++
board/mscc/servalt/Kconfig | 14 +
board/mscc/servalt/Makefile | 3 +
board/mscc/servalt/servalt.c | 52 ++
configs/mscc_ocelot_defconfig | 1 +
configs/mscc_serval_defconfig | 62 ++
configs/mscc_servalt_defconfig | 60 ++
drivers/net/Kconfig | 7 +
drivers/net/Makefile | 1 +
drivers/net/ocelot_switch.c | 765 +++++++++++++++++++++
drivers/pinctrl/mscc/Kconfig | 19 +
drivers/pinctrl/mscc/Makefile | 2 +
drivers/pinctrl/mscc/pinctrl-serval.c | 233 +++++++
drivers/pinctrl/mscc/pinctrl-servalt.c | 269 ++++++++
include/configs/vcoreiii.h | 5 +-
42 files changed, 3040 insertions(+), 18 deletions(-)
create mode 100644 arch/mips/dts/mscc,serval.dtsi
create mode 100644 arch/mips/dts/mscc,servalt.dtsi
create mode 100644 arch/mips/dts/serval_pcb105.dts
create mode 100644 arch/mips/dts/serval_pcb106.dts
create mode 100644 arch/mips/dts/servalt_pcb116.dts
create mode 100644 arch/mips/mach-mscc/include/mach/serval/serval.h
create mode 100644 arch/mips/mach-mscc/include/mach/serval/serval_devcpu_gcb.h
create mode 100644 arch/mips/mach-mscc/include/mach/serval/serval_devcpu_gcb_miim_regs.h
create mode 100644 arch/mips/mach-mscc/include/mach/serval/serval_icpu_cfg.h
create mode 100644 arch/mips/mach-mscc/include/mach/servalt/servalt.h
create mode 100644 arch/mips/mach-mscc/include/mach/servalt/servalt_devcpu_gcb.h
create mode 100644 arch/mips/mach-mscc/include/mach/servalt/servalt_devcpu_gcb_miim_regs.h
create mode 100644 arch/mips/mach-mscc/include/mach/servalt/servalt_icpu_cfg.h
create mode 100644 board/mscc/serval/Kconfig
create mode 100644 board/mscc/serval/Makefile
create mode 100644 board/mscc/serval/serval.c
create mode 100644 board/mscc/servalt/Kconfig
create mode 100644 board/mscc/servalt/Makefile
create mode 100644 board/mscc/servalt/servalt.c
create mode 100644 configs/mscc_serval_defconfig
create mode 100644 configs/mscc_servalt_defconfig
create mode 100644 drivers/net/ocelot_switch.c
create mode 100644 drivers/pinctrl/mscc/pinctrl-serval.c
create mode 100644 drivers/pinctrl/mscc/pinctrl-servalt.c
More information about the U-Boot
mailing list