Browse Source
The Qualcomm Snapdragon 210 (MSM8909) SoC is very similar to the existing MSM8916, except for: - ARM Cortex-A7 instead of Cortex-A53 (AArch32-only) - MMU-500 r2p0 instead of r0p0 (need to clear CACHE_LOCK bit) - Different default BL31 address and UART number Make the existing MSM8916 platform port usable for MSM8909 as well by adding some minimal if statements where necessary plus the platform make files for msm8909. Change-Id: I8eca5bd8f2486cc2174562fb5de28f8dffa0d874 Signed-off-by: Stephan Gerhold <stephan@gerhold.net>pull/2000/head
Stephan Gerhold
2 years ago
4 changed files with 29 additions and 2 deletions
@ -0,0 +1,13 @@ |
|||
#
|
|||
# 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 ?= 0x87e80000 |
|||
QTI_UART_NUM ?= 1 |
|||
|
|||
include plat/qti/msm8916/platform.mk |
@ -0,0 +1,7 @@ |
|||
#
|
|||
# Copyright (c) 2022-2023, Stephan Gerhold <stephan@gerhold.net>
|
|||
#
|
|||
# SPDX-License-Identifier: BSD-3-Clause
|
|||
#
|
|||
|
|||
include plat/qti/msm8916/sp_min/sp_min-msm8916.mk |
Loading…
Reference in new issue