blob: 6c534817c1e99246e5dea5f94b2d530e2c21f162 [file] [log] [blame]
Harald Weltea40c8e52019-09-27 19:22:34 +02001#pragma once
2#include <stdint.h>
3#include <stdbool.h>
4#include <osmocom/core/linuxlist.h>
Harald Welte7b64fc02019-10-09 20:49:35 +02005#include <osmocom/core/timer.h>
Harald Weltea40c8e52019-09-27 19:22:34 +02006
7#include <osmocom/core/select.h>
8#include "utils_ringbuffer.h"
9
Harald Welte03d6ebb2019-09-28 23:19:31 +020010struct usart_async_descriptor;
11
Harald Weltea40c8e52019-09-27 19:22:34 +020012enum card_uart_event {
13 /* a single byte was received, it's present at the (uint8_t *) data location */
14 CUART_E_RX_SINGLE,
15 /* an entire block of data was received */
16 CUART_E_RX_COMPLETE,
17 CUART_E_RX_TIMEOUT,
18 /* an entire block of data was written, as instructed in prior card_uart_tx() call */
19 CUART_E_TX_COMPLETE,
20};
21
22extern const struct value_string card_uart_event_vals[];
23
24enum card_uart_ctl {
Harald Welted4328e22019-10-10 10:07:50 +020025 CUART_CTL_RX, /* enable/disable receiver */
26 CUART_CTL_POWER, /* enable/disable ICC power */
27 CUART_CTL_CLOCK, /* enable/disable ICC clock */
Eric Wildb39d8322019-11-27 16:50:28 +010028 CUART_CTL_CLOCK_FREQ, /* set ICC clock frequency (hz)*/
Harald Welted4328e22019-10-10 10:07:50 +020029 CUART_CTL_RST, /* enable/disable ICC reset */
30 CUART_CTL_WTIME, /* set the waiting time (in etu) */
Eric Wildb39d8322019-11-27 16:50:28 +010031 CUART_CTL_FD,
Harald Weltea40c8e52019-09-27 19:22:34 +020032};
33
34struct card_uart;
35
36struct card_uart_ops {
37 int (*open)(struct card_uart *cuart, const char *device_name);
38 int (*close)(struct card_uart *cuart);
Harald Welte02dd9112019-10-01 08:55:29 +020039 int (*async_tx)(struct card_uart *cuart, const uint8_t *data, size_t len);
Harald Weltea40c8e52019-09-27 19:22:34 +020040 int (*async_rx)(struct card_uart *cuart, uint8_t *data, size_t len);
41
Harald Welte9700d392019-10-09 20:17:28 +020042 int (*ctrl)(struct card_uart *cuart, enum card_uart_ctl ctl, int arg);
Harald Weltea40c8e52019-09-27 19:22:34 +020043};
44
45/* Card UART driver */
46struct card_uart_driver {
47 /* global list of card UART drivers */
48 struct llist_head list;
49 /* human-readable name of driver */
50 const char *name;
51 /* operations implementing the driver */
52 const struct card_uart_ops *ops;
53};
54
55struct card_uart {
56 /* member in global list of UARTs */
57 struct llist_head list;
58 /* driver serving this UART */
59 const struct card_uart_driver *driver;
60 /* event-handler function */
61 void (*handle_event)(struct card_uart *cuart, enum card_uart_event evt, void *data);
62 /* opaque pointer for user */
63 void *priv;
64
65 /* is the transmitter currently busy (true) or not (false)? */
66 bool tx_busy;
67 /* is the receiver currently enabled or not? */
68 bool rx_enabled;
Harald Welte6603d952019-10-09 20:50:13 +020069 /* should the receiver automatically be nabled after TX completion? */
70 bool rx_after_tx_compl;
Harald Weltea40c8e52019-09-27 19:22:34 +020071
72 /*! after how many bytes should we notify the user? If this is '1', we will
73 * issue CUART_E_RX_SINGLE; if it is > 1, we will issue CUART_E_RX_COMPLETE */
74 uint32_t rx_threshold;
75
Harald Welte7b64fc02019-10-09 20:49:35 +020076 uint32_t wtime_etu;
77 struct osmo_timer_list wtime_tmr;
78
Harald Weltea40c8e52019-09-27 19:22:34 +020079 /* driver-specific private data */
80 union {
81 struct {
82 /* ringbuffer on receive side */
83 uint8_t rx_buf[256];
84 struct ringbuffer rx_ringbuf;
85
86 /* pointer to (user-allocated) transmit buffer and length */
87 const uint8_t *tx_buf;
88 size_t tx_buf_len;
89 /* index: offset of next to be transmitted byte in tx_buf */
90 size_t tx_index;
Harald Welte18ec3222019-09-28 21:41:59 +020091 /* number of bytes we have received echoed back during transmit */
92 uint32_t rx_count_during_tx;
Harald Weltea40c8e52019-09-27 19:22:34 +020093
94 struct osmo_fd ofd;
95 unsigned int baudrate;
96 } tty;
Harald Welte03d6ebb2019-09-28 23:19:31 +020097 struct {
98 struct usart_async_descriptor *usa_pd;
99 uint8_t slot_nr;
Eric Wildb39d8322019-11-27 16:50:28 +0100100 /* in us, required, no delay breaks _rx_ */
101 uint32_t extrawait_after_rx;
Harald Welte03d6ebb2019-09-28 23:19:31 +0200102 } asf4;
Harald Weltea40c8e52019-09-27 19:22:34 +0200103 } u;
104};
105
106/*! Open the Card UART */
107int card_uart_open(struct card_uart *cuart, const char *driver_name, const char *device_name);
108
109/*! Close the Card UART */
110int card_uart_close(struct card_uart *cuart);
111
112/*! Schedule (asynchronous) transmit data via UART; optionally enable Rx after completion */
Harald Welte6603d952019-10-09 20:50:13 +0200113int card_uart_tx(struct card_uart *cuart, const uint8_t *data, size_t len, bool rx_after_complete);
Harald Weltea40c8e52019-09-27 19:22:34 +0200114
115/*! Schedule (asynchronous) receive data via UART (after CUART_E_RX_COMPLETE) */
116int card_uart_rx(struct card_uart *cuart, uint8_t *data, size_t len);
117
Harald Welte9700d392019-10-09 20:17:28 +0200118int card_uart_ctrl(struct card_uart *cuart, enum card_uart_ctl ctl, int arg);
Harald Weltea40c8e52019-09-27 19:22:34 +0200119
120/*! Set the Rx notification threshold in number of bytes received */
121void card_uart_set_rx_threshold(struct card_uart *cuart, size_t rx_threshold);
122
Harald Welte7b64fc02019-10-09 20:49:35 +0200123/* (re)start the software WTIME timer */
124void card_uart_wtime_restart(struct card_uart *cuart);
125
Harald Weltea40c8e52019-09-27 19:22:34 +0200126void card_uart_notification(struct card_uart *cuart, enum card_uart_event evt, void *data);
127
128int card_uart_driver_register(struct card_uart_driver *drv);