6f82cf1a33374cee753907e51521ff5a834634fb
[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         pthread_mutex_t lock;
54         int                     xon;
55
56         union {
57                 struct {
58                         uart_pty_port_t         pty;
59                         uart_pty_port_t         tap;
60                 };
61                 uart_pty_port_t port[2];
62         };
63 } uart_pty_t;
64
65 void
66 uart_pty_init(
67                 struct avr_t * avr,
68                 uart_pty_t * b);
69 void
70 uart_pty_stop(uart_pty_t * p);
71
72 void
73 uart_pty_connect(
74                 uart_pty_t * p,
75                 char uart);
76
77 #endif /* __UART_PTY_H___ */