mirror of
https://github.com/ARM-software/arm-trusted-firmware.git
synced 2025-04-16 17:44:19 +00:00

The Qualcomm X5 Modem (MDM9607) SoC is very similar to the existing MSM8916, except for: - Single core ARM Cortex-A7 - No GPU - MMU-500 r2p4 instead of r0p0 (need to clear CACHE_LOCK bit) - Different default BL31/BL33 address and UART number Make the existing MSM8916 platform port usable for MDM9607 as well by adding some minimal if statements where necessary plus the platform make files for mdm9607. Change-Id: I4dd02c8e29af6282d8d828c3027c5e333459ba36 Signed-off-by: Stephan Gerhold <stephan@gerhold.net>
14 lines
272 B
Makefile
14 lines
272 B
Makefile
#
|
|
# Copyright (c) 2022-2023, Stephan Gerhold <stephan@gerhold.net>
|
|
#
|
|
# SPDX-License-Identifier: BSD-3-Clause
|
|
#
|
|
|
|
ARM_ARCH_MAJOR := 7
|
|
ARM_CORTEX_A7 := yes
|
|
|
|
BL31_BASE ?= 0x87e00000
|
|
PRELOADED_BL33_BASE ?= 0x82900000
|
|
QTI_UART_NUM ?= 5
|
|
|
|
include plat/qti/msm8916/platform.mk
|