1 // SPDX-License-Identifier: GPL-2.0
3 * UART driver for PNX8XXX SoCs
5 * Author: Per Hallsmark per.hallsmark@mvista.com
6 * Ported to 2.6 kernel by EmbeddedAlley
7 * Reworked by Vitaly Wool <vitalywool@gmail.com>
9 * Based on drivers/char/serial.c, by Linus Torvalds, Theodore Ts'o.
10 * Copyright (C) 2000 Deep Blue Solutions Ltd.
13 #if defined(CONFIG_SERIAL_PNX8XXX_CONSOLE) && defined(CONFIG_MAGIC_SYSRQ)
17 #include <linux/module.h>
18 #include <linux/ioport.h>
19 #include <linux/init.h>
20 #include <linux/console.h>
21 #include <linux/sysrq.h>
22 #include <linux/device.h>
23 #include <linux/platform_device.h>
24 #include <linux/tty.h>
25 #include <linux/tty_flip.h>
26 #include <linux/serial_core.h>
27 #include <linux/serial.h>
28 #include <linux/serial_pnx8xxx.h>
33 /* We'll be using StrongARM sa1100 serial port major/minor */
34 #define SERIAL_PNX8XXX_MAJOR 204
39 #define PNX8XXX_ISR_PASS_LIMIT 256
42 * Convert from ignore_status_mask or read_status_mask to FIFO
43 * and interrupt status bits
45 #define SM_TO_FIFO(x) ((x) >> 10)
46 #define SM_TO_ISTAT(x) ((x) & 0x000001ff)
47 #define FIFO_TO_SM(x) ((x) << 10)
48 #define ISTAT_TO_SM(x) ((x) & 0x000001ff)
51 * This is the size of our serial port register set.
53 #define UART_PORT_SIZE 0x1000
56 * This determines how often we check the modem status signals
57 * for any change. They generally aren't connected to an IRQ
58 * so we have to poll them. We also check immediately before
59 * filling the TX fifo incase CTS has been dropped.
61 #define MCTRL_TIMEOUT (250*HZ/1000)
63 extern struct pnx8xxx_port pnx8xxx_ports
[];
65 static inline int serial_in(struct pnx8xxx_port
*sport
, int offset
)
67 return (__raw_readl(sport
->port
.membase
+ offset
));
70 static inline void serial_out(struct pnx8xxx_port
*sport
, int offset
, int value
)
72 __raw_writel(value
, sport
->port
.membase
+ offset
);
76 * Handle any change of modem status signal since we were last called.
78 static void pnx8xxx_mctrl_check(struct pnx8xxx_port
*sport
)
80 unsigned int status
, changed
;
82 status
= sport
->port
.ops
->get_mctrl(&sport
->port
);
83 changed
= status
^ sport
->old_status
;
88 sport
->old_status
= status
;
90 if (changed
& TIOCM_RI
)
91 sport
->port
.icount
.rng
++;
92 if (changed
& TIOCM_DSR
)
93 sport
->port
.icount
.dsr
++;
94 if (changed
& TIOCM_CAR
)
95 uart_handle_dcd_change(&sport
->port
, status
& TIOCM_CAR
);
96 if (changed
& TIOCM_CTS
)
97 uart_handle_cts_change(&sport
->port
, status
& TIOCM_CTS
);
99 wake_up_interruptible(&sport
->port
.state
->port
.delta_msr_wait
);
103 * This is our per-port timeout handler, for checking the
104 * modem status signals.
106 static void pnx8xxx_timeout(struct timer_list
*t
)
108 struct pnx8xxx_port
*sport
= from_timer(sport
, t
, timer
);
111 if (sport
->port
.state
) {
112 spin_lock_irqsave(&sport
->port
.lock
, flags
);
113 pnx8xxx_mctrl_check(sport
);
114 spin_unlock_irqrestore(&sport
->port
.lock
, flags
);
116 mod_timer(&sport
->timer
, jiffies
+ MCTRL_TIMEOUT
);
121 * interrupts disabled on entry
123 static void pnx8xxx_stop_tx(struct uart_port
*port
)
125 struct pnx8xxx_port
*sport
=
126 container_of(port
, struct pnx8xxx_port
, port
);
129 /* Disable TX intr */
130 ien
= serial_in(sport
, PNX8XXX_IEN
);
131 serial_out(sport
, PNX8XXX_IEN
, ien
& ~PNX8XXX_UART_INT_ALLTX
);
133 /* Clear all pending TX intr */
134 serial_out(sport
, PNX8XXX_ICLR
, PNX8XXX_UART_INT_ALLTX
);
138 * interrupts may not be disabled on entry
140 static void pnx8xxx_start_tx(struct uart_port
*port
)
142 struct pnx8xxx_port
*sport
=
143 container_of(port
, struct pnx8xxx_port
, port
);
146 /* Clear all pending TX intr */
147 serial_out(sport
, PNX8XXX_ICLR
, PNX8XXX_UART_INT_ALLTX
);
150 ien
= serial_in(sport
, PNX8XXX_IEN
);
151 serial_out(sport
, PNX8XXX_IEN
, ien
| PNX8XXX_UART_INT_ALLTX
);
157 static void pnx8xxx_stop_rx(struct uart_port
*port
)
159 struct pnx8xxx_port
*sport
=
160 container_of(port
, struct pnx8xxx_port
, port
);
163 /* Disable RX intr */
164 ien
= serial_in(sport
, PNX8XXX_IEN
);
165 serial_out(sport
, PNX8XXX_IEN
, ien
& ~PNX8XXX_UART_INT_ALLRX
);
167 /* Clear all pending RX intr */
168 serial_out(sport
, PNX8XXX_ICLR
, PNX8XXX_UART_INT_ALLRX
);
172 * Set the modem control timer to fire immediately.
174 static void pnx8xxx_enable_ms(struct uart_port
*port
)
176 struct pnx8xxx_port
*sport
=
177 container_of(port
, struct pnx8xxx_port
, port
);
179 mod_timer(&sport
->timer
, jiffies
);
182 static void pnx8xxx_rx_chars(struct pnx8xxx_port
*sport
)
184 unsigned int status
, ch
, flg
;
186 status
= FIFO_TO_SM(serial_in(sport
, PNX8XXX_FIFO
)) |
187 ISTAT_TO_SM(serial_in(sport
, PNX8XXX_ISTAT
));
188 while (status
& FIFO_TO_SM(PNX8XXX_UART_FIFO_RXFIFO
)) {
189 ch
= serial_in(sport
, PNX8XXX_FIFO
) & 0xff;
191 sport
->port
.icount
.rx
++;
196 * note that the error handling code is
197 * out of the main execution path
199 if (status
& (FIFO_TO_SM(PNX8XXX_UART_FIFO_RXFE
|
200 PNX8XXX_UART_FIFO_RXPAR
|
201 PNX8XXX_UART_FIFO_RXBRK
) |
202 ISTAT_TO_SM(PNX8XXX_UART_INT_RXOVRN
))) {
203 if (status
& FIFO_TO_SM(PNX8XXX_UART_FIFO_RXBRK
)) {
204 status
&= ~(FIFO_TO_SM(PNX8XXX_UART_FIFO_RXFE
) |
205 FIFO_TO_SM(PNX8XXX_UART_FIFO_RXPAR
));
206 sport
->port
.icount
.brk
++;
207 if (uart_handle_break(&sport
->port
))
209 } else if (status
& FIFO_TO_SM(PNX8XXX_UART_FIFO_RXPAR
))
210 sport
->port
.icount
.parity
++;
211 else if (status
& FIFO_TO_SM(PNX8XXX_UART_FIFO_RXFE
))
212 sport
->port
.icount
.frame
++;
213 if (status
& ISTAT_TO_SM(PNX8XXX_UART_INT_RXOVRN
))
214 sport
->port
.icount
.overrun
++;
216 status
&= sport
->port
.read_status_mask
;
218 if (status
& FIFO_TO_SM(PNX8XXX_UART_FIFO_RXPAR
))
220 else if (status
& FIFO_TO_SM(PNX8XXX_UART_FIFO_RXFE
))
224 sport
->port
.sysrq
= 0;
228 if (uart_handle_sysrq_char(&sport
->port
, ch
))
231 uart_insert_char(&sport
->port
, status
,
232 ISTAT_TO_SM(PNX8XXX_UART_INT_RXOVRN
), ch
, flg
);
235 serial_out(sport
, PNX8XXX_LCR
, serial_in(sport
, PNX8XXX_LCR
) |
236 PNX8XXX_UART_LCR_RX_NEXT
);
237 status
= FIFO_TO_SM(serial_in(sport
, PNX8XXX_FIFO
)) |
238 ISTAT_TO_SM(serial_in(sport
, PNX8XXX_ISTAT
));
241 spin_unlock(&sport
->port
.lock
);
242 tty_flip_buffer_push(&sport
->port
.state
->port
);
243 spin_lock(&sport
->port
.lock
);
246 static void pnx8xxx_tx_chars(struct pnx8xxx_port
*sport
)
248 struct circ_buf
*xmit
= &sport
->port
.state
->xmit
;
250 if (sport
->port
.x_char
) {
251 serial_out(sport
, PNX8XXX_FIFO
, sport
->port
.x_char
);
252 sport
->port
.icount
.tx
++;
253 sport
->port
.x_char
= 0;
258 * Check the modem control lines before
259 * transmitting anything.
261 pnx8xxx_mctrl_check(sport
);
263 if (uart_circ_empty(xmit
) || uart_tx_stopped(&sport
->port
)) {
264 pnx8xxx_stop_tx(&sport
->port
);
269 * TX while bytes available
271 while (((serial_in(sport
, PNX8XXX_FIFO
) &
272 PNX8XXX_UART_FIFO_TXFIFO
) >> 16) < 16) {
273 serial_out(sport
, PNX8XXX_FIFO
, xmit
->buf
[xmit
->tail
]);
274 xmit
->tail
= (xmit
->tail
+ 1) & (UART_XMIT_SIZE
- 1);
275 sport
->port
.icount
.tx
++;
276 if (uart_circ_empty(xmit
))
280 if (uart_circ_chars_pending(xmit
) < WAKEUP_CHARS
)
281 uart_write_wakeup(&sport
->port
);
283 if (uart_circ_empty(xmit
))
284 pnx8xxx_stop_tx(&sport
->port
);
287 static irqreturn_t
pnx8xxx_int(int irq
, void *dev_id
)
289 struct pnx8xxx_port
*sport
= dev_id
;
292 spin_lock(&sport
->port
.lock
);
293 /* Get the interrupts */
294 status
= serial_in(sport
, PNX8XXX_ISTAT
) & serial_in(sport
, PNX8XXX_IEN
);
296 /* Byte or break signal received */
297 if (status
& (PNX8XXX_UART_INT_RX
| PNX8XXX_UART_INT_BREAK
))
298 pnx8xxx_rx_chars(sport
);
300 /* TX holding register empty - transmit a byte */
301 if (status
& PNX8XXX_UART_INT_TX
)
302 pnx8xxx_tx_chars(sport
);
304 /* Clear the ISTAT register */
305 serial_out(sport
, PNX8XXX_ICLR
, status
);
307 spin_unlock(&sport
->port
.lock
);
312 * Return TIOCSER_TEMT when transmitter is not busy.
314 static unsigned int pnx8xxx_tx_empty(struct uart_port
*port
)
316 struct pnx8xxx_port
*sport
=
317 container_of(port
, struct pnx8xxx_port
, port
);
319 return serial_in(sport
, PNX8XXX_FIFO
) & PNX8XXX_UART_FIFO_TXFIFO_STA
? 0 : TIOCSER_TEMT
;
322 static unsigned int pnx8xxx_get_mctrl(struct uart_port
*port
)
324 struct pnx8xxx_port
*sport
=
325 container_of(port
, struct pnx8xxx_port
, port
);
326 unsigned int mctrl
= TIOCM_DSR
;
331 msr
= serial_in(sport
, PNX8XXX_MCR
);
333 mctrl
|= msr
& PNX8XXX_UART_MCR_CTS
? TIOCM_CTS
: 0;
334 mctrl
|= msr
& PNX8XXX_UART_MCR_DCD
? TIOCM_CAR
: 0;
339 static void pnx8xxx_set_mctrl(struct uart_port
*port
, unsigned int mctrl
)
342 struct pnx8xxx_port
*sport
= (struct pnx8xxx_port
*)port
;
348 * Interrupts always disabled.
350 static void pnx8xxx_break_ctl(struct uart_port
*port
, int break_state
)
352 struct pnx8xxx_port
*sport
=
353 container_of(port
, struct pnx8xxx_port
, port
);
357 spin_lock_irqsave(&sport
->port
.lock
, flags
);
358 lcr
= serial_in(sport
, PNX8XXX_LCR
);
359 if (break_state
== -1)
360 lcr
|= PNX8XXX_UART_LCR_TXBREAK
;
362 lcr
&= ~PNX8XXX_UART_LCR_TXBREAK
;
363 serial_out(sport
, PNX8XXX_LCR
, lcr
);
364 spin_unlock_irqrestore(&sport
->port
.lock
, flags
);
367 static int pnx8xxx_startup(struct uart_port
*port
)
369 struct pnx8xxx_port
*sport
=
370 container_of(port
, struct pnx8xxx_port
, port
);
376 retval
= request_irq(sport
->port
.irq
, pnx8xxx_int
, 0,
377 "pnx8xxx-uart", sport
);
382 * Finally, clear and enable interrupts
385 serial_out(sport
, PNX8XXX_ICLR
, PNX8XXX_UART_INT_ALLRX
|
386 PNX8XXX_UART_INT_ALLTX
);
388 serial_out(sport
, PNX8XXX_IEN
, serial_in(sport
, PNX8XXX_IEN
) |
389 PNX8XXX_UART_INT_ALLRX
|
390 PNX8XXX_UART_INT_ALLTX
);
393 * Enable modem status interrupts
395 spin_lock_irq(&sport
->port
.lock
);
396 pnx8xxx_enable_ms(&sport
->port
);
397 spin_unlock_irq(&sport
->port
.lock
);
402 static void pnx8xxx_shutdown(struct uart_port
*port
)
404 struct pnx8xxx_port
*sport
=
405 container_of(port
, struct pnx8xxx_port
, port
);
411 del_timer_sync(&sport
->timer
);
414 * Disable all interrupts
416 serial_out(sport
, PNX8XXX_IEN
, 0);
419 * Reset the Tx and Rx FIFOS, disable the break condition
421 lcr
= serial_in(sport
, PNX8XXX_LCR
);
422 lcr
&= ~PNX8XXX_UART_LCR_TXBREAK
;
423 lcr
|= PNX8XXX_UART_LCR_TX_RST
| PNX8XXX_UART_LCR_RX_RST
;
424 serial_out(sport
, PNX8XXX_LCR
, lcr
);
427 * Clear all interrupts
429 serial_out(sport
, PNX8XXX_ICLR
, PNX8XXX_UART_INT_ALLRX
|
430 PNX8XXX_UART_INT_ALLTX
);
435 free_irq(sport
->port
.irq
, sport
);
439 pnx8xxx_set_termios(struct uart_port
*port
, struct ktermios
*termios
,
440 struct ktermios
*old
)
442 struct pnx8xxx_port
*sport
=
443 container_of(port
, struct pnx8xxx_port
, port
);
445 unsigned int lcr_fcr
, old_ien
, baud
, quot
;
446 unsigned int old_csize
= old
? old
->c_cflag
& CSIZE
: CS8
;
449 * We only support CS7 and CS8.
451 while ((termios
->c_cflag
& CSIZE
) != CS7
&&
452 (termios
->c_cflag
& CSIZE
) != CS8
) {
453 termios
->c_cflag
&= ~CSIZE
;
454 termios
->c_cflag
|= old_csize
;
458 if ((termios
->c_cflag
& CSIZE
) == CS8
)
459 lcr_fcr
= PNX8XXX_UART_LCR_8BIT
;
463 if (termios
->c_cflag
& CSTOPB
)
464 lcr_fcr
|= PNX8XXX_UART_LCR_2STOPB
;
465 if (termios
->c_cflag
& PARENB
) {
466 lcr_fcr
|= PNX8XXX_UART_LCR_PAREN
;
467 if (!(termios
->c_cflag
& PARODD
))
468 lcr_fcr
|= PNX8XXX_UART_LCR_PAREVN
;
472 * Ask the core to calculate the divisor for us.
474 baud
= uart_get_baud_rate(port
, termios
, old
, 0, port
->uartclk
/16);
475 quot
= uart_get_divisor(port
, baud
);
477 spin_lock_irqsave(&sport
->port
.lock
, flags
);
479 sport
->port
.read_status_mask
= ISTAT_TO_SM(PNX8XXX_UART_INT_RXOVRN
) |
480 ISTAT_TO_SM(PNX8XXX_UART_INT_EMPTY
) |
481 ISTAT_TO_SM(PNX8XXX_UART_INT_RX
);
482 if (termios
->c_iflag
& INPCK
)
483 sport
->port
.read_status_mask
|=
484 FIFO_TO_SM(PNX8XXX_UART_FIFO_RXFE
) |
485 FIFO_TO_SM(PNX8XXX_UART_FIFO_RXPAR
);
486 if (termios
->c_iflag
& (IGNBRK
| BRKINT
| PARMRK
))
487 sport
->port
.read_status_mask
|=
488 ISTAT_TO_SM(PNX8XXX_UART_INT_BREAK
);
491 * Characters to ignore
493 sport
->port
.ignore_status_mask
= 0;
494 if (termios
->c_iflag
& IGNPAR
)
495 sport
->port
.ignore_status_mask
|=
496 FIFO_TO_SM(PNX8XXX_UART_FIFO_RXFE
) |
497 FIFO_TO_SM(PNX8XXX_UART_FIFO_RXPAR
);
498 if (termios
->c_iflag
& IGNBRK
) {
499 sport
->port
.ignore_status_mask
|=
500 ISTAT_TO_SM(PNX8XXX_UART_INT_BREAK
);
502 * If we're ignoring parity and break indicators,
503 * ignore overruns too (for real raw support).
505 if (termios
->c_iflag
& IGNPAR
)
506 sport
->port
.ignore_status_mask
|=
507 ISTAT_TO_SM(PNX8XXX_UART_INT_RXOVRN
);
511 * ignore all characters if CREAD is not set
513 if ((termios
->c_cflag
& CREAD
) == 0)
514 sport
->port
.ignore_status_mask
|=
515 ISTAT_TO_SM(PNX8XXX_UART_INT_RX
);
517 del_timer_sync(&sport
->timer
);
520 * Update the per-port timeout.
522 uart_update_timeout(port
, termios
->c_cflag
, baud
);
525 * disable interrupts and drain transmitter
527 old_ien
= serial_in(sport
, PNX8XXX_IEN
);
528 serial_out(sport
, PNX8XXX_IEN
, old_ien
& ~(PNX8XXX_UART_INT_ALLTX
|
529 PNX8XXX_UART_INT_ALLRX
));
531 while (serial_in(sport
, PNX8XXX_FIFO
) & PNX8XXX_UART_FIFO_TXFIFO_STA
)
534 /* then, disable everything */
535 serial_out(sport
, PNX8XXX_IEN
, 0);
537 /* Reset the Rx and Tx FIFOs too */
538 lcr_fcr
|= PNX8XXX_UART_LCR_TX_RST
;
539 lcr_fcr
|= PNX8XXX_UART_LCR_RX_RST
;
541 /* set the parity, stop bits and data size */
542 serial_out(sport
, PNX8XXX_LCR
, lcr_fcr
);
544 /* set the baud rate */
546 serial_out(sport
, PNX8XXX_BAUD
, quot
);
548 serial_out(sport
, PNX8XXX_ICLR
, -1);
550 serial_out(sport
, PNX8XXX_IEN
, old_ien
);
552 if (UART_ENABLE_MS(&sport
->port
, termios
->c_cflag
))
553 pnx8xxx_enable_ms(&sport
->port
);
555 spin_unlock_irqrestore(&sport
->port
.lock
, flags
);
558 static const char *pnx8xxx_type(struct uart_port
*port
)
560 struct pnx8xxx_port
*sport
=
561 container_of(port
, struct pnx8xxx_port
, port
);
563 return sport
->port
.type
== PORT_PNX8XXX
? "PNX8XXX" : NULL
;
567 * Release the memory region(s) being used by 'port'.
569 static void pnx8xxx_release_port(struct uart_port
*port
)
571 struct pnx8xxx_port
*sport
=
572 container_of(port
, struct pnx8xxx_port
, port
);
574 release_mem_region(sport
->port
.mapbase
, UART_PORT_SIZE
);
578 * Request the memory region(s) being used by 'port'.
580 static int pnx8xxx_request_port(struct uart_port
*port
)
582 struct pnx8xxx_port
*sport
=
583 container_of(port
, struct pnx8xxx_port
, port
);
584 return request_mem_region(sport
->port
.mapbase
, UART_PORT_SIZE
,
585 "pnx8xxx-uart") != NULL
? 0 : -EBUSY
;
589 * Configure/autoconfigure the port.
591 static void pnx8xxx_config_port(struct uart_port
*port
, int flags
)
593 struct pnx8xxx_port
*sport
=
594 container_of(port
, struct pnx8xxx_port
, port
);
596 if (flags
& UART_CONFIG_TYPE
&&
597 pnx8xxx_request_port(&sport
->port
) == 0)
598 sport
->port
.type
= PORT_PNX8XXX
;
602 * Verify the new serial_struct (for TIOCSSERIAL).
603 * The only change we allow are to the flags and type, and
604 * even then only between PORT_PNX8XXX and PORT_UNKNOWN
607 pnx8xxx_verify_port(struct uart_port
*port
, struct serial_struct
*ser
)
609 struct pnx8xxx_port
*sport
=
610 container_of(port
, struct pnx8xxx_port
, port
);
613 if (ser
->type
!= PORT_UNKNOWN
&& ser
->type
!= PORT_PNX8XXX
)
615 if (sport
->port
.irq
!= ser
->irq
)
617 if (ser
->io_type
!= SERIAL_IO_MEM
)
619 if (sport
->port
.uartclk
/ 16 != ser
->baud_base
)
621 if ((void *)sport
->port
.mapbase
!= ser
->iomem_base
)
623 if (sport
->port
.iobase
!= ser
->port
)
630 static const struct uart_ops pnx8xxx_pops
= {
631 .tx_empty
= pnx8xxx_tx_empty
,
632 .set_mctrl
= pnx8xxx_set_mctrl
,
633 .get_mctrl
= pnx8xxx_get_mctrl
,
634 .stop_tx
= pnx8xxx_stop_tx
,
635 .start_tx
= pnx8xxx_start_tx
,
636 .stop_rx
= pnx8xxx_stop_rx
,
637 .enable_ms
= pnx8xxx_enable_ms
,
638 .break_ctl
= pnx8xxx_break_ctl
,
639 .startup
= pnx8xxx_startup
,
640 .shutdown
= pnx8xxx_shutdown
,
641 .set_termios
= pnx8xxx_set_termios
,
642 .type
= pnx8xxx_type
,
643 .release_port
= pnx8xxx_release_port
,
644 .request_port
= pnx8xxx_request_port
,
645 .config_port
= pnx8xxx_config_port
,
646 .verify_port
= pnx8xxx_verify_port
,
651 * Setup the PNX8XXX serial ports.
653 * Note also that we support "console=ttySx" where "x" is either 0 or 1.
655 static void __init
pnx8xxx_init_ports(void)
657 static int first
= 1;
664 for (i
= 0; i
< NR_PORTS
; i
++) {
665 timer_setup(&pnx8xxx_ports
[i
].timer
, pnx8xxx_timeout
, 0);
666 pnx8xxx_ports
[i
].port
.ops
= &pnx8xxx_pops
;
670 #ifdef CONFIG_SERIAL_PNX8XXX_CONSOLE
672 static void pnx8xxx_console_putchar(struct uart_port
*port
, int ch
)
674 struct pnx8xxx_port
*sport
=
675 container_of(port
, struct pnx8xxx_port
, port
);
679 /* Wait for UART_TX register to empty */
680 status
= serial_in(sport
, PNX8XXX_FIFO
);
681 } while (status
& PNX8XXX_UART_FIFO_TXFIFO
);
682 serial_out(sport
, PNX8XXX_FIFO
, ch
);
686 * Interrupts are disabled on entering
688 pnx8xxx_console_write(struct console
*co
, const char *s
, unsigned int count
)
690 struct pnx8xxx_port
*sport
= &pnx8xxx_ports
[co
->index
];
691 unsigned int old_ien
, status
;
694 * First, save IEN and then disable interrupts
696 old_ien
= serial_in(sport
, PNX8XXX_IEN
);
697 serial_out(sport
, PNX8XXX_IEN
, old_ien
& ~(PNX8XXX_UART_INT_ALLTX
|
698 PNX8XXX_UART_INT_ALLRX
));
700 uart_console_write(&sport
->port
, s
, count
, pnx8xxx_console_putchar
);
703 * Finally, wait for transmitter to become empty
707 /* Wait for UART_TX register to empty */
708 status
= serial_in(sport
, PNX8XXX_FIFO
);
709 } while (status
& PNX8XXX_UART_FIFO_TXFIFO
);
711 /* Clear TX and EMPTY interrupt */
712 serial_out(sport
, PNX8XXX_ICLR
, PNX8XXX_UART_INT_TX
|
713 PNX8XXX_UART_INT_EMPTY
);
715 serial_out(sport
, PNX8XXX_IEN
, old_ien
);
719 pnx8xxx_console_setup(struct console
*co
, char *options
)
721 struct pnx8xxx_port
*sport
;
728 * Check whether an invalid uart number has been specified, and
729 * if so, search for the first available port that does have
732 if (co
->index
== -1 || co
->index
>= NR_PORTS
)
734 sport
= &pnx8xxx_ports
[co
->index
];
737 uart_parse_options(options
, &baud
, &parity
, &bits
, &flow
);
739 return uart_set_options(&sport
->port
, co
, baud
, parity
, bits
, flow
);
742 static struct uart_driver pnx8xxx_reg
;
743 static struct console pnx8xxx_console
= {
745 .write
= pnx8xxx_console_write
,
746 .device
= uart_console_device
,
747 .setup
= pnx8xxx_console_setup
,
748 .flags
= CON_PRINTBUFFER
,
750 .data
= &pnx8xxx_reg
,
753 static int __init
pnx8xxx_rs_console_init(void)
755 pnx8xxx_init_ports();
756 register_console(&pnx8xxx_console
);
759 console_initcall(pnx8xxx_rs_console_init
);
761 #define PNX8XXX_CONSOLE &pnx8xxx_console
763 #define PNX8XXX_CONSOLE NULL
766 static struct uart_driver pnx8xxx_reg
= {
767 .owner
= THIS_MODULE
,
768 .driver_name
= "ttyS",
770 .major
= SERIAL_PNX8XXX_MAJOR
,
771 .minor
= MINOR_START
,
773 .cons
= PNX8XXX_CONSOLE
,
776 static int pnx8xxx_serial_suspend(struct platform_device
*pdev
, pm_message_t state
)
778 struct pnx8xxx_port
*sport
= platform_get_drvdata(pdev
);
780 return uart_suspend_port(&pnx8xxx_reg
, &sport
->port
);
783 static int pnx8xxx_serial_resume(struct platform_device
*pdev
)
785 struct pnx8xxx_port
*sport
= platform_get_drvdata(pdev
);
787 return uart_resume_port(&pnx8xxx_reg
, &sport
->port
);
790 static int pnx8xxx_serial_probe(struct platform_device
*pdev
)
792 struct resource
*res
= pdev
->resource
;
795 for (i
= 0; i
< pdev
->num_resources
; i
++, res
++) {
796 if (!(res
->flags
& IORESOURCE_MEM
))
799 for (i
= 0; i
< NR_PORTS
; i
++) {
800 if (pnx8xxx_ports
[i
].port
.mapbase
!= res
->start
)
803 pnx8xxx_ports
[i
].port
.dev
= &pdev
->dev
;
804 uart_add_one_port(&pnx8xxx_reg
, &pnx8xxx_ports
[i
].port
);
805 platform_set_drvdata(pdev
, &pnx8xxx_ports
[i
]);
813 static int pnx8xxx_serial_remove(struct platform_device
*pdev
)
815 struct pnx8xxx_port
*sport
= platform_get_drvdata(pdev
);
818 uart_remove_one_port(&pnx8xxx_reg
, &sport
->port
);
823 static struct platform_driver pnx8xxx_serial_driver
= {
825 .name
= "pnx8xxx-uart",
827 .probe
= pnx8xxx_serial_probe
,
828 .remove
= pnx8xxx_serial_remove
,
829 .suspend
= pnx8xxx_serial_suspend
,
830 .resume
= pnx8xxx_serial_resume
,
833 static int __init
pnx8xxx_serial_init(void)
837 printk(KERN_INFO
"Serial: PNX8XXX driver\n");
839 pnx8xxx_init_ports();
841 ret
= uart_register_driver(&pnx8xxx_reg
);
843 ret
= platform_driver_register(&pnx8xxx_serial_driver
);
845 uart_unregister_driver(&pnx8xxx_reg
);
850 static void __exit
pnx8xxx_serial_exit(void)
852 platform_driver_unregister(&pnx8xxx_serial_driver
);
853 uart_unregister_driver(&pnx8xxx_reg
);
856 module_init(pnx8xxx_serial_init
);
857 module_exit(pnx8xxx_serial_exit
);
859 MODULE_AUTHOR("Embedded Alley Solutions, Inc.");
860 MODULE_DESCRIPTION("PNX8XXX SoCs serial port driver");
861 MODULE_LICENSE("GPL");
862 MODULE_ALIAS_CHARDEV_MAJOR(SERIAL_PNX8XXX_MAJOR
);
863 MODULE_ALIAS("platform:pnx8xxx-uart");