arm-trusted-firmware/plat/nxp/soc-ls1043a/ls1043ardb/platform.mk
Jiafei Pan e4bd65fed8 feat(plat/nxp/ls1043ardb): add ls1043ardb board support
The LS1043A reference design board (RDB) is a computing, evaluation,
and development platform that supports the Layerscape LS1043A
architecture processor.

The old implementation in tf-a (plat/layerscape/board/ls1043/) is removed,
and this patch is adding it back, it is using the unified software
component and architecture with all the other Layerscape platforms.

Signed-off-by: Jiafei Pan <Jiafei.Pan@nxp.com>
Signed-off-by: Pankaj Gupta <pankaj.gupta@nxp.com>
Signed-off-by: Ruchika Gupta <ruchika.gupta@nxp.com>
Change-Id: I83eee2f9254267b148960b05e25b6c9ba86cf07e
2022-01-20 23:38:03 +08:00

41 lines
750 B
Makefile

#
# Copyright 2018-2021 NXP
#
# SPDX-License-Identifier: BSD-3-Clause
#
# board-specific build parameters
BOOT_MODE ?= nor
BOARD := ls1043ardb
POVDD_ENABLE := no
# DDR Compilation Configs
CONFIG_DDR_NODIMM := 1
NUM_OF_DDRC := 1
DDRC_NUM_DIMM := 0
DDRC_NUM_CS := 4
DDR_ECC_EN := no
CONFIG_STATIC_DDR := 0
# On-Board Flash Details
# 128MB IFC NOR Flash
NOR_FLASH_SZ := 0x8000000
# Platform specific features.
WARM_BOOT := no
# Adding Platform files build files
BL2_SOURCES += ${BOARD_PATH}/ddr_init.c\
${BOARD_PATH}/platform.c
SUPPORTED_BOOT_MODE := nor \
sd \
nand
# Adding platform board build info
include plat/nxp/common/plat_make_helper/plat_common_def.mk
# Adding SoC build info
include plat/nxp/soc-ls1043a/soc.mk