mirror of https://gitee.com/openkylin/linux.git
ARM: dts: rockchip: fixup firefly mmc supplies
Fix some incorrect references to mmc regulators. vccio_wl for example is the io-voltage supply not the core supply of the wifi module itself, which is vbat_wl instead. Signed-off-by: Heiko Stuebner <heiko@sntech.de>
This commit is contained in:
parent
90f9a541d8
commit
fae3b81120
|
@ -96,7 +96,7 @@ power {
|
|||
};
|
||||
};
|
||||
|
||||
vcc_sys: vsys-regulator {
|
||||
vbat_wl: vcc_sys: vsys-regulator {
|
||||
compatible = "regulator-fixed";
|
||||
regulator-name = "vcc_sys";
|
||||
regulator-min-microvolt = <5000000>;
|
||||
|
@ -325,7 +325,7 @@ vdd_10: REG10 {
|
|||
regulator-always-on;
|
||||
};
|
||||
|
||||
vcc_18: REG11 {
|
||||
vccio_wl: vcc_18: REG11 {
|
||||
regulator-name = "vcc_18";
|
||||
regulator-min-microvolt = <1800000>;
|
||||
regulator-max-microvolt = <1800000>;
|
||||
|
@ -445,7 +445,8 @@ &sdio0 {
|
|||
num-slots = <1>;
|
||||
pinctrl-names = "default";
|
||||
pinctrl-0 = <&sdio0_bus4>, <&sdio0_cmd>, <&sdio0_clk>;
|
||||
vmmc-supply = <&vcc_18>;
|
||||
vmmc-supply = <&vbat_wl>;
|
||||
vqmmc-supply = <&vccio_wl>;
|
||||
status = "okay";
|
||||
};
|
||||
|
||||
|
@ -459,6 +460,7 @@ &sdmmc {
|
|||
pinctrl-names = "default";
|
||||
pinctrl-0 = <&sdmmc_clk>, <&sdmmc_cmd>, <&sdmmc_cd>, <&sdmmc_bus4>;
|
||||
vmmc-supply = <&vcc_sd>;
|
||||
vqmmc-supply = <&vccio_sd>;
|
||||
status = "okay";
|
||||
};
|
||||
|
||||
|
|
Loading…
Reference in New Issue