mirror of
https://github.com/nxp-imx/linux-imx.git
synced 2026-01-27 12:35:36 +01:00
[ Upstream commitcfeac8e5d0] Fixes pmu_io_domains supply according to the schematic. Among them, the vccio3 is responsible for the io voltage of sdcard. There is no sdcard slot on the R68S, and it's connected to vcc_3v3, so describe the supply of vccio3 separately. Fixes:c79dab407a("arm64: dts: rockchip: Add Lunzn Fastrhino R66S") Fixes:b9f8ca655d("arm64: dts: rockchip: Add Lunzn Fastrhino R68S") Signed-off-by: Chukun Pan <amadeus@jmu.edu.cn> Link: https://lore.kernel.org/r/20240630150010.55729-4-amadeus@jmu.edu.cn Signed-off-by: Heiko Stuebner <heiko@sntech.de> Signed-off-by: Sasha Levin <sashal@kernel.org>
32 lines
577 B
Plaintext
32 lines
577 B
Plaintext
// SPDX-License-Identifier: GPL-2.0-or-later OR MIT
|
|
|
|
#include "rk3568-fastrhino-r66s.dtsi"
|
|
|
|
/ {
|
|
model = "Lunzn FastRhino R66S";
|
|
compatible = "lunzn,fastrhino-r66s", "rockchip,rk3568";
|
|
|
|
aliases {
|
|
mmc0 = &sdmmc0;
|
|
};
|
|
};
|
|
|
|
&pmu_io_domains {
|
|
vccio3-supply = <&vccio_sd>;
|
|
};
|
|
|
|
&sdmmc0 {
|
|
bus-width = <4>;
|
|
cap-mmc-highspeed;
|
|
cap-sd-highspeed;
|
|
disable-wp;
|
|
max-frequency = <150000000>;
|
|
no-sdio;
|
|
no-mmc;
|
|
pinctrl-names = "default";
|
|
pinctrl-0 = <&sdmmc0_bus4 &sdmmc0_clk &sdmmc0_cmd &sdmmc0_det>;
|
|
vmmc-supply = <&vcc3v3_sd>;
|
|
vqmmc-supply = <&vccio_sd>;
|
|
status = "okay";
|
|
};
|