blob: f21faf163955b517cd787555ae309936b1c5c596 [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>
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/slab.h>
26#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
Ryan Bradetich9c6416c2006-11-03 06:34:16 +000069struct mux_card {
70 int port_count;
71 struct parisc_device *dev;
72 struct mux_card *next;
73};
74
75static struct mux_card *mux_card_head;
Linus Torvalds1da177e2005-04-16 15:20:36 -070076static struct timer_list mux_timer;
77
Ryan Bradetich92495c02005-11-17 16:36:52 -050078#define UART_PUT_CHAR(p, c) __raw_writel((c), (p)->membase + IO_DATA_REG_OFFSET)
79#define UART_GET_FIFO_CNT(p) __raw_readl((p)->membase + IO_DCOUNT_REG_OFFSET)
Linus Torvalds1da177e2005-04-16 15:20:36 -070080#define GET_MUX_PORTS(iodc_data) ((((iodc_data)[4] & 0xf0) >> 4) * 8) + 8
81
82/**
83 * mux_tx_empty - Check if the transmitter fifo is empty.
84 * @port: Ptr to the uart_port.
85 *
86 * This function test if the transmitter fifo for the port
87 * described by 'port' is empty. If it is empty, this function
88 * should return TIOCSER_TEMT, otherwise return 0.
89 */
90static unsigned int mux_tx_empty(struct uart_port *port)
91{
Ryan Bradetich92495c02005-11-17 16:36:52 -050092 return UART_GET_FIFO_CNT(port) ? 0 : TIOCSER_TEMT;
Linus Torvalds1da177e2005-04-16 15:20:36 -070093}
94
95/**
96 * mux_set_mctrl - Set the current state of the modem control inputs.
97 * @ports: Ptr to the uart_port.
98 * @mctrl: Modem control bits.
99 *
100 * The Serial MUX does not support CTS, DCD or DSR so this function
101 * is ignored.
102 */
103static void mux_set_mctrl(struct uart_port *port, unsigned int mctrl)
104{
105}
106
107/**
108 * mux_get_mctrl - Returns the current state of modem control inputs.
109 * @port: Ptr to the uart_port.
110 *
111 * The Serial MUX does not support CTS, DCD or DSR so these lines are
112 * treated as permanently active.
113 */
114static unsigned int mux_get_mctrl(struct uart_port *port)
115{
116 return TIOCM_CAR | TIOCM_DSR | TIOCM_CTS;
117}
118
119/**
120 * mux_stop_tx - Stop transmitting characters.
121 * @port: Ptr to the uart_port.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122 *
123 * The Serial MUX does not support this function.
124 */
Russell Kingb129a8c2005-08-31 10:12:14 +0100125static void mux_stop_tx(struct uart_port *port)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126{
127}
128
129/**
130 * mux_start_tx - Start transmitting characters.
131 * @port: Ptr to the uart_port.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132 *
133 * The Serial Mux does not support this function.
134 */
Russell Kingb129a8c2005-08-31 10:12:14 +0100135static void mux_start_tx(struct uart_port *port)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136{
137}
138
139/**
140 * mux_stop_rx - Stop receiving characters.
141 * @port: Ptr to the uart_port.
142 *
143 * The Serial Mux does not support this function.
144 */
145static void mux_stop_rx(struct uart_port *port)
146{
147}
148
149/**
150 * mux_enable_ms - Enable modum status interrupts.
151 * @port: Ptr to the uart_port.
152 *
153 * The Serial Mux does not support this function.
154 */
155static void mux_enable_ms(struct uart_port *port)
156{
157}
158
159/**
160 * mux_break_ctl - Control the transmitssion of a break signal.
161 * @port: Ptr to the uart_port.
162 * @break_state: Raise/Lower the break signal.
163 *
164 * The Serial Mux does not support this function.
165 */
166static void mux_break_ctl(struct uart_port *port, int break_state)
167{
168}
169
170/**
171 * mux_write - Write chars to the mux fifo.
172 * @port: Ptr to the uart_port.
173 *
174 * This function writes all the data from the uart buffer to
175 * the mux fifo.
176 */
177static void mux_write(struct uart_port *port)
178{
179 int count;
180 struct circ_buf *xmit = &port->info->xmit;
181
182 if(port->x_char) {
183 UART_PUT_CHAR(port, port->x_char);
184 port->icount.tx++;
185 port->x_char = 0;
186 return;
187 }
188
189 if(uart_circ_empty(xmit) || uart_tx_stopped(port)) {
Russell Kingb129a8c2005-08-31 10:12:14 +0100190 mux_stop_tx(port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191 return;
192 }
193
194 count = (port->fifosize) - UART_GET_FIFO_CNT(port);
195 do {
196 UART_PUT_CHAR(port, xmit->buf[xmit->tail]);
197 xmit->tail = (xmit->tail + 1) & (UART_XMIT_SIZE - 1);
198 port->icount.tx++;
199 if(uart_circ_empty(xmit))
200 break;
201
202 } while(--count > 0);
203
204 while(UART_GET_FIFO_CNT(port))
205 udelay(1);
206
207 if(uart_circ_chars_pending(xmit) < WAKEUP_CHARS)
208 uart_write_wakeup(port);
209
210 if (uart_circ_empty(xmit))
Russell Kingb129a8c2005-08-31 10:12:14 +0100211 mux_stop_tx(port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212}
213
214/**
215 * mux_read - Read chars from the mux fifo.
216 * @port: Ptr to the uart_port.
217 *
218 * This reads all available data from the mux's fifo and pushes
219 * the data to the tty layer.
220 */
221static void mux_read(struct uart_port *port)
222{
223 int data;
224 struct tty_struct *tty = port->info->tty;
225 __u32 start_count = port->icount.rx;
226
227 while(1) {
Ryan Bradetich92495c02005-11-17 16:36:52 -0500228 data = __raw_readl(port->membase + IO_DATA_REG_OFFSET);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229
230 if (MUX_STATUS(data))
231 continue;
232
233 if (MUX_EOFIFO(data))
234 break;
235
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236 port->icount.rx++;
237
238 if (MUX_BREAK(data)) {
239 port->icount.brk++;
240 if(uart_handle_break(port))
241 continue;
242 }
243
Matthew Wilcoxbe577a52006-10-06 20:47:23 -0600244 if (uart_handle_sysrq_char(port, data & 0xffu))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245 continue;
246
Alan Cox33f0f882006-01-09 20:54:13 -0800247 tty_insert_flip_char(tty, data & 0xFF, TTY_NORMAL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248 }
249
250 if (start_count != port->icount.rx) {
251 tty_flip_buffer_push(tty);
252 }
253}
254
255/**
256 * mux_startup - Initialize the port.
257 * @port: Ptr to the uart_port.
258 *
259 * Grab any resources needed for this port and start the
260 * mux timer.
261 */
262static int mux_startup(struct uart_port *port)
263{
Ryan Bradetich4bd5d822006-11-03 05:38:39 +0000264 mux_ports[port->line].enabled = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265 return 0;
266}
267
268/**
269 * mux_shutdown - Disable the port.
270 * @port: Ptr to the uart_port.
271 *
272 * Release any resources needed for the port.
273 */
274static void mux_shutdown(struct uart_port *port)
275{
Ryan Bradetich4bd5d822006-11-03 05:38:39 +0000276 mux_ports[port->line].enabled = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700277}
278
279/**
280 * mux_set_termios - Chane port parameters.
281 * @port: Ptr to the uart_port.
282 * @termios: new termios settings.
283 * @old: old termios settings.
284 *
285 * The Serial Mux does not support this function.
286 */
287static void
288mux_set_termios(struct uart_port *port, struct termios *termios,
289 struct termios *old)
290{
291}
292
293/**
294 * mux_type - Describe the port.
295 * @port: Ptr to the uart_port.
296 *
297 * Return a pointer to a string constant describing the
298 * specified port.
299 */
300static const char *mux_type(struct uart_port *port)
301{
302 return "Mux";
303}
304
305/**
306 * mux_release_port - Release memory and IO regions.
307 * @port: Ptr to the uart_port.
308 *
309 * Release any memory and IO region resources currently in use by
310 * the port.
311 */
312static void mux_release_port(struct uart_port *port)
313{
314}
315
316/**
317 * mux_request_port - Request memory and IO regions.
318 * @port: Ptr to the uart_port.
319 *
320 * Request any memory and IO region resources required by the port.
321 * If any fail, no resources should be registered when this function
322 * returns, and it should return -EBUSY on failure.
323 */
324static int mux_request_port(struct uart_port *port)
325{
326 return 0;
327}
328
329/**
330 * mux_config_port - Perform port autoconfiguration.
331 * @port: Ptr to the uart_port.
332 * @type: Bitmask of required configurations.
333 *
Ryan Bradetich4bd5d822006-11-03 05:38:39 +0000334 * Perform any autoconfiguration steps for the port. This function is
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335 * called if the UPF_BOOT_AUTOCONF flag is specified for the port.
336 * [Note: This is required for now because of a bug in the Serial core.
337 * rmk has already submitted a patch to linus, should be available for
338 * 2.5.47.]
339 */
340static void mux_config_port(struct uart_port *port, int type)
341{
342 port->type = PORT_MUX;
343}
344
345/**
346 * mux_verify_port - Verify the port information.
347 * @port: Ptr to the uart_port.
348 * @ser: Ptr to the serial information.
349 *
350 * Verify the new serial port information contained within serinfo is
351 * suitable for this port type.
352 */
353static int mux_verify_port(struct uart_port *port, struct serial_struct *ser)
354{
355 if(port->membase == NULL)
356 return -EINVAL;
357
358 return 0;
359}
360
361/**
362 * mux_drv_poll - Mux poll function.
363 * @unused: Unused variable
364 *
365 * This function periodically polls the Serial MUX to check for new data.
366 */
367static void mux_poll(unsigned long unused)
368{
369 int i;
370
371 for(i = 0; i < port_cnt; ++i) {
Ryan Bradetich4bd5d822006-11-03 05:38:39 +0000372 if(!mux_ports[i].enabled)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700373 continue;
374
Ryan Bradetich4bd5d822006-11-03 05:38:39 +0000375 mux_read(&mux_ports[i].port);
376 mux_write(&mux_ports[i].port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377 }
378
379 mod_timer(&mux_timer, jiffies + MUX_POLL_DELAY);
380}
381
382
383#ifdef CONFIG_SERIAL_MUX_CONSOLE
384static void mux_console_write(struct console *co, const char *s, unsigned count)
385{
Ryan Bradetich3de7b642006-11-03 05:52:41 +0000386 /* Wait until the FIFO drains. */
387 while(UART_GET_FIFO_CNT(&mux_ports[0].port))
388 udelay(1);
389
390 while(count--) {
391 if(*s == '\n') {
392 UART_PUT_CHAR(&mux_ports[0].port, '\r');
393 }
394 UART_PUT_CHAR(&mux_ports[0].port, *s++);
395 }
396
Linus Torvalds1da177e2005-04-16 15:20:36 -0700397}
398
399static int mux_console_setup(struct console *co, char *options)
400{
401 return 0;
402}
403
404struct tty_driver *mux_console_device(struct console *co, int *index)
405{
406 *index = co->index;
407 return mux_driver.tty_driver;
408}
409
410static struct console mux_console = {
411 .name = "ttyB",
412 .write = mux_console_write,
413 .device = mux_console_device,
414 .setup = mux_console_setup,
415 .flags = CON_ENABLED | CON_PRINTBUFFER,
416 .index = 0,
417};
418
419#define MUX_CONSOLE &mux_console
420#else
421#define MUX_CONSOLE NULL
422#endif
423
424static struct uart_ops mux_pops = {
425 .tx_empty = mux_tx_empty,
426 .set_mctrl = mux_set_mctrl,
427 .get_mctrl = mux_get_mctrl,
428 .stop_tx = mux_stop_tx,
429 .start_tx = mux_start_tx,
430 .stop_rx = mux_stop_rx,
431 .enable_ms = mux_enable_ms,
432 .break_ctl = mux_break_ctl,
433 .startup = mux_startup,
434 .shutdown = mux_shutdown,
435 .set_termios = mux_set_termios,
436 .type = mux_type,
437 .release_port = mux_release_port,
438 .request_port = mux_request_port,
439 .config_port = mux_config_port,
440 .verify_port = mux_verify_port,
441};
442
443/**
Ryan Bradetich9c6416c2006-11-03 06:34:16 +0000444 * get_new_mux_card - Allocate and return a new mux card.
445 *
446 * This function is used to allocate and return a new mux card.
447 */
448static struct mux_card * __init get_new_mux_card(void)
449{
450 struct mux_card *card = mux_card_head;
451
452 if(card == NULL) {
453 mux_card_head = kzalloc(sizeof(struct mux_card), GFP_KERNEL);
454 if(!mux_card_head) {
455 printk(KERN_ERR "MUX: Unable to allocate memory.\n");
456 return NULL;
457 }
458 return mux_card_head;
459 }
460
461 while(card->next) {
462 card = card->next;
463 }
464
465 card->next = kzalloc(sizeof(struct mux_card), GFP_KERNEL);
466 if(!card->next) {
467 printk(KERN_ERR "MUX: Unable to allocate memory.\n");
468 return NULL;
469 }
470
471 return card->next;
472}
473
474/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700475 * mux_probe - Determine if the Serial Mux should claim this device.
476 * @dev: The parisc device.
477 *
478 * Deterimine if the Serial Mux should claim this chip (return 0)
479 * or not (return 1).
480 */
481static int __init mux_probe(struct parisc_device *dev)
482{
483 int i, status, ports;
484 u8 iodc_data[32];
485 unsigned long bytecnt;
486 struct uart_port *port;
Ryan Bradetich9c6416c2006-11-03 06:34:16 +0000487 struct mux_card *card;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700488
Matthew Wilcox53f01bb2005-10-21 22:36:40 -0400489 status = pdc_iodc_read(&bytecnt, dev->hpa.start, 0, iodc_data, 32);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700490 if(status != PDC_OK) {
491 printk(KERN_ERR "Serial mux: Unable to read IODC.\n");
492 return 1;
493 }
494
495 ports = GET_MUX_PORTS(iodc_data);
Ryan Bradetich9c6416c2006-11-03 06:34:16 +0000496 printk(KERN_INFO "Serial mux driver (%d ports) Revision: 0.4\n", ports);
497
498 card = get_new_mux_card();
499 if(card == NULL)
500 return 1;
501
502 card->dev = dev;
503 card->port_count = ports;
504 request_mem_region(card->dev->hpa.start + MUX_OFFSET,
505 card->port_count * MUX_LINE_OFFSET, "Mux");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700506
507 if(!port_cnt) {
508 mux_driver.cons = MUX_CONSOLE;
509
510 status = uart_register_driver(&mux_driver);
511 if(status) {
512 printk(KERN_ERR "Serial mux: Unable to register driver.\n");
513 return 1;
514 }
515
516 init_timer(&mux_timer);
517 mux_timer.function = mux_poll;
518 }
519
520 for(i = 0; i < ports; ++i, ++port_cnt) {
Ryan Bradetich4bd5d822006-11-03 05:38:39 +0000521 port = &mux_ports[port_cnt].port;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700522 port->iobase = 0;
Matthew Wilcoxae8c75c2005-10-21 22:58:03 -0400523 port->mapbase = dev->hpa.start + MUX_OFFSET +
524 (i * MUX_LINE_OFFSET);
Helge Deller5076c152006-03-27 12:52:15 -0700525 port->membase = ioremap_nocache(port->mapbase, MUX_LINE_OFFSET);
Russell King9b4a1612006-02-05 10:48:10 +0000526 port->iotype = UPIO_MEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700527 port->type = PORT_MUX;
Matthew Wilcoxae8c75c2005-10-21 22:58:03 -0400528 port->irq = NO_IRQ;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700529 port->uartclk = 0;
530 port->fifosize = MUX_FIFO_SIZE;
531 port->ops = &mux_pops;
532 port->flags = UPF_BOOT_AUTOCONF;
533 port->line = port_cnt;
Ryan Bradeticha137ce852005-11-17 16:38:28 -0500534
535 /* The port->timeout needs to match what is present in
536 * uart_wait_until_sent in serial_core.c. Otherwise
537 * the time spent in msleep_interruptable will be very
538 * long, causing the appearance of a console hang.
539 */
540 port->timeout = HZ / 50;
Matthew Wilcoxae8c75c2005-10-21 22:58:03 -0400541 spin_lock_init(&port->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700542 status = uart_add_one_port(&mux_driver, port);
543 BUG_ON(status);
544 }
545
546#ifdef CONFIG_SERIAL_MUX_CONSOLE
547 register_console(&mux_console);
548#endif
Ryan Bradetich4bd5d822006-11-03 05:38:39 +0000549 mod_timer(&mux_timer, jiffies + MUX_POLL_DELAY);
550
Linus Torvalds1da177e2005-04-16 15:20:36 -0700551 return 0;
552}
553
554static struct parisc_device_id mux_tbl[] = {
555 { HPHW_A_DIRECT, HVERSION_REV_ANY_ID, HVERSION_ANY_ID, 0x0000D },
556 { 0, }
557};
558
559MODULE_DEVICE_TABLE(parisc, mux_tbl);
560
561static struct parisc_driver serial_mux_driver = {
Matthew Wilcoxbdad1f82005-10-21 22:36:23 -0400562 .name = "serial_mux",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700563 .id_table = mux_tbl,
564 .probe = mux_probe,
565};
566
567/**
568 * mux_init - Serial MUX initalization procedure.
569 *
570 * Register the Serial MUX driver.
571 */
572static int __init mux_init(void)
573{
574 return register_parisc_driver(&serial_mux_driver);
575}
576
577/**
578 * mux_exit - Serial MUX cleanup procedure.
579 *
580 * Unregister the Serial MUX driver from the tty layer.
581 */
582static void __exit mux_exit(void)
583{
584 int i;
Ryan Bradetich9c6416c2006-11-03 06:34:16 +0000585 struct mux_card *next;
586 struct mux_card *card = mux_card_head;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700587
588 for (i = 0; i < port_cnt; i++) {
Ryan Bradetich4bd5d822006-11-03 05:38:39 +0000589 uart_remove_one_port(&mux_driver, &mux_ports[i].port);
590 if (mux_ports[i].port.membase)
591 iounmap(mux_ports[i].port.membase);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700592 }
593
Ryan Bradetich9c6416c2006-11-03 06:34:16 +0000594 while(card != NULL) {
595 release_mem_region(card->dev->hpa.start + MUX_OFFSET,
596 card->port_count * MUX_LINE_OFFSET);
597
598 next = card->next;
599 kfree(card);
600 card = next;
601 }
602
Linus Torvalds1da177e2005-04-16 15:20:36 -0700603 uart_unregister_driver(&mux_driver);
604}
605
606module_init(mux_init);
607module_exit(mux_exit);
608
609MODULE_AUTHOR("Ryan Bradetich");
610MODULE_DESCRIPTION("Serial MUX driver");
611MODULE_LICENSE("GPL");
612MODULE_ALIAS_CHARDEV_MAJOR(MUX_MAJOR);