Merge git://git.denx.de/u-boot-fsl-qoriq
[oweals/u-boot.git] / arch / arm / lib / Makefile
1 #
2 # (C) Copyright 2002-2006
3 # Wolfgang Denk, DENX Software Engineering, wd@denx.de.
4 #
5 # SPDX-License-Identifier:      GPL-2.0+
6 #
7
8 lib-$(CONFIG_USE_PRIVATE_LIBGCC) += ashldi3.o ashrdi3.o lshrdi3.o \
9                                     lib1funcs.o uldivmod.o div0.o \
10                                     div64.o muldi3.o
11
12 ifdef CONFIG_CPU_V7M
13 obj-y   += vectors_m.o crt0.o
14 else ifdef CONFIG_ARM64
15 obj-y   += crt0_64.o
16 else
17 obj-y   += vectors.o crt0.o
18 endif
19
20 ifndef CONFIG_SPL_BUILD
21 ifdef CONFIG_ARM64
22 obj-y   += relocate_64.o
23 else
24 obj-y   += relocate.o
25 endif
26
27 obj-$(CONFIG_CPU_V7M) += cmd_boot.o
28 obj-$(CONFIG_OF_LIBFDT) += bootm-fdt.o
29 obj-$(CONFIG_CMD_BOOTI) += bootm.o
30 obj-$(CONFIG_CMD_BOOTM) += bootm.o
31 obj-$(CONFIG_CMD_BOOTZ) += bootm.o zimage.o
32 obj-$(CONFIG_SYS_L2_PL310) += cache-pl310.o
33 obj-$(CONFIG_USE_ARCH_MEMSET) += memset.o
34 obj-$(CONFIG_USE_ARCH_MEMCPY) += memcpy.o
35 else
36 obj-$(CONFIG_SPL_FRAMEWORK) += spl.o
37 obj-$(CONFIG_SPL_FRAMEWORK) += zimage.o
38 endif
39 obj-$(CONFIG_SEMIHOSTING) += semihosting.o
40
41 obj-y   += sections.o
42 obj-y   += stack.o
43 ifdef CONFIG_CPU_V7M
44 obj-y   += interrupts_m.o
45 else ifdef CONFIG_ARM64
46 obj-y   += ccn504.o
47 obj-y   += gic_64.o
48 obj-y   += interrupts_64.o
49 else
50 obj-y   += interrupts.o
51 endif
52 ifndef CONFIG_SYSRESET
53 obj-y   += reset.o
54 endif
55
56 obj-y   += cache.o
57 ifndef CONFIG_ARM64
58 obj-y   += cache-cp15.o
59 endif
60
61 obj-y   += psci-dt.o
62
63 obj-$(CONFIG_DEBUG_LL)  += debug.o
64
65 # For EABI conformant tool chains, provide eabi_compat()
66 ifneq (,$(findstring -mabi=aapcs-linux,$(PLATFORM_CPPFLAGS)))
67 extra-y += eabi_compat.o
68 endif
69
70 asflags-y += -DCONFIG_ARM_ASM_UNIFIED
71
72 # some files can only build in ARM or THUMB2, not THUMB1
73
74 ifdef CONFIG_SYS_THUMB_BUILD
75 asflags-$(CONFIG_HAS_THUMB2) += -DCONFIG_THUMB2_KERNEL
76 ifndef CONFIG_HAS_THUMB2
77
78 # for C files, just apend -marm, which will override previous -mthumb*
79
80 ifndef CONFIG_ARM64
81 CFLAGS_cache.o := -marm
82 CFLAGS_cache-cp15.o := -marm
83 endif
84
85 # For .S, drop -mthumb* and other thumb-related options.
86 # CFLAGS_REMOVE_* would not have an effet, so AFLAGS_REMOVE_*
87 # was implemented and is used here.
88 # Also, define ${target}_NO_THUMB_BUILD for these two targets
89 # so that the code knows it should not use Thumb.
90
91 AFLAGS_REMOVE_memset.o := -mthumb -mthumb-interwork
92 AFLAGS_REMOVE_memcpy.o := -mthumb -mthumb-interwork
93 AFLAGS_memset.o := -DMEMSET_NO_THUMB_BUILD
94 AFLAGS_memcpy.o := -DMEMCPY_NO_THUMB_BUILD
95 endif
96 endif
97
98 # For building EFI apps
99 CFLAGS_$(EFI_CRT0) := $(CFLAGS_EFI)
100 CFLAGS_REMOVE_$(EFI_CRT0) := $(CFLAGS_NON_EFI)
101
102 CFLAGS_$(EFI_RELOC) := $(CFLAGS_EFI)
103 CFLAGS_REMOVE_$(EFI_RELOC) := $(CFLAGS_NON_EFI)
104
105 extra-$(CONFIG_CMD_BOOTEFI_HELLO_COMPILE) += $(EFI_CRT0) $(EFI_RELOC)
106 extra-$(CONFIG_EFI) += $(EFI_CRT0) $(EFI_RELOC)