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/config.h>
20 #include <linux/module.h>
21 #include <linux/tty.h>
22 #include <linux/ioport.h>
23 #include <linux/init.h>
24 #include <linux/serial.h>
25 #include <linux/console.h>
26 #include <linux/slab.h>
27 #include <linux/delay.h> /* for udelay */
28 #include <linux/device.h>
30 #include <asm/parisc-device.h>
32 #ifdef CONFIG_MAGIC_SYSRQ
33 #include <linux/sysrq.h>
37 #include <linux/serial_core.h>
39 #define MUX_OFFSET 0x800
40 #define MUX_LINE_OFFSET 0x80
42 #define MUX_FIFO_SIZE 255
43 #define MUX_POLL_DELAY (30 * HZ / 1000)
45 #define IO_DATA_REG_OFFSET 0x3c
46 #define IO_DCOUNT_REG_OFFSET 0x40
48 #define MUX_EOFIFO(status) ((status & 0xF000) == 0xF000)
49 #define MUX_STATUS(status) ((status & 0xF000) == 0x8000)
50 #define MUX_BREAK(status) ((status & 0xF000) == 0x2000)
53 static unsigned int port_cnt
= 0;
54 static struct uart_port mux_ports
[MUX_NR
];
56 static struct uart_driver mux_driver
= {
58 .driver_name
= "ttyB",
65 static struct timer_list mux_timer
;
67 #define UART_PUT_CHAR(p, c) __raw_writel((c), (unsigned long)(p)->membase + IO_DATA_REG_OFFSET)
68 #define UART_GET_FIFO_CNT(p) __raw_readl((unsigned long)(p)->membase + IO_DCOUNT_REG_OFFSET)
69 #define GET_MUX_PORTS(iodc_data) ((((iodc_data)[4] & 0xf0) >> 4) * 8) + 8
72 * mux_tx_empty - Check if the transmitter fifo is empty.
73 * @port: Ptr to the uart_port.
75 * This function test if the transmitter fifo for the port
76 * described by 'port' is empty. If it is empty, this function
77 * should return TIOCSER_TEMT, otherwise return 0.
79 static unsigned int mux_tx_empty(struct uart_port
*port
)
81 unsigned int cnt
= __raw_readl((unsigned long)port
->membase
82 + IO_DCOUNT_REG_OFFSET
);
84 return cnt
? 0 : TIOCSER_TEMT
;
88 * mux_set_mctrl - Set the current state of the modem control inputs.
89 * @ports: Ptr to the uart_port.
90 * @mctrl: Modem control bits.
92 * The Serial MUX does not support CTS, DCD or DSR so this function
95 static void mux_set_mctrl(struct uart_port
*port
, unsigned int mctrl
)
100 * mux_get_mctrl - Returns the current state of modem control inputs.
101 * @port: Ptr to the uart_port.
103 * The Serial MUX does not support CTS, DCD or DSR so these lines are
104 * treated as permanently active.
106 static unsigned int mux_get_mctrl(struct uart_port
*port
)
108 return TIOCM_CAR
| TIOCM_DSR
| TIOCM_CTS
;
112 * mux_stop_tx - Stop transmitting characters.
113 * @port: Ptr to the uart_port.
114 * @tty_stop: tty layer issue this command?
116 * The Serial MUX does not support this function.
118 static void mux_stop_tx(struct uart_port
*port
, unsigned int tty_stop
)
123 * mux_start_tx - Start transmitting characters.
124 * @port: Ptr to the uart_port.
125 * @tty_start: tty layer issue this command?
127 * The Serial Mux does not support this function.
129 static void mux_start_tx(struct uart_port
*port
, unsigned int tty_start
)
134 * mux_stop_rx - Stop receiving characters.
135 * @port: Ptr to the uart_port.
137 * The Serial Mux does not support this function.
139 static void mux_stop_rx(struct uart_port
*port
)
144 * mux_enable_ms - Enable modum status interrupts.
145 * @port: Ptr to the uart_port.
147 * The Serial Mux does not support this function.
149 static void mux_enable_ms(struct uart_port
*port
)
154 * mux_break_ctl - Control the transmitssion of a break signal.
155 * @port: Ptr to the uart_port.
156 * @break_state: Raise/Lower the break signal.
158 * The Serial Mux does not support this function.
160 static void mux_break_ctl(struct uart_port
*port
, int break_state
)
165 * mux_write - Write chars to the mux fifo.
166 * @port: Ptr to the uart_port.
168 * This function writes all the data from the uart buffer to
171 static void mux_write(struct uart_port
*port
)
174 struct circ_buf
*xmit
= &port
->info
->xmit
;
177 UART_PUT_CHAR(port
, port
->x_char
);
183 if(uart_circ_empty(xmit
) || uart_tx_stopped(port
)) {
184 mux_stop_tx(port
, 0);
188 count
= (port
->fifosize
) - UART_GET_FIFO_CNT(port
);
190 UART_PUT_CHAR(port
, xmit
->buf
[xmit
->tail
]);
191 xmit
->tail
= (xmit
->tail
+ 1) & (UART_XMIT_SIZE
- 1);
193 if(uart_circ_empty(xmit
))
196 } while(--count
> 0);
198 while(UART_GET_FIFO_CNT(port
))
201 if(uart_circ_chars_pending(xmit
) < WAKEUP_CHARS
)
202 uart_write_wakeup(port
);
204 if (uart_circ_empty(xmit
))
205 mux_stop_tx(port
, 0);
209 * mux_read - Read chars from the mux fifo.
210 * @port: Ptr to the uart_port.
212 * This reads all available data from the mux's fifo and pushes
213 * the data to the tty layer.
215 static void mux_read(struct uart_port
*port
)
218 struct tty_struct
*tty
= port
->info
->tty
;
219 __u32 start_count
= port
->icount
.rx
;
222 data
= __raw_readl((unsigned long)port
->membase
223 + IO_DATA_REG_OFFSET
);
225 if (MUX_STATUS(data
))
228 if (MUX_EOFIFO(data
))
231 if (tty
->flip
.count
>= TTY_FLIPBUF_SIZE
)
234 *tty
->flip
.char_buf_ptr
= data
& 0xffu
;
235 *tty
->flip
.flag_buf_ptr
= TTY_NORMAL
;
238 if (MUX_BREAK(data
)) {
240 if(uart_handle_break(port
))
244 if (uart_handle_sysrq_char(port
, data
& 0xffu
, NULL
))
247 tty
->flip
.flag_buf_ptr
++;
248 tty
->flip
.char_buf_ptr
++;
252 if (start_count
!= port
->icount
.rx
) {
253 tty_flip_buffer_push(tty
);
258 * mux_startup - Initialize the port.
259 * @port: Ptr to the uart_port.
261 * Grab any resources needed for this port and start the
264 static int mux_startup(struct uart_port
*port
)
266 mod_timer(&mux_timer
, jiffies
+ MUX_POLL_DELAY
);
271 * mux_shutdown - Disable the port.
272 * @port: Ptr to the uart_port.
274 * Release any resources needed for the port.
276 static void mux_shutdown(struct uart_port
*port
)
281 * mux_set_termios - Chane port parameters.
282 * @port: Ptr to the uart_port.
283 * @termios: new termios settings.
284 * @old: old termios settings.
286 * The Serial Mux does not support this function.
289 mux_set_termios(struct uart_port
*port
, struct termios
*termios
,
295 * mux_type - Describe the port.
296 * @port: Ptr to the uart_port.
298 * Return a pointer to a string constant describing the
301 static const char *mux_type(struct uart_port
*port
)
307 * mux_release_port - Release memory and IO regions.
308 * @port: Ptr to the uart_port.
310 * Release any memory and IO region resources currently in use by
313 static void mux_release_port(struct uart_port
*port
)
318 * mux_request_port - Request memory and IO regions.
319 * @port: Ptr to the uart_port.
321 * Request any memory and IO region resources required by the port.
322 * If any fail, no resources should be registered when this function
323 * returns, and it should return -EBUSY on failure.
325 static int mux_request_port(struct uart_port
*port
)
331 * mux_config_port - Perform port autoconfiguration.
332 * @port: Ptr to the uart_port.
333 * @type: Bitmask of required configurations.
335 * Perform any autoconfiguration steps for the port. This functino is
336 * called if the UPF_BOOT_AUTOCONF flag is specified for the port.
337 * [Note: This is required for now because of a bug in the Serial core.
338 * rmk has already submitted a patch to linus, should be available for
341 static void mux_config_port(struct uart_port
*port
, int type
)
343 port
->type
= PORT_MUX
;
347 * mux_verify_port - Verify the port information.
348 * @port: Ptr to the uart_port.
349 * @ser: Ptr to the serial information.
351 * Verify the new serial port information contained within serinfo is
352 * suitable for this port type.
354 static int mux_verify_port(struct uart_port
*port
, struct serial_struct
*ser
)
356 if(port
->membase
== NULL
)
363 * mux_drv_poll - Mux poll function.
364 * @unused: Unused variable
366 * This function periodically polls the Serial MUX to check for new data.
368 static void mux_poll(unsigned long unused
)
372 for(i
= 0; i
< port_cnt
; ++i
) {
373 if(!mux_ports
[i
].info
)
376 mux_read(&mux_ports
[i
]);
377 mux_write(&mux_ports
[i
]);
380 mod_timer(&mux_timer
, jiffies
+ MUX_POLL_DELAY
);
384 #ifdef CONFIG_SERIAL_MUX_CONSOLE
385 static void mux_console_write(struct console
*co
, const char *s
, unsigned count
)
391 static int mux_console_setup(struct console
*co
, char *options
)
396 struct tty_driver
*mux_console_device(struct console
*co
, int *index
)
399 return mux_driver
.tty_driver
;
402 static struct console mux_console
= {
404 .write
= mux_console_write
,
405 .device
= mux_console_device
,
406 .setup
= mux_console_setup
,
407 .flags
= CON_ENABLED
| CON_PRINTBUFFER
,
411 #define MUX_CONSOLE &mux_console
413 #define MUX_CONSOLE NULL
416 static struct uart_ops mux_pops
= {
417 .tx_empty
= mux_tx_empty
,
418 .set_mctrl
= mux_set_mctrl
,
419 .get_mctrl
= mux_get_mctrl
,
420 .stop_tx
= mux_stop_tx
,
421 .start_tx
= mux_start_tx
,
422 .stop_rx
= mux_stop_rx
,
423 .enable_ms
= mux_enable_ms
,
424 .break_ctl
= mux_break_ctl
,
425 .startup
= mux_startup
,
426 .shutdown
= mux_shutdown
,
427 .set_termios
= mux_set_termios
,
429 .release_port
= mux_release_port
,
430 .request_port
= mux_request_port
,
431 .config_port
= mux_config_port
,
432 .verify_port
= mux_verify_port
,
436 * mux_probe - Determine if the Serial Mux should claim this device.
437 * @dev: The parisc device.
439 * Deterimine if the Serial Mux should claim this chip (return 0)
442 static int __init
mux_probe(struct parisc_device
*dev
)
444 int i
, status
, ports
;
446 unsigned long bytecnt
;
447 struct uart_port
*port
;
449 status
= pdc_iodc_read(&bytecnt
, dev
->hpa
, 0, iodc_data
, 32);
450 if(status
!= PDC_OK
) {
451 printk(KERN_ERR
"Serial mux: Unable to read IODC.\n");
455 ports
= GET_MUX_PORTS(iodc_data
);
456 printk(KERN_INFO
"Serial mux driver (%d ports) Revision: 0.3\n", ports
);
459 mux_driver
.cons
= MUX_CONSOLE
;
461 status
= uart_register_driver(&mux_driver
);
463 printk(KERN_ERR
"Serial mux: Unable to register driver.\n");
467 init_timer(&mux_timer
);
468 mux_timer
.function
= mux_poll
;
471 for(i
= 0; i
< ports
; ++i
, ++port_cnt
) {
472 port
= &mux_ports
[port_cnt
];
474 port
->mapbase
= dev
->hpa
+ MUX_OFFSET
+ (i
* MUX_LINE_OFFSET
);
475 port
->membase
= ioremap(port
->mapbase
, MUX_LINE_OFFSET
);
476 port
->iotype
= SERIAL_IO_MEM
;
477 port
->type
= PORT_MUX
;
478 port
->irq
= SERIAL_IRQ_NONE
;
480 port
->fifosize
= MUX_FIFO_SIZE
;
481 port
->ops
= &mux_pops
;
482 port
->flags
= UPF_BOOT_AUTOCONF
;
483 port
->line
= port_cnt
;
484 status
= uart_add_one_port(&mux_driver
, port
);
488 #ifdef CONFIG_SERIAL_MUX_CONSOLE
489 register_console(&mux_console
);
494 static struct parisc_device_id mux_tbl
[] = {
495 { HPHW_A_DIRECT
, HVERSION_REV_ANY_ID
, HVERSION_ANY_ID
, 0x0000D },
499 MODULE_DEVICE_TABLE(parisc
, mux_tbl
);
501 static struct parisc_driver serial_mux_driver
= {
502 .name
= "Serial MUX",
508 * mux_init - Serial MUX initalization procedure.
510 * Register the Serial MUX driver.
512 static int __init
mux_init(void)
514 return register_parisc_driver(&serial_mux_driver
);
518 * mux_exit - Serial MUX cleanup procedure.
520 * Unregister the Serial MUX driver from the tty layer.
522 static void __exit
mux_exit(void)
526 for (i
= 0; i
< port_cnt
; i
++) {
527 uart_remove_one_port(&mux_driver
, &mux_ports
[i
]);
530 uart_unregister_driver(&mux_driver
);
533 module_init(mux_init
);
534 module_exit(mux_exit
);
536 MODULE_AUTHOR("Ryan Bradetich");
537 MODULE_DESCRIPTION("Serial MUX driver");
538 MODULE_LICENSE("GPL");
539 MODULE_ALIAS_CHARDEV_MAJOR(MUX_MAJOR
);