Tom Rini | 83d290c | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | # SPDX-License-Identifier: GPL-2.0+ |
David Feng | 0ae7653 | 2013-12-14 11:47:35 +0800 | [diff] [blame] | 2 | # |
| 3 | # (C) Copyright 2000-2003 |
| 4 | # Wolfgang Denk, DENX Software Engineering, wd@denx.de. |
David Feng | 0ae7653 | 2013-12-14 11:47:35 +0800 | [diff] [blame] | 5 | |
| 6 | extra-y := start.o |
| 7 | |
| 8 | obj-y += cpu.o |
Philipp Tomsich | e9e5d9d | 2017-07-28 17:38:42 +0200 | [diff] [blame] | 9 | ifndef CONFIG_$(SPL_TPL_)TIMER |
Andre Przywara | 7842b6a | 2018-04-12 04:24:46 +0300 | [diff] [blame] | 10 | obj-$(CONFIG_SYS_ARCH_TIMER) += generic_timer.o |
Philipp Tomsich | e9e5d9d | 2017-07-28 17:38:42 +0200 | [diff] [blame] | 11 | endif |
David Feng | 0ae7653 | 2013-12-14 11:47:35 +0800 | [diff] [blame] | 12 | obj-y += cache_v8.o |
Andre Przywara | 1416e2d | 2018-07-25 00:57:01 +0100 | [diff] [blame] | 13 | ifdef CONFIG_SPL_BUILD |
| 14 | obj-$(CONFIG_ARMV8_SPL_EXCEPTION_VECTORS) += exceptions.o |
| 15 | else |
David Feng | 0ae7653 | 2013-12-14 11:47:35 +0800 | [diff] [blame] | 16 | obj-y += exceptions.o |
Heinrich Schuchardt | f6c6df7 | 2019-01-08 18:13:06 +0100 | [diff] [blame] | 17 | obj-y += exception_level.o |
Andre Przywara | 1416e2d | 2018-07-25 00:57:01 +0100 | [diff] [blame] | 18 | endif |
David Feng | 0ae7653 | 2013-12-14 11:47:35 +0800 | [diff] [blame] | 19 | obj-y += cache.o |
| 20 | obj-y += tlb.o |
David Feng | 0ae7653 | 2013-12-14 11:47:35 +0800 | [diff] [blame] | 21 | obj-y += transition.o |
Ang, Chee Hong | fd50eac | 2019-02-12 00:27:03 -0800 | [diff] [blame] | 22 | ifndef CONFIG_ARMV8_PSCI |
Sergey Temerkhanov | a5b9fa3 | 2015-10-14 09:55:46 -0700 | [diff] [blame] | 23 | obj-y += fwcall.o |
Ang, Chee Hong | fd50eac | 2019-02-12 00:27:03 -0800 | [diff] [blame] | 24 | endif |
Hou Zhiqiang | 45684ae | 2016-06-28 20:18:16 +0800 | [diff] [blame] | 25 | obj-y += cpu-dt.o |
Masahiro Yamada | c54bcf6 | 2017-04-14 11:10:23 +0900 | [diff] [blame] | 26 | obj-$(CONFIG_ARM_SMCCC) += smccc-call.o |
| 27 | |
Masahiro Yamada | 6b6024e | 2016-06-27 19:31:05 +0900 | [diff] [blame] | 28 | ifndef CONFIG_SPL_BUILD |
| 29 | obj-$(CONFIG_ARMV8_SPIN_TABLE) += spin_table.o spin_table_v8.o |
| 30 | endif |
Hou Zhiqiang | 0897eb2 | 2017-01-16 17:31:47 +0800 | [diff] [blame] | 31 | obj-$(CONFIG_$(SPL_)ARMV8_SEC_FIRMWARE_SUPPORT) += sec_firmware.o sec_firmware_asm.o |
Masahiro Yamada | 165ecd2 | 2014-11-13 12:28:40 +0900 | [diff] [blame] | 32 | |
Mingkai Hu | 9f3183d | 2015-10-26 19:47:50 +0800 | [diff] [blame] | 33 | obj-$(CONFIG_FSL_LAYERSCAPE) += fsl-layerscape/ |
Eddy Petrișor | 9702ec0 | 2016-06-05 03:43:00 +0300 | [diff] [blame] | 34 | obj-$(CONFIG_S32V234) += s32v234/ |
Peter Griffin | 8a954eb | 2015-07-30 18:55:20 +0100 | [diff] [blame] | 35 | obj-$(CONFIG_TARGET_HIKEY) += hisilicon/ |
macro.wave.z@gmail.com | 14bf25d | 2016-12-08 11:58:24 +0800 | [diff] [blame] | 36 | obj-$(CONFIG_ARMV8_PSCI) += psci.o |
Andre Przywara | aa9226f | 2017-01-02 11:48:27 +0000 | [diff] [blame] | 37 | obj-$(CONFIG_ARCH_SUNXI) += lowlevel_init.o |