projects
/
oweals
/
u-boot.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
b0fc312
)
mmc: Parse no-1-8-v DT property
author
Peng Fan
<peng.fan@nxp.com>
Wed, 10 Jul 2019 09:35:20 +0000
(09:35 +0000)
committer
Peng Fan
<peng.fan@nxp.com>
Mon, 15 Jul 2019 02:30:08 +0000
(10:30 +0800)
Parse no-1-8-v DT
Signed-off-by: Peng Fan <peng.fan@nxp.com>
Reviewed-by: Jean-Jacques Hiblot <jjhiblot@ti.com>
Cc: Marek Vasut <marek.vasut+renesas@gmail.com>
drivers/mmc/mmc-uclass.c
patch
|
blob
|
history
diff --git
a/drivers/mmc/mmc-uclass.c
b/drivers/mmc/mmc-uclass.c
index d4db4c85791df8cd7f99af84a2c8a82976d795d0..551007905c3b8c777d6abf45e90adbd52929bbba 100644
(file)
--- a/
drivers/mmc/mmc-uclass.c
+++ b/
drivers/mmc/mmc-uclass.c
@@
-184,6
+184,11
@@
int mmc_of_parse(struct udevice *dev, struct mmc_config *cfg)
cfg->host_caps |= MMC_CAP_NEEDS_POLL;
}
+ if (dev_read_bool(dev, "no-1-8-v")) {
+ cfg->host_caps &= ~(UHS_CAPS | MMC_MODE_HS200 |
+ MMC_MODE_HS400 | MMC_MODE_HS400_ES);
+ }
+
return 0;
}