Skip to content

Commit 86842d2

Browse files
Marek Vasutabelvesa
authored andcommitted
clk: imx8mn: Add M7 core clock
Add missing M7 core clock entry to the iMX8MN clock driver. Signed-off-by: Marek Vasut <[email protected]> Reviewed-by: Abel Vesa <[email protected]> Reviewed-by: Fabio Estevam <[email protected]> Cc: Abel Vesa <[email protected]> Cc: Fabio Estevam <[email protected]> Cc: NXP Linux Team <[email protected]> Cc: Peng Fan <[email protected]> Cc: Shawn Guo <[email protected]> Link: https://lore.kernel.org/r/[email protected] Signed-off-by: Abel Vesa <[email protected]>
1 parent d36207b commit 86842d2

File tree

2 files changed

+8
-1
lines changed

2 files changed

+8
-1
lines changed

drivers/clk/imx/clk-imx8mn.c

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,9 @@ static const char * const imx8mn_a53_sels[] = {"osc_24m", "arm_pll_out", "sys_pl
4040

4141
static const char * const imx8mn_a53_core_sels[] = {"arm_a53_div", "arm_pll_out", };
4242

43+
static const char * const imx8mn_m7_sels[] = {"osc_24m", "sys_pll2_200m", "sys_pll2_250m", "vpu_pll_out",
44+
"sys_pll1_800m", "audio_pll1_out", "video_pll1_out", "sys_pll3_out", };
45+
4346
static const char * const imx8mn_gpu_core_sels[] = {"osc_24m", "gpu_pll_out", "sys_pll1_800m",
4447
"sys_pll3_out", "sys_pll2_1000m", "audio_pll1_out",
4548
"video_pll1_out", "audio_pll2_out", };
@@ -421,6 +424,8 @@ static int imx8mn_clocks_probe(struct platform_device *pdev)
421424
hws[IMX8MN_CLK_A53_SRC] = hws[IMX8MN_CLK_A53_DIV];
422425
hws[IMX8MN_CLK_A53_CG] = hws[IMX8MN_CLK_A53_DIV];
423426

427+
hws[IMX8MN_CLK_M7_CORE] = imx8m_clk_hw_composite_core("arm_m7_core", imx8mn_m7_sels, base + 0x8080);
428+
424429
hws[IMX8MN_CLK_GPU_CORE] = imx8m_clk_hw_composite_core("gpu_core", imx8mn_gpu_core_sels, base + 0x8180);
425430
hws[IMX8MN_CLK_GPU_SHADER] = imx8m_clk_hw_composite_core("gpu_shader", imx8mn_gpu_shader_sels, base + 0x8200);
426431

include/dt-bindings/clock/imx8mn-clock.h

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -241,6 +241,8 @@
241241
#define IMX8MN_CLK_CLKOUT2_DIV 219
242242
#define IMX8MN_CLK_CLKOUT2 220
243243

244-
#define IMX8MN_CLK_END 221
244+
#define IMX8MN_CLK_M7_CORE 221
245+
246+
#define IMX8MN_CLK_END 222
245247

246248
#endif

0 commit comments

Comments
 (0)