* symfile.c (compare_psymbols, compare_symbols): Declare using
[deliverable/binutils-gdb.git] / gdb / ser-go32.c
CommitLineData
d9fcf2fb 1/* Remote serial interface for local (hardwired) serial ports for GO32.
4d277981 2 Copyright 1992, 1993, 2000, 2001 Free Software Foundation, Inc.
c906108c
SS
3
4 Contributed by Nigel Stephens, Algorithmics Ltd. (nigel@algor.co.uk).
5
4d277981 6 This version uses DPMI interrupts to handle buffered i/o
c906108c
SS
7 without the separate "asynctsr" program.
8
4d277981 9 This file is part of GDB.
c906108c
SS
10
11 This program is free software; you can redistribute it and/or modify
12 it under the terms of the GNU General Public License as published by
13 the Free Software Foundation; either version 2 of the License, or
14 (at your option) any later version.
15
16 This program is distributed in the hope that it will be useful,
17 but WITHOUT ANY WARRANTY; without even the implied warranty of
18 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 GNU General Public License for more details.
20
21 You should have received a copy of the GNU General Public License
22 along with this program; if not, write to the Free Software
c5aa993b
JM
23 Foundation, Inc., 59 Temple Place - Suite 330,
24 Boston, MA 02111-1307, USA. */
c906108c
SS
25
26#include "defs.h"
27#include "gdbcmd.h"
28#include "serial.h"
4d277981 29#include "gdb_string.h"
c906108c
SS
30
31
32/*
33 * NS16550 UART registers
34 */
35
36#define COM1ADDR 0x3f8
37#define COM2ADDR 0x2f8
38#define COM3ADDR 0x3e8
39#define COM4ADDR 0x3e0
40
41#define com_data 0 /* data register (R/W) */
42#define com_dlbl 0 /* divisor latch low (W) */
43#define com_ier 1 /* interrupt enable (W) */
44#define com_dlbh 1 /* divisor latch high (W) */
45#define com_iir 2 /* interrupt identification (R) */
46#define com_fifo 2 /* FIFO control (W) */
47#define com_lctl 3 /* line control register (R/W) */
48#define com_cfcr 3 /* line control register (R/W) */
49#define com_mcr 4 /* modem control register (R/W) */
50#define com_lsr 5 /* line status register (R/W) */
51#define com_msr 6 /* modem status register (R/W) */
52
53/*
54 * Constants for computing 16 bit baud rate divisor (lower byte
55 * in com_dlbl, upper in com_dlbh) from 1.8432MHz crystal. Divisor is
56 * 1.8432 MHz / (16 * X) for X bps. If the baud rate can't be set
57 * to within +- (desired_rate*SPEED_TOLERANCE/1000) bps, we fail.
58 */
59#define COMTICK (1843200/16)
60#define SPEED_TOLERANCE 30 /* thousandths; real == desired +- 3.0% */
61
62/* interrupt enable register */
63#define IER_ERXRDY 0x1 /* int on rx ready */
64#define IER_ETXRDY 0x2 /* int on tx ready */
65#define IER_ERLS 0x4 /* int on line status change */
66#define IER_EMSC 0x8 /* int on modem status change */
67
68/* interrupt identification register */
69#define IIR_FIFO_MASK 0xc0 /* set if FIFOs are enabled */
70#define IIR_IMASK 0xf /* interrupt cause mask */
71#define IIR_NOPEND 0x1 /* nothing pending */
72#define IIR_RLS 0x6 /* receive line status */
73#define IIR_RXRDY 0x4 /* receive ready */
74#define IIR_RXTOUT 0xc /* receive timeout */
75#define IIR_TXRDY 0x2 /* transmit ready */
76#define IIR_MLSC 0x0 /* modem status */
77
78
79/* fifo control register */
80#define FIFO_ENABLE 0x01 /* enable fifo */
81#define FIFO_RCV_RST 0x02 /* reset receive fifo */
82#define FIFO_XMT_RST 0x04 /* reset transmit fifo */
83#define FIFO_DMA_MODE 0x08 /* enable dma mode */
84#define FIFO_TRIGGER_1 0x00 /* trigger at 1 char */
85#define FIFO_TRIGGER_4 0x40 /* trigger at 4 chars */
86#define FIFO_TRIGGER_8 0x80 /* trigger at 8 chars */
87#define FIFO_TRIGGER_14 0xc0 /* trigger at 14 chars */
88
89/* character format control register */
90#define CFCR_DLAB 0x80 /* divisor latch */
91#define CFCR_SBREAK 0x40 /* send break */
92#define CFCR_PZERO 0x30 /* zero parity */
93#define CFCR_PONE 0x20 /* one parity */
94#define CFCR_PEVEN 0x10 /* even parity */
95#define CFCR_PODD 0x00 /* odd parity */
96#define CFCR_PENAB 0x08 /* parity enable */
97#define CFCR_STOPB 0x04 /* 2 stop bits */
98#define CFCR_8BITS 0x03 /* 8 data bits */
99#define CFCR_7BITS 0x02 /* 7 data bits */
100#define CFCR_6BITS 0x01 /* 6 data bits */
101#define CFCR_5BITS 0x00 /* 5 data bits */
102
103/* modem control register */
104#define MCR_LOOPBACK 0x10 /* loopback */
105#define MCR_IENABLE 0x08 /* output 2 = int enable */
106#define MCR_DRS 0x04 /* output 1 = xxx */
107#define MCR_RTS 0x02 /* enable RTS */
108#define MCR_DTR 0x01 /* enable DTR */
109
110/* line status register */
111#define LSR_RCV_FIFO 0x80 /* error in receive fifo */
112#define LSR_TSRE 0x40 /* transmitter empty */
113#define LSR_TXRDY 0x20 /* transmitter ready */
114#define LSR_BI 0x10 /* break detected */
115#define LSR_FE 0x08 /* framing error */
116#define LSR_PE 0x04 /* parity error */
117#define LSR_OE 0x02 /* overrun error */
118#define LSR_RXRDY 0x01 /* receiver ready */
119#define LSR_RCV_MASK 0x1f
120
121/* modem status register */
122#define MSR_DCD 0x80
123#define MSR_RI 0x40
124#define MSR_DSR 0x20
125#define MSR_CTS 0x10
126#define MSR_DDCD 0x08
127#define MSR_TERI 0x04
128#define MSR_DDSR 0x02
129#define MSR_DCTS 0x01
130
4d277981 131#include <time.h>
b83266a0
SS
132#include <dos.h>
133#include <go32.h>
134#include <dpmi.h>
135typedef unsigned long u_long;
c906108c 136
c906108c
SS
137/* 16550 rx fifo trigger point */
138#define FIFO_TRIGGER FIFO_TRIGGER_4
139
140/* input buffer size */
141#define CBSIZE 4096
142
c906108c
SS
143#define RAWHZ 18
144
145#ifdef DOS_STATS
146#define CNT_RX 16
147#define CNT_TX 17
148#define CNT_STRAY 18
149#define CNT_ORUN 19
150#define NCNT 20
151
c5aa993b
JM
152static int intrcnt;
153static int cnts[NCNT];
154static char *cntnames[NCNT] =
155{
c906108c 156 /* h/w interrupt counts. */
c5aa993b
JM
157 "mlsc", "nopend", "txrdy", "?3",
158 "rxrdy", "?5", "rls", "?7",
159 "?8", "?9", "?a", "?b",
160 "rxtout", "?d", "?e", "?f",
c906108c 161 /* s/w counts. */
c5aa993b 162 "rxcnt", "txcnt", "stray", "swoflo"
c906108c
SS
163};
164
165#define COUNT(x) cnts[x]++
166#else
c5aa993b 167#define COUNT(x)
c906108c
SS
168#endif
169
170/* Main interrupt controller port addresses. */
171#define ICU_BASE 0x20
172#define ICU_OCW2 (ICU_BASE + 0)
173#define ICU_MASK (ICU_BASE + 1)
174
175/* Original interrupt controller mask register. */
c5aa993b 176unsigned char icu_oldmask;
c906108c
SS
177
178/* Maximum of 8 interrupts (we don't handle the slave icu yet). */
179#define NINTR 8
180
181static struct intrupt
c5aa993b
JM
182 {
183 char inuse;
184 struct dos_ttystate *port;
185 _go32_dpmi_seginfo old_rmhandler;
186 _go32_dpmi_seginfo old_pmhandler;
187 _go32_dpmi_seginfo new_rmhandler;
188 _go32_dpmi_seginfo new_pmhandler;
189 _go32_dpmi_registers regs;
190 }
191intrupts[NINTR];
c906108c
SS
192
193
194static struct dos_ttystate
c5aa993b
JM
195 {
196 int base;
197 int irq;
198 int refcnt;
199 struct intrupt *intrupt;
200 int fifo;
201 int baudrate;
202 unsigned char cbuf[CBSIZE];
203 unsigned int first;
204 unsigned int count;
205 int txbusy;
206 unsigned char old_mcr;
207 int ferr;
208 int perr;
209 int oflo;
210 int msr;
211 }
212ports[4] =
c906108c 213{
c5aa993b 214 {
feba2e88 215 COM1ADDR, 4, 0, NULL, 0, 0, "", 0, 0, 0, 0, 0, 0, 0, 0
c5aa993b
JM
216 }
217 ,
218 {
feba2e88 219 COM2ADDR, 3, 0, NULL, 0, 0, "", 0, 0, 0, 0, 0, 0, 0, 0
c5aa993b
JM
220 }
221 ,
222 {
feba2e88 223 COM3ADDR, 4, 0, NULL, 0, 0, "", 0, 0, 0, 0, 0, 0, 0, 0
c5aa993b
JM
224 }
225 ,
226 {
feba2e88 227 COM4ADDR, 3, 0, NULL, 0, 0, "", 0, 0, 0, 0, 0, 0, 0, 0
c5aa993b 228 }
c906108c
SS
229};
230
b1eeef9a
EZ
231static int dos_open (serial_t scb, const char *name);
232static void dos_raw (serial_t scb);
233static int dos_readchar (serial_t scb, int timeout);
234static int dos_setbaudrate (serial_t scb, int rate);
235static int dos_write (serial_t scb, const char *str, int len);
236static void dos_close (serial_t scb);
237static serial_ttystate dos_get_tty_state (serial_t scb);
238static int dos_set_tty_state (serial_t scb, serial_ttystate state);
239static int dos_baudconv (int rate);
c906108c
SS
240
241#define inb(p,a) inportb((p)->base + (a))
242#define outb(p,a,v) outportb((p)->base + (a), (v))
243#define disable() asm volatile ("cli");
244#define enable() asm volatile ("sti");
245
246
247static int
fba45db2 248dos_getc (volatile struct dos_ttystate *port)
c906108c 249{
c5aa993b 250 int c;
c906108c 251
c5aa993b
JM
252 if (port->count == 0)
253 return -1;
c906108c 254
c5aa993b
JM
255 c = port->cbuf[port->first];
256 disable ();
257 port->first = (port->first + 1) & (CBSIZE - 1);
258 port->count--;
259 enable ();
260 return c;
c906108c 261}
c906108c 262
c5aa993b
JM
263
264static int
fba45db2 265dos_putc (int c, struct dos_ttystate *port)
c906108c 266{
c5aa993b
JM
267 if (port->count >= CBSIZE - 1)
268 return -1;
269 port->cbuf[(port->first + port->count) & (CBSIZE - 1)] = c;
270 port->count++;
271 return 0;
c906108c 272}
c906108c
SS
273\f
274
c5aa993b 275
c906108c 276static void
fba45db2 277dos_comisr (int irq)
c906108c
SS
278{
279 struct dos_ttystate *port;
280 unsigned char iir, lsr, c;
281
282 disable (); /* Paranoia */
283 outportb (ICU_OCW2, 0x20); /* End-Of-Interrupt */
284#ifdef DOS_STATS
285 ++intrcnt;
286#endif
287
288 port = intrupts[irq].port;
c5aa993b 289 if (!port)
c906108c
SS
290 {
291 COUNT (CNT_STRAY);
c5aa993b 292 return; /* not open */
c906108c
SS
293 }
294
295 while (1)
296 {
297 iir = inb (port, com_iir) & IIR_IMASK;
c5aa993b 298 switch (iir)
c906108c 299 {
c5aa993b 300
c906108c
SS
301 case IIR_RLS:
302 lsr = inb (port, com_lsr);
303 goto rx;
c5aa993b 304
c906108c
SS
305 case IIR_RXTOUT:
306 case IIR_RXRDY:
307 lsr = 0;
c5aa993b
JM
308
309 rx:
310 do
c906108c
SS
311 {
312 c = inb (port, com_data);
313 if (lsr & (LSR_BI | LSR_FE | LSR_PE | LSR_OE))
314 {
315 if (lsr & (LSR_BI | LSR_FE))
316 port->ferr++;
317 else if (lsr & LSR_PE)
318 port->perr++;
319 if (lsr & LSR_OE)
320 port->oflo++;
321 }
322
323 if (dos_putc (c, port) < 0)
324 {
325 COUNT (CNT_ORUN);
326 }
327 else
328 {
329 COUNT (CNT_RX);
330 }
331 }
332 while ((lsr = inb (port, com_lsr)) & LSR_RXRDY);
333 break;
c5aa993b 334
c906108c
SS
335 case IIR_MLSC:
336 /* could be used to flowcontrol Tx */
337 port->msr = inb (port, com_msr);
338 break;
c5aa993b 339
c906108c
SS
340 case IIR_TXRDY:
341 port->txbusy = 0;
342 break;
343
344 case IIR_NOPEND:
345 /* no more pending interrupts, all done */
346 return;
347
348 default:
349 /* unexpected interrupt, ignore */
350 break;
351 }
352 COUNT (iir);
c5aa993b 353 }
c906108c
SS
354}
355
c906108c 356#define ISRNAME(x) dos_comisr##x
4d277981 357#define ISR(x) static void ISRNAME(x)(void) {dos_comisr(x);}
c906108c 358
c5aa993b
JM
359ISR (0) ISR (1) ISR (2) ISR (3)
360ISR (4) ISR (5) ISR (6) ISR (7)
c906108c 361
4d277981 362typedef void (*isr_t) (void);
c906108c 363
4d277981
EZ
364static isr_t isrs[NINTR] =
365 {
c5aa993b
JM
366 ISRNAME (0), ISRNAME (1), ISRNAME (2), ISRNAME (3),
367 ISRNAME (4), ISRNAME (5), ISRNAME (6), ISRNAME (7)
4d277981 368 };
c906108c
SS
369\f
370
c5aa993b 371
4d277981
EZ
372static struct intrupt *
373dos_hookirq (unsigned int irq)
c906108c
SS
374{
375 struct intrupt *intr;
376 unsigned int vec;
377 isr_t isr;
378
379 if (irq >= NINTR)
380 return 0;
381
382 intr = &intrupts[irq];
383 if (intr->inuse)
384 return 0;
c5aa993b 385
c906108c
SS
386 vec = 0x08 + irq;
387 isr = isrs[irq];
388
389 /* setup real mode handler */
390 _go32_dpmi_get_real_mode_interrupt_vector (vec, &intr->old_rmhandler);
391
c5aa993b
JM
392 intr->new_rmhandler.pm_selector = _go32_my_cs ();
393 intr->new_rmhandler.pm_offset = (u_long) isr;
c906108c
SS
394 if (_go32_dpmi_allocate_real_mode_callback_iret (&intr->new_rmhandler,
395 &intr->regs))
396 {
397 return 0;
398 }
399
400 if (_go32_dpmi_set_real_mode_interrupt_vector (vec, &intr->new_rmhandler))
401 {
402 return 0;
403 }
c5aa993b 404
c906108c 405 /* setup protected mode handler */
c5aa993b 406 _go32_dpmi_get_protected_mode_interrupt_vector (vec, &intr->old_pmhandler);
c906108c 407
c5aa993b
JM
408 intr->new_pmhandler.pm_selector = _go32_my_cs ();
409 intr->new_pmhandler.pm_offset = (u_long) isr;
c906108c
SS
410 _go32_dpmi_allocate_iret_wrapper (&intr->new_pmhandler);
411
4d277981
EZ
412 if (_go32_dpmi_set_protected_mode_interrupt_vector (vec,
413 &intr->new_pmhandler))
c906108c
SS
414 {
415 return 0;
416 }
417
418 /* setup interrupt controller mask */
419 disable ();
420 outportb (ICU_MASK, inportb (ICU_MASK) & ~(1 << irq));
421 enable ();
422
423 intr->inuse = 1;
424 return intr;
425}
426
427
428static void
fba45db2 429dos_unhookirq (struct intrupt *intr)
c906108c
SS
430{
431 unsigned int irq, vec;
432 unsigned char mask;
433
434 irq = intr - intrupts;
435 vec = 0x08 + irq;
436
437 /* restore old interrupt mask bit */
438 mask = 1 << irq;
439 disable ();
440 outportb (ICU_MASK, inportb (ICU_MASK) | (mask & icu_oldmask));
441 enable ();
442
443 /* remove real mode handler */
444 _go32_dpmi_set_real_mode_interrupt_vector (vec, &intr->old_rmhandler);
445 _go32_dpmi_free_real_mode_callback (&intr->new_rmhandler);
c5aa993b 446
c906108c
SS
447 /* remove protected mode handler */
448 _go32_dpmi_set_protected_mode_interrupt_vector (vec, &intr->old_pmhandler);
449 _go32_dpmi_free_iret_wrapper (&intr->new_pmhandler);
450 intr->inuse = 0;
451}
c906108c
SS
452\f
453
c5aa993b 454
c906108c 455static int
fba45db2 456dos_open (serial_t scb, const char *name)
c906108c
SS
457{
458 struct dos_ttystate *port;
459 int fd, i;
460
461 if (strncasecmp (name, "/dev/", 5) == 0)
462 name += 5;
463 else if (strncasecmp (name, "\\dev\\", 5) == 0)
464 name += 5;
465
466 if (strlen (name) != 4 || strncasecmp (name, "com", 3) != 0)
467 {
468 errno = ENOENT;
469 return -1;
470 }
471
472 if (name[3] < '1' || name[3] > '4')
473 {
474 errno = ENOENT;
475 return -1;
476 }
477
dfed996b
EZ
478 /* FIXME: this is a Bad Idea (tm)! One should *never* invent file
479 handles, since they might be already used by other files/devices.
480 The Right Way to do this is to create a real handle by dup()'ing
481 some existing one. */
c906108c
SS
482 fd = name[3] - '1';
483 port = &ports[fd];
484 if (port->refcnt++ > 0)
485 {
486 /* Device already opened another user. Just point at it. */
487 scb->fd = fd;
488 return 0;
489 }
490
491 /* force access to ID reg */
c5aa993b
JM
492 outb (port, com_cfcr, 0);
493 outb (port, com_iir, 0);
494 for (i = 0; i < 17; i++)
495 {
496 if ((inb (port, com_iir) & 0x38) == 0)
497 goto ok;
498 (void) inb (port, com_data); /* clear recv */
499 }
c906108c
SS
500 errno = ENODEV;
501 return -1;
502
503ok:
504 /* disable all interrupts in chip */
c5aa993b 505 outb (port, com_ier, 0);
c906108c
SS
506
507 /* tentatively enable 16550 fifo, and see if it responds */
4d277981
EZ
508 outb (port, com_fifo,
509 FIFO_ENABLE | FIFO_RCV_RST | FIFO_XMT_RST | FIFO_TRIGGER);
c5aa993b
JM
510 sleep (1);
511 port->fifo = ((inb (port, com_iir) & IIR_FIFO_MASK) == IIR_FIFO_MASK);
c906108c
SS
512
513 /* clear pending status reports. */
c5aa993b
JM
514 (void) inb (port, com_lsr);
515 (void) inb (port, com_msr);
c906108c
SS
516
517 /* enable external interrupt gate (to avoid floating IRQ) */
c5aa993b 518 outb (port, com_mcr, MCR_IENABLE);
c906108c
SS
519
520 /* hook up interrupt handler and initialise icu */
521 port->intrupt = dos_hookirq (port->irq);
522 if (!port->intrupt)
523 {
c5aa993b
JM
524 outb (port, com_mcr, 0);
525 outb (port, com_fifo, 0);
c906108c
SS
526 errno = ENODEV;
527 return -1;
528 }
529
530 disable ();
531
532 /* record port */
c5aa993b 533 port->intrupt->port = port;
c906108c
SS
534 scb->fd = fd;
535
536 /* clear rx buffer, tx busy flag and overflow count */
537 port->first = port->count = 0;
538 port->txbusy = 0;
539 port->oflo = 0;
540
541 /* set default baud rate and mode: 9600,8,n,1 */
542 i = dos_baudconv (port->baudrate = 9600);
c5aa993b
JM
543 outb (port, com_cfcr, CFCR_DLAB);
544 outb (port, com_dlbl, i & 0xff);
545 outb (port, com_dlbh, i >> 8);
546 outb (port, com_cfcr, CFCR_8BITS);
c906108c
SS
547
548 /* enable all interrupts */
c5aa993b 549 outb (port, com_ier, IER_ETXRDY | IER_ERXRDY | IER_ERLS | IER_EMSC);
c906108c
SS
550
551 /* enable DTR & RTS */
c5aa993b 552 outb (port, com_mcr, MCR_DTR | MCR_RTS | MCR_IENABLE);
c906108c
SS
553
554 enable ();
555
556 return 0;
557}
558
559
560static void
fba45db2 561dos_close (serial_t scb)
c906108c 562{
c5aa993b
JM
563 struct dos_ttystate *port;
564 struct intrupt *intrupt;
c906108c 565
c5aa993b
JM
566 if (!scb)
567 return;
568
569 port = &ports[scb->fd];
570
571 if (port->refcnt-- > 1)
572 return;
c906108c 573
c5aa993b
JM
574 if (!(intrupt = port->intrupt))
575 return;
576
577 /* disable interrupts, fifo, flow control */
578 disable ();
579 port->intrupt = 0;
580 intrupt->port = 0;
581 outb (port, com_fifo, 0);
582 outb (port, com_ier, 0);
583 enable ();
584
585 /* unhook handler, and disable interrupt gate */
586 dos_unhookirq (intrupt);
587 outb (port, com_mcr, 0);
588
589 /* Check for overflow errors */
590 if (port->oflo)
591 {
592 fprintf_unfiltered (gdb_stderr,
593 "Serial input overruns occurred.\n");
594 fprintf_unfiltered (gdb_stderr, "This system %s handle %d baud.\n",
595 port->fifo ? "cannot" : "needs a 16550 to",
596 port->baudrate);
597 }
598}
c906108c
SS
599\f
600
c5aa993b 601
c906108c 602static int
4d277981 603dos_noop (serial_t scb)
c906108c
SS
604{
605 return 0;
606}
607
608static void
4d277981 609dos_raw (serial_t scb)
c906108c
SS
610{
611 /* Always in raw mode */
612}
613
614static int
fba45db2 615dos_readchar (serial_t scb, int timeout)
c906108c
SS
616{
617 struct dos_ttystate *port = &ports[scb->fd];
618 long then;
619 int c;
620
c5aa993b 621 then = rawclock () + (timeout * RAWHZ);
c906108c
SS
622 while ((c = dos_getc (port)) < 0)
623 {
624 if (timeout >= 0 && (rawclock () - then) >= 0)
625 return SERIAL_TIMEOUT;
626 notice_quit ();
627 }
628
629 return c;
630}
631
632
633static serial_ttystate
fba45db2 634dos_get_tty_state (serial_t scb)
c906108c
SS
635{
636 struct dos_ttystate *port = &ports[scb->fd];
637 struct dos_ttystate *state;
638
dfed996b
EZ
639 /* Are they asking about a port we opened? */
640 if (port->refcnt <= 0)
641 {
642 /* We've never heard about this port. We should fail this call,
643 unless they are asking about one of the 3 standard handles,
644 in which case we pretend the handle was open by us if it is
645 connected to a terminal device. This is beacuse Unix
646 terminals use the serial interface, so GDB expects the
647 standard handles to go through here. */
648 if (scb->fd >= 3 || !isatty (scb->fd))
649 return NULL;
650 }
651
c906108c
SS
652 state = (struct dos_ttystate *) xmalloc (sizeof *state);
653 *state = *port;
654 return (serial_ttystate) state;
655}
656
657static int
fba45db2 658dos_set_tty_state (serial_t scb, serial_ttystate ttystate)
c906108c
SS
659{
660 struct dos_ttystate *state;
661
662 state = (struct dos_ttystate *) ttystate;
663 dos_setbaudrate (scb, state->baudrate);
664 return 0;
665}
666
667static int
263fe37d 668dos_noflush_set_tty_state (serial_t scb, serial_ttystate new_ttystate,
4d277981 669 serial_ttystate old_ttystate)
c906108c
SS
670{
671 struct dos_ttystate *state;
672
673 state = (struct dos_ttystate *) new_ttystate;
674 dos_setbaudrate (scb, state->baudrate);
675 return 0;
676}
677
678static int
fba45db2 679dos_flush_input (serial_t scb)
c906108c
SS
680{
681 struct dos_ttystate *port = &ports[scb->fd];
c5aa993b 682 disable ();
c906108c
SS
683 port->first = port->count = 0;
684 if (port->fifo)
c5aa993b
JM
685 outb (port, com_fifo, FIFO_ENABLE | FIFO_RCV_RST | FIFO_TRIGGER);
686 enable ();
9d271fd8 687 return 0;
c906108c
SS
688}
689
690static void
4d277981
EZ
691dos_print_tty_state (serial_t scb, serial_ttystate ttystate,
692 struct ui_file *stream)
c906108c
SS
693{
694 /* Nothing to print */
695 return;
696}
697
698static int
fba45db2 699dos_baudconv (int rate)
c906108c
SS
700{
701 long x, err;
c5aa993b
JM
702
703 if (rate <= 0)
c906108c
SS
704 return -1;
705
4d277981 706#define divrnd(n, q) (((n) * 2 / (q) + 1) / 2) /* divide and round off */
c5aa993b 707 x = divrnd (COMTICK, rate);
c906108c
SS
708 if (x <= 0)
709 return -1;
c5aa993b
JM
710
711 err = divrnd (1000 * COMTICK, x * rate) - 1000;
c906108c
SS
712 if (err < 0)
713 err = -err;
714 if (err > SPEED_TOLERANCE)
715 return -1;
716#undef divrnd
717 return x;
718}
719
720
721static int
fba45db2 722dos_setbaudrate (serial_t scb, int rate)
c906108c 723{
c5aa993b 724 struct dos_ttystate *port = &ports[scb->fd];
c906108c 725
c5aa993b
JM
726 if (port->baudrate != rate)
727 {
728 int x;
729 unsigned char cfcr;
730
731 x = dos_baudconv (rate);
732 if (x <= 0)
733 {
734 fprintf_unfiltered (gdb_stderr, "%d: impossible baudrate\n", rate);
735 errno = EINVAL;
736 return -1;
737 }
738
739 disable ();
740 cfcr = inb (port, com_cfcr);
741
742 outb (port, com_cfcr, CFCR_DLAB);
743 outb (port, com_dlbl, x & 0xff);
744 outb (port, com_dlbh, x >> 8);
745 outb (port, com_cfcr, cfcr);
746 port->baudrate = rate;
747 enable ();
748 }
749
750 return 0;
c906108c
SS
751}
752
753static int
fba45db2 754dos_setstopbits (serial_t scb, int num)
c906108c 755{
c5aa993b
JM
756 struct dos_ttystate *port = &ports[scb->fd];
757 unsigned char cfcr;
c906108c 758
c5aa993b
JM
759 disable ();
760 cfcr = inb (port, com_cfcr);
761
762 switch (num)
763 {
764 case SERIAL_1_STOPBITS:
765 outb (port, com_cfcr, cfcr & ~CFCR_STOPB);
766 break;
767 case SERIAL_1_AND_A_HALF_STOPBITS:
768 case SERIAL_2_STOPBITS:
769 outb (port, com_cfcr, cfcr | CFCR_STOPB);
770 break;
771 default:
772 enable ();
773 return 1;
774 }
775 enable ();
776
777 return 0;
c906108c
SS
778}
779
780static int
fba45db2 781dos_write (serial_t scb, const char *str, int len)
c906108c
SS
782{
783 volatile struct dos_ttystate *port = &ports[scb->fd];
784 int fifosize = port->fifo ? 16 : 1;
785 long then;
786 int cnt;
787
c5aa993b
JM
788 while (len > 0)
789 {
790 /* send the data, fifosize bytes at a time */
791 cnt = fifosize > len ? len : fifosize;
792 port->txbusy = 1;
cd42d3a8
EZ
793 /* Francisco Pastor <fpastor.etra-id@etra.es> says OUTSB messes
794 up the communications with UARTs with FIFOs. */
795#ifdef UART_FIFO_WORKS
c5aa993b
JM
796 outportsb (port->base + com_data, str, cnt);
797 str += cnt;
798 len -= cnt;
cd42d3a8
EZ
799#else
800 for ( ; cnt > 0; cnt--, len--)
801 outportb (port->base + com_data, *str++);
802#endif
c906108c 803#ifdef DOS_STATS
c5aa993b 804 cnts[CNT_TX] += cnt;
c906108c 805#endif
c5aa993b
JM
806 /* wait for transmission to complete (max 1 sec) */
807 then = rawclock () + RAWHZ;
808 while (port->txbusy)
809 {
810 if ((rawclock () - then) >= 0)
811 {
812 errno = EIO;
813 return SERIAL_ERROR;
814 }
815 }
c906108c
SS
816 }
817 return 0;
818}
819
820
821static int
fba45db2 822dos_sendbreak (serial_t scb)
c906108c
SS
823{
824 volatile struct dos_ttystate *port = &ports[scb->fd];
825 unsigned char cfcr;
826 long then;
827
c5aa993b
JM
828 cfcr = inb (port, com_cfcr);
829 outb (port, com_cfcr, cfcr | CFCR_SBREAK);
c906108c
SS
830
831 /* 0.25 sec delay */
832 then = rawclock () + RAWHZ / 4;
833 while ((rawclock () - then) < 0)
834 continue;
835
c5aa993b 836 outb (port, com_cfcr, cfcr);
c906108c
SS
837 return 0;
838}
839
840
841static struct serial_ops dos_ops =
842{
843 "hardwire",
844 0,
845 dos_open,
846 dos_close,
847 dos_readchar,
848 dos_write,
849 dos_noop, /* flush output */
850 dos_flush_input,
851 dos_sendbreak,
852 dos_raw,
853 dos_get_tty_state,
854 dos_set_tty_state,
855 dos_print_tty_state,
856 dos_noflush_set_tty_state,
857 dos_setbaudrate,
858 dos_setstopbits,
859 dos_noop, /* wait for output to drain */
feba2e88 860 (void (*)(serial_t, int))NULL /* change into async mode */
c906108c
SS
861};
862
863
864static void
4d277981 865dos_info (char *arg, int from_tty)
c906108c
SS
866{
867 struct dos_ttystate *port;
263fe37d 868#ifdef DOS_STATS
c906108c 869 int i;
263fe37d 870#endif
c906108c 871
c5aa993b 872 for (port = ports; port < &ports[4]; port++)
c906108c
SS
873 {
874 if (port->baudrate == 0)
875 continue;
263fe37d 876 printf_filtered ("Port:\tCOM%ld (%sactive)\n", (long)(port - ports) + 1,
c906108c
SS
877 port->intrupt ? "" : "not ");
878 printf_filtered ("Addr:\t0x%03x (irq %d)\n", port->base, port->irq);
879 printf_filtered ("16550:\t%s\n", port->fifo ? "yes" : "no");
880 printf_filtered ("Speed:\t%d baud\n", port->baudrate);
c5aa993b 881 printf_filtered ("Errs:\tframing %d parity %d overflow %d\n\n",
c906108c
SS
882 port->ferr, port->perr, port->oflo);
883 }
884
885#ifdef DOS_STATS
886 printf_filtered ("\nTotal interrupts: %d\n", intrcnt);
887 for (i = 0; i < NCNT; i++)
888 if (cnts[i])
889 printf_filtered ("%s:\t%d\n", cntnames[i], cnts[i]);
890#endif
891}
892
893
894void
fba45db2 895_initialize_ser_dos (void)
c906108c 896{
c906108c
SS
897 serial_add_interface (&dos_ops);
898
899 /* Save original interrupt mask register. */
900 icu_oldmask = inportb (ICU_MASK);
901
902 /* Mark fixed motherboard irqs as inuse. */
903 intrupts[0].inuse = /* timer tick */
904 intrupts[1].inuse = /* keyboard */
c5aa993b
JM
905 intrupts[2].inuse = 1; /* slave icu */
906
c906108c 907 add_show_from_set (
c5aa993b
JM
908 add_set_cmd ("com1base", class_obscure, var_zinteger,
909 (char *) &ports[0].base,
910 "Set COM1 base i/o port address.",
911 &setlist),
912 &showlist);
c906108c
SS
913
914 add_show_from_set (
c5aa993b
JM
915 add_set_cmd ("com1irq", class_obscure, var_zinteger,
916 (char *) &ports[0].irq,
917 "Set COM1 interrupt request.",
918 &setlist),
919 &showlist);
c906108c
SS
920
921 add_show_from_set (
c5aa993b
JM
922 add_set_cmd ("com2base", class_obscure, var_zinteger,
923 (char *) &ports[1].base,
924 "Set COM2 base i/o port address.",
925 &setlist),
926 &showlist);
c906108c
SS
927
928 add_show_from_set (
c5aa993b
JM
929 add_set_cmd ("com2irq", class_obscure, var_zinteger,
930 (char *) &ports[1].irq,
931 "Set COM2 interrupt request.",
932 &setlist),
933 &showlist);
c906108c
SS
934
935 add_show_from_set (
c5aa993b
JM
936 add_set_cmd ("com3base", class_obscure, var_zinteger,
937 (char *) &ports[2].base,
938 "Set COM3 base i/o port address.",
939 &setlist),
940 &showlist);
c906108c
SS
941
942 add_show_from_set (
c5aa993b
JM
943 add_set_cmd ("com3irq", class_obscure, var_zinteger,
944 (char *) &ports[2].irq,
945 "Set COM3 interrupt request.",
946 &setlist),
947 &showlist);
c906108c
SS
948
949 add_show_from_set (
c5aa993b
JM
950 add_set_cmd ("com4base", class_obscure, var_zinteger,
951 (char *) &ports[3].base,
952 "Set COM4 base i/o port address.",
953 &setlist),
954 &showlist);
c906108c
SS
955
956 add_show_from_set (
c5aa993b
JM
957 add_set_cmd ("com4irq", class_obscure, var_zinteger,
958 (char *) &ports[3].irq,
959 "Set COM4 interrupt request.",
960 &setlist),
961 &showlist);
c906108c
SS
962
963 add_info ("serial", dos_info,
964 "Print DOS serial port status.");
965}
This page took 0.188369 seconds and 4 git commands to generate.