summaryrefslogtreecommitdiff
path: root/arch/arm/dts/mvebu-u-boot.dtsi
blob: 6d20a442391bd7e2153b3f0e625757780b4f7fe0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
#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