aboutsummaryrefslogtreecommitdiffstats
path: root/os/hal/ports/AVR/XMEGA/LLD/USARTv1/hal_uart_lld.c
blob: 10726fafcdd47738738a75ab35f88572006858d4 (plain)
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
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
/*
    ChibiOS - Copyright (C) 2016..2018 Theodore Ateba

    Licensed under the Apache License, Version 2.0 (the "License");
    you may not use this file except in compliance with the License.
    You may obtain a copy of the License at

        http://www.apache.org/licenses/LICENSE-2.0

    Unless required by applicable law or agreed to in writing, software
    distributed under the License is distributed on an "AS IS" BASIS,
    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    See the License for the specific language governing permissions and
    limitations under the License.
*/

/**
 * @file    hal_uart_lld.c
 * @brief   AVR UART subsystem low level driver source.
 *
 * @addtogroup UART
 * @{
 */

#include "hal.h"

#if (HAL_USE_UART == TRUE) || defined(__DOXYGEN__)

/*==========================================================================*/
/* Driver local definitions.                                                */
/*==========================================================================*/

/*==========================================================================*/
/* Driver exported variables.                                               */
/*==========================================================================*/

/**
 * @brief   USART1 (USARTC0) driver identifier.
 */
#if (AVR_UART_USE_USART1 == TRUE) || defined(__DOXYGEN__)
UARTDriver USART1D;
#endif

/**
 * @brief   USART2 (USARTC1) driver identifier.
 */
#if (AVR_UART_USE_USART2 == TRUE) || defined(__DOXYGEN__)
UARTDriver USART2D;
#endif

/**
 * @brief   USART3 (USARTD0) driver identifier.
 */
#if (AVR_UART_USE_USART3 == TRUE) || defined(__DOXYGEN__)
UARTDriver USART3D;
#endif

/**
 * @brief   USART4 (USARTD1) driver identifier.
 */
#if (AVR_UART_USE_USART4 == TRUE) || defined(__DOXYGEN__)
UARTDriver USART4D;
#endif

/**
 * @brief   USARTD5 (USARTE0) driver identifier.
 */
#if (AVR_UART_USE_USART5 == TRUE) || defined(__DOXYGEN__)
UARTDriver USART5D;
#endif

/*==========================================================================*/
/* Driver local variables and types.                                        */
/*==========================================================================*/

/*==========================================================================*/
/* Driver local functions.                                                  */
/*==========================================================================*/

/**
 * @brief   Configure the multiprocessor communication mode.
 *
 * @param[in] uartp     pointer to the @p UARTDriver object
 */
static void usart_cfg_mpcm(UARTDriver *uartp) {

  if (uartp->config->mpcm)
    uartp->usart->CTRLB |= (USART_MPCM_bm);   /* Enable the MPCM.   */
  else
    uartp->usart->CTRLB &= ~(USART_MPCM_bm);  /* Disable the MPCM.  */
}

/**
 * @brief   Configure the double speed.
 *
 * @param[in] uartp     pointer to the @p UARTDriver object
 */
static void usart_cfg_clk2x(UARTDriver *uartp) {

  if (uartp->config->clk2x)
    uartp->usart->CTRLB |= (USART_CLK2X_bm);  /* Enable double speed. */
  else
    uartp->usart->CTRLB &= ~(USART_CLK2X_bm); /* Use normal speed.    */
}

/**
 * @brief   Configuration of transmission mode (8/9 bits).
 *
 * @param[in] uartp     pointer to the @p UARTDriver object
 */
static void usart_cfg_txb8(UARTDriver *uartp) {

  if (uartp->config->txb8)
    uartp->usart->CTRLB |= (USART_TXB8_bm);   /* 9 bits transmission mode. */
  else
    uartp->usart->CTRLB &= ~(USART_TXB8_bm);  /* 8 bits transmission mode. */
}

/**
 * @brief   Configuration of communication mode.
 *
 * @param[in] uartp     pointer to the @p UARTDriver object
 */
