Home
last modified time | relevance | path

Searched full:vqmmc (Results 1 – 25 of 334) sorted by relevance

12345678910>>...14

/linux-5.10/drivers/mmc/core/
Dregulator.c161 * mmc_regulator_set_vqmmc - Set VQMMC as per the ios
165 * For 3.3V signaling, we try to match VQMMC to VMMC as closely as possible.
166 * That will match the behavior of old boards where VQMMC and VMMC were supplied
168 * SD card spec also define VQMMC in terms of VMMC.
184 /* If no vqmmc supply then we can't change the voltage */ in mmc_regulator_set_vqmmc()
185 if (IS_ERR(mmc->supply.vqmmc)) in mmc_regulator_set_vqmmc()
190 return mmc_regulator_set_voltage_if_supported(mmc->supply.vqmmc, in mmc_regulator_set_vqmmc()
193 return mmc_regulator_set_voltage_if_supported(mmc->supply.vqmmc, in mmc_regulator_set_vqmmc()
213 ret = mmc_regulator_set_voltage_if_supported(mmc->supply.vqmmc, in mmc_regulator_set_vqmmc()
218 return mmc_regulator_set_voltage_if_supported(mmc->supply.vqmmc, in mmc_regulator_set_vqmmc()
[all …]
/linux-5.10/Documentation/devicetree/bindings/regulator/
Dvqmmc-ipq4019-regulator.yaml4 $id: http://devicetree.org/schemas/regulator/vqmmc-ipq4019-regulator.yaml#
7 title: Qualcomm IPQ4019 VQMMC SD LDO regulator
22 const: qcom,vqmmc-ipq4019-regulator
36 compatible = "qcom,vqmmc-ipq4019-regulator";
38 regulator-name = "vqmmc";
/linux-5.10/drivers/regulator/
Dvqmmc-ipq4019-regulator.c86 { .compatible = "qcom,vqmmc-ipq4019-regulator", },
93 .name = "vqmmc-ipq4019-regulator",
101 MODULE_DESCRIPTION("IPQ4019 VQMMC voltage regulator");
/linux-5.10/Documentation/devicetree/bindings/mmc/
Dmarvell,xenon-sdhci.txt120 /* Vmmc and Vqmmc are both fixed */
129 vqmmc-supply = <&sd_vqmmc_regulator>;
153 /* Vmmc and Vqmmc are both fixed */
165 vqmmc-supply = <&sd_regulator>;
Dusdhi6rol0.txt14 - vqmmc-supply: a phandle of a regulator, supplying VccQ to the card
38 vqmmc-supply = <&vccq_sd0>;
Dsdhci-fujitsu.txt16 - vqmmc-supply: phandle to the regulator device tree node, mentioned
29 vqmmc-supply = <&vccq_sdhci1>;
Dmmci.txt20 - vqmmc-supply : phandle to the regulator device tree node, mentioned
69 vqmmc-supply = <&vmmci>;
Dmtk-sd.txt34 - vqmmc-supply: power to the IO
62 vqmmc-supply = <&mt6397_vio18_reg>;
Dsdhci-st.txt48 - vqmmc-supply: Phandle to the regulator dt node, mentioned as the vcc/vdd
103 vqmmc-supply = <&vmmc_reg>;
/linux-5.10/arch/arm64/boot/dts/qcom/
Dmsm8916-pm8916.dtsi39 vqmmc-supply = <&pm8916_l5>;
44 vqmmc-supply = <&pm8916_l12>;
/linux-5.10/arch/arm64/boot/dts/amlogic/
Dmeson-gxm-rbox-pro.dts157 vqmmc-supply = <&vddio_boot>;
179 vqmmc-supply = <&vddio_boot>;
198 vqmmc-supply = <&vddio_boot>;
Dmeson-gxl-s905x-p212.dtsi127 vqmmc-supply = <&vddio_boot>;
145 vqmmc-supply = <&vddio_boot>;
165 vqmmc-supply = <&vddio_boot>;
Dmeson-gxl-s905x-nexbox-a95x.dts174 vqmmc-supply = <&vddio_boot>;
192 vqmmc-supply = <&vddio_card>;
212 vqmmc-supply = <&vddio_boot>;
Dmeson-gxbb-p20x.dtsi179 vqmmc-supply = <&vddio_boot>;
205 vqmmc-supply = <&vddio_card>;
225 vqmmc-supply = <&vddio_boot>;
Dmeson-gxbb-vega-s95.dtsi193 vqmmc-supply = <&vddio_boot>;
216 vqmmc-supply = <&vcc_3v3>;
236 vqmmc-supply = <&vddio_boot>;
Dmeson-gxbb-wetek.dtsi213 vqmmc-supply = <&vddio_boot>;
236 vqmmc-supply = <&vcc_3v3>;
256 vqmmc-supply = <&vddio_boot>;
Dmeson-gxbb-nexbox-a95x.dts229 vqmmc-supply = <&vddio_boot>;
247 vqmmc-supply = <&vddio_card>;
267 vqmmc-supply = <&vddio_boot>;
Dmeson-gx-p23x-q20x.dtsi273 vqmmc-supply = <&vddio_boot>;
291 vqmmc-supply = <&vddio_boot>;
311 vqmmc-supply = <&vddio_boot>;
Dmeson-gxl-s905x-hwacom-amazetv.dts137 vqmmc-supply = <&vddio_card>;
157 vqmmc-supply = <&vddio_boot>;
Dmeson-gxm-nexbox-a1.dts153 vqmmc-supply = <&vddio_boot>;
173 vqmmc-supply = <&vddio_boot>;
/linux-5.10/drivers/mmc/host/
Dsdhci-omap.c185 if (!IS_ERR(mmc->supply.vqmmc)) { in sdhci_omap_enable_iov()
186 ret = regulator_set_voltage(mmc->supply.vqmmc, iov, iov); in sdhci_omap_enable_iov()
188 dev_err(mmc_dev(mmc), "vqmmc set voltage failed\n"); in sdhci_omap_enable_iov()
885 struct regulator *vqmmc; in sdhci_omap_set_capabilities() local
887 vqmmc = regulator_get(dev, "vqmmc"); in sdhci_omap_set_capabilities()
888 if (IS_ERR(vqmmc)) { in sdhci_omap_set_capabilities()
889 ret = PTR_ERR(vqmmc); in sdhci_omap_set_capabilities()
897 if (regulator_is_supported_voltage(vqmmc, IOV_3V3, IOV_3V3)) in sdhci_omap_set_capabilities()
899 if (regulator_is_supported_voltage(vqmmc, IOV_1V8, IOV_1V8)) in sdhci_omap_set_capabilities()
905 regulator_put(vqmmc); in sdhci_omap_set_capabilities()
/linux-5.10/arch/arm/boot/dts/
Dbcm28155-ap.dts61 vqmmc-supply = <&iosr1_reg>;
69 vqmmc-supply = <&sdxldo_reg>;
Dimx6q-tbs2910.dts221 vqmmc-supply = <&reg_3p3v>;
234 vqmmc-supply = <&reg_3p3v>;
245 vqmmc-supply = <&reg_3p3v>;
/linux-5.10/arch/arm64/boot/dts/freescale/
Dimx8mq-thor96.dts78 reg_usdhc1_vqmmc: reg-usdhc1-vqmmc {
98 reg_usdhc2_vqmmc: reg-usdhc2-vqmmc {
337 vqmmc-supply = <&reg_usdhc1_vqmmc>;
358 vqmmc-supply = <&reg_usdhc2_vqmmc>;
/linux-5.10/arch/arm64/boot/dts/broadcom/stingray/
Dbcm958742-base.dtsi169 vqmmc-supply = <&sdio0_vddo_ctrl_reg>;
174 vqmmc-supply = <&sdio1_vddo_ctrl_reg>;

12345678910>>...14