forked from zephyrproject-rtos/zephyr
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathuart_rpi_pico.c
422 lines (353 loc) · 10.9 KB
/
uart_rpi_pico.c
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
/*
* Copyright (c) 2021, Yonatan Schachter
* Copyright (c) 2022, Andrei-Edward Popa
*
* SPDX-License-Identifier: Apache-2.0
*/
#include <zephyr/drivers/uart.h>
#include <zephyr/drivers/reset.h>
#include <zephyr/drivers/pinctrl.h>
#include <zephyr/irq.h>
#include <string.h>
/* pico-sdk includes */
#include <hardware/uart.h>
#define DT_DRV_COMPAT raspberrypi_pico_uart
struct uart_rpi_config {
uart_inst_t *const uart_dev;
uart_hw_t *const uart_regs;
const struct pinctrl_dev_config *pcfg;
const struct reset_dt_spec reset;
#ifdef CONFIG_UART_INTERRUPT_DRIVEN
uart_irq_config_func_t irq_config_func;
#endif /* CONFIG_UART_INTERRUPT_DRIVEN */
};
struct uart_rpi_data {
struct uart_config uart_config;
#ifdef CONFIG_UART_INTERRUPT_DRIVEN
uart_irq_callback_user_data_t irq_cb;
void *irq_cb_data;
#endif /* CONFIG_UART_INTERRUPT_DRIVEN */
};
static int uart_rpi_poll_in(const struct device *dev, unsigned char *c)
{
const struct uart_rpi_config *config = dev->config;
uart_hw_t * const uart_hw = config->uart_regs;
if (uart_hw->fr & UART_UARTFR_RXFE_BITS) {
return -1;
}
*c = (unsigned char)uart_hw->dr;
return 0;
}
static void uart_rpi_poll_out(const struct device *dev, unsigned char c)
{
const struct uart_rpi_config *config = dev->config;
uart_hw_t * const uart_hw = config->uart_regs;
while (uart_hw->fr & UART_UARTFR_TXFF_BITS) {
/* Wait */
}
uart_hw->dr = c;
}
static int uart_rpi_set_format(const struct device *dev, const struct uart_config *cfg)
{
const struct uart_rpi_config *config = dev->config;
uart_inst_t * const uart_inst = config->uart_dev;
uart_parity_t parity = 0;
uint data_bits = 0;
uint stop_bits = 0;
switch (cfg->data_bits) {
case UART_CFG_DATA_BITS_5:
data_bits = 5;
break;
case UART_CFG_DATA_BITS_6:
data_bits = 6;
break;
case UART_CFG_DATA_BITS_7:
data_bits = 7;
break;
case UART_CFG_DATA_BITS_8:
data_bits = 8;
break;
default:
return -EINVAL;
}
switch (cfg->stop_bits) {
case UART_CFG_STOP_BITS_1:
stop_bits = 1;
break;
case UART_CFG_STOP_BITS_2:
stop_bits = 2;
break;
default:
return -EINVAL;
}
switch (cfg->parity) {
case UART_CFG_PARITY_NONE:
parity = UART_PARITY_NONE;
break;
case UART_CFG_PARITY_EVEN:
parity = UART_PARITY_EVEN;
break;
case UART_CFG_PARITY_ODD:
parity = UART_PARITY_ODD;
break;
default:
return -EINVAL;
}
uart_set_format(uart_inst, data_bits, stop_bits, parity);
return 0;
}
static int uart_rpi_init(const struct device *dev)
{
const struct uart_rpi_config *config = dev->config;
uart_inst_t * const uart_inst = config->uart_dev;
uart_hw_t * const uart_hw = config->uart_regs;
struct uart_rpi_data * const data = dev->data;
uint baudrate;
int ret;
ret = pinctrl_apply_state(config->pcfg, PINCTRL_STATE_DEFAULT);
if (ret < 0) {
return ret;
}
/*
* uart_init() may be replaced by register based API once rpi-pico platform
* has a clock controller driver
*/
baudrate = uart_init(uart_inst, data->uart_config.baudrate);
/* Check if baudrate adjustment returned by 'uart_init' function is a positive value */
if (baudrate == 0) {
return -EINVAL;
}
/*
* initialize uart_config with hardware reset values
* https://datasheets.raspberrypi.com/rp2040/rp2040-datasheet.pdf#tab-registerlist_uart page:431
* data bits set default to 8 instaed of hardware reset 5 to increase compatibility.
*/
data->uart_config = (struct uart_config){
.baudrate = baudrate,
.data_bits = UART_CFG_DATA_BITS_8,
.flow_ctrl = UART_CFG_FLOW_CTRL_NONE,
.parity = UART_CFG_PARITY_NONE,
.stop_bits = UART_CFG_STOP_BITS_1
};
uart_rpi_set_format(dev, &data->uart_config);
hw_clear_bits(&uart_hw->lcr_h, UART_UARTLCR_H_FEN_BITS);
uart_hw->dr = 0U;
#ifdef CONFIG_UART_INTERRUPT_DRIVEN
config->irq_config_func(dev);
#endif /* CONFIG_UART_INTERRUPT_DRIVEN */
return 0;
}
static int uart_rpi_config_get(const struct device *dev, struct uart_config *cfg)
{
struct uart_rpi_data *data = dev->data;
memcpy(cfg, &data->uart_config, sizeof(struct uart_config));
return 0;
}
static int uart_rpi_configure(const struct device *dev, const struct uart_config *cfg)
{
const struct uart_rpi_config *config = dev->config;
uart_inst_t * const uart_inst = config->uart_dev;
struct uart_rpi_data *data = dev->data;
uint baudrate = 0;
baudrate = uart_set_baudrate(uart_inst, cfg->baudrate);
if (baudrate == 0) {
return -EINVAL;
}
if (uart_rpi_set_format(dev, cfg) != 0) {
return -EINVAL;
}
data->uart_config = *cfg;
return 0;
}
static int uart_rpi_err_check(const struct device *dev)
{
const struct uart_rpi_config * const config = dev->config;
uart_hw_t * const uart_hw = config->uart_regs;
uint32_t data_reg = uart_hw->dr;
int errors = 0;
if (data_reg & UART_UARTDR_OE_BITS) {
errors |= UART_ERROR_OVERRUN;
}
if (data_reg & UART_UARTDR_BE_BITS) {
errors |= UART_BREAK;
}
if (data_reg & UART_UARTDR_PE_BITS) {
errors |= UART_ERROR_PARITY;
}
if (data_reg & UART_UARTDR_FE_BITS) {
errors |= UART_ERROR_FRAMING;
}
return errors;
}
#ifdef CONFIG_UART_INTERRUPT_DRIVEN
static int uart_rpi_fifo_fill(const struct device *dev,
const uint8_t *tx_data, int len)
{
const struct uart_rpi_config * const config = dev->config;
uart_hw_t * const uart_hw = config->uart_regs;
int tx_len = 0;
while (!(uart_hw->fr & UART_UARTFR_TXFF_BITS) && (len - tx_len) > 0) {
uart_hw->dr = tx_data[tx_len++];
}
return tx_len;
}
static int uart_rpi_fifo_read(const struct device *dev,
uint8_t *rx_data, const int len)
{
const struct uart_rpi_config * const config = dev->config;
uart_hw_t * const uart_hw = config->uart_regs;
int rx_len = 0;
while (!(uart_hw->fr & UART_UARTFR_RXFE_BITS) && (len - rx_len) > 0) {
rx_data[rx_len++] = (uint8_t)uart_hw->dr;
}
return rx_len;
}
static void uart_rpi_irq_tx_enable(const struct device *dev)
{
const struct uart_rpi_config * const config = dev->config;
uart_hw_t * const uart_hw = config->uart_regs;
uart_hw->imsc |= UART_UARTIMSC_TXIM_BITS;
uart_hw->ifls &= ~UART_UARTIFLS_TXIFLSEL_BITS;
}
static void uart_rpi_irq_tx_disable(const struct device *dev)
{
const struct uart_rpi_config * const config = dev->config;
uart_hw_t * const uart_hw = config->uart_regs;
uart_hw->imsc &= ~UART_UARTIMSC_TXIM_BITS;
}
static int uart_rpi_irq_tx_ready(const struct device *dev)
{
const struct uart_rpi_config * const config = dev->config;
uart_hw_t * const uart_hw = config->uart_regs;
return (uart_hw->mis & UART_UARTMIS_TXMIS_BITS) == UART_UARTMIS_TXMIS_BITS;
}
static void uart_rpi_irq_rx_enable(const struct device *dev)
{
const struct uart_rpi_config * const config = dev->config;
uart_hw_t * const uart_hw = config->uart_regs;
uart_hw->imsc |= UART_UARTIMSC_RXIM_BITS;
uart_hw->ifls &= ~UART_UARTIFLS_RXIFLSEL_BITS;
}
static void uart_rpi_irq_rx_disable(const struct device *dev)
{
const struct uart_rpi_config * const config = dev->config;
uart_hw_t * const uart_hw = config->uart_regs;
uart_hw->imsc &= ~UART_UARTIMSC_RXIM_BITS;
}
static int uart_rpi_irq_tx_complete(const struct device *dev)
{
const struct uart_rpi_config * const config = dev->config;
uart_hw_t * const uart_hw = config->uart_regs;
return !!(uart_hw->fr & UART_UARTFR_TXFE_BITS);
}
static int uart_rpi_irq_rx_ready(const struct device *dev)
{
const struct uart_rpi_config * const config = dev->config;
uart_hw_t * const uart_hw = config->uart_regs;
return (uart_hw->mis & UART_UARTMIS_RXMIS_BITS) == UART_UARTMIS_RXMIS_BITS;
}
static void uart_rpi_irq_err_enable(const struct device *dev)
{
const struct uart_rpi_config * const config = dev->config;
uart_hw_t * const uart_hw = config->uart_regs;
uart_hw->imsc |= (UART_UARTIMSC_OEIM_BITS |
UART_UARTIMSC_BEIM_BITS |
UART_UARTIMSC_PEIM_BITS |
UART_UARTIMSC_FEIM_BITS |
UART_UARTIMSC_RTIM_BITS);
}
static void uart_rpi_irq_err_disable(const struct device *dev)
{
const struct uart_rpi_config * const config = dev->config;
uart_hw_t * const uart_hw = config->uart_regs;
uart_hw->imsc &= ~(UART_UARTIMSC_OEIM_BITS |
UART_UARTIMSC_BEIM_BITS |
UART_UARTIMSC_PEIM_BITS |
UART_UARTIMSC_FEIM_BITS |
UART_UARTIMSC_RTIM_BITS);
}
static int uart_rpi_irq_is_pending(const struct device *dev)
{
return !!(uart_rpi_irq_rx_ready(dev) || uart_rpi_irq_tx_ready(dev));
}
static int uart_rpi_irq_update(const struct device *dev)
{
return 1;
}
static void uart_rpi_irq_callback_set(const struct device *dev,
uart_irq_callback_user_data_t cb,
void *cb_data)
{
struct uart_rpi_data * const data = dev->data;
data->irq_cb = cb;
data->irq_cb_data = cb_data;
}
static void uart_rpi_isr(const struct device *dev)
{
struct uart_rpi_data * const data = dev->data;
if (data->irq_cb) {
data->irq_cb(dev, data->irq_cb_data);
}
}
#endif /* CONFIG_UART_INTERRUPT_DRIVEN */
static const struct uart_driver_api uart_rpi_driver_api = {
.poll_in = uart_rpi_poll_in,
.poll_out = uart_rpi_poll_out,
.err_check = uart_rpi_err_check,
#ifdef CONFIG_UART_USE_RUNTIME_CONFIGURE
.configure = uart_rpi_configure,
.config_get = uart_rpi_config_get,
#endif /* CONFIG_UART_USE_RUNTIME_CONFIGURE */
#ifdef CONFIG_UART_INTERRUPT_DRIVEN
.fifo_fill = uart_rpi_fifo_fill,
.fifo_read = uart_rpi_fifo_read,
.irq_tx_enable = uart_rpi_irq_tx_enable,
.irq_tx_disable = uart_rpi_irq_tx_disable,
.irq_tx_ready = uart_rpi_irq_tx_ready,
.irq_rx_enable = uart_rpi_irq_rx_enable,
.irq_rx_disable = uart_rpi_irq_rx_disable,
.irq_tx_complete = uart_rpi_irq_tx_complete,
.irq_rx_ready = uart_rpi_irq_rx_ready,
.irq_err_enable = uart_rpi_irq_err_enable,
.irq_err_disable = uart_rpi_irq_err_disable,
.irq_is_pending = uart_rpi_irq_is_pending,
.irq_update = uart_rpi_irq_update,
.irq_callback_set = uart_rpi_irq_callback_set,
#endif /* CONFIG_UART_INTERRUPT_DRIVEN */
};
#ifdef CONFIG_UART_INTERRUPT_DRIVEN
#define RPI_UART_IRQ_CONFIG_INIT(idx) \
.irq_config_func = uart##idx##_rpi_irq_config_func
#else
#define RPI_UART_IRQ_CONFIG_INIT(idx)
#endif /* CONFIG_UART_INTERRUPT_DRIVEN*/
#define RPI_UART_INIT(idx) \
PINCTRL_DT_INST_DEFINE(idx); \
\
static void uart##idx##_rpi_irq_config_func(const struct device *port) \
{ \
IRQ_CONNECT(DT_INST_IRQN(idx), \
DT_INST_IRQ(idx, priority), \
uart_rpi_isr, \
DEVICE_DT_INST_GET(idx), 0); \
irq_enable(DT_INST_IRQN(idx)); \
} \
\
static const struct uart_rpi_config uart##idx##_rpi_config = { \
.uart_dev = (uart_inst_t *const)DT_INST_REG_ADDR(idx), \
.uart_regs = (uart_hw_t *const)DT_INST_REG_ADDR(idx), \
.pcfg = PINCTRL_DT_INST_DEV_CONFIG_GET(idx), \
.reset = RESET_DT_SPEC_INST_GET(idx), \
RPI_UART_IRQ_CONFIG_INIT(idx), \
}; \
\
static struct uart_rpi_data uart##idx##_rpi_data = { \
.uart_config.baudrate = DT_INST_PROP(idx, current_speed), \
}; \
\
DEVICE_DT_INST_DEFINE(idx, &uart_rpi_init, \
NULL, &uart##idx##_rpi_data, \
&uart##idx##_rpi_config, PRE_KERNEL_1, \
CONFIG_SERIAL_INIT_PRIORITY, \
&uart_rpi_driver_api); \
DT_INST_FOREACH_STATUS_OKAY(RPI_UART_INIT)