2019-03-12 13:57:27 +01:00
|
|
|
|
/*
|
|
|
|
|
* Copyright (C) 2019 ML!PA Consulting GmbH
|
|
|
|
|
*
|
|
|
|
|
* 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_samd5x
|
|
|
|
|
* @brief CPU specific definitions for internal peripheral handling
|
|
|
|
|
* @{
|
|
|
|
|
*
|
|
|
|
|
* @file
|
|
|
|
|
* @brief CPU specific definitions for internal peripheral handling
|
|
|
|
|
*
|
|
|
|
|
* @author Benjamin Valentin <benjamin.valentin@ml-pa.com>
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#ifndef PERIPH_CPU_H
|
|
|
|
|
#define PERIPH_CPU_H
|
|
|
|
|
|
|
|
|
|
#include <limits.h>
|
|
|
|
|
|
2020-06-12 15:56:52 +02:00
|
|
|
|
#include "macros/units.h"
|
2019-03-12 13:57:27 +01:00
|
|
|
|
#include "periph_cpu_common.h"
|
|
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
|
extern "C" {
|
|
|
|
|
#endif
|
|
|
|
|
|
2019-09-13 17:32:14 +02:00
|
|
|
|
/**
|
|
|
|
|
* @brief DFLL runs at at fixed frequency of 48 MHz
|
|
|
|
|
*/
|
2020-06-12 15:56:52 +02:00
|
|
|
|
#define SAM0_DFLL_FREQ_HZ MHZ(48)
|
2019-09-13 17:32:14 +02:00
|
|
|
|
|
2020-03-02 18:06:09 +01:00
|
|
|
|
/**
|
|
|
|
|
 * @brief XOSC is used to generate a fixed frequency of 48 MHz
|
|
|
|
|
 */
|
|
|
|
|
#define SAM0_XOSC_FREQ_HZ (XOSC0_FREQUENCY ? XOSC0_FREQUENCY : XOSC1_FREQUENCY)
|
|
|
|
|
|
2019-09-13 17:32:14 +02:00
|
|
|
|
/**
|
|
|
|
|
* @brief DPLL must run with at least 96 MHz
|
|
|
|
|
*/
|
2020-06-12 15:56:52 +02:00
|
|
|
|
#define SAM0_DPLL_FREQ_MIN_HZ MHZ(96)
|
2019-09-13 17:32:14 +02:00
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @brief DPLL frequency must not exceed 200 MHz
|
|
|
|
|
*/
|
2020-06-12 15:56:52 +02:00
|
|
|
|
#define SAM0_DPLL_FREQ_MAX_HZ MHZ(20)
|
2019-09-13 17:32:14 +02:00
|
|
|
|
|
2020-02-25 16:14:15 +01:00
|
|
|
|
/**
|
|
|
|
|
* @name Power mode configuration
|
|
|
|
|
* @{
|
|
|
|
|
*/
|
|
|
|
|
#define PM_NUM_MODES (3)
|
|
|
|
|
/** @} */
|
|
|
|
|
|
2019-12-16 19:41:16 +01:00
|
|
|
|
/**
|
|
|
|
|
* @name SAMD5x GCLK definitions
|
|
|
|
|
* @{
|
|
|
|
|
*/
|
|
|
|
|
enum {
|
2020-06-16 17:41:59 +02:00
|
|
|
|
SAM0_GCLK_MAIN = 0, /**< 120 MHz main clock */
|
|
|
|
|
SAM0_GCLK_32KHZ, /**< 32 kHz clock */
|
|
|
|
|
SAM0_GCLK_TIMER, /**< 4-8 MHz clock for xTimer */
|
|
|
|
|
SAM0_GCLK_PERIPH, /**< 12-48 MHz (DFLL) clock */
|
2019-12-16 19:41:16 +01:00
|
|
|
|
};
|
|
|
|
|
/** @} */
|
|
|
|
|
|
2020-06-16 17:41:59 +02:00
|
|
|
|
/**
|
|
|
|
|
* @name GCLK compatibility definitions
|
|
|
|
|
* @{
|
|
|
|
|
*/
|
|
|
|
|
#define SAM0_GCLK_8MHZ SAM0_GCLK_TIMER
|
|
|
|
|
#define SAM0_GCLK_48MHZ SAM0_GCLK_PERIPH
|
|
|
|
|
/** @} */
|
|
|
|
|
|
2019-03-12 13:57:27 +01:00
|
|
|
|
/**
|
|
|
|
|
* @brief Override SPI hardware chip select macro
|
|
|
|
|
*
|
|
|
|
|
* As of now, we do not support HW CS, so we always set it to a fixed value
|
|
|
|
|
*/
|
|
|
|
|
#define SPI_HWCS(x) (UINT_MAX - 1)
|
|
|
|
|
|
2020-08-07 19:30:46 +02:00
|
|
|
|
#ifndef DOXYGEN
|
|
|
|
|
#define HAVE_ADC_RES_T
|
|
|
|
|
typedef enum {
|
|
|
|
|
ADC_RES_6BIT = 0xff, /**< not supported */
|
|
|
|
|
ADC_RES_8BIT = ADC_CTRLB_RESSEL_8BIT, /**< ADC resolution: 8 bit */
|
|
|
|
|
ADC_RES_10BIT = ADC_CTRLB_RESSEL_10BIT, /**< ADC resolution: 10 bit */
|
|
|
|
|
ADC_RES_12BIT = ADC_CTRLB_RESSEL_12BIT, /**< ADC resolution: 12 bit */
|
|
|
|
|
ADC_RES_14BIT = 0xfe, /**< not supported */
|
|
|
|
|
ADC_RES_16BIT = 0xfd /**< not supported */
|
|
|
|
|
} adc_res_t;
|
|
|
|
|
/** @} */
|
|
|
|
|
#endif /* DOXYGEN */
|
|
|
|
|
|
2020-04-28 00:05:59 +02:00
|
|
|
|
/**
|
|
|
|
|
* @brief The MCU has a 12 bit DAC
|
|
|
|
|
*/
|
|
|
|
|
#define DAC_RES_BITS (12)
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @brief The MCU has two DAC outputs.
|
|
|
|
|
*/
|
|
|
|
|
#define DAC_NUMOF (2)
|
|
|
|
|
|
2020-06-17 12:42:39 +02:00
|
|
|
|
/**
|
|
|
|
|
* @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 */
|
|
|
|
|
/** @} */
|
|
|
|
|
|
2019-03-12 13:57:27 +01:00
|
|
|
|
#ifdef __cplusplus
|
|
|
|
|
}
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
#endif /* PERIPH_CPU_H */
|
|
|
|
|
/** @} */
|