Lines Matching full:vmmc
168 * For 3.3V signaling, we try to match VQMMC to VMMC as closely as possible.
169 * That will match the behavior of old boards where VQMMC and VMMC were supplied
171 * SD card spec also define VQMMC in terms of VMMC.
203 dev_dbg(dev, "%s: found vmmc voltage range of %d-%duV\n", in mmc_regulator_set_vqmmc()
213 * voltage in two steps and try to stay close to vmmc in mmc_regulator_set_vqmmc()
239 * mmc_regulator_get_supply - try to get VMMC and VQMMC regulators for a host
253 mmc->supply.vmmc = devm_regulator_get_optional(dev, "vmmc"); in mmc_regulator_get_supply()
256 if (IS_ERR(mmc->supply.vmmc)) { in mmc_regulator_get_supply()
257 if (PTR_ERR(mmc->supply.vmmc) == -EPROBE_DEFER) in mmc_regulator_get_supply()
259 "vmmc regulator not available\n"); in mmc_regulator_get_supply()
261 dev_dbg(dev, "No vmmc regulator found\n"); in mmc_regulator_get_supply()
263 ret = mmc_regulator_get_ocrmask(mmc->supply.vmmc); in mmc_regulator_get_supply()