kernel.org linux-2.6.10
[linux-2.6.git] / drivers / char / generic_serial.c
1 /*
2  *  generic_serial.c
3  *
4  *  Copyright (C) 1998/1999 R.E.Wolff@BitWizard.nl
5  *
6  *  written for the SX serial driver.
7  *     Contains the code that should be shared over all the serial drivers.
8  *
9  *  Credit for the idea to do it this way might go to Alan Cox. 
10  *
11  *
12  *  Version 0.1 -- December, 1998. Initial version.
13  *  Version 0.2 -- March, 1999.    Some more routines. Bugfixes. Etc.
14  *  Version 0.5 -- August, 1999.   Some more fixes. Reformat for Linus.
15  *
16  *  BitWizard is actively maintaining this file. We sometimes find
17  *  that someone submitted changes to this file. We really appreciate
18  *  your help, but please submit changes through us. We're doing our
19  *  best to be responsive.  -- REW
20  * */
21
22 #include <linux/module.h>
23 #include <linux/kernel.h>
24 #include <linux/tty.h>
25 #include <linux/serial.h>
26 #include <linux/mm.h>
27 #include <linux/generic_serial.h>
28 #include <linux/interrupt.h>
29 #include <linux/delay.h>
30 #include <asm/semaphore.h>
31 #include <asm/uaccess.h>
32
33 #define DEBUG 
34
35 static char *                  tmp_buf; 
36 static DECLARE_MUTEX(tmp_buf_sem);
37
38 static int gs_debug;
39
40 #ifdef DEBUG
41 #define gs_dprintk(f, str...) if (gs_debug & f) printk (str)
42 #else
43 #define gs_dprintk(f, str...) /* nothing */
44 #endif
45
46 #define func_enter() gs_dprintk (GS_DEBUG_FLOW, "gs: enter %s\n", __FUNCTION__)
47 #define func_exit()  gs_dprintk (GS_DEBUG_FLOW, "gs: exit  %s\n", __FUNCTION__)
48
49 #ifdef NEW_WRITE_LOCKING
50 #define DECL      /* Nothing */
51 #define LOCKIT    down (& port->port_write_sem);
52 #define RELEASEIT up (&port->port_write_sem);
53 #else
54 #define DECL      unsigned long flags;
55 #define LOCKIT    save_flags (flags);cli ()
56 #define RELEASEIT restore_flags (flags)
57 #endif
58
59 #define RS_EVENT_WRITE_WAKEUP   1
60
61 module_param(gs_debug, int, 0644);
62
63
64 void gs_put_char(struct tty_struct * tty, unsigned char ch)
65 {
66         struct gs_port *port;
67         DECL
68
69         func_enter (); 
70
71         if (!tty) return;
72
73         port = tty->driver_data;
74
75         if (!port) return;
76
77         if (! (port->flags & ASYNC_INITIALIZED)) return;
78
79         /* Take a lock on the serial tranmit buffer! */
80         LOCKIT;
81
82         if (port->xmit_cnt >= SERIAL_XMIT_SIZE - 1) {
83                 /* Sorry, buffer is full, drop character. Update statistics???? -- REW */
84                 RELEASEIT;
85                 return;
86         }
87
88         port->xmit_buf[port->xmit_head++] = ch;
89         port->xmit_head &= SERIAL_XMIT_SIZE - 1;
90         port->xmit_cnt++;  /* Characters in buffer */
91
92         RELEASEIT;
93         func_exit ();
94 }
95
96
97 #ifdef NEW_WRITE_LOCKING
98
99 /*
100 > Problems to take into account are:
101 >       -1- Interrupts that empty part of the buffer.
102 >       -2- page faults on the access to userspace. 
103 >       -3- Other processes that are also trying to do a "write". 
104 */
105
106 int gs_write(struct tty_struct * tty, 
107                     const unsigned char *buf, int count)
108 {
109         struct gs_port *port;
110         int c, total = 0;
111         int t;
112
113         func_enter ();
114
115         if (!tty) return 0;
116
117         port = tty->driver_data;
118
119         if (!port) return 0;
120
121         if (! (port->flags & ASYNC_INITIALIZED))
122                 return 0;
123
124         /* get exclusive "write" access to this port (problem 3) */
125         /* This is not a spinlock because we can have a disk access (page 
126                  fault) in copy_from_user */
127         down (& port->port_write_sem);
128
129         while (1) {
130
131                 c = count;
132  
133                 /* This is safe because we "OWN" the "head". Noone else can 
134                    change the "head": we own the port_write_sem. */
135                 /* Don't overrun the end of the buffer */
136                 t = SERIAL_XMIT_SIZE - port->xmit_head;
137                 if (t < c) c = t;
138  
139                 /* This is safe because the xmit_cnt can only decrease. This 
140                    would increase "t", so we might copy too little chars. */
141                 /* Don't copy past the "head" of the buffer */
142                 t = SERIAL_XMIT_SIZE - 1 - port->xmit_cnt;
143                 if (t < c) c = t;
144  
145                 /* Can't copy more? break out! */
146                 if (c <= 0) break;
147
148                 memcpy (port->xmit_buf + port->xmit_head, buf, c);
149
150                 port -> xmit_cnt += c;
151                 port -> xmit_head = (port->xmit_head + c) & (SERIAL_XMIT_SIZE -1);
152                 buf += c;
153                 count -= c;
154                 total += c;
155         }
156         up (& port->port_write_sem);
157
158         gs_dprintk (GS_DEBUG_WRITE, "write: interrupts are %s\n", 
159                     (port->flags & GS_TX_INTEN)?"enabled": "disabled"); 
160
161         if (port->xmit_cnt && 
162             !tty->stopped && 
163             !tty->hw_stopped &&
164             !(port->flags & GS_TX_INTEN)) {
165                 port->flags |= GS_TX_INTEN;
166                 port->rd->enable_tx_interrupts (port);
167         }
168         func_exit ();
169         return total;
170 }
171 #else
172 /*
173 > Problems to take into account are:
174 >       -1- Interrupts that empty part of the buffer.
175 >       -2- page faults on the access to userspace. 
176 >       -3- Other processes that are also trying to do a "write". 
177 */
178
179 int gs_write(struct tty_struct * tty,
180                     const unsigned char *buf, int count)
181 {
182         struct gs_port *port;
183         int c, total = 0;
184         int t;
185         unsigned long flags;
186
187         func_enter ();
188
189         /* The standard serial driver returns 0 in this case. 
190            That sounds to me as "No error, I just didn't get to writing any
191            bytes. Feel free to try again." 
192            The "official" way to write n bytes from buf is:
193
194                  for (nwritten = 0;nwritten < n;nwritten += rv) {
195                          rv = write (fd, buf+nwritten, n-nwritten);
196                          if (rv < 0) break; // Error: bail out. //
197                  } 
198
199            which will loop endlessly in this case. The manual page for write
200            agrees with me. In practise almost everybody writes 
201            "write (fd, buf,n);" but some people might have had to deal with 
202            incomplete writes in the past and correctly implemented it by now... 
203          */
204
205         if (!tty) return -EIO;
206
207         port = tty->driver_data;
208         if (!port || !port->xmit_buf || !tmp_buf)
209                 return -EIO;
210
211         save_flags(flags);
212         while (1) {
213                 cli();
214                 c = count;
215
216                 /* This is safe because we "OWN" the "head". Noone else can 
217                    change the "head": we own the port_write_sem. */
218                 /* Don't overrun the end of the buffer */
219                 t = SERIAL_XMIT_SIZE - port->xmit_head;
220                 if (t < c) c = t;
221
222                 /* This is safe because the xmit_cnt can only decrease. This 
223                    would increase "t", so we might copy too little chars. */
224                 /* Don't copy past the "head" of the buffer */
225                 t = SERIAL_XMIT_SIZE - 1 - port->xmit_cnt;
226                 if (t < c) c = t;
227
228                 /* Can't copy more? break out! */
229                 if (c <= 0) {
230                         restore_flags(flags);
231                         break;
232                 }
233                 memcpy(port->xmit_buf + port->xmit_head, buf, c);
234                 port->xmit_head = ((port->xmit_head + c) &
235                                    (SERIAL_XMIT_SIZE-1));
236                 port->xmit_cnt += c;
237                 restore_flags(flags);
238                 buf += c;
239                 count -= c;
240                 total += c;
241         }
242
243         if (port->xmit_cnt && 
244             !tty->stopped && 
245             !tty->hw_stopped &&
246             !(port->flags & GS_TX_INTEN)) {
247                 port->flags |= GS_TX_INTEN;
248                 port->rd->enable_tx_interrupts (port);
249         }
250         func_exit ();
251         return total;
252 }
253
254 #endif
255
256
257
258 int gs_write_room(struct tty_struct * tty)
259 {
260         struct gs_port *port = tty->driver_data;
261         int ret;
262
263         func_enter ();
264         ret = SERIAL_XMIT_SIZE - port->xmit_cnt - 1;
265         if (ret < 0)
266                 ret = 0;
267         func_exit ();
268         return ret;
269 }
270
271
272 int gs_chars_in_buffer(struct tty_struct *tty)
273 {
274         struct gs_port *port = tty->driver_data;
275         func_enter ();
276
277         func_exit ();
278         return port->xmit_cnt;
279 }
280
281
282 int gs_real_chars_in_buffer(struct tty_struct *tty)
283 {
284         struct gs_port *port;
285         func_enter ();
286
287         if (!tty) return 0;
288         port = tty->driver_data;
289
290         if (!port->rd) return 0;
291         if (!port->rd->chars_in_buffer) return 0;
292
293         func_exit ();
294         return port->xmit_cnt + port->rd->chars_in_buffer (port);
295 }
296
297
298 static int gs_wait_tx_flushed (void * ptr, int timeout) 
299 {
300         struct gs_port *port = ptr;
301         unsigned long end_jiffies;
302         int jiffies_to_transmit, charsleft = 0, rv = 0;
303         int rcib;
304
305         func_enter();
306
307         gs_dprintk (GS_DEBUG_FLUSH, "port=%p.\n", port);
308         if (port) {
309                 gs_dprintk (GS_DEBUG_FLUSH, "xmit_cnt=%x, xmit_buf=%p, tty=%p.\n", 
310                 port->xmit_cnt, port->xmit_buf, port->tty);
311         }
312
313         if (!port || port->xmit_cnt < 0 || !port->xmit_buf) {
314                 gs_dprintk (GS_DEBUG_FLUSH, "ERROR: !port, !port->xmit_buf or prot->xmit_cnt < 0.\n");
315                 func_exit();
316                 return -EINVAL;  /* This is an error which we don't know how to handle. */
317         }
318
319         rcib = gs_real_chars_in_buffer(port->tty);
320
321         if(rcib <= 0) {
322                 gs_dprintk (GS_DEBUG_FLUSH, "nothing to wait for.\n");
323                 func_exit();
324                 return rv;
325         }
326         /* stop trying: now + twice the time it would normally take +  seconds */
327         if (timeout == 0) timeout = MAX_SCHEDULE_TIMEOUT;
328         end_jiffies  = jiffies; 
329         if (timeout !=  MAX_SCHEDULE_TIMEOUT)
330                 end_jiffies += port->baud?(2 * rcib * 10 * HZ / port->baud):0;
331         end_jiffies += timeout;
332
333         gs_dprintk (GS_DEBUG_FLUSH, "now=%lx, end=%lx (%ld).\n", 
334                     jiffies, end_jiffies, end_jiffies-jiffies); 
335
336         /* the expression is actually jiffies < end_jiffies, but that won't
337            work around the wraparound. Tricky eh? */
338         while ((charsleft = gs_real_chars_in_buffer (port->tty)) &&
339                 time_after (end_jiffies, jiffies)) {
340                 /* Units check: 
341                    chars * (bits/char) * (jiffies /sec) / (bits/sec) = jiffies!
342                    check! */
343
344                 charsleft += 16; /* Allow 16 chars more to be transmitted ... */
345                 jiffies_to_transmit = port->baud?(1 + charsleft * 10 * HZ / port->baud):0;
346                 /*                                ^^^ Round up.... */
347                 if (jiffies_to_transmit <= 0) jiffies_to_transmit = 1;
348
349                 gs_dprintk (GS_DEBUG_FLUSH, "Expect to finish in %d jiffies "
350                             "(%d chars).\n", jiffies_to_transmit, charsleft); 
351
352                 msleep_interruptible(jiffies_to_msecs(jiffies_to_transmit));
353                 if (signal_pending (current)) {
354                         gs_dprintk (GS_DEBUG_FLUSH, "Signal pending. Bombing out: "); 
355                         rv = -EINTR;
356                         break;
357                 }
358         }
359
360         gs_dprintk (GS_DEBUG_FLUSH, "charsleft = %d.\n", charsleft); 
361         set_current_state (TASK_RUNNING);
362
363         func_exit();
364         return rv;
365 }
366
367
368
369 void gs_flush_buffer(struct tty_struct *tty)
370 {
371         struct gs_port *port;
372         unsigned long flags;
373
374         func_enter ();
375
376         if (!tty) return;
377
378         port = tty->driver_data;
379
380         if (!port) return;
381
382         /* XXX Would the write semaphore do? */
383         save_flags(flags); cli();
384         port->xmit_cnt = port->xmit_head = port->xmit_tail = 0;
385         restore_flags(flags);
386
387         wake_up_interruptible(&tty->write_wait);
388         tty_wakeup(tty);
389         func_exit ();
390 }
391
392
393 void gs_flush_chars(struct tty_struct * tty)
394 {
395         struct gs_port *port;
396
397         func_enter ();
398
399         if (!tty) return;
400
401         port = tty->driver_data;
402
403         if (!port) return;
404
405         if (port->xmit_cnt <= 0 || tty->stopped || tty->hw_stopped ||
406             !port->xmit_buf) {
407                 func_exit ();
408                 return;
409         }
410
411         /* Beats me -- REW */
412         port->flags |= GS_TX_INTEN;
413         port->rd->enable_tx_interrupts (port);
414         func_exit ();
415 }
416
417
418 void gs_stop(struct tty_struct * tty)
419 {
420         struct gs_port *port;
421
422         func_enter ();
423
424         if (!tty) return;
425
426         port = tty->driver_data;
427
428         if (!port) return;
429
430         if (port->xmit_cnt && 
431             port->xmit_buf && 
432             (port->flags & GS_TX_INTEN) ) {
433                 port->flags &= ~GS_TX_INTEN;
434                 port->rd->disable_tx_interrupts (port);
435         }
436         func_exit ();
437 }
438
439
440 void gs_start(struct tty_struct * tty)
441 {
442         struct gs_port *port;
443
444         if (!tty) return;
445
446         port = tty->driver_data;
447
448         if (!port) return;
449
450         if (port->xmit_cnt && 
451             port->xmit_buf && 
452             !(port->flags & GS_TX_INTEN) ) {
453                 port->flags |= GS_TX_INTEN;
454                 port->rd->enable_tx_interrupts (port);
455         }
456         func_exit ();
457 }
458
459
460 void gs_shutdown_port (struct gs_port *port)
461 {
462         unsigned long flags;
463
464         func_enter();
465         
466         if (!port) return;
467         
468         if (!(port->flags & ASYNC_INITIALIZED))
469                 return;
470
471         save_flags (flags);
472         cli ();
473
474         if (port->xmit_buf) {
475                 free_page((unsigned long) port->xmit_buf);
476                 port->xmit_buf = NULL;
477         }
478
479         if (port->tty)
480                 set_bit(TTY_IO_ERROR, &port->tty->flags);
481
482         port->rd->shutdown_port (port);
483
484         port->flags &= ~ASYNC_INITIALIZED;
485         restore_flags (flags);
486
487         func_exit();
488 }
489
490
491 void gs_hangup(struct tty_struct *tty)
492 {
493         struct gs_port   *port;
494
495         func_enter ();
496
497         if (!tty) return;
498
499         port = tty->driver_data;
500         tty = port->tty;
501         if (!tty) 
502                 return;
503
504         gs_shutdown_port (port);
505         port->flags &= ~(ASYNC_NORMAL_ACTIVE|GS_ACTIVE);
506         port->tty = NULL;
507         port->count = 0;
508
509         wake_up_interruptible(&port->open_wait);
510         func_exit ();
511 }
512
513
514 void gs_do_softint(void *private_)
515 {
516         struct gs_port *port = private_;
517         struct tty_struct *tty;
518
519         func_enter ();
520
521         if (!port) return;
522
523         tty = port->tty;
524
525         if (!tty) return;
526
527         if (test_and_clear_bit(RS_EVENT_WRITE_WAKEUP, &port->event)) {
528                 tty_wakeup(tty);
529                 wake_up_interruptible(&tty->write_wait);
530         }
531         func_exit ();
532 }
533
534
535 int gs_block_til_ready(void *port_, struct file * filp)
536 {
537         struct gs_port *port = port_;
538         DECLARE_WAITQUEUE(wait, current);
539         int    retval;
540         int    do_clocal = 0;
541         int    CD;
542         struct tty_struct *tty;
543
544         func_enter ();
545
546         if (!port) return 0;
547
548         tty = port->tty;
549
550         if (!tty) return 0;
551
552         gs_dprintk (GS_DEBUG_BTR, "Entering gs_block_till_ready.\n"); 
553         /*
554          * If the device is in the middle of being closed, then block
555          * until it's done, and then try again.
556          */
557         if (tty_hung_up_p(filp) || port->flags & ASYNC_CLOSING) {
558                 interruptible_sleep_on(&port->close_wait);
559                 if (port->flags & ASYNC_HUP_NOTIFY)
560                         return -EAGAIN;
561                 else
562                         return -ERESTARTSYS;
563         }
564
565         gs_dprintk (GS_DEBUG_BTR, "after hung up\n"); 
566
567         /*
568          * If non-blocking mode is set, or the port is not enabled,
569          * then make the check up front and then exit.
570          */
571         if ((filp->f_flags & O_NONBLOCK) ||
572             (tty->flags & (1 << TTY_IO_ERROR))) {
573                 port->flags |= ASYNC_NORMAL_ACTIVE;
574                 return 0;
575         }
576
577         gs_dprintk (GS_DEBUG_BTR, "after nonblock\n"); 
578  
579         if (C_CLOCAL(tty))
580                 do_clocal = 1;
581
582         /*
583          * Block waiting for the carrier detect and the line to become
584          * free (i.e., not in use by the callout).  While we are in
585          * this loop, port->count is dropped by one, so that
586          * rs_close() knows when to free things.  We restore it upon
587          * exit, either normal or abnormal.
588          */
589         retval = 0;
590
591         add_wait_queue(&port->open_wait, &wait);
592
593         gs_dprintk (GS_DEBUG_BTR, "after add waitq.\n"); 
594         cli();
595         if (!tty_hung_up_p(filp))
596                 port->count--;
597         sti();
598         port->blocked_open++;
599         while (1) {
600                 CD = port->rd->get_CD (port);
601                 gs_dprintk (GS_DEBUG_BTR, "CD is now %d.\n", CD);
602                 set_current_state (TASK_INTERRUPTIBLE);
603                 if (tty_hung_up_p(filp) ||
604                     !(port->flags & ASYNC_INITIALIZED)) {
605                         if (port->flags & ASYNC_HUP_NOTIFY)
606                                 retval = -EAGAIN;
607                         else
608                                 retval = -ERESTARTSYS;
609                         break;
610                 }
611                 if (!(port->flags & ASYNC_CLOSING) &&
612                     (do_clocal || CD))
613                         break;
614                 gs_dprintk (GS_DEBUG_BTR, "signal_pending is now: %d (%lx)\n", 
615                 (int)signal_pending (current), *(long*)(&current->blocked)); 
616                 if (signal_pending(current)) {
617                         retval = -ERESTARTSYS;
618                         break;
619                 }
620                 schedule();
621         }
622         gs_dprintk (GS_DEBUG_BTR, "Got out of the loop. (%d)\n",
623                     port->blocked_open);
624         set_current_state (TASK_RUNNING);
625         remove_wait_queue(&port->open_wait, &wait);
626         if (!tty_hung_up_p(filp))
627                 port->count++;
628         port->blocked_open--;
629         if (retval)
630                 return retval;
631
632         port->flags |= ASYNC_NORMAL_ACTIVE;
633         func_exit ();
634         return 0;
635 }                        
636
637
638 void gs_close(struct tty_struct * tty, struct file * filp)
639 {
640         unsigned long flags;
641         struct gs_port *port;
642         
643         func_enter ();
644
645         if (!tty) return;
646
647         port = (struct gs_port *) tty->driver_data;
648
649         if (!port) return;
650
651         if (!port->tty) {
652                 /* This seems to happen when this is called from vhangup. */
653                 gs_dprintk (GS_DEBUG_CLOSE, "gs: Odd: port->tty is NULL\n");
654                 port->tty = tty;
655         }
656
657         save_flags(flags); cli();
658
659         if (tty_hung_up_p(filp)) {
660                 restore_flags(flags);
661                 port->rd->hungup (port);
662                 func_exit ();
663                 return;
664         }
665
666         if ((tty->count == 1) && (port->count != 1)) {
667                 printk(KERN_ERR "gs: gs_close: bad port count;"
668                        " tty->count is 1, port count is %d\n", port->count);
669                 port->count = 1;
670         }
671         if (--port->count < 0) {
672                 printk(KERN_ERR "gs: gs_close: bad port count: %d\n", port->count);
673                 port->count = 0;
674         }
675         if (port->count) {
676                 gs_dprintk(GS_DEBUG_CLOSE, "gs_close: count: %d\n", port->count);
677                 restore_flags(flags);
678                 func_exit ();
679                 return;
680         }
681         port->flags |= ASYNC_CLOSING;
682
683         /*
684          * Now we wait for the transmit buffer to clear; and we notify 
685          * the line discipline to only process XON/XOFF characters.
686          */
687         tty->closing = 1;
688         /* if (port->closing_wait != ASYNC_CLOSING_WAIT_NONE)
689            tty_wait_until_sent(tty, port->closing_wait); */
690
691         /*
692          * At this point we stop accepting input.  To do this, we
693          * disable the receive line status interrupts, and tell the
694          * interrupt driver to stop checking the data ready bit in the
695          * line status register.
696          */
697
698         port->rd->disable_rx_interrupts (port);
699
700         /* close has no way of returning "EINTR", so discard return value */
701         if (port->closing_wait != ASYNC_CLOSING_WAIT_NONE)
702                 gs_wait_tx_flushed (port, port->closing_wait); 
703
704         port->flags &= ~GS_ACTIVE;
705
706         if (tty->driver->flush_buffer)
707                 tty->driver->flush_buffer(tty);
708                 
709         tty_ldisc_flush(tty);
710         tty->closing = 0;
711
712         port->event = 0;
713         port->rd->close (port);
714         port->rd->shutdown_port (port);
715         port->tty = NULL;
716
717         if (port->blocked_open) {
718                 if (port->close_delay) {
719                         msleep_interruptible(jiffies_to_msecs(port->close_delay));
720                 }
721                 wake_up_interruptible(&port->open_wait);
722         }
723         port->flags &= ~(ASYNC_NORMAL_ACTIVE|ASYNC_CLOSING | ASYNC_INITIALIZED);
724         wake_up_interruptible(&port->close_wait);
725
726         restore_flags(flags);
727         func_exit ();
728 }
729
730
731 static unsigned int     gs_baudrates[] = {
732   0, 50, 75, 110, 134, 150, 200, 300, 600, 1200, 1800, 2400, 4800,
733   9600, 19200, 38400, 57600, 115200, 230400, 460800, 921600
734 };
735
736
737 void gs_set_termios (struct tty_struct * tty, 
738                      struct termios * old_termios)
739 {
740         struct gs_port *port;
741         int baudrate, tmp, rv;
742         struct termios *tiosp;
743
744         func_enter();
745
746         if (!tty) return;
747
748         port = tty->driver_data;
749
750         if (!port) return;
751
752         tiosp = tty->termios;
753
754         if (gs_debug & GS_DEBUG_TERMIOS) {
755                 gs_dprintk (GS_DEBUG_TERMIOS, "termios structure (%p):\n", tiosp);
756         }
757
758 #if 0
759         /* This is an optimization that is only allowed for dumb cards */
760         /* Smart cards require knowledge of iflags and oflags too: that 
761            might change hardware cooking mode.... */
762 #endif
763         if (old_termios) {
764                 if(   (tiosp->c_iflag == old_termios->c_iflag)
765                    && (tiosp->c_oflag == old_termios->c_oflag)
766                    && (tiosp->c_cflag == old_termios->c_cflag)
767                    && (tiosp->c_lflag == old_termios->c_lflag)
768                    && (tiosp->c_line  == old_termios->c_line)
769                    && (memcmp(tiosp->c_cc, old_termios->c_cc, NCC) == 0)) {
770                         gs_dprintk(GS_DEBUG_TERMIOS, "gs_set_termios: optimized away\n");
771                         return /* 0 */;
772                 }
773         } else 
774                 gs_dprintk(GS_DEBUG_TERMIOS, "gs_set_termios: no old_termios: "
775                            "no optimization\n");
776
777         if(old_termios && (gs_debug & GS_DEBUG_TERMIOS)) {
778                 if(tiosp->c_iflag != old_termios->c_iflag)  printk("c_iflag changed\n");
779                 if(tiosp->c_oflag != old_termios->c_oflag)  printk("c_oflag changed\n");
780                 if(tiosp->c_cflag != old_termios->c_cflag)  printk("c_cflag changed\n");
781                 if(tiosp->c_lflag != old_termios->c_lflag)  printk("c_lflag changed\n");
782                 if(tiosp->c_line  != old_termios->c_line)   printk("c_line changed\n");
783                 if(!memcmp(tiosp->c_cc, old_termios->c_cc, NCC)) printk("c_cc changed\n");
784         }
785
786         baudrate = tiosp->c_cflag & CBAUD;
787         if (baudrate & CBAUDEX) {
788                 baudrate &= ~CBAUDEX;
789                 if ((baudrate < 1) || (baudrate > 4))
790                         tiosp->c_cflag &= ~CBAUDEX;
791                 else
792                         baudrate += 15;
793         }
794
795         baudrate = gs_baudrates[baudrate];
796         if ((tiosp->c_cflag & CBAUD) == B38400) {
797                 if (     (port->flags & ASYNC_SPD_MASK) == ASYNC_SPD_HI)
798                         baudrate = 57600;
799                 else if ((port->flags & ASYNC_SPD_MASK) == ASYNC_SPD_VHI)
800                         baudrate = 115200;
801                 else if ((port->flags & ASYNC_SPD_MASK) == ASYNC_SPD_SHI)
802                         baudrate = 230400;
803                 else if ((port->flags & ASYNC_SPD_MASK) == ASYNC_SPD_WARP)
804                         baudrate = 460800;
805                 else if ((port->flags & ASYNC_SPD_MASK) == ASYNC_SPD_CUST)
806                         baudrate = (port->baud_base / port->custom_divisor);
807         }
808
809         /* I recommend using THIS instead of the mess in termios (and
810            duplicating the above code). Next we should create a clean
811            interface towards this variable. If your card supports arbitrary
812            baud rates, (e.g. CD1400 or 16550 based cards) then everything
813            will be very easy..... */
814         port->baud = baudrate;
815
816         /* Two timer ticks seems enough to wakeup something like SLIP driver */
817         /* Baudrate/10 is cps. Divide by HZ to get chars per tick. */
818         tmp = (baudrate / 10 / HZ) * 2;                  
819
820         if (tmp <                 0) tmp = 0;
821         if (tmp >= SERIAL_XMIT_SIZE) tmp = SERIAL_XMIT_SIZE-1;
822
823         port->wakeup_chars = tmp;
824
825         /* We should really wait for the characters to be all sent before
826            changing the settings. -- CAL */
827         rv = gs_wait_tx_flushed (port, MAX_SCHEDULE_TIMEOUT);
828         if (rv < 0) return /* rv */;
829
830         rv = port->rd->set_real_termios(port);
831         if (rv < 0) return /* rv */;
832
833         if ((!old_termios || 
834              (old_termios->c_cflag & CRTSCTS)) &&
835             !(      tiosp->c_cflag & CRTSCTS)) {
836                 tty->stopped = 0;
837                 gs_start(tty);
838         }
839
840 #ifdef tytso_patch_94Nov25_1726
841         /* This "makes sense", Why is it commented out? */
842
843         if (!(old_termios->c_cflag & CLOCAL) &&
844             (tty->termios->c_cflag & CLOCAL))
845                 wake_up_interruptible(&info->open_wait);
846 #endif
847
848         func_exit();
849         return /* 0 */;
850 }
851
852
853
854 /* Must be called with interrupts enabled */
855 int gs_init_port(struct gs_port *port)
856 {
857         unsigned long flags;
858         unsigned long page;
859
860         save_flags (flags);
861         if (!tmp_buf) {
862                 page = get_zeroed_page(GFP_KERNEL);
863
864                 cli (); /* Don't expect this to make a difference. */ 
865                 if (tmp_buf)
866                         free_page(page);
867                 else
868                         tmp_buf = (unsigned char *) page;
869                 restore_flags (flags);
870
871                 if (!tmp_buf) {
872                         return -ENOMEM;
873                 }
874         }
875
876         if (port->flags & ASYNC_INITIALIZED)
877                 return 0;
878
879         if (!port->xmit_buf) {
880                 /* We may sleep in get_zeroed_page() */
881                 unsigned long tmp;
882
883                 tmp = get_zeroed_page(GFP_KERNEL);
884
885                 /* Spinlock? */
886                 cli ();
887                 if (port->xmit_buf) 
888                         free_page (tmp);
889                 else
890                         port->xmit_buf = (unsigned char *) tmp;
891                 restore_flags (flags);
892
893                 if (!port->xmit_buf)
894                         return -ENOMEM;
895         }
896
897         cli();
898
899         if (port->tty) 
900                 clear_bit(TTY_IO_ERROR, &port->tty->flags);
901
902         port->xmit_cnt = port->xmit_head = port->xmit_tail = 0;
903
904         gs_set_termios(port->tty, NULL);
905
906         port->flags |= ASYNC_INITIALIZED;
907         port->flags &= ~GS_TX_INTEN;
908
909         restore_flags(flags);
910         return 0;
911 }
912
913
914 int gs_setserial(struct gs_port *port, struct serial_struct __user *sp)
915 {
916         struct serial_struct sio;
917
918         if (copy_from_user(&sio, sp, sizeof(struct serial_struct)))
919                 return(-EFAULT);
920
921         if (!capable(CAP_SYS_ADMIN)) {
922                 if ((sio.baud_base != port->baud_base) ||
923                     (sio.close_delay != port->close_delay) ||
924                     ((sio.flags & ~ASYNC_USR_MASK) !=
925                      (port->flags & ~ASYNC_USR_MASK)))
926                         return(-EPERM);
927         } 
928
929         port->flags = (port->flags & ~ASYNC_USR_MASK) |
930                 (sio.flags & ASYNC_USR_MASK);
931   
932         port->baud_base = sio.baud_base;
933         port->close_delay = sio.close_delay;
934         port->closing_wait = sio.closing_wait;
935         port->custom_divisor = sio.custom_divisor;
936
937         gs_set_termios (port->tty, NULL);
938
939         return 0;
940 }
941
942
943 /*****************************************************************************/
944
945 /*
946  *      Generate the serial struct info.
947  */
948
949 int gs_getserial(struct gs_port *port, struct serial_struct __user *sp)
950 {
951         struct serial_struct    sio;
952
953         memset(&sio, 0, sizeof(struct serial_struct));
954         sio.flags = port->flags;
955         sio.baud_base = port->baud_base;
956         sio.close_delay = port->close_delay;
957         sio.closing_wait = port->closing_wait;
958         sio.custom_divisor = port->custom_divisor;
959         sio.hub6 = 0;
960
961         /* If you want you can override these. */
962         sio.type = PORT_UNKNOWN;
963         sio.xmit_fifo_size = -1;
964         sio.line = -1;
965         sio.port = -1;
966         sio.irq = -1;
967
968         if (port->rd->getserial)
969                 port->rd->getserial (port, &sio);
970
971         if (copy_to_user(sp, &sio, sizeof(struct serial_struct)))
972                 return -EFAULT;
973         return 0;
974
975 }
976
977
978 void gs_got_break(struct gs_port *port)
979 {
980         if (port->flags & ASYNC_SAK) {
981                 do_SAK (port->tty);
982         }
983         *(port->tty->flip.flag_buf_ptr) = TTY_BREAK;
984         port->tty->flip.flag_buf_ptr++;
985         port->tty->flip.char_buf_ptr++;
986         port->tty->flip.count++;
987 }
988
989
990 EXPORT_SYMBOL(gs_put_char);
991 EXPORT_SYMBOL(gs_write);
992 EXPORT_SYMBOL(gs_write_room);
993 EXPORT_SYMBOL(gs_chars_in_buffer);
994 EXPORT_SYMBOL(gs_flush_buffer);
995 EXPORT_SYMBOL(gs_flush_chars);
996 EXPORT_SYMBOL(gs_stop);
997 EXPORT_SYMBOL(gs_start);
998 EXPORT_SYMBOL(gs_hangup);
999 EXPORT_SYMBOL(gs_do_softint);
1000 EXPORT_SYMBOL(gs_block_til_ready);
1001 EXPORT_SYMBOL(gs_close);
1002 EXPORT_SYMBOL(gs_set_termios);
1003 EXPORT_SYMBOL(gs_init_port);
1004 EXPORT_SYMBOL(gs_setserial);
1005 EXPORT_SYMBOL(gs_getserial);
1006 EXPORT_SYMBOL(gs_got_break);
1007
1008 MODULE_LICENSE("GPL");