cd144d6b45899861d1640478ab1bed393f5f98c6
[fw/altos] / src / core / ao_stdio.c
1 /*
2  * Copyright © 2009 Keith Packard <keithp@keithp.com>
3  *
4  * This program is free software; you can redistribute it and/or modify
5  * it under the terms of the GNU General Public License as published by
6  * the Free Software Foundation; version 2 of the License.
7  *
8  * This program is distributed in the hope that it will be useful, but
9  * WITHOUT ANY WARRANTY; without even the implied warranty of
10  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
11  * General Public License for more details.
12  *
13  * You should have received a copy of the GNU General Public License along
14  * with this program; if not, write to the Free Software Foundation, Inc.,
15  * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
16  */
17
18 #include "ao.h"
19
20 /*
21  * Basic I/O functions to support SDCC stdio package
22  */
23
24 #ifndef USE_SERIAL_0_STDIN
25 #define USE_SERIAL_0_STDIN      0
26 #endif
27 #ifndef USE_SERIAL_1_STDIN
28 #define USE_SERIAL_1_STDIN      0
29 #endif
30 #ifndef USE_SERIAL_2_STDIN
31 #define USE_SERIAL_2_STDIN      0
32 #endif
33 #ifndef USE_SERIAL_3_STDIN
34 #define USE_SERIAL_3_STDIN      0
35 #endif
36 #ifndef USE_SERIAL_4_STDIN
37 #define USE_SERIAL_4_STDIN      0
38 #endif
39 #ifndef USE_SERIAL_5_STDIN
40 #define USE_SERIAL_5_STDIN      0
41 #endif
42 #ifndef USE_SERIAL_6_STDIN
43 #define USE_SERIAL_6_STDIN      0
44 #endif
45 #ifndef USE_SERIAL_7_STDIN
46 #define USE_SERIAL_7_STDIN      0
47 #endif
48 #ifndef USE_SERIAL_8_STDIN
49 #define USE_SERIAL_8_STDIN      0
50 #endif
51 #ifndef USE_SERIAL_9_STDIN
52 #define USE_SERIAL_9_STDIN      0
53 #endif
54
55 #define USE_SERIAL_STDIN (USE_SERIAL_0_STDIN +  \
56                           USE_SERIAL_1_STDIN +  \
57                           USE_SERIAL_2_STDIN +  \
58                           USE_SERIAL_3_STDIN +  \
59                           USE_SERIAL_4_STDIN +  \
60                           USE_SERIAL_5_STDIN +  \
61                           USE_SERIAL_6_STDIN +  \
62                           USE_SERIAL_7_STDIN +  \
63                           USE_SERIAL_8_STDIN +  \
64                           USE_SERIAL_9_STDIN)
65
66 #define AO_NUM_STDIOS   (HAS_USB + PACKET_HAS_SLAVE + USE_SERIAL_STDIN)
67
68 __xdata struct ao_stdio ao_stdios[AO_NUM_STDIOS];
69
70 #if AO_NUM_STDIOS > 1
71 __pdata int8_t ao_cur_stdio;
72 __pdata int8_t ao_num_stdios;
73 #else
74 __pdata int8_t ao_cur_stdio;
75 #define ao_cur_stdio    0
76 #define ao_num_stdios   0
77 #endif
78
79 void
80 putchar(char c)
81 {
82 #if LOW_LEVEL_DEBUG
83         if (!ao_cur_task) {
84                 extern void ao_debug_out(char c);
85                 if (c == '\n')
86                         ao_debug_out('\r');
87                 ao_debug_out(c);
88                 return;
89         }
90 #endif
91         if (c == '\n')
92                 (*ao_stdios[ao_cur_stdio].putchar)('\r');
93         (*ao_stdios[ao_cur_stdio].putchar)(c);
94 }
95
96 void
97 flush(void)
98 {
99         if (ao_stdios[ao_cur_stdio].flush)
100                 ao_stdios[ao_cur_stdio].flush();
101 }
102
103 __xdata uint8_t ao_stdin_ready;
104
105 char
106 getchar(void) __reentrant
107 {
108         int c;
109         int8_t stdio;
110
111         ao_arch_block_interrupts();
112         stdio = ao_cur_stdio;
113         for (;;) {
114                 c = ao_stdios[stdio]._pollchar();
115                 if (c != AO_READ_AGAIN)
116                         break;
117 #if AO_NUM_STDIOS > 1
118                 if (++stdio == ao_num_stdios)
119                         stdio = 0;
120                 if (stdio == ao_cur_stdio)
121 #endif
122                         ao_sleep(&ao_stdin_ready);
123         }
124 #if AO_NUM_STDIOS > 1
125         ao_cur_stdio = stdio;
126 #endif
127         ao_arch_release_interrupts();
128         return c;
129 }
130
131 uint8_t
132 ao_echo(void)
133 {
134         return ao_stdios[ao_cur_stdio].echo;
135 }
136
137 int8_t
138 ao_add_stdio(int (*_pollchar)(void),
139              void (*putchar)(char),
140              void (*flush)(void)) __reentrant
141 {
142 #if AO_NUM_STDIOS > 1
143         if (ao_num_stdios == AO_NUM_STDIOS)
144                 ao_panic(AO_PANIC_STDIO);
145 #endif
146         ao_stdios[ao_num_stdios]._pollchar = _pollchar;
147         ao_stdios[ao_num_stdios].putchar = putchar;
148         ao_stdios[ao_num_stdios].flush = flush;
149         ao_stdios[ao_num_stdios].echo = 1;
150 #if AO_NUM_STDIOS > 1
151         return ao_num_stdios++;
152 #else
153         return 0;
154 #endif
155 }