2 * linux/drivers/char/clps711x.c
4 * Driver for CLPS711x serial ports
6 * Based on drivers/char/serial.c, by Linus Torvalds, Theodore Ts'o.
8 * Copyright 1999 ARM Limited
9 * Copyright (C) 2000 Deep Blue Solutions Ltd.
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.
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.
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
26 #if defined(CONFIG_SERIAL_CLPS711X_CONSOLE) && defined(CONFIG_MAGIC_SYSRQ)
30 #include <linux/module.h>
31 #include <linux/ioport.h>
32 #include <linux/init.h>
33 #include <linux/console.h>
34 #include <linux/sysrq.h>
35 #include <linux/spinlock.h>
36 #include <linux/device.h>
37 #include <linux/tty.h>
38 #include <linux/tty_flip.h>
39 #include <linux/serial_core.h>
40 #include <linux/serial.h>
42 #include <mach/hardware.h>
45 #include <asm/hardware/clps7111.h>
49 #define SERIAL_CLPS711X_MAJOR 204
50 #define SERIAL_CLPS711X_MINOR 40
51 #define SERIAL_CLPS711X_NR UART_NR
54 * We use the relevant SYSCON register as a base address for these ports.
56 #define UBRLCR(port) ((port)->iobase + UBRLCR1 - SYSCON1)
57 #define UARTDR(port) ((port)->iobase + UARTDR1 - SYSCON1)
58 #define SYSFLG(port) ((port)->iobase + SYSFLG1 - SYSCON1)
59 #define SYSCON(port) ((port)->iobase + SYSCON1 - SYSCON1)
61 #define TX_IRQ(port) ((port)->irq)
62 #define RX_IRQ(port) ((port)->irq + 1)
64 #define UART_ANY_ERR (UARTDR_FRMERR | UARTDR_PARERR | UARTDR_OVERR)
66 #define tx_enabled(port) ((port)->unused[0])
68 static void clps711xuart_stop_tx(struct uart_port
*port
)
70 if (tx_enabled(port
)) {
71 disable_irq(TX_IRQ(port
));
76 static void clps711xuart_start_tx(struct uart_port
*port
)
78 if (!tx_enabled(port
)) {
79 enable_irq(TX_IRQ(port
));
84 static void clps711xuart_stop_rx(struct uart_port
*port
)
86 disable_irq(RX_IRQ(port
));
89 static void clps711xuart_enable_ms(struct uart_port
*port
)
93 static irqreturn_t
clps711xuart_int_rx(int irq
, void *dev_id
)
95 struct uart_port
*port
= dev_id
;
96 struct tty_struct
*tty
= port
->info
->port
.tty
;
97 unsigned int status
, ch
, flg
;
99 status
= clps_readl(SYSFLG(port
));
100 while (!(status
& SYSFLG_URXFE
)) {
101 ch
= clps_readl(UARTDR(port
));
108 * Note that the error handling code is
109 * out of the main execution path
111 if (unlikely(ch
& UART_ANY_ERR
)) {
112 if (ch
& UARTDR_PARERR
)
113 port
->icount
.parity
++;
114 else if (ch
& UARTDR_FRMERR
)
115 port
->icount
.frame
++;
116 if (ch
& UARTDR_OVERR
)
117 port
->icount
.overrun
++;
119 ch
&= port
->read_status_mask
;
121 if (ch
& UARTDR_PARERR
)
123 else if (ch
& UARTDR_FRMERR
)
131 if (uart_handle_sysrq_char(port
, ch
))
135 * CHECK: does overrun affect the current character?
136 * ASSUMPTION: it does not.
138 uart_insert_char(port
, ch
, UARTDR_OVERR
, ch
, flg
);
141 status
= clps_readl(SYSFLG(port
));
143 tty_flip_buffer_push(tty
);
147 static irqreturn_t
clps711xuart_int_tx(int irq
, void *dev_id
)
149 struct uart_port
*port
= dev_id
;
150 struct circ_buf
*xmit
= &port
->info
->xmit
;
154 clps_writel(port
->x_char
, UARTDR(port
));
159 if (uart_circ_empty(xmit
) || uart_tx_stopped(port
)) {
160 clps711xuart_stop_tx(port
);
164 count
= port
->fifosize
>> 1;
166 clps_writel(xmit
->buf
[xmit
->tail
], UARTDR(port
));
167 xmit
->tail
= (xmit
->tail
+ 1) & (UART_XMIT_SIZE
- 1);
169 if (uart_circ_empty(xmit
))
171 } while (--count
> 0);
173 if (uart_circ_chars_pending(xmit
) < WAKEUP_CHARS
)
174 uart_write_wakeup(port
);
176 if (uart_circ_empty(xmit
))
177 clps711xuart_stop_tx(port
);
182 static unsigned int clps711xuart_tx_empty(struct uart_port
*port
)
184 unsigned int status
= clps_readl(SYSFLG(port
));
185 return status
& SYSFLG_UBUSY
? 0 : TIOCSER_TEMT
;
188 static unsigned int clps711xuart_get_mctrl(struct uart_port
*port
)
190 unsigned int port_addr
;
191 unsigned int result
= 0;
194 port_addr
= SYSFLG(port
);
195 if (port_addr
== SYSFLG1
) {
196 status
= clps_readl(SYSFLG1
);
197 if (status
& SYSFLG1_DCD
)
199 if (status
& SYSFLG1_DSR
)
201 if (status
& SYSFLG1_CTS
)
209 clps711xuart_set_mctrl_null(struct uart_port
*port
, unsigned int mctrl
)
213 static void clps711xuart_break_ctl(struct uart_port
*port
, int break_state
)
218 spin_lock_irqsave(&port
->lock
, flags
);
219 ubrlcr
= clps_readl(UBRLCR(port
));
220 if (break_state
== -1)
221 ubrlcr
|= UBRLCR_BREAK
;
223 ubrlcr
&= ~UBRLCR_BREAK
;
224 clps_writel(ubrlcr
, UBRLCR(port
));
225 spin_unlock_irqrestore(&port
->lock
, flags
);
228 static int clps711xuart_startup(struct uart_port
*port
)
233 tx_enabled(port
) = 1;
238 retval
= request_irq(TX_IRQ(port
), clps711xuart_int_tx
, 0,
239 "clps711xuart_tx", port
);
243 retval
= request_irq(RX_IRQ(port
), clps711xuart_int_rx
, 0,
244 "clps711xuart_rx", port
);
246 free_irq(TX_IRQ(port
), port
);
253 syscon
= clps_readl(SYSCON(port
));
254 syscon
|= SYSCON_UARTEN
;
255 clps_writel(syscon
, SYSCON(port
));
260 static void clps711xuart_shutdown(struct uart_port
*port
)
262 unsigned int ubrlcr
, syscon
;
267 free_irq(TX_IRQ(port
), port
); /* TX interrupt */
268 free_irq(RX_IRQ(port
), port
); /* RX interrupt */
273 syscon
= clps_readl(SYSCON(port
));
274 syscon
&= ~SYSCON_UARTEN
;
275 clps_writel(syscon
, SYSCON(port
));
278 * disable break condition and fifos
280 ubrlcr
= clps_readl(UBRLCR(port
));
281 ubrlcr
&= ~(UBRLCR_FIFOEN
| UBRLCR_BREAK
);
282 clps_writel(ubrlcr
, UBRLCR(port
));
286 clps711xuart_set_termios(struct uart_port
*port
, struct ktermios
*termios
,
287 struct ktermios
*old
)
289 unsigned int ubrlcr
, baud
, quot
;
293 * We don't implement CREAD.
295 termios
->c_cflag
|= CREAD
;
298 * Ask the core to calculate the divisor for us.
300 baud
= uart_get_baud_rate(port
, termios
, old
, 0, port
->uartclk
/16);
301 quot
= uart_get_divisor(port
, baud
);
303 switch (termios
->c_cflag
& CSIZE
) {
305 ubrlcr
= UBRLCR_WRDLEN5
;
308 ubrlcr
= UBRLCR_WRDLEN6
;
311 ubrlcr
= UBRLCR_WRDLEN7
;
314 ubrlcr
= UBRLCR_WRDLEN8
;
317 if (termios
->c_cflag
& CSTOPB
)
318 ubrlcr
|= UBRLCR_XSTOP
;
319 if (termios
->c_cflag
& PARENB
) {
320 ubrlcr
|= UBRLCR_PRTEN
;
321 if (!(termios
->c_cflag
& PARODD
))
322 ubrlcr
|= UBRLCR_EVENPRT
;
324 if (port
->fifosize
> 1)
325 ubrlcr
|= UBRLCR_FIFOEN
;
327 spin_lock_irqsave(&port
->lock
, flags
);
330 * Update the per-port timeout.
332 uart_update_timeout(port
, termios
->c_cflag
, baud
);
334 port
->read_status_mask
= UARTDR_OVERR
;
335 if (termios
->c_iflag
& INPCK
)
336 port
->read_status_mask
|= UARTDR_PARERR
| UARTDR_FRMERR
;
339 * Characters to ignore
341 port
->ignore_status_mask
= 0;
342 if (termios
->c_iflag
& IGNPAR
)
343 port
->ignore_status_mask
|= UARTDR_FRMERR
| UARTDR_PARERR
;
344 if (termios
->c_iflag
& IGNBRK
) {
346 * If we're ignoring parity and break indicators,
347 * ignore overruns to (for real raw support).
349 if (termios
->c_iflag
& IGNPAR
)
350 port
->ignore_status_mask
|= UARTDR_OVERR
;
355 clps_writel(ubrlcr
| quot
, UBRLCR(port
));
357 spin_unlock_irqrestore(&port
->lock
, flags
);
360 static const char *clps711xuart_type(struct uart_port
*port
)
362 return port
->type
== PORT_CLPS711X
? "CLPS711x" : NULL
;
366 * Configure/autoconfigure the port.
368 static void clps711xuart_config_port(struct uart_port
*port
, int flags
)
370 if (flags
& UART_CONFIG_TYPE
)
371 port
->type
= PORT_CLPS711X
;
374 static void clps711xuart_release_port(struct uart_port
*port
)
378 static int clps711xuart_request_port(struct uart_port
*port
)
383 static struct uart_ops clps711x_pops
= {
384 .tx_empty
= clps711xuart_tx_empty
,
385 .set_mctrl
= clps711xuart_set_mctrl_null
,
386 .get_mctrl
= clps711xuart_get_mctrl
,
387 .stop_tx
= clps711xuart_stop_tx
,
388 .start_tx
= clps711xuart_start_tx
,
389 .stop_rx
= clps711xuart_stop_rx
,
390 .enable_ms
= clps711xuart_enable_ms
,
391 .break_ctl
= clps711xuart_break_ctl
,
392 .startup
= clps711xuart_startup
,
393 .shutdown
= clps711xuart_shutdown
,
394 .set_termios
= clps711xuart_set_termios
,
395 .type
= clps711xuart_type
,
396 .config_port
= clps711xuart_config_port
,
397 .release_port
= clps711xuart_release_port
,
398 .request_port
= clps711xuart_request_port
,
401 static struct uart_port clps711x_ports
[UART_NR
] = {
404 .irq
= IRQ_UTXINT1
, /* IRQ_URXINT1, IRQ_UMSINT */
407 .ops
= &clps711x_pops
,
409 .flags
= UPF_BOOT_AUTOCONF
,
413 .irq
= IRQ_UTXINT2
, /* IRQ_URXINT2 */
416 .ops
= &clps711x_pops
,
418 .flags
= UPF_BOOT_AUTOCONF
,
422 #ifdef CONFIG_SERIAL_CLPS711X_CONSOLE
423 static void clps711xuart_console_putchar(struct uart_port
*port
, int ch
)
425 while (clps_readl(SYSFLG(port
)) & SYSFLG_UTXFF
)
427 clps_writel(ch
, UARTDR(port
));
431 * Print a string to the serial port trying not to disturb
432 * any possible real use of the port...
434 * The console_lock must be held when we get here.
436 * Note that this is called with interrupts already disabled
439 clps711xuart_console_write(struct console
*co
, const char *s
,
442 struct uart_port
*port
= clps711x_ports
+ co
->index
;
443 unsigned int status
, syscon
;
446 * Ensure that the port is enabled.
448 syscon
= clps_readl(SYSCON(port
));
449 clps_writel(syscon
| SYSCON_UARTEN
, SYSCON(port
));
451 uart_console_write(port
, s
, count
, clps711xuart_console_putchar
);
454 * Finally, wait for transmitter to become empty
455 * and restore the uart state.
458 status
= clps_readl(SYSFLG(port
));
459 } while (status
& SYSFLG_UBUSY
);
461 clps_writel(syscon
, SYSCON(port
));
465 clps711xuart_console_get_options(struct uart_port
*port
, int *baud
,
466 int *parity
, int *bits
)
468 if (clps_readl(SYSCON(port
)) & SYSCON_UARTEN
) {
469 unsigned int ubrlcr
, quot
;
471 ubrlcr
= clps_readl(UBRLCR(port
));
474 if (ubrlcr
& UBRLCR_PRTEN
) {
475 if (ubrlcr
& UBRLCR_EVENPRT
)
481 if ((ubrlcr
& UBRLCR_WRDLEN_MASK
) == UBRLCR_WRDLEN7
)
486 quot
= ubrlcr
& UBRLCR_BAUD_MASK
;
487 *baud
= port
->uartclk
/ (16 * (quot
+ 1));
491 static int __init
clps711xuart_console_setup(struct console
*co
, char *options
)
493 struct uart_port
*port
;
500 * Check whether an invalid uart number has been specified, and
501 * if so, search for the first available port that does have
504 port
= uart_get_console(clps711x_ports
, UART_NR
, co
);
507 uart_parse_options(options
, &baud
, &parity
, &bits
, &flow
);
509 clps711xuart_console_get_options(port
, &baud
, &parity
, &bits
);
511 return uart_set_options(port
, co
, baud
, parity
, bits
, flow
);
514 static struct uart_driver clps711x_reg
;
515 static struct console clps711x_console
= {
517 .write
= clps711xuart_console_write
,
518 .device
= uart_console_device
,
519 .setup
= clps711xuart_console_setup
,
520 .flags
= CON_PRINTBUFFER
,
522 .data
= &clps711x_reg
,
525 static int __init
clps711xuart_console_init(void)
527 register_console(&clps711x_console
);
530 console_initcall(clps711xuart_console_init
);
532 #define CLPS711X_CONSOLE &clps711x_console
534 #define CLPS711X_CONSOLE NULL
537 static struct uart_driver clps711x_reg
= {
538 .driver_name
= "ttyCL",
540 .major
= SERIAL_CLPS711X_MAJOR
,
541 .minor
= SERIAL_CLPS711X_MINOR
,
544 .cons
= CLPS711X_CONSOLE
,
547 static int __init
clps711xuart_init(void)
551 printk(KERN_INFO
"Serial: CLPS711x driver\n");
553 ret
= uart_register_driver(&clps711x_reg
);
557 for (i
= 0; i
< UART_NR
; i
++)
558 uart_add_one_port(&clps711x_reg
, &clps711x_ports
[i
]);
563 static void __exit
clps711xuart_exit(void)
567 for (i
= 0; i
< UART_NR
; i
++)
568 uart_remove_one_port(&clps711x_reg
, &clps711x_ports
[i
]);
570 uart_unregister_driver(&clps711x_reg
);
573 module_init(clps711xuart_init
);
574 module_exit(clps711xuart_exit
);
576 MODULE_AUTHOR("Deep Blue Solutions Ltd");
577 MODULE_DESCRIPTION("CLPS-711x generic serial driver");
578 MODULE_LICENSE("GPL");
579 MODULE_ALIAS_CHARDEV(SERIAL_CLPS711X_MAJOR
, SERIAL_CLPS711X_MINOR
);