zephyr/soc/ti/k3/am6x/Kconfig.soc
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

38 lines
655 B
Plaintext

# Copyright (c) 2023 Enphase Energy
# SPDX-License-Identifier: Apache-2.0
config SOC_SERIES_AM6X
bool
select SOC_FAMILY_TI_K3
config SOC_SERIES_AM6X_A53
bool
select SOC_SERIES_AM6X
help
Enable support for AM6X A53 Series.
config SOC_SERIES_AM6X_M4
bool
select SOC_SERIES_AM6X
help
Enable support for AM62X M4 Series.
config SOC_AM6234_A53
bool
select SOC_SERIES_AM6X_A53
config SOC_AM6234_M4
bool
select SOC_SERIES_AM6X_M4
config SOC_AM6442_M4
bool
select SOC_SERIES_AM6X_M4
config SOC_SERIES
default "am6x" if SOC_SERIES_AM6X
config SOC
default "am6234" if SOC_AM6234_M4 || SOC_AM6234_A53
default "am6442" if SOC_AM6442_M4