diff options
| author | Tom Rini <[email protected]> | 2026-04-27 08:04:06 -0600 |
|---|---|---|
| committer | Tom Rini <[email protected]> | 2026-04-27 08:04:06 -0600 |
| commit | ee35366a6405fb4bbdfdd839cd7a17a4079be78f (patch) | |
| tree | 759be5d98589a35172ff681fd4cf34dd4f47b664 /drivers | |
| parent | 9271f908b4eea4fa127c2ec0d910e71b05ac2d64 (diff) | |
| parent | e07cc9e7fdcc35780f539ee1d452ffd3da0fbd1f (diff) | |
Merge tag 'u-boot-amlogic-next-20260427' of https://source.denx.de/u-boot/custodians/u-boot-amlogic
- enable EFI Capsule on Disk (+ sysreset fixup/cleanup)
- do not fail when setting SD_EMMC_x_CLK0 on GX/G12
Diffstat (limited to 'drivers')
| -rw-r--r-- | drivers/clk/meson/g12a.c | 5 | ||||
| -rw-r--r-- | drivers/clk/meson/gxbb.c | 5 |
2 files changed, 10 insertions, 0 deletions
diff --git a/drivers/clk/meson/g12a.c b/drivers/clk/meson/g12a.c index a7a42b2edb6..f33938e1419 100644 --- a/drivers/clk/meson/g12a.c +++ b/drivers/clk/meson/g12a.c @@ -946,6 +946,11 @@ static ulong meson_clk_set_rate_by_id(struct clk *clk, unsigned long id, case CLKID_HDMI: return meson_clk_set_rate_by_id(clk, CLKID_HDMI_DIV, rate, current_rate); + case CLKID_SD_EMMC_A_CLK0: + case CLKID_SD_EMMC_B_CLK0: + case CLKID_SD_EMMC_C_CLK0: + /* TOFIX: implement rate set for MMC clocks */ + return 0; default: return -ENOENT; } diff --git a/drivers/clk/meson/gxbb.c b/drivers/clk/meson/gxbb.c index 218be45c2cb..bf46f4d50bc 100644 --- a/drivers/clk/meson/gxbb.c +++ b/drivers/clk/meson/gxbb.c @@ -900,6 +900,11 @@ static ulong meson_clk_set_rate_by_id(struct clk *clk, unsigned long id, case CLKID_HDMI: return meson_clk_set_rate_by_id(clk, CLKID_HDMI_DIV, rate, current_rate); + case CLKID_SD_EMMC_A_CLK0: + case CLKID_SD_EMMC_B_CLK0: + case CLKID_SD_EMMC_C_CLK0: + /* TOFIX: implement rate set for MMC clocks */ + return 0; default: return -ENOENT; } |
