385 lines
10 KiB
Diff
385 lines
10 KiB
Diff
From cbb97fe18e299ece1c0074924c630de6a19b320f Mon Sep 17 00:00:00 2001
|
|
From: Diederik de Haas <didi.debian@cknow.org>
|
|
Date: Sat, 6 Apr 2024 19:28:04 +0200
|
|
Subject: [PATCH] arm64: dts: rockchip: Fix ordering of nodes on rk3588s
|
|
|
|
Fix the ordering of the main nodes by sorting them alphabetically and
|
|
then the ones with a memory address sequentially by that address.
|
|
|
|
Signed-off-by: Diederik de Haas <didi.debian@cknow.org>
|
|
Link: https://lore.kernel.org/r/20240406172821.34173-1-didi.debian@cknow.org
|
|
Signed-off-by: Heiko Stuebner <heiko@sntech.de>
|
|
---
|
|
arch/arm64/boot/dts/rockchip/rk3588s.dtsi | 304 +++++++++++-----------
|
|
1 file changed, 152 insertions(+), 152 deletions(-)
|
|
|
|
--- a/arch/arm64/boot/dts/rockchip/rk3588s.dtsi
|
|
+++ b/arch/arm64/boot/dts/rockchip/rk3588s.dtsi
|
|
@@ -347,6 +347,11 @@
|
|
};
|
|
};
|
|
|
|
+ display_subsystem: display-subsystem {
|
|
+ compatible = "rockchip,display-subsystem";
|
|
+ ports = <&vop_out>;
|
|
+ };
|
|
+
|
|
firmware {
|
|
optee: optee {
|
|
compatible = "linaro,optee-tz";
|
|
@@ -394,11 +399,6 @@
|
|
#clock-cells = <0>;
|
|
};
|
|
|
|
- display_subsystem: display-subsystem {
|
|
- compatible = "rockchip,display-subsystem";
|
|
- ports = <&vop_out>;
|
|
- };
|
|
-
|
|
timer {
|
|
compatible = "arm,armv8-timer";
|
|
interrupts = <GIC_PPI 13 IRQ_TYPE_LEVEL_HIGH 0>,
|
|
@@ -436,6 +436,62 @@
|
|
};
|
|
};
|
|
|
|
+ gpu: gpu@fb000000 {
|
|
+ compatible = "rockchip,rk3588-mali", "arm,mali-valhall-csf";
|
|
+ reg = <0x0 0xfb000000 0x0 0x200000>;
|
|
+ #cooling-cells = <2>;
|
|
+ assigned-clocks = <&scmi_clk SCMI_CLK_GPU>;
|
|
+ assigned-clock-rates = <200000000>;
|
|
+ clocks = <&cru CLK_GPU>, <&cru CLK_GPU_COREGROUP>,
|
|
+ <&cru CLK_GPU_STACKS>;
|
|
+ clock-names = "core", "coregroup", "stacks";
|
|
+ dynamic-power-coefficient = <2982>;
|
|
+ interrupts = <GIC_SPI 92 IRQ_TYPE_LEVEL_HIGH 0>,
|
|
+ <GIC_SPI 93 IRQ_TYPE_LEVEL_HIGH 0>,
|
|
+ <GIC_SPI 94 IRQ_TYPE_LEVEL_HIGH 0>;
|
|
+ interrupt-names = "job", "mmu", "gpu";
|
|
+ operating-points-v2 = <&gpu_opp_table>;
|
|
+ power-domains = <&power RK3588_PD_GPU>;
|
|
+ status = "disabled";
|
|
+
|
|
+ gpu_opp_table: opp-table {
|
|
+ compatible = "operating-points-v2";
|
|
+
|
|
+ opp-300000000 {
|
|
+ opp-hz = /bits/ 64 <300000000>;
|
|
+ opp-microvolt = <675000 675000 850000>;
|
|
+ };
|
|
+ opp-400000000 {
|
|
+ opp-hz = /bits/ 64 <400000000>;
|
|
+ opp-microvolt = <675000 675000 850000>;
|
|
+ };
|
|
+ opp-500000000 {
|
|
+ opp-hz = /bits/ 64 <500000000>;
|
|
+ opp-microvolt = <675000 675000 850000>;
|
|
+ };
|
|
+ opp-600000000 {
|
|
+ opp-hz = /bits/ 64 <600000000>;
|
|
+ opp-microvolt = <675000 675000 850000>;
|
|
+ };
|
|
+ opp-700000000 {
|
|
+ opp-hz = /bits/ 64 <700000000>;
|
|
+ opp-microvolt = <700000 700000 850000>;
|
|
+ };
|
|
+ opp-800000000 {
|
|
+ opp-hz = /bits/ 64 <800000000>;
|
|
+ opp-microvolt = <750000 750000 850000>;
|
|
+ };
|
|
+ opp-900000000 {
|
|
+ opp-hz = /bits/ 64 <900000000>;
|
|
+ opp-microvolt = <800000 800000 850000>;
|
|
+ };
|
|
+ opp-1000000000 {
|
|
+ opp-hz = /bits/ 64 <1000000000>;
|
|
+ opp-microvolt = <850000 850000 850000>;
|
|
+ };
|
|
+ };
|
|
+ };
|
|
+
|
|
usb_host0_ehci: usb@fc800000 {
|
|
compatible = "rockchip,rk3588-ehci", "generic-ehci";
|
|
reg = <0x0 0xfc800000 0x0 0x40000>;
|
|
@@ -501,62 +557,6 @@
|
|
status = "disabled";
|
|
};
|
|
|
|
- gpu: gpu@fb000000 {
|
|
- compatible = "rockchip,rk3588-mali", "arm,mali-valhall-csf";
|
|
- reg = <0x0 0xfb000000 0x0 0x200000>;
|
|
- #cooling-cells = <2>;
|
|
- assigned-clocks = <&scmi_clk SCMI_CLK_GPU>;
|
|
- assigned-clock-rates = <200000000>;
|
|
- clocks = <&cru CLK_GPU>, <&cru CLK_GPU_COREGROUP>,
|
|
- <&cru CLK_GPU_STACKS>;
|
|
- clock-names = "core", "coregroup", "stacks";
|
|
- dynamic-power-coefficient = <2982>;
|
|
- interrupts = <GIC_SPI 92 IRQ_TYPE_LEVEL_HIGH 0>,
|
|
- <GIC_SPI 93 IRQ_TYPE_LEVEL_HIGH 0>,
|
|
- <GIC_SPI 94 IRQ_TYPE_LEVEL_HIGH 0>;
|
|
- interrupt-names = "job", "mmu", "gpu";
|
|
- operating-points-v2 = <&gpu_opp_table>;
|
|
- power-domains = <&power RK3588_PD_GPU>;
|
|
- status = "disabled";
|
|
-
|
|
- gpu_opp_table: opp-table {
|
|
- compatible = "operating-points-v2";
|
|
-
|
|
- opp-300000000 {
|
|
- opp-hz = /bits/ 64 <300000000>;
|
|
- opp-microvolt = <675000 675000 850000>;
|
|
- };
|
|
- opp-400000000 {
|
|
- opp-hz = /bits/ 64 <400000000>;
|
|
- opp-microvolt = <675000 675000 850000>;
|
|
- };
|
|
- opp-500000000 {
|
|
- opp-hz = /bits/ 64 <500000000>;
|
|
- opp-microvolt = <675000 675000 850000>;
|
|
- };
|
|
- opp-600000000 {
|
|
- opp-hz = /bits/ 64 <600000000>;
|
|
- opp-microvolt = <675000 675000 850000>;
|
|
- };
|
|
- opp-700000000 {
|
|
- opp-hz = /bits/ 64 <700000000>;
|
|
- opp-microvolt = <700000 700000 850000>;
|
|
- };
|
|
- opp-800000000 {
|
|
- opp-hz = /bits/ 64 <800000000>;
|
|
- opp-microvolt = <750000 750000 850000>;
|
|
- };
|
|
- opp-900000000 {
|
|
- opp-hz = /bits/ 64 <900000000>;
|
|
- opp-microvolt = <800000 800000 850000>;
|
|
- };
|
|
- opp-1000000000 {
|
|
- opp-hz = /bits/ 64 <1000000000>;
|
|
- opp-microvolt = <850000 850000 850000>;
|
|
- };
|
|
- };
|
|
- };
|
|
-
|
|
pmu1grf: syscon@fd58a000 {
|
|
compatible = "rockchip,rk3588-pmugrf", "syscon", "simple-mfd";
|
|
reg = <0x0 0xfd58a000 0x0 0x10000>;
|
|
@@ -702,74 +702,6 @@
|
|
status = "disabled";
|
|
};
|
|
|
|
- vop: vop@fdd90000 {
|
|
- compatible = "rockchip,rk3588-vop";
|
|
- reg = <0x0 0xfdd90000 0x0 0x4200>, <0x0 0xfdd95000 0x0 0x1000>;
|
|
- reg-names = "vop", "gamma-lut";
|
|
- interrupts = <GIC_SPI 156 IRQ_TYPE_LEVEL_HIGH 0>;
|
|
- clocks = <&cru ACLK_VOP>,
|
|
- <&cru HCLK_VOP>,
|
|
- <&cru DCLK_VOP0>,
|
|
- <&cru DCLK_VOP1>,
|
|
- <&cru DCLK_VOP2>,
|
|
- <&cru DCLK_VOP3>,
|
|
- <&cru PCLK_VOP_ROOT>;
|
|
- clock-names = "aclk",
|
|
- "hclk",
|
|
- "dclk_vp0",
|
|
- "dclk_vp1",
|
|
- "dclk_vp2",
|
|
- "dclk_vp3",
|
|
- "pclk_vop";
|
|
- iommus = <&vop_mmu>;
|
|
- power-domains = <&power RK3588_PD_VOP>;
|
|
- rockchip,grf = <&sys_grf>;
|
|
- rockchip,vop-grf = <&vop_grf>;
|
|
- rockchip,vo1-grf = <&vo1_grf>;
|
|
- rockchip,pmu = <&pmu>;
|
|
- status = "disabled";
|
|
-
|
|
- vop_out: ports {
|
|
- #address-cells = <1>;
|
|
- #size-cells = <0>;
|
|
-
|
|
- vp0: port@0 {
|
|
- #address-cells = <1>;
|
|
- #size-cells = <0>;
|
|
- reg = <0>;
|
|
- };
|
|
-
|
|
- vp1: port@1 {
|
|
- #address-cells = <1>;
|
|
- #size-cells = <0>;
|
|
- reg = <1>;
|
|
- };
|
|
-
|
|
- vp2: port@2 {
|
|
- #address-cells = <1>;
|
|
- #size-cells = <0>;
|
|
- reg = <2>;
|
|
- };
|
|
-
|
|
- vp3: port@3 {
|
|
- #address-cells = <1>;
|
|
- #size-cells = <0>;
|
|
- reg = <3>;
|
|
- };
|
|
- };
|
|
- };
|
|
-
|
|
- vop_mmu: iommu@fdd97e00 {
|
|
- compatible = "rockchip,rk3588-iommu", "rockchip,rk3568-iommu";
|
|
- reg = <0x0 0xfdd97e00 0x0 0x100>, <0x0 0xfdd97f00 0x0 0x100>;
|
|
- interrupts = <GIC_SPI 156 IRQ_TYPE_LEVEL_HIGH 0>;
|
|
- clocks = <&cru ACLK_VOP>, <&cru HCLK_VOP>;
|
|
- clock-names = "aclk", "iface";
|
|
- #iommu-cells = <0>;
|
|
- power-domains = <&power RK3588_PD_VOP>;
|
|
- status = "disabled";
|
|
- };
|
|
-
|
|
uart0: serial@fd890000 {
|
|
compatible = "rockchip,rk3588-uart", "snps,dw-apb-uart";
|
|
reg = <0x0 0xfd890000 0x0 0x100>;
|
|
@@ -1140,6 +1072,87 @@
|
|
};
|
|
};
|
|
|
|
+ av1d: video-codec@fdc70000 {
|
|
+ compatible = "rockchip,rk3588-av1-vpu";
|
|
+ reg = <0x0 0xfdc70000 0x0 0x800>;
|
|
+ interrupts = <GIC_SPI 108 IRQ_TYPE_LEVEL_HIGH 0>;
|
|
+ interrupt-names = "vdpu";
|
|
+ assigned-clocks = <&cru ACLK_AV1>, <&cru PCLK_AV1>;
|
|
+ assigned-clock-rates = <400000000>, <400000000>;
|
|
+ clocks = <&cru ACLK_AV1>, <&cru PCLK_AV1>;
|
|
+ clock-names = "aclk", "hclk";
|
|
+ power-domains = <&power RK3588_PD_AV1>;
|
|
+ resets = <&cru SRST_A_AV1>, <&cru SRST_P_AV1>, <&cru SRST_A_AV1_BIU>, <&cru SRST_P_AV1_BIU>;
|
|
+ };
|
|
+
|
|
+ vop: vop@fdd90000 {
|
|
+ compatible = "rockchip,rk3588-vop";
|
|
+ reg = <0x0 0xfdd90000 0x0 0x4200>, <0x0 0xfdd95000 0x0 0x1000>;
|
|
+ reg-names = "vop", "gamma-lut";
|
|
+ interrupts = <GIC_SPI 156 IRQ_TYPE_LEVEL_HIGH 0>;
|
|
+ clocks = <&cru ACLK_VOP>,
|
|
+ <&cru HCLK_VOP>,
|
|
+ <&cru DCLK_VOP0>,
|
|
+ <&cru DCLK_VOP1>,
|
|
+ <&cru DCLK_VOP2>,
|
|
+ <&cru DCLK_VOP3>,
|
|
+ <&cru PCLK_VOP_ROOT>;
|
|
+ clock-names = "aclk",
|
|
+ "hclk",
|
|
+ "dclk_vp0",
|
|
+ "dclk_vp1",
|
|
+ "dclk_vp2",
|
|
+ "dclk_vp3",
|
|
+ "pclk_vop";
|
|
+ iommus = <&vop_mmu>;
|
|
+ power-domains = <&power RK3588_PD_VOP>;
|
|
+ rockchip,grf = <&sys_grf>;
|
|
+ rockchip,vop-grf = <&vop_grf>;
|
|
+ rockchip,vo1-grf = <&vo1_grf>;
|
|
+ rockchip,pmu = <&pmu>;
|
|
+ status = "disabled";
|
|
+
|
|
+ vop_out: ports {
|
|
+ #address-cells = <1>;
|
|
+ #size-cells = <0>;
|
|
+
|
|
+ vp0: port@0 {
|
|
+ #address-cells = <1>;
|
|
+ #size-cells = <0>;
|
|
+ reg = <0>;
|
|
+ };
|
|
+
|
|
+ vp1: port@1 {
|
|
+ #address-cells = <1>;
|
|
+ #size-cells = <0>;
|
|
+ reg = <1>;
|
|
+ };
|
|
+
|
|
+ vp2: port@2 {
|
|
+ #address-cells = <1>;
|
|
+ #size-cells = <0>;
|
|
+ reg = <2>;
|
|
+ };
|
|
+
|
|
+ vp3: port@3 {
|
|
+ #address-cells = <1>;
|
|
+ #size-cells = <0>;
|
|
+ reg = <3>;
|
|
+ };
|
|
+ };
|
|
+ };
|
|
+
|
|
+ vop_mmu: iommu@fdd97e00 {
|
|
+ compatible = "rockchip,rk3588-iommu", "rockchip,rk3568-iommu";
|
|
+ reg = <0x0 0xfdd97e00 0x0 0x100>, <0x0 0xfdd97f00 0x0 0x100>;
|
|
+ interrupts = <GIC_SPI 156 IRQ_TYPE_LEVEL_HIGH 0>;
|
|
+ clocks = <&cru ACLK_VOP>, <&cru HCLK_VOP>;
|
|
+ clock-names = "aclk", "iface";
|
|
+ #iommu-cells = <0>;
|
|
+ power-domains = <&power RK3588_PD_VOP>;
|
|
+ status = "disabled";
|
|
+ };
|
|
+
|
|
i2s4_8ch: i2s@fddc0000 {
|
|
compatible = "rockchip,rk3588-i2s-tdm";
|
|
reg = <0x0 0xfddc0000 0x0 0x1000>;
|
|
@@ -1431,6 +1444,16 @@
|
|
reg = <0x0 0xfdf82200 0x0 0x20>;
|
|
};
|
|
|
|
+ dfi: dfi@fe060000 {
|
|
+ reg = <0x00 0xfe060000 0x00 0x10000>;
|
|
+ compatible = "rockchip,rk3588-dfi";
|
|
+ interrupts = <GIC_SPI 28 IRQ_TYPE_LEVEL_HIGH 0>,
|
|
+ <GIC_SPI 38 IRQ_TYPE_LEVEL_HIGH 0>,
|
|
+ <GIC_SPI 48 IRQ_TYPE_LEVEL_HIGH 0>,
|
|
+ <GIC_SPI 58 IRQ_TYPE_LEVEL_HIGH 0>;
|
|
+ rockchip,pmu = <&pmu1grf>;
|
|
+ };
|
|
+
|
|
pcie2x1l1: pcie@fe180000 {
|
|
compatible = "rockchip,rk3588-pcie", "rockchip,rk3568-pcie";
|
|
bus-range = <0x30 0x3f>;
|
|
@@ -1533,16 +1556,6 @@
|
|
};
|
|
};
|
|
|
|
- dfi: dfi@fe060000 {
|
|
- reg = <0x00 0xfe060000 0x00 0x10000>;
|
|
- compatible = "rockchip,rk3588-dfi";
|
|
- interrupts = <GIC_SPI 28 IRQ_TYPE_LEVEL_HIGH 0>,
|
|
- <GIC_SPI 38 IRQ_TYPE_LEVEL_HIGH 0>,
|
|
- <GIC_SPI 48 IRQ_TYPE_LEVEL_HIGH 0>,
|
|
- <GIC_SPI 58 IRQ_TYPE_LEVEL_HIGH 0>;
|
|
- rockchip,pmu = <&pmu1grf>;
|
|
- };
|
|
-
|
|
gmac1: ethernet@fe1c0000 {
|
|
compatible = "rockchip,rk3588-gmac", "snps,dwmac-4.20a";
|
|
reg = <0x0 0xfe1c0000 0x0 0x10000>;
|
|
@@ -2543,19 +2556,6 @@
|
|
#interrupt-cells = <2>;
|
|
};
|
|
};
|
|
-
|
|
- av1d: video-codec@fdc70000 {
|
|
- compatible = "rockchip,rk3588-av1-vpu";
|
|
- reg = <0x0 0xfdc70000 0x0 0x800>;
|
|
- interrupts = <GIC_SPI 108 IRQ_TYPE_LEVEL_HIGH 0>;
|
|
- interrupt-names = "vdpu";
|
|
- assigned-clocks = <&cru ACLK_AV1>, <&cru PCLK_AV1>;
|
|
- assigned-clock-rates = <400000000>, <400000000>;
|
|
- clocks = <&cru ACLK_AV1>, <&cru PCLK_AV1>;
|
|
- clock-names = "aclk", "hclk";
|
|
- power-domains = <&power RK3588_PD_AV1>;
|
|
- resets = <&cru SRST_A_AV1>, <&cru SRST_P_AV1>, <&cru SRST_A_AV1_BIU>, <&cru SRST_P_AV1_BIU>;
|
|
- };
|
|
};
|
|
|
|
#include "rk3588s-pinctrl.dtsi"
|