Message ID | 20250109051619.1825-1-honyuenkwun@gmail.com (mailing list archive) |
---|---|
Headers | show |
Series | Orange Pi 5 Max | expand |
On Wed, 08 Jan 2025 23:16:14 -0600, Jimmy Hon wrote: > Add device-tree for Orange Pi 5 Max > > Orange Pi now has 3 SBCs using the RK3588 SOC. Refactor the common parts > of the 5 Plus DTS so it can be shared with the 5 Max and the 5 Ultra. > The 5 Max and 5 Ultra have a similar credit-card sized board layout and > will also share a DTSI between them. > > 5 Plus: HDMI0, HDMI1, HDMI RX, M.2 E-key, USB-C > 5 Max: HDMI0, HDMI1, WiFi/BT using SDIO/UART > 5 Ultra: HDMI1, HDMI RX, WiFi/BT using SDIO/UART > > Changes in v8: > - Rebase with updated 5 Plus USB 3 patch > > Changes in v7: > - Add signed-off to first commit > - Expand first commit description > > Changes in v6: > - Remove clock-names from incorrect merge conflict > > Changes in v5: > - Include Orange Pi 5 Plus USB 3.0 change in baseline before refactor > - Defer Orange Pi 5 Ultra to a later series > - Defer Orange Pi 5 Plus HDMI1 to a later series > > Changes in v4: > - Orange Pi 5 Ultra was released and does not use VP0 to HDMI0 > - Move HDMI0 from common to the board level > - Make DTSI to be shared by the credit card sized 5 Max and 5 Ultra > - Updates for the newly submitted HDMI1 support > - Add Ack for dt-binding > > Changes in v3: > - Refactor to share common include with Orange Pi 5 Plus > > Changes in v2: > - squashed commits together for initial board file > > Link to v1: https://lore.kernel.org/linux-rockchip/20241026100310.52679-1-honyuenkwun@gmail.com/ > > Jimmy Hon (4): > arm64: dts: rockchip: refactor common rk3588-orangepi-5.dtsi > dt-bindings: arm: rockchip: Add Xunlong Orange Pi 5 Max > arm64: dts: rockchip: Add Orange Pi 5 Max board > arm64: dts: rockchip: Enable HDMI1 on Orange Pi 5 Max > > .../devicetree/bindings/arm/rockchip.yaml | 6 +- > arch/arm64/boot/dts/rockchip/Makefile | 1 + > .../rockchip/rk3588-orangepi-5-compact.dtsi | 151 ++++ > .../dts/rockchip/rk3588-orangepi-5-max.dts | 101 +++ > .../dts/rockchip/rk3588-orangepi-5-plus.dts | 855 ++---------------- > .../boot/dts/rockchip/rk3588-orangepi-5.dtsi | 805 +++++++++++++++++ > 6 files changed, 1127 insertions(+), 792 deletions(-) > create mode 100644 arch/arm64/boot/dts/rockchip/rk3588-orangepi-5-compact.dtsi > create mode 100644 arch/arm64/boot/dts/rockchip/rk3588-orangepi-5-max.dts > create mode 100644 arch/arm64/boot/dts/rockchip/rk3588-orangepi-5.dtsi > > > base-commit: 2859e1ac3110f2d428a794bda26ea0d90b2254c6 > prerequisite-patch-id: 4672b745f4308a7be527749279edb71625d120e6 > prerequisite-patch-id: 2743fb64eba2a29eaf993ebc8a5d6ee445b69dfa > -- > 2.47.1 > > > My bot found new DTB warnings on the .dts files added or changed in this series. Some warnings may be from an existing SoC .dtsi. Or perhaps the warnings are fixed by another series. Ultimately, it is up to the platform maintainer whether these warnings are acceptable or not. No need to reply unless the platform maintainer has comments. If you already ran DT checks and didn't see these error(s), then make sure dt-schema is up to date: pip3 install dtschema --upgrade New warnings running 'make CHECK_DTBS=y for arch/arm64/boot/dts/rockchip/' for 20250109051619.1825-1-honyuenkwun@gmail.com: arch/arm64/boot/dts/rockchip/rk3566-bigtreetech-pi2.dtb: /i2c@fe5c0000/touchscreen@48: failed to match any schema with compatible: ['ti,tsc2007'] arch/arm64/boot/dts/rockchip/rk3568-qnap-ts433.dtb: /serial@fdd50000/mcu: failed to match any schema with compatible: ['qnap,ts433-mcu'] arch/arm64/boot/dts/rockchip/rk3576-armsom-sige5.dtb: /soc/phy@2b050000: failed to match any schema with compatible: ['rockchip,rk3576-naneng-combphy'] arch/arm64/boot/dts/rockchip/rk3576-armsom-sige5.dtb: /soc/phy@2b060000: failed to match any schema with compatible: ['rockchip,rk3576-naneng-combphy'] arch/arm64/boot/dts/rockchip/rk3568-mecsbc.dtb: /spi@fe610000/fram@0: failed to match any schema with compatible: ['fujitsu,mb85rs128ty'] arch/arm64/boot/dts/rockchip/rk3576-evb1-v10.dtb: /soc/phy@2b050000: failed to match any schema with compatible: ['rockchip,rk3576-naneng-combphy'] arch/arm64/boot/dts/rockchip/rk3576-evb1-v10.dtb: /soc/phy@2b060000: failed to match any schema with compatible: ['rockchip,rk3576-naneng-combphy'] arch/arm64/boot/dts/rockchip/rk3566-bigtreetech-cb2-manta.dtb: /i2c@fe5c0000/touchscreen@48: failed to match any schema with compatible: ['ti,tsc2007']
Am Donnerstag, 9. Januar 2025, 15:40:33 CET schrieb Rob Herring (Arm): > > On Wed, 08 Jan 2025 23:16:14 -0600, Jimmy Hon wrote: > > Add device-tree for Orange Pi 5 Max > > > > Orange Pi now has 3 SBCs using the RK3588 SOC. Refactor the common parts > > of the 5 Plus DTS so it can be shared with the 5 Max and the 5 Ultra. > > The 5 Max and 5 Ultra have a similar credit-card sized board layout and > > will also share a DTSI between them. > > > > 5 Plus: HDMI0, HDMI1, HDMI RX, M.2 E-key, USB-C > > 5 Max: HDMI0, HDMI1, WiFi/BT using SDIO/UART > > 5 Ultra: HDMI1, HDMI RX, WiFi/BT using SDIO/UART > > > > Changes in v8: > > - Rebase with updated 5 Plus USB 3 patch > > > > Changes in v7: > > - Add signed-off to first commit > > - Expand first commit description > > > > Changes in v6: > > - Remove clock-names from incorrect merge conflict > > > > Changes in v5: > > - Include Orange Pi 5 Plus USB 3.0 change in baseline before refactor > > - Defer Orange Pi 5 Ultra to a later series > > - Defer Orange Pi 5 Plus HDMI1 to a later series > > > > Changes in v4: > > - Orange Pi 5 Ultra was released and does not use VP0 to HDMI0 > > - Move HDMI0 from common to the board level > > - Make DTSI to be shared by the credit card sized 5 Max and 5 Ultra > > - Updates for the newly submitted HDMI1 support > > - Add Ack for dt-binding > > > > Changes in v3: > > - Refactor to share common include with Orange Pi 5 Plus > > > > Changes in v2: > > - squashed commits together for initial board file > > > > Link to v1: https://lore.kernel.org/linux-rockchip/20241026100310.52679-1-honyuenkwun@gmail.com/ > > > > Jimmy Hon (4): > > arm64: dts: rockchip: refactor common rk3588-orangepi-5.dtsi > > dt-bindings: arm: rockchip: Add Xunlong Orange Pi 5 Max > > arm64: dts: rockchip: Add Orange Pi 5 Max board > > arm64: dts: rockchip: Enable HDMI1 on Orange Pi 5 Max > > > > .../devicetree/bindings/arm/rockchip.yaml | 6 +- > > arch/arm64/boot/dts/rockchip/Makefile | 1 + > > .../rockchip/rk3588-orangepi-5-compact.dtsi | 151 ++++ > > .../dts/rockchip/rk3588-orangepi-5-max.dts | 101 +++ > > .../dts/rockchip/rk3588-orangepi-5-plus.dts | 855 ++---------------- > > .../boot/dts/rockchip/rk3588-orangepi-5.dtsi | 805 +++++++++++++++++ > > 6 files changed, 1127 insertions(+), 792 deletions(-) > > create mode 100644 arch/arm64/boot/dts/rockchip/rk3588-orangepi-5-compact.dtsi > > create mode 100644 arch/arm64/boot/dts/rockchip/rk3588-orangepi-5-max.dts > > create mode 100644 arch/arm64/boot/dts/rockchip/rk3588-orangepi-5.dtsi > > > > > > base-commit: 2859e1ac3110f2d428a794bda26ea0d90b2254c6 > > prerequisite-patch-id: 4672b745f4308a7be527749279edb71625d120e6 > > prerequisite-patch-id: 2743fb64eba2a29eaf993ebc8a5d6ee445b69dfa > > -- > > 2.47.1 > > > > > > > > > My bot found new DTB warnings on the .dts files added or changed in this > series. > > Some warnings may be from an existing SoC .dtsi. Or perhaps the warnings > are fixed by another series. Ultimately, it is up to the platform > maintainer whether these warnings are acceptable or not. No need to reply > unless the platform maintainer has comments. > > If you already ran DT checks and didn't see these error(s), then > make sure dt-schema is up to date: > > pip3 install dtschema --upgrade > > > New warnings running 'make CHECK_DTBS=y for arch/arm64/boot/dts/rockchip/' for 20250109051619.1825-1-honyuenkwun@gmail.com: All of them are not caused by the OrangePi5 > arch/arm64/boot/dts/rockchip/rk3566-bigtreetech-pi2.dtb: /i2c@fe5c0000/touchscreen@48: failed to match any schema with compatible: ['ti,tsc2007'] > arch/arm64/boot/dts/rockchip/rk3566-bigtreetech-cb2-manta.dtb: /i2c@fe5c0000/touchscreen@48: failed to match any schema with compatible: ['ti,tsc2007'] only has a txt binding > arch/arm64/boot/dts/rockchip/rk3568-qnap-ts433.dtb: /serial@fdd50000/mcu: failed to match any schema with compatible: ['qnap,ts433-mcu'] binding is in the mfd tree > arch/arm64/boot/dts/rockchip/rk3576-armsom-sige5.dtb: /soc/phy@2b050000: failed to match any schema with compatible: ['rockchip,rk3576-naneng-combphy'] > arch/arm64/boot/dts/rockchip/rk3576-armsom-sige5.dtb: /soc/phy@2b060000: failed to match any schema with compatible: ['rockchip,rk3576-naneng-combphy'] > arch/arm64/boot/dts/rockchip/rk3576-evb1-v10.dtb: /soc/phy@2b050000: failed to match any schema with compatible: ['rockchip,rk3576-naneng-combphy'] > arch/arm64/boot/dts/rockchip/rk3576-evb1-v10.dtb: /soc/phy@2b060000: failed to match any schema with compatible: ['rockchip,rk3576-naneng-combphy'] binding is in the phy tree > arch/arm64/boot/dts/rockchip/rk3568-mecsbc.dtb: /spi@fe610000/fram@0: failed to match any schema with compatible: ['fujitsu,mb85rs128ty'] binding is in the mtd tree
On Wed, 08 Jan 2025 23:16:14 -0600, Jimmy Hon wrote: > Add device-tree for Orange Pi 5 Max > > Orange Pi now has 3 SBCs using the RK3588 SOC. Refactor the common parts > of the 5 Plus DTS so it can be shared with the 5 Max and the 5 Ultra. > The 5 Max and 5 Ultra have a similar credit-card sized board layout and > will also share a DTSI between them. > > [...] Applied, thanks! [1/4] arm64: dts: rockchip: refactor common rk3588-orangepi-5.dtsi commit: ea63f4666e483b48a49d9774d8c680f81165ff06 [2/4] dt-bindings: arm: rockchip: Add Xunlong Orange Pi 5 Max commit: 6327f2d83dce514d43134dedb766df000420b779 [3/4] arm64: dts: rockchip: Add Orange Pi 5 Max board commit: c600d252dc52ffc29982ee6873b6eee064193752 The whole hdmi1 thing still needs to wait for the phy maintainer to pick up phy driver patches, so I've only taken the first patches for now. Best regards,