forked from mcu-tools/mcuboot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
serial_adapter.c
232 lines (188 loc) · 4.42 KB
/
serial_adapter.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
/*
* Copyright (c) 2017 Nordic Semiconductor ASA
*
* 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.
*/
#include <stdio.h>
#include <drivers/uart.h>
#include <assert.h>
#include <string.h>
#include <zephyr.h>
#include "bootutil/bootutil_log.h"
#include <usb/usb_device.h>
#if defined(CONFIG_BOOT_SERIAL_UART) && defined(CONFIG_UART_CONSOLE)
#error Zephyr UART console must been disabled if serial_adapter module is used.
#endif
MCUBOOT_LOG_MODULE_REGISTER(serial_adapter);
/** @brief Console input representation
*
* This struct is used to represent an input line from a serial interface.
*/
struct line_input {
/** Required to use sys_slist */
sys_snode_t node;
int len;
/** Buffer where the input line is recorded */
char line[CONFIG_BOOT_MAX_LINE_INPUT_LEN];
};
static struct device const *uart_dev;
static struct line_input line_bufs[2];
static sys_slist_t avail_queue;
static sys_slist_t lines_queue;
static uint16_t cur;
static int boot_uart_fifo_getline(char **line);
static int boot_uart_fifo_init(void);
int
console_out(int c)
{
uart_poll_out(uart_dev, c);
return c;
}
void
console_write(const char *str, int cnt)
{
int i;
for (i = 0; i < cnt; i++) {
if (console_out((int)str[i]) == EOF) {
break;
}
}
}
int
console_read(char *str, int str_size, int *newline)
{
char *line;
int len;
len = boot_uart_fifo_getline(&line);
if (line == NULL) {
*newline = 0;
return 0;
}
if (len > str_size - 1) {
len = str_size - 1;
}
memcpy(str, line, len);
str[len] = '\0';
*newline = 1;
return len + 1;
}
int
boot_console_init(void)
{
int i;
/* Zephyr UART handler takes an empty buffer from avail_queue,
* stores UART input in it until EOL, and then puts it into
* lines_queue.
*/
sys_slist_init(&avail_queue);
sys_slist_init(&lines_queue);
for (i = 0; i < ARRAY_SIZE(line_bufs); i++) {
sys_slist_append(&avail_queue, &line_bufs[i].node);
}
return boot_uart_fifo_init();
}
static void
boot_uart_fifo_callback(const struct device *dev, void *user_data)
{
static struct line_input *cmd;
uint8_t byte;
int rx;
uart_irq_update(uart_dev);
if (!uart_irq_rx_ready(uart_dev)) {
return;
}
while (true) {
rx = uart_fifo_read(uart_dev, &byte, 1);
if (rx != 1) {
break;
}
if (!cmd) {
sys_snode_t *node;
node = sys_slist_get(&avail_queue);
if (!node) {
BOOT_LOG_ERR("Not enough memory to store"
" incoming data!");
return;
}
cmd = CONTAINER_OF(node, struct line_input, node);
}
if (cur < CONFIG_BOOT_MAX_LINE_INPUT_LEN) {
cmd->line[cur++] = byte;
}
if (byte == '\n') {
cmd->len = cur;
sys_slist_append(&lines_queue, &cmd->node);
cur = 0;
cmd = NULL;
}
}
}
static int
boot_uart_fifo_getline(char **line)
{
static struct line_input *cmd;
sys_snode_t *node;
int key;
key = irq_lock();
/* Recycle cmd buffer returned previous time */
if (cmd != NULL) {
if (sys_slist_peek_tail(&avail_queue) != &cmd->node) {
sys_slist_append(&avail_queue, &cmd->node);
}
}
node = sys_slist_get(&lines_queue);
irq_unlock(key);
if (node == NULL) {
cmd = NULL;
*line = NULL;
return 0;
}
cmd = CONTAINER_OF(node, struct line_input, node);
*line = cmd->line;
return cmd->len;
}
static int
boot_uart_fifo_init(void)
{
#ifdef CONFIG_BOOT_SERIAL_UART
uart_dev = device_get_binding(CONFIG_RECOVERY_UART_DEV_NAME);
#elif CONFIG_BOOT_SERIAL_CDC_ACM
uart_dev = device_get_binding(CONFIG_USB_CDC_ACM_DEVICE_NAME "_0");
if (uart_dev) {
int rc;
rc = usb_enable(NULL);
if (rc) {
return (-1);
}
}
#endif
uint8_t c;
if (!uart_dev) {
return (-1);
}
uart_irq_callback_set(uart_dev, boot_uart_fifo_callback);
/* Drain the fifo */
if (uart_irq_rx_ready(uart_dev)) {
while (uart_fifo_read(uart_dev, &c, 1)) {
;
}
}
cur = 0;
uart_irq_rx_enable(uart_dev);
/* Enable all interrupts unconditionally. Note that this is due
* to Zephyr issue #8393. This should be removed once the
* issue is fixed in upstream Zephyr.
*/
irq_unlock(0);
return 0;
}