Blame view

RIOT/cpu/kw2xd/include/cpu_conf.h 3.07 KB
a752c7ab   elopes   add first test an...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
  /*
   * Copyright (C) 2014 Freie Universitรคt Berlin
   * Copyright (C) 2014 PHYTEC Messtechnik 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.
   */
  
  /**
   * @defgroup        cpu_kw2xd NXP Kinetis KW2xD
   * @ingroup         cpu
   * @brief           CPU specific implementations for the NXP Kinetis KW2xD SiP
   *
   *                  The SiP incorporates a low power 2.4 GHz transceiver, and a
   *                  Kinetis Cortex-M4 MCU.
   *
   *                  From the register map and functional description it seems
   *                  like the transceiver is a close relative of the NXP MCR20A.
   * @{
   *
   * @file
   * @brief           Implementation specific CPU configuration options
   *
   * @author          Hauke Petersen <hauke.petersen@fu-berlin.de>
   * @author          Johann Fischer <j.fischer@phytec.de>
   */
  
  #ifndef CPU_CONF_H
  #define CPU_CONF_H
  
  #ifdef CPU_MODEL_KW21D256
  #include "vendor/MKW22D5.h"
  #elif CPU_MODEL_KW21D512
  #include "vendor/MKW22D5.h"
  #elif CPU_MODEL_KW22D512
  #include "vendor/MKW22D5.h"
  #else
  #error "undefined CPU_MODEL"
  #endif
  
  #include "cpu_conf_kinetis.h"
  
  #ifdef __cplusplus
  extern "C"
  {
  #endif
  
  /**
   * @brief This CPU provides an additional ADC clock divider as CFG1[ADICLK]=1
   */
  #define KINETIS_HAVE_ADICLK_BUS_DIV_2 1
  
  /** @name PORT module clock gates */
  /** @{ */
  #define PORTA_CLOCK_GATE (BITBAND_REG32(SIM->SCGC5, SIM_SCGC5_PORTA_SHIFT))
  #define PORTB_CLOCK_GATE (BITBAND_REG32(SIM->SCGC5, SIM_SCGC5_PORTB_SHIFT))
  #define PORTC_CLOCK_GATE (BITBAND_REG32(SIM->SCGC5, SIM_SCGC5_PORTC_SHIFT))
  #define PORTD_CLOCK_GATE (BITBAND_REG32(SIM->SCGC5, SIM_SCGC5_PORTD_SHIFT))
  #define PORTE_CLOCK_GATE (BITBAND_REG32(SIM->SCGC5, SIM_SCGC5_PORTE_SHIFT))
  /** @} */
  
  /**
   * @name KW2XD SiP internal interconnects between MCU and Modem.
   *
   * @{
   */
  #define KW2XDRF_PORT_DEV        PORTB /**< MCU Port connected to Modem*/
  #define KW2XDRF_PORT            PORT_B /**< MCU Port connected to Modem*/
  #define KW2XDRF_GPIO            GPIOB /**< GPIO Device connected to Modem */
  #define KW2XDRF_PORT_IRQn       PORTB_IRQn
  /** Clock Enable for PORTB*/
  #define KW2XDRF_PORT_CLKEN()    (PORTB_CLOCK_GATE = 1)
  #define KW2XDRF_PIN_AF          2  /**< Pin Muxing Parameter for GPIO Device*/
  #define KW2XDRF_PCS0_PIN        10 /**< SPI Slave Select Pin */
  #define KW2XDRF_SCK_PIN         11 /**< SPI Clock Output Pin */
  #define KW2XDRF_SOUT_PIN        16 /**< SPI Master Data Output Pin */
  #define KW2XDRF_SIN_PIN         17 /**< SPI Master Data Input Pin */
  #define KW2XDRF_RST_PIN         19 /**< Reset pin */
  #define KW2XDRF_IRQ_PIN         3  /**< Modem's IRQ Output (activ low) */
  #define KW2XDRF_CLK_CTRL_PORT   PORT_C /**< CLK_OUT control pin port */
  #define KW2XDRF_CLK_CTRL_PORT_DEV PORTC /**< CLK_OUT control pin PORT device */
  #define KW2XDRF_CLK_CTRL_GPIO   GPIOC /**< CLK_OUT control pin GPIO device */
  #define KW2XDRF_CLK_CTRL_CLKEN() (PORTC_CLOCK_GATE = 1)
  #define KW2XDRF_CLK_CTRL_PIN    0 /**< CLK_OUT control pin */
  
  /** @} */
  
  #ifdef __cplusplus
  }
  #endif
  
  #endif /* CPU_CONF_H */
  /** @} */