u-boot/arch/arm/dts/rk3566-quartz64-a-u-boot.dtsi
Jonas Karlman 63dfe0a820 rockchip: rk356x: Update bootph props
After the commit aca95282c1 ("Makefile: Use the fdtgrep -u flag")
bootph props is propagating to parent nodes.

Update bootph props to ensure eMMC, SD-card and SPI flash is available
in SPL and U-Boot proper pre-reloc phase also remove unneeded bootph
props that automatically is propagated to parent nodes.

Also adjust pinctrl nodes to only be included in boot phases where they
are needed and add any missing pinctrl node needed in SPL.

Signed-off-by: Jonas Karlman <jonas@kwiboo.se>
Reviewed-by: Kever Yang <kever.yang@rock-chips.com>
2024-04-26 15:47:04 +08:00

36 lines
536 B
Text

// SPDX-License-Identifier: GPL-2.0+
#include "rk356x-u-boot.dtsi"
&gpio0 {
bootph-pre-ram;
};
&sdhci {
cap-mmc-highspeed;
pinctrl-names = "default";
pinctrl-0 = <&emmc_bus8 &emmc_clk &emmc_cmd &emmc_datastrobe>;
};
&sfc {
flash@0 {
bootph-pre-ram;
bootph-some-ram;
};
};
/*
* U-Boot does not support multiple regulators using the same gpio,
* use vcc5v0_usb20_host to fix use of USB 2.0 port
*/
&usb2phy0_otg {
phy-supply = <&vcc5v0_usb20_host>;
};
&vcc3v3_sd {
bootph-pre-ram;
};
&vcc_sd_h {
bootph-pre-ram;
};