uart_pty: Introduced the notion of 'tap' port
[simavr] / examples / parts / uart_pty.h
1 /*
2         uart_pty.h
3
4         Copyright 2012 Michel Pollet <buserror@gmail.com>
5
6         This file is part of simavr.
7
8         simavr is free software: you can redistribute it and/or modify
9         it under the terms of the GNU General Public License as published by
10         the Free Software Foundation, either version 3 of the License, or
11         (at your option) any later version.
12
13         simavr is distributed in the hope that it will be useful,
14         but WITHOUT ANY WARRANTY; without even the implied warranty of
15         MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16         GNU General Public License for more details.
17
18         You should have received a copy of the GNU General Public License
19         along with simavr.  If not, see <http://www.gnu.org/licenses/>.
20  */
21
22
23 #ifndef __UART_PTY_H___
24 #define __UART_PTY_H___
25
26 #include <pthread.h>
27 #include "sim_irq.h"
28 #include "fifo_declare.h"
29
30 enum {
31         IRQ_UART_PTY_BYTE_IN = 0,
32         IRQ_UART_PTY_BYTE_OUT,
33         IRQ_UART_PTY_COUNT
34 };
35
36 DECLARE_FIFO(uint8_t,uart_pty_fifo, 512);
37
38 typedef struct uart_pty_port_t {
39         int                     tap : 1, crlf : 1;
40         int             s;                      // socket we chat on
41         char            slavename[64];
42         uart_pty_fifo_t in;
43         uart_pty_fifo_t out;
44         uint8_t         buffer[512];
45         size_t          buffer_len, buffer_done;
46 } uart_pty_port_t, *uart_pty_port_p;
47
48 typedef struct uart_pty_t {
49         avr_irq_t *     irq;            // irq list
50         struct avr_t *avr;              // keep it around so we can pause it
51
52         pthread_t       thread;
53         int                     xon;
54
55         union {
56                 struct {
57                         uart_pty_port_t         pty;
58                         uart_pty_port_t         tap;
59                 };
60                 uart_pty_port_t port[2];
61         };
62 } uart_pty_t;
63
64 void
65 uart_pty_init(
66                 struct avr_t * avr,
67                 uart_pty_t * b);
68 void
69 uart_pty_stop(uart_pty_t * p);
70
71 void
72 uart_pty_connect(
73                 uart_pty_t * p,
74                 char uart);
75
76 #endif /* __UART_PTY_H___ */