All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH next v3 0/8] rockchip: add support for Theobroma Systems SOM-RK3588-Q7 Tiger module
@ 2024-06-10 13:13 Quentin Schulz
  2024-06-10 13:13 ` [PATCH next v3 1/8] arm64: dts: rockchip: enable gpu on rk3588-tiger Quentin Schulz
                   ` (8 more replies)
  0 siblings, 9 replies; 12+ messages in thread
From: Quentin Schulz @ 2024-06-10 13:13 UTC (permalink / raw)
  To: Simon Glass, Philipp Tomsich, Kever Yang, Klaus Goger,
	Heiko Stuebner, Tom Rini, Sumit Garg
  Cc: u-boot, Quentin Schulz, Heiko Stuebner, Jing Luo, Quentin Schulz,
	Quentin Schulz

This has a dependency on https://lore.kernel.org/u-boot/20240528170406.353616-1-liujianfeng1994@gmail.com/

Changes in v3:
- rebased on top of next,
- changed patch series dependency from DRAM ATAGS (merged) to RK3588
  upstream DTS cherry-picks from 6.10-rc1 (USB nodes),
- cherry-picked kernel DTS commits for Tiger between v6.9 and v6.10-rc2,
  note that the "arm64: dts: rockchip: correct gpio_pwrctrl1 typos on rk3588(s) boards"
  commit triggered some git auto-merging while cherry-picking,
- support for Q7 USB P1 (micro-USB OTG) has been dropped, it requires
  extcon USB GPIO driver that isn't supported in U-Boot (yet?),
- Link to v2: https://lore.kernel.org/r/20240423-tiger-v2-1-4a3fa0a01b5e@theobroma-systems.com

Changes in v2:
- removed uart controller muxing patch as not necessary until we get
  open-source DRAM init,
- disabled DEBUG_UART_BOARD_INIT as it's only used for muxing the UART
  controller and it's not necessary since DDR bin does this for us
  already,
- added missing uart2 mux bootph in U-Boot dtsi (though not required
  yet),
- switched to USB_DWC3_GENERIC from USB_XHCI_DWC3 as requested by Jonas,
- Link to v1: https://lore.kernel.org/r/20240422-tiger-v1-0-8816b070d748@theobroma-systems.com

Signed-off-by: Quentin Schulz <quentin.schulz@cherry.de>
---
Heiko Stuebner (6):
      arm64: dts: rockchip: enable gpu on rk3588-tiger
      arm64: dts: rockchip: move uart2 pinmux to dtsi on rk3588-tiger
      arm64: dts: rockchip: fix pcie-refclk frequency on rk3588 tiger
      arm64: dts: rockchip: fix comment for upper usb3 port
      arm64: dts: rockchip: add usb-id extcon on rk3588 tiger
      arm64: dts: rockchip: add dual-role usb3 hosts to rk3588 Tiger-Haikou

Jing Luo (1):
      arm64: dts: rockchip: correct gpio_pwrctrl1 typos on rk3588(s) boards

Quentin Schulz (1):
      rockchip: add support for Theobroma Systems SOM-RK3588-Q7 Tiger module

 arch/arm/dts/rk3588-tiger-haikou-u-boot.dtsi       |  37 +++++++
 arch/arm/mach-rockchip/rk3588/Kconfig              |  31 ++++++
 board/theobroma-systems/tiger_rk3588/Kconfig       |  16 +++
 board/theobroma-systems/tiger_rk3588/MAINTAINERS   |  13 +++
 board/theobroma-systems/tiger_rk3588/Makefile      |  10 ++
 .../theobroma-systems/tiger_rk3588/tiger_rk3588.c  |  53 ++++++++++
 configs/tiger-rk3588_defconfig                     | 113 +++++++++++++++++++++
 doc/board/rockchip/rockchip.rst                    |   1 +
 doc/board/theobroma-systems/index.rst              |   1 +
 doc/board/theobroma-systems/tiger_rk3588.rst       | 102 +++++++++++++++++++
 .../src/arm64/rockchip/rk3588-coolpi-cm5.dtsi      |   2 +-
 .../rockchip/rk3588-edgeble-neu6a-common.dtsi      |   2 +-
 dts/upstream/src/arm64/rockchip/rk3588-jaguar.dts  |   2 +-
 .../src/arm64/rockchip/rk3588-tiger-haikou.dts     |  65 +++++++++++-
 dts/upstream/src/arm64/rockchip/rk3588-tiger.dtsi  |  29 +++++-
 .../src/arm64/rockchip/rk3588-turing-rk1.dtsi      |   2 +-
 .../src/arm64/rockchip/rk3588s-coolpi-4b.dts       |   2 +-
 .../src/arm64/rockchip/rk3588s-indiedroid-nova.dts |   2 +-
 .../src/arm64/rockchip/rk3588s-orangepi-5.dts      |   2 +-
 .../src/arm64/rockchip/rk3588s-rock-5a.dts         |   2 +-
 include/configs/tiger_rk3588.h                     |  15 +++
 21 files changed, 488 insertions(+), 14 deletions(-)
---
base-commit: b9bc39042dbc5d9e3bc84c0d63a54a4f6f5819d4
change-id: 20240418-tiger-d1531308c9a0

Best regards,
-- 
Quentin Schulz <quentin.schulz@cherry.de>


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

end of thread, other threads:[~2024-06-14  9:01 UTC | newest]

Thread overview: 12+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-06-10 13:13 [PATCH next v3 0/8] rockchip: add support for Theobroma Systems SOM-RK3588-Q7 Tiger module Quentin Schulz
2024-06-10 13:13 ` [PATCH next v3 1/8] arm64: dts: rockchip: enable gpu on rk3588-tiger Quentin Schulz
2024-06-10 13:13 ` [PATCH next v3 2/8] arm64: dts: rockchip: move uart2 pinmux to dtsi " Quentin Schulz
2024-06-10 13:13 ` [PATCH next v3 3/8] arm64: dts: rockchip: correct gpio_pwrctrl1 typos on rk3588(s) boards Quentin Schulz
2024-06-14  9:00   ` Kever Yang
2024-06-10 13:13 ` [PATCH next v3 4/8] arm64: dts: rockchip: fix pcie-refclk frequency on rk3588 tiger Quentin Schulz
2024-06-10 13:13 ` [PATCH next v3 5/8] arm64: dts: rockchip: fix comment for upper usb3 port Quentin Schulz
2024-06-10 13:13 ` [PATCH next v3 6/8] arm64: dts: rockchip: add usb-id extcon on rk3588 tiger Quentin Schulz
2024-06-10 13:13 ` [PATCH next v3 7/8] arm64: dts: rockchip: add dual-role usb3 hosts to rk3588 Tiger-Haikou Quentin Schulz
2024-06-10 13:13 ` [PATCH next v3 8/8] rockchip: add support for Theobroma Systems SOM-RK3588-Q7 Tiger module Quentin Schulz
2024-06-14  9:01   ` Kever Yang
2024-06-10 20:02 ` [PATCH next v3 0/8] " Heiko Stübner

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.