mirror of
https://github.com/AsahiLinux/u-boot
synced 2025-03-16 23:07:00 +00:00
arm: dts: k3-j721e-sk-u-boot: fix boot on j721e SK
J721e SK has been broken since at least March 2022. The main-navss and mcu-navss nodes were renamed and this caused the A72 SPL to fail early in the boot even before the serial port was enabled. Fix this. A later patch series between v2022.07 and v2022.10 additionally broke boot on this board by introducing hbmc nodes which are not present on this board. The right fix is to disable these by default in the SOC dtsi file, but for now we can also disable them in the u-boot dtsi. With both these fixed, we can now boot the j721e SK board fully from mainline u-boot. Fixes:58d61fb5a7
("arm: dts: k3-j721e-sk: Add initial A72 specific dts support") Fixes:297daac43a
("arm: dts: k3-j721e-mcu-wakeup: Add HyperBus Controller node") Reported-by: Anand Gadiyar <gadiyar@ti.com> Signed-off-by: Sinthu Raja <sinthu.raja@ti.com> [gadiyar@ti.com: update commit description] Signed-off-by: Anand Gadiyar <gadiyar@ti.com> Cc: Bryan Brattlof <bb@ti.com>
This commit is contained in:
parent
8b6de0545f
commit
1f77f9176e
1 changed files with 6 additions and 2 deletions
|
@ -33,7 +33,7 @@
|
|||
&cbass_main{
|
||||
u-boot,dm-spl;
|
||||
|
||||
main_navss {
|
||||
main_navss: bus@30000000 {
|
||||
u-boot,dm-spl;
|
||||
};
|
||||
};
|
||||
|
@ -49,7 +49,7 @@
|
|||
u-boot,dm-spl;
|
||||
};
|
||||
|
||||
mcu-navss {
|
||||
mcu_navss: bus@28380000 {
|
||||
u-boot,dm-spl;
|
||||
|
||||
ringacc@2b800000 {
|
||||
|
@ -237,6 +237,10 @@
|
|||
u-boot,dm-spl;
|
||||
};
|
||||
|
||||
&hbmc {
|
||||
status = "disabled";
|
||||
};
|
||||
|
||||
&ospi0 {
|
||||
u-boot,dm-spl;
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue