xref: /openbmc/u-boot/arch/powerpc/lib/Makefile (revision ca6c5e03)
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
10lib-$(CONFIG_USE_PRIVATE_LIBGCC) += _ashldi3.o _ashrdi3.o _lshrdi3.o
11
12MINIMAL=
13
14ifdef CONFIG_SPL_BUILD
15ifdef CONFIG_SPL_INIT_MINIMAL
16MINIMAL=y
17endif
18endif
19
20ifdef MINIMAL
21obj-y += cache.o time.o
22obj-y += ticks.o
23else
24
25obj-y	+= ppcstring.o
26
27obj-y	+= ppccache.o
28obj-y	+= ticks.o
29obj-y	+= reloc.o
30
31obj-$(CONFIG_BAT_RW) += bat_rw.o
32obj-$(CONFIG_CMD_BOOTM) += bootm.o
33obj-y	+= cache.o
34obj-y	+= extable.o
35obj-y	+= interrupts.o
36obj-$(CONFIG_CMD_KGDB) += kgdb.o
37obj-$(CONFIG_CMD_IDE) += ide.o
38obj-y	+= stack.o
39obj-y	+= time.o
40
41# Don't include the MPC5xxx special memcpy into the
42# SPL U-Boot image. memcpy is used in the SPL NOR
43# flash driver. And we need the real, fast memcpy
44# here. We have no problems with unaligned access.
45ifndef CONFIG_SPL_BUILD
46# Workaround for local bus unaligned access problems
47# on MPC512x and MPC5200
48ifdef CONFIG_MPC512X
49AFLAGS_ppcstring.o += -Dmemcpy=__memcpy
50obj-y += memcpy_mpc5200.o
51endif
52ifdef CONFIG_MPC5200
53AFLAGS_ppcstring.o += -Dmemcpy=__memcpy
54obj-y += memcpy_mpc5200.o
55endif
56endif
57
58endif # not minimal
59
60ifdef CONFIG_SPL_BUILD
61obj-$(CONFIG_SPL_FRAMEWORK) += spl.o
62endif
63