File tree Expand file tree Collapse file tree 1 file changed +3
-1
lines changed Expand file tree Collapse file tree 1 file changed +3
-1
lines changed Original file line number Diff line number Diff line change @@ -1510,6 +1510,7 @@ static void sdhci_do_set_ios(struct sdhci_host *host, struct mmc_ios *ios)
1510
1510
1511
1511
/* In case of UHS-I modes, set High Speed Enable */
1512
1512
if ((ios -> timing == MMC_TIMING_MMC_HS200 ) ||
1513
+ (ios -> timing == MMC_TIMING_MMC_DDR52 ) ||
1513
1514
(ios -> timing == MMC_TIMING_UHS_SDR50 ) ||
1514
1515
(ios -> timing == MMC_TIMING_UHS_SDR104 ) ||
1515
1516
(ios -> timing == MMC_TIMING_UHS_DDR50 ) ||
@@ -1570,7 +1571,8 @@ static void sdhci_do_set_ios(struct sdhci_host *host, struct mmc_ios *ios)
1570
1571
ctrl_2 |= SDHCI_CTRL_UHS_SDR25 ;
1571
1572
else if (ios -> timing == MMC_TIMING_UHS_SDR50 )
1572
1573
ctrl_2 |= SDHCI_CTRL_UHS_SDR50 ;
1573
- else if (ios -> timing == MMC_TIMING_UHS_DDR50 )
1574
+ else if ((ios -> timing == MMC_TIMING_UHS_DDR50 ) ||
1575
+ (ios -> timing == MMC_TIMING_MMC_DDR52 ))
1574
1576
ctrl_2 |= SDHCI_CTRL_UHS_DDR50 ;
1575
1577
sdhci_writew (host , ctrl_2 , SDHCI_HOST_CONTROL2 );
1576
1578
}
You can’t perform that action at this time.
0 commit comments