Blame view

RIOT/cpu/cc2538/periph/uart.c 9.51 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
339
340
341
342
343
344
345
346
347
348
349
350
351
  /*
   * 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.
   */
  
  /**
   * @ingroup     cpu_cc2538
   * @ingroup     drivers_periph_uart
   * @{
   *
   * @file
   * @brief       Low-level UART driver implementation
   *
   * @author      Ian Martin <ian@locicontrols.com>
   *
   * @}
   */
  
  #include <stddef.h>
  
  #include "board.h"
  #include "cpu.h"
  #include "periph/uart.h"
  #include "periph_conf.h"
  
  #undef BIT
  #define BIT(n) ( 1 << (n) )
  
  enum {
      FIFO_LEVEL_1_8TH = 0,
      FIFO_LEVEL_2_8TH = 1,
      FIFO_LEVEL_4_8TH = 2,
      FIFO_LEVEL_6_8TH = 3,
      FIFO_LEVEL_7_8TH = 4,
  };
  
  /* Valid word lengths for the LCRHbits.WLEN bit field: */
  enum {
      WLEN_5_BITS = 0,
      WLEN_6_BITS = 1,
      WLEN_7_BITS = 2,
      WLEN_8_BITS = 3,
  };
  
  /* Bit field definitions for the UART Line Control Register: */
  #define FEN   BIT( 4) /**< Enable FIFOs */
  
  /* Bit masks for the UART Masked Interrupt Status (MIS) Register: */
  #define OEMIS BIT(10) /**< UART overrun error masked status */
  #define BEMIS BIT( 9) /**< UART break error masked status */
  #define FEMIS BIT( 7) /**< UART framing error masked status */
  #define RTMIS BIT( 6) /**< UART RX time-out masked status */
  #define RXMIS BIT( 4) /**< UART RX masked interrupt status */
  
  #define UART_CTL_HSE_VALUE    0
  #define DIVFRAC_NUM_BITS      6
  #define DIVFRAC_MASK          ( (1 << DIVFRAC_NUM_BITS) - 1 )
  
  /** @brief Indicates if there are bytes available in the UART0 receive FIFO */
  #define uart0_rx_avail() ( UART0->cc2538_uart_fr.FRbits.RXFE == 0 )
  
  /** @brief Indicates if there are bytes available in the UART1 receive FIFO */
  #define uart1_rx_avail() ( UART1->cc2538_uart_fr.FRbits.RXFE == 0 )
  
  /** @brief Read one byte from the UART0 receive FIFO */
  #define uart0_read()     ( UART0->DR )
  
  /** @brief Read one byte from the UART1 receive FIFO */
  #define uart1_read()     ( UART1->DR )
  
  /*---------------------------------------------------------------------------*/
  
  /**
   * @brief Allocate memory to store the callback functions.
   */
  static uart_isr_ctx_t uart_config[UART_NUMOF];
  
  cc2538_uart_t * const UART0 = (cc2538_uart_t *)0x4000c000;
  cc2538_uart_t * const UART1 = (cc2538_uart_t *)0x4000d000;
  
  /*---------------------------------------------------------------------------*/
  static void reset(cc2538_uart_t *u)
  {
      /* Make sure the UART is disabled before trying to configure it */
      u->cc2538_uart_ctl.CTLbits.UARTEN = 0;
  
      u->cc2538_uart_ctl.CTLbits.RXE = 1;
      u->cc2538_uart_ctl.CTLbits.TXE = 1;
      u->cc2538_uart_ctl.CTLbits.HSE = UART_CTL_HSE_VALUE;
  
      /* Clear error status */
      u->cc2538_uart_dr.ECR = 0xFF;
  
      /* Flush FIFOs by clearing LCHR.FEN */
      u->cc2538_uart_lcrh.LCRH &= ~FEN;
  
      /* Restore LCHR configuration */
      u->cc2538_uart_lcrh.LCRH |= FEN;
  
      /* UART Enable */
      u->cc2538_uart_ctl.CTLbits.UARTEN = 1;
  }
  /*---------------------------------------------------------------------------*/
  
  #if UART_0_EN
  void UART_0_ISR(void)
  {
      uint_fast16_t mis;
  
      /* Latch the Masked Interrupt Status and clear any active flags */
      mis = UART_0_DEV->cc2538_uart_mis.MIS;
      UART_0_DEV->ICR = mis;
  
      while (UART_0_DEV->cc2538_uart_fr.FRbits.RXFE == 0) {
          uart_config[0].rx_cb(uart_config[0].arg, UART_0_DEV->DR);
      }
  
      if (mis & (OEMIS | BEMIS | FEMIS)) {
          /* ISR triggered due to some error condition */
          reset(UART_0_DEV);
      }
  
      cortexm_isr_end();
  }
  #endif /* UART_0_EN */
  
  #if UART_1_EN
  void UART_1_ISR(void)
  {
      uint_fast16_t mis;
  
      /* Latch the Masked Interrupt Status and clear any active flags */
      mis = UART_1_DEV->cc2538_uart_mis.MIS;
      UART_1_DEV->ICR = mis;
  
      while (UART_1_DEV->cc2538_uart_fr.FRbits.RXFE == 0) {
          uart_config[1].rx_cb(uart_config[1].arg, UART_1_DEV->DR);
      }
  
      if (mis & (OEMIS | BEMIS | FEMIS)) {
          /* ISR triggered due to some error condition */
          reset(UART_1_DEV);
      }
  
      cortexm_isr_end();
  }
  #endif /* UART_1_EN */
  
  static int init_base(uart_t uart, uint32_t baudrate);
  
  int uart_init(uart_t uart, uint32_t baudrate, uart_rx_cb_t rx_cb, void *arg)
  {
      /* initialize basic functionality */
      int res = init_base(uart, baudrate);
      if (res != UART_OK) {
          return res;
      }
  
      /* register callbacks */
      uart_config[uart].rx_cb = rx_cb;
      uart_config[uart].arg = arg;
  
      /* configure interrupts and enable RX interrupt */
      switch (uart) {
  #if UART_0_EN
          case UART_0:
              NVIC_SetPriority(UART0_IRQn, UART_IRQ_PRIO);
              NVIC_EnableIRQ(UART0_IRQn);
              break;
  #endif
  #if UART_1_EN
          case UART_1:
              NVIC_SetPriority(UART1_IRQn, UART_IRQ_PRIO);
              NVIC_EnableIRQ(UART1_IRQn);
              break;
  #endif
          default:
              return UART_NODEV;
      }
  
      return UART_OK;
  }
  
  static int init_base(uart_t uart, uint32_t baudrate)
  {
      cc2538_uart_t *u = NULL;
  
      switch (uart) {
  #if UART_0_EN
          case UART_0:
              u = UART_0_DEV;
  
              /*
               * Select the UARTx RX pin by writing to the IOC_UARTRXD_UARTn register
               */
              IOC_UARTRXD_UART0 = UART_0_RX_PIN;
  
              /*
               * Pad Control for the TX pin:
               * - Set function to UARTn TX
               * - Output Enable
               */
              IOC_PXX_SEL[UART_0_TX_PIN] = UART0_TXD;
              IOC_PXX_OVER[UART_0_TX_PIN] = IOC_OVERRIDE_OE;
  
              /* Set RX and TX pins to peripheral mode */
              gpio_hardware_control(UART_0_TX_PIN);
              gpio_hardware_control(UART_0_RX_PIN);
              break;
  #endif
  #if UART_1_EN
          case UART_1:
              u = UART_1_DEV;
  
              /*
               * Select the UARTx RX pin by writing to the IOC_UARTRXD_UARTn register
               */
              IOC_UARTRXD_UART1 = UART_1_RX_PIN;
  
              /*
               * Pad Control for the TX pin:
               * - Set function to UARTn TX
               * - Output Enable
               */
              IOC_PXX_SEL[UART_1_TX_PIN] = UART1_TXD;
              IOC_PXX_OVER[UART_1_TX_PIN] = IOC_OVERRIDE_OE;
  
              /* Set RX and TX pins to peripheral mode */
              gpio_hardware_control(UART_1_TX_PIN);
              gpio_hardware_control(UART_1_RX_PIN);
              break;
  #endif
  
          default:
              (void)u;
              return UART_NODEV;
      }
  
  #if UART_0_EN || UART_1_EN
      /* Enable clock for the UART while Running, in Sleep and Deep Sleep */
      unsigned int uart_num = ( (uintptr_t)u - (uintptr_t)UART0 ) / 0x1000;
      SYS_CTRL_RCGCUART |= (1 << uart_num);
      SYS_CTRL_SCGCUART |= (1 << uart_num);
      SYS_CTRL_DCGCUART |= (1 << uart_num);
  
      /* Make sure the UART is disabled before trying to configure it */
      u->cc2538_uart_ctl.CTL = 0;
  
      /* Run on SYS_DIV */
      u->CC = 0;
  
      /* On the CC2538, hardware flow control is supported only on UART1 */
      if (u == UART1) {
  #ifdef UART_1_RTS_PIN
          IOC_PXX_SEL[UART_1_RTS_PIN] = UART1_RTS;
          gpio_hardware_control(UART_1_RTS_PIN);
          IOC_PXX_OVER[UART_1_RTS_PIN] = IOC_OVERRIDE_OE;
          u->cc2538_uart_ctl.CTLbits.RTSEN = 1;
  #endif
  
  #ifdef UART_1_CTS_PIN
          IOC_UARTCTS_UART1 = UART_1_CTS_PIN;
          gpio_hardware_control(UART_1_CTS_PIN);
          IOC_PXX_OVER[UART_1_CTS_PIN] = IOC_OVERRIDE_DIS;
          u->cc2538_uart_ctl.CTLbits.CTSEN = 1;
  #endif
      }
  
      /* Enable clock for the UART while Running, in Sleep and Deep Sleep */
      uart_num = ( (uintptr_t)u - (uintptr_t)UART0 ) / 0x1000;
      SYS_CTRL_RCGCUART |= (1 << uart_num);
      SYS_CTRL_SCGCUART |= (1 << uart_num);
      SYS_CTRL_DCGCUART |= (1 << uart_num);
  
      /*
       * UART Interrupt Masks:
       * Acknowledge RX and RX Timeout
       * Acknowledge Framing, Overrun and Break Errors
       */
      u->cc2538_uart_im.IM = 0;
      u->cc2538_uart_im.IMbits.RXIM = 1; /**< UART receive interrupt mask */
      u->cc2538_uart_im.IMbits.RTIM = 1; /**< UART receive time-out interrupt mask */
      u->cc2538_uart_im.IMbits.OEIM = 1; /**< UART overrun error interrupt mask */
      u->cc2538_uart_im.IMbits.BEIM = 1; /**< UART break error interrupt mask */
      u->cc2538_uart_im.IMbits.FEIM = 1; /**< UART framing error interrupt mask */
  
      /* Set FIFO interrupt levels: */
      u->cc2538_uart_ifls.IFLSbits.RXIFLSEL = FIFO_LEVEL_4_8TH; /**< MCU default */
      u->cc2538_uart_ifls.IFLSbits.TXIFLSEL = FIFO_LEVEL_4_8TH; /**< MCU default */
  
      u->cc2538_uart_ctl.CTLbits.RXE = 1;
      u->cc2538_uart_ctl.CTLbits.TXE = 1;
      u->cc2538_uart_ctl.CTLbits.HSE = UART_CTL_HSE_VALUE;
  
      /* Set the divisor for the baud rate generator */
      uint32_t divisor = sys_clock_freq();
      divisor <<= UART_CTL_HSE_VALUE + 2;
      divisor += baudrate / 2; /**< Avoid a rounding error */
      divisor /= baudrate;
      u->IBRD = divisor >> DIVFRAC_NUM_BITS;
      u->FBRD = divisor & DIVFRAC_MASK;
  
      /* Configure line control for 8-bit, no parity, 1 stop bit and enable  */
      u->cc2538_uart_lcrh.LCRH = (WLEN_8_BITS << 5) | FEN;
  
      /* UART Enable */
      u->cc2538_uart_ctl.CTLbits.UARTEN = 1;
  
      return UART_OK;
  #endif /* UART_0_EN || UART_1_EN */
  }
  
  void uart_write(uart_t uart, const uint8_t *data, size_t len)
  {
      cc2538_uart_t *u;
  
      switch (uart) {
  #if UART_0_EN
          case UART_0:
              u = UART_0_DEV;
              break;
  #endif
  #if UART_1_EN
          case UART_1:
              u = UART_1_DEV;
              break;
  #endif
          default:
              return;
      }
  
      /* Block if the TX FIFO is full */
      for (size_t i = 0; i < len; i++) {
          while (u->cc2538_uart_fr.FRbits.TXFF);
          u->DR = data[i];
      }
  }
  
  void uart_poweron(uart_t uart)
  {
      (void) uart;
  
  }
  
  void uart_poweroff(uart_t uart)
  {
      (void) uart;
  }