1 /* Remote serial interface for local (hardwired) serial ports for GO32.
2 Copyright 1992, 1993, 2000, 2001 Free Software Foundation, Inc.
4 Contributed by Nigel Stephens, Algorithmics Ltd. (nigel@algor.co.uk).
6 This version uses DPMI interrupts to handle buffered i/o
7 without the separate "asynctsr" program.
9 This file is part of GDB.
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.
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.
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
23 Foundation, Inc., 59 Temple Place - Suite 330,
24 Boston, MA 02111-1307, USA. */
29 #include "gdb_string.h"
33 * NS16550 UART registers
36 #define COM1ADDR 0x3f8
37 #define COM2ADDR 0x2f8
38 #define COM3ADDR 0x3e8
39 #define COM4ADDR 0x3e0
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) */
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.
59 #define COMTICK (1843200/16)
60 #define SPEED_TOLERANCE 30 /* thousandths; real == desired +- 3.0% */
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 */
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 */
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 */
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 */
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 */
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
121 /* modem status register */
126 #define MSR_DDCD 0x08
127 #define MSR_TERI 0x04
128 #define MSR_DDSR 0x02
129 #define MSR_DCTS 0x01
135 typedef unsigned long u_long;
137 /* 16550 rx fifo trigger point */
138 #define FIFO_TRIGGER FIFO_TRIGGER_4
140 /* input buffer size */
153 static int cnts[NCNT];
154 static char *cntnames[NCNT] =
156 /* h/w interrupt counts. */
157 "mlsc", "nopend", "txrdy", "?3",
158 "rxrdy", "?5", "rls", "?7",
159 "?8", "?9", "?a", "?b",
160 "rxtout", "?d", "?e", "?f",
162 "rxcnt", "txcnt", "stray", "swoflo"
165 #define COUNT(x) cnts[x]++
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)
175 /* Original interrupt controller mask register. */
176 unsigned char icu_oldmask;
178 /* Maximum of 8 interrupts (we don't handle the slave icu yet). */
181 static struct intrupt
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;
194 static struct dos_ttystate
199 struct intrupt *intrupt;
202 unsigned char cbuf[CBSIZE];
206 unsigned char old_mcr;
215 COM1ADDR, 4, 0, NULL, 0, 0, "", 0, 0, 0, 0, 0, 0, 0, 0
219 COM2ADDR, 3, 0, NULL, 0, 0, "", 0, 0, 0, 0, 0, 0, 0, 0
223 COM3ADDR, 4, 0, NULL, 0, 0, "", 0, 0, 0, 0, 0, 0, 0, 0
227 COM4ADDR, 3, 0, NULL, 0, 0, "", 0, 0, 0, 0, 0, 0, 0, 0
231 static int dos_open (struct serial *scb, const char *name);
232 static void dos_raw (struct serial *scb);
233 static int dos_readchar (struct serial *scb, int timeout);
234 static int dos_setbaudrate (struct serial *scb, int rate);
235 static int dos_write (struct serial *scb, const char *str, int len);
236 static void dos_close (struct serial *scb);
237 static serial_ttystate dos_get_tty_state (struct serial *scb);
238 static int dos_set_tty_state (struct serial *scb, serial_ttystate state);
239 static int dos_baudconv (int rate);
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");
248 dos_getc (volatile struct dos_ttystate *port)
252 if (port->count == 0)
255 c = port->cbuf[port->first];
257 port->first = (port->first + 1) & (CBSIZE - 1);
265 dos_putc (int c, struct dos_ttystate *port)
267 if (port->count >= CBSIZE - 1)
269 port->cbuf[(port->first + port->count) & (CBSIZE - 1)] = c;
279 struct dos_ttystate *port;
280 unsigned char iir, lsr, c;
282 disable (); /* Paranoia */
283 outportb (ICU_OCW2, 0x20); /* End-Of-Interrupt */
288 port = intrupts[irq].port;
292 return; /* not open */
297 iir = inb (port, com_iir) & IIR_IMASK;
302 lsr = inb (port, com_lsr);
312 c = inb (port, com_data);
313 if (lsr & (LSR_BI | LSR_FE | LSR_PE | LSR_OE))
315 if (lsr & (LSR_BI | LSR_FE))
317 else if (lsr & LSR_PE)
323 if (dos_putc (c, port) < 0)
332 while ((lsr = inb (port, com_lsr)) & LSR_RXRDY);
336 /* could be used to flowcontrol Tx */
337 port->msr = inb (port, com_msr);
345 /* no more pending interrupts, all done */
349 /* unexpected interrupt, ignore */
356 #define ISRNAME(x) dos_comisr##x
357 #define ISR(x) static void ISRNAME(x)(void) {dos_comisr(x);}
359 ISR (0) ISR (1) ISR (2) ISR (3) /* OK */
360 ISR (4) ISR (5) ISR (6) ISR (7) /* OK */
362 typedef void (*isr_t) (void);
364 static isr_t isrs[NINTR] =
366 ISRNAME (0), ISRNAME (1), ISRNAME (2), ISRNAME (3),
367 ISRNAME (4), ISRNAME (5), ISRNAME (6), ISRNAME (7)
372 static struct intrupt *
373 dos_hookirq (unsigned int irq)
375 struct intrupt *intr;
382 intr = &intrupts[irq];
389 /* setup real mode handler */
390 _go32_dpmi_get_real_mode_interrupt_vector (vec, &intr->old_rmhandler);
392 intr->new_rmhandler.pm_selector = _go32_my_cs ();
393 intr->new_rmhandler.pm_offset = (u_long) isr;
394 if (_go32_dpmi_allocate_real_mode_callback_iret (&intr->new_rmhandler,
400 if (_go32_dpmi_set_real_mode_interrupt_vector (vec, &intr->new_rmhandler))
405 /* setup protected mode handler */
406 _go32_dpmi_get_protected_mode_interrupt_vector (vec, &intr->old_pmhandler);
408 intr->new_pmhandler.pm_selector = _go32_my_cs ();
409 intr->new_pmhandler.pm_offset = (u_long) isr;
410 _go32_dpmi_allocate_iret_wrapper (&intr->new_pmhandler);
412 if (_go32_dpmi_set_protected_mode_interrupt_vector (vec,
413 &intr->new_pmhandler))
418 /* setup interrupt controller mask */
420 outportb (ICU_MASK, inportb (ICU_MASK) & ~(1 << irq));
429 dos_unhookirq (struct intrupt *intr)
431 unsigned int irq, vec;
434 irq = intr - intrupts;
437 /* restore old interrupt mask bit */
440 outportb (ICU_MASK, inportb (ICU_MASK) | (mask & icu_oldmask));
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);
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);
456 dos_open (struct serial *scb, const char *name)
458 struct dos_ttystate *port;
461 if (strncasecmp (name, "/dev/", 5) == 0)
463 else if (strncasecmp (name, "\\dev\\", 5) == 0)
466 if (strlen (name) != 4 || strncasecmp (name, "com", 3) != 0)
472 if (name[3] < '1' || name[3] > '4')
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. */
484 if (port->refcnt++ > 0)
486 /* Device already opened another user. Just point at it. */
491 /* force access to ID reg */
492 outb (port, com_cfcr, 0);
493 outb (port, com_iir, 0);
494 for (i = 0; i < 17; i++)
496 if ((inb (port, com_iir) & 0x38) == 0)
498 (void) inb (port, com_data); /* clear recv */
504 /* disable all interrupts in chip */
505 outb (port, com_ier, 0);
507 /* tentatively enable 16550 fifo, and see if it responds */
508 outb (port, com_fifo,
509 FIFO_ENABLE | FIFO_RCV_RST | FIFO_XMT_RST | FIFO_TRIGGER);
511 port->fifo = ((inb (port, com_iir) & IIR_FIFO_MASK) == IIR_FIFO_MASK);
513 /* clear pending status reports. */
514 (void) inb (port, com_lsr);
515 (void) inb (port, com_msr);
517 /* enable external interrupt gate (to avoid floating IRQ) */
518 outb (port, com_mcr, MCR_IENABLE);
520 /* hook up interrupt handler and initialise icu */
521 port->intrupt = dos_hookirq (port->irq);
524 outb (port, com_mcr, 0);
525 outb (port, com_fifo, 0);
533 port->intrupt->port = port;
536 /* clear rx buffer, tx busy flag and overflow count */
537 port->first = port->count = 0;
541 /* set default baud rate and mode: 9600,8,n,1 */
542 i = dos_baudconv (port->baudrate = 9600);
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);
548 /* enable all interrupts */
549 outb (port, com_ier, IER_ETXRDY | IER_ERXRDY | IER_ERLS | IER_EMSC);
551 /* enable DTR & RTS */
552 outb (port, com_mcr, MCR_DTR | MCR_RTS | MCR_IENABLE);
561 dos_close (struct serial *scb)
563 struct dos_ttystate *port;
564 struct intrupt *intrupt;
569 port = &ports[scb->fd];
571 if (port->refcnt-- > 1)
574 if (!(intrupt = port->intrupt))
577 /* disable interrupts, fifo, flow control */
581 outb (port, com_fifo, 0);
582 outb (port, com_ier, 0);
585 /* unhook handler, and disable interrupt gate */
586 dos_unhookirq (intrupt);
587 outb (port, com_mcr, 0);
589 /* Check for overflow errors */
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",
603 dos_noop (struct serial *scb)
609 dos_raw (struct serial *scb)
611 /* Always in raw mode */
615 dos_readchar (struct serial *scb, int timeout)
617 struct dos_ttystate *port = &ports[scb->fd];
621 then = rawclock () + (timeout * RAWHZ);
622 while ((c = dos_getc (port)) < 0)
624 if (timeout >= 0 && (rawclock () - then) >= 0)
625 return SERIAL_TIMEOUT;
632 static serial_ttystate
633 dos_get_tty_state (struct serial *scb)
635 struct dos_ttystate *port = &ports[scb->fd];
636 struct dos_ttystate *state;
638 /* Are they asking about a port we opened? */
639 if (port->refcnt <= 0)
641 /* We've never heard about this port. We should fail this call,
642 unless they are asking about one of the 3 standard handles,
643 in which case we pretend the handle was open by us if it is
644 connected to a terminal device. This is beacuse Unix
645 terminals use the serial interface, so GDB expects the
646 standard handles to go through here. */
647 if (scb->fd >= 3 || !isatty (scb->fd))
651 state = (struct dos_ttystate *) xmalloc (sizeof *state);
653 return (serial_ttystate) state;
657 dos_set_tty_state (struct serial *scb, serial_ttystate ttystate)
659 struct dos_ttystate *state;
661 state = (struct dos_ttystate *) ttystate;
662 dos_setbaudrate (scb, state->baudrate);
667 dos_noflush_set_tty_state (struct serial *scb, serial_ttystate new_ttystate,
668 serial_ttystate old_ttystate)
670 struct dos_ttystate *state;
672 state = (struct dos_ttystate *) new_ttystate;
673 dos_setbaudrate (scb, state->baudrate);
678 dos_flush_input (struct serial *scb)
680 struct dos_ttystate *port = &ports[scb->fd];
682 port->first = port->count = 0;
684 outb (port, com_fifo, FIFO_ENABLE | FIFO_RCV_RST | FIFO_TRIGGER);
690 dos_print_tty_state (struct serial *scb, serial_ttystate ttystate,
691 struct ui_file *stream)
693 /* Nothing to print */
698 dos_baudconv (int rate)
705 #define divrnd(n, q) (((n) * 2 / (q) + 1) / 2) /* divide and round off */
706 x = divrnd (COMTICK, rate);
710 err = divrnd (1000 * COMTICK, x * rate) - 1000;
713 if (err > SPEED_TOLERANCE)
721 dos_setbaudrate (struct serial *scb, int rate)
723 struct dos_ttystate *port = &ports[scb->fd];
725 if (port->baudrate != rate)
730 x = dos_baudconv (rate);
733 fprintf_unfiltered (gdb_stderr, "%d: impossible baudrate\n", rate);
739 cfcr = inb (port, com_cfcr);
741 outb (port, com_cfcr, CFCR_DLAB);
742 outb (port, com_dlbl, x & 0xff);
743 outb (port, com_dlbh, x >> 8);
744 outb (port, com_cfcr, cfcr);
745 port->baudrate = rate;
753 dos_setstopbits (struct serial *scb, int num)
755 struct dos_ttystate *port = &ports[scb->fd];
759 cfcr = inb (port, com_cfcr);
763 case SERIAL_1_STOPBITS:
764 outb (port, com_cfcr, cfcr & ~CFCR_STOPB);
766 case SERIAL_1_AND_A_HALF_STOPBITS:
767 case SERIAL_2_STOPBITS:
768 outb (port, com_cfcr, cfcr | CFCR_STOPB);
780 dos_write (struct serial *scb, const char *str, int len)
782 volatile struct dos_ttystate *port = &ports[scb->fd];
783 int fifosize = port->fifo ? 16 : 1;
789 /* send the data, fifosize bytes at a time */
790 cnt = fifosize > len ? len : fifosize;
792 /* Francisco Pastor <fpastor.etra-id@etra.es> says OUTSB messes
793 up the communications with UARTs with FIFOs. */
794 #ifdef UART_FIFO_WORKS
795 outportsb (port->base + com_data, str, cnt);
799 for ( ; cnt > 0; cnt--, len--)
800 outportb (port->base + com_data, *str++);
805 /* wait for transmission to complete (max 1 sec) */
806 then = rawclock () + RAWHZ;
809 if ((rawclock () - then) >= 0)
821 dos_sendbreak (struct serial *scb)
823 volatile struct dos_ttystate *port = &ports[scb->fd];
827 cfcr = inb (port, com_cfcr);
828 outb (port, com_cfcr, cfcr | CFCR_SBREAK);
831 then = rawclock () + RAWHZ / 4;
832 while ((rawclock () - then) < 0)
835 outb (port, com_cfcr, cfcr);
840 static struct serial_ops dos_ops =
848 dos_noop, /* flush output */
855 dos_noflush_set_tty_state,
858 dos_noop, /* wait for output to drain */
859 (void (*)(struct serial *, int))NULL /* change into async mode */
864 dos_info (char *arg, int from_tty)
866 struct dos_ttystate *port;
871 for (port = ports; port < &ports[4]; port++)
873 if (port->baudrate == 0)
875 printf_filtered ("Port:\tCOM%ld (%sactive)\n", (long)(port - ports) + 1,
876 port->intrupt ? "" : "not ");
877 printf_filtered ("Addr:\t0x%03x (irq %d)\n", port->base, port->irq);
878 printf_filtered ("16550:\t%s\n", port->fifo ? "yes" : "no");
879 printf_filtered ("Speed:\t%d baud\n", port->baudrate);
880 printf_filtered ("Errs:\tframing %d parity %d overflow %d\n\n",
881 port->ferr, port->perr, port->oflo);
885 printf_filtered ("\nTotal interrupts: %d\n", intrcnt);
886 for (i = 0; i < NCNT; i++)
888 printf_filtered ("%s:\t%d\n", cntnames[i], cnts[i]);
894 _initialize_ser_dos (void)
896 serial_add_interface (&dos_ops);
898 /* Save original interrupt mask register. */
899 icu_oldmask = inportb (ICU_MASK);
901 /* Mark fixed motherboard irqs as inuse. */
902 intrupts[0].inuse = /* timer tick */
903 intrupts[1].inuse = /* keyboard */
904 intrupts[2].inuse = 1; /* slave icu */
906 deprecated_add_show_from_set
907 (add_set_cmd ("com1base", class_obscure, var_zinteger,
908 (char *) &ports[0].base,
909 "Set COM1 base i/o port address.",
913 deprecated_add_show_from_set
914 (add_set_cmd ("com1irq", class_obscure, var_zinteger,
915 (char *) &ports[0].irq,
916 "Set COM1 interrupt request.",
920 deprecated_add_show_from_set
921 (add_set_cmd ("com2base", class_obscure, var_zinteger,
922 (char *) &ports[1].base,
923 "Set COM2 base i/o port address.",
927 deprecated_add_show_from_set
928 (add_set_cmd ("com2irq", class_obscure, var_zinteger,
929 (char *) &ports[1].irq,
930 "Set COM2 interrupt request.",
934 deprecated_add_show_from_set
935 (add_set_cmd ("com3base", class_obscure, var_zinteger,
936 (char *) &ports[2].base,
937 "Set COM3 base i/o port address.",
941 deprecated_add_show_from_set
942 (add_set_cmd ("com3irq", class_obscure, var_zinteger,
943 (char *) &ports[2].irq,
944 "Set COM3 interrupt request.",
948 deprecated_add_show_from_set
949 (add_set_cmd ("com4base", class_obscure, var_zinteger,
950 (char *) &ports[3].base,
951 "Set COM4 base i/o port address.",
955 deprecated_add_show_from_set
956 (add_set_cmd ("com4irq", class_obscure, var_zinteger,
957 (char *) &ports[3].irq,
958 "Set COM4 interrupt request.",
962 add_info ("serial", dos_info,
963 "Print DOS serial port status.");