aboutsummaryrefslogtreecommitdiffstats
path: root/os/hal/ports/NRF51/NRF51822/serial_lld.c
blob: 1783b9242f71ba4ed618230d002cc93abda21deb (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
/*
    Copyright (C) 2015 Fabio Utzig

    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    serial_lld.c
 * @brief   NRF51822 serial subsystem low level driver source.
 *
 * @addtogroup SERIAL
 * @{
 */

#include "hal.h"

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

#include "nrf51.h"

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

#define INVALID_BAUDRATE 0xFFFFFFFF
#define INVALID_PIN      0xFF

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

/** @brief USART1 serial driver identifier.*/
#if (NRF51_SERIAL_USE_UART0 == TRUE) || defined(__DOXYGEN__)
SerialDriver SD1;
#endif

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

/**
 * @brief   Driver default configuration.
 */
static const SerialConfig default_config = {
  .speed = 38400,
  .tx_pin = INVALID_PIN,
  .rx_pin = INVALID_PIN,
};

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

/*
 * @brief Maps a baudrate speed to a BAUDRATE register value.
 */
static uint32_t regval_from_baudrate(uint32_t speed)
{
  switch (speed) {
  case 1200:    return 0x0004F000;
  case 2400:    return 0x0009D000;
  case 4800:    return 0x0013B000;
  case 9600:    return 0x00275000;
  case 14400:   return 0x003B0000;
  case 19200:   return 0x004EA000;
  case 28800:   return 0x0075F000;
  case 38400:   return 0x009D5000;
  case 57600:   return 0x00EBF000;
  case 76800:   return 0x013A9000;
  case 115200:  return 0x01D7E000;
  case 230400:  return 0x03AFB000;
  case 250000:  return 0x04000000;
  case 460800:  return 0x075F7000;
  case 921600:  return 0x0EBEDFA4;
  case 1000000: return 0x10000000;
  }
  return INVALID_BAUDRATE;
}


/**
 * @brief   Driver output notification.
 */
#if NRF51_SERIAL_USE_UART0 || defined(__DOXYGEN__)
static void notify1(io_queue_t *qp)
{
  (void)qp;

  msg_t b = oqGetI(&SD1.oqueue);
  if (b < Q_OK) {
    chnAddFlagsI(&SD1, CHN_OUTPUT_EMPTY);
    return;
  }
  SD1.thread = chThdGetSelfX();
  NRF_UART0->TXD = b;
  chEvtWaitAny((eventmask_t) 1);
}
#endif


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

#if NRF51_SERIAL_USE_UART0 || defined(__DOXYGEN__)
OSAL_IRQ_HANDLER(Vector48) {

  OSAL_IRQ_PROLOGUE();

  if (NRF_UART0->EVENTS_RXDRDY) {
    NRF_UART0->EVENTS_RXDRDY = 0;
    osalSysLockFromISR();
    if (iqIsEmptyI(&SD1.iqueue))
      chnAddFlagsI(&SD1, CHN_INPUT_AVAILABLE);
    if (iqPutI(&SD1.iqueue, NRF_UART0->RXD) < Q_OK)
      chnAddFlagsI(&SD1, SD_OVERRUN_ERROR);
    osalSysUnlockFromISR();
  }

  if (NRF_UART0->EVENTS_TXDRDY) {
    NRF_UART0->EVENTS_TXDRDY = 0;
    osalSysLockFromISR();
    chEvtSignalI(SD1.thread, (eventmask_t) 1);
    osalSysUnlockFromISR();
  }

  /* TODO: Error handling for EVENTS_ERROR */

  OSAL_IRQ_EPILOGUE();
}
#endif

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

/**
 * @brief   Low level serial driver initialization.
 *
 * @notapi
 */
void sd_lld_init(void) {

#if NRF51_SERIAL_USE_UART0 == TRUE
  sdObjectInit(&SD1, NULL, notify1);
#endif
}

/**
 * @brief   Low level serial driver configuration and (re)start.
 *
 * @param[in] sdp       pointer to a @p SerialDriver object
 * @param[in] config    the architecture-dependent serial driver configuration.
 *                      If this parameter is set to @p NULL then a default
 *                      configuration is used.
 *
 * @notapi
 */
void sd_lld_start(SerialDriver *sdp, const SerialConfig *config) {

  if (config == NULL) {
    config = &default_config;
  }

  if (sdp->state == SD_STOP) {

#if NRF51_SERIAL_USE_UART0 == TRUE
    if (sdp == &SD1) {
      uint32_t regval;

      /* TODO: Add support for CTS/RTS! */

      /* Configure PINs */
      NRF_UART0->PSELRTS = ~0;
      NRF_UART0->PSELCTS = ~0;
      if (config->tx_pin != INVALID_PIN) {
        palSetPadMode(IOPORT1, config->tx_pin, PAL_MODE_OUTPUT_PUSHPULL);
        NRF_UART0->PSELTXD = config->tx_pin;
      }
      if (config->rx_pin != INVALID_PIN) {
        palSetPadMode(IOPORT1, config->rx_pin, PAL_MODE_INPUT);
        NRF_UART0->PSELRXD = config->rx_pin;
      }

      regval = regval_from_baudrate(config->speed);
      osalDbgAssert(regval != INVALID_BAUDRATE, "invalid baudrate speed");
      NRF_UART0->BAUDRATE = regval;

      /* Enable interrupts for RX, TX and ERROR */
      NRF_UART0->INTENSET = 0x284;

      NRF_UART0->EVENTS_RXDRDY = 0;
      NRF_UART0->EVENTS_TXDRDY = 0;

      nvicEnableVector(UART0_IRQn, 12);

      NRF_UART0->ENABLE = 4;
      NRF_UART0->TASKS_STARTRX = 1;
      NRF_UART0->TASKS_STARTTX = 1;
    }
#endif

  }
}

/**
 * @brief   Low level serial driver stop.
 * @details De-initializes the USART, stops the associated clock, resets the
 *          interrupt vector.
 *
 * @param[in] sdp       pointer to a @p SerialDriver object
 *
 * @notapi
 */
void sd_lld_stop(SerialDriver *sdp) {

  if (sdp->state == SD_READY) {

#if NRF51_SERIAL_USE_UART0 == TRUE
    if (&SD1 == sdp) {
      nvicDisableVector(UART0_IRQn);
    }
#endif

  }
}

#endif /* HAL_USE_SERIAL == TRUE */

/** @} */