3 ** serial driver for the Mux console found in some PA-RISC servers.
5 ** (c) Copyright 2002 Ryan Bradetich
6 ** (c) Copyright 2002 Hewlett-Packard Company
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.
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.
19 #include <linux/module.h>
20 #include <linux/tty.h>
21 #include <linux/ioport.h>
22 #include <linux/init.h>
23 #include <linux/serial.h>
24 #include <linux/console.h>
25 #include <linux/delay.h> /* for udelay */
26 #include <linux/device.h>
29 #include <asm/parisc-device.h>
31 #ifdef CONFIG_MAGIC_SYSRQ
32 #include <linux/sysrq.h>
36 #include <linux/serial_core.h>
38 #define MUX_OFFSET 0x800
39 #define MUX_LINE_OFFSET 0x80
41 #define MUX_FIFO_SIZE 255
42 #define MUX_POLL_DELAY (30 * HZ / 1000)
44 #define IO_DATA_REG_OFFSET 0x3c
45 #define IO_DCOUNT_REG_OFFSET 0x40
47 #define MUX_EOFIFO(status) ((status & 0xF000) == 0xF000)
48 #define MUX_STATUS(status) ((status & 0xF000) == 0x8000)
49 #define MUX_BREAK(status) ((status & 0xF000) == 0x2000)
52 static unsigned int port_cnt __read_mostly
;
54 struct uart_port port
;
57 static struct mux_port mux_ports
[MUX_NR
];
59 static struct uart_driver mux_driver
= {
61 .driver_name
= "ttyB",
68 static struct timer_list mux_timer
;
70 #define UART_PUT_CHAR(p, c) __raw_writel((c), (p)->membase + IO_DATA_REG_OFFSET)
71 #define UART_GET_FIFO_CNT(p) __raw_readl((p)->membase + IO_DCOUNT_REG_OFFSET)
74 * get_mux_port_count - Get the number of available ports on the Mux.
75 * @dev: The parisc device.
77 * This function is used to determine the number of ports the Mux
78 * supports. The IODC data reports the number of ports the Mux
79 * can support, but there are cases where not all the Mux ports
80 * are connected. This function can override the IODC and
81 * return the true port count.
83 static int __init
get_mux_port_count(struct parisc_device
*dev
)
87 unsigned long bytecnt
;
89 /* If this is the built-in Mux for the K-Class (Eole CAP/MUX),
90 * we only need to allocate resources for 1 port since the
91 * other 7 ports are not connected.
93 if(dev
->id
.hversion
== 0x15)
96 status
= pdc_iodc_read(&bytecnt
, dev
->hpa
.start
, 0, iodc_data
, 32);
97 BUG_ON(status
!= PDC_OK
);
99 /* Return the number of ports specified in the iodc data. */
100 return ((((iodc_data
)[4] & 0xf0) >> 4) * 8) + 8;
104 * mux_tx_empty - Check if the transmitter fifo is empty.
105 * @port: Ptr to the uart_port.
107 * This function test if the transmitter fifo for the port
108 * described by 'port' is empty. If it is empty, this function
109 * should return TIOCSER_TEMT, otherwise return 0.
111 static unsigned int mux_tx_empty(struct uart_port
*port
)
113 return UART_GET_FIFO_CNT(port
) ? 0 : TIOCSER_TEMT
;
117 * mux_set_mctrl - Set the current state of the modem control inputs.
118 * @ports: Ptr to the uart_port.
119 * @mctrl: Modem control bits.
121 * The Serial MUX does not support CTS, DCD or DSR so this function
124 static void mux_set_mctrl(struct uart_port
*port
, unsigned int mctrl
)
129 * mux_get_mctrl - Returns the current state of modem control inputs.
130 * @port: Ptr to the uart_port.
132 * The Serial MUX does not support CTS, DCD or DSR so these lines are
133 * treated as permanently active.
135 static unsigned int mux_get_mctrl(struct uart_port
*port
)
137 return TIOCM_CAR
| TIOCM_DSR
| TIOCM_CTS
;
141 * mux_stop_tx - Stop transmitting characters.
142 * @port: Ptr to the uart_port.
144 * The Serial MUX does not support this function.
146 static void mux_stop_tx(struct uart_port
*port
)
151 * mux_start_tx - Start transmitting characters.
152 * @port: Ptr to the uart_port.
154 * The Serial Mux does not support this function.
156 static void mux_start_tx(struct uart_port
*port
)
161 * mux_stop_rx - Stop receiving characters.
162 * @port: Ptr to the uart_port.
164 * The Serial Mux does not support this function.
166 static void mux_stop_rx(struct uart_port
*port
)
171 * mux_enable_ms - Enable modum status interrupts.
172 * @port: Ptr to the uart_port.
174 * The Serial Mux does not support this function.
176 static void mux_enable_ms(struct uart_port
*port
)
181 * mux_break_ctl - Control the transmitssion of a break signal.
182 * @port: Ptr to the uart_port.
183 * @break_state: Raise/Lower the break signal.
185 * The Serial Mux does not support this function.
187 static void mux_break_ctl(struct uart_port
*port
, int break_state
)
192 * mux_write - Write chars to the mux fifo.
193 * @port: Ptr to the uart_port.
195 * This function writes all the data from the uart buffer to
198 static void mux_write(struct uart_port
*port
)
201 struct circ_buf
*xmit
= &port
->state
->xmit
;
204 UART_PUT_CHAR(port
, port
->x_char
);
210 if(uart_circ_empty(xmit
) || uart_tx_stopped(port
)) {
215 count
= (port
->fifosize
) - UART_GET_FIFO_CNT(port
);
217 UART_PUT_CHAR(port
, xmit
->buf
[xmit
->tail
]);
218 xmit
->tail
= (xmit
->tail
+ 1) & (UART_XMIT_SIZE
- 1);
220 if(uart_circ_empty(xmit
))
223 } while(--count
> 0);
225 while(UART_GET_FIFO_CNT(port
))
228 if(uart_circ_chars_pending(xmit
) < WAKEUP_CHARS
)
229 uart_write_wakeup(port
);
231 if (uart_circ_empty(xmit
))
236 * mux_read - Read chars from the mux fifo.
237 * @port: Ptr to the uart_port.
239 * This reads all available data from the mux's fifo and pushes
240 * the data to the tty layer.
242 static void mux_read(struct uart_port
*port
)
245 struct tty_struct
*tty
= port
->state
->port
.tty
;
246 __u32 start_count
= port
->icount
.rx
;
249 data
= __raw_readl(port
->membase
+ IO_DATA_REG_OFFSET
);
251 if (MUX_STATUS(data
))
254 if (MUX_EOFIFO(data
))
259 if (MUX_BREAK(data
)) {
261 if(uart_handle_break(port
))
265 if (uart_handle_sysrq_char(port
, data
& 0xffu
))
268 tty_insert_flip_char(tty
, data
& 0xFF, TTY_NORMAL
);
271 if (start_count
!= port
->icount
.rx
) {
272 tty_flip_buffer_push(tty
);
277 * mux_startup - Initialize the port.
278 * @port: Ptr to the uart_port.
280 * Grab any resources needed for this port and start the
283 static int mux_startup(struct uart_port
*port
)
285 mux_ports
[port
->line
].enabled
= 1;
290 * mux_shutdown - Disable the port.
291 * @port: Ptr to the uart_port.
293 * Release any resources needed for the port.
295 static void mux_shutdown(struct uart_port
*port
)
297 mux_ports
[port
->line
].enabled
= 0;
301 * mux_set_termios - Chane port parameters.
302 * @port: Ptr to the uart_port.
303 * @termios: new termios settings.
304 * @old: old termios settings.
306 * The Serial Mux does not support this function.
309 mux_set_termios(struct uart_port
*port
, struct ktermios
*termios
,
310 struct ktermios
*old
)
315 * mux_type - Describe the port.
316 * @port: Ptr to the uart_port.
318 * Return a pointer to a string constant describing the
321 static const char *mux_type(struct uart_port
*port
)
327 * mux_release_port - Release memory and IO regions.
328 * @port: Ptr to the uart_port.
330 * Release any memory and IO region resources currently in use by
333 static void mux_release_port(struct uart_port
*port
)
338 * mux_request_port - Request memory and IO regions.
339 * @port: Ptr to the uart_port.
341 * Request any memory and IO region resources required by the port.
342 * If any fail, no resources should be registered when this function
343 * returns, and it should return -EBUSY on failure.
345 static int mux_request_port(struct uart_port
*port
)
351 * mux_config_port - Perform port autoconfiguration.
352 * @port: Ptr to the uart_port.
353 * @type: Bitmask of required configurations.
355 * Perform any autoconfiguration steps for the port. This function is
356 * called if the UPF_BOOT_AUTOCONF flag is specified for the port.
357 * [Note: This is required for now because of a bug in the Serial core.
358 * rmk has already submitted a patch to linus, should be available for
361 static void mux_config_port(struct uart_port
*port
, int type
)
363 port
->type
= PORT_MUX
;
367 * mux_verify_port - Verify the port information.
368 * @port: Ptr to the uart_port.
369 * @ser: Ptr to the serial information.
371 * Verify the new serial port information contained within serinfo is
372 * suitable for this port type.
374 static int mux_verify_port(struct uart_port
*port
, struct serial_struct
*ser
)
376 if(port
->membase
== NULL
)
383 * mux_drv_poll - Mux poll function.
384 * @unused: Unused variable
386 * This function periodically polls the Serial MUX to check for new data.
388 static void mux_poll(unsigned long unused
)
392 for(i
= 0; i
< port_cnt
; ++i
) {
393 if(!mux_ports
[i
].enabled
)
396 mux_read(&mux_ports
[i
].port
);
397 mux_write(&mux_ports
[i
].port
);
400 mod_timer(&mux_timer
, jiffies
+ MUX_POLL_DELAY
);
404 #ifdef CONFIG_SERIAL_MUX_CONSOLE
405 static void mux_console_write(struct console
*co
, const char *s
, unsigned count
)
407 /* Wait until the FIFO drains. */
408 while(UART_GET_FIFO_CNT(&mux_ports
[0].port
))
413 UART_PUT_CHAR(&mux_ports
[0].port
, '\r');
415 UART_PUT_CHAR(&mux_ports
[0].port
, *s
++);
420 static int mux_console_setup(struct console
*co
, char *options
)
425 struct tty_driver
*mux_console_device(struct console
*co
, int *index
)
428 return mux_driver
.tty_driver
;
431 static struct console mux_console
= {
433 .write
= mux_console_write
,
434 .device
= mux_console_device
,
435 .setup
= mux_console_setup
,
436 .flags
= CON_ENABLED
| CON_PRINTBUFFER
,
440 #define MUX_CONSOLE &mux_console
442 #define MUX_CONSOLE NULL
445 static struct uart_ops mux_pops
= {
446 .tx_empty
= mux_tx_empty
,
447 .set_mctrl
= mux_set_mctrl
,
448 .get_mctrl
= mux_get_mctrl
,
449 .stop_tx
= mux_stop_tx
,
450 .start_tx
= mux_start_tx
,
451 .stop_rx
= mux_stop_rx
,
452 .enable_ms
= mux_enable_ms
,
453 .break_ctl
= mux_break_ctl
,
454 .startup
= mux_startup
,
455 .shutdown
= mux_shutdown
,
456 .set_termios
= mux_set_termios
,
458 .release_port
= mux_release_port
,
459 .request_port
= mux_request_port
,
460 .config_port
= mux_config_port
,
461 .verify_port
= mux_verify_port
,
465 * mux_probe - Determine if the Serial Mux should claim this device.
466 * @dev: The parisc device.
468 * Deterimine if the Serial Mux should claim this chip (return 0)
471 static int __init
mux_probe(struct parisc_device
*dev
)
475 int port_count
= get_mux_port_count(dev
);
476 printk(KERN_INFO
"Serial mux driver (%d ports) Revision: 0.6\n", port_count
);
478 dev_set_drvdata(&dev
->dev
, (void *)(long)port_count
);
479 request_mem_region(dev
->hpa
.start
+ MUX_OFFSET
,
480 port_count
* MUX_LINE_OFFSET
, "Mux");
483 mux_driver
.cons
= MUX_CONSOLE
;
485 status
= uart_register_driver(&mux_driver
);
487 printk(KERN_ERR
"Serial mux: Unable to register driver.\n");
492 for(i
= 0; i
< port_count
; ++i
, ++port_cnt
) {
493 struct uart_port
*port
= &mux_ports
[port_cnt
].port
;
495 port
->mapbase
= dev
->hpa
.start
+ MUX_OFFSET
+
496 (i
* MUX_LINE_OFFSET
);
497 port
->membase
= ioremap_nocache(port
->mapbase
, MUX_LINE_OFFSET
);
498 port
->iotype
= UPIO_MEM
;
499 port
->type
= PORT_MUX
;
502 port
->fifosize
= MUX_FIFO_SIZE
;
503 port
->ops
= &mux_pops
;
504 port
->flags
= UPF_BOOT_AUTOCONF
;
505 port
->line
= port_cnt
;
507 /* The port->timeout needs to match what is present in
508 * uart_wait_until_sent in serial_core.c. Otherwise
509 * the time spent in msleep_interruptable will be very
510 * long, causing the appearance of a console hang.
512 port
->timeout
= HZ
/ 50;
513 spin_lock_init(&port
->lock
);
515 status
= uart_add_one_port(&mux_driver
, port
);
522 static int __devexit
mux_remove(struct parisc_device
*dev
)
525 int port_count
= (long)dev_get_drvdata(&dev
->dev
);
527 /* Find Port 0 for this card in the mux_ports list. */
528 for(i
= 0; i
< port_cnt
; ++i
) {
529 if(mux_ports
[i
].port
.mapbase
== dev
->hpa
.start
+ MUX_OFFSET
)
532 BUG_ON(i
+ port_count
> port_cnt
);
534 /* Release the resources associated with each port on the device. */
535 for(j
= 0; j
< port_count
; ++j
, ++i
) {
536 struct uart_port
*port
= &mux_ports
[i
].port
;
538 uart_remove_one_port(&mux_driver
, port
);
540 iounmap(port
->membase
);
543 release_mem_region(dev
->hpa
.start
+ MUX_OFFSET
, port_count
* MUX_LINE_OFFSET
);
547 /* Hack. This idea was taken from the 8250_gsc.c on how to properly order
548 * the serial port detection in the proper order. The idea is we always
549 * want the builtin mux to be detected before addin mux cards, so we
550 * specifically probe for the builtin mux cards first.
552 * This table only contains the parisc_device_id of known builtin mux
553 * devices. All other mux cards will be detected by the generic mux_tbl.
555 static struct parisc_device_id builtin_mux_tbl
[] = {
556 { HPHW_A_DIRECT
, HVERSION_REV_ANY_ID
, 0x15, 0x0000D }, /* All K-class */
557 { HPHW_A_DIRECT
, HVERSION_REV_ANY_ID
, 0x44, 0x0000D }, /* E35, E45, and E55 */
561 static struct parisc_device_id mux_tbl
[] = {
562 { HPHW_A_DIRECT
, HVERSION_REV_ANY_ID
, HVERSION_ANY_ID
, 0x0000D },
566 MODULE_DEVICE_TABLE(parisc
, builtin_mux_tbl
);
567 MODULE_DEVICE_TABLE(parisc
, mux_tbl
);
569 static struct parisc_driver builtin_serial_mux_driver
= {
570 .name
= "builtin_serial_mux",
571 .id_table
= builtin_mux_tbl
,
573 .remove
= __devexit_p(mux_remove
),
576 static struct parisc_driver serial_mux_driver
= {
577 .name
= "serial_mux",
580 .remove
= __devexit_p(mux_remove
),
584 * mux_init - Serial MUX initialization procedure.
586 * Register the Serial MUX driver.
588 static int __init
mux_init(void)
590 register_parisc_driver(&builtin_serial_mux_driver
);
591 register_parisc_driver(&serial_mux_driver
);
594 /* Start the Mux timer */
595 init_timer(&mux_timer
);
596 mux_timer
.function
= mux_poll
;
597 mod_timer(&mux_timer
, jiffies
+ MUX_POLL_DELAY
);
599 #ifdef CONFIG_SERIAL_MUX_CONSOLE
600 register_console(&mux_console
);
608 * mux_exit - Serial MUX cleanup procedure.
610 * Unregister the Serial MUX driver from the tty layer.
612 static void __exit
mux_exit(void)
614 /* Delete the Mux timer. */
616 del_timer(&mux_timer
);
617 #ifdef CONFIG_SERIAL_MUX_CONSOLE
618 unregister_console(&mux_console
);
622 unregister_parisc_driver(&builtin_serial_mux_driver
);
623 unregister_parisc_driver(&serial_mux_driver
);
624 uart_unregister_driver(&mux_driver
);
627 module_init(mux_init
);
628 module_exit(mux_exit
);
630 MODULE_AUTHOR("Ryan Bradetich");
631 MODULE_DESCRIPTION("Serial MUX driver");
632 MODULE_LICENSE("GPL");
633 MODULE_ALIAS_CHARDEV_MAJOR(MUX_MAJOR
);