]> git.kernelconcepts.de Git - karo-tx-uboot.git/blob - arch/arm/lib/Makefile
karo: fdt: fix panel-dpi support
[karo-tx-uboot.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 _divsi3.o \
9                         _lshrdi3.o _modsi3.o _udivsi3.o _umodsi3.o div0.o
10
11 ifdef CONFIG_CPU_V7M
12 obj-y   += vectors_m.o crt0.o
13 else ifdef CONFIG_ARM64
14 obj-y   += crt0_64.o
15 else
16 obj-y   += vectors.o crt0.o
17 endif
18
19 ifndef CONFIG_SPL_BUILD
20 ifdef CONFIG_ARM64
21 obj-y   += relocate_64.o
22 else
23 obj-y   += relocate.o
24 endif
25 ifndef CONFIG_SYS_GENERIC_BOARD
26 obj-y   += board.o
27 endif
28
29 obj-$(CONFIG_CPU_V7M) += cmd_boot.o
30 obj-$(CONFIG_OF_LIBFDT) += bootm-fdt.o
31 obj-$(CONFIG_CMD_BOOTM) += bootm.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 endif
38 obj-$(CONFIG_SEMIHOSTING) += semihosting.o
39
40 obj-y   += sections.o
41 obj-y   += stack.o
42 ifdef CONFIG_CPU_V7M
43 obj-y   += interrupts_m.o
44 else ifdef CONFIG_ARM64
45 obj-y   += gic_64.o
46 obj-y   += interrupts_64.o
47 else
48 obj-y   += interrupts.o
49 endif
50 obj-y   += reset.o
51
52 obj-y   += cache.o
53 ifndef CONFIG_ARM64
54 obj-y   += cache-cp15.o
55 endif
56
57 obj-$(CONFIG_DEBUG_LL)  += debug.o
58
59 # For EABI conformant tool chains, provide eabi_compat()
60 ifneq (,$(findstring -mabi=aapcs-linux,$(PLATFORM_CPPFLAGS)))
61 extra-y += eabi_compat.o
62 endif