Skip to content

Commit c604fd8

Browse files
Johan Jonkermmind
authored andcommitted
arm64: dts: rockchip: swap interrupts interrupt-names rk3399 gpu node
Dts files with Rockchip rk3399 'gpu' nodes were manually verified. In order to automate this process arm,mali-midgard.txt has been converted to yaml. In the new setup dtbs_check with arm,mali-midgard.yaml expects interrupts and interrupt-names values in the same order. Fix this for rk3399. make ARCH=arm64 dtbs_check DT_SCHEMA_FILES=Documentation/devicetree/bindings/gpu/ arm,mali-midgard.yaml Signed-off-by: Johan Jonker <[email protected]> Link: https://lore.kernel.org/r/[email protected] Signed-off-by: Heiko Stuebner <[email protected]>
1 parent c617ed8 commit c604fd8

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

arch/arm64/boot/dts/rockchip/rk3399.dtsi

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1881,10 +1881,10 @@
18811881
gpu: gpu@ff9a0000 {
18821882
compatible = "rockchip,rk3399-mali", "arm,mali-t860";
18831883
reg = <0x0 0xff9a0000 0x0 0x10000>;
1884-
interrupts = <GIC_SPI 19 IRQ_TYPE_LEVEL_HIGH 0>,
1885-
<GIC_SPI 20 IRQ_TYPE_LEVEL_HIGH 0>,
1886-
<GIC_SPI 21 IRQ_TYPE_LEVEL_HIGH 0>;
1887-
interrupt-names = "gpu", "job", "mmu";
1884+
interrupts = <GIC_SPI 20 IRQ_TYPE_LEVEL_HIGH 0>,
1885+
<GIC_SPI 21 IRQ_TYPE_LEVEL_HIGH 0>,
1886+
<GIC_SPI 19 IRQ_TYPE_LEVEL_HIGH 0>;
1887+
interrupt-names = "job", "mmu", "gpu";
18881888
clocks = <&cru ACLK_GPU>;
18891889
#cooling-cells = <2>;
18901890
power-domains = <&power RK3399_PD_GPU>;

0 commit comments

Comments
 (0)