zephyr/soc/ti/k3/am6x/Kconfig
Daniel Schultz 145e17d1c9 soc: ti: k3: Add support for AM6442
The AM64x and AM62x are both SOCs from the TI K3 family
and share common architecture designs. The M4F subsystem
is actuall identical on both SOCs.

Therefore, just add all missing CONFIGs, files, etc. to
support the AM6442x SOC.

Since MMR and RAT initialization are identical too, both
functions can be re-used. However, since they might
differ in the future, the am64x has it's own init
function.

Signed-off-by: Daniel Schultz <d.schultz@phytec.de>
2024-04-24 15:56:01 -04:00

25 lines
596 B
Plaintext

# Copyright (c) 2023 Enphase Energy
# SPDX-License-Identifier: Apache-2.0
config SOC_SERIES_AM6X_A53
select ARM64
select CPU_CORTEX_A53
select ARM_ARCH_TIMER if SYS_CLOCK_EXISTS
config SOC_SERIES_AM6X_M4
select ARM
select CPU_CORTEX_M4
select CPU_CORTEX_M_HAS_SYSTICK
select DYNAMIC_INTERRUPTS
select CPU_CORTEX_M_HAS_DWT
select OPENAMP_RSC_TABLE
select UART_NS16550_ACCESS_WORD_ONLY
select EXTERNAL_ADDRESS_TRANSLATION
select MM_DRV
select MM_TI_RAT
config SOC_PART_NUMBER
default "AM6234" if SOC_AM6234_A53
default "AM6234" if SOC_AM6234_M4
default "AM6442" if SOC_AM6442_M4