blob: 4af3364dd811ff70c1637657655b82fc11837b3f [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/serial_core.h>
33#include <linux/smp_lock.h>
34#include <linux/device.h>
35#include <linux/serial.h> /* for serial_state and serial_icounter_struct */
36#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
Alan Cox91312cd2009-09-19 13:13:29 -070055#define uart_users(state) ((state)->port.count + (state)->port.blocked_open)
Linus Torvalds1da177e2005-04-16 15:20:36 -070056
57#ifdef CONFIG_SERIAL_CORE_CONSOLE
58#define uart_console(port) ((port)->cons && (port)->cons->index == (port)->line)
59#else
60#define uart_console(port) (0)
61#endif
62
Alan Coxa46c9992008-02-08 04:18:53 -080063static void uart_change_speed(struct uart_state *state,
64 struct ktermios *old_termios);
Linus Torvalds1da177e2005-04-16 15:20:36 -070065static void uart_wait_until_sent(struct tty_struct *tty, int timeout);
66static void uart_change_pm(struct uart_state *state, int pm_state);
67
68/*
69 * This routine is used by the interrupt handler to schedule processing in
70 * the software interrupt portion of the driver.
71 */
72void uart_write_wakeup(struct uart_port *port)
73{
Alan Coxebd2c8f2009-09-19 13:13:28 -070074 struct uart_state *state = port->state;
Pavel Machekd5f735e2006-03-07 21:55:20 -080075 /*
76 * This means you called this function _after_ the port was
77 * closed. No cookie for you.
78 */
Alan Coxebd2c8f2009-09-19 13:13:28 -070079 BUG_ON(!state);
80 tasklet_schedule(&state->tlet);
Linus Torvalds1da177e2005-04-16 15:20:36 -070081}
82
83static void uart_stop(struct tty_struct *tty)
84{
85 struct uart_state *state = tty->driver_data;
Alan Coxebd2c8f2009-09-19 13:13:28 -070086 struct uart_port *port = state->uart_port;
Linus Torvalds1da177e2005-04-16 15:20:36 -070087 unsigned long flags;
88
89 spin_lock_irqsave(&port->lock, flags);
Russell Kingb129a8c2005-08-31 10:12:14 +010090 port->ops->stop_tx(port);
Linus Torvalds1da177e2005-04-16 15:20:36 -070091 spin_unlock_irqrestore(&port->lock, flags);
92}
93
94static void __uart_start(struct tty_struct *tty)
95{
96 struct uart_state *state = tty->driver_data;
Alan Coxebd2c8f2009-09-19 13:13:28 -070097 struct uart_port *port = state->uart_port;
Linus Torvalds1da177e2005-04-16 15:20:36 -070098
Alan Coxebd2c8f2009-09-19 13:13:28 -070099 if (!uart_circ_empty(&state->xmit) && state->xmit.buf &&
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100 !tty->stopped && !tty->hw_stopped)
Russell Kingb129a8c2005-08-31 10:12:14 +0100101 port->ops->start_tx(port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102}
103
104static void uart_start(struct tty_struct *tty)
105{
106 struct uart_state *state = tty->driver_data;
Alan Coxebd2c8f2009-09-19 13:13:28 -0700107 struct uart_port *port = state->uart_port;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108 unsigned long flags;
109
110 spin_lock_irqsave(&port->lock, flags);
111 __uart_start(tty);
112 spin_unlock_irqrestore(&port->lock, flags);
113}
114
115static void uart_tasklet_action(unsigned long data)
116{
117 struct uart_state *state = (struct uart_state *)data;
Alan Coxebd2c8f2009-09-19 13:13:28 -0700118 tty_wakeup(state->port.tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119}
120
121static inline void
122uart_update_mctrl(struct uart_port *port, unsigned int set, unsigned int clear)
123{
124 unsigned long flags;
125 unsigned int old;
126
127 spin_lock_irqsave(&port->lock, flags);
128 old = port->mctrl;
129 port->mctrl = (old & ~clear) | set;
130 if (old != port->mctrl)
131 port->ops->set_mctrl(port, port->mctrl);
132 spin_unlock_irqrestore(&port->lock, flags);
133}
134
Alan Coxa46c9992008-02-08 04:18:53 -0800135#define uart_set_mctrl(port, set) uart_update_mctrl(port, set, 0)
136#define uart_clear_mctrl(port, clear) uart_update_mctrl(port, 0, clear)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137
138/*
139 * Startup the port. This will be called once per open. All calls
Alan Coxdf4f4dd2008-07-16 21:53:50 +0100140 * will be serialised by the per-port mutex.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141 */
142static int uart_startup(struct uart_state *state, int init_hw)
143{
Alan Cox46d57a42009-09-19 13:13:29 -0700144 struct uart_port *uport = state->uart_port;
145 struct tty_port *port = &state->port;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146 unsigned long page;
147 int retval = 0;
148
Alan Coxebd2c8f2009-09-19 13:13:28 -0700149 if (state->flags & UIF_INITIALIZED)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150 return 0;
151
152 /*
153 * Set the TTY IO error marker - we will only clear this
154 * once we have successfully opened the port. Also set
155 * up the tty->alt_speed kludge
156 */
Alan Cox46d57a42009-09-19 13:13:29 -0700157 set_bit(TTY_IO_ERROR, &port->tty->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158
Alan Cox46d57a42009-09-19 13:13:29 -0700159 if (uport->type == PORT_UNKNOWN)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160 return 0;
161
162 /*
163 * Initialise and allocate the transmit and temporary
164 * buffer.
165 */
Alan Coxebd2c8f2009-09-19 13:13:28 -0700166 if (!state->xmit.buf) {
Alan Coxdf4f4dd2008-07-16 21:53:50 +0100167 /* This is protected by the per port mutex */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168 page = get_zeroed_page(GFP_KERNEL);
169 if (!page)
170 return -ENOMEM;
171
Alan Coxebd2c8f2009-09-19 13:13:28 -0700172 state->xmit.buf = (unsigned char *) page;
173 uart_circ_clear(&state->xmit);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174 }
175
Alan Cox46d57a42009-09-19 13:13:29 -0700176 retval = uport->ops->startup(uport);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177 if (retval == 0) {
178 if (init_hw) {
179 /*
180 * Initialise the hardware port settings.
181 */
182 uart_change_speed(state, NULL);
183
184 /*
185 * Setup the RTS and DTR signals once the
186 * port is open and ready to respond.
187 */
Alan Cox46d57a42009-09-19 13:13:29 -0700188 if (port->tty->termios->c_cflag & CBAUD)
189 uart_set_mctrl(uport, TIOCM_RTS | TIOCM_DTR);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190 }
191
Alan Coxebd2c8f2009-09-19 13:13:28 -0700192 if (state->flags & UIF_CTS_FLOW) {
Alan Cox46d57a42009-09-19 13:13:29 -0700193 spin_lock_irq(&uport->lock);
194 if (!(uport->ops->get_mctrl(uport) & TIOCM_CTS))
195 port->tty->hw_stopped = 1;
196 spin_unlock_irq(&uport->lock);
Russell King0dd7a1a2005-06-29 18:40:53 +0100197 }
198
Alan Coxebd2c8f2009-09-19 13:13:28 -0700199 state->flags |= UIF_INITIALIZED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200
Alan Cox46d57a42009-09-19 13:13:29 -0700201 clear_bit(TTY_IO_ERROR, &port->tty->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202 }
203
204 if (retval && capable(CAP_SYS_ADMIN))
205 retval = 0;
206
207 return retval;
208}
209
210/*
211 * This routine will shutdown a serial port; interrupts are disabled, and
212 * DTR is dropped if the hangup on close termio flag is on. Calls to
213 * uart_shutdown are serialised by the per-port semaphore.
214 */
215static void uart_shutdown(struct uart_state *state)
216{
Alan Coxebd2c8f2009-09-19 13:13:28 -0700217 struct uart_port *port = state->uart_port;
218 struct tty_struct *tty = state->port.tty;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219
Russell Kingee31b332005-11-13 15:28:51 +0000220 /*
221 * Set the TTY IO error marker
222 */
Alan Coxf7519282009-01-02 13:49:21 +0000223 if (tty)
224 set_bit(TTY_IO_ERROR, &tty->flags);
Russell Kingee31b332005-11-13 15:28:51 +0000225
Alan Coxebd2c8f2009-09-19 13:13:28 -0700226 if (state->flags & UIF_INITIALIZED) {
227 state->flags &= ~UIF_INITIALIZED;
Russell Kingee31b332005-11-13 15:28:51 +0000228
229 /*
230 * Turn off DTR and RTS early.
231 */
Alan Coxf7519282009-01-02 13:49:21 +0000232 if (!tty || (tty->termios->c_cflag & HUPCL))
Russell Kingee31b332005-11-13 15:28:51 +0000233 uart_clear_mctrl(port, TIOCM_DTR | TIOCM_RTS);
234
235 /*
236 * clear delta_msr_wait queue to avoid mem leaks: we may free
237 * the irq here so the queue might never be woken up. Note
238 * that we won't end up waiting on delta_msr_wait again since
239 * any outstanding file descriptors should be pointing at
240 * hung_up_tty_fops now.
241 */
Alan Coxebd2c8f2009-09-19 13:13:28 -0700242 wake_up_interruptible(&state->delta_msr_wait);
Russell Kingee31b332005-11-13 15:28:51 +0000243
244 /*
245 * Free the IRQ and disable the port.
246 */
247 port->ops->shutdown(port);
248
249 /*
250 * Ensure that the IRQ handler isn't running on another CPU.
251 */
252 synchronize_irq(port->irq);
253 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254
255 /*
Russell Kingee31b332005-11-13 15:28:51 +0000256 * kill off our tasklet
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257 */
Alan Coxebd2c8f2009-09-19 13:13:28 -0700258 tasklet_kill(&state->tlet);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259
260 /*
261 * Free the transmit buffer page.
262 */
Alan Coxebd2c8f2009-09-19 13:13:28 -0700263 if (state->xmit.buf) {
264 free_page((unsigned long)state->xmit.buf);
265 state->xmit.buf = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267}
268
269/**
270 * uart_update_timeout - update per-port FIFO timeout.
271 * @port: uart_port structure describing the port
272 * @cflag: termios cflag value
273 * @baud: speed of the port
274 *
275 * Set the port FIFO timeout value. The @cflag value should
276 * reflect the actual hardware settings.
277 */
278void
279uart_update_timeout(struct uart_port *port, unsigned int cflag,
280 unsigned int baud)
281{
282 unsigned int bits;
283
284 /* byte size and parity */
285 switch (cflag & CSIZE) {
286 case CS5:
287 bits = 7;
288 break;
289 case CS6:
290 bits = 8;
291 break;
292 case CS7:
293 bits = 9;
294 break;
295 default:
296 bits = 10;
Alan Coxa46c9992008-02-08 04:18:53 -0800297 break; /* CS8 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700298 }
299
300 if (cflag & CSTOPB)
301 bits++;
302 if (cflag & PARENB)
303 bits++;
304
305 /*
306 * The total number of bits to be transmitted in the fifo.
307 */
308 bits = bits * port->fifosize;
309
310 /*
311 * Figure the timeout to send the above number of bits.
312 * Add .02 seconds of slop
313 */
314 port->timeout = (HZ * bits) / baud + HZ/50;
315}
316
317EXPORT_SYMBOL(uart_update_timeout);
318
319/**
320 * uart_get_baud_rate - return baud rate for a particular port
321 * @port: uart_port structure describing the port in question.
322 * @termios: desired termios settings.
323 * @old: old termios (or NULL)
324 * @min: minimum acceptable baud rate
325 * @max: maximum acceptable baud rate
326 *
327 * Decode the termios structure into a numeric baud rate,
328 * taking account of the magic 38400 baud rate (with spd_*
329 * flags), and mapping the %B0 rate to 9600 baud.
330 *
331 * If the new baud rate is invalid, try the old termios setting.
332 * If it's still invalid, we try 9600 baud.
333 *
334 * Update the @termios structure to reflect the baud rate
Alan Coxeb424fd2008-04-28 02:14:07 -0700335 * we're actually going to be using. Don't do this for the case
336 * where B0 is requested ("hang up").
Linus Torvalds1da177e2005-04-16 15:20:36 -0700337 */
338unsigned int
Alan Cox606d0992006-12-08 02:38:45 -0800339uart_get_baud_rate(struct uart_port *port, struct ktermios *termios,
340 struct ktermios *old, unsigned int min, unsigned int max)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341{
342 unsigned int try, baud, altbaud = 38400;
Alan Coxeb424fd2008-04-28 02:14:07 -0700343 int hung_up = 0;
Russell King0077d452006-01-21 23:03:28 +0000344 upf_t flags = port->flags & UPF_SPD_MASK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700345
346 if (flags == UPF_SPD_HI)
347 altbaud = 57600;
348 if (flags == UPF_SPD_VHI)
349 altbaud = 115200;
350 if (flags == UPF_SPD_SHI)
351 altbaud = 230400;
352 if (flags == UPF_SPD_WARP)
353 altbaud = 460800;
354
355 for (try = 0; try < 2; try++) {
356 baud = tty_termios_baud_rate(termios);
357
358 /*
359 * The spd_hi, spd_vhi, spd_shi, spd_warp kludge...
360 * Die! Die! Die!
361 */
362 if (baud == 38400)
363 baud = altbaud;
364
365 /*
366 * Special case: B0 rate.
367 */
Alan Coxeb424fd2008-04-28 02:14:07 -0700368 if (baud == 0) {
369 hung_up = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700370 baud = 9600;
Alan Coxeb424fd2008-04-28 02:14:07 -0700371 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700372
373 if (baud >= min && baud <= max)
374 return baud;
375
376 /*
377 * Oops, the quotient was zero. Try again with
378 * the old baud rate if possible.
379 */
380 termios->c_cflag &= ~CBAUD;
381 if (old) {
Alan Cox6d4d67b2008-02-04 22:27:53 -0800382 baud = tty_termios_baud_rate(old);
Alan Coxeb424fd2008-04-28 02:14:07 -0700383 if (!hung_up)
384 tty_termios_encode_baud_rate(termios,
385 baud, baud);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700386 old = NULL;
387 continue;
388 }
389
390 /*
391 * As a last resort, if the quotient is zero,
392 * default to 9600 bps
393 */
Alan Coxeb424fd2008-04-28 02:14:07 -0700394 if (!hung_up)
395 tty_termios_encode_baud_rate(termios, 9600, 9600);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396 }
397
398 return 0;
399}
400
401EXPORT_SYMBOL(uart_get_baud_rate);
402
403/**
404 * uart_get_divisor - return uart clock divisor
405 * @port: uart_port structure describing the port.
406 * @baud: desired baud rate
407 *
408 * Calculate the uart clock divisor for the port.
409 */
410unsigned int
411uart_get_divisor(struct uart_port *port, unsigned int baud)
412{
413 unsigned int quot;
414
415 /*
416 * Old custom speed handling.
417 */
418 if (baud == 38400 && (port->flags & UPF_SPD_MASK) == UPF_SPD_CUST)
419 quot = port->custom_divisor;
420 else
421 quot = (port->uartclk + (8 * baud)) / (16 * baud);
422
423 return quot;
424}
425
426EXPORT_SYMBOL(uart_get_divisor);
427
Alan Cox23d22ce2008-04-30 00:54:11 -0700428/* FIXME: Consistent locking policy */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700429static void
Alan Cox606d0992006-12-08 02:38:45 -0800430uart_change_speed(struct uart_state *state, struct ktermios *old_termios)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700431{
Alan Coxebd2c8f2009-09-19 13:13:28 -0700432 struct tty_struct *tty = state->port.tty;
433 struct uart_port *port = state->uart_port;
Alan Cox606d0992006-12-08 02:38:45 -0800434 struct ktermios *termios;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700435
436 /*
437 * If we have no tty, termios, or the port does not exist,
438 * then we can't set the parameters for this port.
439 */
440 if (!tty || !tty->termios || port->type == PORT_UNKNOWN)
441 return;
442
443 termios = tty->termios;
444
445 /*
446 * Set flags based on termios cflag
447 */
448 if (termios->c_cflag & CRTSCTS)
Alan Coxebd2c8f2009-09-19 13:13:28 -0700449 state->flags |= UIF_CTS_FLOW;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450 else
Alan Coxebd2c8f2009-09-19 13:13:28 -0700451 state->flags &= ~UIF_CTS_FLOW;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452
453 if (termios->c_cflag & CLOCAL)
Alan Coxebd2c8f2009-09-19 13:13:28 -0700454 state->flags &= ~UIF_CHECK_CD;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455 else
Alan Coxebd2c8f2009-09-19 13:13:28 -0700456 state->flags |= UIF_CHECK_CD;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700457
458 port->ops->set_termios(port, termios, old_termios);
459}
460
Alan Cox23d22ce2008-04-30 00:54:11 -0700461static inline int
Linus Torvalds1da177e2005-04-16 15:20:36 -0700462__uart_put_char(struct uart_port *port, struct circ_buf *circ, unsigned char c)
463{
464 unsigned long flags;
Alan Cox23d22ce2008-04-30 00:54:11 -0700465 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700466
467 if (!circ->buf)
Alan Cox23d22ce2008-04-30 00:54:11 -0700468 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700469
470 spin_lock_irqsave(&port->lock, flags);
471 if (uart_circ_chars_free(circ) != 0) {
472 circ->buf[circ->head] = c;
473 circ->head = (circ->head + 1) & (UART_XMIT_SIZE - 1);
Alan Cox23d22ce2008-04-30 00:54:11 -0700474 ret = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700475 }
476 spin_unlock_irqrestore(&port->lock, flags);
Alan Cox23d22ce2008-04-30 00:54:11 -0700477 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700478}
479
Alan Cox23d22ce2008-04-30 00:54:11 -0700480static int uart_put_char(struct tty_struct *tty, unsigned char ch)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700481{
482 struct uart_state *state = tty->driver_data;
483
Alan Coxebd2c8f2009-09-19 13:13:28 -0700484 return __uart_put_char(state->uart_port, &state->xmit, ch);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700485}
486
487static void uart_flush_chars(struct tty_struct *tty)
488{
489 uart_start(tty);
490}
491
492static int
Pavel Machekd5f735e2006-03-07 21:55:20 -0800493uart_write(struct tty_struct *tty, const unsigned char *buf, int count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700494{
495 struct uart_state *state = tty->driver_data;
Pavel Machekd5f735e2006-03-07 21:55:20 -0800496 struct uart_port *port;
497 struct circ_buf *circ;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700498 unsigned long flags;
499 int c, ret = 0;
500
Pavel Machekd5f735e2006-03-07 21:55:20 -0800501 /*
502 * This means you called this function _after_ the port was
503 * closed. No cookie for you.
504 */
Alan Coxf7519282009-01-02 13:49:21 +0000505 if (!state) {
Pavel Machekd5f735e2006-03-07 21:55:20 -0800506 WARN_ON(1);
507 return -EL3HLT;
508 }
509
Alan Coxebd2c8f2009-09-19 13:13:28 -0700510 port = state->uart_port;
511 circ = &state->xmit;
Pavel Machekd5f735e2006-03-07 21:55:20 -0800512
Linus Torvalds1da177e2005-04-16 15:20:36 -0700513 if (!circ->buf)
514 return 0;
515
516 spin_lock_irqsave(&port->lock, flags);
517 while (1) {
518 c = CIRC_SPACE_TO_END(circ->head, circ->tail, UART_XMIT_SIZE);
519 if (count < c)
520 c = count;
521 if (c <= 0)
522 break;
523 memcpy(circ->buf + circ->head, buf, c);
524 circ->head = (circ->head + c) & (UART_XMIT_SIZE - 1);
525 buf += c;
526 count -= c;
527 ret += c;
528 }
529 spin_unlock_irqrestore(&port->lock, flags);
530
531 uart_start(tty);
532 return ret;
533}
534
535static int uart_write_room(struct tty_struct *tty)
536{
537 struct uart_state *state = tty->driver_data;
Alan Coxf34d7a52008-04-30 00:54:13 -0700538 unsigned long flags;
539 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700540
Alan Coxebd2c8f2009-09-19 13:13:28 -0700541 spin_lock_irqsave(&state->uart_port->lock, flags);
542 ret = uart_circ_chars_free(&state->xmit);
543 spin_unlock_irqrestore(&state->uart_port->lock, flags);
Alan Coxf34d7a52008-04-30 00:54:13 -0700544 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700545}
546
547static int uart_chars_in_buffer(struct tty_struct *tty)
548{
549 struct uart_state *state = tty->driver_data;
Alan Coxf34d7a52008-04-30 00:54:13 -0700550 unsigned long flags;
551 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700552
Alan Coxebd2c8f2009-09-19 13:13:28 -0700553 spin_lock_irqsave(&state->uart_port->lock, flags);
554 ret = uart_circ_chars_pending(&state->xmit);
555 spin_unlock_irqrestore(&state->uart_port->lock, flags);
Alan Coxf34d7a52008-04-30 00:54:13 -0700556 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700557}
558
559static void uart_flush_buffer(struct tty_struct *tty)
560{
561 struct uart_state *state = tty->driver_data;
Tetsuo Handa55d7b682008-05-06 20:42:27 -0700562 struct uart_port *port;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700563 unsigned long flags;
564
Pavel Machekd5f735e2006-03-07 21:55:20 -0800565 /*
566 * This means you called this function _after_ the port was
567 * closed. No cookie for you.
568 */
Alan Coxf7519282009-01-02 13:49:21 +0000569 if (!state) {
Pavel Machekd5f735e2006-03-07 21:55:20 -0800570 WARN_ON(1);
571 return;
572 }
573
Alan Coxebd2c8f2009-09-19 13:13:28 -0700574 port = state->uart_port;
Jiri Slabyeb3a1e12007-05-06 14:48:52 -0700575 pr_debug("uart_flush_buffer(%d) called\n", tty->index);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700576
577 spin_lock_irqsave(&port->lock, flags);
Alan Coxebd2c8f2009-09-19 13:13:28 -0700578 uart_circ_clear(&state->xmit);
Haavard Skinnemoen6bb0e3a2008-07-16 21:52:36 +0100579 if (port->ops->flush_buffer)
580 port->ops->flush_buffer(port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700581 spin_unlock_irqrestore(&port->lock, flags);
582 tty_wakeup(tty);
583}
584
585/*
586 * This function is used to send a high-priority XON/XOFF character to
587 * the device
588 */
589static void uart_send_xchar(struct tty_struct *tty, char ch)
590{
591 struct uart_state *state = tty->driver_data;
Alan Coxebd2c8f2009-09-19 13:13:28 -0700592 struct uart_port *port = state->uart_port;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700593 unsigned long flags;
594
595 if (port->ops->send_xchar)
596 port->ops->send_xchar(port, ch);
597 else {
598 port->x_char = ch;
599 if (ch) {
600 spin_lock_irqsave(&port->lock, flags);
Russell Kingb129a8c2005-08-31 10:12:14 +0100601 port->ops->start_tx(port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700602 spin_unlock_irqrestore(&port->lock, flags);
603 }
604 }
605}
606
607static void uart_throttle(struct tty_struct *tty)
608{
609 struct uart_state *state = tty->driver_data;
610
611 if (I_IXOFF(tty))
612 uart_send_xchar(tty, STOP_CHAR(tty));
613
614 if (tty->termios->c_cflag & CRTSCTS)
Alan Coxebd2c8f2009-09-19 13:13:28 -0700615 uart_clear_mctrl(state->uart_port, TIOCM_RTS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700616}
617
618static void uart_unthrottle(struct tty_struct *tty)
619{
620 struct uart_state *state = tty->driver_data;
Alan Coxebd2c8f2009-09-19 13:13:28 -0700621 struct uart_port *port = state->uart_port;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700622
623 if (I_IXOFF(tty)) {
624 if (port->x_char)
625 port->x_char = 0;
626 else
627 uart_send_xchar(tty, START_CHAR(tty));
628 }
629
630 if (tty->termios->c_cflag & CRTSCTS)
631 uart_set_mctrl(port, TIOCM_RTS);
632}
633
634static int uart_get_info(struct uart_state *state,
635 struct serial_struct __user *retinfo)
636{
Alan Coxebd2c8f2009-09-19 13:13:28 -0700637 struct uart_port *port = state->uart_port;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700638 struct serial_struct tmp;
639
640 memset(&tmp, 0, sizeof(tmp));
Alan Coxf34d7a52008-04-30 00:54:13 -0700641
642 /* Ensure the state we copy is consistent and no hardware changes
643 occur as we go */
644 mutex_lock(&state->mutex);
645
Linus Torvalds1da177e2005-04-16 15:20:36 -0700646 tmp.type = port->type;
647 tmp.line = port->line;
648 tmp.port = port->iobase;
649 if (HIGH_BITS_OFFSET)
650 tmp.port_high = (long) port->iobase >> HIGH_BITS_OFFSET;
651 tmp.irq = port->irq;
652 tmp.flags = port->flags;
653 tmp.xmit_fifo_size = port->fifosize;
654 tmp.baud_base = port->uartclk / 16;
Alan Cox5e99df52009-09-19 13:13:28 -0700655 tmp.close_delay = state->port.close_delay / 10;
656 tmp.closing_wait = state->port.closing_wait == USF_CLOSING_WAIT_NONE ?
Linus Torvalds1da177e2005-04-16 15:20:36 -0700657 ASYNC_CLOSING_WAIT_NONE :
Alan Cox5e99df52009-09-19 13:13:28 -0700658 state->port.closing_wait / 10;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700659 tmp.custom_divisor = port->custom_divisor;
660 tmp.hub6 = port->hub6;
661 tmp.io_type = port->iotype;
662 tmp.iomem_reg_shift = port->regshift;
Josh Boyer4f640ef2007-07-23 18:43:44 -0700663 tmp.iomem_base = (void *)(unsigned long)port->mapbase;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700664
Alan Coxf34d7a52008-04-30 00:54:13 -0700665 mutex_unlock(&state->mutex);
666
Linus Torvalds1da177e2005-04-16 15:20:36 -0700667 if (copy_to_user(retinfo, &tmp, sizeof(*retinfo)))
668 return -EFAULT;
669 return 0;
670}
671
672static int uart_set_info(struct uart_state *state,
673 struct serial_struct __user *newinfo)
674{
675 struct serial_struct new_serial;
Alan Cox46d57a42009-09-19 13:13:29 -0700676 struct uart_port *uport = state->uart_port;
677 struct tty_port *port = &state->port;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700678 unsigned long new_port;
Russell King0077d452006-01-21 23:03:28 +0000679 unsigned int change_irq, change_port, closing_wait;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700680 unsigned int old_custom_divisor, close_delay;
Russell King0077d452006-01-21 23:03:28 +0000681 upf_t old_flags, new_flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700682 int retval = 0;
683
684 if (copy_from_user(&new_serial, newinfo, sizeof(new_serial)))
685 return -EFAULT;
686
687 new_port = new_serial.port;
688 if (HIGH_BITS_OFFSET)
689 new_port += (unsigned long) new_serial.port_high << HIGH_BITS_OFFSET;
690
691 new_serial.irq = irq_canonicalize(new_serial.irq);
692 close_delay = new_serial.close_delay * 10;
693 closing_wait = new_serial.closing_wait == ASYNC_CLOSING_WAIT_NONE ?
694 USF_CLOSING_WAIT_NONE : new_serial.closing_wait * 10;
695
696 /*
Alan Cox91312cd2009-09-19 13:13:29 -0700697 * This semaphore protects port->count. It is also
Linus Torvalds1da177e2005-04-16 15:20:36 -0700698 * very useful to prevent opens. Also, take the
699 * port configuration semaphore to make sure that a
700 * module insertion/removal doesn't change anything
701 * under us.
702 */
Ingo Molnare2862f62006-01-13 21:37:07 +0000703 mutex_lock(&state->mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700704
Alan Cox46d57a42009-09-19 13:13:29 -0700705 change_irq = !(uport->flags & UPF_FIXED_PORT)
706 && new_serial.irq != uport->irq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700707
708 /*
709 * Since changing the 'type' of the port changes its resource
710 * allocations, we should treat type changes the same as
711 * IO port changes.
712 */
Alan Cox46d57a42009-09-19 13:13:29 -0700713 change_port = !(uport->flags & UPF_FIXED_PORT)
714 && (new_port != uport->iobase ||
715 (unsigned long)new_serial.iomem_base != uport->mapbase ||
716 new_serial.hub6 != uport->hub6 ||
717 new_serial.io_type != uport->iotype ||
718 new_serial.iomem_reg_shift != uport->regshift ||
719 new_serial.type != uport->type);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700720
Alan Cox46d57a42009-09-19 13:13:29 -0700721 old_flags = uport->flags;
Russell King0077d452006-01-21 23:03:28 +0000722 new_flags = new_serial.flags;
Alan Cox46d57a42009-09-19 13:13:29 -0700723 old_custom_divisor = uport->custom_divisor;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700724
725 if (!capable(CAP_SYS_ADMIN)) {
726 retval = -EPERM;
727 if (change_irq || change_port ||
Alan Cox46d57a42009-09-19 13:13:29 -0700728 (new_serial.baud_base != uport->uartclk / 16) ||
729 (close_delay != port->close_delay) ||
730 (closing_wait != port->closing_wait) ||
Russell King947deee2006-07-02 20:45:51 +0100731 (new_serial.xmit_fifo_size &&
Alan Cox46d57a42009-09-19 13:13:29 -0700732 new_serial.xmit_fifo_size != uport->fifosize) ||
Russell King0077d452006-01-21 23:03:28 +0000733 (((new_flags ^ old_flags) & ~UPF_USR_MASK) != 0))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700734 goto exit;
Alan Cox46d57a42009-09-19 13:13:29 -0700735 uport->flags = ((uport->flags & ~UPF_USR_MASK) |
Russell King0077d452006-01-21 23:03:28 +0000736 (new_flags & UPF_USR_MASK));
Alan Cox46d57a42009-09-19 13:13:29 -0700737 uport->custom_divisor = new_serial.custom_divisor;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700738 goto check_and_exit;
739 }
740
741 /*
742 * Ask the low level driver to verify the settings.
743 */
Alan Cox46d57a42009-09-19 13:13:29 -0700744 if (uport->ops->verify_port)
745 retval = uport->ops->verify_port(uport, &new_serial);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700746
Yinghai Lua62c4132008-08-19 20:49:55 -0700747 if ((new_serial.irq >= nr_irqs) || (new_serial.irq < 0) ||
Linus Torvalds1da177e2005-04-16 15:20:36 -0700748 (new_serial.baud_base < 9600))
749 retval = -EINVAL;
750
751 if (retval)
752 goto exit;
753
754 if (change_port || change_irq) {
755 retval = -EBUSY;
756
757 /*
758 * Make sure that we are the sole user of this port.
759 */
760 if (uart_users(state) > 1)
761 goto exit;
762
763 /*
764 * We need to shutdown the serial port at the old
765 * port/type/irq combination.
766 */
767 uart_shutdown(state);
768 }
769
770 if (change_port) {
771 unsigned long old_iobase, old_mapbase;
772 unsigned int old_type, old_iotype, old_hub6, old_shift;
773
Alan Cox46d57a42009-09-19 13:13:29 -0700774 old_iobase = uport->iobase;
775 old_mapbase = uport->mapbase;
776 old_type = uport->type;
777 old_hub6 = uport->hub6;
778 old_iotype = uport->iotype;
779 old_shift = uport->regshift;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700780
781 /*
782 * Free and release old regions
783 */
784 if (old_type != PORT_UNKNOWN)
Alan Cox46d57a42009-09-19 13:13:29 -0700785 uport->ops->release_port(uport);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700786
Alan Cox46d57a42009-09-19 13:13:29 -0700787 uport->iobase = new_port;
788 uport->type = new_serial.type;
789 uport->hub6 = new_serial.hub6;
790 uport->iotype = new_serial.io_type;
791 uport->regshift = new_serial.iomem_reg_shift;
792 uport->mapbase = (unsigned long)new_serial.iomem_base;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700793
794 /*
795 * Claim and map the new regions
796 */
Alan Cox46d57a42009-09-19 13:13:29 -0700797 if (uport->type != PORT_UNKNOWN) {
798 retval = uport->ops->request_port(uport);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700799 } else {
800 /* Always success - Jean II */
801 retval = 0;
802 }
803
804 /*
805 * If we fail to request resources for the
806 * new port, try to restore the old settings.
807 */
808 if (retval && old_type != PORT_UNKNOWN) {
Alan Cox46d57a42009-09-19 13:13:29 -0700809 uport->iobase = old_iobase;
810 uport->type = old_type;
811 uport->hub6 = old_hub6;
812 uport->iotype = old_iotype;
813 uport->regshift = old_shift;
814 uport->mapbase = old_mapbase;
815 retval = uport->ops->request_port(uport);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700816 /*
817 * If we failed to restore the old settings,
818 * we fail like this.
819 */
820 if (retval)
Alan Cox46d57a42009-09-19 13:13:29 -0700821 uport->type = PORT_UNKNOWN;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700822
823 /*
824 * We failed anyway.
825 */
826 retval = -EBUSY;
Alan Coxa46c9992008-02-08 04:18:53 -0800827 /* Added to return the correct error -Ram Gupta */
828 goto exit;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700829 }
830 }
831
David Gibsonabb4a232007-05-06 14:48:49 -0700832 if (change_irq)
Alan Cox46d57a42009-09-19 13:13:29 -0700833 uport->irq = new_serial.irq;
834 if (!(uport->flags & UPF_FIXED_PORT))
835 uport->uartclk = new_serial.baud_base * 16;
836 uport->flags = (uport->flags & ~UPF_CHANGE_MASK) |
Russell King0077d452006-01-21 23:03:28 +0000837 (new_flags & UPF_CHANGE_MASK);
Alan Cox46d57a42009-09-19 13:13:29 -0700838 uport->custom_divisor = new_serial.custom_divisor;
839 port->close_delay = close_delay;
840 port->closing_wait = closing_wait;
Russell King947deee2006-07-02 20:45:51 +0100841 if (new_serial.xmit_fifo_size)
Alan Cox46d57a42009-09-19 13:13:29 -0700842 uport->fifosize = new_serial.xmit_fifo_size;
843 if (port->tty)
844 port->tty->low_latency =
845 (uport->flags & UPF_LOW_LATENCY) ? 1 : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700846
847 check_and_exit:
848 retval = 0;
Alan Cox46d57a42009-09-19 13:13:29 -0700849 if (uport->type == PORT_UNKNOWN)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700850 goto exit;
Alan Coxebd2c8f2009-09-19 13:13:28 -0700851 if (state->flags & UIF_INITIALIZED) {
Alan Cox46d57a42009-09-19 13:13:29 -0700852 if (((old_flags ^ uport->flags) & UPF_SPD_MASK) ||
853 old_custom_divisor != uport->custom_divisor) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700854 /*
855 * If they're setting up a custom divisor or speed,
856 * instead of clearing it, then bitch about it. No
857 * need to rate-limit; it's CAP_SYS_ADMIN only.
858 */
Alan Cox46d57a42009-09-19 13:13:29 -0700859 if (uport->flags & UPF_SPD_MASK) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700860 char buf[64];
861 printk(KERN_NOTICE
862 "%s sets custom speed on %s. This "
863 "is deprecated.\n", current->comm,
Alan Cox46d57a42009-09-19 13:13:29 -0700864 tty_name(port->tty, buf));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700865 }
866 uart_change_speed(state, NULL);
867 }
868 } else
869 retval = uart_startup(state, 1);
870 exit:
Ingo Molnare2862f62006-01-13 21:37:07 +0000871 mutex_unlock(&state->mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700872 return retval;
873}
874
875
876/*
877 * uart_get_lsr_info - get line status register info.
878 * Note: uart_ioctl protects us against hangups.
879 */
880static int uart_get_lsr_info(struct uart_state *state,
881 unsigned int __user *value)
882{
Alan Cox46d57a42009-09-19 13:13:29 -0700883 struct uart_port *uport = state->uart_port;
884 struct tty_port *port = &state->port;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700885 unsigned int result;
886
Alan Cox46d57a42009-09-19 13:13:29 -0700887 result = uport->ops->tx_empty(uport);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700888
889 /*
890 * If we're about to load something into the transmit
891 * register, we'll pretend the transmitter isn't empty to
892 * avoid a race condition (depending on when the transmit
893 * interrupt happens).
894 */
Alan Cox46d57a42009-09-19 13:13:29 -0700895 if (uport->x_char ||
Alan Coxebd2c8f2009-09-19 13:13:28 -0700896 ((uart_circ_chars_pending(&state->xmit) > 0) &&
Alan Cox46d57a42009-09-19 13:13:29 -0700897 !port->tty->stopped && !port->tty->hw_stopped))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700898 result &= ~TIOCSER_TEMT;
Alan Coxa46c9992008-02-08 04:18:53 -0800899
Linus Torvalds1da177e2005-04-16 15:20:36 -0700900 return put_user(result, value);
901}
902
903static int uart_tiocmget(struct tty_struct *tty, struct file *file)
904{
905 struct uart_state *state = tty->driver_data;
Alan Cox46d57a42009-09-19 13:13:29 -0700906 struct uart_port *uport = state->uart_port;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700907 int result = -EIO;
908
Ingo Molnare2862f62006-01-13 21:37:07 +0000909 mutex_lock(&state->mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700910 if ((!file || !tty_hung_up_p(file)) &&
911 !(tty->flags & (1 << TTY_IO_ERROR))) {
Alan Cox46d57a42009-09-19 13:13:29 -0700912 result = uport->mctrl;
Russell Kingc5f46442005-06-29 09:42:38 +0100913
Alan Cox46d57a42009-09-19 13:13:29 -0700914 spin_lock_irq(&uport->lock);
915 result |= uport->ops->get_mctrl(uport);
916 spin_unlock_irq(&uport->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700917 }
Ingo Molnare2862f62006-01-13 21:37:07 +0000918 mutex_unlock(&state->mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700919
920 return result;
921}
922
923static int
924uart_tiocmset(struct tty_struct *tty, struct file *file,
925 unsigned int set, unsigned int clear)
926{
927 struct uart_state *state = tty->driver_data;
Alan Cox46d57a42009-09-19 13:13:29 -0700928 struct uart_port *uport = state->uart_port;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700929 int ret = -EIO;
930
Ingo Molnare2862f62006-01-13 21:37:07 +0000931 mutex_lock(&state->mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700932 if ((!file || !tty_hung_up_p(file)) &&
933 !(tty->flags & (1 << TTY_IO_ERROR))) {
Alan Cox46d57a42009-09-19 13:13:29 -0700934 uart_update_mctrl(uport, set, clear);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700935 ret = 0;
936 }
Ingo Molnare2862f62006-01-13 21:37:07 +0000937 mutex_unlock(&state->mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700938 return ret;
939}
940
Alan Cox9e989662008-07-22 11:18:03 +0100941static int uart_break_ctl(struct tty_struct *tty, int break_state)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700942{
943 struct uart_state *state = tty->driver_data;
Alan Cox46d57a42009-09-19 13:13:29 -0700944 struct uart_port *uport = state->uart_port;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700945
Ingo Molnare2862f62006-01-13 21:37:07 +0000946 mutex_lock(&state->mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700947
Alan Cox46d57a42009-09-19 13:13:29 -0700948 if (uport->type != PORT_UNKNOWN)
949 uport->ops->break_ctl(uport, break_state);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700950
Ingo Molnare2862f62006-01-13 21:37:07 +0000951 mutex_unlock(&state->mutex);
Alan Cox9e989662008-07-22 11:18:03 +0100952 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700953}
954
955static int uart_do_autoconfig(struct uart_state *state)
956{
Alan Cox46d57a42009-09-19 13:13:29 -0700957 struct uart_port *uport = state->uart_port;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700958 int flags, ret;
959
960 if (!capable(CAP_SYS_ADMIN))
961 return -EPERM;
962
963 /*
964 * Take the per-port semaphore. This prevents count from
965 * changing, and hence any extra opens of the port while
966 * we're auto-configuring.
967 */
Ingo Molnare2862f62006-01-13 21:37:07 +0000968 if (mutex_lock_interruptible(&state->mutex))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700969 return -ERESTARTSYS;
970
971 ret = -EBUSY;
972 if (uart_users(state) == 1) {
973 uart_shutdown(state);
974
975 /*
976 * If we already have a port type configured,
977 * we must release its resources.
978 */
Alan Cox46d57a42009-09-19 13:13:29 -0700979 if (uport->type != PORT_UNKNOWN)
980 uport->ops->release_port(uport);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700981
982 flags = UART_CONFIG_TYPE;
Alan Cox46d57a42009-09-19 13:13:29 -0700983 if (uport->flags & UPF_AUTO_IRQ)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700984 flags |= UART_CONFIG_IRQ;
985
986 /*
987 * This will claim the ports resources if
988 * a port is found.
989 */
Alan Cox46d57a42009-09-19 13:13:29 -0700990 uport->ops->config_port(uport, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700991
992 ret = uart_startup(state, 1);
993 }
Ingo Molnare2862f62006-01-13 21:37:07 +0000994 mutex_unlock(&state->mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700995 return ret;
996}
997
998/*
999 * Wait for any of the 4 modem inputs (DCD,RI,DSR,CTS) to change
1000 * - mask passed in arg for lines of interest
1001 * (use |'ed TIOCM_RNG/DSR/CD/CTS for masking)
1002 * Caller should use TIOCGICOUNT to see which one it was
1003 */
1004static int
1005uart_wait_modem_status(struct uart_state *state, unsigned long arg)
1006{
Alan Cox46d57a42009-09-19 13:13:29 -07001007 struct uart_port *uport = state->uart_port;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001008 DECLARE_WAITQUEUE(wait, current);
1009 struct uart_icount cprev, cnow;
1010 int ret;
1011
1012 /*
1013 * note the counters on entry
1014 */
Alan Cox46d57a42009-09-19 13:13:29 -07001015 spin_lock_irq(&uport->lock);
1016 memcpy(&cprev, &uport->icount, sizeof(struct uart_icount));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001017
1018 /*
1019 * Force modem status interrupts on
1020 */
Alan Cox46d57a42009-09-19 13:13:29 -07001021 uport->ops->enable_ms(uport);
1022 spin_unlock_irq(&uport->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001023
Alan Coxebd2c8f2009-09-19 13:13:28 -07001024 add_wait_queue(&state->delta_msr_wait, &wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001025 for (;;) {
Alan Cox46d57a42009-09-19 13:13:29 -07001026 spin_lock_irq(&uport->lock);
1027 memcpy(&cnow, &uport->icount, sizeof(struct uart_icount));
1028 spin_unlock_irq(&uport->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001029
1030 set_current_state(TASK_INTERRUPTIBLE);
1031
1032 if (((arg & TIOCM_RNG) && (cnow.rng != cprev.rng)) ||
1033 ((arg & TIOCM_DSR) && (cnow.dsr != cprev.dsr)) ||
1034 ((arg & TIOCM_CD) && (cnow.dcd != cprev.dcd)) ||
1035 ((arg & TIOCM_CTS) && (cnow.cts != cprev.cts))) {
Alan Coxa46c9992008-02-08 04:18:53 -08001036 ret = 0;
1037 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001038 }
1039
1040 schedule();
1041
1042 /* see if a signal did it */
1043 if (signal_pending(current)) {
1044 ret = -ERESTARTSYS;
1045 break;
1046 }
1047
1048 cprev = cnow;
1049 }
1050
1051 current->state = TASK_RUNNING;
Alan Coxebd2c8f2009-09-19 13:13:28 -07001052 remove_wait_queue(&state->delta_msr_wait, &wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001053
1054 return ret;
1055}
1056
1057/*
1058 * Get counter of input serial line interrupts (DCD,RI,DSR,CTS)
1059 * Return: write counters to the user passed counter struct
1060 * NB: both 1->0 and 0->1 transitions are counted except for
1061 * RI where only 0->1 is counted.
1062 */
1063static int uart_get_count(struct uart_state *state,
1064 struct serial_icounter_struct __user *icnt)
1065{
1066 struct serial_icounter_struct icount;
1067 struct uart_icount cnow;
Alan Cox46d57a42009-09-19 13:13:29 -07001068 struct uart_port *uport = state->uart_port;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001069
Alan Cox46d57a42009-09-19 13:13:29 -07001070 spin_lock_irq(&uport->lock);
1071 memcpy(&cnow, &uport->icount, sizeof(struct uart_icount));
1072 spin_unlock_irq(&uport->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001073
1074 icount.cts = cnow.cts;
1075 icount.dsr = cnow.dsr;
1076 icount.rng = cnow.rng;
1077 icount.dcd = cnow.dcd;
1078 icount.rx = cnow.rx;
1079 icount.tx = cnow.tx;
1080 icount.frame = cnow.frame;
1081 icount.overrun = cnow.overrun;
1082 icount.parity = cnow.parity;
1083 icount.brk = cnow.brk;
1084 icount.buf_overrun = cnow.buf_overrun;
1085
1086 return copy_to_user(icnt, &icount, sizeof(icount)) ? -EFAULT : 0;
1087}
1088
1089/*
Alan Coxe5238442008-04-30 00:53:28 -07001090 * Called via sys_ioctl. We can use spin_lock_irq() here.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001091 */
1092static int
1093uart_ioctl(struct tty_struct *tty, struct file *filp, unsigned int cmd,
1094 unsigned long arg)
1095{
1096 struct uart_state *state = tty->driver_data;
1097 void __user *uarg = (void __user *)arg;
1098 int ret = -ENOIOCTLCMD;
1099
Linus Torvalds1da177e2005-04-16 15:20:36 -07001100
1101 /*
1102 * These ioctls don't rely on the hardware to be present.
1103 */
1104 switch (cmd) {
1105 case TIOCGSERIAL:
1106 ret = uart_get_info(state, uarg);
1107 break;
1108
1109 case TIOCSSERIAL:
1110 ret = uart_set_info(state, uarg);
1111 break;
1112
1113 case TIOCSERCONFIG:
1114 ret = uart_do_autoconfig(state);
1115 break;
1116
1117 case TIOCSERGWILD: /* obsolete */
1118 case TIOCSERSWILD: /* obsolete */
1119 ret = 0;
1120 break;
1121 }
1122
1123 if (ret != -ENOIOCTLCMD)
1124 goto out;
1125
1126 if (tty->flags & (1 << TTY_IO_ERROR)) {
1127 ret = -EIO;
1128 goto out;
1129 }
1130
1131 /*
1132 * The following should only be used when hardware is present.
1133 */
1134 switch (cmd) {
1135 case TIOCMIWAIT:
1136 ret = uart_wait_modem_status(state, arg);
1137 break;
1138
1139 case TIOCGICOUNT:
1140 ret = uart_get_count(state, uarg);
1141 break;
1142 }
1143
1144 if (ret != -ENOIOCTLCMD)
1145 goto out;
1146
Ingo Molnare2862f62006-01-13 21:37:07 +00001147 mutex_lock(&state->mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001148
1149 if (tty_hung_up_p(filp)) {
1150 ret = -EIO;
1151 goto out_up;
1152 }
1153
1154 /*
1155 * All these rely on hardware being present and need to be
1156 * protected against the tty being hung up.
1157 */
1158 switch (cmd) {
1159 case TIOCSERGETLSR: /* Get line status register */
1160 ret = uart_get_lsr_info(state, uarg);
1161 break;
1162
1163 default: {
Alan Cox46d57a42009-09-19 13:13:29 -07001164 struct uart_port *uport = state->uart_port;
1165 if (uport->ops->ioctl)
1166 ret = uport->ops->ioctl(uport, cmd, arg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001167 break;
1168 }
1169 }
Alan Coxf34d7a52008-04-30 00:54:13 -07001170out_up:
Ingo Molnare2862f62006-01-13 21:37:07 +00001171 mutex_unlock(&state->mutex);
Alan Coxf34d7a52008-04-30 00:54:13 -07001172out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001173 return ret;
1174}
1175
Linus Torvaldsedeb2802008-06-04 10:35:03 -07001176static void uart_set_ldisc(struct tty_struct *tty)
Alan Cox64e91592008-06-03 15:18:54 +01001177{
1178 struct uart_state *state = tty->driver_data;
Alan Cox46d57a42009-09-19 13:13:29 -07001179 struct uart_port *uport = state->uart_port;
Alan Cox64e91592008-06-03 15:18:54 +01001180
Alan Cox46d57a42009-09-19 13:13:29 -07001181 if (uport->ops->set_ldisc)
1182 uport->ops->set_ldisc(uport);
Alan Cox64e91592008-06-03 15:18:54 +01001183}
1184
Alan Coxa46c9992008-02-08 04:18:53 -08001185static void uart_set_termios(struct tty_struct *tty,
1186 struct ktermios *old_termios)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001187{
1188 struct uart_state *state = tty->driver_data;
1189 unsigned long flags;
1190 unsigned int cflag = tty->termios->c_cflag;
1191
Linus Torvalds1da177e2005-04-16 15:20:36 -07001192
1193 /*
1194 * These are the bits that are used to setup various
David Woodhouse20620d62007-08-22 14:01:11 -07001195 * flags in the low level driver. We can ignore the Bfoo
1196 * bits in c_cflag; c_[io]speed will always be set
1197 * appropriately by set_termios() in tty_ioctl.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07001198 */
1199#define RELEVANT_IFLAG(iflag) ((iflag) & (IGNBRK|BRKINT|IGNPAR|PARMRK|INPCK))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001200 if ((cflag ^ old_termios->c_cflag) == 0 &&
David Woodhouse20620d62007-08-22 14:01:11 -07001201 tty->termios->c_ospeed == old_termios->c_ospeed &&
1202 tty->termios->c_ispeed == old_termios->c_ispeed &&
Alan Coxe5238442008-04-30 00:53:28 -07001203 RELEVANT_IFLAG(tty->termios->c_iflag ^ old_termios->c_iflag) == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001204 return;
Alan Coxe5238442008-04-30 00:53:28 -07001205 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001206
1207 uart_change_speed(state, old_termios);
1208
1209 /* Handle transition to B0 status */
1210 if ((old_termios->c_cflag & CBAUD) && !(cflag & CBAUD))
Alan Coxebd2c8f2009-09-19 13:13:28 -07001211 uart_clear_mctrl(state->uart_port, TIOCM_RTS | TIOCM_DTR);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001212
1213 /* Handle transition away from B0 status */
1214 if (!(old_termios->c_cflag & CBAUD) && (cflag & CBAUD)) {
1215 unsigned int mask = TIOCM_DTR;
1216 if (!(cflag & CRTSCTS) ||
1217 !test_bit(TTY_THROTTLED, &tty->flags))
1218 mask |= TIOCM_RTS;
Alan Coxebd2c8f2009-09-19 13:13:28 -07001219 uart_set_mctrl(state->uart_port, mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001220 }
1221
1222 /* Handle turning off CRTSCTS */
1223 if ((old_termios->c_cflag & CRTSCTS) && !(cflag & CRTSCTS)) {
Alan Coxebd2c8f2009-09-19 13:13:28 -07001224 spin_lock_irqsave(&state->uart_port->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001225 tty->hw_stopped = 0;
1226 __uart_start(tty);
Alan Coxebd2c8f2009-09-19 13:13:28 -07001227 spin_unlock_irqrestore(&state->uart_port->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001228 }
1229
Russell King0dd7a1a2005-06-29 18:40:53 +01001230 /* Handle turning on CRTSCTS */
1231 if (!(old_termios->c_cflag & CRTSCTS) && (cflag & CRTSCTS)) {
Alan Coxebd2c8f2009-09-19 13:13:28 -07001232 spin_lock_irqsave(&state->uart_port->lock, flags);
1233 if (!(state->uart_port->ops->get_mctrl(state->uart_port) & TIOCM_CTS)) {
Russell King0dd7a1a2005-06-29 18:40:53 +01001234 tty->hw_stopped = 1;
Alan Coxebd2c8f2009-09-19 13:13:28 -07001235 state->uart_port->ops->stop_tx(state->uart_port);
Russell King0dd7a1a2005-06-29 18:40:53 +01001236 }
Alan Coxebd2c8f2009-09-19 13:13:28 -07001237 spin_unlock_irqrestore(&state->uart_port->lock, flags);
Russell King0dd7a1a2005-06-29 18:40:53 +01001238 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001239#if 0
1240 /*
1241 * No need to wake up processes in open wait, since they
1242 * sample the CLOCAL flag once, and don't recheck it.
1243 * XXX It's not clear whether the current behavior is correct
1244 * or not. Hence, this may change.....
1245 */
1246 if (!(old_termios->c_cflag & CLOCAL) &&
1247 (tty->termios->c_cflag & CLOCAL))
Alan Coxebd2c8f2009-09-19 13:13:28 -07001248 wake_up_interruptible(&state->uart_port.open_wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001249#endif
1250}
1251
1252/*
1253 * In 2.4.5, calls to this will be serialized via the BKL in
1254 * linux/drivers/char/tty_io.c:tty_release()
1255 * linux/drivers/char/tty_io.c:do_tty_handup()
1256 */
1257static void uart_close(struct tty_struct *tty, struct file *filp)
1258{
1259 struct uart_state *state = tty->driver_data;
Alan Cox46d57a42009-09-19 13:13:29 -07001260 struct tty_port *port;
1261 struct uart_port *uport;
Alan Coxa46c9992008-02-08 04:18:53 -08001262
Linus Torvalds1da177e2005-04-16 15:20:36 -07001263 BUG_ON(!kernel_locked());
1264
Alan Cox46d57a42009-09-19 13:13:29 -07001265 uport = state->uart_port;
1266 port = &state->port;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001267
Alan Cox46d57a42009-09-19 13:13:29 -07001268 pr_debug("uart_close(%d) called\n", uport->line);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001269
Ingo Molnare2862f62006-01-13 21:37:07 +00001270 mutex_lock(&state->mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001271
1272 if (tty_hung_up_p(filp))
1273 goto done;
1274
Alan Cox91312cd2009-09-19 13:13:29 -07001275 if ((tty->count == 1) && (port->count != 1)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001276 /*
1277 * Uh, oh. tty->count is 1, which means that the tty
Alan Cox91312cd2009-09-19 13:13:29 -07001278 * structure will be freed. port->count should always
Linus Torvalds1da177e2005-04-16 15:20:36 -07001279 * be one in these conditions. If it's greater than
1280 * one, we've got real problems, since it means the
1281 * serial port won't be shutdown.
1282 */
1283 printk(KERN_ERR "uart_close: bad serial port count; tty->count is 1, "
Alan Cox91312cd2009-09-19 13:13:29 -07001284 "port->count is %d\n", port->count);
1285 port->count = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001286 }
Alan Cox91312cd2009-09-19 13:13:29 -07001287 if (--port->count < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001288 printk(KERN_ERR "uart_close: bad serial port count for %s: %d\n",
Alan Cox91312cd2009-09-19 13:13:29 -07001289 tty->name, port->count);
1290 port->count = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001291 }
Alan Cox91312cd2009-09-19 13:13:29 -07001292 if (port->count)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001293 goto done;
1294
1295 /*
1296 * Now we wait for the transmit buffer to clear; and we notify
1297 * the line discipline to only process XON/XOFF characters by
1298 * setting tty->closing.
1299 */
1300 tty->closing = 1;
1301
Alan Cox46d57a42009-09-19 13:13:29 -07001302 if (port->closing_wait != USF_CLOSING_WAIT_NONE)
1303 tty_wait_until_sent(tty, msecs_to_jiffies(port->closing_wait));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001304
1305 /*
1306 * At this point, we stop accepting input. To do this, we
1307 * disable the receive line status interrupts.
1308 */
Alan Coxebd2c8f2009-09-19 13:13:28 -07001309 if (state->flags & UIF_INITIALIZED) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001310 unsigned long flags;
1311 spin_lock_irqsave(&port->lock, flags);
Alan Cox46d57a42009-09-19 13:13:29 -07001312 uport->ops->stop_rx(uport);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001313 spin_unlock_irqrestore(&port->lock, flags);
1314 /*
1315 * Before we drop DTR, make sure the UART transmitter
1316 * has completely drained; this is especially
1317 * important if there is a transmit FIFO!
1318 */
Alan Cox46d57a42009-09-19 13:13:29 -07001319 uart_wait_until_sent(tty, uport->timeout);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001320 }
1321
1322 uart_shutdown(state);
1323 uart_flush_buffer(tty);
1324
Alan Coxa46c9992008-02-08 04:18:53 -08001325 tty_ldisc_flush(tty);
1326
Linus Torvalds1da177e2005-04-16 15:20:36 -07001327 tty->closing = 0;
Alan Cox46d57a42009-09-19 13:13:29 -07001328 port->tty = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001329
Alan Cox46d57a42009-09-19 13:13:29 -07001330 if (port->blocked_open) {
1331 if (port->close_delay)
1332 msleep_interruptible(port->close_delay);
1333 } else if (!uart_console(uport)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001334 uart_change_pm(state, 3);
1335 }
1336
1337 /*
1338 * Wake up anyone trying to open this port.
1339 */
Alan Coxebd2c8f2009-09-19 13:13:28 -07001340 state->flags &= ~UIF_NORMAL_ACTIVE;
Alan Cox46d57a42009-09-19 13:13:29 -07001341 wake_up_interruptible(&port->open_wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001342
Alan Cox46d57a42009-09-19 13:13:29 -07001343done:
Ingo Molnare2862f62006-01-13 21:37:07 +00001344 mutex_unlock(&state->mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001345}
1346
1347static void uart_wait_until_sent(struct tty_struct *tty, int timeout)
1348{
1349 struct uart_state *state = tty->driver_data;
Alan Coxebd2c8f2009-09-19 13:13:28 -07001350 struct uart_port *port = state->uart_port;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001351 unsigned long char_time, expire;
1352
Linus Torvalds1da177e2005-04-16 15:20:36 -07001353 if (port->type == PORT_UNKNOWN || port->fifosize == 0)
1354 return;
1355
Alan Coxf34d7a52008-04-30 00:54:13 -07001356 lock_kernel();
1357
Linus Torvalds1da177e2005-04-16 15:20:36 -07001358 /*
1359 * Set the check interval to be 1/5 of the estimated time to
1360 * send a single character, and make it at least 1. The check
1361 * interval should also be less than the timeout.
1362 *
1363 * Note: we have to use pretty tight timings here to satisfy
1364 * the NIST-PCTS.
1365 */
1366 char_time = (port->timeout - HZ/50) / port->fifosize;
1367 char_time = char_time / 5;
1368 if (char_time == 0)
1369 char_time = 1;
1370 if (timeout && timeout < char_time)
1371 char_time = timeout;
1372
1373 /*
1374 * If the transmitter hasn't cleared in twice the approximate
1375 * amount of time to send the entire FIFO, it probably won't
1376 * ever clear. This assumes the UART isn't doing flow
1377 * control, which is currently the case. Hence, if it ever
1378 * takes longer than port->timeout, this is probably due to a
1379 * UART bug of some kind. So, we clamp the timeout parameter at
1380 * 2*port->timeout.
1381 */
1382 if (timeout == 0 || timeout > 2 * port->timeout)
1383 timeout = 2 * port->timeout;
1384
1385 expire = jiffies + timeout;
1386
Jiri Slabyeb3a1e12007-05-06 14:48:52 -07001387 pr_debug("uart_wait_until_sent(%d), jiffies=%lu, expire=%lu...\n",
Alan Coxa46c9992008-02-08 04:18:53 -08001388 port->line, jiffies, expire);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001389
1390 /*
1391 * Check whether the transmitter is empty every 'char_time'.
1392 * 'timeout' / 'expire' give us the maximum amount of time
1393 * we wait.
1394 */
1395 while (!port->ops->tx_empty(port)) {
1396 msleep_interruptible(jiffies_to_msecs(char_time));
1397 if (signal_pending(current))
1398 break;
1399 if (time_after(jiffies, expire))
1400 break;
1401 }
1402 set_current_state(TASK_RUNNING); /* might not be needed */
Alan Coxf34d7a52008-04-30 00:54:13 -07001403 unlock_kernel();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001404}
1405
1406/*
1407 * This is called with the BKL held in
1408 * linux/drivers/char/tty_io.c:do_tty_hangup()
1409 * We're called from the eventd thread, so we can sleep for
1410 * a _short_ time only.
1411 */
1412static void uart_hangup(struct tty_struct *tty)
1413{
1414 struct uart_state *state = tty->driver_data;
Alan Cox46d57a42009-09-19 13:13:29 -07001415 struct tty_port *port = &state->port;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001416
1417 BUG_ON(!kernel_locked());
Alan Coxebd2c8f2009-09-19 13:13:28 -07001418 pr_debug("uart_hangup(%d)\n", state->uart_port->line);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001419
Ingo Molnare2862f62006-01-13 21:37:07 +00001420 mutex_lock(&state->mutex);
Alan Coxebd2c8f2009-09-19 13:13:28 -07001421 if (state->flags & UIF_NORMAL_ACTIVE) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001422 uart_flush_buffer(tty);
1423 uart_shutdown(state);
Alan Cox91312cd2009-09-19 13:13:29 -07001424 port->count = 0;
Alan Coxebd2c8f2009-09-19 13:13:28 -07001425 state->flags &= ~UIF_NORMAL_ACTIVE;
Alan Cox46d57a42009-09-19 13:13:29 -07001426 port->tty = NULL;
1427 wake_up_interruptible(&port->open_wait);
Alan Coxebd2c8f2009-09-19 13:13:28 -07001428 wake_up_interruptible(&state->delta_msr_wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001429 }
Ingo Molnare2862f62006-01-13 21:37:07 +00001430 mutex_unlock(&state->mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001431}
1432
1433/*
1434 * Copy across the serial console cflag setting into the termios settings
1435 * for the initial open of the port. This allows continuity between the
1436 * kernel settings, and the settings init adopts when it opens the port
1437 * for the first time.
1438 */
1439static void uart_update_termios(struct uart_state *state)
1440{
Alan Coxebd2c8f2009-09-19 13:13:28 -07001441 struct tty_struct *tty = state->port.tty;
1442 struct uart_port *port = state->uart_port;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001443
1444 if (uart_console(port) && port->cons->cflag) {
1445 tty->termios->c_cflag = port->cons->cflag;
1446 port->cons->cflag = 0;
1447 }
1448
1449 /*
1450 * If the device failed to grab its irq resources,
1451 * or some other error occurred, don't try to talk
1452 * to the port hardware.
1453 */
1454 if (!(tty->flags & (1 << TTY_IO_ERROR))) {
1455 /*
1456 * Make termios settings take effect.
1457 */
1458 uart_change_speed(state, NULL);
1459
1460 /*
1461 * And finally enable the RTS and DTR signals.
1462 */
1463 if (tty->termios->c_cflag & CBAUD)
1464 uart_set_mctrl(port, TIOCM_DTR | TIOCM_RTS);
1465 }
1466}
1467
1468/*
1469 * Block the open until the port is ready. We must be called with
1470 * the per-port semaphore held.
1471 */
1472static int
1473uart_block_til_ready(struct file *filp, struct uart_state *state)
1474{
1475 DECLARE_WAITQUEUE(wait, current);
Alan Cox46d57a42009-09-19 13:13:29 -07001476 struct uart_port *uport = state->uart_port;
1477 struct tty_port *port = &state->port;
Russell Kingc5f46442005-06-29 09:42:38 +01001478 unsigned int mctrl;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001479
Alan Cox46d57a42009-09-19 13:13:29 -07001480 port->blocked_open++;
Alan Cox91312cd2009-09-19 13:13:29 -07001481 port->count--;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001482
Alan Cox46d57a42009-09-19 13:13:29 -07001483 add_wait_queue(&port->open_wait, &wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001484 while (1) {
1485 set_current_state(TASK_INTERRUPTIBLE);
1486
1487 /*
1488 * If we have been hung up, tell userspace/restart open.
1489 */
Alan Cox46d57a42009-09-19 13:13:29 -07001490 if (tty_hung_up_p(filp) || port->tty == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001491 break;
1492
1493 /*
1494 * If the port has been closed, tell userspace/restart open.
1495 */
Alan Coxebd2c8f2009-09-19 13:13:28 -07001496 if (!(state->flags & UIF_INITIALIZED))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001497 break;
1498
1499 /*
1500 * If non-blocking mode is set, or CLOCAL mode is set,
1501 * we don't want to wait for the modem status lines to
1502 * indicate that the port is ready.
1503 *
1504 * Also, if the port is not enabled/configured, we want
1505 * to allow the open to succeed here. Note that we will
1506 * have set TTY_IO_ERROR for a non-existant port.
1507 */
1508 if ((filp->f_flags & O_NONBLOCK) ||
Alan Cox46d57a42009-09-19 13:13:29 -07001509 (port->tty->termios->c_cflag & CLOCAL) ||
1510 (port->tty->flags & (1 << TTY_IO_ERROR)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001511 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001512
1513 /*
1514 * Set DTR to allow modem to know we're waiting. Do
1515 * not set RTS here - we want to make sure we catch
1516 * the data from the modem.
1517 */
Alan Cox46d57a42009-09-19 13:13:29 -07001518 if (port->tty->termios->c_cflag & CBAUD)
1519 uart_set_mctrl(uport, TIOCM_DTR);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001520
1521 /*
1522 * and wait for the carrier to indicate that the
1523 * modem is ready for us.
1524 */
Alan Cox46d57a42009-09-19 13:13:29 -07001525 spin_lock_irq(&uport->lock);
1526 uport->ops->enable_ms(uport);
1527 mctrl = uport->ops->get_mctrl(uport);
1528 spin_unlock_irq(&uport->lock);
Russell Kingc5f46442005-06-29 09:42:38 +01001529 if (mctrl & TIOCM_CAR)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001530 break;
1531
Ingo Molnare2862f62006-01-13 21:37:07 +00001532 mutex_unlock(&state->mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001533 schedule();
Ingo Molnare2862f62006-01-13 21:37:07 +00001534 mutex_lock(&state->mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001535
1536 if (signal_pending(current))
1537 break;
1538 }
1539 set_current_state(TASK_RUNNING);
Alan Cox46d57a42009-09-19 13:13:29 -07001540 remove_wait_queue(&port->open_wait, &wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001541
Alan Cox91312cd2009-09-19 13:13:29 -07001542 port->count++;
Alan Cox46d57a42009-09-19 13:13:29 -07001543 port->blocked_open--;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001544
1545 if (signal_pending(current))
1546 return -ERESTARTSYS;
1547
Alan Cox46d57a42009-09-19 13:13:29 -07001548 if (!port->tty || tty_hung_up_p(filp))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001549 return -EAGAIN;
1550
1551 return 0;
1552}
1553
1554static struct uart_state *uart_get(struct uart_driver *drv, int line)
1555{
1556 struct uart_state *state;
Russell King68ac64c2006-04-30 11:13:50 +01001557 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001558
Linus Torvalds1da177e2005-04-16 15:20:36 -07001559 state = drv->state + line;
Ingo Molnare2862f62006-01-13 21:37:07 +00001560 if (mutex_lock_interruptible(&state->mutex)) {
Russell King68ac64c2006-04-30 11:13:50 +01001561 ret = -ERESTARTSYS;
1562 goto err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001563 }
1564
Alan Cox91312cd2009-09-19 13:13:29 -07001565 state->port.count++;
Alan Coxebd2c8f2009-09-19 13:13:28 -07001566 if (!state->uart_port || state->uart_port->flags & UPF_DEAD) {
Russell King68ac64c2006-04-30 11:13:50 +01001567 ret = -ENXIO;
1568 goto err_unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001569 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001570 return state;
Russell King68ac64c2006-04-30 11:13:50 +01001571
1572 err_unlock:
Alan Cox91312cd2009-09-19 13:13:29 -07001573 state->port.count--;
Russell King68ac64c2006-04-30 11:13:50 +01001574 mutex_unlock(&state->mutex);
1575 err:
1576 return ERR_PTR(ret);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001577}
1578
1579/*
Denis Cheng922f9cf2008-02-08 04:22:00 -08001580 * calls to uart_open are serialised by the BKL in
1581 * fs/char_dev.c:chrdev_open()
Linus Torvalds1da177e2005-04-16 15:20:36 -07001582 * Note that if this fails, then uart_close() _will_ be called.
1583 *
1584 * In time, we want to scrap the "opening nonpresent ports"
1585 * behaviour and implement an alternative way for setserial
1586 * to set base addresses/ports/types. This will allow us to
1587 * get rid of a certain amount of extra tests.
1588 */
1589static int uart_open(struct tty_struct *tty, struct file *filp)
1590{
1591 struct uart_driver *drv = (struct uart_driver *)tty->driver->driver_state;
1592 struct uart_state *state;
Alan Cox91312cd2009-09-19 13:13:29 -07001593 struct tty_port *port;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001594 int retval, line = tty->index;
1595
1596 BUG_ON(!kernel_locked());
Jiri Slabyeb3a1e12007-05-06 14:48:52 -07001597 pr_debug("uart_open(%d) called\n", line);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001598
1599 /*
1600 * tty->driver->num won't change, so we won't fail here with
1601 * tty->driver_data set to something non-NULL (and therefore
1602 * we won't get caught by uart_close()).
1603 */
1604 retval = -ENODEV;
1605 if (line >= tty->driver->num)
1606 goto fail;
1607
1608 /*
1609 * We take the semaphore inside uart_get to guarantee that we won't
Alan Coxebd2c8f2009-09-19 13:13:28 -07001610 * be re-entered while allocating the state structure, or while we
Linus Torvalds1da177e2005-04-16 15:20:36 -07001611 * request any IRQs that the driver may need. This also has the nice
1612 * side-effect that it delays the action of uart_hangup, so we can
Alan Coxebd2c8f2009-09-19 13:13:28 -07001613 * guarantee that state->port.tty will always contain something
1614 * reasonable.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001615 */
1616 state = uart_get(drv, line);
1617 if (IS_ERR(state)) {
1618 retval = PTR_ERR(state);
1619 goto fail;
1620 }
Alan Cox91312cd2009-09-19 13:13:29 -07001621 port = &state->port;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001622
1623 /*
1624 * Once we set tty->driver_data here, we are guaranteed that
1625 * uart_close() will decrement the driver module use count.
1626 * Any failures from here onwards should not touch the count.
1627 */
1628 tty->driver_data = state;
Alan Coxebd2c8f2009-09-19 13:13:28 -07001629 state->uart_port->state = state;
1630 tty->low_latency = (state->uart_port->flags & UPF_LOW_LATENCY) ? 1 : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001631 tty->alt_speed = 0;
Alan Cox91312cd2009-09-19 13:13:29 -07001632 port->tty = tty;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001633
1634 /*
1635 * If the port is in the middle of closing, bail out now.
1636 */
1637 if (tty_hung_up_p(filp)) {
1638 retval = -EAGAIN;
Alan Cox91312cd2009-09-19 13:13:29 -07001639 port->count--;
Ingo Molnare2862f62006-01-13 21:37:07 +00001640 mutex_unlock(&state->mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001641 goto fail;
1642 }
1643
1644 /*
1645 * Make sure the device is in D0 state.
1646 */
Alan Cox91312cd2009-09-19 13:13:29 -07001647 if (port->count == 1)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001648 uart_change_pm(state, 0);
1649
1650 /*
1651 * Start up the serial port.
1652 */
1653 retval = uart_startup(state, 0);
1654
1655 /*
1656 * If we succeeded, wait until the port is ready.
1657 */
1658 if (retval == 0)
1659 retval = uart_block_til_ready(filp, state);
Ingo Molnare2862f62006-01-13 21:37:07 +00001660 mutex_unlock(&state->mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001661
1662 /*
1663 * If this is the first open to succeed, adjust things to suit.
1664 */
Alan Coxebd2c8f2009-09-19 13:13:28 -07001665 if (retval == 0 && !(state->flags & UIF_NORMAL_ACTIVE)) {
1666 state->flags |= UIF_NORMAL_ACTIVE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001667
1668 uart_update_termios(state);
1669 }
1670
1671 fail:
1672 return retval;
1673}
1674
1675static const char *uart_type(struct uart_port *port)
1676{
1677 const char *str = NULL;
1678
1679 if (port->ops->type)
1680 str = port->ops->type(port);
1681
1682 if (!str)
1683 str = "unknown";
1684
1685 return str;
1686}
1687
1688#ifdef CONFIG_PROC_FS
1689
Alexey Dobriyand196a942009-03-31 15:19:21 -07001690static void uart_line_info(struct seq_file *m, struct uart_driver *drv, int i)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001691{
1692 struct uart_state *state = drv->state + i;
George G. Davis3689a0e2007-02-14 00:33:06 -08001693 int pm_state;
Alan Coxebd2c8f2009-09-19 13:13:28 -07001694 struct uart_port *port = state->uart_port;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001695 char stat_buf[32];
1696 unsigned int status;
Alexey Dobriyand196a942009-03-31 15:19:21 -07001697 int mmio;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001698
1699 if (!port)
Alexey Dobriyand196a942009-03-31 15:19:21 -07001700 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001701
Sergei Shtylyov6c6a2332006-09-04 00:04:20 +04001702 mmio = port->iotype >= UPIO_MEM;
Alexey Dobriyand196a942009-03-31 15:19:21 -07001703 seq_printf(m, "%d: uart:%s %s%08llX irq:%d",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001704 port->line, uart_type(port),
Sergei Shtylyov6c6a2332006-09-04 00:04:20 +04001705 mmio ? "mmio:0x" : "port:",
Josh Boyer4f640ef2007-07-23 18:43:44 -07001706 mmio ? (unsigned long long)port->mapbase
Alan Coxa46c9992008-02-08 04:18:53 -08001707 : (unsigned long long) port->iobase,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001708 port->irq);
1709
1710 if (port->type == PORT_UNKNOWN) {
Alexey Dobriyand196a942009-03-31 15:19:21 -07001711 seq_putc(m, '\n');
1712 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001713 }
1714
Alan Coxa46c9992008-02-08 04:18:53 -08001715 if (capable(CAP_SYS_ADMIN)) {
George G. Davis3689a0e2007-02-14 00:33:06 -08001716 mutex_lock(&state->mutex);
1717 pm_state = state->pm_state;
1718 if (pm_state)
1719 uart_change_pm(state, 0);
Russell Kingc5f46442005-06-29 09:42:38 +01001720 spin_lock_irq(&port->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001721 status = port->ops->get_mctrl(port);
Russell Kingc5f46442005-06-29 09:42:38 +01001722 spin_unlock_irq(&port->lock);
George G. Davis3689a0e2007-02-14 00:33:06 -08001723 if (pm_state)
1724 uart_change_pm(state, pm_state);
1725 mutex_unlock(&state->mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001726
Alexey Dobriyand196a942009-03-31 15:19:21 -07001727 seq_printf(m, " tx:%d rx:%d",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001728 port->icount.tx, port->icount.rx);
1729 if (port->icount.frame)
Alexey Dobriyand196a942009-03-31 15:19:21 -07001730 seq_printf(m, " fe:%d",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001731 port->icount.frame);
1732 if (port->icount.parity)
Alexey Dobriyand196a942009-03-31 15:19:21 -07001733 seq_printf(m, " pe:%d",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001734 port->icount.parity);
1735 if (port->icount.brk)
Alexey Dobriyand196a942009-03-31 15:19:21 -07001736 seq_printf(m, " brk:%d",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001737 port->icount.brk);
1738 if (port->icount.overrun)
Alexey Dobriyand196a942009-03-31 15:19:21 -07001739 seq_printf(m, " oe:%d",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001740 port->icount.overrun);
Alan Coxa46c9992008-02-08 04:18:53 -08001741
1742#define INFOBIT(bit, str) \
Linus Torvalds1da177e2005-04-16 15:20:36 -07001743 if (port->mctrl & (bit)) \
1744 strncat(stat_buf, (str), sizeof(stat_buf) - \
1745 strlen(stat_buf) - 2)
Alan Coxa46c9992008-02-08 04:18:53 -08001746#define STATBIT(bit, str) \
Linus Torvalds1da177e2005-04-16 15:20:36 -07001747 if (status & (bit)) \
1748 strncat(stat_buf, (str), sizeof(stat_buf) - \
1749 strlen(stat_buf) - 2)
1750
1751 stat_buf[0] = '\0';
1752 stat_buf[1] = '\0';
1753 INFOBIT(TIOCM_RTS, "|RTS");
1754 STATBIT(TIOCM_CTS, "|CTS");
1755 INFOBIT(TIOCM_DTR, "|DTR");
1756 STATBIT(TIOCM_DSR, "|DSR");
1757 STATBIT(TIOCM_CAR, "|CD");
1758 STATBIT(TIOCM_RNG, "|RI");
1759 if (stat_buf[0])
1760 stat_buf[0] = ' ';
Alan Coxa46c9992008-02-08 04:18:53 -08001761
Alexey Dobriyand196a942009-03-31 15:19:21 -07001762 seq_puts(m, stat_buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001763 }
Alexey Dobriyand196a942009-03-31 15:19:21 -07001764 seq_putc(m, '\n');
Linus Torvalds1da177e2005-04-16 15:20:36 -07001765#undef STATBIT
1766#undef INFOBIT
Linus Torvalds1da177e2005-04-16 15:20:36 -07001767}
1768
Alexey Dobriyand196a942009-03-31 15:19:21 -07001769static int uart_proc_show(struct seq_file *m, void *v)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001770{
Alexey Dobriyan833bb302009-04-02 01:30:04 +04001771 struct tty_driver *ttydrv = m->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001772 struct uart_driver *drv = ttydrv->driver_state;
Alexey Dobriyand196a942009-03-31 15:19:21 -07001773 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001774
Alexey Dobriyand196a942009-03-31 15:19:21 -07001775 seq_printf(m, "serinfo:1.0 driver%s%s revision:%s\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001776 "", "", "");
Alexey Dobriyand196a942009-03-31 15:19:21 -07001777 for (i = 0; i < drv->nr; i++)
1778 uart_line_info(m, drv, i);
1779 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001780}
Alexey Dobriyand196a942009-03-31 15:19:21 -07001781
1782static int uart_proc_open(struct inode *inode, struct file *file)
1783{
1784 return single_open(file, uart_proc_show, PDE(inode)->data);
1785}
1786
1787static const struct file_operations uart_proc_fops = {
1788 .owner = THIS_MODULE,
1789 .open = uart_proc_open,
1790 .read = seq_read,
1791 .llseek = seq_lseek,
1792 .release = single_release,
1793};
Linus Torvalds1da177e2005-04-16 15:20:36 -07001794#endif
1795
Andrew Morton4a1b5502008-03-07 15:51:16 -08001796#if defined(CONFIG_SERIAL_CORE_CONSOLE) || defined(CONFIG_CONSOLE_POLL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001797/*
Russell Kingd3587882006-03-20 20:00:09 +00001798 * uart_console_write - write a console message to a serial port
1799 * @port: the port to write the message
1800 * @s: array of characters
1801 * @count: number of characters in string to write
1802 * @write: function to write character to port
1803 */
1804void uart_console_write(struct uart_port *port, const char *s,
1805 unsigned int count,
1806 void (*putchar)(struct uart_port *, int))
1807{
1808 unsigned int i;
1809
1810 for (i = 0; i < count; i++, s++) {
1811 if (*s == '\n')
1812 putchar(port, '\r');
1813 putchar(port, *s);
1814 }
1815}
1816EXPORT_SYMBOL_GPL(uart_console_write);
1817
1818/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001819 * Check whether an invalid uart number has been specified, and
1820 * if so, search for the first available port that does have
1821 * console support.
1822 */
1823struct uart_port * __init
1824uart_get_console(struct uart_port *ports, int nr, struct console *co)
1825{
1826 int idx = co->index;
1827
1828 if (idx < 0 || idx >= nr || (ports[idx].iobase == 0 &&
1829 ports[idx].membase == NULL))
1830 for (idx = 0; idx < nr; idx++)
1831 if (ports[idx].iobase != 0 ||
1832 ports[idx].membase != NULL)
1833 break;
1834
1835 co->index = idx;
1836
1837 return ports + idx;
1838}
1839
1840/**
1841 * uart_parse_options - Parse serial port baud/parity/bits/flow contro.
1842 * @options: pointer to option string
1843 * @baud: pointer to an 'int' variable for the baud rate.
1844 * @parity: pointer to an 'int' variable for the parity.
1845 * @bits: pointer to an 'int' variable for the number of data bits.
1846 * @flow: pointer to an 'int' variable for the flow control character.
1847 *
1848 * uart_parse_options decodes a string containing the serial console
1849 * options. The format of the string is <baud><parity><bits><flow>,
1850 * eg: 115200n8r
1851 */
Jason Wesself2d937f2008-04-17 20:05:37 +02001852void
Linus Torvalds1da177e2005-04-16 15:20:36 -07001853uart_parse_options(char *options, int *baud, int *parity, int *bits, int *flow)
1854{
1855 char *s = options;
1856
1857 *baud = simple_strtoul(s, NULL, 10);
1858 while (*s >= '0' && *s <= '9')
1859 s++;
1860 if (*s)
1861 *parity = *s++;
1862 if (*s)
1863 *bits = *s++ - '0';
1864 if (*s)
1865 *flow = *s;
1866}
Jason Wesself2d937f2008-04-17 20:05:37 +02001867EXPORT_SYMBOL_GPL(uart_parse_options);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001868
1869struct baud_rates {
1870 unsigned int rate;
1871 unsigned int cflag;
1872};
1873
Arjan van de Vencb3592b2005-11-28 21:04:11 +00001874static const struct baud_rates baud_rates[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001875 { 921600, B921600 },
1876 { 460800, B460800 },
1877 { 230400, B230400 },
1878 { 115200, B115200 },
1879 { 57600, B57600 },
1880 { 38400, B38400 },
1881 { 19200, B19200 },
1882 { 9600, B9600 },
1883 { 4800, B4800 },
1884 { 2400, B2400 },
1885 { 1200, B1200 },
1886 { 0, B38400 }
1887};
1888
1889/**
1890 * uart_set_options - setup the serial console parameters
1891 * @port: pointer to the serial ports uart_port structure
1892 * @co: console pointer
1893 * @baud: baud rate
1894 * @parity: parity character - 'n' (none), 'o' (odd), 'e' (even)
1895 * @bits: number of data bits
1896 * @flow: flow control character - 'r' (rts)
1897 */
Jason Wesself2d937f2008-04-17 20:05:37 +02001898int
Linus Torvalds1da177e2005-04-16 15:20:36 -07001899uart_set_options(struct uart_port *port, struct console *co,
1900 int baud, int parity, int bits, int flow)
1901{
Alan Cox606d0992006-12-08 02:38:45 -08001902 struct ktermios termios;
Alan Cox149b36e2007-10-18 01:24:16 -07001903 static struct ktermios dummy;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001904 int i;
1905
Russell King976ecd12005-07-03 21:05:45 +01001906 /*
1907 * Ensure that the serial console lock is initialised
1908 * early.
1909 */
1910 spin_lock_init(&port->lock);
Ingo Molnar13e83592006-07-03 00:25:03 -07001911 lockdep_set_class(&port->lock, &port_lock_key);
Russell King976ecd12005-07-03 21:05:45 +01001912
Alan Cox606d0992006-12-08 02:38:45 -08001913 memset(&termios, 0, sizeof(struct ktermios));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001914
1915 termios.c_cflag = CREAD | HUPCL | CLOCAL;
1916
1917 /*
1918 * Construct a cflag setting.
1919 */
1920 for (i = 0; baud_rates[i].rate; i++)
1921 if (baud_rates[i].rate <= baud)
1922 break;
1923
1924 termios.c_cflag |= baud_rates[i].cflag;
1925
1926 if (bits == 7)
1927 termios.c_cflag |= CS7;
1928 else
1929 termios.c_cflag |= CS8;
1930
1931 switch (parity) {
1932 case 'o': case 'O':
1933 termios.c_cflag |= PARODD;
1934 /*fall through*/
1935 case 'e': case 'E':
1936 termios.c_cflag |= PARENB;
1937 break;
1938 }
1939
1940 if (flow == 'r')
1941 termios.c_cflag |= CRTSCTS;
1942
Yinghai Lu79492682007-07-15 23:37:25 -07001943 /*
1944 * some uarts on other side don't support no flow control.
1945 * So we set * DTR in host uart to make them happy
1946 */
1947 port->mctrl |= TIOCM_DTR;
1948
Alan Cox149b36e2007-10-18 01:24:16 -07001949 port->ops->set_termios(port, &termios, &dummy);
Jason Wesself2d937f2008-04-17 20:05:37 +02001950 /*
1951 * Allow the setting of the UART parameters with a NULL console
1952 * too:
1953 */
1954 if (co)
1955 co->cflag = termios.c_cflag;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001956
1957 return 0;
1958}
Jason Wesself2d937f2008-04-17 20:05:37 +02001959EXPORT_SYMBOL_GPL(uart_set_options);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001960#endif /* CONFIG_SERIAL_CORE_CONSOLE */
1961
1962static void uart_change_pm(struct uart_state *state, int pm_state)
1963{
Alan Coxebd2c8f2009-09-19 13:13:28 -07001964 struct uart_port *port = state->uart_port;
Andrew Victor1281e362006-05-16 11:28:49 +01001965
1966 if (state->pm_state != pm_state) {
1967 if (port->ops->pm)
1968 port->ops->pm(port, pm_state, state->pm_state);
1969 state->pm_state = pm_state;
1970 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001971}
1972
Guennadi Liakhovetskib3b708f2007-10-16 01:24:02 -07001973struct uart_match {
1974 struct uart_port *port;
1975 struct uart_driver *driver;
1976};
1977
1978static int serial_match_port(struct device *dev, void *data)
1979{
1980 struct uart_match *match = data;
Guennadi Liakhovetski7ca796f2008-07-04 09:59:28 -07001981 struct tty_driver *tty_drv = match->driver->tty_driver;
1982 dev_t devt = MKDEV(tty_drv->major, tty_drv->minor_start) +
1983 match->port->line;
Guennadi Liakhovetskib3b708f2007-10-16 01:24:02 -07001984
1985 return dev->devt == devt; /* Actually, only one tty per port */
1986}
1987
Linus Torvalds1da177e2005-04-16 15:20:36 -07001988int uart_suspend_port(struct uart_driver *drv, struct uart_port *port)
1989{
1990 struct uart_state *state = drv->state + port->line;
Guennadi Liakhovetskib3b708f2007-10-16 01:24:02 -07001991 struct device *tty_dev;
1992 struct uart_match match = {port, drv};
Linus Torvalds1da177e2005-04-16 15:20:36 -07001993
Ingo Molnare2862f62006-01-13 21:37:07 +00001994 mutex_lock(&state->mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001995
Andres Salomon8f4ce8c2007-10-18 03:04:50 -07001996 if (!console_suspend_enabled && uart_console(port)) {
1997 /* we're going to avoid suspending serial console */
Rafael J. Wysockie1da95a2006-09-25 23:32:57 -07001998 mutex_unlock(&state->mutex);
1999 return 0;
2000 }
Rafael J. Wysockie1da95a2006-09-25 23:32:57 -07002001
Guennadi Liakhovetskib3b708f2007-10-16 01:24:02 -07002002 tty_dev = device_find_child(port->dev, &match, serial_match_port);
2003 if (device_may_wakeup(tty_dev)) {
2004 enable_irq_wake(port->irq);
2005 put_device(tty_dev);
2006 mutex_unlock(&state->mutex);
2007 return 0;
2008 }
2009 port->suspended = 1;
2010
Alan Coxebd2c8f2009-09-19 13:13:28 -07002011 if (state->flags & UIF_INITIALIZED) {
Russell Kingba899db2006-01-21 22:45:50 +00002012 const struct uart_ops *ops = port->ops;
Russell Kingc8c6bfa2008-02-04 22:27:52 -08002013 int tries;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002014
Alan Coxebd2c8f2009-09-19 13:13:28 -07002015 state->flags = (state->flags & ~UIF_INITIALIZED)
Russell Kinga6b93a92006-10-01 17:17:40 +01002016 | UIF_SUSPENDED;
2017
Linus Torvalds1da177e2005-04-16 15:20:36 -07002018 spin_lock_irq(&port->lock);
Russell Kingb129a8c2005-08-31 10:12:14 +01002019 ops->stop_tx(port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002020 ops->set_mctrl(port, 0);
2021 ops->stop_rx(port);
2022 spin_unlock_irq(&port->lock);
2023
2024 /*
2025 * Wait for the transmitter to empty.
2026 */
Alan Coxa46c9992008-02-08 04:18:53 -08002027 for (tries = 3; !ops->tx_empty(port) && tries; tries--)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002028 msleep(10);
Russell Kingc8c6bfa2008-02-04 22:27:52 -08002029 if (!tries)
Alan Coxa46c9992008-02-08 04:18:53 -08002030 printk(KERN_ERR "%s%s%s%d: Unable to drain "
2031 "transmitter\n",
Kay Sievers4bfe0902009-01-06 10:44:37 -08002032 port->dev ? dev_name(port->dev) : "",
Russell Kingc8c6bfa2008-02-04 22:27:52 -08002033 port->dev ? ": " : "",
David S. Miller84408382008-10-13 10:45:26 +01002034 drv->dev_name,
2035 drv->tty_driver->name_base + port->line);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002036
2037 ops->shutdown(port);
2038 }
2039
2040 /*
2041 * Disable the console device before suspending.
2042 */
2043 if (uart_console(port))
2044 console_stop(port->cons);
2045
2046 uart_change_pm(state, 3);
2047
Ingo Molnare2862f62006-01-13 21:37:07 +00002048 mutex_unlock(&state->mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002049
2050 return 0;
2051}
2052
2053int uart_resume_port(struct uart_driver *drv, struct uart_port *port)
2054{
2055 struct uart_state *state = drv->state + port->line;
Arjan van de Ven03a74dc2008-05-23 13:04:49 -07002056 struct device *tty_dev;
2057 struct uart_match match = {port, drv};
Linus Torvalds1da177e2005-04-16 15:20:36 -07002058
Ingo Molnare2862f62006-01-13 21:37:07 +00002059 mutex_lock(&state->mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002060
Andres Salomon8f4ce8c2007-10-18 03:04:50 -07002061 if (!console_suspend_enabled && uart_console(port)) {
2062 /* no need to resume serial console, it wasn't suspended */
Rafael J. Wysockie1da95a2006-09-25 23:32:57 -07002063 mutex_unlock(&state->mutex);
2064 return 0;
2065 }
Rafael J. Wysockie1da95a2006-09-25 23:32:57 -07002066
Arjan van de Ven03a74dc2008-05-23 13:04:49 -07002067 tty_dev = device_find_child(port->dev, &match, serial_match_port);
2068 if (!port->suspended && device_may_wakeup(tty_dev)) {
Guennadi Liakhovetskib3b708f2007-10-16 01:24:02 -07002069 disable_irq_wake(port->irq);
2070 mutex_unlock(&state->mutex);
2071 return 0;
2072 }
2073 port->suspended = 0;
2074
Linus Torvalds1da177e2005-04-16 15:20:36 -07002075 /*
2076 * Re-enable the console device after suspending.
2077 */
2078 if (uart_console(port)) {
Alan Cox606d0992006-12-08 02:38:45 -08002079 struct ktermios termios;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002080
2081 /*
2082 * First try to use the console cflag setting.
2083 */
Alan Cox606d0992006-12-08 02:38:45 -08002084 memset(&termios, 0, sizeof(struct ktermios));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002085 termios.c_cflag = port->cons->cflag;
2086
2087 /*
2088 * If that's unset, use the tty termios setting.
2089 */
Alan Coxebd2c8f2009-09-19 13:13:28 -07002090 if (state->port.tty && termios.c_cflag == 0)
2091 termios = *state->port.tty->termios;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002092
Russell King9d778a62008-02-04 22:27:51 -08002093 uart_change_pm(state, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002094 port->ops->set_termios(port, &termios, NULL);
2095 console_start(port->cons);
2096 }
2097
Alan Coxebd2c8f2009-09-19 13:13:28 -07002098 if (state->flags & UIF_SUSPENDED) {
Russell Kingba899db2006-01-21 22:45:50 +00002099 const struct uart_ops *ops = port->ops;
Russell Kingee31b332005-11-13 15:28:51 +00002100 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002101
Russell King9d778a62008-02-04 22:27:51 -08002102 uart_change_pm(state, 0);
Alan Coxf34d7a52008-04-30 00:54:13 -07002103 spin_lock_irq(&port->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002104 ops->set_mctrl(port, 0);
Alan Coxf34d7a52008-04-30 00:54:13 -07002105 spin_unlock_irq(&port->lock);
Russell Kingee31b332005-11-13 15:28:51 +00002106 ret = ops->startup(port);
2107 if (ret == 0) {
2108 uart_change_speed(state, NULL);
2109 spin_lock_irq(&port->lock);
2110 ops->set_mctrl(port, port->mctrl);
2111 ops->start_tx(port);
2112 spin_unlock_irq(&port->lock);
Alan Coxebd2c8f2009-09-19 13:13:28 -07002113 state->flags |= UIF_INITIALIZED;
Russell Kingee31b332005-11-13 15:28:51 +00002114 } else {
2115 /*
2116 * Failed to resume - maybe hardware went away?
2117 * Clear the "initialized" flag so we won't try
2118 * to call the low level drivers shutdown method.
2119 */
Russell Kingee31b332005-11-13 15:28:51 +00002120 uart_shutdown(state);
2121 }
Russell Kinga6b93a92006-10-01 17:17:40 +01002122
Alan Coxebd2c8f2009-09-19 13:13:28 -07002123 state->flags &= ~UIF_SUSPENDED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002124 }
2125
Ingo Molnare2862f62006-01-13 21:37:07 +00002126 mutex_unlock(&state->mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002127
2128 return 0;
2129}
2130
2131static inline void
2132uart_report_port(struct uart_driver *drv, struct uart_port *port)
2133{
Russell King30b7a3b2005-09-03 15:30:21 +01002134 char address[64];
2135
Linus Torvalds1da177e2005-04-16 15:20:36 -07002136 switch (port->iotype) {
2137 case UPIO_PORT:
Andrew Morton9bde10a2008-10-13 10:35:42 +01002138 snprintf(address, sizeof(address), "I/O 0x%lx", port->iobase);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002139 break;
2140 case UPIO_HUB6:
Russell King30b7a3b2005-09-03 15:30:21 +01002141 snprintf(address, sizeof(address),
Andrew Morton9bde10a2008-10-13 10:35:42 +01002142 "I/O 0x%lx offset 0x%x", port->iobase, port->hub6);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002143 break;
2144 case UPIO_MEM:
2145 case UPIO_MEM32:
Pantelis Antoniou21c614a2005-11-06 09:07:03 +00002146 case UPIO_AU:
Zang Roy-r619113be91ec2006-06-30 02:29:58 -07002147 case UPIO_TSI:
Marc St-Jeanbeab6972007-05-06 14:48:45 -07002148 case UPIO_DWAPB:
Russell King30b7a3b2005-09-03 15:30:21 +01002149 snprintf(address, sizeof(address),
Josh Boyer4f640ef2007-07-23 18:43:44 -07002150 "MMIO 0x%llx", (unsigned long long)port->mapbase);
Russell King30b7a3b2005-09-03 15:30:21 +01002151 break;
2152 default:
2153 strlcpy(address, "*unknown*", sizeof(address));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002154 break;
2155 }
Russell King30b7a3b2005-09-03 15:30:21 +01002156
Russell King0cf669d2005-10-31 11:42:22 +00002157 printk(KERN_INFO "%s%s%s%d at %s (irq = %d) is a %s\n",
Kay Sievers4bfe0902009-01-06 10:44:37 -08002158 port->dev ? dev_name(port->dev) : "",
Russell King0cf669d2005-10-31 11:42:22 +00002159 port->dev ? ": " : "",
David S. Miller84408382008-10-13 10:45:26 +01002160 drv->dev_name,
2161 drv->tty_driver->name_base + port->line,
2162 address, port->irq, uart_type(port));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002163}
2164
2165static void
2166uart_configure_port(struct uart_driver *drv, struct uart_state *state,
2167 struct uart_port *port)
2168{
2169 unsigned int flags;
2170
2171 /*
2172 * If there isn't a port here, don't do anything further.
2173 */
2174 if (!port->iobase && !port->mapbase && !port->membase)
2175 return;
2176
2177 /*
2178 * Now do the auto configuration stuff. Note that config_port
2179 * is expected to claim the resources and map the port for us.
2180 */
David Daney8e23fcc2009-01-02 13:49:54 +00002181 flags = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002182 if (port->flags & UPF_AUTO_IRQ)
2183 flags |= UART_CONFIG_IRQ;
2184 if (port->flags & UPF_BOOT_AUTOCONF) {
David Daney8e23fcc2009-01-02 13:49:54 +00002185 if (!(port->flags & UPF_FIXED_TYPE)) {
2186 port->type = PORT_UNKNOWN;
2187 flags |= UART_CONFIG_TYPE;
2188 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002189 port->ops->config_port(port, flags);
2190 }
2191
2192 if (port->type != PORT_UNKNOWN) {
2193 unsigned long flags;
2194
2195 uart_report_port(drv, port);
2196
George G. Davis3689a0e2007-02-14 00:33:06 -08002197 /* Power up port for set_mctrl() */
2198 uart_change_pm(state, 0);
2199
Linus Torvalds1da177e2005-04-16 15:20:36 -07002200 /*
2201 * Ensure that the modem control lines are de-activated.
Yinghai Luc3e46422008-02-04 22:27:46 -08002202 * keep the DTR setting that is set in uart_set_options()
Linus Torvalds1da177e2005-04-16 15:20:36 -07002203 * We probably don't need a spinlock around this, but
2204 */
2205 spin_lock_irqsave(&port->lock, flags);
Yinghai Luc3e46422008-02-04 22:27:46 -08002206 port->ops->set_mctrl(port, port->mctrl & TIOCM_DTR);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002207 spin_unlock_irqrestore(&port->lock, flags);
2208
2209 /*
Russell King97d97222007-09-01 21:25:09 +01002210 * If this driver supports console, and it hasn't been
2211 * successfully registered yet, try to re-register it.
2212 * It may be that the port was not available.
2213 */
2214 if (port->cons && !(port->cons->flags & CON_ENABLED))
2215 register_console(port->cons);
2216
2217 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002218 * Power down all ports by default, except the
2219 * console if we have one.
2220 */
2221 if (!uart_console(port))
2222 uart_change_pm(state, 3);
2223 }
2224}
2225
Jason Wesself2d937f2008-04-17 20:05:37 +02002226#ifdef CONFIG_CONSOLE_POLL
2227
2228static int uart_poll_init(struct tty_driver *driver, int line, char *options)
2229{
2230 struct uart_driver *drv = driver->driver_state;
2231 struct uart_state *state = drv->state + line;
2232 struct uart_port *port;
2233 int baud = 9600;
2234 int bits = 8;
2235 int parity = 'n';
2236 int flow = 'n';
2237
Alan Coxebd2c8f2009-09-19 13:13:28 -07002238 if (!state || !state->uart_port)
Jason Wesself2d937f2008-04-17 20:05:37 +02002239 return -1;
2240
Alan Coxebd2c8f2009-09-19 13:13:28 -07002241 port = state->uart_port;
Jason Wesself2d937f2008-04-17 20:05:37 +02002242 if (!(port->ops->poll_get_char && port->ops->poll_put_char))
2243 return -1;
2244
2245 if (options) {
2246 uart_parse_options(options, &baud, &parity, &bits, &flow);
2247 return uart_set_options(port, NULL, baud, parity, bits, flow);
2248 }
2249
2250 return 0;
2251}
2252
2253static int uart_poll_get_char(struct tty_driver *driver, int line)
2254{
2255 struct uart_driver *drv = driver->driver_state;
2256 struct uart_state *state = drv->state + line;
2257 struct uart_port *port;
2258
Alan Coxebd2c8f2009-09-19 13:13:28 -07002259 if (!state || !state->uart_port)
Jason Wesself2d937f2008-04-17 20:05:37 +02002260 return -1;
2261
Alan Coxebd2c8f2009-09-19 13:13:28 -07002262 port = state->uart_port;
Jason Wesself2d937f2008-04-17 20:05:37 +02002263 return port->ops->poll_get_char(port);
2264}
2265
2266static void uart_poll_put_char(struct tty_driver *driver, int line, char ch)
2267{
2268 struct uart_driver *drv = driver->driver_state;
2269 struct uart_state *state = drv->state + line;
2270 struct uart_port *port;
2271
Alan Coxebd2c8f2009-09-19 13:13:28 -07002272 if (!state || !state->uart_port)
Jason Wesself2d937f2008-04-17 20:05:37 +02002273 return;
2274
Alan Coxebd2c8f2009-09-19 13:13:28 -07002275 port = state->uart_port;
Jason Wesself2d937f2008-04-17 20:05:37 +02002276 port->ops->poll_put_char(port, ch);
2277}
2278#endif
2279
Jeff Dikeb68e31d2006-10-02 02:17:18 -07002280static const struct tty_operations uart_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002281 .open = uart_open,
2282 .close = uart_close,
2283 .write = uart_write,
2284 .put_char = uart_put_char,
2285 .flush_chars = uart_flush_chars,
2286 .write_room = uart_write_room,
2287 .chars_in_buffer= uart_chars_in_buffer,
2288 .flush_buffer = uart_flush_buffer,
2289 .ioctl = uart_ioctl,
2290 .throttle = uart_throttle,
2291 .unthrottle = uart_unthrottle,
2292 .send_xchar = uart_send_xchar,
2293 .set_termios = uart_set_termios,
Alan Cox64e91592008-06-03 15:18:54 +01002294 .set_ldisc = uart_set_ldisc,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002295 .stop = uart_stop,
2296 .start = uart_start,
2297 .hangup = uart_hangup,
2298 .break_ctl = uart_break_ctl,
2299 .wait_until_sent= uart_wait_until_sent,
2300#ifdef CONFIG_PROC_FS
Alexey Dobriyand196a942009-03-31 15:19:21 -07002301 .proc_fops = &uart_proc_fops,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002302#endif
2303 .tiocmget = uart_tiocmget,
2304 .tiocmset = uart_tiocmset,
Jason Wesself2d937f2008-04-17 20:05:37 +02002305#ifdef CONFIG_CONSOLE_POLL
2306 .poll_init = uart_poll_init,
2307 .poll_get_char = uart_poll_get_char,
2308 .poll_put_char = uart_poll_put_char,
2309#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002310};
2311
2312/**
2313 * uart_register_driver - register a driver with the uart core layer
2314 * @drv: low level driver structure
2315 *
2316 * Register a uart driver with the core driver. We in turn register
2317 * with the tty layer, and initialise the core driver per-port state.
2318 *
2319 * We have a proc file in /proc/tty/driver which is named after the
2320 * normal driver.
2321 *
2322 * drv->port should be NULL, and the per-port structures should be
2323 * registered using uart_add_one_port after this call has succeeded.
2324 */
2325int uart_register_driver(struct uart_driver *drv)
2326{
2327 struct tty_driver *normal = NULL;
2328 int i, retval;
2329
2330 BUG_ON(drv->state);
2331
2332 /*
2333 * Maybe we should be using a slab cache for this, especially if
2334 * we have a large number of ports to handle.
2335 */
Burman Yan8f31bb32007-02-14 00:33:07 -08002336 drv->state = kzalloc(sizeof(struct uart_state) * drv->nr, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002337 retval = -ENOMEM;
2338 if (!drv->state)
2339 goto out;
2340
Linus Torvalds1da177e2005-04-16 15:20:36 -07002341 normal = alloc_tty_driver(drv->nr);
2342 if (!normal)
2343 goto out;
2344
2345 drv->tty_driver = normal;
2346
2347 normal->owner = drv->owner;
2348 normal->driver_name = drv->driver_name;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002349 normal->name = drv->dev_name;
2350 normal->major = drv->major;
2351 normal->minor_start = drv->minor;
2352 normal->type = TTY_DRIVER_TYPE_SERIAL;
2353 normal->subtype = SERIAL_TYPE_NORMAL;
2354 normal->init_termios = tty_std_termios;
2355 normal->init_termios.c_cflag = B9600 | CS8 | CREAD | HUPCL | CLOCAL;
Alan Cox606d0992006-12-08 02:38:45 -08002356 normal->init_termios.c_ispeed = normal->init_termios.c_ospeed = 9600;
Greg Kroah-Hartman331b8312005-06-20 21:15:16 -07002357 normal->flags = TTY_DRIVER_REAL_RAW | TTY_DRIVER_DYNAMIC_DEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002358 normal->driver_state = drv;
2359 tty_set_operations(normal, &uart_ops);
2360
2361 /*
2362 * Initialise the UART state(s).
2363 */
2364 for (i = 0; i < drv->nr; i++) {
2365 struct uart_state *state = drv->state + i;
2366
Ingo Molnare2862f62006-01-13 21:37:07 +00002367 mutex_init(&state->mutex);
Alan Coxf7519282009-01-02 13:49:21 +00002368
Alan Coxebd2c8f2009-09-19 13:13:28 -07002369 tty_port_init(&state->port);
Alan Cox5e99df52009-09-19 13:13:28 -07002370 state->port.close_delay = 500; /* .5 seconds */
2371 state->port.closing_wait = 30000; /* 30 seconds */
Alan Coxebd2c8f2009-09-19 13:13:28 -07002372 init_waitqueue_head(&state->delta_msr_wait);
2373 tasklet_init(&state->tlet, uart_tasklet_action,
Alan Coxf7519282009-01-02 13:49:21 +00002374 (unsigned long)state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002375 }
2376
2377 retval = tty_register_driver(normal);
2378 out:
2379 if (retval < 0) {
2380 put_tty_driver(normal);
2381 kfree(drv->state);
2382 }
2383 return retval;
2384}
2385
2386/**
2387 * uart_unregister_driver - remove a driver from the uart core layer
2388 * @drv: low level driver structure
2389 *
2390 * Remove all references to a driver from the core driver. The low
2391 * level driver must have removed all its ports via the
2392 * uart_remove_one_port() if it registered them with uart_add_one_port().
2393 * (ie, drv->port == NULL)
2394 */
2395void uart_unregister_driver(struct uart_driver *drv)
2396{
2397 struct tty_driver *p = drv->tty_driver;
2398 tty_unregister_driver(p);
2399 put_tty_driver(p);
2400 kfree(drv->state);
2401 drv->tty_driver = NULL;
2402}
2403
2404struct tty_driver *uart_console_device(struct console *co, int *index)
2405{
2406 struct uart_driver *p = co->data;
2407 *index = co->index;
2408 return p->tty_driver;
2409}
2410
2411/**
2412 * uart_add_one_port - attach a driver-defined port structure
2413 * @drv: pointer to the uart low level driver structure for this port
2414 * @port: uart port structure to use for this port.
2415 *
2416 * This allows the driver to register its own uart_port structure
2417 * with the core driver. The main purpose is to allow the low
2418 * level uart drivers to expand uart_port, rather than having yet
2419 * more levels of structures.
2420 */
2421int uart_add_one_port(struct uart_driver *drv, struct uart_port *port)
2422{
2423 struct uart_state *state;
2424 int ret = 0;
Guennadi Liakhovetskib3b708f2007-10-16 01:24:02 -07002425 struct device *tty_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002426
2427 BUG_ON(in_interrupt());
2428
2429 if (port->line >= drv->nr)
2430 return -EINVAL;
2431
2432 state = drv->state + port->line;
2433
Arjan van de Venf392ecf2006-01-12 18:44:32 +00002434 mutex_lock(&port_mutex);
Russell King68ac64c2006-04-30 11:13:50 +01002435 mutex_lock(&state->mutex);
Alan Coxebd2c8f2009-09-19 13:13:28 -07002436 if (state->uart_port) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002437 ret = -EINVAL;
2438 goto out;
2439 }
2440
Alan Coxebd2c8f2009-09-19 13:13:28 -07002441 state->uart_port = port;
Russell King97d97222007-09-01 21:25:09 +01002442 state->pm_state = -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002443
Linus Torvalds1da177e2005-04-16 15:20:36 -07002444 port->cons = drv->cons;
Alan Coxebd2c8f2009-09-19 13:13:28 -07002445 port->state = state;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002446
Russell King976ecd12005-07-03 21:05:45 +01002447 /*
2448 * If this port is a console, then the spinlock is already
2449 * initialised.
2450 */
Ingo Molnar13e83592006-07-03 00:25:03 -07002451 if (!(uart_console(port) && (port->cons->flags & CON_ENABLED))) {
Russell King976ecd12005-07-03 21:05:45 +01002452 spin_lock_init(&port->lock);
Ingo Molnar13e83592006-07-03 00:25:03 -07002453 lockdep_set_class(&port->lock, &port_lock_key);
2454 }
Russell King976ecd12005-07-03 21:05:45 +01002455
Linus Torvalds1da177e2005-04-16 15:20:36 -07002456 uart_configure_port(drv, state, port);
2457
2458 /*
2459 * Register the port whether it's detected or not. This allows
2460 * setserial to be used to alter this ports parameters.
2461 */
Guennadi Liakhovetskib3b708f2007-10-16 01:24:02 -07002462 tty_dev = tty_register_device(drv->tty_driver, port->line, port->dev);
2463 if (likely(!IS_ERR(tty_dev))) {
Alan Stern74081f82008-03-19 22:35:13 +01002464 device_init_wakeup(tty_dev, 1);
Guennadi Liakhovetskib3b708f2007-10-16 01:24:02 -07002465 device_set_wakeup_enable(tty_dev, 0);
2466 } else
2467 printk(KERN_ERR "Cannot register tty device on line %d\n",
2468 port->line);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002469
2470 /*
Russell King68ac64c2006-04-30 11:13:50 +01002471 * Ensure UPF_DEAD is not set.
2472 */
2473 port->flags &= ~UPF_DEAD;
2474
Linus Torvalds1da177e2005-04-16 15:20:36 -07002475 out:
Russell King68ac64c2006-04-30 11:13:50 +01002476 mutex_unlock(&state->mutex);
Arjan van de Venf392ecf2006-01-12 18:44:32 +00002477 mutex_unlock(&port_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002478
2479 return ret;
2480}
2481
2482/**
2483 * uart_remove_one_port - detach a driver defined port structure
2484 * @drv: pointer to the uart low level driver structure for this port
2485 * @port: uart port structure for this port
2486 *
2487 * This unhooks (and hangs up) the specified port structure from the
2488 * core driver. No further calls will be made to the low-level code
2489 * for this port.
2490 */
2491int uart_remove_one_port(struct uart_driver *drv, struct uart_port *port)
2492{
2493 struct uart_state *state = drv->state + port->line;
2494
2495 BUG_ON(in_interrupt());
2496
Alan Coxebd2c8f2009-09-19 13:13:28 -07002497 if (state->uart_port != port)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002498 printk(KERN_ALERT "Removing wrong port: %p != %p\n",
Alan Coxebd2c8f2009-09-19 13:13:28 -07002499 state->uart_port, port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002500
Arjan van de Venf392ecf2006-01-12 18:44:32 +00002501 mutex_lock(&port_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002502
2503 /*
Russell King68ac64c2006-04-30 11:13:50 +01002504 * Mark the port "dead" - this prevents any opens from
2505 * succeeding while we shut down the port.
2506 */
2507 mutex_lock(&state->mutex);
2508 port->flags |= UPF_DEAD;
2509 mutex_unlock(&state->mutex);
2510
2511 /*
Greg Kroah-Hartmanaa4148c2005-06-20 21:15:16 -07002512 * Remove the devices from the tty layer
Linus Torvalds1da177e2005-04-16 15:20:36 -07002513 */
2514 tty_unregister_device(drv->tty_driver, port->line);
2515
Alan Coxebd2c8f2009-09-19 13:13:28 -07002516 if (state->port.tty)
2517 tty_vhangup(state->port.tty);
Russell King68ac64c2006-04-30 11:13:50 +01002518
2519 /*
Russell King68ac64c2006-04-30 11:13:50 +01002520 * Free the port IO and memory resources, if any.
2521 */
2522 if (port->type != PORT_UNKNOWN)
2523 port->ops->release_port(port);
2524
2525 /*
2526 * Indicate that there isn't a port here anymore.
2527 */
2528 port->type = PORT_UNKNOWN;
2529
2530 /*
2531 * Kill the tasklet, and free resources.
2532 */
Alan Coxebd2c8f2009-09-19 13:13:28 -07002533 tasklet_kill(&state->tlet);
Russell King68ac64c2006-04-30 11:13:50 +01002534
Alan Coxebd2c8f2009-09-19 13:13:28 -07002535 state->uart_port = NULL;
Arjan van de Venf392ecf2006-01-12 18:44:32 +00002536 mutex_unlock(&port_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002537
2538 return 0;
2539}
2540
2541/*
2542 * Are the two ports equivalent?
2543 */
2544int uart_match_port(struct uart_port *port1, struct uart_port *port2)
2545{
2546 if (port1->iotype != port2->iotype)
2547 return 0;
2548
2549 switch (port1->iotype) {
2550 case UPIO_PORT:
2551 return (port1->iobase == port2->iobase);
2552 case UPIO_HUB6:
2553 return (port1->iobase == port2->iobase) &&
2554 (port1->hub6 == port2->hub6);
2555 case UPIO_MEM:
Sergei Shtylyovd21b55d2006-08-28 19:49:03 +04002556 case UPIO_MEM32:
2557 case UPIO_AU:
2558 case UPIO_TSI:
Marc St-Jeanbeab6972007-05-06 14:48:45 -07002559 case UPIO_DWAPB:
Benjamin Herrenschmidt1624f002006-01-04 18:09:44 +00002560 return (port1->mapbase == port2->mapbase);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002561 }
2562 return 0;
2563}
2564EXPORT_SYMBOL(uart_match_port);
2565
Linus Torvalds1da177e2005-04-16 15:20:36 -07002566EXPORT_SYMBOL(uart_write_wakeup);
2567EXPORT_SYMBOL(uart_register_driver);
2568EXPORT_SYMBOL(uart_unregister_driver);
2569EXPORT_SYMBOL(uart_suspend_port);
2570EXPORT_SYMBOL(uart_resume_port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002571EXPORT_SYMBOL(uart_add_one_port);
2572EXPORT_SYMBOL(uart_remove_one_port);
2573
2574MODULE_DESCRIPTION("Serial driver core");
2575MODULE_LICENSE("GPL");