static void usart_cfg_cmode(UARTDriver *uartp) {

  if (uartp->config->cmode == USART_CMODE_MSPI) {
    uartp->usart->CTRLC = (uartp->usart->CTRLC & ~USART_CMODE_gm) | \
                          (USART_CMODE_MSPI_gc);
  }
  else if (uartp->config->cmode == USART_CMODE_IRCOM) {
    uartp->usart->CTRLC = (uartp->usart->CTRLC & ~USART_CMODE_gm) | \
                          (USART_CMODE_IRDA_gc);
  }
  else if (uartp->config->cmode == USART_CMODE_SYNCHRONOUS) {
    uartp->usart->CTRLC = (uartp->usart->CTRLC & ~USART_CMODE_gm) | \
                          (USART_CMODE_SYNCHRONOUS_gc);
  }
  else {
    uartp->usart->CTRLC = (uartp->usart->CTRLC & ~USART_CMODE_gm) | \
                          (USART_CMODE_ASYNCHRONOUS_gc);
  }
}

/**
 * @brief   Configuration of the number of stop to use during transmission.
 * @details @true set 2 stop bit and @false set 1 stop bit.
 *
 * @param[in] uartp     pointer to the @p UARTDriver object
 */
static void usart_cfg_sbmode(UARTDriver *uartp) {

  if (uartp->config->sbmode) {
    uartp->usart->CTRLC |= USART_SBMODE_bm;
  }
  else {
    uartp->usart->CTRLC &= ~USART_SBMODE_bm;
  }
}

/**
 * @brief   Configuration of parity mode.
 *
 * @param[in] uartp     pointer to the @p UARTDriver object
 */
static void usart_cfg_pmode(UARTDriver *uartp) {

  if (uartp->config->pmode == USART_PMODE_EVEN) {
    uartp->usart->CTRLC = (uartp->usart->CTRLC & ~USART_PMODE_gm) | \
                          (USART_PMODE_EVEN_gc);
  }
  else if (uartp->config->chsize == USART_PMODE_ODD) {
    uartp->usart->CTRLC = (uartp->usart->CTRLC & ~USART_PMODE_gm) | \
                          (USART_PMODE_ODD_gc);
  }
  else {
    uartp->usart->CTRLC = (uartp->usart->CTRLC & ~USART_PMODE_gm) | \
                          (USART_PMODE_DISABLED_gc);
  }
}

/**
 * @brief   Configuration of caracter size.
 *
 * @param[in] uartp     pointer to the @p UARTDriver object
 */
static void usart_cfg_chsize(UARTDriver *uartp) {

  if (uartp->config->chsize == USART_CHSIZE_5BIT) {
    uartp->usart->CTRLC = (uartp->usart->CTRLC & ~USART_CHSIZE_gm) | \
                          (USART_CHSIZE_5BIT_gc);
  }
  else if (uartp->config->chsize == USART_CHSIZE_6BIT) {
    uartp->usart->CTRLC = (uartp->usart->CTRLC & ~USART_CHSIZE_gm) | \
                          (USART_CHSIZE_6BIT_gc);
  }
  else if (uartp->config->chsize == USART_CHSIZE_7BIT) {
    uartp->usart->CTRLC = (uartp->usart->CTRLC & ~USART_CHSIZE_gm) | \
                          (USART_CHSIZE_7BIT_gc);
  }
  else if (uartp->config->chsize == USART_CHSIZE_8BIT) {
    uartp->usart->CTRLC = (uartp->usart->CTRLC & ~USART_CHSIZE_gm) | \
                          (USART_CHSIZE_8BIT_gc);
  }
  else {
    uartp->usart->CTRLC = (uartp->usart->CTRLC & ~USART_CHSIZE_gm) | \
                          (USART_CHSIZE_9BIT_gc);
  }
}

/**
 * @brief   Configuration of the baud rate.
 * @note    BSCALE is set to 0 for the moment.
 * @TODO    Support all the BSCALE value
 *
 * @param[in] uartp     pointer to the @p UARTDriver object
 */
