blob: 83b21686020eda6e8279673b1960c5cc04a74752 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2** mux.c:
3** serial driver for the Mux console found in some PA-RISC servers.
4**
5** (c) Copyright 2002 Ryan Bradetich
6** (c) Copyright 2002 Hewlett-Packard Company
7**
8** This program is free software; you can redistribute it and/or modify
9** it under the terms of the GNU General Public License as published by
10** the Free Software Foundation; either version 2 of the License, or
11** (at your option) any later version.
12**
13** This Driver currently only supports the console (port 0) on the MUX.
14** Additional work will be needed on this driver to enable the full
15** functionality of the MUX.
16**
17*/
18
Linus Torvalds1da177e2005-04-16 15:20:36 -070019#include <linux/module.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070020#include <linux/ioport.h>
21#include <linux/init.h>
22#include <linux/serial.h>
Jiri Slabyee160a32011-09-01 16:20:57 +020023#include <linux/tty.h>
24#include <linux/tty_flip.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070025#include <linux/console.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070026#include <linux/delay.h> /* for udelay */
27#include <linux/device.h>
28#include <asm/io.h>
Matthew Wilcoxae8c75c2005-10-21 22:58:03 -040029#include <asm/irq.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070030#include <asm/parisc-device.h>
31
32#ifdef CONFIG_MAGIC_SYSRQ
33#include <linux/sysrq.h>
34#define SUPPORT_SYSRQ
35#endif
36
37#include <linux/serial_core.h>
38
39#define MUX_OFFSET 0x800
40#define MUX_LINE_OFFSET 0x80
41
42#define MUX_FIFO_SIZE 255
43#define MUX_POLL_DELAY (30 * HZ / 1000)
44
45#define IO_DATA_REG_OFFSET 0x3c
46#define IO_DCOUNT_REG_OFFSET 0x40
47
48#define MUX_EOFIFO(status) ((status & 0xF000) == 0xF000)
49#define MUX_STATUS(status) ((status & 0xF000) == 0x8000)
50#define MUX_BREAK(status) ((status & 0xF000) == 0x2000)
51
52#define MUX_NR 256
Helge Deller5076c152006-03-27 12:52:15 -070053static unsigned int port_cnt __read_mostly;
Ryan Bradetich4bd5d822006-11-03 05:38:39 +000054struct mux_port {
55 struct uart_port port;
56 int enabled;
57};
58static struct mux_port mux_ports[MUX_NR];
Linus Torvalds1da177e2005-04-16 15:20:36 -070059
60static struct uart_driver mux_driver = {
61 .owner = THIS_MODULE,
62 .driver_name = "ttyB",
63 .dev_name = "ttyB",
64 .major = MUX_MAJOR,
65 .minor = 0,
66 .nr = MUX_NR,
67};
68
69static struct timer_list mux_timer;
70
Ryan Bradetich92495c02005-11-17 16:36:52 -050071#define UART_PUT_CHAR(p, c) __raw_writel((c), (p)->membase + IO_DATA_REG_OFFSET)
72#define UART_GET_FIFO_CNT(p) __raw_readl((p)->membase + IO_DCOUNT_REG_OFFSET)
Ryan Bradetich61425442006-11-10 03:08:45 +000073
74/**
75 * get_mux_port_count - Get the number of available ports on the Mux.
76 * @dev: The parisc device.
77 *
78 * This function is used to determine the number of ports the Mux
79 * supports. The IODC data reports the number of ports the Mux
80 * can support, but there are cases where not all the Mux ports
81 * are connected. This function can override the IODC and
82 * return the true port count.
83 */
84static int __init get_mux_port_count(struct parisc_device *dev)
85{
Ryan Bradetich514fb842006-11-10 04:06:14 +000086 int status;
Ryan Bradetich61425442006-11-10 03:08:45 +000087 u8 iodc_data[32];
88 unsigned long bytecnt;
89
Ryan Bradetich61425442006-11-10 03:08:45 +000090 /* If this is the built-in Mux for the K-Class (Eole CAP/MUX),
91 * we only need to allocate resources for 1 port since the
92 * other 7 ports are not connected.
93 */
Ryan Bradetich514fb842006-11-10 04:06:14 +000094 if(dev->id.hversion == 0x15)
Ryan Bradetich61425442006-11-10 03:08:45 +000095 return 1;
96
Ryan Bradetich514fb842006-11-10 04:06:14 +000097 status = pdc_iodc_read(&bytecnt, dev->hpa.start, 0, iodc_data, 32);
98 BUG_ON(status != PDC_OK);
99
Ryan Bradetich61425442006-11-10 03:08:45 +0000100 /* Return the number of ports specified in the iodc data. */
101 return ((((iodc_data)[4] & 0xf0) >> 4) * 8) + 8;
102}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103
104/**
105 * mux_tx_empty - Check if the transmitter fifo is empty.
106 * @port: Ptr to the uart_port.
107 *
108 * This function test if the transmitter fifo for the port
109 * described by 'port' is empty. If it is empty, this function
110 * should return TIOCSER_TEMT, otherwise return 0.
111 */
112static unsigned int mux_tx_empty(struct uart_port *port)
113{
Ryan Bradetich92495c02005-11-17 16:36:52 -0500114 return UART_GET_FIFO_CNT(port) ? 0 : TIOCSER_TEMT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115}
116
117/**
118 * mux_set_mctrl - Set the current state of the modem control inputs.
119 * @ports: Ptr to the uart_port.
120 * @mctrl: Modem control bits.
121 *
122 * The Serial MUX does not support CTS, DCD or DSR so this function
123 * is ignored.
124 */
125static void mux_set_mctrl(struct uart_port *port, unsigned int mctrl)
126{
127}
128
129/**
130 * mux_get_mctrl - Returns the current state of modem control inputs.
131 * @port: Ptr to the uart_port.
132 *
133 * The Serial MUX does not support CTS, DCD or DSR so these lines are
134 * treated as permanently active.
135 */
136static unsigned int mux_get_mctrl(struct uart_port *port)
137{
138 return TIOCM_CAR | TIOCM_DSR | TIOCM_CTS;
139}
140
141/**
142 * mux_stop_tx - Stop transmitting characters.
143 * @port: Ptr to the uart_port.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144 *
145 * The Serial MUX does not support this function.
146 */
Russell Kingb129a8c2005-08-31 10:12:14 +0100147static void mux_stop_tx(struct uart_port *port)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148{
149}
150
151/**
152 * mux_start_tx - Start transmitting characters.
153 * @port: Ptr to the uart_port.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154 *
155 * The Serial Mux does not support this function.
156 */
Russell Kingb129a8c2005-08-31 10:12:14 +0100157static void mux_start_tx(struct uart_port *port)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158{
159}
160
161/**
162 * mux_stop_rx - Stop receiving characters.
163 * @port: Ptr to the uart_port.
164 *
165 * The Serial Mux does not support this function.
166 */
167static void mux_stop_rx(struct uart_port *port)
168{
169}
170
171/**
172 * mux_enable_ms - Enable modum status interrupts.
173 * @port: Ptr to the uart_port.
174 *
175 * The Serial Mux does not support this function.
176 */
177static void mux_enable_ms(struct uart_port *port)
178{
179}
180
181/**
182 * mux_break_ctl - Control the transmitssion of a break signal.
183 * @port: Ptr to the uart_port.
184 * @break_state: Raise/Lower the break signal.
185 *
186 * The Serial Mux does not support this function.
187 */
188static void mux_break_ctl(struct uart_port *port, int break_state)
189{
190}
191
192/**
193 * mux_write - Write chars to the mux fifo.
194 * @port: Ptr to the uart_port.
195 *
196 * This function writes all the data from the uart buffer to
197 * the mux fifo.
198 */
199static void mux_write(struct uart_port *port)
200{
201 int count;
Alan Coxebd2c8f2009-09-19 13:13:28 -0700202 struct circ_buf *xmit = &port->state->xmit;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203
204 if(port->x_char) {
205 UART_PUT_CHAR(port, port->x_char);
206 port->icount.tx++;
207 port->x_char = 0;
208 return;
209 }
210
211 if(uart_circ_empty(xmit) || uart_tx_stopped(port)) {
Russell Kingb129a8c2005-08-31 10:12:14 +0100212 mux_stop_tx(port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213 return;
214 }
215
216 count = (port->fifosize) - UART_GET_FIFO_CNT(port);
217 do {
218 UART_PUT_CHAR(port, xmit->buf[xmit->tail]);
219 xmit->tail = (xmit->tail + 1) & (UART_XMIT_SIZE - 1);
220 port->icount.tx++;
221 if(uart_circ_empty(xmit))
222 break;
223
224 } while(--count > 0);
225
226 while(UART_GET_FIFO_CNT(port))
227 udelay(1);
228
229 if(uart_circ_chars_pending(xmit) < WAKEUP_CHARS)
230 uart_write_wakeup(port);
231
232 if (uart_circ_empty(xmit))
Russell Kingb129a8c2005-08-31 10:12:14 +0100233 mux_stop_tx(port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234}
235
236/**
237 * mux_read - Read chars from the mux fifo.
238 * @port: Ptr to the uart_port.
239 *
240 * This reads all available data from the mux's fifo and pushes
241 * the data to the tty layer.
242 */
243static void mux_read(struct uart_port *port)
244{
Jiri Slaby92a19f92013-01-03 15:53:03 +0100245 struct tty_port *tport = &port->state->port;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246 int data;
Jiri Slaby92a19f92013-01-03 15:53:03 +0100247 struct tty_struct *tty = tport->tty;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248 __u32 start_count = port->icount.rx;
249
250 while(1) {
Ryan Bradetich92495c02005-11-17 16:36:52 -0500251 data = __raw_readl(port->membase + IO_DATA_REG_OFFSET);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700252
253 if (MUX_STATUS(data))
254 continue;
255
256 if (MUX_EOFIFO(data))
257 break;
258
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259 port->icount.rx++;
260
261 if (MUX_BREAK(data)) {
262 port->icount.brk++;
263 if(uart_handle_break(port))
264 continue;
265 }
266
Matthew Wilcoxbe577a52006-10-06 20:47:23 -0600267 if (uart_handle_sysrq_char(port, data & 0xffu))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268 continue;
269
Jiri Slaby92a19f92013-01-03 15:53:03 +0100270 tty_insert_flip_char(tport, data & 0xFF, TTY_NORMAL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271 }
272
273 if (start_count != port->icount.rx) {
274 tty_flip_buffer_push(tty);
275 }
276}
277
278/**
279 * mux_startup - Initialize the port.
280 * @port: Ptr to the uart_port.
281 *
282 * Grab any resources needed for this port and start the
283 * mux timer.
284 */
285static int mux_startup(struct uart_port *port)
286{
Ryan Bradetich4bd5d822006-11-03 05:38:39 +0000287 mux_ports[port->line].enabled = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288 return 0;
289}
290
291/**
292 * mux_shutdown - Disable the port.
293 * @port: Ptr to the uart_port.
294 *
295 * Release any resources needed for the port.
296 */
297static void mux_shutdown(struct uart_port *port)
298{
Ryan Bradetich4bd5d822006-11-03 05:38:39 +0000299 mux_ports[port->line].enabled = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700300}
301
302/**
303 * mux_set_termios - Chane port parameters.
304 * @port: Ptr to the uart_port.
305 * @termios: new termios settings.
306 * @old: old termios settings.
307 *
308 * The Serial Mux does not support this function.
309 */
310static void
Alan Cox606d0992006-12-08 02:38:45 -0800311mux_set_termios(struct uart_port *port, struct ktermios *termios,
312 struct ktermios *old)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313{
314}
315
316/**
317 * mux_type - Describe the port.
318 * @port: Ptr to the uart_port.
319 *
320 * Return a pointer to a string constant describing the
321 * specified port.
322 */
323static const char *mux_type(struct uart_port *port)
324{
325 return "Mux";
326}
327
328/**
329 * mux_release_port - Release memory and IO regions.
330 * @port: Ptr to the uart_port.
331 *
332 * Release any memory and IO region resources currently in use by
333 * the port.
334 */
335static void mux_release_port(struct uart_port *port)
336{
337}
338
339/**
340 * mux_request_port - Request memory and IO regions.
341 * @port: Ptr to the uart_port.
342 *
343 * Request any memory and IO region resources required by the port.
344 * If any fail, no resources should be registered when this function
345 * returns, and it should return -EBUSY on failure.
346 */
347static int mux_request_port(struct uart_port *port)
348{
349 return 0;
350}
351
352/**
353 * mux_config_port - Perform port autoconfiguration.
354 * @port: Ptr to the uart_port.
355 * @type: Bitmask of required configurations.
356 *
Ryan Bradetich4bd5d822006-11-03 05:38:39 +0000357 * Perform any autoconfiguration steps for the port. This function is
Linus Torvalds1da177e2005-04-16 15:20:36 -0700358 * called if the UPF_BOOT_AUTOCONF flag is specified for the port.
359 * [Note: This is required for now because of a bug in the Serial core.
360 * rmk has already submitted a patch to linus, should be available for
361 * 2.5.47.]
362 */
363static void mux_config_port(struct uart_port *port, int type)
364{
365 port->type = PORT_MUX;
366}
367
368/**
369 * mux_verify_port - Verify the port information.
370 * @port: Ptr to the uart_port.
371 * @ser: Ptr to the serial information.
372 *
373 * Verify the new serial port information contained within serinfo is
374 * suitable for this port type.
375 */
376static int mux_verify_port(struct uart_port *port, struct serial_struct *ser)
377{
378 if(port->membase == NULL)
379 return -EINVAL;
380
381 return 0;
382}
383
384/**
385 * mux_drv_poll - Mux poll function.
386 * @unused: Unused variable
387 *
388 * This function periodically polls the Serial MUX to check for new data.
389 */
390static void mux_poll(unsigned long unused)
391{
392 int i;
393
394 for(i = 0; i < port_cnt; ++i) {
Ryan Bradetich4bd5d822006-11-03 05:38:39 +0000395 if(!mux_ports[i].enabled)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396 continue;
397
Ryan Bradetich4bd5d822006-11-03 05:38:39 +0000398 mux_read(&mux_ports[i].port);
399 mux_write(&mux_ports[i].port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700400 }
401
402 mod_timer(&mux_timer, jiffies + MUX_POLL_DELAY);
403}
404
405
406#ifdef CONFIG_SERIAL_MUX_CONSOLE
407static void mux_console_write(struct console *co, const char *s, unsigned count)
408{
Ryan Bradetich3de7b642006-11-03 05:52:41 +0000409 /* Wait until the FIFO drains. */
410 while(UART_GET_FIFO_CNT(&mux_ports[0].port))
411 udelay(1);
412
413 while(count--) {
414 if(*s == '\n') {
415 UART_PUT_CHAR(&mux_ports[0].port, '\r');
416 }
417 UART_PUT_CHAR(&mux_ports[0].port, *s++);
418 }
419
Linus Torvalds1da177e2005-04-16 15:20:36 -0700420}
421
422static int mux_console_setup(struct console *co, char *options)
423{
424 return 0;
425}
426
427struct tty_driver *mux_console_device(struct console *co, int *index)
428{
429 *index = co->index;
430 return mux_driver.tty_driver;
431}
432
433static struct console mux_console = {
434 .name = "ttyB",
435 .write = mux_console_write,
436 .device = mux_console_device,
437 .setup = mux_console_setup,
438 .flags = CON_ENABLED | CON_PRINTBUFFER,
439 .index = 0,
440};
441
442#define MUX_CONSOLE &mux_console
443#else
444#define MUX_CONSOLE NULL
445#endif
446
447static struct uart_ops mux_pops = {
448 .tx_empty = mux_tx_empty,
449 .set_mctrl = mux_set_mctrl,
450 .get_mctrl = mux_get_mctrl,
451 .stop_tx = mux_stop_tx,
452 .start_tx = mux_start_tx,
453 .stop_rx = mux_stop_rx,
454 .enable_ms = mux_enable_ms,
455 .break_ctl = mux_break_ctl,
456 .startup = mux_startup,
457 .shutdown = mux_shutdown,
458 .set_termios = mux_set_termios,
459 .type = mux_type,
460 .release_port = mux_release_port,
461 .request_port = mux_request_port,
462 .config_port = mux_config_port,
463 .verify_port = mux_verify_port,
464};
465
466/**
467 * mux_probe - Determine if the Serial Mux should claim this device.
468 * @dev: The parisc device.
469 *
470 * Deterimine if the Serial Mux should claim this chip (return 0)
471 * or not (return 1).
472 */
473static int __init mux_probe(struct parisc_device *dev)
474{
Ryan Bradetich61425442006-11-10 03:08:45 +0000475 int i, status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700476
Ryan Bradetich61425442006-11-10 03:08:45 +0000477 int port_count = get_mux_port_count(dev);
Ryan Bradetich752b9402006-11-09 04:45:08 +0000478 printk(KERN_INFO "Serial mux driver (%d ports) Revision: 0.6\n", port_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700479
Ryan Bradetichc380f052006-11-05 01:21:44 +0000480 dev_set_drvdata(&dev->dev, (void *)(long)port_count);
481 request_mem_region(dev->hpa.start + MUX_OFFSET,
482 port_count * MUX_LINE_OFFSET, "Mux");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483
484 if(!port_cnt) {
485 mux_driver.cons = MUX_CONSOLE;
486
487 status = uart_register_driver(&mux_driver);
488 if(status) {
489 printk(KERN_ERR "Serial mux: Unable to register driver.\n");
490 return 1;
491 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700492 }
493
Ryan Bradetichc380f052006-11-05 01:21:44 +0000494 for(i = 0; i < port_count; ++i, ++port_cnt) {
495 struct uart_port *port = &mux_ports[port_cnt].port;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700496 port->iobase = 0;
Matthew Wilcoxae8c75c2005-10-21 22:58:03 -0400497 port->mapbase = dev->hpa.start + MUX_OFFSET +
498 (i * MUX_LINE_OFFSET);
Helge Deller5076c152006-03-27 12:52:15 -0700499 port->membase = ioremap_nocache(port->mapbase, MUX_LINE_OFFSET);
Russell King9b4a1612006-02-05 10:48:10 +0000500 port->iotype = UPIO_MEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700501 port->type = PORT_MUX;
Alan Coxd4e33fa2012-01-26 17:44:09 +0000502 port->irq = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700503 port->uartclk = 0;
504 port->fifosize = MUX_FIFO_SIZE;
505 port->ops = &mux_pops;
506 port->flags = UPF_BOOT_AUTOCONF;
507 port->line = port_cnt;
Ryan Bradeticha137ce852005-11-17 16:38:28 -0500508
509 /* The port->timeout needs to match what is present in
510 * uart_wait_until_sent in serial_core.c. Otherwise
511 * the time spent in msleep_interruptable will be very
512 * long, causing the appearance of a console hang.
513 */
514 port->timeout = HZ / 50;
Matthew Wilcoxae8c75c2005-10-21 22:58:03 -0400515 spin_lock_init(&port->lock);
Ryan Bradetich752b9402006-11-09 04:45:08 +0000516
Linus Torvalds1da177e2005-04-16 15:20:36 -0700517 status = uart_add_one_port(&mux_driver, port);
518 BUG_ON(status);
519 }
520
Linus Torvalds1da177e2005-04-16 15:20:36 -0700521 return 0;
522}
523
Bill Pembertonae8d8a12012-11-19 13:26:18 -0500524static int mux_remove(struct parisc_device *dev)
Ryan Bradetichc380f052006-11-05 01:21:44 +0000525{
Ryan Bradetich752b9402006-11-09 04:45:08 +0000526 int i, j;
Ryan Bradetichc380f052006-11-05 01:21:44 +0000527 int port_count = (long)dev_get_drvdata(&dev->dev);
528
Ryan Bradetichc380f052006-11-05 01:21:44 +0000529 /* Find Port 0 for this card in the mux_ports list. */
530 for(i = 0; i < port_cnt; ++i) {
531 if(mux_ports[i].port.mapbase == dev->hpa.start + MUX_OFFSET)
532 break;
533 }
534 BUG_ON(i + port_count > port_cnt);
535
536 /* Release the resources associated with each port on the device. */
Ryan Bradetich752b9402006-11-09 04:45:08 +0000537 for(j = 0; j < port_count; ++j, ++i) {
Ryan Bradetichc380f052006-11-05 01:21:44 +0000538 struct uart_port *port = &mux_ports[i].port;
539
540 uart_remove_one_port(&mux_driver, port);
541 if(port->membase)
542 iounmap(port->membase);
543 }
544
545 release_mem_region(dev->hpa.start + MUX_OFFSET, port_count * MUX_LINE_OFFSET);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700546 return 0;
547}
548
Ryan Bradetich752b9402006-11-09 04:45:08 +0000549/* Hack. This idea was taken from the 8250_gsc.c on how to properly order
550 * the serial port detection in the proper order. The idea is we always
551 * want the builtin mux to be detected before addin mux cards, so we
552 * specifically probe for the builtin mux cards first.
553 *
554 * This table only contains the parisc_device_id of known builtin mux
555 * devices. All other mux cards will be detected by the generic mux_tbl.
556 */
557static struct parisc_device_id builtin_mux_tbl[] = {
558 { HPHW_A_DIRECT, HVERSION_REV_ANY_ID, 0x15, 0x0000D }, /* All K-class */
559 { HPHW_A_DIRECT, HVERSION_REV_ANY_ID, 0x44, 0x0000D }, /* E35, E45, and E55 */
560 { 0, }
561};
562
Linus Torvalds1da177e2005-04-16 15:20:36 -0700563static struct parisc_device_id mux_tbl[] = {
564 { HPHW_A_DIRECT, HVERSION_REV_ANY_ID, HVERSION_ANY_ID, 0x0000D },
565 { 0, }
566};
567
Ryan Bradetich752b9402006-11-09 04:45:08 +0000568MODULE_DEVICE_TABLE(parisc, builtin_mux_tbl);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700569MODULE_DEVICE_TABLE(parisc, mux_tbl);
570
Ryan Bradetich752b9402006-11-09 04:45:08 +0000571static struct parisc_driver builtin_serial_mux_driver = {
572 .name = "builtin_serial_mux",
573 .id_table = builtin_mux_tbl,
574 .probe = mux_probe,
Bill Pemberton2d47b712012-11-19 13:21:34 -0500575 .remove = mux_remove,
Ryan Bradetich752b9402006-11-09 04:45:08 +0000576};
577
Linus Torvalds1da177e2005-04-16 15:20:36 -0700578static struct parisc_driver serial_mux_driver = {
Matthew Wilcoxbdad1f82005-10-21 22:36:23 -0400579 .name = "serial_mux",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700580 .id_table = mux_tbl,
581 .probe = mux_probe,
Bill Pemberton2d47b712012-11-19 13:21:34 -0500582 .remove = mux_remove,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700583};
584
585/**
Joe Perches8f4aafe2008-02-03 17:29:25 +0200586 * mux_init - Serial MUX initialization procedure.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700587 *
588 * Register the Serial MUX driver.
589 */
590static int __init mux_init(void)
591{
Ryan Bradetich752b9402006-11-09 04:45:08 +0000592 register_parisc_driver(&builtin_serial_mux_driver);
593 register_parisc_driver(&serial_mux_driver);
Ryan Bradetichc380f052006-11-05 01:21:44 +0000594
595 if(port_cnt > 0) {
596 /* Start the Mux timer */
597 init_timer(&mux_timer);
598 mux_timer.function = mux_poll;
599 mod_timer(&mux_timer, jiffies + MUX_POLL_DELAY);
600
601#ifdef CONFIG_SERIAL_MUX_CONSOLE
602 register_console(&mux_console);
603#endif
604 }
605
Ryan Bradetich752b9402006-11-09 04:45:08 +0000606 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700607}
608
609/**
610 * mux_exit - Serial MUX cleanup procedure.
611 *
612 * Unregister the Serial MUX driver from the tty layer.
613 */
614static void __exit mux_exit(void)
615{
Ryan Bradetichc380f052006-11-05 01:21:44 +0000616 /* Delete the Mux timer. */
617 if(port_cnt > 0) {
618 del_timer(&mux_timer);
619#ifdef CONFIG_SERIAL_MUX_CONSOLE
620 unregister_console(&mux_console);
621#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700622 }
623
Ryan Bradetich752b9402006-11-09 04:45:08 +0000624 unregister_parisc_driver(&builtin_serial_mux_driver);
Ryan Bradetichc380f052006-11-05 01:21:44 +0000625 unregister_parisc_driver(&serial_mux_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700626 uart_unregister_driver(&mux_driver);
627}
628
629module_init(mux_init);
630module_exit(mux_exit);
631
632MODULE_AUTHOR("Ryan Bradetich");
633MODULE_DESCRIPTION("Serial MUX driver");
634MODULE_LICENSE("GPL");
635MODULE_ALIAS_CHARDEV_MAJOR(MUX_MAJOR);