summaryrefslogtreecommitdiff
path: root/drivers
diff options
context:
space:
mode:
authorSam Protsenko <[email protected]>2025-10-25 20:06:58 -0500
committerPeng Fan <[email protected]>2025-11-07 09:28:29 +0800
commite11db644884242795b01ea10e2949f2f56005b0b (patch)
treee8aa880addd712cec35542991d5dd500300cd6c1 /drivers
parentcd7b26a254c1685f2519b78f6fa11577cdcfc114 (diff)
mmc: exynos_dw_mmc: Disable FMP for Exynos850 chip
Add DWMCI_QUIRK_DISABLE_FMP flag to Exynos850 driver data to make the driver disable FMP in case of Exynos850 chip. That makes eMMC on Exynos850 functional when U-Boot is executed during USB boot. Signed-off-by: Sam Protsenko <[email protected]> Reviewed-by: Anand Moon <[email protected]> Signed-off-by: Peng Fan <[email protected]>
Diffstat (limited to 'drivers')
-rw-r--r--drivers/mmc/exynos_dw_mmc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/mmc/exynos_dw_mmc.c b/drivers/mmc/exynos_dw_mmc.c
index 2027fcb8224..7ccd113bd79 100644
--- a/drivers/mmc/exynos_dw_mmc.c
+++ b/drivers/mmc/exynos_dw_mmc.c
@@ -490,7 +490,7 @@ static const struct exynos_dwmmc_variant exynos7_smu_drv_data = {
static const struct exynos_dwmmc_variant exynos850_drv_data = {
.clksel = DWMCI_CLKSEL64,
- .quirks = DWMCI_QUIRK_DISABLE_SMU,
+ .quirks = DWMCI_QUIRK_DISABLE_SMU | DWMCI_QUIRK_DISABLE_FMP,
};
static const struct udevice_id exynos_dwmmc_ids[] = {