blob: 61d74613bd4deba6dc5a9d6ed82d473a9460c3d8 [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>
Linus Torvalds1da177e2005-04-16 15:20:36 -070061#include <linux/serial_reg.h>
62static char *serial_version = "4.30";
63
64#include <linux/errno.h>
65#include <linux/signal.h>
66#include <linux/sched.h>
67#include <linux/kernel.h>
68#include <linux/timer.h>
69#include <linux/interrupt.h>
70#include <linux/tty.h>
71#include <linux/tty_flip.h>
Jiri Slaby6fe18d262012-03-05 14:52:45 +010072#include <linux/circ_buf.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070073#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
Jiri Slaby6fe18d262012-03-05 14:52:45 +010095struct serial_state {
96 struct tty_port tport;
97 struct circ_buf xmit;
98 struct async_icount icount;
99
100 unsigned long port;
101 int baud_base;
102 int xmit_fifo_size;
103 int custom_divisor;
104 int read_status_mask;
105 int ignore_status_mask;
106 int timeout;
107 int quot;
108 int IER; /* Interrupt Enable Register */
109 int MCR; /* Modem control register */
110 int x_char; /* xon/xoff character */
111};
112
Al Virob4290a22006-01-12 01:06:12 -0800113#define custom amiga_custom
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114static char *serial_name = "Amiga-builtin serial driver";
115
116static struct tty_driver *serial_driver;
117
118/* number of characters left in xmit buffer before we ask for more */
119#define WAKEUP_CHARS 256
120
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121static unsigned char current_ctl_bits;
122
Jiri Slaby588993d2012-03-05 14:52:22 +0100123static void change_speed(struct tty_struct *tty, struct serial_state *info,
124 struct ktermios *old);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125static void rs_wait_until_sent(struct tty_struct *tty, int timeout);
126
127
128static struct serial_state rs_table[1];
129
Tobias Klauserfe971072006-01-09 20:54:02 -0800130#define NR_PORTS ARRAY_SIZE(rs_table)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132#include <asm/uaccess.h>
133
134#define serial_isroot() (capable(CAP_SYS_ADMIN))
135
136
Jiri Slaby916b7652012-03-05 14:52:20 +0100137static inline int serial_paranoia_check(struct serial_state *info,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138 char *name, const char *routine)
139{
140#ifdef SERIAL_PARANOIA_CHECK
141 static const char *badmagic =
142 "Warning: bad magic number for serial struct (%s) in %s\n";
143 static const char *badinfo =
144 "Warning: null async_struct for (%s) in %s\n";
145
146 if (!info) {
147 printk(badinfo, name, routine);
148 return 1;
149 }
150 if (info->magic != SERIAL_MAGIC) {
151 printk(badmagic, name, routine);
152 return 1;
153 }
154#endif
155 return 0;
156}
157
158/* some serial hardware definitions */
159#define SDR_OVRUN (1<<15)
160#define SDR_RBF (1<<14)
161#define SDR_TBE (1<<13)
162#define SDR_TSRE (1<<12)
163
164#define SERPER_PARENB (1<<15)
165
166#define AC_SETCLR (1<<15)
167#define AC_UARTBRK (1<<11)
168
169#define SER_DTR (1<<7)
170#define SER_RTS (1<<6)
171#define SER_DCD (1<<5)
172#define SER_CTS (1<<4)
173#define SER_DSR (1<<3)
174
175static __inline__ void rtsdtr_ctrl(int bits)
176{
177 ciab.pra = ((bits & (SER_RTS | SER_DTR)) ^ (SER_RTS | SER_DTR)) | (ciab.pra & ~(SER_RTS | SER_DTR));
178}
179
180/*
181 * ------------------------------------------------------------
182 * rs_stop() and rs_start()
183 *
184 * This routines are called before setting or resetting tty->stopped.
185 * They enable or disable transmitter interrupts, as necessary.
186 * ------------------------------------------------------------
187 */
188static void rs_stop(struct tty_struct *tty)
189{
Jiri Slaby916b7652012-03-05 14:52:20 +0100190 struct serial_state *info = tty->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191 unsigned long flags;
192
193 if (serial_paranoia_check(info, tty->name, "rs_stop"))
194 return;
195
196 local_irq_save(flags);
197 if (info->IER & UART_IER_THRI) {
198 info->IER &= ~UART_IER_THRI;
199 /* disable Tx interrupt and remove any pending interrupts */
200 custom.intena = IF_TBE;
201 mb();
202 custom.intreq = IF_TBE;
203 mb();
204 }
205 local_irq_restore(flags);
206}
207
208static void rs_start(struct tty_struct *tty)
209{
Jiri Slaby916b7652012-03-05 14:52:20 +0100210 struct serial_state *info = tty->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211 unsigned long flags;
212
213 if (serial_paranoia_check(info, tty->name, "rs_start"))
214 return;
215
216 local_irq_save(flags);
217 if (info->xmit.head != info->xmit.tail
218 && info->xmit.buf
219 && !(info->IER & UART_IER_THRI)) {
220 info->IER |= UART_IER_THRI;
221 custom.intena = IF_SETCLR | IF_TBE;
222 mb();
223 /* set a pending Tx Interrupt, transmitter should restart now */
224 custom.intreq = IF_SETCLR | IF_TBE;
225 mb();
226 }
227 local_irq_restore(flags);
228}
229
230/*
231 * ----------------------------------------------------------------------
232 *
233 * Here starts the interrupt handling routines. All of the following
234 * subroutines are declared as inline and are folded into
235 * rs_interrupt(). They were separated out for readability's sake.
236 *
237 * Note: rs_interrupt() is a "fast" interrupt, which means that it
238 * runs with interrupts turned off. People who may want to modify
239 * rs_interrupt() should try to keep the interrupt handler as fast as
240 * possible. After you are done making modifications, it is not a bad
241 * idea to do:
242 *
243 * gcc -S -DKERNEL -Wall -Wstrict-prototypes -O6 -fomit-frame-pointer serial.c
244 *
245 * and look at the resulting assemble code in serial.s.
246 *
247 * - Ted Ts'o (tytso@mit.edu), 7-Mar-93
248 * -----------------------------------------------------------------------
249 */
250
Jiri Slaby916b7652012-03-05 14:52:20 +0100251static void receive_chars(struct serial_state *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700252{
253 int status;
254 int serdatr;
Jiri Slaby87758792012-03-05 14:52:24 +0100255 struct tty_struct *tty = info->tport.tty;
Alan Cox33f0f882006-01-09 20:54:13 -0800256 unsigned char ch, flag;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257 struct async_icount *icount;
Alan Cox33f0f882006-01-09 20:54:13 -0800258 int oe = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259
Jiri Slaby916b7652012-03-05 14:52:20 +0100260 icount = &info->icount;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261
262 status = UART_LSR_DR; /* We obviously have a character! */
263 serdatr = custom.serdatr;
264 mb();
265 custom.intreq = IF_RBF;
266 mb();
267
268 if((serdatr & 0x1ff) == 0)
269 status |= UART_LSR_BI;
270 if(serdatr & SDR_OVRUN)
271 status |= UART_LSR_OE;
272
273 ch = serdatr & 0xff;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274 icount->rx++;
275
276#ifdef SERIAL_DEBUG_INTR
277 printk("DR%02x:%02x...", ch, status);
278#endif
Alan Cox33f0f882006-01-09 20:54:13 -0800279 flag = TTY_NORMAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280
281 /*
282 * We don't handle parity or frame errors - but I have left
283 * the code in, since I'm not sure that the errors can't be
284 * detected.
285 */
286
287 if (status & (UART_LSR_BI | UART_LSR_PE |
288 UART_LSR_FE | UART_LSR_OE)) {
289 /*
290 * For statistics only
291 */
292 if (status & UART_LSR_BI) {
293 status &= ~(UART_LSR_FE | UART_LSR_PE);
294 icount->brk++;
295 } else if (status & UART_LSR_PE)
296 icount->parity++;
297 else if (status & UART_LSR_FE)
298 icount->frame++;
299 if (status & UART_LSR_OE)
300 icount->overrun++;
301
302 /*
303 * Now check to see if character should be
304 * ignored, and mask off conditions which
305 * should be ignored.
306 */
307 if (status & info->ignore_status_mask)
Alan Cox33f0f882006-01-09 20:54:13 -0800308 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309
310 status &= info->read_status_mask;
311
312 if (status & (UART_LSR_BI)) {
313#ifdef SERIAL_DEBUG_INTR
314 printk("handling break....");
315#endif
Alan Cox33f0f882006-01-09 20:54:13 -0800316 flag = TTY_BREAK;
Jiri Slaby01bd7302012-03-05 14:52:27 +0100317 if (info->tport.flags & ASYNC_SAK)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318 do_SAK(tty);
319 } else if (status & UART_LSR_PE)
Alan Cox33f0f882006-01-09 20:54:13 -0800320 flag = TTY_PARITY;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321 else if (status & UART_LSR_FE)
Alan Cox33f0f882006-01-09 20:54:13 -0800322 flag = TTY_FRAME;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700323 if (status & UART_LSR_OE) {
324 /*
325 * Overrun is special, since it's
326 * reported immediately, and doesn't
327 * affect the current character
328 */
Alan Cox33f0f882006-01-09 20:54:13 -0800329 oe = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700330 }
331 }
Alan Cox33f0f882006-01-09 20:54:13 -0800332 tty_insert_flip_char(tty, ch, flag);
333 if (oe == 1)
334 tty_insert_flip_char(tty, 0, TTY_OVERRUN);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335 tty_flip_buffer_push(tty);
Alan Cox33f0f882006-01-09 20:54:13 -0800336out:
337 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338}
339
Jiri Slaby916b7652012-03-05 14:52:20 +0100340static void transmit_chars(struct serial_state *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341{
342 custom.intreq = IF_TBE;
343 mb();
344 if (info->x_char) {
345 custom.serdat = info->x_char | 0x100;
346 mb();
Jiri Slaby916b7652012-03-05 14:52:20 +0100347 info->icount.tx++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348 info->x_char = 0;
349 return;
350 }
351 if (info->xmit.head == info->xmit.tail
Jiri Slaby87758792012-03-05 14:52:24 +0100352 || info->tport.tty->stopped
353 || info->tport.tty->hw_stopped) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700354 info->IER &= ~UART_IER_THRI;
355 custom.intena = IF_TBE;
356 mb();
357 return;
358 }
359
360 custom.serdat = info->xmit.buf[info->xmit.tail++] | 0x100;
361 mb();
362 info->xmit.tail = info->xmit.tail & (SERIAL_XMIT_SIZE-1);
Jiri Slaby916b7652012-03-05 14:52:20 +0100363 info->icount.tx++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700364
365 if (CIRC_CNT(info->xmit.head,
366 info->xmit.tail,
367 SERIAL_XMIT_SIZE) < WAKEUP_CHARS)
Jiri Slaby87758792012-03-05 14:52:24 +0100368 tty_wakeup(info->tport.tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700369
370#ifdef SERIAL_DEBUG_INTR
371 printk("THRE...");
372#endif
373 if (info->xmit.head == info->xmit.tail) {
374 custom.intena = IF_TBE;
375 mb();
376 info->IER &= ~UART_IER_THRI;
377 }
378}
379
Jiri Slaby916b7652012-03-05 14:52:20 +0100380static void check_modem_status(struct serial_state *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381{
Jiri Slaby7188dc22012-03-05 14:52:43 +0100382 struct tty_port *port = &info->tport;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383 unsigned char status = ciab.pra & (SER_DCD | SER_CTS | SER_DSR);
384 unsigned char dstatus;
385 struct async_icount *icount;
386
387 /* Determine bits that have changed */
388 dstatus = status ^ current_ctl_bits;
389 current_ctl_bits = status;
390
391 if (dstatus) {
Jiri Slaby916b7652012-03-05 14:52:20 +0100392 icount = &info->icount;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700393 /* update input line counters */
394 if (dstatus & SER_DSR)
395 icount->dsr++;
396 if (dstatus & SER_DCD) {
397 icount->dcd++;
398#ifdef CONFIG_HARD_PPS
Jiri Slaby7188dc22012-03-05 14:52:43 +0100399 if ((port->flags & ASYNC_HARDPPS_CD) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -0700400 !(status & SER_DCD))
401 hardpps();
402#endif
403 }
404 if (dstatus & SER_CTS)
405 icount->cts++;
Jiri Slaby7188dc22012-03-05 14:52:43 +0100406 wake_up_interruptible(&port->delta_msr_wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700407 }
408
Jiri Slaby7188dc22012-03-05 14:52:43 +0100409 if ((port->flags & ASYNC_CHECK_CD) && (dstatus & SER_DCD)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700410#if (defined(SERIAL_DEBUG_OPEN) || defined(SERIAL_DEBUG_INTR))
411 printk("ttyS%d CD now %s...", info->line,
412 (!(status & SER_DCD)) ? "on" : "off");
413#endif
414 if (!(status & SER_DCD))
Jiri Slaby7188dc22012-03-05 14:52:43 +0100415 wake_up_interruptible(&port->open_wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700416 else {
417#ifdef SERIAL_DEBUG_OPEN
418 printk("doing serial hangup...");
419#endif
Jiri Slaby7188dc22012-03-05 14:52:43 +0100420 if (port->tty)
421 tty_hangup(port->tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700422 }
423 }
Jiri Slaby7188dc22012-03-05 14:52:43 +0100424 if (port->flags & ASYNC_CTS_FLOW) {
425 if (port->tty->hw_stopped) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700426 if (!(status & SER_CTS)) {
427#if (defined(SERIAL_DEBUG_INTR) || defined(SERIAL_DEBUG_FLOW))
428 printk("CTS tx start...");
429#endif
Jiri Slaby7188dc22012-03-05 14:52:43 +0100430 port->tty->hw_stopped = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700431 info->IER |= UART_IER_THRI;
432 custom.intena = IF_SETCLR | IF_TBE;
433 mb();
434 /* set a pending Tx Interrupt, transmitter should restart now */
435 custom.intreq = IF_SETCLR | IF_TBE;
436 mb();
Jiri Slaby7188dc22012-03-05 14:52:43 +0100437 tty_wakeup(port->tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700438 return;
439 }
440 } else {
441 if ((status & SER_CTS)) {
442#if (defined(SERIAL_DEBUG_INTR) || defined(SERIAL_DEBUG_FLOW))
443 printk("CTS tx stop...");
444#endif
Jiri Slaby7188dc22012-03-05 14:52:43 +0100445 port->tty->hw_stopped = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700446 info->IER &= ~UART_IER_THRI;
447 /* disable Tx interrupt and remove any pending interrupts */
448 custom.intena = IF_TBE;
449 mb();
450 custom.intreq = IF_TBE;
451 mb();
452 }
453 }
454 }
455}
456
David Howells7d12e782006-10-05 14:55:46 +0100457static irqreturn_t ser_vbl_int( int irq, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700458{
459 /* vbl is just a periodic interrupt we tie into to update modem status */
Jiri Slaby916b7652012-03-05 14:52:20 +0100460 struct serial_state *info = data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700461 /*
462 * TBD - is it better to unregister from this interrupt or to
463 * ignore it if MSI is clear ?
464 */
465 if(info->IER & UART_IER_MSI)
466 check_modem_status(info);
467 return IRQ_HANDLED;
468}
469
David Howells7d12e782006-10-05 14:55:46 +0100470static irqreturn_t ser_rx_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#ifdef SERIAL_DEBUG_INTR
475 printk("ser_rx_int...");
476#endif
477
Jiri Slaby87758792012-03-05 14:52:24 +0100478 if (!info->tport.tty)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700479 return IRQ_NONE;
480
481 receive_chars(info);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700482#ifdef SERIAL_DEBUG_INTR
483 printk("end.\n");
484#endif
485 return IRQ_HANDLED;
486}
487
David Howells7d12e782006-10-05 14:55:46 +0100488static irqreturn_t ser_tx_int(int irq, void *dev_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700489{
Jiri Slaby916b7652012-03-05 14:52:20 +0100490 struct serial_state *info = dev_id;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700491
492 if (custom.serdatr & SDR_TBE) {
493#ifdef SERIAL_DEBUG_INTR
494 printk("ser_tx_int...");
495#endif
496
Jiri Slaby87758792012-03-05 14:52:24 +0100497 if (!info->tport.tty)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700498 return IRQ_NONE;
499
500 transmit_chars(info);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700501#ifdef SERIAL_DEBUG_INTR
502 printk("end.\n");
503#endif
504 }
505 return IRQ_HANDLED;
506}
507
508/*
509 * -------------------------------------------------------------------
510 * Here ends the serial interrupt routines.
511 * -------------------------------------------------------------------
512 */
513
514/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700515 * ---------------------------------------------------------------
516 * Low level utility subroutines for the serial driver: routines to
517 * figure out the appropriate timeout for an interrupt chain, routines
518 * to initialize and startup a serial port, and routines to shutdown a
519 * serial port. Useful stuff like that.
520 * ---------------------------------------------------------------
521 */
522
Jiri Slaby588993d2012-03-05 14:52:22 +0100523static int startup(struct tty_struct *tty, struct serial_state *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700524{
Jiri Slaby01bd7302012-03-05 14:52:27 +0100525 struct tty_port *port = &info->tport;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700526 unsigned long flags;
527 int retval=0;
528 unsigned long page;
529
530 page = get_zeroed_page(GFP_KERNEL);
531 if (!page)
532 return -ENOMEM;
533
534 local_irq_save(flags);
535
Jiri Slaby01bd7302012-03-05 14:52:27 +0100536 if (port->flags & ASYNC_INITIALIZED) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700537 free_page(page);
538 goto errout;
539 }
540
541 if (info->xmit.buf)
542 free_page(page);
543 else
544 info->xmit.buf = (unsigned char *) page;
545
546#ifdef SERIAL_DEBUG_OPEN
547 printk("starting up ttys%d ...", info->line);
548#endif
549
550 /* Clear anything in the input buffer */
551
552 custom.intreq = IF_RBF;
553 mb();
554
555 retval = request_irq(IRQ_AMIGA_VERTB, ser_vbl_int, 0, "serial status", info);
556 if (retval) {
557 if (serial_isroot()) {
Jiri Slaby588993d2012-03-05 14:52:22 +0100558 set_bit(TTY_IO_ERROR, &tty->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700559 retval = 0;
560 }
561 goto errout;
562 }
563
564 /* enable both Rx and Tx interrupts */
565 custom.intena = IF_SETCLR | IF_RBF | IF_TBE;
566 mb();
567 info->IER = UART_IER_MSI;
568
569 /* remember current state of the DCD and CTS bits */
570 current_ctl_bits = ciab.pra & (SER_DCD | SER_CTS | SER_DSR);
571
Linus Torvalds1da177e2005-04-16 15:20:36 -0700572 info->MCR = 0;
Jiri Slaby588993d2012-03-05 14:52:22 +0100573 if (C_BAUD(tty))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700574 info->MCR = SER_DTR | SER_RTS;
575 rtsdtr_ctrl(info->MCR);
576
Jiri Slaby588993d2012-03-05 14:52:22 +0100577 clear_bit(TTY_IO_ERROR, &tty->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700578 info->xmit.head = info->xmit.tail = 0;
579
580 /*
581 * Set up the tty->alt_speed kludge
582 */
Jiri Slaby01bd7302012-03-05 14:52:27 +0100583 if ((port->flags & ASYNC_SPD_MASK) == ASYNC_SPD_HI)
Jiri Slaby588993d2012-03-05 14:52:22 +0100584 tty->alt_speed = 57600;
Jiri Slaby01bd7302012-03-05 14:52:27 +0100585 if ((port->flags & ASYNC_SPD_MASK) == ASYNC_SPD_VHI)
Jiri Slaby588993d2012-03-05 14:52:22 +0100586 tty->alt_speed = 115200;
Jiri Slaby01bd7302012-03-05 14:52:27 +0100587 if ((port->flags & ASYNC_SPD_MASK) == ASYNC_SPD_SHI)
Jiri Slaby588993d2012-03-05 14:52:22 +0100588 tty->alt_speed = 230400;
Jiri Slaby01bd7302012-03-05 14:52:27 +0100589 if ((port->flags & ASYNC_SPD_MASK) == ASYNC_SPD_WARP)
Jiri Slaby588993d2012-03-05 14:52:22 +0100590 tty->alt_speed = 460800;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700591
592 /*
593 * and set the speed of the serial port
594 */
Jiri Slaby588993d2012-03-05 14:52:22 +0100595 change_speed(tty, info, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700596
Jiri Slaby01bd7302012-03-05 14:52:27 +0100597 port->flags |= ASYNC_INITIALIZED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700598 local_irq_restore(flags);
599 return 0;
600
601errout:
602 local_irq_restore(flags);
603 return retval;
604}
605
606/*
607 * This routine will shutdown a serial port; interrupts are disabled, and
608 * DTR is dropped if the hangup on close termio flag is on.
609 */
Jiri Slaby588993d2012-03-05 14:52:22 +0100610static void shutdown(struct tty_struct *tty, struct serial_state *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700611{
612 unsigned long flags;
613 struct serial_state *state;
614
Jiri Slaby01bd7302012-03-05 14:52:27 +0100615 if (!(info->tport.flags & ASYNC_INITIALIZED))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700616 return;
617
Jiri Slaby916b7652012-03-05 14:52:20 +0100618 state = info;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700619
620#ifdef SERIAL_DEBUG_OPEN
621 printk("Shutting down serial port %d ....\n", info->line);
622#endif
623
624 local_irq_save(flags); /* Disable interrupts */
625
626 /*
627 * clear delta_msr_wait queue to avoid mem leaks: we may free the irq
628 * here so the queue might never be waken up
629 */
Jiri Slaby87758792012-03-05 14:52:24 +0100630 wake_up_interruptible(&info->tport.delta_msr_wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700631
Linus Torvalds1da177e2005-04-16 15:20:36 -0700632 /*
633 * Free the IRQ, if necessary
634 */
635 free_irq(IRQ_AMIGA_VERTB, info);
636
637 if (info->xmit.buf) {
638 free_page((unsigned long) info->xmit.buf);
639 info->xmit.buf = NULL;
640 }
641
642 info->IER = 0;
643 custom.intena = IF_RBF | IF_TBE;
644 mb();
645
646 /* disable break condition */
647 custom.adkcon = AC_UARTBRK;
648 mb();
649
Jiri Slaby588993d2012-03-05 14:52:22 +0100650 if (tty->termios->c_cflag & HUPCL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700651 info->MCR &= ~(SER_DTR|SER_RTS);
652 rtsdtr_ctrl(info->MCR);
653
Jiri Slaby588993d2012-03-05 14:52:22 +0100654 set_bit(TTY_IO_ERROR, &tty->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700655
Jiri Slaby01bd7302012-03-05 14:52:27 +0100656 info->tport.flags &= ~ASYNC_INITIALIZED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700657 local_irq_restore(flags);
658}
659
660
661/*
662 * This routine is called to set the UART divisor registers to match
663 * the specified baud rate for a serial port.
664 */
Jiri Slaby588993d2012-03-05 14:52:22 +0100665static void change_speed(struct tty_struct *tty, struct serial_state *info,
Alan Cox606d0992006-12-08 02:38:45 -0800666 struct ktermios *old_termios)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700667{
Jiri Slaby01bd7302012-03-05 14:52:27 +0100668 struct tty_port *port = &info->tport;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700669 int quot = 0, baud_base, baud;
670 unsigned cflag, cval = 0;
671 int bits;
672 unsigned long flags;
673
Jiri Slaby588993d2012-03-05 14:52:22 +0100674 cflag = tty->termios->c_cflag;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700675
676 /* Byte size is always 8 bits plus parity bit if requested */
677
678 cval = 3; bits = 10;
679 if (cflag & CSTOPB) {
680 cval |= 0x04;
681 bits++;
682 }
683 if (cflag & PARENB) {
684 cval |= UART_LCR_PARITY;
685 bits++;
686 }
687 if (!(cflag & PARODD))
688 cval |= UART_LCR_EPAR;
689#ifdef CMSPAR
690 if (cflag & CMSPAR)
691 cval |= UART_LCR_SPAR;
692#endif
693
694 /* Determine divisor based on baud rate */
Jiri Slaby588993d2012-03-05 14:52:22 +0100695 baud = tty_get_baud_rate(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700696 if (!baud)
697 baud = 9600; /* B0 transition handled in rs_set_termios */
Jiri Slaby916b7652012-03-05 14:52:20 +0100698 baud_base = info->baud_base;
Jiri Slaby01bd7302012-03-05 14:52:27 +0100699 if (baud == 38400 && (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 /* If the quotient is zero refuse the change */
709 if (!quot && old_termios) {
Alan Coxdb0ef082007-07-15 23:41:47 -0700710 /* FIXME: Will need updating for new tty in the end */
Jiri Slaby588993d2012-03-05 14:52:22 +0100711 tty->termios->c_cflag &= ~CBAUD;
712 tty->termios->c_cflag |= (old_termios->c_cflag & CBAUD);
713 baud = tty_get_baud_rate(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700714 if (!baud)
715 baud = 9600;
716 if (baud == 38400 &&
Jiri Slaby01bd7302012-03-05 14:52:27 +0100717 (port->flags & ASYNC_SPD_MASK) == ASYNC_SPD_CUST)
Jiri Slaby916b7652012-03-05 14:52:20 +0100718 quot = info->custom_divisor;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700719 else {
720 if (baud == 134)
721 /* Special case since 134 is really 134.5 */
722 quot = (2*baud_base / 269);
723 else if (baud)
724 quot = baud_base / baud;
725 }
726 }
727 /* As a last resort, if the quotient is zero, default to 9600 bps */
728 if (!quot)
729 quot = baud_base / 9600;
730 info->quot = quot;
Jiri Slaby916b7652012-03-05 14:52:20 +0100731 info->timeout = ((info->xmit_fifo_size*HZ*bits*quot) / baud_base);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700732 info->timeout += HZ/50; /* Add .02 seconds of slop */
733
734 /* CTS flow control flag and modem status interrupts */
735 info->IER &= ~UART_IER_MSI;
Jiri Slaby01bd7302012-03-05 14:52:27 +0100736 if (port->flags & ASYNC_HARDPPS_CD)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700737 info->IER |= UART_IER_MSI;
738 if (cflag & CRTSCTS) {
Jiri Slaby01bd7302012-03-05 14:52:27 +0100739 port->flags |= ASYNC_CTS_FLOW;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700740 info->IER |= UART_IER_MSI;
741 } else
Jiri Slaby01bd7302012-03-05 14:52:27 +0100742 port->flags &= ~ASYNC_CTS_FLOW;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700743 if (cflag & CLOCAL)
Jiri Slaby01bd7302012-03-05 14:52:27 +0100744 port->flags &= ~ASYNC_CHECK_CD;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700745 else {
Jiri Slaby01bd7302012-03-05 14:52:27 +0100746 port->flags |= ASYNC_CHECK_CD;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700747 info->IER |= UART_IER_MSI;
748 }
749 /* TBD:
Thadeu Lima de Souza Cascardo4b512d22009-04-14 23:14:10 -0300750 * Does clearing IER_MSI imply that we should disable the VBL interrupt ?
Linus Torvalds1da177e2005-04-16 15:20:36 -0700751 */
752
753 /*
754 * Set up parity check flag
755 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700756
757 info->read_status_mask = UART_LSR_OE | UART_LSR_DR;
Jiri Slaby588993d2012-03-05 14:52:22 +0100758 if (I_INPCK(tty))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700759 info->read_status_mask |= UART_LSR_FE | UART_LSR_PE;
Jiri Slaby588993d2012-03-05 14:52:22 +0100760 if (I_BRKINT(tty) || I_PARMRK(tty))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700761 info->read_status_mask |= UART_LSR_BI;
762
763 /*
764 * Characters to ignore
765 */
766 info->ignore_status_mask = 0;
Jiri Slaby588993d2012-03-05 14:52:22 +0100767 if (I_IGNPAR(tty))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700768 info->ignore_status_mask |= UART_LSR_PE | UART_LSR_FE;
Jiri Slaby588993d2012-03-05 14:52:22 +0100769 if (I_IGNBRK(tty)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700770 info->ignore_status_mask |= UART_LSR_BI;
771 /*
772 * If we're ignore parity and break indicators, ignore
773 * overruns too. (For real raw support).
774 */
Jiri Slaby588993d2012-03-05 14:52:22 +0100775 if (I_IGNPAR(tty))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700776 info->ignore_status_mask |= UART_LSR_OE;
777 }
778 /*
779 * !!! ignore all characters if CREAD is not set
780 */
781 if ((cflag & CREAD) == 0)
782 info->ignore_status_mask |= UART_LSR_DR;
783 local_irq_save(flags);
784
785 {
786 short serper;
787
788 /* Set up the baud rate */
789 serper = quot - 1;
790
791 /* Enable or disable parity bit */
792
793 if(cval & UART_LCR_PARITY)
794 serper |= (SERPER_PARENB);
795
796 custom.serper = serper;
797 mb();
798 }
799
Linus Torvalds1da177e2005-04-16 15:20:36 -0700800 local_irq_restore(flags);
801}
802
Alan Cox257afa32008-04-30 00:54:02 -0700803static int rs_put_char(struct tty_struct *tty, unsigned char ch)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700804{
Jiri Slaby916b7652012-03-05 14:52:20 +0100805 struct serial_state *info;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700806 unsigned long flags;
807
TINNES Julien RD-MAPS-ISSd9ad7ef2005-06-23 00:10:08 -0700808 info = tty->driver_data;
809
Linus Torvalds1da177e2005-04-16 15:20:36 -0700810 if (serial_paranoia_check(info, tty->name, "rs_put_char"))
Alan Cox257afa32008-04-30 00:54:02 -0700811 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700812
TINNES Julien RD-MAPS-ISSd9ad7ef2005-06-23 00:10:08 -0700813 if (!info->xmit.buf)
Alan Cox257afa32008-04-30 00:54:02 -0700814 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700815
816 local_irq_save(flags);
817 if (CIRC_SPACE(info->xmit.head,
818 info->xmit.tail,
819 SERIAL_XMIT_SIZE) == 0) {
820 local_irq_restore(flags);
Alan Cox257afa32008-04-30 00:54:02 -0700821 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700822 }
823
824 info->xmit.buf[info->xmit.head++] = ch;
825 info->xmit.head &= SERIAL_XMIT_SIZE-1;
826 local_irq_restore(flags);
Alan Cox257afa32008-04-30 00:54:02 -0700827 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700828}
829
830static void rs_flush_chars(struct tty_struct *tty)
831{
Jiri Slaby916b7652012-03-05 14:52:20 +0100832 struct serial_state *info = tty->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700833 unsigned long flags;
834
835 if (serial_paranoia_check(info, tty->name, "rs_flush_chars"))
836 return;
837
838 if (info->xmit.head == info->xmit.tail
839 || tty->stopped
840 || tty->hw_stopped
841 || !info->xmit.buf)
842 return;
843
844 local_irq_save(flags);
845 info->IER |= UART_IER_THRI;
846 custom.intena = IF_SETCLR | IF_TBE;
847 mb();
848 /* set a pending Tx Interrupt, transmitter should restart now */
849 custom.intreq = IF_SETCLR | IF_TBE;
850 mb();
851 local_irq_restore(flags);
852}
853
854static int rs_write(struct tty_struct * tty, const unsigned char *buf, int count)
855{
856 int c, ret = 0;
Jiri Slaby916b7652012-03-05 14:52:20 +0100857 struct serial_state *info = tty->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700858 unsigned long flags;
859
860 if (serial_paranoia_check(info, tty->name, "rs_write"))
861 return 0;
862
Jiri Slabyb3218a72006-10-04 02:15:27 -0700863 if (!info->xmit.buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700864 return 0;
865
Jiri Kosina3abf3be2007-02-10 01:46:48 -0800866 local_irq_save(flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700867 while (1) {
868 c = CIRC_SPACE_TO_END(info->xmit.head,
869 info->xmit.tail,
870 SERIAL_XMIT_SIZE);
871 if (count < c)
872 c = count;
873 if (c <= 0) {
874 break;
875 }
876 memcpy(info->xmit.buf + info->xmit.head, buf, c);
877 info->xmit.head = ((info->xmit.head + c) &
878 (SERIAL_XMIT_SIZE-1));
879 buf += c;
880 count -= c;
881 ret += c;
882 }
883 local_irq_restore(flags);
884
885 if (info->xmit.head != info->xmit.tail
886 && !tty->stopped
887 && !tty->hw_stopped
888 && !(info->IER & UART_IER_THRI)) {
889 info->IER |= UART_IER_THRI;
890 local_irq_disable();
891 custom.intena = IF_SETCLR | IF_TBE;
892 mb();
893 /* set a pending Tx Interrupt, transmitter should restart now */
894 custom.intreq = IF_SETCLR | IF_TBE;
895 mb();
896 local_irq_restore(flags);
897 }
898 return ret;
899}
900
901static int rs_write_room(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
905 if (serial_paranoia_check(info, tty->name, "rs_write_room"))
906 return 0;
907 return CIRC_SPACE(info->xmit.head, info->xmit.tail, SERIAL_XMIT_SIZE);
908}
909
910static int rs_chars_in_buffer(struct tty_struct *tty)
911{
Jiri Slaby916b7652012-03-05 14:52:20 +0100912 struct serial_state *info = tty->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700913
914 if (serial_paranoia_check(info, tty->name, "rs_chars_in_buffer"))
915 return 0;
916 return CIRC_CNT(info->xmit.head, info->xmit.tail, SERIAL_XMIT_SIZE);
917}
918
919static void rs_flush_buffer(struct tty_struct *tty)
920{
Jiri Slaby916b7652012-03-05 14:52:20 +0100921 struct serial_state *info = tty->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700922 unsigned long flags;
923
924 if (serial_paranoia_check(info, tty->name, "rs_flush_buffer"))
925 return;
926 local_irq_save(flags);
927 info->xmit.head = info->xmit.tail = 0;
928 local_irq_restore(flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700929 tty_wakeup(tty);
930}
931
932/*
933 * This function is used to send a high-priority XON/XOFF character to
934 * the device
935 */
936static void rs_send_xchar(struct tty_struct *tty, char ch)
937{
Jiri Slaby916b7652012-03-05 14:52:20 +0100938 struct serial_state *info = tty->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700939 unsigned long flags;
940
941 if (serial_paranoia_check(info, tty->name, "rs_send_char"))
942 return;
943
944 info->x_char = ch;
945 if (ch) {
946 /* Make sure transmit interrupts are on */
947
948 /* Check this ! */
949 local_irq_save(flags);
950 if(!(custom.intenar & IF_TBE)) {
951 custom.intena = IF_SETCLR | IF_TBE;
952 mb();
953 /* set a pending Tx Interrupt, transmitter should restart now */
954 custom.intreq = IF_SETCLR | IF_TBE;
955 mb();
956 }
957 local_irq_restore(flags);
958
959 info->IER |= UART_IER_THRI;
960 }
961}
962
963/*
964 * ------------------------------------------------------------
965 * rs_throttle()
966 *
967 * This routine is called by the upper-layer tty layer to signal that
968 * incoming characters should be throttled.
969 * ------------------------------------------------------------
970 */
971static void rs_throttle(struct tty_struct * tty)
972{
Jiri Slaby916b7652012-03-05 14:52:20 +0100973 struct serial_state *info = tty->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700974 unsigned long flags;
975#ifdef SERIAL_DEBUG_THROTTLE
976 char buf[64];
977
978 printk("throttle %s: %d....\n", tty_name(tty, buf),
979 tty->ldisc.chars_in_buffer(tty));
980#endif
981
982 if (serial_paranoia_check(info, tty->name, "rs_throttle"))
983 return;
984
985 if (I_IXOFF(tty))
986 rs_send_xchar(tty, STOP_CHAR(tty));
987
988 if (tty->termios->c_cflag & CRTSCTS)
989 info->MCR &= ~SER_RTS;
990
991 local_irq_save(flags);
992 rtsdtr_ctrl(info->MCR);
993 local_irq_restore(flags);
994}
995
996static void rs_unthrottle(struct tty_struct * tty)
997{
Jiri Slaby916b7652012-03-05 14:52:20 +0100998 struct serial_state *info = tty->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700999 unsigned long flags;
1000#ifdef SERIAL_DEBUG_THROTTLE
1001 char buf[64];
1002
1003 printk("unthrottle %s: %d....\n", tty_name(tty, buf),
1004 tty->ldisc.chars_in_buffer(tty));
1005#endif
1006
1007 if (serial_paranoia_check(info, tty->name, "rs_unthrottle"))
1008 return;
1009
1010 if (I_IXOFF(tty)) {
1011 if (info->x_char)
1012 info->x_char = 0;
1013 else
1014 rs_send_xchar(tty, START_CHAR(tty));
1015 }
1016 if (tty->termios->c_cflag & CRTSCTS)
1017 info->MCR |= SER_RTS;
1018 local_irq_save(flags);
1019 rtsdtr_ctrl(info->MCR);
1020 local_irq_restore(flags);
1021}
1022
1023/*
1024 * ------------------------------------------------------------
1025 * rs_ioctl() and friends
1026 * ------------------------------------------------------------
1027 */
1028
Jiri Slabyff169e52012-03-05 14:52:44 +01001029static int get_serial_info(struct tty_struct *tty, struct serial_state *state,
Al Viroab14cae2006-01-12 01:06:30 -08001030 struct serial_struct __user * retinfo)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001031{
1032 struct serial_struct tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001033
1034 if (!retinfo)
1035 return -EFAULT;
1036 memset(&tmp, 0, sizeof(tmp));
Arnd Bergmannec79d602010-06-01 22:53:01 +02001037 tty_lock();
Jiri Slabyff169e52012-03-05 14:52:44 +01001038 tmp.line = tty->index;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001039 tmp.port = state->port;
Jiri Slaby01bd7302012-03-05 14:52:27 +01001040 tmp.flags = state->tport.flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001041 tmp.xmit_fifo_size = state->xmit_fifo_size;
1042 tmp.baud_base = state->baud_base;
Jiri Slaby799be6f2012-03-05 14:52:25 +01001043 tmp.close_delay = state->tport.close_delay;
1044 tmp.closing_wait = state->tport.closing_wait;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001045 tmp.custom_divisor = state->custom_divisor;
Arnd Bergmannec79d602010-06-01 22:53:01 +02001046 tty_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001047 if (copy_to_user(retinfo,&tmp,sizeof(*retinfo)))
1048 return -EFAULT;
1049 return 0;
1050}
1051
Jiri Slaby588993d2012-03-05 14:52:22 +01001052static int set_serial_info(struct tty_struct *tty, struct serial_state *state,
Al Viroab14cae2006-01-12 01:06:30 -08001053 struct serial_struct __user * new_info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001054{
Jiri Slaby01bd7302012-03-05 14:52:27 +01001055 struct tty_port *port = &state->tport;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001056 struct serial_struct new_serial;
Jiri Slaby0f9b9682012-03-05 14:52:21 +01001057 bool change_spd;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001058 int retval = 0;
1059
1060 if (copy_from_user(&new_serial,new_info,sizeof(new_serial)))
1061 return -EFAULT;
Alan Coxe18ce492008-04-30 00:53:16 -07001062
Arnd Bergmannec79d602010-06-01 22:53:01 +02001063 tty_lock();
Jiri Slaby01bd7302012-03-05 14:52:27 +01001064 change_spd = ((new_serial.flags ^ port->flags) & ASYNC_SPD_MASK) ||
Jiri Slaby0f9b9682012-03-05 14:52:21 +01001065 new_serial.custom_divisor != state->custom_divisor;
Jiri Slabyff169e52012-03-05 14:52:44 +01001066 if (new_serial.irq || new_serial.port != state->port ||
Jiri Slaby0f9b9682012-03-05 14:52:21 +01001067 new_serial.xmit_fifo_size != state->xmit_fifo_size) {
1068 tty_unlock();
1069 return -EINVAL;
Alan Coxe18ce492008-04-30 00:53:16 -07001070 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001071
1072 if (!serial_isroot()) {
1073 if ((new_serial.baud_base != state->baud_base) ||
Jiri Slaby01bd7302012-03-05 14:52:27 +01001074 (new_serial.close_delay != port->close_delay) ||
Linus Torvalds1da177e2005-04-16 15:20:36 -07001075 (new_serial.xmit_fifo_size != state->xmit_fifo_size) ||
1076 ((new_serial.flags & ~ASYNC_USR_MASK) !=
Jiri Slaby01bd7302012-03-05 14:52:27 +01001077 (port->flags & ~ASYNC_USR_MASK)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001078 return -EPERM;
Jiri Slaby01bd7302012-03-05 14:52:27 +01001079 port->flags = ((port->flags & ~ASYNC_USR_MASK) |
Linus Torvalds1da177e2005-04-16 15:20:36 -07001080 (new_serial.flags & ASYNC_USR_MASK));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001081 state->custom_divisor = new_serial.custom_divisor;
1082 goto check_and_exit;
1083 }
1084
Alan Coxe18ce492008-04-30 00:53:16 -07001085 if (new_serial.baud_base < 9600) {
Arnd Bergmannec79d602010-06-01 22:53:01 +02001086 tty_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001087 return -EINVAL;
Alan Coxe18ce492008-04-30 00:53:16 -07001088 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001089
1090 /*
1091 * OK, past this point, all the error checking has been done.
1092 * At this point, we start making changes.....
1093 */
1094
1095 state->baud_base = new_serial.baud_base;
Jiri Slaby01bd7302012-03-05 14:52:27 +01001096 port->flags = ((port->flags & ~ASYNC_FLAGS) |
Linus Torvalds1da177e2005-04-16 15:20:36 -07001097 (new_serial.flags & ASYNC_FLAGS));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001098 state->custom_divisor = new_serial.custom_divisor;
Jiri Slaby01bd7302012-03-05 14:52:27 +01001099 port->close_delay = new_serial.close_delay * HZ/100;
1100 port->closing_wait = new_serial.closing_wait * HZ/100;
1101 tty->low_latency = (port->flags & ASYNC_LOW_LATENCY) ? 1 : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001102
1103check_and_exit:
Jiri Slaby01bd7302012-03-05 14:52:27 +01001104 if (port->flags & ASYNC_INITIALIZED) {
Jiri Slaby0f9b9682012-03-05 14:52:21 +01001105 if (change_spd) {
Jiri Slaby01bd7302012-03-05 14:52:27 +01001106 if ((port->flags & ASYNC_SPD_MASK) == ASYNC_SPD_HI)
Jiri Slaby588993d2012-03-05 14:52:22 +01001107 tty->alt_speed = 57600;
Jiri Slaby01bd7302012-03-05 14:52:27 +01001108 if ((port->flags & ASYNC_SPD_MASK) == ASYNC_SPD_VHI)
Jiri Slaby588993d2012-03-05 14:52:22 +01001109 tty->alt_speed = 115200;
Jiri Slaby01bd7302012-03-05 14:52:27 +01001110 if ((port->flags & ASYNC_SPD_MASK) == ASYNC_SPD_SHI)
Jiri Slaby588993d2012-03-05 14:52:22 +01001111 tty->alt_speed = 230400;
Jiri Slaby01bd7302012-03-05 14:52:27 +01001112 if ((port->flags & ASYNC_SPD_MASK) == ASYNC_SPD_WARP)
Jiri Slaby588993d2012-03-05 14:52:22 +01001113 tty->alt_speed = 460800;
1114 change_speed(tty, state, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001115 }
1116 } else
Jiri Slaby588993d2012-03-05 14:52:22 +01001117 retval = startup(tty, state);
Arnd Bergmannec79d602010-06-01 22:53:01 +02001118 tty_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001119 return retval;
1120}
1121
1122
1123/*
1124 * get_lsr_info - get line status register info
1125 *
1126 * Purpose: Let user call ioctl() to get info when the UART physically
1127 * is emptied. On bus types like RS485, the transmitter must
1128 * release the bus after transmitting. This must be done when
1129 * the transmit shift register is empty, not be done when the
1130 * transmit holding register is empty. This functionality
1131 * allows an RS485 driver to be written in user space.
1132 */
Jiri Slaby916b7652012-03-05 14:52:20 +01001133static int get_lsr_info(struct serial_state *info, unsigned int __user *value)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001134{
1135 unsigned char status;
1136 unsigned int result;
1137 unsigned long flags;
1138
1139 local_irq_save(flags);
1140 status = custom.serdatr;
1141 mb();
1142 local_irq_restore(flags);
1143 result = ((status & SDR_TSRE) ? TIOCSER_TEMT : 0);
1144 if (copy_to_user(value, &result, sizeof(int)))
1145 return -EFAULT;
1146 return 0;
1147}
1148
1149
Alan Cox60b33c12011-02-14 16:26:14 +00001150static int rs_tiocmget(struct tty_struct *tty)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001151{
Jiri Slaby916b7652012-03-05 14:52:20 +01001152 struct serial_state *info = tty->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001153 unsigned char control, status;
1154 unsigned long flags;
1155
1156 if (serial_paranoia_check(info, tty->name, "rs_ioctl"))
1157 return -ENODEV;
1158 if (tty->flags & (1 << TTY_IO_ERROR))
1159 return -EIO;
1160
1161 control = info->MCR;
1162 local_irq_save(flags);
1163 status = ciab.pra;
1164 local_irq_restore(flags);
1165 return ((control & SER_RTS) ? TIOCM_RTS : 0)
1166 | ((control & SER_DTR) ? TIOCM_DTR : 0)
1167 | (!(status & SER_DCD) ? TIOCM_CAR : 0)
1168 | (!(status & SER_DSR) ? TIOCM_DSR : 0)
1169 | (!(status & SER_CTS) ? TIOCM_CTS : 0);
1170}
1171
Alan Cox20b9d172011-02-14 16:26:50 +00001172static int rs_tiocmset(struct tty_struct *tty, unsigned int set,
1173 unsigned int clear)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001174{
Jiri Slaby916b7652012-03-05 14:52:20 +01001175 struct serial_state *info = tty->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001176 unsigned long flags;
1177
1178 if (serial_paranoia_check(info, tty->name, "rs_ioctl"))
1179 return -ENODEV;
1180 if (tty->flags & (1 << TTY_IO_ERROR))
1181 return -EIO;
1182
1183 local_irq_save(flags);
1184 if (set & TIOCM_RTS)
1185 info->MCR |= SER_RTS;
1186 if (set & TIOCM_DTR)
1187 info->MCR |= SER_DTR;
1188 if (clear & TIOCM_RTS)
1189 info->MCR &= ~SER_RTS;
1190 if (clear & TIOCM_DTR)
1191 info->MCR &= ~SER_DTR;
1192 rtsdtr_ctrl(info->MCR);
1193 local_irq_restore(flags);
1194 return 0;
1195}
1196
1197/*
1198 * rs_break() --- routine which turns the break handling on or off
1199 */
Alan Cox9e989662008-07-22 11:18:03 +01001200static int rs_break(struct tty_struct *tty, int break_state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001201{
Jiri Slaby916b7652012-03-05 14:52:20 +01001202 struct serial_state *info = tty->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001203 unsigned long flags;
1204
1205 if (serial_paranoia_check(info, tty->name, "rs_break"))
Geert Uytterhoeven970a8a52008-08-06 22:19:39 +02001206 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001207
1208 local_irq_save(flags);
1209 if (break_state == -1)
1210 custom.adkcon = AC_SETCLR | AC_UARTBRK;
1211 else
1212 custom.adkcon = AC_UARTBRK;
1213 mb();
1214 local_irq_restore(flags);
Alan Cox9e989662008-07-22 11:18:03 +01001215 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001216}
1217
Alan Cox05871022010-09-16 18:21:52 +01001218/*
1219 * Get counter of input serial line interrupts (DCD,RI,DSR,CTS)
1220 * Return: write counters to the user passed counter struct
1221 * NB: both 1->0 and 0->1 transitions are counted except for
1222 * RI where only 0->1 is counted.
1223 */
1224static int rs_get_icount(struct tty_struct *tty,
1225 struct serial_icounter_struct *icount)
1226{
Jiri Slaby916b7652012-03-05 14:52:20 +01001227 struct serial_state *info = tty->driver_data;
Alan Cox05871022010-09-16 18:21:52 +01001228 struct async_icount cnow;
1229 unsigned long flags;
1230
1231 local_irq_save(flags);
Jiri Slaby916b7652012-03-05 14:52:20 +01001232 cnow = info->icount;
Alan Cox05871022010-09-16 18:21:52 +01001233 local_irq_restore(flags);
1234 icount->cts = cnow.cts;
1235 icount->dsr = cnow.dsr;
1236 icount->rng = cnow.rng;
1237 icount->dcd = cnow.dcd;
1238 icount->rx = cnow.rx;
1239 icount->tx = cnow.tx;
1240 icount->frame = cnow.frame;
1241 icount->overrun = cnow.overrun;
1242 icount->parity = cnow.parity;
1243 icount->brk = cnow.brk;
1244 icount->buf_overrun = cnow.buf_overrun;
1245
1246 return 0;
1247}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001248
Alan Cox6caa76b2011-02-14 16:27:22 +00001249static int rs_ioctl(struct tty_struct *tty,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001250 unsigned int cmd, unsigned long arg)
1251{
Jiri Slaby916b7652012-03-05 14:52:20 +01001252 struct serial_state *info = tty->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001253 struct async_icount cprev, cnow; /* kernel counter temps */
Al Viroab14cae2006-01-12 01:06:30 -08001254 void __user *argp = (void __user *)arg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001255 unsigned long flags;
1256
1257 if (serial_paranoia_check(info, tty->name, "rs_ioctl"))
1258 return -ENODEV;
1259
1260 if ((cmd != TIOCGSERIAL) && (cmd != TIOCSSERIAL) &&
1261 (cmd != TIOCSERCONFIG) && (cmd != TIOCSERGSTRUCT) &&
1262 (cmd != TIOCMIWAIT) && (cmd != TIOCGICOUNT)) {
1263 if (tty->flags & (1 << TTY_IO_ERROR))
1264 return -EIO;
1265 }
1266
1267 switch (cmd) {
1268 case TIOCGSERIAL:
Jiri Slabyff169e52012-03-05 14:52:44 +01001269 return get_serial_info(tty, info, argp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001270 case TIOCSSERIAL:
Jiri Slaby588993d2012-03-05 14:52:22 +01001271 return set_serial_info(tty, info, argp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001272 case TIOCSERCONFIG:
1273 return 0;
1274
1275 case TIOCSERGETLSR: /* Get line status register */
Al Viroab14cae2006-01-12 01:06:30 -08001276 return get_lsr_info(info, argp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001277
1278 case TIOCSERGSTRUCT:
Al Viroab14cae2006-01-12 01:06:30 -08001279 if (copy_to_user(argp,
Jiri Slaby916b7652012-03-05 14:52:20 +01001280 info, sizeof(struct serial_state)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001281 return -EFAULT;
1282 return 0;
1283
1284 /*
1285 * Wait for any of the 4 modem inputs (DCD,RI,DSR,CTS) to change
1286 * - mask passed in arg for lines of interest
1287 * (use |'ed TIOCM_RNG/DSR/CD/CTS for masking)
1288 * Caller should use TIOCGICOUNT to see which one it was
1289 */
1290 case TIOCMIWAIT:
1291 local_irq_save(flags);
1292 /* note the counters on entry */
Jiri Slaby916b7652012-03-05 14:52:20 +01001293 cprev = info->icount;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001294 local_irq_restore(flags);
1295 while (1) {
Jiri Slaby87758792012-03-05 14:52:24 +01001296 interruptible_sleep_on(&info->tport.delta_msr_wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001297 /* see if a signal did it */
1298 if (signal_pending(current))
1299 return -ERESTARTSYS;
1300 local_irq_save(flags);
Jiri Slaby916b7652012-03-05 14:52:20 +01001301 cnow = info->icount; /* atomic copy */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001302 local_irq_restore(flags);
1303 if (cnow.rng == cprev.rng && cnow.dsr == cprev.dsr &&
1304 cnow.dcd == cprev.dcd && cnow.cts == cprev.cts)
1305 return -EIO; /* no change => error */
1306 if ( ((arg & TIOCM_RNG) && (cnow.rng != cprev.rng)) ||
1307 ((arg & TIOCM_DSR) && (cnow.dsr != cprev.dsr)) ||
1308 ((arg & TIOCM_CD) && (cnow.dcd != cprev.dcd)) ||
1309 ((arg & TIOCM_CTS) && (cnow.cts != cprev.cts)) ) {
1310 return 0;
1311 }
1312 cprev = cnow;
1313 }
1314 /* NOTREACHED */
1315
Linus Torvalds1da177e2005-04-16 15:20:36 -07001316 case TIOCSERGWILD:
1317 case TIOCSERSWILD:
1318 /* "setserial -W" is called in Debian boot */
1319 printk ("TIOCSER?WILD ioctl obsolete, ignored.\n");
1320 return 0;
1321
1322 default:
1323 return -ENOIOCTLCMD;
1324 }
1325 return 0;
1326}
1327
Alan Cox606d0992006-12-08 02:38:45 -08001328static void rs_set_termios(struct tty_struct *tty, struct ktermios *old_termios)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001329{
Jiri Slaby916b7652012-03-05 14:52:20 +01001330 struct serial_state *info = tty->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001331 unsigned long flags;
1332 unsigned int cflag = tty->termios->c_cflag;
1333
Jiri Slaby588993d2012-03-05 14:52:22 +01001334 change_speed(tty, info, old_termios);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001335
1336 /* Handle transition to B0 status */
1337 if ((old_termios->c_cflag & CBAUD) &&
1338 !(cflag & CBAUD)) {
1339 info->MCR &= ~(SER_DTR|SER_RTS);
1340 local_irq_save(flags);
1341 rtsdtr_ctrl(info->MCR);
1342 local_irq_restore(flags);
1343 }
1344
1345 /* Handle transition away from B0 status */
1346 if (!(old_termios->c_cflag & CBAUD) &&
1347 (cflag & CBAUD)) {
1348 info->MCR |= SER_DTR;
1349 if (!(tty->termios->c_cflag & CRTSCTS) ||
1350 !test_bit(TTY_THROTTLED, &tty->flags)) {
1351 info->MCR |= SER_RTS;
1352 }
1353 local_irq_save(flags);
1354 rtsdtr_ctrl(info->MCR);
1355 local_irq_restore(flags);
1356 }
1357
1358 /* Handle turning off CRTSCTS */
1359 if ((old_termios->c_cflag & CRTSCTS) &&
1360 !(tty->termios->c_cflag & CRTSCTS)) {
1361 tty->hw_stopped = 0;
1362 rs_start(tty);
1363 }
1364
1365#if 0
1366 /*
1367 * No need to wake up processes in open wait, since they
1368 * sample the CLOCAL flag once, and don't recheck it.
1369 * XXX It's not clear whether the current behavior is correct
1370 * or not. Hence, this may change.....
1371 */
1372 if (!(old_termios->c_cflag & CLOCAL) &&
1373 (tty->termios->c_cflag & CLOCAL))
1374 wake_up_interruptible(&info->open_wait);
1375#endif
1376}
1377
1378/*
1379 * ------------------------------------------------------------
1380 * rs_close()
1381 *
1382 * This routine is called when the serial port gets closed. First, we
1383 * wait for the last remaining data to be sent. Then, we unlink its
1384 * async structure from the interrupt chain if necessary, and we free
1385 * that IRQ if nothing is left in the chain.
1386 * ------------------------------------------------------------
1387 */
1388static void rs_close(struct tty_struct *tty, struct file * filp)
1389{
Jiri Slaby916b7652012-03-05 14:52:20 +01001390 struct serial_state *state = tty->driver_data;
Jiri Slaby7188dc22012-03-05 14:52:43 +01001391 struct tty_port *port = &state->tport;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001392 unsigned long flags;
1393
Jiri Slaby916b7652012-03-05 14:52:20 +01001394 if (!state || serial_paranoia_check(state, tty->name, "rs_close"))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001395 return;
1396
Linus Torvalds1da177e2005-04-16 15:20:36 -07001397 local_irq_save(flags);
1398
1399 if (tty_hung_up_p(filp)) {
1400 DBG_CNT("before DEC-hung");
1401 local_irq_restore(flags);
1402 return;
1403 }
1404
1405#ifdef SERIAL_DEBUG_OPEN
Jiri Slaby7188dc22012-03-05 14:52:43 +01001406 printk("rs_close ttys%d, count = %d\n", state->line, port->count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001407#endif
Jiri Slaby7188dc22012-03-05 14:52:43 +01001408 if ((tty->count == 1) && (port->count != 1)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001409 /*
1410 * Uh, oh. tty->count is 1, which means that the tty
Jiri Slaby7188dc22012-03-05 14:52:43 +01001411 * structure will be freed. port->count should always
Linus Torvalds1da177e2005-04-16 15:20:36 -07001412 * be one in these conditions. If it's greater than
1413 * one, we've got real problems, since it means the
1414 * serial port won't be shutdown.
1415 */
1416 printk("rs_close: bad serial port count; tty->count is 1, "
Jiri Slaby7188dc22012-03-05 14:52:43 +01001417 "port->count is %d\n", state->tport.count);
1418 port->count = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001419 }
Jiri Slaby7188dc22012-03-05 14:52:43 +01001420 if (--port->count < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001421 printk("rs_close: bad serial port count for ttys%d: %d\n",
Jiri Slabyff169e52012-03-05 14:52:44 +01001422 tty->index, port->count);
Jiri Slaby7188dc22012-03-05 14:52:43 +01001423 port->count = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001424 }
Jiri Slaby7188dc22012-03-05 14:52:43 +01001425 if (port->count) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001426 DBG_CNT("before DEC-2");
1427 local_irq_restore(flags);
1428 return;
1429 }
Jiri Slaby7188dc22012-03-05 14:52:43 +01001430 port->flags |= ASYNC_CLOSING;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001431 /*
1432 * Now we wait for the transmit buffer to clear; and we notify
1433 * the line discipline to only process XON/XOFF characters.
1434 */
1435 tty->closing = 1;
Jiri Slaby7188dc22012-03-05 14:52:43 +01001436 if (port->closing_wait != ASYNC_CLOSING_WAIT_NONE)
1437 tty_wait_until_sent(tty, port->closing_wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001438 /*
1439 * At this point we stop accepting input. To do this, we
1440 * disable the receive line status interrupts, and tell the
1441 * interrupt driver to stop checking the data ready bit in the
1442 * line status register.
1443 */
Jiri Slaby916b7652012-03-05 14:52:20 +01001444 state->read_status_mask &= ~UART_LSR_DR;
Jiri Slaby7188dc22012-03-05 14:52:43 +01001445 if (port->flags & ASYNC_INITIALIZED) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001446 /* disable receive interrupts */
1447 custom.intena = IF_RBF;
1448 mb();
1449 /* clear any pending receive interrupt */
1450 custom.intreq = IF_RBF;
1451 mb();
1452
1453 /*
1454 * Before we drop DTR, make sure the UART transmitter
1455 * has completely drained; this is especially
1456 * important if there is a transmit FIFO!
1457 */
Jiri Slaby916b7652012-03-05 14:52:20 +01001458 rs_wait_until_sent(tty, state->timeout);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001459 }
Jiri Slaby588993d2012-03-05 14:52:22 +01001460 shutdown(tty, state);
Alan Cox978e5952008-04-30 00:53:59 -07001461 rs_flush_buffer(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001462
1463 tty_ldisc_flush(tty);
1464 tty->closing = 0;
Jiri Slaby7188dc22012-03-05 14:52:43 +01001465 port->tty = NULL;
1466 if (port->blocked_open) {
1467 if (port->close_delay) {
1468 msleep_interruptible(jiffies_to_msecs(port->close_delay));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001469 }
Jiri Slaby7188dc22012-03-05 14:52:43 +01001470 wake_up_interruptible(&port->open_wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001471 }
Jiri Slaby7188dc22012-03-05 14:52:43 +01001472 port->flags &= ~(ASYNC_NORMAL_ACTIVE|ASYNC_CLOSING);
1473 wake_up_interruptible(&port->close_wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001474 local_irq_restore(flags);
1475}
1476
1477/*
1478 * rs_wait_until_sent() --- wait until the transmitter is empty
1479 */
1480static void rs_wait_until_sent(struct tty_struct *tty, int timeout)
1481{
Jiri Slaby916b7652012-03-05 14:52:20 +01001482 struct serial_state *info = tty->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001483 unsigned long orig_jiffies, char_time;
1484 int lsr;
1485
1486 if (serial_paranoia_check(info, tty->name, "rs_wait_until_sent"))
1487 return;
1488
Jiri Slaby916b7652012-03-05 14:52:20 +01001489 if (info->xmit_fifo_size == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001490 return; /* Just in case.... */
1491
1492 orig_jiffies = jiffies;
Alan Cox978e5952008-04-30 00:53:59 -07001493
Arnd Bergmann20365212010-06-01 22:53:07 +02001494 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001495 * Set the check interval to be 1/5 of the estimated time to
1496 * send a single character, and make it at least 1. The check
1497 * interval should also be less than the timeout.
1498 *
1499 * Note: we have to use pretty tight timings here to satisfy
1500 * the NIST-PCTS.
1501 */
Jiri Slaby916b7652012-03-05 14:52:20 +01001502 char_time = (info->timeout - HZ/50) / info->xmit_fifo_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001503 char_time = char_time / 5;
1504 if (char_time == 0)
1505 char_time = 1;
1506 if (timeout)
1507 char_time = min_t(unsigned long, char_time, timeout);
1508 /*
1509 * If the transmitter hasn't cleared in twice the approximate
1510 * amount of time to send the entire FIFO, it probably won't
1511 * ever clear. This assumes the UART isn't doing flow
1512 * control, which is currently the case. Hence, if it ever
1513 * takes longer than info->timeout, this is probably due to a
1514 * UART bug of some kind. So, we clamp the timeout parameter at
1515 * 2*info->timeout.
1516 */
1517 if (!timeout || timeout > 2*info->timeout)
1518 timeout = 2*info->timeout;
1519#ifdef SERIAL_DEBUG_RS_WAIT_UNTIL_SENT
1520 printk("In rs_wait_until_sent(%d) check=%lu...", timeout, char_time);
1521 printk("jiff=%lu...", jiffies);
1522#endif
1523 while(!((lsr = custom.serdatr) & SDR_TSRE)) {
1524#ifdef SERIAL_DEBUG_RS_WAIT_UNTIL_SENT
1525 printk("serdatr = %d (jiff=%lu)...", lsr, jiffies);
1526#endif
1527 msleep_interruptible(jiffies_to_msecs(char_time));
1528 if (signal_pending(current))
1529 break;
1530 if (timeout && time_after(jiffies, orig_jiffies + timeout))
1531 break;
1532 }
Milind Arun Choudharycc0a8fb2007-05-08 00:30:52 -07001533 __set_current_state(TASK_RUNNING);
Jiri Slabyeff4b0b2011-07-14 14:35:13 +02001534
Linus Torvalds1da177e2005-04-16 15:20:36 -07001535#ifdef SERIAL_DEBUG_RS_WAIT_UNTIL_SENT
1536 printk("lsr = %d (jiff=%lu)...done\n", lsr, jiffies);
1537#endif
1538}
1539
1540/*
1541 * rs_hangup() --- called by tty_hangup() when a hangup is signaled.
1542 */
1543static void rs_hangup(struct tty_struct *tty)
1544{
Jiri Slaby916b7652012-03-05 14:52:20 +01001545 struct serial_state *info = tty->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001546
1547 if (serial_paranoia_check(info, tty->name, "rs_hangup"))
1548 return;
1549
Linus Torvalds1da177e2005-04-16 15:20:36 -07001550 rs_flush_buffer(tty);
Jiri Slaby588993d2012-03-05 14:52:22 +01001551 shutdown(tty, info);
Jiri Slaby12c80352012-03-05 14:52:26 +01001552 info->tport.count = 0;
Jiri Slaby01bd7302012-03-05 14:52:27 +01001553 info->tport.flags &= ~ASYNC_NORMAL_ACTIVE;
Jiri Slaby87758792012-03-05 14:52:24 +01001554 info->tport.tty = NULL;
1555 wake_up_interruptible(&info->tport.open_wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001556}
1557
1558/*
1559 * ------------------------------------------------------------
1560 * rs_open() and friends
1561 * ------------------------------------------------------------
1562 */
1563static int block_til_ready(struct tty_struct *tty, struct file * filp,
Jiri Slaby916b7652012-03-05 14:52:20 +01001564 struct serial_state *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001565{
1566#ifdef DECLARE_WAITQUEUE
1567 DECLARE_WAITQUEUE(wait, current);
1568#else
1569 struct wait_queue wait = { current, NULL };
1570#endif
Jiri Slaby01bd7302012-03-05 14:52:27 +01001571 struct tty_port *port = &info->tport;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001572 int retval;
1573 int do_clocal = 0, extra_count = 0;
1574 unsigned long flags;
1575
1576 /*
1577 * If the device is in the middle of being closed, then block
1578 * until it's done, and then try again.
1579 */
1580 if (tty_hung_up_p(filp) ||
Jiri Slaby01bd7302012-03-05 14:52:27 +01001581 (port->flags & ASYNC_CLOSING)) {
1582 if (port->flags & ASYNC_CLOSING)
1583 interruptible_sleep_on(&port->close_wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001584#ifdef SERIAL_DO_RESTART
Jiri Slaby01bd7302012-03-05 14:52:27 +01001585 return ((port->flags & ASYNC_HUP_NOTIFY) ?
Linus Torvalds1da177e2005-04-16 15:20:36 -07001586 -EAGAIN : -ERESTARTSYS);
1587#else
1588 return -EAGAIN;
1589#endif
1590 }
1591
1592 /*
1593 * If non-blocking mode is set, or the port is not enabled,
1594 * then make the check up front and then exit.
1595 */
1596 if ((filp->f_flags & O_NONBLOCK) ||
1597 (tty->flags & (1 << TTY_IO_ERROR))) {
Jiri Slaby01bd7302012-03-05 14:52:27 +01001598 port->flags |= ASYNC_NORMAL_ACTIVE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001599 return 0;
1600 }
1601
1602 if (tty->termios->c_cflag & CLOCAL)
1603 do_clocal = 1;
1604
1605 /*
1606 * Block waiting for the carrier detect and the line to become
1607 * free (i.e., not in use by the callout). While we are in
Jiri Slaby01bd7302012-03-05 14:52:27 +01001608 * this loop, port->count is dropped by one, so that
Linus Torvalds1da177e2005-04-16 15:20:36 -07001609 * rs_close() knows when to free things. We restore it upon
1610 * exit, either normal or abnormal.
1611 */
1612 retval = 0;
Jiri Slaby01bd7302012-03-05 14:52:27 +01001613 add_wait_queue(&port->open_wait, &wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001614#ifdef SERIAL_DEBUG_OPEN
1615 printk("block_til_ready before block: ttys%d, count = %d\n",
Jiri Slaby01bd7302012-03-05 14:52:27 +01001616 info->line, port->count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001617#endif
1618 local_irq_save(flags);
1619 if (!tty_hung_up_p(filp)) {
1620 extra_count = 1;
Jiri Slaby01bd7302012-03-05 14:52:27 +01001621 port->count--;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001622 }
1623 local_irq_restore(flags);
Jiri Slaby01bd7302012-03-05 14:52:27 +01001624 port->blocked_open++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001625 while (1) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001626 if (tty->termios->c_cflag & CBAUD)
Jiri Slabyf1166602012-03-05 14:52:46 +01001627 tty_port_raise_dtr_rts(port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001628 set_current_state(TASK_INTERRUPTIBLE);
1629 if (tty_hung_up_p(filp) ||
Jiri Slaby01bd7302012-03-05 14:52:27 +01001630 !(port->flags & ASYNC_INITIALIZED)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001631#ifdef SERIAL_DO_RESTART
Jiri Slaby01bd7302012-03-05 14:52:27 +01001632 if (port->flags & ASYNC_HUP_NOTIFY)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001633 retval = -EAGAIN;
1634 else
1635 retval = -ERESTARTSYS;
1636#else
1637 retval = -EAGAIN;
1638#endif
1639 break;
1640 }
Jiri Slaby01bd7302012-03-05 14:52:27 +01001641 if (!(port->flags & ASYNC_CLOSING) &&
Jiri Slabyf1166602012-03-05 14:52:46 +01001642 (do_clocal || tty_port_carrier_raised(port)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001643 break;
1644 if (signal_pending(current)) {
1645 retval = -ERESTARTSYS;
1646 break;
1647 }
1648#ifdef SERIAL_DEBUG_OPEN
1649 printk("block_til_ready blocking: ttys%d, count = %d\n",
Jiri Slaby01bd7302012-03-05 14:52:27 +01001650 info->line, port->count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001651#endif
Arnd Bergmanne142a312010-06-01 22:53:10 +02001652 tty_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001653 schedule();
Arnd Bergmanne142a312010-06-01 22:53:10 +02001654 tty_lock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001655 }
Milind Arun Choudharycc0a8fb2007-05-08 00:30:52 -07001656 __set_current_state(TASK_RUNNING);
Jiri Slaby01bd7302012-03-05 14:52:27 +01001657 remove_wait_queue(&port->open_wait, &wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001658 if (extra_count)
Jiri Slaby01bd7302012-03-05 14:52:27 +01001659 port->count++;
1660 port->blocked_open--;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001661#ifdef SERIAL_DEBUG_OPEN
1662 printk("block_til_ready after blocking: ttys%d, count = %d\n",
Jiri Slaby01bd7302012-03-05 14:52:27 +01001663 info->line, port->count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001664#endif
1665 if (retval)
1666 return retval;
Jiri Slaby01bd7302012-03-05 14:52:27 +01001667 port->flags |= ASYNC_NORMAL_ACTIVE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001668 return 0;
1669}
1670
1671/*
1672 * This routine is called whenever a serial port is opened. It
1673 * enables interrupts for a serial port, linking in its async structure into
1674 * the IRQ chain. It also performs the serial-specific
1675 * initialization for the tty structure.
1676 */
1677static int rs_open(struct tty_struct *tty, struct file * filp)
1678{
Jiri Slaby916b7652012-03-05 14:52:20 +01001679 struct serial_state *info = rs_table + tty->index;
Jiri Slaby7188dc22012-03-05 14:52:43 +01001680 struct tty_port *port = &info->tport;
Jiri Slaby410235f2012-03-05 14:52:01 +01001681 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001682
Jiri Slaby7188dc22012-03-05 14:52:43 +01001683 port->count++;
1684 port->tty = tty;
Jiri Slaby916b7652012-03-05 14:52:20 +01001685 tty->driver_data = info;
Jiri Slaby7188dc22012-03-05 14:52:43 +01001686 tty->port = port;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001687 if (serial_paranoia_check(info, tty->name, "rs_open"))
1688 return -ENODEV;
1689
1690#ifdef SERIAL_DEBUG_OPEN
Jiri Slaby916b7652012-03-05 14:52:20 +01001691 printk("rs_open %s, count = %d\n", tty->name, info->count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001692#endif
Jiri Slaby7188dc22012-03-05 14:52:43 +01001693 tty->low_latency = (port->flags & ASYNC_LOW_LATENCY) ? 1 : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001694
Linus Torvalds1da177e2005-04-16 15:20:36 -07001695 /*
1696 * If the port is the middle of closing, bail out now
1697 */
1698 if (tty_hung_up_p(filp) ||
Jiri Slaby7188dc22012-03-05 14:52:43 +01001699 (port->flags & ASYNC_CLOSING)) {
1700 if (port->flags & ASYNC_CLOSING)
1701 interruptible_sleep_on(&port->close_wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001702#ifdef SERIAL_DO_RESTART
Jiri Slaby7188dc22012-03-05 14:52:43 +01001703 return ((port->flags & ASYNC_HUP_NOTIFY) ?
Linus Torvalds1da177e2005-04-16 15:20:36 -07001704 -EAGAIN : -ERESTARTSYS);
1705#else
1706 return -EAGAIN;
1707#endif
1708 }
1709
1710 /*
1711 * Start up serial port
1712 */
Jiri Slaby588993d2012-03-05 14:52:22 +01001713 retval = startup(tty, info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001714 if (retval) {
1715 return retval;
1716 }
1717
1718 retval = block_til_ready(tty, filp, info);
1719 if (retval) {
1720#ifdef SERIAL_DEBUG_OPEN
1721 printk("rs_open returning after block_til_ready with %d\n",
1722 retval);
1723#endif
1724 return retval;
1725 }
1726
1727#ifdef SERIAL_DEBUG_OPEN
1728 printk("rs_open %s successful...", tty->name);
1729#endif
1730 return 0;
1731}
1732
1733/*
1734 * /proc fs routines....
1735 */
1736
Jiri Slabyff169e52012-03-05 14:52:44 +01001737static inline void line_info(struct seq_file *m, int line,
1738 struct serial_state *state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001739{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001740 char stat_buf[30], control, status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001741 unsigned long flags;
1742
Jiri Slabyff169e52012-03-05 14:52:44 +01001743 seq_printf(m, "%d: uart:amiga_builtin", line);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001744
Linus Torvalds1da177e2005-04-16 15:20:36 -07001745 local_irq_save(flags);
1746 status = ciab.pra;
Jiri Slaby01bd7302012-03-05 14:52:27 +01001747 control = (state->tport.flags & ASYNC_INITIALIZED) ? state->MCR : status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001748 local_irq_restore(flags);
1749
1750 stat_buf[0] = 0;
1751 stat_buf[1] = 0;
1752 if(!(control & SER_RTS))
1753 strcat(stat_buf, "|RTS");
1754 if(!(status & SER_CTS))
1755 strcat(stat_buf, "|CTS");
1756 if(!(control & SER_DTR))
1757 strcat(stat_buf, "|DTR");
1758 if(!(status & SER_DSR))
1759 strcat(stat_buf, "|DSR");
1760 if(!(status & SER_DCD))
1761 strcat(stat_buf, "|CD");
1762
Jiri Slaby916b7652012-03-05 14:52:20 +01001763 if (state->quot)
1764 seq_printf(m, " baud:%d", state->baud_base / state->quot);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001765
Alexey Dobriyand5940272009-03-31 15:19:23 -07001766 seq_printf(m, " tx:%d rx:%d", state->icount.tx, state->icount.rx);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001767
1768 if (state->icount.frame)
Alexey Dobriyand5940272009-03-31 15:19:23 -07001769 seq_printf(m, " fe:%d", state->icount.frame);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001770
1771 if (state->icount.parity)
Alexey Dobriyand5940272009-03-31 15:19:23 -07001772 seq_printf(m, " pe:%d", state->icount.parity);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001773
1774 if (state->icount.brk)
Alexey Dobriyand5940272009-03-31 15:19:23 -07001775 seq_printf(m, " brk:%d", state->icount.brk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001776
1777 if (state->icount.overrun)
Alexey Dobriyand5940272009-03-31 15:19:23 -07001778 seq_printf(m, " oe:%d", state->icount.overrun);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001779
1780 /*
1781 * Last thing is the RS-232 status lines
1782 */
Alexey Dobriyand5940272009-03-31 15:19:23 -07001783 seq_printf(m, " %s\n", stat_buf+1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001784}
1785
Alexey Dobriyand5940272009-03-31 15:19:23 -07001786static int rs_proc_show(struct seq_file *m, void *v)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001787{
Alexey Dobriyand5940272009-03-31 15:19:23 -07001788 seq_printf(m, "serinfo:1.0 driver:%s\n", serial_version);
Jiri Slabyff169e52012-03-05 14:52:44 +01001789 line_info(m, 0, &rs_table[0]);
Alexey Dobriyand5940272009-03-31 15:19:23 -07001790 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001791}
1792
Alexey Dobriyand5940272009-03-31 15:19:23 -07001793static int rs_proc_open(struct inode *inode, struct file *file)
1794{
1795 return single_open(file, rs_proc_show, NULL);
1796}
1797
1798static const struct file_operations rs_proc_fops = {
1799 .owner = THIS_MODULE,
1800 .open = rs_proc_open,
1801 .read = seq_read,
1802 .llseek = seq_lseek,
1803 .release = single_release,
1804};
1805
Linus Torvalds1da177e2005-04-16 15:20:36 -07001806/*
1807 * ---------------------------------------------------------------------
1808 * rs_init() and friends
1809 *
1810 * rs_init() is called at boot-time to initialize the serial driver.
1811 * ---------------------------------------------------------------------
1812 */
1813
1814/*
1815 * This routine prints out the appropriate serial driver version
1816 * number, and identifies which options were configured into this
1817 * driver.
1818 */
Adrian Bunk41c28ff2006-03-23 03:00:56 -08001819static void show_serial_version(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001820{
1821 printk(KERN_INFO "%s version %s\n", serial_name, serial_version);
1822}
1823
1824
Jeff Dikeb68e31d2006-10-02 02:17:18 -07001825static const struct tty_operations serial_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001826 .open = rs_open,
1827 .close = rs_close,
1828 .write = rs_write,
1829 .put_char = rs_put_char,
1830 .flush_chars = rs_flush_chars,
1831 .write_room = rs_write_room,
1832 .chars_in_buffer = rs_chars_in_buffer,
1833 .flush_buffer = rs_flush_buffer,
1834 .ioctl = rs_ioctl,
1835 .throttle = rs_throttle,
1836 .unthrottle = rs_unthrottle,
1837 .set_termios = rs_set_termios,
1838 .stop = rs_stop,
1839 .start = rs_start,
1840 .hangup = rs_hangup,
1841 .break_ctl = rs_break,
1842 .send_xchar = rs_send_xchar,
1843 .wait_until_sent = rs_wait_until_sent,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001844 .tiocmget = rs_tiocmget,
1845 .tiocmset = rs_tiocmset,
Alan Cox05871022010-09-16 18:21:52 +01001846 .get_icount = rs_get_icount,
Alexey Dobriyand5940272009-03-31 15:19:23 -07001847 .proc_fops = &rs_proc_fops,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001848};
1849
Jiri Slabyf1166602012-03-05 14:52:46 +01001850static int amiga_carrier_raised(struct tty_port *port)
1851{
1852 return !(ciab.pra & SER_DCD);
1853}
1854
1855static void amiga_dtr_rts(struct tty_port *port, int raise)
1856{
1857 struct serial_state *info = container_of(port, struct serial_state,
1858 tport);
1859 unsigned long flags;
1860
1861 if (raise)
1862 info->MCR |= SER_DTR|SER_RTS;
1863 else
1864 info->MCR &= ~(SER_DTR|SER_RTS);
1865
1866 local_irq_save(flags);
1867 rtsdtr_ctrl(info->MCR);
1868 local_irq_restore(flags);
1869}
1870
1871static const struct tty_port_operations amiga_port_ops = {
1872 .carrier_raised = amiga_carrier_raised,
1873 .dtr_rts = amiga_dtr_rts,
1874};
1875
Linus Torvalds1da177e2005-04-16 15:20:36 -07001876/*
1877 * The serial driver boot-time initialization code!
1878 */
Geert Uytterhoeven826e8c82009-04-05 13:12:30 +02001879static int __init amiga_serial_probe(struct platform_device *pdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001880{
1881 unsigned long flags;
1882 struct serial_state * state;
Geert Uytterhoeven5edc3042008-12-30 14:13:41 +01001883 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001884
Jiri Slaby410235f2012-03-05 14:52:01 +01001885 serial_driver = alloc_tty_driver(NR_PORTS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001886 if (!serial_driver)
1887 return -ENOMEM;
1888
Linus Torvalds1da177e2005-04-16 15:20:36 -07001889 show_serial_version();
1890
1891 /* Initialize the tty_driver structure */
1892
Linus Torvalds1da177e2005-04-16 15:20:36 -07001893 serial_driver->driver_name = "amiserial";
1894 serial_driver->name = "ttyS";
1895 serial_driver->major = TTY_MAJOR;
1896 serial_driver->minor_start = 64;
1897 serial_driver->type = TTY_DRIVER_TYPE_SERIAL;
1898 serial_driver->subtype = SERIAL_TYPE_NORMAL;
1899 serial_driver->init_termios = tty_std_termios;
1900 serial_driver->init_termios.c_cflag =
1901 B9600 | CS8 | CREAD | HUPCL | CLOCAL;
1902 serial_driver->flags = TTY_DRIVER_REAL_RAW;
1903 tty_set_operations(serial_driver, &serial_ops);
1904
Geert Uytterhoeven5edc3042008-12-30 14:13:41 +01001905 error = tty_register_driver(serial_driver);
1906 if (error)
Geert Uytterhoeven826e8c82009-04-05 13:12:30 +02001907 goto fail_put_tty_driver;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001908
1909 state = rs_table;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001910 state->port = (int)&custom.serdatr; /* Just to give it a value */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001911 state->custom_divisor = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001912 state->icount.cts = state->icount.dsr =
1913 state->icount.rng = state->icount.dcd = 0;
1914 state->icount.rx = state->icount.tx = 0;
1915 state->icount.frame = state->icount.parity = 0;
1916 state->icount.overrun = state->icount.brk = 0;
Jiri Slaby87758792012-03-05 14:52:24 +01001917 tty_port_init(&state->tport);
Jiri Slabyf1166602012-03-05 14:52:46 +01001918 state->tport.ops = &amiga_port_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001919
Jiri Slabyff169e52012-03-05 14:52:44 +01001920 printk(KERN_INFO "ttyS0 is the amiga builtin serial port\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001921
1922 /* Hardware set up */
1923
1924 state->baud_base = amiga_colorclock;
1925 state->xmit_fifo_size = 1;
1926
Linus Torvalds1da177e2005-04-16 15:20:36 -07001927 /* set ISRs, and then disable the rx interrupts */
Geert Uytterhoeven5edc3042008-12-30 14:13:41 +01001928 error = request_irq(IRQ_AMIGA_TBE, ser_tx_int, 0, "serial TX", state);
1929 if (error)
1930 goto fail_unregister;
1931
Yong Zhang9cfb5c02011-09-22 16:59:15 +08001932 error = request_irq(IRQ_AMIGA_RBF, ser_rx_int, 0,
Geert Uytterhoeven5edc3042008-12-30 14:13:41 +01001933 "serial RX", state);
1934 if (error)
1935 goto fail_free_irq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001936
Julia Lawallc70c0362010-04-06 14:34:46 -07001937 local_irq_save(flags);
1938
Linus Torvalds1da177e2005-04-16 15:20:36 -07001939 /* turn off Rx and Tx interrupts */
1940 custom.intena = IF_RBF | IF_TBE;
1941 mb();
1942
1943 /* clear any pending interrupt */
1944 custom.intreq = IF_RBF | IF_TBE;
1945 mb();
1946
1947 local_irq_restore(flags);
1948
1949 /*
1950 * set the appropriate directions for the modem control flags,
1951 * and clear RTS and DTR
1952 */
1953 ciab.ddra |= (SER_DTR | SER_RTS); /* outputs */
1954 ciab.ddra &= ~(SER_DCD | SER_CTS | SER_DSR); /* inputs */
1955
Geert Uytterhoeven826e8c82009-04-05 13:12:30 +02001956 platform_set_drvdata(pdev, state);
1957
Linus Torvalds1da177e2005-04-16 15:20:36 -07001958 return 0;
Geert Uytterhoeven5edc3042008-12-30 14:13:41 +01001959
1960fail_free_irq:
1961 free_irq(IRQ_AMIGA_TBE, state);
1962fail_unregister:
1963 tty_unregister_driver(serial_driver);
Geert Uytterhoeven5edc3042008-12-30 14:13:41 +01001964fail_put_tty_driver:
1965 put_tty_driver(serial_driver);
1966 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001967}
1968
Geert Uytterhoeven826e8c82009-04-05 13:12:30 +02001969static int __exit amiga_serial_remove(struct platform_device *pdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001970{
1971 int error;
Geert Uytterhoeven826e8c82009-04-05 13:12:30 +02001972 struct serial_state *state = platform_get_drvdata(pdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001973
1974 /* printk("Unloading %s: version %s\n", serial_name, serial_version); */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001975 if ((error = tty_unregister_driver(serial_driver)))
1976 printk("SERIAL: failed to unregister serial driver (%d)\n",
1977 error);
1978 put_tty_driver(serial_driver);
1979
Jiri Slaby916b7652012-03-05 14:52:20 +01001980 free_irq(IRQ_AMIGA_TBE, state);
1981 free_irq(IRQ_AMIGA_RBF, state);
Geert Uytterhoeven5edc3042008-12-30 14:13:41 +01001982
Geert Uytterhoeven826e8c82009-04-05 13:12:30 +02001983 platform_set_drvdata(pdev, NULL);
1984
1985 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001986}
1987
Geert Uytterhoeven826e8c82009-04-05 13:12:30 +02001988static struct platform_driver amiga_serial_driver = {
1989 .remove = __exit_p(amiga_serial_remove),
1990 .driver = {
1991 .name = "amiga-serial",
1992 .owner = THIS_MODULE,
1993 },
1994};
1995
1996static int __init amiga_serial_init(void)
1997{
1998 return platform_driver_probe(&amiga_serial_driver, amiga_serial_probe);
1999}
2000
2001module_init(amiga_serial_init);
2002
2003static void __exit amiga_serial_exit(void)
2004{
2005 platform_driver_unregister(&amiga_serial_driver);
2006}
2007
2008module_exit(amiga_serial_exit);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002009
2010
Geert Uytterhoevend1a35e42008-10-26 19:51:14 +01002011#if defined(CONFIG_SERIAL_CONSOLE) && !defined(MODULE)
2012
Linus Torvalds1da177e2005-04-16 15:20:36 -07002013/*
2014 * ------------------------------------------------------------
2015 * Serial console driver
2016 * ------------------------------------------------------------
2017 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002018
2019static void amiga_serial_putc(char c)
2020{
2021 custom.serdat = (unsigned char)c | 0x100;
2022 while (!(custom.serdatr & 0x2000))
2023 barrier();
2024}
2025
2026/*
2027 * Print a string to the serial port trying not to disturb
2028 * any possible real use of the port...
2029 *
2030 * The console must be locked when we get here.
2031 */
2032static void serial_console_write(struct console *co, const char *s,
2033 unsigned count)
2034{
2035 unsigned short intena = custom.intenar;
2036
2037 custom.intena = IF_TBE;
2038
2039 while (count--) {
2040 if (*s == '\n')
2041 amiga_serial_putc('\r');
2042 amiga_serial_putc(*s++);
2043 }
2044
2045 custom.intena = IF_SETCLR | (intena & IF_TBE);
2046}
2047
2048static struct tty_driver *serial_console_device(struct console *c, int *index)
2049{
2050 *index = 0;
2051 return serial_driver;
2052}
2053
2054static struct console sercons = {
2055 .name = "ttyS",
2056 .write = serial_console_write,
2057 .device = serial_console_device,
2058 .flags = CON_PRINTBUFFER,
2059 .index = -1,
2060};
2061
2062/*
2063 * Register console.
2064 */
2065static int __init amiserial_console_init(void)
2066{
2067 register_console(&sercons);
2068 return 0;
2069}
2070console_initcall(amiserial_console_init);
Geert Uytterhoevend1a35e42008-10-26 19:51:14 +01002071
2072#endif /* CONFIG_SERIAL_CONSOLE && !MODULE */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002073
2074MODULE_LICENSE("GPL");
Geert Uytterhoeven826e8c82009-04-05 13:12:30 +02002075MODULE_ALIAS("platform:amiga-serial");