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