blob: 0603e0d46d3300d1534cc39e7f48df2f6f263d56 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * linux/drivers/char/core.c
3 *
4 * Driver core for serial ports
5 *
6 * Based on drivers/char/serial.c, by Linus Torvalds, Theodore Ts'o.
7 *
8 * Copyright 1999 ARM Limited
9 * Copyright (C) 2000-2001 Deep Blue Solutions Ltd.
10 *
11 * This program is free software; you can redistribute it and/or modify
12 * it under the terms of the GNU General Public License as published by
13 * the Free Software Foundation; either version 2 of the License, or
14 * (at your option) any later version.
15 *
16 * This program is distributed in the hope that it will be useful,
17 * but WITHOUT ANY WARRANTY; without even the implied warranty of
18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 * GNU General Public License for more details.
20 *
21 * You should have received a copy of the GNU General Public License
22 * along with this program; if not, write to the Free Software
23 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
24 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070025#include <linux/module.h>
26#include <linux/tty.h>
27#include <linux/slab.h>
28#include <linux/init.h>
29#include <linux/console.h>
Alexey Dobriyand196a942009-03-31 15:19:21 -070030#include <linux/proc_fs.h>
31#include <linux/seq_file.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070032#include <linux/smp_lock.h>
33#include <linux/device.h>
34#include <linux/serial.h> /* for serial_state and serial_icounter_struct */
Alan Coxccce6de2009-09-19 13:13:30 -070035#include <linux/serial_core.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070036#include <linux/delay.h>
Arjan van de Venf392ecf2006-01-12 18:44:32 +000037#include <linux/mutex.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070038
39#include <asm/irq.h>
40#include <asm/uaccess.h>
41
Linus Torvalds1da177e2005-04-16 15:20:36 -070042/*
43 * This is used to lock changes in serial line configuration.
44 */
Arjan van de Venf392ecf2006-01-12 18:44:32 +000045static DEFINE_MUTEX(port_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -070046
Ingo Molnar13e83592006-07-03 00:25:03 -070047/*
48 * lockdep: port->lock is initialized in two places, but we
49 * want only one lock-class:
50 */
51static struct lock_class_key port_lock_key;
52
Linus Torvalds1da177e2005-04-16 15:20:36 -070053#define HIGH_BITS_OFFSET ((sizeof(long)-sizeof(int))*8)
54
Linus Torvalds1da177e2005-04-16 15:20:36 -070055#ifdef CONFIG_SERIAL_CORE_CONSOLE
56#define uart_console(port) ((port)->cons && (port)->cons->index == (port)->line)
57#else
58#define uart_console(port) (0)
59#endif
60
Alan Cox19225132010-06-01 22:52:51 +020061static void uart_change_speed(struct tty_struct *tty, struct uart_state *state,
Alan Coxa46c9992008-02-08 04:18:53 -080062 struct ktermios *old_termios);
Linus Torvalds1da177e2005-04-16 15:20:36 -070063static void uart_wait_until_sent(struct tty_struct *tty, int timeout);
64static void uart_change_pm(struct uart_state *state, int pm_state);
65
66/*
67 * This routine is used by the interrupt handler to schedule processing in
68 * the software interrupt portion of the driver.
69 */
70void uart_write_wakeup(struct uart_port *port)
71{
Alan Coxebd2c8f2009-09-19 13:13:28 -070072 struct uart_state *state = port->state;
Pavel Machekd5f735e2006-03-07 21:55:20 -080073 /*
74 * This means you called this function _after_ the port was
75 * closed. No cookie for you.
76 */
Alan Coxebd2c8f2009-09-19 13:13:28 -070077 BUG_ON(!state);
78 tasklet_schedule(&state->tlet);
Linus Torvalds1da177e2005-04-16 15:20:36 -070079}
80
81static void uart_stop(struct tty_struct *tty)
82{
83 struct uart_state *state = tty->driver_data;
Alan Coxebd2c8f2009-09-19 13:13:28 -070084 struct uart_port *port = state->uart_port;
Linus Torvalds1da177e2005-04-16 15:20:36 -070085 unsigned long flags;
86
87 spin_lock_irqsave(&port->lock, flags);
Russell Kingb129a8c2005-08-31 10:12:14 +010088 port->ops->stop_tx(port);
Linus Torvalds1da177e2005-04-16 15:20:36 -070089 spin_unlock_irqrestore(&port->lock, flags);
90}
91
92static void __uart_start(struct tty_struct *tty)
93{
94 struct uart_state *state = tty->driver_data;
Alan Coxebd2c8f2009-09-19 13:13:28 -070095 struct uart_port *port = state->uart_port;
Linus Torvalds1da177e2005-04-16 15:20:36 -070096
Alan Coxebd2c8f2009-09-19 13:13:28 -070097 if (!uart_circ_empty(&state->xmit) && state->xmit.buf &&
Linus Torvalds1da177e2005-04-16 15:20:36 -070098 !tty->stopped && !tty->hw_stopped)
Russell Kingb129a8c2005-08-31 10:12:14 +010099 port->ops->start_tx(port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100}
101
102static void uart_start(struct tty_struct *tty)
103{
104 struct uart_state *state = tty->driver_data;
Alan Coxebd2c8f2009-09-19 13:13:28 -0700105 struct uart_port *port = state->uart_port;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106 unsigned long flags;
107
108 spin_lock_irqsave(&port->lock, flags);
109 __uart_start(tty);
110 spin_unlock_irqrestore(&port->lock, flags);
111}
112
113static void uart_tasklet_action(unsigned long data)
114{
115 struct uart_state *state = (struct uart_state *)data;
Alan Coxebd2c8f2009-09-19 13:13:28 -0700116 tty_wakeup(state->port.tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117}
118
119static inline void
120uart_update_mctrl(struct uart_port *port, unsigned int set, unsigned int clear)
121{
122 unsigned long flags;
123 unsigned int old;
124
125 spin_lock_irqsave(&port->lock, flags);
126 old = port->mctrl;
127 port->mctrl = (old & ~clear) | set;
128 if (old != port->mctrl)
129 port->ops->set_mctrl(port, port->mctrl);
130 spin_unlock_irqrestore(&port->lock, flags);
131}
132
Alan Coxa46c9992008-02-08 04:18:53 -0800133#define uart_set_mctrl(port, set) uart_update_mctrl(port, set, 0)
134#define uart_clear_mctrl(port, clear) uart_update_mctrl(port, 0, clear)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135
136/*
137 * Startup the port. This will be called once per open. All calls
Alan Coxdf4f4dd2008-07-16 21:53:50 +0100138 * will be serialised by the per-port mutex.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139 */
Alan Cox19225132010-06-01 22:52:51 +0200140static int uart_startup(struct tty_struct *tty, struct uart_state *state, int init_hw)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141{
Alan Cox46d57a42009-09-19 13:13:29 -0700142 struct uart_port *uport = state->uart_port;
143 struct tty_port *port = &state->port;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144 unsigned long page;
145 int retval = 0;
146
Alan Coxccce6de2009-09-19 13:13:30 -0700147 if (port->flags & ASYNC_INITIALIZED)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148 return 0;
149
150 /*
151 * Set the TTY IO error marker - we will only clear this
152 * once we have successfully opened the port. Also set
153 * up the tty->alt_speed kludge
154 */
Alan Cox19225132010-06-01 22:52:51 +0200155 set_bit(TTY_IO_ERROR, &tty->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156
Alan Cox46d57a42009-09-19 13:13:29 -0700157 if (uport->type == PORT_UNKNOWN)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158 return 0;
159
160 /*
161 * Initialise and allocate the transmit and temporary
162 * buffer.
163 */
Alan Coxebd2c8f2009-09-19 13:13:28 -0700164 if (!state->xmit.buf) {
Alan Coxdf4f4dd2008-07-16 21:53:50 +0100165 /* This is protected by the per port mutex */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166 page = get_zeroed_page(GFP_KERNEL);
167 if (!page)
168 return -ENOMEM;
169
Alan Coxebd2c8f2009-09-19 13:13:28 -0700170 state->xmit.buf = (unsigned char *) page;
171 uart_circ_clear(&state->xmit);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172 }
173
Alan Cox46d57a42009-09-19 13:13:29 -0700174 retval = uport->ops->startup(uport);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175 if (retval == 0) {
176 if (init_hw) {
177 /*
178 * Initialise the hardware port settings.
179 */
Alan Cox19225132010-06-01 22:52:51 +0200180 uart_change_speed(tty, state, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181
182 /*
183 * Setup the RTS and DTR signals once the
184 * port is open and ready to respond.
185 */
Alan Cox19225132010-06-01 22:52:51 +0200186 if (tty->termios->c_cflag & CBAUD)
Alan Cox46d57a42009-09-19 13:13:29 -0700187 uart_set_mctrl(uport, TIOCM_RTS | TIOCM_DTR);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188 }
189
Alan Coxccce6de2009-09-19 13:13:30 -0700190 if (port->flags & ASYNC_CTS_FLOW) {
Alan Cox46d57a42009-09-19 13:13:29 -0700191 spin_lock_irq(&uport->lock);
192 if (!(uport->ops->get_mctrl(uport) & TIOCM_CTS))
Alan Cox19225132010-06-01 22:52:51 +0200193 tty->hw_stopped = 1;
Alan Cox46d57a42009-09-19 13:13:29 -0700194 spin_unlock_irq(&uport->lock);
Russell King0dd7a1a2005-06-29 18:40:53 +0100195 }
196
Alan Coxccce6de2009-09-19 13:13:30 -0700197 set_bit(ASYNCB_INITIALIZED, &port->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198
Alan Cox19225132010-06-01 22:52:51 +0200199 clear_bit(TTY_IO_ERROR, &tty->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200 }
201
202 if (retval && capable(CAP_SYS_ADMIN))
203 retval = 0;
204
205 return retval;
206}
207
208/*
209 * This routine will shutdown a serial port; interrupts are disabled, and
210 * DTR is dropped if the hangup on close termio flag is on. Calls to
211 * uart_shutdown are serialised by the per-port semaphore.
212 */
Alan Cox19225132010-06-01 22:52:51 +0200213static void uart_shutdown(struct tty_struct *tty, struct uart_state *state)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214{
Alan Coxccce6de2009-09-19 13:13:30 -0700215 struct uart_port *uport = state->uart_port;
Alan Coxbdc04e32009-09-19 13:13:31 -0700216 struct tty_port *port = &state->port;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217
Russell Kingee31b332005-11-13 15:28:51 +0000218 /*
219 * Set the TTY IO error marker
220 */
Alan Coxf7519282009-01-02 13:49:21 +0000221 if (tty)
222 set_bit(TTY_IO_ERROR, &tty->flags);
Russell Kingee31b332005-11-13 15:28:51 +0000223
Alan Coxbdc04e32009-09-19 13:13:31 -0700224 if (test_and_clear_bit(ASYNCB_INITIALIZED, &port->flags)) {
Russell Kingee31b332005-11-13 15:28:51 +0000225 /*
226 * Turn off DTR and RTS early.
227 */
Alan Coxf7519282009-01-02 13:49:21 +0000228 if (!tty || (tty->termios->c_cflag & HUPCL))
Alan Coxccce6de2009-09-19 13:13:30 -0700229 uart_clear_mctrl(uport, TIOCM_DTR | TIOCM_RTS);
Russell Kingee31b332005-11-13 15:28:51 +0000230
231 /*
232 * clear delta_msr_wait queue to avoid mem leaks: we may free
233 * the irq here so the queue might never be woken up. Note
234 * that we won't end up waiting on delta_msr_wait again since
235 * any outstanding file descriptors should be pointing at
236 * hung_up_tty_fops now.
237 */
Alan Coxbdc04e32009-09-19 13:13:31 -0700238 wake_up_interruptible(&port->delta_msr_wait);
Russell Kingee31b332005-11-13 15:28:51 +0000239
240 /*
241 * Free the IRQ and disable the port.
242 */
Alan Coxccce6de2009-09-19 13:13:30 -0700243 uport->ops->shutdown(uport);
Russell Kingee31b332005-11-13 15:28:51 +0000244
245 /*
246 * Ensure that the IRQ handler isn't running on another CPU.
247 */
Alan Coxccce6de2009-09-19 13:13:30 -0700248 synchronize_irq(uport->irq);
Russell Kingee31b332005-11-13 15:28:51 +0000249 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250
251 /*
Russell Kingee31b332005-11-13 15:28:51 +0000252 * kill off our tasklet
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253 */
Alan Coxebd2c8f2009-09-19 13:13:28 -0700254 tasklet_kill(&state->tlet);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255
256 /*
257 * Free the transmit buffer page.
258 */
Alan Coxebd2c8f2009-09-19 13:13:28 -0700259 if (state->xmit.buf) {
260 free_page((unsigned long)state->xmit.buf);
261 state->xmit.buf = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263}
264
265/**
266 * uart_update_timeout - update per-port FIFO timeout.
267 * @port: uart_port structure describing the port
268 * @cflag: termios cflag value
269 * @baud: speed of the port
270 *
271 * Set the port FIFO timeout value. The @cflag value should
272 * reflect the actual hardware settings.
273 */
274void
275uart_update_timeout(struct uart_port *port, unsigned int cflag,
276 unsigned int baud)
277{
278 unsigned int bits;
279
280 /* byte size and parity */
281 switch (cflag & CSIZE) {
282 case CS5:
283 bits = 7;
284 break;
285 case CS6:
286 bits = 8;
287 break;
288 case CS7:
289 bits = 9;
290 break;
291 default:
292 bits = 10;
Alan Coxa46c9992008-02-08 04:18:53 -0800293 break; /* CS8 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294 }
295
296 if (cflag & CSTOPB)
297 bits++;
298 if (cflag & PARENB)
299 bits++;
300
301 /*
302 * The total number of bits to be transmitted in the fifo.
303 */
304 bits = bits * port->fifosize;
305
306 /*
307 * Figure the timeout to send the above number of bits.
308 * Add .02 seconds of slop
309 */
310 port->timeout = (HZ * bits) / baud + HZ/50;
311}
312
313EXPORT_SYMBOL(uart_update_timeout);
314
315/**
316 * uart_get_baud_rate - return baud rate for a particular port
317 * @port: uart_port structure describing the port in question.
318 * @termios: desired termios settings.
319 * @old: old termios (or NULL)
320 * @min: minimum acceptable baud rate
321 * @max: maximum acceptable baud rate
322 *
323 * Decode the termios structure into a numeric baud rate,
324 * taking account of the magic 38400 baud rate (with spd_*
325 * flags), and mapping the %B0 rate to 9600 baud.
326 *
327 * If the new baud rate is invalid, try the old termios setting.
328 * If it's still invalid, we try 9600 baud.
329 *
330 * Update the @termios structure to reflect the baud rate
Alan Coxeb424fd2008-04-28 02:14:07 -0700331 * we're actually going to be using. Don't do this for the case
332 * where B0 is requested ("hang up").
Linus Torvalds1da177e2005-04-16 15:20:36 -0700333 */
334unsigned int
Alan Cox606d0992006-12-08 02:38:45 -0800335uart_get_baud_rate(struct uart_port *port, struct ktermios *termios,
336 struct ktermios *old, unsigned int min, unsigned int max)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700337{
338 unsigned int try, baud, altbaud = 38400;
Alan Coxeb424fd2008-04-28 02:14:07 -0700339 int hung_up = 0;
Russell King0077d452006-01-21 23:03:28 +0000340 upf_t flags = port->flags & UPF_SPD_MASK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341
342 if (flags == UPF_SPD_HI)
343 altbaud = 57600;
André Goddard Rosa82cb7ba2009-10-25 11:18:26 -0200344 else if (flags == UPF_SPD_VHI)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700345 altbaud = 115200;
André Goddard Rosa82cb7ba2009-10-25 11:18:26 -0200346 else if (flags == UPF_SPD_SHI)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700347 altbaud = 230400;
André Goddard Rosa82cb7ba2009-10-25 11:18:26 -0200348 else if (flags == UPF_SPD_WARP)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700349 altbaud = 460800;
350
351 for (try = 0; try < 2; try++) {
352 baud = tty_termios_baud_rate(termios);
353
354 /*
355 * The spd_hi, spd_vhi, spd_shi, spd_warp kludge...
356 * Die! Die! Die!
357 */
358 if (baud == 38400)
359 baud = altbaud;
360
361 /*
362 * Special case: B0 rate.
363 */
Alan Coxeb424fd2008-04-28 02:14:07 -0700364 if (baud == 0) {
365 hung_up = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700366 baud = 9600;
Alan Coxeb424fd2008-04-28 02:14:07 -0700367 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368
369 if (baud >= min && baud <= max)
370 return baud;
371
372 /*
373 * Oops, the quotient was zero. Try again with
374 * the old baud rate if possible.
375 */
376 termios->c_cflag &= ~CBAUD;
377 if (old) {
Alan Cox6d4d67b2008-02-04 22:27:53 -0800378 baud = tty_termios_baud_rate(old);
Alan Coxeb424fd2008-04-28 02:14:07 -0700379 if (!hung_up)
380 tty_termios_encode_baud_rate(termios,
381 baud, baud);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382 old = NULL;
383 continue;
384 }
385
386 /*
Alan Cox16ae2a82010-01-04 16:26:21 +0000387 * As a last resort, if the range cannot be met then clip to
388 * the nearest chip supported rate.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389 */
Alan Cox16ae2a82010-01-04 16:26:21 +0000390 if (!hung_up) {
391 if (baud <= min)
392 tty_termios_encode_baud_rate(termios,
393 min + 1, min + 1);
394 else
395 tty_termios_encode_baud_rate(termios,
396 max - 1, max - 1);
397 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398 }
Alan Cox16ae2a82010-01-04 16:26:21 +0000399 /* Should never happen */
400 WARN_ON(1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700401 return 0;
402}
403
404EXPORT_SYMBOL(uart_get_baud_rate);
405
406/**
407 * uart_get_divisor - return uart clock divisor
408 * @port: uart_port structure describing the port.
409 * @baud: desired baud rate
410 *
411 * Calculate the uart clock divisor for the port.
412 */
413unsigned int
414uart_get_divisor(struct uart_port *port, unsigned int baud)
415{
416 unsigned int quot;
417
418 /*
419 * Old custom speed handling.
420 */
421 if (baud == 38400 && (port->flags & UPF_SPD_MASK) == UPF_SPD_CUST)
422 quot = port->custom_divisor;
423 else
424 quot = (port->uartclk + (8 * baud)) / (16 * baud);
425
426 return quot;
427}
428
429EXPORT_SYMBOL(uart_get_divisor);
430
Alan Cox23d22ce2008-04-30 00:54:11 -0700431/* FIXME: Consistent locking policy */
Alan Cox19225132010-06-01 22:52:51 +0200432static void uart_change_speed(struct tty_struct *tty, struct uart_state *state,
433 struct ktermios *old_termios)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700434{
Alan Coxccce6de2009-09-19 13:13:30 -0700435 struct tty_port *port = &state->port;
Alan Coxccce6de2009-09-19 13:13:30 -0700436 struct uart_port *uport = state->uart_port;
Alan Cox606d0992006-12-08 02:38:45 -0800437 struct ktermios *termios;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700438
439 /*
440 * If we have no tty, termios, or the port does not exist,
441 * then we can't set the parameters for this port.
442 */
Alan Coxccce6de2009-09-19 13:13:30 -0700443 if (!tty || !tty->termios || uport->type == PORT_UNKNOWN)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700444 return;
445
446 termios = tty->termios;
447
448 /*
449 * Set flags based on termios cflag
450 */
451 if (termios->c_cflag & CRTSCTS)
Alan Coxccce6de2009-09-19 13:13:30 -0700452 set_bit(ASYNCB_CTS_FLOW, &port->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453 else
Alan Coxccce6de2009-09-19 13:13:30 -0700454 clear_bit(ASYNCB_CTS_FLOW, &port->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455
456 if (termios->c_cflag & CLOCAL)
Alan Coxccce6de2009-09-19 13:13:30 -0700457 clear_bit(ASYNCB_CHECK_CD, &port->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700458 else
Alan Coxccce6de2009-09-19 13:13:30 -0700459 set_bit(ASYNCB_CHECK_CD, &port->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700460
Alan Coxccce6de2009-09-19 13:13:30 -0700461 uport->ops->set_termios(uport, termios, old_termios);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700462}
463
Alan Cox19225132010-06-01 22:52:51 +0200464static inline int __uart_put_char(struct uart_port *port,
465 struct circ_buf *circ, unsigned char c)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700466{
467 unsigned long flags;
Alan Cox23d22ce2008-04-30 00:54:11 -0700468 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700469
470 if (!circ->buf)
Alan Cox23d22ce2008-04-30 00:54:11 -0700471 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700472
473 spin_lock_irqsave(&port->lock, flags);
474 if (uart_circ_chars_free(circ) != 0) {
475 circ->buf[circ->head] = c;
476 circ->head = (circ->head + 1) & (UART_XMIT_SIZE - 1);
Alan Cox23d22ce2008-04-30 00:54:11 -0700477 ret = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700478 }
479 spin_unlock_irqrestore(&port->lock, flags);
Alan Cox23d22ce2008-04-30 00:54:11 -0700480 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700481}
482
Alan Cox23d22ce2008-04-30 00:54:11 -0700483static int uart_put_char(struct tty_struct *tty, unsigned char ch)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700484{
485 struct uart_state *state = tty->driver_data;
486
Alan Coxebd2c8f2009-09-19 13:13:28 -0700487 return __uart_put_char(state->uart_port, &state->xmit, ch);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700488}
489
490static void uart_flush_chars(struct tty_struct *tty)
491{
492 uart_start(tty);
493}
494
Alan Cox19225132010-06-01 22:52:51 +0200495static int uart_write(struct tty_struct *tty,
496 const unsigned char *buf, int count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700497{
498 struct uart_state *state = tty->driver_data;
Pavel Machekd5f735e2006-03-07 21:55:20 -0800499 struct uart_port *port;
500 struct circ_buf *circ;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700501 unsigned long flags;
502 int c, ret = 0;
503
Pavel Machekd5f735e2006-03-07 21:55:20 -0800504 /*
505 * This means you called this function _after_ the port was
506 * closed. No cookie for you.
507 */
Alan Coxf7519282009-01-02 13:49:21 +0000508 if (!state) {
Pavel Machekd5f735e2006-03-07 21:55:20 -0800509 WARN_ON(1);
510 return -EL3HLT;
511 }
512
Alan Coxebd2c8f2009-09-19 13:13:28 -0700513 port = state->uart_port;
514 circ = &state->xmit;
Pavel Machekd5f735e2006-03-07 21:55:20 -0800515
Linus Torvalds1da177e2005-04-16 15:20:36 -0700516 if (!circ->buf)
517 return 0;
518
519 spin_lock_irqsave(&port->lock, flags);
520 while (1) {
521 c = CIRC_SPACE_TO_END(circ->head, circ->tail, UART_XMIT_SIZE);
522 if (count < c)
523 c = count;
524 if (c <= 0)
525 break;
526 memcpy(circ->buf + circ->head, buf, c);
527 circ->head = (circ->head + c) & (UART_XMIT_SIZE - 1);
528 buf += c;
529 count -= c;
530 ret += c;
531 }
532 spin_unlock_irqrestore(&port->lock, flags);
533
534 uart_start(tty);
535 return ret;
536}
537
538static int uart_write_room(struct tty_struct *tty)
539{
540 struct uart_state *state = tty->driver_data;
Alan Coxf34d7a52008-04-30 00:54:13 -0700541 unsigned long flags;
542 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543
Alan Coxebd2c8f2009-09-19 13:13:28 -0700544 spin_lock_irqsave(&state->uart_port->lock, flags);
545 ret = uart_circ_chars_free(&state->xmit);
546 spin_unlock_irqrestore(&state->uart_port->lock, flags);
Alan Coxf34d7a52008-04-30 00:54:13 -0700547 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700548}
549
550static int uart_chars_in_buffer(struct tty_struct *tty)
551{
552 struct uart_state *state = tty->driver_data;
Alan Coxf34d7a52008-04-30 00:54:13 -0700553 unsigned long flags;
554 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700555
Alan Coxebd2c8f2009-09-19 13:13:28 -0700556 spin_lock_irqsave(&state->uart_port->lock, flags);
557 ret = uart_circ_chars_pending(&state->xmit);
558 spin_unlock_irqrestore(&state->uart_port->lock, flags);
Alan Coxf34d7a52008-04-30 00:54:13 -0700559 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700560}
561
562static void uart_flush_buffer(struct tty_struct *tty)
563{
564 struct uart_state *state = tty->driver_data;
Tetsuo Handa55d7b682008-05-06 20:42:27 -0700565 struct uart_port *port;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700566 unsigned long flags;
567
Pavel Machekd5f735e2006-03-07 21:55:20 -0800568 /*
569 * This means you called this function _after_ the port was
570 * closed. No cookie for you.
571 */
Alan Coxf7519282009-01-02 13:49:21 +0000572 if (!state) {
Pavel Machekd5f735e2006-03-07 21:55:20 -0800573 WARN_ON(1);
574 return;
575 }
576
Alan Coxebd2c8f2009-09-19 13:13:28 -0700577 port = state->uart_port;
Jiri Slabyeb3a1e12007-05-06 14:48:52 -0700578 pr_debug("uart_flush_buffer(%d) called\n", tty->index);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700579
580 spin_lock_irqsave(&port->lock, flags);
Alan Coxebd2c8f2009-09-19 13:13:28 -0700581 uart_circ_clear(&state->xmit);
Haavard Skinnemoen6bb0e3a2008-07-16 21:52:36 +0100582 if (port->ops->flush_buffer)
583 port->ops->flush_buffer(port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700584 spin_unlock_irqrestore(&port->lock, flags);
585 tty_wakeup(tty);
586}
587
588/*
589 * This function is used to send a high-priority XON/XOFF character to
590 * the device
591 */
592static void uart_send_xchar(struct tty_struct *tty, char ch)
593{
594 struct uart_state *state = tty->driver_data;
Alan Coxebd2c8f2009-09-19 13:13:28 -0700595 struct uart_port *port = state->uart_port;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700596 unsigned long flags;
597
598 if (port->ops->send_xchar)
599 port->ops->send_xchar(port, ch);
600 else {
601 port->x_char = ch;
602 if (ch) {
603 spin_lock_irqsave(&port->lock, flags);
Russell Kingb129a8c2005-08-31 10:12:14 +0100604 port->ops->start_tx(port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700605 spin_unlock_irqrestore(&port->lock, flags);
606 }
607 }
608}
609
610static void uart_throttle(struct tty_struct *tty)
611{
612 struct uart_state *state = tty->driver_data;
613
614 if (I_IXOFF(tty))
615 uart_send_xchar(tty, STOP_CHAR(tty));
616
617 if (tty->termios->c_cflag & CRTSCTS)
Alan Coxebd2c8f2009-09-19 13:13:28 -0700618 uart_clear_mctrl(state->uart_port, TIOCM_RTS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700619}
620
621static void uart_unthrottle(struct tty_struct *tty)
622{
623 struct uart_state *state = tty->driver_data;
Alan Coxebd2c8f2009-09-19 13:13:28 -0700624 struct uart_port *port = state->uart_port;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700625
626 if (I_IXOFF(tty)) {
627 if (port->x_char)
628 port->x_char = 0;
629 else
630 uart_send_xchar(tty, START_CHAR(tty));
631 }
632
633 if (tty->termios->c_cflag & CRTSCTS)
634 uart_set_mctrl(port, TIOCM_RTS);
635}
636
637static int uart_get_info(struct uart_state *state,
638 struct serial_struct __user *retinfo)
639{
Alan Coxa2bceae2009-09-19 13:13:31 -0700640 struct uart_port *uport = state->uart_port;
641 struct tty_port *port = &state->port;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700642 struct serial_struct tmp;
643
644 memset(&tmp, 0, sizeof(tmp));
Alan Coxf34d7a52008-04-30 00:54:13 -0700645
646 /* Ensure the state we copy is consistent and no hardware changes
647 occur as we go */
Alan Coxa2bceae2009-09-19 13:13:31 -0700648 mutex_lock(&port->mutex);
Alan Coxf34d7a52008-04-30 00:54:13 -0700649
Alan Coxa2bceae2009-09-19 13:13:31 -0700650 tmp.type = uport->type;
651 tmp.line = uport->line;
652 tmp.port = uport->iobase;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700653 if (HIGH_BITS_OFFSET)
Alan Coxa2bceae2009-09-19 13:13:31 -0700654 tmp.port_high = (long) uport->iobase >> HIGH_BITS_OFFSET;
655 tmp.irq = uport->irq;
656 tmp.flags = uport->flags;
657 tmp.xmit_fifo_size = uport->fifosize;
658 tmp.baud_base = uport->uartclk / 16;
659 tmp.close_delay = port->close_delay / 10;
Alan Cox016af532009-09-19 13:13:32 -0700660 tmp.closing_wait = port->closing_wait == ASYNC_CLOSING_WAIT_NONE ?
Linus Torvalds1da177e2005-04-16 15:20:36 -0700661 ASYNC_CLOSING_WAIT_NONE :
Alan Coxa2bceae2009-09-19 13:13:31 -0700662 port->closing_wait / 10;
663 tmp.custom_divisor = uport->custom_divisor;
664 tmp.hub6 = uport->hub6;
665 tmp.io_type = uport->iotype;
666 tmp.iomem_reg_shift = uport->regshift;
667 tmp.iomem_base = (void *)(unsigned long)uport->mapbase;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700668
Alan Coxa2bceae2009-09-19 13:13:31 -0700669 mutex_unlock(&port->mutex);
Alan Coxf34d7a52008-04-30 00:54:13 -0700670
Linus Torvalds1da177e2005-04-16 15:20:36 -0700671 if (copy_to_user(retinfo, &tmp, sizeof(*retinfo)))
672 return -EFAULT;
673 return 0;
674}
675
Alan Cox19225132010-06-01 22:52:51 +0200676static int uart_set_info(struct tty_struct *tty, struct uart_state *state,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700677 struct serial_struct __user *newinfo)
678{
679 struct serial_struct new_serial;
Alan Cox46d57a42009-09-19 13:13:29 -0700680 struct uart_port *uport = state->uart_port;
681 struct tty_port *port = &state->port;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700682 unsigned long new_port;
Russell King0077d452006-01-21 23:03:28 +0000683 unsigned int change_irq, change_port, closing_wait;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700684 unsigned int old_custom_divisor, close_delay;
Russell King0077d452006-01-21 23:03:28 +0000685 upf_t old_flags, new_flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700686 int retval = 0;
687
688 if (copy_from_user(&new_serial, newinfo, sizeof(new_serial)))
689 return -EFAULT;
690
691 new_port = new_serial.port;
692 if (HIGH_BITS_OFFSET)
693 new_port += (unsigned long) new_serial.port_high << HIGH_BITS_OFFSET;
694
695 new_serial.irq = irq_canonicalize(new_serial.irq);
696 close_delay = new_serial.close_delay * 10;
697 closing_wait = new_serial.closing_wait == ASYNC_CLOSING_WAIT_NONE ?
Alan Cox016af532009-09-19 13:13:32 -0700698 ASYNC_CLOSING_WAIT_NONE : new_serial.closing_wait * 10;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700699
700 /*
Alan Cox91312cd2009-09-19 13:13:29 -0700701 * This semaphore protects port->count. It is also
Linus Torvalds1da177e2005-04-16 15:20:36 -0700702 * very useful to prevent opens. Also, take the
703 * port configuration semaphore to make sure that a
704 * module insertion/removal doesn't change anything
705 * under us.
706 */
Alan Coxa2bceae2009-09-19 13:13:31 -0700707 mutex_lock(&port->mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700708
Alan Cox46d57a42009-09-19 13:13:29 -0700709 change_irq = !(uport->flags & UPF_FIXED_PORT)
710 && new_serial.irq != uport->irq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700711
712 /*
713 * Since changing the 'type' of the port changes its resource
714 * allocations, we should treat type changes the same as
715 * IO port changes.
716 */
Alan Cox46d57a42009-09-19 13:13:29 -0700717 change_port = !(uport->flags & UPF_FIXED_PORT)
718 && (new_port != uport->iobase ||
719 (unsigned long)new_serial.iomem_base != uport->mapbase ||
720 new_serial.hub6 != uport->hub6 ||
721 new_serial.io_type != uport->iotype ||
722 new_serial.iomem_reg_shift != uport->regshift ||
723 new_serial.type != uport->type);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700724
Alan Cox46d57a42009-09-19 13:13:29 -0700725 old_flags = uport->flags;
Russell King0077d452006-01-21 23:03:28 +0000726 new_flags = new_serial.flags;
Alan Cox46d57a42009-09-19 13:13:29 -0700727 old_custom_divisor = uport->custom_divisor;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700728
729 if (!capable(CAP_SYS_ADMIN)) {
730 retval = -EPERM;
731 if (change_irq || change_port ||
Alan Cox46d57a42009-09-19 13:13:29 -0700732 (new_serial.baud_base != uport->uartclk / 16) ||
733 (close_delay != port->close_delay) ||
734 (closing_wait != port->closing_wait) ||
Russell King947deee2006-07-02 20:45:51 +0100735 (new_serial.xmit_fifo_size &&
Alan Cox46d57a42009-09-19 13:13:29 -0700736 new_serial.xmit_fifo_size != uport->fifosize) ||
Russell King0077d452006-01-21 23:03:28 +0000737 (((new_flags ^ old_flags) & ~UPF_USR_MASK) != 0))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700738 goto exit;
Alan Cox46d57a42009-09-19 13:13:29 -0700739 uport->flags = ((uport->flags & ~UPF_USR_MASK) |
Russell King0077d452006-01-21 23:03:28 +0000740 (new_flags & UPF_USR_MASK));
Alan Cox46d57a42009-09-19 13:13:29 -0700741 uport->custom_divisor = new_serial.custom_divisor;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700742 goto check_and_exit;
743 }
744
745 /*
746 * Ask the low level driver to verify the settings.
747 */
Alan Cox46d57a42009-09-19 13:13:29 -0700748 if (uport->ops->verify_port)
749 retval = uport->ops->verify_port(uport, &new_serial);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700750
Yinghai Lua62c4132008-08-19 20:49:55 -0700751 if ((new_serial.irq >= nr_irqs) || (new_serial.irq < 0) ||
Linus Torvalds1da177e2005-04-16 15:20:36 -0700752 (new_serial.baud_base < 9600))
753 retval = -EINVAL;
754
755 if (retval)
756 goto exit;
757
758 if (change_port || change_irq) {
759 retval = -EBUSY;
760
761 /*
762 * Make sure that we are the sole user of this port.
763 */
Alan Coxb58d13a2009-09-19 13:13:32 -0700764 if (tty_port_users(port) > 1)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700765 goto exit;
766
767 /*
768 * We need to shutdown the serial port at the old
769 * port/type/irq combination.
770 */
Alan Cox19225132010-06-01 22:52:51 +0200771 uart_shutdown(tty, state);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700772 }
773
774 if (change_port) {
775 unsigned long old_iobase, old_mapbase;
776 unsigned int old_type, old_iotype, old_hub6, old_shift;
777
Alan Cox46d57a42009-09-19 13:13:29 -0700778 old_iobase = uport->iobase;
779 old_mapbase = uport->mapbase;
780 old_type = uport->type;
781 old_hub6 = uport->hub6;
782 old_iotype = uport->iotype;
783 old_shift = uport->regshift;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700784
785 /*
786 * Free and release old regions
787 */
788 if (old_type != PORT_UNKNOWN)
Alan Cox46d57a42009-09-19 13:13:29 -0700789 uport->ops->release_port(uport);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700790
Alan Cox46d57a42009-09-19 13:13:29 -0700791 uport->iobase = new_port;
792 uport->type = new_serial.type;
793 uport->hub6 = new_serial.hub6;
794 uport->iotype = new_serial.io_type;
795 uport->regshift = new_serial.iomem_reg_shift;
796 uport->mapbase = (unsigned long)new_serial.iomem_base;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700797
798 /*
799 * Claim and map the new regions
800 */
Alan Cox46d57a42009-09-19 13:13:29 -0700801 if (uport->type != PORT_UNKNOWN) {
802 retval = uport->ops->request_port(uport);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700803 } else {
804 /* Always success - Jean II */
805 retval = 0;
806 }
807
808 /*
809 * If we fail to request resources for the
810 * new port, try to restore the old settings.
811 */
812 if (retval && old_type != PORT_UNKNOWN) {
Alan Cox46d57a42009-09-19 13:13:29 -0700813 uport->iobase = old_iobase;
814 uport->type = old_type;
815 uport->hub6 = old_hub6;
816 uport->iotype = old_iotype;
817 uport->regshift = old_shift;
818 uport->mapbase = old_mapbase;
819 retval = uport->ops->request_port(uport);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700820 /*
821 * If we failed to restore the old settings,
822 * we fail like this.
823 */
824 if (retval)
Alan Cox46d57a42009-09-19 13:13:29 -0700825 uport->type = PORT_UNKNOWN;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700826
827 /*
828 * We failed anyway.
829 */
830 retval = -EBUSY;
Alan Coxa46c9992008-02-08 04:18:53 -0800831 /* Added to return the correct error -Ram Gupta */
832 goto exit;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700833 }
834 }
835
David Gibsonabb4a232007-05-06 14:48:49 -0700836 if (change_irq)
Alan Cox46d57a42009-09-19 13:13:29 -0700837 uport->irq = new_serial.irq;
838 if (!(uport->flags & UPF_FIXED_PORT))
839 uport->uartclk = new_serial.baud_base * 16;
840 uport->flags = (uport->flags & ~UPF_CHANGE_MASK) |
Russell King0077d452006-01-21 23:03:28 +0000841 (new_flags & UPF_CHANGE_MASK);
Alan Cox46d57a42009-09-19 13:13:29 -0700842 uport->custom_divisor = new_serial.custom_divisor;
843 port->close_delay = close_delay;
844 port->closing_wait = closing_wait;
Russell King947deee2006-07-02 20:45:51 +0100845 if (new_serial.xmit_fifo_size)
Alan Cox46d57a42009-09-19 13:13:29 -0700846 uport->fifosize = new_serial.xmit_fifo_size;
847 if (port->tty)
848 port->tty->low_latency =
849 (uport->flags & UPF_LOW_LATENCY) ? 1 : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700850
851 check_and_exit:
852 retval = 0;
Alan Cox46d57a42009-09-19 13:13:29 -0700853 if (uport->type == PORT_UNKNOWN)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700854 goto exit;
Alan Coxccce6de2009-09-19 13:13:30 -0700855 if (port->flags & ASYNC_INITIALIZED) {
Alan Cox46d57a42009-09-19 13:13:29 -0700856 if (((old_flags ^ uport->flags) & UPF_SPD_MASK) ||
857 old_custom_divisor != uport->custom_divisor) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700858 /*
859 * If they're setting up a custom divisor or speed,
860 * instead of clearing it, then bitch about it. No
861 * need to rate-limit; it's CAP_SYS_ADMIN only.
862 */
Alan Cox46d57a42009-09-19 13:13:29 -0700863 if (uport->flags & UPF_SPD_MASK) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700864 char buf[64];
865 printk(KERN_NOTICE
866 "%s sets custom speed on %s. This "
867 "is deprecated.\n", current->comm,
Alan Cox46d57a42009-09-19 13:13:29 -0700868 tty_name(port->tty, buf));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700869 }
Alan Cox19225132010-06-01 22:52:51 +0200870 uart_change_speed(tty, state, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700871 }
872 } else
Alan Cox19225132010-06-01 22:52:51 +0200873 retval = uart_startup(tty, state, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700874 exit:
Alan Coxa2bceae2009-09-19 13:13:31 -0700875 mutex_unlock(&port->mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700876 return retval;
877}
878
Alan Cox19225132010-06-01 22:52:51 +0200879/**
880 * uart_get_lsr_info - get line status register info
881 * @tty: tty associated with the UART
882 * @state: UART being queried
883 * @value: returned modem value
884 *
885 * Note: uart_ioctl protects us against hangups.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700886 */
Alan Cox19225132010-06-01 22:52:51 +0200887static int uart_get_lsr_info(struct tty_struct *tty,
888 struct uart_state *state, unsigned int __user *value)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700889{
Alan Cox46d57a42009-09-19 13:13:29 -0700890 struct uart_port *uport = state->uart_port;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700891 unsigned int result;
892
Alan Cox46d57a42009-09-19 13:13:29 -0700893 result = uport->ops->tx_empty(uport);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700894
895 /*
896 * If we're about to load something into the transmit
897 * register, we'll pretend the transmitter isn't empty to
898 * avoid a race condition (depending on when the transmit
899 * interrupt happens).
900 */
Alan Cox46d57a42009-09-19 13:13:29 -0700901 if (uport->x_char ||
Alan Coxebd2c8f2009-09-19 13:13:28 -0700902 ((uart_circ_chars_pending(&state->xmit) > 0) &&
Alan Cox19225132010-06-01 22:52:51 +0200903 !tty->stopped && !tty->hw_stopped))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700904 result &= ~TIOCSER_TEMT;
Alan Coxa46c9992008-02-08 04:18:53 -0800905
Linus Torvalds1da177e2005-04-16 15:20:36 -0700906 return put_user(result, value);
907}
908
909static int uart_tiocmget(struct tty_struct *tty, struct file *file)
910{
911 struct uart_state *state = tty->driver_data;
Alan Coxa2bceae2009-09-19 13:13:31 -0700912 struct tty_port *port = &state->port;
Alan Cox46d57a42009-09-19 13:13:29 -0700913 struct uart_port *uport = state->uart_port;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700914 int result = -EIO;
915
Alan Coxa2bceae2009-09-19 13:13:31 -0700916 mutex_lock(&port->mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700917 if ((!file || !tty_hung_up_p(file)) &&
918 !(tty->flags & (1 << TTY_IO_ERROR))) {
Alan Cox46d57a42009-09-19 13:13:29 -0700919 result = uport->mctrl;
Russell Kingc5f46442005-06-29 09:42:38 +0100920
Alan Cox46d57a42009-09-19 13:13:29 -0700921 spin_lock_irq(&uport->lock);
922 result |= uport->ops->get_mctrl(uport);
923 spin_unlock_irq(&uport->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700924 }
Alan Coxa2bceae2009-09-19 13:13:31 -0700925 mutex_unlock(&port->mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700926
927 return result;
928}
929
930static int
931uart_tiocmset(struct tty_struct *tty, struct file *file,
932 unsigned int set, unsigned int clear)
933{
934 struct uart_state *state = tty->driver_data;
Alan Cox46d57a42009-09-19 13:13:29 -0700935 struct uart_port *uport = state->uart_port;
Alan Coxa2bceae2009-09-19 13:13:31 -0700936 struct tty_port *port = &state->port;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700937 int ret = -EIO;
938
Alan Coxa2bceae2009-09-19 13:13:31 -0700939 mutex_lock(&port->mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700940 if ((!file || !tty_hung_up_p(file)) &&
941 !(tty->flags & (1 << TTY_IO_ERROR))) {
Alan Cox46d57a42009-09-19 13:13:29 -0700942 uart_update_mctrl(uport, set, clear);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700943 ret = 0;
944 }
Alan Coxa2bceae2009-09-19 13:13:31 -0700945 mutex_unlock(&port->mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700946 return ret;
947}
948
Alan Cox9e989662008-07-22 11:18:03 +0100949static int uart_break_ctl(struct tty_struct *tty, int break_state)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700950{
951 struct uart_state *state = tty->driver_data;
Alan Coxa2bceae2009-09-19 13:13:31 -0700952 struct tty_port *port = &state->port;
Alan Cox46d57a42009-09-19 13:13:29 -0700953 struct uart_port *uport = state->uart_port;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700954
Alan Coxa2bceae2009-09-19 13:13:31 -0700955 mutex_lock(&port->mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700956
Alan Cox46d57a42009-09-19 13:13:29 -0700957 if (uport->type != PORT_UNKNOWN)
958 uport->ops->break_ctl(uport, break_state);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700959
Alan Coxa2bceae2009-09-19 13:13:31 -0700960 mutex_unlock(&port->mutex);
Alan Cox9e989662008-07-22 11:18:03 +0100961 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700962}
963
Alan Cox19225132010-06-01 22:52:51 +0200964static int uart_do_autoconfig(struct tty_struct *tty,struct uart_state *state)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700965{
Alan Cox46d57a42009-09-19 13:13:29 -0700966 struct uart_port *uport = state->uart_port;
Alan Coxa2bceae2009-09-19 13:13:31 -0700967 struct tty_port *port = &state->port;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700968 int flags, ret;
969
970 if (!capable(CAP_SYS_ADMIN))
971 return -EPERM;
972
973 /*
974 * Take the per-port semaphore. This prevents count from
975 * changing, and hence any extra opens of the port while
976 * we're auto-configuring.
977 */
Alan Coxa2bceae2009-09-19 13:13:31 -0700978 if (mutex_lock_interruptible(&port->mutex))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700979 return -ERESTARTSYS;
980
981 ret = -EBUSY;
Alan Coxb58d13a2009-09-19 13:13:32 -0700982 if (tty_port_users(port) == 1) {
Alan Cox19225132010-06-01 22:52:51 +0200983 uart_shutdown(tty, state);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700984
985 /*
986 * If we already have a port type configured,
987 * we must release its resources.
988 */
Alan Cox46d57a42009-09-19 13:13:29 -0700989 if (uport->type != PORT_UNKNOWN)
990 uport->ops->release_port(uport);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700991
992 flags = UART_CONFIG_TYPE;
Alan Cox46d57a42009-09-19 13:13:29 -0700993 if (uport->flags & UPF_AUTO_IRQ)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700994 flags |= UART_CONFIG_IRQ;
995
996 /*
997 * This will claim the ports resources if
998 * a port is found.
999 */
Alan Cox46d57a42009-09-19 13:13:29 -07001000 uport->ops->config_port(uport, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001001
Alan Cox19225132010-06-01 22:52:51 +02001002 ret = uart_startup(tty, state, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001003 }
Alan Coxa2bceae2009-09-19 13:13:31 -07001004 mutex_unlock(&port->mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001005 return ret;
1006}
1007
1008/*
1009 * Wait for any of the 4 modem inputs (DCD,RI,DSR,CTS) to change
1010 * - mask passed in arg for lines of interest
1011 * (use |'ed TIOCM_RNG/DSR/CD/CTS for masking)
1012 * Caller should use TIOCGICOUNT to see which one it was
Alan Coxbdc04e32009-09-19 13:13:31 -07001013 *
1014 * FIXME: This wants extracting into a common all driver implementation
1015 * of TIOCMWAIT using tty_port.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001016 */
1017static int
1018uart_wait_modem_status(struct uart_state *state, unsigned long arg)
1019{
Alan Cox46d57a42009-09-19 13:13:29 -07001020 struct uart_port *uport = state->uart_port;
Alan Coxbdc04e32009-09-19 13:13:31 -07001021 struct tty_port *port = &state->port;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001022 DECLARE_WAITQUEUE(wait, current);
1023 struct uart_icount cprev, cnow;
1024 int ret;
1025
1026 /*
1027 * note the counters on entry
1028 */
Alan Cox46d57a42009-09-19 13:13:29 -07001029 spin_lock_irq(&uport->lock);
1030 memcpy(&cprev, &uport->icount, sizeof(struct uart_icount));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001031
1032 /*
1033 * Force modem status interrupts on
1034 */
Alan Cox46d57a42009-09-19 13:13:29 -07001035 uport->ops->enable_ms(uport);
1036 spin_unlock_irq(&uport->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001037
Alan Coxbdc04e32009-09-19 13:13:31 -07001038 add_wait_queue(&port->delta_msr_wait, &wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001039 for (;;) {
Alan Cox46d57a42009-09-19 13:13:29 -07001040 spin_lock_irq(&uport->lock);
1041 memcpy(&cnow, &uport->icount, sizeof(struct uart_icount));
1042 spin_unlock_irq(&uport->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001043
1044 set_current_state(TASK_INTERRUPTIBLE);
1045
1046 if (((arg & TIOCM_RNG) && (cnow.rng != cprev.rng)) ||
1047 ((arg & TIOCM_DSR) && (cnow.dsr != cprev.dsr)) ||
1048 ((arg & TIOCM_CD) && (cnow.dcd != cprev.dcd)) ||
1049 ((arg & TIOCM_CTS) && (cnow.cts != cprev.cts))) {
Alan Coxa46c9992008-02-08 04:18:53 -08001050 ret = 0;
1051 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001052 }
1053
1054 schedule();
1055
1056 /* see if a signal did it */
1057 if (signal_pending(current)) {
1058 ret = -ERESTARTSYS;
1059 break;
1060 }
1061
1062 cprev = cnow;
1063 }
1064
1065 current->state = TASK_RUNNING;
Alan Coxbdc04e32009-09-19 13:13:31 -07001066 remove_wait_queue(&port->delta_msr_wait, &wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001067
1068 return ret;
1069}
1070
1071/*
1072 * Get counter of input serial line interrupts (DCD,RI,DSR,CTS)
1073 * Return: write counters to the user passed counter struct
1074 * NB: both 1->0 and 0->1 transitions are counted except for
1075 * RI where only 0->1 is counted.
1076 */
1077static int uart_get_count(struct uart_state *state,
1078 struct serial_icounter_struct __user *icnt)
1079{
1080 struct serial_icounter_struct icount;
1081 struct uart_icount cnow;
Alan Cox46d57a42009-09-19 13:13:29 -07001082 struct uart_port *uport = state->uart_port;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001083
Alan Cox46d57a42009-09-19 13:13:29 -07001084 spin_lock_irq(&uport->lock);
1085 memcpy(&cnow, &uport->icount, sizeof(struct uart_icount));
1086 spin_unlock_irq(&uport->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001087
1088 icount.cts = cnow.cts;
1089 icount.dsr = cnow.dsr;
1090 icount.rng = cnow.rng;
1091 icount.dcd = cnow.dcd;
1092 icount.rx = cnow.rx;
1093 icount.tx = cnow.tx;
1094 icount.frame = cnow.frame;
1095 icount.overrun = cnow.overrun;
1096 icount.parity = cnow.parity;
1097 icount.brk = cnow.brk;
1098 icount.buf_overrun = cnow.buf_overrun;
1099
1100 return copy_to_user(icnt, &icount, sizeof(icount)) ? -EFAULT : 0;
1101}
1102
1103/*
Alan Coxe5238442008-04-30 00:53:28 -07001104 * Called via sys_ioctl. We can use spin_lock_irq() here.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001105 */
1106static int
1107uart_ioctl(struct tty_struct *tty, struct file *filp, unsigned int cmd,
1108 unsigned long arg)
1109{
1110 struct uart_state *state = tty->driver_data;
Alan Coxa2bceae2009-09-19 13:13:31 -07001111 struct tty_port *port = &state->port;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001112 void __user *uarg = (void __user *)arg;
1113 int ret = -ENOIOCTLCMD;
1114
Linus Torvalds1da177e2005-04-16 15:20:36 -07001115
1116 /*
1117 * These ioctls don't rely on the hardware to be present.
1118 */
1119 switch (cmd) {
1120 case TIOCGSERIAL:
1121 ret = uart_get_info(state, uarg);
1122 break;
1123
1124 case TIOCSSERIAL:
Alan Cox19225132010-06-01 22:52:51 +02001125 ret = uart_set_info(tty, state, uarg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001126 break;
1127
1128 case TIOCSERCONFIG:
Alan Cox19225132010-06-01 22:52:51 +02001129 ret = uart_do_autoconfig(tty, state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001130 break;
1131
1132 case TIOCSERGWILD: /* obsolete */
1133 case TIOCSERSWILD: /* obsolete */
1134 ret = 0;
1135 break;
1136 }
1137
1138 if (ret != -ENOIOCTLCMD)
1139 goto out;
1140
1141 if (tty->flags & (1 << TTY_IO_ERROR)) {
1142 ret = -EIO;
1143 goto out;
1144 }
1145
1146 /*
1147 * The following should only be used when hardware is present.
1148 */
1149 switch (cmd) {
1150 case TIOCMIWAIT:
1151 ret = uart_wait_modem_status(state, arg);
1152 break;
1153
1154 case TIOCGICOUNT:
1155 ret = uart_get_count(state, uarg);
1156 break;
1157 }
1158
1159 if (ret != -ENOIOCTLCMD)
1160 goto out;
1161
Alan Coxa2bceae2009-09-19 13:13:31 -07001162 mutex_lock(&port->mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001163
1164 if (tty_hung_up_p(filp)) {
1165 ret = -EIO;
1166 goto out_up;
1167 }
1168
1169 /*
1170 * All these rely on hardware being present and need to be
1171 * protected against the tty being hung up.
1172 */
1173 switch (cmd) {
1174 case TIOCSERGETLSR: /* Get line status register */
Alan Cox19225132010-06-01 22:52:51 +02001175 ret = uart_get_lsr_info(tty, state, uarg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001176 break;
1177
1178 default: {
Alan Cox46d57a42009-09-19 13:13:29 -07001179 struct uart_port *uport = state->uart_port;
1180 if (uport->ops->ioctl)
1181 ret = uport->ops->ioctl(uport, cmd, arg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001182 break;
1183 }
1184 }
Alan Coxf34d7a52008-04-30 00:54:13 -07001185out_up:
Alan Coxa2bceae2009-09-19 13:13:31 -07001186 mutex_unlock(&port->mutex);
Alan Coxf34d7a52008-04-30 00:54:13 -07001187out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001188 return ret;
1189}
1190
Linus Torvaldsedeb2802008-06-04 10:35:03 -07001191static void uart_set_ldisc(struct tty_struct *tty)
Alan Cox64e91592008-06-03 15:18:54 +01001192{
1193 struct uart_state *state = tty->driver_data;
Alan Cox46d57a42009-09-19 13:13:29 -07001194 struct uart_port *uport = state->uart_port;
Alan Cox64e91592008-06-03 15:18:54 +01001195
Alan Cox46d57a42009-09-19 13:13:29 -07001196 if (uport->ops->set_ldisc)
Alan Coxd87d9b72010-06-01 22:52:53 +02001197 uport->ops->set_ldisc(uport, tty->termios->c_line);
Alan Cox64e91592008-06-03 15:18:54 +01001198}
1199
Alan Coxa46c9992008-02-08 04:18:53 -08001200static void uart_set_termios(struct tty_struct *tty,
1201 struct ktermios *old_termios)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001202{
1203 struct uart_state *state = tty->driver_data;
1204 unsigned long flags;
1205 unsigned int cflag = tty->termios->c_cflag;
1206
Linus Torvalds1da177e2005-04-16 15:20:36 -07001207
1208 /*
1209 * These are the bits that are used to setup various
David Woodhouse20620d62007-08-22 14:01:11 -07001210 * flags in the low level driver. We can ignore the Bfoo
1211 * bits in c_cflag; c_[io]speed will always be set
1212 * appropriately by set_termios() in tty_ioctl.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07001213 */
1214#define RELEVANT_IFLAG(iflag) ((iflag) & (IGNBRK|BRKINT|IGNPAR|PARMRK|INPCK))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001215 if ((cflag ^ old_termios->c_cflag) == 0 &&
David Woodhouse20620d62007-08-22 14:01:11 -07001216 tty->termios->c_ospeed == old_termios->c_ospeed &&
1217 tty->termios->c_ispeed == old_termios->c_ispeed &&
Alan Coxe5238442008-04-30 00:53:28 -07001218 RELEVANT_IFLAG(tty->termios->c_iflag ^ old_termios->c_iflag) == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001219 return;
Alan Coxe5238442008-04-30 00:53:28 -07001220 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001221
Alan Cox19225132010-06-01 22:52:51 +02001222 uart_change_speed(tty, state, old_termios);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001223
1224 /* Handle transition to B0 status */
1225 if ((old_termios->c_cflag & CBAUD) && !(cflag & CBAUD))
Alan Coxebd2c8f2009-09-19 13:13:28 -07001226 uart_clear_mctrl(state->uart_port, TIOCM_RTS | TIOCM_DTR);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001227 /* Handle transition away from B0 status */
André Goddard Rosa82cb7ba2009-10-25 11:18:26 -02001228 else if (!(old_termios->c_cflag & CBAUD) && (cflag & CBAUD)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001229 unsigned int mask = TIOCM_DTR;
1230 if (!(cflag & CRTSCTS) ||
1231 !test_bit(TTY_THROTTLED, &tty->flags))
1232 mask |= TIOCM_RTS;
Alan Coxebd2c8f2009-09-19 13:13:28 -07001233 uart_set_mctrl(state->uart_port, mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001234 }
1235
1236 /* Handle turning off CRTSCTS */
1237 if ((old_termios->c_cflag & CRTSCTS) && !(cflag & CRTSCTS)) {
Alan Coxebd2c8f2009-09-19 13:13:28 -07001238 spin_lock_irqsave(&state->uart_port->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001239 tty->hw_stopped = 0;
1240 __uart_start(tty);
Alan Coxebd2c8f2009-09-19 13:13:28 -07001241 spin_unlock_irqrestore(&state->uart_port->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001242 }
Russell King0dd7a1a2005-06-29 18:40:53 +01001243 /* Handle turning on CRTSCTS */
André Goddard Rosa82cb7ba2009-10-25 11:18:26 -02001244 else if (!(old_termios->c_cflag & CRTSCTS) && (cflag & CRTSCTS)) {
Alan Coxebd2c8f2009-09-19 13:13:28 -07001245 spin_lock_irqsave(&state->uart_port->lock, flags);
1246 if (!(state->uart_port->ops->get_mctrl(state->uart_port) & TIOCM_CTS)) {
Russell King0dd7a1a2005-06-29 18:40:53 +01001247 tty->hw_stopped = 1;
Alan Coxebd2c8f2009-09-19 13:13:28 -07001248 state->uart_port->ops->stop_tx(state->uart_port);
Russell King0dd7a1a2005-06-29 18:40:53 +01001249 }
Alan Coxebd2c8f2009-09-19 13:13:28 -07001250 spin_unlock_irqrestore(&state->uart_port->lock, flags);
Russell King0dd7a1a2005-06-29 18:40:53 +01001251 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001252#if 0
1253 /*
1254 * No need to wake up processes in open wait, since they
1255 * sample the CLOCAL flag once, and don't recheck it.
1256 * XXX It's not clear whether the current behavior is correct
1257 * or not. Hence, this may change.....
1258 */
1259 if (!(old_termios->c_cflag & CLOCAL) &&
1260 (tty->termios->c_cflag & CLOCAL))
Alan Coxebd2c8f2009-09-19 13:13:28 -07001261 wake_up_interruptible(&state->uart_port.open_wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001262#endif
1263}
1264
1265/*
1266 * In 2.4.5, calls to this will be serialized via the BKL in
1267 * linux/drivers/char/tty_io.c:tty_release()
1268 * linux/drivers/char/tty_io.c:do_tty_handup()
1269 */
1270static void uart_close(struct tty_struct *tty, struct file *filp)
1271{
1272 struct uart_state *state = tty->driver_data;
Alan Cox46d57a42009-09-19 13:13:29 -07001273 struct tty_port *port;
1274 struct uart_port *uport;
Alan Cox61cd8a22010-06-01 22:52:57 +02001275 unsigned long flags;
Alan Coxa46c9992008-02-08 04:18:53 -08001276
Linus Torvalds1da177e2005-04-16 15:20:36 -07001277 BUG_ON(!kernel_locked());
1278
Linus Torvaldseea7e172009-10-12 19:13:54 +02001279 if (!state)
1280 return;
1281
Alan Cox46d57a42009-09-19 13:13:29 -07001282 uport = state->uart_port;
1283 port = &state->port;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001284
Alan Cox46d57a42009-09-19 13:13:29 -07001285 pr_debug("uart_close(%d) called\n", uport->line);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001286
Alan Coxa2bceae2009-09-19 13:13:31 -07001287 mutex_lock(&port->mutex);
Alan Cox61cd8a22010-06-01 22:52:57 +02001288 spin_lock_irqsave(&port->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001289
Alan Cox61cd8a22010-06-01 22:52:57 +02001290 if (tty_hung_up_p(filp)) {
1291 spin_unlock_irqrestore(&port->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001292 goto done;
Alan Cox61cd8a22010-06-01 22:52:57 +02001293 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001294
Alan Cox91312cd2009-09-19 13:13:29 -07001295 if ((tty->count == 1) && (port->count != 1)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001296 /*
1297 * Uh, oh. tty->count is 1, which means that the tty
Alan Cox91312cd2009-09-19 13:13:29 -07001298 * structure will be freed. port->count should always
Linus Torvalds1da177e2005-04-16 15:20:36 -07001299 * be one in these conditions. If it's greater than
1300 * one, we've got real problems, since it means the
1301 * serial port won't be shutdown.
1302 */
1303 printk(KERN_ERR "uart_close: bad serial port count; tty->count is 1, "
Alan Cox91312cd2009-09-19 13:13:29 -07001304 "port->count is %d\n", port->count);
1305 port->count = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001306 }
Alan Cox91312cd2009-09-19 13:13:29 -07001307 if (--port->count < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001308 printk(KERN_ERR "uart_close: bad serial port count for %s: %d\n",
Alan Cox91312cd2009-09-19 13:13:29 -07001309 tty->name, port->count);
1310 port->count = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001311 }
Alan Cox61cd8a22010-06-01 22:52:57 +02001312 if (port->count) {
1313 spin_unlock_irqrestore(&port->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001314 goto done;
Alan Cox61cd8a22010-06-01 22:52:57 +02001315 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001316
1317 /*
1318 * Now we wait for the transmit buffer to clear; and we notify
1319 * the line discipline to only process XON/XOFF characters by
1320 * setting tty->closing.
1321 */
1322 tty->closing = 1;
Alan Cox61cd8a22010-06-01 22:52:57 +02001323 spin_unlock_irqrestore(&port->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001324
Alan Cox016af532009-09-19 13:13:32 -07001325 if (port->closing_wait != ASYNC_CLOSING_WAIT_NONE)
Alan Cox46d57a42009-09-19 13:13:29 -07001326 tty_wait_until_sent(tty, msecs_to_jiffies(port->closing_wait));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001327
1328 /*
1329 * At this point, we stop accepting input. To do this, we
1330 * disable the receive line status interrupts.
1331 */
Alan Coxccce6de2009-09-19 13:13:30 -07001332 if (port->flags & ASYNC_INITIALIZED) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001333 unsigned long flags;
Linus Torvaldseea7e172009-10-12 19:13:54 +02001334 spin_lock_irqsave(&uport->lock, flags);
Alan Cox46d57a42009-09-19 13:13:29 -07001335 uport->ops->stop_rx(uport);
Linus Torvaldseea7e172009-10-12 19:13:54 +02001336 spin_unlock_irqrestore(&uport->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001337 /*
1338 * Before we drop DTR, make sure the UART transmitter
1339 * has completely drained; this is especially
1340 * important if there is a transmit FIFO!
1341 */
Alan Cox46d57a42009-09-19 13:13:29 -07001342 uart_wait_until_sent(tty, uport->timeout);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001343 }
1344
Alan Cox19225132010-06-01 22:52:51 +02001345 uart_shutdown(tty, state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001346 uart_flush_buffer(tty);
1347
Alan Coxa46c9992008-02-08 04:18:53 -08001348 tty_ldisc_flush(tty);
1349
Alan Cox7b014782009-09-19 13:13:33 -07001350 tty_port_tty_set(port, NULL);
Alan Cox61cd8a22010-06-01 22:52:57 +02001351 spin_lock_irqsave(&port->lock, flags);
1352 tty->closing = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001353
Alan Cox46d57a42009-09-19 13:13:29 -07001354 if (port->blocked_open) {
Alan Cox61cd8a22010-06-01 22:52:57 +02001355 spin_unlock_irqrestore(&port->lock, flags);
Alan Cox46d57a42009-09-19 13:13:29 -07001356 if (port->close_delay)
1357 msleep_interruptible(port->close_delay);
Alan Cox61cd8a22010-06-01 22:52:57 +02001358 spin_lock_irqsave(&port->lock, flags);
Alan Cox46d57a42009-09-19 13:13:29 -07001359 } else if (!uart_console(uport)) {
Alan Cox61cd8a22010-06-01 22:52:57 +02001360 spin_unlock_irqrestore(&port->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001361 uart_change_pm(state, 3);
Alan Cox61cd8a22010-06-01 22:52:57 +02001362 spin_lock_irqsave(&port->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001363 }
1364
1365 /*
1366 * Wake up anyone trying to open this port.
1367 */
Alan Coxccce6de2009-09-19 13:13:30 -07001368 clear_bit(ASYNCB_NORMAL_ACTIVE, &port->flags);
Alan Cox61cd8a22010-06-01 22:52:57 +02001369 spin_unlock_irqrestore(&port->lock, flags);
Alan Cox46d57a42009-09-19 13:13:29 -07001370 wake_up_interruptible(&port->open_wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001371
Alan Cox46d57a42009-09-19 13:13:29 -07001372done:
Alan Coxa2bceae2009-09-19 13:13:31 -07001373 mutex_unlock(&port->mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001374}
1375
1376static void uart_wait_until_sent(struct tty_struct *tty, int timeout)
1377{
1378 struct uart_state *state = tty->driver_data;
Alan Coxebd2c8f2009-09-19 13:13:28 -07001379 struct uart_port *port = state->uart_port;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001380 unsigned long char_time, expire;
1381
Linus Torvalds1da177e2005-04-16 15:20:36 -07001382 if (port->type == PORT_UNKNOWN || port->fifosize == 0)
1383 return;
1384
Alan Coxf34d7a52008-04-30 00:54:13 -07001385 lock_kernel();
1386
Linus Torvalds1da177e2005-04-16 15:20:36 -07001387 /*
1388 * Set the check interval to be 1/5 of the estimated time to
1389 * send a single character, and make it at least 1. The check
1390 * interval should also be less than the timeout.
1391 *
1392 * Note: we have to use pretty tight timings here to satisfy
1393 * the NIST-PCTS.
1394 */
1395 char_time = (port->timeout - HZ/50) / port->fifosize;
1396 char_time = char_time / 5;
1397 if (char_time == 0)
1398 char_time = 1;
1399 if (timeout && timeout < char_time)
1400 char_time = timeout;
1401
1402 /*
1403 * If the transmitter hasn't cleared in twice the approximate
1404 * amount of time to send the entire FIFO, it probably won't
1405 * ever clear. This assumes the UART isn't doing flow
1406 * control, which is currently the case. Hence, if it ever
1407 * takes longer than port->timeout, this is probably due to a
1408 * UART bug of some kind. So, we clamp the timeout parameter at
1409 * 2*port->timeout.
1410 */
1411 if (timeout == 0 || timeout > 2 * port->timeout)
1412 timeout = 2 * port->timeout;
1413
1414 expire = jiffies + timeout;
1415
Jiri Slabyeb3a1e12007-05-06 14:48:52 -07001416 pr_debug("uart_wait_until_sent(%d), jiffies=%lu, expire=%lu...\n",
Alan Coxa46c9992008-02-08 04:18:53 -08001417 port->line, jiffies, expire);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001418
1419 /*
1420 * Check whether the transmitter is empty every 'char_time'.
1421 * 'timeout' / 'expire' give us the maximum amount of time
1422 * we wait.
1423 */
1424 while (!port->ops->tx_empty(port)) {
1425 msleep_interruptible(jiffies_to_msecs(char_time));
1426 if (signal_pending(current))
1427 break;
1428 if (time_after(jiffies, expire))
1429 break;
1430 }
1431 set_current_state(TASK_RUNNING); /* might not be needed */
Alan Coxf34d7a52008-04-30 00:54:13 -07001432 unlock_kernel();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001433}
1434
1435/*
1436 * This is called with the BKL held in
1437 * linux/drivers/char/tty_io.c:do_tty_hangup()
1438 * We're called from the eventd thread, so we can sleep for
1439 * a _short_ time only.
1440 */
1441static void uart_hangup(struct tty_struct *tty)
1442{
1443 struct uart_state *state = tty->driver_data;
Alan Cox46d57a42009-09-19 13:13:29 -07001444 struct tty_port *port = &state->port;
Alan Cox61cd8a22010-06-01 22:52:57 +02001445 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001446
1447 BUG_ON(!kernel_locked());
Alan Coxebd2c8f2009-09-19 13:13:28 -07001448 pr_debug("uart_hangup(%d)\n", state->uart_port->line);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001449
Alan Coxa2bceae2009-09-19 13:13:31 -07001450 mutex_lock(&port->mutex);
Alan Coxccce6de2009-09-19 13:13:30 -07001451 if (port->flags & ASYNC_NORMAL_ACTIVE) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001452 uart_flush_buffer(tty);
Alan Cox19225132010-06-01 22:52:51 +02001453 uart_shutdown(tty, state);
Alan Cox61cd8a22010-06-01 22:52:57 +02001454 spin_lock_irqsave(&port->lock, flags);
Alan Cox91312cd2009-09-19 13:13:29 -07001455 port->count = 0;
Alan Coxccce6de2009-09-19 13:13:30 -07001456 clear_bit(ASYNCB_NORMAL_ACTIVE, &port->flags);
Alan Cox61cd8a22010-06-01 22:52:57 +02001457 spin_unlock_irqrestore(&port->lock, flags);
Alan Cox7b014782009-09-19 13:13:33 -07001458 tty_port_tty_set(port, NULL);
Alan Cox46d57a42009-09-19 13:13:29 -07001459 wake_up_interruptible(&port->open_wait);
Alan Coxbdc04e32009-09-19 13:13:31 -07001460 wake_up_interruptible(&port->delta_msr_wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001461 }
Alan Coxa2bceae2009-09-19 13:13:31 -07001462 mutex_unlock(&port->mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001463}
1464
Alan Cox19225132010-06-01 22:52:51 +02001465/**
1466 * uart_update_termios - update the terminal hw settings
1467 * @tty: tty associated with UART
1468 * @state: UART to update
1469 *
1470 * Copy across the serial console cflag setting into the termios settings
1471 * for the initial open of the port. This allows continuity between the
1472 * kernel settings, and the settings init adopts when it opens the port
1473 * for the first time.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001474 */
Alan Cox19225132010-06-01 22:52:51 +02001475static void uart_update_termios(struct tty_struct *tty,
1476 struct uart_state *state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001477{
Alan Coxebd2c8f2009-09-19 13:13:28 -07001478 struct uart_port *port = state->uart_port;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001479
1480 if (uart_console(port) && port->cons->cflag) {
1481 tty->termios->c_cflag = port->cons->cflag;
1482 port->cons->cflag = 0;
1483 }
1484
1485 /*
1486 * If the device failed to grab its irq resources,
1487 * or some other error occurred, don't try to talk
1488 * to the port hardware.
1489 */
1490 if (!(tty->flags & (1 << TTY_IO_ERROR))) {
1491 /*
1492 * Make termios settings take effect.
1493 */
Alan Cox19225132010-06-01 22:52:51 +02001494 uart_change_speed(tty, state, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001495
1496 /*
1497 * And finally enable the RTS and DTR signals.
1498 */
1499 if (tty->termios->c_cflag & CBAUD)
1500 uart_set_mctrl(port, TIOCM_DTR | TIOCM_RTS);
1501 }
1502}
1503
Alan Coxde0c8cb2010-06-01 22:52:58 +02001504static int uart_carrier_raised(struct tty_port *port)
1505{
1506 struct uart_state *state = container_of(port, struct uart_state, port);
1507 struct uart_port *uport = state->uart_port;
1508 int mctrl;
Alan Coxde0c8cb2010-06-01 22:52:58 +02001509 spin_lock_irq(&uport->lock);
1510 uport->ops->enable_ms(uport);
1511 mctrl = uport->ops->get_mctrl(uport);
1512 spin_unlock_irq(&uport->lock);
Alan Coxde0c8cb2010-06-01 22:52:58 +02001513 if (mctrl & TIOCM_CAR)
1514 return 1;
1515 return 0;
1516}
1517
1518static void uart_dtr_rts(struct tty_port *port, int onoff)
1519{
1520 struct uart_state *state = container_of(port, struct uart_state, port);
1521 struct uart_port *uport = state->uart_port;
Alan Cox24fcc7c2010-06-01 22:52:59 +02001522
Alan Coxde0c8cb2010-06-01 22:52:58 +02001523 if (onoff)
1524 uart_set_mctrl(uport, TIOCM_DTR | TIOCM_RTS);
1525 else
1526 uart_clear_mctrl(uport, TIOCM_DTR | TIOCM_RTS);
Alan Coxde0c8cb2010-06-01 22:52:58 +02001527}
1528
Linus Torvalds1da177e2005-04-16 15:20:36 -07001529/*
1530 * Block the open until the port is ready. We must be called with
1531 * the per-port semaphore held.
1532 */
1533static int
1534uart_block_til_ready(struct file *filp, struct uart_state *state)
1535{
1536 DECLARE_WAITQUEUE(wait, current);
Alan Cox46d57a42009-09-19 13:13:29 -07001537 struct tty_port *port = &state->port;
Alan Cox61cd8a22010-06-01 22:52:57 +02001538 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001539
Alan Cox61cd8a22010-06-01 22:52:57 +02001540 spin_lock_irqsave(&port->lock, flags);
1541 if (!tty_hung_up_p(filp))
1542 port->count--;
Alan Cox46d57a42009-09-19 13:13:29 -07001543 port->blocked_open++;
Alan Cox61cd8a22010-06-01 22:52:57 +02001544 spin_unlock_irqrestore(&port->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001545
Alan Cox46d57a42009-09-19 13:13:29 -07001546 add_wait_queue(&port->open_wait, &wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001547 while (1) {
1548 set_current_state(TASK_INTERRUPTIBLE);
1549
1550 /*
1551 * If we have been hung up, tell userspace/restart open.
1552 */
Alan Cox46d57a42009-09-19 13:13:29 -07001553 if (tty_hung_up_p(filp) || port->tty == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001554 break;
1555
1556 /*
1557 * If the port has been closed, tell userspace/restart open.
1558 */
Alan Coxccce6de2009-09-19 13:13:30 -07001559 if (!(port->flags & ASYNC_INITIALIZED))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001560 break;
1561
1562 /*
1563 * If non-blocking mode is set, or CLOCAL mode is set,
1564 * we don't want to wait for the modem status lines to
1565 * indicate that the port is ready.
1566 *
1567 * Also, if the port is not enabled/configured, we want
1568 * to allow the open to succeed here. Note that we will
1569 * have set TTY_IO_ERROR for a non-existant port.
1570 */
1571 if ((filp->f_flags & O_NONBLOCK) ||
Alan Cox46d57a42009-09-19 13:13:29 -07001572 (port->tty->termios->c_cflag & CLOCAL) ||
1573 (port->tty->flags & (1 << TTY_IO_ERROR)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001574 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001575
1576 /*
1577 * Set DTR to allow modem to know we're waiting. Do
1578 * not set RTS here - we want to make sure we catch
1579 * the data from the modem.
1580 */
Alan Coxde0c8cb2010-06-01 22:52:58 +02001581 if (port->tty->termios->c_cflag & CBAUD)
1582 tty_port_raise_dtr_rts(port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001583
1584 /*
1585 * and wait for the carrier to indicate that the
1586 * modem is ready for us.
1587 */
Alan Coxde0c8cb2010-06-01 22:52:58 +02001588 if (tty_port_carrier_raised(port))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001589 break;
1590
Linus Torvalds1da177e2005-04-16 15:20:36 -07001591 schedule();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001592
1593 if (signal_pending(current))
1594 break;
1595 }
1596 set_current_state(TASK_RUNNING);
Alan Cox46d57a42009-09-19 13:13:29 -07001597 remove_wait_queue(&port->open_wait, &wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001598
Alan Cox61cd8a22010-06-01 22:52:57 +02001599 spin_lock_irqsave(&port->lock, flags);
1600 if (!tty_hung_up_p(filp))
1601 port->count++;
Alan Cox46d57a42009-09-19 13:13:29 -07001602 port->blocked_open--;
Alan Cox61cd8a22010-06-01 22:52:57 +02001603 spin_unlock_irqrestore(&port->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001604
1605 if (signal_pending(current))
1606 return -ERESTARTSYS;
1607
Alan Cox46d57a42009-09-19 13:13:29 -07001608 if (!port->tty || tty_hung_up_p(filp))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001609 return -EAGAIN;
1610
1611 return 0;
1612}
1613
1614static struct uart_state *uart_get(struct uart_driver *drv, int line)
1615{
1616 struct uart_state *state;
Alan Coxa2bceae2009-09-19 13:13:31 -07001617 struct tty_port *port;
Russell King68ac64c2006-04-30 11:13:50 +01001618 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001619
Linus Torvalds1da177e2005-04-16 15:20:36 -07001620 state = drv->state + line;
Alan Coxa2bceae2009-09-19 13:13:31 -07001621 port = &state->port;
1622 if (mutex_lock_interruptible(&port->mutex)) {
Russell King68ac64c2006-04-30 11:13:50 +01001623 ret = -ERESTARTSYS;
1624 goto err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001625 }
1626
Alan Coxa2bceae2009-09-19 13:13:31 -07001627 port->count++;
Alan Coxebd2c8f2009-09-19 13:13:28 -07001628 if (!state->uart_port || state->uart_port->flags & UPF_DEAD) {
Russell King68ac64c2006-04-30 11:13:50 +01001629 ret = -ENXIO;
1630 goto err_unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001631 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001632 return state;
Russell King68ac64c2006-04-30 11:13:50 +01001633
1634 err_unlock:
Alan Coxa2bceae2009-09-19 13:13:31 -07001635 port->count--;
1636 mutex_unlock(&port->mutex);
Russell King68ac64c2006-04-30 11:13:50 +01001637 err:
1638 return ERR_PTR(ret);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001639}
1640
1641/*
Denis Cheng922f9cf2008-02-08 04:22:00 -08001642 * calls to uart_open are serialised by the BKL in
1643 * fs/char_dev.c:chrdev_open()
Linus Torvalds1da177e2005-04-16 15:20:36 -07001644 * Note that if this fails, then uart_close() _will_ be called.
1645 *
1646 * In time, we want to scrap the "opening nonpresent ports"
1647 * behaviour and implement an alternative way for setserial
1648 * to set base addresses/ports/types. This will allow us to
1649 * get rid of a certain amount of extra tests.
1650 */
1651static int uart_open(struct tty_struct *tty, struct file *filp)
1652{
1653 struct uart_driver *drv = (struct uart_driver *)tty->driver->driver_state;
1654 struct uart_state *state;
Alan Cox91312cd2009-09-19 13:13:29 -07001655 struct tty_port *port;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001656 int retval, line = tty->index;
1657
1658 BUG_ON(!kernel_locked());
Jiri Slabyeb3a1e12007-05-06 14:48:52 -07001659 pr_debug("uart_open(%d) called\n", line);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001660
1661 /*
1662 * tty->driver->num won't change, so we won't fail here with
1663 * tty->driver_data set to something non-NULL (and therefore
1664 * we won't get caught by uart_close()).
1665 */
1666 retval = -ENODEV;
1667 if (line >= tty->driver->num)
1668 goto fail;
1669
1670 /*
1671 * We take the semaphore inside uart_get to guarantee that we won't
Alan Coxebd2c8f2009-09-19 13:13:28 -07001672 * be re-entered while allocating the state structure, or while we
Linus Torvalds1da177e2005-04-16 15:20:36 -07001673 * request any IRQs that the driver may need. This also has the nice
1674 * side-effect that it delays the action of uart_hangup, so we can
Alan Coxebd2c8f2009-09-19 13:13:28 -07001675 * guarantee that state->port.tty will always contain something
1676 * reasonable.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001677 */
1678 state = uart_get(drv, line);
1679 if (IS_ERR(state)) {
1680 retval = PTR_ERR(state);
1681 goto fail;
1682 }
Alan Cox91312cd2009-09-19 13:13:29 -07001683 port = &state->port;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001684
1685 /*
1686 * Once we set tty->driver_data here, we are guaranteed that
1687 * uart_close() will decrement the driver module use count.
1688 * Any failures from here onwards should not touch the count.
1689 */
1690 tty->driver_data = state;
Alan Coxebd2c8f2009-09-19 13:13:28 -07001691 state->uart_port->state = state;
1692 tty->low_latency = (state->uart_port->flags & UPF_LOW_LATENCY) ? 1 : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001693 tty->alt_speed = 0;
Alan Cox7b014782009-09-19 13:13:33 -07001694 tty_port_tty_set(port, tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001695
1696 /*
1697 * If the port is in the middle of closing, bail out now.
1698 */
1699 if (tty_hung_up_p(filp)) {
1700 retval = -EAGAIN;
Alan Cox91312cd2009-09-19 13:13:29 -07001701 port->count--;
Alan Coxa2bceae2009-09-19 13:13:31 -07001702 mutex_unlock(&port->mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001703 goto fail;
1704 }
1705
1706 /*
1707 * Make sure the device is in D0 state.
1708 */
Alan Cox91312cd2009-09-19 13:13:29 -07001709 if (port->count == 1)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001710 uart_change_pm(state, 0);
1711
1712 /*
1713 * Start up the serial port.
1714 */
Alan Cox19225132010-06-01 22:52:51 +02001715 retval = uart_startup(tty, state, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001716
1717 /*
1718 * If we succeeded, wait until the port is ready.
1719 */
Alan Cox61cd8a22010-06-01 22:52:57 +02001720 mutex_unlock(&port->mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001721 if (retval == 0)
1722 retval = uart_block_til_ready(filp, state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001723
1724 /*
1725 * If this is the first open to succeed, adjust things to suit.
1726 */
Alan Coxccce6de2009-09-19 13:13:30 -07001727 if (retval == 0 && !(port->flags & ASYNC_NORMAL_ACTIVE)) {
1728 set_bit(ASYNCB_NORMAL_ACTIVE, &port->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001729
Alan Cox19225132010-06-01 22:52:51 +02001730 uart_update_termios(tty, state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001731 }
1732
Alan Coxa2bceae2009-09-19 13:13:31 -07001733fail:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001734 return retval;
1735}
1736
1737static const char *uart_type(struct uart_port *port)
1738{
1739 const char *str = NULL;
1740
1741 if (port->ops->type)
1742 str = port->ops->type(port);
1743
1744 if (!str)
1745 str = "unknown";
1746
1747 return str;
1748}
1749
1750#ifdef CONFIG_PROC_FS
1751
Alexey Dobriyand196a942009-03-31 15:19:21 -07001752static void uart_line_info(struct seq_file *m, struct uart_driver *drv, int i)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001753{
1754 struct uart_state *state = drv->state + i;
Alan Coxa2bceae2009-09-19 13:13:31 -07001755 struct tty_port *port = &state->port;
George G. Davis3689a0e2007-02-14 00:33:06 -08001756 int pm_state;
Alan Coxa2bceae2009-09-19 13:13:31 -07001757 struct uart_port *uport = state->uart_port;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001758 char stat_buf[32];
1759 unsigned int status;
Alexey Dobriyand196a942009-03-31 15:19:21 -07001760 int mmio;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001761
Alan Coxa2bceae2009-09-19 13:13:31 -07001762 if (!uport)
Alexey Dobriyand196a942009-03-31 15:19:21 -07001763 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001764
Alan Coxa2bceae2009-09-19 13:13:31 -07001765 mmio = uport->iotype >= UPIO_MEM;
Alexey Dobriyand196a942009-03-31 15:19:21 -07001766 seq_printf(m, "%d: uart:%s %s%08llX irq:%d",
Alan Coxa2bceae2009-09-19 13:13:31 -07001767 uport->line, uart_type(uport),
Sergei Shtylyov6c6a2332006-09-04 00:04:20 +04001768 mmio ? "mmio:0x" : "port:",
Alan Coxa2bceae2009-09-19 13:13:31 -07001769 mmio ? (unsigned long long)uport->mapbase
1770 : (unsigned long long)uport->iobase,
1771 uport->irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001772
Alan Coxa2bceae2009-09-19 13:13:31 -07001773 if (uport->type == PORT_UNKNOWN) {
Alexey Dobriyand196a942009-03-31 15:19:21 -07001774 seq_putc(m, '\n');
1775 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001776 }
1777
Alan Coxa46c9992008-02-08 04:18:53 -08001778 if (capable(CAP_SYS_ADMIN)) {
Alan Coxa2bceae2009-09-19 13:13:31 -07001779 mutex_lock(&port->mutex);
George G. Davis3689a0e2007-02-14 00:33:06 -08001780 pm_state = state->pm_state;
1781 if (pm_state)
1782 uart_change_pm(state, 0);
Alan Coxa2bceae2009-09-19 13:13:31 -07001783 spin_lock_irq(&uport->lock);
1784 status = uport->ops->get_mctrl(uport);
1785 spin_unlock_irq(&uport->lock);
George G. Davis3689a0e2007-02-14 00:33:06 -08001786 if (pm_state)
1787 uart_change_pm(state, pm_state);
Alan Coxa2bceae2009-09-19 13:13:31 -07001788 mutex_unlock(&port->mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001789
Alexey Dobriyand196a942009-03-31 15:19:21 -07001790 seq_printf(m, " tx:%d rx:%d",
Alan Coxa2bceae2009-09-19 13:13:31 -07001791 uport->icount.tx, uport->icount.rx);
1792 if (uport->icount.frame)
Alexey Dobriyand196a942009-03-31 15:19:21 -07001793 seq_printf(m, " fe:%d",
Alan Coxa2bceae2009-09-19 13:13:31 -07001794 uport->icount.frame);
1795 if (uport->icount.parity)
Alexey Dobriyand196a942009-03-31 15:19:21 -07001796 seq_printf(m, " pe:%d",
Alan Coxa2bceae2009-09-19 13:13:31 -07001797 uport->icount.parity);
1798 if (uport->icount.brk)
Alexey Dobriyand196a942009-03-31 15:19:21 -07001799 seq_printf(m, " brk:%d",
Alan Coxa2bceae2009-09-19 13:13:31 -07001800 uport->icount.brk);
1801 if (uport->icount.overrun)
Alexey Dobriyand196a942009-03-31 15:19:21 -07001802 seq_printf(m, " oe:%d",
Alan Coxa2bceae2009-09-19 13:13:31 -07001803 uport->icount.overrun);
Alan Coxa46c9992008-02-08 04:18:53 -08001804
1805#define INFOBIT(bit, str) \
Alan Coxa2bceae2009-09-19 13:13:31 -07001806 if (uport->mctrl & (bit)) \
Linus Torvalds1da177e2005-04-16 15:20:36 -07001807 strncat(stat_buf, (str), sizeof(stat_buf) - \
1808 strlen(stat_buf) - 2)
Alan Coxa46c9992008-02-08 04:18:53 -08001809#define STATBIT(bit, str) \
Linus Torvalds1da177e2005-04-16 15:20:36 -07001810 if (status & (bit)) \
1811 strncat(stat_buf, (str), sizeof(stat_buf) - \
1812 strlen(stat_buf) - 2)
1813
1814 stat_buf[0] = '\0';
1815 stat_buf[1] = '\0';
1816 INFOBIT(TIOCM_RTS, "|RTS");
1817 STATBIT(TIOCM_CTS, "|CTS");
1818 INFOBIT(TIOCM_DTR, "|DTR");
1819 STATBIT(TIOCM_DSR, "|DSR");
1820 STATBIT(TIOCM_CAR, "|CD");
1821 STATBIT(TIOCM_RNG, "|RI");
1822 if (stat_buf[0])
1823 stat_buf[0] = ' ';
Alan Coxa46c9992008-02-08 04:18:53 -08001824
Alexey Dobriyand196a942009-03-31 15:19:21 -07001825 seq_puts(m, stat_buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001826 }
Alexey Dobriyand196a942009-03-31 15:19:21 -07001827 seq_putc(m, '\n');
Linus Torvalds1da177e2005-04-16 15:20:36 -07001828#undef STATBIT
1829#undef INFOBIT
Linus Torvalds1da177e2005-04-16 15:20:36 -07001830}
1831
Alexey Dobriyand196a942009-03-31 15:19:21 -07001832static int uart_proc_show(struct seq_file *m, void *v)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001833{
Alexey Dobriyan833bb302009-04-02 01:30:04 +04001834 struct tty_driver *ttydrv = m->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001835 struct uart_driver *drv = ttydrv->driver_state;
Alexey Dobriyand196a942009-03-31 15:19:21 -07001836 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001837
Alexey Dobriyand196a942009-03-31 15:19:21 -07001838 seq_printf(m, "serinfo:1.0 driver%s%s revision:%s\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001839 "", "", "");
Alexey Dobriyand196a942009-03-31 15:19:21 -07001840 for (i = 0; i < drv->nr; i++)
1841 uart_line_info(m, drv, i);
1842 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001843}
Alexey Dobriyand196a942009-03-31 15:19:21 -07001844
1845static int uart_proc_open(struct inode *inode, struct file *file)
1846{
1847 return single_open(file, uart_proc_show, PDE(inode)->data);
1848}
1849
1850static const struct file_operations uart_proc_fops = {
1851 .owner = THIS_MODULE,
1852 .open = uart_proc_open,
1853 .read = seq_read,
1854 .llseek = seq_lseek,
1855 .release = single_release,
1856};
Linus Torvalds1da177e2005-04-16 15:20:36 -07001857#endif
1858
Andrew Morton4a1b5502008-03-07 15:51:16 -08001859#if defined(CONFIG_SERIAL_CORE_CONSOLE) || defined(CONFIG_CONSOLE_POLL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001860/*
Russell Kingd3587882006-03-20 20:00:09 +00001861 * uart_console_write - write a console message to a serial port
1862 * @port: the port to write the message
1863 * @s: array of characters
1864 * @count: number of characters in string to write
1865 * @write: function to write character to port
1866 */
1867void uart_console_write(struct uart_port *port, const char *s,
1868 unsigned int count,
1869 void (*putchar)(struct uart_port *, int))
1870{
1871 unsigned int i;
1872
1873 for (i = 0; i < count; i++, s++) {
1874 if (*s == '\n')
1875 putchar(port, '\r');
1876 putchar(port, *s);
1877 }
1878}
1879EXPORT_SYMBOL_GPL(uart_console_write);
1880
1881/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001882 * Check whether an invalid uart number has been specified, and
1883 * if so, search for the first available port that does have
1884 * console support.
1885 */
1886struct uart_port * __init
1887uart_get_console(struct uart_port *ports, int nr, struct console *co)
1888{
1889 int idx = co->index;
1890
1891 if (idx < 0 || idx >= nr || (ports[idx].iobase == 0 &&
1892 ports[idx].membase == NULL))
1893 for (idx = 0; idx < nr; idx++)
1894 if (ports[idx].iobase != 0 ||
1895 ports[idx].membase != NULL)
1896 break;
1897
1898 co->index = idx;
1899
1900 return ports + idx;
1901}
1902
1903/**
1904 * uart_parse_options - Parse serial port baud/parity/bits/flow contro.
1905 * @options: pointer to option string
1906 * @baud: pointer to an 'int' variable for the baud rate.
1907 * @parity: pointer to an 'int' variable for the parity.
1908 * @bits: pointer to an 'int' variable for the number of data bits.
1909 * @flow: pointer to an 'int' variable for the flow control character.
1910 *
1911 * uart_parse_options decodes a string containing the serial console
1912 * options. The format of the string is <baud><parity><bits><flow>,
1913 * eg: 115200n8r
1914 */
Jason Wesself2d937f2008-04-17 20:05:37 +02001915void
Linus Torvalds1da177e2005-04-16 15:20:36 -07001916uart_parse_options(char *options, int *baud, int *parity, int *bits, int *flow)
1917{
1918 char *s = options;
1919
1920 *baud = simple_strtoul(s, NULL, 10);
1921 while (*s >= '0' && *s <= '9')
1922 s++;
1923 if (*s)
1924 *parity = *s++;
1925 if (*s)
1926 *bits = *s++ - '0';
1927 if (*s)
1928 *flow = *s;
1929}
Jason Wesself2d937f2008-04-17 20:05:37 +02001930EXPORT_SYMBOL_GPL(uart_parse_options);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001931
1932struct baud_rates {
1933 unsigned int rate;
1934 unsigned int cflag;
1935};
1936
Arjan van de Vencb3592b2005-11-28 21:04:11 +00001937static const struct baud_rates baud_rates[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001938 { 921600, B921600 },
1939 { 460800, B460800 },
1940 { 230400, B230400 },
1941 { 115200, B115200 },
1942 { 57600, B57600 },
1943 { 38400, B38400 },
1944 { 19200, B19200 },
1945 { 9600, B9600 },
1946 { 4800, B4800 },
1947 { 2400, B2400 },
1948 { 1200, B1200 },
1949 { 0, B38400 }
1950};
1951
1952/**
1953 * uart_set_options - setup the serial console parameters
1954 * @port: pointer to the serial ports uart_port structure
1955 * @co: console pointer
1956 * @baud: baud rate
1957 * @parity: parity character - 'n' (none), 'o' (odd), 'e' (even)
1958 * @bits: number of data bits
1959 * @flow: flow control character - 'r' (rts)
1960 */
Jason Wesself2d937f2008-04-17 20:05:37 +02001961int
Linus Torvalds1da177e2005-04-16 15:20:36 -07001962uart_set_options(struct uart_port *port, struct console *co,
1963 int baud, int parity, int bits, int flow)
1964{
Alan Cox606d0992006-12-08 02:38:45 -08001965 struct ktermios termios;
Alan Cox149b36e2007-10-18 01:24:16 -07001966 static struct ktermios dummy;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001967 int i;
1968
Russell King976ecd12005-07-03 21:05:45 +01001969 /*
1970 * Ensure that the serial console lock is initialised
1971 * early.
1972 */
1973 spin_lock_init(&port->lock);
Ingo Molnar13e83592006-07-03 00:25:03 -07001974 lockdep_set_class(&port->lock, &port_lock_key);
Russell King976ecd12005-07-03 21:05:45 +01001975
Alan Cox606d0992006-12-08 02:38:45 -08001976 memset(&termios, 0, sizeof(struct ktermios));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001977
1978 termios.c_cflag = CREAD | HUPCL | CLOCAL;
1979
1980 /*
1981 * Construct a cflag setting.
1982 */
1983 for (i = 0; baud_rates[i].rate; i++)
1984 if (baud_rates[i].rate <= baud)
1985 break;
1986
1987 termios.c_cflag |= baud_rates[i].cflag;
1988
1989 if (bits == 7)
1990 termios.c_cflag |= CS7;
1991 else
1992 termios.c_cflag |= CS8;
1993
1994 switch (parity) {
1995 case 'o': case 'O':
1996 termios.c_cflag |= PARODD;
1997 /*fall through*/
1998 case 'e': case 'E':
1999 termios.c_cflag |= PARENB;
2000 break;
2001 }
2002
2003 if (flow == 'r')
2004 termios.c_cflag |= CRTSCTS;
2005
Yinghai Lu79492682007-07-15 23:37:25 -07002006 /*
2007 * some uarts on other side don't support no flow control.
2008 * So we set * DTR in host uart to make them happy
2009 */
2010 port->mctrl |= TIOCM_DTR;
2011
Alan Cox149b36e2007-10-18 01:24:16 -07002012 port->ops->set_termios(port, &termios, &dummy);
Jason Wesself2d937f2008-04-17 20:05:37 +02002013 /*
2014 * Allow the setting of the UART parameters with a NULL console
2015 * too:
2016 */
2017 if (co)
2018 co->cflag = termios.c_cflag;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002019
2020 return 0;
2021}
Jason Wesself2d937f2008-04-17 20:05:37 +02002022EXPORT_SYMBOL_GPL(uart_set_options);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002023#endif /* CONFIG_SERIAL_CORE_CONSOLE */
2024
2025static void uart_change_pm(struct uart_state *state, int pm_state)
2026{
Alan Coxebd2c8f2009-09-19 13:13:28 -07002027 struct uart_port *port = state->uart_port;
Andrew Victor1281e362006-05-16 11:28:49 +01002028
2029 if (state->pm_state != pm_state) {
2030 if (port->ops->pm)
2031 port->ops->pm(port, pm_state, state->pm_state);
2032 state->pm_state = pm_state;
2033 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002034}
2035
Guennadi Liakhovetskib3b708f2007-10-16 01:24:02 -07002036struct uart_match {
2037 struct uart_port *port;
2038 struct uart_driver *driver;
2039};
2040
2041static int serial_match_port(struct device *dev, void *data)
2042{
2043 struct uart_match *match = data;
Guennadi Liakhovetski7ca796f2008-07-04 09:59:28 -07002044 struct tty_driver *tty_drv = match->driver->tty_driver;
2045 dev_t devt = MKDEV(tty_drv->major, tty_drv->minor_start) +
2046 match->port->line;
Guennadi Liakhovetskib3b708f2007-10-16 01:24:02 -07002047
2048 return dev->devt == devt; /* Actually, only one tty per port */
2049}
2050
Alan Coxccce6de2009-09-19 13:13:30 -07002051int uart_suspend_port(struct uart_driver *drv, struct uart_port *uport)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002052{
Alan Coxccce6de2009-09-19 13:13:30 -07002053 struct uart_state *state = drv->state + uport->line;
2054 struct tty_port *port = &state->port;
Guennadi Liakhovetskib3b708f2007-10-16 01:24:02 -07002055 struct device *tty_dev;
Alan Coxccce6de2009-09-19 13:13:30 -07002056 struct uart_match match = {uport, drv};
Alan Cox19225132010-06-01 22:52:51 +02002057 struct tty_struct *tty;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002058
Alan Coxa2bceae2009-09-19 13:13:31 -07002059 mutex_lock(&port->mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002060
Alan Cox19225132010-06-01 22:52:51 +02002061 /* Must be inside the mutex lock until we convert to tty_port */
2062 tty = port->tty;
2063
Alan Coxccce6de2009-09-19 13:13:30 -07002064 tty_dev = device_find_child(uport->dev, &match, serial_match_port);
Guennadi Liakhovetskib3b708f2007-10-16 01:24:02 -07002065 if (device_may_wakeup(tty_dev)) {
Alan Coxccce6de2009-09-19 13:13:30 -07002066 enable_irq_wake(uport->irq);
Guennadi Liakhovetskib3b708f2007-10-16 01:24:02 -07002067 put_device(tty_dev);
Alan Coxa2bceae2009-09-19 13:13:31 -07002068 mutex_unlock(&port->mutex);
Guennadi Liakhovetskib3b708f2007-10-16 01:24:02 -07002069 return 0;
2070 }
Stanislav Brabec4547be72009-12-02 16:20:56 +01002071 if (console_suspend_enabled || !uart_console(uport))
2072 uport->suspended = 1;
Guennadi Liakhovetskib3b708f2007-10-16 01:24:02 -07002073
Alan Coxccce6de2009-09-19 13:13:30 -07002074 if (port->flags & ASYNC_INITIALIZED) {
2075 const struct uart_ops *ops = uport->ops;
Russell Kingc8c6bfa2008-02-04 22:27:52 -08002076 int tries;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002077
Stanislav Brabec4547be72009-12-02 16:20:56 +01002078 if (console_suspend_enabled || !uart_console(uport)) {
2079 set_bit(ASYNCB_SUSPENDED, &port->flags);
2080 clear_bit(ASYNCB_INITIALIZED, &port->flags);
Russell Kinga6b93a92006-10-01 17:17:40 +01002081
Stanislav Brabec4547be72009-12-02 16:20:56 +01002082 spin_lock_irq(&uport->lock);
2083 ops->stop_tx(uport);
2084 ops->set_mctrl(uport, 0);
2085 ops->stop_rx(uport);
2086 spin_unlock_irq(&uport->lock);
2087 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002088
2089 /*
2090 * Wait for the transmitter to empty.
2091 */
Alan Coxccce6de2009-09-19 13:13:30 -07002092 for (tries = 3; !ops->tx_empty(uport) && tries; tries--)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002093 msleep(10);
Russell Kingc8c6bfa2008-02-04 22:27:52 -08002094 if (!tries)
Alan Coxa46c9992008-02-08 04:18:53 -08002095 printk(KERN_ERR "%s%s%s%d: Unable to drain "
2096 "transmitter\n",
Alan Coxccce6de2009-09-19 13:13:30 -07002097 uport->dev ? dev_name(uport->dev) : "",
2098 uport->dev ? ": " : "",
David S. Miller84408382008-10-13 10:45:26 +01002099 drv->dev_name,
Alan Coxccce6de2009-09-19 13:13:30 -07002100 drv->tty_driver->name_base + uport->line);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002101
Stanislav Brabec4547be72009-12-02 16:20:56 +01002102 if (console_suspend_enabled || !uart_console(uport))
2103 ops->shutdown(uport);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002104 }
2105
2106 /*
2107 * Disable the console device before suspending.
2108 */
Stanislav Brabec4547be72009-12-02 16:20:56 +01002109 if (console_suspend_enabled && uart_console(uport))
Alan Coxccce6de2009-09-19 13:13:30 -07002110 console_stop(uport->cons);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002111
Stanislav Brabec4547be72009-12-02 16:20:56 +01002112 if (console_suspend_enabled || !uart_console(uport))
2113 uart_change_pm(state, 3);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002114
Alan Coxa2bceae2009-09-19 13:13:31 -07002115 mutex_unlock(&port->mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002116
2117 return 0;
2118}
2119
Alan Coxccce6de2009-09-19 13:13:30 -07002120int uart_resume_port(struct uart_driver *drv, struct uart_port *uport)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002121{
Alan Coxccce6de2009-09-19 13:13:30 -07002122 struct uart_state *state = drv->state + uport->line;
2123 struct tty_port *port = &state->port;
Arjan van de Ven03a74dc2008-05-23 13:04:49 -07002124 struct device *tty_dev;
Alan Coxccce6de2009-09-19 13:13:30 -07002125 struct uart_match match = {uport, drv};
Deepak Saxenaba15ab02009-09-19 13:13:33 -07002126 struct ktermios termios;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002127
Alan Coxa2bceae2009-09-19 13:13:31 -07002128 mutex_lock(&port->mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002129
Alan Coxccce6de2009-09-19 13:13:30 -07002130 tty_dev = device_find_child(uport->dev, &match, serial_match_port);
2131 if (!uport->suspended && device_may_wakeup(tty_dev)) {
2132 disable_irq_wake(uport->irq);
Alan Coxa2bceae2009-09-19 13:13:31 -07002133 mutex_unlock(&port->mutex);
Guennadi Liakhovetskib3b708f2007-10-16 01:24:02 -07002134 return 0;
2135 }
Alan Coxccce6de2009-09-19 13:13:30 -07002136 uport->suspended = 0;
Guennadi Liakhovetskib3b708f2007-10-16 01:24:02 -07002137
Linus Torvalds1da177e2005-04-16 15:20:36 -07002138 /*
2139 * Re-enable the console device after suspending.
2140 */
Alan Coxccce6de2009-09-19 13:13:30 -07002141 if (uart_console(uport)) {
Russell King9d778a62008-02-04 22:27:51 -08002142 uart_change_pm(state, 0);
Alan Coxccce6de2009-09-19 13:13:30 -07002143 uport->ops->set_termios(uport, &termios, NULL);
2144 console_start(uport->cons);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002145 }
2146
Alan Coxccce6de2009-09-19 13:13:30 -07002147 if (port->flags & ASYNC_SUSPENDED) {
2148 const struct uart_ops *ops = uport->ops;
Russell Kingee31b332005-11-13 15:28:51 +00002149 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002150
Russell King9d778a62008-02-04 22:27:51 -08002151 uart_change_pm(state, 0);
Alan Coxccce6de2009-09-19 13:13:30 -07002152 spin_lock_irq(&uport->lock);
2153 ops->set_mctrl(uport, 0);
2154 spin_unlock_irq(&uport->lock);
Stanislav Brabec4547be72009-12-02 16:20:56 +01002155 if (console_suspend_enabled || !uart_console(uport)) {
Alan Cox19225132010-06-01 22:52:51 +02002156 /* Protected by port mutex for now */
2157 struct tty_struct *tty = port->tty;
Stanislav Brabec4547be72009-12-02 16:20:56 +01002158 ret = ops->startup(uport);
2159 if (ret == 0) {
Alan Cox19225132010-06-01 22:52:51 +02002160 if (tty)
2161 uart_change_speed(tty, state, NULL);
Stanislav Brabec4547be72009-12-02 16:20:56 +01002162 spin_lock_irq(&uport->lock);
2163 ops->set_mctrl(uport, uport->mctrl);
2164 ops->start_tx(uport);
2165 spin_unlock_irq(&uport->lock);
2166 set_bit(ASYNCB_INITIALIZED, &port->flags);
2167 } else {
2168 /*
2169 * Failed to resume - maybe hardware went away?
2170 * Clear the "initialized" flag so we won't try
2171 * to call the low level drivers shutdown method.
2172 */
Alan Cox19225132010-06-01 22:52:51 +02002173 uart_shutdown(tty, state);
Stanislav Brabec4547be72009-12-02 16:20:56 +01002174 }
Russell Kingee31b332005-11-13 15:28:51 +00002175 }
Russell Kinga6b93a92006-10-01 17:17:40 +01002176
Alan Coxccce6de2009-09-19 13:13:30 -07002177 clear_bit(ASYNCB_SUSPENDED, &port->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002178 }
2179
Alan Coxa2bceae2009-09-19 13:13:31 -07002180 mutex_unlock(&port->mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002181
2182 return 0;
2183}
2184
2185static inline void
2186uart_report_port(struct uart_driver *drv, struct uart_port *port)
2187{
Russell King30b7a3b2005-09-03 15:30:21 +01002188 char address[64];
2189
Linus Torvalds1da177e2005-04-16 15:20:36 -07002190 switch (port->iotype) {
2191 case UPIO_PORT:
Andrew Morton9bde10a2008-10-13 10:35:42 +01002192 snprintf(address, sizeof(address), "I/O 0x%lx", port->iobase);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002193 break;
2194 case UPIO_HUB6:
Russell King30b7a3b2005-09-03 15:30:21 +01002195 snprintf(address, sizeof(address),
Andrew Morton9bde10a2008-10-13 10:35:42 +01002196 "I/O 0x%lx offset 0x%x", port->iobase, port->hub6);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002197 break;
2198 case UPIO_MEM:
2199 case UPIO_MEM32:
Pantelis Antoniou21c614a2005-11-06 09:07:03 +00002200 case UPIO_AU:
Zang Roy-r619113be91ec2006-06-30 02:29:58 -07002201 case UPIO_TSI:
Marc St-Jeanbeab6972007-05-06 14:48:45 -07002202 case UPIO_DWAPB:
Russell King30b7a3b2005-09-03 15:30:21 +01002203 snprintf(address, sizeof(address),
Josh Boyer4f640ef2007-07-23 18:43:44 -07002204 "MMIO 0x%llx", (unsigned long long)port->mapbase);
Russell King30b7a3b2005-09-03 15:30:21 +01002205 break;
2206 default:
2207 strlcpy(address, "*unknown*", sizeof(address));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002208 break;
2209 }
Russell King30b7a3b2005-09-03 15:30:21 +01002210
Russell King0cf669d2005-10-31 11:42:22 +00002211 printk(KERN_INFO "%s%s%s%d at %s (irq = %d) is a %s\n",
Kay Sievers4bfe0902009-01-06 10:44:37 -08002212 port->dev ? dev_name(port->dev) : "",
Russell King0cf669d2005-10-31 11:42:22 +00002213 port->dev ? ": " : "",
David S. Miller84408382008-10-13 10:45:26 +01002214 drv->dev_name,
2215 drv->tty_driver->name_base + port->line,
2216 address, port->irq, uart_type(port));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002217}
2218
2219static void
2220uart_configure_port(struct uart_driver *drv, struct uart_state *state,
2221 struct uart_port *port)
2222{
2223 unsigned int flags;
2224
2225 /*
2226 * If there isn't a port here, don't do anything further.
2227 */
2228 if (!port->iobase && !port->mapbase && !port->membase)
2229 return;
2230
2231 /*
2232 * Now do the auto configuration stuff. Note that config_port
2233 * is expected to claim the resources and map the port for us.
2234 */
David Daney8e23fcc2009-01-02 13:49:54 +00002235 flags = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002236 if (port->flags & UPF_AUTO_IRQ)
2237 flags |= UART_CONFIG_IRQ;
2238 if (port->flags & UPF_BOOT_AUTOCONF) {
David Daney8e23fcc2009-01-02 13:49:54 +00002239 if (!(port->flags & UPF_FIXED_TYPE)) {
2240 port->type = PORT_UNKNOWN;
2241 flags |= UART_CONFIG_TYPE;
2242 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002243 port->ops->config_port(port, flags);
2244 }
2245
2246 if (port->type != PORT_UNKNOWN) {
2247 unsigned long flags;
2248
2249 uart_report_port(drv, port);
2250
George G. Davis3689a0e2007-02-14 00:33:06 -08002251 /* Power up port for set_mctrl() */
2252 uart_change_pm(state, 0);
2253
Linus Torvalds1da177e2005-04-16 15:20:36 -07002254 /*
2255 * Ensure that the modem control lines are de-activated.
Yinghai Luc3e46422008-02-04 22:27:46 -08002256 * keep the DTR setting that is set in uart_set_options()
Linus Torvalds1da177e2005-04-16 15:20:36 -07002257 * We probably don't need a spinlock around this, but
2258 */
2259 spin_lock_irqsave(&port->lock, flags);
Yinghai Luc3e46422008-02-04 22:27:46 -08002260 port->ops->set_mctrl(port, port->mctrl & TIOCM_DTR);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002261 spin_unlock_irqrestore(&port->lock, flags);
2262
2263 /*
Russell King97d97222007-09-01 21:25:09 +01002264 * If this driver supports console, and it hasn't been
2265 * successfully registered yet, try to re-register it.
2266 * It may be that the port was not available.
2267 */
2268 if (port->cons && !(port->cons->flags & CON_ENABLED))
2269 register_console(port->cons);
2270
2271 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002272 * Power down all ports by default, except the
2273 * console if we have one.
2274 */
2275 if (!uart_console(port))
2276 uart_change_pm(state, 3);
2277 }
2278}
2279
Jason Wesself2d937f2008-04-17 20:05:37 +02002280#ifdef CONFIG_CONSOLE_POLL
2281
2282static int uart_poll_init(struct tty_driver *driver, int line, char *options)
2283{
2284 struct uart_driver *drv = driver->driver_state;
2285 struct uart_state *state = drv->state + line;
2286 struct uart_port *port;
2287 int baud = 9600;
2288 int bits = 8;
2289 int parity = 'n';
2290 int flow = 'n';
2291
Alan Coxebd2c8f2009-09-19 13:13:28 -07002292 if (!state || !state->uart_port)
Jason Wesself2d937f2008-04-17 20:05:37 +02002293 return -1;
2294
Alan Coxebd2c8f2009-09-19 13:13:28 -07002295 port = state->uart_port;
Jason Wesself2d937f2008-04-17 20:05:37 +02002296 if (!(port->ops->poll_get_char && port->ops->poll_put_char))
2297 return -1;
2298
2299 if (options) {
2300 uart_parse_options(options, &baud, &parity, &bits, &flow);
2301 return uart_set_options(port, NULL, baud, parity, bits, flow);
2302 }
2303
2304 return 0;
2305}
2306
2307static int uart_poll_get_char(struct tty_driver *driver, int line)
2308{
2309 struct uart_driver *drv = driver->driver_state;
2310 struct uart_state *state = drv->state + line;
2311 struct uart_port *port;
2312
Alan Coxebd2c8f2009-09-19 13:13:28 -07002313 if (!state || !state->uart_port)
Jason Wesself2d937f2008-04-17 20:05:37 +02002314 return -1;
2315
Alan Coxebd2c8f2009-09-19 13:13:28 -07002316 port = state->uart_port;
Jason Wesself2d937f2008-04-17 20:05:37 +02002317 return port->ops->poll_get_char(port);
2318}
2319
2320static void uart_poll_put_char(struct tty_driver *driver, int line, char ch)
2321{
2322 struct uart_driver *drv = driver->driver_state;
2323 struct uart_state *state = drv->state + line;
2324 struct uart_port *port;
2325
Alan Coxebd2c8f2009-09-19 13:13:28 -07002326 if (!state || !state->uart_port)
Jason Wesself2d937f2008-04-17 20:05:37 +02002327 return;
2328
Alan Coxebd2c8f2009-09-19 13:13:28 -07002329 port = state->uart_port;
Jason Wesself2d937f2008-04-17 20:05:37 +02002330 port->ops->poll_put_char(port, ch);
2331}
2332#endif
2333
Jeff Dikeb68e31d2006-10-02 02:17:18 -07002334static const struct tty_operations uart_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002335 .open = uart_open,
2336 .close = uart_close,
2337 .write = uart_write,
2338 .put_char = uart_put_char,
2339 .flush_chars = uart_flush_chars,
2340 .write_room = uart_write_room,
2341 .chars_in_buffer= uart_chars_in_buffer,
2342 .flush_buffer = uart_flush_buffer,
2343 .ioctl = uart_ioctl,
2344 .throttle = uart_throttle,
2345 .unthrottle = uart_unthrottle,
2346 .send_xchar = uart_send_xchar,
2347 .set_termios = uart_set_termios,
Alan Cox64e91592008-06-03 15:18:54 +01002348 .set_ldisc = uart_set_ldisc,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002349 .stop = uart_stop,
2350 .start = uart_start,
2351 .hangup = uart_hangup,
2352 .break_ctl = uart_break_ctl,
2353 .wait_until_sent= uart_wait_until_sent,
2354#ifdef CONFIG_PROC_FS
Alexey Dobriyand196a942009-03-31 15:19:21 -07002355 .proc_fops = &uart_proc_fops,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002356#endif
2357 .tiocmget = uart_tiocmget,
2358 .tiocmset = uart_tiocmset,
Jason Wesself2d937f2008-04-17 20:05:37 +02002359#ifdef CONFIG_CONSOLE_POLL
2360 .poll_init = uart_poll_init,
2361 .poll_get_char = uart_poll_get_char,
2362 .poll_put_char = uart_poll_put_char,
2363#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002364};
2365
Alan Coxde0c8cb2010-06-01 22:52:58 +02002366static const struct tty_port_operations uart_port_ops = {
2367 .carrier_raised = uart_carrier_raised,
2368 .dtr_rts = uart_dtr_rts,
2369};
2370
Linus Torvalds1da177e2005-04-16 15:20:36 -07002371/**
2372 * uart_register_driver - register a driver with the uart core layer
2373 * @drv: low level driver structure
2374 *
2375 * Register a uart driver with the core driver. We in turn register
2376 * with the tty layer, and initialise the core driver per-port state.
2377 *
2378 * We have a proc file in /proc/tty/driver which is named after the
2379 * normal driver.
2380 *
2381 * drv->port should be NULL, and the per-port structures should be
2382 * registered using uart_add_one_port after this call has succeeded.
2383 */
2384int uart_register_driver(struct uart_driver *drv)
2385{
André Goddard Rosa9e845ab2009-10-25 11:16:32 -02002386 struct tty_driver *normal;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002387 int i, retval;
2388
2389 BUG_ON(drv->state);
2390
2391 /*
2392 * Maybe we should be using a slab cache for this, especially if
2393 * we have a large number of ports to handle.
2394 */
Burman Yan8f31bb32007-02-14 00:33:07 -08002395 drv->state = kzalloc(sizeof(struct uart_state) * drv->nr, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002396 if (!drv->state)
2397 goto out;
2398
André Goddard Rosa9e845ab2009-10-25 11:16:32 -02002399 normal = alloc_tty_driver(drv->nr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002400 if (!normal)
André Goddard Rosa9e845ab2009-10-25 11:16:32 -02002401 goto out_kfree;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002402
2403 drv->tty_driver = normal;
2404
2405 normal->owner = drv->owner;
2406 normal->driver_name = drv->driver_name;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002407 normal->name = drv->dev_name;
2408 normal->major = drv->major;
2409 normal->minor_start = drv->minor;
2410 normal->type = TTY_DRIVER_TYPE_SERIAL;
2411 normal->subtype = SERIAL_TYPE_NORMAL;
2412 normal->init_termios = tty_std_termios;
2413 normal->init_termios.c_cflag = B9600 | CS8 | CREAD | HUPCL | CLOCAL;
Alan Cox606d0992006-12-08 02:38:45 -08002414 normal->init_termios.c_ispeed = normal->init_termios.c_ospeed = 9600;
Greg Kroah-Hartman331b8312005-06-20 21:15:16 -07002415 normal->flags = TTY_DRIVER_REAL_RAW | TTY_DRIVER_DYNAMIC_DEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002416 normal->driver_state = drv;
2417 tty_set_operations(normal, &uart_ops);
2418
2419 /*
2420 * Initialise the UART state(s).
2421 */
2422 for (i = 0; i < drv->nr; i++) {
2423 struct uart_state *state = drv->state + i;
Alan Coxa2bceae2009-09-19 13:13:31 -07002424 struct tty_port *port = &state->port;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002425
Alan Coxa2bceae2009-09-19 13:13:31 -07002426 tty_port_init(port);
Alan Coxde0c8cb2010-06-01 22:52:58 +02002427 port->ops = &uart_port_ops;
Alan Coxa2bceae2009-09-19 13:13:31 -07002428 port->close_delay = 500; /* .5 seconds */
2429 port->closing_wait = 30000; /* 30 seconds */
Alan Coxebd2c8f2009-09-19 13:13:28 -07002430 tasklet_init(&state->tlet, uart_tasklet_action,
Alan Coxf7519282009-01-02 13:49:21 +00002431 (unsigned long)state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002432 }
2433
2434 retval = tty_register_driver(normal);
André Goddard Rosa9e845ab2009-10-25 11:16:32 -02002435 if (retval >= 0)
2436 return retval;
2437
2438 put_tty_driver(normal);
2439out_kfree:
2440 kfree(drv->state);
2441out:
2442 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002443}
2444
2445/**
2446 * uart_unregister_driver - remove a driver from the uart core layer
2447 * @drv: low level driver structure
2448 *
2449 * Remove all references to a driver from the core driver. The low
2450 * level driver must have removed all its ports via the
2451 * uart_remove_one_port() if it registered them with uart_add_one_port().
2452 * (ie, drv->port == NULL)
2453 */
2454void uart_unregister_driver(struct uart_driver *drv)
2455{
2456 struct tty_driver *p = drv->tty_driver;
2457 tty_unregister_driver(p);
2458 put_tty_driver(p);
2459 kfree(drv->state);
2460 drv->tty_driver = NULL;
2461}
2462
2463struct tty_driver *uart_console_device(struct console *co, int *index)
2464{
2465 struct uart_driver *p = co->data;
2466 *index = co->index;
2467 return p->tty_driver;
2468}
2469
2470/**
2471 * uart_add_one_port - attach a driver-defined port structure
2472 * @drv: pointer to the uart low level driver structure for this port
Randy Dunlap1b9894f2009-09-21 11:12:03 -07002473 * @uport: uart port structure to use for this port.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002474 *
2475 * This allows the driver to register its own uart_port structure
2476 * with the core driver. The main purpose is to allow the low
2477 * level uart drivers to expand uart_port, rather than having yet
2478 * more levels of structures.
2479 */
Alan Coxa2bceae2009-09-19 13:13:31 -07002480int uart_add_one_port(struct uart_driver *drv, struct uart_port *uport)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002481{
2482 struct uart_state *state;
Alan Coxa2bceae2009-09-19 13:13:31 -07002483 struct tty_port *port;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002484 int ret = 0;
Guennadi Liakhovetskib3b708f2007-10-16 01:24:02 -07002485 struct device *tty_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002486
2487 BUG_ON(in_interrupt());
2488
Alan Coxa2bceae2009-09-19 13:13:31 -07002489 if (uport->line >= drv->nr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002490 return -EINVAL;
2491
Alan Coxa2bceae2009-09-19 13:13:31 -07002492 state = drv->state + uport->line;
2493 port = &state->port;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002494
Arjan van de Venf392ecf2006-01-12 18:44:32 +00002495 mutex_lock(&port_mutex);
Alan Coxa2bceae2009-09-19 13:13:31 -07002496 mutex_lock(&port->mutex);
Alan Coxebd2c8f2009-09-19 13:13:28 -07002497 if (state->uart_port) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002498 ret = -EINVAL;
2499 goto out;
2500 }
2501
Alan Coxa2bceae2009-09-19 13:13:31 -07002502 state->uart_port = uport;
Russell King97d97222007-09-01 21:25:09 +01002503 state->pm_state = -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002504
Alan Coxa2bceae2009-09-19 13:13:31 -07002505 uport->cons = drv->cons;
2506 uport->state = state;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002507
Russell King976ecd12005-07-03 21:05:45 +01002508 /*
2509 * If this port is a console, then the spinlock is already
2510 * initialised.
2511 */
Alan Coxa2bceae2009-09-19 13:13:31 -07002512 if (!(uart_console(uport) && (uport->cons->flags & CON_ENABLED))) {
2513 spin_lock_init(&uport->lock);
2514 lockdep_set_class(&uport->lock, &port_lock_key);
Ingo Molnar13e83592006-07-03 00:25:03 -07002515 }
Russell King976ecd12005-07-03 21:05:45 +01002516
Alan Coxa2bceae2009-09-19 13:13:31 -07002517 uart_configure_port(drv, state, uport);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002518
2519 /*
2520 * Register the port whether it's detected or not. This allows
2521 * setserial to be used to alter this ports parameters.
2522 */
Alan Coxa2bceae2009-09-19 13:13:31 -07002523 tty_dev = tty_register_device(drv->tty_driver, uport->line, uport->dev);
Guennadi Liakhovetskib3b708f2007-10-16 01:24:02 -07002524 if (likely(!IS_ERR(tty_dev))) {
Alan Stern74081f82008-03-19 22:35:13 +01002525 device_init_wakeup(tty_dev, 1);
Guennadi Liakhovetskib3b708f2007-10-16 01:24:02 -07002526 device_set_wakeup_enable(tty_dev, 0);
2527 } else
2528 printk(KERN_ERR "Cannot register tty device on line %d\n",
Alan Coxa2bceae2009-09-19 13:13:31 -07002529 uport->line);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002530
2531 /*
Russell King68ac64c2006-04-30 11:13:50 +01002532 * Ensure UPF_DEAD is not set.
2533 */
Alan Coxa2bceae2009-09-19 13:13:31 -07002534 uport->flags &= ~UPF_DEAD;
Russell King68ac64c2006-04-30 11:13:50 +01002535
Linus Torvalds1da177e2005-04-16 15:20:36 -07002536 out:
Alan Coxa2bceae2009-09-19 13:13:31 -07002537 mutex_unlock(&port->mutex);
Arjan van de Venf392ecf2006-01-12 18:44:32 +00002538 mutex_unlock(&port_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002539
2540 return ret;
2541}
2542
2543/**
2544 * uart_remove_one_port - detach a driver defined port structure
2545 * @drv: pointer to the uart low level driver structure for this port
Randy Dunlap1b9894f2009-09-21 11:12:03 -07002546 * @uport: uart port structure for this port
Linus Torvalds1da177e2005-04-16 15:20:36 -07002547 *
2548 * This unhooks (and hangs up) the specified port structure from the
2549 * core driver. No further calls will be made to the low-level code
2550 * for this port.
2551 */
Alan Coxa2bceae2009-09-19 13:13:31 -07002552int uart_remove_one_port(struct uart_driver *drv, struct uart_port *uport)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002553{
Alan Coxa2bceae2009-09-19 13:13:31 -07002554 struct uart_state *state = drv->state + uport->line;
2555 struct tty_port *port = &state->port;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002556
2557 BUG_ON(in_interrupt());
2558
Alan Coxa2bceae2009-09-19 13:13:31 -07002559 if (state->uart_port != uport)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002560 printk(KERN_ALERT "Removing wrong port: %p != %p\n",
Alan Coxa2bceae2009-09-19 13:13:31 -07002561 state->uart_port, uport);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002562
Arjan van de Venf392ecf2006-01-12 18:44:32 +00002563 mutex_lock(&port_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002564
2565 /*
Russell King68ac64c2006-04-30 11:13:50 +01002566 * Mark the port "dead" - this prevents any opens from
2567 * succeeding while we shut down the port.
2568 */
Alan Coxa2bceae2009-09-19 13:13:31 -07002569 mutex_lock(&port->mutex);
2570 uport->flags |= UPF_DEAD;
2571 mutex_unlock(&port->mutex);
Russell King68ac64c2006-04-30 11:13:50 +01002572
2573 /*
Greg Kroah-Hartmanaa4148c2005-06-20 21:15:16 -07002574 * Remove the devices from the tty layer
Linus Torvalds1da177e2005-04-16 15:20:36 -07002575 */
Alan Coxa2bceae2009-09-19 13:13:31 -07002576 tty_unregister_device(drv->tty_driver, uport->line);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002577
Alan Coxa2bceae2009-09-19 13:13:31 -07002578 if (port->tty)
2579 tty_vhangup(port->tty);
Russell King68ac64c2006-04-30 11:13:50 +01002580
2581 /*
Russell King68ac64c2006-04-30 11:13:50 +01002582 * Free the port IO and memory resources, if any.
2583 */
Alan Coxa2bceae2009-09-19 13:13:31 -07002584 if (uport->type != PORT_UNKNOWN)
2585 uport->ops->release_port(uport);
Russell King68ac64c2006-04-30 11:13:50 +01002586
2587 /*
2588 * Indicate that there isn't a port here anymore.
2589 */
Alan Coxa2bceae2009-09-19 13:13:31 -07002590 uport->type = PORT_UNKNOWN;
Russell King68ac64c2006-04-30 11:13:50 +01002591
2592 /*
2593 * Kill the tasklet, and free resources.
2594 */
Alan Coxebd2c8f2009-09-19 13:13:28 -07002595 tasklet_kill(&state->tlet);
Russell King68ac64c2006-04-30 11:13:50 +01002596
Alan Coxebd2c8f2009-09-19 13:13:28 -07002597 state->uart_port = NULL;
Arjan van de Venf392ecf2006-01-12 18:44:32 +00002598 mutex_unlock(&port_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002599
2600 return 0;
2601}
2602
2603/*
2604 * Are the two ports equivalent?
2605 */
2606int uart_match_port(struct uart_port *port1, struct uart_port *port2)
2607{
2608 if (port1->iotype != port2->iotype)
2609 return 0;
2610
2611 switch (port1->iotype) {
2612 case UPIO_PORT:
2613 return (port1->iobase == port2->iobase);
2614 case UPIO_HUB6:
2615 return (port1->iobase == port2->iobase) &&
2616 (port1->hub6 == port2->hub6);
2617 case UPIO_MEM:
Sergei Shtylyovd21b55d2006-08-28 19:49:03 +04002618 case UPIO_MEM32:
2619 case UPIO_AU:
2620 case UPIO_TSI:
Marc St-Jeanbeab6972007-05-06 14:48:45 -07002621 case UPIO_DWAPB:
Benjamin Herrenschmidt1624f002006-01-04 18:09:44 +00002622 return (port1->mapbase == port2->mapbase);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002623 }
2624 return 0;
2625}
2626EXPORT_SYMBOL(uart_match_port);
2627
Linus Torvalds1da177e2005-04-16 15:20:36 -07002628EXPORT_SYMBOL(uart_write_wakeup);
2629EXPORT_SYMBOL(uart_register_driver);
2630EXPORT_SYMBOL(uart_unregister_driver);
2631EXPORT_SYMBOL(uart_suspend_port);
2632EXPORT_SYMBOL(uart_resume_port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002633EXPORT_SYMBOL(uart_add_one_port);
2634EXPORT_SYMBOL(uart_remove_one_port);
2635
2636MODULE_DESCRIPTION("Serial driver core");
2637MODULE_LICENSE("GPL");