70 lines
1.9 KiB
C
70 lines
1.9 KiB
C
|
/*
|
||
|
* Copyright (c) 2020 Gerson Fernando Budke <nandojve@gmail.com>
|
||
|
* Copyright (c) 2018 Vincent van der Locht
|
||
|
* Copyright (c) 2017 Justin Watson
|
||
|
* Copyright (c) 2016 Intel Corporation.
|
||
|
* Copyright (c) 2013-2015 Wind River Systems, Inc.
|
||
|
*
|
||
|
* SPDX-License-Identifier: Apache-2.0
|
||
|
*/
|
||
|
|
||
|
/**
|
||
|
* @file SoC configuration macros for the Atmel SAM3S family processors.
|
||
|
*/
|
||
|
|
||
|
#ifndef _ATMEL_SAM3S_SOC_H_
|
||
|
#define _ATMEL_SAM3S_SOC_H_
|
||
|
|
||
|
#include <zephyr/sys/util.h>
|
||
|
|
||
|
#ifndef _ASMLANGUAGE
|
||
|
|
||
|
|
||
|
#define DONT_USE_CMSIS_INIT
|
||
|
#define DONT_USE_PREDEFINED_CORE_HANDLERS
|
||
|
#define DONT_USE_PREDEFINED_PERIPHERALS_HANDLERS
|
||
|
|
||
|
#if defined(CONFIG_SOC_PART_NUMBER_SAM3S1A)
|
||
|
#include <sam3s1a.h>
|
||
|
#elif defined(CONFIG_SOC_PART_NUMBER_SAM3S1B)
|
||
|
#include <sam3s1b.h>
|
||
|
#elif defined(CONFIG_SOC_PART_NUMBER_SAM3S1C)
|
||
|
#include <sam3s1c.h>
|
||
|
#elif defined(CONFIG_SOC_PART_NUMBER_SAM3S2A)
|
||
|
#include <sam3s2a.h>
|
||
|
#elif defined(CONFIG_SOC_PART_NUMBER_SAM3S2B)
|
||
|
#include <sam3s2b.h>
|
||
|
#elif defined(CONFIG_SOC_PART_NUMBER_SAM3S2C)
|
||
|
#include <sam3s2c.h>
|
||
|
#elif defined(CONFIG_SOC_PART_NUMBER_SAM3S4A)
|
||
|
#include <sam3s4a.h>
|
||
|
#elif defined(CONFIG_SOC_PART_NUMBER_SAM3S4B)
|
||
|
#include <sam3s4b.h>
|
||
|
#elif defined(CONFIG_SOC_PART_NUMBER_SAM3S4C)
|
||
|
#include <sam3s2c.h>
|
||
|
#elif defined(CONFIG_SOC_PART_NUMBER_SAM3S8B)
|
||
|
#include <sam3s8b.h>
|
||
|
#elif defined(CONFIG_SOC_PART_NUMBER_SAM3S8C)
|
||
|
#include <sam3s8c.h>
|
||
|
#elif defined(CONFIG_SOC_PART_NUMBER_SAM3SD8B)
|
||
|
#include <sam3sd8c.h>
|
||
|
#elif defined(CONFIG_SOC_PART_NUMBER_SAM3SD8C)
|
||
|
#include <sam3sd8c.h>
|
||
|
#else
|
||
|
#error Library does not support the specified device.
|
||
|
#endif
|
||
|
|
||
|
#include "../common/soc_pmc.h"
|
||
|
#include "../common/soc_gpio.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 /* _ATMEL_SAM3S_SOC_H_ */
|