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