2 * Driver for the serial port on the 21285 StrongArm-110 core logic chip.
4 * Based on drivers/char/serial.c
6 #include <linux/module.h>
8 #include <linux/ioport.h>
9 #include <linux/init.h>
10 #include <linux/console.h>
11 #include <linux/device.h>
12 #include <linux/tty_flip.h>
13 #include <linux/serial_core.h>
14 #include <linux/serial.h>
18 #include <asm/mach-types.h>
19 #include <asm/hardware/dec21285.h>
20 #include <mach/hardware.h>
22 #define BAUD_BASE (mem_fclk_21285/64)
24 #define SERIAL_21285_NAME "ttyFB"
25 #define SERIAL_21285_MAJOR 204
26 #define SERIAL_21285_MINOR 4
28 #define RXSTAT_DUMMY_READ 0x80000000
29 #define RXSTAT_FRAME (1 << 0)
30 #define RXSTAT_PARITY (1 << 1)
31 #define RXSTAT_OVERRUN (1 << 2)
32 #define RXSTAT_ANYERR (RXSTAT_FRAME|RXSTAT_PARITY|RXSTAT_OVERRUN)
34 #define H_UBRLCR_BREAK (1 << 0)
35 #define H_UBRLCR_PARENB (1 << 1)
36 #define H_UBRLCR_PAREVN (1 << 2)
37 #define H_UBRLCR_STOPB (1 << 3)
38 #define H_UBRLCR_FIFO (1 << 4)
40 static const char serial21285_name
[] = "Footbridge UART";
42 #define tx_enabled(port) ((port)->unused[0])
43 #define rx_enabled(port) ((port)->unused[1])
46 * The documented expression for selecting the divisor is:
47 * BAUD_BASE / baud - 1
48 * However, typically BAUD_BASE is not divisible by baud, so
49 * we want to select the divisor that gives us the minimum
50 * error. Therefore, we want:
51 * int(BAUD_BASE / baud - 0.5) ->
52 * int(BAUD_BASE / baud - (baud >> 1) / baud) ->
53 * int((BAUD_BASE - (baud >> 1)) / baud)
56 static void serial21285_stop_tx(struct uart_port
*port
)
58 if (tx_enabled(port
)) {
59 disable_irq_nosync(IRQ_CONTX
);
64 static void serial21285_start_tx(struct uart_port
*port
)
66 if (!tx_enabled(port
)) {
67 enable_irq(IRQ_CONTX
);
72 static void serial21285_stop_rx(struct uart_port
*port
)
74 if (rx_enabled(port
)) {
75 disable_irq_nosync(IRQ_CONRX
);
80 static void serial21285_enable_ms(struct uart_port
*port
)
84 static irqreturn_t
serial21285_rx_chars(int irq
, void *dev_id
)
86 struct uart_port
*port
= dev_id
;
87 struct tty_struct
*tty
= port
->state
->port
.tty
;
88 unsigned int status
, ch
, flag
, rxs
, max_count
= 256;
90 status
= *CSR_UARTFLG
;
91 while (!(status
& 0x10) && max_count
--) {
96 rxs
= *CSR_RXSTAT
| RXSTAT_DUMMY_READ
;
97 if (unlikely(rxs
& RXSTAT_ANYERR
)) {
98 if (rxs
& RXSTAT_PARITY
)
99 port
->icount
.parity
++;
100 else if (rxs
& RXSTAT_FRAME
)
101 port
->icount
.frame
++;
102 if (rxs
& RXSTAT_OVERRUN
)
103 port
->icount
.overrun
++;
105 rxs
&= port
->read_status_mask
;
107 if (rxs
& RXSTAT_PARITY
)
109 else if (rxs
& RXSTAT_FRAME
)
113 uart_insert_char(port
, rxs
, RXSTAT_OVERRUN
, ch
, flag
);
115 status
= *CSR_UARTFLG
;
117 tty_flip_buffer_push(tty
);
122 static irqreturn_t
serial21285_tx_chars(int irq
, void *dev_id
)
124 struct uart_port
*port
= dev_id
;
125 struct circ_buf
*xmit
= &port
->state
->xmit
;
129 *CSR_UARTDR
= port
->x_char
;
134 if (uart_circ_empty(xmit
) || uart_tx_stopped(port
)) {
135 serial21285_stop_tx(port
);
140 *CSR_UARTDR
= xmit
->buf
[xmit
->tail
];
141 xmit
->tail
= (xmit
->tail
+ 1) & (UART_XMIT_SIZE
- 1);
143 if (uart_circ_empty(xmit
))
145 } while (--count
> 0 && !(*CSR_UARTFLG
& 0x20));
147 if (uart_circ_chars_pending(xmit
) < WAKEUP_CHARS
)
148 uart_write_wakeup(port
);
150 if (uart_circ_empty(xmit
))
151 serial21285_stop_tx(port
);
157 static unsigned int serial21285_tx_empty(struct uart_port
*port
)
159 return (*CSR_UARTFLG
& 8) ? 0 : TIOCSER_TEMT
;
162 /* no modem control lines */
163 static unsigned int serial21285_get_mctrl(struct uart_port
*port
)
165 return TIOCM_CAR
| TIOCM_DSR
| TIOCM_CTS
;
168 static void serial21285_set_mctrl(struct uart_port
*port
, unsigned int mctrl
)
172 static void serial21285_break_ctl(struct uart_port
*port
, int break_state
)
177 spin_lock_irqsave(&port
->lock
, flags
);
178 h_lcr
= *CSR_H_UBRLCR
;
180 h_lcr
|= H_UBRLCR_BREAK
;
182 h_lcr
&= ~H_UBRLCR_BREAK
;
183 *CSR_H_UBRLCR
= h_lcr
;
184 spin_unlock_irqrestore(&port
->lock
, flags
);
187 static int serial21285_startup(struct uart_port
*port
)
191 tx_enabled(port
) = 1;
192 rx_enabled(port
) = 1;
194 ret
= request_irq(IRQ_CONRX
, serial21285_rx_chars
, 0,
195 serial21285_name
, port
);
197 ret
= request_irq(IRQ_CONTX
, serial21285_tx_chars
, 0,
198 serial21285_name
, port
);
200 free_irq(IRQ_CONRX
, port
);
206 static void serial21285_shutdown(struct uart_port
*port
)
208 free_irq(IRQ_CONTX
, port
);
209 free_irq(IRQ_CONRX
, port
);
213 serial21285_set_termios(struct uart_port
*port
, struct ktermios
*termios
,
214 struct ktermios
*old
)
217 unsigned int baud
, quot
, h_lcr
, b
;
220 * We don't support modem control lines.
222 termios
->c_cflag
&= ~(HUPCL
| CRTSCTS
| CMSPAR
);
223 termios
->c_cflag
|= CLOCAL
;
226 * We don't support BREAK character recognition.
228 termios
->c_iflag
&= ~(IGNBRK
| BRKINT
);
231 * Ask the core to calculate the divisor for us.
233 baud
= uart_get_baud_rate(port
, termios
, old
, 0, port
->uartclk
/16);
234 quot
= uart_get_divisor(port
, baud
);
235 b
= port
->uartclk
/ (16 * quot
);
236 tty_termios_encode_baud_rate(termios
, b
, b
);
238 switch (termios
->c_cflag
& CSIZE
) {
253 if (termios
->c_cflag
& CSTOPB
)
254 h_lcr
|= H_UBRLCR_STOPB
;
255 if (termios
->c_cflag
& PARENB
) {
256 h_lcr
|= H_UBRLCR_PARENB
;
257 if (!(termios
->c_cflag
& PARODD
))
258 h_lcr
|= H_UBRLCR_PAREVN
;
262 h_lcr
|= H_UBRLCR_FIFO
;
264 spin_lock_irqsave(&port
->lock
, flags
);
267 * Update the per-port timeout.
269 uart_update_timeout(port
, termios
->c_cflag
, baud
);
272 * Which character status flags are we interested in?
274 port
->read_status_mask
= RXSTAT_OVERRUN
;
275 if (termios
->c_iflag
& INPCK
)
276 port
->read_status_mask
|= RXSTAT_FRAME
| RXSTAT_PARITY
;
279 * Which character status flags should we ignore?
281 port
->ignore_status_mask
= 0;
282 if (termios
->c_iflag
& IGNPAR
)
283 port
->ignore_status_mask
|= RXSTAT_FRAME
| RXSTAT_PARITY
;
284 if (termios
->c_iflag
& IGNBRK
&& termios
->c_iflag
& IGNPAR
)
285 port
->ignore_status_mask
|= RXSTAT_OVERRUN
;
288 * Ignore all characters if CREAD is not set.
290 if ((termios
->c_cflag
& CREAD
) == 0)
291 port
->ignore_status_mask
|= RXSTAT_DUMMY_READ
;
296 *CSR_L_UBRLCR
= quot
& 0xff;
297 *CSR_M_UBRLCR
= (quot
>> 8) & 0x0f;
298 *CSR_H_UBRLCR
= h_lcr
;
301 spin_unlock_irqrestore(&port
->lock
, flags
);
304 static const char *serial21285_type(struct uart_port
*port
)
306 return port
->type
== PORT_21285
? "DC21285" : NULL
;
309 static void serial21285_release_port(struct uart_port
*port
)
311 release_mem_region(port
->mapbase
, 32);
314 static int serial21285_request_port(struct uart_port
*port
)
316 return request_mem_region(port
->mapbase
, 32, serial21285_name
)
317 != NULL
? 0 : -EBUSY
;
320 static void serial21285_config_port(struct uart_port
*port
, int flags
)
322 if (flags
& UART_CONFIG_TYPE
&& serial21285_request_port(port
) == 0)
323 port
->type
= PORT_21285
;
327 * verify the new serial_struct (for TIOCSSERIAL).
329 static int serial21285_verify_port(struct uart_port
*port
, struct serial_struct
*ser
)
332 if (ser
->type
!= PORT_UNKNOWN
&& ser
->type
!= PORT_21285
)
334 if (ser
->irq
!= NO_IRQ
)
336 if (ser
->baud_base
!= port
->uartclk
/ 16)
341 static struct uart_ops serial21285_ops
= {
342 .tx_empty
= serial21285_tx_empty
,
343 .get_mctrl
= serial21285_get_mctrl
,
344 .set_mctrl
= serial21285_set_mctrl
,
345 .stop_tx
= serial21285_stop_tx
,
346 .start_tx
= serial21285_start_tx
,
347 .stop_rx
= serial21285_stop_rx
,
348 .enable_ms
= serial21285_enable_ms
,
349 .break_ctl
= serial21285_break_ctl
,
350 .startup
= serial21285_startup
,
351 .shutdown
= serial21285_shutdown
,
352 .set_termios
= serial21285_set_termios
,
353 .type
= serial21285_type
,
354 .release_port
= serial21285_release_port
,
355 .request_port
= serial21285_request_port
,
356 .config_port
= serial21285_config_port
,
357 .verify_port
= serial21285_verify_port
,
360 static struct uart_port serial21285_port
= {
361 .mapbase
= 0x42000160,
365 .ops
= &serial21285_ops
,
366 .flags
= UPF_BOOT_AUTOCONF
,
369 static void serial21285_setup_ports(void)
371 serial21285_port
.uartclk
= mem_fclk_21285
/ 4;
374 #ifdef CONFIG_SERIAL_21285_CONSOLE
375 static void serial21285_console_putchar(struct uart_port
*port
, int ch
)
377 while (*CSR_UARTFLG
& 0x20)
383 serial21285_console_write(struct console
*co
, const char *s
,
386 uart_console_write(&serial21285_port
, s
, count
, serial21285_console_putchar
);
390 serial21285_get_options(struct uart_port
*port
, int *baud
,
391 int *parity
, int *bits
)
393 if (*CSR_UARTCON
== 1) {
397 switch (tmp
& 0x60) {
413 if (tmp
& H_UBRLCR_PARENB
) {
415 if (tmp
& H_UBRLCR_PAREVN
)
419 tmp
= *CSR_L_UBRLCR
| (*CSR_M_UBRLCR
<< 8);
421 *baud
= port
->uartclk
/ (16 * (tmp
+ 1));
425 static int __init
serial21285_console_setup(struct console
*co
, char *options
)
427 struct uart_port
*port
= &serial21285_port
;
433 if (machine_is_personal_server())
437 * Check whether an invalid uart number has been specified, and
438 * if so, search for the first available port that does have
442 uart_parse_options(options
, &baud
, &parity
, &bits
, &flow
);
444 serial21285_get_options(port
, &baud
, &parity
, &bits
);
446 return uart_set_options(port
, co
, baud
, parity
, bits
, flow
);
449 static struct uart_driver serial21285_reg
;
451 static struct console serial21285_console
=
453 .name
= SERIAL_21285_NAME
,
454 .write
= serial21285_console_write
,
455 .device
= uart_console_device
,
456 .setup
= serial21285_console_setup
,
457 .flags
= CON_PRINTBUFFER
,
459 .data
= &serial21285_reg
,
462 static int __init
rs285_console_init(void)
464 serial21285_setup_ports();
465 register_console(&serial21285_console
);
468 console_initcall(rs285_console_init
);
470 #define SERIAL_21285_CONSOLE &serial21285_console
472 #define SERIAL_21285_CONSOLE NULL
475 static struct uart_driver serial21285_reg
= {
476 .owner
= THIS_MODULE
,
477 .driver_name
= "ttyFB",
479 .major
= SERIAL_21285_MAJOR
,
480 .minor
= SERIAL_21285_MINOR
,
482 .cons
= SERIAL_21285_CONSOLE
,
485 static int __init
serial21285_init(void)
489 printk(KERN_INFO
"Serial: 21285 driver\n");
491 serial21285_setup_ports();
493 ret
= uart_register_driver(&serial21285_reg
);
495 uart_add_one_port(&serial21285_reg
, &serial21285_port
);
500 static void __exit
serial21285_exit(void)
502 uart_remove_one_port(&serial21285_reg
, &serial21285_port
);
503 uart_unregister_driver(&serial21285_reg
);
506 module_init(serial21285_init
);
507 module_exit(serial21285_exit
);
509 MODULE_LICENSE("GPL");
510 MODULE_DESCRIPTION("Intel Footbridge (21285) serial driver");
511 MODULE_ALIAS_CHARDEV(SERIAL_21285_MAJOR
, SERIAL_21285_MINOR
);