Antonio Nino Diaz | 8cd7ea3 | 2018-10-30 11:08:08 +0000 | [diff] [blame] | 1 | # |
Paul Beesley | 72f9ec6 | 2019-10-15 14:20:34 +0000 | [diff] [blame] | 2 | # Copyright (c) 2017-2019, ARM Limited and Contributors. All rights reserved. |
Antonio Nino Diaz | 8cd7ea3 | 2018-10-30 11:08:08 +0000 | [diff] [blame] | 3 | # |
| 4 | # SPDX-License-Identifier: BSD-3-Clause |
| 5 | # |
| 6 | |
| 7 | ifneq (${SPD},none) |
Paul Beesley | 72f9ec6 | 2019-10-15 14:20:34 +0000 | [diff] [blame] | 8 | $(error "Error: SPD and SPM_MM are incompatible build options.") |
Antonio Nino Diaz | 8cd7ea3 | 2018-10-30 11:08:08 +0000 | [diff] [blame] | 9 | endif |
| 10 | ifneq (${ARCH},aarch64) |
Paul Beesley | 72f9ec6 | 2019-10-15 14:20:34 +0000 | [diff] [blame] | 11 | $(error "Error: SPM_MM is only supported on aarch64.") |
Antonio Nino Diaz | 8cd7ea3 | 2018-10-30 11:08:08 +0000 | [diff] [blame] | 12 | endif |
| 13 | |
Antonio Nino Diaz | 8338d36 | 2019-01-21 11:52:57 +0000 | [diff] [blame] | 14 | SPM_SOURCES := $(addprefix services/std_svc/spm_mm/, \ |
Paul Beesley | 49cabec | 2019-10-15 16:14:14 +0000 | [diff] [blame] | 15 | ${ARCH}/spm_mm_helpers.S \ |
| 16 | ${ARCH}/spm_mm_shim_exceptions.S \ |
Paul Beesley | e449d6a | 2019-10-15 16:13:10 +0000 | [diff] [blame] | 17 | spm_mm_main.c \ |
| 18 | spm_mm_setup.c \ |
| 19 | spm_mm_xlat.c) |
Antonio Nino Diaz | 8cd7ea3 | 2018-10-30 11:08:08 +0000 | [diff] [blame] | 20 | |
| 21 | |
| 22 | # Let the top-level Makefile know that we intend to include a BL32 image |
| 23 | NEED_BL32 := yes |
Ard Biesheuvel | 923cd77 | 2019-01-01 11:01:41 +0100 | [diff] [blame] | 24 | |
| 25 | # required so that SPM code executing at S-EL0 can access the timer registers |
| 26 | NS_TIMER_SWITCH := 1 |