]> git.ipfire.org Git - thirdparty/kernel/linux.git/commitdiff
clk: amlogic: g12a: fix mmc A peripheral clock
authorJerome Brunet <jbrunet@baylibre.com>
Fri, 13 Dec 2024 10:03:23 +0000 (11:03 +0100)
committerJerome Brunet <jbrunet@baylibre.com>
Fri, 14 Mar 2025 15:19:25 +0000 (16:19 +0100)
The bit index of the peripheral clock for mmc A is wrong
This was probably not a problem for mmc A as the peripheral is likely left
enabled by the bootloader.

No issues has been reported so far but it could be a problem, most likely
some form of conflict between the ethernet and mmc A clock, breaking
ethernet on init.

Use the value provided by the documentation for mmc A before this
becomes an actual problem.

Fixes: 085a4ea93d54 ("clk: meson: g12a: add peripheral clock controller")
Reviewed-by: Neil Armstrong <neil.armstrong@linaro.org>
Link: https://lore.kernel.org/r/20241213-amlogic-clk-g12a-mmca-fix-v1-1-5af421f58b64@baylibre.com
Signed-off-by: Jerome Brunet <jbrunet@baylibre.com>
drivers/clk/meson/g12a.c

index cfffd434e998ef2dbb0d15627aca3eff4aba9b9e..d978516bba34742c98d2fa739be3e04a63274384 100644 (file)
@@ -4311,7 +4311,7 @@ static MESON_GATE(g12a_spicc_1,                   HHI_GCLK_MPEG0, 14);
 static MESON_GATE(g12a_hiu_reg,                        HHI_GCLK_MPEG0, 19);
 static MESON_GATE(g12a_mipi_dsi_phy,           HHI_GCLK_MPEG0, 20);
 static MESON_GATE(g12a_assist_misc,            HHI_GCLK_MPEG0, 23);
-static MESON_GATE(g12a_emmc_a,                 HHI_GCLK_MPEG0, 4);
+static MESON_GATE(g12a_emmc_a,                 HHI_GCLK_MPEG0, 24);
 static MESON_GATE(g12a_emmc_b,                 HHI_GCLK_MPEG0, 25);
 static MESON_GATE(g12a_emmc_c,                 HHI_GCLK_MPEG0, 26);
 static MESON_GATE(g12a_audio_codec,            HHI_GCLK_MPEG0, 28);