blob: 238425a0b91ad53adee7355bfad5ae6acc1e930d [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
75/* flush the receive buffer + allocate new one, as needed */
76static void suart_flush_rx(struct osmo_soft_uart *suart)
77{
78 if ((suart->rx.msg && msgb_length(suart->rx.msg)) || suart->rx.flags) {
79 osmo_timer_del(&suart->rx.timer);
80 if (suart->cfg.rx_cb) {
81 suart->cfg.rx_cb(suart->cfg.priv, suart->rx.msg, suart->rx.flags);
82 /* call-back has taken ownership of msgb, no need to free() here */
Vadim Yanitskiyc9fc77f2023-11-16 00:55:35 +070083 suart->rx.msg = msgb_alloc_c(suart, suart->cfg.rx_buf_size, "soft_uart_rx");
Harald Weltedc023cf2022-11-29 23:15:18 +010084 } else {
85 msgb_reset(suart->rx.msg);
86 }
87 }
88}
89
90/* one character was received; add to receive buffer and notify user, if needed */
91static void suart_rx_ch(struct osmo_soft_uart *suart, uint8_t ch)
92{
93 unsigned int msg_len;
94
95 OSMO_ASSERT(suart->rx.msg);
96 msgb_put_u8(suart->rx.msg, ch);
97 msg_len = msgb_length(suart->rx.msg);
98
99 /* first character in new message: start timer */
100 if (msg_len == 1) {
101 osmo_timer_schedule(&suart->rx.timer, suart->cfg.rx_timeout_ms / 1000,
102 (suart->cfg.rx_timeout_ms % 1000) * 1000);
103 } else if (msg_len >= suart->cfg.rx_buf_size || suart->rx.flags) {
104 suart_flush_rx(suart);
105 }
106}
107
108/* receive a single bit */
109static inline void osmo_uart_rx_bit(struct osmo_soft_uart *suart, const ubit_t bit)
110{
Harald Weltedc023cf2022-11-29 23:15:18 +0100111 if (!suart->rx.running)
112 return;
113
Vadim Yanitskiy1a3b5112023-11-16 00:41:03 +0700114 switch (suart->rx.flow_state) {
115 case SUART_FLOW_ST_IDLE:
116 if (bit == 0) { /* start bit condition */
117 suart->rx.flow_state = SUART_FLOW_ST_DATA;
118 suart->rx.flags = 0x00;
Harald Weltedc023cf2022-11-29 23:15:18 +0100119 suart->rx.shift_reg = 0;
Harald Weltedc023cf2022-11-29 23:15:18 +0100120 suart->rx.bit_count = 0;
Vadim Yanitskiy1c2b8c12023-11-16 00:44:42 +0700121 suart->rx.parity_bit = 0;
Harald Weltedc023cf2022-11-29 23:15:18 +0100122 }
Vadim Yanitskiy1a3b5112023-11-16 00:41:03 +0700123 break;
124 case SUART_FLOW_ST_DATA:
125 suart->rx.bit_count++;
126 suart->rx.shift_reg >>= 1;
Vadim Yanitskiy1c2b8c12023-11-16 00:44:42 +0700127 if (bit != 0) {
128 suart->rx.parity_bit = !suart->rx.parity_bit; /* flip */
Vadim Yanitskiy1a3b5112023-11-16 00:41:03 +0700129 suart->rx.shift_reg |= 0x80;
Vadim Yanitskiy1c2b8c12023-11-16 00:44:42 +0700130 }
Vadim Yanitskiy1a3b5112023-11-16 00:41:03 +0700131 if (suart->rx.bit_count >= suart->cfg.num_data_bits) {
132 /* we have accumulated enough data bits */
133 if (suart->cfg.parity_mode != OSMO_SUART_PARITY_NONE)
134 suart->rx.flow_state = SUART_FLOW_ST_PARITY;
135 else
136 suart->rx.flow_state = SUART_FLOW_ST_STOP;
137 }
138 break;
139 case SUART_FLOW_ST_PARITY:
Vadim Yanitskiy1c2b8c12023-11-16 00:44:42 +0700140 switch (suart->cfg.parity_mode) {
141 case OSMO_SUART_PARITY_EVEN:
142 /* number of 1-bits (in both data and parity) shall be even */
143 if (suart->rx.parity_bit != bit)
144 suart->rx.flags |= OSMO_SUART_F_PARITY_ERROR;
145 break;
146 case OSMO_SUART_PARITY_ODD:
147 /* number of 1-bits (in both data and parity) shall be odd */
148 if (suart->rx.parity_bit == bit)
149 suart->rx.flags |= OSMO_SUART_F_PARITY_ERROR;
150 break;
151 case OSMO_SUART_PARITY_NONE: /* shall not happen */
152 default:
153 OSMO_ASSERT(0);
154 }
155
Vadim Yanitskiy1a3b5112023-11-16 00:41:03 +0700156 suart->rx.flow_state = SUART_FLOW_ST_STOP;
157 break;
158 case SUART_FLOW_ST_STOP:
159 suart->rx.bit_count++;
160 if (bit != 1)
161 suart->rx.flags |= OSMO_SUART_F_FRAMING_ERROR;
162
163 if (suart->rx.bit_count >= (suart->cfg.num_data_bits + suart->cfg.num_stop_bits)) {
164 /* we have accumulated enough stop bits */
165 suart_rx_ch(suart, suart->rx.shift_reg);
166 suart->rx.flow_state = SUART_FLOW_ST_IDLE;
167 }
168 break;
Harald Weltedc023cf2022-11-29 23:15:18 +0100169 }
170}
171
172/* receive timer expiration: flush rx-buffer to user call-back */
173static void suart_rx_timer_cb(void *data)
174{
175 struct osmo_soft_uart *suart = data;
176 suart_flush_rx(suart);
177}
178
Vadim Yanitskiyb72625d2023-11-16 00:32:33 +0700179/*! Feed a number of unpacked bits into the soft-UART receiver.
180 * \param[in] suart soft-UART instance to feed bits into.
181 * \param[in] ubits pointer to the unpacked bits.
182 * \param[in] n_ubits number of unpacked bits to be fed.
183 * \returns 0 on success; negative on error. */
Harald Weltedc023cf2022-11-29 23:15:18 +0100184int osmo_soft_uart_rx_ubits(struct osmo_soft_uart *suart, const ubit_t *ubits, size_t n_ubits)
185{
186 for (size_t i = 0; i < n_ubits; i++)
187 osmo_uart_rx_bit(suart, ubits[i]);
188 return 0;
189}
190
191/*************************************************************************
192 * Transmitter
193 *************************************************************************/
194
Harald Weltedc023cf2022-11-29 23:15:18 +0100195/* pull a single bit out of the UART transmitter */
Vadim Yanitskiyc9fc77f2023-11-16 00:55:35 +0700196static inline ubit_t osmo_uart_tx_bit(struct osmo_soft_uart *suart, struct msgb *msg)
Harald Weltedc023cf2022-11-29 23:15:18 +0100197{
Vadim Yanitskiyc9fc77f2023-11-16 00:55:35 +0700198 ubit_t tx_bit = 1;
Harald Weltedc023cf2022-11-29 23:15:18 +0100199
Vadim Yanitskiyc9fc77f2023-11-16 00:55:35 +0700200 if (!suart->tx.running)
201 return tx_bit;
202
203 switch (suart->tx.flow_state) {
204 case SUART_FLOW_ST_IDLE:
205 if (msgb_length(msg) > 0) { /* if we have pending data */
206 suart->tx.shift_reg = msgb_pull_u8(msg);
207 suart->tx.flow_state = SUART_FLOW_ST_DATA;
208 suart->tx.bit_count = 0;
209 suart->tx.parity_bit = 0;
210 tx_bit = 0;
211 }
212 break;
213 case SUART_FLOW_ST_DATA:
214 tx_bit = suart->tx.shift_reg & 1;
215 suart->tx.parity_bit ^= tx_bit;
216 suart->tx.shift_reg >>= 1;
217 suart->tx.bit_count++;
218 if (suart->tx.bit_count >= suart->cfg.num_data_bits) {
219 /* we have transmitted all data bits */
220 if (suart->cfg.parity_mode != OSMO_SUART_PARITY_NONE)
221 suart->tx.flow_state = SUART_FLOW_ST_PARITY;
222 else
223 suart->tx.flow_state = SUART_FLOW_ST_STOP;
224 }
225 break;
226 case SUART_FLOW_ST_PARITY:
227 switch (suart->cfg.parity_mode) {
228 case OSMO_SUART_PARITY_EVEN:
229 /* number of 1-bits (in both data and parity) shall be even */
230 tx_bit = suart->tx.parity_bit;
231 break;
232 case OSMO_SUART_PARITY_ODD:
233 /* number of 1-bits (in both data and parity) shall be odd */
234 tx_bit = !suart->tx.parity_bit;
235 break;
236 case OSMO_SUART_PARITY_NONE:
237 default: /* shall not happen */
238 OSMO_ASSERT(0);
239 }
240
241 suart->tx.flow_state = SUART_FLOW_ST_STOP;
242 break;
243 case SUART_FLOW_ST_STOP:
244 suart->tx.bit_count++;
245 if (suart->tx.bit_count >= (suart->cfg.num_data_bits + suart->cfg.num_stop_bits)) {
246 /* we have transmitted all stop bits, we're done */
247 suart->tx.flow_state = SUART_FLOW_ST_IDLE;
248 }
249 break;
Harald Weltedc023cf2022-11-29 23:15:18 +0100250 }
Vadim Yanitskiyc9fc77f2023-11-16 00:55:35 +0700251
252 return tx_bit;
Harald Weltedc023cf2022-11-29 23:15:18 +0100253}
254
Vadim Yanitskiyb72625d2023-11-16 00:32:33 +0700255/*! Pull a number of unpacked bits out of the soft-UART transmitter.
256 * \param[in] suart soft-UART instance to pull the bits from.
257 * \param[out] ubits pointer to a buffer where to store pulled bits.
258 * \param[in] n_ubits number of unpacked bits to be pulled.
259 * \returns number of unpacked bits pulled; negative on error. */
Harald Weltedc023cf2022-11-29 23:15:18 +0100260int osmo_soft_uart_tx_ubits(struct osmo_soft_uart *suart, ubit_t *ubits, size_t n_ubits)
261{
Vadim Yanitskiyc9fc77f2023-11-16 00:55:35 +0700262 const struct osmo_soft_uart_cfg *cfg = &suart->cfg;
263 size_t n_frame_bits;
264 struct msgb *msg;
265
266 /* calculate UART frame size for the effective config */
267 n_frame_bits = 1 + cfg->num_data_bits + cfg->num_stop_bits;
268 if (cfg->parity_mode != OSMO_SUART_PARITY_NONE)
269 n_frame_bits += 1;
270
271 /* allocate a Tx buffer msgb */
272 msg = msgb_alloc_c(suart, n_ubits / n_frame_bits, "soft_uart_tx");
273 OSMO_ASSERT(msg != NULL);
274
275 /* call the .tx_cb() to populate the Tx buffer */
276 OSMO_ASSERT(cfg->tx_cb != NULL);
277 suart->cfg.tx_cb(cfg->priv, msg);
278
Harald Weltedc023cf2022-11-29 23:15:18 +0100279 for (size_t i = 0; i < n_ubits; i++)
Vadim Yanitskiyc9fc77f2023-11-16 00:55:35 +0700280 ubits[i] = osmo_uart_tx_bit(suart, msg);
281 msgb_free(msg);
282
283 return 0;
Harald Weltedc023cf2022-11-29 23:15:18 +0100284}
285
Vadim Yanitskiyb72625d2023-11-16 00:32:33 +0700286/*! Set the modem status lines of the given soft-UART.
287 * \param[in] suart soft-UART instance to update the modem status.
288 * \param[in] status mask of osmo_soft_uart_status.
289 * \returns 0 on success; negative on error. */
Harald Weltedc023cf2022-11-29 23:15:18 +0100290int osmo_soft_uart_set_status(struct osmo_soft_uart *suart, unsigned int status)
291{
292 /* FIXME: Tx */
293 return 0;
294}
295
296
297/*************************************************************************
298 * Management / Initialization
299 *************************************************************************/
300
Vadim Yanitskiyb72625d2023-11-16 00:32:33 +0700301/*! Allocate a soft-UART instance.
302 * \param[in] ctx parent talloc context.
303 * \param[in] name name of the soft-UART instance.
Vadim Yanitskiy82a1ae72023-11-16 15:34:50 +0700304 * \param[in] cfg initial configuration of the soft-UART instance.
Vadim Yanitskiyb72625d2023-11-16 00:32:33 +0700305 * \returns pointer to allocated soft-UART instance; NULL on error. */
Vadim Yanitskiy82a1ae72023-11-16 15:34:50 +0700306struct osmo_soft_uart *osmo_soft_uart_alloc(void *ctx, const char *name,
307 const struct osmo_soft_uart_cfg *cfg)
Harald Weltedc023cf2022-11-29 23:15:18 +0100308{
309 struct osmo_soft_uart *suart = talloc_zero(ctx, struct osmo_soft_uart);
310 if (!suart)
311 return NULL;
312 suart->name = talloc_strdup(suart, name);
Vadim Yanitskiy82a1ae72023-11-16 15:34:50 +0700313
314 OSMO_ASSERT(cfg != NULL);
315 suart->cfg = *cfg;
Harald Weltedc023cf2022-11-29 23:15:18 +0100316
317 return suart;
318}
319
Vadim Yanitskiy877cfed2023-11-12 17:21:31 +0700320/*! Release memory taken by the given soft-UART.
321 * \param[in] suart soft-UART instance to be free()d. */
322void osmo_soft_uart_free(struct osmo_soft_uart *suart)
323{
324 if (suart == NULL)
325 return;
326
327 osmo_timer_del(&suart->rx.timer);
328 msgb_free(suart->rx.msg);
329
330 talloc_free((void *)suart->name);
331 talloc_free(suart);
332}
333
Vadim Yanitskiyb72625d2023-11-16 00:32:33 +0700334/*! Change soft-UART configuration to the user-provided config.
335 * \param[in] suart soft-UART instance to be re-configured.
336 * \param[in] cfg the user-provided config to be applied.
337 * \returns 0 on success; negative on error. */
Harald Weltedc023cf2022-11-29 23:15:18 +0100338int osmo_soft_uart_configure(struct osmo_soft_uart *suart, const struct osmo_soft_uart_cfg *cfg)
339{
340 /* consistency checks on the configuration */
341 if (cfg->num_data_bits > 8 || cfg->num_data_bits == 0)
342 return -EINVAL;
343 if (cfg->num_stop_bits == 0)
344 return -EINVAL;
345 if (cfg->parity_mode < 0 || cfg->parity_mode >= _OSMO_SUART_PARITY_NUM)
346 return -EINVAL;
347 if (cfg->rx_buf_size == 0)
348 return -EINVAL;
349
350 if (suart->cfg.rx_buf_size > cfg->rx_buf_size ||
351 suart->cfg.rx_timeout_ms > cfg->rx_timeout_ms) {
352 suart_flush_rx(suart);
353 }
354
355 suart->cfg = *cfg;
356
357 osmo_timer_setup(&suart->rx.timer, suart_rx_timer_cb, suart);
Harald Weltedc023cf2022-11-29 23:15:18 +0100358
359 return 0;
360}
361
Vadim Yanitskiycdde6712023-11-16 15:17:37 +0700362/*! Enable/disable receiver of the given soft-UART.
Vadim Yanitskiyb72625d2023-11-16 00:32:33 +0700363 * \param[in] suart soft-UART instance to be re-configured.
Vadim Yanitskiycdde6712023-11-16 15:17:37 +0700364 * \param[in] enable enable/disable state of the receiver.
Vadim Yanitskiyb72625d2023-11-16 00:32:33 +0700365 * \returns 0 on success; negative on error. */
Vadim Yanitskiycdde6712023-11-16 15:17:37 +0700366int osmo_soft_uart_set_rx(struct osmo_soft_uart *suart, bool enable)
Harald Weltedc023cf2022-11-29 23:15:18 +0100367{
Vadim Yanitskiycdde6712023-11-16 15:17:37 +0700368 if (!enable && suart->rx.running) {
Harald Weltedc023cf2022-11-29 23:15:18 +0100369 suart_flush_rx(suart);
370 suart->rx.running = false;
Vadim Yanitskiy1a3b5112023-11-16 00:41:03 +0700371 suart->rx.flow_state = SUART_FLOW_ST_IDLE;
Vadim Yanitskiycdde6712023-11-16 15:17:37 +0700372 } else if (enable && !suart->rx.running) {
Harald Weltedc023cf2022-11-29 23:15:18 +0100373 if (!suart->rx.msg)
374 suart->rx.msg = msgb_alloc_c(suart, suart->cfg.rx_buf_size, "soft_uart rx");
375 suart->rx.running = true;
Vadim Yanitskiy1a3b5112023-11-16 00:41:03 +0700376 suart->rx.flow_state = SUART_FLOW_ST_IDLE;
Harald Weltedc023cf2022-11-29 23:15:18 +0100377 }
378
Vadim Yanitskiycdde6712023-11-16 15:17:37 +0700379 return 0;
380}
381
382/*! Enable/disable transmitter of the given soft-UART.
383 * \param[in] suart soft-UART instance to be re-configured.
384 * \param[in] enable enable/disable state of the transmitter.
385 * \returns 0 on success; negative on error. */
386int osmo_soft_uart_set_tx(struct osmo_soft_uart *suart, bool enable)
387{
388 if (!enable && suart->tx.running) {
Harald Weltedc023cf2022-11-29 23:15:18 +0100389 suart->tx.running = false;
Vadim Yanitskiyc9fc77f2023-11-16 00:55:35 +0700390 suart->tx.flow_state = SUART_FLOW_ST_IDLE;
Vadim Yanitskiycdde6712023-11-16 15:17:37 +0700391 } else if (enable && !suart->tx.running) {
Harald Weltedc023cf2022-11-29 23:15:18 +0100392 suart->tx.running = true;
Vadim Yanitskiyc9fc77f2023-11-16 00:55:35 +0700393 suart->tx.flow_state = SUART_FLOW_ST_IDLE;
Harald Weltedc023cf2022-11-29 23:15:18 +0100394 }
395
396 return 0;
397}