blob: dcc72444e8e7015e904c70d726a83873dbeff21e [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * linux/drivers/char/core.c
3 *
4 * Driver core for serial ports
5 *
6 * Based on drivers/char/serial.c, by Linus Torvalds, Theodore Ts'o.
7 *
8 * Copyright 1999 ARM Limited
9 * Copyright (C) 2000-2001 Deep Blue Solutions Ltd.
10 *
11 * This program is free software; you can redistribute it and/or modify
12 * it under the terms of the GNU General Public License as published by
13 * the Free Software Foundation; either version 2 of the License, or
14 * (at your option) any later version.
15 *
16 * This program is distributed in the hope that it will be useful,
17 * but WITHOUT ANY WARRANTY; without even the implied warranty of
18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 * GNU General Public License for more details.
20 *
21 * You should have received a copy of the GNU General Public License
22 * along with this program; if not, write to the Free Software
23 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
24 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070025#include <linux/module.h>
26#include <linux/tty.h>
27#include <linux/slab.h>
28#include <linux/init.h>
29#include <linux/console.h>
Alexey Dobriyand196a942009-03-31 15:19:21 -070030#include <linux/proc_fs.h>
31#include <linux/seq_file.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070032#include <linux/smp_lock.h>
33#include <linux/device.h>
34#include <linux/serial.h> /* for serial_state and serial_icounter_struct */
Alan Coxccce6de2009-09-19 13:13:30 -070035#include <linux/serial_core.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070036#include <linux/delay.h>
Arjan van de Venf392ecf2006-01-12 18:44:32 +000037#include <linux/mutex.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070038
39#include <asm/irq.h>
40#include <asm/uaccess.h>
41
Linus Torvalds1da177e2005-04-16 15:20:36 -070042/*
43 * This is used to lock changes in serial line configuration.
44 */
Arjan van de Venf392ecf2006-01-12 18:44:32 +000045static DEFINE_MUTEX(port_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -070046
Ingo Molnar13e83592006-07-03 00:25:03 -070047/*
48 * lockdep: port->lock is initialized in two places, but we
49 * want only one lock-class:
50 */
51static struct lock_class_key port_lock_key;
52
Linus Torvalds1da177e2005-04-16 15:20:36 -070053#define HIGH_BITS_OFFSET ((sizeof(long)-sizeof(int))*8)
54
Linus Torvalds1da177e2005-04-16 15:20:36 -070055#ifdef CONFIG_SERIAL_CORE_CONSOLE
56#define uart_console(port) ((port)->cons && (port)->cons->index == (port)->line)
57#else
58#define uart_console(port) (0)
59#endif
60
Alan Coxa46c9992008-02-08 04:18:53 -080061static void uart_change_speed(struct uart_state *state,
62 struct ktermios *old_termios);
Linus Torvalds1da177e2005-04-16 15:20:36 -070063static void uart_wait_until_sent(struct tty_struct *tty, int timeout);
64static void uart_change_pm(struct uart_state *state, int pm_state);
65
66/*
67 * This routine is used by the interrupt handler to schedule processing in
68 * the software interrupt portion of the driver.
69 */
70void uart_write_wakeup(struct uart_port *port)
71{
Alan Coxebd2c8f2009-09-19 13:13:28 -070072 struct uart_state *state = port->state;
Pavel Machekd5f735e2006-03-07 21:55:20 -080073 /*
74 * This means you called this function _after_ the port was
75 * closed. No cookie for you.
76 */
Alan Coxebd2c8f2009-09-19 13:13:28 -070077 BUG_ON(!state);
78 tasklet_schedule(&state->tlet);
Linus Torvalds1da177e2005-04-16 15:20:36 -070079}
80
81static void uart_stop(struct tty_struct *tty)
82{
83 struct uart_state *state = tty->driver_data;
Alan Coxebd2c8f2009-09-19 13:13:28 -070084 struct uart_port *port = state->uart_port;
Linus Torvalds1da177e2005-04-16 15:20:36 -070085 unsigned long flags;
86
87 spin_lock_irqsave(&port->lock, flags);
Russell Kingb129a8c2005-08-31 10:12:14 +010088 port->ops->stop_tx(port);
Linus Torvalds1da177e2005-04-16 15:20:36 -070089 spin_unlock_irqrestore(&port->lock, flags);
90}
91
92static void __uart_start(struct tty_struct *tty)
93{
94 struct uart_state *state = tty->driver_data;
Alan Coxebd2c8f2009-09-19 13:13:28 -070095 struct uart_port *port = state->uart_port;
Linus Torvalds1da177e2005-04-16 15:20:36 -070096
Alan Coxebd2c8f2009-09-19 13:13:28 -070097 if (!uart_circ_empty(&state->xmit) && state->xmit.buf &&
Linus Torvalds1da177e2005-04-16 15:20:36 -070098 !tty->stopped && !tty->hw_stopped)
Russell Kingb129a8c2005-08-31 10:12:14 +010099 port->ops->start_tx(port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100}
101
102static void uart_start(struct tty_struct *tty)
103{
104 struct uart_state *state = tty->driver_data;
Alan Coxebd2c8f2009-09-19 13:13:28 -0700105 struct uart_port *port = state->uart_port;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106 unsigned long flags;
107
108 spin_lock_irqsave(&port->lock, flags);
109 __uart_start(tty);
110 spin_unlock_irqrestore(&port->lock, flags);
111}
112
113static void uart_tasklet_action(unsigned long data)
114{
115 struct uart_state *state = (struct uart_state *)data;
Alan Coxebd2c8f2009-09-19 13:13:28 -0700116 tty_wakeup(state->port.tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117}
118
119static inline void
120uart_update_mctrl(struct uart_port *port, unsigned int set, unsigned int clear)
121{
122 unsigned long flags;
123 unsigned int old;
124
125 spin_lock_irqsave(&port->lock, flags);
126 old = port->mctrl;
127 port->mctrl = (old & ~clear) | set;
128 if (old != port->mctrl)
129 port->ops->set_mctrl(port, port->mctrl);
130 spin_unlock_irqrestore(&port->lock, flags);
131}
132
Alan Coxa46c9992008-02-08 04:18:53 -0800133#define uart_set_mctrl(port, set) uart_update_mctrl(port, set, 0)
134#define uart_clear_mctrl(port, clear) uart_update_mctrl(port, 0, clear)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135
136/*
137 * Startup the port. This will be called once per open. All calls
Alan Coxdf4f4dd2008-07-16 21:53:50 +0100138 * will be serialised by the per-port mutex.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139 */
140static int uart_startup(struct uart_state *state, int init_hw)
141{
Alan Cox46d57a42009-09-19 13:13:29 -0700142 struct uart_port *uport = state->uart_port;
143 struct tty_port *port = &state->port;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144 unsigned long page;
145 int retval = 0;
146
Alan Coxccce6de2009-09-19 13:13:30 -0700147 if (port->flags & ASYNC_INITIALIZED)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148 return 0;
149
150 /*
151 * Set the TTY IO error marker - we will only clear this
152 * once we have successfully opened the port. Also set
153 * up the tty->alt_speed kludge
154 */
Alan Cox46d57a42009-09-19 13:13:29 -0700155 set_bit(TTY_IO_ERROR, &port->tty->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156
Alan Cox46d57a42009-09-19 13:13:29 -0700157 if (uport->type == PORT_UNKNOWN)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158 return 0;
159
160 /*
161 * Initialise and allocate the transmit and temporary
162 * buffer.
163 */
Alan Coxebd2c8f2009-09-19 13:13:28 -0700164 if (!state->xmit.buf) {
Alan Coxdf4f4dd2008-07-16 21:53:50 +0100165 /* This is protected by the per port mutex */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166 page = get_zeroed_page(GFP_KERNEL);
167 if (!page)
168 return -ENOMEM;
169
Alan Coxebd2c8f2009-09-19 13:13:28 -0700170 state->xmit.buf = (unsigned char *) page;
171 uart_circ_clear(&state->xmit);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172 }
173
Alan Cox46d57a42009-09-19 13:13:29 -0700174 retval = uport->ops->startup(uport);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175 if (retval == 0) {
176 if (init_hw) {
177 /*
178 * Initialise the hardware port settings.
179 */
180 uart_change_speed(state, NULL);
181
182 /*
183 * Setup the RTS and DTR signals once the
184 * port is open and ready to respond.
185 */
Alan Cox46d57a42009-09-19 13:13:29 -0700186 if (port->tty->termios->c_cflag & CBAUD)
187 uart_set_mctrl(uport, TIOCM_RTS | TIOCM_DTR);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188 }
189
Alan Coxccce6de2009-09-19 13:13:30 -0700190 if (port->flags & ASYNC_CTS_FLOW) {
Alan Cox46d57a42009-09-19 13:13:29 -0700191 spin_lock_irq(&uport->lock);
192 if (!(uport->ops->get_mctrl(uport) & TIOCM_CTS))
193 port->tty->hw_stopped = 1;
194 spin_unlock_irq(&uport->lock);
Russell King0dd7a1a2005-06-29 18:40:53 +0100195 }
196
Alan Coxccce6de2009-09-19 13:13:30 -0700197 set_bit(ASYNCB_INITIALIZED, &port->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198
Alan Cox46d57a42009-09-19 13:13:29 -0700199 clear_bit(TTY_IO_ERROR, &port->tty->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200 }
201
202 if (retval && capable(CAP_SYS_ADMIN))
203 retval = 0;
204
205 return retval;
206}
207
208/*
209 * This routine will shutdown a serial port; interrupts are disabled, and
210 * DTR is dropped if the hangup on close termio flag is on. Calls to
211 * uart_shutdown are serialised by the per-port semaphore.
212 */
213static void uart_shutdown(struct uart_state *state)
214{
Alan Coxccce6de2009-09-19 13:13:30 -0700215 struct uart_port *uport = state->uart_port;
Alan Coxbdc04e32009-09-19 13:13:31 -0700216 struct tty_port *port = &state->port;
217 struct tty_struct *tty = port->tty;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218
Russell Kingee31b332005-11-13 15:28:51 +0000219 /*
220 * Set the TTY IO error marker
221 */
Alan Coxf7519282009-01-02 13:49:21 +0000222 if (tty)
223 set_bit(TTY_IO_ERROR, &tty->flags);
Russell Kingee31b332005-11-13 15:28:51 +0000224
Alan Coxbdc04e32009-09-19 13:13:31 -0700225 if (test_and_clear_bit(ASYNCB_INITIALIZED, &port->flags)) {
Russell Kingee31b332005-11-13 15:28:51 +0000226 /*
227 * Turn off DTR and RTS early.
228 */
Alan Coxf7519282009-01-02 13:49:21 +0000229 if (!tty || (tty->termios->c_cflag & HUPCL))
Alan Coxccce6de2009-09-19 13:13:30 -0700230 uart_clear_mctrl(uport, TIOCM_DTR | TIOCM_RTS);
Russell Kingee31b332005-11-13 15:28:51 +0000231
232 /*
233 * clear delta_msr_wait queue to avoid mem leaks: we may free
234 * the irq here so the queue might never be woken up. Note
235 * that we won't end up waiting on delta_msr_wait again since
236 * any outstanding file descriptors should be pointing at
237 * hung_up_tty_fops now.
238 */
Alan Coxbdc04e32009-09-19 13:13:31 -0700239 wake_up_interruptible(&port->delta_msr_wait);
Russell Kingee31b332005-11-13 15:28:51 +0000240
241 /*
242 * Free the IRQ and disable the port.
243 */
Alan Coxccce6de2009-09-19 13:13:30 -0700244 uport->ops->shutdown(uport);
Russell Kingee31b332005-11-13 15:28:51 +0000245
246 /*
247 * Ensure that the IRQ handler isn't running on another CPU.
248 */
Alan Coxccce6de2009-09-19 13:13:30 -0700249 synchronize_irq(uport->irq);
Russell Kingee31b332005-11-13 15:28:51 +0000250 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700251
252 /*
Russell Kingee31b332005-11-13 15:28:51 +0000253 * kill off our tasklet
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254 */
Alan Coxebd2c8f2009-09-19 13:13:28 -0700255 tasklet_kill(&state->tlet);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700256
257 /*
258 * Free the transmit buffer page.
259 */
Alan Coxebd2c8f2009-09-19 13:13:28 -0700260 if (state->xmit.buf) {
261 free_page((unsigned long)state->xmit.buf);
262 state->xmit.buf = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700264}
265
266/**
267 * uart_update_timeout - update per-port FIFO timeout.
268 * @port: uart_port structure describing the port
269 * @cflag: termios cflag value
270 * @baud: speed of the port
271 *
272 * Set the port FIFO timeout value. The @cflag value should
273 * reflect the actual hardware settings.
274 */
275void
276uart_update_timeout(struct uart_port *port, unsigned int cflag,
277 unsigned int baud)
278{
279 unsigned int bits;
280
281 /* byte size and parity */
282 switch (cflag & CSIZE) {
283 case CS5:
284 bits = 7;
285 break;
286 case CS6:
287 bits = 8;
288 break;
289 case CS7:
290 bits = 9;
291 break;
292 default:
293 bits = 10;
Alan Coxa46c9992008-02-08 04:18:53 -0800294 break; /* CS8 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295 }
296
297 if (cflag & CSTOPB)
298 bits++;
299 if (cflag & PARENB)
300 bits++;
301
302 /*
303 * The total number of bits to be transmitted in the fifo.
304 */
305 bits = bits * port->fifosize;
306
307 /*
308 * Figure the timeout to send the above number of bits.
309 * Add .02 seconds of slop
310 */
311 port->timeout = (HZ * bits) / baud + HZ/50;
312}
313
314EXPORT_SYMBOL(uart_update_timeout);
315
316/**
317 * uart_get_baud_rate - return baud rate for a particular port
318 * @port: uart_port structure describing the port in question.
319 * @termios: desired termios settings.
320 * @old: old termios (or NULL)
321 * @min: minimum acceptable baud rate
322 * @max: maximum acceptable baud rate
323 *
324 * Decode the termios structure into a numeric baud rate,
325 * taking account of the magic 38400 baud rate (with spd_*
326 * flags), and mapping the %B0 rate to 9600 baud.
327 *
328 * If the new baud rate is invalid, try the old termios setting.
329 * If it's still invalid, we try 9600 baud.
330 *
331 * Update the @termios structure to reflect the baud rate
Alan Coxeb424fd2008-04-28 02:14:07 -0700332 * we're actually going to be using. Don't do this for the case
333 * where B0 is requested ("hang up").
Linus Torvalds1da177e2005-04-16 15:20:36 -0700334 */
335unsigned int
Alan Cox606d0992006-12-08 02:38:45 -0800336uart_get_baud_rate(struct uart_port *port, struct ktermios *termios,
337 struct ktermios *old, unsigned int min, unsigned int max)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338{
339 unsigned int try, baud, altbaud = 38400;
Alan Coxeb424fd2008-04-28 02:14:07 -0700340 int hung_up = 0;
Russell King0077d452006-01-21 23:03:28 +0000341 upf_t flags = port->flags & UPF_SPD_MASK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700342
343 if (flags == UPF_SPD_HI)
344 altbaud = 57600;
345 if (flags == UPF_SPD_VHI)
346 altbaud = 115200;
347 if (flags == UPF_SPD_SHI)
348 altbaud = 230400;
349 if (flags == UPF_SPD_WARP)
350 altbaud = 460800;
351
352 for (try = 0; try < 2; try++) {
353 baud = tty_termios_baud_rate(termios);
354
355 /*
356 * The spd_hi, spd_vhi, spd_shi, spd_warp kludge...
357 * Die! Die! Die!
358 */
359 if (baud == 38400)
360 baud = altbaud;
361
362 /*
363 * Special case: B0 rate.
364 */
Alan Coxeb424fd2008-04-28 02:14:07 -0700365 if (baud == 0) {
366 hung_up = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367 baud = 9600;
Alan Coxeb424fd2008-04-28 02:14:07 -0700368 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700369
370 if (baud >= min && baud <= max)
371 return baud;
372
373 /*
374 * Oops, the quotient was zero. Try again with
375 * the old baud rate if possible.
376 */
377 termios->c_cflag &= ~CBAUD;
378 if (old) {
Alan Cox6d4d67b2008-02-04 22:27:53 -0800379 baud = tty_termios_baud_rate(old);
Alan Coxeb424fd2008-04-28 02:14:07 -0700380 if (!hung_up)
381 tty_termios_encode_baud_rate(termios,
382 baud, baud);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383 old = NULL;
384 continue;
385 }
386
387 /*
388 * As a last resort, if the quotient is zero,
389 * default to 9600 bps
390 */
Alan Coxeb424fd2008-04-28 02:14:07 -0700391 if (!hung_up)
392 tty_termios_encode_baud_rate(termios, 9600, 9600);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700393 }
394
395 return 0;
396}
397
398EXPORT_SYMBOL(uart_get_baud_rate);
399
400/**
401 * uart_get_divisor - return uart clock divisor
402 * @port: uart_port structure describing the port.
403 * @baud: desired baud rate
404 *
405 * Calculate the uart clock divisor for the port.
406 */
407unsigned int
408uart_get_divisor(struct uart_port *port, unsigned int baud)
409{
410 unsigned int quot;
411
412 /*
413 * Old custom speed handling.
414 */
415 if (baud == 38400 && (port->flags & UPF_SPD_MASK) == UPF_SPD_CUST)
416 quot = port->custom_divisor;
417 else
418 quot = (port->uartclk + (8 * baud)) / (16 * baud);
419
420 return quot;
421}
422
423EXPORT_SYMBOL(uart_get_divisor);
424
Alan Cox23d22ce2008-04-30 00:54:11 -0700425/* FIXME: Consistent locking policy */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700426static void
Alan Cox606d0992006-12-08 02:38:45 -0800427uart_change_speed(struct uart_state *state, struct ktermios *old_termios)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428{
Alan Coxccce6de2009-09-19 13:13:30 -0700429 struct tty_port *port = &state->port;
430 struct tty_struct *tty = port->tty;
431 struct uart_port *uport = state->uart_port;
Alan Cox606d0992006-12-08 02:38:45 -0800432 struct ktermios *termios;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433
434 /*
435 * If we have no tty, termios, or the port does not exist,
436 * then we can't set the parameters for this port.
437 */
Alan Coxccce6de2009-09-19 13:13:30 -0700438 if (!tty || !tty->termios || uport->type == PORT_UNKNOWN)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700439 return;
440
441 termios = tty->termios;
442
443 /*
444 * Set flags based on termios cflag
445 */
446 if (termios->c_cflag & CRTSCTS)
Alan Coxccce6de2009-09-19 13:13:30 -0700447 set_bit(ASYNCB_CTS_FLOW, &port->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700448 else
Alan Coxccce6de2009-09-19 13:13:30 -0700449 clear_bit(ASYNCB_CTS_FLOW, &port->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450
451 if (termios->c_cflag & CLOCAL)
Alan Coxccce6de2009-09-19 13:13:30 -0700452 clear_bit(ASYNCB_CHECK_CD, &port->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453 else
Alan Coxccce6de2009-09-19 13:13:30 -0700454 set_bit(ASYNCB_CHECK_CD, &port->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455
Alan Coxccce6de2009-09-19 13:13:30 -0700456 uport->ops->set_termios(uport, termios, old_termios);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700457}
458
Alan Cox23d22ce2008-04-30 00:54:11 -0700459static inline int
Linus Torvalds1da177e2005-04-16 15:20:36 -0700460__uart_put_char(struct uart_port *port, struct circ_buf *circ, unsigned char c)
461{
462 unsigned long flags;
Alan Cox23d22ce2008-04-30 00:54:11 -0700463 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700464
465 if (!circ->buf)
Alan Cox23d22ce2008-04-30 00:54:11 -0700466 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700467
468 spin_lock_irqsave(&port->lock, flags);
469 if (uart_circ_chars_free(circ) != 0) {
470 circ->buf[circ->head] = c;
471 circ->head = (circ->head + 1) & (UART_XMIT_SIZE - 1);
Alan Cox23d22ce2008-04-30 00:54:11 -0700472 ret = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700473 }
474 spin_unlock_irqrestore(&port->lock, flags);
Alan Cox23d22ce2008-04-30 00:54:11 -0700475 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700476}
477
Alan Cox23d22ce2008-04-30 00:54:11 -0700478static int uart_put_char(struct tty_struct *tty, unsigned char ch)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700479{
480 struct uart_state *state = tty->driver_data;
481
Alan Coxebd2c8f2009-09-19 13:13:28 -0700482 return __uart_put_char(state->uart_port, &state->xmit, ch);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483}
484
485static void uart_flush_chars(struct tty_struct *tty)
486{
487 uart_start(tty);
488}
489
490static int
Pavel Machekd5f735e2006-03-07 21:55:20 -0800491uart_write(struct tty_struct *tty, const unsigned char *buf, int count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700492{
493 struct uart_state *state = tty->driver_data;
Pavel Machekd5f735e2006-03-07 21:55:20 -0800494 struct uart_port *port;
495 struct circ_buf *circ;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700496 unsigned long flags;
497 int c, ret = 0;
498
Pavel Machekd5f735e2006-03-07 21:55:20 -0800499 /*
500 * This means you called this function _after_ the port was
501 * closed. No cookie for you.
502 */
Alan Coxf7519282009-01-02 13:49:21 +0000503 if (!state) {
Pavel Machekd5f735e2006-03-07 21:55:20 -0800504 WARN_ON(1);
505 return -EL3HLT;
506 }
507
Alan Coxebd2c8f2009-09-19 13:13:28 -0700508 port = state->uart_port;
509 circ = &state->xmit;
Pavel Machekd5f735e2006-03-07 21:55:20 -0800510
Linus Torvalds1da177e2005-04-16 15:20:36 -0700511 if (!circ->buf)
512 return 0;
513
514 spin_lock_irqsave(&port->lock, flags);
515 while (1) {
516 c = CIRC_SPACE_TO_END(circ->head, circ->tail, UART_XMIT_SIZE);
517 if (count < c)
518 c = count;
519 if (c <= 0)
520 break;
521 memcpy(circ->buf + circ->head, buf, c);
522 circ->head = (circ->head + c) & (UART_XMIT_SIZE - 1);
523 buf += c;
524 count -= c;
525 ret += c;
526 }
527 spin_unlock_irqrestore(&port->lock, flags);
528
529 uart_start(tty);
530 return ret;
531}
532
533static int uart_write_room(struct tty_struct *tty)
534{
535 struct uart_state *state = tty->driver_data;
Alan Coxf34d7a52008-04-30 00:54:13 -0700536 unsigned long flags;
537 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700538
Alan Coxebd2c8f2009-09-19 13:13:28 -0700539 spin_lock_irqsave(&state->uart_port->lock, flags);
540 ret = uart_circ_chars_free(&state->xmit);
541 spin_unlock_irqrestore(&state->uart_port->lock, flags);
Alan Coxf34d7a52008-04-30 00:54:13 -0700542 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543}
544
545static int uart_chars_in_buffer(struct tty_struct *tty)
546{
547 struct uart_state *state = tty->driver_data;
Alan Coxf34d7a52008-04-30 00:54:13 -0700548 unsigned long flags;
549 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700550
Alan Coxebd2c8f2009-09-19 13:13:28 -0700551 spin_lock_irqsave(&state->uart_port->lock, flags);
552 ret = uart_circ_chars_pending(&state->xmit);
553 spin_unlock_irqrestore(&state->uart_port->lock, flags);
Alan Coxf34d7a52008-04-30 00:54:13 -0700554 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700555}
556
557static void uart_flush_buffer(struct tty_struct *tty)
558{
559 struct uart_state *state = tty->driver_data;
Tetsuo Handa55d7b682008-05-06 20:42:27 -0700560 struct uart_port *port;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700561 unsigned long flags;
562
Pavel Machekd5f735e2006-03-07 21:55:20 -0800563 /*
564 * This means you called this function _after_ the port was
565 * closed. No cookie for you.
566 */
Alan Coxf7519282009-01-02 13:49:21 +0000567 if (!state) {
Pavel Machekd5f735e2006-03-07 21:55:20 -0800568 WARN_ON(1);
569 return;
570 }
571
Alan Coxebd2c8f2009-09-19 13:13:28 -0700572 port = state->uart_port;
Jiri Slabyeb3a1e12007-05-06 14:48:52 -0700573 pr_debug("uart_flush_buffer(%d) called\n", tty->index);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700574
575 spin_lock_irqsave(&port->lock, flags);
Alan Coxebd2c8f2009-09-19 13:13:28 -0700576 uart_circ_clear(&state->xmit);
Haavard Skinnemoen6bb0e3a2008-07-16 21:52:36 +0100577 if (port->ops->flush_buffer)
578 port->ops->flush_buffer(port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700579 spin_unlock_irqrestore(&port->lock, flags);
580 tty_wakeup(tty);
581}
582
583/*
584 * This function is used to send a high-priority XON/XOFF character to
585 * the device
586 */
587static void uart_send_xchar(struct tty_struct *tty, char ch)
588{
589 struct uart_state *state = tty->driver_data;
Alan Coxebd2c8f2009-09-19 13:13:28 -0700590 struct uart_port *port = state->uart_port;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700591 unsigned long flags;
592
593 if (port->ops->send_xchar)
594 port->ops->send_xchar(port, ch);
595 else {
596 port->x_char = ch;
597 if (ch) {
598 spin_lock_irqsave(&port->lock, flags);
Russell Kingb129a8c2005-08-31 10:12:14 +0100599 port->ops->start_tx(port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700600 spin_unlock_irqrestore(&port->lock, flags);
601 }
602 }
603}
604
605static void uart_throttle(struct tty_struct *tty)
606{
607 struct uart_state *state = tty->driver_data;
608
609 if (I_IXOFF(tty))
610 uart_send_xchar(tty, STOP_CHAR(tty));
611
612 if (tty->termios->c_cflag & CRTSCTS)
Alan Coxebd2c8f2009-09-19 13:13:28 -0700613 uart_clear_mctrl(state->uart_port, TIOCM_RTS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700614}
615
616static void uart_unthrottle(struct tty_struct *tty)
617{
618 struct uart_state *state = tty->driver_data;
Alan Coxebd2c8f2009-09-19 13:13:28 -0700619 struct uart_port *port = state->uart_port;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700620
621 if (I_IXOFF(tty)) {
622 if (port->x_char)
623 port->x_char = 0;
624 else
625 uart_send_xchar(tty, START_CHAR(tty));
626 }
627
628 if (tty->termios->c_cflag & CRTSCTS)
629 uart_set_mctrl(port, TIOCM_RTS);
630}
631
632static int uart_get_info(struct uart_state *state,
633 struct serial_struct __user *retinfo)
634{
Alan Coxa2bceae2009-09-19 13:13:31 -0700635 struct uart_port *uport = state->uart_port;
636 struct tty_port *port = &state->port;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700637 struct serial_struct tmp;
638
639 memset(&tmp, 0, sizeof(tmp));
Alan Coxf34d7a52008-04-30 00:54:13 -0700640
641 /* Ensure the state we copy is consistent and no hardware changes
642 occur as we go */
Alan Coxa2bceae2009-09-19 13:13:31 -0700643 mutex_lock(&port->mutex);
Alan Coxf34d7a52008-04-30 00:54:13 -0700644
Alan Coxa2bceae2009-09-19 13:13:31 -0700645 tmp.type = uport->type;
646 tmp.line = uport->line;
647 tmp.port = uport->iobase;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700648 if (HIGH_BITS_OFFSET)
Alan Coxa2bceae2009-09-19 13:13:31 -0700649 tmp.port_high = (long) uport->iobase >> HIGH_BITS_OFFSET;
650 tmp.irq = uport->irq;
651 tmp.flags = uport->flags;
652 tmp.xmit_fifo_size = uport->fifosize;
653 tmp.baud_base = uport->uartclk / 16;
654 tmp.close_delay = port->close_delay / 10;
Alan Cox016af532009-09-19 13:13:32 -0700655 tmp.closing_wait = port->closing_wait == ASYNC_CLOSING_WAIT_NONE ?
Linus Torvalds1da177e2005-04-16 15:20:36 -0700656 ASYNC_CLOSING_WAIT_NONE :
Alan Coxa2bceae2009-09-19 13:13:31 -0700657 port->closing_wait / 10;
658 tmp.custom_divisor = uport->custom_divisor;
659 tmp.hub6 = uport->hub6;
660 tmp.io_type = uport->iotype;
661 tmp.iomem_reg_shift = uport->regshift;
662 tmp.iomem_base = (void *)(unsigned long)uport->mapbase;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700663
Alan Coxa2bceae2009-09-19 13:13:31 -0700664 mutex_unlock(&port->mutex);
Alan Coxf34d7a52008-04-30 00:54:13 -0700665
Linus Torvalds1da177e2005-04-16 15:20:36 -0700666 if (copy_to_user(retinfo, &tmp, sizeof(*retinfo)))
667 return -EFAULT;
668 return 0;
669}
670
671static int uart_set_info(struct uart_state *state,
672 struct serial_struct __user *newinfo)
673{
674 struct serial_struct new_serial;
Alan Cox46d57a42009-09-19 13:13:29 -0700675 struct uart_port *uport = state->uart_port;
676 struct tty_port *port = &state->port;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700677 unsigned long new_port;
Russell King0077d452006-01-21 23:03:28 +0000678 unsigned int change_irq, change_port, closing_wait;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700679 unsigned int old_custom_divisor, close_delay;
Russell King0077d452006-01-21 23:03:28 +0000680 upf_t old_flags, new_flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700681 int retval = 0;
682
683 if (copy_from_user(&new_serial, newinfo, sizeof(new_serial)))
684 return -EFAULT;
685
686 new_port = new_serial.port;
687 if (HIGH_BITS_OFFSET)
688 new_port += (unsigned long) new_serial.port_high << HIGH_BITS_OFFSET;
689
690 new_serial.irq = irq_canonicalize(new_serial.irq);
691 close_delay = new_serial.close_delay * 10;
692 closing_wait = new_serial.closing_wait == ASYNC_CLOSING_WAIT_NONE ?
Alan Cox016af532009-09-19 13:13:32 -0700693 ASYNC_CLOSING_WAIT_NONE : new_serial.closing_wait * 10;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700694
695 /*
Alan Cox91312cd2009-09-19 13:13:29 -0700696 * This semaphore protects port->count. It is also
Linus Torvalds1da177e2005-04-16 15:20:36 -0700697 * very useful to prevent opens. Also, take the
698 * port configuration semaphore to make sure that a
699 * module insertion/removal doesn't change anything
700 * under us.
701 */
Alan Coxa2bceae2009-09-19 13:13:31 -0700702 mutex_lock(&port->mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700703
Alan Cox46d57a42009-09-19 13:13:29 -0700704 change_irq = !(uport->flags & UPF_FIXED_PORT)
705 && new_serial.irq != uport->irq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700706
707 /*
708 * Since changing the 'type' of the port changes its resource
709 * allocations, we should treat type changes the same as
710 * IO port changes.
711 */
Alan Cox46d57a42009-09-19 13:13:29 -0700712 change_port = !(uport->flags & UPF_FIXED_PORT)
713 && (new_port != uport->iobase ||
714 (unsigned long)new_serial.iomem_base != uport->mapbase ||
715 new_serial.hub6 != uport->hub6 ||
716 new_serial.io_type != uport->iotype ||
717 new_serial.iomem_reg_shift != uport->regshift ||
718 new_serial.type != uport->type);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700719
Alan Cox46d57a42009-09-19 13:13:29 -0700720 old_flags = uport->flags;
Russell King0077d452006-01-21 23:03:28 +0000721 new_flags = new_serial.flags;
Alan Cox46d57a42009-09-19 13:13:29 -0700722 old_custom_divisor = uport->custom_divisor;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700723
724 if (!capable(CAP_SYS_ADMIN)) {
725 retval = -EPERM;
726 if (change_irq || change_port ||
Alan Cox46d57a42009-09-19 13:13:29 -0700727 (new_serial.baud_base != uport->uartclk / 16) ||
728 (close_delay != port->close_delay) ||
729 (closing_wait != port->closing_wait) ||
Russell King947deee2006-07-02 20:45:51 +0100730 (new_serial.xmit_fifo_size &&
Alan Cox46d57a42009-09-19 13:13:29 -0700731 new_serial.xmit_fifo_size != uport->fifosize) ||
Russell King0077d452006-01-21 23:03:28 +0000732 (((new_flags ^ old_flags) & ~UPF_USR_MASK) != 0))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700733 goto exit;
Alan Cox46d57a42009-09-19 13:13:29 -0700734 uport->flags = ((uport->flags & ~UPF_USR_MASK) |
Russell King0077d452006-01-21 23:03:28 +0000735 (new_flags & UPF_USR_MASK));
Alan Cox46d57a42009-09-19 13:13:29 -0700736 uport->custom_divisor = new_serial.custom_divisor;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700737 goto check_and_exit;
738 }
739
740 /*
741 * Ask the low level driver to verify the settings.
742 */
Alan Cox46d57a42009-09-19 13:13:29 -0700743 if (uport->ops->verify_port)
744 retval = uport->ops->verify_port(uport, &new_serial);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700745
Yinghai Lua62c4132008-08-19 20:49:55 -0700746 if ((new_serial.irq >= nr_irqs) || (new_serial.irq < 0) ||
Linus Torvalds1da177e2005-04-16 15:20:36 -0700747 (new_serial.baud_base < 9600))
748 retval = -EINVAL;
749
750 if (retval)
751 goto exit;
752
753 if (change_port || change_irq) {
754 retval = -EBUSY;
755
756 /*
757 * Make sure that we are the sole user of this port.
758 */
Alan Coxb58d13a2009-09-19 13:13:32 -0700759 if (tty_port_users(port) > 1)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700760 goto exit;
761
762 /*
763 * We need to shutdown the serial port at the old
764 * port/type/irq combination.
765 */
766 uart_shutdown(state);
767 }
768
769 if (change_port) {
770 unsigned long old_iobase, old_mapbase;
771 unsigned int old_type, old_iotype, old_hub6, old_shift;
772
Alan Cox46d57a42009-09-19 13:13:29 -0700773 old_iobase = uport->iobase;
774 old_mapbase = uport->mapbase;
775 old_type = uport->type;
776 old_hub6 = uport->hub6;
777 old_iotype = uport->iotype;
778 old_shift = uport->regshift;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700779
780 /*
781 * Free and release old regions
782 */
783 if (old_type != PORT_UNKNOWN)
Alan Cox46d57a42009-09-19 13:13:29 -0700784 uport->ops->release_port(uport);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700785
Alan Cox46d57a42009-09-19 13:13:29 -0700786 uport->iobase = new_port;
787 uport->type = new_serial.type;
788 uport->hub6 = new_serial.hub6;
789 uport->iotype = new_serial.io_type;
790 uport->regshift = new_serial.iomem_reg_shift;
791 uport->mapbase = (unsigned long)new_serial.iomem_base;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700792
793 /*
794 * Claim and map the new regions
795 */
Alan Cox46d57a42009-09-19 13:13:29 -0700796 if (uport->type != PORT_UNKNOWN) {
797 retval = uport->ops->request_port(uport);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700798 } else {
799 /* Always success - Jean II */
800 retval = 0;
801 }
802
803 /*
804 * If we fail to request resources for the
805 * new port, try to restore the old settings.
806 */
807 if (retval && old_type != PORT_UNKNOWN) {
Alan Cox46d57a42009-09-19 13:13:29 -0700808 uport->iobase = old_iobase;
809 uport->type = old_type;
810 uport->hub6 = old_hub6;
811 uport->iotype = old_iotype;
812 uport->regshift = old_shift;
813 uport->mapbase = old_mapbase;
814 retval = uport->ops->request_port(uport);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700815 /*
816 * If we failed to restore the old settings,
817 * we fail like this.
818 */
819 if (retval)
Alan Cox46d57a42009-09-19 13:13:29 -0700820 uport->type = PORT_UNKNOWN;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700821
822 /*
823 * We failed anyway.
824 */
825 retval = -EBUSY;
Alan Coxa46c9992008-02-08 04:18:53 -0800826 /* Added to return the correct error -Ram Gupta */
827 goto exit;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700828 }
829 }
830
David Gibsonabb4a232007-05-06 14:48:49 -0700831 if (change_irq)
Alan Cox46d57a42009-09-19 13:13:29 -0700832 uport->irq = new_serial.irq;
833 if (!(uport->flags & UPF_FIXED_PORT))
834 uport->uartclk = new_serial.baud_base * 16;
835 uport->flags = (uport->flags & ~UPF_CHANGE_MASK) |
Russell King0077d452006-01-21 23:03:28 +0000836 (new_flags & UPF_CHANGE_MASK);
Alan Cox46d57a42009-09-19 13:13:29 -0700837 uport->custom_divisor = new_serial.custom_divisor;
838 port->close_delay = close_delay;
839 port->closing_wait = closing_wait;
Russell King947deee2006-07-02 20:45:51 +0100840 if (new_serial.xmit_fifo_size)
Alan Cox46d57a42009-09-19 13:13:29 -0700841 uport->fifosize = new_serial.xmit_fifo_size;
842 if (port->tty)
843 port->tty->low_latency =
844 (uport->flags & UPF_LOW_LATENCY) ? 1 : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700845
846 check_and_exit:
847 retval = 0;
Alan Cox46d57a42009-09-19 13:13:29 -0700848 if (uport->type == PORT_UNKNOWN)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700849 goto exit;
Alan Coxccce6de2009-09-19 13:13:30 -0700850 if (port->flags & ASYNC_INITIALIZED) {
Alan Cox46d57a42009-09-19 13:13:29 -0700851 if (((old_flags ^ uport->flags) & UPF_SPD_MASK) ||
852 old_custom_divisor != uport->custom_divisor) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700853 /*
854 * If they're setting up a custom divisor or speed,
855 * instead of clearing it, then bitch about it. No
856 * need to rate-limit; it's CAP_SYS_ADMIN only.
857 */
Alan Cox46d57a42009-09-19 13:13:29 -0700858 if (uport->flags & UPF_SPD_MASK) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700859 char buf[64];
860 printk(KERN_NOTICE
861 "%s sets custom speed on %s. This "
862 "is deprecated.\n", current->comm,
Alan Cox46d57a42009-09-19 13:13:29 -0700863 tty_name(port->tty, buf));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700864 }
865 uart_change_speed(state, NULL);
866 }
867 } else
868 retval = uart_startup(state, 1);
869 exit:
Alan Coxa2bceae2009-09-19 13:13:31 -0700870 mutex_unlock(&port->mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700871 return retval;
872}
873
874
875/*
876 * uart_get_lsr_info - get line status register info.
877 * Note: uart_ioctl protects us against hangups.
878 */
879static int uart_get_lsr_info(struct uart_state *state,
880 unsigned int __user *value)
881{
Alan Cox46d57a42009-09-19 13:13:29 -0700882 struct uart_port *uport = state->uart_port;
883 struct tty_port *port = &state->port;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700884 unsigned int result;
885
Alan Cox46d57a42009-09-19 13:13:29 -0700886 result = uport->ops->tx_empty(uport);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700887
888 /*
889 * If we're about to load something into the transmit
890 * register, we'll pretend the transmitter isn't empty to
891 * avoid a race condition (depending on when the transmit
892 * interrupt happens).
893 */
Alan Cox46d57a42009-09-19 13:13:29 -0700894 if (uport->x_char ||
Alan Coxebd2c8f2009-09-19 13:13:28 -0700895 ((uart_circ_chars_pending(&state->xmit) > 0) &&
Alan Cox46d57a42009-09-19 13:13:29 -0700896 !port->tty->stopped && !port->tty->hw_stopped))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700897 result &= ~TIOCSER_TEMT;
Alan Coxa46c9992008-02-08 04:18:53 -0800898
Linus Torvalds1da177e2005-04-16 15:20:36 -0700899 return put_user(result, value);
900}
901
902static int uart_tiocmget(struct tty_struct *tty, struct file *file)
903{
904 struct uart_state *state = tty->driver_data;
Alan Coxa2bceae2009-09-19 13:13:31 -0700905 struct tty_port *port = &state->port;
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
Alan Coxa2bceae2009-09-19 13:13:31 -0700909 mutex_lock(&port->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 }
Alan Coxa2bceae2009-09-19 13:13:31 -0700918 mutex_unlock(&port->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;
Alan Coxa2bceae2009-09-19 13:13:31 -0700929 struct tty_port *port = &state->port;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700930 int ret = -EIO;
931
Alan Coxa2bceae2009-09-19 13:13:31 -0700932 mutex_lock(&port->mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700933 if ((!file || !tty_hung_up_p(file)) &&
934 !(tty->flags & (1 << TTY_IO_ERROR))) {
Alan Cox46d57a42009-09-19 13:13:29 -0700935 uart_update_mctrl(uport, set, clear);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700936 ret = 0;
937 }
Alan Coxa2bceae2009-09-19 13:13:31 -0700938 mutex_unlock(&port->mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700939 return ret;
940}
941
Alan Cox9e989662008-07-22 11:18:03 +0100942static int uart_break_ctl(struct tty_struct *tty, int break_state)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700943{
944 struct uart_state *state = tty->driver_data;
Alan Coxa2bceae2009-09-19 13:13:31 -0700945 struct tty_port *port = &state->port;
Alan Cox46d57a42009-09-19 13:13:29 -0700946 struct uart_port *uport = state->uart_port;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700947
Alan Coxa2bceae2009-09-19 13:13:31 -0700948 mutex_lock(&port->mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700949
Alan Cox46d57a42009-09-19 13:13:29 -0700950 if (uport->type != PORT_UNKNOWN)
951 uport->ops->break_ctl(uport, break_state);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700952
Alan Coxa2bceae2009-09-19 13:13:31 -0700953 mutex_unlock(&port->mutex);
Alan Cox9e989662008-07-22 11:18:03 +0100954 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700955}
956
957static int uart_do_autoconfig(struct uart_state *state)
958{
Alan Cox46d57a42009-09-19 13:13:29 -0700959 struct uart_port *uport = state->uart_port;
Alan Coxa2bceae2009-09-19 13:13:31 -0700960 struct tty_port *port = &state->port;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700961 int flags, ret;
962
963 if (!capable(CAP_SYS_ADMIN))
964 return -EPERM;
965
966 /*
967 * Take the per-port semaphore. This prevents count from
968 * changing, and hence any extra opens of the port while
969 * we're auto-configuring.
970 */
Alan Coxa2bceae2009-09-19 13:13:31 -0700971 if (mutex_lock_interruptible(&port->mutex))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700972 return -ERESTARTSYS;
973
974 ret = -EBUSY;
Alan Coxb58d13a2009-09-19 13:13:32 -0700975 if (tty_port_users(port) == 1) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700976 uart_shutdown(state);
977
978 /*
979 * If we already have a port type configured,
980 * we must release its resources.
981 */
Alan Cox46d57a42009-09-19 13:13:29 -0700982 if (uport->type != PORT_UNKNOWN)
983 uport->ops->release_port(uport);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700984
985 flags = UART_CONFIG_TYPE;
Alan Cox46d57a42009-09-19 13:13:29 -0700986 if (uport->flags & UPF_AUTO_IRQ)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700987 flags |= UART_CONFIG_IRQ;
988
989 /*
990 * This will claim the ports resources if
991 * a port is found.
992 */
Alan Cox46d57a42009-09-19 13:13:29 -0700993 uport->ops->config_port(uport, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700994
995 ret = uart_startup(state, 1);
996 }
Alan Coxa2bceae2009-09-19 13:13:31 -0700997 mutex_unlock(&port->mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700998 return ret;
999}
1000
1001/*
1002 * Wait for any of the 4 modem inputs (DCD,RI,DSR,CTS) to change
1003 * - mask passed in arg for lines of interest
1004 * (use |'ed TIOCM_RNG/DSR/CD/CTS for masking)
1005 * Caller should use TIOCGICOUNT to see which one it was
Alan Coxbdc04e32009-09-19 13:13:31 -07001006 *
1007 * FIXME: This wants extracting into a common all driver implementation
1008 * of TIOCMWAIT using tty_port.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001009 */
1010static int
1011uart_wait_modem_status(struct uart_state *state, unsigned long arg)
1012{
Alan Cox46d57a42009-09-19 13:13:29 -07001013 struct uart_port *uport = state->uart_port;
Alan Coxbdc04e32009-09-19 13:13:31 -07001014 struct tty_port *port = &state->port;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001015 DECLARE_WAITQUEUE(wait, current);
1016 struct uart_icount cprev, cnow;
1017 int ret;
1018
1019 /*
1020 * note the counters on entry
1021 */
Alan Cox46d57a42009-09-19 13:13:29 -07001022 spin_lock_irq(&uport->lock);
1023 memcpy(&cprev, &uport->icount, sizeof(struct uart_icount));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001024
1025 /*
1026 * Force modem status interrupts on
1027 */
Alan Cox46d57a42009-09-19 13:13:29 -07001028 uport->ops->enable_ms(uport);
1029 spin_unlock_irq(&uport->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001030
Alan Coxbdc04e32009-09-19 13:13:31 -07001031 add_wait_queue(&port->delta_msr_wait, &wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001032 for (;;) {
Alan Cox46d57a42009-09-19 13:13:29 -07001033 spin_lock_irq(&uport->lock);
1034 memcpy(&cnow, &uport->icount, sizeof(struct uart_icount));
1035 spin_unlock_irq(&uport->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001036
1037 set_current_state(TASK_INTERRUPTIBLE);
1038
1039 if (((arg & TIOCM_RNG) && (cnow.rng != cprev.rng)) ||
1040 ((arg & TIOCM_DSR) && (cnow.dsr != cprev.dsr)) ||
1041 ((arg & TIOCM_CD) && (cnow.dcd != cprev.dcd)) ||
1042 ((arg & TIOCM_CTS) && (cnow.cts != cprev.cts))) {
Alan Coxa46c9992008-02-08 04:18:53 -08001043 ret = 0;
1044 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001045 }
1046
1047 schedule();
1048
1049 /* see if a signal did it */
1050 if (signal_pending(current)) {
1051 ret = -ERESTARTSYS;
1052 break;
1053 }
1054
1055 cprev = cnow;
1056 }
1057
1058 current->state = TASK_RUNNING;
Alan Coxbdc04e32009-09-19 13:13:31 -07001059 remove_wait_queue(&port->delta_msr_wait, &wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001060
1061 return ret;
1062}
1063
1064/*
1065 * Get counter of input serial line interrupts (DCD,RI,DSR,CTS)
1066 * Return: write counters to the user passed counter struct
1067 * NB: both 1->0 and 0->1 transitions are counted except for
1068 * RI where only 0->1 is counted.
1069 */
1070static int uart_get_count(struct uart_state *state,
1071 struct serial_icounter_struct __user *icnt)
1072{
1073 struct serial_icounter_struct icount;
1074 struct uart_icount cnow;
Alan Cox46d57a42009-09-19 13:13:29 -07001075 struct uart_port *uport = state->uart_port;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001076
Alan Cox46d57a42009-09-19 13:13:29 -07001077 spin_lock_irq(&uport->lock);
1078 memcpy(&cnow, &uport->icount, sizeof(struct uart_icount));
1079 spin_unlock_irq(&uport->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001080
1081 icount.cts = cnow.cts;
1082 icount.dsr = cnow.dsr;
1083 icount.rng = cnow.rng;
1084 icount.dcd = cnow.dcd;
1085 icount.rx = cnow.rx;
1086 icount.tx = cnow.tx;
1087 icount.frame = cnow.frame;
1088 icount.overrun = cnow.overrun;
1089 icount.parity = cnow.parity;
1090 icount.brk = cnow.brk;
1091 icount.buf_overrun = cnow.buf_overrun;
1092
1093 return copy_to_user(icnt, &icount, sizeof(icount)) ? -EFAULT : 0;
1094}
1095
1096/*
Alan Coxe5238442008-04-30 00:53:28 -07001097 * Called via sys_ioctl. We can use spin_lock_irq() here.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001098 */
1099static int
1100uart_ioctl(struct tty_struct *tty, struct file *filp, unsigned int cmd,
1101 unsigned long arg)
1102{
1103 struct uart_state *state = tty->driver_data;
Alan Coxa2bceae2009-09-19 13:13:31 -07001104 struct tty_port *port = &state->port;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001105 void __user *uarg = (void __user *)arg;
1106 int ret = -ENOIOCTLCMD;
1107
Linus Torvalds1da177e2005-04-16 15:20:36 -07001108
1109 /*
1110 * These ioctls don't rely on the hardware to be present.
1111 */
1112 switch (cmd) {
1113 case TIOCGSERIAL:
1114 ret = uart_get_info(state, uarg);
1115 break;
1116
1117 case TIOCSSERIAL:
1118 ret = uart_set_info(state, uarg);
1119 break;
1120
1121 case TIOCSERCONFIG:
1122 ret = uart_do_autoconfig(state);
1123 break;
1124
1125 case TIOCSERGWILD: /* obsolete */
1126 case TIOCSERSWILD: /* obsolete */
1127 ret = 0;
1128 break;
1129 }
1130
1131 if (ret != -ENOIOCTLCMD)
1132 goto out;
1133
1134 if (tty->flags & (1 << TTY_IO_ERROR)) {
1135 ret = -EIO;
1136 goto out;
1137 }
1138
1139 /*
1140 * The following should only be used when hardware is present.
1141 */
1142 switch (cmd) {
1143 case TIOCMIWAIT:
1144 ret = uart_wait_modem_status(state, arg);
1145 break;
1146
1147 case TIOCGICOUNT:
1148 ret = uart_get_count(state, uarg);
1149 break;
1150 }
1151
1152 if (ret != -ENOIOCTLCMD)
1153 goto out;
1154
Alan Coxa2bceae2009-09-19 13:13:31 -07001155 mutex_lock(&port->mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001156
1157 if (tty_hung_up_p(filp)) {
1158 ret = -EIO;
1159 goto out_up;
1160 }
1161
1162 /*
1163 * All these rely on hardware being present and need to be
1164 * protected against the tty being hung up.
1165 */
1166 switch (cmd) {
1167 case TIOCSERGETLSR: /* Get line status register */
1168 ret = uart_get_lsr_info(state, uarg);
1169 break;
1170
1171 default: {
Alan Cox46d57a42009-09-19 13:13:29 -07001172 struct uart_port *uport = state->uart_port;
1173 if (uport->ops->ioctl)
1174 ret = uport->ops->ioctl(uport, cmd, arg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001175 break;
1176 }
1177 }
Alan Coxf34d7a52008-04-30 00:54:13 -07001178out_up:
Alan Coxa2bceae2009-09-19 13:13:31 -07001179 mutex_unlock(&port->mutex);
Alan Coxf34d7a52008-04-30 00:54:13 -07001180out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001181 return ret;
1182}
1183
Linus Torvaldsedeb2802008-06-04 10:35:03 -07001184static void uart_set_ldisc(struct tty_struct *tty)
Alan Cox64e91592008-06-03 15:18:54 +01001185{
1186 struct uart_state *state = tty->driver_data;
Alan Cox46d57a42009-09-19 13:13:29 -07001187 struct uart_port *uport = state->uart_port;
Alan Cox64e91592008-06-03 15:18:54 +01001188
Alan Cox46d57a42009-09-19 13:13:29 -07001189 if (uport->ops->set_ldisc)
1190 uport->ops->set_ldisc(uport);
Alan Cox64e91592008-06-03 15:18:54 +01001191}
1192
Alan Coxa46c9992008-02-08 04:18:53 -08001193static void uart_set_termios(struct tty_struct *tty,
1194 struct ktermios *old_termios)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001195{
1196 struct uart_state *state = tty->driver_data;
1197 unsigned long flags;
1198 unsigned int cflag = tty->termios->c_cflag;
1199
Linus Torvalds1da177e2005-04-16 15:20:36 -07001200
1201 /*
1202 * These are the bits that are used to setup various
David Woodhouse20620d62007-08-22 14:01:11 -07001203 * flags in the low level driver. We can ignore the Bfoo
1204 * bits in c_cflag; c_[io]speed will always be set
1205 * appropriately by set_termios() in tty_ioctl.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07001206 */
1207#define RELEVANT_IFLAG(iflag) ((iflag) & (IGNBRK|BRKINT|IGNPAR|PARMRK|INPCK))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001208 if ((cflag ^ old_termios->c_cflag) == 0 &&
David Woodhouse20620d62007-08-22 14:01:11 -07001209 tty->termios->c_ospeed == old_termios->c_ospeed &&
1210 tty->termios->c_ispeed == old_termios->c_ispeed &&
Alan Coxe5238442008-04-30 00:53:28 -07001211 RELEVANT_IFLAG(tty->termios->c_iflag ^ old_termios->c_iflag) == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001212 return;
Alan Coxe5238442008-04-30 00:53:28 -07001213 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001214
1215 uart_change_speed(state, old_termios);
1216
1217 /* Handle transition to B0 status */
1218 if ((old_termios->c_cflag & CBAUD) && !(cflag & CBAUD))
Alan Coxebd2c8f2009-09-19 13:13:28 -07001219 uart_clear_mctrl(state->uart_port, TIOCM_RTS | TIOCM_DTR);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001220
1221 /* Handle transition away from B0 status */
1222 if (!(old_termios->c_cflag & CBAUD) && (cflag & CBAUD)) {
1223 unsigned int mask = TIOCM_DTR;
1224 if (!(cflag & CRTSCTS) ||
1225 !test_bit(TTY_THROTTLED, &tty->flags))
1226 mask |= TIOCM_RTS;
Alan Coxebd2c8f2009-09-19 13:13:28 -07001227 uart_set_mctrl(state->uart_port, mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001228 }
1229
1230 /* Handle turning off 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);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001233 tty->hw_stopped = 0;
1234 __uart_start(tty);
Alan Coxebd2c8f2009-09-19 13:13:28 -07001235 spin_unlock_irqrestore(&state->uart_port->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001236 }
1237
Russell King0dd7a1a2005-06-29 18:40:53 +01001238 /* Handle turning on CRTSCTS */
1239 if (!(old_termios->c_cflag & CRTSCTS) && (cflag & CRTSCTS)) {
Alan Coxebd2c8f2009-09-19 13:13:28 -07001240 spin_lock_irqsave(&state->uart_port->lock, flags);
1241 if (!(state->uart_port->ops->get_mctrl(state->uart_port) & TIOCM_CTS)) {
Russell King0dd7a1a2005-06-29 18:40:53 +01001242 tty->hw_stopped = 1;
Alan Coxebd2c8f2009-09-19 13:13:28 -07001243 state->uart_port->ops->stop_tx(state->uart_port);
Russell King0dd7a1a2005-06-29 18:40:53 +01001244 }
Alan Coxebd2c8f2009-09-19 13:13:28 -07001245 spin_unlock_irqrestore(&state->uart_port->lock, flags);
Russell King0dd7a1a2005-06-29 18:40:53 +01001246 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001247#if 0
1248 /*
1249 * No need to wake up processes in open wait, since they
1250 * sample the CLOCAL flag once, and don't recheck it.
1251 * XXX It's not clear whether the current behavior is correct
1252 * or not. Hence, this may change.....
1253 */
1254 if (!(old_termios->c_cflag & CLOCAL) &&
1255 (tty->termios->c_cflag & CLOCAL))
Alan Coxebd2c8f2009-09-19 13:13:28 -07001256 wake_up_interruptible(&state->uart_port.open_wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001257#endif
1258}
1259
1260/*
1261 * In 2.4.5, calls to this will be serialized via the BKL in
1262 * linux/drivers/char/tty_io.c:tty_release()
1263 * linux/drivers/char/tty_io.c:do_tty_handup()
1264 */
1265static void uart_close(struct tty_struct *tty, struct file *filp)
1266{
1267 struct uart_state *state = tty->driver_data;
Alan Cox46d57a42009-09-19 13:13:29 -07001268 struct tty_port *port;
1269 struct uart_port *uport;
Alan Coxa46c9992008-02-08 04:18:53 -08001270
Linus Torvalds1da177e2005-04-16 15:20:36 -07001271 BUG_ON(!kernel_locked());
1272
Linus Torvaldseea7e172009-10-12 19:13:54 +02001273 if (!state)
1274 return;
1275
Alan Cox46d57a42009-09-19 13:13:29 -07001276 uport = state->uart_port;
1277 port = &state->port;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001278
Alan Cox46d57a42009-09-19 13:13:29 -07001279 pr_debug("uart_close(%d) called\n", uport->line);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001280
Alan Coxa2bceae2009-09-19 13:13:31 -07001281 mutex_lock(&port->mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001282
1283 if (tty_hung_up_p(filp))
1284 goto done;
1285
Alan Cox91312cd2009-09-19 13:13:29 -07001286 if ((tty->count == 1) && (port->count != 1)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001287 /*
1288 * Uh, oh. tty->count is 1, which means that the tty
Alan Cox91312cd2009-09-19 13:13:29 -07001289 * structure will be freed. port->count should always
Linus Torvalds1da177e2005-04-16 15:20:36 -07001290 * be one in these conditions. If it's greater than
1291 * one, we've got real problems, since it means the
1292 * serial port won't be shutdown.
1293 */
1294 printk(KERN_ERR "uart_close: bad serial port count; tty->count is 1, "
Alan Cox91312cd2009-09-19 13:13:29 -07001295 "port->count is %d\n", port->count);
1296 port->count = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001297 }
Alan Cox91312cd2009-09-19 13:13:29 -07001298 if (--port->count < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001299 printk(KERN_ERR "uart_close: bad serial port count for %s: %d\n",
Alan Cox91312cd2009-09-19 13:13:29 -07001300 tty->name, port->count);
1301 port->count = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001302 }
Alan Cox91312cd2009-09-19 13:13:29 -07001303 if (port->count)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001304 goto done;
1305
1306 /*
1307 * Now we wait for the transmit buffer to clear; and we notify
1308 * the line discipline to only process XON/XOFF characters by
1309 * setting tty->closing.
1310 */
1311 tty->closing = 1;
1312
Alan Cox016af532009-09-19 13:13:32 -07001313 if (port->closing_wait != ASYNC_CLOSING_WAIT_NONE)
Alan Cox46d57a42009-09-19 13:13:29 -07001314 tty_wait_until_sent(tty, msecs_to_jiffies(port->closing_wait));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001315
1316 /*
1317 * At this point, we stop accepting input. To do this, we
1318 * disable the receive line status interrupts.
1319 */
Alan Coxccce6de2009-09-19 13:13:30 -07001320 if (port->flags & ASYNC_INITIALIZED) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001321 unsigned long flags;
Linus Torvaldseea7e172009-10-12 19:13:54 +02001322 spin_lock_irqsave(&uport->lock, flags);
Alan Cox46d57a42009-09-19 13:13:29 -07001323 uport->ops->stop_rx(uport);
Linus Torvaldseea7e172009-10-12 19:13:54 +02001324 spin_unlock_irqrestore(&uport->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001325 /*
1326 * Before we drop DTR, make sure the UART transmitter
1327 * has completely drained; this is especially
1328 * important if there is a transmit FIFO!
1329 */
Alan Cox46d57a42009-09-19 13:13:29 -07001330 uart_wait_until_sent(tty, uport->timeout);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001331 }
1332
1333 uart_shutdown(state);
1334 uart_flush_buffer(tty);
1335
Alan Coxa46c9992008-02-08 04:18:53 -08001336 tty_ldisc_flush(tty);
1337
Linus Torvalds1da177e2005-04-16 15:20:36 -07001338 tty->closing = 0;
Alan Cox7b014782009-09-19 13:13:33 -07001339 tty_port_tty_set(port, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001340
Alan Cox46d57a42009-09-19 13:13:29 -07001341 if (port->blocked_open) {
1342 if (port->close_delay)
1343 msleep_interruptible(port->close_delay);
1344 } else if (!uart_console(uport)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001345 uart_change_pm(state, 3);
1346 }
1347
1348 /*
1349 * Wake up anyone trying to open this port.
1350 */
Alan Coxccce6de2009-09-19 13:13:30 -07001351 clear_bit(ASYNCB_NORMAL_ACTIVE, &port->flags);
Alan Cox46d57a42009-09-19 13:13:29 -07001352 wake_up_interruptible(&port->open_wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001353
Alan Cox46d57a42009-09-19 13:13:29 -07001354done:
Alan Coxa2bceae2009-09-19 13:13:31 -07001355 mutex_unlock(&port->mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001356}
1357
1358static void uart_wait_until_sent(struct tty_struct *tty, int timeout)
1359{
1360 struct uart_state *state = tty->driver_data;
Alan Coxebd2c8f2009-09-19 13:13:28 -07001361 struct uart_port *port = state->uart_port;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001362 unsigned long char_time, expire;
1363
Linus Torvalds1da177e2005-04-16 15:20:36 -07001364 if (port->type == PORT_UNKNOWN || port->fifosize == 0)
1365 return;
1366
Alan Coxf34d7a52008-04-30 00:54:13 -07001367 lock_kernel();
1368
Linus Torvalds1da177e2005-04-16 15:20:36 -07001369 /*
1370 * Set the check interval to be 1/5 of the estimated time to
1371 * send a single character, and make it at least 1. The check
1372 * interval should also be less than the timeout.
1373 *
1374 * Note: we have to use pretty tight timings here to satisfy
1375 * the NIST-PCTS.
1376 */
1377 char_time = (port->timeout - HZ/50) / port->fifosize;
1378 char_time = char_time / 5;
1379 if (char_time == 0)
1380 char_time = 1;
1381 if (timeout && timeout < char_time)
1382 char_time = timeout;
1383
1384 /*
1385 * If the transmitter hasn't cleared in twice the approximate
1386 * amount of time to send the entire FIFO, it probably won't
1387 * ever clear. This assumes the UART isn't doing flow
1388 * control, which is currently the case. Hence, if it ever
1389 * takes longer than port->timeout, this is probably due to a
1390 * UART bug of some kind. So, we clamp the timeout parameter at
1391 * 2*port->timeout.
1392 */
1393 if (timeout == 0 || timeout > 2 * port->timeout)
1394 timeout = 2 * port->timeout;
1395
1396 expire = jiffies + timeout;
1397
Jiri Slabyeb3a1e12007-05-06 14:48:52 -07001398 pr_debug("uart_wait_until_sent(%d), jiffies=%lu, expire=%lu...\n",
Alan Coxa46c9992008-02-08 04:18:53 -08001399 port->line, jiffies, expire);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001400
1401 /*
1402 * Check whether the transmitter is empty every 'char_time'.
1403 * 'timeout' / 'expire' give us the maximum amount of time
1404 * we wait.
1405 */
1406 while (!port->ops->tx_empty(port)) {
1407 msleep_interruptible(jiffies_to_msecs(char_time));
1408 if (signal_pending(current))
1409 break;
1410 if (time_after(jiffies, expire))
1411 break;
1412 }
1413 set_current_state(TASK_RUNNING); /* might not be needed */
Alan Coxf34d7a52008-04-30 00:54:13 -07001414 unlock_kernel();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001415}
1416
1417/*
1418 * This is called with the BKL held in
1419 * linux/drivers/char/tty_io.c:do_tty_hangup()
1420 * We're called from the eventd thread, so we can sleep for
1421 * a _short_ time only.
1422 */
1423static void uart_hangup(struct tty_struct *tty)
1424{
1425 struct uart_state *state = tty->driver_data;
Alan Cox46d57a42009-09-19 13:13:29 -07001426 struct tty_port *port = &state->port;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001427
1428 BUG_ON(!kernel_locked());
Alan Coxebd2c8f2009-09-19 13:13:28 -07001429 pr_debug("uart_hangup(%d)\n", state->uart_port->line);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001430
Alan Coxa2bceae2009-09-19 13:13:31 -07001431 mutex_lock(&port->mutex);
Alan Coxccce6de2009-09-19 13:13:30 -07001432 if (port->flags & ASYNC_NORMAL_ACTIVE) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001433 uart_flush_buffer(tty);
1434 uart_shutdown(state);
Alan Cox91312cd2009-09-19 13:13:29 -07001435 port->count = 0;
Alan Coxccce6de2009-09-19 13:13:30 -07001436 clear_bit(ASYNCB_NORMAL_ACTIVE, &port->flags);
Alan Cox7b014782009-09-19 13:13:33 -07001437 tty_port_tty_set(port, NULL);
Alan Cox46d57a42009-09-19 13:13:29 -07001438 wake_up_interruptible(&port->open_wait);
Alan Coxbdc04e32009-09-19 13:13:31 -07001439 wake_up_interruptible(&port->delta_msr_wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001440 }
Alan Coxa2bceae2009-09-19 13:13:31 -07001441 mutex_unlock(&port->mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001442}
1443
1444/*
1445 * Copy across the serial console cflag setting into the termios settings
1446 * for the initial open of the port. This allows continuity between the
1447 * kernel settings, and the settings init adopts when it opens the port
1448 * for the first time.
1449 */
1450static void uart_update_termios(struct uart_state *state)
1451{
Alan Coxebd2c8f2009-09-19 13:13:28 -07001452 struct tty_struct *tty = state->port.tty;
1453 struct uart_port *port = state->uart_port;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001454
1455 if (uart_console(port) && port->cons->cflag) {
1456 tty->termios->c_cflag = port->cons->cflag;
1457 port->cons->cflag = 0;
1458 }
1459
1460 /*
1461 * If the device failed to grab its irq resources,
1462 * or some other error occurred, don't try to talk
1463 * to the port hardware.
1464 */
1465 if (!(tty->flags & (1 << TTY_IO_ERROR))) {
1466 /*
1467 * Make termios settings take effect.
1468 */
1469 uart_change_speed(state, NULL);
1470
1471 /*
1472 * And finally enable the RTS and DTR signals.
1473 */
1474 if (tty->termios->c_cflag & CBAUD)
1475 uart_set_mctrl(port, TIOCM_DTR | TIOCM_RTS);
1476 }
1477}
1478
1479/*
1480 * Block the open until the port is ready. We must be called with
1481 * the per-port semaphore held.
1482 */
1483static int
1484uart_block_til_ready(struct file *filp, struct uart_state *state)
1485{
1486 DECLARE_WAITQUEUE(wait, current);
Alan Cox46d57a42009-09-19 13:13:29 -07001487 struct uart_port *uport = state->uart_port;
1488 struct tty_port *port = &state->port;
Russell Kingc5f46442005-06-29 09:42:38 +01001489 unsigned int mctrl;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001490
Alan Cox46d57a42009-09-19 13:13:29 -07001491 port->blocked_open++;
Alan Cox91312cd2009-09-19 13:13:29 -07001492 port->count--;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001493
Alan Cox46d57a42009-09-19 13:13:29 -07001494 add_wait_queue(&port->open_wait, &wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001495 while (1) {
1496 set_current_state(TASK_INTERRUPTIBLE);
1497
1498 /*
1499 * If we have been hung up, tell userspace/restart open.
1500 */
Alan Cox46d57a42009-09-19 13:13:29 -07001501 if (tty_hung_up_p(filp) || port->tty == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001502 break;
1503
1504 /*
1505 * If the port has been closed, tell userspace/restart open.
1506 */
Alan Coxccce6de2009-09-19 13:13:30 -07001507 if (!(port->flags & ASYNC_INITIALIZED))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001508 break;
1509
1510 /*
1511 * If non-blocking mode is set, or CLOCAL mode is set,
1512 * we don't want to wait for the modem status lines to
1513 * indicate that the port is ready.
1514 *
1515 * Also, if the port is not enabled/configured, we want
1516 * to allow the open to succeed here. Note that we will
1517 * have set TTY_IO_ERROR for a non-existant port.
1518 */
1519 if ((filp->f_flags & O_NONBLOCK) ||
Alan Cox46d57a42009-09-19 13:13:29 -07001520 (port->tty->termios->c_cflag & CLOCAL) ||
1521 (port->tty->flags & (1 << TTY_IO_ERROR)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001522 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001523
1524 /*
1525 * Set DTR to allow modem to know we're waiting. Do
1526 * not set RTS here - we want to make sure we catch
1527 * the data from the modem.
1528 */
Alan Cox46d57a42009-09-19 13:13:29 -07001529 if (port->tty->termios->c_cflag & CBAUD)
1530 uart_set_mctrl(uport, TIOCM_DTR);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001531
1532 /*
1533 * and wait for the carrier to indicate that the
1534 * modem is ready for us.
1535 */
Alan Cox46d57a42009-09-19 13:13:29 -07001536 spin_lock_irq(&uport->lock);
1537 uport->ops->enable_ms(uport);
1538 mctrl = uport->ops->get_mctrl(uport);
1539 spin_unlock_irq(&uport->lock);
Russell Kingc5f46442005-06-29 09:42:38 +01001540 if (mctrl & TIOCM_CAR)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001541 break;
1542
Alan Coxa2bceae2009-09-19 13:13:31 -07001543 mutex_unlock(&port->mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001544 schedule();
Alan Coxa2bceae2009-09-19 13:13:31 -07001545 mutex_lock(&port->mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001546
1547 if (signal_pending(current))
1548 break;
1549 }
1550 set_current_state(TASK_RUNNING);
Alan Cox46d57a42009-09-19 13:13:29 -07001551 remove_wait_queue(&port->open_wait, &wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001552
Alan Cox91312cd2009-09-19 13:13:29 -07001553 port->count++;
Alan Cox46d57a42009-09-19 13:13:29 -07001554 port->blocked_open--;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001555
1556 if (signal_pending(current))
1557 return -ERESTARTSYS;
1558
Alan Cox46d57a42009-09-19 13:13:29 -07001559 if (!port->tty || tty_hung_up_p(filp))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001560 return -EAGAIN;
1561
1562 return 0;
1563}
1564
1565static struct uart_state *uart_get(struct uart_driver *drv, int line)
1566{
1567 struct uart_state *state;
Alan Coxa2bceae2009-09-19 13:13:31 -07001568 struct tty_port *port;
Russell King68ac64c2006-04-30 11:13:50 +01001569 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001570
Linus Torvalds1da177e2005-04-16 15:20:36 -07001571 state = drv->state + line;
Alan Coxa2bceae2009-09-19 13:13:31 -07001572 port = &state->port;
1573 if (mutex_lock_interruptible(&port->mutex)) {
Russell King68ac64c2006-04-30 11:13:50 +01001574 ret = -ERESTARTSYS;
1575 goto err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001576 }
1577
Alan Coxa2bceae2009-09-19 13:13:31 -07001578 port->count++;
Alan Coxebd2c8f2009-09-19 13:13:28 -07001579 if (!state->uart_port || state->uart_port->flags & UPF_DEAD) {
Russell King68ac64c2006-04-30 11:13:50 +01001580 ret = -ENXIO;
1581 goto err_unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001582 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001583 return state;
Russell King68ac64c2006-04-30 11:13:50 +01001584
1585 err_unlock:
Alan Coxa2bceae2009-09-19 13:13:31 -07001586 port->count--;
1587 mutex_unlock(&port->mutex);
Russell King68ac64c2006-04-30 11:13:50 +01001588 err:
1589 return ERR_PTR(ret);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001590}
1591
1592/*
Denis Cheng922f9cf2008-02-08 04:22:00 -08001593 * calls to uart_open are serialised by the BKL in
1594 * fs/char_dev.c:chrdev_open()
Linus Torvalds1da177e2005-04-16 15:20:36 -07001595 * Note that if this fails, then uart_close() _will_ be called.
1596 *
1597 * In time, we want to scrap the "opening nonpresent ports"
1598 * behaviour and implement an alternative way for setserial
1599 * to set base addresses/ports/types. This will allow us to
1600 * get rid of a certain amount of extra tests.
1601 */
1602static int uart_open(struct tty_struct *tty, struct file *filp)
1603{
1604 struct uart_driver *drv = (struct uart_driver *)tty->driver->driver_state;
1605 struct uart_state *state;
Alan Cox91312cd2009-09-19 13:13:29 -07001606 struct tty_port *port;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001607 int retval, line = tty->index;
1608
1609 BUG_ON(!kernel_locked());
Jiri Slabyeb3a1e12007-05-06 14:48:52 -07001610 pr_debug("uart_open(%d) called\n", line);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001611
1612 /*
1613 * tty->driver->num won't change, so we won't fail here with
1614 * tty->driver_data set to something non-NULL (and therefore
1615 * we won't get caught by uart_close()).
1616 */
1617 retval = -ENODEV;
1618 if (line >= tty->driver->num)
1619 goto fail;
1620
1621 /*
1622 * We take the semaphore inside uart_get to guarantee that we won't
Alan Coxebd2c8f2009-09-19 13:13:28 -07001623 * be re-entered while allocating the state structure, or while we
Linus Torvalds1da177e2005-04-16 15:20:36 -07001624 * request any IRQs that the driver may need. This also has the nice
1625 * side-effect that it delays the action of uart_hangup, so we can
Alan Coxebd2c8f2009-09-19 13:13:28 -07001626 * guarantee that state->port.tty will always contain something
1627 * reasonable.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001628 */
1629 state = uart_get(drv, line);
1630 if (IS_ERR(state)) {
1631 retval = PTR_ERR(state);
1632 goto fail;
1633 }
Alan Cox91312cd2009-09-19 13:13:29 -07001634 port = &state->port;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001635
1636 /*
1637 * Once we set tty->driver_data here, we are guaranteed that
1638 * uart_close() will decrement the driver module use count.
1639 * Any failures from here onwards should not touch the count.
1640 */
1641 tty->driver_data = state;
Alan Coxebd2c8f2009-09-19 13:13:28 -07001642 state->uart_port->state = state;
1643 tty->low_latency = (state->uart_port->flags & UPF_LOW_LATENCY) ? 1 : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001644 tty->alt_speed = 0;
Alan Cox7b014782009-09-19 13:13:33 -07001645 tty_port_tty_set(port, tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001646
1647 /*
1648 * If the port is in the middle of closing, bail out now.
1649 */
1650 if (tty_hung_up_p(filp)) {
1651 retval = -EAGAIN;
Alan Cox91312cd2009-09-19 13:13:29 -07001652 port->count--;
Alan Coxa2bceae2009-09-19 13:13:31 -07001653 mutex_unlock(&port->mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001654 goto fail;
1655 }
1656
1657 /*
1658 * Make sure the device is in D0 state.
1659 */
Alan Cox91312cd2009-09-19 13:13:29 -07001660 if (port->count == 1)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001661 uart_change_pm(state, 0);
1662
1663 /*
1664 * Start up the serial port.
1665 */
1666 retval = uart_startup(state, 0);
1667
1668 /*
1669 * If we succeeded, wait until the port is ready.
1670 */
1671 if (retval == 0)
1672 retval = uart_block_til_ready(filp, state);
Alan Coxa2bceae2009-09-19 13:13:31 -07001673 mutex_unlock(&port->mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001674
1675 /*
1676 * If this is the first open to succeed, adjust things to suit.
1677 */
Alan Coxccce6de2009-09-19 13:13:30 -07001678 if (retval == 0 && !(port->flags & ASYNC_NORMAL_ACTIVE)) {
1679 set_bit(ASYNCB_NORMAL_ACTIVE, &port->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001680
1681 uart_update_termios(state);
1682 }
1683
Alan Coxa2bceae2009-09-19 13:13:31 -07001684fail:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001685 return retval;
1686}
1687
1688static const char *uart_type(struct uart_port *port)
1689{
1690 const char *str = NULL;
1691
1692 if (port->ops->type)
1693 str = port->ops->type(port);
1694
1695 if (!str)
1696 str = "unknown";
1697
1698 return str;
1699}
1700
1701#ifdef CONFIG_PROC_FS
1702
Alexey Dobriyand196a942009-03-31 15:19:21 -07001703static void uart_line_info(struct seq_file *m, struct uart_driver *drv, int i)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001704{
1705 struct uart_state *state = drv->state + i;
Alan Coxa2bceae2009-09-19 13:13:31 -07001706 struct tty_port *port = &state->port;
George G. Davis3689a0e2007-02-14 00:33:06 -08001707 int pm_state;
Alan Coxa2bceae2009-09-19 13:13:31 -07001708 struct uart_port *uport = state->uart_port;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001709 char stat_buf[32];
1710 unsigned int status;
Alexey Dobriyand196a942009-03-31 15:19:21 -07001711 int mmio;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001712
Alan Coxa2bceae2009-09-19 13:13:31 -07001713 if (!uport)
Alexey Dobriyand196a942009-03-31 15:19:21 -07001714 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001715
Alan Coxa2bceae2009-09-19 13:13:31 -07001716 mmio = uport->iotype >= UPIO_MEM;
Alexey Dobriyand196a942009-03-31 15:19:21 -07001717 seq_printf(m, "%d: uart:%s %s%08llX irq:%d",
Alan Coxa2bceae2009-09-19 13:13:31 -07001718 uport->line, uart_type(uport),
Sergei Shtylyov6c6a2332006-09-04 00:04:20 +04001719 mmio ? "mmio:0x" : "port:",
Alan Coxa2bceae2009-09-19 13:13:31 -07001720 mmio ? (unsigned long long)uport->mapbase
1721 : (unsigned long long)uport->iobase,
1722 uport->irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001723
Alan Coxa2bceae2009-09-19 13:13:31 -07001724 if (uport->type == PORT_UNKNOWN) {
Alexey Dobriyand196a942009-03-31 15:19:21 -07001725 seq_putc(m, '\n');
1726 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001727 }
1728
Alan Coxa46c9992008-02-08 04:18:53 -08001729 if (capable(CAP_SYS_ADMIN)) {
Alan Coxa2bceae2009-09-19 13:13:31 -07001730 mutex_lock(&port->mutex);
George G. Davis3689a0e2007-02-14 00:33:06 -08001731 pm_state = state->pm_state;
1732 if (pm_state)
1733 uart_change_pm(state, 0);
Alan Coxa2bceae2009-09-19 13:13:31 -07001734 spin_lock_irq(&uport->lock);
1735 status = uport->ops->get_mctrl(uport);
1736 spin_unlock_irq(&uport->lock);
George G. Davis3689a0e2007-02-14 00:33:06 -08001737 if (pm_state)
1738 uart_change_pm(state, pm_state);
Alan Coxa2bceae2009-09-19 13:13:31 -07001739 mutex_unlock(&port->mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001740
Alexey Dobriyand196a942009-03-31 15:19:21 -07001741 seq_printf(m, " tx:%d rx:%d",
Alan Coxa2bceae2009-09-19 13:13:31 -07001742 uport->icount.tx, uport->icount.rx);
1743 if (uport->icount.frame)
Alexey Dobriyand196a942009-03-31 15:19:21 -07001744 seq_printf(m, " fe:%d",
Alan Coxa2bceae2009-09-19 13:13:31 -07001745 uport->icount.frame);
1746 if (uport->icount.parity)
Alexey Dobriyand196a942009-03-31 15:19:21 -07001747 seq_printf(m, " pe:%d",
Alan Coxa2bceae2009-09-19 13:13:31 -07001748 uport->icount.parity);
1749 if (uport->icount.brk)
Alexey Dobriyand196a942009-03-31 15:19:21 -07001750 seq_printf(m, " brk:%d",
Alan Coxa2bceae2009-09-19 13:13:31 -07001751 uport->icount.brk);
1752 if (uport->icount.overrun)
Alexey Dobriyand196a942009-03-31 15:19:21 -07001753 seq_printf(m, " oe:%d",
Alan Coxa2bceae2009-09-19 13:13:31 -07001754 uport->icount.overrun);
Alan Coxa46c9992008-02-08 04:18:53 -08001755
1756#define INFOBIT(bit, str) \
Alan Coxa2bceae2009-09-19 13:13:31 -07001757 if (uport->mctrl & (bit)) \
Linus Torvalds1da177e2005-04-16 15:20:36 -07001758 strncat(stat_buf, (str), sizeof(stat_buf) - \
1759 strlen(stat_buf) - 2)
Alan Coxa46c9992008-02-08 04:18:53 -08001760#define STATBIT(bit, str) \
Linus Torvalds1da177e2005-04-16 15:20:36 -07001761 if (status & (bit)) \
1762 strncat(stat_buf, (str), sizeof(stat_buf) - \
1763 strlen(stat_buf) - 2)
1764
1765 stat_buf[0] = '\0';
1766 stat_buf[1] = '\0';
1767 INFOBIT(TIOCM_RTS, "|RTS");
1768 STATBIT(TIOCM_CTS, "|CTS");
1769 INFOBIT(TIOCM_DTR, "|DTR");
1770 STATBIT(TIOCM_DSR, "|DSR");
1771 STATBIT(TIOCM_CAR, "|CD");
1772 STATBIT(TIOCM_RNG, "|RI");
1773 if (stat_buf[0])
1774 stat_buf[0] = ' ';
Alan Coxa46c9992008-02-08 04:18:53 -08001775
Alexey Dobriyand196a942009-03-31 15:19:21 -07001776 seq_puts(m, stat_buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001777 }
Alexey Dobriyand196a942009-03-31 15:19:21 -07001778 seq_putc(m, '\n');
Linus Torvalds1da177e2005-04-16 15:20:36 -07001779#undef STATBIT
1780#undef INFOBIT
Linus Torvalds1da177e2005-04-16 15:20:36 -07001781}
1782
Alexey Dobriyand196a942009-03-31 15:19:21 -07001783static int uart_proc_show(struct seq_file *m, void *v)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001784{
Alexey Dobriyan833bb302009-04-02 01:30:04 +04001785 struct tty_driver *ttydrv = m->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001786 struct uart_driver *drv = ttydrv->driver_state;
Alexey Dobriyand196a942009-03-31 15:19:21 -07001787 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001788
Alexey Dobriyand196a942009-03-31 15:19:21 -07001789 seq_printf(m, "serinfo:1.0 driver%s%s revision:%s\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001790 "", "", "");
Alexey Dobriyand196a942009-03-31 15:19:21 -07001791 for (i = 0; i < drv->nr; i++)
1792 uart_line_info(m, drv, i);
1793 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001794}
Alexey Dobriyand196a942009-03-31 15:19:21 -07001795
1796static int uart_proc_open(struct inode *inode, struct file *file)
1797{
1798 return single_open(file, uart_proc_show, PDE(inode)->data);
1799}
1800
1801static const struct file_operations uart_proc_fops = {
1802 .owner = THIS_MODULE,
1803 .open = uart_proc_open,
1804 .read = seq_read,
1805 .llseek = seq_lseek,
1806 .release = single_release,
1807};
Linus Torvalds1da177e2005-04-16 15:20:36 -07001808#endif
1809
Andrew Morton4a1b5502008-03-07 15:51:16 -08001810#if defined(CONFIG_SERIAL_CORE_CONSOLE) || defined(CONFIG_CONSOLE_POLL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001811/*
Russell Kingd3587882006-03-20 20:00:09 +00001812 * uart_console_write - write a console message to a serial port
1813 * @port: the port to write the message
1814 * @s: array of characters
1815 * @count: number of characters in string to write
1816 * @write: function to write character to port
1817 */
1818void uart_console_write(struct uart_port *port, const char *s,
1819 unsigned int count,
1820 void (*putchar)(struct uart_port *, int))
1821{
1822 unsigned int i;
1823
1824 for (i = 0; i < count; i++, s++) {
1825 if (*s == '\n')
1826 putchar(port, '\r');
1827 putchar(port, *s);
1828 }
1829}
1830EXPORT_SYMBOL_GPL(uart_console_write);
1831
1832/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001833 * Check whether an invalid uart number has been specified, and
1834 * if so, search for the first available port that does have
1835 * console support.
1836 */
1837struct uart_port * __init
1838uart_get_console(struct uart_port *ports, int nr, struct console *co)
1839{
1840 int idx = co->index;
1841
1842 if (idx < 0 || idx >= nr || (ports[idx].iobase == 0 &&
1843 ports[idx].membase == NULL))
1844 for (idx = 0; idx < nr; idx++)
1845 if (ports[idx].iobase != 0 ||
1846 ports[idx].membase != NULL)
1847 break;
1848
1849 co->index = idx;
1850
1851 return ports + idx;
1852}
1853
1854/**
1855 * uart_parse_options - Parse serial port baud/parity/bits/flow contro.
1856 * @options: pointer to option string
1857 * @baud: pointer to an 'int' variable for the baud rate.
1858 * @parity: pointer to an 'int' variable for the parity.
1859 * @bits: pointer to an 'int' variable for the number of data bits.
1860 * @flow: pointer to an 'int' variable for the flow control character.
1861 *
1862 * uart_parse_options decodes a string containing the serial console
1863 * options. The format of the string is <baud><parity><bits><flow>,
1864 * eg: 115200n8r
1865 */
Jason Wesself2d937f2008-04-17 20:05:37 +02001866void
Linus Torvalds1da177e2005-04-16 15:20:36 -07001867uart_parse_options(char *options, int *baud, int *parity, int *bits, int *flow)
1868{
1869 char *s = options;
1870
1871 *baud = simple_strtoul(s, NULL, 10);
1872 while (*s >= '0' && *s <= '9')
1873 s++;
1874 if (*s)
1875 *parity = *s++;
1876 if (*s)
1877 *bits = *s++ - '0';
1878 if (*s)
1879 *flow = *s;
1880}
Jason Wesself2d937f2008-04-17 20:05:37 +02001881EXPORT_SYMBOL_GPL(uart_parse_options);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001882
1883struct baud_rates {
1884 unsigned int rate;
1885 unsigned int cflag;
1886};
1887
Arjan van de Vencb3592b2005-11-28 21:04:11 +00001888static const struct baud_rates baud_rates[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001889 { 921600, B921600 },
1890 { 460800, B460800 },
1891 { 230400, B230400 },
1892 { 115200, B115200 },
1893 { 57600, B57600 },
1894 { 38400, B38400 },
1895 { 19200, B19200 },
1896 { 9600, B9600 },
1897 { 4800, B4800 },
1898 { 2400, B2400 },
1899 { 1200, B1200 },
1900 { 0, B38400 }
1901};
1902
1903/**
1904 * uart_set_options - setup the serial console parameters
1905 * @port: pointer to the serial ports uart_port structure
1906 * @co: console pointer
1907 * @baud: baud rate
1908 * @parity: parity character - 'n' (none), 'o' (odd), 'e' (even)
1909 * @bits: number of data bits
1910 * @flow: flow control character - 'r' (rts)
1911 */
Jason Wesself2d937f2008-04-17 20:05:37 +02001912int
Linus Torvalds1da177e2005-04-16 15:20:36 -07001913uart_set_options(struct uart_port *port, struct console *co,
1914 int baud, int parity, int bits, int flow)
1915{
Alan Cox606d0992006-12-08 02:38:45 -08001916 struct ktermios termios;
Alan Cox149b36e2007-10-18 01:24:16 -07001917 static struct ktermios dummy;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001918 int i;
1919
Russell King976ecd12005-07-03 21:05:45 +01001920 /*
1921 * Ensure that the serial console lock is initialised
1922 * early.
1923 */
1924 spin_lock_init(&port->lock);
Ingo Molnar13e83592006-07-03 00:25:03 -07001925 lockdep_set_class(&port->lock, &port_lock_key);
Russell King976ecd12005-07-03 21:05:45 +01001926
Alan Cox606d0992006-12-08 02:38:45 -08001927 memset(&termios, 0, sizeof(struct ktermios));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001928
1929 termios.c_cflag = CREAD | HUPCL | CLOCAL;
1930
1931 /*
1932 * Construct a cflag setting.
1933 */
1934 for (i = 0; baud_rates[i].rate; i++)
1935 if (baud_rates[i].rate <= baud)
1936 break;
1937
1938 termios.c_cflag |= baud_rates[i].cflag;
1939
1940 if (bits == 7)
1941 termios.c_cflag |= CS7;
1942 else
1943 termios.c_cflag |= CS8;
1944
1945 switch (parity) {
1946 case 'o': case 'O':
1947 termios.c_cflag |= PARODD;
1948 /*fall through*/
1949 case 'e': case 'E':
1950 termios.c_cflag |= PARENB;
1951 break;
1952 }
1953
1954 if (flow == 'r')
1955 termios.c_cflag |= CRTSCTS;
1956
Yinghai Lu79492682007-07-15 23:37:25 -07001957 /*
1958 * some uarts on other side don't support no flow control.
1959 * So we set * DTR in host uart to make them happy
1960 */
1961 port->mctrl |= TIOCM_DTR;
1962
Alan Cox149b36e2007-10-18 01:24:16 -07001963 port->ops->set_termios(port, &termios, &dummy);
Jason Wesself2d937f2008-04-17 20:05:37 +02001964 /*
1965 * Allow the setting of the UART parameters with a NULL console
1966 * too:
1967 */
1968 if (co)
1969 co->cflag = termios.c_cflag;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001970
1971 return 0;
1972}
Jason Wesself2d937f2008-04-17 20:05:37 +02001973EXPORT_SYMBOL_GPL(uart_set_options);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001974#endif /* CONFIG_SERIAL_CORE_CONSOLE */
1975
1976static void uart_change_pm(struct uart_state *state, int pm_state)
1977{
Alan Coxebd2c8f2009-09-19 13:13:28 -07001978 struct uart_port *port = state->uart_port;
Andrew Victor1281e362006-05-16 11:28:49 +01001979
1980 if (state->pm_state != pm_state) {
1981 if (port->ops->pm)
1982 port->ops->pm(port, pm_state, state->pm_state);
1983 state->pm_state = pm_state;
1984 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001985}
1986
Guennadi Liakhovetskib3b708f2007-10-16 01:24:02 -07001987struct uart_match {
1988 struct uart_port *port;
1989 struct uart_driver *driver;
1990};
1991
1992static int serial_match_port(struct device *dev, void *data)
1993{
1994 struct uart_match *match = data;
Guennadi Liakhovetski7ca796f2008-07-04 09:59:28 -07001995 struct tty_driver *tty_drv = match->driver->tty_driver;
1996 dev_t devt = MKDEV(tty_drv->major, tty_drv->minor_start) +
1997 match->port->line;
Guennadi Liakhovetskib3b708f2007-10-16 01:24:02 -07001998
1999 return dev->devt == devt; /* Actually, only one tty per port */
2000}
2001
Alan Coxccce6de2009-09-19 13:13:30 -07002002int uart_suspend_port(struct uart_driver *drv, struct uart_port *uport)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002003{
Alan Coxccce6de2009-09-19 13:13:30 -07002004 struct uart_state *state = drv->state + uport->line;
2005 struct tty_port *port = &state->port;
Guennadi Liakhovetskib3b708f2007-10-16 01:24:02 -07002006 struct device *tty_dev;
Alan Coxccce6de2009-09-19 13:13:30 -07002007 struct uart_match match = {uport, drv};
Linus Torvalds1da177e2005-04-16 15:20:36 -07002008
Alan Coxa2bceae2009-09-19 13:13:31 -07002009 mutex_lock(&port->mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002010
Alan Coxccce6de2009-09-19 13:13:30 -07002011 if (!console_suspend_enabled && uart_console(uport)) {
Andres Salomon8f4ce8c2007-10-18 03:04:50 -07002012 /* we're going to avoid suspending serial console */
Alan Coxa2bceae2009-09-19 13:13:31 -07002013 mutex_unlock(&port->mutex);
Rafael J. Wysockie1da95a2006-09-25 23:32:57 -07002014 return 0;
2015 }
Rafael J. Wysockie1da95a2006-09-25 23:32:57 -07002016
Alan Coxccce6de2009-09-19 13:13:30 -07002017 tty_dev = device_find_child(uport->dev, &match, serial_match_port);
Guennadi Liakhovetskib3b708f2007-10-16 01:24:02 -07002018 if (device_may_wakeup(tty_dev)) {
Alan Coxccce6de2009-09-19 13:13:30 -07002019 enable_irq_wake(uport->irq);
Guennadi Liakhovetskib3b708f2007-10-16 01:24:02 -07002020 put_device(tty_dev);
Alan Coxa2bceae2009-09-19 13:13:31 -07002021 mutex_unlock(&port->mutex);
Guennadi Liakhovetskib3b708f2007-10-16 01:24:02 -07002022 return 0;
2023 }
Alan Coxccce6de2009-09-19 13:13:30 -07002024 uport->suspended = 1;
Guennadi Liakhovetskib3b708f2007-10-16 01:24:02 -07002025
Alan Coxccce6de2009-09-19 13:13:30 -07002026 if (port->flags & ASYNC_INITIALIZED) {
2027 const struct uart_ops *ops = uport->ops;
Russell Kingc8c6bfa2008-02-04 22:27:52 -08002028 int tries;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002029
Alan Coxccce6de2009-09-19 13:13:30 -07002030 set_bit(ASYNCB_SUSPENDED, &port->flags);
2031 clear_bit(ASYNCB_INITIALIZED, &port->flags);
Russell Kinga6b93a92006-10-01 17:17:40 +01002032
Alan Coxccce6de2009-09-19 13:13:30 -07002033 spin_lock_irq(&uport->lock);
2034 ops->stop_tx(uport);
2035 ops->set_mctrl(uport, 0);
2036 ops->stop_rx(uport);
2037 spin_unlock_irq(&uport->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002038
2039 /*
2040 * Wait for the transmitter to empty.
2041 */
Alan Coxccce6de2009-09-19 13:13:30 -07002042 for (tries = 3; !ops->tx_empty(uport) && tries; tries--)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002043 msleep(10);
Russell Kingc8c6bfa2008-02-04 22:27:52 -08002044 if (!tries)
Alan Coxa46c9992008-02-08 04:18:53 -08002045 printk(KERN_ERR "%s%s%s%d: Unable to drain "
2046 "transmitter\n",
Alan Coxccce6de2009-09-19 13:13:30 -07002047 uport->dev ? dev_name(uport->dev) : "",
2048 uport->dev ? ": " : "",
David S. Miller84408382008-10-13 10:45:26 +01002049 drv->dev_name,
Alan Coxccce6de2009-09-19 13:13:30 -07002050 drv->tty_driver->name_base + uport->line);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002051
Alan Coxccce6de2009-09-19 13:13:30 -07002052 ops->shutdown(uport);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002053 }
2054
2055 /*
2056 * Disable the console device before suspending.
2057 */
Alan Coxccce6de2009-09-19 13:13:30 -07002058 if (uart_console(uport))
2059 console_stop(uport->cons);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002060
2061 uart_change_pm(state, 3);
2062
Alan Coxa2bceae2009-09-19 13:13:31 -07002063 mutex_unlock(&port->mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002064
2065 return 0;
2066}
2067
Alan Coxccce6de2009-09-19 13:13:30 -07002068int uart_resume_port(struct uart_driver *drv, struct uart_port *uport)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002069{
Alan Coxccce6de2009-09-19 13:13:30 -07002070 struct uart_state *state = drv->state + uport->line;
2071 struct tty_port *port = &state->port;
Arjan van de Ven03a74dc2008-05-23 13:04:49 -07002072 struct device *tty_dev;
Alan Coxccce6de2009-09-19 13:13:30 -07002073 struct uart_match match = {uport, drv};
Deepak Saxenaba15ab02009-09-19 13:13:33 -07002074 struct ktermios termios;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002075
Alan Coxa2bceae2009-09-19 13:13:31 -07002076 mutex_lock(&port->mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002077
Alan Coxccce6de2009-09-19 13:13:30 -07002078 if (!console_suspend_enabled && uart_console(uport)) {
Andres Salomon8f4ce8c2007-10-18 03:04:50 -07002079 /* no need to resume serial console, it wasn't suspended */
Deepak Saxenaba15ab02009-09-19 13:13:33 -07002080 /*
2081 * First try to use the console cflag setting.
2082 */
2083 memset(&termios, 0, sizeof(struct ktermios));
2084 termios.c_cflag = uport->cons->cflag;
2085 /*
2086 * If that's unset, use the tty termios setting.
2087 */
2088 if (termios.c_cflag == 0)
2089 termios = *state->port.tty->termios;
2090 else {
2091 termios.c_ispeed = termios.c_ospeed =
2092 tty_termios_input_baud_rate(&termios);
2093 termios.c_ispeed = termios.c_ospeed =
2094 tty_termios_baud_rate(&termios);
2095 }
2096 uport->ops->set_termios(uport, &termios, NULL);
Alan Coxa2bceae2009-09-19 13:13:31 -07002097 mutex_unlock(&port->mutex);
Rafael J. Wysockie1da95a2006-09-25 23:32:57 -07002098 return 0;
2099 }
Rafael J. Wysockie1da95a2006-09-25 23:32:57 -07002100
Alan Coxccce6de2009-09-19 13:13:30 -07002101 tty_dev = device_find_child(uport->dev, &match, serial_match_port);
2102 if (!uport->suspended && device_may_wakeup(tty_dev)) {
2103 disable_irq_wake(uport->irq);
Alan Coxa2bceae2009-09-19 13:13:31 -07002104 mutex_unlock(&port->mutex);
Guennadi Liakhovetskib3b708f2007-10-16 01:24:02 -07002105 return 0;
2106 }
Alan Coxccce6de2009-09-19 13:13:30 -07002107 uport->suspended = 0;
Guennadi Liakhovetskib3b708f2007-10-16 01:24:02 -07002108
Linus Torvalds1da177e2005-04-16 15:20:36 -07002109 /*
2110 * Re-enable the console device after suspending.
2111 */
Alan Coxccce6de2009-09-19 13:13:30 -07002112 if (uart_console(uport)) {
Russell King9d778a62008-02-04 22:27:51 -08002113 uart_change_pm(state, 0);
Alan Coxccce6de2009-09-19 13:13:30 -07002114 uport->ops->set_termios(uport, &termios, NULL);
2115 console_start(uport->cons);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002116 }
2117
Alan Coxccce6de2009-09-19 13:13:30 -07002118 if (port->flags & ASYNC_SUSPENDED) {
2119 const struct uart_ops *ops = uport->ops;
Russell Kingee31b332005-11-13 15:28:51 +00002120 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002121
Russell King9d778a62008-02-04 22:27:51 -08002122 uart_change_pm(state, 0);
Alan Coxccce6de2009-09-19 13:13:30 -07002123 spin_lock_irq(&uport->lock);
2124 ops->set_mctrl(uport, 0);
2125 spin_unlock_irq(&uport->lock);
2126 ret = ops->startup(uport);
Russell Kingee31b332005-11-13 15:28:51 +00002127 if (ret == 0) {
2128 uart_change_speed(state, NULL);
Alan Coxccce6de2009-09-19 13:13:30 -07002129 spin_lock_irq(&uport->lock);
2130 ops->set_mctrl(uport, uport->mctrl);
2131 ops->start_tx(uport);
2132 spin_unlock_irq(&uport->lock);
2133 set_bit(ASYNCB_INITIALIZED, &port->flags);
Russell Kingee31b332005-11-13 15:28:51 +00002134 } else {
2135 /*
2136 * Failed to resume - maybe hardware went away?
2137 * Clear the "initialized" flag so we won't try
2138 * to call the low level drivers shutdown method.
2139 */
Russell Kingee31b332005-11-13 15:28:51 +00002140 uart_shutdown(state);
2141 }
Russell Kinga6b93a92006-10-01 17:17:40 +01002142
Alan Coxccce6de2009-09-19 13:13:30 -07002143 clear_bit(ASYNCB_SUSPENDED, &port->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002144 }
2145
Alan Coxa2bceae2009-09-19 13:13:31 -07002146 mutex_unlock(&port->mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002147
2148 return 0;
2149}
2150
2151static inline void
2152uart_report_port(struct uart_driver *drv, struct uart_port *port)
2153{
Russell King30b7a3b2005-09-03 15:30:21 +01002154 char address[64];
2155
Linus Torvalds1da177e2005-04-16 15:20:36 -07002156 switch (port->iotype) {
2157 case UPIO_PORT:
Andrew Morton9bde10a2008-10-13 10:35:42 +01002158 snprintf(address, sizeof(address), "I/O 0x%lx", port->iobase);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002159 break;
2160 case UPIO_HUB6:
Russell King30b7a3b2005-09-03 15:30:21 +01002161 snprintf(address, sizeof(address),
Andrew Morton9bde10a2008-10-13 10:35:42 +01002162 "I/O 0x%lx offset 0x%x", port->iobase, port->hub6);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002163 break;
2164 case UPIO_MEM:
2165 case UPIO_MEM32:
Pantelis Antoniou21c614a2005-11-06 09:07:03 +00002166 case UPIO_AU:
Zang Roy-r619113be91ec2006-06-30 02:29:58 -07002167 case UPIO_TSI:
Marc St-Jeanbeab6972007-05-06 14:48:45 -07002168 case UPIO_DWAPB:
Russell King30b7a3b2005-09-03 15:30:21 +01002169 snprintf(address, sizeof(address),
Josh Boyer4f640ef2007-07-23 18:43:44 -07002170 "MMIO 0x%llx", (unsigned long long)port->mapbase);
Russell King30b7a3b2005-09-03 15:30:21 +01002171 break;
2172 default:
2173 strlcpy(address, "*unknown*", sizeof(address));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002174 break;
2175 }
Russell King30b7a3b2005-09-03 15:30:21 +01002176
Russell King0cf669d2005-10-31 11:42:22 +00002177 printk(KERN_INFO "%s%s%s%d at %s (irq = %d) is a %s\n",
Kay Sievers4bfe0902009-01-06 10:44:37 -08002178 port->dev ? dev_name(port->dev) : "",
Russell King0cf669d2005-10-31 11:42:22 +00002179 port->dev ? ": " : "",
David S. Miller84408382008-10-13 10:45:26 +01002180 drv->dev_name,
2181 drv->tty_driver->name_base + port->line,
2182 address, port->irq, uart_type(port));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002183}
2184
2185static void
2186uart_configure_port(struct uart_driver *drv, struct uart_state *state,
2187 struct uart_port *port)
2188{
2189 unsigned int flags;
2190
2191 /*
2192 * If there isn't a port here, don't do anything further.
2193 */
2194 if (!port->iobase && !port->mapbase && !port->membase)
2195 return;
2196
2197 /*
2198 * Now do the auto configuration stuff. Note that config_port
2199 * is expected to claim the resources and map the port for us.
2200 */
David Daney8e23fcc2009-01-02 13:49:54 +00002201 flags = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002202 if (port->flags & UPF_AUTO_IRQ)
2203 flags |= UART_CONFIG_IRQ;
2204 if (port->flags & UPF_BOOT_AUTOCONF) {
David Daney8e23fcc2009-01-02 13:49:54 +00002205 if (!(port->flags & UPF_FIXED_TYPE)) {
2206 port->type = PORT_UNKNOWN;
2207 flags |= UART_CONFIG_TYPE;
2208 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002209 port->ops->config_port(port, flags);
2210 }
2211
2212 if (port->type != PORT_UNKNOWN) {
2213 unsigned long flags;
2214
2215 uart_report_port(drv, port);
2216
George G. Davis3689a0e2007-02-14 00:33:06 -08002217 /* Power up port for set_mctrl() */
2218 uart_change_pm(state, 0);
2219
Linus Torvalds1da177e2005-04-16 15:20:36 -07002220 /*
2221 * Ensure that the modem control lines are de-activated.
Yinghai Luc3e46422008-02-04 22:27:46 -08002222 * keep the DTR setting that is set in uart_set_options()
Linus Torvalds1da177e2005-04-16 15:20:36 -07002223 * We probably don't need a spinlock around this, but
2224 */
2225 spin_lock_irqsave(&port->lock, flags);
Yinghai Luc3e46422008-02-04 22:27:46 -08002226 port->ops->set_mctrl(port, port->mctrl & TIOCM_DTR);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002227 spin_unlock_irqrestore(&port->lock, flags);
2228
2229 /*
Russell King97d97222007-09-01 21:25:09 +01002230 * If this driver supports console, and it hasn't been
2231 * successfully registered yet, try to re-register it.
2232 * It may be that the port was not available.
2233 */
2234 if (port->cons && !(port->cons->flags & CON_ENABLED))
2235 register_console(port->cons);
2236
2237 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002238 * Power down all ports by default, except the
2239 * console if we have one.
2240 */
2241 if (!uart_console(port))
2242 uart_change_pm(state, 3);
2243 }
2244}
2245
Jason Wesself2d937f2008-04-17 20:05:37 +02002246#ifdef CONFIG_CONSOLE_POLL
2247
2248static int uart_poll_init(struct tty_driver *driver, int line, char *options)
2249{
2250 struct uart_driver *drv = driver->driver_state;
2251 struct uart_state *state = drv->state + line;
2252 struct uart_port *port;
2253 int baud = 9600;
2254 int bits = 8;
2255 int parity = 'n';
2256 int flow = 'n';
2257
Alan Coxebd2c8f2009-09-19 13:13:28 -07002258 if (!state || !state->uart_port)
Jason Wesself2d937f2008-04-17 20:05:37 +02002259 return -1;
2260
Alan Coxebd2c8f2009-09-19 13:13:28 -07002261 port = state->uart_port;
Jason Wesself2d937f2008-04-17 20:05:37 +02002262 if (!(port->ops->poll_get_char && port->ops->poll_put_char))
2263 return -1;
2264
2265 if (options) {
2266 uart_parse_options(options, &baud, &parity, &bits, &flow);
2267 return uart_set_options(port, NULL, baud, parity, bits, flow);
2268 }
2269
2270 return 0;
2271}
2272
2273static int uart_poll_get_char(struct tty_driver *driver, int line)
2274{
2275 struct uart_driver *drv = driver->driver_state;
2276 struct uart_state *state = drv->state + line;
2277 struct uart_port *port;
2278
Alan Coxebd2c8f2009-09-19 13:13:28 -07002279 if (!state || !state->uart_port)
Jason Wesself2d937f2008-04-17 20:05:37 +02002280 return -1;
2281
Alan Coxebd2c8f2009-09-19 13:13:28 -07002282 port = state->uart_port;
Jason Wesself2d937f2008-04-17 20:05:37 +02002283 return port->ops->poll_get_char(port);
2284}
2285
2286static void uart_poll_put_char(struct tty_driver *driver, int line, char ch)
2287{
2288 struct uart_driver *drv = driver->driver_state;
2289 struct uart_state *state = drv->state + line;
2290 struct uart_port *port;
2291
Alan Coxebd2c8f2009-09-19 13:13:28 -07002292 if (!state || !state->uart_port)
Jason Wesself2d937f2008-04-17 20:05:37 +02002293 return;
2294
Alan Coxebd2c8f2009-09-19 13:13:28 -07002295 port = state->uart_port;
Jason Wesself2d937f2008-04-17 20:05:37 +02002296 port->ops->poll_put_char(port, ch);
2297}
2298#endif
2299
Jeff Dikeb68e31d2006-10-02 02:17:18 -07002300static const struct tty_operations uart_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002301 .open = uart_open,
2302 .close = uart_close,
2303 .write = uart_write,
2304 .put_char = uart_put_char,
2305 .flush_chars = uart_flush_chars,
2306 .write_room = uart_write_room,
2307 .chars_in_buffer= uart_chars_in_buffer,
2308 .flush_buffer = uart_flush_buffer,
2309 .ioctl = uart_ioctl,
2310 .throttle = uart_throttle,
2311 .unthrottle = uart_unthrottle,
2312 .send_xchar = uart_send_xchar,
2313 .set_termios = uart_set_termios,
Alan Cox64e91592008-06-03 15:18:54 +01002314 .set_ldisc = uart_set_ldisc,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002315 .stop = uart_stop,
2316 .start = uart_start,
2317 .hangup = uart_hangup,
2318 .break_ctl = uart_break_ctl,
2319 .wait_until_sent= uart_wait_until_sent,
2320#ifdef CONFIG_PROC_FS
Alexey Dobriyand196a942009-03-31 15:19:21 -07002321 .proc_fops = &uart_proc_fops,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002322#endif
2323 .tiocmget = uart_tiocmget,
2324 .tiocmset = uart_tiocmset,
Jason Wesself2d937f2008-04-17 20:05:37 +02002325#ifdef CONFIG_CONSOLE_POLL
2326 .poll_init = uart_poll_init,
2327 .poll_get_char = uart_poll_get_char,
2328 .poll_put_char = uart_poll_put_char,
2329#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002330};
2331
2332/**
2333 * uart_register_driver - register a driver with the uart core layer
2334 * @drv: low level driver structure
2335 *
2336 * Register a uart driver with the core driver. We in turn register
2337 * with the tty layer, and initialise the core driver per-port state.
2338 *
2339 * We have a proc file in /proc/tty/driver which is named after the
2340 * normal driver.
2341 *
2342 * drv->port should be NULL, and the per-port structures should be
2343 * registered using uart_add_one_port after this call has succeeded.
2344 */
2345int uart_register_driver(struct uart_driver *drv)
2346{
2347 struct tty_driver *normal = NULL;
2348 int i, retval;
2349
2350 BUG_ON(drv->state);
2351
2352 /*
2353 * Maybe we should be using a slab cache for this, especially if
2354 * we have a large number of ports to handle.
2355 */
Burman Yan8f31bb32007-02-14 00:33:07 -08002356 drv->state = kzalloc(sizeof(struct uart_state) * drv->nr, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002357 retval = -ENOMEM;
2358 if (!drv->state)
2359 goto out;
2360
Linus Torvalds1da177e2005-04-16 15:20:36 -07002361 normal = alloc_tty_driver(drv->nr);
2362 if (!normal)
2363 goto out;
2364
2365 drv->tty_driver = normal;
2366
2367 normal->owner = drv->owner;
2368 normal->driver_name = drv->driver_name;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002369 normal->name = drv->dev_name;
2370 normal->major = drv->major;
2371 normal->minor_start = drv->minor;
2372 normal->type = TTY_DRIVER_TYPE_SERIAL;
2373 normal->subtype = SERIAL_TYPE_NORMAL;
2374 normal->init_termios = tty_std_termios;
2375 normal->init_termios.c_cflag = B9600 | CS8 | CREAD | HUPCL | CLOCAL;
Alan Cox606d0992006-12-08 02:38:45 -08002376 normal->init_termios.c_ispeed = normal->init_termios.c_ospeed = 9600;
Greg Kroah-Hartman331b8312005-06-20 21:15:16 -07002377 normal->flags = TTY_DRIVER_REAL_RAW | TTY_DRIVER_DYNAMIC_DEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002378 normal->driver_state = drv;
2379 tty_set_operations(normal, &uart_ops);
2380
2381 /*
2382 * Initialise the UART state(s).
2383 */
2384 for (i = 0; i < drv->nr; i++) {
2385 struct uart_state *state = drv->state + i;
Alan Coxa2bceae2009-09-19 13:13:31 -07002386 struct tty_port *port = &state->port;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002387
Alan Coxa2bceae2009-09-19 13:13:31 -07002388 tty_port_init(port);
2389 port->close_delay = 500; /* .5 seconds */
2390 port->closing_wait = 30000; /* 30 seconds */
Alan Coxebd2c8f2009-09-19 13:13:28 -07002391 tasklet_init(&state->tlet, uart_tasklet_action,
Alan Coxf7519282009-01-02 13:49:21 +00002392 (unsigned long)state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002393 }
2394
2395 retval = tty_register_driver(normal);
2396 out:
2397 if (retval < 0) {
2398 put_tty_driver(normal);
2399 kfree(drv->state);
2400 }
2401 return retval;
2402}
2403
2404/**
2405 * uart_unregister_driver - remove a driver from the uart core layer
2406 * @drv: low level driver structure
2407 *
2408 * Remove all references to a driver from the core driver. The low
2409 * level driver must have removed all its ports via the
2410 * uart_remove_one_port() if it registered them with uart_add_one_port().
2411 * (ie, drv->port == NULL)
2412 */
2413void uart_unregister_driver(struct uart_driver *drv)
2414{
2415 struct tty_driver *p = drv->tty_driver;
2416 tty_unregister_driver(p);
2417 put_tty_driver(p);
2418 kfree(drv->state);
2419 drv->tty_driver = NULL;
2420}
2421
2422struct tty_driver *uart_console_device(struct console *co, int *index)
2423{
2424 struct uart_driver *p = co->data;
2425 *index = co->index;
2426 return p->tty_driver;
2427}
2428
2429/**
2430 * uart_add_one_port - attach a driver-defined port structure
2431 * @drv: pointer to the uart low level driver structure for this port
Randy Dunlap1b9894f2009-09-21 11:12:03 -07002432 * @uport: uart port structure to use for this port.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002433 *
2434 * This allows the driver to register its own uart_port structure
2435 * with the core driver. The main purpose is to allow the low
2436 * level uart drivers to expand uart_port, rather than having yet
2437 * more levels of structures.
2438 */
Alan Coxa2bceae2009-09-19 13:13:31 -07002439int uart_add_one_port(struct uart_driver *drv, struct uart_port *uport)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002440{
2441 struct uart_state *state;
Alan Coxa2bceae2009-09-19 13:13:31 -07002442 struct tty_port *port;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002443 int ret = 0;
Guennadi Liakhovetskib3b708f2007-10-16 01:24:02 -07002444 struct device *tty_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002445
2446 BUG_ON(in_interrupt());
2447
Alan Coxa2bceae2009-09-19 13:13:31 -07002448 if (uport->line >= drv->nr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002449 return -EINVAL;
2450
Alan Coxa2bceae2009-09-19 13:13:31 -07002451 state = drv->state + uport->line;
2452 port = &state->port;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002453
Arjan van de Venf392ecf2006-01-12 18:44:32 +00002454 mutex_lock(&port_mutex);
Alan Coxa2bceae2009-09-19 13:13:31 -07002455 mutex_lock(&port->mutex);
Alan Coxebd2c8f2009-09-19 13:13:28 -07002456 if (state->uart_port) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002457 ret = -EINVAL;
2458 goto out;
2459 }
2460
Alan Coxa2bceae2009-09-19 13:13:31 -07002461 state->uart_port = uport;
Russell King97d97222007-09-01 21:25:09 +01002462 state->pm_state = -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002463
Alan Coxa2bceae2009-09-19 13:13:31 -07002464 uport->cons = drv->cons;
2465 uport->state = state;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002466
Russell King976ecd12005-07-03 21:05:45 +01002467 /*
2468 * If this port is a console, then the spinlock is already
2469 * initialised.
2470 */
Alan Coxa2bceae2009-09-19 13:13:31 -07002471 if (!(uart_console(uport) && (uport->cons->flags & CON_ENABLED))) {
2472 spin_lock_init(&uport->lock);
2473 lockdep_set_class(&uport->lock, &port_lock_key);
Ingo Molnar13e83592006-07-03 00:25:03 -07002474 }
Russell King976ecd12005-07-03 21:05:45 +01002475
Alan Coxa2bceae2009-09-19 13:13:31 -07002476 uart_configure_port(drv, state, uport);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002477
2478 /*
2479 * Register the port whether it's detected or not. This allows
2480 * setserial to be used to alter this ports parameters.
2481 */
Alan Coxa2bceae2009-09-19 13:13:31 -07002482 tty_dev = tty_register_device(drv->tty_driver, uport->line, uport->dev);
Guennadi Liakhovetskib3b708f2007-10-16 01:24:02 -07002483 if (likely(!IS_ERR(tty_dev))) {
Alan Stern74081f82008-03-19 22:35:13 +01002484 device_init_wakeup(tty_dev, 1);
Guennadi Liakhovetskib3b708f2007-10-16 01:24:02 -07002485 device_set_wakeup_enable(tty_dev, 0);
2486 } else
2487 printk(KERN_ERR "Cannot register tty device on line %d\n",
Alan Coxa2bceae2009-09-19 13:13:31 -07002488 uport->line);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002489
2490 /*
Russell King68ac64c2006-04-30 11:13:50 +01002491 * Ensure UPF_DEAD is not set.
2492 */
Alan Coxa2bceae2009-09-19 13:13:31 -07002493 uport->flags &= ~UPF_DEAD;
Russell King68ac64c2006-04-30 11:13:50 +01002494
Linus Torvalds1da177e2005-04-16 15:20:36 -07002495 out:
Alan Coxa2bceae2009-09-19 13:13:31 -07002496 mutex_unlock(&port->mutex);
Arjan van de Venf392ecf2006-01-12 18:44:32 +00002497 mutex_unlock(&port_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002498
2499 return ret;
2500}
2501
2502/**
2503 * uart_remove_one_port - detach a driver defined port structure
2504 * @drv: pointer to the uart low level driver structure for this port
Randy Dunlap1b9894f2009-09-21 11:12:03 -07002505 * @uport: uart port structure for this port
Linus Torvalds1da177e2005-04-16 15:20:36 -07002506 *
2507 * This unhooks (and hangs up) the specified port structure from the
2508 * core driver. No further calls will be made to the low-level code
2509 * for this port.
2510 */
Alan Coxa2bceae2009-09-19 13:13:31 -07002511int uart_remove_one_port(struct uart_driver *drv, struct uart_port *uport)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002512{
Alan Coxa2bceae2009-09-19 13:13:31 -07002513 struct uart_state *state = drv->state + uport->line;
2514 struct tty_port *port = &state->port;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002515
2516 BUG_ON(in_interrupt());
2517
Alan Coxa2bceae2009-09-19 13:13:31 -07002518 if (state->uart_port != uport)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002519 printk(KERN_ALERT "Removing wrong port: %p != %p\n",
Alan Coxa2bceae2009-09-19 13:13:31 -07002520 state->uart_port, uport);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002521
Arjan van de Venf392ecf2006-01-12 18:44:32 +00002522 mutex_lock(&port_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002523
2524 /*
Russell King68ac64c2006-04-30 11:13:50 +01002525 * Mark the port "dead" - this prevents any opens from
2526 * succeeding while we shut down the port.
2527 */
Alan Coxa2bceae2009-09-19 13:13:31 -07002528 mutex_lock(&port->mutex);
2529 uport->flags |= UPF_DEAD;
2530 mutex_unlock(&port->mutex);
Russell King68ac64c2006-04-30 11:13:50 +01002531
2532 /*
Greg Kroah-Hartmanaa4148c2005-06-20 21:15:16 -07002533 * Remove the devices from the tty layer
Linus Torvalds1da177e2005-04-16 15:20:36 -07002534 */
Alan Coxa2bceae2009-09-19 13:13:31 -07002535 tty_unregister_device(drv->tty_driver, uport->line);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002536
Alan Coxa2bceae2009-09-19 13:13:31 -07002537 if (port->tty)
2538 tty_vhangup(port->tty);
Russell King68ac64c2006-04-30 11:13:50 +01002539
2540 /*
Russell King68ac64c2006-04-30 11:13:50 +01002541 * Free the port IO and memory resources, if any.
2542 */
Alan Coxa2bceae2009-09-19 13:13:31 -07002543 if (uport->type != PORT_UNKNOWN)
2544 uport->ops->release_port(uport);
Russell King68ac64c2006-04-30 11:13:50 +01002545
2546 /*
2547 * Indicate that there isn't a port here anymore.
2548 */
Alan Coxa2bceae2009-09-19 13:13:31 -07002549 uport->type = PORT_UNKNOWN;
Russell King68ac64c2006-04-30 11:13:50 +01002550
2551 /*
2552 * Kill the tasklet, and free resources.
2553 */
Alan Coxebd2c8f2009-09-19 13:13:28 -07002554 tasklet_kill(&state->tlet);
Russell King68ac64c2006-04-30 11:13:50 +01002555
Alan Coxebd2c8f2009-09-19 13:13:28 -07002556 state->uart_port = NULL;
Arjan van de Venf392ecf2006-01-12 18:44:32 +00002557 mutex_unlock(&port_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002558
2559 return 0;
2560}
2561
2562/*
2563 * Are the two ports equivalent?
2564 */
2565int uart_match_port(struct uart_port *port1, struct uart_port *port2)
2566{
2567 if (port1->iotype != port2->iotype)
2568 return 0;
2569
2570 switch (port1->iotype) {
2571 case UPIO_PORT:
2572 return (port1->iobase == port2->iobase);
2573 case UPIO_HUB6:
2574 return (port1->iobase == port2->iobase) &&
2575 (port1->hub6 == port2->hub6);
2576 case UPIO_MEM:
Sergei Shtylyovd21b55d2006-08-28 19:49:03 +04002577 case UPIO_MEM32:
2578 case UPIO_AU:
2579 case UPIO_TSI:
Marc St-Jeanbeab6972007-05-06 14:48:45 -07002580 case UPIO_DWAPB:
Benjamin Herrenschmidt1624f002006-01-04 18:09:44 +00002581 return (port1->mapbase == port2->mapbase);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002582 }
2583 return 0;
2584}
2585EXPORT_SYMBOL(uart_match_port);
2586
Linus Torvalds1da177e2005-04-16 15:20:36 -07002587EXPORT_SYMBOL(uart_write_wakeup);
2588EXPORT_SYMBOL(uart_register_driver);
2589EXPORT_SYMBOL(uart_unregister_driver);
2590EXPORT_SYMBOL(uart_suspend_port);
2591EXPORT_SYMBOL(uart_resume_port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002592EXPORT_SYMBOL(uart_add_one_port);
2593EXPORT_SYMBOL(uart_remove_one_port);
2594
2595MODULE_DESCRIPTION("Serial driver core");
2596MODULE_LICENSE("GPL");