mirror of
https://github.com/libretro/Lakka-LibreELEC.git
synced 2025-03-02 20:05:55 +00:00
41 lines
1.6 KiB
Diff
41 lines
1.6 KiB
Diff
From a4658eb9da3ee5555a82be9bbd838fa14f2a914e Mon Sep 17 00:00:00 2001
|
|
From: Jerome Brunet <jbrunet@baylibre.com>
|
|
Date: Fri, 13 Dec 2024 11:03:23 +0100
|
|
Subject: [PATCH 12/58] FROMGIT(6.14): clk: amlogic: g12a: fix mmc A peripheral
|
|
clock
|
|
|
|
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")
|
|
Signed-off-by: Jerome Brunet <jbrunet@baylibre.com>
|
|
Reviewed-by: Neil Armstrong <neil.armstrong@linaro.org>
|
|
---
|
|
drivers/clk/meson/g12a.c | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
diff --git a/drivers/clk/meson/g12a.c b/drivers/clk/meson/g12a.c
|
|
index 02dda57105b1..ff634d3a2f95 100644
|
|
--- a/drivers/clk/meson/g12a.c
|
|
+++ b/drivers/clk/meson/g12a.c
|
|
@@ -4317,7 +4317,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);
|
|
--
|
|
2.34.1
|
|
|