static void usart_cfg_baudrate(UARTDriver *uartp) {

	/* BSCALE = 0. */
	#define BSCALE 0
	uint16_t br = get_bsel(uartp->config->speed);
	uartp->usart->BAUDCTRLA =(uint8_t)br;
	uartp->usart->BAUDCTRLB =(BSCALE << USART_BSCALE0_bp) | (br >> 8);
}

/**
 * @brief   USART de-initialization.
 * @details This function must be invoked with interrupts disabled.
 *
 * @param[in] uartp     pointer to the @p UARTDriver object
 */
static void usart_stop(UARTDriver *uartp) {

  /* Stops RX and TX DMA channels. */
  /*
  dmaStreamDisable(uartp->dmarx);
  dmaStreamDisable(uartp->dmatx);
  */

  /* Stops USART operations. */
  uartp->usart->CTRLB &= ~(USART_RXEN_bm); /* Disable the USART receiver.    */
  uartp->usart->CTRLB &= ~(USART_TXEN_bm); /* Disable the USART transmitter. */
}

/**
 * @brief   USART initialization.
 * @details This function must be invoked with interrupts disabled.
 *
 * @param[in] uartp     pointer to the @p UARTDriver object
 */
static void usart_start(UARTDriver *uartp) {

  /* Defensive programming, starting from a clean state. */
  usart_stop(uartp);

  /* Resetting eventual pending status flags. */

  /* Starting the receiver idle loop. */
  /*uart_enter_rx_idle_loop(uartp);*/

  usart_cfg_mpcm(uartp);  /* Set the multi processor communication mode.    */
  usart_cfg_clk2x(uartp); /* Set the USART speed (Normal/Double).           */
  usart_cfg_txb8(uartp);  /* Set the transmission mode (8/9bits).           */
  usart_cfg_cmode(uartp); /* Set the communication mode.                    */
  usart_cfg_sbmode(uartp);/* Set the stop bit mode.                         */
  usart_cfg_pmode(uartp); /* Set the parity mode.                           */
  usart_cfg_chsize(uartp);/* Set the character size.                        */
  usart_cfg_baudrate(uartp); /* Set the baud rate.                          */
  uartp->usart->CTRLB |= (USART_RXEN_bm); /* enable the USART receiver.     */
  uartp->usart->CTRLB |= (USART_TXEN_bm); /* enable the USART transmitter.  */
}

/*==========================================================================*/
/* Driver interrupt handlers.                                               */
/*==========================================================================*/

#if AVR_UART_USE_USART1 || defined(__DOXYGEN__)
/**
 * @brief   USART1 TX IRQ handler, transmission complete interruption.
 *
 * @isr
 */
OSAL_IRQ_HANDLER(USARTC0_TXC_vect) {

  OSAL_IRQ_PROLOGUE();

  /*serve_usart_irq(&UARTD1);*/

  OSAL_IRQ_EPILOGUE();
}

/**
 * @brief   USART1 RX IRQ handler, reception complete interruption.
 *
 * @isr
 */
OSAL_IRQ_HANDLER(USARTC0_RXC_vect) {

  OSAL_IRQ_PROLOGUE();

  /*serve_usart_irq(&UARTD1);*/

  OSAL_IRQ_EPILOGUE();
}

/**
 * @brief   USART1 DRE IRQ handler, data register empty interruption.
 *
 * @isr
 */
OSAL_IRQ_HANDLER(USARTC0_DRE_vect) {

  OSAL_IRQ_PROLOGUE();

  /*serve_usart_irq(&UARTD1);*/

  OSAL_IRQ_EPILOGUE();
}
#endif /* AVR_UART_USE_USART1 */

/*==========================================================================*/
/* Driver exported functions.                                               */
/*==========================================================================*/

/**
 * @brief   Low level UART driver initialization.
 *
 * @notapi
 */
