]> git.kernelconcepts.de Git - karo-tx-uboot.git/blob - arch/powerpc/cpu/mpc83xx/Makefile
Merge branch 'u-boot-imx/master' into 'u-boot-arm/master'
[karo-tx-uboot.git] / arch / powerpc / cpu / mpc83xx / Makefile
1 #
2 # (C) Copyright 2006
3 # Wolfgang Denk, DENX Software Engineering, wd@denx.de.
4 #
5 # Copyright 2004 Freescale Semiconductor, Inc.
6 #
7 # SPDX-License-Identifier:      GPL-2.0+
8 #
9
10 MINIMAL=
11
12 ifdef CONFIG_SPL_BUILD
13 ifdef CONFIG_SPL_INIT_MINIMAL
14 MINIMAL=y
15 endif
16 endif
17
18 extra-y = start.o
19
20 ifdef MINIMAL
21
22 obj-y   += spl_minimal.o
23
24 else
25
26 obj-y += traps.o
27 obj-y += cpu.o
28 obj-y += cpu_init.o
29 obj-y += speed.o
30 obj-y += interrupts.o
31 obj-y += ecc.o
32 obj-$(CONFIG_QE) += qe_io.o
33 obj-$(CONFIG_FSL_SERDES) += serdes.o
34 obj-$(CONFIG_PCI) += pci.o
35 obj-$(CONFIG_PCIE) += pcie.o
36 obj-$(CONFIG_OF_LIBFDT) += fdt.o
37
38 # Stub implementations of cache management functions for USB
39 obj-y += cache.o
40
41 ifndef CONFIG_SYS_FSL_DDRC_GEN2
42 obj-y += spd_sdram.o
43 endif
44 obj-$(CONFIG_SYS_FSL_DDR2) += law.o
45
46 endif # not minimal