Blame view

RIOT/cpu/cc430/cc430-gpioint.c 5.27 KB
fb11e647   vrobic   reseau statique a...
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
  /*
   * Copyright 2010, Freie Universitรคt Berlin (FUB).
   * Copyright 2013, INRIA.
   *
   * 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     cc430
   * @file
   * @brief       CC430 GPIO Interrupt Multiplexer implementation
   * @author      Oliver Hahm <oliver.hahm@inria.fr>
   */
  
  #include <stdlib.h>
  #include <legacymsp430.h>
  #include "gpioint.h"
  #include "bitarithm.h"
  #include "cpu.h"
  #include "irq.h"
  #include "xtimer.h"
  
  /** min and max portnumber to generate interrupts */
  #define PORTINT_MIN     (1)
  #define PORTINT_MAX     (2)
  
  /** amount of interrupt capable ports */
  #define INT_PORTS       (2)
  
  /** number of bits per port */
  #define BITMASK_SIZE    (8)
  
  /** debouncing port interrupts */
  #define DEBOUNCE_TIMEOUT   (250)
  
  /** interrupt callbacks */
  fp_irqcb cb[INT_PORTS][BITMASK_SIZE];
  
  /** debounce interrupt flags */
  uint8_t debounce_flags[INT_PORTS];
  
  /** debounce interrupt times */
  uint16_t debounce_time[INT_PORTS][BITMASK_SIZE];
  
  uint16_t c1 = 0, c2 = 0;
  
  void gpioint_init(void)
  {
      uint8_t i, j;
  
      for (i = 0; i < INT_PORTS; i++) {
          for (j = 0; j < BITMASK_SIZE; j++) {
              cb[i][j] = NULL;
              debounce_time[i][j] = 0;
          }
      }
  }
  
  bool gpioint_set(int port, uint32_t bitmask, int flags, fp_irqcb callback)
  {
      if ((port >= PORTINT_MIN) && (port <= PORTINT_MAX)) {
          /* set the callback function */
          int8_t base = bitarithm_msb(bitmask);
  
          if (base >= 0) {
              cb[port - PORTINT_MIN][base] = callback;
          }
          else {
              return false;
          }
  
          if (flags & GPIOINT_DEBOUNCE) {
              debounce_flags[port - PORTINT_MIN] |= bitmask;
          }
          else {
              debounce_flags[port - PORTINT_MIN] &= ~bitmask;
          }
      }
  
      switch(port) {
          case 1:
              /* set port to input */
              P1DIR &= ~bitmask;
              /* enable internal pull-down */
              P1OUT &= ~bitmask;
              P1REN |= bitmask;
  
              /* reset IRQ flag */
              P1IFG &= ~bitmask;
  
              /* trigger on rising... */
              if (flags & GPIOINT_RISING_EDGE) {
                  P1IES &= bitmask;
              }
  
              /* ...or falling edge */
              if (flags & GPIOINT_FALLING_EDGE) {
                  P1IES |= bitmask;
              }
  
              /*  disable interrupt */
              if (flags == GPIOINT_DISABLE) {
                  P1IE &= ~bitmask;
              }
  
              /* enable interrupt */
              P1IE |= bitmask;
              break;
  
          case 2:
              /* set port to input */
              P2DIR &= ~bitmask;
              /* enable internal pull-down */
              P2OUT &= ~bitmask;
              P2REN |= bitmask;
  
              /* reset IRQ flag */
              P2IFG &= ~bitmask;
  
              /* trigger on rising... */
              if (flags == GPIOINT_RISING_EDGE) {
                  P2IES &= bitmask;
              }
              /* ...or falling edge */
              else if (flags == GPIOINT_FALLING_EDGE) {
                  P2IES |= bitmask;
              }
              /* or disable interrupt */
              else {
                  P2IE &= ~bitmask;
              }
  
              /* enable interrupt */
              P2IE |= bitmask;
              break;
  
          default:
              return false;
      }
  
      return 1;
  }
  
  interrupt(PORT1_VECTOR) __attribute__((naked)) port1_isr(void)
  {
      uint8_t int_enable, ifg_num, p1ifg;
      uint16_t p1iv;
      uint16_t diff;
      __enter_isr();
  
      /* Debounce
       * Disable PORT1 IRQ
       */
      p1ifg = P1IFG;
      p1iv = P1IV;
      int_enable = P1IE;
      P1IE = 0x00;
  
      ifg_num = (p1iv >> 1) - 1;
  
      /* check interrupt source */
      if (debounce_flags[0] & p1ifg) {
          /* check if bouncing */
          diff = xtimer_now_usec() - debounce_time[0][ifg_num];
  
          if (diff > DEBOUNCE_TIMEOUT) {
              debounce_time[0][ifg_num] = xtimer_now_usec();
  
              if (cb[0][ifg_num] != NULL) {
                  cb[0][ifg_num]();
              }
          }
          else {
              /* TODO: check for long duration irq */
              __asm__ volatile(" nop ");
          }
      }
      else {
          if (cb[0][ifg_num] != NULL) {
              cb[0][ifg_num]();
          }
      }
  
      P1IFG = 0x00;
      P1IE  = int_enable;
      __exit_isr();
  }
  
  interrupt(PORT2_VECTOR) __attribute__((naked)) port2_isr(void)
  {
      uint8_t int_enable, ifg_num, p2ifg;
      uint16_t p2iv;
      uint16_t diff;
      __enter_isr();
  
      /* Debounce
       * Disable PORT2 IRQ
       */
      p2ifg = P2IFG;
      p2iv = P2IV;
      int_enable = P2IE;
      P2IE = 0x00;
  
      ifg_num = (p2iv >> 1) - 1;
  
      /* check interrupt source */
      if (debounce_flags[1] & p2ifg) {
          /* check if bouncing */
          diff = xtimer_now_usec() - debounce_time[1][ifg_num];
  
          if (diff > DEBOUNCE_TIMEOUT) {
              debounce_time[1][ifg_num] = xtimer_now_usec();
              c1++;
  
              if (cb[1][ifg_num] != NULL) {
                  cb[1][ifg_num]();
              }
          }
          else {
              c2++;
              /* TODO: check for long duration irq */
              __asm__ volatile(" nop ");
          }
      }
      else {
          if (cb[1][ifg_num] != NULL) {
              cb[1][ifg_num]();
          }
      }
  
  
      P2IFG = 0x00;
      P2IE  = int_enable;
      __exit_isr();
  }