void uart_lld_init(void) {

#if AVR_UART_USE_USART1 == TRUE
  /* Driver initialization. */
  uartObjectInit(&USART1D);
  USART1D.usart = &USARTC0;
  /*USART1D.usart->CTRLC = 0;*/
  /*USART1D.usart->BAUDCTRLA = 0;*/
#endif

#if AVR_UART_USE_USART2 == TRUE
  /* Driver initialization. */
  uartObjectInit(&USART2D);
#endif

#if AVR_UART_USE_USART3 == TRUE
  /* Driver initialization. */
  uartObjectInit(&USART3D);
#endif

#if AVR_UART_USE_USART4 == TRUE
  /* Driver initialization. */
  uartObjectInit(&USART4D);
#endif

#if AVR_UART_USE_USART5 == TRUE
  /* Driver initialization. */
  uartObjectInit(&USART5D);
#endif
}

/**
 * @brief   Configures and activates the UART peripheral.
 *
 * @param[in] uartp      pointer to the @p UARTDriver object
 *
 * @notapi
 */
void uart_lld_start(UARTDriver *uartp) {

  if (uartp->state == UART_STOP) {
    /* Enables the peripheral. */
#if AVR_UART_USE_USART1 == TRUE
    if (&USART1D == uartp) {
      /* TODO: Implement the DMA part here. */
    }
#endif
  }
  /* Configures the peripheral. */
  uartp->rxstate = UART_RX_IDLE;
  uartp->txstate = UART_TX_IDLE;
  usart_start(uartp);
}

/**
 * @brief   Deactivates the UART peripheral.
 *
 * @param[in] uartp      pointer to the @p UARTDriver object
 *
 * @notapi
 */
void uart_lld_stop(UARTDriver *uartp) {

  if (uartp->state == UART_READY) {
    /* Resets the peripheral.  */
    usart_stop(uartp);
    /* Disables the peripheral. */
#if AVR_UART_USE_USART1 == TRUE
    if (&USART1D == uartp) {
      /* TODO: Implement the DMA part here. */
    }
#endif
  }
}

/**
 * @brief   Starts a transmission on the UART peripheral.
 * @note    The buffers are organized as uint8_t arrays for data sizes below
 *          or equal to 8 bits else it is organized as uint16_t arrays.
 *
 * @param[in] uartp     pointer to the @p UARTDriver object
 * @param[in] n         number of data frames to send
 * @param[in] txbuf     the pointer to the transmit buffer
 *
 * @notapi
 */
void uart_lld_start_send(UARTDriver *uartp, size_t n, const uint8_t *txbuf) {

  /* TODO: Add support of DMA. */
  while (n--) {
	  while (!((uartp->usart->STATUS & USART_DREIF_bm) != 0));
    uartp->usart->DATA = *txbuf;
    txbuf++;
	}
}

/**
 * @brief   Stops any ongoing transmission.
 * @note    Stopping a transmission also suppresses the transmission callbacks.
 *
 * @param[in] uartp      pointer to the @p UARTDriver object
 *
 * @return              The number of data frames not transmitted by the
 *                      stopped transmit operation.
 *
 * @notapi
 */
size_t uart_lld_stop_send(UARTDriver *uartp) {

  (void)uartp;

  return 0;
}

/**
 * @brief   Starts a receive operation on the UART peripheral.
 * @note    The buffers are organized as uint8_t arrays for data sizes below
 *          or equal to 8 bits else it is organized as uint16_t arrays.
 *
 * @param[in] uartp     pointer to the @p UARTDriver object
 * @param[in] n         number of data frames to send
 * @param[out] rxbuf    the pointer to the receive buffer
 *
 * @notapi
 */
void uart_lld_start_receive(UARTDriver *uartp, size_t n, void *rxbuf) {

  (void)uartp;
  (void)n;
  (void)rxbuf;

}

/**
 * @brief   Stops any ongoing receive operation.
 * @note    Stopping a receive operation also suppresses the receive callbacks.
 *
 * @param[in] uartp      pointer to the @p UARTDriver object
 *
 * @return              The number of data frames not received by the
 *                      stopped receive operation.
 *
 * @notapi
 */
size_t uart_lld_stop_receive(UARTDriver *uartp) {

  (void)uartp;

  return 0;
}

#endif /* HAL_USE_UART == TRUE */

/** @} */