e09bd9a88a2b04f6a29cee2d2f6d5ccb64200035
[oweals/u-boot.git] / arch / powerpc / lib / Makefile
1 #
2 # (C) Copyright 2000-2006
3 # Wolfgang Denk, DENX Software Engineering, wd@denx.de.
4 #
5 # SPDX-License-Identifier:      GPL-2.0+
6 #
7
8 ## Build a couple of necessary functions into a private libgcc
9 ## if the user asked for it
10 lib-$(CONFIG_USE_PRIVATE_LIBGCC) += _ashldi3.o _ashrdi3.o _lshrdi3.o
11
12 MINIMAL=
13
14 ifdef CONFIG_SPL_BUILD
15 ifdef CONFIG_SPL_INIT_MINIMAL
16 MINIMAL=y
17 endif
18 endif
19
20 obj-$(CONFIG_SYS_EXTBDINFO) += setup.o
21 ifdef MINIMAL
22 obj-y += cache.o time.o
23 obj-y += ticks.o
24 else
25
26 obj-y   += ppcstring.o
27
28 obj-y   += ppccache.o
29 obj-y   += ticks.o
30 obj-y   += reloc.o
31
32 obj-$(CONFIG_BAT_RW) += bat_rw.o
33 obj-$(CONFIG_CMD_BOOTM) += bootm.o
34 obj-y   += cache.o
35 obj-y   += extable.o
36 obj-$(CONFIG_CMD_IMMAP) += immap.o
37 obj-y   += interrupts.o
38 obj-$(CONFIG_CMD_KGDB) += kgdb.o
39 obj-$(CONFIG_IDE) += ide.o
40 obj-y   += stack.o
41 obj-y   += time.o
42
43 # Don't include the MPC5xxx special memcpy into the
44 # SPL U-Boot image. memcpy is used in the SPL NOR
45 # flash driver. And we need the real, fast memcpy
46 # here. We have no problems with unaligned access.
47 ifndef CONFIG_SPL_BUILD
48 # Workaround for local bus unaligned access problems
49 # on MPC512x and MPC5200
50 ifdef CONFIG_MPC512X
51 AFLAGS_ppcstring.o += -Dmemcpy=__memcpy
52 obj-y += memcpy_mpc5200.o
53 endif
54 ifdef CONFIG_MPC5200
55 AFLAGS_ppcstring.o += -Dmemcpy=__memcpy
56 obj-y += memcpy_mpc5200.o
57 endif
58 endif
59
60 endif # not minimal
61
62 ifdef CONFIG_SPL_BUILD
63 obj-$(CONFIG_SPL_FRAMEWORK) += spl.o
64 endif