mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
164 lines
6.7 KiB
C
164 lines
6.7 KiB
C
/*
|
|
* Copyright (C) 2018 Mesotic SAS
|
|
*
|
|
* This file is subject to the terms and conditions of the GNU Lesser
|
|
* General Public License v2.1. See the file LICENSE in the top level
|
|
* directory for more details.
|
|
*/
|
|
|
|
/**
|
|
* @ingroup cpu_saml1x
|
|
* @brief CPU specific definitions for internal peripheral handling
|
|
* @{
|
|
*
|
|
* @file
|
|
* @brief CPU specific definitions for internal peripheral handling
|
|
*
|
|
* @author Dylan Laduranty <dylan.laduranty@mesotic.com>
|
|
*/
|
|
|
|
#ifndef PERIPH_CPU_H
|
|
#define PERIPH_CPU_H
|
|
|
|
#include "periph_cpu_common.h"
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
/**
|
|
* @name Power mode configuration
|
|
* @{
|
|
*/
|
|
#define PM_NUM_MODES (2)
|
|
/** @} */
|
|
|
|
/**
|
|
* @name SAML1x GCLK definitions
|
|
* @{
|
|
*/
|
|
enum {
|
|
SAM0_GCLK_MAIN = 0, /**< 16 MHz main clock */
|
|
SAM0_GCLK_32KHZ, /**< 32 kHz clock */
|
|
};
|
|
/** @} */
|
|
|
|
/**
|
|
* @brief Pins that can be used for ADC input
|
|
*/
|
|
static const gpio_t sam0_adc_pins[1][10] = {
|
|
{
|
|
GPIO_PIN(PA, 2), GPIO_PIN(PA, 3), GPIO_PIN(PA, 4), GPIO_PIN(PA, 5),
|
|
GPIO_PIN(PA, 6), GPIO_PIN(PA, 7), GPIO_PIN(PA, 8), GPIO_PIN(PA, 9),
|
|
GPIO_PIN(PA, 10), GPIO_PIN(PA, 11)
|
|
}
|
|
};
|
|
|
|
/**
|
|
* @brief ADC pin aliases
|
|
* @{
|
|
*/
|
|
#define ADC_INPUTCTRL_MUXPOS_PA02 ADC_INPUTCTRL_MUXPOS_AIN0 /**< Alias for AIN0 */
|
|
#define ADC_INPUTCTRL_MUXPOS_PA03 ADC_INPUTCTRL_MUXPOS_AIN1 /**< Alias for AIN1 */
|
|
#define ADC_INPUTCTRL_MUXPOS_PA04 ADC_INPUTCTRL_MUXPOS_AIN2 /**< Alias for AIN2 */
|
|
#define ADC_INPUTCTRL_MUXPOS_PA05 ADC_INPUTCTRL_MUXPOS_AIN3 /**< Alias for AIN3 */
|
|
#define ADC_INPUTCTRL_MUXPOS_PA06 ADC_INPUTCTRL_MUXPOS_AIN4 /**< Alias for AIN4 */
|
|
#define ADC_INPUTCTRL_MUXPOS_PA07 ADC_INPUTCTRL_MUXPOS_AIN5 /**< Alias for AIN5 */
|
|
#define ADC_INPUTCTRL_MUXPOS_PA08 ADC_INPUTCTRL_MUXPOS_AIN6 /**< Alias for AIN6 */
|
|
#define ADC_INPUTCTRL_MUXPOS_PA09 ADC_INPUTCTRL_MUXPOS_AIN7 /**< Alias for AIN7 */
|
|
#define ADC_INPUTCTRL_MUXPOS_PA10 ADC_INPUTCTRL_MUXPOS_AIN8 /**< Alias for AIN8 */
|
|
#define ADC_INPUTCTRL_MUXPOS_PA11 ADC_INPUTCTRL_MUXPOS_AIN9 /**< Alias for AIN9 */
|
|
|
|
#define ADC_INPUTCTRL_MUXNEG_PA02 ADC_INPUTCTRL_MUXPOS_AIN0 /**< Alias for AIN0 */
|
|
#define ADC_INPUTCTRL_MUXNEG_PA03 ADC_INPUTCTRL_MUXPOS_AIN1 /**< Alias for AIN1 */
|
|
#define ADC_INPUTCTRL_MUXNEG_PA04 ADC_INPUTCTRL_MUXPOS_AIN2 /**< Alias for AIN2 */
|
|
#define ADC_INPUTCTRL_MUXNEG_PA05 ADC_INPUTCTRL_MUXPOS_AIN3 /**< Alias for AIN3 */
|
|
#define ADC_INPUTCTRL_MUXNEG_PA06 ADC_INPUTCTRL_MUXPOS_AIN4 /**< Alias for AIN4 */
|
|
#define ADC_INPUTCTRL_MUXNEG_PA07 ADC_INPUTCTRL_MUXPOS_AIN5 /**< Alias for AIN5 */
|
|
#define ADC_INPUTCTRL_MUXNEG_PA08 ADC_INPUTCTRL_MUXPOS_AIN6 /**< Alias for AIN6 */
|
|
#define ADC_INPUTCTRL_MUXNEG_PA09 ADC_INPUTCTRL_MUXPOS_AIN7 /**< Alias for AIN7 */
|
|
/** @} */
|
|
|
|
/**
|
|
* @brief The MCU has a 10 bit DAC
|
|
*/
|
|
#define DAC_RES_BITS (10)
|
|
|
|
/**
|
|
* @brief The MCU has one DAC Output.
|
|
*/
|
|
#define DAC_NUMOF (1)
|
|
|
|
/**
|
|
* @name Real time counter configuration
|
|
* @{
|
|
*/
|
|
#define RTT_MAX_VALUE (0xffffffff)
|
|
#define RTT_CLOCK_FREQUENCY (32768U) /* in Hz */
|
|
#define RTT_MIN_FREQUENCY (RTT_CLOCK_FREQUENCY / 1024U) /* in Hz */
|
|
#define RTT_MAX_FREQUENCY (RTT_CLOCK_FREQUENCY) /* in Hz */
|
|
/** @} */
|
|
|
|
/**
|
|
* @brief RTC input pins that can be used for tamper detection and
|
|
* wake from Deep Sleep
|
|
*/
|
|
static const gpio_t rtc_tamper_pins[RTC_NUM_OF_TAMPERS] = {
|
|
GPIO_PIN(PA, 8), GPIO_PIN(PA, 9), GPIO_PIN(PA, 16),
|
|
GPIO_PIN(PA, 17)
|
|
};
|
|
|
|
/**
|
|
* @brief NVM User Row Mapping - Dedicated Entries
|
|
* Config values will be applied at power-on.
|
|
*/
|
|
struct sam0_aux_cfg_mapping {
|
|
/* config word 0 */
|
|
uint32_t secure_region_unlock : 3; /**< NVM Secure Region UnLock Bits */
|
|
uint32_t non_secure_region_unlock : 3; /**< NVM Non-Secure Region UnLock Bits */
|
|
uint32_t reserved_0 : 1; /**< Reserved */
|
|
uint32_t bod33_level : 6; /**< BOD33 threshold level at power-on. */
|
|
uint32_t bod33_disable : 1; /**< BOD33 Disable at power-on. */
|
|
uint32_t bod33_action : 2; /**< BOD33 Action at power-on. */
|
|
const uint32_t bod12_calibration : 9; /**< Factory settings - do not change. */
|
|
uint32_t wdt_run_standby : 1; /**< WDT Runstdby at power-on */
|
|
uint32_t wdt_enable : 1; /**< WDT Enable at power-on. */
|
|
uint32_t wdt_always_on : 1; /**< WDT Always-On at power-on. */
|
|
uint32_t wdt_period : 4; /**< WDT Period at power-on. */
|
|
/* config word 1 */
|
|
uint32_t wdt_window : 4; /**< WDT Window at power-on. */
|
|
uint32_t wdt_ewoffset : 4; /**< WDT Early Warning Interrupt Offset */
|
|
uint32_t wdt_window_enable : 1; /**< WDT Window mode enabled on power-on */
|
|
uint32_t bod33_hysteresis : 1; /**< BOD33 Hysteresis configuration */
|
|
uint32_t reserved_1 : 1; /**< Reserved */
|
|
uint32_t ram_execute_never : 1; /**< RAM is eXecute Never */
|
|
uint32_t data_execute_never : 1; /**< Data Flash is eXecute Never */
|
|
uint32_t reserved_2 : 19; /**< Reserved */
|
|
/* config word 2 */
|
|
uint32_t secure_flash_as_size : 8; /**< Secure Flash (AS region) Size = AS*0x100 */
|
|
uint32_t nsc_size : 6; /**< Non-Secure Callable Flash (APPLICATION region) Size = ANSC*0x20 */
|
|
uint32_t reserved_3 : 2; /**< Reserved */
|
|
uint32_t secure_flash_data_size : 4; /**< Secure Data Flash Size = DS*0x100 */
|
|
uint32_t reserved_4 : 4; /**< Reserved */
|
|
uint32_t secure_ram_size : 7; /**< Secure SRAM Size = RS*0x80 */
|
|
uint32_t reserved_5 : 1; /**< Reserved */
|
|
/* config word 3 */
|
|
uint32_t user_row_write_enable : 1; /**< User Row Write Enable */
|
|
uint32_t reserved_6 : 31; /**< Reserved */
|
|
/* config word 4 */
|
|
uint32_t nonsec_a; /**< Peripherals Non-Secure Status Fuses for Bridge A */
|
|
/* config word 5 */
|
|
uint32_t nonsec_b; /**< Peripherals Non-Secure Status Fuses for Bridge B */
|
|
/* config word 6 */
|
|
uint32_t nonsec_c; /**< Peripherals Non-Secure Status Fuses for Bridge C */
|
|
/* config word 7 */
|
|
uint32_t user_crc; /**< CRC of NVM User Row bits 223:64 (words 2…6) */
|
|
};
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif /* PERIPH_CPU_H */
|
|
/** @} */
|