blob: 6a782db75e4c1180198e166560941e148ae43fe9 [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 */
Eric Wildfd0bace2019-11-27 18:33:09 +010026 CUART_CTL_NO_RXTX, /* enable/disable receiver */
Harald Welted4328e22019-10-10 10:07:50 +020027 CUART_CTL_POWER, /* enable/disable ICC power */
28 CUART_CTL_CLOCK, /* enable/disable ICC clock */
Eric Wild587d4fb2019-11-27 18:59:43 +010029 CUART_CTL_SET_CLOCK_FREQ, /* set ICC clock frequency (hz)*/
Harald Welted4328e22019-10-10 10:07:50 +020030 CUART_CTL_RST, /* enable/disable ICC reset */
31 CUART_CTL_WTIME, /* set the waiting time (in etu) */
Eric Wild587d4fb2019-11-27 18:59:43 +010032 CUART_CTL_SET_FD,
Eric Wild9970ca02019-11-27 19:01:42 +010033 CUART_CTL_GET_BAUDRATE,
34 CUART_CTL_GET_CLOCK_FREQ,
Harald Weltea40c8e52019-09-27 19:22:34 +020035};
36
37struct card_uart;
38
39struct card_uart_ops {
40 int (*open)(struct card_uart *cuart, const char *device_name);
41 int (*close)(struct card_uart *cuart);
Harald Welte02dd9112019-10-01 08:55:29 +020042 int (*async_tx)(struct card_uart *cuart, const uint8_t *data, size_t len);
Harald Weltea40c8e52019-09-27 19:22:34 +020043 int (*async_rx)(struct card_uart *cuart, uint8_t *data, size_t len);
44
Harald Welte9700d392019-10-09 20:17:28 +020045 int (*ctrl)(struct card_uart *cuart, enum card_uart_ctl ctl, int arg);
Harald Weltea40c8e52019-09-27 19:22:34 +020046};
47
48/* Card UART driver */
49struct card_uart_driver {
50 /* global list of card UART drivers */
51 struct llist_head list;
52 /* human-readable name of driver */
53 const char *name;
54 /* operations implementing the driver */
55 const struct card_uart_ops *ops;
56};
57
58struct card_uart {
59 /* member in global list of UARTs */
60 struct llist_head list;
61 /* driver serving this UART */
62 const struct card_uart_driver *driver;
63 /* event-handler function */
64 void (*handle_event)(struct card_uart *cuart, enum card_uart_event evt, void *data);
65 /* opaque pointer for user */
66 void *priv;
67
68 /* is the transmitter currently busy (true) or not (false)? */
69 bool tx_busy;
70 /* is the receiver currently enabled or not? */
71 bool rx_enabled;
Harald Welte6603d952019-10-09 20:50:13 +020072 /* should the receiver automatically be nabled after TX completion? */
73 bool rx_after_tx_compl;
Harald Weltea40c8e52019-09-27 19:22:34 +020074
75 /*! after how many bytes should we notify the user? If this is '1', we will
76 * issue CUART_E_RX_SINGLE; if it is > 1, we will issue CUART_E_RX_COMPLETE */
77 uint32_t rx_threshold;
78
Harald Welte7b64fc02019-10-09 20:49:35 +020079 uint32_t wtime_etu;
80 struct osmo_timer_list wtime_tmr;
81
Harald Weltea40c8e52019-09-27 19:22:34 +020082 /* driver-specific private data */
83 union {
84 struct {
85 /* ringbuffer on receive side */
86 uint8_t rx_buf[256];
87 struct ringbuffer rx_ringbuf;
88
89 /* pointer to (user-allocated) transmit buffer and length */
90 const uint8_t *tx_buf;
91 size_t tx_buf_len;
92 /* index: offset of next to be transmitted byte in tx_buf */
93 size_t tx_index;
Harald Welte18ec3222019-09-28 21:41:59 +020094 /* number of bytes we have received echoed back during transmit */
95 uint32_t rx_count_during_tx;
Harald Weltea40c8e52019-09-27 19:22:34 +020096
97 struct osmo_fd ofd;
98 unsigned int baudrate;
99 } tty;
Harald Welte03d6ebb2019-09-28 23:19:31 +0200100 struct {
101 struct usart_async_descriptor *usa_pd;
102 uint8_t slot_nr;
Eric Wildb39d8322019-11-27 16:50:28 +0100103 /* in us, required, no delay breaks _rx_ */
104 uint32_t extrawait_after_rx;
Eric Wild9970ca02019-11-27 19:01:42 +0100105 uint32_t current_baudrate;
Harald Welte03d6ebb2019-09-28 23:19:31 +0200106 } asf4;
Harald Weltea40c8e52019-09-27 19:22:34 +0200107 } u;
108};
109
110/*! Open the Card UART */
111int card_uart_open(struct card_uart *cuart, const char *driver_name, const char *device_name);
112
113/*! Close the Card UART */
114int card_uart_close(struct card_uart *cuart);
115
116/*! Schedule (asynchronous) transmit data via UART; optionally enable Rx after completion */
Harald Welte6603d952019-10-09 20:50:13 +0200117int 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 +0200118
119/*! Schedule (asynchronous) receive data via UART (after CUART_E_RX_COMPLETE) */
120int card_uart_rx(struct card_uart *cuart, uint8_t *data, size_t len);
121
Harald Welte9700d392019-10-09 20:17:28 +0200122int card_uart_ctrl(struct card_uart *cuart, enum card_uart_ctl ctl, int arg);
Harald Weltea40c8e52019-09-27 19:22:34 +0200123
124/*! Set the Rx notification threshold in number of bytes received */
125void card_uart_set_rx_threshold(struct card_uart *cuart, size_t rx_threshold);
126
Harald Welte7b64fc02019-10-09 20:49:35 +0200127/* (re)start the software WTIME timer */
128void card_uart_wtime_restart(struct card_uart *cuart);
129
Harald Weltea40c8e52019-09-27 19:22:34 +0200130void card_uart_notification(struct card_uart *cuart, enum card_uart_event evt, void *data);
131
132int card_uart_driver_register(struct card_uart_driver *drv);