mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
218 lines
5.6 KiB
C
218 lines
5.6 KiB
C
/*
|
|
* Copyright (C) 2015-2018 Freie Universität Berlin
|
|
*
|
|
* 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_nrf5x_common
|
|
* @{
|
|
*
|
|
* @file
|
|
* @brief nRF5x common definitions for handling peripherals
|
|
*
|
|
* @author Hauke Petersen <hauke.petersen@fu-berlin.de>
|
|
*/
|
|
|
|
#ifndef PERIPH_CPU_COMMON_H
|
|
#define PERIPH_CPU_COMMON_H
|
|
|
|
#include "cpu.h"
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
/**
|
|
* @brief Compatibility wrapper for nRF9160
|
|
*/
|
|
#ifdef NRF_FICR_S
|
|
#define NRF_FICR NRF_FICR_S
|
|
#endif
|
|
/**
|
|
* @name Power management configuration
|
|
* @{
|
|
*/
|
|
#define PROVIDES_PM_OFF
|
|
/** @} */
|
|
|
|
/**
|
|
* @brief Starting offset of CPU_ID
|
|
*/
|
|
#ifdef FICR_INFO_DEVICEID_DEVICEID_Msk
|
|
#define CPUID_ADDR (&NRF_FICR->INFO.DEVICEID[0])
|
|
#else
|
|
#define CPUID_ADDR (&NRF_FICR->DEVICEID[0])
|
|
#endif
|
|
/**
|
|
* @brief Length of the CPU_ID in octets
|
|
*/
|
|
#define CPUID_LEN (8U)
|
|
|
|
/**
|
|
* @name Override macro for defining GPIO pins
|
|
*
|
|
* The port definition is used (and zeroed) to suppress compiler warnings
|
|
*/
|
|
#if GPIO_COUNT > 1
|
|
#define GPIO_PIN(x,y) ((x << 5) | y)
|
|
#else
|
|
#define GPIO_PIN(x,y) ((x & 0) | y)
|
|
#endif
|
|
|
|
/**
|
|
* @brief Override GPIO_UNDEF value
|
|
*/
|
|
/* The precise value matters where GPIO_UNDEF is set in registers like
|
|
* PWM.PSEL.OUT where it is used in sign-extended form to get a UINT32_MAX */
|
|
#define GPIO_UNDEF (UINT8_MAX)
|
|
|
|
/**
|
|
* @brief Generate GPIO mode bitfields
|
|
*
|
|
* We use 4 bit to encode the pin mode:
|
|
* - bit 0: output enable
|
|
* - bit 1: input connect
|
|
* - bit 2+3: pull resistor configuration
|
|
* - bit 8+9+10: drive configuration
|
|
*/
|
|
#define GPIO_MODE(oe, ic, pr, dr) (oe | (ic << 1) | (pr << 2) | (dr << 8))
|
|
|
|
/**
|
|
* @brief No support for HW chip select...
|
|
*/
|
|
#define SPI_HWCS(x) (SPI_CS_UNDEF)
|
|
|
|
/**
|
|
* @brief Declare needed shared SPI functions
|
|
* @{
|
|
*/
|
|
#define PERIPH_SPI_NEEDS_INIT_CS
|
|
#define PERIPH_SPI_NEEDS_TRANSFER_BYTE
|
|
#define PERIPH_SPI_NEEDS_TRANSFER_REG
|
|
#define PERIPH_SPI_NEEDS_TRANSFER_REGS
|
|
/** @} */
|
|
|
|
#ifndef DOXYGEN
|
|
/**
|
|
* @brief Overwrite the default gpio_t type definition
|
|
* @{
|
|
*/
|
|
#define HAVE_GPIO_T
|
|
typedef uint8_t gpio_t;
|
|
/** @} */
|
|
|
|
/**
|
|
* @brief Override GPIO modes
|
|
*
|
|
* We use 4 bit to encode the pin mode:
|
|
* - bit 0: output enable
|
|
* - bit 1: input connect
|
|
* - bit 2+3: pull resistor configuration
|
|
* @{
|
|
*/
|
|
#define HAVE_GPIO_MODE_T
|
|
typedef enum {
|
|
GPIO_IN = GPIO_MODE(0, 0, 0, 0), /**< IN */
|
|
GPIO_IN_PD = GPIO_MODE(0, 0, 1, 0), /**< IN with pull-down */
|
|
GPIO_IN_PU = GPIO_MODE(0, 0, 3, 0), /**< IN with pull-up */
|
|
GPIO_IN_OD_PU = GPIO_MODE(0, 0, 3, 6), /**< IN with pull-up and open drain output */
|
|
GPIO_OUT = GPIO_MODE(1, 1, 0, 0), /**< OUT (push-pull) */
|
|
GPIO_OD = (0xff), /**< not supported by HW */
|
|
GPIO_OD_PU = (0xfe) /**< not supported by HW */
|
|
} gpio_mode_t;
|
|
/** @} */
|
|
|
|
/**
|
|
* @brief Override GPIO active flank values
|
|
* @{
|
|
*/
|
|
#define HAVE_GPIO_FLANK_T
|
|
typedef enum {
|
|
GPIO_FALLING = 2, /**< emit interrupt on falling flank */
|
|
GPIO_RISING = 1, /**< emit interrupt on rising flank */
|
|
GPIO_BOTH = 3 /**< emit interrupt on both flanks */
|
|
} gpio_flank_t;
|
|
/** @} */
|
|
#endif /* ndef DOXYGEN */
|
|
|
|
/**
|
|
* @brief Timer configuration options
|
|
*/
|
|
typedef struct {
|
|
NRF_TIMER_Type *dev; /**< timer device */
|
|
uint8_t channels; /**< number of channels available */
|
|
uint8_t bitmode; /**< counter width */
|
|
uint8_t irqn; /**< IRQ number of the timer device */
|
|
} timer_conf_t;
|
|
|
|
#ifndef DOXYGEN
|
|
/**
|
|
* @brief Override SPI mode values
|
|
* @{
|
|
*/
|
|
#ifndef CPU_FAM_NRF9160
|
|
#define HAVE_SPI_MODE_T
|
|
typedef enum {
|
|
SPI_MODE_0 = 0, /**< CPOL=0, CPHA=0 */
|
|
SPI_MODE_1 = SPI_CONFIG_CPHA_Msk, /**< CPOL=0, CPHA=1 */
|
|
SPI_MODE_2 = SPI_CONFIG_CPOL_Msk, /**< CPOL=1, CPHA=0 */
|
|
SPI_MODE_3 = (SPI_CONFIG_CPOL_Msk | SPI_CONFIG_CPHA_Msk) /**< CPOL=1, CPHA=1 */
|
|
} spi_mode_t;
|
|
/** @} */
|
|
|
|
/**
|
|
* @brief Override SPI clock values
|
|
* @{
|
|
*/
|
|
#define HAVE_SPI_CLK_T
|
|
typedef enum {
|
|
SPI_CLK_100KHZ = SPI_FREQUENCY_FREQUENCY_K125, /**< 100KHz */
|
|
SPI_CLK_400KHZ = SPI_FREQUENCY_FREQUENCY_K500, /**< 400KHz */
|
|
SPI_CLK_1MHZ = SPI_FREQUENCY_FREQUENCY_M1, /**< 1MHz */
|
|
SPI_CLK_5MHZ = SPI_FREQUENCY_FREQUENCY_M4, /**< 5MHz */
|
|
SPI_CLK_10MHZ = SPI_FREQUENCY_FREQUENCY_M8 /**< 10MHz */
|
|
} spi_clk_t;
|
|
/** @} */
|
|
#endif /* ndef CPU_FAM_NRF9160 */
|
|
#endif /* ndef DOXYGEN */
|
|
|
|
/**
|
|
* @name WDT upper and lower bound times in ms
|
|
* @{
|
|
*/
|
|
#define NWDT_TIME_LOWER_LIMIT (1)
|
|
/* Set upper limit to the maximum possible value that could go in CRV register */
|
|
#define NWDT_TIME_UPPER_LIMIT ((UINT32_MAX >> 15) * US_PER_MS + 1)
|
|
/** @} */
|
|
|
|
/**
|
|
* @brief Quadrature decoder configuration struct
|
|
*/
|
|
typedef struct {
|
|
gpio_t a_pin; /**< GPIO Pin for phase A */
|
|
gpio_t b_pin; /**< GPIO Pin for phase B */
|
|
gpio_t led_pin; /**< LED GPIO, GPIO_UNDEF to disable */
|
|
uint8_t sample_period; /**< Sample period used, e.g. QDEC_SAMPLEPER_SAMPLEPER_128us */
|
|
bool debounce_filter; /**< Enable/disable debounce filter */
|
|
} qdec_conf_t;
|
|
|
|
/**
|
|
* @brief Retrieve the exti(GPIOTE) channel associated with a gpio
|
|
*
|
|
* @param pin GPIO pin to retrieve the channel for
|
|
*
|
|
* @return the channel number
|
|
* @return 0xff if no channel is found
|
|
*/
|
|
uint8_t gpio_int_get_exti(gpio_t pin);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif /* PERIPH_CPU_COMMON_H */
|
|
/** @} */
|