Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

ARM: dts: keystone-k2g-evm: Add "vqmmc-supply" property for mmc0/mmc1

Add "vqmmc-supply" property for mmc0/mmc1 to indicate the supply connected
to the IO lines. Also add dt node for ldo1 regulator required for mmc1
vqmmc-supply.

Signed-off-by: Kishon Vijay Abraham I <kishon@ti.com>
Signed-off-by: Santosh Shilimkar <santosh.shilimkar@oracle.com>

authored by

Kishon Vijay Abraham I and committed by
Santosh Shilimkar
bb601b38 bf5ebea4

+10
+10
arch/arm/boot/dts/keystone-k2g-evm.dts
··· 37 37 regulator-max-microvolt = <3300000>; 38 38 regulator-always-on; 39 39 }; 40 + 41 + vcc1v8_ldo1_reg: fixedregulator-vcc1v8-ldo1 { 42 + compatible = "regulator-fixed"; 43 + regulator-name = "ldo1"; 44 + regulator-min-microvolt = <1800000>; 45 + regulator-max-microvolt = <1800000>; 46 + regulator-always-on; 47 + }; 40 48 }; 41 49 42 50 &k2g_pinctrl { ··· 176 168 pinctrl-names = "default"; 177 169 pinctrl-0 = <&mmc0_pins>; 178 170 vmmc-supply = <&vcc3v3_dcin_reg>; 171 + vqmmc-supply = <&vcc3v3_dcin_reg>; 179 172 cd-gpios = <&gpio1 12 GPIO_ACTIVE_LOW>; 180 173 status = "okay"; 181 174 }; ··· 185 176 pinctrl-names = "default"; 186 177 pinctrl-0 = <&mmc1_pins>; 187 178 vmmc-supply = <&vcc3v3_dcin_reg>; /* VCC3V3_EMMC is connected to VCC3V3_DCIN */ 179 + vqmmc-supply = <&vcc1v8_ldo1_reg>; 188 180 ti,non-removable; 189 181 status = "okay"; 190 182 };