2022-08-03 11:00:50 +00:00
|
|
|
#include <config.h>
|
|
|
|
|
|
|
|
#ifdef CONFIG_ARMADA_32BIT
|
|
|
|
|
|
|
|
/ {
|
|
|
|
soc {
|
2023-02-13 15:56:33 +00:00
|
|
|
bootph-all;
|
2022-08-03 11:00:50 +00:00
|
|
|
internal-regs {
|
2023-02-13 15:56:33 +00:00
|
|
|
bootph-all;
|
2022-08-03 11:00:50 +00:00
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
&uart0 {
|
2023-02-13 15:56:33 +00:00
|
|
|
bootph-all;
|
2022-08-03 11:00:50 +00:00
|
|
|
};
|
|
|
|
|
2022-09-15 14:20:42 +00:00
|
|
|
#ifdef CONFIG_ARMADA_375
|
|
|
|
/* Armada 375 has multiple timers, use timer1 here */
|
|
|
|
&timer1 {
|
2023-02-13 15:56:33 +00:00
|
|
|
bootph-all;
|
2022-09-15 14:20:42 +00:00
|
|
|
};
|
|
|
|
#else
|
|
|
|
&timer {
|
2023-02-13 15:56:33 +00:00
|
|
|
bootph-all;
|
2022-09-15 14:20:42 +00:00
|
|
|
};
|
|
|
|
#endif
|
|
|
|
|
2022-08-03 11:00:50 +00:00
|
|
|
#ifdef CONFIG_SPL_SPI
|
|
|
|
&spi0 {
|
2023-02-13 15:56:33 +00:00
|
|
|
bootph-all;
|
2022-08-03 11:00:50 +00:00
|
|
|
};
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif
|