Blame view

RIOT/cpu/cc2538/include/cc2538_gpio.h 10.8 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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
  /*
   * Copyright (C) 2014 Loci Controls Inc.
   *
   * 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_cc2538_gpio CC2538 General-Purpose I/O
   * @ingroup         cpu_cc2538_regs
   * @{
   *
   * @file
   * @brief           Driver for the cc2538 GPIO controller
   *
   * Header file with register and macro declarations for the cc2538 GPIO module
   *
   * @author          Ian Martin <ian@locicontrols.com>
   *
   * @{
   */
  
  #ifndef CC2538_GPIO_H
  #define CC2538_GPIO_H
  
  #include <stdint.h>
  
  #include "cc2538.h"
  
  #ifdef __cplusplus
  extern "C" {
  #endif
  
  /**
   * @name Numeric representation of the four GPIO ports
   * @{
   */
  enum {
      PORT_A = 0,
      PORT_B = 1,
      PORT_C = 2,
      PORT_D = 3,
  };
  /** @} */
  
  #define GPIO_PORT_SHIFT 3                              /**< Right-shift amount to obtain the port number from a GPIO number */
  #define GPIO_BITS_PER_PORT ( 1 << GPIO_PORT_SHIFT )    /**< Number of bits per GPIO port (8) */
  #define GPIO_BIT_MASK      ( GPIO_BITS_PER_PORT - 1 )  /**< Mask to obtain the bit number from a GPIO number */
  
  /**
   * @brief Generate a bit mask in which only the specified bit is high.
   *
   * @param[in] n Number of the bit to set high in the mask.
   *
   * @return A bit mask in which bit n is high.
  */
  #define GPIO_PIN_MASK(n) ( 1 << (n) )
  
  /**
   * @brief Extract the GPIO port number (0-3) from a GPIO number (0-31)
   *
   * @param[in] gpio_num GPIO number (0-31)
   *
   * @return Corresponding GPIO port number (0-3)
  */
  #define GPIO_NUM_TO_PORT_NUM(gpio_num) ( (gpio_num) >> GPIO_PORT_SHIFT )
  
  /**
   * @brief Extract the GPIO port bit number (0-7) from a GPIO number (0-31)
   *
   * @param[in] gpio_num GPIO number (0-31)
   *
   * @return Corresponding GPIO port bit number (0-7)
  */
  #define GPIO_BIT_NUM(gpio_num) ( (gpio_num) & GPIO_BIT_MASK )
  
  /**
   * @brief Generate a GPIO number given a port and bit number
   *
   * @param[in] port_num GPIO port (PORT_A, PORT_B, PORT_C, or PORT_D)
   * @param[in] bit_num  GPIO bit number (0-7)
   *
   * @return Corresponding GPIO number (0-31)
  */
  #define GPIO_PXX_TO_NUM(port_num, bit_num) ( ((port_num) << GPIO_PORT_SHIFT) | (bit_num) )
  
  /**
   * @brief Obtain the GPIO port instance given a GPIO number (0-31)
   *
   * @param[in] gpio_num GPIO number (0-31)
   *
   * @return Corresponding GPIO port instance
  */
  #define GPIO_NUM_TO_DEV(gpio_num) ( GPIO_A + GPIO_NUM_TO_PORT_NUM(gpio_num) )
  
  /**
   * @brief Enable hardware (peripheral) control for a given GPIO pin number
   *
   * @param[in] gpio_num GPIO number (0-31)
  */
  #define gpio_hardware_control(gpio_num) ( GPIO_NUM_TO_DEV(gpio_num)->AFSEL |= GPIO_PIN_MASK(GPIO_BIT_NUM(gpio_num)) )
  
  /**
   * @brief Enable software control for a given GPIO pin number
   *
   * @param[in] gpio_num GPIO number (0-31)
  */
  #define gpio_software_control(gpio_num) ( GPIO_NUM_TO_DEV(gpio_num)->AFSEL &= ~GPIO_PIN_MASK(GPIO_BIT_NUM(gpio_num)) )
  
  /**
   * @brief Configure the given GPIO as an output
   *
   * @param[in] gpio_num GPIO number (0-31)
  */
  #define gpio_dir_output(gpio_num) ( GPIO_NUM_TO_DEV(gpio_num)->DIR |= GPIO_PIN_MASK(GPIO_BIT_NUM(gpio_num)) )
  
  /**
   * @brief Configure the given GPIO as an input
   *
   * @param[in] gpio_num GPIO number (0-31)
  */
  #define gpio_dir_input(gpio_num) ( GPIO_NUM_TO_DEV(gpio_num)->DIR &= ~GPIO_PIN_MASK(GPIO_BIT_NUM(gpio_num)) )
  
  /**
   * @brief Read the value of the given pin
   *
   * @param[in] gpio_num GPIO number (0-31)
   */
  #define cc2538_gpio_read(gpio_num) ( (GPIO_NUM_TO_DEV(gpio_num)->DATA >> GPIO_BIT_NUM(gpio_num)) & 1 )
  
  /**
   * @brief Set a specific GPIO output pin high
   *
   * @param[in] gpio_num GPIO number (0-31)
  */
  #define cc2538_gpio_set(gpio_num) ( GPIO_NUM_TO_DEV(gpio_num)->DATA |= GPIO_PIN_MASK(GPIO_BIT_NUM(gpio_num)) )
  
  /**
   * @brief Set a specific GPIO output pin low
   *
   * @param[in] gpio_num GPIO number (0-31)
  */
  #define cc2538_gpio_clear(gpio_num) ( GPIO_NUM_TO_DEV(gpio_num)->DATA &= ~GPIO_PIN_MASK(GPIO_BIT_NUM(gpio_num)) )
  
  /**
   * @brief Toggle the output state of a specific GPIO pin
   *
   * @param[in] gpio_num GPIO number (0-31)
  */
  #define cc2538_gpio_toggle(gpio_num) ( GPIO_NUM_TO_DEV(gpio_num)->DATA ^= GPIO_PIN_MASK(GPIO_BIT_NUM(gpio_num)) )
  
  /** @name Unique names for each GPIO port/pin combination
   * @{
   */
  enum {
      GPIO_PA0 = GPIO_PXX_TO_NUM(PORT_A, 0),          /**< PA0 */
      GPIO_PA1 = GPIO_PXX_TO_NUM(PORT_A, 1),          /**< PA1 */
      GPIO_PA2 = GPIO_PXX_TO_NUM(PORT_A, 2),          /**< PA2 */
      GPIO_PA3 = GPIO_PXX_TO_NUM(PORT_A, 3),          /**< PA3 */
      GPIO_PA4 = GPIO_PXX_TO_NUM(PORT_A, 4),          /**< PA4 */
      GPIO_PA5 = GPIO_PXX_TO_NUM(PORT_A, 5),          /**< PA5 */
      GPIO_PA6 = GPIO_PXX_TO_NUM(PORT_A, 6),          /**< PA6 */
      GPIO_PA7 = GPIO_PXX_TO_NUM(PORT_A, 7),          /**< PA7 */
      GPIO_PB0 = GPIO_PXX_TO_NUM(PORT_B, 0),          /**< PB0 */
      GPIO_PB1 = GPIO_PXX_TO_NUM(PORT_B, 1),          /**< PB1 */
      GPIO_PB2 = GPIO_PXX_TO_NUM(PORT_B, 2),          /**< PB2 */
      GPIO_PB3 = GPIO_PXX_TO_NUM(PORT_B, 3),          /**< PB3 */
      GPIO_PB4 = GPIO_PXX_TO_NUM(PORT_B, 4),          /**< PB4 */
      GPIO_PB5 = GPIO_PXX_TO_NUM(PORT_B, 5),          /**< PB5 */
      GPIO_PB6 = GPIO_PXX_TO_NUM(PORT_B, 6),          /**< PB6 */
      GPIO_PB7 = GPIO_PXX_TO_NUM(PORT_B, 7),          /**< PB7 */
      GPIO_PC0 = GPIO_PXX_TO_NUM(PORT_C, 0),          /**< PC0 */
      GPIO_PC1 = GPIO_PXX_TO_NUM(PORT_C, 1),          /**< PC1 */
      GPIO_PC2 = GPIO_PXX_TO_NUM(PORT_C, 2),          /**< PC2 */
      GPIO_PC3 = GPIO_PXX_TO_NUM(PORT_C, 3),          /**< PC3 */
      GPIO_PC4 = GPIO_PXX_TO_NUM(PORT_C, 4),          /**< PC4 */
      GPIO_PC5 = GPIO_PXX_TO_NUM(PORT_C, 5),          /**< PC5 */
      GPIO_PC6 = GPIO_PXX_TO_NUM(PORT_C, 6),          /**< PC6 */
      GPIO_PC7 = GPIO_PXX_TO_NUM(PORT_C, 7),          /**< PC7 */
      GPIO_PD0 = GPIO_PXX_TO_NUM(PORT_D, 0),          /**< PD0 */
      GPIO_PD1 = GPIO_PXX_TO_NUM(PORT_D, 1),          /**< PD1 */
      GPIO_PD2 = GPIO_PXX_TO_NUM(PORT_D, 2),          /**< PD2 */
      GPIO_PD3 = GPIO_PXX_TO_NUM(PORT_D, 3),          /**< PD3 */
      GPIO_PD4 = GPIO_PXX_TO_NUM(PORT_D, 4),          /**< PD4 */
      GPIO_PD5 = GPIO_PXX_TO_NUM(PORT_D, 5),          /**< PD5 */
      GPIO_PD6 = GPIO_PXX_TO_NUM(PORT_D, 6),          /**< PD6 */
      GPIO_PD7 = GPIO_PXX_TO_NUM(PORT_D, 7),          /**< PD7 */
  };
  /** @} */
  
  /**
   * @brief GPIO port component registers
   */
  typedef struct {
      cc2538_reg_t RESERVED1[255];                    /**< Reserved addresses */
      cc2538_reg_t DATA;                              /**< GPIO_A Data Register */
      cc2538_reg_t DIR;                               /**< GPIO_A data direction register */
      cc2538_reg_t IS;                                /**< GPIO_A Interrupt Sense register */
      cc2538_reg_t IBE;                               /**< GPIO_A Interrupt Both-Edges register */
      cc2538_reg_t IEV;                               /**< GPIO_A Interrupt Event Register */
      cc2538_reg_t IE;                                /**< GPIO_A Interrupt mask register */
      cc2538_reg_t RIS;                               /**< GPIO_A Raw Interrupt Status register */
      cc2538_reg_t MIS;                               /**< GPIO_A Masked Interrupt Status register */
      cc2538_reg_t IC;                                /**< GPIO_A Interrupt Clear register */
      cc2538_reg_t AFSEL;                             /**< GPIO_A Alternate Function / mode control select register */
      cc2538_reg_t RESERVED2[63];                     /**< Reserved addresses */
      cc2538_reg_t GPIOLOCK;                          /**< GPIO_A Lock register */
      cc2538_reg_t GPIOCR;                            /**< GPIO_A Commit Register */
      cc2538_reg_t RESERVED3[118];                    /**< Reserved addresses */
      cc2538_reg_t PMUX;                              /**< GPIO_A The PMUX register */
      cc2538_reg_t P_EDGE_CTRL;                       /**< GPIO_A The Port Edge Control register */
      cc2538_reg_t RESERVED4[2];                      /**< Reserved addresses */
      cc2538_reg_t PI_IEN;                            /**< GPIO_A The Power-up Interrupt Enable register */
      cc2538_reg_t RESERVED5[1];                      /**< Reserved addresses */
      cc2538_reg_t IRQ_DETECT_ACK;                    /**< GPIO_A IRQ Detect ACK register */
      cc2538_reg_t USB_IRQ_ACK;                       /**< GPIO_A IRQ Detect ACK for USB */
      cc2538_reg_t IRQ_DETECT_UNMASK;                 /**< GPIO_A IRQ Detect ACK for masked interrupts */
      cc2538_reg_t RESERVED6[567];                    /**< Reserved addresses */
  } cc2538_gpio_t;
  
  /**
   * @brief IOC port component registers
   */
  typedef struct {
      cc2538_reg_t SEL[32];               /**< Port A to D SEL registers */
      cc2538_reg_t OVER[32];              /**< Port A OVER register */
  } cc2538_ioc_t;
  
  /**
   * @name Values for IOC_PXX_SEL
   * @{
   */
  #define IOC_SEL_UART0_TXD       (0)     /**< UART0 TXD */
  #define IOC_SEL_UART1_RTS       (1)     /**< UART1 RTS */
  #define IOC_SEL_UART1_TXD       (2)     /**< UART1 TXD */
  #define IOC_SEL_SSI0_TXD        (3)     /**< SSI0 TXD */
  #define IOC_SEL_SSI0_CLKOUT     (4)     /**< SSI0 CLKOUT */
  #define IOC_SEL_SSI0_FSSOUT     (5)     /**< SSI0 FSSOUT */
  #define IOC_SEL_SSI0_STXSER_EN  (6)     /**< SSI0 STXSER EN */
  #define IOC_SEL_SSI1_TXD        (7)     /**< SSI1 TXD */
  #define IOC_SEL_SSI1_CLKOUT     (8)     /**< SSI1 CLKOUT */
  #define IOC_SEL_SSI1_FSSOUT     (9)     /**< SSI1 FSSOUT */
  #define IOC_SEL_SSI1_STXSER_EN  (10)    /**< SSI1 STXSER EN */
  #define IOC_SEL_I2C_CMSSDA      (11)    /**< I2C CMSSDA */
  #define IOC_SEL_I2C_CMSSCL      (12)    /**< I2C CMSSCL */
  #define IOC_SEL_GPT0_ICP1       (13)    /**< GPT0 ICP1 */
  #define IOC_SEL_GPT0_ICP2       (14)    /**< GPT0 ICP2 */
  #define IOC_SEL_GPT1_ICP1       (15)    /**< GPT1 ICP1 */
  #define IOC_SEL_GPT1_ICP2       (16)    /**< GPT1 ICP2 */
  #define IOC_SEL_GPT2_ICP1       (17)    /**< GPT2 ICP1 */
  #define IOC_SEL_GPT2_ICP2       (18)    /**< GPT2 ICP2 */
  #define IOC_SEL_GPT3_ICP1       (19)    /**< GPT3 ICP1 */
  #define IOC_SEL_GPT3_ICP2       (20)    /**< GPT3 ICP2 */
  /** @} */
  
  /**
   * @name Values for IOC_PXX_OVER
   * @{
   */
  #define IOC_OVERRIDE_OE   0x00000008    /**< Output Enable */
  #define IOC_OVERRIDE_PUE  0x00000004    /**< Pull Up Enable */
  #define IOC_OVERRIDE_PDE  0x00000002    /**< Pull Down Enable */
  #define IOC_OVERRIDE_ANA  0x00000001    /**< Analog Enable */
  #define IOC_OVERRIDE_DIS  0x00000000    /**< Override Disabled */
  /** @} */
  
  /**
   * @name GPIO instance definitions
   * @{
   */
  #define GPIO_A ((cc2538_gpio_t *)0x400d9000)    /**< GPIO Port A instance */
  #define GPIO_B ((cc2538_gpio_t *)0x400da000)    /**< GPIO Port B instance */
  #define GPIO_C ((cc2538_gpio_t *)0x400db000)    /**< GPIO Port C instance */
  #define GPIO_D ((cc2538_gpio_t *)0x400dc000)    /**< GPIO Port D instance */
  /** @} */
  
  /**
   * @name IOC instance definition
   * @{
   */
  #define IOC    ((cc2538_ioc_t *)0x400d4000)     /**< IOC instance */
  /** @} */
  
  #ifdef __cplusplus
  } /* end extern "C" */
  #endif
  
  #endif /* CC2538_GPIO_H */
  
  /** @} */
  /** @} */