blob: 6d7b07be780264c1dd8df794bf33576ab683a3c3 [file] [log] [blame]
Pankaj Guptae4aa1bd2020-12-09 14:02:38 +05301#
2# Copyright (c) 2021, NXP. All rights reserved.
Raef Colesf511dca2023-02-01 15:55:08 +00003# Copyright (c) 2023, Arm Limited. All rights reserved.
Pankaj Guptae4aa1bd2020-12-09 14:02:38 +05304#
5# SPDX-License-Identifier: BSD-3-Clause
6#
7
8# Name of the platform defined source file name,
9# which contains platform defined UUID entries populated
10# in the plat_def_toc_entries[].
11PLAT_DEF_UUID_CONFIG_FILE_NAME := plat_def_uuid_config
12
Raef Colesf511dca2023-02-01 15:55:08 +000013PLAT_DEF_UUID_CONFIG_FILE_PATH := plat_fiptool/nxp/
Pankaj Guptae4aa1bd2020-12-09 14:02:38 +053014
15PLAT_DEF_OID := yes
16PLAT_DEF_UUID := yes
17PLAT_DEF_UUID_OID_CONFIG_PATH := ../../plat/nxp/common/fip_handler/common
18
19
20INCLUDE_PATHS += -I${PLAT_DEF_UUID_OID_CONFIG_PATH} \
21 -I./
Pankaj Guptae4aa1bd2020-12-09 14:02:38 +053022
23ifeq (${PLAT_DEF_OID},yes)
24HOSTCCFLAGS += -DPLAT_DEF_OID
25endif
26
27ifeq (${PLAT_DEF_UUID},yes)
28HOSTCCFLAGS += -DPLAT_DEF_FIP_UUID
29PLAT_OBJECTS += ${PLAT_DEF_UUID_CONFIG_FILE_PATH}/${PLAT_DEF_UUID_CONFIG_FILE_NAME}.o
30endif
31
32OBJECTS += ${PLAT_OBJECTS}