public inbox for u-boot@lists.denx.de
 help / color / mirror / Atom feed
* [U-Boot] [PATCH v2 0/7] MSCC: Add Jaguar2 SOC family
@ 2019-01-07 13:02 Horatiu Vultur
  2019-01-07 13:02 ` [U-Boot] [PATCH v2 1/7] pinctrl: mscc: Add gpio and pinctrl for " Horatiu Vultur
                   ` (6 more replies)
  0 siblings, 7 replies; 17+ messages in thread
From: Horatiu Vultur @ 2019-01-07 13:02 UTC (permalink / raw)
  To: u-boot

This patch series add support for MSCC Jaguar2 SOC family. In this
family there are the following boards: Jagaur2(pcb110),
Jaguar2-48(pcb111) and Serval2(pcb112).

This is based off the u-boot-mips/next repository

This version address comments from Daniel Schwierzeck
<daniel.schwierzeck@gmail.com>

v2-changes:
 - create sysreset driver for Jaguar2
 - update pinctrl

Horatiu Vultur (7):
  pinctrl: mscc: Add gpio and pinctrl for Jaguar2 SOC family
  MSCC: Add support for Jaguar2 SOC family
  MSCC: Add device tree for Jaguar2 board
  MSCC: Add device tree for Jaguar2-48 board
  MSCC: add device tree for Serval2 board
  MSCC: Add board support for Jaguar2 SOC family
  MSCC: Add sysreset driver for Jaguar2 SOC family

 MAINTAINERS                                        |   4 +
 arch/mips/dts/Makefile                             |   1 +
 arch/mips/dts/jr2_pcb110.dts                       |  74 +++++
 arch/mips/dts/jr2_pcb111.dts                       |  74 +++++
 arch/mips/dts/mscc,jr2.dtsi                        | 187 +++++++++++
 arch/mips/dts/serval2_pcb112.dts                   |  60 ++++
 arch/mips/mach-mscc/Kconfig                        |   9 +
 arch/mips/mach-mscc/Makefile                       |   5 +-
 arch/mips/mach-mscc/cpu.c                          |   7 +
 arch/mips/mach-mscc/dram.c                         |   2 +-
 arch/mips/mach-mscc/include/mach/common.h          |   5 +
 arch/mips/mach-mscc/include/mach/ddr.h             |  38 ++-
 arch/mips/mach-mscc/include/mach/jr2/jr2.h         |  24 ++
 .../mach-mscc/include/mach/jr2/jr2_devcpu_gcb.h    |  20 ++
 .../include/mach/jr2/jr2_devcpu_gcb_miim_regs.h    |  25 ++
 .../mips/mach-mscc/include/mach/jr2/jr2_icpu_cfg.h | 321 +++++++++++++++++++
 board/mscc/common/Makefile                         |   4 +
 board/mscc/common/spi.c                            |  31 ++
 board/mscc/jr2/Kconfig                             |  15 +
 board/mscc/jr2/Makefile                            |   4 +
 board/mscc/jr2/jr2.c                               | 125 ++++++++
 board/mscc/ocelot/ocelot.c                         |  22 --
 configs/mscc_jr2_defconfig                         |  61 ++++
 drivers/pinctrl/mscc/Kconfig                       |   9 +
 drivers/pinctrl/mscc/Makefile                      |   1 +
 drivers/pinctrl/mscc/mscc-common.c                 |  97 ++++--
 drivers/pinctrl/mscc/mscc-common.h                 |   5 +
 drivers/pinctrl/mscc/pinctrl-jr2.c                 | 342 +++++++++++++++++++++
 drivers/sysreset/Kconfig                           |   6 +
 drivers/sysreset/Makefile                          |   1 +
 drivers/sysreset/sysreset_jr2.c                    |  46 +++
 31 files changed, 1571 insertions(+), 54 deletions(-)
 create mode 100644 arch/mips/dts/jr2_pcb110.dts
 create mode 100644 arch/mips/dts/jr2_pcb111.dts
 create mode 100644 arch/mips/dts/mscc,jr2.dtsi
 create mode 100644 arch/mips/dts/serval2_pcb112.dts
 create mode 100644 arch/mips/mach-mscc/include/mach/jr2/jr2.h
 create mode 100644 arch/mips/mach-mscc/include/mach/jr2/jr2_devcpu_gcb.h
 create mode 100644 arch/mips/mach-mscc/include/mach/jr2/jr2_devcpu_gcb_miim_regs.h
 create mode 100644 arch/mips/mach-mscc/include/mach/jr2/jr2_icpu_cfg.h
 create mode 100644 board/mscc/common/Makefile
 create mode 100644 board/mscc/common/spi.c
 create mode 100644 board/mscc/jr2/Kconfig
 create mode 100644 board/mscc/jr2/Makefile
 create mode 100644 board/mscc/jr2/jr2.c
 create mode 100644 configs/mscc_jr2_defconfig
 create mode 100644 drivers/pinctrl/mscc/pinctrl-jr2.c
 create mode 100644 drivers/sysreset/sysreset_jr2.c

-- 
2.7.4

^ permalink raw reply	[flat|nested] 17+ messages in thread

end of thread, other threads:[~2019-01-09 16:57 UTC | newest]

Thread overview: 17+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2019-01-07 13:02 [U-Boot] [PATCH v2 0/7] MSCC: Add Jaguar2 SOC family Horatiu Vultur
2019-01-07 13:02 ` [U-Boot] [PATCH v2 1/7] pinctrl: mscc: Add gpio and pinctrl for " Horatiu Vultur
2019-01-07 19:38   ` Daniel Schwierzeck
2019-01-08  8:00     ` Horatiu Vultur
2019-01-08 16:12       ` Daniel Schwierzeck
2019-01-09  8:21         ` Horatiu Vultur
2019-01-09 16:57           ` Daniel Schwierzeck
2019-01-07 13:02 ` [U-Boot] [PATCH v2 2/7] MSCC: Add support " Horatiu Vultur
2019-01-07 20:12   ` Daniel Schwierzeck
2019-01-07 13:02 ` [U-Boot] [PATCH v2 3/7] MSCC: Add device tree for Jaguar2 board Horatiu Vultur
2019-01-07 13:02 ` [U-Boot] [PATCH v2 4/7] MSCC: Add device tree for Jaguar2-48 board Horatiu Vultur
2019-01-07 13:02 ` [U-Boot] [PATCH v2 5/7] MSCC: add device tree for Serval2 board Horatiu Vultur
2019-01-07 13:02 ` [U-Boot] [PATCH v2 6/7] MSCC: Add board support for Jaguar2 SOC family Horatiu Vultur
2019-01-07 20:13   ` Daniel Schwierzeck
2019-01-07 13:02 ` [U-Boot] [PATCH v2 7/7] MSCC: Add sysreset driver " Horatiu Vultur
2019-01-07 20:11   ` Daniel Schwierzeck
2019-01-08  7:51     ` Horatiu Vultur

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox