blob: 058512d16cc6e584a1e394c5af69121bd56a36cc [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
Vadim Yanitskiybf95f822023-11-18 01:46:16 +0700100 if (msg_len >= suart->cfg.rx_buf_size || suart->rx.flags) {
101 /* either the buffer is full, or we hit a parity and/or a framing error */
102 osmo_soft_uart_flush_rx(suart);
103 } else if (msg_len == 1) {
104 /* first character in new message: start timer */
Harald Weltedc023cf2022-11-29 23:15:18 +0100105 osmo_timer_schedule(&suart->rx.timer, suart->cfg.rx_timeout_ms / 1000,
106 (suart->cfg.rx_timeout_ms % 1000) * 1000);
Harald Weltedc023cf2022-11-29 23:15:18 +0100107 }
108}
109
110/* receive a single bit */
111static inline void osmo_uart_rx_bit(struct osmo_soft_uart *suart, const ubit_t bit)
112{
Harald Weltedc023cf2022-11-29 23:15:18 +0100113 if (!suart->rx.running)
114 return;
115
Vadim Yanitskiy1a3b5112023-11-16 00:41:03 +0700116 switch (suart->rx.flow_state) {
117 case SUART_FLOW_ST_IDLE:
118 if (bit == 0) { /* start bit condition */
119 suart->rx.flow_state = SUART_FLOW_ST_DATA;
120 suart->rx.flags = 0x00;
Harald Weltedc023cf2022-11-29 23:15:18 +0100121 suart->rx.shift_reg = 0;
Harald Weltedc023cf2022-11-29 23:15:18 +0100122 suart->rx.bit_count = 0;
Vadim Yanitskiy1c2b8c12023-11-16 00:44:42 +0700123 suart->rx.parity_bit = 0;
Harald Weltedc023cf2022-11-29 23:15:18 +0100124 }
Vadim Yanitskiy1a3b5112023-11-16 00:41:03 +0700125 break;
126 case SUART_FLOW_ST_DATA:
127 suart->rx.bit_count++;
128 suart->rx.shift_reg >>= 1;
Vadim Yanitskiy1c2b8c12023-11-16 00:44:42 +0700129 if (bit != 0) {
130 suart->rx.parity_bit = !suart->rx.parity_bit; /* flip */
Vadim Yanitskiy1a3b5112023-11-16 00:41:03 +0700131 suart->rx.shift_reg |= 0x80;
Vadim Yanitskiy1c2b8c12023-11-16 00:44:42 +0700132 }
Vadim Yanitskiy1a3b5112023-11-16 00:41:03 +0700133 if (suart->rx.bit_count >= suart->cfg.num_data_bits) {
134 /* we have accumulated enough data bits */
135 if (suart->cfg.parity_mode != OSMO_SUART_PARITY_NONE)
136 suart->rx.flow_state = SUART_FLOW_ST_PARITY;
137 else
138 suart->rx.flow_state = SUART_FLOW_ST_STOP;
139 }
140 break;
141 case SUART_FLOW_ST_PARITY:
Vadim Yanitskiy1c2b8c12023-11-16 00:44:42 +0700142 switch (suart->cfg.parity_mode) {
143 case OSMO_SUART_PARITY_EVEN:
144 /* number of 1-bits (in both data and parity) shall be even */
145 if (suart->rx.parity_bit != bit)
146 suart->rx.flags |= OSMO_SUART_F_PARITY_ERROR;
147 break;
148 case OSMO_SUART_PARITY_ODD:
149 /* number of 1-bits (in both data and parity) shall be odd */
150 if (suart->rx.parity_bit == bit)
151 suart->rx.flags |= OSMO_SUART_F_PARITY_ERROR;
152 break;
153 case OSMO_SUART_PARITY_NONE: /* shall not happen */
154 default:
155 OSMO_ASSERT(0);
156 }
157
Vadim Yanitskiy1a3b5112023-11-16 00:41:03 +0700158 suart->rx.flow_state = SUART_FLOW_ST_STOP;
159 break;
160 case SUART_FLOW_ST_STOP:
161 suart->rx.bit_count++;
162 if (bit != 1)
163 suart->rx.flags |= OSMO_SUART_F_FRAMING_ERROR;
164
165 if (suart->rx.bit_count >= (suart->cfg.num_data_bits + suart->cfg.num_stop_bits)) {
166 /* we have accumulated enough stop bits */
167 suart_rx_ch(suart, suart->rx.shift_reg);
168 suart->rx.flow_state = SUART_FLOW_ST_IDLE;
169 }
170 break;
Harald Weltedc023cf2022-11-29 23:15:18 +0100171 }
172}
173
174/* receive timer expiration: flush rx-buffer to user call-back */
175static void suart_rx_timer_cb(void *data)
176{
177 struct osmo_soft_uart *suart = data;
Vadim Yanitskiy03f0ed72023-11-18 00:29:08 +0700178 osmo_soft_uart_flush_rx(suart);
Harald Weltedc023cf2022-11-29 23:15:18 +0100179}
180
Vadim Yanitskiyb72625d2023-11-16 00:32:33 +0700181/*! Feed a number of unpacked bits into the soft-UART receiver.
182 * \param[in] suart soft-UART instance to feed bits into.
183 * \param[in] ubits pointer to the unpacked bits.
184 * \param[in] n_ubits number of unpacked bits to be fed.
185 * \returns 0 on success; negative on error. */
Harald Weltedc023cf2022-11-29 23:15:18 +0100186int osmo_soft_uart_rx_ubits(struct osmo_soft_uart *suart, const ubit_t *ubits, size_t n_ubits)
187{
188 for (size_t i = 0; i < n_ubits; i++)
189 osmo_uart_rx_bit(suart, ubits[i]);
190 return 0;
191}
192
193/*************************************************************************
194 * Transmitter
195 *************************************************************************/
196
Harald Weltedc023cf2022-11-29 23:15:18 +0100197/* pull a single bit out of the UART transmitter */
Vadim Yanitskiyc9fc77f2023-11-16 00:55:35 +0700198static inline ubit_t osmo_uart_tx_bit(struct osmo_soft_uart *suart, struct msgb *msg)
Harald Weltedc023cf2022-11-29 23:15:18 +0100199{
Vadim Yanitskiyc9fc77f2023-11-16 00:55:35 +0700200 ubit_t tx_bit = 1;
Harald Weltedc023cf2022-11-29 23:15:18 +0100201
Vadim Yanitskiyc9fc77f2023-11-16 00:55:35 +0700202 if (!suart->tx.running)
203 return tx_bit;
204
205 switch (suart->tx.flow_state) {
206 case SUART_FLOW_ST_IDLE:
207 if (msgb_length(msg) > 0) { /* if we have pending data */
208 suart->tx.shift_reg = msgb_pull_u8(msg);
209 suart->tx.flow_state = SUART_FLOW_ST_DATA;
210 suart->tx.bit_count = 0;
211 suart->tx.parity_bit = 0;
212 tx_bit = 0;
213 }
214 break;
215 case SUART_FLOW_ST_DATA:
216 tx_bit = suart->tx.shift_reg & 1;
217 suart->tx.parity_bit ^= tx_bit;
218 suart->tx.shift_reg >>= 1;
219 suart->tx.bit_count++;
220 if (suart->tx.bit_count >= suart->cfg.num_data_bits) {
221 /* we have transmitted all data bits */
222 if (suart->cfg.parity_mode != OSMO_SUART_PARITY_NONE)
223 suart->tx.flow_state = SUART_FLOW_ST_PARITY;
224 else
225 suart->tx.flow_state = SUART_FLOW_ST_STOP;
226 }
227 break;
228 case SUART_FLOW_ST_PARITY:
229 switch (suart->cfg.parity_mode) {
230 case OSMO_SUART_PARITY_EVEN:
231 /* number of 1-bits (in both data and parity) shall be even */
232 tx_bit = suart->tx.parity_bit;
233 break;
234 case OSMO_SUART_PARITY_ODD:
235 /* number of 1-bits (in both data and parity) shall be odd */
236 tx_bit = !suart->tx.parity_bit;
237 break;
238 case OSMO_SUART_PARITY_NONE:
239 default: /* shall not happen */
240 OSMO_ASSERT(0);
241 }
242
243 suart->tx.flow_state = SUART_FLOW_ST_STOP;
244 break;
245 case SUART_FLOW_ST_STOP:
246 suart->tx.bit_count++;
247 if (suart->tx.bit_count >= (suart->cfg.num_data_bits + suart->cfg.num_stop_bits)) {
248 /* we have transmitted all stop bits, we're done */
249 suart->tx.flow_state = SUART_FLOW_ST_IDLE;
250 }
251 break;
Harald Weltedc023cf2022-11-29 23:15:18 +0100252 }
Vadim Yanitskiyc9fc77f2023-11-16 00:55:35 +0700253
254 return tx_bit;
Harald Weltedc023cf2022-11-29 23:15:18 +0100255}
256
Vadim Yanitskiyb72625d2023-11-16 00:32:33 +0700257/*! Pull a number of unpacked bits out of the soft-UART transmitter.
258 * \param[in] suart soft-UART instance to pull the bits from.
259 * \param[out] ubits pointer to a buffer where to store pulled bits.
260 * \param[in] n_ubits number of unpacked bits to be pulled.
261 * \returns number of unpacked bits pulled; negative on error. */
Harald Weltedc023cf2022-11-29 23:15:18 +0100262int osmo_soft_uart_tx_ubits(struct osmo_soft_uart *suart, ubit_t *ubits, size_t n_ubits)
263{
Vadim Yanitskiyc9fc77f2023-11-16 00:55:35 +0700264 const struct osmo_soft_uart_cfg *cfg = &suart->cfg;
265 size_t n_frame_bits;
266 struct msgb *msg;
267
268 /* calculate UART frame size for the effective config */
269 n_frame_bits = 1 + cfg->num_data_bits + cfg->num_stop_bits;
270 if (cfg->parity_mode != OSMO_SUART_PARITY_NONE)
271 n_frame_bits += 1;
272
273 /* allocate a Tx buffer msgb */
274 msg = msgb_alloc_c(suart, n_ubits / n_frame_bits, "soft_uart_tx");
275 OSMO_ASSERT(msg != NULL);
276
277 /* call the .tx_cb() to populate the Tx buffer */
278 OSMO_ASSERT(cfg->tx_cb != NULL);
279 suart->cfg.tx_cb(cfg->priv, msg);
280
Harald Weltedc023cf2022-11-29 23:15:18 +0100281 for (size_t i = 0; i < n_ubits; i++)
Vadim Yanitskiyc9fc77f2023-11-16 00:55:35 +0700282 ubits[i] = osmo_uart_tx_bit(suart, msg);
283 msgb_free(msg);
284
285 return 0;
Harald Weltedc023cf2022-11-29 23:15:18 +0100286}
287
Vadim Yanitskiyb72625d2023-11-16 00:32:33 +0700288/*! Set the modem status lines of the given soft-UART.
289 * \param[in] suart soft-UART instance to update the modem status.
290 * \param[in] status mask of osmo_soft_uart_status.
291 * \returns 0 on success; negative on error. */
Harald Weltedc023cf2022-11-29 23:15:18 +0100292int osmo_soft_uart_set_status(struct osmo_soft_uart *suart, unsigned int status)
293{
294 /* FIXME: Tx */
295 return 0;
296}
297
298
299/*************************************************************************
300 * Management / Initialization
301 *************************************************************************/
302
Vadim Yanitskiyb72625d2023-11-16 00:32:33 +0700303/*! Allocate a soft-UART instance.
304 * \param[in] ctx parent talloc context.
305 * \param[in] name name of the soft-UART instance.
Vadim Yanitskiy82a1ae72023-11-16 15:34:50 +0700306 * \param[in] cfg initial configuration of the soft-UART instance.
Vadim Yanitskiyb72625d2023-11-16 00:32:33 +0700307 * \returns pointer to allocated soft-UART instance; NULL on error. */
Vadim Yanitskiy82a1ae72023-11-16 15:34:50 +0700308struct osmo_soft_uart *osmo_soft_uart_alloc(void *ctx, const char *name,
309 const struct osmo_soft_uart_cfg *cfg)
Harald Weltedc023cf2022-11-29 23:15:18 +0100310{
311 struct osmo_soft_uart *suart = talloc_zero(ctx, struct osmo_soft_uart);
312 if (!suart)
313 return NULL;
314 suart->name = talloc_strdup(suart, name);
Vadim Yanitskiy82a1ae72023-11-16 15:34:50 +0700315
316 OSMO_ASSERT(cfg != NULL);
317 suart->cfg = *cfg;
Harald Weltedc023cf2022-11-29 23:15:18 +0100318
319 return suart;
320}
321
Vadim Yanitskiy877cfed2023-11-12 17:21:31 +0700322/*! Release memory taken by the given soft-UART.
323 * \param[in] suart soft-UART instance to be free()d. */
324void osmo_soft_uart_free(struct osmo_soft_uart *suart)
325{
326 if (suart == NULL)
327 return;
328
329 osmo_timer_del(&suart->rx.timer);
330 msgb_free(suart->rx.msg);
331
332 talloc_free((void *)suart->name);
333 talloc_free(suart);
334}
335
Vadim Yanitskiyb72625d2023-11-16 00:32:33 +0700336/*! Change soft-UART configuration to the user-provided config.
337 * \param[in] suart soft-UART instance to be re-configured.
338 * \param[in] cfg the user-provided config to be applied.
339 * \returns 0 on success; negative on error. */
Harald Weltedc023cf2022-11-29 23:15:18 +0100340int osmo_soft_uart_configure(struct osmo_soft_uart *suart, const struct osmo_soft_uart_cfg *cfg)
341{
342 /* consistency checks on the configuration */
343 if (cfg->num_data_bits > 8 || cfg->num_data_bits == 0)
344 return -EINVAL;
345 if (cfg->num_stop_bits == 0)
346 return -EINVAL;
347 if (cfg->parity_mode < 0 || cfg->parity_mode >= _OSMO_SUART_PARITY_NUM)
348 return -EINVAL;
349 if (cfg->rx_buf_size == 0)
350 return -EINVAL;
351
352 if (suart->cfg.rx_buf_size > cfg->rx_buf_size ||
353 suart->cfg.rx_timeout_ms > cfg->rx_timeout_ms) {
Vadim Yanitskiy03f0ed72023-11-18 00:29:08 +0700354 osmo_soft_uart_flush_rx(suart);
Harald Weltedc023cf2022-11-29 23:15:18 +0100355 }
356
357 suart->cfg = *cfg;
358
359 osmo_timer_setup(&suart->rx.timer, suart_rx_timer_cb, suart);
Harald Weltedc023cf2022-11-29 23:15:18 +0100360
361 return 0;
362}
363
Vadim Yanitskiycdde6712023-11-16 15:17:37 +0700364/*! Enable/disable receiver of the given soft-UART.
Vadim Yanitskiyb72625d2023-11-16 00:32:33 +0700365 * \param[in] suart soft-UART instance to be re-configured.
Vadim Yanitskiycdde6712023-11-16 15:17:37 +0700366 * \param[in] enable enable/disable state of the receiver.
Vadim Yanitskiyb72625d2023-11-16 00:32:33 +0700367 * \returns 0 on success; negative on error. */
Vadim Yanitskiycdde6712023-11-16 15:17:37 +0700368int osmo_soft_uart_set_rx(struct osmo_soft_uart *suart, bool enable)
Harald Weltedc023cf2022-11-29 23:15:18 +0100369{
Vadim Yanitskiycdde6712023-11-16 15:17:37 +0700370 if (!enable && suart->rx.running) {
Vadim Yanitskiy03f0ed72023-11-18 00:29:08 +0700371 osmo_soft_uart_flush_rx(suart);
Harald Weltedc023cf2022-11-29 23:15:18 +0100372 suart->rx.running = false;
Vadim Yanitskiy1a3b5112023-11-16 00:41:03 +0700373 suart->rx.flow_state = SUART_FLOW_ST_IDLE;
Vadim Yanitskiycdde6712023-11-16 15:17:37 +0700374 } else if (enable && !suart->rx.running) {
Harald Weltedc023cf2022-11-29 23:15:18 +0100375 if (!suart->rx.msg)
376 suart->rx.msg = msgb_alloc_c(suart, suart->cfg.rx_buf_size, "soft_uart rx");
377 suart->rx.running = true;
Vadim Yanitskiy1a3b5112023-11-16 00:41:03 +0700378 suart->rx.flow_state = SUART_FLOW_ST_IDLE;
Harald Weltedc023cf2022-11-29 23:15:18 +0100379 }
380
Vadim Yanitskiycdde6712023-11-16 15:17:37 +0700381 return 0;
382}
383
384/*! Enable/disable transmitter of the given soft-UART.
385 * \param[in] suart soft-UART instance to be re-configured.
386 * \param[in] enable enable/disable state of the transmitter.
387 * \returns 0 on success; negative on error. */
388int osmo_soft_uart_set_tx(struct osmo_soft_uart *suart, bool enable)
389{
390 if (!enable && suart->tx.running) {
Harald Weltedc023cf2022-11-29 23:15:18 +0100391 suart->tx.running = false;
Vadim Yanitskiyc9fc77f2023-11-16 00:55:35 +0700392 suart->tx.flow_state = SUART_FLOW_ST_IDLE;
Vadim Yanitskiycdde6712023-11-16 15:17:37 +0700393 } else if (enable && !suart->tx.running) {
Harald Weltedc023cf2022-11-29 23:15:18 +0100394 suart->tx.running = true;
Vadim Yanitskiyc9fc77f2023-11-16 00:55:35 +0700395 suart->tx.flow_state = SUART_FLOW_ST_IDLE;
Harald Weltedc023cf2022-11-29 23:15:18 +0100396 }
397
398 return 0;
399}