* configure.in: Add config for Lynx target. Configure gdbserver
[deliverable/binutils-gdb.git] / gdb / ser-unix.c
CommitLineData
4e772f44
SG
1/* Serial interface for local (hardwired) serial ports on Un*x like systems
2 Copyright 1992, 1993 Free Software Foundation, Inc.
3
4This file is part of GDB.
5
6This program is free software; you can redistribute it and/or modify
7it under the terms of the GNU General Public License as published by
8the Free Software Foundation; either version 2 of the License, or
9(at your option) any later version.
10
11This program is distributed in the hope that it will be useful,
12but WITHOUT ANY WARRANTY; without even the implied warranty of
13MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14GNU General Public License for more details.
15
16You should have received a copy of the GNU General Public License
17along with this program; if not, write to the Free Software
18Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */
19
20#include "defs.h"
21#include "serial.h"
22#include <fcntl.h>
23#include <sys/types.h>
24#include <sys/time.h>
25
26#if !defined (HAVE_TERMIOS) && !defined (HAVE_TERMIO) && !defined (HAVE_SGTTY)
27#define HAVE_SGTTY
28#endif
29
30#ifdef HAVE_TERMIOS
31#include <termios.h>
32#include <unistd.h>
33#endif
34#ifdef HAVE_TERMIO
ebd99d54 35#include <termio.h>
4e772f44
SG
36#endif
37#ifdef HAVE_SGTTY
38#include <sgtty.h>
39#endif
40
9775789d
SG
41static int hardwire_open PARAMS ((serial_t scb, const char *name));
42static void hardwire_raw PARAMS ((serial_t scb));
43static int wait_for PARAMS ((serial_t scb, int timeout));
44static int hardwire_readchar PARAMS ((serial_t scb, int timeout));
45static int rate_to_code PARAMS ((int rate));
46static int hardwire_setbaudrate PARAMS ((serial_t scb, int rate));
47static int hardwire_write PARAMS ((serial_t scb, const char *str, int len));
48static void hardwire_restore PARAMS ((serial_t scb));
49static void hardwire_close PARAMS ((serial_t scb));
50
4e772f44
SG
51/* Open up a real live device for serial I/O */
52
53static int
54hardwire_open(scb, name)
55 serial_t scb;
56 const char *name;
57{
58 scb->fd = open (name, O_RDWR);
59 if (scb->fd < 0)
4febd102 60 return -1;
4e772f44
SG
61
62 return 0;
63}
64
65static void
66hardwire_raw(scb)
67 serial_t scb;
68{
69#ifdef HAVE_TERMIOS
70 struct termios termios;
71
72 if (tcgetattr(scb->fd, &termios))
73 {
74 fprintf(stderr, "tcgetattr failed: %s\n", safe_strerror(errno));
75 }
76
77 termios.c_iflag = 0;
78 termios.c_oflag = 0;
79 termios.c_lflag = 0;
80 termios.c_cflag &= ~(CSIZE|PARENB);
81 termios.c_cflag |= CS8;
82 termios.c_cc[VMIN] = 0;
83 termios.c_cc[VTIME] = 0;
84
85 if (tcsetattr(scb->fd, TCSANOW, &termios))
86 {
87 fprintf(stderr, "tcsetattr failed: %s\n", safe_strerror(errno));
88 }
89#endif
90
91#ifdef HAVE_TERMIO
92 struct termio termio;
93
94 if (ioctl (scb->fd, TCGETA, &termio))
95 {
96 fprintf(stderr, "TCGETA failed: %s\n", safe_strerror(errno));
97 }
98
99 termio.c_iflag = 0;
100 termio.c_oflag = 0;
101 termio.c_lflag = 0;
102 termio.c_cflag &= ~(CSIZE|PARENB);
103 termio.c_cflag |= CS8;
104 termio.c_cc[VMIN] = 0;
105 termio.c_cc[VTIME] = 0;
106
107 if (ioctl (scb->fd, TCSETA, &termio))
108 {
109 fprintf(stderr, "TCSETA failed: %s\n", safe_strerror(errno));
110 }
111#endif
112
113#ifdef HAVE_SGTTY
114 struct sgttyb sgttyb;
115
116 if (ioctl (scb->fd, TIOCGETP, &sgttyb))
117 fprintf(stderr, "TIOCGETP failed: %s\n", safe_strerror(errno));
118
119 sgttyb.sg_flags |= RAW | ANYP;
120 sgttyb.sg_flags &= ~(CBREAK | ECHO);
121
122 if (ioctl (scb->fd, TIOCSETP, &sgttyb))
123 fprintf(stderr, "TIOCSETP failed: %s\n", safe_strerror(errno));
124#endif
9e15da4a
SG
125
126 scb->current_timeout = 0;
4e772f44
SG
127}
128
9e15da4a
SG
129/* Wait for input on scb, with timeout seconds. Returns 0 on success,
130 otherwise SERIAL_TIMEOUT or SERIAL_ERROR.
131
132 For termio{s}, we actually just setup VTIME if necessary, and let the
133 timeout occur in the read() in hardwire_read().
134 */
4e772f44
SG
135
136static int
9775789d 137wait_for(scb, timeout)
4e772f44
SG
138 serial_t scb;
139 int timeout;
140{
9775789d 141 int numfds;
4e772f44 142
9775789d
SG
143#ifdef HAVE_SGTTY
144 struct timeval tv;
145 fd_set readfds;
eca29634 146
9775789d 147 FD_ZERO (&readfds);
eca29634 148
9775789d
SG
149 tv.tv_sec = timeout;
150 tv.tv_usec = 0;
eca29634 151
9775789d 152 FD_SET(scb->fd, &readfds);
eca29634 153
9775789d
SG
154 if (timeout >= 0)
155 numfds = select(scb->fd+1, &readfds, 0, 0, &tv);
156 else
157 numfds = select(scb->fd+1, &readfds, 0, 0, 0);
4e772f44 158
9e15da4a
SG
159 if (numfds <= 0)
160 if (numfds == 0)
161 return SERIAL_TIMEOUT;
162 else
163 return SERIAL_ERROR; /* Got an error from select or poll */
164
165 return 0;
166
9775789d 167#endif /* HAVE_SGTTY */
4e772f44 168
9775789d 169#if defined HAVE_TERMIO || defined HAVE_TERMIOS
9e15da4a
SG
170 if (timeout == scb->current_timeout)
171 return 0;
4e772f44 172
9e15da4a
SG
173 {
174#ifdef HAVE_TERMIOS
175 struct termios termios;
4e772f44 176
9e15da4a
SG
177 if (tcgetattr(scb->fd, &termios))
178 fprintf(stderr, "wait_for() tcgetattr failed: %s\n", safe_strerror(errno));
eca29634 179
9e15da4a 180 termios.c_cc[VTIME] = timeout * 10;
eca29634 181
9e15da4a
SG
182 if (tcsetattr(scb->fd, TCSANOW, &termios))
183 fprintf(stderr, "wait_for() tcsetattr failed: %s\n", safe_strerror(errno));
184#endif /* HAVE_TERMIOS */
9775789d 185
9e15da4a
SG
186#ifdef HAVE_TERMIO
187 struct termio termio;
188
189 if (ioctl (scb->fd, TCGETA, &termio))
190 fprintf(stderr, "wait_for() TCGETA failed: %s\n", safe_strerror(errno));
191
192 termio.c_cc[VTIME] = timeout * 10;
193
194 if (ioctl (scb->fd, TCSETA, &termio))
195 fprintf(stderr, "TCSETA failed: %s\n", safe_strerror(errno));
196#endif /* HAVE_TERMIO */
197
198 scb->current_timeout = timeout;
199 return 0;
200 }
201#endif /* HAVE_TERMIO || HAVE_TERMIOS */
9775789d
SG
202}
203
204/* Read a character with user-specified timeout. TIMEOUT is number of seconds
205 to wait, or -1 to wait forever. Use timeout of 0 to effect a poll. Returns
206 char if successful. Returns -2 if timeout expired, EOF if line dropped
207 dead, or -3 for any other error (see errno in that case). */
208
209static int
210hardwire_readchar(scb, timeout)
211 serial_t scb;
212 int timeout;
213{
214 int status;
215
216 if (scb->bufcnt-- > 0)
217 return *scb->bufp++;
218
219 status = wait_for(scb, timeout);
220
221 if (status < 0)
222 return status;
4e772f44 223
9775789d 224 scb->bufcnt = read(scb->fd, scb->buf, BUFSIZ);
4e772f44
SG
225
226 if (scb->bufcnt <= 0)
227 if (scb->bufcnt == 0)
9e15da4a
SG
228 return SERIAL_TIMEOUT; /* 0 chars means timeout [may need to
229 distinguish between EOF & timeouts
230 someday] */
4e772f44 231 else
4febd102 232 return SERIAL_ERROR; /* Got an error from read */
4e772f44
SG
233
234 scb->bufcnt--;
235 scb->bufp = scb->buf;
236 return *scb->bufp++;
237}
238
239#ifndef B19200
240#define B19200 EXTA
241#endif
242
243#ifndef B38400
244#define B38400 EXTB
245#endif
246
247/* Translate baud rates from integers to damn B_codes. Unix should
248 have outgrown this crap years ago, but even POSIX wouldn't buck it. */
249
250static struct
251{
252 int rate;
253 int code;
254}
255baudtab[] =
256{
257 {50, B50},
258 {75, B75},
259 {110, B110},
260 {134, B134},
261 {150, B150},
262 {200, B200},
263 {300, B300},
264 {600, B600},
265 {1200, B1200},
266 {1800, B1800},
267 {2400, B2400},
268 {4800, B4800},
269 {9600, B9600},
270 {19200, B19200},
271 {38400, B38400},
272 {-1, -1},
273};
274
275static int
276rate_to_code(rate)
277 int rate;
278{
279 int i;
280
281 for (i = 0; baudtab[i].rate != -1; i++)
282 if (rate == baudtab[i].rate)
283 return baudtab[i].code;
284
285 return -1;
286}
287
288static int
289hardwire_setbaudrate(scb, rate)
290 serial_t scb;
291 int rate;
292{
293#ifdef HAVE_TERMIOS
294 struct termios termios;
295
296 if (tcgetattr (scb->fd, &termios))
4febd102 297 return -1;
4e772f44
SG
298
299 cfsetospeed (&termios, rate_to_code (rate));
300 cfsetispeed (&termios, rate_to_code (rate));
301
302 if (tcsetattr (scb->fd, TCSANOW, &termios))
4febd102 303 return -1;
4e772f44
SG
304#endif
305
306#ifdef HAVE_TERMIO
307 struct termio termio;
308
309 if (ioctl (scb->fd, TCGETA, &termio))
4febd102 310 return -1;
4e772f44
SG
311
312#ifndef CIBAUD
313#define CIBAUD CBAUD
314#endif
315
316 termio.c_cflag &= ~(CBAUD | CIBAUD);
317 termio.c_cflag |= rate_to_code (rate);
318
319 if (ioctl (scb->fd, TCSETA, &termio))
4febd102 320 return -1;
4e772f44
SG
321#endif
322
323#ifdef HAVE_SGTTY
324 struct sgttyb sgttyb;
325
326 if (ioctl (scb->fd, TIOCGETP, &sgttyb))
4febd102 327 return -1;
4e772f44
SG
328
329 sgttyb.sg_ispeed = rate_to_code (rate);
330 sgttyb.sg_ospeed = rate_to_code (rate);
331
332 if (ioctl (scb->fd, TIOCSETP, &sgttyb))
4febd102 333 return -1;
4e772f44 334#endif
4febd102 335 return 0;
4e772f44
SG
336}
337
338static int
339hardwire_write(scb, str, len)
340 serial_t scb;
341 const char *str;
342 int len;
343{
344 int cc;
345
346 while (len > 0)
347 {
348 cc = write(scb->fd, str, len);
349
350 if (cc < 0)
351 return 1;
352 len -= cc;
353 str += cc;
354 }
355 return 0;
356}
357
358static void
359hardwire_restore(scb)
360 serial_t scb;
361{
362}
363
364static void
365hardwire_close(scb)
366 serial_t scb;
367{
368 if (scb->fd < 0)
369 return;
370
4e772f44
SG
371 close(scb->fd);
372 scb->fd = -1;
373}
374
375static struct serial_ops hardwire_ops =
376{
377 "hardwire",
378 0,
379 hardwire_open,
380 hardwire_close,
381 hardwire_readchar,
382 hardwire_write,
383 hardwire_raw,
384 hardwire_restore,
385 hardwire_setbaudrate
386};
387
9775789d 388void
4e772f44
SG
389_initialize_ser_hardwire ()
390{
391 serial_add_interface (&hardwire_ops);
392}
This page took 0.047599 seconds and 4 git commands to generate.