Skip to content

Commit 955b263

Browse files
windowsairmmind
authored andcommitted
arm64: dts: rockchip: Fix wrong register range of rk3576 gpu
According to RK3576 TRM part1 Table 1-1 Address Mapping, the size of the GPU registers is 128 KB. The current mapping incorrectly includes the addresses of multiple following IP like the eInk interface at 0x27900000. This has not been detected by the DT tooling as none of the extra mapped IP is described in the upstream RK3576 DT so far. Fixes: 57b1ce9 ("arm64: dts: rockchip: Add rk3576 SoC base DT") Signed-off-by: Chaoyi Chen <chaoyi.chen@rock-chips.com> Reviewed-by: Nicolas Frattaroli <nicolas.frattaroli@collabora.com> Reviewed-by: Sebastian Reichel <sebastian.reichel@collabora.com> Link: https://patch.msgid.link/20260106071513.209-1-kernel@airkyi.com Signed-off-by: Heiko Stuebner <heiko@sntech.de>
1 parent 3e4a818 commit 955b263

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1261,7 +1261,7 @@
12611261

12621262
gpu: gpu@27800000 {
12631263
compatible = "rockchip,rk3576-mali", "arm,mali-bifrost";
1264-
reg = <0x0 0x27800000 0x0 0x200000>;
1264+
reg = <0x0 0x27800000 0x0 0x20000>;
12651265
assigned-clocks = <&scmi_clk SCMI_CLK_GPU>;
12661266
assigned-clock-rates = <198000000>;
12671267
clocks = <&cru CLK_GPU>;

0 commit comments

Comments
 (0)