diff options
author | Tom Rini <trini@konsulko.com> | 2021-07-29 08:20:06 -0400 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2021-07-29 08:20:06 -0400 |
commit | 38436abd5e58044eccddbcd7ec3610a9104e86b6 (patch) | |
tree | 328cb2b1b355964ab196f3d5ba4bb7134d74d8a3 /drivers/mmc | |
parent | bbcacdf4cd23f2e5deb9ef916096c956c955243d (diff) | |
parent | a6c64d255e5117bcf78aec6911d7c034fbfe46f7 (diff) |
Merge tag 'ti-v2021.10-rc2' of https://source.denx.de/u-boot/custodians/u-boot-ti
- Add MMC High speed modes for AM64 and J7200
- Add Sierra/Torrent SERDES driver
- Minor clean-ups for R5F boot from SPL
Diffstat (limited to 'drivers/mmc')
-rw-r--r-- | drivers/mmc/am654_sdhci.c | 1 | ||||
-rw-r--r-- | drivers/mmc/sdhci.c | 3 |
2 files changed, 4 insertions, 0 deletions
diff --git a/drivers/mmc/am654_sdhci.c b/drivers/mmc/am654_sdhci.c index a86d96aacd..4305967d78 100644 --- a/drivers/mmc/am654_sdhci.c +++ b/drivers/mmc/am654_sdhci.c @@ -619,6 +619,7 @@ static int am654_sdhci_of_to_plat(struct udevice *dev) } } + dev_read_u32(dev, "ti,strobe-sel", &plat->strb_sel); dev_read_u32(dev, "ti,clkbuf-sel", &plat->clkbuf_sel); ret = mmc_of_parse(dev, cfg); diff --git a/drivers/mmc/sdhci.c b/drivers/mmc/sdhci.c index d9ab6a0a83..eea4701d8a 100644 --- a/drivers/mmc/sdhci.c +++ b/drivers/mmc/sdhci.c @@ -507,6 +507,9 @@ void sdhci_set_uhs_timing(struct sdhci_host *host) case MMC_HS_200: reg |= SDHCI_CTRL_UHS_SDR104; break; + case MMC_HS_400: + reg |= SDHCI_CTRL_HS400; + break; default: reg |= SDHCI_CTRL_UHS_SDR12; } |