mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-12 07:57:21 +00:00
8c103c33fb
Now that Linux has accepted these tags, move the device tree files in U-Boot over to use them. Signed-off-by: Simon Glass <sjg@chromium.org>
35 lines
351 B
Text
35 lines
351 B
Text
#include <config.h>
|
|
|
|
#ifdef CONFIG_ARMADA_32BIT
|
|
|
|
/ {
|
|
soc {
|
|
bootph-all;
|
|
internal-regs {
|
|
bootph-all;
|
|
};
|
|
};
|
|
};
|
|
|
|
&uart0 {
|
|
bootph-all;
|
|
};
|
|
|
|
#ifdef CONFIG_ARMADA_375
|
|
/* Armada 375 has multiple timers, use timer1 here */
|
|
&timer1 {
|
|
bootph-all;
|
|
};
|
|
#else
|
|
&timer {
|
|
bootph-all;
|
|
};
|
|
#endif
|
|
|
|
#ifdef CONFIG_SPL_SPI
|
|
&spi0 {
|
|
bootph-all;
|
|
};
|
|
#endif
|
|
|
|
#endif
|