Julius Werner | b624ae0 | 2017-06-09 15:17:15 -0700 | [diff] [blame] | 1 | # |
| 2 | # Copyright (c) 2017, ARM Limited and Contributors. All rights reserved. |
| 3 | # |
| 4 | # SPDX-License-Identifier: BSD-3-Clause |
| 5 | # |
| 6 | |
| 7 | COREBOOT := 0 |
| 8 | $(eval $(call assert_boolean,COREBOOT)) |
| 9 | $(eval $(call add_define,COREBOOT)) |
| 10 | |
| 11 | ifeq (${COREBOOT},1) |
| 12 | |
| 13 | ifneq (${ARCH},aarch64) |
| 14 | $(error "coreboot only supports Trusted Firmware on AArch64.") |
| 15 | endif |
| 16 | |
| 17 | BL31_SOURCES += $(addprefix lib/coreboot/, \ |
| 18 | coreboot_table.c) |
| 19 | |
Julius Werner | 385176d | 2017-06-13 15:53:45 -0700 | [diff] [blame] | 20 | BL31_SOURCES += drivers/coreboot/cbmem_console/${ARCH}/cbmem_console.S |
| 21 | |
Julius Werner | b624ae0 | 2017-06-09 15:17:15 -0700 | [diff] [blame] | 22 | endif # COREBOOT |