Commit 1f794d3e authored by Adam Ford's avatar Adam Ford Committed by Shawn Guo
Browse files

arm64: dts: imx8mm: Reduce GPU to nominal speed



When the GPU nodes were added, the GPU_PLL_OUT was configured
for 1000MHz, but this requires the SoC to run in overdrive mode
which requires an elevated voltage operating point.

Since this may run some boards out of spec, the default clock
should be set to 800MHz for nominal operating mode. Boards
that run at the higher voltage can update their clocks
accordingly.

Fixes: 4523be8e ("arm64: dts: imx8mm: Add GPU nodes for 2D and 3D core")
Signed-off-by: default avatarAdam Ford <aford173@gmail.com>
Signed-off-by: default avatarShawn Guo <shawnguo@kernel.org>
parent 30ee6bf6
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -1404,7 +1404,7 @@ gpu_3d: gpu@38000000 {
			assigned-clocks = <&clk IMX8MM_CLK_GPU3D_CORE>,
					  <&clk IMX8MM_GPU_PLL_OUT>;
			assigned-clock-parents = <&clk IMX8MM_GPU_PLL_OUT>;
			assigned-clock-rates = <0>, <1000000000>;
			assigned-clock-rates = <0>, <800000000>;
			power-domains = <&pgc_gpu>;
		};

@@ -1419,7 +1419,7 @@ gpu_2d: gpu@38008000 {
			assigned-clocks = <&clk IMX8MM_CLK_GPU2D_CORE>,
					  <&clk IMX8MM_GPU_PLL_OUT>;
			assigned-clock-parents = <&clk IMX8MM_GPU_PLL_OUT>;
			assigned-clock-rates = <0>, <1000000000>;
			assigned-clock-rates = <0>, <800000000>;
			power-domains = <&pgc_gpu>;
		};