devicetree.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCHv3 0/9] Initial rk3588 DT
@ 2022-11-21 17:58 Sebastian Reichel
  2022-11-21 17:58 ` [PATCHv3 1/9] dt-bindings: soc: rockchip: add initial rk3588 syscon compatibles Sebastian Reichel
                   ` (8 more replies)
  0 siblings, 9 replies; 15+ messages in thread
From: Sebastian Reichel @ 2022-11-21 17:58 UTC (permalink / raw)
  To: Heiko Stuebner
  Cc: Rob Herring, Krzysztof Kozlowski, Linus Walleij,
	Christopher Obbard, Benjamin Gaignard, linux-rockchip, devicetree,
	linux-kernel, Sebastian Reichel, kernel

Hi,

This adds initial rk3588(s) DT including two different board
devicetrees. All required driver changes have been merged into
the respective maintainer trees. There is one warning from the
DT check:

$ make CHECK_DTBS=y rockchip/rk3588-evb1-v10.dtb rockchip/rk3588s-rock-5a.dtb
  DTC_CHK arch/arm64/boot/dts/rockchip/rk3588-evb1-v10.dtb
/home/sre/src/collabora/rode/linux-rockchip-upstream/arch/arm64/boot/dts/rockchip/rk3588-evb1-v10.dtb:
    ethernet@fe1c0000: Unevaluated properties are not allowed ('interrupt-names', 'interrupts', 'mdio',
    'power-domains', 'reg', 'reset-names', 'resets', 'rx-queues-config', 'snps,axi-config', 'snps,mixed-burst',
    'snps,mtl-rx-config', 'snps,mtl-tx-config', 'snps,tso', 'stmmac-axi-config', 'tx-queues-config' were unexpected)
	From schema: /home/sre/src/collabora/rode/linux-rockchip-upstream/Documentation/devicetree/bindings/net/rockchip-dwmac.yaml

This is for gmac1. gmac0 has the same properties and there is no warning. Also
rk3588s (and thus the Rock 5A) has only gmac1 and there is no warning for the
Rock 5A. It looks like for some reason the referenced "snps,dwmac.yaml#"
is only checked for the first node. I think it's a bug in dt-validate.
Also the same issue can be seen with rk356x.

Changes since PATCHv2:
 * https://lore.kernel.org/all/20221115161702.163057-1-sebastian.reichel@collabora.com/
 * add minimal Radxa Rock 5B DT
 * Add aliases for i2c, spi and gpio in rk3588s.dtsi
 * Fix ethernet-phy node name and remove #phy-cells
 * Sort nodes / includes in both boards
 * Sort nodes in rk3588s.dtsi according to register address
 * add missing spi4 node in rk3588s.dtsi
 * split board specific dt-bindings into their own patches
 * add board specific mmc alias following the downstream enumeration

Changes since PATCHv1:
 * https://lore.kernel.org/all/20221108171500.99599-1-sebastian.reichel@collabora.com/
 * Drop Acked-by from Krzysztof
 * Add 'regulator-' prefix to VCC12V VCC5V0 regulators
 * Change 'Radxa Rock 5A' to 'Radxa ROCK 5 Model A' in DT binding
 * Update cover-letter (clock driver and some DT binding fixes got merged)

-- Sebastian

Christopher Obbard (2):
  dt-bindings: arm: rockchip: add Rock 5 Model B
  arm64: dts: rockchip: Add rock-5b board

Jianqun Xu (1):
  arm64: dts: rockchip: Add rk3588 pinctrl data

Kever Yang (2):
  arm64: dts: rockchip: Add base DT for rk3588 SoC
  arm64: dts: rockchip: Add rk3588-evb1 board

Sebastian Reichel (4):
  dt-bindings: soc: rockchip: add initial rk3588 syscon compatibles
  dt-bindings: arm: rockchip: add RK3588 EVB1
  dt-bindings: arm: rockchip: add Rock 5 Model A
  arm64: dts: rockchip: Add rock-5a board

 .../devicetree/bindings/arm/rockchip.yaml     |   15 +
 .../devicetree/bindings/soc/rockchip/grf.yaml |    5 +
 arch/arm64/boot/dts/rockchip/Makefile         |    3 +
 .../boot/dts/rockchip/rk3588-evb1-v10.dts     |  159 +
 .../boot/dts/rockchip/rk3588-pinctrl.dtsi     |  516 +++
 .../boot/dts/rockchip/rk3588-rock-5b.dts      |   43 +
 arch/arm64/boot/dts/rockchip/rk3588.dtsi      |   62 +
 .../boot/dts/rockchip/rk3588s-pinctrl.dtsi    | 3403 +++++++++++++++++
 .../boot/dts/rockchip/rk3588s-rock-5a.dts     |   66 +
 arch/arm64/boot/dts/rockchip/rk3588s.dtsi     | 1722 +++++++++
 10 files changed, 5994 insertions(+)
 create mode 100644 arch/arm64/boot/dts/rockchip/rk3588-evb1-v10.dts
 create mode 100644 arch/arm64/boot/dts/rockchip/rk3588-pinctrl.dtsi
 create mode 100644 arch/arm64/boot/dts/rockchip/rk3588-rock-5b.dts
 create mode 100644 arch/arm64/boot/dts/rockchip/rk3588.dtsi
 create mode 100644 arch/arm64/boot/dts/rockchip/rk3588s-pinctrl.dtsi
 create mode 100644 arch/arm64/boot/dts/rockchip/rk3588s-rock-5a.dts
 create mode 100644 arch/arm64/boot/dts/rockchip/rk3588s.dtsi

-- 
2.35.1


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

end of thread, other threads:[~2022-11-23  8:54 UTC | newest]

Thread overview: 15+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2022-11-21 17:58 [PATCHv3 0/9] Initial rk3588 DT Sebastian Reichel
2022-11-21 17:58 ` [PATCHv3 1/9] dt-bindings: soc: rockchip: add initial rk3588 syscon compatibles Sebastian Reichel
2022-11-21 17:58 ` [PATCHv3 2/9] arm64: dts: rockchip: Add rk3588 pinctrl data Sebastian Reichel
2022-11-21 17:58 ` [PATCHv3 3/9] arm64: dts: rockchip: Add base DT for rk3588 SoC Sebastian Reichel
2022-11-22 12:54   ` Johan Jonker
2022-11-21 17:58 ` [PATCHv3 4/9] dt-bindings: arm: rockchip: add RK3588 EVB1 Sebastian Reichel
2022-11-22  8:07   ` Krzysztof Kozlowski
2022-11-21 17:58 ` [PATCHv3 5/9] dt-bindings: arm: rockchip: add Rock 5 Model A Sebastian Reichel
2022-11-22  8:07   ` Krzysztof Kozlowski
2022-11-21 17:58 ` [PATCHv3 6/9] dt-bindings: arm: rockchip: add Rock 5 Model B Sebastian Reichel
2022-11-22  8:08   ` Krzysztof Kozlowski
2022-11-21 17:58 ` [PATCHv3 7/9] arm64: dts: rockchip: Add rk3588-evb1 board Sebastian Reichel
2022-11-23  8:54   ` Michael Riesch
2022-11-21 17:58 ` [PATCHv3 8/9] arm64: dts: rockchip: Add rock-5a board Sebastian Reichel
2022-11-21 17:58 ` [PATCHv3 9/9] arm64: dts: rockchip: Add rock-5b board Sebastian Reichel

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).