]> git.proxmox.com Git - mirror_ubuntu-artful-kernel.git/blame - drivers/tty/amiserial.c
TTY: amiserial, stop using serial_state->{irq,type,line}
[mirror_ubuntu-artful-kernel.git] / drivers / tty / amiserial.c
CommitLineData
1da177e4 1/*
1da177e4
LT
2 * Serial driver for the amiga builtin port.
3 *
4 * This code was created by taking serial.c version 4.30 from kernel
5 * release 2.3.22, replacing all hardware related stuff with the
6 * corresponding amiga hardware actions, and removing all irrelevant
7 * code. As a consequence, it uses many of the constants and names
8 * associated with the registers and bits of 16550 compatible UARTS -
9 * but only to keep track of status, etc in the state variables. It
10 * was done this was to make it easier to keep the code in line with
11 * (non hardware specific) changes to serial.c.
12 *
13 * The port is registered with the tty driver as minor device 64, and
14 * therefore other ports should should only use 65 upwards.
15 *
16 * Richard Lucock 28/12/99
17 *
18 * Copyright (C) 1991, 1992 Linus Torvalds
19 * Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997,
20 * 1998, 1999 Theodore Ts'o
21 *
22 */
23
24/*
25 * Serial driver configuration section. Here are the various options:
26 *
27 * SERIAL_PARANOIA_CHECK
28 * Check the magic number for the async_structure where
29 * ever possible.
30 */
31
1da177e4
LT
32#include <linux/delay.h>
33
34#undef SERIAL_PARANOIA_CHECK
35#define SERIAL_DO_RESTART
36
37/* Set of debugging defines */
38
39#undef SERIAL_DEBUG_INTR
40#undef SERIAL_DEBUG_OPEN
41#undef SERIAL_DEBUG_FLOW
42#undef SERIAL_DEBUG_RS_WAIT_UNTIL_SENT
43
44/* Sanity checks */
45
1da177e4
LT
46#if defined(MODULE) && defined(SERIAL_DEBUG_MCOUNT)
47#define DBG_CNT(s) printk("(%s): [%x] refc=%d, serc=%d, ttyc=%d -> %s\n", \
01bd730d 48 tty->name, (info->tport.flags), serial_driver->refcount,info->count,tty->count,s)
1da177e4
LT
49#else
50#define DBG_CNT(s)
51#endif
52
53/*
54 * End of serial driver configuration section.
55 */
56
57#include <linux/module.h>
58
59#include <linux/types.h>
60#include <linux/serial.h>
61#include <linux/serialP.h>
62#include <linux/serial_reg.h>
63static char *serial_version = "4.30";
64
65#include <linux/errno.h>
66#include <linux/signal.h>
67#include <linux/sched.h>
68#include <linux/kernel.h>
69#include <linux/timer.h>
70#include <linux/interrupt.h>
71#include <linux/tty.h>
72#include <linux/tty_flip.h>
73#include <linux/console.h>
74#include <linux/major.h>
75#include <linux/string.h>
76#include <linux/fcntl.h>
77#include <linux/ptrace.h>
78#include <linux/ioport.h>
79#include <linux/mm.h>
d594027d 80#include <linux/seq_file.h>
1da177e4
LT
81#include <linux/slab.h>
82#include <linux/init.h>
83#include <linux/bitops.h>
826e8c8c 84#include <linux/platform_device.h>
1da177e4
LT
85
86#include <asm/setup.h>
87
88#include <asm/system.h>
89
90#include <asm/irq.h>
91
92#include <asm/amigahw.h>
93#include <asm/amigaints.h>
94
b4290a23 95#define custom amiga_custom
1da177e4
LT
96static char *serial_name = "Amiga-builtin serial driver";
97
98static struct tty_driver *serial_driver;
99
100/* number of characters left in xmit buffer before we ask for more */
101#define WAKEUP_CHARS 256
102
1da177e4
LT
103static unsigned char current_ctl_bits;
104
588993dd
JS
105static void change_speed(struct tty_struct *tty, struct serial_state *info,
106 struct ktermios *old);
1da177e4
LT
107static void rs_wait_until_sent(struct tty_struct *tty, int timeout);
108
109
110static struct serial_state rs_table[1];
111
fe971071 112#define NR_PORTS ARRAY_SIZE(rs_table)
1da177e4 113
1da177e4
LT
114#include <asm/uaccess.h>
115
116#define serial_isroot() (capable(CAP_SYS_ADMIN))
117
118
916b7656 119static inline int serial_paranoia_check(struct serial_state *info,
1da177e4
LT
120 char *name, const char *routine)
121{
122#ifdef SERIAL_PARANOIA_CHECK
123 static const char *badmagic =
124 "Warning: bad magic number for serial struct (%s) in %s\n";
125 static const char *badinfo =
126 "Warning: null async_struct for (%s) in %s\n";
127
128 if (!info) {
129 printk(badinfo, name, routine);
130 return 1;
131 }
132 if (info->magic != SERIAL_MAGIC) {
133 printk(badmagic, name, routine);
134 return 1;
135 }
136#endif
137 return 0;
138}
139
140/* some serial hardware definitions */
141#define SDR_OVRUN (1<<15)
142#define SDR_RBF (1<<14)
143#define SDR_TBE (1<<13)
144#define SDR_TSRE (1<<12)
145
146#define SERPER_PARENB (1<<15)
147
148#define AC_SETCLR (1<<15)
149#define AC_UARTBRK (1<<11)
150
151#define SER_DTR (1<<7)
152#define SER_RTS (1<<6)
153#define SER_DCD (1<<5)
154#define SER_CTS (1<<4)
155#define SER_DSR (1<<3)
156
157static __inline__ void rtsdtr_ctrl(int bits)
158{
159 ciab.pra = ((bits & (SER_RTS | SER_DTR)) ^ (SER_RTS | SER_DTR)) | (ciab.pra & ~(SER_RTS | SER_DTR));
160}
161
162/*
163 * ------------------------------------------------------------
164 * rs_stop() and rs_start()
165 *
166 * This routines are called before setting or resetting tty->stopped.
167 * They enable or disable transmitter interrupts, as necessary.
168 * ------------------------------------------------------------
169 */
170static void rs_stop(struct tty_struct *tty)
171{
916b7656 172 struct serial_state *info = tty->driver_data;
1da177e4
LT
173 unsigned long flags;
174
175 if (serial_paranoia_check(info, tty->name, "rs_stop"))
176 return;
177
178 local_irq_save(flags);
179 if (info->IER & UART_IER_THRI) {
180 info->IER &= ~UART_IER_THRI;
181 /* disable Tx interrupt and remove any pending interrupts */
182 custom.intena = IF_TBE;
183 mb();
184 custom.intreq = IF_TBE;
185 mb();
186 }
187 local_irq_restore(flags);
188}
189
190static void rs_start(struct tty_struct *tty)
191{
916b7656 192 struct serial_state *info = tty->driver_data;
1da177e4
LT
193 unsigned long flags;
194
195 if (serial_paranoia_check(info, tty->name, "rs_start"))
196 return;
197
198 local_irq_save(flags);
199 if (info->xmit.head != info->xmit.tail
200 && info->xmit.buf
201 && !(info->IER & UART_IER_THRI)) {
202 info->IER |= UART_IER_THRI;
203 custom.intena = IF_SETCLR | IF_TBE;
204 mb();
205 /* set a pending Tx Interrupt, transmitter should restart now */
206 custom.intreq = IF_SETCLR | IF_TBE;
207 mb();
208 }
209 local_irq_restore(flags);
210}
211
212/*
213 * ----------------------------------------------------------------------
214 *
215 * Here starts the interrupt handling routines. All of the following
216 * subroutines are declared as inline and are folded into
217 * rs_interrupt(). They were separated out for readability's sake.
218 *
219 * Note: rs_interrupt() is a "fast" interrupt, which means that it
220 * runs with interrupts turned off. People who may want to modify
221 * rs_interrupt() should try to keep the interrupt handler as fast as
222 * possible. After you are done making modifications, it is not a bad
223 * idea to do:
224 *
225 * gcc -S -DKERNEL -Wall -Wstrict-prototypes -O6 -fomit-frame-pointer serial.c
226 *
227 * and look at the resulting assemble code in serial.s.
228 *
229 * - Ted Ts'o (tytso@mit.edu), 7-Mar-93
230 * -----------------------------------------------------------------------
231 */
232
916b7656 233static void receive_chars(struct serial_state *info)
1da177e4
LT
234{
235 int status;
236 int serdatr;
87758791 237 struct tty_struct *tty = info->tport.tty;
33f0f88f 238 unsigned char ch, flag;
1da177e4 239 struct async_icount *icount;
33f0f88f 240 int oe = 0;
1da177e4 241
916b7656 242 icount = &info->icount;
1da177e4
LT
243
244 status = UART_LSR_DR; /* We obviously have a character! */
245 serdatr = custom.serdatr;
246 mb();
247 custom.intreq = IF_RBF;
248 mb();
249
250 if((serdatr & 0x1ff) == 0)
251 status |= UART_LSR_BI;
252 if(serdatr & SDR_OVRUN)
253 status |= UART_LSR_OE;
254
255 ch = serdatr & 0xff;
1da177e4
LT
256 icount->rx++;
257
258#ifdef SERIAL_DEBUG_INTR
259 printk("DR%02x:%02x...", ch, status);
260#endif
33f0f88f 261 flag = TTY_NORMAL;
1da177e4
LT
262
263 /*
264 * We don't handle parity or frame errors - but I have left
265 * the code in, since I'm not sure that the errors can't be
266 * detected.
267 */
268
269 if (status & (UART_LSR_BI | UART_LSR_PE |
270 UART_LSR_FE | UART_LSR_OE)) {
271 /*
272 * For statistics only
273 */
274 if (status & UART_LSR_BI) {
275 status &= ~(UART_LSR_FE | UART_LSR_PE);
276 icount->brk++;
277 } else if (status & UART_LSR_PE)
278 icount->parity++;
279 else if (status & UART_LSR_FE)
280 icount->frame++;
281 if (status & UART_LSR_OE)
282 icount->overrun++;
283
284 /*
285 * Now check to see if character should be
286 * ignored, and mask off conditions which
287 * should be ignored.
288 */
289 if (status & info->ignore_status_mask)
33f0f88f 290 goto out;
1da177e4
LT
291
292 status &= info->read_status_mask;
293
294 if (status & (UART_LSR_BI)) {
295#ifdef SERIAL_DEBUG_INTR
296 printk("handling break....");
297#endif
33f0f88f 298 flag = TTY_BREAK;
01bd730d 299 if (info->tport.flags & ASYNC_SAK)
1da177e4
LT
300 do_SAK(tty);
301 } else if (status & UART_LSR_PE)
33f0f88f 302 flag = TTY_PARITY;
1da177e4 303 else if (status & UART_LSR_FE)
33f0f88f 304 flag = TTY_FRAME;
1da177e4
LT
305 if (status & UART_LSR_OE) {
306 /*
307 * Overrun is special, since it's
308 * reported immediately, and doesn't
309 * affect the current character
310 */
33f0f88f 311 oe = 1;
1da177e4
LT
312 }
313 }
33f0f88f
AC
314 tty_insert_flip_char(tty, ch, flag);
315 if (oe == 1)
316 tty_insert_flip_char(tty, 0, TTY_OVERRUN);
1da177e4 317 tty_flip_buffer_push(tty);
33f0f88f
AC
318out:
319 return;
1da177e4
LT
320}
321
916b7656 322static void transmit_chars(struct serial_state *info)
1da177e4
LT
323{
324 custom.intreq = IF_TBE;
325 mb();
326 if (info->x_char) {
327 custom.serdat = info->x_char | 0x100;
328 mb();
916b7656 329 info->icount.tx++;
1da177e4
LT
330 info->x_char = 0;
331 return;
332 }
333 if (info->xmit.head == info->xmit.tail
87758791
JS
334 || info->tport.tty->stopped
335 || info->tport.tty->hw_stopped) {
1da177e4
LT
336 info->IER &= ~UART_IER_THRI;
337 custom.intena = IF_TBE;
338 mb();
339 return;
340 }
341
342 custom.serdat = info->xmit.buf[info->xmit.tail++] | 0x100;
343 mb();
344 info->xmit.tail = info->xmit.tail & (SERIAL_XMIT_SIZE-1);
916b7656 345 info->icount.tx++;
1da177e4
LT
346
347 if (CIRC_CNT(info->xmit.head,
348 info->xmit.tail,
349 SERIAL_XMIT_SIZE) < WAKEUP_CHARS)
87758791 350 tty_wakeup(info->tport.tty);
1da177e4
LT
351
352#ifdef SERIAL_DEBUG_INTR
353 printk("THRE...");
354#endif
355 if (info->xmit.head == info->xmit.tail) {
356 custom.intena = IF_TBE;
357 mb();
358 info->IER &= ~UART_IER_THRI;
359 }
360}
361
916b7656 362static void check_modem_status(struct serial_state *info)
1da177e4 363{
7188dc20 364 struct tty_port *port = &info->tport;
1da177e4
LT
365 unsigned char status = ciab.pra & (SER_DCD | SER_CTS | SER_DSR);
366 unsigned char dstatus;
367 struct async_icount *icount;
368
369 /* Determine bits that have changed */
370 dstatus = status ^ current_ctl_bits;
371 current_ctl_bits = status;
372
373 if (dstatus) {
916b7656 374 icount = &info->icount;
1da177e4
LT
375 /* update input line counters */
376 if (dstatus & SER_DSR)
377 icount->dsr++;
378 if (dstatus & SER_DCD) {
379 icount->dcd++;
380#ifdef CONFIG_HARD_PPS
7188dc20 381 if ((port->flags & ASYNC_HARDPPS_CD) &&
1da177e4
LT
382 !(status & SER_DCD))
383 hardpps();
384#endif
385 }
386 if (dstatus & SER_CTS)
387 icount->cts++;
7188dc20 388 wake_up_interruptible(&port->delta_msr_wait);
1da177e4
LT
389 }
390
7188dc20 391 if ((port->flags & ASYNC_CHECK_CD) && (dstatus & SER_DCD)) {
1da177e4
LT
392#if (defined(SERIAL_DEBUG_OPEN) || defined(SERIAL_DEBUG_INTR))
393 printk("ttyS%d CD now %s...", info->line,
394 (!(status & SER_DCD)) ? "on" : "off");
395#endif
396 if (!(status & SER_DCD))
7188dc20 397 wake_up_interruptible(&port->open_wait);
1da177e4
LT
398 else {
399#ifdef SERIAL_DEBUG_OPEN
400 printk("doing serial hangup...");
401#endif
7188dc20
JS
402 if (port->tty)
403 tty_hangup(port->tty);
1da177e4
LT
404 }
405 }
7188dc20
JS
406 if (port->flags & ASYNC_CTS_FLOW) {
407 if (port->tty->hw_stopped) {
1da177e4
LT
408 if (!(status & SER_CTS)) {
409#if (defined(SERIAL_DEBUG_INTR) || defined(SERIAL_DEBUG_FLOW))
410 printk("CTS tx start...");
411#endif
7188dc20 412 port->tty->hw_stopped = 0;
1da177e4
LT
413 info->IER |= UART_IER_THRI;
414 custom.intena = IF_SETCLR | IF_TBE;
415 mb();
416 /* set a pending Tx Interrupt, transmitter should restart now */
417 custom.intreq = IF_SETCLR | IF_TBE;
418 mb();
7188dc20 419 tty_wakeup(port->tty);
1da177e4
LT
420 return;
421 }
422 } else {
423 if ((status & SER_CTS)) {
424#if (defined(SERIAL_DEBUG_INTR) || defined(SERIAL_DEBUG_FLOW))
425 printk("CTS tx stop...");
426#endif
7188dc20 427 port->tty->hw_stopped = 1;
1da177e4
LT
428 info->IER &= ~UART_IER_THRI;
429 /* disable Tx interrupt and remove any pending interrupts */
430 custom.intena = IF_TBE;
431 mb();
432 custom.intreq = IF_TBE;
433 mb();
434 }
435 }
436 }
437}
438
7d12e780 439static irqreturn_t ser_vbl_int( int irq, void *data)
1da177e4
LT
440{
441 /* vbl is just a periodic interrupt we tie into to update modem status */
916b7656 442 struct serial_state *info = data;
1da177e4
LT
443 /*
444 * TBD - is it better to unregister from this interrupt or to
445 * ignore it if MSI is clear ?
446 */
447 if(info->IER & UART_IER_MSI)
448 check_modem_status(info);
449 return IRQ_HANDLED;
450}
451
7d12e780 452static irqreturn_t ser_rx_int(int irq, void *dev_id)
1da177e4 453{
916b7656 454 struct serial_state *info = dev_id;
1da177e4
LT
455
456#ifdef SERIAL_DEBUG_INTR
457 printk("ser_rx_int...");
458#endif
459
87758791 460 if (!info->tport.tty)
1da177e4
LT
461 return IRQ_NONE;
462
463 receive_chars(info);
1da177e4
LT
464#ifdef SERIAL_DEBUG_INTR
465 printk("end.\n");
466#endif
467 return IRQ_HANDLED;
468}
469
7d12e780 470static irqreturn_t ser_tx_int(int irq, void *dev_id)
1da177e4 471{
916b7656 472 struct serial_state *info = dev_id;
1da177e4
LT
473
474 if (custom.serdatr & SDR_TBE) {
475#ifdef SERIAL_DEBUG_INTR
476 printk("ser_tx_int...");
477#endif
478
87758791 479 if (!info->tport.tty)
1da177e4
LT
480 return IRQ_NONE;
481
482 transmit_chars(info);
1da177e4
LT
483#ifdef SERIAL_DEBUG_INTR
484 printk("end.\n");
485#endif
486 }
487 return IRQ_HANDLED;
488}
489
490/*
491 * -------------------------------------------------------------------
492 * Here ends the serial interrupt routines.
493 * -------------------------------------------------------------------
494 */
495
1da177e4
LT
496/*
497 * ---------------------------------------------------------------
498 * Low level utility subroutines for the serial driver: routines to
499 * figure out the appropriate timeout for an interrupt chain, routines
500 * to initialize and startup a serial port, and routines to shutdown a
501 * serial port. Useful stuff like that.
502 * ---------------------------------------------------------------
503 */
504
588993dd 505static int startup(struct tty_struct *tty, struct serial_state *info)
1da177e4 506{
01bd730d 507 struct tty_port *port = &info->tport;
1da177e4
LT
508 unsigned long flags;
509 int retval=0;
510 unsigned long page;
511
512 page = get_zeroed_page(GFP_KERNEL);
513 if (!page)
514 return -ENOMEM;
515
516 local_irq_save(flags);
517
01bd730d 518 if (port->flags & ASYNC_INITIALIZED) {
1da177e4
LT
519 free_page(page);
520 goto errout;
521 }
522
523 if (info->xmit.buf)
524 free_page(page);
525 else
526 info->xmit.buf = (unsigned char *) page;
527
528#ifdef SERIAL_DEBUG_OPEN
529 printk("starting up ttys%d ...", info->line);
530#endif
531
532 /* Clear anything in the input buffer */
533
534 custom.intreq = IF_RBF;
535 mb();
536
537 retval = request_irq(IRQ_AMIGA_VERTB, ser_vbl_int, 0, "serial status", info);
538 if (retval) {
539 if (serial_isroot()) {
588993dd 540 set_bit(TTY_IO_ERROR, &tty->flags);
1da177e4
LT
541 retval = 0;
542 }
543 goto errout;
544 }
545
546 /* enable both Rx and Tx interrupts */
547 custom.intena = IF_SETCLR | IF_RBF | IF_TBE;
548 mb();
549 info->IER = UART_IER_MSI;
550
551 /* remember current state of the DCD and CTS bits */
552 current_ctl_bits = ciab.pra & (SER_DCD | SER_CTS | SER_DSR);
553
1da177e4 554 info->MCR = 0;
588993dd 555 if (C_BAUD(tty))
1da177e4
LT
556 info->MCR = SER_DTR | SER_RTS;
557 rtsdtr_ctrl(info->MCR);
558
588993dd 559 clear_bit(TTY_IO_ERROR, &tty->flags);
1da177e4
LT
560 info->xmit.head = info->xmit.tail = 0;
561
562 /*
563 * Set up the tty->alt_speed kludge
564 */
01bd730d 565 if ((port->flags & ASYNC_SPD_MASK) == ASYNC_SPD_HI)
588993dd 566 tty->alt_speed = 57600;
01bd730d 567 if ((port->flags & ASYNC_SPD_MASK) == ASYNC_SPD_VHI)
588993dd 568 tty->alt_speed = 115200;
01bd730d 569 if ((port->flags & ASYNC_SPD_MASK) == ASYNC_SPD_SHI)
588993dd 570 tty->alt_speed = 230400;
01bd730d 571 if ((port->flags & ASYNC_SPD_MASK) == ASYNC_SPD_WARP)
588993dd 572 tty->alt_speed = 460800;
1da177e4
LT
573
574 /*
575 * and set the speed of the serial port
576 */
588993dd 577 change_speed(tty, info, NULL);
1da177e4 578
01bd730d 579 port->flags |= ASYNC_INITIALIZED;
1da177e4
LT
580 local_irq_restore(flags);
581 return 0;
582
583errout:
584 local_irq_restore(flags);
585 return retval;
586}
587
588/*
589 * This routine will shutdown a serial port; interrupts are disabled, and
590 * DTR is dropped if the hangup on close termio flag is on.
591 */
588993dd 592static void shutdown(struct tty_struct *tty, struct serial_state *info)
1da177e4
LT
593{
594 unsigned long flags;
595 struct serial_state *state;
596
01bd730d 597 if (!(info->tport.flags & ASYNC_INITIALIZED))
1da177e4
LT
598 return;
599
916b7656 600 state = info;
1da177e4
LT
601
602#ifdef SERIAL_DEBUG_OPEN
603 printk("Shutting down serial port %d ....\n", info->line);
604#endif
605
606 local_irq_save(flags); /* Disable interrupts */
607
608 /*
609 * clear delta_msr_wait queue to avoid mem leaks: we may free the irq
610 * here so the queue might never be waken up
611 */
87758791 612 wake_up_interruptible(&info->tport.delta_msr_wait);
1da177e4 613
1da177e4
LT
614 /*
615 * Free the IRQ, if necessary
616 */
617 free_irq(IRQ_AMIGA_VERTB, info);
618
619 if (info->xmit.buf) {
620 free_page((unsigned long) info->xmit.buf);
621 info->xmit.buf = NULL;
622 }
623
624 info->IER = 0;
625 custom.intena = IF_RBF | IF_TBE;
626 mb();
627
628 /* disable break condition */
629 custom.adkcon = AC_UARTBRK;
630 mb();
631
588993dd 632 if (tty->termios->c_cflag & HUPCL)
1da177e4
LT
633 info->MCR &= ~(SER_DTR|SER_RTS);
634 rtsdtr_ctrl(info->MCR);
635
588993dd 636 set_bit(TTY_IO_ERROR, &tty->flags);
1da177e4 637
01bd730d 638 info->tport.flags &= ~ASYNC_INITIALIZED;
1da177e4
LT
639 local_irq_restore(flags);
640}
641
642
643/*
644 * This routine is called to set the UART divisor registers to match
645 * the specified baud rate for a serial port.
646 */
588993dd 647static void change_speed(struct tty_struct *tty, struct serial_state *info,
606d099c 648 struct ktermios *old_termios)
1da177e4 649{
01bd730d 650 struct tty_port *port = &info->tport;
1da177e4
LT
651 int quot = 0, baud_base, baud;
652 unsigned cflag, cval = 0;
653 int bits;
654 unsigned long flags;
655
588993dd 656 cflag = tty->termios->c_cflag;
1da177e4
LT
657
658 /* Byte size is always 8 bits plus parity bit if requested */
659
660 cval = 3; bits = 10;
661 if (cflag & CSTOPB) {
662 cval |= 0x04;
663 bits++;
664 }
665 if (cflag & PARENB) {
666 cval |= UART_LCR_PARITY;
667 bits++;
668 }
669 if (!(cflag & PARODD))
670 cval |= UART_LCR_EPAR;
671#ifdef CMSPAR
672 if (cflag & CMSPAR)
673 cval |= UART_LCR_SPAR;
674#endif
675
676 /* Determine divisor based on baud rate */
588993dd 677 baud = tty_get_baud_rate(tty);
1da177e4
LT
678 if (!baud)
679 baud = 9600; /* B0 transition handled in rs_set_termios */
916b7656 680 baud_base = info->baud_base;
01bd730d 681 if (baud == 38400 && (port->flags & ASYNC_SPD_MASK) == ASYNC_SPD_CUST)
916b7656 682 quot = info->custom_divisor;
1da177e4
LT
683 else {
684 if (baud == 134)
685 /* Special case since 134 is really 134.5 */
686 quot = (2*baud_base / 269);
687 else if (baud)
688 quot = baud_base / baud;
689 }
690 /* If the quotient is zero refuse the change */
691 if (!quot && old_termios) {
db0ef08e 692 /* FIXME: Will need updating for new tty in the end */
588993dd
JS
693 tty->termios->c_cflag &= ~CBAUD;
694 tty->termios->c_cflag |= (old_termios->c_cflag & CBAUD);
695 baud = tty_get_baud_rate(tty);
1da177e4
LT
696 if (!baud)
697 baud = 9600;
698 if (baud == 38400 &&
01bd730d 699 (port->flags & ASYNC_SPD_MASK) == ASYNC_SPD_CUST)
916b7656 700 quot = info->custom_divisor;
1da177e4
LT
701 else {
702 if (baud == 134)
703 /* Special case since 134 is really 134.5 */
704 quot = (2*baud_base / 269);
705 else if (baud)
706 quot = baud_base / baud;
707 }
708 }
709 /* As a last resort, if the quotient is zero, default to 9600 bps */
710 if (!quot)
711 quot = baud_base / 9600;
712 info->quot = quot;
916b7656 713 info->timeout = ((info->xmit_fifo_size*HZ*bits*quot) / baud_base);
1da177e4
LT
714 info->timeout += HZ/50; /* Add .02 seconds of slop */
715
716 /* CTS flow control flag and modem status interrupts */
717 info->IER &= ~UART_IER_MSI;
01bd730d 718 if (port->flags & ASYNC_HARDPPS_CD)
1da177e4
LT
719 info->IER |= UART_IER_MSI;
720 if (cflag & CRTSCTS) {
01bd730d 721 port->flags |= ASYNC_CTS_FLOW;
1da177e4
LT
722 info->IER |= UART_IER_MSI;
723 } else
01bd730d 724 port->flags &= ~ASYNC_CTS_FLOW;
1da177e4 725 if (cflag & CLOCAL)
01bd730d 726 port->flags &= ~ASYNC_CHECK_CD;
1da177e4 727 else {
01bd730d 728 port->flags |= ASYNC_CHECK_CD;
1da177e4
LT
729 info->IER |= UART_IER_MSI;
730 }
731 /* TBD:
4b512d26 732 * Does clearing IER_MSI imply that we should disable the VBL interrupt ?
1da177e4
LT
733 */
734
735 /*
736 * Set up parity check flag
737 */
1da177e4
LT
738
739 info->read_status_mask = UART_LSR_OE | UART_LSR_DR;
588993dd 740 if (I_INPCK(tty))
1da177e4 741 info->read_status_mask |= UART_LSR_FE | UART_LSR_PE;
588993dd 742 if (I_BRKINT(tty) || I_PARMRK(tty))
1da177e4
LT
743 info->read_status_mask |= UART_LSR_BI;
744
745 /*
746 * Characters to ignore
747 */
748 info->ignore_status_mask = 0;
588993dd 749 if (I_IGNPAR(tty))
1da177e4 750 info->ignore_status_mask |= UART_LSR_PE | UART_LSR_FE;
588993dd 751 if (I_IGNBRK(tty)) {
1da177e4
LT
752 info->ignore_status_mask |= UART_LSR_BI;
753 /*
754 * If we're ignore parity and break indicators, ignore
755 * overruns too. (For real raw support).
756 */
588993dd 757 if (I_IGNPAR(tty))
1da177e4
LT
758 info->ignore_status_mask |= UART_LSR_OE;
759 }
760 /*
761 * !!! ignore all characters if CREAD is not set
762 */
763 if ((cflag & CREAD) == 0)
764 info->ignore_status_mask |= UART_LSR_DR;
765 local_irq_save(flags);
766
767 {
768 short serper;
769
770 /* Set up the baud rate */
771 serper = quot - 1;
772
773 /* Enable or disable parity bit */
774
775 if(cval & UART_LCR_PARITY)
776 serper |= (SERPER_PARENB);
777
778 custom.serper = serper;
779 mb();
780 }
781
1da177e4
LT
782 local_irq_restore(flags);
783}
784
257afa3c 785static int rs_put_char(struct tty_struct *tty, unsigned char ch)
1da177e4 786{
916b7656 787 struct serial_state *info;
1da177e4
LT
788 unsigned long flags;
789
d9ad7ef1
TJRMI
790 info = tty->driver_data;
791
1da177e4 792 if (serial_paranoia_check(info, tty->name, "rs_put_char"))
257afa3c 793 return 0;
1da177e4 794
d9ad7ef1 795 if (!info->xmit.buf)
257afa3c 796 return 0;
1da177e4
LT
797
798 local_irq_save(flags);
799 if (CIRC_SPACE(info->xmit.head,
800 info->xmit.tail,
801 SERIAL_XMIT_SIZE) == 0) {
802 local_irq_restore(flags);
257afa3c 803 return 0;
1da177e4
LT
804 }
805
806 info->xmit.buf[info->xmit.head++] = ch;
807 info->xmit.head &= SERIAL_XMIT_SIZE-1;
808 local_irq_restore(flags);
257afa3c 809 return 1;
1da177e4
LT
810}
811
812static void rs_flush_chars(struct tty_struct *tty)
813{
916b7656 814 struct serial_state *info = tty->driver_data;
1da177e4
LT
815 unsigned long flags;
816
817 if (serial_paranoia_check(info, tty->name, "rs_flush_chars"))
818 return;
819
820 if (info->xmit.head == info->xmit.tail
821 || tty->stopped
822 || tty->hw_stopped
823 || !info->xmit.buf)
824 return;
825
826 local_irq_save(flags);
827 info->IER |= UART_IER_THRI;
828 custom.intena = IF_SETCLR | IF_TBE;
829 mb();
830 /* set a pending Tx Interrupt, transmitter should restart now */
831 custom.intreq = IF_SETCLR | IF_TBE;
832 mb();
833 local_irq_restore(flags);
834}
835
836static int rs_write(struct tty_struct * tty, const unsigned char *buf, int count)
837{
838 int c, ret = 0;
916b7656 839 struct serial_state *info = tty->driver_data;
1da177e4
LT
840 unsigned long flags;
841
842 if (serial_paranoia_check(info, tty->name, "rs_write"))
843 return 0;
844
b3218a79 845 if (!info->xmit.buf)
1da177e4
LT
846 return 0;
847
3abf3bed 848 local_irq_save(flags);
1da177e4
LT
849 while (1) {
850 c = CIRC_SPACE_TO_END(info->xmit.head,
851 info->xmit.tail,
852 SERIAL_XMIT_SIZE);
853 if (count < c)
854 c = count;
855 if (c <= 0) {
856 break;
857 }
858 memcpy(info->xmit.buf + info->xmit.head, buf, c);
859 info->xmit.head = ((info->xmit.head + c) &
860 (SERIAL_XMIT_SIZE-1));
861 buf += c;
862 count -= c;
863 ret += c;
864 }
865 local_irq_restore(flags);
866
867 if (info->xmit.head != info->xmit.tail
868 && !tty->stopped
869 && !tty->hw_stopped
870 && !(info->IER & UART_IER_THRI)) {
871 info->IER |= UART_IER_THRI;
872 local_irq_disable();
873 custom.intena = IF_SETCLR | IF_TBE;
874 mb();
875 /* set a pending Tx Interrupt, transmitter should restart now */
876 custom.intreq = IF_SETCLR | IF_TBE;
877 mb();
878 local_irq_restore(flags);
879 }
880 return ret;
881}
882
883static int rs_write_room(struct tty_struct *tty)
884{
916b7656 885 struct serial_state *info = tty->driver_data;
1da177e4
LT
886
887 if (serial_paranoia_check(info, tty->name, "rs_write_room"))
888 return 0;
889 return CIRC_SPACE(info->xmit.head, info->xmit.tail, SERIAL_XMIT_SIZE);
890}
891
892static int rs_chars_in_buffer(struct tty_struct *tty)
893{
916b7656 894 struct serial_state *info = tty->driver_data;
1da177e4
LT
895
896 if (serial_paranoia_check(info, tty->name, "rs_chars_in_buffer"))
897 return 0;
898 return CIRC_CNT(info->xmit.head, info->xmit.tail, SERIAL_XMIT_SIZE);
899}
900
901static void rs_flush_buffer(struct tty_struct *tty)
902{
916b7656 903 struct serial_state *info = tty->driver_data;
1da177e4
LT
904 unsigned long flags;
905
906 if (serial_paranoia_check(info, tty->name, "rs_flush_buffer"))
907 return;
908 local_irq_save(flags);
909 info->xmit.head = info->xmit.tail = 0;
910 local_irq_restore(flags);
1da177e4
LT
911 tty_wakeup(tty);
912}
913
914/*
915 * This function is used to send a high-priority XON/XOFF character to
916 * the device
917 */
918static void rs_send_xchar(struct tty_struct *tty, char ch)
919{
916b7656 920 struct serial_state *info = tty->driver_data;
1da177e4
LT
921 unsigned long flags;
922
923 if (serial_paranoia_check(info, tty->name, "rs_send_char"))
924 return;
925
926 info->x_char = ch;
927 if (ch) {
928 /* Make sure transmit interrupts are on */
929
930 /* Check this ! */
931 local_irq_save(flags);
932 if(!(custom.intenar & IF_TBE)) {
933 custom.intena = IF_SETCLR | IF_TBE;
934 mb();
935 /* set a pending Tx Interrupt, transmitter should restart now */
936 custom.intreq = IF_SETCLR | IF_TBE;
937 mb();
938 }
939 local_irq_restore(flags);
940
941 info->IER |= UART_IER_THRI;
942 }
943}
944
945/*
946 * ------------------------------------------------------------
947 * rs_throttle()
948 *
949 * This routine is called by the upper-layer tty layer to signal that
950 * incoming characters should be throttled.
951 * ------------------------------------------------------------
952 */
953static void rs_throttle(struct tty_struct * tty)
954{
916b7656 955 struct serial_state *info = tty->driver_data;
1da177e4
LT
956 unsigned long flags;
957#ifdef SERIAL_DEBUG_THROTTLE
958 char buf[64];
959
960 printk("throttle %s: %d....\n", tty_name(tty, buf),
961 tty->ldisc.chars_in_buffer(tty));
962#endif
963
964 if (serial_paranoia_check(info, tty->name, "rs_throttle"))
965 return;
966
967 if (I_IXOFF(tty))
968 rs_send_xchar(tty, STOP_CHAR(tty));
969
970 if (tty->termios->c_cflag & CRTSCTS)
971 info->MCR &= ~SER_RTS;
972
973 local_irq_save(flags);
974 rtsdtr_ctrl(info->MCR);
975 local_irq_restore(flags);
976}
977
978static void rs_unthrottle(struct tty_struct * tty)
979{
916b7656 980 struct serial_state *info = tty->driver_data;
1da177e4
LT
981 unsigned long flags;
982#ifdef SERIAL_DEBUG_THROTTLE
983 char buf[64];
984
985 printk("unthrottle %s: %d....\n", tty_name(tty, buf),
986 tty->ldisc.chars_in_buffer(tty));
987#endif
988
989 if (serial_paranoia_check(info, tty->name, "rs_unthrottle"))
990 return;
991
992 if (I_IXOFF(tty)) {
993 if (info->x_char)
994 info->x_char = 0;
995 else
996 rs_send_xchar(tty, START_CHAR(tty));
997 }
998 if (tty->termios->c_cflag & CRTSCTS)
999 info->MCR |= SER_RTS;
1000 local_irq_save(flags);
1001 rtsdtr_ctrl(info->MCR);
1002 local_irq_restore(flags);
1003}
1004
1005/*
1006 * ------------------------------------------------------------
1007 * rs_ioctl() and friends
1008 * ------------------------------------------------------------
1009 */
1010
ff169e5c 1011static int get_serial_info(struct tty_struct *tty, struct serial_state *state,
ab14caec 1012 struct serial_struct __user * retinfo)
1da177e4
LT
1013{
1014 struct serial_struct tmp;
1da177e4
LT
1015
1016 if (!retinfo)
1017 return -EFAULT;
1018 memset(&tmp, 0, sizeof(tmp));
ec79d605 1019 tty_lock();
ff169e5c 1020 tmp.line = tty->index;
1da177e4 1021 tmp.port = state->port;
01bd730d 1022 tmp.flags = state->tport.flags;
1da177e4
LT
1023 tmp.xmit_fifo_size = state->xmit_fifo_size;
1024 tmp.baud_base = state->baud_base;
799be6ff
JS
1025 tmp.close_delay = state->tport.close_delay;
1026 tmp.closing_wait = state->tport.closing_wait;
1da177e4 1027 tmp.custom_divisor = state->custom_divisor;
ec79d605 1028 tty_unlock();
1da177e4
LT
1029 if (copy_to_user(retinfo,&tmp,sizeof(*retinfo)))
1030 return -EFAULT;
1031 return 0;
1032}
1033
588993dd 1034static int set_serial_info(struct tty_struct *tty, struct serial_state *state,
ab14caec 1035 struct serial_struct __user * new_info)
1da177e4 1036{
01bd730d 1037 struct tty_port *port = &state->tport;
1da177e4 1038 struct serial_struct new_serial;
0f9b9684 1039 bool change_spd;
1da177e4
LT
1040 int retval = 0;
1041
1042 if (copy_from_user(&new_serial,new_info,sizeof(new_serial)))
1043 return -EFAULT;
e18ce49b 1044
ec79d605 1045 tty_lock();
01bd730d 1046 change_spd = ((new_serial.flags ^ port->flags) & ASYNC_SPD_MASK) ||
0f9b9684 1047 new_serial.custom_divisor != state->custom_divisor;
ff169e5c 1048 if (new_serial.irq || new_serial.port != state->port ||
0f9b9684
JS
1049 new_serial.xmit_fifo_size != state->xmit_fifo_size) {
1050 tty_unlock();
1051 return -EINVAL;
e18ce49b 1052 }
1da177e4
LT
1053
1054 if (!serial_isroot()) {
1055 if ((new_serial.baud_base != state->baud_base) ||
01bd730d 1056 (new_serial.close_delay != port->close_delay) ||
1da177e4
LT
1057 (new_serial.xmit_fifo_size != state->xmit_fifo_size) ||
1058 ((new_serial.flags & ~ASYNC_USR_MASK) !=
01bd730d 1059 (port->flags & ~ASYNC_USR_MASK)))
1da177e4 1060 return -EPERM;
01bd730d 1061 port->flags = ((port->flags & ~ASYNC_USR_MASK) |
1da177e4 1062 (new_serial.flags & ASYNC_USR_MASK));
1da177e4
LT
1063 state->custom_divisor = new_serial.custom_divisor;
1064 goto check_and_exit;
1065 }
1066
e18ce49b 1067 if (new_serial.baud_base < 9600) {
ec79d605 1068 tty_unlock();
1da177e4 1069 return -EINVAL;
e18ce49b 1070 }
1da177e4
LT
1071
1072 /*
1073 * OK, past this point, all the error checking has been done.
1074 * At this point, we start making changes.....
1075 */
1076
1077 state->baud_base = new_serial.baud_base;
01bd730d 1078 port->flags = ((port->flags & ~ASYNC_FLAGS) |
1da177e4 1079 (new_serial.flags & ASYNC_FLAGS));
1da177e4 1080 state->custom_divisor = new_serial.custom_divisor;
01bd730d
JS
1081 port->close_delay = new_serial.close_delay * HZ/100;
1082 port->closing_wait = new_serial.closing_wait * HZ/100;
1083 tty->low_latency = (port->flags & ASYNC_LOW_LATENCY) ? 1 : 0;
1da177e4
LT
1084
1085check_and_exit:
01bd730d 1086 if (port->flags & ASYNC_INITIALIZED) {
0f9b9684 1087 if (change_spd) {
01bd730d 1088 if ((port->flags & ASYNC_SPD_MASK) == ASYNC_SPD_HI)
588993dd 1089 tty->alt_speed = 57600;
01bd730d 1090 if ((port->flags & ASYNC_SPD_MASK) == ASYNC_SPD_VHI)
588993dd 1091 tty->alt_speed = 115200;
01bd730d 1092 if ((port->flags & ASYNC_SPD_MASK) == ASYNC_SPD_SHI)
588993dd 1093 tty->alt_speed = 230400;
01bd730d 1094 if ((port->flags & ASYNC_SPD_MASK) == ASYNC_SPD_WARP)
588993dd
JS
1095 tty->alt_speed = 460800;
1096 change_speed(tty, state, NULL);
1da177e4
LT
1097 }
1098 } else
588993dd 1099 retval = startup(tty, state);
ec79d605 1100 tty_unlock();
1da177e4
LT
1101 return retval;
1102}
1103
1104
1105/*
1106 * get_lsr_info - get line status register info
1107 *
1108 * Purpose: Let user call ioctl() to get info when the UART physically
1109 * is emptied. On bus types like RS485, the transmitter must
1110 * release the bus after transmitting. This must be done when
1111 * the transmit shift register is empty, not be done when the
1112 * transmit holding register is empty. This functionality
1113 * allows an RS485 driver to be written in user space.
1114 */
916b7656 1115static int get_lsr_info(struct serial_state *info, unsigned int __user *value)
1da177e4
LT
1116{
1117 unsigned char status;
1118 unsigned int result;
1119 unsigned long flags;
1120
1121 local_irq_save(flags);
1122 status = custom.serdatr;
1123 mb();
1124 local_irq_restore(flags);
1125 result = ((status & SDR_TSRE) ? TIOCSER_TEMT : 0);
1126 if (copy_to_user(value, &result, sizeof(int)))
1127 return -EFAULT;
1128 return 0;
1129}
1130
1131
60b33c13 1132static int rs_tiocmget(struct tty_struct *tty)
1da177e4 1133{
916b7656 1134 struct serial_state *info = tty->driver_data;
1da177e4
LT
1135 unsigned char control, status;
1136 unsigned long flags;
1137
1138 if (serial_paranoia_check(info, tty->name, "rs_ioctl"))
1139 return -ENODEV;
1140 if (tty->flags & (1 << TTY_IO_ERROR))
1141 return -EIO;
1142
1143 control = info->MCR;
1144 local_irq_save(flags);
1145 status = ciab.pra;
1146 local_irq_restore(flags);
1147 return ((control & SER_RTS) ? TIOCM_RTS : 0)
1148 | ((control & SER_DTR) ? TIOCM_DTR : 0)
1149 | (!(status & SER_DCD) ? TIOCM_CAR : 0)
1150 | (!(status & SER_DSR) ? TIOCM_DSR : 0)
1151 | (!(status & SER_CTS) ? TIOCM_CTS : 0);
1152}
1153
20b9d177
AC
1154static int rs_tiocmset(struct tty_struct *tty, unsigned int set,
1155 unsigned int clear)
1da177e4 1156{
916b7656 1157 struct serial_state *info = tty->driver_data;
1da177e4
LT
1158 unsigned long flags;
1159
1160 if (serial_paranoia_check(info, tty->name, "rs_ioctl"))
1161 return -ENODEV;
1162 if (tty->flags & (1 << TTY_IO_ERROR))
1163 return -EIO;
1164
1165 local_irq_save(flags);
1166 if (set & TIOCM_RTS)
1167 info->MCR |= SER_RTS;
1168 if (set & TIOCM_DTR)
1169 info->MCR |= SER_DTR;
1170 if (clear & TIOCM_RTS)
1171 info->MCR &= ~SER_RTS;
1172 if (clear & TIOCM_DTR)
1173 info->MCR &= ~SER_DTR;
1174 rtsdtr_ctrl(info->MCR);
1175 local_irq_restore(flags);
1176 return 0;
1177}
1178
1179/*
1180 * rs_break() --- routine which turns the break handling on or off
1181 */
9e98966c 1182static int rs_break(struct tty_struct *tty, int break_state)
1da177e4 1183{
916b7656 1184 struct serial_state *info = tty->driver_data;
1da177e4
LT
1185 unsigned long flags;
1186
1187 if (serial_paranoia_check(info, tty->name, "rs_break"))
970a8a51 1188 return -EINVAL;
1da177e4
LT
1189
1190 local_irq_save(flags);
1191 if (break_state == -1)
1192 custom.adkcon = AC_SETCLR | AC_UARTBRK;
1193 else
1194 custom.adkcon = AC_UARTBRK;
1195 mb();
1196 local_irq_restore(flags);
9e98966c 1197 return 0;
1da177e4
LT
1198}
1199
0587102c
AC
1200/*
1201 * Get counter of input serial line interrupts (DCD,RI,DSR,CTS)
1202 * Return: write counters to the user passed counter struct
1203 * NB: both 1->0 and 0->1 transitions are counted except for
1204 * RI where only 0->1 is counted.
1205 */
1206static int rs_get_icount(struct tty_struct *tty,
1207 struct serial_icounter_struct *icount)
1208{
916b7656 1209 struct serial_state *info = tty->driver_data;
0587102c
AC
1210 struct async_icount cnow;
1211 unsigned long flags;
1212
1213 local_irq_save(flags);
916b7656 1214 cnow = info->icount;
0587102c
AC
1215 local_irq_restore(flags);
1216 icount->cts = cnow.cts;
1217 icount->dsr = cnow.dsr;
1218 icount->rng = cnow.rng;
1219 icount->dcd = cnow.dcd;
1220 icount->rx = cnow.rx;
1221 icount->tx = cnow.tx;
1222 icount->frame = cnow.frame;
1223 icount->overrun = cnow.overrun;
1224 icount->parity = cnow.parity;
1225 icount->brk = cnow.brk;
1226 icount->buf_overrun = cnow.buf_overrun;
1227
1228 return 0;
1229}
1da177e4 1230
6caa76b7 1231static int rs_ioctl(struct tty_struct *tty,
1da177e4
LT
1232 unsigned int cmd, unsigned long arg)
1233{
916b7656 1234 struct serial_state *info = tty->driver_data;
1da177e4 1235 struct async_icount cprev, cnow; /* kernel counter temps */
ab14caec 1236 void __user *argp = (void __user *)arg;
1da177e4
LT
1237 unsigned long flags;
1238
1239 if (serial_paranoia_check(info, tty->name, "rs_ioctl"))
1240 return -ENODEV;
1241
1242 if ((cmd != TIOCGSERIAL) && (cmd != TIOCSSERIAL) &&
1243 (cmd != TIOCSERCONFIG) && (cmd != TIOCSERGSTRUCT) &&
1244 (cmd != TIOCMIWAIT) && (cmd != TIOCGICOUNT)) {
1245 if (tty->flags & (1 << TTY_IO_ERROR))
1246 return -EIO;
1247 }
1248
1249 switch (cmd) {
1250 case TIOCGSERIAL:
ff169e5c 1251 return get_serial_info(tty, info, argp);
1da177e4 1252 case TIOCSSERIAL:
588993dd 1253 return set_serial_info(tty, info, argp);
1da177e4
LT
1254 case TIOCSERCONFIG:
1255 return 0;
1256
1257 case TIOCSERGETLSR: /* Get line status register */
ab14caec 1258 return get_lsr_info(info, argp);
1da177e4
LT
1259
1260 case TIOCSERGSTRUCT:
ab14caec 1261 if (copy_to_user(argp,
916b7656 1262 info, sizeof(struct serial_state)))
1da177e4
LT
1263 return -EFAULT;
1264 return 0;
1265
1266 /*
1267 * Wait for any of the 4 modem inputs (DCD,RI,DSR,CTS) to change
1268 * - mask passed in arg for lines of interest
1269 * (use |'ed TIOCM_RNG/DSR/CD/CTS for masking)
1270 * Caller should use TIOCGICOUNT to see which one it was
1271 */
1272 case TIOCMIWAIT:
1273 local_irq_save(flags);
1274 /* note the counters on entry */
916b7656 1275 cprev = info->icount;
1da177e4
LT
1276 local_irq_restore(flags);
1277 while (1) {
87758791 1278 interruptible_sleep_on(&info->tport.delta_msr_wait);
1da177e4
LT
1279 /* see if a signal did it */
1280 if (signal_pending(current))
1281 return -ERESTARTSYS;
1282 local_irq_save(flags);
916b7656 1283 cnow = info->icount; /* atomic copy */
1da177e4
LT
1284 local_irq_restore(flags);
1285 if (cnow.rng == cprev.rng && cnow.dsr == cprev.dsr &&
1286 cnow.dcd == cprev.dcd && cnow.cts == cprev.cts)
1287 return -EIO; /* no change => error */
1288 if ( ((arg & TIOCM_RNG) && (cnow.rng != cprev.rng)) ||
1289 ((arg & TIOCM_DSR) && (cnow.dsr != cprev.dsr)) ||
1290 ((arg & TIOCM_CD) && (cnow.dcd != cprev.dcd)) ||
1291 ((arg & TIOCM_CTS) && (cnow.cts != cprev.cts)) ) {
1292 return 0;
1293 }
1294 cprev = cnow;
1295 }
1296 /* NOTREACHED */
1297
1da177e4
LT
1298 case TIOCSERGWILD:
1299 case TIOCSERSWILD:
1300 /* "setserial -W" is called in Debian boot */
1301 printk ("TIOCSER?WILD ioctl obsolete, ignored.\n");
1302 return 0;
1303
1304 default:
1305 return -ENOIOCTLCMD;
1306 }
1307 return 0;
1308}
1309
606d099c 1310static void rs_set_termios(struct tty_struct *tty, struct ktermios *old_termios)
1da177e4 1311{
916b7656 1312 struct serial_state *info = tty->driver_data;
1da177e4
LT
1313 unsigned long flags;
1314 unsigned int cflag = tty->termios->c_cflag;
1315
588993dd 1316 change_speed(tty, info, old_termios);
1da177e4
LT
1317
1318 /* Handle transition to B0 status */
1319 if ((old_termios->c_cflag & CBAUD) &&
1320 !(cflag & CBAUD)) {
1321 info->MCR &= ~(SER_DTR|SER_RTS);
1322 local_irq_save(flags);
1323 rtsdtr_ctrl(info->MCR);
1324 local_irq_restore(flags);
1325 }
1326
1327 /* Handle transition away from B0 status */
1328 if (!(old_termios->c_cflag & CBAUD) &&
1329 (cflag & CBAUD)) {
1330 info->MCR |= SER_DTR;
1331 if (!(tty->termios->c_cflag & CRTSCTS) ||
1332 !test_bit(TTY_THROTTLED, &tty->flags)) {
1333 info->MCR |= SER_RTS;
1334 }
1335 local_irq_save(flags);
1336 rtsdtr_ctrl(info->MCR);
1337 local_irq_restore(flags);
1338 }
1339
1340 /* Handle turning off CRTSCTS */
1341 if ((old_termios->c_cflag & CRTSCTS) &&
1342 !(tty->termios->c_cflag & CRTSCTS)) {
1343 tty->hw_stopped = 0;
1344 rs_start(tty);
1345 }
1346
1347#if 0
1348 /*
1349 * No need to wake up processes in open wait, since they
1350 * sample the CLOCAL flag once, and don't recheck it.
1351 * XXX It's not clear whether the current behavior is correct
1352 * or not. Hence, this may change.....
1353 */
1354 if (!(old_termios->c_cflag & CLOCAL) &&
1355 (tty->termios->c_cflag & CLOCAL))
1356 wake_up_interruptible(&info->open_wait);
1357#endif
1358}
1359
1360/*
1361 * ------------------------------------------------------------
1362 * rs_close()
1363 *
1364 * This routine is called when the serial port gets closed. First, we
1365 * wait for the last remaining data to be sent. Then, we unlink its
1366 * async structure from the interrupt chain if necessary, and we free
1367 * that IRQ if nothing is left in the chain.
1368 * ------------------------------------------------------------
1369 */
1370static void rs_close(struct tty_struct *tty, struct file * filp)
1371{
916b7656 1372 struct serial_state *state = tty->driver_data;
7188dc20 1373 struct tty_port *port = &state->tport;
1da177e4
LT
1374 unsigned long flags;
1375
916b7656 1376 if (!state || serial_paranoia_check(state, tty->name, "rs_close"))
1da177e4
LT
1377 return;
1378
1da177e4
LT
1379 local_irq_save(flags);
1380
1381 if (tty_hung_up_p(filp)) {
1382 DBG_CNT("before DEC-hung");
1383 local_irq_restore(flags);
1384 return;
1385 }
1386
1387#ifdef SERIAL_DEBUG_OPEN
7188dc20 1388 printk("rs_close ttys%d, count = %d\n", state->line, port->count);
1da177e4 1389#endif
7188dc20 1390 if ((tty->count == 1) && (port->count != 1)) {
1da177e4
LT
1391 /*
1392 * Uh, oh. tty->count is 1, which means that the tty
7188dc20 1393 * structure will be freed. port->count should always
1da177e4
LT
1394 * be one in these conditions. If it's greater than
1395 * one, we've got real problems, since it means the
1396 * serial port won't be shutdown.
1397 */
1398 printk("rs_close: bad serial port count; tty->count is 1, "
7188dc20
JS
1399 "port->count is %d\n", state->tport.count);
1400 port->count = 1;
1da177e4 1401 }
7188dc20 1402 if (--port->count < 0) {
1da177e4 1403 printk("rs_close: bad serial port count for ttys%d: %d\n",
ff169e5c 1404 tty->index, port->count);
7188dc20 1405 port->count = 0;
1da177e4 1406 }
7188dc20 1407 if (port->count) {
1da177e4
LT
1408 DBG_CNT("before DEC-2");
1409 local_irq_restore(flags);
1410 return;
1411 }
7188dc20 1412 port->flags |= ASYNC_CLOSING;
1da177e4
LT
1413 /*
1414 * Now we wait for the transmit buffer to clear; and we notify
1415 * the line discipline to only process XON/XOFF characters.
1416 */
1417 tty->closing = 1;
7188dc20
JS
1418 if (port->closing_wait != ASYNC_CLOSING_WAIT_NONE)
1419 tty_wait_until_sent(tty, port->closing_wait);
1da177e4
LT
1420 /*
1421 * At this point we stop accepting input. To do this, we
1422 * disable the receive line status interrupts, and tell the
1423 * interrupt driver to stop checking the data ready bit in the
1424 * line status register.
1425 */
916b7656 1426 state->read_status_mask &= ~UART_LSR_DR;
7188dc20 1427 if (port->flags & ASYNC_INITIALIZED) {
1da177e4
LT
1428 /* disable receive interrupts */
1429 custom.intena = IF_RBF;
1430 mb();
1431 /* clear any pending receive interrupt */
1432 custom.intreq = IF_RBF;
1433 mb();
1434
1435 /*
1436 * Before we drop DTR, make sure the UART transmitter
1437 * has completely drained; this is especially
1438 * important if there is a transmit FIFO!
1439 */
916b7656 1440 rs_wait_until_sent(tty, state->timeout);
1da177e4 1441 }
588993dd 1442 shutdown(tty, state);
978e595f 1443 rs_flush_buffer(tty);
1da177e4
LT
1444
1445 tty_ldisc_flush(tty);
1446 tty->closing = 0;
7188dc20
JS
1447 port->tty = NULL;
1448 if (port->blocked_open) {
1449 if (port->close_delay) {
1450 msleep_interruptible(jiffies_to_msecs(port->close_delay));
1da177e4 1451 }
7188dc20 1452 wake_up_interruptible(&port->open_wait);
1da177e4 1453 }
7188dc20
JS
1454 port->flags &= ~(ASYNC_NORMAL_ACTIVE|ASYNC_CLOSING);
1455 wake_up_interruptible(&port->close_wait);
1da177e4
LT
1456 local_irq_restore(flags);
1457}
1458
1459/*
1460 * rs_wait_until_sent() --- wait until the transmitter is empty
1461 */
1462static void rs_wait_until_sent(struct tty_struct *tty, int timeout)
1463{
916b7656 1464 struct serial_state *info = tty->driver_data;
1da177e4
LT
1465 unsigned long orig_jiffies, char_time;
1466 int lsr;
1467
1468 if (serial_paranoia_check(info, tty->name, "rs_wait_until_sent"))
1469 return;
1470
916b7656 1471 if (info->xmit_fifo_size == 0)
1da177e4
LT
1472 return; /* Just in case.... */
1473
1474 orig_jiffies = jiffies;
978e595f 1475
1da177e4
LT
1476 /*
1477 * Set the check interval to be 1/5 of the estimated time to
1478 * send a single character, and make it at least 1. The check
1479 * interval should also be less than the timeout.
1480 *
1481 * Note: we have to use pretty tight timings here to satisfy
1482 * the NIST-PCTS.
1483 */
916b7656 1484 char_time = (info->timeout - HZ/50) / info->xmit_fifo_size;
1da177e4
LT
1485 char_time = char_time / 5;
1486 if (char_time == 0)
1487 char_time = 1;
1488 if (timeout)
1489 char_time = min_t(unsigned long, char_time, timeout);
1490 /*
1491 * If the transmitter hasn't cleared in twice the approximate
1492 * amount of time to send the entire FIFO, it probably won't
1493 * ever clear. This assumes the UART isn't doing flow
1494 * control, which is currently the case. Hence, if it ever
1495 * takes longer than info->timeout, this is probably due to a
1496 * UART bug of some kind. So, we clamp the timeout parameter at
1497 * 2*info->timeout.
1498 */
1499 if (!timeout || timeout > 2*info->timeout)
1500 timeout = 2*info->timeout;
1501#ifdef SERIAL_DEBUG_RS_WAIT_UNTIL_SENT
1502 printk("In rs_wait_until_sent(%d) check=%lu...", timeout, char_time);
1503 printk("jiff=%lu...", jiffies);
1504#endif
1505 while(!((lsr = custom.serdatr) & SDR_TSRE)) {
1506#ifdef SERIAL_DEBUG_RS_WAIT_UNTIL_SENT
1507 printk("serdatr = %d (jiff=%lu)...", lsr, jiffies);
1508#endif
1509 msleep_interruptible(jiffies_to_msecs(char_time));
1510 if (signal_pending(current))
1511 break;
1512 if (timeout && time_after(jiffies, orig_jiffies + timeout))
1513 break;
1514 }
cc0a8fbb 1515 __set_current_state(TASK_RUNNING);
eff4b0b9 1516
1da177e4
LT
1517#ifdef SERIAL_DEBUG_RS_WAIT_UNTIL_SENT
1518 printk("lsr = %d (jiff=%lu)...done\n", lsr, jiffies);
1519#endif
1520}
1521
1522/*
1523 * rs_hangup() --- called by tty_hangup() when a hangup is signaled.
1524 */
1525static void rs_hangup(struct tty_struct *tty)
1526{
916b7656 1527 struct serial_state *info = tty->driver_data;
1da177e4
LT
1528
1529 if (serial_paranoia_check(info, tty->name, "rs_hangup"))
1530 return;
1531
1da177e4 1532 rs_flush_buffer(tty);
588993dd 1533 shutdown(tty, info);
12c80354 1534 info->tport.count = 0;
01bd730d 1535 info->tport.flags &= ~ASYNC_NORMAL_ACTIVE;
87758791
JS
1536 info->tport.tty = NULL;
1537 wake_up_interruptible(&info->tport.open_wait);
1da177e4
LT
1538}
1539
1540/*
1541 * ------------------------------------------------------------
1542 * rs_open() and friends
1543 * ------------------------------------------------------------
1544 */
1545static int block_til_ready(struct tty_struct *tty, struct file * filp,
916b7656 1546 struct serial_state *info)
1da177e4
LT
1547{
1548#ifdef DECLARE_WAITQUEUE
1549 DECLARE_WAITQUEUE(wait, current);
1550#else
1551 struct wait_queue wait = { current, NULL };
1552#endif
01bd730d 1553 struct tty_port *port = &info->tport;
1da177e4
LT
1554 int retval;
1555 int do_clocal = 0, extra_count = 0;
1556 unsigned long flags;
1557
1558 /*
1559 * If the device is in the middle of being closed, then block
1560 * until it's done, and then try again.
1561 */
1562 if (tty_hung_up_p(filp) ||
01bd730d
JS
1563 (port->flags & ASYNC_CLOSING)) {
1564 if (port->flags & ASYNC_CLOSING)
1565 interruptible_sleep_on(&port->close_wait);
1da177e4 1566#ifdef SERIAL_DO_RESTART
01bd730d 1567 return ((port->flags & ASYNC_HUP_NOTIFY) ?
1da177e4
LT
1568 -EAGAIN : -ERESTARTSYS);
1569#else
1570 return -EAGAIN;
1571#endif
1572 }
1573
1574 /*
1575 * If non-blocking mode is set, or the port is not enabled,
1576 * then make the check up front and then exit.
1577 */
1578 if ((filp->f_flags & O_NONBLOCK) ||
1579 (tty->flags & (1 << TTY_IO_ERROR))) {
01bd730d 1580 port->flags |= ASYNC_NORMAL_ACTIVE;
1da177e4
LT
1581 return 0;
1582 }
1583
1584 if (tty->termios->c_cflag & CLOCAL)
1585 do_clocal = 1;
1586
1587 /*
1588 * Block waiting for the carrier detect and the line to become
1589 * free (i.e., not in use by the callout). While we are in
01bd730d 1590 * this loop, port->count is dropped by one, so that
1da177e4
LT
1591 * rs_close() knows when to free things. We restore it upon
1592 * exit, either normal or abnormal.
1593 */
1594 retval = 0;
01bd730d 1595 add_wait_queue(&port->open_wait, &wait);
1da177e4
LT
1596#ifdef SERIAL_DEBUG_OPEN
1597 printk("block_til_ready before block: ttys%d, count = %d\n",
01bd730d 1598 info->line, port->count);
1da177e4
LT
1599#endif
1600 local_irq_save(flags);
1601 if (!tty_hung_up_p(filp)) {
1602 extra_count = 1;
01bd730d 1603 port->count--;
1da177e4
LT
1604 }
1605 local_irq_restore(flags);
01bd730d 1606 port->blocked_open++;
1da177e4
LT
1607 while (1) {
1608 local_irq_save(flags);
1609 if (tty->termios->c_cflag & CBAUD)
1610 rtsdtr_ctrl(SER_DTR|SER_RTS);
1611 local_irq_restore(flags);
1612 set_current_state(TASK_INTERRUPTIBLE);
1613 if (tty_hung_up_p(filp) ||
01bd730d 1614 !(port->flags & ASYNC_INITIALIZED)) {
1da177e4 1615#ifdef SERIAL_DO_RESTART
01bd730d 1616 if (port->flags & ASYNC_HUP_NOTIFY)
1da177e4
LT
1617 retval = -EAGAIN;
1618 else
1619 retval = -ERESTARTSYS;
1620#else
1621 retval = -EAGAIN;
1622#endif
1623 break;
1624 }
01bd730d 1625 if (!(port->flags & ASYNC_CLOSING) &&
1da177e4
LT
1626 (do_clocal || (!(ciab.pra & SER_DCD)) ))
1627 break;
1628 if (signal_pending(current)) {
1629 retval = -ERESTARTSYS;
1630 break;
1631 }
1632#ifdef SERIAL_DEBUG_OPEN
1633 printk("block_til_ready blocking: ttys%d, count = %d\n",
01bd730d 1634 info->line, port->count);
1da177e4 1635#endif
e142a31d 1636 tty_unlock();
1da177e4 1637 schedule();
e142a31d 1638 tty_lock();
1da177e4 1639 }
cc0a8fbb 1640 __set_current_state(TASK_RUNNING);
01bd730d 1641 remove_wait_queue(&port->open_wait, &wait);
1da177e4 1642 if (extra_count)
01bd730d
JS
1643 port->count++;
1644 port->blocked_open--;
1da177e4
LT
1645#ifdef SERIAL_DEBUG_OPEN
1646 printk("block_til_ready after blocking: ttys%d, count = %d\n",
01bd730d 1647 info->line, port->count);
1da177e4
LT
1648#endif
1649 if (retval)
1650 return retval;
01bd730d 1651 port->flags |= ASYNC_NORMAL_ACTIVE;
1da177e4
LT
1652 return 0;
1653}
1654
1655/*
1656 * This routine is called whenever a serial port is opened. It
1657 * enables interrupts for a serial port, linking in its async structure into
1658 * the IRQ chain. It also performs the serial-specific
1659 * initialization for the tty structure.
1660 */
1661static int rs_open(struct tty_struct *tty, struct file * filp)
1662{
916b7656 1663 struct serial_state *info = rs_table + tty->index;
7188dc20 1664 struct tty_port *port = &info->tport;
410235fd 1665 int retval;
1da177e4 1666
7188dc20
JS
1667 port->count++;
1668 port->tty = tty;
916b7656 1669 tty->driver_data = info;
7188dc20 1670 tty->port = port;
1da177e4
LT
1671 if (serial_paranoia_check(info, tty->name, "rs_open"))
1672 return -ENODEV;
1673
1674#ifdef SERIAL_DEBUG_OPEN
916b7656 1675 printk("rs_open %s, count = %d\n", tty->name, info->count);
1da177e4 1676#endif
7188dc20 1677 tty->low_latency = (port->flags & ASYNC_LOW_LATENCY) ? 1 : 0;
1da177e4 1678
1da177e4
LT
1679 /*
1680 * If the port is the middle of closing, bail out now
1681 */
1682 if (tty_hung_up_p(filp) ||
7188dc20
JS
1683 (port->flags & ASYNC_CLOSING)) {
1684 if (port->flags & ASYNC_CLOSING)
1685 interruptible_sleep_on(&port->close_wait);
1da177e4 1686#ifdef SERIAL_DO_RESTART
7188dc20 1687 return ((port->flags & ASYNC_HUP_NOTIFY) ?
1da177e4
LT
1688 -EAGAIN : -ERESTARTSYS);
1689#else
1690 return -EAGAIN;
1691#endif
1692 }
1693
1694 /*
1695 * Start up serial port
1696 */
588993dd 1697 retval = startup(tty, info);
1da177e4
LT
1698 if (retval) {
1699 return retval;
1700 }
1701
1702 retval = block_til_ready(tty, filp, info);
1703 if (retval) {
1704#ifdef SERIAL_DEBUG_OPEN
1705 printk("rs_open returning after block_til_ready with %d\n",
1706 retval);
1707#endif
1708 return retval;
1709 }
1710
1711#ifdef SERIAL_DEBUG_OPEN
1712 printk("rs_open %s successful...", tty->name);
1713#endif
1714 return 0;
1715}
1716
1717/*
1718 * /proc fs routines....
1719 */
1720
ff169e5c
JS
1721static inline void line_info(struct seq_file *m, int line,
1722 struct serial_state *state)
1da177e4 1723{
1da177e4 1724 char stat_buf[30], control, status;
1da177e4
LT
1725 unsigned long flags;
1726
ff169e5c 1727 seq_printf(m, "%d: uart:amiga_builtin", line);
1da177e4 1728
1da177e4
LT
1729 local_irq_save(flags);
1730 status = ciab.pra;
01bd730d 1731 control = (state->tport.flags & ASYNC_INITIALIZED) ? state->MCR : status;
1da177e4
LT
1732 local_irq_restore(flags);
1733
1734 stat_buf[0] = 0;
1735 stat_buf[1] = 0;
1736 if(!(control & SER_RTS))
1737 strcat(stat_buf, "|RTS");
1738 if(!(status & SER_CTS))
1739 strcat(stat_buf, "|CTS");
1740 if(!(control & SER_DTR))
1741 strcat(stat_buf, "|DTR");
1742 if(!(status & SER_DSR))
1743 strcat(stat_buf, "|DSR");
1744 if(!(status & SER_DCD))
1745 strcat(stat_buf, "|CD");
1746
916b7656
JS
1747 if (state->quot)
1748 seq_printf(m, " baud:%d", state->baud_base / state->quot);
1da177e4 1749
d594027d 1750 seq_printf(m, " tx:%d rx:%d", state->icount.tx, state->icount.rx);
1da177e4
LT
1751
1752 if (state->icount.frame)
d594027d 1753 seq_printf(m, " fe:%d", state->icount.frame);
1da177e4
LT
1754
1755 if (state->icount.parity)
d594027d 1756 seq_printf(m, " pe:%d", state->icount.parity);
1da177e4
LT
1757
1758 if (state->icount.brk)
d594027d 1759 seq_printf(m, " brk:%d", state->icount.brk);
1da177e4
LT
1760
1761 if (state->icount.overrun)
d594027d 1762 seq_printf(m, " oe:%d", state->icount.overrun);
1da177e4
LT
1763
1764 /*
1765 * Last thing is the RS-232 status lines
1766 */
d594027d 1767 seq_printf(m, " %s\n", stat_buf+1);
1da177e4
LT
1768}
1769
d594027d 1770static int rs_proc_show(struct seq_file *m, void *v)
1da177e4 1771{
d594027d 1772 seq_printf(m, "serinfo:1.0 driver:%s\n", serial_version);
ff169e5c 1773 line_info(m, 0, &rs_table[0]);
d594027d 1774 return 0;
1da177e4
LT
1775}
1776
d594027d
AD
1777static int rs_proc_open(struct inode *inode, struct file *file)
1778{
1779 return single_open(file, rs_proc_show, NULL);
1780}
1781
1782static const struct file_operations rs_proc_fops = {
1783 .owner = THIS_MODULE,
1784 .open = rs_proc_open,
1785 .read = seq_read,
1786 .llseek = seq_lseek,
1787 .release = single_release,
1788};
1789
1da177e4
LT
1790/*
1791 * ---------------------------------------------------------------------
1792 * rs_init() and friends
1793 *
1794 * rs_init() is called at boot-time to initialize the serial driver.
1795 * ---------------------------------------------------------------------
1796 */
1797
1798/*
1799 * This routine prints out the appropriate serial driver version
1800 * number, and identifies which options were configured into this
1801 * driver.
1802 */
41c28ff1 1803static void show_serial_version(void)
1da177e4
LT
1804{
1805 printk(KERN_INFO "%s version %s\n", serial_name, serial_version);
1806}
1807
1808
b68e31d0 1809static const struct tty_operations serial_ops = {
1da177e4
LT
1810 .open = rs_open,
1811 .close = rs_close,
1812 .write = rs_write,
1813 .put_char = rs_put_char,
1814 .flush_chars = rs_flush_chars,
1815 .write_room = rs_write_room,
1816 .chars_in_buffer = rs_chars_in_buffer,
1817 .flush_buffer = rs_flush_buffer,
1818 .ioctl = rs_ioctl,
1819 .throttle = rs_throttle,
1820 .unthrottle = rs_unthrottle,
1821 .set_termios = rs_set_termios,
1822 .stop = rs_stop,
1823 .start = rs_start,
1824 .hangup = rs_hangup,
1825 .break_ctl = rs_break,
1826 .send_xchar = rs_send_xchar,
1827 .wait_until_sent = rs_wait_until_sent,
1da177e4
LT
1828 .tiocmget = rs_tiocmget,
1829 .tiocmset = rs_tiocmset,
0587102c 1830 .get_icount = rs_get_icount,
d594027d 1831 .proc_fops = &rs_proc_fops,
1da177e4
LT
1832};
1833
1834/*
1835 * The serial driver boot-time initialization code!
1836 */
826e8c8c 1837static int __init amiga_serial_probe(struct platform_device *pdev)
1da177e4
LT
1838{
1839 unsigned long flags;
1840 struct serial_state * state;
5edc304f 1841 int error;
1da177e4 1842
410235fd 1843 serial_driver = alloc_tty_driver(NR_PORTS);
1da177e4
LT
1844 if (!serial_driver)
1845 return -ENOMEM;
1846
1da177e4
LT
1847 show_serial_version();
1848
1849 /* Initialize the tty_driver structure */
1850
1da177e4
LT
1851 serial_driver->driver_name = "amiserial";
1852 serial_driver->name = "ttyS";
1853 serial_driver->major = TTY_MAJOR;
1854 serial_driver->minor_start = 64;
1855 serial_driver->type = TTY_DRIVER_TYPE_SERIAL;
1856 serial_driver->subtype = SERIAL_TYPE_NORMAL;
1857 serial_driver->init_termios = tty_std_termios;
1858 serial_driver->init_termios.c_cflag =
1859 B9600 | CS8 | CREAD | HUPCL | CLOCAL;
1860 serial_driver->flags = TTY_DRIVER_REAL_RAW;
1861 tty_set_operations(serial_driver, &serial_ops);
1862
5edc304f
GU
1863 error = tty_register_driver(serial_driver);
1864 if (error)
826e8c8c 1865 goto fail_put_tty_driver;
1da177e4
LT
1866
1867 state = rs_table;
1da177e4 1868 state->port = (int)&custom.serdatr; /* Just to give it a value */
1da177e4 1869 state->custom_divisor = 0;
1da177e4
LT
1870 state->icount.cts = state->icount.dsr =
1871 state->icount.rng = state->icount.dcd = 0;
1872 state->icount.rx = state->icount.tx = 0;
1873 state->icount.frame = state->icount.parity = 0;
1874 state->icount.overrun = state->icount.brk = 0;
87758791 1875 tty_port_init(&state->tport);
1da177e4 1876
ff169e5c 1877 printk(KERN_INFO "ttyS0 is the amiga builtin serial port\n");
1da177e4
LT
1878
1879 /* Hardware set up */
1880
1881 state->baud_base = amiga_colorclock;
1882 state->xmit_fifo_size = 1;
1883
1da177e4 1884 /* set ISRs, and then disable the rx interrupts */
5edc304f
GU
1885 error = request_irq(IRQ_AMIGA_TBE, ser_tx_int, 0, "serial TX", state);
1886 if (error)
1887 goto fail_unregister;
1888
9cfb5c05 1889 error = request_irq(IRQ_AMIGA_RBF, ser_rx_int, 0,
5edc304f
GU
1890 "serial RX", state);
1891 if (error)
1892 goto fail_free_irq;
1da177e4 1893
c70c036f
JL
1894 local_irq_save(flags);
1895
1da177e4
LT
1896 /* turn off Rx and Tx interrupts */
1897 custom.intena = IF_RBF | IF_TBE;
1898 mb();
1899
1900 /* clear any pending interrupt */
1901 custom.intreq = IF_RBF | IF_TBE;
1902 mb();
1903
1904 local_irq_restore(flags);
1905
1906 /*
1907 * set the appropriate directions for the modem control flags,
1908 * and clear RTS and DTR
1909 */
1910 ciab.ddra |= (SER_DTR | SER_RTS); /* outputs */
1911 ciab.ddra &= ~(SER_DCD | SER_CTS | SER_DSR); /* inputs */
1912
826e8c8c
GU
1913 platform_set_drvdata(pdev, state);
1914
1da177e4 1915 return 0;
5edc304f
GU
1916
1917fail_free_irq:
1918 free_irq(IRQ_AMIGA_TBE, state);
1919fail_unregister:
1920 tty_unregister_driver(serial_driver);
5edc304f
GU
1921fail_put_tty_driver:
1922 put_tty_driver(serial_driver);
1923 return error;
1da177e4
LT
1924}
1925
826e8c8c 1926static int __exit amiga_serial_remove(struct platform_device *pdev)
1da177e4
LT
1927{
1928 int error;
826e8c8c 1929 struct serial_state *state = platform_get_drvdata(pdev);
1da177e4
LT
1930
1931 /* printk("Unloading %s: version %s\n", serial_name, serial_version); */
1da177e4
LT
1932 if ((error = tty_unregister_driver(serial_driver)))
1933 printk("SERIAL: failed to unregister serial driver (%d)\n",
1934 error);
1935 put_tty_driver(serial_driver);
1936
916b7656
JS
1937 free_irq(IRQ_AMIGA_TBE, state);
1938 free_irq(IRQ_AMIGA_RBF, state);
5edc304f 1939
826e8c8c
GU
1940 platform_set_drvdata(pdev, NULL);
1941
1942 return error;
1943}
1944
1945static struct platform_driver amiga_serial_driver = {
1946 .remove = __exit_p(amiga_serial_remove),
1947 .driver = {
1948 .name = "amiga-serial",
1949 .owner = THIS_MODULE,
1950 },
1951};
1952
1953static int __init amiga_serial_init(void)
1954{
1955 return platform_driver_probe(&amiga_serial_driver, amiga_serial_probe);
1956}
1957
1958module_init(amiga_serial_init);
1959
1960static void __exit amiga_serial_exit(void)
1961{
1962 platform_driver_unregister(&amiga_serial_driver);
1da177e4
LT
1963}
1964
826e8c8c 1965module_exit(amiga_serial_exit);
1da177e4
LT
1966
1967
d1a35e4d
GU
1968#if defined(CONFIG_SERIAL_CONSOLE) && !defined(MODULE)
1969
1da177e4
LT
1970/*
1971 * ------------------------------------------------------------
1972 * Serial console driver
1973 * ------------------------------------------------------------
1974 */
1da177e4
LT
1975
1976static void amiga_serial_putc(char c)
1977{
1978 custom.serdat = (unsigned char)c | 0x100;
1979 while (!(custom.serdatr & 0x2000))
1980 barrier();
1981}
1982
1983/*
1984 * Print a string to the serial port trying not to disturb
1985 * any possible real use of the port...
1986 *
1987 * The console must be locked when we get here.
1988 */
1989static void serial_console_write(struct console *co, const char *s,
1990 unsigned count)
1991{
1992 unsigned short intena = custom.intenar;
1993
1994 custom.intena = IF_TBE;
1995
1996 while (count--) {
1997 if (*s == '\n')
1998 amiga_serial_putc('\r');
1999 amiga_serial_putc(*s++);
2000 }
2001
2002 custom.intena = IF_SETCLR | (intena & IF_TBE);
2003}
2004
2005static struct tty_driver *serial_console_device(struct console *c, int *index)
2006{
2007 *index = 0;
2008 return serial_driver;
2009}
2010
2011static struct console sercons = {
2012 .name = "ttyS",
2013 .write = serial_console_write,
2014 .device = serial_console_device,
2015 .flags = CON_PRINTBUFFER,
2016 .index = -1,
2017};
2018
2019/*
2020 * Register console.
2021 */
2022static int __init amiserial_console_init(void)
2023{
2024 register_console(&sercons);
2025 return 0;
2026}
2027console_initcall(amiserial_console_init);
d1a35e4d
GU
2028
2029#endif /* CONFIG_SERIAL_CONSOLE && !MODULE */
1da177e4
LT
2030
2031MODULE_LICENSE("GPL");
826e8c8c 2032MODULE_ALIAS("platform:amiga-serial");