-/* Remote serial interface for GO32, for GDB, the GNU Debugger.
- Copyright 1992 Free Software Foundation, Inc.
+/* Remote serial interface for local (hardwired) serial ports for GO32.
+ Copyright 1992, 1993 Free Software Foundation, Inc.
-This file is part of GDB.
+ This file is part of GDB.
-This program is free software; you can redistribute it and/or modify
-it under the terms of the GNU General Public License as published by
-the Free Software Foundation; either version 2 of the License, or
-(at your option) any later version.
+ This program is free software; you can redistribute it and/or modify
+ it under the terms of the GNU General Public License as published by
+ the Free Software Foundation; either version 2 of the License, or
+ (at your option) any later version.
-This program is distributed in the hope that it will be useful,
-but WITHOUT ANY WARRANTY; without even the implied warranty of
-MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-GNU General Public License for more details.
+ This program is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
-You should have received a copy of the GNU General Public License
-along with this program; if not, write to the Free Software
-Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */
-
-/* This file shows most of the obvious problems of code written for
+ You should have received a copy of the GNU General Public License
+ along with this program; if not, write to the Free Software
+ Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */
#include "defs.h"
-
-/* dummy */
-struct ttystate;
-
#include "serial.h"
-
#include <sys/dos.h>
+#define disable() asm("cli")
+#define enable() asm("sti")
+
+struct go32_ttystate
+ {
+ int bogus;
+ };
+typedef struct
+ {
+ short jmp_op;
+ short signature;
+ short version;
+ short buffer_start;
+ short buffer_end;
+ short getp;
+ short putp;
+ short iov;
+ short count;
+ short overflow;
+ short buffer_size;
+ short ovflushes;
+ }
+ASYNC_STRUCT;
+
+#define AOFF_JMP_OP 0
+#define AOFF_SIGNATURE 2
+#define AOFF_VERSION 4
+#define AOFF_BUFFER_START 6
+#define AOFF_BUFFER_END 8
+#define AOFF_GETP 10
+#define AOFF_PUTP 12
+#define AOFF_IOV 14
+#define AOFF_COUNT 16
+#define AOFF_OVERFLOW 18
+#define AOFF_BUFFER_SIZE 20
+#define AOFF_OVFLUSHES 22
+
+
+static ASYNC_STRUCT a; /* Copy in our mem of the struct */
+static long aindex; /* index into dos space of struct */
+
+static int go32_open PARAMS ((serial_t scb, const char *name));
+static void go32_raw PARAMS ((serial_t scb));
+static int go32_readchar PARAMS ((serial_t scb, int timeout));
+static int go32_setbaudrate PARAMS ((serial_t scb, int rate));
+static int go32_write PARAMS ((serial_t scb, const char *str, int len));
+static void go32_close PARAMS ((serial_t scb));
+static serial_ttystate go32_get_tty_state PARAMS ((serial_t scb));
+static int go32_set_tty_state PARAMS ((serial_t scb, serial_ttystate state));
+static unsigned char aptr PARAMS ((short p));
+static unsigned long getivec PARAMS ((int which));
+static int dos_async_init PARAMS ((int port));
+static void dos_async_tx PARAMS ((const char c));
+static int dos_async_rx PARAMS (());
+static int dosasync_read PARAMS ((int fd, char *buf, int len, int timeout));
+static int dosasync_write PARAMS ((int fd, const char *buf, int len));
+
#define SIGNATURE 0x4154
#define VERSION 1
#define OFFSET 0x104
-/*#define MONO 1*/
+unsigned char bb;
+unsigned short sb;
+unsigned long sl;
-#define dprintf if(0)printf
+#define SET_BYTE(x,y) { char _buf = y;dosmemput(&_buf,1, x);}
+#define SET_WORD(x,y) { short _buf = y;dosmemput(&_buf,2, x);}
+#define GET_BYTE(x) ( dosmemget((x),1,&bb), bb)
-#ifdef __GNUC__
-#define far
-#define peek(a,b) (*(unsigned short *)(0xe0000000 + (a)*16 + (b)))
-#endif
-typedef struct {
- short jmp_op;
- short signature;
- short version;
- short buffer_start;
- short buffer_end;
- short getp;
- short putp;
- short iov;
-} ASYNC_STRUCT;
-
-static ASYNC_STRUCT far *async;
-static int iov;
-#define com_rb iov
-#define com_tb iov
-#define com_ier iov+1
-#define com_ifr iov+2
-#define com_bfr iov+3
-#define com_mcr iov+4
-#define com_lsr iov+5
-#define com_msr iov+6
-
-static int fd;
-
-
-#if MONO
-#include <sys/pc.h>
-static int mono_pos=0;
-#define mono_rx 0x07
-#define mono_tx 0x70
+#define GET_LONG(x) ( dosmemget((x),4,&sl), sl)
-void
-mono_put(char byte, char attr)
+static
+unsigned short
+GET_WORD (x)
{
- ScreenSecondary[320+mono_pos+80] = 0x0720;
- ScreenSecondary[320+mono_pos] = (attr<<8) | (byte&0xff);
- mono_pos = (mono_pos+1) % 1200;
+ unsigned short sb;
+ dosmemget ((x), 2, &sb);
+ return sb;
}
-#endif
+static int iov[2];
-static char far *
-aptr(short p)
+#define com_rb(n) iov[n]
+#define com_tb(n) iov[n]
+#define com_ier(n) iov[n]+1
+#define com_ifr(n) iov[n]+2
+#define com_bfr(n) iov[n]+3
+#define com_mcr(n) iov[n]+4
+#define com_lsr(n) iov[n]+5
+#define com_msr(n) iov[n]+6
+
+static unsigned char
+aptr (p)
+ short p;
{
-#ifdef __GNUC__
- return (char *)((unsigned)async - OFFSET + p);
-#else
- return (char far *)MK_FP(FP_SEG(async), p);
-#endif
+ return GET_BYTE (aindex - OFFSET + p);
}
-static ASYNC_STRUCT far *
-getivec(int which)
+static unsigned long
+getivec (int which)
{
- ASYNC_STRUCT far *a;
+ long tryaindex;
- if (peek(0, which*4) != OFFSET)
+ if (GET_WORD (which * 4) != OFFSET)
return 0;
-#ifdef __GNUC__
- a = (ASYNC_STRUCT *)(0xe0000000 + peek(0, which*4+2)*16 + peek(0, which*4));
-#else
- a = (ASYNC_STRUCT far *)MK_FP(peek(0,which*4+2),peek(0,which*4));
-#endif
- if (a->signature != SIGNATURE)
+ /* Find out where in memory this lives */
+ tryaindex = GET_WORD (which * 4 + 2) * 16 + GET_WORD (which * 4);
+
+ if (GET_WORD (tryaindex + 2) != SIGNATURE)
return 0;
- if (a->version != VERSION)
+ if (GET_WORD (tryaindex + 4) != VERSION)
return 0;
- return a;
+ return tryaindex;
}
-int
-dos_async_init()
+static int
+dos_async_init (port)
+ int port;
{
- int i;
- ASYNC_STRUCT far *a1;
- ASYNC_STRUCT far *a2;
- a1 = getivec(12);
- a2 = getivec(11);
- async = 0;
- if (a1)
- async = a1;
- if (a2)
- async = a2;
- if (a1 && a2)
- {
- if (a1 < a2)
- async = a1;
- else
- async = a2;
- }
- if (async == 0)
- {
- error("GDB can not connect to asynctsr program, check that it is installed\n\
+ switch (port)
+ {
+ case 1:
+ aindex = getivec (12);
+ break;
+ case 2:
+ aindex = getivec (11);
+ break;
+ default:
+ return 0;
+ }
+
+ if (!aindex)
+ {
+ error ("GDB cannot connect to asynctsr program, check that it is installed\n\
and that serial I/O is not being redirected (perhaps by NFS)\n\n\
example configuration:\n\
-C> mode com2:9600,n,8,1,p\n\
-C> asynctsr 2\n\
-C> gdb \n");
+C> mode com%d:9600,n,8,1,p\n\
+C> asynctsr %d\n\
+C> gdb \n", port, port);
+ }
- }
- iov = async->iov;
- outportb(com_ier, 0x0f);
- outportb(com_bfr, 0x03);
- outportb(com_mcr, 0x0b);
- async->getp = async->putp = async->buffer_start;
-
-#if MONO
- for (i=0; i<1200; i++)
- ScreenSecondary[320+i] = 0x0720;
-#endif
- if (iov > 0x300)
- return 1;
- else
- return 2;
+ iov[0] = GET_WORD (aindex + AOFF_IOV);
+ outportb (com_ier (0), 0x0f);
+ outportb (com_bfr (0), 0x03);
+ outportb (com_mcr (0), 0x0b);
+ return 1;
}
-void
-dos_async_tx(char c)
+static void
+dos_async_tx (c)
+ const char c;
{
- dprintf("dos_async_tx: enter %x - with IOV %x", c, com_lsr);
- fflush(stdout);
- while (~inportb(com_lsr) & 0x20);
- outportb(com_tb, c);
-#if MONO
- mono_put(c, mono_tx);
-#endif
- dprintf("exit\n");
+ while (~inportb (com_lsr (0)) & 0x20)
+ ;
+ outportb (com_tb (0), c);
}
-int
-dos_async_ready()
+static int
+dos_async_ready ()
{
- return (async->getp != async->putp);
-}
+ int ret;
-int
-dos_async_rx()
-{
- char rv;
- dprintf("dos_async_rx: enter - ");
- fflush(stdout);
- while (!dos_async_ready())
- if (kbhit())
- {
- printf("abort!\n");
- return 0;
- }
- dprintf("async=%x getp=%x\n", async, async->getp);
- fflush(stdout);
- rv = *aptr(async->getp++);
-#if MONO
- mono_put(rv, mono_rx);
+ disable ();
+#if RDY_CNT
+ ret = GET_WORD (aindex + AOFF_COUNT);
+#else
+ ret = GET_WORD (aindex + AOFF_GETP) != GET_WORD (aindex + AOFF_PUTP);
#endif
- if (async->getp >= async->buffer_end)
- async->getp = async->buffer_start;
- dprintf("exit %x\n", rv);
- return rv;
-}
+ enable ();
+ return ret;
+
-int
-dos_kb_ready()
-{
- return (peek(0x40,0x1a) != peek(0x40,0x1c));
}
-int
-dos_kb_rx()
+static int
+dos_async_rx ()
{
-#ifdef __GNUC__
- return getkey();
-#else
- return getch();
-#endif
+ char rv;
+ short idx;
+
+ while (!dos_async_ready ())
+ {
+ if (kbhit ())
+ {
+ printf_unfiltered ("abort!\n");
+ return 0;
+ }
+ }
+ disable ();
+ idx = GET_WORD (aindex + AOFF_GETP);
+ idx++;
+ SET_WORD (aindex + AOFF_GETP, idx);
+ rv = aptr (idx - 1);
+ SET_WORD (aindex + AOFF_COUNT, GET_WORD (aindex + AOFF_COUNT) - 1);
+ if (GET_WORD (aindex + AOFF_GETP) > GET_WORD (aindex + AOFF_BUFFER_END))
+ SET_WORD (aindex + AOFF_GETP, GET_WORD (aindex + AOFF_BUFFER_START));
+ enable ();
+ return rv;
}
-int
-dosasync_read (int fd, char *buffer, int length, int timeout)
+
+static int
+dosasync_read (fd, buf, len, timeout)
+ int fd;
+ char *buf;
+ int len;
+ int timeout;
{
long now, then;
- int l = length;
+ int i;
+
time (&now);
- then = now+timeout;
- dprintf("dosasync_read: enter(%d,%d)\n", length, timeout);
- while (l--)
- {
- if (timeout)
+ then = now + timeout;
+
+ for (i = 0; i < len; i++)
{
- while (!dos_async_ready())
- {
- time (&now);
- if (now == then)
- {
- dprintf("dosasync_read: timeout(%d)\n", length-l-1);
- return length-l-1;
- }
- }
+ if (timeout)
+ {
+ while (!dos_async_ready ())
+ {
+ time (&now);
+ if (now >= then && timeout > 0)
+ return i;
+ }
+ }
+ *buf++ = dos_async_rx ();
}
- *buffer++ = dos_async_rx();
- }
- dprintf("dosasync_read: exit %d\n", length);
- return length;
+ return len;
}
-int
-dosasync_write(int fd, const char *buffer, int length)
+static int
+dosasync_write (fd, buf, len)
+ int fd;
+ const char *buf;
+ int len;
{
- int l = length;
- while (l--)
- dos_async_tx(*buffer++);
- return length;
+ int l;
+
+ for (l = 0; l < len; l++)
+ dos_async_tx (*buf++);
+
+ return len;
}
+static int
+go32_open (scb, name)
+ serial_t scb;
+ const char *name;
+{
+ int port;
+ if (strncasecmp (name, "com", 3) != 0)
+ {
+ errno = ENOENT;
+ return -1;
+ }
-char *
-strlwr(char *s)
+ port = name[3] - '0';
+
+ if ((port != 1) && (port != 2))
+ {
+ errno = ENOENT;
+ return -11;
+ }
+
+ scb->fd = dos_async_init (port);
+ if (!scb->fd)
+ return -1;
+
+ return 0;
+}
+
+static int
+go32_noop (scb)
+ serial_t scb;
{
- char *p = s;
- while (*s)
- {
- if ((*s >= 'A') && (*s <= 'Z'))
- *s += 'a'-'A';
- s++;
- }
- return p;
+ return 0;
}
-sigsetmask()
+static void
+go32_raw (scb)
+ serial_t scb;
{
+ /* Always in raw mode */
}
-\f
-const char *
-serial_default_name ()
+
+static int
+go32_readchar (scb, timeout)
+ serial_t scb;
+ int timeout;
{
- return "com1";
+ char buf;
+
+
+ /* Shortcut for polling */
+ if (timeout == 0)
+ {
+ if (dos_async_ready ())
+ {
+ return dos_async_rx ();
+ }
+ return SERIAL_TIMEOUT;
+ }
+
+ if (dosasync_read (scb->fd, &buf, 1, timeout))
+ return buf;
+ else
+ return SERIAL_TIMEOUT;
}
+/* go32_{get set}_tty_state() are both dummys to fill out the function
+ vector. Someday, they may do something real... */
-void
-serial_raw (fd, old)
-int fd;
-struct ttystate *old;
+static serial_ttystate
+go32_get_tty_state (scb)
+ serial_t scb;
{
- /* Always in raw mode */
+ struct go32_ttystate *state;
+
+ state = (struct go32_ttystate *) xmalloc (sizeof *state);
+
+ return (serial_ttystate) state;
}
+static int
+go32_set_tty_state (scb, ttystate)
+ serial_t scb;
+ serial_ttystate ttystate;
+{
+ return 0;
+}
-int
-serial_open (name)
- const char *name;
+static int
+go32_noflush_set_tty_state (scb, new_ttystate, old_ttystate)
+ serial_t scb;
+ serial_ttystate new_ttystate;
+ serial_ttystate old_ttystate;
{
- fd = dos_async_init();
- if (fd) return 1;
return 0;
}
-int
-serial_readchar (to)
- int to;
+static void
+go32_print_tty_state (scb, ttystate)
+ serial_t scb;
+ serial_ttystate ttystate;
{
- char buf;
- if (dosasync_read(fd, &buf, 1, to))
- return buf;
- else
- return -2; /* Timeout, I guess */
+ /* Nothing to print. */
+ return;
}
-int
-serial_setbaudrate (rate)
- int rate;
+static int
+go32_setbaudrate (scb, rate)
+ serial_t scb;
+ int rate;
{
return 0;
}
-int
-serial_nextbaudrate (rate)
- int rate;
+static int
+go32_write (scb, str, len)
+ serial_t scb;
+ const char *str;
+ int len;
{
+ dosasync_write (scb->fd, str, len);
+
return 0;
}
-int
-serial_write (str, len)
- const char *str;
- int len;
+static void
+go32_close (scb)
+ serial_t scb;
{
- dosasync_write(fd, str, len);
}
+static struct serial_ops go32_ops =
+{
+ "hardwire",
+ 0,
+ go32_open,
+ go32_close,
+ go32_readchar,
+ go32_write,
+ go32_noop, /* flush output */
+ go32_noop, /* flush input */
+ go32_noop, /* send break -- currently used only for nindy */
+ go32_raw,
+ go32_get_tty_state,
+ go32_set_tty_state,
+ go32_print_tty_state,
+ go32_noflush_set_tty_state,
+ go32_setbaudrate,
+};
+
void
-serial_close ()
+_initialize_ser_go32 ()
{
+ serial_add_interface (&go32_ops);
}