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