2015-06-03 18:24:34 +02:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2015 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_kinetis_common
|
|
|
|
* @{
|
|
|
|
*
|
|
|
|
* @file
|
|
|
|
* @brief CPU specific definitions for internal peripheral handling
|
|
|
|
*
|
|
|
|
* @author Hauke Petersen <hauke.peterse@fu-berlin.de>
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef PERIPH_CPU_H_
|
|
|
|
#define PERIPH_CPU_H_
|
|
|
|
|
2016-02-07 20:35:27 +01:00
|
|
|
#include <stdint.h>
|
|
|
|
|
2016-02-18 18:03:48 +01:00
|
|
|
#include "cpu.h"
|
2015-06-03 18:24:34 +02:00
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
2015-08-17 13:11:40 +02:00
|
|
|
/**
|
|
|
|
* @brief Overwrite the default gpio_t type definition
|
|
|
|
* @{
|
|
|
|
*/
|
|
|
|
#define HAVE_GPIO_T
|
|
|
|
typedef uint16_t gpio_t;
|
|
|
|
/** @} */
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Definition of a fitting UNDEF value
|
|
|
|
*/
|
|
|
|
#define GPIO_UNDEF (0xffff)
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Define a CPU specific GPIO pin generator macro
|
|
|
|
*/
|
2016-02-18 18:03:48 +01:00
|
|
|
#define GPIO_PIN(x, y) (((x + 1) << 12) | (x << 6) | y)
|
2015-08-17 13:11:40 +02:00
|
|
|
|
2016-02-07 20:35:27 +01:00
|
|
|
/**
|
|
|
|
* @brief Length of the CPU_ID in octets
|
|
|
|
*/
|
|
|
|
#define CPUID_LEN (16U)
|
|
|
|
|
2016-02-29 17:37:30 +01:00
|
|
|
/**
|
|
|
|
* @brief Generate GPIO mode bitfields
|
|
|
|
*
|
|
|
|
* We use the following bits to encode the pin mode:
|
|
|
|
* - bit 0: 0 for pull-down or 1 for pull-up
|
|
|
|
* - bit 1: pull register enable (as configured in bit 0)
|
|
|
|
* - bit 5: OD enable
|
|
|
|
* - bit 7: output or input mode
|
|
|
|
*/
|
|
|
|
#define GPIO_MODE(pu, pe, od, out) (pu | (pe << 1) | (od << 5) | (out << 7))
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Override GPIO modes
|
|
|
|
* @{
|
|
|
|
*/
|
|
|
|
#define HAVE_GPIO_MODE_T
|
|
|
|
typedef enum {
|
|
|
|
GPIO_IN = GPIO_MODE(0, 0, 0, 0), /**< IN */
|
|
|
|
GPIO_IN_PD = GPIO_MODE(0, 1, 0, 0), /**< IN with pull-down */
|
|
|
|
GPIO_IN_PU = GPIO_MODE(1, 1, 0, 0), /**< IN with pull-up */
|
|
|
|
GPIO_OUT = GPIO_MODE(0, 0, 0, 1), /**< OUT (push-pull) */
|
|
|
|
GPIO_OD = GPIO_MODE(1, 0, 1, 1), /**< OD */
|
|
|
|
GPIO_OD_PU = GPIO_MODE(1, 1, 1, 1), /**< OD with pull-up */
|
|
|
|
} gpio_mode_t;
|
|
|
|
/** @} */
|
|
|
|
|
2016-02-18 18:03:48 +01:00
|
|
|
/**
|
|
|
|
* @brief Define a condensed set of PORT PCR values
|
|
|
|
*
|
|
|
|
* To combine values just aggregate them using a logical OR.
|
|
|
|
*/
|
|
|
|
enum {
|
|
|
|
GPIO_AF_ANALOG = PORT_PCR_MUX(0), /**< use pin as analog input */
|
|
|
|
GPIO_AF_GPIO = PORT_PCR_MUX(1), /**< use pin as GPIO */
|
|
|
|
GPIO_AF_2 = PORT_PCR_MUX(2), /**< use alternate function 2 */
|
|
|
|
GPIO_AF_3 = PORT_PCR_MUX(3), /**< use alternate function 3 */
|
|
|
|
GPIO_AF_4 = PORT_PCR_MUX(4), /**< use alternate function 4 */
|
|
|
|
GPIO_AF_5 = PORT_PCR_MUX(5), /**< use alternate function 5 */
|
|
|
|
GPIO_AF_6 = PORT_PCR_MUX(6), /**< use alternate function 6 */
|
|
|
|
GPIO_AF_7 = PORT_PCR_MUX(7), /**< use alternate function 7 */
|
|
|
|
GPIO_PCR_OD = (PORT_PCR_ODE_MASK), /**< open-drain mode */
|
|
|
|
GPIO_PCR_PD = (PORT_PCR_PE_MASK), /**< enable pull-down */
|
|
|
|
GPIO_PCR_PU = (PORT_PCR_PE_MASK | PORT_PCR_PS_MASK) /**< enable PU */
|
|
|
|
};
|
|
|
|
|
2015-08-17 13:11:40 +02:00
|
|
|
/**
|
|
|
|
* @brief Override flank configuration values
|
|
|
|
* @{
|
|
|
|
*/
|
|
|
|
#define HAVE_GPIO_FLANK_T
|
|
|
|
typedef enum {
|
2016-02-18 18:03:48 +01:00
|
|
|
GPIO_RISING = PORT_PCR_IRQC(0x9), /**< emit interrupt on rising flank */
|
|
|
|
GPIO_FALLING = PORT_PCR_IRQC(0xa), /**< emit interrupt on falling flank */
|
|
|
|
GPIO_BOTH = PORT_PCR_IRQC(0xb), /**< emit interrupt on both flanks */
|
2015-08-17 13:11:40 +02:00
|
|
|
} gpio_flank_t;
|
|
|
|
/** @} */
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Available ports on the Kinetis family
|
2016-02-18 18:03:48 +01:00
|
|
|
*
|
|
|
|
* @todo This is not equal for all members of the Kinetis family, right?
|
2015-08-17 13:11:40 +02:00
|
|
|
*/
|
|
|
|
enum {
|
|
|
|
PORT_A = 0, /**< port A */
|
|
|
|
PORT_B = 1, /**< port B */
|
|
|
|
PORT_C = 2, /**< port C */
|
|
|
|
PORT_D = 3, /**< port D */
|
|
|
|
PORT_E = 4, /**< port E */
|
|
|
|
PORT_F = 5, /**< port F */
|
|
|
|
PORT_G = 6, /**< port G */
|
2016-02-18 18:03:48 +01:00
|
|
|
GPIO_PORTS_NUMOF /**< overall number of available ports */
|
2015-08-17 13:11:40 +02:00
|
|
|
};
|
2015-06-03 18:24:34 +02:00
|
|
|
|
2016-02-15 08:48:56 +01:00
|
|
|
/**
|
|
|
|
* @brief Override default ADC resolution values
|
|
|
|
* @{
|
|
|
|
*/
|
|
|
|
#define HAVE_ADC_RES_T
|
|
|
|
typedef enum {
|
|
|
|
ADC_RES_6BIT = (0xfe), /**< not supported */
|
|
|
|
ADC_RES_8BIT = ADC_CFG1_MODE(0), /**< ADC resolution: 8 bit */
|
|
|
|
ADC_RES_10BIT = ADC_CFG1_MODE(2), /**< ADC resolution: 10 bit */
|
|
|
|
ADC_RES_12BIT = ADC_CFG1_MODE(1), /**< ADC resolution: 12 bit */
|
|
|
|
ADC_RES_14BIT = (0xff), /**< ADC resolution: 14 bit */
|
|
|
|
ADC_RES_16BIT = ADC_CFG1_MODE(3) /**< ADC resolution: 16 bit */
|
|
|
|
} adc_res_t;
|
|
|
|
/** @} */
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief CPU specific ADC configuration
|
|
|
|
*/
|
|
|
|
typedef struct {
|
|
|
|
ADC_Type *dev; /**< ADC device */
|
|
|
|
gpio_t pin; /**< pin to use, set to GPIO_UNDEF for internal
|
|
|
|
* channels */
|
|
|
|
uint8_t chan; /**< ADC channel */
|
|
|
|
} adc_conf_t;
|
|
|
|
|
2016-01-14 16:12:06 +01:00
|
|
|
/**
|
|
|
|
* @brief CPU specific DAC configuration
|
|
|
|
*/
|
|
|
|
typedef struct {
|
|
|
|
/** DAC device base pointer */
|
|
|
|
DAC_Type *dev;
|
|
|
|
/** Pointer to module clock gate bit in bitband region, use BITBAND_REGADDR() */
|
|
|
|
uint32_t volatile *clk_gate;
|
|
|
|
} dac_conf_t;
|
|
|
|
|
2016-02-18 18:03:48 +01:00
|
|
|
/**
|
|
|
|
* @brief CPU internal function for initializing PORTs
|
|
|
|
*
|
|
|
|
* @param[in] pin pin to initialize
|
|
|
|
* @param[in] pcr value for the PORT's PCR register
|
|
|
|
*/
|
|
|
|
void gpio_init_port(gpio_t pin, uint32_t pcr);
|
|
|
|
|
2015-06-03 18:24:34 +02:00
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif /* PERIPH_CPU_H_ */
|
|
|
|
/** @} */
|