We use dm8148 mmc1, In the kernel "omap_hsmmc.c" ->omap_hsmmc_conf_bus_power()
I find that :
/* Only MMC1 supports 3.0V */
if (host->id == OMAP_MMC1_DEVID) {
hctl = SDVS30;
capa = VS30 | VS18;
} else {
hctl = SDVS18;
capa = VS18;
}
Also In the datasheet(sprugz8d.pdf):18.4.20 Control Register (MMCHS_HCTL)
It said that "
MMCHS2. This field must be set to 5h.
MMCHS3. This field must be set to 5h.
".
So does this mean The mmc1 and mmc2 can only use 1.8V supply?


