From: Heiko Stuebner Date: Tue, 15 Apr 2025 21:51:23 +0000 (+0200) Subject: mmc: rockchip_dw_mmc: Add support for rk3576 X-Git-Tag: v2025.07-rc1~33^2~7 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=23a68d4f1846976b32a73e8374059fe3b302c7c6;p=thirdparty%2Fu-boot.git mmc: rockchip_dw_mmc: Add support for rk3576 The rk3576 uses a different base-compatible, as starting with this generation, the clock phase tuning is done via registers inside the mmc controller and not from inside the CRU. In U-Boot we do not tune at all, so no other code changes are necessary. Signed-off-by: Heiko Stuebner Reviewed-by: Jaehoon Chung Reviewed-by: Jonas Karlman Reviewed-by: Kever Yang --- diff --git a/drivers/mmc/rockchip_dw_mmc.c b/drivers/mmc/rockchip_dw_mmc.c index 422b8f7e4c8..7a72abaa38a 100644 --- a/drivers/mmc/rockchip_dw_mmc.c +++ b/drivers/mmc/rockchip_dw_mmc.c @@ -171,6 +171,7 @@ static int rockchip_dwmmc_bind(struct udevice *dev) static const struct udevice_id rockchip_dwmmc_ids[] = { { .compatible = "rockchip,rk2928-dw-mshc" }, { .compatible = "rockchip,rk3288-dw-mshc" }, + { .compatible = "rockchip,rk3576-dw-mshc" }, { } };