* ser-go32.c: Clean up lots of compilation nits.
[deliverable/binutils-gdb.git] / gdb / ser-go32.c
CommitLineData
5d2b030a
SG
1/* Remote serial interface for local (hardwired) serial ports for GO32.
2 Copyright 1992, 1993 Free Software Foundation, Inc.
ae0ea72e
SC
3
4This file is part of GDB.
5
6This program is free software; you can redistribute it and/or modify
7it under the terms of the GNU General Public License as published by
8the Free Software Foundation; either version 2 of the License, or
9(at your option) any later version.
10
11This program is distributed in the hope that it will be useful,
12but WITHOUT ANY WARRANTY; without even the implied warranty of
13MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14GNU General Public License for more details.
15
16You should have received a copy of the GNU General Public License
17along with this program; if not, write to the Free Software
18Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */
19
ae0ea72e
SC
20#include "defs.h"
21#include "serial.h"
5140562f 22#include <sys/dos.h>
ae0ea72e 23
38dc5e12
SG
24/* This is unused for now. We just return a placeholder. */
25struct go32_ttystate
26{
27 int bogus;
28};
29
452b4b00
SG
30typedef struct {
31 short jmp_op;
32 short signature;
33 short version;
34 short buffer_start;
35 short buffer_end;
36 short getp;
37 short putp;
38 short iov;
39} ASYNC_STRUCT;
40
38dc5e12
SG
41static int go32_open PARAMS ((serial_t scb, const char *name));
42static void go32_raw PARAMS ((serial_t scb));
43static int wait_for PARAMS ((serial_t scb, int timeout));
44static int go32_readchar PARAMS ((serial_t scb, int timeout));
45static int rate_to_code PARAMS ((int rate));
46static int go32_setbaudrate PARAMS ((serial_t scb, int rate));
47static int go32_write PARAMS ((serial_t scb, const char *str, int len));
48static void go32_restore PARAMS ((serial_t scb));
49static void go32_close PARAMS ((serial_t scb));
452b4b00 50static serial_ttystate go32_get_tty_state PARAMS ((serial_t scb));
38dc5e12
SG
51static int go32_set_tty_state PARAMS ((serial_t scb, serial_ttystate state));
52static int strncasecmp PARAMS ((char *str1, char *str2, int len));
53static char *aptr PARAMS ((short p));
54static ASYNC_STRUCT *getivec PARAMS ((int which));
55static int dos_async_init PARAMS ((int port));
56static void dos_async_tx PARAMS ((const char c));
57static int dos_async_ready PARAMS (());
58static int dos_async_rx PARAMS (());
59static int dosasync_read PARAMS ((int fd, char *buf, int len, int timeout));
452b4b00 60static int dosasync_write PARAMS ((int fd, const char *buf, int len));
38dc5e12 61
ae0ea72e
SC
62#define SIGNATURE 0x4154
63#define VERSION 1
64#define OFFSET 0x104
65
ae0ea72e 66#define peek(a,b) (*(unsigned short *)(0xe0000000 + (a)*16 + (b)))
ae0ea72e 67
5d2b030a 68static ASYNC_STRUCT *async;
ae0ea72e
SC
69static int iov;
70#define com_rb iov
71#define com_tb iov
72#define com_ier iov+1
73#define com_ifr iov+2
74#define com_bfr iov+3
75#define com_mcr iov+4
76#define com_lsr iov+5
77#define com_msr iov+6
78
b83bf6b3
SG
79static int
80strncasecmp(str1, str2, len)
81 char *str1, *str2;
82 register int len;
83{
84 unsigned char c1, c2;
85
86 for (; len != 0; --len)
87 {
88 c1 = *str1++;
89 c2 = *str2++;
90
91 if (toupper(c1) != toupper(c2))
92 return toupper(c1) - toupper(c2);
93
94 if (c1 == '\0')
95 return 0;
96 }
97 return 0;
98}
b52373a2 99
5d2b030a
SG
100static char *
101aptr(p)
102 short p;
ae0ea72e 103{
ae0ea72e 104 return (char *)((unsigned)async - OFFSET + p);
ae0ea72e
SC
105}
106
5d2b030a 107static ASYNC_STRUCT *
b52373a2 108getivec(int which)
ae0ea72e 109{
5d2b030a 110 ASYNC_STRUCT *a;
ae0ea72e
SC
111
112 if (peek(0, which*4) != OFFSET)
113 return 0;
b83bf6b3 114
ae0ea72e
SC
115 a = (ASYNC_STRUCT *)(0xe0000000 + peek(0, which*4+2)*16 + peek(0, which*4));
116
ae0ea72e
SC
117 if (a->signature != SIGNATURE)
118 return 0;
b83bf6b3 119
ae0ea72e
SC
120 if (a->version != VERSION)
121 return 0;
b83bf6b3 122
ae0ea72e
SC
123 return a;
124}
125
5d2b030a 126static int
b83bf6b3
SG
127dos_async_init(port)
128 int port;
ae0ea72e
SC
129{
130 int i;
b83bf6b3
SG
131
132 switch (port)
07861607 133 {
b83bf6b3
SG
134 case 1:
135 async = getivec (12);
136 break;
137 case 2:
138 async = getivec (11);
139 break;
140 default:
141 return 0;
07861607
SG
142 }
143
b83bf6b3 144 if (!async)
07861607
SG
145 {
146 error("GDB can not connect to asynctsr program, check that it is installed\n\
ae0ea72e
SC
147and that serial I/O is not being redirected (perhaps by NFS)\n\n\
148example configuration:\n\
149C> mode com2:9600,n,8,1,p\n\
150C> asynctsr 2\n\
151C> gdb \n");
152
07861607
SG
153 }
154
ae0ea72e
SC
155 iov = async->iov;
156 outportb(com_ier, 0x0f);
157 outportb(com_bfr, 0x03);
158 outportb(com_mcr, 0x0b);
159 async->getp = async->putp = async->buffer_start;
160
b83bf6b3 161 return 1;
ae0ea72e
SC
162}
163
5d2b030a
SG
164static void
165dos_async_tx(c)
166 const char c;
ae0ea72e 167{
ae0ea72e 168 while (~inportb(com_lsr) & 0x20);
5d2b030a 169
ae0ea72e 170 outportb(com_tb, c);
ae0ea72e
SC
171}
172
5d2b030a 173static int
b52373a2 174dos_async_ready()
ae0ea72e
SC
175{
176 return (async->getp != async->putp);
177}
178
5d2b030a 179static int
b52373a2 180dos_async_rx()
ae0ea72e
SC
181{
182 char rv;
5d2b030a 183
ae0ea72e 184 while (!dos_async_ready())
5d2b030a
SG
185 if (kbhit())
186 {
187 printf("abort!\n");
188 return 0;
189 }
190
ae0ea72e 191 rv = *aptr(async->getp++);
ae0ea72e 192 if (async->getp >= async->buffer_end)
5d2b030a 193 async->getp = async->buffer_start;
ae0ea72e 194
5d2b030a 195 return rv;
ae0ea72e
SC
196}
197
5d2b030a
SG
198static int
199dosasync_read (fd, buf, len, timeout)
200 int fd;
201 char *buf;
202 int len;
203 int timeout;
ae0ea72e
SC
204{
205 long now, then;
5d2b030a
SG
206 int l = len;
207
ae0ea72e 208 time (&now);
5d2b030a
SG
209 then = now + timeout;
210
ae0ea72e 211 while (l--)
ae0ea72e 212 {
5d2b030a
SG
213 if (timeout)
214 {
215 while (!dos_async_ready())
216 {
217 time (&now);
218 if (now >= then)
219 return len - l - 1;
220 }
221 }
222 *buf++ = dos_async_rx();
ae0ea72e 223 }
ae0ea72e 224
5d2b030a 225 return len;
ae0ea72e
SC
226}
227
5d2b030a
SG
228static int
229dosasync_write(fd, buf, len)
230 int fd;
231 const char *buf;
232 int len;
233{
234 int l = len;
ae0ea72e 235
5d2b030a
SG
236 while (l--)
237 dos_async_tx (*buf++);
ae0ea72e 238
5d2b030a 239 return len;
ae0ea72e
SC
240}
241
5d2b030a
SG
242static int
243go32_open (scb, name)
244 serial_t scb;
245 const char *name;
b52373a2 246{
b83bf6b3
SG
247 int port;
248
249 if (strncasecmp (name, "com", 3) != 0)
250 {
251 errno = ENOENT;
4febd102 252 return -1;
b83bf6b3
SG
253 }
254
255 port = name[3] - '0';
256
257 if ((port != 1) && (port != 2))
258 {
259 errno = ENOENT;
4febd102 260 return -11;
b83bf6b3
SG
261 }
262
263 scb->fd = dos_async_init(port);
07861607 264 if (!scb->fd)
4febd102 265 return -1;
ae0ea72e 266
5d2b030a 267 return 0;
ae0ea72e
SC
268}
269
5d2b030a
SG
270static void
271go32_raw (scb)
272 serial_t scb;
ae0ea72e 273{
5d2b030a 274 /* Always in raw mode */
ae0ea72e
SC
275}
276
5d2b030a
SG
277static int
278go32_readchar (scb, timeout)
279 serial_t scb;
280 int timeout;
ae0ea72e
SC
281{
282 char buf;
5d2b030a
SG
283
284 if (dosasync_read(scb->fd, &buf, 1, timeout))
5a6242dd 285 return buf;
ae0ea72e 286 else
4febd102 287 return SERIAL_TIMEOUT;
ae0ea72e
SC
288}
289
38dc5e12
SG
290/* go32_{get set}_tty_state() are both dummys to fill out the function
291 vector. Someday, they may do something real... */
292
293static serial_ttystate
294go32_get_tty_state(scb)
295 serial_t scb;
296{
297 struct go32_ttystate *state;
298
299 state = (struct go32_ttystate *)xmalloc(sizeof *state);
300
301 return (serial_ttystate)state;
302}
303
304static int
305go32_set_tty_state(scb, ttystate)
306 serial_t scb;
307 serial_ttystate ttystate;
308{
309 struct go32_ttystate *state;
310
311 return 0;
312}
313
5d2b030a
SG
314static int
315go32_setbaudrate (scb, rate)
316 serial_t scb;
317 int rate;
ae0ea72e
SC
318{
319 return 0;
320}
321
5d2b030a
SG
322static int
323go32_write (scb, str, len)
324 serial_t scb;
325 const char *str;
326 int len;
327{
328 dosasync_write(scb->fd, str, len);
4febd102
SG
329
330 return 0;
5d2b030a
SG
331}
332
333static void
452b4b00
SG
334go32_close (scb)
335 serial_t scb;
ae0ea72e 336{
ae0ea72e
SC
337}
338
5d2b030a
SG
339static struct serial_ops go32_ops =
340{
341 "hardwire",
342 0,
343 go32_open,
344 go32_close,
345 go32_readchar,
346 go32_write,
347 go32_raw,
38dc5e12
SG
348 go32_get_tty_state,
349 go32_set_tty_state,
5d2b030a
SG
350 go32_setbaudrate
351};
352
353_initialize_ser_go32 ()
ae0ea72e 354{
5d2b030a 355 serial_add_interface (&go32_ops);
ae0ea72e 356}
This page took 0.093831 seconds and 4 git commands to generate.