wdenk | f47713f | 2002-09-08 19:49:36 +0000 | [diff] [blame] | 1 | # |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 2 | # (C) Copyright 2002-2006 |
wdenk | f47713f | 2002-09-08 19:49:36 +0000 | [diff] [blame] | 3 | # Wolfgang Denk, DENX Software Engineering, wd@denx.de. |
| 4 | # |
Wolfgang Denk | 1a45966 | 2013-07-08 09:37:19 +0200 | [diff] [blame] | 5 | # SPDX-License-Identifier: GPL-2.0+ |
wdenk | f47713f | 2002-09-08 19:49:36 +0000 | [diff] [blame] | 6 | # |
| 7 | |
Marek Vasut | c5a543e | 2016-05-26 18:01:40 +0200 | [diff] [blame] | 8 | lib-$(CONFIG_USE_PRIVATE_LIBGCC) += ashldi3.o ashrdi3.o lshrdi3.o \ |
Marek Vasut | 0bf65c6 | 2016-05-26 18:01:44 +0200 | [diff] [blame] | 9 | lib1funcs.o uldivmod.o div0.o \ |
| 10 | div64.o muldi3.o |
wdenk | f47713f | 2002-09-08 19:49:36 +0000 | [diff] [blame] | 11 | |
rev13@wp.pl | 12d8a72 | 2015-03-01 12:44:39 +0100 | [diff] [blame] | 12 | ifdef CONFIG_CPU_V7M |
| 13 | obj-y += vectors_m.o crt0.o |
| 14 | else ifdef CONFIG_ARM64 |
David Feng | 0ae7653 | 2013-12-14 11:47:35 +0800 | [diff] [blame] | 15 | obj-y += crt0_64.o |
| 16 | else |
Albert ARIBAUD | 41623c9 | 2014-04-15 16:13:51 +0200 | [diff] [blame] | 17 | obj-y += vectors.o crt0.o |
David Feng | 0ae7653 | 2013-12-14 11:47:35 +0800 | [diff] [blame] | 18 | endif |
Masahiro Yamada | fa8f950 | 2013-10-17 17:34:52 +0900 | [diff] [blame] | 19 | |
Philipp Tomsich | b4806d6 | 2017-10-10 16:21:13 +0200 | [diff] [blame] | 20 | ifdef CONFIG_ARM64 |
| 21 | obj-y += setjmp_aarch64.o |
| 22 | else |
| 23 | obj-y += setjmp.o |
| 24 | endif |
| 25 | |
Masahiro Yamada | fa8f950 | 2013-10-17 17:34:52 +0900 | [diff] [blame] | 26 | ifndef CONFIG_SPL_BUILD |
David Feng | 0ae7653 | 2013-12-14 11:47:35 +0800 | [diff] [blame] | 27 | ifdef CONFIG_ARM64 |
| 28 | obj-y += relocate_64.o |
| 29 | else |
| 30 | obj-y += relocate.o |
| 31 | endif |
Masahiro Yamada | fa8f950 | 2013-10-17 17:34:52 +0900 | [diff] [blame] | 32 | |
Matt Porter | f99993c | 2015-05-05 15:00:23 -0400 | [diff] [blame] | 33 | obj-$(CONFIG_CPU_V7M) += cmd_boot.o |
Masahiro Yamada | fa8f950 | 2013-10-17 17:34:52 +0900 | [diff] [blame] | 34 | obj-$(CONFIG_OF_LIBFDT) += bootm-fdt.o |
Bin Chen | 6808ef9 | 2018-01-27 16:59:09 +1100 | [diff] [blame] | 35 | obj-$(CONFIG_CMD_BOOTI) += bootm.o image.o |
Masahiro Yamada | fa8f950 | 2013-10-17 17:34:52 +0900 | [diff] [blame] | 36 | obj-$(CONFIG_CMD_BOOTM) += bootm.o |
Tom Rini | 5db2890 | 2016-08-12 08:31:15 -0400 | [diff] [blame] | 37 | obj-$(CONFIG_CMD_BOOTZ) += bootm.o zimage.o |
Masahiro Yamada | fa8f950 | 2013-10-17 17:34:52 +0900 | [diff] [blame] | 38 | obj-$(CONFIG_SYS_L2_PL310) += cache-pl310.o |
Masahiro Yamada | fa8f950 | 2013-10-17 17:34:52 +0900 | [diff] [blame] | 39 | else |
| 40 | obj-$(CONFIG_SPL_FRAMEWORK) += spl.o |
Ladislav Michl | 431889d | 2016-07-12 20:28:14 +0200 | [diff] [blame] | 41 | obj-$(CONFIG_SPL_FRAMEWORK) += zimage.o |
B, Ravi | 984a3c8 | 2017-04-18 17:27:26 +0530 | [diff] [blame] | 42 | obj-$(CONFIG_OF_LIBFDT) += bootm-fdt.o |
Masahiro Yamada | fa8f950 | 2013-10-17 17:34:52 +0900 | [diff] [blame] | 43 | endif |
Tom Rini | 40d5534 | 2017-01-12 13:16:02 -0500 | [diff] [blame] | 44 | obj-$(CONFIG_$(SPL_)USE_ARCH_MEMSET) += memset.o |
| 45 | obj-$(CONFIG_$(SPL_)USE_ARCH_MEMCPY) += memcpy.o |
Darwin Rambo | 261d276 | 2014-06-09 11:12:59 -0700 | [diff] [blame] | 46 | obj-$(CONFIG_SEMIHOSTING) += semihosting.o |
Masahiro Yamada | fa8f950 | 2013-10-17 17:34:52 +0900 | [diff] [blame] | 47 | |
Albert ARIBAUD | d0b5d9d | 2014-02-22 17:53:42 +0100 | [diff] [blame] | 48 | obj-y += sections.o |
Andreas Bießmann | 68145d4 | 2015-02-06 23:06:45 +0100 | [diff] [blame] | 49 | obj-y += stack.o |
rev13@wp.pl | 12d8a72 | 2015-03-01 12:44:39 +0100 | [diff] [blame] | 50 | ifdef CONFIG_CPU_V7M |
| 51 | obj-y += interrupts_m.o |
| 52 | else ifdef CONFIG_ARM64 |
Andre Przywara | 98db26a | 2017-04-26 01:32:41 +0100 | [diff] [blame] | 53 | obj-$(CONFIG_FSL_LAYERSCAPE) += ccn504.o |
Andre Przywara | 0cef6cb | 2017-04-26 01:32:40 +0100 | [diff] [blame] | 54 | ifneq ($(CONFIG_GICV2)$(CONFIG_GICV3),) |
David Feng | c71645a | 2014-03-14 14:26:27 +0800 | [diff] [blame] | 55 | obj-y += gic_64.o |
Andre Przywara | 0cef6cb | 2017-04-26 01:32:40 +0100 | [diff] [blame] | 56 | endif |
David Feng | 0ae7653 | 2013-12-14 11:47:35 +0800 | [diff] [blame] | 57 | obj-y += interrupts_64.o |
| 58 | else |
Masahiro Yamada | fa8f950 | 2013-10-17 17:34:52 +0900 | [diff] [blame] | 59 | obj-y += interrupts.o |
David Feng | 0ae7653 | 2013-12-14 11:47:35 +0800 | [diff] [blame] | 60 | endif |
Stephen Warren | 1163625 | 2016-05-12 12:03:35 -0600 | [diff] [blame] | 61 | ifndef CONFIG_SYSRESET |
Masahiro Yamada | fa8f950 | 2013-10-17 17:34:52 +0900 | [diff] [blame] | 62 | obj-y += reset.o |
Simon Glass | c6aabe9 | 2015-08-30 16:55:18 -0600 | [diff] [blame] | 63 | endif |
Masahiro Yamada | fa8f950 | 2013-10-17 17:34:52 +0900 | [diff] [blame] | 64 | |
| 65 | obj-y += cache.o |
David Feng | 0ae7653 | 2013-12-14 11:47:35 +0800 | [diff] [blame] | 66 | ifndef CONFIG_ARM64 |
Vikas Manocha | bf4d049 | 2017-03-27 13:02:44 -0700 | [diff] [blame] | 67 | ifndef CONFIG_CPU_V7M |
Masahiro Yamada | fa8f950 | 2013-10-17 17:34:52 +0900 | [diff] [blame] | 68 | obj-y += cache-cp15.o |
David Feng | 0ae7653 | 2013-12-14 11:47:35 +0800 | [diff] [blame] | 69 | endif |
Vikas Manocha | bf4d049 | 2017-03-27 13:02:44 -0700 | [diff] [blame] | 70 | endif |
Masahiro Yamada | fa8f950 | 2013-10-17 17:34:52 +0900 | [diff] [blame] | 71 | |
Hou Zhiqiang | 45684ae | 2016-06-28 20:18:16 +0800 | [diff] [blame] | 72 | obj-y += psci-dt.o |
| 73 | |
Masahiro Yamada | 51b17d4 | 2014-09-01 11:06:34 +0900 | [diff] [blame] | 74 | obj-$(CONFIG_DEBUG_LL) += debug.o |
| 75 | |
Wolfgang Denk | f772acf | 2009-08-17 13:17:29 +0200 | [diff] [blame] | 76 | # For EABI conformant tool chains, provide eabi_compat() |
| 77 | ifneq (,$(findstring -mabi=aapcs-linux,$(PLATFORM_CPPFLAGS))) |
Masahiro Yamada | fa8f950 | 2013-10-17 17:34:52 +0900 | [diff] [blame] | 78 | extra-y += eabi_compat.o |
Wolfgang Denk | f772acf | 2009-08-17 13:17:29 +0200 | [diff] [blame] | 79 | endif |
Albert ARIBAUD | 62e9207 | 2015-10-23 18:06:40 +0200 | [diff] [blame] | 80 | |
| 81 | # some files can only build in ARM or THUMB2, not THUMB1 |
| 82 | |
Tom Rini | 3a64940 | 2017-03-18 09:01:44 -0400 | [diff] [blame] | 83 | ifdef CONFIG_$(SPL_)SYS_THUMB_BUILD |
Marek Vasut | c0db6f8 | 2016-05-26 18:01:37 +0200 | [diff] [blame] | 84 | asflags-$(CONFIG_HAS_THUMB2) += -DCONFIG_THUMB2_KERNEL |
Albert ARIBAUD | 62e9207 | 2015-10-23 18:06:40 +0200 | [diff] [blame] | 85 | ifndef CONFIG_HAS_THUMB2 |
| 86 | |
| 87 | # for C files, just apend -marm, which will override previous -mthumb* |
| 88 | |
Andre Przywara | ebda0cc | 2017-01-02 11:48:26 +0000 | [diff] [blame] | 89 | ifndef CONFIG_ARM64 |
Albert ARIBAUD | 62e9207 | 2015-10-23 18:06:40 +0200 | [diff] [blame] | 90 | CFLAGS_cache.o := -marm |
| 91 | CFLAGS_cache-cp15.o := -marm |
Andre Przywara | ebda0cc | 2017-01-02 11:48:26 +0000 | [diff] [blame] | 92 | endif |
Albert ARIBAUD | 62e9207 | 2015-10-23 18:06:40 +0200 | [diff] [blame] | 93 | |
| 94 | # For .S, drop -mthumb* and other thumb-related options. |
| 95 | # CFLAGS_REMOVE_* would not have an effet, so AFLAGS_REMOVE_* |
| 96 | # was implemented and is used here. |
| 97 | # Also, define ${target}_NO_THUMB_BUILD for these two targets |
| 98 | # so that the code knows it should not use Thumb. |
| 99 | |
| 100 | AFLAGS_REMOVE_memset.o := -mthumb -mthumb-interwork |
| 101 | AFLAGS_REMOVE_memcpy.o := -mthumb -mthumb-interwork |
| 102 | AFLAGS_memset.o := -DMEMSET_NO_THUMB_BUILD |
| 103 | AFLAGS_memcpy.o := -DMEMCPY_NO_THUMB_BUILD |
Albert ARIBAUD | 62e9207 | 2015-10-23 18:06:40 +0200 | [diff] [blame] | 104 | endif |
| 105 | endif |
Simon Glass | dd46eef | 2016-11-07 08:47:10 -0700 | [diff] [blame] | 106 | |
| 107 | # For building EFI apps |
| 108 | CFLAGS_$(EFI_CRT0) := $(CFLAGS_EFI) |
| 109 | CFLAGS_REMOVE_$(EFI_CRT0) := $(CFLAGS_NON_EFI) |
| 110 | |
| 111 | CFLAGS_$(EFI_RELOC) := $(CFLAGS_EFI) |
| 112 | CFLAGS_REMOVE_$(EFI_RELOC) := $(CFLAGS_NON_EFI) |
| 113 | |
Alexander Graf | 95b62b2 | 2016-11-17 22:40:10 +0100 | [diff] [blame] | 114 | extra-$(CONFIG_CMD_BOOTEFI_HELLO_COMPILE) += $(EFI_CRT0) $(EFI_RELOC) |
Heinrich Schuchardt | 8218f7b | 2018-01-19 19:01:05 +0100 | [diff] [blame] | 115 | extra-$(CONFIG_CMD_BOOTEFI_SELFTEST) += $(EFI_CRT0) $(EFI_RELOC) |
Simon Glass | dd46eef | 2016-11-07 08:47:10 -0700 | [diff] [blame] | 116 | extra-$(CONFIG_EFI) += $(EFI_CRT0) $(EFI_RELOC) |