* [PATCH v7 1/5] arm64: dts: rockchip: Differences in Orange Pi 5 Max
2025-02-22 19:33 [PATCH v7 0/5] Orange Pi 5 Ultra Jimmy Hon
@ 2025-02-22 19:33 ` Jimmy Hon
2025-02-22 19:33 ` [PATCH v7 2/5] dt-bindings: arm: rockchip: Add Xunlong Orange Pi 5 Ultra Jimmy Hon
` (4 subsequent siblings)
5 siblings, 0 replies; 11+ messages in thread
From: Jimmy Hon @ 2025-02-22 19:33 UTC (permalink / raw)
To: Heiko Stuebner, Johannes Erdfelt
Cc: Rob Herring, Krzysztof Kozlowski, Conor Dooley, devicetree,
linux-arm-kernel, linux-rockchip, Jimmy Hon
...than the Orange Pi 5 Ultra
The Orange Pi 5 Plus and Orange Pi 5 Max have 2SK3018s attached to the
PWM LEDs. The Orange Pi 5 Ultra does not, and thus needs the PWM
polarity inverted.
Also remove the model/compatible from the dtsi. It should be at the
board level only.
Fixes: c600d252dc52 ("arm64: dts: rockchip: Add Orange Pi 5 Max board")
Signed-off-by: Jimmy Hon <honyuenkwun@gmail.com>
---
.../boot/dts/rockchip/rk3588-orangepi-5-compact.dtsi | 9 ---------
arch/arm64/boot/dts/rockchip/rk3588-orangepi-5-max.dts | 8 ++++++++
2 files changed, 8 insertions(+), 9 deletions(-)
diff --git a/arch/arm64/boot/dts/rockchip/rk3588-orangepi-5-compact.dtsi b/arch/arm64/boot/dts/rockchip/rk3588-orangepi-5-compact.dtsi
index 87090cb98020..6e4dcd8fff26 100644
--- a/arch/arm64/boot/dts/rockchip/rk3588-orangepi-5-compact.dtsi
+++ b/arch/arm64/boot/dts/rockchip/rk3588-orangepi-5-compact.dtsi
@@ -7,9 +7,6 @@
#include "rk3588-orangepi-5.dtsi"
/ {
- model = "Xunlong Orange Pi 5 Max";
- compatible = "xunlong,orangepi-5-max", "rockchip,rk3588";
-
vcc5v0_usb30_otg: vcc5v0-usb30-otg-regulator {
compatible = "regulator-fixed";
enable-active-high;
@@ -62,15 +59,9 @@ &hym8563 {
&led_blue_pwm {
/* PWM_LED1 */
- pwms = <&pwm4 0 25000 0>;
status = "okay";
};
-&led_green_pwm {
- /* PWM_LED2 */
- pwms = <&pwm5 0 25000 0>;
-};
-
/* phy2 */
&pcie2x1l1 {
reset-gpios = <&gpio4 RK_PD4 GPIO_ACTIVE_HIGH>;
diff --git a/arch/arm64/boot/dts/rockchip/rk3588-orangepi-5-max.dts b/arch/arm64/boot/dts/rockchip/rk3588-orangepi-5-max.dts
index 26421ca7843b..be8cc96b5308 100644
--- a/arch/arm64/boot/dts/rockchip/rk3588-orangepi-5-max.dts
+++ b/arch/arm64/boot/dts/rockchip/rk3588-orangepi-5-max.dts
@@ -77,6 +77,14 @@ &hdptxphy1 {
status = "okay";
};
+&led_blue_pwm {
+ pwms = <&pwm4 0 25000 0>;
+};
+
+&led_green_pwm {
+ pwms = <&pwm5 0 25000 0>;
+};
+
&pinctrl {
usb {
--
2.48.1
^ permalink raw reply related [flat|nested] 11+ messages in thread* [PATCH v7 2/5] dt-bindings: arm: rockchip: Add Xunlong Orange Pi 5 Ultra
2025-02-22 19:33 [PATCH v7 0/5] Orange Pi 5 Ultra Jimmy Hon
2025-02-22 19:33 ` [PATCH v7 1/5] arm64: dts: rockchip: Differences in Orange Pi 5 Max Jimmy Hon
@ 2025-02-22 19:33 ` Jimmy Hon
2025-02-22 19:33 ` [PATCH v7 3/5] arm64: dts: rockchip: Add Orange Pi 5 Ultra board Jimmy Hon
` (3 subsequent siblings)
5 siblings, 0 replies; 11+ messages in thread
From: Jimmy Hon @ 2025-02-22 19:33 UTC (permalink / raw)
To: Heiko Stuebner, Johannes Erdfelt
Cc: Rob Herring, Krzysztof Kozlowski, Conor Dooley, devicetree,
linux-arm-kernel, linux-rockchip, Jimmy Hon
Add devicetree binding for the Xunlong Orange Pi 5 Ultra board.
The Orange Pi 5 Ultra is a single board computer powered by the Rockchip
RK3588 with similar board layout as the 5 Max but with the HDMI0 swapped
for HDMI IN.
Signed-off-by: Jimmy Hon <honyuenkwun@gmail.com>
Reviewed-by: Rob Herring (Arm) <robh@kernel.org>
---
Documentation/devicetree/bindings/arm/rockchip.yaml | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/Documentation/devicetree/bindings/arm/rockchip.yaml b/Documentation/devicetree/bindings/arm/rockchip.yaml
index 23293344d8eb..c9914725264a 100644
--- a/Documentation/devicetree/bindings/arm/rockchip.yaml
+++ b/Documentation/devicetree/bindings/arm/rockchip.yaml
@@ -1141,11 +1141,12 @@ properties:
- const: xunlong,orangepi-3b
- const: rockchip,rk3566
- - description: Xunlong Orange Pi 5 Max/Plus
+ - description: Xunlong Orange Pi 5 Max/Plus/Ultra
items:
- enum:
- xunlong,orangepi-5-max
- xunlong,orangepi-5-plus
+ - xunlong,orangepi-5-ultra
- const: rockchip,rk3588
- description: Xunlong Orange Pi R1 Plus / LTS
--
2.48.1
^ permalink raw reply related [flat|nested] 11+ messages in thread* [PATCH v7 3/5] arm64: dts: rockchip: Add Orange Pi 5 Ultra board
2025-02-22 19:33 [PATCH v7 0/5] Orange Pi 5 Ultra Jimmy Hon
2025-02-22 19:33 ` [PATCH v7 1/5] arm64: dts: rockchip: Differences in Orange Pi 5 Max Jimmy Hon
2025-02-22 19:33 ` [PATCH v7 2/5] dt-bindings: arm: rockchip: Add Xunlong Orange Pi 5 Ultra Jimmy Hon
@ 2025-02-22 19:33 ` Jimmy Hon
2025-02-22 23:06 ` Johannes Erdfelt
2025-02-22 19:33 ` [PATCH v7 4/5] arm64: dts: rockchip: Enable HDMI1 on Orange Pi 5 Ultra Jimmy Hon
` (2 subsequent siblings)
5 siblings, 1 reply; 11+ messages in thread
From: Jimmy Hon @ 2025-02-22 19:33 UTC (permalink / raw)
To: Heiko Stuebner, Johannes Erdfelt
Cc: Rob Herring, Krzysztof Kozlowski, Conor Dooley, devicetree,
linux-arm-kernel, linux-rockchip, Jimmy Hon
The RK3588 Single Board Computer includes
- eMMC
- microSD
- UART
- 2 PWM LEDs
- RTC
- RTL8125 network controller on PCIe 2.0x1.
- M.2 M-key connector routed to PCIe 3.0x4
- PWM controlled heat sink fan.
- 2 USB2 ports
- lower USB3 port
- upper USB3 port with OTG capability
- Mali GPU
- SPI NOR flash
- Mask Rom button
- Analog audio using es8388 codec via the headset jack and onboard mic
- HDMI1
- HDMI IN
the vcc5v0_usb30 regulator shares the same enable gpio pin as the
vcc5v0_usb20 regulator.
The Orange Pi 5 Ultra is a single board computer powered by the Rockchip
RK3588 with similar board layout as the 5 Max but with the HDMI0 swapped
for HDMI IN.
Signed-off-by: Jimmy Hon <honyuenkwun@gmail.com>
---
arch/arm64/boot/dts/rockchip/Makefile | 1 +
.../dts/rockchip/rk3588-orangepi-5-ultra.dts | 34 +++++++++++++++++++
2 files changed, 35 insertions(+)
create mode 100644 arch/arm64/boot/dts/rockchip/rk3588-orangepi-5-ultra.dts
diff --git a/arch/arm64/boot/dts/rockchip/Makefile b/arch/arm64/boot/dts/rockchip/Makefile
index 57c5c013cc08..d068b9018cf4 100644
--- a/arch/arm64/boot/dts/rockchip/Makefile
+++ b/arch/arm64/boot/dts/rockchip/Makefile
@@ -151,6 +151,7 @@ dtb-$(CONFIG_ARCH_ROCKCHIP) += rk3588-nanopc-t6-lts.dtb
dtb-$(CONFIG_ARCH_ROCKCHIP) += rk3588-ok3588-c.dtb
dtb-$(CONFIG_ARCH_ROCKCHIP) += rk3588-orangepi-5-max.dtb
dtb-$(CONFIG_ARCH_ROCKCHIP) += rk3588-orangepi-5-plus.dtb
+dtb-$(CONFIG_ARCH_ROCKCHIP) += rk3588-orangepi-5-ultra.dtb
dtb-$(CONFIG_ARCH_ROCKCHIP) += rk3588-quartzpro64.dtb
dtb-$(CONFIG_ARCH_ROCKCHIP) += rk3588-rock-5-itx.dtb
dtb-$(CONFIG_ARCH_ROCKCHIP) += rk3588-rock-5b.dtb
diff --git a/arch/arm64/boot/dts/rockchip/rk3588-orangepi-5-ultra.dts b/arch/arm64/boot/dts/rockchip/rk3588-orangepi-5-ultra.dts
new file mode 100644
index 000000000000..06800733d11e
--- /dev/null
+++ b/arch/arm64/boot/dts/rockchip/rk3588-orangepi-5-ultra.dts
@@ -0,0 +1,34 @@
+// SPDX-License-Identifier: (GPL-2.0+ OR MIT)
+
+/dts-v1/;
+
+#include <dt-bindings/gpio/gpio.h>
+#include <dt-bindings/pinctrl/rockchip.h>
+#include <dt-bindings/pwm/pwm.h>
+#include "rk3588-orangepi-5-compact.dtsi"
+
+/ {
+ model = "Xunlong Orange Pi 5 Ultra";
+ compatible = "xunlong,orangepi-5-ultra", "rockchip,rk3588";
+};
+
+&led_blue_pwm {
+ pwms = <&pwm4 0 25000 PWM_POLARITY_INVERTED>;
+};
+
+&led_green_pwm {
+ pwms = <&pwm5 0 25000 PWM_POLARITY_INVERTED>;
+};
+
+&pinctrl {
+
+ usb {
+ usb_otg_pwren: usb-otg-pwren {
+ rockchip,pins = <4 RK_PB1 RK_FUNC_GPIO &pcfg_pull_none>;
+ };
+ };
+};
+
+&vcc5v0_usb30_otg {
+ gpios = <&gpio4 RK_PB1 GPIO_ACTIVE_HIGH>;
+};
--
2.48.1
^ permalink raw reply related [flat|nested] 11+ messages in thread* Re: [PATCH v7 3/5] arm64: dts: rockchip: Add Orange Pi 5 Ultra board
2025-02-22 19:33 ` [PATCH v7 3/5] arm64: dts: rockchip: Add Orange Pi 5 Ultra board Jimmy Hon
@ 2025-02-22 23:06 ` Johannes Erdfelt
0 siblings, 0 replies; 11+ messages in thread
From: Johannes Erdfelt @ 2025-02-22 23:06 UTC (permalink / raw)
To: Jimmy Hon
Cc: Heiko Stuebner, Rob Herring, Krzysztof Kozlowski, Conor Dooley,
devicetree, linux-arm-kernel, linux-rockchip
On Sat, Feb 22, 2025, Jimmy Hon <honyuenkwun@gmail.com> wrote:
> The RK3588 Single Board Computer includes
> - eMMC
> - microSD
> - UART
> - 2 PWM LEDs
> - RTC
> - RTL8125 network controller on PCIe 2.0x1.
> - M.2 M-key connector routed to PCIe 3.0x4
> - PWM controlled heat sink fan.
> - 2 USB2 ports
> - lower USB3 port
> - upper USB3 port with OTG capability
> - Mali GPU
> - SPI NOR flash
> - Mask Rom button
> - Analog audio using es8388 codec via the headset jack and onboard mic
> - HDMI1
> - HDMI IN
>
> the vcc5v0_usb30 regulator shares the same enable gpio pin as the
> vcc5v0_usb20 regulator.
>
> The Orange Pi 5 Ultra is a single board computer powered by the Rockchip
> RK3588 with similar board layout as the 5 Max but with the HDMI0 swapped
> for HDMI IN.
>
> Signed-off-by: Jimmy Hon <honyuenkwun@gmail.com>
> ---
> arch/arm64/boot/dts/rockchip/Makefile | 1 +
> .../dts/rockchip/rk3588-orangepi-5-ultra.dts | 34 +++++++++++++++++++
Tested-By: Johannes Erdfelt <johannes@erdfelt.com>
JE
^ permalink raw reply [flat|nested] 11+ messages in thread
* [PATCH v7 4/5] arm64: dts: rockchip: Enable HDMI1 on Orange Pi 5 Ultra
2025-02-22 19:33 [PATCH v7 0/5] Orange Pi 5 Ultra Jimmy Hon
` (2 preceding siblings ...)
2025-02-22 19:33 ` [PATCH v7 3/5] arm64: dts: rockchip: Add Orange Pi 5 Ultra board Jimmy Hon
@ 2025-02-22 19:33 ` Jimmy Hon
2025-02-22 21:18 ` Johannes Erdfelt
2025-02-22 23:07 ` Johannes Erdfelt
2025-02-22 19:33 ` [PATCH v7 5/5] arm64: dts: rockchip: Enable HDMI1 audio output for " Jimmy Hon
2025-02-27 13:37 ` [PATCH v7 0/5] " Heiko Stuebner
5 siblings, 2 replies; 11+ messages in thread
From: Jimmy Hon @ 2025-02-22 19:33 UTC (permalink / raw)
To: Heiko Stuebner, Johannes Erdfelt
Cc: Rob Herring, Krzysztof Kozlowski, Conor Dooley, devicetree,
linux-arm-kernel, linux-rockchip, Jimmy Hon
Enable the only HDMI output port on the Orange Pi 5 Ultra
Signed-off-by: Jimmy Hon <honyuenkwun@gmail.com>
---
.../dts/rockchip/rk3588-orangepi-5-ultra.dts | 42 +++++++++++++++++++
1 file changed, 42 insertions(+)
diff --git a/arch/arm64/boot/dts/rockchip/rk3588-orangepi-5-ultra.dts b/arch/arm64/boot/dts/rockchip/rk3588-orangepi-5-ultra.dts
index 06800733d11e..a4db0839bcfd 100644
--- a/arch/arm64/boot/dts/rockchip/rk3588-orangepi-5-ultra.dts
+++ b/arch/arm64/boot/dts/rockchip/rk3588-orangepi-5-ultra.dts
@@ -5,11 +5,46 @@
#include <dt-bindings/gpio/gpio.h>
#include <dt-bindings/pinctrl/rockchip.h>
#include <dt-bindings/pwm/pwm.h>
+#include <dt-bindings/soc/rockchip,vop2.h>
#include "rk3588-orangepi-5-compact.dtsi"
/ {
model = "Xunlong Orange Pi 5 Ultra";
compatible = "xunlong,orangepi-5-ultra", "rockchip,rk3588";
+
+ hdmi1-con {
+ compatible = "hdmi-connector";
+ type = "a";
+
+ port {
+ hdmi1_con_in: endpoint {
+ remote-endpoint = <&hdmi1_out_con>;
+ };
+ };
+ };
+};
+
+&hdmi1 {
+ pinctrl-names = "default";
+ pinctrl-0 = <&hdmim0_tx1_cec &hdmim0_tx1_hpd
+ &hdmim1_tx1_scl &hdmim1_tx1_sda>;
+ status = "okay";
+};
+
+&hdmi1_in {
+ hdmi1_in_vp0: endpoint {
+ remote-endpoint = <&vp0_out_hdmi1>;
+ };
+};
+
+&hdmi1_out {
+ hdmi1_out_con: endpoint {
+ remote-endpoint = <&hdmi1_con_in>;
+ };
+};
+
+&hdptxphy1 {
+ status = "okay";
};
&led_blue_pwm {
@@ -32,3 +67,10 @@ usb_otg_pwren: usb-otg-pwren {
&vcc5v0_usb30_otg {
gpios = <&gpio4 RK_PB1 GPIO_ACTIVE_HIGH>;
};
+
+&vp0 {
+ vp0_out_hdmi1: endpoint@ROCKCHIP_VOP2_EP_HDMI1 {
+ reg = <ROCKCHIP_VOP2_EP_HDMI1>;
+ remote-endpoint = <&hdmi1_in_vp0>;
+ };
+};
--
2.48.1
^ permalink raw reply related [flat|nested] 11+ messages in thread* Re: [PATCH v7 4/5] arm64: dts: rockchip: Enable HDMI1 on Orange Pi 5 Ultra
2025-02-22 19:33 ` [PATCH v7 4/5] arm64: dts: rockchip: Enable HDMI1 on Orange Pi 5 Ultra Jimmy Hon
@ 2025-02-22 21:18 ` Johannes Erdfelt
2025-02-22 22:36 ` Jimmy Hon
2025-02-22 23:07 ` Johannes Erdfelt
1 sibling, 1 reply; 11+ messages in thread
From: Johannes Erdfelt @ 2025-02-22 21:18 UTC (permalink / raw)
To: Jimmy Hon
Cc: Heiko Stuebner, Rob Herring, Krzysztof Kozlowski, Conor Dooley,
devicetree, linux-arm-kernel, linux-rockchip
On Sat, Feb 22, 2025, Jimmy Hon <honyuenkwun@gmail.com> wrote:
> Enable the only HDMI output port on the Orange Pi 5 Ultra
>
> Signed-off-by: Jimmy Hon <honyuenkwun@gmail.com>
> ---
> .../dts/rockchip/rk3588-orangepi-5-ultra.dts | 42 +++++++++++++++++++
> 1 file changed, 42 insertions(+)
I've tested this patchset up to this patch. I unfortunately don't have a
way to test audio on the HDMI port currently.
All of the issues I had previously are fixed in this patchset.
Thanks for the work in putting this together, especially without access
to hardware.
JE
^ permalink raw reply [flat|nested] 11+ messages in thread
* Re: [PATCH v7 4/5] arm64: dts: rockchip: Enable HDMI1 on Orange Pi 5 Ultra
2025-02-22 21:18 ` Johannes Erdfelt
@ 2025-02-22 22:36 ` Jimmy Hon
0 siblings, 0 replies; 11+ messages in thread
From: Jimmy Hon @ 2025-02-22 22:36 UTC (permalink / raw)
To: Johannes Erdfelt
Cc: Heiko Stuebner, Rob Herring, Krzysztof Kozlowski, Conor Dooley,
devicetree, linux-arm-kernel, linux-rockchip
On Sat, Feb 22, 2025 at 3:18 PM Johannes Erdfelt <johannes@erdfelt.com> wrote:
>
> I've tested this patchset up to this patch. I unfortunately don't have a
> way to test audio on the HDMI port currently.
>
> All of the issues I had previously are fixed in this patchset.
Thanks for the verification. Will you be sending your Tested-By: for
patch 3 and 4 then?
Jimmy
>
> Thanks for the work in putting this together, especially without access
> to hardware.
>
> JE
>
^ permalink raw reply [flat|nested] 11+ messages in thread
* Re: [PATCH v7 4/5] arm64: dts: rockchip: Enable HDMI1 on Orange Pi 5 Ultra
2025-02-22 19:33 ` [PATCH v7 4/5] arm64: dts: rockchip: Enable HDMI1 on Orange Pi 5 Ultra Jimmy Hon
2025-02-22 21:18 ` Johannes Erdfelt
@ 2025-02-22 23:07 ` Johannes Erdfelt
1 sibling, 0 replies; 11+ messages in thread
From: Johannes Erdfelt @ 2025-02-22 23:07 UTC (permalink / raw)
To: Jimmy Hon
Cc: Heiko Stuebner, Rob Herring, Krzysztof Kozlowski, Conor Dooley,
devicetree, linux-arm-kernel, linux-rockchip
On Sat, Feb 22, 2025, Jimmy Hon <honyuenkwun@gmail.com> wrote:
> Enable the only HDMI output port on the Orange Pi 5 Ultra
>
> Signed-off-by: Jimmy Hon <honyuenkwun@gmail.com>
> ---
> .../dts/rockchip/rk3588-orangepi-5-ultra.dts | 42 +++++++++++++++++++
> 1 file changed, 42 insertions(+)
Tested-By: Johannes Erdfelt <johannes@erdfelt.com>
JE
^ permalink raw reply [flat|nested] 11+ messages in thread
* [PATCH v7 5/5] arm64: dts: rockchip: Enable HDMI1 audio output for Orange Pi 5 Ultra
2025-02-22 19:33 [PATCH v7 0/5] Orange Pi 5 Ultra Jimmy Hon
` (3 preceding siblings ...)
2025-02-22 19:33 ` [PATCH v7 4/5] arm64: dts: rockchip: Enable HDMI1 on Orange Pi 5 Ultra Jimmy Hon
@ 2025-02-22 19:33 ` Jimmy Hon
2025-02-27 13:37 ` [PATCH v7 0/5] " Heiko Stuebner
5 siblings, 0 replies; 11+ messages in thread
From: Jimmy Hon @ 2025-02-22 19:33 UTC (permalink / raw)
To: Heiko Stuebner, Johannes Erdfelt
Cc: Rob Herring, Krzysztof Kozlowski, Conor Dooley, devicetree,
linux-arm-kernel, linux-rockchip, Jimmy Hon
HDMI audio is available on the Orange Pi 5 Ultra HDMI1 TX port.
Signed-off-by: Jimmy Hon <honyuenkwun@gmail.com>
---
arch/arm64/boot/dts/rockchip/rk3588-orangepi-5-ultra.dts | 8 ++++++++
1 file changed, 8 insertions(+)
diff --git a/arch/arm64/boot/dts/rockchip/rk3588-orangepi-5-ultra.dts b/arch/arm64/boot/dts/rockchip/rk3588-orangepi-5-ultra.dts
index a4db0839bcfd..6de351dff1ba 100644
--- a/arch/arm64/boot/dts/rockchip/rk3588-orangepi-5-ultra.dts
+++ b/arch/arm64/boot/dts/rockchip/rk3588-orangepi-5-ultra.dts
@@ -43,10 +43,18 @@ hdmi1_out_con: endpoint {
};
};
+&hdmi1_sound {
+ status = "okay";
+};
+
&hdptxphy1 {
status = "okay";
};
+&i2s6_8ch {
+ status = "okay";
+};
+
&led_blue_pwm {
pwms = <&pwm4 0 25000 PWM_POLARITY_INVERTED>;
};
--
2.48.1
^ permalink raw reply related [flat|nested] 11+ messages in thread* Re: [PATCH v7 0/5] Orange Pi 5 Ultra
2025-02-22 19:33 [PATCH v7 0/5] Orange Pi 5 Ultra Jimmy Hon
` (4 preceding siblings ...)
2025-02-22 19:33 ` [PATCH v7 5/5] arm64: dts: rockchip: Enable HDMI1 audio output for " Jimmy Hon
@ 2025-02-27 13:37 ` Heiko Stuebner
5 siblings, 0 replies; 11+ messages in thread
From: Heiko Stuebner @ 2025-02-27 13:37 UTC (permalink / raw)
To: Johannes Erdfelt, Jimmy Hon
Cc: Heiko Stuebner, Rob Herring, Krzysztof Kozlowski, Conor Dooley,
devicetree, linux-arm-kernel, linux-rockchip
On Sat, 22 Feb 2025 13:33:27 -0600, Jimmy Hon wrote:
> Add device-tree for Orange Pi 5 Ultra
>
> Thanks to Johannes for testing
>
> The schematic has been published for the Orange 5 Ultra. [1]
>
> It's a sibling of the Orange Pi 5 Max [2] with the HDMI0 switched out
> for the HDMI RX. As a side affect the pin for USB_OTG_PWREN [3][4] has
> changed.
>
> [...]
Applied, thanks!
[1/5] arm64: dts: rockchip: Differences in Orange Pi 5 Max
commit: 6864a176140a03cfc108a27b869814140a022053
[2/5] dt-bindings: arm: rockchip: Add Xunlong Orange Pi 5 Ultra
commit: f36f2ae1fede87ca6223b5bda33835bd931324ce
[3/5] arm64: dts: rockchip: Add Orange Pi 5 Ultra board
commit: 3df28b6fda8f245dc725af78780f75d5f1bc079c
[4/5] arm64: dts: rockchip: Enable HDMI1 on Orange Pi 5 Ultra
commit: efdc4018f3c98967e0145f790329a8934f936a7e
[5/5] arm64: dts: rockchip: Enable HDMI1 audio output for Orange Pi 5 Ultra
commit: 254324dbe364fb058279486767fa82cd2456595d
Best regards,
--
Heiko Stuebner <heiko@sntech.de>
^ permalink raw reply [flat|nested] 11+ messages in thread