1# 2# Copyright (c) 2017-2018, ARM Limited and Contributors. All rights reserved. 3# Copyright (c) 2018-2020, The Linux Foundation. All rights reserved. 4# 5# SPDX-License-Identifier: BSD-3-Clause 6# 7 8# Make for SC7180 QTI platform. 9 10QTI_PLAT_PATH := plat/qti 11CHIPSET := ${PLAT} 12 13# Turn On Separate code & data. 14SEPARATE_CODE_AND_RODATA := 1 15USE_COHERENT_MEM := 1 16WARMBOOT_ENABLE_DCACHE_EARLY := 1 17 18# Disable the PSCI platform compatibility layer 19ENABLE_PLAT_COMPAT := 0 20 21# Enable PSCI v1.0 extended state ID format 22PSCI_EXTENDED_STATE_ID := 1 23ARM_RECOM_STATE_ID_ENC := 1 24 25COLD_BOOT_SINGLE_CPU := 1 26PROGRAMMABLE_RESET_ADDRESS := 1 27 28RESET_TO_BL31 := 0 29 30MULTI_CONSOLE_API := 1 31 32QTI_SDI_BUILD := 0 33$(eval $(call assert_boolean,QTI_SDI_BUILD)) 34$(eval $(call add_define,QTI_SDI_BUILD)) 35 36#disable CTX_INCLUDE_AARCH32_REGS to support sc7180 gold cores 37override CTX_INCLUDE_AARCH32_REGS := 0 38WORKAROUND_CVE_2017_5715 := 0 39DYNAMIC_WORKAROUND_CVE_2018_3639 := 1 40# Enable stack protector. 41ENABLE_STACK_PROTECTOR := strong 42 43 44QTI_EXTERNAL_INCLUDES := -I${QTI_PLAT_PATH}/${CHIPSET}/inc \ 45 -I${QTI_PLAT_PATH}/common/inc \ 46 -I${QTI_PLAT_PATH}/common/inc/$(ARCH) \ 47 -I${QTI_PLAT_PATH}/qtiseclib/inc \ 48 -I${QTI_PLAT_PATH}/qtiseclib/inc/${CHIPSET} \ 49 50QTI_BL31_SOURCES := $(QTI_PLAT_PATH)/common/src/$(ARCH)/qti_helpers.S \ 51 $(QTI_PLAT_PATH)/common/src/$(ARCH)/qti_kryo4_silver.S \ 52 $(QTI_PLAT_PATH)/common/src/$(ARCH)/qti_kryo4_gold.S \ 53 $(QTI_PLAT_PATH)/common/src/$(ARCH)/qti_uart_console.S \ 54 $(QTI_PLAT_PATH)/common/src/qti_stack_protector.c \ 55 $(QTI_PLAT_PATH)/common/src/qti_common.c \ 56 $(QTI_PLAT_PATH)/common/src/qti_bl31_setup.c \ 57 $(QTI_PLAT_PATH)/common/src/qti_gic_v3.c \ 58 $(QTI_PLAT_PATH)/common/src/qti_interrupt_svc.c \ 59 $(QTI_PLAT_PATH)/common/src/qti_syscall.c \ 60 $(QTI_PLAT_PATH)/common/src/qti_topology.c \ 61 $(QTI_PLAT_PATH)/common/src/qti_pm.c \ 62 $(QTI_PLAT_PATH)/qtiseclib/src/qtiseclib_cb_interface.c \ 63 64 65PLAT_INCLUDES := -Iinclude/plat/common/ \ 66 67PLAT_INCLUDES += ${QTI_EXTERNAL_INCLUDES} 68 69include lib/xlat_tables_v2/xlat_tables.mk 70PLAT_BL_COMMON_SOURCES += ${XLAT_TABLES_LIB_SRCS} \ 71 plat/common/aarch64/crash_console_helpers.S \ 72 common/desc_image_load.c \ 73 lib/bl_aux_params/bl_aux_params.c \ 74 75include lib/coreboot/coreboot.mk 76 77#PSCI Sources. 78PSCI_SOURCES := plat/common/plat_psci_common.c \ 79 80# GIC-600 configuration 81GICV3_IMPL := GIC600 82# Include GICv3 driver files 83include drivers/arm/gic/v3/gicv3.mk 84 85#Timer sources 86TIMER_SOURCES := drivers/delay_timer/generic_delay_timer.c \ 87 drivers/delay_timer/delay_timer.c \ 88 89#GIC sources. 90GIC_SOURCES := plat/common/plat_gicv3.c \ 91 ${GICV3_SOURCES} \ 92 93BL31_SOURCES += ${QTI_BL31_SOURCES} \ 94 ${PSCI_SOURCES} \ 95 ${GIC_SOURCES} \ 96 ${TIMER_SOURCES} \ 97 98LIB_QTI_PATH := ${QTI_PLAT_PATH}/qtiseclib/lib/${CHIPSET} 99 100 101# Override this on the command line to point to the qtiseclib library which 102# will be available in coreboot.org 103QTISECLIB_PATH ?= 104 105ifeq ($(QTISECLIB_PATH),) 106# if No lib then use stub implementation for qtiseclib interface 107$(warning QTISECLIB_PATH is not provided while building, using stub implementation. \ 108 Please refer docs/plat/qti.rst for more details \ 109 THIS FIRMWARE WILL NOT BOOT!) 110BL31_SOURCES += plat/qti/qtiseclib/src/qtiseclib_interface_stub.c 111else 112# use library provided by QTISECLIB_PATH 113LDFLAGS += -L $(dir $(QTISECLIB_PATH)) 114LDLIBS += -l$(patsubst lib%.a,%,$(notdir $(QTISECLIB_PATH))) 115endif 116 117