Nishanth Menon | 0192f89 | 2016-10-14 01:13:34 +0000 | [diff] [blame] | 1 | # |
| 2 | # Copyright (c) 2017-2018, ARM Limited and Contributors. All rights reserved. |
| 3 | # |
| 4 | # SPDX-License-Identifier: BSD-3-Clause |
| 5 | # |
| 6 | |
| 7 | PLAT_PATH := plat/ti/k3 |
Nishanth Menon | f49cf9e | 2017-09-20 01:32:13 -0500 | [diff] [blame] | 8 | TARGET_BOARD ?= generic |
Nishanth Menon | 0192f89 | 2016-10-14 01:13:34 +0000 | [diff] [blame] | 9 | |
| 10 | include ${PLAT_PATH}/common/plat_common.mk |
Nishanth Menon | f49cf9e | 2017-09-20 01:32:13 -0500 | [diff] [blame] | 11 | include ${PLAT_PATH}/board/${TARGET_BOARD}/board.mk |
Nishanth Menon | 0192f89 | 2016-10-14 01:13:34 +0000 | [diff] [blame] | 12 | |
Andrew Davis | 49dd30c | 2022-11-11 12:49:38 -0600 | [diff] [blame] | 13 | BL32_BASE ?= 0x9e800000 |
| 14 | $(eval $(call add_define,BL32_BASE)) |
| 15 | |
| 16 | PRELOADED_BL33_BASE ?= 0x80080000 |
| 17 | $(eval $(call add_define,PRELOADED_BL33_BASE)) |
| 18 | |
| 19 | K3_HW_CONFIG_BASE ?= 0x82000000 |
| 20 | $(eval $(call add_define,K3_HW_CONFIG_BASE)) |
| 21 | |
| 22 | PLAT_INCLUDES += -Iplat/ti/k3/board/${TARGET_BOARD}/include |
| 23 | |
Nishanth Menon | 0192f89 | 2016-10-14 01:13:34 +0000 | [diff] [blame] | 24 | # modify BUILD_PLAT to point to board specific build directory |
Grant Likely | 388248a | 2020-07-30 08:50:10 +0100 | [diff] [blame] | 25 | BUILD_PLAT := $(abspath ${BUILD_BASE})/${PLAT}/${TARGET_BOARD}/${BUILD_TYPE} |