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/system_info.h>
20 #include <asm/hardware/dec21285.h>
21 #include <mach/hardware.h>
23 #define BAUD_BASE (mem_fclk_21285/64)
25 #define SERIAL_21285_NAME "ttyFB"
26 #define SERIAL_21285_MAJOR 204
27 #define SERIAL_21285_MINOR 4
29 #define RXSTAT_DUMMY_READ 0x80000000
30 #define RXSTAT_FRAME (1 << 0)
31 #define RXSTAT_PARITY (1 << 1)
32 #define RXSTAT_OVERRUN (1 << 2)
33 #define RXSTAT_ANYERR (RXSTAT_FRAME|RXSTAT_PARITY|RXSTAT_OVERRUN)
35 #define H_UBRLCR_BREAK (1 << 0)
36 #define H_UBRLCR_PARENB (1 << 1)
37 #define H_UBRLCR_PAREVN (1 << 2)
38 #define H_UBRLCR_STOPB (1 << 3)
39 #define H_UBRLCR_FIFO (1 << 4)
41 static const char serial21285_name
[] = "Footbridge UART";
43 #define tx_enabled(port) ((port)->unused[0])
44 #define rx_enabled(port) ((port)->unused[1])
47 * The documented expression for selecting the divisor is:
48 * BAUD_BASE / baud - 1
49 * However, typically BAUD_BASE is not divisible by baud, so
50 * we want to select the divisor that gives us the minimum
51 * error. Therefore, we want:
52 * int(BAUD_BASE / baud - 0.5) ->
53 * int(BAUD_BASE / baud - (baud >> 1) / baud) ->
54 * int((BAUD_BASE - (baud >> 1)) / baud)
57 static void serial21285_stop_tx(struct uart_port
*port
)
59 if (tx_enabled(port
)) {
60 disable_irq_nosync(IRQ_CONTX
);
65 static void serial21285_start_tx(struct uart_port
*port
)
67 if (!tx_enabled(port
)) {
68 enable_irq(IRQ_CONTX
);
73 static void serial21285_stop_rx(struct uart_port
*port
)
75 if (rx_enabled(port
)) {
76 disable_irq_nosync(IRQ_CONRX
);
81 static irqreturn_t
serial21285_rx_chars(int irq
, void *dev_id
)
83 struct uart_port
*port
= dev_id
;
84 unsigned int status
, ch
, flag
, rxs
, max_count
= 256;
86 status
= *CSR_UARTFLG
;
87 while (!(status
& 0x10) && max_count
--) {
92 rxs
= *CSR_RXSTAT
| RXSTAT_DUMMY_READ
;
93 if (unlikely(rxs
& RXSTAT_ANYERR
)) {
94 if (rxs
& RXSTAT_PARITY
)
95 port
->icount
.parity
++;
96 else if (rxs
& RXSTAT_FRAME
)
98 if (rxs
& RXSTAT_OVERRUN
)
99 port
->icount
.overrun
++;
101 rxs
&= port
->read_status_mask
;
103 if (rxs
& RXSTAT_PARITY
)
105 else if (rxs
& RXSTAT_FRAME
)
109 uart_insert_char(port
, rxs
, RXSTAT_OVERRUN
, ch
, flag
);
111 status
= *CSR_UARTFLG
;
113 tty_flip_buffer_push(&port
->state
->port
);
118 static irqreturn_t
serial21285_tx_chars(int irq
, void *dev_id
)
120 struct uart_port
*port
= dev_id
;
121 struct circ_buf
*xmit
= &port
->state
->xmit
;
125 *CSR_UARTDR
= port
->x_char
;
130 if (uart_circ_empty(xmit
) || uart_tx_stopped(port
)) {
131 serial21285_stop_tx(port
);
136 *CSR_UARTDR
= xmit
->buf
[xmit
->tail
];
137 xmit
->tail
= (xmit
->tail
+ 1) & (UART_XMIT_SIZE
- 1);
139 if (uart_circ_empty(xmit
))
141 } while (--count
> 0 && !(*CSR_UARTFLG
& 0x20));
143 if (uart_circ_chars_pending(xmit
) < WAKEUP_CHARS
)
144 uart_write_wakeup(port
);
146 if (uart_circ_empty(xmit
))
147 serial21285_stop_tx(port
);
153 static unsigned int serial21285_tx_empty(struct uart_port
*port
)
155 return (*CSR_UARTFLG
& 8) ? 0 : TIOCSER_TEMT
;
158 /* no modem control lines */
159 static unsigned int serial21285_get_mctrl(struct uart_port
*port
)
161 return TIOCM_CAR
| TIOCM_DSR
| TIOCM_CTS
;
164 static void serial21285_set_mctrl(struct uart_port
*port
, unsigned int mctrl
)
168 static void serial21285_break_ctl(struct uart_port
*port
, int break_state
)
173 spin_lock_irqsave(&port
->lock
, flags
);
174 h_lcr
= *CSR_H_UBRLCR
;
176 h_lcr
|= H_UBRLCR_BREAK
;
178 h_lcr
&= ~H_UBRLCR_BREAK
;
179 *CSR_H_UBRLCR
= h_lcr
;
180 spin_unlock_irqrestore(&port
->lock
, flags
);
183 static int serial21285_startup(struct uart_port
*port
)
187 tx_enabled(port
) = 1;
188 rx_enabled(port
) = 1;
190 ret
= request_irq(IRQ_CONRX
, serial21285_rx_chars
, 0,
191 serial21285_name
, port
);
193 ret
= request_irq(IRQ_CONTX
, serial21285_tx_chars
, 0,
194 serial21285_name
, port
);
196 free_irq(IRQ_CONRX
, port
);
202 static void serial21285_shutdown(struct uart_port
*port
)
204 free_irq(IRQ_CONTX
, port
);
205 free_irq(IRQ_CONRX
, port
);
209 serial21285_set_termios(struct uart_port
*port
, struct ktermios
*termios
,
210 struct ktermios
*old
)
213 unsigned int baud
, quot
, h_lcr
, b
;
216 * We don't support modem control lines.
218 termios
->c_cflag
&= ~(HUPCL
| CRTSCTS
| CMSPAR
);
219 termios
->c_cflag
|= CLOCAL
;
222 * We don't support BREAK character recognition.
224 termios
->c_iflag
&= ~(IGNBRK
| BRKINT
);
227 * Ask the core to calculate the divisor for us.
229 baud
= uart_get_baud_rate(port
, termios
, old
, 0, port
->uartclk
/16);
230 quot
= uart_get_divisor(port
, baud
);
231 b
= port
->uartclk
/ (16 * quot
);
232 tty_termios_encode_baud_rate(termios
, b
, b
);
234 switch (termios
->c_cflag
& CSIZE
) {
249 if (termios
->c_cflag
& CSTOPB
)
250 h_lcr
|= H_UBRLCR_STOPB
;
251 if (termios
->c_cflag
& PARENB
) {
252 h_lcr
|= H_UBRLCR_PARENB
;
253 if (!(termios
->c_cflag
& PARODD
))
254 h_lcr
|= H_UBRLCR_PAREVN
;
258 h_lcr
|= H_UBRLCR_FIFO
;
260 spin_lock_irqsave(&port
->lock
, flags
);
263 * Update the per-port timeout.
265 uart_update_timeout(port
, termios
->c_cflag
, baud
);
268 * Which character status flags are we interested in?
270 port
->read_status_mask
= RXSTAT_OVERRUN
;
271 if (termios
->c_iflag
& INPCK
)
272 port
->read_status_mask
|= RXSTAT_FRAME
| RXSTAT_PARITY
;
275 * Which character status flags should we ignore?
277 port
->ignore_status_mask
= 0;
278 if (termios
->c_iflag
& IGNPAR
)
279 port
->ignore_status_mask
|= RXSTAT_FRAME
| RXSTAT_PARITY
;
280 if (termios
->c_iflag
& IGNBRK
&& termios
->c_iflag
& IGNPAR
)
281 port
->ignore_status_mask
|= RXSTAT_OVERRUN
;
284 * Ignore all characters if CREAD is not set.
286 if ((termios
->c_cflag
& CREAD
) == 0)
287 port
->ignore_status_mask
|= RXSTAT_DUMMY_READ
;
292 *CSR_L_UBRLCR
= quot
& 0xff;
293 *CSR_M_UBRLCR
= (quot
>> 8) & 0x0f;
294 *CSR_H_UBRLCR
= h_lcr
;
297 spin_unlock_irqrestore(&port
->lock
, flags
);
300 static const char *serial21285_type(struct uart_port
*port
)
302 return port
->type
== PORT_21285
? "DC21285" : NULL
;
305 static void serial21285_release_port(struct uart_port
*port
)
307 release_mem_region(port
->mapbase
, 32);
310 static int serial21285_request_port(struct uart_port
*port
)
312 return request_mem_region(port
->mapbase
, 32, serial21285_name
)
313 != NULL
? 0 : -EBUSY
;
316 static void serial21285_config_port(struct uart_port
*port
, int flags
)
318 if (flags
& UART_CONFIG_TYPE
&& serial21285_request_port(port
) == 0)
319 port
->type
= PORT_21285
;
323 * verify the new serial_struct (for TIOCSSERIAL).
325 static int serial21285_verify_port(struct uart_port
*port
, struct serial_struct
*ser
)
328 if (ser
->type
!= PORT_UNKNOWN
&& ser
->type
!= PORT_21285
)
332 if (ser
->baud_base
!= port
->uartclk
/ 16)
337 static struct uart_ops serial21285_ops
= {
338 .tx_empty
= serial21285_tx_empty
,
339 .get_mctrl
= serial21285_get_mctrl
,
340 .set_mctrl
= serial21285_set_mctrl
,
341 .stop_tx
= serial21285_stop_tx
,
342 .start_tx
= serial21285_start_tx
,
343 .stop_rx
= serial21285_stop_rx
,
344 .break_ctl
= serial21285_break_ctl
,
345 .startup
= serial21285_startup
,
346 .shutdown
= serial21285_shutdown
,
347 .set_termios
= serial21285_set_termios
,
348 .type
= serial21285_type
,
349 .release_port
= serial21285_release_port
,
350 .request_port
= serial21285_request_port
,
351 .config_port
= serial21285_config_port
,
352 .verify_port
= serial21285_verify_port
,
355 static struct uart_port serial21285_port
= {
356 .mapbase
= 0x42000160,
360 .ops
= &serial21285_ops
,
361 .flags
= UPF_BOOT_AUTOCONF
,
364 static void serial21285_setup_ports(void)
366 serial21285_port
.uartclk
= mem_fclk_21285
/ 4;
369 #ifdef CONFIG_SERIAL_21285_CONSOLE
370 static void serial21285_console_putchar(struct uart_port
*port
, int ch
)
372 while (*CSR_UARTFLG
& 0x20)
378 serial21285_console_write(struct console
*co
, const char *s
,
381 uart_console_write(&serial21285_port
, s
, count
, serial21285_console_putchar
);
385 serial21285_get_options(struct uart_port
*port
, int *baud
,
386 int *parity
, int *bits
)
388 if (*CSR_UARTCON
== 1) {
392 switch (tmp
& 0x60) {
408 if (tmp
& H_UBRLCR_PARENB
) {
410 if (tmp
& H_UBRLCR_PAREVN
)
414 tmp
= *CSR_L_UBRLCR
| (*CSR_M_UBRLCR
<< 8);
416 *baud
= port
->uartclk
/ (16 * (tmp
+ 1));
420 static int __init
serial21285_console_setup(struct console
*co
, char *options
)
422 struct uart_port
*port
= &serial21285_port
;
428 if (machine_is_personal_server())
432 * Check whether an invalid uart number has been specified, and
433 * if so, search for the first available port that does have
437 uart_parse_options(options
, &baud
, &parity
, &bits
, &flow
);
439 serial21285_get_options(port
, &baud
, &parity
, &bits
);
441 return uart_set_options(port
, co
, baud
, parity
, bits
, flow
);
444 static struct uart_driver serial21285_reg
;
446 static struct console serial21285_console
=
448 .name
= SERIAL_21285_NAME
,
449 .write
= serial21285_console_write
,
450 .device
= uart_console_device
,
451 .setup
= serial21285_console_setup
,
452 .flags
= CON_PRINTBUFFER
,
454 .data
= &serial21285_reg
,
457 static int __init
rs285_console_init(void)
459 serial21285_setup_ports();
460 register_console(&serial21285_console
);
463 console_initcall(rs285_console_init
);
465 #define SERIAL_21285_CONSOLE &serial21285_console
467 #define SERIAL_21285_CONSOLE NULL
470 static struct uart_driver serial21285_reg
= {
471 .owner
= THIS_MODULE
,
472 .driver_name
= "ttyFB",
474 .major
= SERIAL_21285_MAJOR
,
475 .minor
= SERIAL_21285_MINOR
,
477 .cons
= SERIAL_21285_CONSOLE
,
480 static int __init
serial21285_init(void)
484 printk(KERN_INFO
"Serial: 21285 driver\n");
486 serial21285_setup_ports();
488 ret
= uart_register_driver(&serial21285_reg
);
490 uart_add_one_port(&serial21285_reg
, &serial21285_port
);
495 static void __exit
serial21285_exit(void)
497 uart_remove_one_port(&serial21285_reg
, &serial21285_port
);
498 uart_unregister_driver(&serial21285_reg
);
501 module_init(serial21285_init
);
502 module_exit(serial21285_exit
);
504 MODULE_LICENSE("GPL");
505 MODULE_DESCRIPTION("Intel Footbridge (21285) serial driver");
506 MODULE_ALIAS_CHARDEV(SERIAL_21285_MAJOR
, SERIAL_21285_MINOR
);