]>
Commit | Line | Data |
---|---|---|
1da177e4 LT |
1 | /* |
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 | */ | |
25 | #include <linux/config.h> | |
26 | #include <linux/module.h> | |
27 | #include <linux/tty.h> | |
28 | #include <linux/slab.h> | |
29 | #include <linux/init.h> | |
30 | #include <linux/console.h> | |
31 | #include <linux/serial_core.h> | |
32 | #include <linux/smp_lock.h> | |
33 | #include <linux/device.h> | |
34 | #include <linux/serial.h> /* for serial_state and serial_icounter_struct */ | |
35 | #include <linux/delay.h> | |
36 | ||
37 | #include <asm/irq.h> | |
38 | #include <asm/uaccess.h> | |
39 | ||
40 | #undef DEBUG | |
41 | #ifdef DEBUG | |
42 | #define DPRINTK(x...) printk(x) | |
43 | #else | |
44 | #define DPRINTK(x...) do { } while (0) | |
45 | #endif | |
46 | ||
47 | /* | |
48 | * This is used to lock changes in serial line configuration. | |
49 | */ | |
50 | static DECLARE_MUTEX(port_sem); | |
51 | ||
52 | #define HIGH_BITS_OFFSET ((sizeof(long)-sizeof(int))*8) | |
53 | ||
54 | #define uart_users(state) ((state)->count + ((state)->info ? (state)->info->blocked_open : 0)) | |
55 | ||
56 | #ifdef CONFIG_SERIAL_CORE_CONSOLE | |
57 | #define uart_console(port) ((port)->cons && (port)->cons->index == (port)->line) | |
58 | #else | |
59 | #define uart_console(port) (0) | |
60 | #endif | |
61 | ||
62 | static void uart_change_speed(struct uart_state *state, struct termios *old_termios); | |
63 | static void uart_wait_until_sent(struct tty_struct *tty, int timeout); | |
64 | static 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 | */ | |
70 | void uart_write_wakeup(struct uart_port *port) | |
71 | { | |
72 | struct uart_info *info = port->info; | |
73 | tasklet_schedule(&info->tlet); | |
74 | } | |
75 | ||
76 | static void uart_stop(struct tty_struct *tty) | |
77 | { | |
78 | struct uart_state *state = tty->driver_data; | |
79 | struct uart_port *port = state->port; | |
80 | unsigned long flags; | |
81 | ||
82 | spin_lock_irqsave(&port->lock, flags); | |
b129a8cc | 83 | port->ops->stop_tx(port); |
1da177e4 LT |
84 | spin_unlock_irqrestore(&port->lock, flags); |
85 | } | |
86 | ||
87 | static void __uart_start(struct tty_struct *tty) | |
88 | { | |
89 | struct uart_state *state = tty->driver_data; | |
90 | struct uart_port *port = state->port; | |
91 | ||
92 | if (!uart_circ_empty(&state->info->xmit) && state->info->xmit.buf && | |
93 | !tty->stopped && !tty->hw_stopped) | |
b129a8cc | 94 | port->ops->start_tx(port); |
1da177e4 LT |
95 | } |
96 | ||
97 | static void uart_start(struct tty_struct *tty) | |
98 | { | |
99 | struct uart_state *state = tty->driver_data; | |
100 | struct uart_port *port = state->port; | |
101 | unsigned long flags; | |
102 | ||
103 | spin_lock_irqsave(&port->lock, flags); | |
104 | __uart_start(tty); | |
105 | spin_unlock_irqrestore(&port->lock, flags); | |
106 | } | |
107 | ||
108 | static void uart_tasklet_action(unsigned long data) | |
109 | { | |
110 | struct uart_state *state = (struct uart_state *)data; | |
111 | tty_wakeup(state->info->tty); | |
112 | } | |
113 | ||
114 | static inline void | |
115 | uart_update_mctrl(struct uart_port *port, unsigned int set, unsigned int clear) | |
116 | { | |
117 | unsigned long flags; | |
118 | unsigned int old; | |
119 | ||
120 | spin_lock_irqsave(&port->lock, flags); | |
121 | old = port->mctrl; | |
122 | port->mctrl = (old & ~clear) | set; | |
123 | if (old != port->mctrl) | |
124 | port->ops->set_mctrl(port, port->mctrl); | |
125 | spin_unlock_irqrestore(&port->lock, flags); | |
126 | } | |
127 | ||
128 | #define uart_set_mctrl(port,set) uart_update_mctrl(port,set,0) | |
129 | #define uart_clear_mctrl(port,clear) uart_update_mctrl(port,0,clear) | |
130 | ||
131 | /* | |
132 | * Startup the port. This will be called once per open. All calls | |
133 | * will be serialised by the per-port semaphore. | |
134 | */ | |
135 | static int uart_startup(struct uart_state *state, int init_hw) | |
136 | { | |
137 | struct uart_info *info = state->info; | |
138 | struct uart_port *port = state->port; | |
139 | unsigned long page; | |
140 | int retval = 0; | |
141 | ||
142 | if (info->flags & UIF_INITIALIZED) | |
143 | return 0; | |
144 | ||
145 | /* | |
146 | * Set the TTY IO error marker - we will only clear this | |
147 | * once we have successfully opened the port. Also set | |
148 | * up the tty->alt_speed kludge | |
149 | */ | |
a2436b22 | 150 | set_bit(TTY_IO_ERROR, &info->tty->flags); |
1da177e4 LT |
151 | |
152 | if (port->type == PORT_UNKNOWN) | |
153 | return 0; | |
154 | ||
155 | /* | |
156 | * Initialise and allocate the transmit and temporary | |
157 | * buffer. | |
158 | */ | |
159 | if (!info->xmit.buf) { | |
160 | page = get_zeroed_page(GFP_KERNEL); | |
161 | if (!page) | |
162 | return -ENOMEM; | |
163 | ||
164 | info->xmit.buf = (unsigned char *) page; | |
165 | uart_circ_clear(&info->xmit); | |
166 | } | |
167 | ||
168 | retval = port->ops->startup(port); | |
169 | if (retval == 0) { | |
170 | if (init_hw) { | |
171 | /* | |
172 | * Initialise the hardware port settings. | |
173 | */ | |
174 | uart_change_speed(state, NULL); | |
175 | ||
176 | /* | |
177 | * Setup the RTS and DTR signals once the | |
178 | * port is open and ready to respond. | |
179 | */ | |
180 | if (info->tty->termios->c_cflag & CBAUD) | |
181 | uart_set_mctrl(port, TIOCM_RTS | TIOCM_DTR); | |
182 | } | |
183 | ||
0dd7a1ae RK |
184 | if (info->flags & UIF_CTS_FLOW) { |
185 | spin_lock_irq(&port->lock); | |
186 | if (!(port->ops->get_mctrl(port) & TIOCM_CTS)) | |
187 | info->tty->hw_stopped = 1; | |
188 | spin_unlock_irq(&port->lock); | |
189 | } | |
190 | ||
1da177e4 LT |
191 | info->flags |= UIF_INITIALIZED; |
192 | ||
193 | clear_bit(TTY_IO_ERROR, &info->tty->flags); | |
194 | } | |
195 | ||
196 | if (retval && capable(CAP_SYS_ADMIN)) | |
197 | retval = 0; | |
198 | ||
199 | return retval; | |
200 | } | |
201 | ||
202 | /* | |
203 | * This routine will shutdown a serial port; interrupts are disabled, and | |
204 | * DTR is dropped if the hangup on close termio flag is on. Calls to | |
205 | * uart_shutdown are serialised by the per-port semaphore. | |
206 | */ | |
207 | static void uart_shutdown(struct uart_state *state) | |
208 | { | |
209 | struct uart_info *info = state->info; | |
210 | struct uart_port *port = state->port; | |
211 | ||
1da177e4 | 212 | /* |
ee31b337 | 213 | * Set the TTY IO error marker |
1da177e4 | 214 | */ |
ee31b337 RK |
215 | if (info->tty) |
216 | set_bit(TTY_IO_ERROR, &info->tty->flags); | |
1da177e4 | 217 | |
ee31b337 RK |
218 | if (info->flags & UIF_INITIALIZED) { |
219 | info->flags &= ~UIF_INITIALIZED; | |
1da177e4 | 220 | |
ee31b337 RK |
221 | /* |
222 | * Turn off DTR and RTS early. | |
223 | */ | |
224 | if (!info->tty || (info->tty->termios->c_cflag & HUPCL)) | |
225 | uart_clear_mctrl(port, TIOCM_DTR | TIOCM_RTS); | |
226 | ||
227 | /* | |
228 | * clear delta_msr_wait queue to avoid mem leaks: we may free | |
229 | * the irq here so the queue might never be woken up. Note | |
230 | * that we won't end up waiting on delta_msr_wait again since | |
231 | * any outstanding file descriptors should be pointing at | |
232 | * hung_up_tty_fops now. | |
233 | */ | |
234 | wake_up_interruptible(&info->delta_msr_wait); | |
235 | ||
236 | /* | |
237 | * Free the IRQ and disable the port. | |
238 | */ | |
239 | port->ops->shutdown(port); | |
240 | ||
241 | /* | |
242 | * Ensure that the IRQ handler isn't running on another CPU. | |
243 | */ | |
244 | synchronize_irq(port->irq); | |
245 | } | |
1da177e4 LT |
246 | |
247 | /* | |
ee31b337 | 248 | * kill off our tasklet |
1da177e4 | 249 | */ |
ee31b337 | 250 | tasklet_kill(&info->tlet); |
1da177e4 LT |
251 | |
252 | /* | |
253 | * Free the transmit buffer page. | |
254 | */ | |
255 | if (info->xmit.buf) { | |
256 | free_page((unsigned long)info->xmit.buf); | |
257 | info->xmit.buf = NULL; | |
258 | } | |
1da177e4 LT |
259 | } |
260 | ||
261 | /** | |
262 | * uart_update_timeout - update per-port FIFO timeout. | |
263 | * @port: uart_port structure describing the port | |
264 | * @cflag: termios cflag value | |
265 | * @baud: speed of the port | |
266 | * | |
267 | * Set the port FIFO timeout value. The @cflag value should | |
268 | * reflect the actual hardware settings. | |
269 | */ | |
270 | void | |
271 | uart_update_timeout(struct uart_port *port, unsigned int cflag, | |
272 | unsigned int baud) | |
273 | { | |
274 | unsigned int bits; | |
275 | ||
276 | /* byte size and parity */ | |
277 | switch (cflag & CSIZE) { | |
278 | case CS5: | |
279 | bits = 7; | |
280 | break; | |
281 | case CS6: | |
282 | bits = 8; | |
283 | break; | |
284 | case CS7: | |
285 | bits = 9; | |
286 | break; | |
287 | default: | |
288 | bits = 10; | |
289 | break; // CS8 | |
290 | } | |
291 | ||
292 | if (cflag & CSTOPB) | |
293 | bits++; | |
294 | if (cflag & PARENB) | |
295 | bits++; | |
296 | ||
297 | /* | |
298 | * The total number of bits to be transmitted in the fifo. | |
299 | */ | |
300 | bits = bits * port->fifosize; | |
301 | ||
302 | /* | |
303 | * Figure the timeout to send the above number of bits. | |
304 | * Add .02 seconds of slop | |
305 | */ | |
306 | port->timeout = (HZ * bits) / baud + HZ/50; | |
307 | } | |
308 | ||
309 | EXPORT_SYMBOL(uart_update_timeout); | |
310 | ||
311 | /** | |
312 | * uart_get_baud_rate - return baud rate for a particular port | |
313 | * @port: uart_port structure describing the port in question. | |
314 | * @termios: desired termios settings. | |
315 | * @old: old termios (or NULL) | |
316 | * @min: minimum acceptable baud rate | |
317 | * @max: maximum acceptable baud rate | |
318 | * | |
319 | * Decode the termios structure into a numeric baud rate, | |
320 | * taking account of the magic 38400 baud rate (with spd_* | |
321 | * flags), and mapping the %B0 rate to 9600 baud. | |
322 | * | |
323 | * If the new baud rate is invalid, try the old termios setting. | |
324 | * If it's still invalid, we try 9600 baud. | |
325 | * | |
326 | * Update the @termios structure to reflect the baud rate | |
327 | * we're actually going to be using. | |
328 | */ | |
329 | unsigned int | |
330 | uart_get_baud_rate(struct uart_port *port, struct termios *termios, | |
331 | struct termios *old, unsigned int min, unsigned int max) | |
332 | { | |
333 | unsigned int try, baud, altbaud = 38400; | |
334 | unsigned int flags = port->flags & UPF_SPD_MASK; | |
335 | ||
336 | if (flags == UPF_SPD_HI) | |
337 | altbaud = 57600; | |
338 | if (flags == UPF_SPD_VHI) | |
339 | altbaud = 115200; | |
340 | if (flags == UPF_SPD_SHI) | |
341 | altbaud = 230400; | |
342 | if (flags == UPF_SPD_WARP) | |
343 | altbaud = 460800; | |
344 | ||
345 | for (try = 0; try < 2; try++) { | |
346 | baud = tty_termios_baud_rate(termios); | |
347 | ||
348 | /* | |
349 | * The spd_hi, spd_vhi, spd_shi, spd_warp kludge... | |
350 | * Die! Die! Die! | |
351 | */ | |
352 | if (baud == 38400) | |
353 | baud = altbaud; | |
354 | ||
355 | /* | |
356 | * Special case: B0 rate. | |
357 | */ | |
358 | if (baud == 0) | |
359 | baud = 9600; | |
360 | ||
361 | if (baud >= min && baud <= max) | |
362 | return baud; | |
363 | ||
364 | /* | |
365 | * Oops, the quotient was zero. Try again with | |
366 | * the old baud rate if possible. | |
367 | */ | |
368 | termios->c_cflag &= ~CBAUD; | |
369 | if (old) { | |
370 | termios->c_cflag |= old->c_cflag & CBAUD; | |
371 | old = NULL; | |
372 | continue; | |
373 | } | |
374 | ||
375 | /* | |
376 | * As a last resort, if the quotient is zero, | |
377 | * default to 9600 bps | |
378 | */ | |
379 | termios->c_cflag |= B9600; | |
380 | } | |
381 | ||
382 | return 0; | |
383 | } | |
384 | ||
385 | EXPORT_SYMBOL(uart_get_baud_rate); | |
386 | ||
387 | /** | |
388 | * uart_get_divisor - return uart clock divisor | |
389 | * @port: uart_port structure describing the port. | |
390 | * @baud: desired baud rate | |
391 | * | |
392 | * Calculate the uart clock divisor for the port. | |
393 | */ | |
394 | unsigned int | |
395 | uart_get_divisor(struct uart_port *port, unsigned int baud) | |
396 | { | |
397 | unsigned int quot; | |
398 | ||
399 | /* | |
400 | * Old custom speed handling. | |
401 | */ | |
402 | if (baud == 38400 && (port->flags & UPF_SPD_MASK) == UPF_SPD_CUST) | |
403 | quot = port->custom_divisor; | |
404 | else | |
405 | quot = (port->uartclk + (8 * baud)) / (16 * baud); | |
406 | ||
407 | return quot; | |
408 | } | |
409 | ||
410 | EXPORT_SYMBOL(uart_get_divisor); | |
411 | ||
412 | static void | |
413 | uart_change_speed(struct uart_state *state, struct termios *old_termios) | |
414 | { | |
415 | struct tty_struct *tty = state->info->tty; | |
416 | struct uart_port *port = state->port; | |
417 | struct termios *termios; | |
418 | ||
419 | /* | |
420 | * If we have no tty, termios, or the port does not exist, | |
421 | * then we can't set the parameters for this port. | |
422 | */ | |
423 | if (!tty || !tty->termios || port->type == PORT_UNKNOWN) | |
424 | return; | |
425 | ||
426 | termios = tty->termios; | |
427 | ||
428 | /* | |
429 | * Set flags based on termios cflag | |
430 | */ | |
431 | if (termios->c_cflag & CRTSCTS) | |
432 | state->info->flags |= UIF_CTS_FLOW; | |
433 | else | |
434 | state->info->flags &= ~UIF_CTS_FLOW; | |
435 | ||
436 | if (termios->c_cflag & CLOCAL) | |
437 | state->info->flags &= ~UIF_CHECK_CD; | |
438 | else | |
439 | state->info->flags |= UIF_CHECK_CD; | |
440 | ||
441 | port->ops->set_termios(port, termios, old_termios); | |
442 | } | |
443 | ||
444 | static inline void | |
445 | __uart_put_char(struct uart_port *port, struct circ_buf *circ, unsigned char c) | |
446 | { | |
447 | unsigned long flags; | |
448 | ||
449 | if (!circ->buf) | |
450 | return; | |
451 | ||
452 | spin_lock_irqsave(&port->lock, flags); | |
453 | if (uart_circ_chars_free(circ) != 0) { | |
454 | circ->buf[circ->head] = c; | |
455 | circ->head = (circ->head + 1) & (UART_XMIT_SIZE - 1); | |
456 | } | |
457 | spin_unlock_irqrestore(&port->lock, flags); | |
458 | } | |
459 | ||
460 | static void uart_put_char(struct tty_struct *tty, unsigned char ch) | |
461 | { | |
462 | struct uart_state *state = tty->driver_data; | |
463 | ||
464 | __uart_put_char(state->port, &state->info->xmit, ch); | |
465 | } | |
466 | ||
467 | static void uart_flush_chars(struct tty_struct *tty) | |
468 | { | |
469 | uart_start(tty); | |
470 | } | |
471 | ||
472 | static int | |
473 | uart_write(struct tty_struct *tty, const unsigned char * buf, int count) | |
474 | { | |
475 | struct uart_state *state = tty->driver_data; | |
476 | struct uart_port *port = state->port; | |
477 | struct circ_buf *circ = &state->info->xmit; | |
478 | unsigned long flags; | |
479 | int c, ret = 0; | |
480 | ||
481 | if (!circ->buf) | |
482 | return 0; | |
483 | ||
484 | spin_lock_irqsave(&port->lock, flags); | |
485 | while (1) { | |
486 | c = CIRC_SPACE_TO_END(circ->head, circ->tail, UART_XMIT_SIZE); | |
487 | if (count < c) | |
488 | c = count; | |
489 | if (c <= 0) | |
490 | break; | |
491 | memcpy(circ->buf + circ->head, buf, c); | |
492 | circ->head = (circ->head + c) & (UART_XMIT_SIZE - 1); | |
493 | buf += c; | |
494 | count -= c; | |
495 | ret += c; | |
496 | } | |
497 | spin_unlock_irqrestore(&port->lock, flags); | |
498 | ||
499 | uart_start(tty); | |
500 | return ret; | |
501 | } | |
502 | ||
503 | static int uart_write_room(struct tty_struct *tty) | |
504 | { | |
505 | struct uart_state *state = tty->driver_data; | |
506 | ||
507 | return uart_circ_chars_free(&state->info->xmit); | |
508 | } | |
509 | ||
510 | static int uart_chars_in_buffer(struct tty_struct *tty) | |
511 | { | |
512 | struct uart_state *state = tty->driver_data; | |
513 | ||
514 | return uart_circ_chars_pending(&state->info->xmit); | |
515 | } | |
516 | ||
517 | static void uart_flush_buffer(struct tty_struct *tty) | |
518 | { | |
519 | struct uart_state *state = tty->driver_data; | |
520 | struct uart_port *port = state->port; | |
521 | unsigned long flags; | |
522 | ||
523 | DPRINTK("uart_flush_buffer(%d) called\n", tty->index); | |
524 | ||
525 | spin_lock_irqsave(&port->lock, flags); | |
526 | uart_circ_clear(&state->info->xmit); | |
527 | spin_unlock_irqrestore(&port->lock, flags); | |
528 | tty_wakeup(tty); | |
529 | } | |
530 | ||
531 | /* | |
532 | * This function is used to send a high-priority XON/XOFF character to | |
533 | * the device | |
534 | */ | |
535 | static void uart_send_xchar(struct tty_struct *tty, char ch) | |
536 | { | |
537 | struct uart_state *state = tty->driver_data; | |
538 | struct uart_port *port = state->port; | |
539 | unsigned long flags; | |
540 | ||
541 | if (port->ops->send_xchar) | |
542 | port->ops->send_xchar(port, ch); | |
543 | else { | |
544 | port->x_char = ch; | |
545 | if (ch) { | |
546 | spin_lock_irqsave(&port->lock, flags); | |
b129a8cc | 547 | port->ops->start_tx(port); |
1da177e4 LT |
548 | spin_unlock_irqrestore(&port->lock, flags); |
549 | } | |
550 | } | |
551 | } | |
552 | ||
553 | static void uart_throttle(struct tty_struct *tty) | |
554 | { | |
555 | struct uart_state *state = tty->driver_data; | |
556 | ||
557 | if (I_IXOFF(tty)) | |
558 | uart_send_xchar(tty, STOP_CHAR(tty)); | |
559 | ||
560 | if (tty->termios->c_cflag & CRTSCTS) | |
561 | uart_clear_mctrl(state->port, TIOCM_RTS); | |
562 | } | |
563 | ||
564 | static void uart_unthrottle(struct tty_struct *tty) | |
565 | { | |
566 | struct uart_state *state = tty->driver_data; | |
567 | struct uart_port *port = state->port; | |
568 | ||
569 | if (I_IXOFF(tty)) { | |
570 | if (port->x_char) | |
571 | port->x_char = 0; | |
572 | else | |
573 | uart_send_xchar(tty, START_CHAR(tty)); | |
574 | } | |
575 | ||
576 | if (tty->termios->c_cflag & CRTSCTS) | |
577 | uart_set_mctrl(port, TIOCM_RTS); | |
578 | } | |
579 | ||
580 | static int uart_get_info(struct uart_state *state, | |
581 | struct serial_struct __user *retinfo) | |
582 | { | |
583 | struct uart_port *port = state->port; | |
584 | struct serial_struct tmp; | |
585 | ||
586 | memset(&tmp, 0, sizeof(tmp)); | |
587 | tmp.type = port->type; | |
588 | tmp.line = port->line; | |
589 | tmp.port = port->iobase; | |
590 | if (HIGH_BITS_OFFSET) | |
591 | tmp.port_high = (long) port->iobase >> HIGH_BITS_OFFSET; | |
592 | tmp.irq = port->irq; | |
593 | tmp.flags = port->flags; | |
594 | tmp.xmit_fifo_size = port->fifosize; | |
595 | tmp.baud_base = port->uartclk / 16; | |
596 | tmp.close_delay = state->close_delay / 10; | |
597 | tmp.closing_wait = state->closing_wait == USF_CLOSING_WAIT_NONE ? | |
598 | ASYNC_CLOSING_WAIT_NONE : | |
599 | state->closing_wait / 10; | |
600 | tmp.custom_divisor = port->custom_divisor; | |
601 | tmp.hub6 = port->hub6; | |
602 | tmp.io_type = port->iotype; | |
603 | tmp.iomem_reg_shift = port->regshift; | |
604 | tmp.iomem_base = (void *)port->mapbase; | |
605 | ||
606 | if (copy_to_user(retinfo, &tmp, sizeof(*retinfo))) | |
607 | return -EFAULT; | |
608 | return 0; | |
609 | } | |
610 | ||
611 | static int uart_set_info(struct uart_state *state, | |
612 | struct serial_struct __user *newinfo) | |
613 | { | |
614 | struct serial_struct new_serial; | |
615 | struct uart_port *port = state->port; | |
616 | unsigned long new_port; | |
617 | unsigned int change_irq, change_port, old_flags, closing_wait; | |
618 | unsigned int old_custom_divisor, close_delay; | |
619 | int retval = 0; | |
620 | ||
621 | if (copy_from_user(&new_serial, newinfo, sizeof(new_serial))) | |
622 | return -EFAULT; | |
623 | ||
624 | new_port = new_serial.port; | |
625 | if (HIGH_BITS_OFFSET) | |
626 | new_port += (unsigned long) new_serial.port_high << HIGH_BITS_OFFSET; | |
627 | ||
628 | new_serial.irq = irq_canonicalize(new_serial.irq); | |
629 | close_delay = new_serial.close_delay * 10; | |
630 | closing_wait = new_serial.closing_wait == ASYNC_CLOSING_WAIT_NONE ? | |
631 | USF_CLOSING_WAIT_NONE : new_serial.closing_wait * 10; | |
632 | ||
633 | /* | |
634 | * This semaphore protects state->count. It is also | |
635 | * very useful to prevent opens. Also, take the | |
636 | * port configuration semaphore to make sure that a | |
637 | * module insertion/removal doesn't change anything | |
638 | * under us. | |
639 | */ | |
640 | down(&state->sem); | |
641 | ||
642 | change_irq = new_serial.irq != port->irq; | |
643 | ||
644 | /* | |
645 | * Since changing the 'type' of the port changes its resource | |
646 | * allocations, we should treat type changes the same as | |
647 | * IO port changes. | |
648 | */ | |
649 | change_port = new_port != port->iobase || | |
650 | (unsigned long)new_serial.iomem_base != port->mapbase || | |
651 | new_serial.hub6 != port->hub6 || | |
652 | new_serial.io_type != port->iotype || | |
653 | new_serial.iomem_reg_shift != port->regshift || | |
654 | new_serial.type != port->type; | |
655 | ||
656 | old_flags = port->flags; | |
657 | old_custom_divisor = port->custom_divisor; | |
658 | ||
659 | if (!capable(CAP_SYS_ADMIN)) { | |
660 | retval = -EPERM; | |
661 | if (change_irq || change_port || | |
662 | (new_serial.baud_base != port->uartclk / 16) || | |
663 | (close_delay != state->close_delay) || | |
664 | (closing_wait != state->closing_wait) || | |
665 | (new_serial.xmit_fifo_size != port->fifosize) || | |
666 | (((new_serial.flags ^ old_flags) & ~UPF_USR_MASK) != 0)) | |
667 | goto exit; | |
668 | port->flags = ((port->flags & ~UPF_USR_MASK) | | |
669 | (new_serial.flags & UPF_USR_MASK)); | |
670 | port->custom_divisor = new_serial.custom_divisor; | |
671 | goto check_and_exit; | |
672 | } | |
673 | ||
674 | /* | |
675 | * Ask the low level driver to verify the settings. | |
676 | */ | |
677 | if (port->ops->verify_port) | |
678 | retval = port->ops->verify_port(port, &new_serial); | |
679 | ||
680 | if ((new_serial.irq >= NR_IRQS) || (new_serial.irq < 0) || | |
681 | (new_serial.baud_base < 9600)) | |
682 | retval = -EINVAL; | |
683 | ||
684 | if (retval) | |
685 | goto exit; | |
686 | ||
687 | if (change_port || change_irq) { | |
688 | retval = -EBUSY; | |
689 | ||
690 | /* | |
691 | * Make sure that we are the sole user of this port. | |
692 | */ | |
693 | if (uart_users(state) > 1) | |
694 | goto exit; | |
695 | ||
696 | /* | |
697 | * We need to shutdown the serial port at the old | |
698 | * port/type/irq combination. | |
699 | */ | |
700 | uart_shutdown(state); | |
701 | } | |
702 | ||
703 | if (change_port) { | |
704 | unsigned long old_iobase, old_mapbase; | |
705 | unsigned int old_type, old_iotype, old_hub6, old_shift; | |
706 | ||
707 | old_iobase = port->iobase; | |
708 | old_mapbase = port->mapbase; | |
709 | old_type = port->type; | |
710 | old_hub6 = port->hub6; | |
711 | old_iotype = port->iotype; | |
712 | old_shift = port->regshift; | |
713 | ||
714 | /* | |
715 | * Free and release old regions | |
716 | */ | |
717 | if (old_type != PORT_UNKNOWN) | |
718 | port->ops->release_port(port); | |
719 | ||
720 | port->iobase = new_port; | |
721 | port->type = new_serial.type; | |
722 | port->hub6 = new_serial.hub6; | |
723 | port->iotype = new_serial.io_type; | |
724 | port->regshift = new_serial.iomem_reg_shift; | |
725 | port->mapbase = (unsigned long)new_serial.iomem_base; | |
726 | ||
727 | /* | |
728 | * Claim and map the new regions | |
729 | */ | |
730 | if (port->type != PORT_UNKNOWN) { | |
731 | retval = port->ops->request_port(port); | |
732 | } else { | |
733 | /* Always success - Jean II */ | |
734 | retval = 0; | |
735 | } | |
736 | ||
737 | /* | |
738 | * If we fail to request resources for the | |
739 | * new port, try to restore the old settings. | |
740 | */ | |
741 | if (retval && old_type != PORT_UNKNOWN) { | |
742 | port->iobase = old_iobase; | |
743 | port->type = old_type; | |
744 | port->hub6 = old_hub6; | |
745 | port->iotype = old_iotype; | |
746 | port->regshift = old_shift; | |
747 | port->mapbase = old_mapbase; | |
748 | retval = port->ops->request_port(port); | |
749 | /* | |
750 | * If we failed to restore the old settings, | |
751 | * we fail like this. | |
752 | */ | |
753 | if (retval) | |
754 | port->type = PORT_UNKNOWN; | |
755 | ||
756 | /* | |
757 | * We failed anyway. | |
758 | */ | |
759 | retval = -EBUSY; | |
760 | } | |
761 | } | |
762 | ||
763 | port->irq = new_serial.irq; | |
764 | port->uartclk = new_serial.baud_base * 16; | |
765 | port->flags = (port->flags & ~UPF_CHANGE_MASK) | | |
766 | (new_serial.flags & UPF_CHANGE_MASK); | |
767 | port->custom_divisor = new_serial.custom_divisor; | |
768 | state->close_delay = close_delay; | |
769 | state->closing_wait = closing_wait; | |
770 | port->fifosize = new_serial.xmit_fifo_size; | |
771 | if (state->info->tty) | |
772 | state->info->tty->low_latency = | |
773 | (port->flags & UPF_LOW_LATENCY) ? 1 : 0; | |
774 | ||
775 | check_and_exit: | |
776 | retval = 0; | |
777 | if (port->type == PORT_UNKNOWN) | |
778 | goto exit; | |
779 | if (state->info->flags & UIF_INITIALIZED) { | |
780 | if (((old_flags ^ port->flags) & UPF_SPD_MASK) || | |
781 | old_custom_divisor != port->custom_divisor) { | |
782 | /* | |
783 | * If they're setting up a custom divisor or speed, | |
784 | * instead of clearing it, then bitch about it. No | |
785 | * need to rate-limit; it's CAP_SYS_ADMIN only. | |
786 | */ | |
787 | if (port->flags & UPF_SPD_MASK) { | |
788 | char buf[64]; | |
789 | printk(KERN_NOTICE | |
790 | "%s sets custom speed on %s. This " | |
791 | "is deprecated.\n", current->comm, | |
792 | tty_name(state->info->tty, buf)); | |
793 | } | |
794 | uart_change_speed(state, NULL); | |
795 | } | |
796 | } else | |
797 | retval = uart_startup(state, 1); | |
798 | exit: | |
799 | up(&state->sem); | |
800 | return retval; | |
801 | } | |
802 | ||
803 | ||
804 | /* | |
805 | * uart_get_lsr_info - get line status register info. | |
806 | * Note: uart_ioctl protects us against hangups. | |
807 | */ | |
808 | static int uart_get_lsr_info(struct uart_state *state, | |
809 | unsigned int __user *value) | |
810 | { | |
811 | struct uart_port *port = state->port; | |
812 | unsigned int result; | |
813 | ||
814 | result = port->ops->tx_empty(port); | |
815 | ||
816 | /* | |
817 | * If we're about to load something into the transmit | |
818 | * register, we'll pretend the transmitter isn't empty to | |
819 | * avoid a race condition (depending on when the transmit | |
820 | * interrupt happens). | |
821 | */ | |
822 | if (port->x_char || | |
823 | ((uart_circ_chars_pending(&state->info->xmit) > 0) && | |
824 | !state->info->tty->stopped && !state->info->tty->hw_stopped)) | |
825 | result &= ~TIOCSER_TEMT; | |
826 | ||
827 | return put_user(result, value); | |
828 | } | |
829 | ||
830 | static int uart_tiocmget(struct tty_struct *tty, struct file *file) | |
831 | { | |
832 | struct uart_state *state = tty->driver_data; | |
833 | struct uart_port *port = state->port; | |
834 | int result = -EIO; | |
835 | ||
836 | down(&state->sem); | |
837 | if ((!file || !tty_hung_up_p(file)) && | |
838 | !(tty->flags & (1 << TTY_IO_ERROR))) { | |
839 | result = port->mctrl; | |
c5f4644e RK |
840 | |
841 | spin_lock_irq(&port->lock); | |
1da177e4 | 842 | result |= port->ops->get_mctrl(port); |
c5f4644e | 843 | spin_unlock_irq(&port->lock); |
1da177e4 LT |
844 | } |
845 | up(&state->sem); | |
846 | ||
847 | return result; | |
848 | } | |
849 | ||
850 | static int | |
851 | uart_tiocmset(struct tty_struct *tty, struct file *file, | |
852 | unsigned int set, unsigned int clear) | |
853 | { | |
854 | struct uart_state *state = tty->driver_data; | |
855 | struct uart_port *port = state->port; | |
856 | int ret = -EIO; | |
857 | ||
858 | down(&state->sem); | |
859 | if ((!file || !tty_hung_up_p(file)) && | |
860 | !(tty->flags & (1 << TTY_IO_ERROR))) { | |
861 | uart_update_mctrl(port, set, clear); | |
862 | ret = 0; | |
863 | } | |
864 | up(&state->sem); | |
865 | return ret; | |
866 | } | |
867 | ||
868 | static void uart_break_ctl(struct tty_struct *tty, int break_state) | |
869 | { | |
870 | struct uart_state *state = tty->driver_data; | |
871 | struct uart_port *port = state->port; | |
872 | ||
873 | BUG_ON(!kernel_locked()); | |
874 | ||
875 | down(&state->sem); | |
876 | ||
877 | if (port->type != PORT_UNKNOWN) | |
878 | port->ops->break_ctl(port, break_state); | |
879 | ||
880 | up(&state->sem); | |
881 | } | |
882 | ||
883 | static int uart_do_autoconfig(struct uart_state *state) | |
884 | { | |
885 | struct uart_port *port = state->port; | |
886 | int flags, ret; | |
887 | ||
888 | if (!capable(CAP_SYS_ADMIN)) | |
889 | return -EPERM; | |
890 | ||
891 | /* | |
892 | * Take the per-port semaphore. This prevents count from | |
893 | * changing, and hence any extra opens of the port while | |
894 | * we're auto-configuring. | |
895 | */ | |
896 | if (down_interruptible(&state->sem)) | |
897 | return -ERESTARTSYS; | |
898 | ||
899 | ret = -EBUSY; | |
900 | if (uart_users(state) == 1) { | |
901 | uart_shutdown(state); | |
902 | ||
903 | /* | |
904 | * If we already have a port type configured, | |
905 | * we must release its resources. | |
906 | */ | |
907 | if (port->type != PORT_UNKNOWN) | |
908 | port->ops->release_port(port); | |
909 | ||
910 | flags = UART_CONFIG_TYPE; | |
911 | if (port->flags & UPF_AUTO_IRQ) | |
912 | flags |= UART_CONFIG_IRQ; | |
913 | ||
914 | /* | |
915 | * This will claim the ports resources if | |
916 | * a port is found. | |
917 | */ | |
918 | port->ops->config_port(port, flags); | |
919 | ||
920 | ret = uart_startup(state, 1); | |
921 | } | |
922 | up(&state->sem); | |
923 | return ret; | |
924 | } | |
925 | ||
926 | /* | |
927 | * Wait for any of the 4 modem inputs (DCD,RI,DSR,CTS) to change | |
928 | * - mask passed in arg for lines of interest | |
929 | * (use |'ed TIOCM_RNG/DSR/CD/CTS for masking) | |
930 | * Caller should use TIOCGICOUNT to see which one it was | |
931 | */ | |
932 | static int | |
933 | uart_wait_modem_status(struct uart_state *state, unsigned long arg) | |
934 | { | |
935 | struct uart_port *port = state->port; | |
936 | DECLARE_WAITQUEUE(wait, current); | |
937 | struct uart_icount cprev, cnow; | |
938 | int ret; | |
939 | ||
940 | /* | |
941 | * note the counters on entry | |
942 | */ | |
943 | spin_lock_irq(&port->lock); | |
944 | memcpy(&cprev, &port->icount, sizeof(struct uart_icount)); | |
945 | ||
946 | /* | |
947 | * Force modem status interrupts on | |
948 | */ | |
949 | port->ops->enable_ms(port); | |
950 | spin_unlock_irq(&port->lock); | |
951 | ||
952 | add_wait_queue(&state->info->delta_msr_wait, &wait); | |
953 | for (;;) { | |
954 | spin_lock_irq(&port->lock); | |
955 | memcpy(&cnow, &port->icount, sizeof(struct uart_icount)); | |
956 | spin_unlock_irq(&port->lock); | |
957 | ||
958 | set_current_state(TASK_INTERRUPTIBLE); | |
959 | ||
960 | if (((arg & TIOCM_RNG) && (cnow.rng != cprev.rng)) || | |
961 | ((arg & TIOCM_DSR) && (cnow.dsr != cprev.dsr)) || | |
962 | ((arg & TIOCM_CD) && (cnow.dcd != cprev.dcd)) || | |
963 | ((arg & TIOCM_CTS) && (cnow.cts != cprev.cts))) { | |
964 | ret = 0; | |
965 | break; | |
966 | } | |
967 | ||
968 | schedule(); | |
969 | ||
970 | /* see if a signal did it */ | |
971 | if (signal_pending(current)) { | |
972 | ret = -ERESTARTSYS; | |
973 | break; | |
974 | } | |
975 | ||
976 | cprev = cnow; | |
977 | } | |
978 | ||
979 | current->state = TASK_RUNNING; | |
980 | remove_wait_queue(&state->info->delta_msr_wait, &wait); | |
981 | ||
982 | return ret; | |
983 | } | |
984 | ||
985 | /* | |
986 | * Get counter of input serial line interrupts (DCD,RI,DSR,CTS) | |
987 | * Return: write counters to the user passed counter struct | |
988 | * NB: both 1->0 and 0->1 transitions are counted except for | |
989 | * RI where only 0->1 is counted. | |
990 | */ | |
991 | static int uart_get_count(struct uart_state *state, | |
992 | struct serial_icounter_struct __user *icnt) | |
993 | { | |
994 | struct serial_icounter_struct icount; | |
995 | struct uart_icount cnow; | |
996 | struct uart_port *port = state->port; | |
997 | ||
998 | spin_lock_irq(&port->lock); | |
999 | memcpy(&cnow, &port->icount, sizeof(struct uart_icount)); | |
1000 | spin_unlock_irq(&port->lock); | |
1001 | ||
1002 | icount.cts = cnow.cts; | |
1003 | icount.dsr = cnow.dsr; | |
1004 | icount.rng = cnow.rng; | |
1005 | icount.dcd = cnow.dcd; | |
1006 | icount.rx = cnow.rx; | |
1007 | icount.tx = cnow.tx; | |
1008 | icount.frame = cnow.frame; | |
1009 | icount.overrun = cnow.overrun; | |
1010 | icount.parity = cnow.parity; | |
1011 | icount.brk = cnow.brk; | |
1012 | icount.buf_overrun = cnow.buf_overrun; | |
1013 | ||
1014 | return copy_to_user(icnt, &icount, sizeof(icount)) ? -EFAULT : 0; | |
1015 | } | |
1016 | ||
1017 | /* | |
1018 | * Called via sys_ioctl under the BKL. We can use spin_lock_irq() here. | |
1019 | */ | |
1020 | static int | |
1021 | uart_ioctl(struct tty_struct *tty, struct file *filp, unsigned int cmd, | |
1022 | unsigned long arg) | |
1023 | { | |
1024 | struct uart_state *state = tty->driver_data; | |
1025 | void __user *uarg = (void __user *)arg; | |
1026 | int ret = -ENOIOCTLCMD; | |
1027 | ||
1028 | BUG_ON(!kernel_locked()); | |
1029 | ||
1030 | /* | |
1031 | * These ioctls don't rely on the hardware to be present. | |
1032 | */ | |
1033 | switch (cmd) { | |
1034 | case TIOCGSERIAL: | |
1035 | ret = uart_get_info(state, uarg); | |
1036 | break; | |
1037 | ||
1038 | case TIOCSSERIAL: | |
1039 | ret = uart_set_info(state, uarg); | |
1040 | break; | |
1041 | ||
1042 | case TIOCSERCONFIG: | |
1043 | ret = uart_do_autoconfig(state); | |
1044 | break; | |
1045 | ||
1046 | case TIOCSERGWILD: /* obsolete */ | |
1047 | case TIOCSERSWILD: /* obsolete */ | |
1048 | ret = 0; | |
1049 | break; | |
1050 | } | |
1051 | ||
1052 | if (ret != -ENOIOCTLCMD) | |
1053 | goto out; | |
1054 | ||
1055 | if (tty->flags & (1 << TTY_IO_ERROR)) { | |
1056 | ret = -EIO; | |
1057 | goto out; | |
1058 | } | |
1059 | ||
1060 | /* | |
1061 | * The following should only be used when hardware is present. | |
1062 | */ | |
1063 | switch (cmd) { | |
1064 | case TIOCMIWAIT: | |
1065 | ret = uart_wait_modem_status(state, arg); | |
1066 | break; | |
1067 | ||
1068 | case TIOCGICOUNT: | |
1069 | ret = uart_get_count(state, uarg); | |
1070 | break; | |
1071 | } | |
1072 | ||
1073 | if (ret != -ENOIOCTLCMD) | |
1074 | goto out; | |
1075 | ||
1076 | down(&state->sem); | |
1077 | ||
1078 | if (tty_hung_up_p(filp)) { | |
1079 | ret = -EIO; | |
1080 | goto out_up; | |
1081 | } | |
1082 | ||
1083 | /* | |
1084 | * All these rely on hardware being present and need to be | |
1085 | * protected against the tty being hung up. | |
1086 | */ | |
1087 | switch (cmd) { | |
1088 | case TIOCSERGETLSR: /* Get line status register */ | |
1089 | ret = uart_get_lsr_info(state, uarg); | |
1090 | break; | |
1091 | ||
1092 | default: { | |
1093 | struct uart_port *port = state->port; | |
1094 | if (port->ops->ioctl) | |
1095 | ret = port->ops->ioctl(port, cmd, arg); | |
1096 | break; | |
1097 | } | |
1098 | } | |
1099 | out_up: | |
1100 | up(&state->sem); | |
1101 | out: | |
1102 | return ret; | |
1103 | } | |
1104 | ||
1105 | static void uart_set_termios(struct tty_struct *tty, struct termios *old_termios) | |
1106 | { | |
1107 | struct uart_state *state = tty->driver_data; | |
1108 | unsigned long flags; | |
1109 | unsigned int cflag = tty->termios->c_cflag; | |
1110 | ||
1111 | BUG_ON(!kernel_locked()); | |
1112 | ||
1113 | /* | |
1114 | * These are the bits that are used to setup various | |
1115 | * flags in the low level driver. | |
1116 | */ | |
1117 | #define RELEVANT_IFLAG(iflag) ((iflag) & (IGNBRK|BRKINT|IGNPAR|PARMRK|INPCK)) | |
1118 | ||
1119 | if ((cflag ^ old_termios->c_cflag) == 0 && | |
1120 | RELEVANT_IFLAG(tty->termios->c_iflag ^ old_termios->c_iflag) == 0) | |
1121 | return; | |
1122 | ||
1123 | uart_change_speed(state, old_termios); | |
1124 | ||
1125 | /* Handle transition to B0 status */ | |
1126 | if ((old_termios->c_cflag & CBAUD) && !(cflag & CBAUD)) | |
1127 | uart_clear_mctrl(state->port, TIOCM_RTS | TIOCM_DTR); | |
1128 | ||
1129 | /* Handle transition away from B0 status */ | |
1130 | if (!(old_termios->c_cflag & CBAUD) && (cflag & CBAUD)) { | |
1131 | unsigned int mask = TIOCM_DTR; | |
1132 | if (!(cflag & CRTSCTS) || | |
1133 | !test_bit(TTY_THROTTLED, &tty->flags)) | |
1134 | mask |= TIOCM_RTS; | |
1135 | uart_set_mctrl(state->port, mask); | |
1136 | } | |
1137 | ||
1138 | /* Handle turning off CRTSCTS */ | |
1139 | if ((old_termios->c_cflag & CRTSCTS) && !(cflag & CRTSCTS)) { | |
1140 | spin_lock_irqsave(&state->port->lock, flags); | |
1141 | tty->hw_stopped = 0; | |
1142 | __uart_start(tty); | |
1143 | spin_unlock_irqrestore(&state->port->lock, flags); | |
1144 | } | |
1145 | ||
0dd7a1ae RK |
1146 | /* Handle turning on CRTSCTS */ |
1147 | if (!(old_termios->c_cflag & CRTSCTS) && (cflag & CRTSCTS)) { | |
1148 | spin_lock_irqsave(&state->port->lock, flags); | |
1149 | if (!(state->port->ops->get_mctrl(state->port) & TIOCM_CTS)) { | |
1150 | tty->hw_stopped = 1; | |
b129a8cc | 1151 | state->port->ops->stop_tx(state->port); |
0dd7a1ae RK |
1152 | } |
1153 | spin_unlock_irqrestore(&state->port->lock, flags); | |
1154 | } | |
1155 | ||
1da177e4 LT |
1156 | #if 0 |
1157 | /* | |
1158 | * No need to wake up processes in open wait, since they | |
1159 | * sample the CLOCAL flag once, and don't recheck it. | |
1160 | * XXX It's not clear whether the current behavior is correct | |
1161 | * or not. Hence, this may change..... | |
1162 | */ | |
1163 | if (!(old_termios->c_cflag & CLOCAL) && | |
1164 | (tty->termios->c_cflag & CLOCAL)) | |
1165 | wake_up_interruptible(&state->info->open_wait); | |
1166 | #endif | |
1167 | } | |
1168 | ||
1169 | /* | |
1170 | * In 2.4.5, calls to this will be serialized via the BKL in | |
1171 | * linux/drivers/char/tty_io.c:tty_release() | |
1172 | * linux/drivers/char/tty_io.c:do_tty_handup() | |
1173 | */ | |
1174 | static void uart_close(struct tty_struct *tty, struct file *filp) | |
1175 | { | |
1176 | struct uart_state *state = tty->driver_data; | |
1177 | struct uart_port *port; | |
1178 | ||
1179 | BUG_ON(!kernel_locked()); | |
1180 | ||
1181 | if (!state || !state->port) | |
1182 | return; | |
1183 | ||
1184 | port = state->port; | |
1185 | ||
1186 | DPRINTK("uart_close(%d) called\n", port->line); | |
1187 | ||
1188 | down(&state->sem); | |
1189 | ||
1190 | if (tty_hung_up_p(filp)) | |
1191 | goto done; | |
1192 | ||
1193 | if ((tty->count == 1) && (state->count != 1)) { | |
1194 | /* | |
1195 | * Uh, oh. tty->count is 1, which means that the tty | |
1196 | * structure will be freed. state->count should always | |
1197 | * be one in these conditions. If it's greater than | |
1198 | * one, we've got real problems, since it means the | |
1199 | * serial port won't be shutdown. | |
1200 | */ | |
1201 | printk(KERN_ERR "uart_close: bad serial port count; tty->count is 1, " | |
1202 | "state->count is %d\n", state->count); | |
1203 | state->count = 1; | |
1204 | } | |
1205 | if (--state->count < 0) { | |
1206 | printk(KERN_ERR "uart_close: bad serial port count for %s: %d\n", | |
1207 | tty->name, state->count); | |
1208 | state->count = 0; | |
1209 | } | |
1210 | if (state->count) | |
1211 | goto done; | |
1212 | ||
1213 | /* | |
1214 | * Now we wait for the transmit buffer to clear; and we notify | |
1215 | * the line discipline to only process XON/XOFF characters by | |
1216 | * setting tty->closing. | |
1217 | */ | |
1218 | tty->closing = 1; | |
1219 | ||
1220 | if (state->closing_wait != USF_CLOSING_WAIT_NONE) | |
1221 | tty_wait_until_sent(tty, msecs_to_jiffies(state->closing_wait)); | |
1222 | ||
1223 | /* | |
1224 | * At this point, we stop accepting input. To do this, we | |
1225 | * disable the receive line status interrupts. | |
1226 | */ | |
1227 | if (state->info->flags & UIF_INITIALIZED) { | |
1228 | unsigned long flags; | |
1229 | spin_lock_irqsave(&port->lock, flags); | |
1230 | port->ops->stop_rx(port); | |
1231 | spin_unlock_irqrestore(&port->lock, flags); | |
1232 | /* | |
1233 | * Before we drop DTR, make sure the UART transmitter | |
1234 | * has completely drained; this is especially | |
1235 | * important if there is a transmit FIFO! | |
1236 | */ | |
1237 | uart_wait_until_sent(tty, port->timeout); | |
1238 | } | |
1239 | ||
1240 | uart_shutdown(state); | |
1241 | uart_flush_buffer(tty); | |
1242 | ||
1243 | tty_ldisc_flush(tty); | |
1244 | ||
1245 | tty->closing = 0; | |
1246 | state->info->tty = NULL; | |
1247 | ||
1248 | if (state->info->blocked_open) { | |
1249 | if (state->close_delay) | |
1250 | msleep_interruptible(state->close_delay); | |
1251 | } else if (!uart_console(port)) { | |
1252 | uart_change_pm(state, 3); | |
1253 | } | |
1254 | ||
1255 | /* | |
1256 | * Wake up anyone trying to open this port. | |
1257 | */ | |
1258 | state->info->flags &= ~UIF_NORMAL_ACTIVE; | |
1259 | wake_up_interruptible(&state->info->open_wait); | |
1260 | ||
1261 | done: | |
1262 | up(&state->sem); | |
1263 | } | |
1264 | ||
1265 | static void uart_wait_until_sent(struct tty_struct *tty, int timeout) | |
1266 | { | |
1267 | struct uart_state *state = tty->driver_data; | |
1268 | struct uart_port *port = state->port; | |
1269 | unsigned long char_time, expire; | |
1270 | ||
1271 | BUG_ON(!kernel_locked()); | |
1272 | ||
1273 | if (port->type == PORT_UNKNOWN || port->fifosize == 0) | |
1274 | return; | |
1275 | ||
1276 | /* | |
1277 | * Set the check interval to be 1/5 of the estimated time to | |
1278 | * send a single character, and make it at least 1. The check | |
1279 | * interval should also be less than the timeout. | |
1280 | * | |
1281 | * Note: we have to use pretty tight timings here to satisfy | |
1282 | * the NIST-PCTS. | |
1283 | */ | |
1284 | char_time = (port->timeout - HZ/50) / port->fifosize; | |
1285 | char_time = char_time / 5; | |
1286 | if (char_time == 0) | |
1287 | char_time = 1; | |
1288 | if (timeout && timeout < char_time) | |
1289 | char_time = timeout; | |
1290 | ||
1291 | /* | |
1292 | * If the transmitter hasn't cleared in twice the approximate | |
1293 | * amount of time to send the entire FIFO, it probably won't | |
1294 | * ever clear. This assumes the UART isn't doing flow | |
1295 | * control, which is currently the case. Hence, if it ever | |
1296 | * takes longer than port->timeout, this is probably due to a | |
1297 | * UART bug of some kind. So, we clamp the timeout parameter at | |
1298 | * 2*port->timeout. | |
1299 | */ | |
1300 | if (timeout == 0 || timeout > 2 * port->timeout) | |
1301 | timeout = 2 * port->timeout; | |
1302 | ||
1303 | expire = jiffies + timeout; | |
1304 | ||
1305 | DPRINTK("uart_wait_until_sent(%d), jiffies=%lu, expire=%lu...\n", | |
1306 | port->line, jiffies, expire); | |
1307 | ||
1308 | /* | |
1309 | * Check whether the transmitter is empty every 'char_time'. | |
1310 | * 'timeout' / 'expire' give us the maximum amount of time | |
1311 | * we wait. | |
1312 | */ | |
1313 | while (!port->ops->tx_empty(port)) { | |
1314 | msleep_interruptible(jiffies_to_msecs(char_time)); | |
1315 | if (signal_pending(current)) | |
1316 | break; | |
1317 | if (time_after(jiffies, expire)) | |
1318 | break; | |
1319 | } | |
1320 | set_current_state(TASK_RUNNING); /* might not be needed */ | |
1321 | } | |
1322 | ||
1323 | /* | |
1324 | * This is called with the BKL held in | |
1325 | * linux/drivers/char/tty_io.c:do_tty_hangup() | |
1326 | * We're called from the eventd thread, so we can sleep for | |
1327 | * a _short_ time only. | |
1328 | */ | |
1329 | static void uart_hangup(struct tty_struct *tty) | |
1330 | { | |
1331 | struct uart_state *state = tty->driver_data; | |
1332 | ||
1333 | BUG_ON(!kernel_locked()); | |
1334 | DPRINTK("uart_hangup(%d)\n", state->port->line); | |
1335 | ||
1336 | down(&state->sem); | |
1337 | if (state->info && state->info->flags & UIF_NORMAL_ACTIVE) { | |
1338 | uart_flush_buffer(tty); | |
1339 | uart_shutdown(state); | |
1340 | state->count = 0; | |
1341 | state->info->flags &= ~UIF_NORMAL_ACTIVE; | |
1342 | state->info->tty = NULL; | |
1343 | wake_up_interruptible(&state->info->open_wait); | |
1344 | wake_up_interruptible(&state->info->delta_msr_wait); | |
1345 | } | |
1346 | up(&state->sem); | |
1347 | } | |
1348 | ||
1349 | /* | |
1350 | * Copy across the serial console cflag setting into the termios settings | |
1351 | * for the initial open of the port. This allows continuity between the | |
1352 | * kernel settings, and the settings init adopts when it opens the port | |
1353 | * for the first time. | |
1354 | */ | |
1355 | static void uart_update_termios(struct uart_state *state) | |
1356 | { | |
1357 | struct tty_struct *tty = state->info->tty; | |
1358 | struct uart_port *port = state->port; | |
1359 | ||
1360 | if (uart_console(port) && port->cons->cflag) { | |
1361 | tty->termios->c_cflag = port->cons->cflag; | |
1362 | port->cons->cflag = 0; | |
1363 | } | |
1364 | ||
1365 | /* | |
1366 | * If the device failed to grab its irq resources, | |
1367 | * or some other error occurred, don't try to talk | |
1368 | * to the port hardware. | |
1369 | */ | |
1370 | if (!(tty->flags & (1 << TTY_IO_ERROR))) { | |
1371 | /* | |
1372 | * Make termios settings take effect. | |
1373 | */ | |
1374 | uart_change_speed(state, NULL); | |
1375 | ||
1376 | /* | |
1377 | * And finally enable the RTS and DTR signals. | |
1378 | */ | |
1379 | if (tty->termios->c_cflag & CBAUD) | |
1380 | uart_set_mctrl(port, TIOCM_DTR | TIOCM_RTS); | |
1381 | } | |
1382 | } | |
1383 | ||
1384 | /* | |
1385 | * Block the open until the port is ready. We must be called with | |
1386 | * the per-port semaphore held. | |
1387 | */ | |
1388 | static int | |
1389 | uart_block_til_ready(struct file *filp, struct uart_state *state) | |
1390 | { | |
1391 | DECLARE_WAITQUEUE(wait, current); | |
1392 | struct uart_info *info = state->info; | |
1393 | struct uart_port *port = state->port; | |
c5f4644e | 1394 | unsigned int mctrl; |
1da177e4 LT |
1395 | |
1396 | info->blocked_open++; | |
1397 | state->count--; | |
1398 | ||
1399 | add_wait_queue(&info->open_wait, &wait); | |
1400 | while (1) { | |
1401 | set_current_state(TASK_INTERRUPTIBLE); | |
1402 | ||
1403 | /* | |
1404 | * If we have been hung up, tell userspace/restart open. | |
1405 | */ | |
1406 | if (tty_hung_up_p(filp) || info->tty == NULL) | |
1407 | break; | |
1408 | ||
1409 | /* | |
1410 | * If the port has been closed, tell userspace/restart open. | |
1411 | */ | |
1412 | if (!(info->flags & UIF_INITIALIZED)) | |
1413 | break; | |
1414 | ||
1415 | /* | |
1416 | * If non-blocking mode is set, or CLOCAL mode is set, | |
1417 | * we don't want to wait for the modem status lines to | |
1418 | * indicate that the port is ready. | |
1419 | * | |
1420 | * Also, if the port is not enabled/configured, we want | |
1421 | * to allow the open to succeed here. Note that we will | |
1422 | * have set TTY_IO_ERROR for a non-existant port. | |
1423 | */ | |
1424 | if ((filp->f_flags & O_NONBLOCK) || | |
1425 | (info->tty->termios->c_cflag & CLOCAL) || | |
1426 | (info->tty->flags & (1 << TTY_IO_ERROR))) { | |
1427 | break; | |
1428 | } | |
1429 | ||
1430 | /* | |
1431 | * Set DTR to allow modem to know we're waiting. Do | |
1432 | * not set RTS here - we want to make sure we catch | |
1433 | * the data from the modem. | |
1434 | */ | |
1435 | if (info->tty->termios->c_cflag & CBAUD) | |
1436 | uart_set_mctrl(port, TIOCM_DTR); | |
1437 | ||
1438 | /* | |
1439 | * and wait for the carrier to indicate that the | |
1440 | * modem is ready for us. | |
1441 | */ | |
c5f4644e RK |
1442 | spin_lock_irq(&port->lock); |
1443 | mctrl = port->ops->get_mctrl(port); | |
1444 | spin_unlock_irq(&port->lock); | |
1445 | if (mctrl & TIOCM_CAR) | |
1da177e4 LT |
1446 | break; |
1447 | ||
1448 | up(&state->sem); | |
1449 | schedule(); | |
1450 | down(&state->sem); | |
1451 | ||
1452 | if (signal_pending(current)) | |
1453 | break; | |
1454 | } | |
1455 | set_current_state(TASK_RUNNING); | |
1456 | remove_wait_queue(&info->open_wait, &wait); | |
1457 | ||
1458 | state->count++; | |
1459 | info->blocked_open--; | |
1460 | ||
1461 | if (signal_pending(current)) | |
1462 | return -ERESTARTSYS; | |
1463 | ||
1464 | if (!info->tty || tty_hung_up_p(filp)) | |
1465 | return -EAGAIN; | |
1466 | ||
1467 | return 0; | |
1468 | } | |
1469 | ||
1470 | static struct uart_state *uart_get(struct uart_driver *drv, int line) | |
1471 | { | |
1472 | struct uart_state *state; | |
1473 | ||
1474 | down(&port_sem); | |
1475 | state = drv->state + line; | |
1476 | if (down_interruptible(&state->sem)) { | |
1477 | state = ERR_PTR(-ERESTARTSYS); | |
1478 | goto out; | |
1479 | } | |
1480 | ||
1481 | state->count++; | |
1482 | if (!state->port) { | |
1483 | state->count--; | |
1484 | up(&state->sem); | |
1485 | state = ERR_PTR(-ENXIO); | |
1486 | goto out; | |
1487 | } | |
1488 | ||
1489 | if (!state->info) { | |
1490 | state->info = kmalloc(sizeof(struct uart_info), GFP_KERNEL); | |
1491 | if (state->info) { | |
1492 | memset(state->info, 0, sizeof(struct uart_info)); | |
1493 | init_waitqueue_head(&state->info->open_wait); | |
1494 | init_waitqueue_head(&state->info->delta_msr_wait); | |
1495 | ||
1496 | /* | |
1497 | * Link the info into the other structures. | |
1498 | */ | |
1499 | state->port->info = state->info; | |
1500 | ||
1501 | tasklet_init(&state->info->tlet, uart_tasklet_action, | |
1502 | (unsigned long)state); | |
1503 | } else { | |
1504 | state->count--; | |
1505 | up(&state->sem); | |
1506 | state = ERR_PTR(-ENOMEM); | |
1507 | } | |
1508 | } | |
1509 | ||
1510 | out: | |
1511 | up(&port_sem); | |
1512 | return state; | |
1513 | } | |
1514 | ||
1515 | /* | |
1516 | * In 2.4.5, calls to uart_open are serialised by the BKL in | |
1517 | * linux/fs/devices.c:chrdev_open() | |
1518 | * Note that if this fails, then uart_close() _will_ be called. | |
1519 | * | |
1520 | * In time, we want to scrap the "opening nonpresent ports" | |
1521 | * behaviour and implement an alternative way for setserial | |
1522 | * to set base addresses/ports/types. This will allow us to | |
1523 | * get rid of a certain amount of extra tests. | |
1524 | */ | |
1525 | static int uart_open(struct tty_struct *tty, struct file *filp) | |
1526 | { | |
1527 | struct uart_driver *drv = (struct uart_driver *)tty->driver->driver_state; | |
1528 | struct uart_state *state; | |
1529 | int retval, line = tty->index; | |
1530 | ||
1531 | BUG_ON(!kernel_locked()); | |
1532 | DPRINTK("uart_open(%d) called\n", line); | |
1533 | ||
1534 | /* | |
1535 | * tty->driver->num won't change, so we won't fail here with | |
1536 | * tty->driver_data set to something non-NULL (and therefore | |
1537 | * we won't get caught by uart_close()). | |
1538 | */ | |
1539 | retval = -ENODEV; | |
1540 | if (line >= tty->driver->num) | |
1541 | goto fail; | |
1542 | ||
1543 | /* | |
1544 | * We take the semaphore inside uart_get to guarantee that we won't | |
1545 | * be re-entered while allocating the info structure, or while we | |
1546 | * request any IRQs that the driver may need. This also has the nice | |
1547 | * side-effect that it delays the action of uart_hangup, so we can | |
1548 | * guarantee that info->tty will always contain something reasonable. | |
1549 | */ | |
1550 | state = uart_get(drv, line); | |
1551 | if (IS_ERR(state)) { | |
1552 | retval = PTR_ERR(state); | |
1553 | goto fail; | |
1554 | } | |
1555 | ||
1556 | /* | |
1557 | * Once we set tty->driver_data here, we are guaranteed that | |
1558 | * uart_close() will decrement the driver module use count. | |
1559 | * Any failures from here onwards should not touch the count. | |
1560 | */ | |
1561 | tty->driver_data = state; | |
1562 | tty->low_latency = (state->port->flags & UPF_LOW_LATENCY) ? 1 : 0; | |
1563 | tty->alt_speed = 0; | |
1564 | state->info->tty = tty; | |
1565 | ||
1566 | /* | |
1567 | * If the port is in the middle of closing, bail out now. | |
1568 | */ | |
1569 | if (tty_hung_up_p(filp)) { | |
1570 | retval = -EAGAIN; | |
1571 | state->count--; | |
1572 | up(&state->sem); | |
1573 | goto fail; | |
1574 | } | |
1575 | ||
1576 | /* | |
1577 | * Make sure the device is in D0 state. | |
1578 | */ | |
1579 | if (state->count == 1) | |
1580 | uart_change_pm(state, 0); | |
1581 | ||
1582 | /* | |
1583 | * Start up the serial port. | |
1584 | */ | |
1585 | retval = uart_startup(state, 0); | |
1586 | ||
1587 | /* | |
1588 | * If we succeeded, wait until the port is ready. | |
1589 | */ | |
1590 | if (retval == 0) | |
1591 | retval = uart_block_til_ready(filp, state); | |
1592 | up(&state->sem); | |
1593 | ||
1594 | /* | |
1595 | * If this is the first open to succeed, adjust things to suit. | |
1596 | */ | |
1597 | if (retval == 0 && !(state->info->flags & UIF_NORMAL_ACTIVE)) { | |
1598 | state->info->flags |= UIF_NORMAL_ACTIVE; | |
1599 | ||
1600 | uart_update_termios(state); | |
1601 | } | |
1602 | ||
1603 | fail: | |
1604 | return retval; | |
1605 | } | |
1606 | ||
1607 | static const char *uart_type(struct uart_port *port) | |
1608 | { | |
1609 | const char *str = NULL; | |
1610 | ||
1611 | if (port->ops->type) | |
1612 | str = port->ops->type(port); | |
1613 | ||
1614 | if (!str) | |
1615 | str = "unknown"; | |
1616 | ||
1617 | return str; | |
1618 | } | |
1619 | ||
1620 | #ifdef CONFIG_PROC_FS | |
1621 | ||
1622 | static int uart_line_info(char *buf, struct uart_driver *drv, int i) | |
1623 | { | |
1624 | struct uart_state *state = drv->state + i; | |
1625 | struct uart_port *port = state->port; | |
1626 | char stat_buf[32]; | |
1627 | unsigned int status; | |
1628 | int ret; | |
1629 | ||
1630 | if (!port) | |
1631 | return 0; | |
1632 | ||
1633 | ret = sprintf(buf, "%d: uart:%s %s%08lX irq:%d", | |
1634 | port->line, uart_type(port), | |
1635 | port->iotype == UPIO_MEM ? "mmio:0x" : "port:", | |
1636 | port->iotype == UPIO_MEM ? port->mapbase : | |
1637 | (unsigned long) port->iobase, | |
1638 | port->irq); | |
1639 | ||
1640 | if (port->type == PORT_UNKNOWN) { | |
1641 | strcat(buf, "\n"); | |
1642 | return ret + 1; | |
1643 | } | |
1644 | ||
1645 | if(capable(CAP_SYS_ADMIN)) | |
1646 | { | |
c5f4644e | 1647 | spin_lock_irq(&port->lock); |
1da177e4 | 1648 | status = port->ops->get_mctrl(port); |
c5f4644e | 1649 | spin_unlock_irq(&port->lock); |
1da177e4 LT |
1650 | |
1651 | ret += sprintf(buf + ret, " tx:%d rx:%d", | |
1652 | port->icount.tx, port->icount.rx); | |
1653 | if (port->icount.frame) | |
1654 | ret += sprintf(buf + ret, " fe:%d", | |
1655 | port->icount.frame); | |
1656 | if (port->icount.parity) | |
1657 | ret += sprintf(buf + ret, " pe:%d", | |
1658 | port->icount.parity); | |
1659 | if (port->icount.brk) | |
1660 | ret += sprintf(buf + ret, " brk:%d", | |
1661 | port->icount.brk); | |
1662 | if (port->icount.overrun) | |
1663 | ret += sprintf(buf + ret, " oe:%d", | |
1664 | port->icount.overrun); | |
1665 | ||
1666 | #define INFOBIT(bit,str) \ | |
1667 | if (port->mctrl & (bit)) \ | |
1668 | strncat(stat_buf, (str), sizeof(stat_buf) - \ | |
1669 | strlen(stat_buf) - 2) | |
1670 | #define STATBIT(bit,str) \ | |
1671 | if (status & (bit)) \ | |
1672 | strncat(stat_buf, (str), sizeof(stat_buf) - \ | |
1673 | strlen(stat_buf) - 2) | |
1674 | ||
1675 | stat_buf[0] = '\0'; | |
1676 | stat_buf[1] = '\0'; | |
1677 | INFOBIT(TIOCM_RTS, "|RTS"); | |
1678 | STATBIT(TIOCM_CTS, "|CTS"); | |
1679 | INFOBIT(TIOCM_DTR, "|DTR"); | |
1680 | STATBIT(TIOCM_DSR, "|DSR"); | |
1681 | STATBIT(TIOCM_CAR, "|CD"); | |
1682 | STATBIT(TIOCM_RNG, "|RI"); | |
1683 | if (stat_buf[0]) | |
1684 | stat_buf[0] = ' '; | |
1685 | strcat(stat_buf, "\n"); | |
1686 | ||
1687 | ret += sprintf(buf + ret, stat_buf); | |
1688 | } else { | |
1689 | strcat(buf, "\n"); | |
1690 | ret++; | |
1691 | } | |
1692 | #undef STATBIT | |
1693 | #undef INFOBIT | |
1694 | return ret; | |
1695 | } | |
1696 | ||
1697 | static int uart_read_proc(char *page, char **start, off_t off, | |
1698 | int count, int *eof, void *data) | |
1699 | { | |
1700 | struct tty_driver *ttydrv = data; | |
1701 | struct uart_driver *drv = ttydrv->driver_state; | |
1702 | int i, len = 0, l; | |
1703 | off_t begin = 0; | |
1704 | ||
1705 | len += sprintf(page, "serinfo:1.0 driver%s%s revision:%s\n", | |
1706 | "", "", ""); | |
1707 | for (i = 0; i < drv->nr && len < PAGE_SIZE - 96; i++) { | |
1708 | l = uart_line_info(page + len, drv, i); | |
1709 | len += l; | |
1710 | if (len + begin > off + count) | |
1711 | goto done; | |
1712 | if (len + begin < off) { | |
1713 | begin += len; | |
1714 | len = 0; | |
1715 | } | |
1716 | } | |
1717 | *eof = 1; | |
1718 | done: | |
1719 | if (off >= len + begin) | |
1720 | return 0; | |
1721 | *start = page + (off - begin); | |
1722 | return (count < begin + len - off) ? count : (begin + len - off); | |
1723 | } | |
1724 | #endif | |
1725 | ||
1726 | #ifdef CONFIG_SERIAL_CORE_CONSOLE | |
1727 | /* | |
1728 | * Check whether an invalid uart number has been specified, and | |
1729 | * if so, search for the first available port that does have | |
1730 | * console support. | |
1731 | */ | |
1732 | struct uart_port * __init | |
1733 | uart_get_console(struct uart_port *ports, int nr, struct console *co) | |
1734 | { | |
1735 | int idx = co->index; | |
1736 | ||
1737 | if (idx < 0 || idx >= nr || (ports[idx].iobase == 0 && | |
1738 | ports[idx].membase == NULL)) | |
1739 | for (idx = 0; idx < nr; idx++) | |
1740 | if (ports[idx].iobase != 0 || | |
1741 | ports[idx].membase != NULL) | |
1742 | break; | |
1743 | ||
1744 | co->index = idx; | |
1745 | ||
1746 | return ports + idx; | |
1747 | } | |
1748 | ||
1749 | /** | |
1750 | * uart_parse_options - Parse serial port baud/parity/bits/flow contro. | |
1751 | * @options: pointer to option string | |
1752 | * @baud: pointer to an 'int' variable for the baud rate. | |
1753 | * @parity: pointer to an 'int' variable for the parity. | |
1754 | * @bits: pointer to an 'int' variable for the number of data bits. | |
1755 | * @flow: pointer to an 'int' variable for the flow control character. | |
1756 | * | |
1757 | * uart_parse_options decodes a string containing the serial console | |
1758 | * options. The format of the string is <baud><parity><bits><flow>, | |
1759 | * eg: 115200n8r | |
1760 | */ | |
1761 | void __init | |
1762 | uart_parse_options(char *options, int *baud, int *parity, int *bits, int *flow) | |
1763 | { | |
1764 | char *s = options; | |
1765 | ||
1766 | *baud = simple_strtoul(s, NULL, 10); | |
1767 | while (*s >= '0' && *s <= '9') | |
1768 | s++; | |
1769 | if (*s) | |
1770 | *parity = *s++; | |
1771 | if (*s) | |
1772 | *bits = *s++ - '0'; | |
1773 | if (*s) | |
1774 | *flow = *s; | |
1775 | } | |
1776 | ||
1777 | struct baud_rates { | |
1778 | unsigned int rate; | |
1779 | unsigned int cflag; | |
1780 | }; | |
1781 | ||
cb3592be | 1782 | static const struct baud_rates baud_rates[] = { |
1da177e4 LT |
1783 | { 921600, B921600 }, |
1784 | { 460800, B460800 }, | |
1785 | { 230400, B230400 }, | |
1786 | { 115200, B115200 }, | |
1787 | { 57600, B57600 }, | |
1788 | { 38400, B38400 }, | |
1789 | { 19200, B19200 }, | |
1790 | { 9600, B9600 }, | |
1791 | { 4800, B4800 }, | |
1792 | { 2400, B2400 }, | |
1793 | { 1200, B1200 }, | |
1794 | { 0, B38400 } | |
1795 | }; | |
1796 | ||
1797 | /** | |
1798 | * uart_set_options - setup the serial console parameters | |
1799 | * @port: pointer to the serial ports uart_port structure | |
1800 | * @co: console pointer | |
1801 | * @baud: baud rate | |
1802 | * @parity: parity character - 'n' (none), 'o' (odd), 'e' (even) | |
1803 | * @bits: number of data bits | |
1804 | * @flow: flow control character - 'r' (rts) | |
1805 | */ | |
1806 | int __init | |
1807 | uart_set_options(struct uart_port *port, struct console *co, | |
1808 | int baud, int parity, int bits, int flow) | |
1809 | { | |
1810 | struct termios termios; | |
1811 | int i; | |
1812 | ||
976ecd12 RK |
1813 | /* |
1814 | * Ensure that the serial console lock is initialised | |
1815 | * early. | |
1816 | */ | |
1817 | spin_lock_init(&port->lock); | |
1818 | ||
1da177e4 LT |
1819 | memset(&termios, 0, sizeof(struct termios)); |
1820 | ||
1821 | termios.c_cflag = CREAD | HUPCL | CLOCAL; | |
1822 | ||
1823 | /* | |
1824 | * Construct a cflag setting. | |
1825 | */ | |
1826 | for (i = 0; baud_rates[i].rate; i++) | |
1827 | if (baud_rates[i].rate <= baud) | |
1828 | break; | |
1829 | ||
1830 | termios.c_cflag |= baud_rates[i].cflag; | |
1831 | ||
1832 | if (bits == 7) | |
1833 | termios.c_cflag |= CS7; | |
1834 | else | |
1835 | termios.c_cflag |= CS8; | |
1836 | ||
1837 | switch (parity) { | |
1838 | case 'o': case 'O': | |
1839 | termios.c_cflag |= PARODD; | |
1840 | /*fall through*/ | |
1841 | case 'e': case 'E': | |
1842 | termios.c_cflag |= PARENB; | |
1843 | break; | |
1844 | } | |
1845 | ||
1846 | if (flow == 'r') | |
1847 | termios.c_cflag |= CRTSCTS; | |
1848 | ||
1849 | port->ops->set_termios(port, &termios, NULL); | |
1850 | co->cflag = termios.c_cflag; | |
1851 | ||
1852 | return 0; | |
1853 | } | |
1854 | #endif /* CONFIG_SERIAL_CORE_CONSOLE */ | |
1855 | ||
1856 | static void uart_change_pm(struct uart_state *state, int pm_state) | |
1857 | { | |
1858 | struct uart_port *port = state->port; | |
1859 | if (port->ops->pm) | |
1860 | port->ops->pm(port, pm_state, state->pm_state); | |
1861 | state->pm_state = pm_state; | |
1862 | } | |
1863 | ||
1864 | int uart_suspend_port(struct uart_driver *drv, struct uart_port *port) | |
1865 | { | |
1866 | struct uart_state *state = drv->state + port->line; | |
1867 | ||
1868 | down(&state->sem); | |
1869 | ||
1870 | if (state->info && state->info->flags & UIF_INITIALIZED) { | |
1871 | struct uart_ops *ops = port->ops; | |
1872 | ||
1873 | spin_lock_irq(&port->lock); | |
b129a8cc | 1874 | ops->stop_tx(port); |
1da177e4 LT |
1875 | ops->set_mctrl(port, 0); |
1876 | ops->stop_rx(port); | |
1877 | spin_unlock_irq(&port->lock); | |
1878 | ||
1879 | /* | |
1880 | * Wait for the transmitter to empty. | |
1881 | */ | |
1882 | while (!ops->tx_empty(port)) { | |
1883 | msleep(10); | |
1884 | } | |
1885 | ||
1886 | ops->shutdown(port); | |
1887 | } | |
1888 | ||
1889 | /* | |
1890 | * Disable the console device before suspending. | |
1891 | */ | |
1892 | if (uart_console(port)) | |
1893 | console_stop(port->cons); | |
1894 | ||
1895 | uart_change_pm(state, 3); | |
1896 | ||
1897 | up(&state->sem); | |
1898 | ||
1899 | return 0; | |
1900 | } | |
1901 | ||
1902 | int uart_resume_port(struct uart_driver *drv, struct uart_port *port) | |
1903 | { | |
1904 | struct uart_state *state = drv->state + port->line; | |
1905 | ||
1906 | down(&state->sem); | |
1907 | ||
1908 | uart_change_pm(state, 0); | |
1909 | ||
1910 | /* | |
1911 | * Re-enable the console device after suspending. | |
1912 | */ | |
1913 | if (uart_console(port)) { | |
1914 | struct termios termios; | |
1915 | ||
1916 | /* | |
1917 | * First try to use the console cflag setting. | |
1918 | */ | |
1919 | memset(&termios, 0, sizeof(struct termios)); | |
1920 | termios.c_cflag = port->cons->cflag; | |
1921 | ||
1922 | /* | |
1923 | * If that's unset, use the tty termios setting. | |
1924 | */ | |
1925 | if (state->info && state->info->tty && termios.c_cflag == 0) | |
1926 | termios = *state->info->tty->termios; | |
1927 | ||
1928 | port->ops->set_termios(port, &termios, NULL); | |
1929 | console_start(port->cons); | |
1930 | } | |
1931 | ||
1932 | if (state->info && state->info->flags & UIF_INITIALIZED) { | |
1933 | struct uart_ops *ops = port->ops; | |
ee31b337 | 1934 | int ret; |
1da177e4 LT |
1935 | |
1936 | ops->set_mctrl(port, 0); | |
ee31b337 RK |
1937 | ret = ops->startup(port); |
1938 | if (ret == 0) { | |
1939 | uart_change_speed(state, NULL); | |
1940 | spin_lock_irq(&port->lock); | |
1941 | ops->set_mctrl(port, port->mctrl); | |
1942 | ops->start_tx(port); | |
1943 | spin_unlock_irq(&port->lock); | |
1944 | } else { | |
1945 | /* | |
1946 | * Failed to resume - maybe hardware went away? | |
1947 | * Clear the "initialized" flag so we won't try | |
1948 | * to call the low level drivers shutdown method. | |
1949 | */ | |
1950 | state->info->flags &= ~UIF_INITIALIZED; | |
1951 | uart_shutdown(state); | |
1952 | } | |
1da177e4 LT |
1953 | } |
1954 | ||
1955 | up(&state->sem); | |
1956 | ||
1957 | return 0; | |
1958 | } | |
1959 | ||
1960 | static inline void | |
1961 | uart_report_port(struct uart_driver *drv, struct uart_port *port) | |
1962 | { | |
30b7a3bc RK |
1963 | char address[64]; |
1964 | ||
1da177e4 LT |
1965 | switch (port->iotype) { |
1966 | case UPIO_PORT: | |
30b7a3bc RK |
1967 | snprintf(address, sizeof(address), |
1968 | "I/O 0x%x", port->iobase); | |
1da177e4 LT |
1969 | break; |
1970 | case UPIO_HUB6: | |
30b7a3bc RK |
1971 | snprintf(address, sizeof(address), |
1972 | "I/O 0x%x offset 0x%x", port->iobase, port->hub6); | |
1da177e4 LT |
1973 | break; |
1974 | case UPIO_MEM: | |
1975 | case UPIO_MEM32: | |
21c614a7 | 1976 | case UPIO_AU: |
30b7a3bc RK |
1977 | snprintf(address, sizeof(address), |
1978 | "MMIO 0x%lx", port->mapbase); | |
1979 | break; | |
1980 | default: | |
1981 | strlcpy(address, "*unknown*", sizeof(address)); | |
1da177e4 LT |
1982 | break; |
1983 | } | |
30b7a3bc | 1984 | |
0cf669d5 RK |
1985 | printk(KERN_INFO "%s%s%s%d at %s (irq = %d) is a %s\n", |
1986 | port->dev ? port->dev->bus_id : "", | |
1987 | port->dev ? ": " : "", | |
30b7a3bc | 1988 | drv->dev_name, port->line, address, port->irq, uart_type(port)); |
1da177e4 LT |
1989 | } |
1990 | ||
1991 | static void | |
1992 | uart_configure_port(struct uart_driver *drv, struct uart_state *state, | |
1993 | struct uart_port *port) | |
1994 | { | |
1995 | unsigned int flags; | |
1996 | ||
1997 | /* | |
1998 | * If there isn't a port here, don't do anything further. | |
1999 | */ | |
2000 | if (!port->iobase && !port->mapbase && !port->membase) | |
2001 | return; | |
2002 | ||
2003 | /* | |
2004 | * Now do the auto configuration stuff. Note that config_port | |
2005 | * is expected to claim the resources and map the port for us. | |
2006 | */ | |
2007 | flags = UART_CONFIG_TYPE; | |
2008 | if (port->flags & UPF_AUTO_IRQ) | |
2009 | flags |= UART_CONFIG_IRQ; | |
2010 | if (port->flags & UPF_BOOT_AUTOCONF) { | |
2011 | port->type = PORT_UNKNOWN; | |
2012 | port->ops->config_port(port, flags); | |
2013 | } | |
2014 | ||
2015 | if (port->type != PORT_UNKNOWN) { | |
2016 | unsigned long flags; | |
2017 | ||
2018 | uart_report_port(drv, port); | |
2019 | ||
2020 | /* | |
2021 | * Ensure that the modem control lines are de-activated. | |
2022 | * We probably don't need a spinlock around this, but | |
2023 | */ | |
2024 | spin_lock_irqsave(&port->lock, flags); | |
2025 | port->ops->set_mctrl(port, 0); | |
2026 | spin_unlock_irqrestore(&port->lock, flags); | |
2027 | ||
2028 | /* | |
2029 | * Power down all ports by default, except the | |
2030 | * console if we have one. | |
2031 | */ | |
2032 | if (!uart_console(port)) | |
2033 | uart_change_pm(state, 3); | |
2034 | } | |
2035 | } | |
2036 | ||
2037 | /* | |
2038 | * This reverses the effects of uart_configure_port, hanging up the | |
2039 | * port before removal. | |
2040 | */ | |
2041 | static void | |
2042 | uart_unconfigure_port(struct uart_driver *drv, struct uart_state *state) | |
2043 | { | |
2044 | struct uart_port *port = state->port; | |
2045 | struct uart_info *info = state->info; | |
2046 | ||
2047 | if (info && info->tty) | |
2048 | tty_vhangup(info->tty); | |
2049 | ||
2050 | down(&state->sem); | |
2051 | ||
2052 | state->info = NULL; | |
2053 | ||
2054 | /* | |
2055 | * Free the port IO and memory resources, if any. | |
2056 | */ | |
2057 | if (port->type != PORT_UNKNOWN) | |
2058 | port->ops->release_port(port); | |
2059 | ||
2060 | /* | |
2061 | * Indicate that there isn't a port here anymore. | |
2062 | */ | |
2063 | port->type = PORT_UNKNOWN; | |
2064 | ||
2065 | /* | |
2066 | * Kill the tasklet, and free resources. | |
2067 | */ | |
2068 | if (info) { | |
2069 | tasklet_kill(&info->tlet); | |
2070 | kfree(info); | |
2071 | } | |
2072 | ||
2073 | up(&state->sem); | |
2074 | } | |
2075 | ||
2076 | static struct tty_operations uart_ops = { | |
2077 | .open = uart_open, | |
2078 | .close = uart_close, | |
2079 | .write = uart_write, | |
2080 | .put_char = uart_put_char, | |
2081 | .flush_chars = uart_flush_chars, | |
2082 | .write_room = uart_write_room, | |
2083 | .chars_in_buffer= uart_chars_in_buffer, | |
2084 | .flush_buffer = uart_flush_buffer, | |
2085 | .ioctl = uart_ioctl, | |
2086 | .throttle = uart_throttle, | |
2087 | .unthrottle = uart_unthrottle, | |
2088 | .send_xchar = uart_send_xchar, | |
2089 | .set_termios = uart_set_termios, | |
2090 | .stop = uart_stop, | |
2091 | .start = uart_start, | |
2092 | .hangup = uart_hangup, | |
2093 | .break_ctl = uart_break_ctl, | |
2094 | .wait_until_sent= uart_wait_until_sent, | |
2095 | #ifdef CONFIG_PROC_FS | |
2096 | .read_proc = uart_read_proc, | |
2097 | #endif | |
2098 | .tiocmget = uart_tiocmget, | |
2099 | .tiocmset = uart_tiocmset, | |
2100 | }; | |
2101 | ||
2102 | /** | |
2103 | * uart_register_driver - register a driver with the uart core layer | |
2104 | * @drv: low level driver structure | |
2105 | * | |
2106 | * Register a uart driver with the core driver. We in turn register | |
2107 | * with the tty layer, and initialise the core driver per-port state. | |
2108 | * | |
2109 | * We have a proc file in /proc/tty/driver which is named after the | |
2110 | * normal driver. | |
2111 | * | |
2112 | * drv->port should be NULL, and the per-port structures should be | |
2113 | * registered using uart_add_one_port after this call has succeeded. | |
2114 | */ | |
2115 | int uart_register_driver(struct uart_driver *drv) | |
2116 | { | |
2117 | struct tty_driver *normal = NULL; | |
2118 | int i, retval; | |
2119 | ||
2120 | BUG_ON(drv->state); | |
2121 | ||
2122 | /* | |
2123 | * Maybe we should be using a slab cache for this, especially if | |
2124 | * we have a large number of ports to handle. | |
2125 | */ | |
2126 | drv->state = kmalloc(sizeof(struct uart_state) * drv->nr, GFP_KERNEL); | |
2127 | retval = -ENOMEM; | |
2128 | if (!drv->state) | |
2129 | goto out; | |
2130 | ||
2131 | memset(drv->state, 0, sizeof(struct uart_state) * drv->nr); | |
2132 | ||
2133 | normal = alloc_tty_driver(drv->nr); | |
2134 | if (!normal) | |
2135 | goto out; | |
2136 | ||
2137 | drv->tty_driver = normal; | |
2138 | ||
2139 | normal->owner = drv->owner; | |
2140 | normal->driver_name = drv->driver_name; | |
2141 | normal->devfs_name = drv->devfs_name; | |
2142 | normal->name = drv->dev_name; | |
2143 | normal->major = drv->major; | |
2144 | normal->minor_start = drv->minor; | |
2145 | normal->type = TTY_DRIVER_TYPE_SERIAL; | |
2146 | normal->subtype = SERIAL_TYPE_NORMAL; | |
2147 | normal->init_termios = tty_std_termios; | |
2148 | normal->init_termios.c_cflag = B9600 | CS8 | CREAD | HUPCL | CLOCAL; | |
2149 | normal->flags = TTY_DRIVER_REAL_RAW | TTY_DRIVER_NO_DEVFS; | |
2150 | normal->driver_state = drv; | |
2151 | tty_set_operations(normal, &uart_ops); | |
2152 | ||
2153 | /* | |
2154 | * Initialise the UART state(s). | |
2155 | */ | |
2156 | for (i = 0; i < drv->nr; i++) { | |
2157 | struct uart_state *state = drv->state + i; | |
2158 | ||
2159 | state->close_delay = 500; /* .5 seconds */ | |
2160 | state->closing_wait = 30000; /* 30 seconds */ | |
2161 | ||
2162 | init_MUTEX(&state->sem); | |
2163 | } | |
2164 | ||
2165 | retval = tty_register_driver(normal); | |
2166 | out: | |
2167 | if (retval < 0) { | |
2168 | put_tty_driver(normal); | |
2169 | kfree(drv->state); | |
2170 | } | |
2171 | return retval; | |
2172 | } | |
2173 | ||
2174 | /** | |
2175 | * uart_unregister_driver - remove a driver from the uart core layer | |
2176 | * @drv: low level driver structure | |
2177 | * | |
2178 | * Remove all references to a driver from the core driver. The low | |
2179 | * level driver must have removed all its ports via the | |
2180 | * uart_remove_one_port() if it registered them with uart_add_one_port(). | |
2181 | * (ie, drv->port == NULL) | |
2182 | */ | |
2183 | void uart_unregister_driver(struct uart_driver *drv) | |
2184 | { | |
2185 | struct tty_driver *p = drv->tty_driver; | |
2186 | tty_unregister_driver(p); | |
2187 | put_tty_driver(p); | |
2188 | kfree(drv->state); | |
2189 | drv->tty_driver = NULL; | |
2190 | } | |
2191 | ||
2192 | struct tty_driver *uart_console_device(struct console *co, int *index) | |
2193 | { | |
2194 | struct uart_driver *p = co->data; | |
2195 | *index = co->index; | |
2196 | return p->tty_driver; | |
2197 | } | |
2198 | ||
2199 | /** | |
2200 | * uart_add_one_port - attach a driver-defined port structure | |
2201 | * @drv: pointer to the uart low level driver structure for this port | |
2202 | * @port: uart port structure to use for this port. | |
2203 | * | |
2204 | * This allows the driver to register its own uart_port structure | |
2205 | * with the core driver. The main purpose is to allow the low | |
2206 | * level uart drivers to expand uart_port, rather than having yet | |
2207 | * more levels of structures. | |
2208 | */ | |
2209 | int uart_add_one_port(struct uart_driver *drv, struct uart_port *port) | |
2210 | { | |
2211 | struct uart_state *state; | |
2212 | int ret = 0; | |
2213 | ||
2214 | BUG_ON(in_interrupt()); | |
2215 | ||
2216 | if (port->line >= drv->nr) | |
2217 | return -EINVAL; | |
2218 | ||
2219 | state = drv->state + port->line; | |
2220 | ||
2221 | down(&port_sem); | |
2222 | if (state->port) { | |
2223 | ret = -EINVAL; | |
2224 | goto out; | |
2225 | } | |
2226 | ||
2227 | state->port = port; | |
2228 | ||
1da177e4 LT |
2229 | port->cons = drv->cons; |
2230 | port->info = state->info; | |
2231 | ||
976ecd12 RK |
2232 | /* |
2233 | * If this port is a console, then the spinlock is already | |
2234 | * initialised. | |
2235 | */ | |
2236 | if (!uart_console(port)) | |
2237 | spin_lock_init(&port->lock); | |
2238 | ||
1da177e4 LT |
2239 | uart_configure_port(drv, state, port); |
2240 | ||
2241 | /* | |
2242 | * Register the port whether it's detected or not. This allows | |
2243 | * setserial to be used to alter this ports parameters. | |
2244 | */ | |
2245 | tty_register_device(drv->tty_driver, port->line, port->dev); | |
2246 | ||
2247 | /* | |
2248 | * If this driver supports console, and it hasn't been | |
2249 | * successfully registered yet, try to re-register it. | |
2250 | * It may be that the port was not available. | |
2251 | */ | |
2252 | if (port->type != PORT_UNKNOWN && | |
2253 | port->cons && !(port->cons->flags & CON_ENABLED)) | |
2254 | register_console(port->cons); | |
2255 | ||
2256 | out: | |
2257 | up(&port_sem); | |
2258 | ||
2259 | return ret; | |
2260 | } | |
2261 | ||
2262 | /** | |
2263 | * uart_remove_one_port - detach a driver defined port structure | |
2264 | * @drv: pointer to the uart low level driver structure for this port | |
2265 | * @port: uart port structure for this port | |
2266 | * | |
2267 | * This unhooks (and hangs up) the specified port structure from the | |
2268 | * core driver. No further calls will be made to the low-level code | |
2269 | * for this port. | |
2270 | */ | |
2271 | int uart_remove_one_port(struct uart_driver *drv, struct uart_port *port) | |
2272 | { | |
2273 | struct uart_state *state = drv->state + port->line; | |
2274 | ||
2275 | BUG_ON(in_interrupt()); | |
2276 | ||
2277 | if (state->port != port) | |
2278 | printk(KERN_ALERT "Removing wrong port: %p != %p\n", | |
2279 | state->port, port); | |
2280 | ||
2281 | down(&port_sem); | |
2282 | ||
2283 | /* | |
2284 | * Remove the devices from devfs | |
2285 | */ | |
2286 | tty_unregister_device(drv->tty_driver, port->line); | |
2287 | ||
2288 | uart_unconfigure_port(drv, state); | |
2289 | state->port = NULL; | |
2290 | up(&port_sem); | |
2291 | ||
2292 | return 0; | |
2293 | } | |
2294 | ||
2295 | /* | |
2296 | * Are the two ports equivalent? | |
2297 | */ | |
2298 | int uart_match_port(struct uart_port *port1, struct uart_port *port2) | |
2299 | { | |
2300 | if (port1->iotype != port2->iotype) | |
2301 | return 0; | |
2302 | ||
2303 | switch (port1->iotype) { | |
2304 | case UPIO_PORT: | |
2305 | return (port1->iobase == port2->iobase); | |
2306 | case UPIO_HUB6: | |
2307 | return (port1->iobase == port2->iobase) && | |
2308 | (port1->hub6 == port2->hub6); | |
2309 | case UPIO_MEM: | |
2310 | return (port1->membase == port2->membase); | |
2311 | } | |
2312 | return 0; | |
2313 | } | |
2314 | EXPORT_SYMBOL(uart_match_port); | |
2315 | ||
1da177e4 LT |
2316 | EXPORT_SYMBOL(uart_write_wakeup); |
2317 | EXPORT_SYMBOL(uart_register_driver); | |
2318 | EXPORT_SYMBOL(uart_unregister_driver); | |
2319 | EXPORT_SYMBOL(uart_suspend_port); | |
2320 | EXPORT_SYMBOL(uart_resume_port); | |
1da177e4 LT |
2321 | EXPORT_SYMBOL(uart_add_one_port); |
2322 | EXPORT_SYMBOL(uart_remove_one_port); | |
2323 | ||
2324 | MODULE_DESCRIPTION("Serial driver core"); | |
2325 | MODULE_LICENSE("GPL"); |