2016-02-08 21:18:05 +01:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2016 Freie Universität Berlin
|
2017-03-07 13:37:54 +01:00
|
|
|
* 2017 OTA keys S.A.
|
2016-02-08 21:18:05 +01:00
|
|
|
*
|
|
|
|
* 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_stm32_common
|
|
|
|
* @{
|
|
|
|
*
|
|
|
|
* @file
|
|
|
|
* @brief Shared CPU specific definitions for the STM32 family
|
|
|
|
*
|
2017-01-19 21:45:23 +01:00
|
|
|
* @author Hauke Petersen <hauke.petersen@fu-berlin.de>
|
2017-03-07 13:37:54 +01:00
|
|
|
* @author Vincent Dupont <vincent@otakeys.com>
|
2016-02-08 21:18:05 +01:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef PERIPH_CPU_COMMON_H
|
|
|
|
#define PERIPH_CPU_COMMON_H
|
|
|
|
|
|
|
|
#include "cpu.h"
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
2017-04-04 19:56:25 +02:00
|
|
|
/**
|
2017-08-23 14:59:52 +02:00
|
|
|
* @brief CPU specific LSI clock speed
|
|
|
|
*/
|
|
|
|
#if defined(CPU_FAM_STM32F0) || defined (CPU_FAM_STM32F1) || \
|
|
|
|
defined(CPU_FAM_STM32F3)
|
|
|
|
#define CLOCK_LSI (40000U)
|
|
|
|
#elif defined(CPU_FAM_STM32F7) || defined(CPU_FAM_STM32L0) || \
|
|
|
|
defined(CPU_FAM_STM32L1)
|
|
|
|
#define CLOCK_LSI (37000U)
|
|
|
|
#elif defined(CPU_FAM_STM32F2) || defined(CPU_FAM_STM32F4) || \
|
|
|
|
defined(CPU_FAM_STM32L4)
|
|
|
|
#define CLOCK_LSI (32000U)
|
|
|
|
#else
|
|
|
|
#error "error: LSI clock speed not defined for your target CPU"
|
|
|
|
#endif
|
|
|
|
|
2016-02-08 21:54:37 +01:00
|
|
|
/**
|
|
|
|
* @brief Length of the CPU_ID in octets
|
2017-10-13 10:40:35 +02:00
|
|
|
*
|
|
|
|
* This is the same for all members of the stm32 family
|
2016-02-08 21:54:37 +01:00
|
|
|
*/
|
|
|
|
#define CPUID_LEN (12U)
|
|
|
|
|
2017-10-12 16:20:15 +02:00
|
|
|
/**
|
|
|
|
* @brief We provide our own pm_off() function for all STM32-based CPUs
|
|
|
|
*/
|
|
|
|
#define PROVIDES_PM_LAYERED_OFF
|
|
|
|
|
2016-12-07 10:58:14 +01:00
|
|
|
/**
|
|
|
|
* @brief All STM timers have 4 capture-compare channels
|
|
|
|
*/
|
|
|
|
#define TIMER_CHAN (4U)
|
|
|
|
|
2018-02-23 21:51:09 +01:00
|
|
|
/**
|
|
|
|
* @brief All STM QDEC timers have 2 capture channels
|
|
|
|
*/
|
|
|
|
#define QDEC_CHAN (2U)
|
|
|
|
|
2016-02-08 21:18:05 +01:00
|
|
|
/**
|
|
|
|
* @brief Use the shared SPI functions
|
|
|
|
* @{
|
|
|
|
*/
|
2016-11-08 18:28:32 +01:00
|
|
|
#define PERIPH_SPI_NEEDS_TRANSFER_BYTE
|
2016-02-08 21:18:05 +01:00
|
|
|
#define PERIPH_SPI_NEEDS_TRANSFER_REG
|
|
|
|
#define PERIPH_SPI_NEEDS_TRANSFER_REGS
|
|
|
|
/** @} */
|
|
|
|
|
2017-01-09 23:33:16 +01:00
|
|
|
/**
|
|
|
|
* @brief Number of usable low power modes
|
|
|
|
*/
|
2017-07-06 17:17:42 +02:00
|
|
|
#if defined(CPU_FAM_STM32F1) || defined(CPU_FAM_STM32F2) || \
|
|
|
|
defined(CPU_FAM_STM32F4) || defined(CPU_FAM_STM32L0) || defined(DOXYGEN)
|
2017-01-09 23:33:16 +01:00
|
|
|
#define PM_NUM_MODES (2U)
|
2017-10-23 11:36:18 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @name Power modes
|
|
|
|
* @{
|
|
|
|
*/
|
|
|
|
#define STM32_PM_STOP (1U)
|
|
|
|
#define STM32_PM_STANDBY (0U)
|
|
|
|
/** @} */
|
2017-01-09 23:33:16 +01:00
|
|
|
#endif
|
|
|
|
|
2016-03-01 13:57:29 +01:00
|
|
|
/**
|
|
|
|
* @brief Available peripheral buses
|
|
|
|
*/
|
2016-08-29 17:21:36 +02:00
|
|
|
typedef enum {
|
2016-03-16 12:13:47 +01:00
|
|
|
APB1, /**< APB1 bus */
|
2016-08-29 17:21:36 +02:00
|
|
|
APB2, /**< APB2 bus */
|
2018-05-21 21:46:32 +02:00
|
|
|
#if defined(CPU_FAM_STM32L4)
|
|
|
|
APB12, /**< AHB1 bus, second register */
|
|
|
|
#endif
|
2017-02-12 16:24:48 +01:00
|
|
|
#if defined(CPU_FAM_STM32L0)
|
|
|
|
AHB, /**< AHB bus */
|
|
|
|
IOP, /**< IOP bus */
|
2017-03-29 14:09:54 +02:00
|
|
|
#elif defined(CPU_FAM_STM32L1) || defined(CPU_FAM_STM32F1) \
|
2016-08-29 17:21:36 +02:00
|
|
|
|| defined(CPU_FAM_STM32F0) || defined(CPU_FAM_STM32F3)
|
|
|
|
AHB, /**< AHB bus */
|
2017-03-29 14:09:54 +02:00
|
|
|
#elif defined(CPU_FAM_STM32F2) || defined(CPU_FAM_STM32F4) \
|
2017-04-13 14:32:34 +02:00
|
|
|
|| defined(CPU_FAM_STM32L4) || defined(CPU_FAM_STM32F7)
|
2016-08-29 17:21:36 +02:00
|
|
|
AHB1, /**< AHB1 bus */
|
|
|
|
AHB2, /**< AHB2 bus */
|
|
|
|
AHB3 /**< AHB3 bus */
|
|
|
|
#else
|
|
|
|
#warning "unsupported stm32XX family"
|
|
|
|
#endif
|
|
|
|
} bus_t;
|
2016-03-01 13:57:29 +01:00
|
|
|
|
2017-01-10 14:30:20 +01:00
|
|
|
#ifndef DOXYGEN
|
2016-03-29 22:18:23 +02:00
|
|
|
/**
|
|
|
|
* @brief Overwrite the default gpio_t type definition
|
|
|
|
* @{
|
|
|
|
*/
|
|
|
|
#define HAVE_GPIO_T
|
|
|
|
typedef uint32_t gpio_t;
|
|
|
|
/** @} */
|
2017-01-10 14:30:20 +01:00
|
|
|
#endif
|
2016-03-29 22:18:23 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Definition of a fitting UNDEF value
|
|
|
|
*/
|
|
|
|
#define GPIO_UNDEF (0xffffffff)
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Define a CPU specific GPIO pin generator macro
|
|
|
|
*/
|
|
|
|
#define GPIO_PIN(x, y) ((GPIOA_BASE + (x << 10)) | y)
|
|
|
|
|
2016-11-08 18:28:32 +01:00
|
|
|
/**
|
|
|
|
* @brief Define a magic number that tells us to use hardware chip select
|
|
|
|
*
|
|
|
|
* We use a random value here, that does clearly differentiate from any possible
|
|
|
|
* GPIO_PIN(x) value.
|
|
|
|
*/
|
|
|
|
#define SPI_HWCS_MASK (0xffffff00)
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Override the default SPI hardware chip select access macro
|
|
|
|
*
|
|
|
|
* Since the CPU does only support one single hardware chip select line, we can
|
|
|
|
* detect the usage of non-valid lines by comparing to SPI_HWCS_VALID.
|
|
|
|
*/
|
|
|
|
#define SPI_HWCS(x) (SPI_HWCS_MASK | x)
|
|
|
|
|
2018-05-25 16:37:55 +02:00
|
|
|
/**
|
|
|
|
* @name Use the shared I2C functions
|
|
|
|
* @{
|
|
|
|
*/
|
|
|
|
/** Use read reg function from periph common */
|
|
|
|
#define PERIPH_I2C_NEED_READ_REG
|
|
|
|
/** Use write reg function from periph common */
|
|
|
|
#define PERIPH_I2C_NEED_WRITE_REG
|
2018-12-07 16:52:08 +01:00
|
|
|
#define PERIPH_I2C_NEED_READ_REGS
|
2018-12-07 16:41:24 +01:00
|
|
|
#if defined(CPU_FAM_STM32F1) || defined(CPU_FAM_STM32F2) || \
|
|
|
|
defined(CPU_FAM_STM32L1) || defined(CPU_FAM_STM32F4)
|
|
|
|
#define PERIPH_I2C_NEED_WRITE_REGS
|
|
|
|
#endif
|
2018-05-25 16:37:55 +02:00
|
|
|
/** @} */
|
|
|
|
|
2016-12-07 14:58:16 +01:00
|
|
|
/**
|
|
|
|
* @brief Available MUX values for configuring a pin's alternate function
|
|
|
|
*/
|
|
|
|
typedef enum {
|
2016-12-07 17:07:24 +01:00
|
|
|
#ifdef CPU_FAM_STM32F1
|
|
|
|
GPIO_AF_OUT_PP = 0xb, /**< alternate function output - push-pull */
|
|
|
|
GPIO_AF_OUT_OD = 0xf, /**< alternate function output - open-drain */
|
|
|
|
#else
|
2016-12-07 14:58:16 +01:00
|
|
|
GPIO_AF0 = 0, /**< use alternate function 0 */
|
|
|
|
GPIO_AF1, /**< use alternate function 1 */
|
|
|
|
GPIO_AF2, /**< use alternate function 2 */
|
|
|
|
GPIO_AF3, /**< use alternate function 3 */
|
|
|
|
GPIO_AF4, /**< use alternate function 4 */
|
|
|
|
GPIO_AF5, /**< use alternate function 5 */
|
|
|
|
GPIO_AF6, /**< use alternate function 6 */
|
|
|
|
GPIO_AF7, /**< use alternate function 7 */
|
2017-03-07 13:37:54 +01:00
|
|
|
#ifndef CPU_FAM_STM32F0
|
2016-12-07 14:58:16 +01:00
|
|
|
GPIO_AF8, /**< use alternate function 8 */
|
|
|
|
GPIO_AF9, /**< use alternate function 9 */
|
|
|
|
GPIO_AF10, /**< use alternate function 10 */
|
|
|
|
GPIO_AF11, /**< use alternate function 11 */
|
|
|
|
GPIO_AF12, /**< use alternate function 12 */
|
|
|
|
GPIO_AF13, /**< use alternate function 13 */
|
|
|
|
GPIO_AF14, /**< use alternate function 14 */
|
|
|
|
GPIO_AF15 /**< use alternate function 15 */
|
|
|
|
#endif
|
2016-12-07 17:07:24 +01:00
|
|
|
#endif
|
2016-12-07 14:58:16 +01:00
|
|
|
} gpio_af_t;
|
|
|
|
|
2017-03-07 13:37:54 +01:00
|
|
|
#ifndef CPU_FAM_STM32F1
|
|
|
|
/**
|
|
|
|
* @brief Generate GPIO mode bitfields
|
|
|
|
*
|
|
|
|
* We use 5 bit to encode the mode:
|
|
|
|
* - bit 0+1: pin mode (input / output)
|
|
|
|
* - bit 2+3: pull resistor configuration
|
|
|
|
* - bit 4: output type (0: push-pull, 1: open-drain)
|
|
|
|
*/
|
|
|
|
#define GPIO_MODE(io, pr, ot) ((io << 0) | (pr << 2) | (ot << 4))
|
|
|
|
|
|
|
|
#ifndef DOXYGEN
|
|
|
|
/**
|
|
|
|
* @brief Override GPIO mode options
|
|
|
|
* @{
|
|
|
|
*/
|
|
|
|
#define HAVE_GPIO_MODE_T
|
|
|
|
typedef enum {
|
|
|
|
GPIO_IN = GPIO_MODE(0, 0, 0), /**< input w/o pull R */
|
|
|
|
GPIO_IN_PD = GPIO_MODE(0, 2, 0), /**< input with pull-down */
|
|
|
|
GPIO_IN_PU = GPIO_MODE(0, 1, 0), /**< input with pull-up */
|
|
|
|
GPIO_OUT = GPIO_MODE(1, 0, 0), /**< push-pull output */
|
|
|
|
GPIO_OD = GPIO_MODE(1, 0, 1), /**< open-drain w/o pull R */
|
|
|
|
GPIO_OD_PU = GPIO_MODE(1, 1, 1) /**< open-drain with pull-up */
|
|
|
|
} gpio_mode_t;
|
|
|
|
/** @} */
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Override flank configuration values
|
|
|
|
* @{
|
|
|
|
*/
|
|
|
|
#define HAVE_GPIO_FLANK_T
|
|
|
|
typedef enum {
|
|
|
|
GPIO_RISING = 1, /**< emit interrupt on rising flank */
|
|
|
|
GPIO_FALLING = 2, /**< emit interrupt on falling flank */
|
|
|
|
GPIO_BOTH = 3 /**< emit interrupt on both flanks */
|
|
|
|
} gpio_flank_t;
|
|
|
|
/** @} */
|
|
|
|
#endif /* ndef DOXYGEN */
|
|
|
|
#endif /* ndef CPU_FAM_STM32F1 */
|
|
|
|
|
2018-03-12 19:01:41 +01:00
|
|
|
#ifdef MODULE_PERIPH_DMA
|
|
|
|
/**
|
|
|
|
* @brief DMA configuration
|
|
|
|
*/
|
|
|
|
typedef struct {
|
2018-05-23 19:08:03 +02:00
|
|
|
/** DMA stream on stm32f2/4/7, channel on others
|
|
|
|
* STM32F2/4/7:
|
|
|
|
* - 0: DMA1 / Stream0
|
|
|
|
* - 1: DMA1 / Stream1
|
|
|
|
* - ...
|
|
|
|
* - 7: DMA1 / Stream7
|
|
|
|
* - 8: DAM2 / Stream0
|
|
|
|
* - ...
|
|
|
|
* - 15: DMA2 / Stream7
|
|
|
|
* STM32F0/1/L0/1/4:
|
|
|
|
* - 0: DMA1 / Channel1
|
|
|
|
* - ...
|
|
|
|
* - 4: DMA1 / Channel5
|
|
|
|
* - ...
|
|
|
|
* - 6: DMA1 / Channel7
|
|
|
|
* - 7: Reserved
|
|
|
|
* - 8: DMA2 / Channel1
|
|
|
|
* - ...
|
|
|
|
* - 12: DMA2 / Channel5
|
|
|
|
* - ...
|
|
|
|
* - 14: DMA2 / Channel7
|
|
|
|
*/
|
|
|
|
int stream;
|
2018-03-12 19:01:41 +01:00
|
|
|
} dma_conf_t;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief DMA type
|
|
|
|
*/
|
|
|
|
typedef unsigned dma_t;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief DMA modes
|
|
|
|
*/
|
|
|
|
typedef enum {
|
|
|
|
DMA_PERIPH_TO_MEM, /**< Peripheral to memory */
|
|
|
|
DMA_MEM_TO_PERIPH, /**< Memory to peripheral */
|
|
|
|
DMA_MEM_TO_MEM, /**< Memory to memory */
|
|
|
|
} dma_mode_t;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @name DMA Increment modes
|
|
|
|
* @{
|
|
|
|
*/
|
|
|
|
#define DMA_INC_SRC_ADDR (0x01)
|
|
|
|
#define DMA_INC_DST_ADDR (0x02)
|
|
|
|
#define DMA_INC_BOTH_ADDR (DMA_INC_SRC_ADDR | DMA_INC_DST_ADDR)
|
|
|
|
/** @} */
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @name DMA data width
|
|
|
|
* @{
|
|
|
|
*/
|
|
|
|
#define DMA_DATA_WIDTH_BYTE (0x00)
|
|
|
|
#define DMA_DATA_WIDTH_HALF_WORD (0x04)
|
|
|
|
#define DMA_DATA_WIDTH_WORD (0x08)
|
|
|
|
#define DMA_DATA_WIDTH_MASK (0x0C)
|
|
|
|
#define DMA_DATA_WIDTH_SHIFT (2)
|
|
|
|
/** @} */
|
|
|
|
#endif /* MODULE_PERIPH_DMA */
|
|
|
|
|
2017-06-27 12:45:50 +02:00
|
|
|
/**
|
|
|
|
* @brief DAC line configuration data
|
|
|
|
*/
|
|
|
|
typedef struct {
|
|
|
|
gpio_t pin; /**< pin connected to the line */
|
|
|
|
uint8_t chan; /**< DAC device used for this line */
|
|
|
|
} dac_conf_t;
|
|
|
|
|
2016-12-07 15:32:46 +01:00
|
|
|
/**
|
|
|
|
* @brief Timer configuration
|
|
|
|
*/
|
|
|
|
typedef struct {
|
|
|
|
TIM_TypeDef *dev; /**< timer device */
|
|
|
|
uint32_t max; /**< maximum value to count to (16/32 bit) */
|
|
|
|
uint32_t rcc_mask; /**< corresponding bit in the RCC register */
|
|
|
|
uint8_t bus; /**< APBx bus the timer is clock from */
|
|
|
|
uint8_t irqn; /**< global IRQ channel */
|
|
|
|
} timer_conf_t;
|
|
|
|
|
2017-01-17 14:08:13 +01:00
|
|
|
/**
|
|
|
|
* @brief PWM channel
|
|
|
|
*/
|
|
|
|
typedef struct {
|
|
|
|
gpio_t pin; /**< GPIO pin mapped to this channel */
|
|
|
|
uint8_t cc_chan; /**< capture compare channel used */
|
|
|
|
} pwm_chan_t;
|
|
|
|
|
2016-12-07 14:58:16 +01:00
|
|
|
/**
|
|
|
|
* @brief PWM configuration
|
|
|
|
*/
|
|
|
|
typedef struct {
|
2017-01-17 14:08:13 +01:00
|
|
|
TIM_TypeDef *dev; /**< Timer used */
|
|
|
|
uint32_t rcc_mask; /**< bit in clock enable register */
|
|
|
|
pwm_chan_t chan[TIMER_CHAN]; /**< channel mapping, set to {GPIO_UNDEF, 0}
|
|
|
|
* if not used */
|
|
|
|
gpio_af_t af; /**< alternate function used */
|
|
|
|
uint8_t bus; /**< APB bus */
|
2016-12-07 14:58:16 +01:00
|
|
|
} pwm_conf_t;
|
|
|
|
|
2018-02-23 21:51:09 +01:00
|
|
|
/**
|
|
|
|
* @brief QDEC channel
|
|
|
|
*/
|
|
|
|
typedef struct {
|
|
|
|
gpio_t pin; /**< GPIO pin mapped to this channel */
|
|
|
|
uint8_t cc_chan; /**< capture compare channel used */
|
|
|
|
} qdec_chan_t;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief QDEC configuration
|
|
|
|
*/
|
|
|
|
typedef struct {
|
|
|
|
TIM_TypeDef *dev; /**< Timer used */
|
|
|
|
uint32_t max; /**< Maximum counter value */
|
|
|
|
uint32_t rcc_mask; /**< bit in clock enable register */
|
|
|
|
qdec_chan_t chan[QDEC_CHAN]; /**< channel mapping, set to {GPIO_UNDEF, 0}
|
|
|
|
* if not used */
|
|
|
|
gpio_af_t af; /**< alternate function used */
|
|
|
|
uint8_t bus; /**< APB bus */
|
|
|
|
uint8_t irqn; /**< global IRQ channel */
|
|
|
|
} qdec_conf_t;
|
|
|
|
|
2018-05-21 21:46:32 +02:00
|
|
|
/**
|
|
|
|
* @brief UART hardware module types
|
|
|
|
*/
|
|
|
|
typedef enum {
|
|
|
|
STM32_USART, /**< STM32 USART module type */
|
|
|
|
STM32_LPUART, /**< STM32 Low-power UART (LPUART) module type */
|
|
|
|
} uart_type_t;
|
|
|
|
|
2016-12-07 16:17:12 +01:00
|
|
|
/**
|
|
|
|
* @brief Structure for UART configuration data
|
|
|
|
*/
|
|
|
|
typedef struct {
|
|
|
|
USART_TypeDef *dev; /**< UART device base register address */
|
|
|
|
uint32_t rcc_mask; /**< bit in clock enable register */
|
|
|
|
gpio_t rx_pin; /**< RX pin */
|
|
|
|
gpio_t tx_pin; /**< TX pin */
|
|
|
|
#ifndef CPU_FAM_STM32F1
|
|
|
|
gpio_af_t rx_af; /**< alternate function for RX pin */
|
|
|
|
gpio_af_t tx_af; /**< alternate function for TX pin */
|
|
|
|
#endif
|
|
|
|
uint8_t bus; /**< APB bus */
|
|
|
|
uint8_t irqn; /**< IRQ channel */
|
2017-10-10 14:09:05 +02:00
|
|
|
#ifdef MODULE_STM32_PERIPH_UART_HW_FC
|
2017-01-05 14:22:02 +01:00
|
|
|
gpio_t cts_pin; /**< CTS pin - set to GPIO_UNDEF when not using HW flow control */
|
|
|
|
gpio_t rts_pin; /**< RTS pin */
|
|
|
|
#ifndef CPU_FAM_STM32F1
|
|
|
|
gpio_af_t cts_af; /**< alternate function for CTS pin */
|
|
|
|
gpio_af_t rts_af; /**< alternate function for RTS pin */
|
|
|
|
#endif
|
|
|
|
#endif
|
2018-05-21 21:46:32 +02:00
|
|
|
#if defined(CPU_FAM_STM32L0) || defined(CPU_FAM_STM32L4)
|
|
|
|
uart_type_t type; /**< hardware module type (USART or LPUART) */
|
|
|
|
uint32_t clk_src; /**< clock source used for UART */
|
|
|
|
#endif
|
2019-01-07 20:21:22 +01:00
|
|
|
#ifdef MODULE_PERIPH_DMA
|
|
|
|
dma_t dma; /**< Logical DMA stream used for TX */
|
|
|
|
uint8_t dma_chan; /**< DMA channel used for TX */
|
|
|
|
#endif
|
2016-12-07 16:17:12 +01:00
|
|
|
} uart_conf_t;
|
|
|
|
|
2016-11-08 18:28:32 +01:00
|
|
|
/**
|
|
|
|
* @brief Structure for SPI configuration data
|
|
|
|
*/
|
|
|
|
typedef struct {
|
|
|
|
SPI_TypeDef *dev; /**< SPI device base register address */
|
|
|
|
gpio_t mosi_pin; /**< MOSI pin */
|
|
|
|
gpio_t miso_pin; /**< MISO pin */
|
|
|
|
gpio_t sclk_pin; /**< SCLK pin */
|
|
|
|
gpio_t cs_pin; /**< HWCS pin, set to GPIO_UNDEF if not mapped */
|
|
|
|
#ifndef CPU_FAM_STM32F1
|
|
|
|
gpio_af_t af; /**< pin alternate function */
|
|
|
|
#endif
|
|
|
|
uint32_t rccmask; /**< bit in the RCC peripheral enable register */
|
|
|
|
uint8_t apbbus; /**< APBx bus the device is connected to */
|
2018-03-12 19:01:41 +01:00
|
|
|
#ifdef MODULE_PERIPH_DMA
|
|
|
|
dma_t tx_dma; /**< Logical DMA stream used for TX */
|
|
|
|
uint8_t tx_dma_chan; /**< DMA channel used for TX */
|
|
|
|
dma_t rx_dma; /**< Logical DMA stream used for RX */
|
|
|
|
uint8_t rx_dma_chan; /**< DMA channel used for RX */
|
|
|
|
#endif
|
2016-11-08 18:28:32 +01:00
|
|
|
} spi_conf_t;
|
|
|
|
|
2018-05-25 16:37:55 +02:00
|
|
|
/**
|
|
|
|
* @brief Default mapping of I2C bus speed values
|
|
|
|
* @{
|
|
|
|
*/
|
|
|
|
#define HAVE_I2C_SPEED_T
|
|
|
|
typedef enum {
|
2018-05-31 15:56:53 +02:00
|
|
|
#if defined(CPU_FAM_STM32F1) || defined(CPU_FAM_STM32F2) || \
|
|
|
|
defined(CPU_FAM_STM32F4) || defined(CPU_FAM_STM32L1)
|
|
|
|
I2C_SPEED_LOW, /**< low speed mode: ~10kit/s */
|
|
|
|
#endif
|
|
|
|
I2C_SPEED_NORMAL, /**< normal mode: ~100kbit/s */
|
|
|
|
I2C_SPEED_FAST, /**< fast mode: ~400kbit/s */
|
|
|
|
#if defined(CPU_FAM_STM32F0) || defined(CPU_FAM_STM32F3) || \
|
|
|
|
defined(CPU_FAM_STM32F7) || defined(CPU_FAM_STM32L0) || \
|
|
|
|
defined(CPU_FAM_STM32L4)
|
|
|
|
I2C_SPEED_FAST_PLUS, /**< fast plus mode: ~1Mbit/s */
|
|
|
|
#endif
|
2018-05-25 16:37:55 +02:00
|
|
|
} i2c_speed_t;
|
|
|
|
/** @} */
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Structure for I2C configuration data
|
|
|
|
*/
|
|
|
|
typedef struct {
|
|
|
|
I2C_TypeDef *dev; /**< i2c device */
|
|
|
|
i2c_speed_t speed; /**< i2c bus speed */
|
|
|
|
gpio_t scl_pin; /**< scl pin number */
|
|
|
|
gpio_t sda_pin; /**< sda pin number */
|
2018-07-14 22:09:48 +02:00
|
|
|
#ifndef CPU_FAM_STM32F1
|
2018-05-25 16:37:55 +02:00
|
|
|
gpio_af_t scl_af; /**< scl pin alternate function value */
|
|
|
|
gpio_af_t sda_af; /**< sda pin alternate function value */
|
2018-07-14 22:09:48 +02:00
|
|
|
#endif
|
2018-05-25 16:37:55 +02:00
|
|
|
uint8_t bus; /**< APB bus */
|
|
|
|
uint32_t rcc_mask; /**< bit in clock enable register */
|
|
|
|
#if defined(CPU_FAM_STM32F0) || defined(CPU_FAM_STM32F3)
|
|
|
|
uint32_t rcc_sw_mask; /**< bit to switch I2C clock */
|
2018-05-31 15:56:53 +02:00
|
|
|
#endif
|
|
|
|
#if defined(CPU_FAM_STM32F1) || defined(CPU_FAM_STM32F2) || \
|
|
|
|
defined(CPU_FAM_STM32F4) || defined(CPU_FAM_STM32L1)
|
|
|
|
uint32_t clk; /**< bus frequency as defined in board config */
|
2018-05-25 16:37:55 +02:00
|
|
|
#endif
|
|
|
|
uint8_t irqn; /**< I2C event interrupt number */
|
|
|
|
} i2c_conf_t;
|
|
|
|
|
2018-05-31 15:56:53 +02:00
|
|
|
#if defined(CPU_FAM_STM32F0) || defined(CPU_FAM_STM32F3) || \
|
|
|
|
defined(CPU_FAM_STM32F7) || defined(CPU_FAM_STM32L0) || \
|
|
|
|
defined(CPU_FAM_STM32L4)
|
2018-05-25 16:37:55 +02:00
|
|
|
/**
|
|
|
|
* @brief Structure for I2C timing register settings
|
|
|
|
*
|
|
|
|
* These parameters are valid for 48MHz (16MHz for L0) input clock.
|
|
|
|
* See reference manual of supported CPU for example of timing settings:
|
|
|
|
* - STM32F030/F070: see RM0360, section 22.4.10, p.560, table 76
|
|
|
|
* - STM32F303: see RM0316, section 28.4.9, p.849, table 148
|
|
|
|
* - STM32F72X: see RM0431, section 26.4.9, p.851, table 149
|
|
|
|
* - STM32L0x2: see RM0376, section 27.4.10, p.686, table 117
|
|
|
|
* - STM32L4X5/6: see RM0351, section 39.4.9, p.1297, table 234
|
|
|
|
*/
|
|
|
|
typedef struct {
|
|
|
|
uint8_t presc; /**< Timing prescaler value */
|
|
|
|
uint8_t scll; /**< SCL Low period */
|
|
|
|
uint8_t sclh; /**< SCL High period */
|
|
|
|
uint8_t sdadel; /**< Data hold time */
|
|
|
|
uint8_t scldel; /**< Data setup time */
|
|
|
|
} i2c_timing_param_t;
|
|
|
|
#endif
|
2018-03-12 19:01:41 +01:00
|
|
|
|
2016-12-07 15:32:46 +01:00
|
|
|
/**
|
|
|
|
* @brief Get the actual bus clock frequency for the APB buses
|
|
|
|
*
|
|
|
|
* @param[in] bus target APBx bus
|
|
|
|
*
|
|
|
|
* @return bus clock frequency in Hz
|
|
|
|
*/
|
|
|
|
uint32_t periph_apb_clk(uint8_t bus);
|
|
|
|
|
2017-11-10 17:25:13 +01:00
|
|
|
/**
|
|
|
|
* @brief Get the actual timer clock frequency
|
|
|
|
*
|
|
|
|
* @param[in] bus corresponding APBx bus
|
|
|
|
*
|
|
|
|
* @return timer clock frequency in Hz
|
|
|
|
*/
|
|
|
|
uint32_t periph_timer_clk(uint8_t bus);
|
|
|
|
|
2016-03-16 12:13:47 +01:00
|
|
|
/**
|
|
|
|
* @brief Enable the given peripheral clock
|
|
|
|
*
|
|
|
|
* @param[in] bus bus the peripheral is connected to
|
|
|
|
* @param[in] mask bit in the RCC enable register
|
|
|
|
*/
|
2016-08-29 17:21:36 +02:00
|
|
|
void periph_clk_en(bus_t bus, uint32_t mask);
|
2016-03-16 12:13:47 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Disable the given peripheral clock
|
|
|
|
*
|
|
|
|
* @param[in] bus bus the peripheral is connected to
|
|
|
|
* @param[in] mask bit in the RCC enable register
|
|
|
|
*/
|
2016-08-29 17:21:36 +02:00
|
|
|
void periph_clk_dis(bus_t bus, uint32_t mask);
|
2016-03-16 12:13:47 +01:00
|
|
|
|
2016-12-07 17:07:24 +01:00
|
|
|
/**
|
|
|
|
* @brief Configure the alternate function for the given pin
|
|
|
|
*
|
|
|
|
* @param[in] pin pin to configure
|
|
|
|
* @param[in] af alternate function to use
|
|
|
|
*/
|
|
|
|
void gpio_init_af(gpio_t pin, gpio_af_t af);
|
|
|
|
|
2016-03-15 10:49:48 +01:00
|
|
|
/**
|
|
|
|
* @brief Configure the given pin to be used as ADC input
|
|
|
|
*
|
|
|
|
* @param[in] pin pin to configure
|
|
|
|
*/
|
|
|
|
void gpio_init_analog(gpio_t pin);
|
|
|
|
|
2018-03-12 19:01:41 +01:00
|
|
|
#ifdef MODULE_PERIPH_DMA
|
|
|
|
/**
|
|
|
|
* @brief DMA stream not defined
|
|
|
|
*/
|
|
|
|
#define DMA_STREAM_UNDEF (UINT_MAX)
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Initialize DMA
|
|
|
|
*/
|
|
|
|
void dma_init(void);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Execute a DMA transfer
|
|
|
|
*
|
|
|
|
* This function blocks until the transfer is completed. This is a convenience
|
|
|
|
* function which configure, start, wait and stop a DMA transfer.
|
|
|
|
*
|
|
|
|
* @param[in] dma logical DMA stream
|
2018-05-23 19:08:03 +02:00
|
|
|
* @param[in] chan DMA channel (on stm32f2/4/7, CxS or unused on others)
|
2018-03-12 19:01:41 +01:00
|
|
|
* @param[in] src source buffer
|
|
|
|
* @param[out] dst destination buffer
|
|
|
|
* @param[in] len length to transfer
|
|
|
|
* @param[in] mode DMA mode
|
|
|
|
* @param[in] flags DMA configuration
|
|
|
|
*
|
|
|
|
* @return < 0 on error, the number of transfered bytes otherwise
|
|
|
|
*/
|
2018-05-23 19:08:03 +02:00
|
|
|
int dma_transfer(dma_t dma, int chan, const volatile void *src, volatile void *dst, size_t len,
|
2018-03-12 19:01:41 +01:00
|
|
|
dma_mode_t mode, uint8_t flags);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Acquire a DMA stream
|
|
|
|
*
|
|
|
|
* @param[in] dma logical DMA stream
|
|
|
|
*/
|
|
|
|
void dma_acquire(dma_t dma);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Release a DMA stream
|
|
|
|
*
|
|
|
|
* @param[in] dma logical DMA stream
|
|
|
|
*/
|
|
|
|
void dma_release(dma_t dma);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Start a DMA transfer on a stream
|
|
|
|
*
|
|
|
|
* Start a DMA transfer on a given stream. The stream must be configured first
|
|
|
|
* by a @p dma_configure call.
|
|
|
|
*
|
|
|
|
* @param[in] dma logical DMA stream
|
|
|
|
*/
|
|
|
|
void dma_start(dma_t dma);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Suspend a DMA transfer on a stream
|
|
|
|
*
|
|
|
|
* @param[in] dma logical DMA stream
|
|
|
|
*
|
|
|
|
* @return the remaining number of bytes to transfer
|
|
|
|
*/
|
|
|
|
uint16_t dma_suspend(dma_t dma);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Resume a suspended DMA transfer on a stream
|
|
|
|
*
|
|
|
|
* @param[in] dma logical DMA stream
|
|
|
|
* @param[in] reamaining the remaining number of bytes to transfer
|
|
|
|
*/
|
|
|
|
void dma_resume(dma_t dma, uint16_t remaining);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Stop a DMA transfer on a stream
|
|
|
|
*
|
|
|
|
* @param[in] dma logical DMA stream
|
|
|
|
*/
|
|
|
|
void dma_stop(dma_t dma);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Wait for the end of a transfer
|
|
|
|
*
|
|
|
|
* @param[in] dma logical DMA stream
|
|
|
|
*/
|
|
|
|
void dma_wait(dma_t dma);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Configure a DMA stream for a new transfer
|
|
|
|
*
|
|
|
|
* @param[in] dma logical DMA stream
|
2018-05-23 19:08:03 +02:00
|
|
|
* @param[in] chan DMA channel (on stm32f2/4/7, CxS or unused on others)
|
2018-03-12 19:01:41 +01:00
|
|
|
* @param[in] src source buffer
|
|
|
|
* @param[out] dst destination buffer
|
|
|
|
* @param[in] len length to transfer
|
|
|
|
* @param[in] mode DMA mode
|
|
|
|
* @param[in] flags DMA configuration
|
|
|
|
*
|
|
|
|
* @return < 0 on error, 0 on success
|
|
|
|
*/
|
2018-05-23 19:08:03 +02:00
|
|
|
int dma_configure(dma_t dma, int chan, const volatile void *src, volatile void *dst, size_t len,
|
2018-03-12 19:01:41 +01:00
|
|
|
dma_mode_t mode, uint8_t flags);
|
|
|
|
|
|
|
|
#endif /* MODULE_PERIPH_DMA */
|
|
|
|
|
2016-02-08 21:18:05 +01:00
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif /* PERIPH_CPU_COMMON_H */
|
|
|
|
/** @} */
|