]> git.ipfire.org Git - people/ms/u-boot.git/blame - arch/arm/lib/Makefile
arm64: core support
[people/ms/u-boot.git] / arch / arm / lib / Makefile
CommitLineData
f47713f3 1#
f9328639 2# (C) Copyright 2002-2006
f47713f3
WD
3# Wolfgang Denk, DENX Software Engineering, wd@denx.de.
4#
1a459660 5# SPDX-License-Identifier: GPL-2.0+
f47713f3
WD
6#
7
fa8f9508
MY
8# Build private libgcc only when asked for
9ifdef USE_PRIVATE_LIBGCC
10lib-y += _ashldi3.o
11lib-y += _ashrdi3.o
12lib-y += _divsi3.o
13lib-y += _lshrdi3.o
14lib-y += _modsi3.o
15lib-y += _udivsi3.o
16lib-y += _umodsi3.o
17lib-y += div0.o
18endif
823afe7c 19
0ae76531
DF
20ifdef CONFIG_ARM64
21obj-y += crt0_64.o
22else
23obj-y += crt0.o
24endif
e05e5de7 25
c497be78 26ifndef CONFIG_SPL_BUILD
0ae76531
DF
27ifdef CONFIG_ARM64
28obj-y += relocate_64.o
29else
30obj-y += relocate.o
31endif
959daa21 32ifndef CONFIG_SYS_GENERIC_BOARD
fa8f9508 33obj-y += board.o
959daa21 34endif
0ae76531 35obj-y += sections.o
959daa21 36
fa8f9508
MY
37obj-$(CONFIG_OF_LIBFDT) += bootm-fdt.o
38obj-$(CONFIG_CMD_BOOTM) += bootm.o
39obj-$(CONFIG_SYS_L2_PL310) += cache-pl310.o
40obj-$(CONFIG_USE_ARCH_MEMSET) += memset.o
41obj-$(CONFIG_USE_ARCH_MEMCPY) += memcpy.o
6507f133 42else
fa8f9508 43obj-$(CONFIG_SPL_FRAMEWORK) += spl.o
05bad4aa 44endif
823afe7c 45
0ae76531
DF
46ifdef CONFIG_ARM64
47obj-y += interrupts_64.o
48else
fa8f9508 49obj-y += interrupts.o
0ae76531 50endif
fa8f9508 51obj-y += reset.o
52b1bf2c 52
fa8f9508 53obj-y += cache.o
0ae76531 54ifndef CONFIG_ARM64
fa8f9508 55obj-y += cache-cp15.o
0ae76531 56endif
f772acf8
WD
57
58# For EABI conformant tool chains, provide eabi_compat()
59ifneq (,$(findstring -mabi=aapcs-linux,$(PLATFORM_CPPFLAGS)))
fa8f9508 60extra-y += eabi_compat.o
52b1bf2c 61endif