1 /* Serial interface for local (hardwired) serial ports on Un*x like systems
2 Copyright 1992-1994, 1998-2000 Free Software Foundation, Inc.
4 This file is part of GDB.
6 This program is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 2 of the License, or
9 (at your option) any later version.
11 This program is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
16 You should have received a copy of the GNU General Public License
17 along with this program; if not, write to the Free Software
18 Foundation, Inc., 59 Temple Place - Suite 330,
19 Boston, MA 02111-1307, USA. */
26 #include <sys/types.h>
29 #include <sys/socket.h>
32 #include "gdb_string.h"
33 #include "event-loop.h"
37 struct hardwire_ttystate
39 struct termios termios
;
45 /* It is believed that all systems which have added job control to SVR3
46 (e.g. sco) have also added termios. Even if not, trying to figure out
47 all the variations (TIOCGPGRP vs. TCGETPGRP, etc.) would be pretty
48 bewildering. So we don't attempt it. */
50 struct hardwire_ttystate
57 struct hardwire_ttystate
62 /* Line discipline flags. */
67 static int hardwire_open (serial_t scb
, const char *name
);
68 static void hardwire_raw (serial_t scb
);
69 static int wait_for (serial_t scb
, int timeout
);
70 static int hardwire_readchar (serial_t scb
, int timeout
);
71 static int do_hardwire_readchar (serial_t scb
, int timeout
);
72 static int generic_readchar (serial_t scb
, int timeout
, int (*do_readchar
) (serial_t scb
, int timeout
));
73 static int rate_to_code (int rate
);
74 static int hardwire_setbaudrate (serial_t scb
, int rate
);
75 static void hardwire_close (serial_t scb
);
76 static int get_tty_state (serial_t scb
, struct hardwire_ttystate
* state
);
77 static int set_tty_state (serial_t scb
, struct hardwire_ttystate
* state
);
78 static serial_ttystate
hardwire_get_tty_state (serial_t scb
);
79 static int hardwire_set_tty_state (serial_t scb
, serial_ttystate state
);
80 static int hardwire_noflush_set_tty_state (serial_t
, serial_ttystate
,
82 static void hardwire_print_tty_state (serial_t
, serial_ttystate
, struct ui_file
*);
83 static int hardwire_drain_output (serial_t
);
84 static int hardwire_flush_output (serial_t
);
85 static int hardwire_flush_input (serial_t
);
86 static int hardwire_send_break (serial_t
);
87 static int hardwire_setstopbits (serial_t
, int);
89 static int do_unix_readchar (serial_t scb
, int timeout
);
90 static timer_handler_func push_event
;
91 static handler_func fd_event
;
92 static void reschedule (serial_t scb
);
94 void _initialize_ser_hardwire (void);
96 extern int (*ui_loop_hook
) (int);
98 /* Open up a real live device for serial I/O */
101 hardwire_open (serial_t scb
, const char *name
)
103 scb
->fd
= open (name
, O_RDWR
);
111 get_tty_state (serial_t scb
, struct hardwire_ttystate
*state
)
114 if (tcgetattr (scb
->fd
, &state
->termios
) < 0)
121 if (ioctl (scb
->fd
, TCGETA
, &state
->termio
) < 0)
127 if (ioctl (scb
->fd
, TIOCGETP
, &state
->sgttyb
) < 0)
129 if (ioctl (scb
->fd
, TIOCGETC
, &state
->tc
) < 0)
131 if (ioctl (scb
->fd
, TIOCGLTC
, &state
->ltc
) < 0)
133 if (ioctl (scb
->fd
, TIOCLGET
, &state
->lmode
) < 0)
141 set_tty_state (serial_t scb
, struct hardwire_ttystate
*state
)
144 if (tcsetattr (scb
->fd
, TCSANOW
, &state
->termios
) < 0)
151 if (ioctl (scb
->fd
, TCSETA
, &state
->termio
) < 0)
157 if (ioctl (scb
->fd
, TIOCSETN
, &state
->sgttyb
) < 0)
159 if (ioctl (scb
->fd
, TIOCSETC
, &state
->tc
) < 0)
161 if (ioctl (scb
->fd
, TIOCSLTC
, &state
->ltc
) < 0)
163 if (ioctl (scb
->fd
, TIOCLSET
, &state
->lmode
) < 0)
170 static serial_ttystate
171 hardwire_get_tty_state (serial_t scb
)
173 struct hardwire_ttystate
*state
;
175 state
= (struct hardwire_ttystate
*) xmalloc (sizeof *state
);
177 if (get_tty_state (scb
, state
))
180 return (serial_ttystate
) state
;
184 hardwire_set_tty_state (serial_t scb
, serial_ttystate ttystate
)
186 struct hardwire_ttystate
*state
;
188 state
= (struct hardwire_ttystate
*) ttystate
;
190 return set_tty_state (scb
, state
);
194 hardwire_noflush_set_tty_state (serial_t scb
,
195 serial_ttystate new_ttystate
,
196 serial_ttystate old_ttystate
)
198 struct hardwire_ttystate new_state
;
200 struct hardwire_ttystate
*state
= (struct hardwire_ttystate
*) old_ttystate
;
203 new_state
= *(struct hardwire_ttystate
*) new_ttystate
;
205 /* Don't change in or out of raw mode; we don't want to flush input.
206 termio and termios have no such restriction; for them flushing input
207 is separate from setting the attributes. */
210 if (state
->sgttyb
.sg_flags
& RAW
)
211 new_state
.sgttyb
.sg_flags
|= RAW
;
213 new_state
.sgttyb
.sg_flags
&= ~RAW
;
215 /* I'm not sure whether this is necessary; the manpage just mentions
217 if (state
->sgttyb
.sg_flags
& CBREAK
)
218 new_state
.sgttyb
.sg_flags
|= CBREAK
;
220 new_state
.sgttyb
.sg_flags
&= ~CBREAK
;
223 return set_tty_state (scb
, &new_state
);
227 hardwire_print_tty_state (serial_t scb
,
228 serial_ttystate ttystate
,
229 struct ui_file
*stream
)
231 struct hardwire_ttystate
*state
= (struct hardwire_ttystate
*) ttystate
;
235 fprintf_filtered (stream
, "c_iflag = 0x%x, c_oflag = 0x%x,\n",
236 (int) state
->termios
.c_iflag
,
237 (int) state
->termios
.c_oflag
);
238 fprintf_filtered (stream
, "c_cflag = 0x%x, c_lflag = 0x%x\n",
239 (int) state
->termios
.c_cflag
,
240 (int) state
->termios
.c_lflag
);
242 /* This not in POSIX, and is not really documented by those systems
243 which have it (at least not Sun). */
244 fprintf_filtered (stream
, "c_line = 0x%x.\n", state
->termios
.c_line
);
246 fprintf_filtered (stream
, "c_cc: ");
247 for (i
= 0; i
< NCCS
; i
+= 1)
248 fprintf_filtered (stream
, "0x%x ", state
->termios
.c_cc
[i
]);
249 fprintf_filtered (stream
, "\n");
253 fprintf_filtered (stream
, "c_iflag = 0x%x, c_oflag = 0x%x,\n",
254 state
->termio
.c_iflag
, state
->termio
.c_oflag
);
255 fprintf_filtered (stream
, "c_cflag = 0x%x, c_lflag = 0x%x, c_line = 0x%x.\n",
256 state
->termio
.c_cflag
, state
->termio
.c_lflag
,
257 state
->termio
.c_line
);
258 fprintf_filtered (stream
, "c_cc: ");
259 for (i
= 0; i
< NCC
; i
+= 1)
260 fprintf_filtered (stream
, "0x%x ", state
->termio
.c_cc
[i
]);
261 fprintf_filtered (stream
, "\n");
265 fprintf_filtered (stream
, "sgttyb.sg_flags = 0x%x.\n",
266 state
->sgttyb
.sg_flags
);
268 fprintf_filtered (stream
, "tchars: ");
269 for (i
= 0; i
< (int) sizeof (struct tchars
); i
++)
270 fprintf_filtered (stream
, "0x%x ", ((unsigned char *) &state
->tc
)[i
]);
271 fprintf_filtered ("\n");
273 fprintf_filtered (stream
, "ltchars: ");
274 for (i
= 0; i
< (int) sizeof (struct ltchars
); i
++)
275 fprintf_filtered (stream
, "0x%x ", ((unsigned char *) &state
->ltc
)[i
]);
276 fprintf_filtered (stream
, "\n");
278 fprintf_filtered (stream
, "lmode: 0x%x\n", state
->lmode
);
282 /* Wait for the output to drain away, as opposed to flushing (discarding) it */
285 hardwire_drain_output (serial_t scb
)
288 return tcdrain (scb
->fd
);
292 return ioctl (scb
->fd
, TCSBRK
, 1);
296 /* Get the current state and then restore it using TIOCSETP,
297 which should cause the output to drain and pending input
300 struct hardwire_ttystate state
;
301 if (get_tty_state (scb
, &state
))
307 return (ioctl (scb
->fd
, TIOCSETP
, &state
.sgttyb
));
314 hardwire_flush_output (serial_t scb
)
317 return tcflush (scb
->fd
, TCOFLUSH
);
321 return ioctl (scb
->fd
, TCFLSH
, 1);
325 /* This flushes both input and output, but we can't do better. */
326 return ioctl (scb
->fd
, TIOCFLUSH
, 0);
331 hardwire_flush_input (serial_t scb
)
333 ser_unix_flush_input (scb
);
336 return tcflush (scb
->fd
, TCIFLUSH
);
340 return ioctl (scb
->fd
, TCFLSH
, 0);
344 /* This flushes both input and output, but we can't do better. */
345 return ioctl (scb
->fd
, TIOCFLUSH
, 0);
350 hardwire_send_break (serial_t scb
)
353 return tcsendbreak (scb
->fd
, 0);
357 return ioctl (scb
->fd
, TCSBRK
, 0);
363 struct timeval timeout
;
365 status
= ioctl (scb
->fd
, TIOCSBRK
, 0);
367 /* Can't use usleep; it doesn't exist in BSD 4.2. */
368 /* Note that if this select() is interrupted by a signal it will not wait
369 the full length of time. I think that is OK. */
371 timeout
.tv_usec
= 250000;
372 select (0, 0, 0, 0, &timeout
);
373 status
= ioctl (scb
->fd
, TIOCCBRK
, 0);
380 hardwire_raw (serial_t scb
)
382 struct hardwire_ttystate state
;
384 if (get_tty_state (scb
, &state
))
385 fprintf_unfiltered (gdb_stderr
, "get_tty_state failed: %s\n", safe_strerror (errno
));
388 state
.termios
.c_iflag
= 0;
389 state
.termios
.c_oflag
= 0;
390 state
.termios
.c_lflag
= 0;
391 state
.termios
.c_cflag
&= ~(CSIZE
| PARENB
);
392 state
.termios
.c_cflag
|= CLOCAL
| CS8
;
393 state
.termios
.c_cc
[VMIN
] = 0;
394 state
.termios
.c_cc
[VTIME
] = 0;
398 state
.termio
.c_iflag
= 0;
399 state
.termio
.c_oflag
= 0;
400 state
.termio
.c_lflag
= 0;
401 state
.termio
.c_cflag
&= ~(CSIZE
| PARENB
);
402 state
.termio
.c_cflag
|= CLOCAL
| CS8
;
403 state
.termio
.c_cc
[VMIN
] = 0;
404 state
.termio
.c_cc
[VTIME
] = 0;
408 state
.sgttyb
.sg_flags
|= RAW
| ANYP
;
409 state
.sgttyb
.sg_flags
&= ~(CBREAK
| ECHO
);
412 scb
->current_timeout
= 0;
414 if (set_tty_state (scb
, &state
))
415 fprintf_unfiltered (gdb_stderr
, "set_tty_state failed: %s\n", safe_strerror (errno
));
418 /* Wait for input on scb, with timeout seconds. Returns 0 on success,
419 otherwise SERIAL_TIMEOUT or SERIAL_ERROR.
421 For termio{s}, we actually just setup VTIME if necessary, and let the
422 timeout occur in the read() in hardwire_read().
425 /* FIXME: cagney/1999-09-16: Don't replace this with the equivalent
426 ser_unix*() until the old TERMIOS/SGTTY/... timer code has been
429 /* NOTE: cagney/1999-09-30: Much of the code below is dead. The only
430 possible values of the TIMEOUT parameter are ONE and ZERO.
431 Consequently all the code that tries to handle the possability of
432 an overflowed timer is unnecessary. */
435 wait_for (serial_t scb
, int timeout
)
447 FD_SET (scb
->fd
, &readfds
);
454 numfds
= select (scb
->fd
+ 1, &readfds
, 0, 0, &tv
);
456 numfds
= select (scb
->fd
+ 1, &readfds
, 0, 0, 0);
460 return SERIAL_TIMEOUT
;
461 else if (errno
== EINTR
)
464 return SERIAL_ERROR
; /* Got an error from select or poll */
469 #endif /* HAVE_SGTTY */
471 #if defined HAVE_TERMIO || defined HAVE_TERMIOS
472 if (timeout
== scb
->current_timeout
)
475 scb
->current_timeout
= timeout
;
478 struct hardwire_ttystate state
;
480 if (get_tty_state (scb
, &state
))
481 fprintf_unfiltered (gdb_stderr
, "get_tty_state failed: %s\n", safe_strerror (errno
));
487 state
.termios
.c_cc
[VTIME
] = 0;
488 state
.termios
.c_cc
[VMIN
] = 1;
492 state
.termios
.c_cc
[VMIN
] = 0;
493 state
.termios
.c_cc
[VTIME
] = timeout
* 10;
494 if (state
.termios
.c_cc
[VTIME
] != timeout
* 10)
497 /* If c_cc is an 8-bit signed character, we can't go
498 bigger than this. If it is always unsigned, we could use
501 scb
->current_timeout
= 12;
502 state
.termios
.c_cc
[VTIME
] = scb
->current_timeout
* 10;
503 scb
->timeout_remaining
= timeout
- scb
->current_timeout
;
512 state
.termio
.c_cc
[VTIME
] = 0;
513 state
.termio
.c_cc
[VMIN
] = 1;
517 state
.termio
.c_cc
[VMIN
] = 0;
518 state
.termio
.c_cc
[VTIME
] = timeout
* 10;
519 if (state
.termio
.c_cc
[VTIME
] != timeout
* 10)
521 /* If c_cc is an 8-bit signed character, we can't go
522 bigger than this. If it is always unsigned, we could use
525 scb
->current_timeout
= 12;
526 state
.termio
.c_cc
[VTIME
] = scb
->current_timeout
* 10;
527 scb
->timeout_remaining
= timeout
- scb
->current_timeout
;
532 if (set_tty_state (scb
, &state
))
533 fprintf_unfiltered (gdb_stderr
, "set_tty_state failed: %s\n", safe_strerror (errno
));
537 #endif /* HAVE_TERMIO || HAVE_TERMIOS */
540 /* Read a character with user-specified timeout. TIMEOUT is number of seconds
541 to wait, or -1 to wait forever. Use timeout of 0 to effect a poll. Returns
542 char if successful. Returns SERIAL_TIMEOUT if timeout expired, EOF if line
543 dropped dead, or SERIAL_ERROR for any other error (see errno in that case). */
545 /* FIXME: cagney/1999-09-16: Don't replace this with the equivalent
546 ser_unix*() until the old TERMIOS/SGTTY/... timer code has been
549 /* NOTE: cagney/1999-09-16: This function is not identical to
550 ser_unix_readchar() as part of replacing it with ser_unix*()
551 merging will be required - this code handles the case where read()
552 times out due to no data while ser_unix_readchar() doesn't expect
556 do_hardwire_readchar (serial_t scb
, int timeout
)
564 /* We have to be able to keep the GUI alive here, so we break the original
565 timeout into steps of 1 second, running the "keep the GUI alive" hook
566 each time through the loop.
567 Also, timeout = 0 means to poll, so we just set the delta to 0, so we
568 will only go through the loop once. */
570 delta
= (timeout
== 0 ? 0 : 1);
574 /* N.B. The UI may destroy our world (for instance by calling
575 remote_stop,) in which case we want to get out of here as
576 quickly as possible. It is not safe to touch scb, since
577 someone else might have freed it. The ui_loop_hook signals that
578 we should exit by returning 1. */
581 detach
= ui_loop_hook (0);
584 return SERIAL_TIMEOUT
;
586 scb
->timeout_remaining
= (timeout
< 0 ? timeout
: timeout
- delta
);
587 status
= wait_for (scb
, delta
);
592 status
= read (scb
->fd
, scb
->buf
, BUFSIZ
);
598 /* Zero characters means timeout (it could also be EOF, but
599 we don't (yet at least) distinguish). */
600 if (scb
->timeout_remaining
> 0)
602 timeout
= scb
->timeout_remaining
;
605 else if (scb
->timeout_remaining
< 0)
608 return SERIAL_TIMEOUT
;
610 else if (errno
== EINTR
)
613 return SERIAL_ERROR
; /* Got an error from read */
616 scb
->bufcnt
= status
;
618 scb
->bufp
= scb
->buf
;
624 hardwire_readchar (serial_t scb
, int timeout
)
626 return generic_readchar (scb
, timeout
, do_hardwire_readchar
);
638 /* Translate baud rates from integers to damn B_codes. Unix should
639 have outgrown this crap years ago, but even POSIX wouldn't buck it. */
739 rate_to_code (int rate
)
743 for (i
= 0; baudtab
[i
].rate
!= -1; i
++)
744 if (rate
== baudtab
[i
].rate
)
745 return baudtab
[i
].code
;
751 hardwire_setbaudrate (serial_t scb
, int rate
)
753 struct hardwire_ttystate state
;
755 if (get_tty_state (scb
, &state
))
759 cfsetospeed (&state
.termios
, rate_to_code (rate
));
760 cfsetispeed (&state
.termios
, rate_to_code (rate
));
768 state
.termio
.c_cflag
&= ~(CBAUD
| CIBAUD
);
769 state
.termio
.c_cflag
|= rate_to_code (rate
);
773 state
.sgttyb
.sg_ispeed
= rate_to_code (rate
);
774 state
.sgttyb
.sg_ospeed
= rate_to_code (rate
);
777 return set_tty_state (scb
, &state
);
781 hardwire_setstopbits (scb
, num
)
785 struct hardwire_ttystate state
;
788 if (get_tty_state (scb
, &state
))
793 case SERIAL_1_STOPBITS
:
796 case SERIAL_1_AND_A_HALF_STOPBITS
:
797 case SERIAL_2_STOPBITS
:
806 state
.termios
.c_cflag
&= ~CSTOPB
;
808 state
.termios
.c_cflag
|= CSTOPB
; /* two bits */
813 state
.termio
.c_cflag
&= ~CSTOPB
;
815 state
.termio
.c_cflag
|= CSTOPB
; /* two bits */
819 return 0; /* sgtty doesn't support this */
822 return set_tty_state (scb
, &state
);
826 hardwire_close (serial_t scb
)
836 /* Generic operations used by all UNIX/FD based serial interfaces. */
839 ser_unix_nop_get_tty_state (serial_t scb
)
841 /* allocate a dummy */
842 return (serial_ttystate
) XMALLOC (int);
846 ser_unix_nop_set_tty_state (serial_t scb
, serial_ttystate ttystate
)
852 ser_unix_nop_raw (serial_t scb
)
854 return; /* Always in raw mode */
857 /* Wait for input on scb, with timeout seconds. Returns 0 on success,
858 otherwise SERIAL_TIMEOUT or SERIAL_ERROR. */
861 ser_unix_wait_for (serial_t scb
, int timeout
)
865 fd_set readfds
, exceptfds
;
868 FD_ZERO (&exceptfds
);
873 FD_SET (scb
->fd
, &readfds
);
874 FD_SET (scb
->fd
, &exceptfds
);
879 numfds
= select (scb
->fd
+ 1, &readfds
, 0, &exceptfds
, &tv
);
881 numfds
= select (scb
->fd
+ 1, &readfds
, 0, &exceptfds
, 0);
886 return SERIAL_TIMEOUT
;
887 else if (errno
== EINTR
)
890 return SERIAL_ERROR
; /* Got an error from select or poll */
897 /* Read a character with user-specified timeout. TIMEOUT is number of seconds
898 to wait, or -1 to wait forever. Use timeout of 0 to effect a poll. Returns
899 char if successful. Returns -2 if timeout expired, EOF if line dropped
900 dead, or -3 for any other error (see errno in that case). */
903 do_unix_readchar (serial_t scb
, int timeout
)
908 /* We have to be able to keep the GUI alive here, so we break the original
909 timeout into steps of 1 second, running the "keep the GUI alive" hook
910 each time through the loop.
912 Also, timeout = 0 means to poll, so we just set the delta to 0, so we
913 will only go through the loop once. */
915 delta
= (timeout
== 0 ? 0 : 1);
919 /* N.B. The UI may destroy our world (for instance by calling
920 remote_stop,) in which case we want to get out of here as
921 quickly as possible. It is not safe to touch scb, since
922 someone else might have freed it. The ui_loop_hook signals that
923 we should exit by returning 1. */
927 if (ui_loop_hook (0))
928 return SERIAL_TIMEOUT
;
931 status
= ser_unix_wait_for (scb
, delta
);
934 /* If we got a character or an error back from wait_for, then we can
935 break from the loop before the timeout is completed. */
937 if (status
!= SERIAL_TIMEOUT
)
942 /* If we have exhausted the original timeout, then generate
943 a SERIAL_TIMEOUT, and pass it out of the loop. */
945 else if (timeout
== 0)
947 status
= SERIAL_TIMEOUT
;
957 status
= read (scb
->fd
, scb
->buf
, BUFSIZ
);
958 if (status
!= -1 || errno
!= EINTR
)
965 return SERIAL_TIMEOUT
; /* 0 chars means timeout [may need to
966 distinguish between EOF & timeouts
969 return SERIAL_ERROR
; /* Got an error from read */
972 scb
->bufcnt
= status
;
974 scb
->bufp
= scb
->buf
;
978 /* Perform operations common to both old and new readchar. */
980 /* Return the next character from the input FIFO. If the FIFO is
981 empty, call the SERIAL specific routine to try and read in more
984 Initially data from the input FIFO is returned (fd_event()
985 pre-reads the input into that FIFO. Once that has been emptied,
986 further data is obtained by polling the input FD using the device
987 specific readchar() function. Note: reschedule() is called after
988 every read. This is because there is no guarentee that the lower
989 level fd_event() poll_event() code (which also calls reschedule())
993 generic_readchar (serial_t scb
, int timeout
,
994 int (do_readchar
) (serial_t scb
, int timeout
))
1003 else if (scb
->bufcnt
< 0)
1005 /* Some errors/eof are are sticky. */
1010 ch
= do_readchar (scb
, timeout
);
1013 switch ((enum serial_rc
) ch
)
1017 /* Make the error/eof stick. */
1020 case SERIAL_TIMEOUT
:
1031 ser_unix_readchar (serial_t scb
, int timeout
)
1033 return generic_readchar (scb
, timeout
, do_unix_readchar
);
1037 ser_unix_nop_noflush_set_tty_state (serial_t scb
,
1038 serial_ttystate new_ttystate
,
1039 serial_ttystate old_ttystate
)
1045 ser_unix_nop_print_tty_state (serial_t scb
,
1046 serial_ttystate ttystate
,
1047 struct ui_file
*stream
)
1049 /* Nothing to print. */
1054 ser_unix_nop_setbaudrate (serial_t scb
, int rate
)
1056 return 0; /* Never fails! */
1060 ser_unix_nop_setstopbits (serial_t scb
, int num
)
1062 return 0; /* Never fails! */
1066 ser_unix_write (serial_t scb
, const char *str
, int len
)
1072 cc
= write (scb
->fd
, str
, len
);
1083 ser_unix_nop_flush_output (serial_t scb
)
1089 ser_unix_flush_input (serial_t scb
)
1091 if (scb
->bufcnt
>= 0)
1094 scb
->bufp
= scb
->buf
;
1098 return SERIAL_ERROR
;
1102 ser_unix_nop_send_break (serial_t scb
)
1108 ser_unix_nop_drain_output (serial_t scb
)
1115 /* Event handling for ASYNC serial code.
1117 At any time the SERIAL device either: has an empty FIFO and is
1118 waiting on a FD event; or has a non-empty FIFO/error condition and
1119 is constantly scheduling timer events.
1121 ASYNC only stops pestering its client when it is de-async'ed or it
1122 is told to go away. */
1124 /* Value of scb->async_state: */
1126 /* >= 0 (TIMER_SCHEDULED) */
1127 /* The ID of the currently scheduled timer event. This state is
1128 rarely encountered. Timer events are one-off so as soon as the
1129 event is delivered the state is shanged to NOTHING_SCHEDULED. */
1131 /* The fd_event() handler is scheduled. It is called when ever the
1132 file descriptor becomes ready. */
1133 NOTHING_SCHEDULED
= -2
1134 /* Either no task is scheduled (just going into ASYNC mode) or a
1135 timer event has just gone off and the current state has been
1136 forced into nothing scheduled. */
1139 /* Identify and schedule the next ASYNC task based on scb->async_state
1140 and scb->buf* (the input FIFO). A state machine is used to avoid
1141 the need to make redundant calls into the event-loop - the next
1142 scheduled task is only changed when needed. */
1145 reschedule (serial_t scb
)
1147 if (SERIAL_IS_ASYNC_P (scb
))
1150 switch (scb
->async_state
)
1153 if (scb
->bufcnt
== 0)
1154 next_state
= FD_SCHEDULED
;
1157 delete_file_handler (scb
->fd
);
1158 next_state
= create_timer (0, push_event
, scb
);
1161 case NOTHING_SCHEDULED
:
1162 if (scb
->bufcnt
== 0)
1164 add_file_handler (scb
->fd
, fd_event
, scb
);
1165 next_state
= FD_SCHEDULED
;
1169 next_state
= create_timer (0, push_event
, scb
);
1172 default: /* TIMER SCHEDULED */
1173 if (scb
->bufcnt
== 0)
1175 delete_timer (scb
->async_state
);
1176 add_file_handler (scb
->fd
, fd_event
, scb
);
1177 next_state
= FD_SCHEDULED
;
1180 next_state
= scb
->async_state
;
1183 if (SERIAL_DEBUG_P (scb
))
1188 if (scb
->async_state
!= FD_SCHEDULED
)
1189 fprintf_unfiltered (gdb_stdlog
, "[fd%d->fd-scheduled]\n",
1192 default: /* TIMER SCHEDULED */
1193 if (scb
->async_state
== FD_SCHEDULED
)
1194 fprintf_unfiltered (gdb_stdlog
, "[fd%d->timer-scheduled]\n",
1199 scb
->async_state
= next_state
;
1203 /* FD_EVENT: This is scheduled when the input FIFO is empty (and there
1204 is no pending error). As soon as data arrives, it is read into the
1205 input FIFO and the client notified. The client should then drain
1206 the FIFO using readchar(). If the FIFO isn't immediatly emptied,
1207 push_event() is used to nag the client until it is. */
1210 fd_event (int error
, void *context
)
1212 serial_t scb
= context
;
1215 scb
->bufcnt
= SERIAL_ERROR
;
1217 else if (scb
->bufcnt
== 0)
1219 /* Prime the input FIFO. The readchar() function is used to
1220 pull characters out of the buffer. See also
1221 generic_readchar(). */
1225 nr
= read (scb
->fd
, scb
->buf
, BUFSIZ
);
1227 while (nr
== -1 && errno
== EINTR
);
1230 scb
->bufcnt
= SERIAL_EOF
;
1235 scb
->bufp
= scb
->buf
;
1239 scb
->bufcnt
= SERIAL_ERROR
;
1242 scb
->async_handler (scb
, scb
->async_context
);
1246 /* PUSH_EVENT: The input FIFO is non-empty (or there is a pending
1247 error). Nag the client until all the data has been read. In the
1248 case of errors, the client will need to close or de-async the
1249 device before naging stops. */
1252 push_event (void *context
)
1254 serial_t scb
= context
;
1255 scb
->async_state
= NOTHING_SCHEDULED
; /* Timers are one-off */
1256 scb
->async_handler (scb
, scb
->async_context
);
1261 /* Put the SERIAL device into/out-of ASYNC mode. */
1264 ser_unix_async (serial_t scb
,
1269 /* Force a re-schedule. */
1270 scb
->async_state
= NOTHING_SCHEDULED
;
1271 if (SERIAL_DEBUG_P (scb
))
1272 fprintf_unfiltered (gdb_stdlog
, "[fd%d->asynchronous]\n",
1278 if (SERIAL_DEBUG_P (scb
))
1279 fprintf_unfiltered (gdb_stdlog
, "[fd%d->synchronous]\n",
1281 /* De-schedule what ever tasks are currently scheduled. */
1282 switch (scb
->async_state
)
1285 delete_file_handler (scb
->fd
);
1289 default: /* TIMER SCHEDULED */
1290 delete_timer (scb
->async_state
);
1297 _initialize_ser_hardwire (void)
1299 struct serial_ops
*ops
= XMALLOC (struct serial_ops
);
1300 memset (ops
, sizeof (struct serial_ops
), 0);
1301 ops
->name
= "hardwire";
1303 ops
->open
= hardwire_open
;
1304 ops
->close
= hardwire_close
;
1305 /* FIXME: Don't replace this with the equivalent ser_unix*() until
1306 the old TERMIOS/SGTTY/... timer code has been flushed. cagney
1308 ops
->readchar
= hardwire_readchar
;
1309 ops
->write
= ser_unix_write
;
1310 ops
->flush_output
= hardwire_flush_output
;
1311 ops
->flush_input
= hardwire_flush_input
;
1312 ops
->send_break
= hardwire_send_break
;
1313 ops
->go_raw
= hardwire_raw
;
1314 ops
->get_tty_state
= hardwire_get_tty_state
;
1315 ops
->set_tty_state
= hardwire_set_tty_state
;
1316 ops
->print_tty_state
= hardwire_print_tty_state
;
1317 ops
->noflush_set_tty_state
= hardwire_noflush_set_tty_state
;
1318 ops
->setbaudrate
= hardwire_setbaudrate
;
1319 ops
->setstopbits
= hardwire_setstopbits
;
1320 ops
->drain_output
= hardwire_drain_output
;
1321 ops
->async
= ser_unix_async
;
1322 serial_add_interface (ops
);