blob: a9f5da64eef2fc0f9936968f2c3aba4ba84143dd [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002 * 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
Linus Torvalds1da177e2005-04-16 15:20:36 -070032#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
Linus Torvalds1da177e2005-04-16 15:20:36 -070046#if defined(MODULE) && defined(SERIAL_DEBUG_MCOUNT)
47#define DBG_CNT(s) printk("(%s): [%x] refc=%d, serc=%d, ttyc=%d -> %s\n", \
Jiri Slaby01bd7302012-03-05 14:52:27 +010048 tty->name, (info->tport.flags), serial_driver->refcount,info->count,tty->count,s)
Linus Torvalds1da177e2005-04-16 15:20:36 -070049#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>
Alexey Dobriyand5940272009-03-31 15:19:23 -070080#include <linux/seq_file.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070081#include <linux/slab.h>
82#include <linux/init.h>
83#include <linux/bitops.h>
Geert Uytterhoeven826e8c82009-04-05 13:12:30 +020084#include <linux/platform_device.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070085
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
Al Virob4290a22006-01-12 01:06:12 -080095#define custom amiga_custom
Linus Torvalds1da177e2005-04-16 15:20:36 -070096static 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
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103static unsigned char current_ctl_bits;
104
Jiri Slaby588993d2012-03-05 14:52:22 +0100105static void change_speed(struct tty_struct *tty, struct serial_state *info,
106 struct ktermios *old);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107static void rs_wait_until_sent(struct tty_struct *tty, int timeout);
108
109
110static struct serial_state rs_table[1];
111
Tobias Klauserfe971072006-01-09 20:54:02 -0800112#define NR_PORTS ARRAY_SIZE(rs_table)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114#include <asm/uaccess.h>
115
116#define serial_isroot() (capable(CAP_SYS_ADMIN))
117
118
Jiri Slaby916b7652012-03-05 14:52:20 +0100119static inline int serial_paranoia_check(struct serial_state *info,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120 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{
Jiri Slaby916b7652012-03-05 14:52:20 +0100172 struct serial_state *info = tty->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173 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{
Jiri Slaby916b7652012-03-05 14:52:20 +0100192 struct serial_state *info = tty->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193 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
Jiri Slaby916b7652012-03-05 14:52:20 +0100233static void receive_chars(struct serial_state *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234{
235 int status;
236 int serdatr;
Jiri Slaby87758792012-03-05 14:52:24 +0100237 struct tty_struct *tty = info->tport.tty;
Alan Cox33f0f882006-01-09 20:54:13 -0800238 unsigned char ch, flag;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239 struct async_icount *icount;
Alan Cox33f0f882006-01-09 20:54:13 -0800240 int oe = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241
Jiri Slaby916b7652012-03-05 14:52:20 +0100242 icount = &info->icount;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243
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;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700256 icount->rx++;
257
258#ifdef SERIAL_DEBUG_INTR
259 printk("DR%02x:%02x...", ch, status);
260#endif
Alan Cox33f0f882006-01-09 20:54:13 -0800261 flag = TTY_NORMAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262
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)
Alan Cox33f0f882006-01-09 20:54:13 -0800290 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291
292 status &= info->read_status_mask;
293
294 if (status & (UART_LSR_BI)) {
295#ifdef SERIAL_DEBUG_INTR
296 printk("handling break....");
297#endif
Alan Cox33f0f882006-01-09 20:54:13 -0800298 flag = TTY_BREAK;
Jiri Slaby01bd7302012-03-05 14:52:27 +0100299 if (info->tport.flags & ASYNC_SAK)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700300 do_SAK(tty);
301 } else if (status & UART_LSR_PE)
Alan Cox33f0f882006-01-09 20:54:13 -0800302 flag = TTY_PARITY;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303 else if (status & UART_LSR_FE)
Alan Cox33f0f882006-01-09 20:54:13 -0800304 flag = TTY_FRAME;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305 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 */
Alan Cox33f0f882006-01-09 20:54:13 -0800311 oe = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312 }
313 }
Alan Cox33f0f882006-01-09 20:54:13 -0800314 tty_insert_flip_char(tty, ch, flag);
315 if (oe == 1)
316 tty_insert_flip_char(tty, 0, TTY_OVERRUN);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317 tty_flip_buffer_push(tty);
Alan Cox33f0f882006-01-09 20:54:13 -0800318out:
319 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320}
321
Jiri Slaby916b7652012-03-05 14:52:20 +0100322static void transmit_chars(struct serial_state *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700323{
324 custom.intreq = IF_TBE;
325 mb();
326 if (info->x_char) {
327 custom.serdat = info->x_char | 0x100;
328 mb();
Jiri Slaby916b7652012-03-05 14:52:20 +0100329 info->icount.tx++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700330 info->x_char = 0;
331 return;
332 }
333 if (info->xmit.head == info->xmit.tail
Jiri Slaby87758792012-03-05 14:52:24 +0100334 || info->tport.tty->stopped
335 || info->tport.tty->hw_stopped) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700336 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);
Jiri Slaby916b7652012-03-05 14:52:20 +0100345 info->icount.tx++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700346
347 if (CIRC_CNT(info->xmit.head,
348 info->xmit.tail,
349 SERIAL_XMIT_SIZE) < WAKEUP_CHARS)
Jiri Slaby87758792012-03-05 14:52:24 +0100350 tty_wakeup(info->tport.tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700351
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
Jiri Slaby916b7652012-03-05 14:52:20 +0100362static void check_modem_status(struct serial_state *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700363{
Jiri Slaby7188dc22012-03-05 14:52:43 +0100364 struct tty_port *port = &info->tport;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700365 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) {
Jiri Slaby916b7652012-03-05 14:52:20 +0100374 icount = &info->icount;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700375 /* 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
Jiri Slaby7188dc22012-03-05 14:52:43 +0100381 if ((port->flags & ASYNC_HARDPPS_CD) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382 !(status & SER_DCD))
383 hardpps();
384#endif
385 }
386 if (dstatus & SER_CTS)
387 icount->cts++;
Jiri Slaby7188dc22012-03-05 14:52:43 +0100388 wake_up_interruptible(&port->delta_msr_wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389 }
390
Jiri Slaby7188dc22012-03-05 14:52:43 +0100391 if ((port->flags & ASYNC_CHECK_CD) && (dstatus & SER_DCD)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392#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))
Jiri Slaby7188dc22012-03-05 14:52:43 +0100397 wake_up_interruptible(&port->open_wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398 else {
399#ifdef SERIAL_DEBUG_OPEN
400 printk("doing serial hangup...");
401#endif
Jiri Slaby7188dc22012-03-05 14:52:43 +0100402 if (port->tty)
403 tty_hangup(port->tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700404 }
405 }
Jiri Slaby7188dc22012-03-05 14:52:43 +0100406 if (port->flags & ASYNC_CTS_FLOW) {
407 if (port->tty->hw_stopped) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700408 if (!(status & SER_CTS)) {
409#if (defined(SERIAL_DEBUG_INTR) || defined(SERIAL_DEBUG_FLOW))
410 printk("CTS tx start...");
411#endif
Jiri Slaby7188dc22012-03-05 14:52:43 +0100412 port->tty->hw_stopped = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700413 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();
Jiri Slaby7188dc22012-03-05 14:52:43 +0100419 tty_wakeup(port->tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700420 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
Jiri Slaby7188dc22012-03-05 14:52:43 +0100427 port->tty->hw_stopped = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428 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
David Howells7d12e782006-10-05 14:55:46 +0100439static irqreturn_t ser_vbl_int( int irq, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440{
441 /* vbl is just a periodic interrupt we tie into to update modem status */
Jiri Slaby916b7652012-03-05 14:52:20 +0100442 struct serial_state *info = data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443 /*
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
David Howells7d12e782006-10-05 14:55:46 +0100452static irqreturn_t ser_rx_int(int irq, void *dev_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453{
Jiri Slaby916b7652012-03-05 14:52:20 +0100454 struct serial_state *info = dev_id;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455
456#ifdef SERIAL_DEBUG_INTR
457 printk("ser_rx_int...");
458#endif
459
Jiri Slaby87758792012-03-05 14:52:24 +0100460 if (!info->tport.tty)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700461 return IRQ_NONE;
462
463 receive_chars(info);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700464#ifdef SERIAL_DEBUG_INTR
465 printk("end.\n");
466#endif
467 return IRQ_HANDLED;
468}
469
David Howells7d12e782006-10-05 14:55:46 +0100470static irqreturn_t ser_tx_int(int irq, void *dev_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700471{
Jiri Slaby916b7652012-03-05 14:52:20 +0100472 struct serial_state *info = dev_id;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700473
474 if (custom.serdatr & SDR_TBE) {
475#ifdef SERIAL_DEBUG_INTR
476 printk("ser_tx_int...");
477#endif
478
Jiri Slaby87758792012-03-05 14:52:24 +0100479 if (!info->tport.tty)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700480 return IRQ_NONE;
481
482 transmit_chars(info);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483#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
496/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700497 * ---------------------------------------------------------------
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
Jiri Slaby588993d2012-03-05 14:52:22 +0100505static int startup(struct tty_struct *tty, struct serial_state *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700506{
Jiri Slaby01bd7302012-03-05 14:52:27 +0100507 struct tty_port *port = &info->tport;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700508 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
Jiri Slaby01bd7302012-03-05 14:52:27 +0100518 if (port->flags & ASYNC_INITIALIZED) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700519 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()) {
Jiri Slaby588993d2012-03-05 14:52:22 +0100540 set_bit(TTY_IO_ERROR, &tty->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700541 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
Linus Torvalds1da177e2005-04-16 15:20:36 -0700554 info->MCR = 0;
Jiri Slaby588993d2012-03-05 14:52:22 +0100555 if (C_BAUD(tty))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700556 info->MCR = SER_DTR | SER_RTS;
557 rtsdtr_ctrl(info->MCR);
558
Jiri Slaby588993d2012-03-05 14:52:22 +0100559 clear_bit(TTY_IO_ERROR, &tty->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700560 info->xmit.head = info->xmit.tail = 0;
561
562 /*
563 * Set up the tty->alt_speed kludge
564 */
Jiri Slaby01bd7302012-03-05 14:52:27 +0100565 if ((port->flags & ASYNC_SPD_MASK) == ASYNC_SPD_HI)
Jiri Slaby588993d2012-03-05 14:52:22 +0100566 tty->alt_speed = 57600;
Jiri Slaby01bd7302012-03-05 14:52:27 +0100567 if ((port->flags & ASYNC_SPD_MASK) == ASYNC_SPD_VHI)
Jiri Slaby588993d2012-03-05 14:52:22 +0100568 tty->alt_speed = 115200;
Jiri Slaby01bd7302012-03-05 14:52:27 +0100569 if ((port->flags & ASYNC_SPD_MASK) == ASYNC_SPD_SHI)
Jiri Slaby588993d2012-03-05 14:52:22 +0100570 tty->alt_speed = 230400;
Jiri Slaby01bd7302012-03-05 14:52:27 +0100571 if ((port->flags & ASYNC_SPD_MASK) == ASYNC_SPD_WARP)
Jiri Slaby588993d2012-03-05 14:52:22 +0100572 tty->alt_speed = 460800;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700573
574 /*
575 * and set the speed of the serial port
576 */
Jiri Slaby588993d2012-03-05 14:52:22 +0100577 change_speed(tty, info, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700578
Jiri Slaby01bd7302012-03-05 14:52:27 +0100579 port->flags |= ASYNC_INITIALIZED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700580 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 */
Jiri Slaby588993d2012-03-05 14:52:22 +0100592static void shutdown(struct tty_struct *tty, struct serial_state *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700593{
594 unsigned long flags;
595 struct serial_state *state;
596
Jiri Slaby01bd7302012-03-05 14:52:27 +0100597 if (!(info->tport.flags & ASYNC_INITIALIZED))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700598 return;
599
Jiri Slaby916b7652012-03-05 14:52:20 +0100600 state = info;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700601
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 */
Jiri Slaby87758792012-03-05 14:52:24 +0100612 wake_up_interruptible(&info->tport.delta_msr_wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700613
Linus Torvalds1da177e2005-04-16 15:20:36 -0700614 /*
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
Jiri Slaby588993d2012-03-05 14:52:22 +0100632 if (tty->termios->c_cflag & HUPCL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700633 info->MCR &= ~(SER_DTR|SER_RTS);
634 rtsdtr_ctrl(info->MCR);
635
Jiri Slaby588993d2012-03-05 14:52:22 +0100636 set_bit(TTY_IO_ERROR, &tty->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700637
Jiri Slaby01bd7302012-03-05 14:52:27 +0100638 info->tport.flags &= ~ASYNC_INITIALIZED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700639 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 */
Jiri Slaby588993d2012-03-05 14:52:22 +0100647static void change_speed(struct tty_struct *tty, struct serial_state *info,
Alan Cox606d0992006-12-08 02:38:45 -0800648 struct ktermios *old_termios)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700649{
Jiri Slaby01bd7302012-03-05 14:52:27 +0100650 struct tty_port *port = &info->tport;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700651 int quot = 0, baud_base, baud;
652 unsigned cflag, cval = 0;
653 int bits;
654 unsigned long flags;
655
Jiri Slaby588993d2012-03-05 14:52:22 +0100656 cflag = tty->termios->c_cflag;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700657
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 */
Jiri Slaby588993d2012-03-05 14:52:22 +0100677 baud = tty_get_baud_rate(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700678 if (!baud)
679 baud = 9600; /* B0 transition handled in rs_set_termios */
Jiri Slaby916b7652012-03-05 14:52:20 +0100680 baud_base = info->baud_base;
Jiri Slaby01bd7302012-03-05 14:52:27 +0100681 if (baud == 38400 && (port->flags & ASYNC_SPD_MASK) == ASYNC_SPD_CUST)
Jiri Slaby916b7652012-03-05 14:52:20 +0100682 quot = info->custom_divisor;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700683 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) {
Alan Coxdb0ef082007-07-15 23:41:47 -0700692 /* FIXME: Will need updating for new tty in the end */
Jiri Slaby588993d2012-03-05 14:52:22 +0100693 tty->termios->c_cflag &= ~CBAUD;
694 tty->termios->c_cflag |= (old_termios->c_cflag & CBAUD);
695 baud = tty_get_baud_rate(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700696 if (!baud)
697 baud = 9600;
698 if (baud == 38400 &&
Jiri Slaby01bd7302012-03-05 14:52:27 +0100699 (port->flags & ASYNC_SPD_MASK) == ASYNC_SPD_CUST)
Jiri Slaby916b7652012-03-05 14:52:20 +0100700 quot = info->custom_divisor;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700701 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;
Jiri Slaby916b7652012-03-05 14:52:20 +0100713 info->timeout = ((info->xmit_fifo_size*HZ*bits*quot) / baud_base);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700714 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;
Jiri Slaby01bd7302012-03-05 14:52:27 +0100718 if (port->flags & ASYNC_HARDPPS_CD)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700719 info->IER |= UART_IER_MSI;
720 if (cflag & CRTSCTS) {
Jiri Slaby01bd7302012-03-05 14:52:27 +0100721 port->flags |= ASYNC_CTS_FLOW;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700722 info->IER |= UART_IER_MSI;
723 } else
Jiri Slaby01bd7302012-03-05 14:52:27 +0100724 port->flags &= ~ASYNC_CTS_FLOW;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700725 if (cflag & CLOCAL)
Jiri Slaby01bd7302012-03-05 14:52:27 +0100726 port->flags &= ~ASYNC_CHECK_CD;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700727 else {
Jiri Slaby01bd7302012-03-05 14:52:27 +0100728 port->flags |= ASYNC_CHECK_CD;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700729 info->IER |= UART_IER_MSI;
730 }
731 /* TBD:
Thadeu Lima de Souza Cascardo4b512d22009-04-14 23:14:10 -0300732 * Does clearing IER_MSI imply that we should disable the VBL interrupt ?
Linus Torvalds1da177e2005-04-16 15:20:36 -0700733 */
734
735 /*
736 * Set up parity check flag
737 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700738
739 info->read_status_mask = UART_LSR_OE | UART_LSR_DR;
Jiri Slaby588993d2012-03-05 14:52:22 +0100740 if (I_INPCK(tty))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700741 info->read_status_mask |= UART_LSR_FE | UART_LSR_PE;
Jiri Slaby588993d2012-03-05 14:52:22 +0100742 if (I_BRKINT(tty) || I_PARMRK(tty))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700743 info->read_status_mask |= UART_LSR_BI;
744
745 /*
746 * Characters to ignore
747 */
748 info->ignore_status_mask = 0;
Jiri Slaby588993d2012-03-05 14:52:22 +0100749 if (I_IGNPAR(tty))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700750 info->ignore_status_mask |= UART_LSR_PE | UART_LSR_FE;
Jiri Slaby588993d2012-03-05 14:52:22 +0100751 if (I_IGNBRK(tty)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700752 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 */
Jiri Slaby588993d2012-03-05 14:52:22 +0100757 if (I_IGNPAR(tty))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700758 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
Linus Torvalds1da177e2005-04-16 15:20:36 -0700782 local_irq_restore(flags);
783}
784
Alan Cox257afa32008-04-30 00:54:02 -0700785static int rs_put_char(struct tty_struct *tty, unsigned char ch)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700786{
Jiri Slaby916b7652012-03-05 14:52:20 +0100787 struct serial_state *info;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700788 unsigned long flags;
789
TINNES Julien RD-MAPS-ISSd9ad7ef2005-06-23 00:10:08 -0700790 info = tty->driver_data;
791
Linus Torvalds1da177e2005-04-16 15:20:36 -0700792 if (serial_paranoia_check(info, tty->name, "rs_put_char"))
Alan Cox257afa32008-04-30 00:54:02 -0700793 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700794
TINNES Julien RD-MAPS-ISSd9ad7ef2005-06-23 00:10:08 -0700795 if (!info->xmit.buf)
Alan Cox257afa32008-04-30 00:54:02 -0700796 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700797
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);
Alan Cox257afa32008-04-30 00:54:02 -0700803 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700804 }
805
806 info->xmit.buf[info->xmit.head++] = ch;
807 info->xmit.head &= SERIAL_XMIT_SIZE-1;
808 local_irq_restore(flags);
Alan Cox257afa32008-04-30 00:54:02 -0700809 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700810}
811
812static void rs_flush_chars(struct tty_struct *tty)
813{
Jiri Slaby916b7652012-03-05 14:52:20 +0100814 struct serial_state *info = tty->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700815 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;
Jiri Slaby916b7652012-03-05 14:52:20 +0100839 struct serial_state *info = tty->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700840 unsigned long flags;
841
842 if (serial_paranoia_check(info, tty->name, "rs_write"))
843 return 0;
844
Jiri Slabyb3218a72006-10-04 02:15:27 -0700845 if (!info->xmit.buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700846 return 0;
847
Jiri Kosina3abf3be2007-02-10 01:46:48 -0800848 local_irq_save(flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700849 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{
Jiri Slaby916b7652012-03-05 14:52:20 +0100885 struct serial_state *info = tty->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700886
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{
Jiri Slaby916b7652012-03-05 14:52:20 +0100894 struct serial_state *info = tty->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700895
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{
Jiri Slaby916b7652012-03-05 14:52:20 +0100903 struct serial_state *info = tty->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700904 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);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700911 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{
Jiri Slaby916b7652012-03-05 14:52:20 +0100920 struct serial_state *info = tty->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700921 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{
Jiri Slaby916b7652012-03-05 14:52:20 +0100955 struct serial_state *info = tty->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700956 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{
Jiri Slaby916b7652012-03-05 14:52:20 +0100980 struct serial_state *info = tty->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700981 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
Jiri Slaby916b7652012-03-05 14:52:20 +01001011static int get_serial_info(struct serial_state *state,
Al Viroab14cae2006-01-12 01:06:30 -08001012 struct serial_struct __user * retinfo)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001013{
1014 struct serial_struct tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001015
1016 if (!retinfo)
1017 return -EFAULT;
1018 memset(&tmp, 0, sizeof(tmp));
Arnd Bergmannec79d602010-06-01 22:53:01 +02001019 tty_lock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001020 tmp.type = state->type;
1021 tmp.line = state->line;
1022 tmp.port = state->port;
1023 tmp.irq = state->irq;
Jiri Slaby01bd7302012-03-05 14:52:27 +01001024 tmp.flags = state->tport.flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001025 tmp.xmit_fifo_size = state->xmit_fifo_size;
1026 tmp.baud_base = state->baud_base;
Jiri Slaby799be6f2012-03-05 14:52:25 +01001027 tmp.close_delay = state->tport.close_delay;
1028 tmp.closing_wait = state->tport.closing_wait;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001029 tmp.custom_divisor = state->custom_divisor;
Arnd Bergmannec79d602010-06-01 22:53:01 +02001030 tty_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001031 if (copy_to_user(retinfo,&tmp,sizeof(*retinfo)))
1032 return -EFAULT;
1033 return 0;
1034}
1035
Jiri Slaby588993d2012-03-05 14:52:22 +01001036static int set_serial_info(struct tty_struct *tty, struct serial_state *state,
Al Viroab14cae2006-01-12 01:06:30 -08001037 struct serial_struct __user * new_info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001038{
Jiri Slaby01bd7302012-03-05 14:52:27 +01001039 struct tty_port *port = &state->tport;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001040 struct serial_struct new_serial;
Jiri Slaby0f9b9682012-03-05 14:52:21 +01001041 bool change_spd;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001042 int retval = 0;
1043
1044 if (copy_from_user(&new_serial,new_info,sizeof(new_serial)))
1045 return -EFAULT;
Alan Coxe18ce492008-04-30 00:53:16 -07001046
Arnd Bergmannec79d602010-06-01 22:53:01 +02001047 tty_lock();
Jiri Slaby01bd7302012-03-05 14:52:27 +01001048 change_spd = ((new_serial.flags ^ port->flags) & ASYNC_SPD_MASK) ||
Jiri Slaby0f9b9682012-03-05 14:52:21 +01001049 new_serial.custom_divisor != state->custom_divisor;
1050 if (new_serial.irq != state->irq || new_serial.port != state->port ||
1051 new_serial.xmit_fifo_size != state->xmit_fifo_size) {
1052 tty_unlock();
1053 return -EINVAL;
Alan Coxe18ce492008-04-30 00:53:16 -07001054 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001055
1056 if (!serial_isroot()) {
1057 if ((new_serial.baud_base != state->baud_base) ||
Jiri Slaby01bd7302012-03-05 14:52:27 +01001058 (new_serial.close_delay != port->close_delay) ||
Linus Torvalds1da177e2005-04-16 15:20:36 -07001059 (new_serial.xmit_fifo_size != state->xmit_fifo_size) ||
1060 ((new_serial.flags & ~ASYNC_USR_MASK) !=
Jiri Slaby01bd7302012-03-05 14:52:27 +01001061 (port->flags & ~ASYNC_USR_MASK)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001062 return -EPERM;
Jiri Slaby01bd7302012-03-05 14:52:27 +01001063 port->flags = ((port->flags & ~ASYNC_USR_MASK) |
Linus Torvalds1da177e2005-04-16 15:20:36 -07001064 (new_serial.flags & ASYNC_USR_MASK));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001065 state->custom_divisor = new_serial.custom_divisor;
1066 goto check_and_exit;
1067 }
1068
Alan Coxe18ce492008-04-30 00:53:16 -07001069 if (new_serial.baud_base < 9600) {
Arnd Bergmannec79d602010-06-01 22:53:01 +02001070 tty_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001071 return -EINVAL;
Alan Coxe18ce492008-04-30 00:53:16 -07001072 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001073
1074 /*
1075 * OK, past this point, all the error checking has been done.
1076 * At this point, we start making changes.....
1077 */
1078
1079 state->baud_base = new_serial.baud_base;
Jiri Slaby01bd7302012-03-05 14:52:27 +01001080 port->flags = ((port->flags & ~ASYNC_FLAGS) |
Linus Torvalds1da177e2005-04-16 15:20:36 -07001081 (new_serial.flags & ASYNC_FLAGS));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001082 state->custom_divisor = new_serial.custom_divisor;
Jiri Slaby01bd7302012-03-05 14:52:27 +01001083 port->close_delay = new_serial.close_delay * HZ/100;
1084 port->closing_wait = new_serial.closing_wait * HZ/100;
1085 tty->low_latency = (port->flags & ASYNC_LOW_LATENCY) ? 1 : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001086
1087check_and_exit:
Jiri Slaby01bd7302012-03-05 14:52:27 +01001088 if (port->flags & ASYNC_INITIALIZED) {
Jiri Slaby0f9b9682012-03-05 14:52:21 +01001089 if (change_spd) {
Jiri Slaby01bd7302012-03-05 14:52:27 +01001090 if ((port->flags & ASYNC_SPD_MASK) == ASYNC_SPD_HI)
Jiri Slaby588993d2012-03-05 14:52:22 +01001091 tty->alt_speed = 57600;
Jiri Slaby01bd7302012-03-05 14:52:27 +01001092 if ((port->flags & ASYNC_SPD_MASK) == ASYNC_SPD_VHI)
Jiri Slaby588993d2012-03-05 14:52:22 +01001093 tty->alt_speed = 115200;
Jiri Slaby01bd7302012-03-05 14:52:27 +01001094 if ((port->flags & ASYNC_SPD_MASK) == ASYNC_SPD_SHI)
Jiri Slaby588993d2012-03-05 14:52:22 +01001095 tty->alt_speed = 230400;
Jiri Slaby01bd7302012-03-05 14:52:27 +01001096 if ((port->flags & ASYNC_SPD_MASK) == ASYNC_SPD_WARP)
Jiri Slaby588993d2012-03-05 14:52:22 +01001097 tty->alt_speed = 460800;
1098 change_speed(tty, state, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001099 }
1100 } else
Jiri Slaby588993d2012-03-05 14:52:22 +01001101 retval = startup(tty, state);
Arnd Bergmannec79d602010-06-01 22:53:01 +02001102 tty_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001103 return retval;
1104}
1105
1106
1107/*
1108 * get_lsr_info - get line status register info
1109 *
1110 * Purpose: Let user call ioctl() to get info when the UART physically
1111 * is emptied. On bus types like RS485, the transmitter must
1112 * release the bus after transmitting. This must be done when
1113 * the transmit shift register is empty, not be done when the
1114 * transmit holding register is empty. This functionality
1115 * allows an RS485 driver to be written in user space.
1116 */
Jiri Slaby916b7652012-03-05 14:52:20 +01001117static int get_lsr_info(struct serial_state *info, unsigned int __user *value)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001118{
1119 unsigned char status;
1120 unsigned int result;
1121 unsigned long flags;
1122
1123 local_irq_save(flags);
1124 status = custom.serdatr;
1125 mb();
1126 local_irq_restore(flags);
1127 result = ((status & SDR_TSRE) ? TIOCSER_TEMT : 0);
1128 if (copy_to_user(value, &result, sizeof(int)))
1129 return -EFAULT;
1130 return 0;
1131}
1132
1133
Alan Cox60b33c12011-02-14 16:26:14 +00001134static int rs_tiocmget(struct tty_struct *tty)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001135{
Jiri Slaby916b7652012-03-05 14:52:20 +01001136 struct serial_state *info = tty->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001137 unsigned char control, status;
1138 unsigned long flags;
1139
1140 if (serial_paranoia_check(info, tty->name, "rs_ioctl"))
1141 return -ENODEV;
1142 if (tty->flags & (1 << TTY_IO_ERROR))
1143 return -EIO;
1144
1145 control = info->MCR;
1146 local_irq_save(flags);
1147 status = ciab.pra;
1148 local_irq_restore(flags);
1149 return ((control & SER_RTS) ? TIOCM_RTS : 0)
1150 | ((control & SER_DTR) ? TIOCM_DTR : 0)
1151 | (!(status & SER_DCD) ? TIOCM_CAR : 0)
1152 | (!(status & SER_DSR) ? TIOCM_DSR : 0)
1153 | (!(status & SER_CTS) ? TIOCM_CTS : 0);
1154}
1155
Alan Cox20b9d172011-02-14 16:26:50 +00001156static int rs_tiocmset(struct tty_struct *tty, unsigned int set,
1157 unsigned int clear)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001158{
Jiri Slaby916b7652012-03-05 14:52:20 +01001159 struct serial_state *info = tty->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001160 unsigned long flags;
1161
1162 if (serial_paranoia_check(info, tty->name, "rs_ioctl"))
1163 return -ENODEV;
1164 if (tty->flags & (1 << TTY_IO_ERROR))
1165 return -EIO;
1166
1167 local_irq_save(flags);
1168 if (set & TIOCM_RTS)
1169 info->MCR |= SER_RTS;
1170 if (set & TIOCM_DTR)
1171 info->MCR |= SER_DTR;
1172 if (clear & TIOCM_RTS)
1173 info->MCR &= ~SER_RTS;
1174 if (clear & TIOCM_DTR)
1175 info->MCR &= ~SER_DTR;
1176 rtsdtr_ctrl(info->MCR);
1177 local_irq_restore(flags);
1178 return 0;
1179}
1180
1181/*
1182 * rs_break() --- routine which turns the break handling on or off
1183 */
Alan Cox9e989662008-07-22 11:18:03 +01001184static int rs_break(struct tty_struct *tty, int break_state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001185{
Jiri Slaby916b7652012-03-05 14:52:20 +01001186 struct serial_state *info = tty->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001187 unsigned long flags;
1188
1189 if (serial_paranoia_check(info, tty->name, "rs_break"))
Geert Uytterhoeven970a8a52008-08-06 22:19:39 +02001190 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001191
1192 local_irq_save(flags);
1193 if (break_state == -1)
1194 custom.adkcon = AC_SETCLR | AC_UARTBRK;
1195 else
1196 custom.adkcon = AC_UARTBRK;
1197 mb();
1198 local_irq_restore(flags);
Alan Cox9e989662008-07-22 11:18:03 +01001199 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001200}
1201
Alan Cox05871022010-09-16 18:21:52 +01001202/*
1203 * Get counter of input serial line interrupts (DCD,RI,DSR,CTS)
1204 * Return: write counters to the user passed counter struct
1205 * NB: both 1->0 and 0->1 transitions are counted except for
1206 * RI where only 0->1 is counted.
1207 */
1208static int rs_get_icount(struct tty_struct *tty,
1209 struct serial_icounter_struct *icount)
1210{
Jiri Slaby916b7652012-03-05 14:52:20 +01001211 struct serial_state *info = tty->driver_data;
Alan Cox05871022010-09-16 18:21:52 +01001212 struct async_icount cnow;
1213 unsigned long flags;
1214
1215 local_irq_save(flags);
Jiri Slaby916b7652012-03-05 14:52:20 +01001216 cnow = info->icount;
Alan Cox05871022010-09-16 18:21:52 +01001217 local_irq_restore(flags);
1218 icount->cts = cnow.cts;
1219 icount->dsr = cnow.dsr;
1220 icount->rng = cnow.rng;
1221 icount->dcd = cnow.dcd;
1222 icount->rx = cnow.rx;
1223 icount->tx = cnow.tx;
1224 icount->frame = cnow.frame;
1225 icount->overrun = cnow.overrun;
1226 icount->parity = cnow.parity;
1227 icount->brk = cnow.brk;
1228 icount->buf_overrun = cnow.buf_overrun;
1229
1230 return 0;
1231}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001232
Alan Cox6caa76b2011-02-14 16:27:22 +00001233static int rs_ioctl(struct tty_struct *tty,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001234 unsigned int cmd, unsigned long arg)
1235{
Jiri Slaby916b7652012-03-05 14:52:20 +01001236 struct serial_state *info = tty->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001237 struct async_icount cprev, cnow; /* kernel counter temps */
Al Viroab14cae2006-01-12 01:06:30 -08001238 void __user *argp = (void __user *)arg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001239 unsigned long flags;
1240
1241 if (serial_paranoia_check(info, tty->name, "rs_ioctl"))
1242 return -ENODEV;
1243
1244 if ((cmd != TIOCGSERIAL) && (cmd != TIOCSSERIAL) &&
1245 (cmd != TIOCSERCONFIG) && (cmd != TIOCSERGSTRUCT) &&
1246 (cmd != TIOCMIWAIT) && (cmd != TIOCGICOUNT)) {
1247 if (tty->flags & (1 << TTY_IO_ERROR))
1248 return -EIO;
1249 }
1250
1251 switch (cmd) {
1252 case TIOCGSERIAL:
Al Viroab14cae2006-01-12 01:06:30 -08001253 return get_serial_info(info, argp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001254 case TIOCSSERIAL:
Jiri Slaby588993d2012-03-05 14:52:22 +01001255 return set_serial_info(tty, info, argp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001256 case TIOCSERCONFIG:
1257 return 0;
1258
1259 case TIOCSERGETLSR: /* Get line status register */
Al Viroab14cae2006-01-12 01:06:30 -08001260 return get_lsr_info(info, argp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001261
1262 case TIOCSERGSTRUCT:
Al Viroab14cae2006-01-12 01:06:30 -08001263 if (copy_to_user(argp,
Jiri Slaby916b7652012-03-05 14:52:20 +01001264 info, sizeof(struct serial_state)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001265 return -EFAULT;
1266 return 0;
1267
1268 /*
1269 * Wait for any of the 4 modem inputs (DCD,RI,DSR,CTS) to change
1270 * - mask passed in arg for lines of interest
1271 * (use |'ed TIOCM_RNG/DSR/CD/CTS for masking)
1272 * Caller should use TIOCGICOUNT to see which one it was
1273 */
1274 case TIOCMIWAIT:
1275 local_irq_save(flags);
1276 /* note the counters on entry */
Jiri Slaby916b7652012-03-05 14:52:20 +01001277 cprev = info->icount;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001278 local_irq_restore(flags);
1279 while (1) {
Jiri Slaby87758792012-03-05 14:52:24 +01001280 interruptible_sleep_on(&info->tport.delta_msr_wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001281 /* see if a signal did it */
1282 if (signal_pending(current))
1283 return -ERESTARTSYS;
1284 local_irq_save(flags);
Jiri Slaby916b7652012-03-05 14:52:20 +01001285 cnow = info->icount; /* atomic copy */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001286 local_irq_restore(flags);
1287 if (cnow.rng == cprev.rng && cnow.dsr == cprev.dsr &&
1288 cnow.dcd == cprev.dcd && cnow.cts == cprev.cts)
1289 return -EIO; /* no change => error */
1290 if ( ((arg & TIOCM_RNG) && (cnow.rng != cprev.rng)) ||
1291 ((arg & TIOCM_DSR) && (cnow.dsr != cprev.dsr)) ||
1292 ((arg & TIOCM_CD) && (cnow.dcd != cprev.dcd)) ||
1293 ((arg & TIOCM_CTS) && (cnow.cts != cprev.cts)) ) {
1294 return 0;
1295 }
1296 cprev = cnow;
1297 }
1298 /* NOTREACHED */
1299
Linus Torvalds1da177e2005-04-16 15:20:36 -07001300 case TIOCSERGWILD:
1301 case TIOCSERSWILD:
1302 /* "setserial -W" is called in Debian boot */
1303 printk ("TIOCSER?WILD ioctl obsolete, ignored.\n");
1304 return 0;
1305
1306 default:
1307 return -ENOIOCTLCMD;
1308 }
1309 return 0;
1310}
1311
Alan Cox606d0992006-12-08 02:38:45 -08001312static void rs_set_termios(struct tty_struct *tty, struct ktermios *old_termios)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001313{
Jiri Slaby916b7652012-03-05 14:52:20 +01001314 struct serial_state *info = tty->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001315 unsigned long flags;
1316 unsigned int cflag = tty->termios->c_cflag;
1317
Jiri Slaby588993d2012-03-05 14:52:22 +01001318 change_speed(tty, info, old_termios);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001319
1320 /* Handle transition to B0 status */
1321 if ((old_termios->c_cflag & CBAUD) &&
1322 !(cflag & CBAUD)) {
1323 info->MCR &= ~(SER_DTR|SER_RTS);
1324 local_irq_save(flags);
1325 rtsdtr_ctrl(info->MCR);
1326 local_irq_restore(flags);
1327 }
1328
1329 /* Handle transition away from B0 status */
1330 if (!(old_termios->c_cflag & CBAUD) &&
1331 (cflag & CBAUD)) {
1332 info->MCR |= SER_DTR;
1333 if (!(tty->termios->c_cflag & CRTSCTS) ||
1334 !test_bit(TTY_THROTTLED, &tty->flags)) {
1335 info->MCR |= SER_RTS;
1336 }
1337 local_irq_save(flags);
1338 rtsdtr_ctrl(info->MCR);
1339 local_irq_restore(flags);
1340 }
1341
1342 /* Handle turning off CRTSCTS */
1343 if ((old_termios->c_cflag & CRTSCTS) &&
1344 !(tty->termios->c_cflag & CRTSCTS)) {
1345 tty->hw_stopped = 0;
1346 rs_start(tty);
1347 }
1348
1349#if 0
1350 /*
1351 * No need to wake up processes in open wait, since they
1352 * sample the CLOCAL flag once, and don't recheck it.
1353 * XXX It's not clear whether the current behavior is correct
1354 * or not. Hence, this may change.....
1355 */
1356 if (!(old_termios->c_cflag & CLOCAL) &&
1357 (tty->termios->c_cflag & CLOCAL))
1358 wake_up_interruptible(&info->open_wait);
1359#endif
1360}
1361
1362/*
1363 * ------------------------------------------------------------
1364 * rs_close()
1365 *
1366 * This routine is called when the serial port gets closed. First, we
1367 * wait for the last remaining data to be sent. Then, we unlink its
1368 * async structure from the interrupt chain if necessary, and we free
1369 * that IRQ if nothing is left in the chain.
1370 * ------------------------------------------------------------
1371 */
1372static void rs_close(struct tty_struct *tty, struct file * filp)
1373{
Jiri Slaby916b7652012-03-05 14:52:20 +01001374 struct serial_state *state = tty->driver_data;
Jiri Slaby7188dc22012-03-05 14:52:43 +01001375 struct tty_port *port = &state->tport;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001376 unsigned long flags;
1377
Jiri Slaby916b7652012-03-05 14:52:20 +01001378 if (!state || serial_paranoia_check(state, tty->name, "rs_close"))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001379 return;
1380
Linus Torvalds1da177e2005-04-16 15:20:36 -07001381 local_irq_save(flags);
1382
1383 if (tty_hung_up_p(filp)) {
1384 DBG_CNT("before DEC-hung");
1385 local_irq_restore(flags);
1386 return;
1387 }
1388
1389#ifdef SERIAL_DEBUG_OPEN
Jiri Slaby7188dc22012-03-05 14:52:43 +01001390 printk("rs_close ttys%d, count = %d\n", state->line, port->count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001391#endif
Jiri Slaby7188dc22012-03-05 14:52:43 +01001392 if ((tty->count == 1) && (port->count != 1)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001393 /*
1394 * Uh, oh. tty->count is 1, which means that the tty
Jiri Slaby7188dc22012-03-05 14:52:43 +01001395 * structure will be freed. port->count should always
Linus Torvalds1da177e2005-04-16 15:20:36 -07001396 * be one in these conditions. If it's greater than
1397 * one, we've got real problems, since it means the
1398 * serial port won't be shutdown.
1399 */
1400 printk("rs_close: bad serial port count; tty->count is 1, "
Jiri Slaby7188dc22012-03-05 14:52:43 +01001401 "port->count is %d\n", state->tport.count);
1402 port->count = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001403 }
Jiri Slaby7188dc22012-03-05 14:52:43 +01001404 if (--port->count < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001405 printk("rs_close: bad serial port count for ttys%d: %d\n",
Jiri Slaby7188dc22012-03-05 14:52:43 +01001406 state->line, port->count);
1407 port->count = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001408 }
Jiri Slaby7188dc22012-03-05 14:52:43 +01001409 if (port->count) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001410 DBG_CNT("before DEC-2");
1411 local_irq_restore(flags);
1412 return;
1413 }
Jiri Slaby7188dc22012-03-05 14:52:43 +01001414 port->flags |= ASYNC_CLOSING;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001415 /*
1416 * Now we wait for the transmit buffer to clear; and we notify
1417 * the line discipline to only process XON/XOFF characters.
1418 */
1419 tty->closing = 1;
Jiri Slaby7188dc22012-03-05 14:52:43 +01001420 if (port->closing_wait != ASYNC_CLOSING_WAIT_NONE)
1421 tty_wait_until_sent(tty, port->closing_wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001422 /*
1423 * At this point we stop accepting input. To do this, we
1424 * disable the receive line status interrupts, and tell the
1425 * interrupt driver to stop checking the data ready bit in the
1426 * line status register.
1427 */
Jiri Slaby916b7652012-03-05 14:52:20 +01001428 state->read_status_mask &= ~UART_LSR_DR;
Jiri Slaby7188dc22012-03-05 14:52:43 +01001429 if (port->flags & ASYNC_INITIALIZED) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001430 /* disable receive interrupts */
1431 custom.intena = IF_RBF;
1432 mb();
1433 /* clear any pending receive interrupt */
1434 custom.intreq = IF_RBF;
1435 mb();
1436
1437 /*
1438 * Before we drop DTR, make sure the UART transmitter
1439 * has completely drained; this is especially
1440 * important if there is a transmit FIFO!
1441 */
Jiri Slaby916b7652012-03-05 14:52:20 +01001442 rs_wait_until_sent(tty, state->timeout);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001443 }
Jiri Slaby588993d2012-03-05 14:52:22 +01001444 shutdown(tty, state);
Alan Cox978e5952008-04-30 00:53:59 -07001445 rs_flush_buffer(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001446
1447 tty_ldisc_flush(tty);
1448 tty->closing = 0;
Jiri Slaby7188dc22012-03-05 14:52:43 +01001449 port->tty = NULL;
1450 if (port->blocked_open) {
1451 if (port->close_delay) {
1452 msleep_interruptible(jiffies_to_msecs(port->close_delay));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001453 }
Jiri Slaby7188dc22012-03-05 14:52:43 +01001454 wake_up_interruptible(&port->open_wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001455 }
Jiri Slaby7188dc22012-03-05 14:52:43 +01001456 port->flags &= ~(ASYNC_NORMAL_ACTIVE|ASYNC_CLOSING);
1457 wake_up_interruptible(&port->close_wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001458 local_irq_restore(flags);
1459}
1460
1461/*
1462 * rs_wait_until_sent() --- wait until the transmitter is empty
1463 */
1464static void rs_wait_until_sent(struct tty_struct *tty, int timeout)
1465{
Jiri Slaby916b7652012-03-05 14:52:20 +01001466 struct serial_state *info = tty->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001467 unsigned long orig_jiffies, char_time;
1468 int lsr;
1469
1470 if (serial_paranoia_check(info, tty->name, "rs_wait_until_sent"))
1471 return;
1472
Jiri Slaby916b7652012-03-05 14:52:20 +01001473 if (info->xmit_fifo_size == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001474 return; /* Just in case.... */
1475
1476 orig_jiffies = jiffies;
Alan Cox978e5952008-04-30 00:53:59 -07001477
Arnd Bergmann20365212010-06-01 22:53:07 +02001478 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001479 * Set the check interval to be 1/5 of the estimated time to
1480 * send a single character, and make it at least 1. The check
1481 * interval should also be less than the timeout.
1482 *
1483 * Note: we have to use pretty tight timings here to satisfy
1484 * the NIST-PCTS.
1485 */
Jiri Slaby916b7652012-03-05 14:52:20 +01001486 char_time = (info->timeout - HZ/50) / info->xmit_fifo_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001487 char_time = char_time / 5;
1488 if (char_time == 0)
1489 char_time = 1;
1490 if (timeout)
1491 char_time = min_t(unsigned long, char_time, timeout);
1492 /*
1493 * If the transmitter hasn't cleared in twice the approximate
1494 * amount of time to send the entire FIFO, it probably won't
1495 * ever clear. This assumes the UART isn't doing flow
1496 * control, which is currently the case. Hence, if it ever
1497 * takes longer than info->timeout, this is probably due to a
1498 * UART bug of some kind. So, we clamp the timeout parameter at
1499 * 2*info->timeout.
1500 */
1501 if (!timeout || timeout > 2*info->timeout)
1502 timeout = 2*info->timeout;
1503#ifdef SERIAL_DEBUG_RS_WAIT_UNTIL_SENT
1504 printk("In rs_wait_until_sent(%d) check=%lu...", timeout, char_time);
1505 printk("jiff=%lu...", jiffies);
1506#endif
1507 while(!((lsr = custom.serdatr) & SDR_TSRE)) {
1508#ifdef SERIAL_DEBUG_RS_WAIT_UNTIL_SENT
1509 printk("serdatr = %d (jiff=%lu)...", lsr, jiffies);
1510#endif
1511 msleep_interruptible(jiffies_to_msecs(char_time));
1512 if (signal_pending(current))
1513 break;
1514 if (timeout && time_after(jiffies, orig_jiffies + timeout))
1515 break;
1516 }
Milind Arun Choudharycc0a8fb2007-05-08 00:30:52 -07001517 __set_current_state(TASK_RUNNING);
Jiri Slabyeff4b0b2011-07-14 14:35:13 +02001518
Linus Torvalds1da177e2005-04-16 15:20:36 -07001519#ifdef SERIAL_DEBUG_RS_WAIT_UNTIL_SENT
1520 printk("lsr = %d (jiff=%lu)...done\n", lsr, jiffies);
1521#endif
1522}
1523
1524/*
1525 * rs_hangup() --- called by tty_hangup() when a hangup is signaled.
1526 */
1527static void rs_hangup(struct tty_struct *tty)
1528{
Jiri Slaby916b7652012-03-05 14:52:20 +01001529 struct serial_state *info = tty->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001530
1531 if (serial_paranoia_check(info, tty->name, "rs_hangup"))
1532 return;
1533
Linus Torvalds1da177e2005-04-16 15:20:36 -07001534 rs_flush_buffer(tty);
Jiri Slaby588993d2012-03-05 14:52:22 +01001535 shutdown(tty, info);
Jiri Slaby12c80352012-03-05 14:52:26 +01001536 info->tport.count = 0;
Jiri Slaby01bd7302012-03-05 14:52:27 +01001537 info->tport.flags &= ~ASYNC_NORMAL_ACTIVE;
Jiri Slaby87758792012-03-05 14:52:24 +01001538 info->tport.tty = NULL;
1539 wake_up_interruptible(&info->tport.open_wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001540}
1541
1542/*
1543 * ------------------------------------------------------------
1544 * rs_open() and friends
1545 * ------------------------------------------------------------
1546 */
1547static int block_til_ready(struct tty_struct *tty, struct file * filp,
Jiri Slaby916b7652012-03-05 14:52:20 +01001548 struct serial_state *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001549{
1550#ifdef DECLARE_WAITQUEUE
1551 DECLARE_WAITQUEUE(wait, current);
1552#else
1553 struct wait_queue wait = { current, NULL };
1554#endif
Jiri Slaby01bd7302012-03-05 14:52:27 +01001555 struct tty_port *port = &info->tport;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001556 int retval;
1557 int do_clocal = 0, extra_count = 0;
1558 unsigned long flags;
1559
1560 /*
1561 * If the device is in the middle of being closed, then block
1562 * until it's done, and then try again.
1563 */
1564 if (tty_hung_up_p(filp) ||
Jiri Slaby01bd7302012-03-05 14:52:27 +01001565 (port->flags & ASYNC_CLOSING)) {
1566 if (port->flags & ASYNC_CLOSING)
1567 interruptible_sleep_on(&port->close_wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001568#ifdef SERIAL_DO_RESTART
Jiri Slaby01bd7302012-03-05 14:52:27 +01001569 return ((port->flags & ASYNC_HUP_NOTIFY) ?
Linus Torvalds1da177e2005-04-16 15:20:36 -07001570 -EAGAIN : -ERESTARTSYS);
1571#else
1572 return -EAGAIN;
1573#endif
1574 }
1575
1576 /*
1577 * If non-blocking mode is set, or the port is not enabled,
1578 * then make the check up front and then exit.
1579 */
1580 if ((filp->f_flags & O_NONBLOCK) ||
1581 (tty->flags & (1 << TTY_IO_ERROR))) {
Jiri Slaby01bd7302012-03-05 14:52:27 +01001582 port->flags |= ASYNC_NORMAL_ACTIVE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001583 return 0;
1584 }
1585
1586 if (tty->termios->c_cflag & CLOCAL)
1587 do_clocal = 1;
1588
1589 /*
1590 * Block waiting for the carrier detect and the line to become
1591 * free (i.e., not in use by the callout). While we are in
Jiri Slaby01bd7302012-03-05 14:52:27 +01001592 * this loop, port->count is dropped by one, so that
Linus Torvalds1da177e2005-04-16 15:20:36 -07001593 * rs_close() knows when to free things. We restore it upon
1594 * exit, either normal or abnormal.
1595 */
1596 retval = 0;
Jiri Slaby01bd7302012-03-05 14:52:27 +01001597 add_wait_queue(&port->open_wait, &wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001598#ifdef SERIAL_DEBUG_OPEN
1599 printk("block_til_ready before block: ttys%d, count = %d\n",
Jiri Slaby01bd7302012-03-05 14:52:27 +01001600 info->line, port->count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001601#endif
1602 local_irq_save(flags);
1603 if (!tty_hung_up_p(filp)) {
1604 extra_count = 1;
Jiri Slaby01bd7302012-03-05 14:52:27 +01001605 port->count--;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001606 }
1607 local_irq_restore(flags);
Jiri Slaby01bd7302012-03-05 14:52:27 +01001608 port->blocked_open++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001609 while (1) {
1610 local_irq_save(flags);
1611 if (tty->termios->c_cflag & CBAUD)
1612 rtsdtr_ctrl(SER_DTR|SER_RTS);
1613 local_irq_restore(flags);
1614 set_current_state(TASK_INTERRUPTIBLE);
1615 if (tty_hung_up_p(filp) ||
Jiri Slaby01bd7302012-03-05 14:52:27 +01001616 !(port->flags & ASYNC_INITIALIZED)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001617#ifdef SERIAL_DO_RESTART
Jiri Slaby01bd7302012-03-05 14:52:27 +01001618 if (port->flags & ASYNC_HUP_NOTIFY)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001619 retval = -EAGAIN;
1620 else
1621 retval = -ERESTARTSYS;
1622#else
1623 retval = -EAGAIN;
1624#endif
1625 break;
1626 }
Jiri Slaby01bd7302012-03-05 14:52:27 +01001627 if (!(port->flags & ASYNC_CLOSING) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07001628 (do_clocal || (!(ciab.pra & SER_DCD)) ))
1629 break;
1630 if (signal_pending(current)) {
1631 retval = -ERESTARTSYS;
1632 break;
1633 }
1634#ifdef SERIAL_DEBUG_OPEN
1635 printk("block_til_ready blocking: ttys%d, count = %d\n",
Jiri Slaby01bd7302012-03-05 14:52:27 +01001636 info->line, port->count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001637#endif
Arnd Bergmanne142a312010-06-01 22:53:10 +02001638 tty_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001639 schedule();
Arnd Bergmanne142a312010-06-01 22:53:10 +02001640 tty_lock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001641 }
Milind Arun Choudharycc0a8fb2007-05-08 00:30:52 -07001642 __set_current_state(TASK_RUNNING);
Jiri Slaby01bd7302012-03-05 14:52:27 +01001643 remove_wait_queue(&port->open_wait, &wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001644 if (extra_count)
Jiri Slaby01bd7302012-03-05 14:52:27 +01001645 port->count++;
1646 port->blocked_open--;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001647#ifdef SERIAL_DEBUG_OPEN
1648 printk("block_til_ready after blocking: ttys%d, count = %d\n",
Jiri Slaby01bd7302012-03-05 14:52:27 +01001649 info->line, port->count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001650#endif
1651 if (retval)
1652 return retval;
Jiri Slaby01bd7302012-03-05 14:52:27 +01001653 port->flags |= ASYNC_NORMAL_ACTIVE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001654 return 0;
1655}
1656
1657/*
1658 * This routine is called whenever a serial port is opened. It
1659 * enables interrupts for a serial port, linking in its async structure into
1660 * the IRQ chain. It also performs the serial-specific
1661 * initialization for the tty structure.
1662 */
1663static int rs_open(struct tty_struct *tty, struct file * filp)
1664{
Jiri Slaby916b7652012-03-05 14:52:20 +01001665 struct serial_state *info = rs_table + tty->index;
Jiri Slaby7188dc22012-03-05 14:52:43 +01001666 struct tty_port *port = &info->tport;
Jiri Slaby410235f2012-03-05 14:52:01 +01001667 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001668
Jiri Slaby7188dc22012-03-05 14:52:43 +01001669 port->count++;
1670 port->tty = tty;
Jiri Slaby916b7652012-03-05 14:52:20 +01001671 tty->driver_data = info;
Jiri Slaby7188dc22012-03-05 14:52:43 +01001672 tty->port = port;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001673 if (serial_paranoia_check(info, tty->name, "rs_open"))
1674 return -ENODEV;
1675
1676#ifdef SERIAL_DEBUG_OPEN
Jiri Slaby916b7652012-03-05 14:52:20 +01001677 printk("rs_open %s, count = %d\n", tty->name, info->count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001678#endif
Jiri Slaby7188dc22012-03-05 14:52:43 +01001679 tty->low_latency = (port->flags & ASYNC_LOW_LATENCY) ? 1 : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001680
Linus Torvalds1da177e2005-04-16 15:20:36 -07001681 /*
1682 * If the port is the middle of closing, bail out now
1683 */
1684 if (tty_hung_up_p(filp) ||
Jiri Slaby7188dc22012-03-05 14:52:43 +01001685 (port->flags & ASYNC_CLOSING)) {
1686 if (port->flags & ASYNC_CLOSING)
1687 interruptible_sleep_on(&port->close_wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001688#ifdef SERIAL_DO_RESTART
Jiri Slaby7188dc22012-03-05 14:52:43 +01001689 return ((port->flags & ASYNC_HUP_NOTIFY) ?
Linus Torvalds1da177e2005-04-16 15:20:36 -07001690 -EAGAIN : -ERESTARTSYS);
1691#else
1692 return -EAGAIN;
1693#endif
1694 }
1695
1696 /*
1697 * Start up serial port
1698 */
Jiri Slaby588993d2012-03-05 14:52:22 +01001699 retval = startup(tty, info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001700 if (retval) {
1701 return retval;
1702 }
1703
1704 retval = block_til_ready(tty, filp, info);
1705 if (retval) {
1706#ifdef SERIAL_DEBUG_OPEN
1707 printk("rs_open returning after block_til_ready with %d\n",
1708 retval);
1709#endif
1710 return retval;
1711 }
1712
1713#ifdef SERIAL_DEBUG_OPEN
1714 printk("rs_open %s successful...", tty->name);
1715#endif
1716 return 0;
1717}
1718
1719/*
1720 * /proc fs routines....
1721 */
1722
Alexey Dobriyand5940272009-03-31 15:19:23 -07001723static inline void line_info(struct seq_file *m, struct serial_state *state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001724{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001725 char stat_buf[30], control, status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001726 unsigned long flags;
1727
Alexey Dobriyand5940272009-03-31 15:19:23 -07001728 seq_printf(m, "%d: uart:amiga_builtin",state->line);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001729
Linus Torvalds1da177e2005-04-16 15:20:36 -07001730 local_irq_save(flags);
1731 status = ciab.pra;
Jiri Slaby01bd7302012-03-05 14:52:27 +01001732 control = (state->tport.flags & ASYNC_INITIALIZED) ? state->MCR : status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001733 local_irq_restore(flags);
1734
1735 stat_buf[0] = 0;
1736 stat_buf[1] = 0;
1737 if(!(control & SER_RTS))
1738 strcat(stat_buf, "|RTS");
1739 if(!(status & SER_CTS))
1740 strcat(stat_buf, "|CTS");
1741 if(!(control & SER_DTR))
1742 strcat(stat_buf, "|DTR");
1743 if(!(status & SER_DSR))
1744 strcat(stat_buf, "|DSR");
1745 if(!(status & SER_DCD))
1746 strcat(stat_buf, "|CD");
1747
Jiri Slaby916b7652012-03-05 14:52:20 +01001748 if (state->quot)
1749 seq_printf(m, " baud:%d", state->baud_base / state->quot);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001750
Alexey Dobriyand5940272009-03-31 15:19:23 -07001751 seq_printf(m, " tx:%d rx:%d", state->icount.tx, state->icount.rx);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001752
1753 if (state->icount.frame)
Alexey Dobriyand5940272009-03-31 15:19:23 -07001754 seq_printf(m, " fe:%d", state->icount.frame);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001755
1756 if (state->icount.parity)
Alexey Dobriyand5940272009-03-31 15:19:23 -07001757 seq_printf(m, " pe:%d", state->icount.parity);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001758
1759 if (state->icount.brk)
Alexey Dobriyand5940272009-03-31 15:19:23 -07001760 seq_printf(m, " brk:%d", state->icount.brk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001761
1762 if (state->icount.overrun)
Alexey Dobriyand5940272009-03-31 15:19:23 -07001763 seq_printf(m, " oe:%d", state->icount.overrun);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001764
1765 /*
1766 * Last thing is the RS-232 status lines
1767 */
Alexey Dobriyand5940272009-03-31 15:19:23 -07001768 seq_printf(m, " %s\n", stat_buf+1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001769}
1770
Alexey Dobriyand5940272009-03-31 15:19:23 -07001771static int rs_proc_show(struct seq_file *m, void *v)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001772{
Alexey Dobriyand5940272009-03-31 15:19:23 -07001773 seq_printf(m, "serinfo:1.0 driver:%s\n", serial_version);
1774 line_info(m, &rs_table[0]);
1775 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001776}
1777
Alexey Dobriyand5940272009-03-31 15:19:23 -07001778static int rs_proc_open(struct inode *inode, struct file *file)
1779{
1780 return single_open(file, rs_proc_show, NULL);
1781}
1782
1783static const struct file_operations rs_proc_fops = {
1784 .owner = THIS_MODULE,
1785 .open = rs_proc_open,
1786 .read = seq_read,
1787 .llseek = seq_lseek,
1788 .release = single_release,
1789};
1790
Linus Torvalds1da177e2005-04-16 15:20:36 -07001791/*
1792 * ---------------------------------------------------------------------
1793 * rs_init() and friends
1794 *
1795 * rs_init() is called at boot-time to initialize the serial driver.
1796 * ---------------------------------------------------------------------
1797 */
1798
1799/*
1800 * This routine prints out the appropriate serial driver version
1801 * number, and identifies which options were configured into this
1802 * driver.
1803 */
Adrian Bunk41c28ff2006-03-23 03:00:56 -08001804static void show_serial_version(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001805{
1806 printk(KERN_INFO "%s version %s\n", serial_name, serial_version);
1807}
1808
1809
Jeff Dikeb68e31d2006-10-02 02:17:18 -07001810static const struct tty_operations serial_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001811 .open = rs_open,
1812 .close = rs_close,
1813 .write = rs_write,
1814 .put_char = rs_put_char,
1815 .flush_chars = rs_flush_chars,
1816 .write_room = rs_write_room,
1817 .chars_in_buffer = rs_chars_in_buffer,
1818 .flush_buffer = rs_flush_buffer,
1819 .ioctl = rs_ioctl,
1820 .throttle = rs_throttle,
1821 .unthrottle = rs_unthrottle,
1822 .set_termios = rs_set_termios,
1823 .stop = rs_stop,
1824 .start = rs_start,
1825 .hangup = rs_hangup,
1826 .break_ctl = rs_break,
1827 .send_xchar = rs_send_xchar,
1828 .wait_until_sent = rs_wait_until_sent,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001829 .tiocmget = rs_tiocmget,
1830 .tiocmset = rs_tiocmset,
Alan Cox05871022010-09-16 18:21:52 +01001831 .get_icount = rs_get_icount,
Alexey Dobriyand5940272009-03-31 15:19:23 -07001832 .proc_fops = &rs_proc_fops,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001833};
1834
1835/*
1836 * The serial driver boot-time initialization code!
1837 */
Geert Uytterhoeven826e8c82009-04-05 13:12:30 +02001838static int __init amiga_serial_probe(struct platform_device *pdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001839{
1840 unsigned long flags;
1841 struct serial_state * state;
Geert Uytterhoeven5edc3042008-12-30 14:13:41 +01001842 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001843
Jiri Slaby410235f2012-03-05 14:52:01 +01001844 serial_driver = alloc_tty_driver(NR_PORTS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001845 if (!serial_driver)
1846 return -ENOMEM;
1847
Linus Torvalds1da177e2005-04-16 15:20:36 -07001848 show_serial_version();
1849
1850 /* Initialize the tty_driver structure */
1851
Linus Torvalds1da177e2005-04-16 15:20:36 -07001852 serial_driver->driver_name = "amiserial";
1853 serial_driver->name = "ttyS";
1854 serial_driver->major = TTY_MAJOR;
1855 serial_driver->minor_start = 64;
1856 serial_driver->type = TTY_DRIVER_TYPE_SERIAL;
1857 serial_driver->subtype = SERIAL_TYPE_NORMAL;
1858 serial_driver->init_termios = tty_std_termios;
1859 serial_driver->init_termios.c_cflag =
1860 B9600 | CS8 | CREAD | HUPCL | CLOCAL;
1861 serial_driver->flags = TTY_DRIVER_REAL_RAW;
1862 tty_set_operations(serial_driver, &serial_ops);
1863
Geert Uytterhoeven5edc3042008-12-30 14:13:41 +01001864 error = tty_register_driver(serial_driver);
1865 if (error)
Geert Uytterhoeven826e8c82009-04-05 13:12:30 +02001866 goto fail_put_tty_driver;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001867
1868 state = rs_table;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001869 state->port = (int)&custom.serdatr; /* Just to give it a value */
1870 state->line = 0;
1871 state->custom_divisor = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001872 state->icount.cts = state->icount.dsr =
1873 state->icount.rng = state->icount.dcd = 0;
1874 state->icount.rx = state->icount.tx = 0;
1875 state->icount.frame = state->icount.parity = 0;
1876 state->icount.overrun = state->icount.brk = 0;
Jiri Slaby87758792012-03-05 14:52:24 +01001877 tty_port_init(&state->tport);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001878
1879 printk(KERN_INFO "ttyS%d is the amiga builtin serial port\n",
1880 state->line);
1881
1882 /* Hardware set up */
1883
1884 state->baud_base = amiga_colorclock;
1885 state->xmit_fifo_size = 1;
1886
Linus Torvalds1da177e2005-04-16 15:20:36 -07001887 /* set ISRs, and then disable the rx interrupts */
Geert Uytterhoeven5edc3042008-12-30 14:13:41 +01001888 error = request_irq(IRQ_AMIGA_TBE, ser_tx_int, 0, "serial TX", state);
1889 if (error)
1890 goto fail_unregister;
1891
Yong Zhang9cfb5c02011-09-22 16:59:15 +08001892 error = request_irq(IRQ_AMIGA_RBF, ser_rx_int, 0,
Geert Uytterhoeven5edc3042008-12-30 14:13:41 +01001893 "serial RX", state);
1894 if (error)
1895 goto fail_free_irq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001896
Julia Lawallc70c0362010-04-06 14:34:46 -07001897 local_irq_save(flags);
1898
Linus Torvalds1da177e2005-04-16 15:20:36 -07001899 /* turn off Rx and Tx interrupts */
1900 custom.intena = IF_RBF | IF_TBE;
1901 mb();
1902
1903 /* clear any pending interrupt */
1904 custom.intreq = IF_RBF | IF_TBE;
1905 mb();
1906
1907 local_irq_restore(flags);
1908
1909 /*
1910 * set the appropriate directions for the modem control flags,
1911 * and clear RTS and DTR
1912 */
1913 ciab.ddra |= (SER_DTR | SER_RTS); /* outputs */
1914 ciab.ddra &= ~(SER_DCD | SER_CTS | SER_DSR); /* inputs */
1915
Geert Uytterhoeven826e8c82009-04-05 13:12:30 +02001916 platform_set_drvdata(pdev, state);
1917
Linus Torvalds1da177e2005-04-16 15:20:36 -07001918 return 0;
Geert Uytterhoeven5edc3042008-12-30 14:13:41 +01001919
1920fail_free_irq:
1921 free_irq(IRQ_AMIGA_TBE, state);
1922fail_unregister:
1923 tty_unregister_driver(serial_driver);
Geert Uytterhoeven5edc3042008-12-30 14:13:41 +01001924fail_put_tty_driver:
1925 put_tty_driver(serial_driver);
1926 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001927}
1928
Geert Uytterhoeven826e8c82009-04-05 13:12:30 +02001929static int __exit amiga_serial_remove(struct platform_device *pdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001930{
1931 int error;
Geert Uytterhoeven826e8c82009-04-05 13:12:30 +02001932 struct serial_state *state = platform_get_drvdata(pdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001933
1934 /* printk("Unloading %s: version %s\n", serial_name, serial_version); */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001935 if ((error = tty_unregister_driver(serial_driver)))
1936 printk("SERIAL: failed to unregister serial driver (%d)\n",
1937 error);
1938 put_tty_driver(serial_driver);
1939
Jiri Slaby916b7652012-03-05 14:52:20 +01001940 free_irq(IRQ_AMIGA_TBE, state);
1941 free_irq(IRQ_AMIGA_RBF, state);
Geert Uytterhoeven5edc3042008-12-30 14:13:41 +01001942
Geert Uytterhoeven826e8c82009-04-05 13:12:30 +02001943 platform_set_drvdata(pdev, NULL);
1944
1945 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001946}
1947
Geert Uytterhoeven826e8c82009-04-05 13:12:30 +02001948static struct platform_driver amiga_serial_driver = {
1949 .remove = __exit_p(amiga_serial_remove),
1950 .driver = {
1951 .name = "amiga-serial",
1952 .owner = THIS_MODULE,
1953 },
1954};
1955
1956static int __init amiga_serial_init(void)
1957{
1958 return platform_driver_probe(&amiga_serial_driver, amiga_serial_probe);
1959}
1960
1961module_init(amiga_serial_init);
1962
1963static void __exit amiga_serial_exit(void)
1964{
1965 platform_driver_unregister(&amiga_serial_driver);
1966}
1967
1968module_exit(amiga_serial_exit);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001969
1970
Geert Uytterhoevend1a35e42008-10-26 19:51:14 +01001971#if defined(CONFIG_SERIAL_CONSOLE) && !defined(MODULE)
1972
Linus Torvalds1da177e2005-04-16 15:20:36 -07001973/*
1974 * ------------------------------------------------------------
1975 * Serial console driver
1976 * ------------------------------------------------------------
1977 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001978
1979static void amiga_serial_putc(char c)
1980{
1981 custom.serdat = (unsigned char)c | 0x100;
1982 while (!(custom.serdatr & 0x2000))
1983 barrier();
1984}
1985
1986/*
1987 * Print a string to the serial port trying not to disturb
1988 * any possible real use of the port...
1989 *
1990 * The console must be locked when we get here.
1991 */
1992static void serial_console_write(struct console *co, const char *s,
1993 unsigned count)
1994{
1995 unsigned short intena = custom.intenar;
1996
1997 custom.intena = IF_TBE;
1998
1999 while (count--) {
2000 if (*s == '\n')
2001 amiga_serial_putc('\r');
2002 amiga_serial_putc(*s++);
2003 }
2004
2005 custom.intena = IF_SETCLR | (intena & IF_TBE);
2006}
2007
2008static struct tty_driver *serial_console_device(struct console *c, int *index)
2009{
2010 *index = 0;
2011 return serial_driver;
2012}
2013
2014static struct console sercons = {
2015 .name = "ttyS",
2016 .write = serial_console_write,
2017 .device = serial_console_device,
2018 .flags = CON_PRINTBUFFER,
2019 .index = -1,
2020};
2021
2022/*
2023 * Register console.
2024 */
2025static int __init amiserial_console_init(void)
2026{
2027 register_console(&sercons);
2028 return 0;
2029}
2030console_initcall(amiserial_console_init);
Geert Uytterhoevend1a35e42008-10-26 19:51:14 +01002031
2032#endif /* CONFIG_SERIAL_CONSOLE && !MODULE */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002033
2034MODULE_LICENSE("GPL");
Geert Uytterhoeven826e8c82009-04-05 13:12:30 +02002035MODULE_ALIAS("platform:amiga-serial");