blob: 400ce5accc133b28cf94827dd6e4c5588275dfa4 [file] [log] [blame]
Harald Weltedc023cf2022-11-29 23:15:18 +01001/*! \file soft_uart.c
2 * Software UART implementation. */
3/*
4 * (C) 2022 by Harald Welte <laforge@gnumonks.org>
Vadim Yanitskiyc9fc77f2023-11-16 00:55:35 +07005 * (C) 2023 by sysmocom - s.f.m.c. GmbH <info@sysmocom.de>
Harald Weltedc023cf2022-11-29 23:15:18 +01006 *
7 * All Rights Reserved
8 *
9 * SPDX-License-Identifier: GPL-2.0+
10 *
11 * This program is free software; you can redistribute it and/or modify
12 * it under the terms of the GNU General Public License as published by
13 * the Free Software Foundation; either version 2 of the License, or
14 * (at your option) any later version.
15 *
16 * This program is distributed in the hope that it will be useful,
17 * but WITHOUT ANY WARRANTY; without even the implied warranty of
18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 * GNU General Public License for more details.
20 *
21 */
22
23#include <stdbool.h>
24#include <stdint.h>
25#include <errno.h>
26
27#include <osmocom/core/timer.h>
28#include <osmocom/core/soft_uart.h>
29
Vadim Yanitskiy1a3b5112023-11-16 00:41:03 +070030/*! Rx/Tx flow state of a soft-UART */
31enum suart_flow_state {
32 SUART_FLOW_ST_IDLE, /*!< waiting for a start bit or Tx data */
33 SUART_FLOW_ST_DATA, /*!< receiving/transmitting data bits */
34 SUART_FLOW_ST_PARITY, /*!< receiving/transmitting parity bits */
35 SUART_FLOW_ST_STOP, /*!< receiving/transmitting stop bits */
36};
37
Vadim Yanitskiyb72625d2023-11-16 00:32:33 +070038/*! Internal state of a soft-UART */
Harald Weltedc023cf2022-11-29 23:15:18 +010039struct osmo_soft_uart {
40 struct osmo_soft_uart_cfg cfg;
41 const char *name;
42 struct {
43 bool running;
44 uint8_t bit_count;
45 uint8_t shift_reg;
46 struct msgb *msg;
Vadim Yanitskiy1c2b8c12023-11-16 00:44:42 +070047 ubit_t parity_bit; /* 0 (even) / 1 (odd) */
Harald Weltedc023cf2022-11-29 23:15:18 +010048 unsigned int flags;
49 unsigned int status;
50 struct osmo_timer_list timer;
Vadim Yanitskiy1a3b5112023-11-16 00:41:03 +070051 enum suart_flow_state flow_state;
Harald Weltedc023cf2022-11-29 23:15:18 +010052 } rx;
53 struct {
54 bool running;
55 uint8_t bit_count;
56 uint8_t shift_reg;
Vadim Yanitskiyc9fc77f2023-11-16 00:55:35 +070057 ubit_t parity_bit; /* 0 (even) / 1 (odd) */
58 enum suart_flow_state flow_state;
Harald Weltedc023cf2022-11-29 23:15:18 +010059 } tx;
60};
61
Vadim Yanitskiyb72625d2023-11-16 00:32:33 +070062/*! Default soft-UART configuration (8-N-1) */
Vadim Yanitskiy82a1ae72023-11-16 15:34:50 +070063const struct osmo_soft_uart_cfg osmo_soft_uart_default_cfg = {
Harald Weltedc023cf2022-11-29 23:15:18 +010064 .num_data_bits = 8,
65 .num_stop_bits = 1,
66 .parity_mode = OSMO_SUART_PARITY_NONE,
67 .rx_buf_size = 1024,
68 .rx_timeout_ms = 100,
Harald Weltedc023cf2022-11-29 23:15:18 +010069};
70
71/*************************************************************************
72 * Receiver
73 *************************************************************************/
74
Vadim Yanitskiy03f0ed72023-11-18 00:29:08 +070075/*! Flush the receive buffer, passing ownership of the msgb to the .rx_cb().
76 * \param[in] suart soft-UART instance holding the receive buffer. */
77void osmo_soft_uart_flush_rx(struct osmo_soft_uart *suart)
Harald Weltedc023cf2022-11-29 23:15:18 +010078{
79 if ((suart->rx.msg && msgb_length(suart->rx.msg)) || suart->rx.flags) {
80 osmo_timer_del(&suart->rx.timer);
81 if (suart->cfg.rx_cb) {
82 suart->cfg.rx_cb(suart->cfg.priv, suart->rx.msg, suart->rx.flags);
83 /* call-back has taken ownership of msgb, no need to free() here */
Vadim Yanitskiyc9fc77f2023-11-16 00:55:35 +070084 suart->rx.msg = msgb_alloc_c(suart, suart->cfg.rx_buf_size, "soft_uart_rx");
Harald Weltedc023cf2022-11-29 23:15:18 +010085 } else {
86 msgb_reset(suart->rx.msg);
87 }
88 }
89}
90
91/* one character was received; add to receive buffer and notify user, if needed */
92static void suart_rx_ch(struct osmo_soft_uart *suart, uint8_t ch)
93{
94 unsigned int msg_len;
95
96 OSMO_ASSERT(suart->rx.msg);
97 msgb_put_u8(suart->rx.msg, ch);
98 msg_len = msgb_length(suart->rx.msg);
99
100 /* first character in new message: start timer */
101 if (msg_len == 1) {
102 osmo_timer_schedule(&suart->rx.timer, suart->cfg.rx_timeout_ms / 1000,
103 (suart->cfg.rx_timeout_ms % 1000) * 1000);
104 } else if (msg_len >= suart->cfg.rx_buf_size || suart->rx.flags) {
Vadim Yanitskiy03f0ed72023-11-18 00:29:08 +0700105 osmo_soft_uart_flush_rx(suart);
Harald Weltedc023cf2022-11-29 23:15:18 +0100106 }
107}
108
109/* receive a single bit */
110static inline void osmo_uart_rx_bit(struct osmo_soft_uart *suart, const ubit_t bit)
111{
Harald Weltedc023cf2022-11-29 23:15:18 +0100112 if (!suart->rx.running)
113 return;
114
Vadim Yanitskiy1a3b5112023-11-16 00:41:03 +0700115 switch (suart->rx.flow_state) {
116 case SUART_FLOW_ST_IDLE:
117 if (bit == 0) { /* start bit condition */
118 suart->rx.flow_state = SUART_FLOW_ST_DATA;
119 suart->rx.flags = 0x00;
Harald Weltedc023cf2022-11-29 23:15:18 +0100120 suart->rx.shift_reg = 0;
Harald Weltedc023cf2022-11-29 23:15:18 +0100121 suart->rx.bit_count = 0;
Vadim Yanitskiy1c2b8c12023-11-16 00:44:42 +0700122 suart->rx.parity_bit = 0;
Harald Weltedc023cf2022-11-29 23:15:18 +0100123 }
Vadim Yanitskiy1a3b5112023-11-16 00:41:03 +0700124 break;
125 case SUART_FLOW_ST_DATA:
126 suart->rx.bit_count++;
127 suart->rx.shift_reg >>= 1;
Vadim Yanitskiy1c2b8c12023-11-16 00:44:42 +0700128 if (bit != 0) {
129 suart->rx.parity_bit = !suart->rx.parity_bit; /* flip */
Vadim Yanitskiy1a3b5112023-11-16 00:41:03 +0700130 suart->rx.shift_reg |= 0x80;
Vadim Yanitskiy1c2b8c12023-11-16 00:44:42 +0700131 }
Vadim Yanitskiy1a3b5112023-11-16 00:41:03 +0700132 if (suart->rx.bit_count >= suart->cfg.num_data_bits) {
133 /* we have accumulated enough data bits */
134 if (suart->cfg.parity_mode != OSMO_SUART_PARITY_NONE)
135 suart->rx.flow_state = SUART_FLOW_ST_PARITY;
136 else
137 suart->rx.flow_state = SUART_FLOW_ST_STOP;
138 }
139 break;
140 case SUART_FLOW_ST_PARITY:
Vadim Yanitskiy1c2b8c12023-11-16 00:44:42 +0700141 switch (suart->cfg.parity_mode) {
142 case OSMO_SUART_PARITY_EVEN:
143 /* number of 1-bits (in both data and parity) shall be even */
144 if (suart->rx.parity_bit != bit)
145 suart->rx.flags |= OSMO_SUART_F_PARITY_ERROR;
146 break;
147 case OSMO_SUART_PARITY_ODD:
148 /* number of 1-bits (in both data and parity) shall be odd */
149 if (suart->rx.parity_bit == bit)
150 suart->rx.flags |= OSMO_SUART_F_PARITY_ERROR;
151 break;
152 case OSMO_SUART_PARITY_NONE: /* shall not happen */
153 default:
154 OSMO_ASSERT(0);
155 }
156
Vadim Yanitskiy1a3b5112023-11-16 00:41:03 +0700157 suart->rx.flow_state = SUART_FLOW_ST_STOP;
158 break;
159 case SUART_FLOW_ST_STOP:
160 suart->rx.bit_count++;
161 if (bit != 1)
162 suart->rx.flags |= OSMO_SUART_F_FRAMING_ERROR;
163
164 if (suart->rx.bit_count >= (suart->cfg.num_data_bits + suart->cfg.num_stop_bits)) {
165 /* we have accumulated enough stop bits */
166 suart_rx_ch(suart, suart->rx.shift_reg);
167 suart->rx.flow_state = SUART_FLOW_ST_IDLE;
168 }
169 break;
Harald Weltedc023cf2022-11-29 23:15:18 +0100170 }
171}
172
173/* receive timer expiration: flush rx-buffer to user call-back */
174static void suart_rx_timer_cb(void *data)
175{
176 struct osmo_soft_uart *suart = data;
Vadim Yanitskiy03f0ed72023-11-18 00:29:08 +0700177 osmo_soft_uart_flush_rx(suart);
Harald Weltedc023cf2022-11-29 23:15:18 +0100178}
179
Vadim Yanitskiyb72625d2023-11-16 00:32:33 +0700180/*! Feed a number of unpacked bits into the soft-UART receiver.
181 * \param[in] suart soft-UART instance to feed bits into.
182 * \param[in] ubits pointer to the unpacked bits.
183 * \param[in] n_ubits number of unpacked bits to be fed.
184 * \returns 0 on success; negative on error. */
Harald Weltedc023cf2022-11-29 23:15:18 +0100185int osmo_soft_uart_rx_ubits(struct osmo_soft_uart *suart, const ubit_t *ubits, size_t n_ubits)
186{
187 for (size_t i = 0; i < n_ubits; i++)
188 osmo_uart_rx_bit(suart, ubits[i]);
189 return 0;
190}
191
192/*************************************************************************
193 * Transmitter
194 *************************************************************************/
195
Harald Weltedc023cf2022-11-29 23:15:18 +0100196/* pull a single bit out of the UART transmitter */
Vadim Yanitskiyc9fc77f2023-11-16 00:55:35 +0700197static inline ubit_t osmo_uart_tx_bit(struct osmo_soft_uart *suart, struct msgb *msg)
Harald Weltedc023cf2022-11-29 23:15:18 +0100198{
Vadim Yanitskiyc9fc77f2023-11-16 00:55:35 +0700199 ubit_t tx_bit = 1;
Harald Weltedc023cf2022-11-29 23:15:18 +0100200
Vadim Yanitskiyc9fc77f2023-11-16 00:55:35 +0700201 if (!suart->tx.running)
202 return tx_bit;
203
204 switch (suart->tx.flow_state) {
205 case SUART_FLOW_ST_IDLE:
206 if (msgb_length(msg) > 0) { /* if we have pending data */
207 suart->tx.shift_reg = msgb_pull_u8(msg);
208 suart->tx.flow_state = SUART_FLOW_ST_DATA;
209 suart->tx.bit_count = 0;
210 suart->tx.parity_bit = 0;
211 tx_bit = 0;
212 }
213 break;
214 case SUART_FLOW_ST_DATA:
215 tx_bit = suart->tx.shift_reg & 1;
216 suart->tx.parity_bit ^= tx_bit;
217 suart->tx.shift_reg >>= 1;
218 suart->tx.bit_count++;
219 if (suart->tx.bit_count >= suart->cfg.num_data_bits) {
220 /* we have transmitted all data bits */
221 if (suart->cfg.parity_mode != OSMO_SUART_PARITY_NONE)
222 suart->tx.flow_state = SUART_FLOW_ST_PARITY;
223 else
224 suart->tx.flow_state = SUART_FLOW_ST_STOP;
225 }
226 break;
227 case SUART_FLOW_ST_PARITY:
228 switch (suart->cfg.parity_mode) {
229 case OSMO_SUART_PARITY_EVEN:
230 /* number of 1-bits (in both data and parity) shall be even */
231 tx_bit = suart->tx.parity_bit;
232 break;
233 case OSMO_SUART_PARITY_ODD:
234 /* number of 1-bits (in both data and parity) shall be odd */
235 tx_bit = !suart->tx.parity_bit;
236 break;
237 case OSMO_SUART_PARITY_NONE:
238 default: /* shall not happen */
239 OSMO_ASSERT(0);
240 }
241
242 suart->tx.flow_state = SUART_FLOW_ST_STOP;
243 break;
244 case SUART_FLOW_ST_STOP:
245 suart->tx.bit_count++;
246 if (suart->tx.bit_count >= (suart->cfg.num_data_bits + suart->cfg.num_stop_bits)) {
247 /* we have transmitted all stop bits, we're done */
248 suart->tx.flow_state = SUART_FLOW_ST_IDLE;
249 }
250 break;
Harald Weltedc023cf2022-11-29 23:15:18 +0100251 }
Vadim Yanitskiyc9fc77f2023-11-16 00:55:35 +0700252
253 return tx_bit;
Harald Weltedc023cf2022-11-29 23:15:18 +0100254}
255
Vadim Yanitskiyb72625d2023-11-16 00:32:33 +0700256/*! Pull a number of unpacked bits out of the soft-UART transmitter.
257 * \param[in] suart soft-UART instance to pull the bits from.
258 * \param[out] ubits pointer to a buffer where to store pulled bits.
259 * \param[in] n_ubits number of unpacked bits to be pulled.
260 * \returns number of unpacked bits pulled; negative on error. */
Harald Weltedc023cf2022-11-29 23:15:18 +0100261int osmo_soft_uart_tx_ubits(struct osmo_soft_uart *suart, ubit_t *ubits, size_t n_ubits)
262{
Vadim Yanitskiyc9fc77f2023-11-16 00:55:35 +0700263 const struct osmo_soft_uart_cfg *cfg = &suart->cfg;
264 size_t n_frame_bits;
265 struct msgb *msg;
266
267 /* calculate UART frame size for the effective config */
268 n_frame_bits = 1 + cfg->num_data_bits + cfg->num_stop_bits;
269 if (cfg->parity_mode != OSMO_SUART_PARITY_NONE)
270 n_frame_bits += 1;
271
272 /* allocate a Tx buffer msgb */
273 msg = msgb_alloc_c(suart, n_ubits / n_frame_bits, "soft_uart_tx");
274 OSMO_ASSERT(msg != NULL);
275
276 /* call the .tx_cb() to populate the Tx buffer */
277 OSMO_ASSERT(cfg->tx_cb != NULL);
278 suart->cfg.tx_cb(cfg->priv, msg);
279
Harald Weltedc023cf2022-11-29 23:15:18 +0100280 for (size_t i = 0; i < n_ubits; i++)
Vadim Yanitskiyc9fc77f2023-11-16 00:55:35 +0700281 ubits[i] = osmo_uart_tx_bit(suart, msg);
282 msgb_free(msg);
283
284 return 0;
Harald Weltedc023cf2022-11-29 23:15:18 +0100285}
286
Vadim Yanitskiyb72625d2023-11-16 00:32:33 +0700287/*! Set the modem status lines of the given soft-UART.
288 * \param[in] suart soft-UART instance to update the modem status.
289 * \param[in] status mask of osmo_soft_uart_status.
290 * \returns 0 on success; negative on error. */
Harald Weltedc023cf2022-11-29 23:15:18 +0100291int osmo_soft_uart_set_status(struct osmo_soft_uart *suart, unsigned int status)
292{
293 /* FIXME: Tx */
294 return 0;
295}
296
297
298/*************************************************************************
299 * Management / Initialization
300 *************************************************************************/
301
Vadim Yanitskiyb72625d2023-11-16 00:32:33 +0700302/*! Allocate a soft-UART instance.
303 * \param[in] ctx parent talloc context.
304 * \param[in] name name of the soft-UART instance.
Vadim Yanitskiy82a1ae72023-11-16 15:34:50 +0700305 * \param[in] cfg initial configuration of the soft-UART instance.
Vadim Yanitskiyb72625d2023-11-16 00:32:33 +0700306 * \returns pointer to allocated soft-UART instance; NULL on error. */
Vadim Yanitskiy82a1ae72023-11-16 15:34:50 +0700307struct osmo_soft_uart *osmo_soft_uart_alloc(void *ctx, const char *name,
308 const struct osmo_soft_uart_cfg *cfg)
Harald Weltedc023cf2022-11-29 23:15:18 +0100309{
310 struct osmo_soft_uart *suart = talloc_zero(ctx, struct osmo_soft_uart);
311 if (!suart)
312 return NULL;
313 suart->name = talloc_strdup(suart, name);
Vadim Yanitskiy82a1ae72023-11-16 15:34:50 +0700314
315 OSMO_ASSERT(cfg != NULL);
316 suart->cfg = *cfg;
Harald Weltedc023cf2022-11-29 23:15:18 +0100317
318 return suart;
319}
320
Vadim Yanitskiy877cfed2023-11-12 17:21:31 +0700321/*! Release memory taken by the given soft-UART.
322 * \param[in] suart soft-UART instance to be free()d. */
323void osmo_soft_uart_free(struct osmo_soft_uart *suart)
324{
325 if (suart == NULL)
326 return;
327
328 osmo_timer_del(&suart->rx.timer);
329 msgb_free(suart->rx.msg);
330
331 talloc_free((void *)suart->name);
332 talloc_free(suart);
333}
334
Vadim Yanitskiyb72625d2023-11-16 00:32:33 +0700335/*! Change soft-UART configuration to the user-provided config.
336 * \param[in] suart soft-UART instance to be re-configured.
337 * \param[in] cfg the user-provided config to be applied.
338 * \returns 0 on success; negative on error. */
Harald Weltedc023cf2022-11-29 23:15:18 +0100339int osmo_soft_uart_configure(struct osmo_soft_uart *suart, const struct osmo_soft_uart_cfg *cfg)
340{
341 /* consistency checks on the configuration */
342 if (cfg->num_data_bits > 8 || cfg->num_data_bits == 0)
343 return -EINVAL;
344 if (cfg->num_stop_bits == 0)
345 return -EINVAL;
346 if (cfg->parity_mode < 0 || cfg->parity_mode >= _OSMO_SUART_PARITY_NUM)
347 return -EINVAL;
348 if (cfg->rx_buf_size == 0)
349 return -EINVAL;
350
351 if (suart->cfg.rx_buf_size > cfg->rx_buf_size ||
352 suart->cfg.rx_timeout_ms > cfg->rx_timeout_ms) {
Vadim Yanitskiy03f0ed72023-11-18 00:29:08 +0700353 osmo_soft_uart_flush_rx(suart);
Harald Weltedc023cf2022-11-29 23:15:18 +0100354 }
355
356 suart->cfg = *cfg;
357
358 osmo_timer_setup(&suart->rx.timer, suart_rx_timer_cb, suart);
Harald Weltedc023cf2022-11-29 23:15:18 +0100359
360 return 0;
361}
362
Vadim Yanitskiycdde6712023-11-16 15:17:37 +0700363/*! Enable/disable receiver of the given soft-UART.
Vadim Yanitskiyb72625d2023-11-16 00:32:33 +0700364 * \param[in] suart soft-UART instance to be re-configured.
Vadim Yanitskiycdde6712023-11-16 15:17:37 +0700365 * \param[in] enable enable/disable state of the receiver.
Vadim Yanitskiyb72625d2023-11-16 00:32:33 +0700366 * \returns 0 on success; negative on error. */
Vadim Yanitskiycdde6712023-11-16 15:17:37 +0700367int osmo_soft_uart_set_rx(struct osmo_soft_uart *suart, bool enable)
Harald Weltedc023cf2022-11-29 23:15:18 +0100368{
Vadim Yanitskiycdde6712023-11-16 15:17:37 +0700369 if (!enable && suart->rx.running) {
Vadim Yanitskiy03f0ed72023-11-18 00:29:08 +0700370 osmo_soft_uart_flush_rx(suart);
Harald Weltedc023cf2022-11-29 23:15:18 +0100371 suart->rx.running = false;
Vadim Yanitskiy1a3b5112023-11-16 00:41:03 +0700372 suart->rx.flow_state = SUART_FLOW_ST_IDLE;
Vadim Yanitskiycdde6712023-11-16 15:17:37 +0700373 } else if (enable && !suart->rx.running) {
Harald Weltedc023cf2022-11-29 23:15:18 +0100374 if (!suart->rx.msg)
375 suart->rx.msg = msgb_alloc_c(suart, suart->cfg.rx_buf_size, "soft_uart rx");
376 suart->rx.running = true;
Vadim Yanitskiy1a3b5112023-11-16 00:41:03 +0700377 suart->rx.flow_state = SUART_FLOW_ST_IDLE;
Harald Weltedc023cf2022-11-29 23:15:18 +0100378 }
379
Vadim Yanitskiycdde6712023-11-16 15:17:37 +0700380 return 0;
381}
382
383/*! Enable/disable transmitter of the given soft-UART.
384 * \param[in] suart soft-UART instance to be re-configured.
385 * \param[in] enable enable/disable state of the transmitter.
386 * \returns 0 on success; negative on error. */
387int osmo_soft_uart_set_tx(struct osmo_soft_uart *suart, bool enable)
388{
389 if (!enable && suart->tx.running) {
Harald Weltedc023cf2022-11-29 23:15:18 +0100390 suart->tx.running = false;
Vadim Yanitskiyc9fc77f2023-11-16 00:55:35 +0700391 suart->tx.flow_state = SUART_FLOW_ST_IDLE;
Vadim Yanitskiycdde6712023-11-16 15:17:37 +0700392 } else if (enable && !suart->tx.running) {
Harald Weltedc023cf2022-11-29 23:15:18 +0100393 suart->tx.running = true;
Vadim Yanitskiyc9fc77f2023-11-16 00:55:35 +0700394 suart->tx.flow_state = SUART_FLOW_ST_IDLE;
Harald Weltedc023cf2022-11-29 23:15:18 +0100395 }
396
397 return 0;
398}