/* * Copyright (c) 2013-2015 Wind River Systems, Inc. * Copyright (c) 2016 Intel Corporation. * Copyright (c) 2018 Vincent van der Locht * Copyright (c) 2017 Justin Watson * Copyright (c) 2019-2024 Gerson Fernando Budke * * SPDX-License-Identifier: Apache-2.0 */ /** * @file SoC configuration macros for the Atmel SAM4E family processors. */ #ifndef _SOC_ATMEL_SAM_SAM4E_SOC_H_ #define _SOC_ATMEL_SAM_SAM4E_SOC_H_ #include #ifndef _ASMLANGUAGE #define DONT_USE_CMSIS_INIT #define DONT_USE_PREDEFINED_CORE_HANDLERS #define DONT_USE_PREDEFINED_PERIPHERALS_HANDLERS #if defined(CONFIG_SOC_SAM4E16E) #include #elif defined(CONFIG_SOC_SAM4E16C) #include #elif defined(CONFIG_SOC_SAM4E8E) #include #elif defined(CONFIG_SOC_SAM4E8C) #include #else #error Library does not support the specified device. #endif #include "../common/soc_pmc.h" #include "../common/soc_gpio.h" #include "../common/soc_supc.h" #include "../common/atmel_sam_dt.h" /** Processor Clock (HCLK) Frequency */ #define SOC_ATMEL_SAM_HCLK_FREQ_HZ ATMEL_SAM_DT_CPU_CLK_FREQ_HZ /** Master Clock (MCK) Frequency */ #define SOC_ATMEL_SAM_MCK_FREQ_HZ SOC_ATMEL_SAM_HCLK_FREQ_HZ #endif /* !_ASMLANGUAGE */ #endif /* _SOC_ATMEL_SAM_SAM4E_SOC_H_ */