Add initial support for the Allwinner H3 SoC, commonly found in development boards like the Orange Pi series. This commit introduces the intial SoC support files: - Basic Kconfig configuration and SoC definition - MMU region setup for memory management - SoC-specific headers and device tree source include Signed-off-by: Muhammad Waleed Badar <walid.badar@gmail.com>
9 lines
274 B
CMake
9 lines
274 B
CMake
# Copyright (c) 2025 Muhammad Waleed Badar
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
zephyr_include_directories(.)
|
|
|
|
zephyr_sources_ifdef(CONFIG_ARM_AARCH32_MMU soc.c)
|
|
|
|
set(SOC_LINKER_SCRIPT ${ZEPHYR_BASE}/include/zephyr/arch/arm/cortex_a_r/scripts/linker.ld CACHE INTERNAL "")
|