This adds supoprt for the Atmel SAME54 SoC. The SAME5x/SAMD5x is a line of Cortex-M4F MCUs that share peripherals with the sam0 Cortex-M0+ and saml1x Cortex-M23 parts. Signed-off-by: Benjamin Valentin <benjamin.valentin@ml-pa.com>
21 lines
390 B
Plaintext
21 lines
390 B
Plaintext
# Atmel SAM0 MCU family configuration options
|
|
|
|
# Copyright (c) 2017 Google LLC.
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
config SOC_FAMILY_SAM0
|
|
bool
|
|
select HAS_SEGGER_RTT
|
|
|
|
if SOC_FAMILY_SAM0
|
|
|
|
config SOC_FAMILY
|
|
string
|
|
default "atmel_sam0"
|
|
|
|
source "soc/arm/atmel_sam0/common/Kconfig.samd2x"
|
|
source "soc/arm/atmel_sam0/common/Kconfig.samd5x"
|
|
source "soc/arm/atmel_sam0/*/Kconfig.soc"
|
|
|
|
endif
|