forked from grblHAL/RP2040
-
Notifications
You must be signed in to change notification settings - Fork 1
/
serial.c
431 lines (328 loc) · 12.4 KB
/
serial.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
423
424
425
426
427
428
429
430
431
/*
serial.c - driver code for RP2040 processor
Part of grblHAL
Copyright (c) 2021 Terje Io
Grbl is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
Grbl is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with Grbl. If not, see <http://www.gnu.org/licenses/>.
*/
#include <string.h>
#include "hardware/gpio.h"
#include "hardware/uart.h"
#include "hardware/irq.h"
#include "serial.h"
#include "driver.h"
#define BUFNEXT(ptr, buffer) ((ptr + 1) & (sizeof(buffer.data) - 1))
#define UART_TX_PIN 0
#define UART_RX_PIN 1
#ifndef UART_PORT
#define UART_PORT uart0
#define UART ((uart_hw_t *)UART_PORT)
#define UART_IRQ UART0_IRQ
#endif
static uint16_t tx_fifo_size;
static stream_tx_buffer_t txbuffer = {0};
static stream_rx_buffer_t rxbuffer = {0};
static void uart_interrupt_handler (void);
#ifdef SERIAL2_MOD
#define UART2_TX_PIN 8
#define UART2_RX_PIN 9
#ifndef UART2_PORT
#define UART2_PORT uart1
#define UART2 ((uart_hw_t *)UART2_PORT)
#define UART2_IRQ UART1_IRQ
#endif
static stream_tx_buffer_t txbuffer2 = {0};
static stream_rx_buffer_t rxbuffer2 = {0};
static void uart2_interrupt_handler (void);
#endif
void serialInit (uint32_t baud_rate)
{
gpio_set_function(UART_TX_PIN, GPIO_FUNC_UART);
gpio_set_function(UART_RX_PIN, GPIO_FUNC_UART);
uart_init(UART_PORT, 2400);
uart_set_hw_flow(UART_PORT, false, false);
uart_set_format(UART_PORT, 8, 1, UART_PARITY_NONE);
uart_set_baudrate(UART_PORT, 115200);
uart_set_fifo_enabled(UART_PORT, true);
irq_set_exclusive_handler(UART_IRQ, uart_interrupt_handler);
irq_set_enabled(UART_IRQ, true);
hw_set_bits(&UART->imsc, UART_UARTIMSC_RXIM_BITS|UART_UARTIMSC_RTIM_BITS);
}
bool serialSetBaudRate (uint32_t baud_rate)
{
static bool init_ok = false;
if(!init_ok) {
serialInit(baud_rate);
init_ok = true;
}
return true;
}
//
// serialGetC - returns -1 if no data available
//
int16_t serialGetC (void)
{
int16_t data;
uint_fast16_t bptr = rxbuffer.tail;
if(bptr == rxbuffer.head)
return -1; // no data available else EOF
data = rxbuffer.data[bptr]; // Get next character, increment tmp pointer
rxbuffer.tail = BUFNEXT(bptr, rxbuffer); // and update pointer
return data;
}
void serialTxFlush (void)
{
txbuffer.tail = txbuffer.head;
}
uint16_t serialRxCount (void)
{
uint_fast16_t head = rxbuffer.head, tail = rxbuffer.tail;
return BUFCOUNT(head, tail, RX_BUFFER_SIZE);
}
uint16_t serialRxFree (void)
{
return RX_BUFFER_SIZE - 1 - serialRxCount();
}
void serialRxFlush (void)
{
rxbuffer.tail = rxbuffer.head;
rxbuffer.overflow = false;
}
void serialRxCancel (void)
{
serialRxFlush();
rxbuffer.data[rxbuffer.head] = ASCII_CAN;
rxbuffer.head = BUFNEXT(rxbuffer.head, rxbuffer);
}
bool serialPutC (const char c)
{
uint_fast16_t next_head;
if(!(UART->imsc & UART_UARTIMSC_TXIM_BITS)) { // If the transmit interrupt is deactivated
if(!(UART->fr & UART_UARTFR_TXFF_BITS)) { // and if the TX FIFO is not full
UART->dr = c; // Write data in the TX FIFO
return true;
} else
hw_set_bits(&UART->imsc, UART_UARTIMSC_TXIM_BITS); // Enable transmit interrupt
}
// Write data in the Buffer is transmit interrupt activated or TX FIFO is
next_head = BUFNEXT(txbuffer.head, txbuffer); // Get and update head pointer
while(txbuffer.tail == next_head) { // Buffer full, block until space is available...
if(!hal.stream_blocking_callback())
return false;
}
txbuffer.data[txbuffer.head] = c; // Add data to buffer
txbuffer.head = next_head; // and update head pointer
return true;
}
void serialWriteS (const char *data)
{
char c, *ptr = (char *)data;
while((c = *ptr++) != '\0')
serialPutC(c);
}
void serialWrite(const char *s, uint16_t length)
{
char *ptr = (char *)s;
while(length--)
serialPutC(*ptr++);
}
bool serialSuspendInput (bool suspend)
{
return stream_rx_suspend(&rxbuffer, suspend);
}
uint16_t serialTxCount(void) {
uint_fast16_t head = txbuffer.head, tail = txbuffer.tail;
return BUFCOUNT(head, tail, TX_BUFFER_SIZE) + ((UART->fr & UART_UARTFR_BUSY_BITS) ? 0 : 1);
}
static void uart_interrupt_handler (void)
{
uint_fast16_t bptr;
uint32_t data, ctrl = UART->mis;
if(ctrl & (UART_UARTMIS_RXMIS_BITS | UART_UARTIMSC_RTIM_BITS)) {
while (uart_is_readable(UART_PORT)) {
bptr = BUFNEXT(rxbuffer.head, rxbuffer); // Get next head pointer
data = UART->dr & 0xFF; // and read input (use only 8 bits of data)
if(bptr == rxbuffer.tail) { // If buffer full
rxbuffer.overflow = true; // flag overflow
} else {
#if MODBUS_ENABLE
rxbuffer.data[rxbuffer.head] = (char)data; // Add data to buffer
rxbuffer.head = bptr; // and update pointer
#else
if(data == CMD_TOOL_ACK && !rxbuffer.backup) {
stream_rx_backup(&rxbuffer);
hal.stream.read = serialGetC; // restore normal input
} else if(!hal.stream.enqueue_realtime_command((char)data)) {
rxbuffer.data[rxbuffer.head] = (char)data; // Add data to buffer
rxbuffer.head = bptr; // and update pointer
}
#endif
}
}
}
// Interrupt if the TX FIFO is lower or equal to the empty TX FIFO threshold
if(ctrl & UART_UARTMIS_TXMIS_BITS)
{
bptr = txbuffer.tail;
// As long as the TX FIFO is not full or the buffer is not empty
while((!(UART->fr & UART_UARTFR_TXFF_BITS)) && (txbuffer.head != bptr)) {
UART->dr = txbuffer.data[bptr]; // Put character in TX FIFO
bptr = BUFNEXT(bptr, txbuffer); // and update tmp tail pointer
}
txbuffer.tail = bptr; // Update tail pointer
if(txbuffer.tail == txbuffer.head) // Disable TX interrupt when the TX buffer is empty
hw_clear_bits(&UART->imsc, UART_UARTIMSC_TXIM_BITS);
}
}
#ifdef SERIAL2_MOD
void serial2Init (uint32_t baud_rate)
{
gpio_set_function(UART2_TX_PIN, GPIO_FUNC_UART);
gpio_set_function(UART2_RX_PIN, GPIO_FUNC_UART);
uart_init(UART2_PORT, 2400);
uart_set_hw_flow(UART2_PORT, false, false);
uart_set_format(UART2_PORT, 8, 1, UART_PARITY_NONE);
uart_set_baudrate(UART2_PORT, 115200);
uart_set_fifo_enabled(UART2_PORT, true);
irq_set_exclusive_handler(UART2_IRQ, uart2_interrupt_handler);
irq_set_enabled(UART2_IRQ, true);
hw_set_bits(&UART2->imsc, UART_UARTIMSC_RXIM_BITS|UART_UARTIMSC_RTIM_BITS);
}
bool serial2SetBaudRate (uint32_t baud_rate)
{
static bool init_ok = false;
if(!init_ok) {
serial2Init(baud_rate);
init_ok = true;
}
return true;
}
void serialSelect (bool mpg)
{
if(mpg) {
hw_clear_bits(&UART->imsc, UART_UARTIMSC_RXIM_BITS|UART_UARTIMSC_RTIM_BITS);
hw_set_bits(&UART2->imsc, UART_UARTIMSC_RXIM_BITS|UART_UARTIMSC_RTIM_BITS);
} else {
hw_set_bits(&UART->imsc, UART_UARTIMSC_RXIM_BITS|UART_UARTIMSC_RTIM_BITS);
hw_clear_bits(&UART2->imsc, UART_UARTIMSC_RXIM_BITS|UART_UARTIMSC_RTIM_BITS);
}
}
//
// serial2GetC - returns -1 if no data available
//
int16_t serial2GetC (void)
{
int16_t data;
uint_fast16_t bptr = rxbuffer2.tail;
if(bptr == rxbuffer2.head)
return -1; // no data available else EOF
data = rxbuffer2.data[bptr]; // Get next character
rxbuffer2.tail = BUFNEXT(bptr, rxbuffer2); // and update pointer
return data;
}
void serial2TxFlush (void)
{
txbuffer2.tail = txbuffer2.head;
}
uint16_t serial2RxCount (void)
{
uint_fast16_t head = rxbuffer2.head, tail = rxbuffer2.tail;
return BUFCOUNT(head, tail, RX_BUFFER_SIZE);
}
uint16_t serial2RxFree (void)
{
return RX_BUFFER_SIZE - 1 - serialRxCount();
}
void serial2RxFlush (void)
{
rxbuffer2.tail = rxbuffer2.head;
rxbuffer2.overflow = false;
}
void serial2RxCancel (void)
{
serial2RxFlush();
rxbuffer2.data[rxbuffer2.head] = ASCII_CAN;
rxbuffer2.head = BUFNEXT(rxbuffer2.head, rxbuffer2);
}
bool serial2PutC (const char c)
{
uint_fast16_t next_head;
if(!(UART2->imsc & UART_UARTIMSC_TXIM_BITS)) { // If the transmit interrupt is deactivated
if(!(UART2->fr & UART_UARTFR_TXFF_BITS)) { // and if the TX FIFO is not full
UART2->dr = c; // Write data in the TX FIFO
return true;
} else
hw_set_bits(&UART2->imsc, UART_UARTIMSC_TXIM_BITS); // Enable transmit interrupt
}
// Write data in the Buffer is transmit interrupt activated or TX FIFO is
next_head = BUFNEXT(txbuffer2.head, txbuffer2); // Get and update head pointer
while(txbuffer2.tail == next_head) { // Buffer full, block until space is available...
if(!hal.stream_blocking_callback())
return false;
}
txbuffer2.data[txbuffer2.head] = c; // Add data to buffer
txbuffer2.head = next_head; // and update head pointer
return true;
}
void serial2WriteS (const char *data)
{
char c, *ptr = (char *)data;
while((c = *ptr++) != '\0')
serial2PutC(c);
}
void serial2Write(const char *s, uint16_t length)
{
char *ptr = (char *)s;
while(length--)
serial2PutC(*ptr++);
}
uint16_t serial2TxCount(void) {
uint_fast16_t head = txbuffer2.head, tail = txbuffer2.tail;
return BUFCOUNT(head, tail, TX_BUFFER_SIZE) + ((UART2->fr & UART_UARTFR_BUSY_BITS) ? 0 : 1);
}
static void uart2_interrupt_handler (void)
{
uint_fast16_t bptr;
uint32_t data, ctrl = UART2->mis;
if(ctrl & (UART_UARTMIS_RXMIS_BITS | UART_UARTIMSC_RTIM_BITS)) {
while (uart_is_readable(UART2_PORT)) {
bptr = BUFNEXT(rxbuffer2.head, rxbuffer2); // Get next head pointer
data = UART2->dr & 0xFF; // and read input (use only 8 bits of data)
if(bptr == rxbuffer2.tail) // If buffer full
rxbuffer2.overflow = true; // flag overflow
else {
#if MODBUS_ENABLE
rxbuffer2.data[rxbuffer2.head] = (char)data; // Add data to buffer
rxbuffer2.head = bptr; // and update pointer
#else
if(!hal.stream.enqueue_realtime_command((char)data)) {
rxbuffer2.data[rxbuffer2.head] = (char)data; // Add data to buffer
rxbuffer2.head = bptr; // and update pointer
}
#endif
}
}
}
// Interrupt if the TX FIFO is lower or equal to the empty TX FIFO threshold
if(ctrl & UART_UARTMIS_TXMIS_BITS)
{
bptr = txbuffer2.tail;
// As long as the TX FIFO is not full or the buffer is not empty
while((!(UART2->fr & UART_UARTFR_TXFF_BITS)) && (txbuffer2.head != bptr)) {
UART2->dr = txbuffer2.data[bptr]; // Put character in TX FIFO
bptr = BUFNEXT(bptr, txbuffer2); // and update tmp tail pointer
}
txbuffer2.tail = bptr; // Update tail pointer
if(txbuffer2.tail == txbuffer2.head) // Disable TX interrupt when the TX buffer is empty
hw_clear_bits(&UART2->imsc, UART_UARTIMSC_TXIM_BITS);
}
}
#endif // SERIAL2_MOD