arm: dts: k3-am64-evm: Fix boot

Since commit [1] A53 u-boot proper is broken.
This is because nodes marked as 'bootph-pre-ram' are
not available at u-boot proper before relocation.

To fix this we mark all nodes in sk-u-boot.dtsi as
'bootph-all'.

Move vtt_supply and cbass_mcu node to -r5-evm.dts as
it is only required for R5 SPL.

[1]
9e644284ab812 ("dm: core: Report bootph-pre-ram/sram node as pre-reloc after relocation")

Signed-off-by: Roger Quadros <rogerq@kernel.org>
Reviewed-by: Nishanth Menon <nm@ti.com>
This commit is contained in:
Roger Quadros 2023-09-29 16:46:41 +03:00 committed by Tom Rini
parent b83e285866
commit c043ba97d8
2 changed files with 32 additions and 32 deletions

View File

@ -11,109 +11,101 @@
}; };
memory@80000000 { memory@80000000 {
bootph-pre-ram; bootph-all;
}; };
}; };
&vtt_supply {
bootph-pre-ram;
};
&cbass_main { &cbass_main {
bootph-pre-ram; bootph-all;
};
&cbass_mcu {
bootph-pre-ram;
}; };
&main_timer0 { &main_timer0 {
bootph-pre-ram; bootph-all;
clock-frequency = <200000000>; clock-frequency = <200000000>;
}; };
&main_conf { &main_conf {
bootph-pre-ram; bootph-all;
chipid@14 { chipid@14 {
bootph-pre-ram; bootph-all;
}; };
}; };
&main_pmx0 { &main_pmx0 {
bootph-pre-ram; bootph-all;
}; };
&main_i2c0_pins_default { &main_i2c0_pins_default {
bootph-pre-ram; bootph-all;
}; };
&main_i2c0 { &main_i2c0 {
bootph-pre-ram; bootph-all;
}; };
&main_uart0_pins_default { &main_uart0_pins_default {
bootph-pre-ram; bootph-all;
}; };
&main_uart0 { &main_uart0 {
bootph-pre-ram; bootph-all;
}; };
&usb0 { &usb0 {
dr_mode="peripheral"; dr_mode="peripheral";
bootph-pre-ram; bootph-all;
}; };
&usbss0 { &usbss0 {
bootph-pre-ram; bootph-all;
}; };
&main_mmc1_pins_default { &main_mmc1_pins_default {
bootph-pre-ram; bootph-all;
}; };
&main_usb0_pins_default { &main_usb0_pins_default {
bootph-pre-ram; bootph-all;
}; };
&dmss { &dmss {
bootph-pre-ram; bootph-all;
}; };
&secure_proxy_main { &secure_proxy_main {
bootph-pre-ram; bootph-all;
}; };
&dmsc { &dmsc {
bootph-pre-ram; bootph-all;
k3_sysreset: sysreset-controller { k3_sysreset: sysreset-controller {
compatible = "ti,sci-sysreset"; compatible = "ti,sci-sysreset";
bootph-pre-ram; bootph-all;
}; };
}; };
&k3_pds { &k3_pds {
bootph-pre-ram; bootph-all;
}; };
&k3_clks { &k3_clks {
bootph-pre-ram; bootph-all;
}; };
&k3_reset { &k3_reset {
bootph-pre-ram; bootph-all;
}; };
&sdhci0 { &sdhci0 {
bootph-pre-ram; bootph-all;
}; };
&sdhci1 { &sdhci1 {
bootph-pre-ram; bootph-all;
}; };
&cpsw3g { &cpsw3g {
bootph-pre-ram; bootph-all;
}; };
&cpsw_port2 { &cpsw_port2 {

View File

@ -40,6 +40,10 @@
}; };
}; };
&vtt_supply {
bootph-pre-ram;
};
&cbass_main { &cbass_main {
sysctrler: sysctrler { sysctrler: sysctrler {
compatible = "ti,am654-system-controller"; compatible = "ti,am654-system-controller";
@ -53,6 +57,10 @@
bootph-pre-ram; bootph-pre-ram;
}; };
&cbass_mcu {
bootph-pre-ram;
};
&mcu_esm { &mcu_esm {
bootph-pre-ram; bootph-pre-ram;
}; };