public inbox for u-boot@lists.denx.de
 help / color / mirror / Atom feed
* [U-Boot] [PATCH v3 0/4] Add Rock960 and Ficus 96Board support
@ 2018-09-27 19:02 Manivannan Sadhasivam
  2018-09-27 19:02 ` [U-Boot] [PATCH v3 1/4] arm: dts: rockchip: add some common pin-settings to rk3399 Manivannan Sadhasivam
                   ` (5 more replies)
  0 siblings, 6 replies; 37+ messages in thread
From: Manivannan Sadhasivam @ 2018-09-27 19:02 UTC (permalink / raw)
  To: u-boot

This patchset adds support for Rock960 and Ficus 96Boards from Vamrs.
Since both boards share most of the configurations, a common Rock960
family support is added with common support and the actual boards are
based on this.

The previous version of the patchseries were adding Rock960 [1] and
Ficus [2] board support individually, but this series fuses them
together based on the common board support as per Linux kernel.

[1] https://patchwork.ozlabs.org/cover/963239/
[2] https://lists.denx.de/pipermail/u-boot/2018-August/339059.html

This patchseries has been tested on Rock960 v1.2 board and expecting
Ezequiel to do the testing for Ficus.

PS: I have explicitly removed the previous Ack's for the Ficus board
since there has been a heavy modification done on these patches.

Thanks,
Mani

Manivannan Sadhasivam (4):
  arm: dts: rockchip: add some common pin-settings to rk3399
  rockchip: rk3399: Add common Rock960 family from Vamrs
  rockchip: rk3399: Add Rock960 CE board support
  rockchip: rk3399: Add Ficus EE board support

 arch/arm/dts/Makefile                         |    2 +
 arch/arm/dts/rk3399-ficus.dts                 |   78 +
 arch/arm/dts/rk3399-rock960.dts               |   45 +
 arch/arm/dts/rk3399-rock960.dtsi              |  506 ++++++
 .../arm/dts/rk3399-sdram-lpddr3-2GB-1600.dtsi | 1536 +++++++++++++++++
 arch/arm/dts/rk3399.dtsi                      |   55 +-
 arch/arm/mach-rockchip/rk3399/Kconfig         |   26 +
 board/vamrs/rock960_rk3399/Kconfig            |   15 +
 board/vamrs/rock960_rk3399/MAINTAINERS        |    6 +
 board/vamrs/rock960_rk3399/Makefile           |    6 +
 board/vamrs/rock960_rk3399/README             |  152 ++
 board/vamrs/rock960_rk3399/rock960-rk3399.c   |   50 +
 configs/ficus-rk3399_defconfig                |   71 +
 configs/rock960-rk3399_defconfig              |   69 +
 include/configs/rock960_rk3399.h              |   15 +
 15 files changed, 2626 insertions(+), 6 deletions(-)
 create mode 100644 arch/arm/dts/rk3399-ficus.dts
 create mode 100644 arch/arm/dts/rk3399-rock960.dts
 create mode 100644 arch/arm/dts/rk3399-rock960.dtsi
 create mode 100644 arch/arm/dts/rk3399-sdram-lpddr3-2GB-1600.dtsi
 create mode 100644 board/vamrs/rock960_rk3399/Kconfig
 create mode 100644 board/vamrs/rock960_rk3399/MAINTAINERS
 create mode 100644 board/vamrs/rock960_rk3399/Makefile
 create mode 100644 board/vamrs/rock960_rk3399/README
 create mode 100644 board/vamrs/rock960_rk3399/rock960-rk3399.c
 create mode 100644 configs/ficus-rk3399_defconfig
 create mode 100644 configs/rock960-rk3399_defconfig
 create mode 100644 include/configs/rock960_rk3399.h

-- 
2.17.1

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

end of thread, other threads:[~2018-12-06 16:08 UTC | newest]

Thread overview: 37+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2018-09-27 19:02 [U-Boot] [PATCH v3 0/4] Add Rock960 and Ficus 96Board support Manivannan Sadhasivam
2018-09-27 19:02 ` [U-Boot] [PATCH v3 1/4] arm: dts: rockchip: add some common pin-settings to rk3399 Manivannan Sadhasivam
2018-10-03 19:05   ` Peter Robinson
2018-10-03 19:35   ` [U-Boot] [U-Boot, v3, " Philipp Tomsich
2018-12-06 15:02   ` Philipp Tomsich
2018-09-27 19:02 ` [U-Boot] [PATCH v3 2/4] rockchip: rk3399: Add common Rock960 family from Vamrs Manivannan Sadhasivam
2018-10-02 11:21   ` Simon Glass
2018-10-02 14:01     ` Manivannan Sadhasivam
2018-10-03 19:34       ` Philipp Tomsich
2018-10-03 19:36         ` Ezequiel Garcia
2018-10-03 19:41           ` Philipp Tomsich
2018-10-04  3:15             ` Manivannan Sadhasivam
2018-10-03 19:04   ` Peter Robinson
2018-12-06 15:02   ` [U-Boot] [U-Boot, v3, " Philipp Tomsich
2018-09-27 19:03 ` [U-Boot] [PATCH v3 3/4] rockchip: rk3399: Add Rock960 CE board support Manivannan Sadhasivam
2018-10-02 11:21   ` Simon Glass
2018-10-03 19:06   ` Peter Robinson
2018-10-03 19:35   ` [U-Boot] [U-Boot, v3, " Philipp Tomsich
2018-11-22 20:53     ` Ezequiel Garcia
2018-12-06 15:02   ` Philipp Tomsich
2018-09-27 19:03 ` [U-Boot] [PATCH v3 4/4] rockchip: rk3399: Add Ficus EE " Manivannan Sadhasivam
2018-10-02 11:21   ` Simon Glass
2018-10-03 19:35   ` [U-Boot] [U-Boot, v3, " Philipp Tomsich
2018-12-04 21:12     ` Ezequiel Garcia
2018-12-04 21:21       ` Philipp Tomsich
2018-12-04 22:02         ` Ezequiel Garcia
2018-12-06 14:39           ` Philipp Tomsich
2018-12-06 15:02   ` Philipp Tomsich
2018-09-28  5:35 ` [U-Boot] [PATCH v3 0/4] Add Rock960 and Ficus 96Board support Daniel Lezcano
2018-10-26 17:17 ` Manivannan Sadhasivam
2018-10-26 18:00   ` Philipp Tomsich
2018-12-06  7:53     ` Alexander Graf
2018-12-06 14:57       ` Philipp Tomsich
2018-12-06 15:00         ` Philipp Tomsich
2018-12-06 15:20       ` Tom Rini
2018-12-06 15:37         ` Manivannan Sadhasivam
2018-12-06 16:08           ` Tom Rini

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