Blame view

RIOT/cpu/sam3/periph/gpio.c 7.67 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
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
  /*
   * Copyright (C) 2014 Hauke Petersen <devel@haukepetersen.de>
   *               2015 Hamburg University of Applied Sciences
   *               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_sam3
   * @ingroup     drivers_periph_gpio
   * @{
   *
   * @file
   * @brief       Low-level GPIO driver implementation
   *
   * @author      Hauke Petersen <hauke.petersen@fu-berlin.de>
   * @author      Tobias Fredersdorf <tobias.fredersdorf@haw-hamburg.de>
   *
   * @}
   */
  
  #include "cpu.h"
  #include "periph/gpio.h"
  #include "periph_conf.h"
  #include "periph_cpu.h"
  
  #define ENABLE_DEBUG    (0)
  #include "debug.h"
  
  /**
   * @brief We store 4 bit for each external interrupt line (each pin) that can
   *        mapped to an entry in the exti_ctx table
   */
  #define EXTI_MAP_LENGTH     (16U)
  
  /**
   * @brief We allow for 7 (4-bit - 1) concurrent external interrupts to be set
   */
  #define CTX_NUMOF           (7U)
  
  /**
   * @brief Bit positions in the GPIO mode value
   * @{
   */
  #define MODE_BIT_IO         (0x1)
  #define MODE_BIT_PUE        (0x2)
  #define MODE_BIT_ODE        (0x4)
  /** @} */
  
  /**
   * @brief Allocation of memory for 7 independent interrupt slots
   */
  static gpio_isr_ctx_t exti_ctx[CTX_NUMOF] = {{0}};
  
  /**
   * @brief Allocation of 4 bit per pin to map a pin to an interrupt context
   */
  static uint32_t exti_map[EXTI_MAP_LENGTH] = {
      0xffffffff, 0xffffffff, 0xffffffff, 0xffffffff,
      0xffffffff, 0xffffffff, 0xffffffff, 0xffffffff,
      0xffffffff, 0xffffffff, 0xffffffff, 0xffffffff,
      0xffffffff, 0xffffffff, 0xffffffff, 0xffffffff
  };
  
  /**
   * @brief Extract the pin's port base address from the given pin identifier
   */
  static inline Pio *_port(gpio_t pin)
  {
      return (Pio *)(pin & ~(0x1f));
  }
  
  /**
   * @brief Extract the port number from the given pin identifier
   *
   * Isolating bits 9 to 12 of the port base addresses leads to unique port
   * numbers.
   */
  static inline int _port_num(gpio_t pin)
  {
      return (((pin >> 9) & 0x0f) - 7);
  }
  
  /**
   * @brief Test if the given port is valid
   */
  static bool _port_valid(Pio *port)
  {
      if (port == PIOA || port == PIOB || port == PIOC || port == PIOD) {
          return true;
      }
      return false;
  }
  
  /**
   * @brief Get the pin number from the pin identifier, encoded in the LSB 5 bit
   */
  static inline int _pin_num(gpio_t pin)
  {
      return (pin & 0x1f);
  }
  
  /**
   * @brief Get context for a specific pin
   */
  static inline int _ctx(int port, int pin)
  {
      return (exti_map[(port * 4) + (pin >> 3)] >> ((pin & 0x7) * 4)) & 0xf;
  }
  
  /**
   * @brief Write an entry to the context map array
   */
  static void _write_map(int port, int pin, int ctx)
  {
      exti_map[(port * 4) + (pin >> 3)] &= ~(0xf << ((pin & 0x7) * 4));
      exti_map[(port * 4) + (pin >> 3)] |=  (ctx << ((pin & 0x7) * 4));
  }
  
  /**
   * @brief Find a free spot in the array containing the interrupt contexts
   */
  static int _get_free_ctx(void)
  {
      for (int i = 0; i < CTX_NUMOF; i++) {
          if (exti_ctx[i].cb == NULL) {
              return i;
          }
      }
      return -1;
  }
  
  /**
   * @brief Clear the context of the given pin
   */
  static void _ctx_clear(int port, int pin)
  {
      int ctx = _ctx(port, pin);
      if (ctx < CTX_NUMOF) {
          exti_ctx[ctx].cb = NULL;
          _write_map(port, pin, CTX_NUMOF);
      }
  }
  
  int gpio_init(gpio_t pin, gpio_mode_t mode)
  {
      Pio *port = _port(pin);
      int pin_num = _pin_num(pin);
      int port_num = _port_num(pin);
  
      /* make sure port is valid and no pull-down is selected*/
      if (!_port_valid(port) || (mode == GPIO_IN_PD)) {
          return -1;
      }
  
      /* power on the corresponding port */
      PMC->PMC_PCER0 = (1 << (port_num + 11));
  
      /* disable interrupt and clear context (to be safe) */
      port->PIO_IDR = (1 << pin_num);
      _ctx_clear(port_num, pin_num);
  
       /* give the PIO module the power over the corresponding pin */
      port->PIO_PER = (1 << pin_num);
  
      /* configure pin direction (in/out) */
      if (mode & MODE_BIT_IO) {
          port->PIO_OER = (1 << pin_num);
      }
      else {
          port->PIO_ODR = (1 << pin_num);
      }
      /* set pull-up */
      if (mode & MODE_BIT_PUE) {
          port->PIO_PUER = (1 << pin_num);
      }
      else {
          port->PIO_PUDR = (1 << pin_num);
      }
      /* set multi-driver (open-drain) mode */
      if (mode & MODE_BIT_ODE) {
          port->PIO_MDER = (1 << pin_num);
      }
      else {
          port->PIO_MDDR = (1 << pin_num);
      }
  
      return 0;
  }
  
  int gpio_init_int(gpio_t pin, gpio_mode_t mode, gpio_flank_t flank,
                    gpio_cb_t cb, void *arg)
  {
      Pio *port = _port(pin);
      int pin_num = _pin_num(pin);
      int port_num = _port_num(pin);
  
      /* make sure pin is valid */
      if (!_port_valid(port)) {
          return -1;
      }
  
      /* configure pin as input */
      gpio_init(pin, mode);
  
      /* try go grab a free spot in the context array */
      int ctx_num = _get_free_ctx();
      if (ctx_num < 0) {
          return -1;
      }
      /* save context */
      exti_ctx[ctx_num].cb = cb;
      exti_ctx[ctx_num].arg = arg;
      _write_map(port_num, pin_num, ctx_num);
  
      /* set the active flank */
      switch (flank) {
          case GPIO_FALLING:
              port->PIO_AIMER = (1 << pin_num);
              port->PIO_ESR = (1 << pin_num);
              port->PIO_FELLSR =(1 << pin_num);
              break;
          case GPIO_RISING:
              port->PIO_AIMER = (1 << pin_num);
              port->PIO_ESR = (1 << pin_num);
              port->PIO_REHLSR = (1 << pin_num);
              break;
          case GPIO_BOTH:
              port->PIO_AIMDR = (1 << pin_num);
              break;
      }
      /* clean interrupt status register */
      port->PIO_ISR;
      /* enable the interrupt for the given channel */
      NVIC_EnableIRQ(port_num + PIOA_IRQn);
      port->PIO_IER = (1 << pin_num);
  
      return 0;
  }
  
  void gpio_init_mux(gpio_t pin, gpio_mux_t mux)
  {
      /* power on the corresponding port */
      PMC->PMC_PCER0 = (1 << (_port_num(pin) + 11));
      /* give peripheral control over the pin */
      _port(pin)->PIO_PDR = (1 << _pin_num(pin));
      /* and configure the MUX */
      _port(pin)->PIO_ABSR &= ~(1 << _pin_num(pin));
      _port(pin)->PIO_ABSR |=  (mux << _pin_num(pin));
  }
  
  void gpio_irq_enable(gpio_t pin)
  {
      NVIC_EnableIRQ((1 << (_port_num(pin) + PIOA_IRQn)));
  }
  
  void gpio_irq_disable(gpio_t pin)
  {
      NVIC_DisableIRQ((1 << (_port_num(pin) + PIOA_IRQn)));
  }
  
  int gpio_read(gpio_t pin)
  {
      Pio *port = _port(pin);
      int pin_num = _pin_num(pin);
  
       if (port->PIO_OSR & (1 << pin_num)) {
          return (port->PIO_ODSR & (1 << pin_num)) ? 1 : 0;
      }
      else {
          return (port->PIO_PDSR & (1 << pin_num)) ? 1 : 0;
      }
  }
  
  void gpio_set(gpio_t pin)
  {
      _port(pin)->PIO_SODR = (1 << _pin_num(pin));
  }
  
  void gpio_clear(gpio_t pin)
  {
      _port(pin)->PIO_CODR = (1 << _pin_num(pin));
  }
  
  void gpio_toggle(gpio_t pin)
  {
      if (gpio_read(pin)) {
          _port(pin)->PIO_CODR = (1 << _pin_num(pin));
      } else {
          _port(pin)->PIO_SODR = (1 << _pin_num(pin));
      }
  }
  
  void gpio_write(gpio_t pin, int value)
  {
      if (value) {
          _port(pin)->PIO_SODR = (1 << _pin_num(pin));
      } else {
          _port(pin)->PIO_CODR = (1 << _pin_num(pin));
      }
  }
  
  static inline void isr_handler(Pio *port, int port_num)
  {
      /* take interrupt flags only from pins which interrupt is enabled */
      uint32_t status = (port->PIO_ISR & port->PIO_IMR);
  
      for (int i = 0; i < 32; i++) {
          if (status & (1 << i)) {
              int ctx = _ctx(port_num, i);
              exti_ctx[ctx].cb(exti_ctx[ctx].arg);
          }
      }
      cortexm_isr_end();
  }
  
  void isr_pioa(void)
  {
      isr_handler(PIOA, PA);
  }
  
  void isr_piob(void)
  {
      isr_handler(PIOB, PB);
  }
  
  void isr_pioc(void)
  {
      isr_handler(PIOC, PC);
  }
  
  void isr_piod(void)
  {
      isr_handler(PIOD, PD);
  }