1#
2# Copyright 2018-2022 NXP
3#
4# SPDX-License-Identifier: BSD-3-Clause
5#
6
7# board-specific build parameters
8BOOT_MODE	?=	qspi
9BOARD		:=	ls1046aqds
10POVDD_ENABLE	:=	no
11
12 # DDR Compilation Configs
13NUM_OF_DDRC	:=	1
14DDRC_NUM_DIMM	:=	1
15DDRC_NUM_CS	:=	4
16DDR_ECC_EN	:=	yes
17CONFIG_STATIC_DDR := 0
18
19# On-Board Flash Details
20QSPI_FLASH_SZ	:=	0x20000000
21NOR_FLASH_SZ	:=	0x20000000
22
23# Platform specific features.
24WARM_BOOT	:=	no
25
26# Adding Platform files build files
27BL2_SOURCES	+=	${BOARD_PATH}/ddr_init.c\
28			${BOARD_PATH}/platform.c
29
30SUPPORTED_BOOT_MODE	:=	qspi	\
31				sd	\
32				nor	\
33				nand
34
35# Adding platform board build info
36include plat/nxp/common/plat_make_helper/plat_common_def.mk
37
38# Adding SoC build info
39include plat/nxp/soc-ls1046a/soc.mk
40