1
6
7
15
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
35
36
39
40
41
42
43
44
45
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
89
90
91
92
93
94
95
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
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
206
207
208
209
210
211
212
213
214
217
218
219
220
221
228
229
/* ... */
#include "hardware/address_mapped.h"
#include "hardware/platform_defs.h"
#include "hardware/uart.h"
#include "hardware/structs/uart.h"
#include "hardware/resets.h"
#include "hardware/clocks.h"
6 includes
static inline uint32_t uart_clock_get_hz(__unused uart_inst_t *inst) {
return clock_get_hz(UART_CLOCK_NUM(inst));
}{ ... }
#include "hardware/timer.h"
#include "pico/assert.h"
#include "pico.h"
check_hw_layout(uart_hw_t, fr, UART_UARTFR_OFFSET);
check_hw_layout(uart_hw_t, dmacr, UART_UARTDMACR_OFFSET);
#if PICO_UART_ENABLE_CRLF_SUPPORT
short uart_char_to_line_feed[NUM_UARTS];
#endif
static inline void uart_reset(uart_inst_t *uart) {
reset_block_num(uart_get_reset_num(uart));
}{ ... }
static inline void uart_unreset(uart_inst_t *uart) {
unreset_block_num_wait_blocking(uart_get_reset_num(uart));
}{ ... }
uint uart_init(uart_inst_t *uart, uint baudrate) {
invalid_params_if(HARDWARE_UART, uart != uart0 && uart != uart1);
if (uart_clock_get_hz(uart) == 0) {
return 0;
}if (uart_clock_get_hz(uart) == 0) { ... }
uart_reset(uart);
uart_unreset(uart);
#if PICO_UART_ENABLE_CRLF_SUPPORT
uart_set_translate_crlf(uart, PICO_UART_DEFAULT_CRLF);
#endif
uint baud = uart_set_baudrate(uart, baudrate);
#if 0
uart_set_format(uart, 8, 1, UART_PARITY_NONE);
hw_set_bits(&uart_get_hw(uart)->lcr_h, UART_UARTLCR_H_FEN_BITS);/* ... */
#else
uint data_bits = 8;
uint stop_bits = 1;
uint parity = UART_PARITY_NONE;
hw_write_masked(&uart_get_hw(uart)->lcr_h,
((data_bits - 5u) << UART_UARTLCR_H_WLEN_LSB) |
((stop_bits - 1u) << UART_UARTLCR_H_STP2_LSB) |
(bool_to_bit(parity != UART_PARITY_NONE) << UART_UARTLCR_H_PEN_LSB) |
(bool_to_bit(parity == UART_PARITY_EVEN) << UART_UARTLCR_H_EPS_LSB) |
UART_UARTLCR_H_FEN_BITS,
UART_UARTLCR_H_WLEN_BITS | UART_UARTLCR_H_STP2_BITS |
UART_UARTLCR_H_PEN_BITS | UART_UARTLCR_H_EPS_BITS |
UART_UARTLCR_H_FEN_BITS);/* ... */
#endif
uart_get_hw(uart)->cr = UART_UARTCR_UARTEN_BITS | UART_UARTCR_TXE_BITS | UART_UARTCR_RXE_BITS;
#if !PICO_UART_NO_DMACR_ENABLE
uart_get_hw(uart)->dmacr = UART_UARTDMACR_TXDMAE_BITS | UART_UARTDMACR_RXDMAE_BITS;/* ... */
#endif
return baud;
}{ ... }
void uart_deinit(uart_inst_t *uart) {
invalid_params_if(HARDWARE_UART, uart != uart0 && uart != uart1);
uart_reset(uart);
}{ ... }
static uint32_t uart_disable_before_lcr_write(uart_inst_t *uart) {
uint32_t cr_save = uart_get_hw(uart)->cr;
if (cr_save & UART_UARTCR_UARTEN_BITS) {
hw_clear_bits(&uart_get_hw(uart)->cr,
UART_UARTCR_UARTEN_BITS | UART_UARTCR_TXE_BITS | UART_UARTCR_RXE_BITS);
uint32_t current_ibrd = uart_get_hw(uart)->ibrd;
uint32_t current_fbrd = uart_get_hw(uart)->fbrd;
uint32_t brdiv_ratio = 64u * current_ibrd + current_fbrd;
brdiv_ratio <<= 10;
uint32_t scaled_freq = uart_clock_get_hz(uart) / 3662ul;
uint32_t wait_time_us = brdiv_ratio / scaled_freq;
busy_wait_us(wait_time_us);
}if (cr_save & UART_UARTCR_UARTEN_BITS) { ... }
return cr_save;
}{ ... }
static void uart_write_lcr_bits_masked(uart_inst_t *uart, uint32_t values, uint32_t write_mask) {
invalid_params_if(HARDWARE_UART, uart != uart0 && uart != uart1);
uint32_t cr_save = uart_disable_before_lcr_write(uart);
hw_write_masked(&uart_get_hw(uart)->lcr_h, values, write_mask);
uart_get_hw(uart)->cr = cr_save;
}{ ... }
uint uart_set_baudrate(uart_inst_t *uart, uint baudrate) {
invalid_params_if(HARDWARE_UART, baudrate == 0);
uint32_t baud_rate_div = (8 * uart_clock_get_hz(uart) / baudrate) + 1;
uint32_t baud_ibrd = baud_rate_div >> 7;
uint32_t baud_fbrd;
if (baud_ibrd == 0) {
baud_ibrd = 1;
baud_fbrd = 0;
}if (baud_ibrd == 0) { ... } else if (baud_ibrd >= 65535) {
baud_ibrd = 65535;
baud_fbrd = 0;
}else if (baud_ibrd >= 65535) { ... } else {
baud_fbrd = (baud_rate_div & 0x7f) >> 1;
}else { ... }
uart_get_hw(uart)->ibrd = baud_ibrd;
uart_get_hw(uart)->fbrd = baud_fbrd;
uart_write_lcr_bits_masked(uart, 0, 0);
return (4 * uart_clock_get_hz(uart)) / (64 * baud_ibrd + baud_fbrd);
}{ ... }
void uart_set_format(uart_inst_t *uart, uint data_bits, uint stop_bits, uart_parity_t parity) {
invalid_params_if(HARDWARE_UART, data_bits < 5 || data_bits > 8);
invalid_params_if(HARDWARE_UART, stop_bits != 1 && stop_bits != 2);
invalid_params_if(HARDWARE_UART, parity != UART_PARITY_NONE && parity != UART_PARITY_EVEN && parity != UART_PARITY_ODD);
uart_write_lcr_bits_masked(uart,
((data_bits - 5u) << UART_UARTLCR_H_WLEN_LSB) |
((stop_bits - 1u) << UART_UARTLCR_H_STP2_LSB) |
(bool_to_bit(parity != UART_PARITY_NONE) << UART_UARTLCR_H_PEN_LSB) |
(bool_to_bit(parity == UART_PARITY_EVEN) << UART_UARTLCR_H_EPS_LSB),
UART_UARTLCR_H_WLEN_BITS |
UART_UARTLCR_H_STP2_BITS |
UART_UARTLCR_H_PEN_BITS |
UART_UARTLCR_H_EPS_BITS);
}{ ... }
void uart_set_fifo_enabled(uart_inst_t *uart, bool enabled) {
uint32_t lcr_h_fen_bits = 0;
if (enabled) {
lcr_h_fen_bits = UART_UARTLCR_H_FEN_BITS;
}if (enabled) { ... }
uart_write_lcr_bits_masked(uart, lcr_h_fen_bits, UART_UARTLCR_H_FEN_BITS);
}{ ... }
void uart_set_break(uart_inst_t *uart, bool en) {
uint32_t lcr_h_brk_bits = 0;
if (en) {
lcr_h_brk_bits = UART_UARTLCR_H_BRK_BITS;
}if (en) { ... }
uart_write_lcr_bits_masked(uart, lcr_h_brk_bits, UART_UARTLCR_H_BRK_BITS);
}{ ... }
void uart_set_translate_crlf(uart_inst_t *uart, bool crlf) {
#if PICO_UART_ENABLE_CRLF_SUPPORT
uart_char_to_line_feed[uart_get_index(uart)] = crlf ? '\n' : 0x100;
#else
panic_unsupported();
#endif
}{ ... }
bool uart_is_readable_within_us(uart_inst_t *uart, uint32_t us) {
uint32_t t = time_us_32();
do {
if (uart_is_readable(uart)) {
return true;
}if (uart_is_readable(uart)) { ... }
...} while ((time_us_32() - t) <= us);
return false;
}{ ... }