2 * linux/drivers/char/atmel_serial.c
4 * Driver for Atmel AT91 / AT32 Serial ports
5 * Copyright (C) 2003 Rick Bronson
7 * Based on drivers/char/serial_sa1100.c, by Deep Blue Solutions Ltd.
8 * Based on drivers/char/serial.c, by Linus Torvalds, Theodore Ts'o.
10 * DMA support added by Chip Coldwell.
12 * This program is free software; you can redistribute it and/or modify
13 * it under the terms of the GNU General Public License as published by
14 * the Free Software Foundation; either version 2 of the License, or
15 * (at your option) any later version.
17 * This program is distributed in the hope that it will be useful,
18 * but WITHOUT ANY WARRANTY; without even the implied warranty of
19 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20 * GNU General Public License for more details.
22 * You should have received a copy of the GNU General Public License
23 * along with this program; if not, write to the Free Software
24 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
27 #include <linux/module.h>
28 #include <linux/tty.h>
29 #include <linux/ioport.h>
30 #include <linux/slab.h>
31 #include <linux/init.h>
32 #include <linux/serial.h>
33 #include <linux/clk.h>
34 #include <linux/console.h>
35 #include <linux/sysrq.h>
36 #include <linux/tty_flip.h>
37 #include <linux/platform_device.h>
38 #include <linux/dma-mapping.h>
39 #include <linux/atmel_pdc.h>
40 #include <linux/atmel_serial.h>
41 #include <linux/uaccess.h>
44 #include <asm/ioctls.h>
46 #include <asm/mach/serial_at91.h>
47 #include <mach/board.h>
51 #include <mach/gpio.h>
54 #define PDC_BUFFER_SIZE 512
55 /* Revisit: We should calculate this based on the actual port settings */
56 #define PDC_RX_TIMEOUT (3 * 10) /* 3 bytes */
58 #if defined(CONFIG_SERIAL_ATMEL_CONSOLE) && defined(CONFIG_MAGIC_SYSRQ)
62 #include <linux/serial_core.h>
64 static void atmel_start_rx(struct uart_port
*port
);
65 static void atmel_stop_rx(struct uart_port
*port
);
67 #ifdef CONFIG_SERIAL_ATMEL_TTYAT
69 /* Use device name ttyAT, major 204 and minor 154-169. This is necessary if we
70 * should coexist with the 8250 driver, such as if we have an external 16C550
72 #define SERIAL_ATMEL_MAJOR 204
73 #define MINOR_START 154
74 #define ATMEL_DEVICENAME "ttyAT"
78 /* Use device name ttyS, major 4, minor 64-68. This is the usual serial port
79 * name, but it is legally reserved for the 8250 driver. */
80 #define SERIAL_ATMEL_MAJOR TTY_MAJOR
81 #define MINOR_START 64
82 #define ATMEL_DEVICENAME "ttyS"
86 #define ATMEL_ISR_PASS_LIMIT 256
88 /* UART registers. CR is write-only, hence no GET macro */
89 #define UART_PUT_CR(port,v) __raw_writel(v, (port)->membase + ATMEL_US_CR)
90 #define UART_GET_MR(port) __raw_readl((port)->membase + ATMEL_US_MR)
91 #define UART_PUT_MR(port,v) __raw_writel(v, (port)->membase + ATMEL_US_MR)
92 #define UART_PUT_IER(port,v) __raw_writel(v, (port)->membase + ATMEL_US_IER)
93 #define UART_PUT_IDR(port,v) __raw_writel(v, (port)->membase + ATMEL_US_IDR)
94 #define UART_GET_IMR(port) __raw_readl((port)->membase + ATMEL_US_IMR)
95 #define UART_GET_CSR(port) __raw_readl((port)->membase + ATMEL_US_CSR)
96 #define UART_GET_CHAR(port) __raw_readl((port)->membase + ATMEL_US_RHR)
97 #define UART_PUT_CHAR(port,v) __raw_writel(v, (port)->membase + ATMEL_US_THR)
98 #define UART_GET_BRGR(port) __raw_readl((port)->membase + ATMEL_US_BRGR)
99 #define UART_PUT_BRGR(port,v) __raw_writel(v, (port)->membase + ATMEL_US_BRGR)
100 #define UART_PUT_RTOR(port,v) __raw_writel(v, (port)->membase + ATMEL_US_RTOR)
101 #define UART_PUT_TTGR(port, v) __raw_writel(v, (port)->membase + ATMEL_US_TTGR)
104 #define UART_PUT_PTCR(port,v) __raw_writel(v, (port)->membase + ATMEL_PDC_PTCR)
105 #define UART_GET_PTSR(port) __raw_readl((port)->membase + ATMEL_PDC_PTSR)
107 #define UART_PUT_RPR(port,v) __raw_writel(v, (port)->membase + ATMEL_PDC_RPR)
108 #define UART_GET_RPR(port) __raw_readl((port)->membase + ATMEL_PDC_RPR)
109 #define UART_PUT_RCR(port,v) __raw_writel(v, (port)->membase + ATMEL_PDC_RCR)
110 #define UART_PUT_RNPR(port,v) __raw_writel(v, (port)->membase + ATMEL_PDC_RNPR)
111 #define UART_PUT_RNCR(port,v) __raw_writel(v, (port)->membase + ATMEL_PDC_RNCR)
113 #define UART_PUT_TPR(port,v) __raw_writel(v, (port)->membase + ATMEL_PDC_TPR)
114 #define UART_PUT_TCR(port,v) __raw_writel(v, (port)->membase + ATMEL_PDC_TCR)
115 #define UART_GET_TCR(port) __raw_readl((port)->membase + ATMEL_PDC_TCR)
117 static int (*atmel_open_hook
)(struct uart_port
*);
118 static void (*atmel_close_hook
)(struct uart_port
*);
120 struct atmel_dma_buffer
{
123 unsigned int dma_size
;
127 struct atmel_uart_char
{
132 #define ATMEL_SERIAL_RINGSIZE 1024
135 * We wrap our port structure around the generic uart_port.
137 struct atmel_uart_port
{
138 struct uart_port uart
; /* uart */
139 struct clk
*clk
; /* uart clock */
140 int may_wakeup
; /* cached value of device_may_wakeup for times we need to disable it */
141 u32 backup_imr
; /* IMR saved during suspend */
142 int break_active
; /* break being received */
144 short use_dma_rx
; /* enable PDC receiver */
145 short pdc_rx_idx
; /* current PDC RX buffer */
146 struct atmel_dma_buffer pdc_rx
[2]; /* PDC receier */
148 short use_dma_tx
; /* enable PDC transmitter */
149 struct atmel_dma_buffer pdc_tx
; /* PDC transmitter */
151 struct tasklet_struct tasklet
;
152 unsigned int irq_status
;
153 unsigned int irq_status_prev
;
155 struct circ_buf rx_ring
;
157 struct serial_rs485 rs485
; /* rs485 settings */
158 unsigned int tx_done_mask
;
161 static struct atmel_uart_port atmel_ports
[ATMEL_MAX_UART
];
164 static struct console atmel_console
;
167 static inline struct atmel_uart_port
*
168 to_atmel_uart_port(struct uart_port
*uart
)
170 return container_of(uart
, struct atmel_uart_port
, uart
);
173 #ifdef CONFIG_SERIAL_ATMEL_PDC
174 static bool atmel_use_dma_rx(struct uart_port
*port
)
176 struct atmel_uart_port
*atmel_port
= to_atmel_uart_port(port
);
178 return atmel_port
->use_dma_rx
;
181 static bool atmel_use_dma_tx(struct uart_port
*port
)
183 struct atmel_uart_port
*atmel_port
= to_atmel_uart_port(port
);
185 return atmel_port
->use_dma_tx
;
188 static bool atmel_use_dma_rx(struct uart_port
*port
)
193 static bool atmel_use_dma_tx(struct uart_port
*port
)
199 /* Enable or disable the rs485 support */
200 void atmel_config_rs485(struct uart_port
*port
, struct serial_rs485
*rs485conf
)
202 struct atmel_uart_port
*atmel_port
= to_atmel_uart_port(port
);
205 spin_lock(&port
->lock
);
207 /* Disable interrupts */
208 UART_PUT_IDR(port
, atmel_port
->tx_done_mask
);
210 mode
= UART_GET_MR(port
);
212 /* Resetting serial mode to RS232 (0x0) */
213 mode
&= ~ATMEL_US_USMODE
;
215 atmel_port
->rs485
= *rs485conf
;
217 if (rs485conf
->flags
& SER_RS485_ENABLED
) {
218 dev_dbg(port
->dev
, "Setting UART to RS485\n");
219 atmel_port
->tx_done_mask
= ATMEL_US_TXEMPTY
;
220 if (rs485conf
->flags
& SER_RS485_RTS_AFTER_SEND
)
221 UART_PUT_TTGR(port
, rs485conf
->delay_rts_after_send
);
222 mode
|= ATMEL_US_USMODE_RS485
;
224 dev_dbg(port
->dev
, "Setting UART to RS232\n");
225 if (atmel_use_dma_tx(port
))
226 atmel_port
->tx_done_mask
= ATMEL_US_ENDTX
|
229 atmel_port
->tx_done_mask
= ATMEL_US_TXRDY
;
231 UART_PUT_MR(port
, mode
);
233 /* Enable interrupts */
234 UART_PUT_IER(port
, atmel_port
->tx_done_mask
);
236 spin_unlock(&port
->lock
);
241 * Return TIOCSER_TEMT when transmitter FIFO and Shift register is empty.
243 static u_int
atmel_tx_empty(struct uart_port
*port
)
245 return (UART_GET_CSR(port
) & ATMEL_US_TXEMPTY
) ? TIOCSER_TEMT
: 0;
249 * Set state of the modem control output lines
251 static void atmel_set_mctrl(struct uart_port
*port
, u_int mctrl
)
253 unsigned int control
= 0;
255 struct atmel_uart_port
*atmel_port
= to_atmel_uart_port(port
);
257 #ifdef CONFIG_ARCH_AT91RM9200
258 if (cpu_is_at91rm9200()) {
260 * AT91RM9200 Errata #39: RTS0 is not internally connected
261 * to PA21. We need to drive the pin manually.
263 if (port
->mapbase
== AT91RM9200_BASE_US0
) {
264 if (mctrl
& TIOCM_RTS
)
265 at91_set_gpio_value(AT91_PIN_PA21
, 0);
267 at91_set_gpio_value(AT91_PIN_PA21
, 1);
272 if (mctrl
& TIOCM_RTS
)
273 control
|= ATMEL_US_RTSEN
;
275 control
|= ATMEL_US_RTSDIS
;
277 if (mctrl
& TIOCM_DTR
)
278 control
|= ATMEL_US_DTREN
;
280 control
|= ATMEL_US_DTRDIS
;
282 UART_PUT_CR(port
, control
);
284 /* Local loopback mode? */
285 mode
= UART_GET_MR(port
) & ~ATMEL_US_CHMODE
;
286 if (mctrl
& TIOCM_LOOP
)
287 mode
|= ATMEL_US_CHMODE_LOC_LOOP
;
289 mode
|= ATMEL_US_CHMODE_NORMAL
;
291 /* Resetting serial mode to RS232 (0x0) */
292 mode
&= ~ATMEL_US_USMODE
;
294 if (atmel_port
->rs485
.flags
& SER_RS485_ENABLED
) {
295 dev_dbg(port
->dev
, "Setting UART to RS485\n");
296 if (atmel_port
->rs485
.flags
& SER_RS485_RTS_AFTER_SEND
)
298 atmel_port
->rs485
.delay_rts_after_send
);
299 mode
|= ATMEL_US_USMODE_RS485
;
301 dev_dbg(port
->dev
, "Setting UART to RS232\n");
303 UART_PUT_MR(port
, mode
);
307 * Get state of the modem control input lines
309 static u_int
atmel_get_mctrl(struct uart_port
*port
)
311 unsigned int status
, ret
= 0;
313 status
= UART_GET_CSR(port
);
316 * The control signals are active low.
318 if (!(status
& ATMEL_US_DCD
))
320 if (!(status
& ATMEL_US_CTS
))
322 if (!(status
& ATMEL_US_DSR
))
324 if (!(status
& ATMEL_US_RI
))
333 static void atmel_stop_tx(struct uart_port
*port
)
335 struct atmel_uart_port
*atmel_port
= to_atmel_uart_port(port
);
337 if (atmel_use_dma_tx(port
)) {
338 /* disable PDC transmit */
339 UART_PUT_PTCR(port
, ATMEL_PDC_TXTDIS
);
341 /* Disable interrupts */
342 UART_PUT_IDR(port
, atmel_port
->tx_done_mask
);
344 if (atmel_port
->rs485
.flags
& SER_RS485_ENABLED
)
345 atmel_start_rx(port
);
349 * Start transmitting.
351 static void atmel_start_tx(struct uart_port
*port
)
353 struct atmel_uart_port
*atmel_port
= to_atmel_uart_port(port
);
355 if (atmel_use_dma_tx(port
)) {
356 if (UART_GET_PTSR(port
) & ATMEL_PDC_TXTEN
)
357 /* The transmitter is already running. Yes, we
361 if (atmel_port
->rs485
.flags
& SER_RS485_ENABLED
)
364 /* re-enable PDC transmit */
365 UART_PUT_PTCR(port
, ATMEL_PDC_TXTEN
);
367 /* Enable interrupts */
368 UART_PUT_IER(port
, atmel_port
->tx_done_mask
);
372 * start receiving - port is in process of being opened.
374 static void atmel_start_rx(struct uart_port
*port
)
376 UART_PUT_CR(port
, ATMEL_US_RSTSTA
); /* reset status and receiver */
378 if (atmel_use_dma_rx(port
)) {
379 /* enable PDC controller */
380 UART_PUT_IER(port
, ATMEL_US_ENDRX
| ATMEL_US_TIMEOUT
|
381 port
->read_status_mask
);
382 UART_PUT_PTCR(port
, ATMEL_PDC_RXTEN
);
384 UART_PUT_IER(port
, ATMEL_US_RXRDY
);
389 * Stop receiving - port is in process of being closed.
391 static void atmel_stop_rx(struct uart_port
*port
)
393 if (atmel_use_dma_rx(port
)) {
394 /* disable PDC receive */
395 UART_PUT_PTCR(port
, ATMEL_PDC_RXTDIS
);
396 UART_PUT_IDR(port
, ATMEL_US_ENDRX
| ATMEL_US_TIMEOUT
|
397 port
->read_status_mask
);
399 UART_PUT_IDR(port
, ATMEL_US_RXRDY
);
404 * Enable modem status interrupts
406 static void atmel_enable_ms(struct uart_port
*port
)
408 UART_PUT_IER(port
, ATMEL_US_RIIC
| ATMEL_US_DSRIC
409 | ATMEL_US_DCDIC
| ATMEL_US_CTSIC
);
413 * Control the transmission of a break signal
415 static void atmel_break_ctl(struct uart_port
*port
, int break_state
)
417 if (break_state
!= 0)
418 UART_PUT_CR(port
, ATMEL_US_STTBRK
); /* start break */
420 UART_PUT_CR(port
, ATMEL_US_STPBRK
); /* stop break */
424 * Stores the incoming character in the ring buffer
427 atmel_buffer_rx_char(struct uart_port
*port
, unsigned int status
,
430 struct atmel_uart_port
*atmel_port
= to_atmel_uart_port(port
);
431 struct circ_buf
*ring
= &atmel_port
->rx_ring
;
432 struct atmel_uart_char
*c
;
434 if (!CIRC_SPACE(ring
->head
, ring
->tail
, ATMEL_SERIAL_RINGSIZE
))
435 /* Buffer overflow, ignore char */
438 c
= &((struct atmel_uart_char
*)ring
->buf
)[ring
->head
];
442 /* Make sure the character is stored before we update head. */
445 ring
->head
= (ring
->head
+ 1) & (ATMEL_SERIAL_RINGSIZE
- 1);
449 * Deal with parity, framing and overrun errors.
451 static void atmel_pdc_rxerr(struct uart_port
*port
, unsigned int status
)
454 UART_PUT_CR(port
, ATMEL_US_RSTSTA
);
456 if (status
& ATMEL_US_RXBRK
) {
457 /* ignore side-effect */
458 status
&= ~(ATMEL_US_PARE
| ATMEL_US_FRAME
);
461 if (status
& ATMEL_US_PARE
)
462 port
->icount
.parity
++;
463 if (status
& ATMEL_US_FRAME
)
464 port
->icount
.frame
++;
465 if (status
& ATMEL_US_OVRE
)
466 port
->icount
.overrun
++;
470 * Characters received (called from interrupt handler)
472 static void atmel_rx_chars(struct uart_port
*port
)
474 struct atmel_uart_port
*atmel_port
= to_atmel_uart_port(port
);
475 unsigned int status
, ch
;
477 status
= UART_GET_CSR(port
);
478 while (status
& ATMEL_US_RXRDY
) {
479 ch
= UART_GET_CHAR(port
);
482 * note that the error handling code is
483 * out of the main execution path
485 if (unlikely(status
& (ATMEL_US_PARE
| ATMEL_US_FRAME
486 | ATMEL_US_OVRE
| ATMEL_US_RXBRK
)
487 || atmel_port
->break_active
)) {
490 UART_PUT_CR(port
, ATMEL_US_RSTSTA
);
492 if (status
& ATMEL_US_RXBRK
493 && !atmel_port
->break_active
) {
494 atmel_port
->break_active
= 1;
495 UART_PUT_IER(port
, ATMEL_US_RXBRK
);
498 * This is either the end-of-break
499 * condition or we've received at
500 * least one character without RXBRK
501 * being set. In both cases, the next
502 * RXBRK will indicate start-of-break.
504 UART_PUT_IDR(port
, ATMEL_US_RXBRK
);
505 status
&= ~ATMEL_US_RXBRK
;
506 atmel_port
->break_active
= 0;
510 atmel_buffer_rx_char(port
, status
, ch
);
511 status
= UART_GET_CSR(port
);
514 tasklet_schedule(&atmel_port
->tasklet
);
518 * Transmit characters (called from tasklet with TXRDY interrupt
521 static void atmel_tx_chars(struct uart_port
*port
)
523 struct circ_buf
*xmit
= &port
->state
->xmit
;
524 struct atmel_uart_port
*atmel_port
= to_atmel_uart_port(port
);
526 if (port
->x_char
&& UART_GET_CSR(port
) & atmel_port
->tx_done_mask
) {
527 UART_PUT_CHAR(port
, port
->x_char
);
531 if (uart_circ_empty(xmit
) || uart_tx_stopped(port
))
534 while (UART_GET_CSR(port
) & atmel_port
->tx_done_mask
) {
535 UART_PUT_CHAR(port
, xmit
->buf
[xmit
->tail
]);
536 xmit
->tail
= (xmit
->tail
+ 1) & (UART_XMIT_SIZE
- 1);
538 if (uart_circ_empty(xmit
))
542 if (uart_circ_chars_pending(xmit
) < WAKEUP_CHARS
)
543 uart_write_wakeup(port
);
545 if (!uart_circ_empty(xmit
))
546 /* Enable interrupts */
547 UART_PUT_IER(port
, atmel_port
->tx_done_mask
);
551 * receive interrupt handler.
554 atmel_handle_receive(struct uart_port
*port
, unsigned int pending
)
556 struct atmel_uart_port
*atmel_port
= to_atmel_uart_port(port
);
558 if (atmel_use_dma_rx(port
)) {
560 * PDC receive. Just schedule the tasklet and let it
561 * figure out the details.
563 * TODO: We're not handling error flags correctly at
566 if (pending
& (ATMEL_US_ENDRX
| ATMEL_US_TIMEOUT
)) {
567 UART_PUT_IDR(port
, (ATMEL_US_ENDRX
568 | ATMEL_US_TIMEOUT
));
569 tasklet_schedule(&atmel_port
->tasklet
);
572 if (pending
& (ATMEL_US_RXBRK
| ATMEL_US_OVRE
|
573 ATMEL_US_FRAME
| ATMEL_US_PARE
))
574 atmel_pdc_rxerr(port
, pending
);
577 /* Interrupt receive */
578 if (pending
& ATMEL_US_RXRDY
)
579 atmel_rx_chars(port
);
580 else if (pending
& ATMEL_US_RXBRK
) {
582 * End of break detected. If it came along with a
583 * character, atmel_rx_chars will handle it.
585 UART_PUT_CR(port
, ATMEL_US_RSTSTA
);
586 UART_PUT_IDR(port
, ATMEL_US_RXBRK
);
587 atmel_port
->break_active
= 0;
592 * transmit interrupt handler. (Transmit is IRQF_NODELAY safe)
595 atmel_handle_transmit(struct uart_port
*port
, unsigned int pending
)
597 struct atmel_uart_port
*atmel_port
= to_atmel_uart_port(port
);
599 if (pending
& atmel_port
->tx_done_mask
) {
600 /* Either PDC or interrupt transmission */
601 UART_PUT_IDR(port
, atmel_port
->tx_done_mask
);
602 tasklet_schedule(&atmel_port
->tasklet
);
607 * status flags interrupt handler.
610 atmel_handle_status(struct uart_port
*port
, unsigned int pending
,
613 struct atmel_uart_port
*atmel_port
= to_atmel_uart_port(port
);
615 if (pending
& (ATMEL_US_RIIC
| ATMEL_US_DSRIC
| ATMEL_US_DCDIC
617 atmel_port
->irq_status
= status
;
618 tasklet_schedule(&atmel_port
->tasklet
);
625 static irqreturn_t
atmel_interrupt(int irq
, void *dev_id
)
627 struct uart_port
*port
= dev_id
;
628 unsigned int status
, pending
, pass_counter
= 0;
631 status
= UART_GET_CSR(port
);
632 pending
= status
& UART_GET_IMR(port
);
636 atmel_handle_receive(port
, pending
);
637 atmel_handle_status(port
, pending
, status
);
638 atmel_handle_transmit(port
, pending
);
639 } while (pass_counter
++ < ATMEL_ISR_PASS_LIMIT
);
641 return pass_counter
? IRQ_HANDLED
: IRQ_NONE
;
645 * Called from tasklet with ENDTX and TXBUFE interrupts disabled.
647 static void atmel_tx_dma(struct uart_port
*port
)
649 struct atmel_uart_port
*atmel_port
= to_atmel_uart_port(port
);
650 struct circ_buf
*xmit
= &port
->state
->xmit
;
651 struct atmel_dma_buffer
*pdc
= &atmel_port
->pdc_tx
;
654 /* nothing left to transmit? */
655 if (UART_GET_TCR(port
))
658 xmit
->tail
+= pdc
->ofs
;
659 xmit
->tail
&= UART_XMIT_SIZE
- 1;
661 port
->icount
.tx
+= pdc
->ofs
;
664 /* more to transmit - setup next transfer */
666 /* disable PDC transmit */
667 UART_PUT_PTCR(port
, ATMEL_PDC_TXTDIS
);
669 if (!uart_circ_empty(xmit
) && !uart_tx_stopped(port
)) {
670 dma_sync_single_for_device(port
->dev
,
675 count
= CIRC_CNT_TO_END(xmit
->head
, xmit
->tail
, UART_XMIT_SIZE
);
678 UART_PUT_TPR(port
, pdc
->dma_addr
+ xmit
->tail
);
679 UART_PUT_TCR(port
, count
);
680 /* re-enable PDC transmit */
681 UART_PUT_PTCR(port
, ATMEL_PDC_TXTEN
);
682 /* Enable interrupts */
683 UART_PUT_IER(port
, atmel_port
->tx_done_mask
);
685 if (atmel_port
->rs485
.flags
& SER_RS485_ENABLED
) {
686 /* DMA done, stop TX, start RX for RS485 */
687 atmel_start_rx(port
);
691 if (uart_circ_chars_pending(xmit
) < WAKEUP_CHARS
)
692 uart_write_wakeup(port
);
695 static void atmel_rx_from_ring(struct uart_port
*port
)
697 struct atmel_uart_port
*atmel_port
= to_atmel_uart_port(port
);
698 struct circ_buf
*ring
= &atmel_port
->rx_ring
;
702 while (ring
->head
!= ring
->tail
) {
703 struct atmel_uart_char c
;
705 /* Make sure c is loaded after head. */
708 c
= ((struct atmel_uart_char
*)ring
->buf
)[ring
->tail
];
710 ring
->tail
= (ring
->tail
+ 1) & (ATMEL_SERIAL_RINGSIZE
- 1);
717 * note that the error handling code is
718 * out of the main execution path
720 if (unlikely(status
& (ATMEL_US_PARE
| ATMEL_US_FRAME
721 | ATMEL_US_OVRE
| ATMEL_US_RXBRK
))) {
722 if (status
& ATMEL_US_RXBRK
) {
723 /* ignore side-effect */
724 status
&= ~(ATMEL_US_PARE
| ATMEL_US_FRAME
);
727 if (uart_handle_break(port
))
730 if (status
& ATMEL_US_PARE
)
731 port
->icount
.parity
++;
732 if (status
& ATMEL_US_FRAME
)
733 port
->icount
.frame
++;
734 if (status
& ATMEL_US_OVRE
)
735 port
->icount
.overrun
++;
737 status
&= port
->read_status_mask
;
739 if (status
& ATMEL_US_RXBRK
)
741 else if (status
& ATMEL_US_PARE
)
743 else if (status
& ATMEL_US_FRAME
)
748 if (uart_handle_sysrq_char(port
, c
.ch
))
751 uart_insert_char(port
, status
, ATMEL_US_OVRE
, c
.ch
, flg
);
755 * Drop the lock here since it might end up calling
756 * uart_start(), which takes the lock.
758 spin_unlock(&port
->lock
);
759 tty_flip_buffer_push(port
->state
->port
.tty
);
760 spin_lock(&port
->lock
);
763 static void atmel_rx_from_dma(struct uart_port
*port
)
765 struct atmel_uart_port
*atmel_port
= to_atmel_uart_port(port
);
766 struct tty_struct
*tty
= port
->state
->port
.tty
;
767 struct atmel_dma_buffer
*pdc
;
768 int rx_idx
= atmel_port
->pdc_rx_idx
;
774 /* Reset the UART timeout early so that we don't miss one */
775 UART_PUT_CR(port
, ATMEL_US_STTTO
);
777 pdc
= &atmel_port
->pdc_rx
[rx_idx
];
778 head
= UART_GET_RPR(port
) - pdc
->dma_addr
;
781 /* If the PDC has switched buffers, RPR won't contain
782 * any address within the current buffer. Since head
783 * is unsigned, we just need a one-way comparison to
786 * In this case, we just need to consume the entire
787 * buffer and resubmit it for DMA. This will clear the
788 * ENDRX bit as well, so that we can safely re-enable
789 * all interrupts below.
791 head
= min(head
, pdc
->dma_size
);
793 if (likely(head
!= tail
)) {
794 dma_sync_single_for_cpu(port
->dev
, pdc
->dma_addr
,
795 pdc
->dma_size
, DMA_FROM_DEVICE
);
798 * head will only wrap around when we recycle
799 * the DMA buffer, and when that happens, we
800 * explicitly set tail to 0. So head will
801 * always be greater than tail.
805 tty_insert_flip_string(tty
, pdc
->buf
+ pdc
->ofs
, count
);
807 dma_sync_single_for_device(port
->dev
, pdc
->dma_addr
,
808 pdc
->dma_size
, DMA_FROM_DEVICE
);
810 port
->icount
.rx
+= count
;
815 * If the current buffer is full, we need to check if
816 * the next one contains any additional data.
818 if (head
>= pdc
->dma_size
) {
820 UART_PUT_RNPR(port
, pdc
->dma_addr
);
821 UART_PUT_RNCR(port
, pdc
->dma_size
);
824 atmel_port
->pdc_rx_idx
= rx_idx
;
826 } while (head
>= pdc
->dma_size
);
829 * Drop the lock here since it might end up calling
830 * uart_start(), which takes the lock.
832 spin_unlock(&port
->lock
);
833 tty_flip_buffer_push(tty
);
834 spin_lock(&port
->lock
);
836 UART_PUT_IER(port
, ATMEL_US_ENDRX
| ATMEL_US_TIMEOUT
);
840 * tasklet handling tty stuff outside the interrupt handler.
842 static void atmel_tasklet_func(unsigned long data
)
844 struct uart_port
*port
= (struct uart_port
*)data
;
845 struct atmel_uart_port
*atmel_port
= to_atmel_uart_port(port
);
847 unsigned int status_change
;
849 /* The interrupt handler does not take the lock */
850 spin_lock(&port
->lock
);
852 if (atmel_use_dma_tx(port
))
855 atmel_tx_chars(port
);
857 status
= atmel_port
->irq_status
;
858 status_change
= status
^ atmel_port
->irq_status_prev
;
860 if (status_change
& (ATMEL_US_RI
| ATMEL_US_DSR
861 | ATMEL_US_DCD
| ATMEL_US_CTS
)) {
862 /* TODO: All reads to CSR will clear these interrupts! */
863 if (status_change
& ATMEL_US_RI
)
865 if (status_change
& ATMEL_US_DSR
)
867 if (status_change
& ATMEL_US_DCD
)
868 uart_handle_dcd_change(port
, !(status
& ATMEL_US_DCD
));
869 if (status_change
& ATMEL_US_CTS
)
870 uart_handle_cts_change(port
, !(status
& ATMEL_US_CTS
));
872 wake_up_interruptible(&port
->state
->port
.delta_msr_wait
);
874 atmel_port
->irq_status_prev
= status
;
877 if (atmel_use_dma_rx(port
))
878 atmel_rx_from_dma(port
);
880 atmel_rx_from_ring(port
);
882 spin_unlock(&port
->lock
);
886 * Perform initialization and enable port for reception
888 static int atmel_startup(struct uart_port
*port
)
890 struct atmel_uart_port
*atmel_port
= to_atmel_uart_port(port
);
891 struct tty_struct
*tty
= port
->state
->port
.tty
;
895 * Ensure that no interrupts are enabled otherwise when
896 * request_irq() is called we could get stuck trying to
897 * handle an unexpected interrupt
899 UART_PUT_IDR(port
, -1);
904 retval
= request_irq(port
->irq
, atmel_interrupt
, IRQF_SHARED
,
905 tty
? tty
->name
: "atmel_serial", port
);
907 printk("atmel_serial: atmel_startup - Can't get irq\n");
912 * Initialize DMA (if necessary)
914 if (atmel_use_dma_rx(port
)) {
917 for (i
= 0; i
< 2; i
++) {
918 struct atmel_dma_buffer
*pdc
= &atmel_port
->pdc_rx
[i
];
920 pdc
->buf
= kmalloc(PDC_BUFFER_SIZE
, GFP_KERNEL
);
921 if (pdc
->buf
== NULL
) {
923 dma_unmap_single(port
->dev
,
924 atmel_port
->pdc_rx
[0].dma_addr
,
927 kfree(atmel_port
->pdc_rx
[0].buf
);
929 free_irq(port
->irq
, port
);
932 pdc
->dma_addr
= dma_map_single(port
->dev
,
936 pdc
->dma_size
= PDC_BUFFER_SIZE
;
940 atmel_port
->pdc_rx_idx
= 0;
942 UART_PUT_RPR(port
, atmel_port
->pdc_rx
[0].dma_addr
);
943 UART_PUT_RCR(port
, PDC_BUFFER_SIZE
);
945 UART_PUT_RNPR(port
, atmel_port
->pdc_rx
[1].dma_addr
);
946 UART_PUT_RNCR(port
, PDC_BUFFER_SIZE
);
948 if (atmel_use_dma_tx(port
)) {
949 struct atmel_dma_buffer
*pdc
= &atmel_port
->pdc_tx
;
950 struct circ_buf
*xmit
= &port
->state
->xmit
;
952 pdc
->buf
= xmit
->buf
;
953 pdc
->dma_addr
= dma_map_single(port
->dev
,
957 pdc
->dma_size
= UART_XMIT_SIZE
;
962 * If there is a specific "open" function (to register
963 * control line interrupts)
965 if (atmel_open_hook
) {
966 retval
= atmel_open_hook(port
);
968 free_irq(port
->irq
, port
);
973 /* Save current CSR for comparison in atmel_tasklet_func() */
974 atmel_port
->irq_status_prev
= UART_GET_CSR(port
);
975 atmel_port
->irq_status
= atmel_port
->irq_status_prev
;
978 * Finally, enable the serial port
980 UART_PUT_CR(port
, ATMEL_US_RSTSTA
| ATMEL_US_RSTRX
);
981 /* enable xmit & rcvr */
982 UART_PUT_CR(port
, ATMEL_US_TXEN
| ATMEL_US_RXEN
);
984 if (atmel_use_dma_rx(port
)) {
985 /* set UART timeout */
986 UART_PUT_RTOR(port
, PDC_RX_TIMEOUT
);
987 UART_PUT_CR(port
, ATMEL_US_STTTO
);
989 UART_PUT_IER(port
, ATMEL_US_ENDRX
| ATMEL_US_TIMEOUT
);
990 /* enable PDC controller */
991 UART_PUT_PTCR(port
, ATMEL_PDC_RXTEN
);
993 /* enable receive only */
994 UART_PUT_IER(port
, ATMEL_US_RXRDY
);
1003 static void atmel_shutdown(struct uart_port
*port
)
1005 struct atmel_uart_port
*atmel_port
= to_atmel_uart_port(port
);
1007 * Ensure everything is stopped.
1009 atmel_stop_rx(port
);
1010 atmel_stop_tx(port
);
1013 * Shut-down the DMA.
1015 if (atmel_use_dma_rx(port
)) {
1018 for (i
= 0; i
< 2; i
++) {
1019 struct atmel_dma_buffer
*pdc
= &atmel_port
->pdc_rx
[i
];
1021 dma_unmap_single(port
->dev
,
1028 if (atmel_use_dma_tx(port
)) {
1029 struct atmel_dma_buffer
*pdc
= &atmel_port
->pdc_tx
;
1031 dma_unmap_single(port
->dev
,
1038 * Disable all interrupts, port and break condition.
1040 UART_PUT_CR(port
, ATMEL_US_RSTSTA
);
1041 UART_PUT_IDR(port
, -1);
1044 * Free the interrupt
1046 free_irq(port
->irq
, port
);
1049 * If there is a specific "close" function (to unregister
1050 * control line interrupts)
1052 if (atmel_close_hook
)
1053 atmel_close_hook(port
);
1057 * Flush any TX data submitted for DMA. Called when the TX circular
1060 static void atmel_flush_buffer(struct uart_port
*port
)
1062 struct atmel_uart_port
*atmel_port
= to_atmel_uart_port(port
);
1064 if (atmel_use_dma_tx(port
)) {
1065 UART_PUT_TCR(port
, 0);
1066 atmel_port
->pdc_tx
.ofs
= 0;
1071 * Power / Clock management.
1073 static void atmel_serial_pm(struct uart_port
*port
, unsigned int state
,
1074 unsigned int oldstate
)
1076 struct atmel_uart_port
*atmel_port
= to_atmel_uart_port(port
);
1081 * Enable the peripheral clock for this serial port.
1082 * This is called on uart_open() or a resume event.
1084 clk_enable(atmel_port
->clk
);
1086 /* re-enable interrupts if we disabled some on suspend */
1087 UART_PUT_IER(port
, atmel_port
->backup_imr
);
1090 /* Back up the interrupt mask and disable all interrupts */
1091 atmel_port
->backup_imr
= UART_GET_IMR(port
);
1092 UART_PUT_IDR(port
, -1);
1095 * Disable the peripheral clock for this serial port.
1096 * This is called on uart_close() or a suspend event.
1098 clk_disable(atmel_port
->clk
);
1101 printk(KERN_ERR
"atmel_serial: unknown pm %d\n", state
);
1106 * Change the port parameters
1108 static void atmel_set_termios(struct uart_port
*port
, struct ktermios
*termios
,
1109 struct ktermios
*old
)
1111 unsigned long flags
;
1112 unsigned int mode
, imr
, quot
, baud
;
1113 struct atmel_uart_port
*atmel_port
= to_atmel_uart_port(port
);
1115 /* Get current mode register */
1116 mode
= UART_GET_MR(port
) & ~(ATMEL_US_USCLKS
| ATMEL_US_CHRL
1117 | ATMEL_US_NBSTOP
| ATMEL_US_PAR
1120 baud
= uart_get_baud_rate(port
, termios
, old
, 0, port
->uartclk
/ 16);
1121 quot
= uart_get_divisor(port
, baud
);
1123 if (quot
> 65535) { /* BRGR is 16-bit, so switch to slower clock */
1125 mode
|= ATMEL_US_USCLKS_MCK_DIV8
;
1129 switch (termios
->c_cflag
& CSIZE
) {
1131 mode
|= ATMEL_US_CHRL_5
;
1134 mode
|= ATMEL_US_CHRL_6
;
1137 mode
|= ATMEL_US_CHRL_7
;
1140 mode
|= ATMEL_US_CHRL_8
;
1145 if (termios
->c_cflag
& CSTOPB
)
1146 mode
|= ATMEL_US_NBSTOP_2
;
1149 if (termios
->c_cflag
& PARENB
) {
1150 /* Mark or Space parity */
1151 if (termios
->c_cflag
& CMSPAR
) {
1152 if (termios
->c_cflag
& PARODD
)
1153 mode
|= ATMEL_US_PAR_MARK
;
1155 mode
|= ATMEL_US_PAR_SPACE
;
1156 } else if (termios
->c_cflag
& PARODD
)
1157 mode
|= ATMEL_US_PAR_ODD
;
1159 mode
|= ATMEL_US_PAR_EVEN
;
1161 mode
|= ATMEL_US_PAR_NONE
;
1163 /* hardware handshake (RTS/CTS) */
1164 if (termios
->c_cflag
& CRTSCTS
)
1165 mode
|= ATMEL_US_USMODE_HWHS
;
1167 mode
|= ATMEL_US_USMODE_NORMAL
;
1169 spin_lock_irqsave(&port
->lock
, flags
);
1171 port
->read_status_mask
= ATMEL_US_OVRE
;
1172 if (termios
->c_iflag
& INPCK
)
1173 port
->read_status_mask
|= (ATMEL_US_FRAME
| ATMEL_US_PARE
);
1174 if (termios
->c_iflag
& (BRKINT
| PARMRK
))
1175 port
->read_status_mask
|= ATMEL_US_RXBRK
;
1177 if (atmel_use_dma_rx(port
))
1178 /* need to enable error interrupts */
1179 UART_PUT_IER(port
, port
->read_status_mask
);
1182 * Characters to ignore
1184 port
->ignore_status_mask
= 0;
1185 if (termios
->c_iflag
& IGNPAR
)
1186 port
->ignore_status_mask
|= (ATMEL_US_FRAME
| ATMEL_US_PARE
);
1187 if (termios
->c_iflag
& IGNBRK
) {
1188 port
->ignore_status_mask
|= ATMEL_US_RXBRK
;
1190 * If we're ignoring parity and break indicators,
1191 * ignore overruns too (for real raw support).
1193 if (termios
->c_iflag
& IGNPAR
)
1194 port
->ignore_status_mask
|= ATMEL_US_OVRE
;
1196 /* TODO: Ignore all characters if CREAD is set.*/
1198 /* update the per-port timeout */
1199 uart_update_timeout(port
, termios
->c_cflag
, baud
);
1202 * save/disable interrupts. The tty layer will ensure that the
1203 * transmitter is empty if requested by the caller, so there's
1204 * no need to wait for it here.
1206 imr
= UART_GET_IMR(port
);
1207 UART_PUT_IDR(port
, -1);
1209 /* disable receiver and transmitter */
1210 UART_PUT_CR(port
, ATMEL_US_TXDIS
| ATMEL_US_RXDIS
);
1212 /* Resetting serial mode to RS232 (0x0) */
1213 mode
&= ~ATMEL_US_USMODE
;
1215 if (atmel_port
->rs485
.flags
& SER_RS485_ENABLED
) {
1216 dev_dbg(port
->dev
, "Setting UART to RS485\n");
1217 if (atmel_port
->rs485
.flags
& SER_RS485_RTS_AFTER_SEND
)
1219 atmel_port
->rs485
.delay_rts_after_send
);
1220 mode
|= ATMEL_US_USMODE_RS485
;
1222 dev_dbg(port
->dev
, "Setting UART to RS232\n");
1225 /* set the parity, stop bits and data size */
1226 UART_PUT_MR(port
, mode
);
1228 /* set the baud rate */
1229 UART_PUT_BRGR(port
, quot
);
1230 UART_PUT_CR(port
, ATMEL_US_RSTSTA
| ATMEL_US_RSTRX
);
1231 UART_PUT_CR(port
, ATMEL_US_TXEN
| ATMEL_US_RXEN
);
1233 /* restore interrupts */
1234 UART_PUT_IER(port
, imr
);
1236 /* CTS flow-control and modem-status interrupts */
1237 if (UART_ENABLE_MS(port
, termios
->c_cflag
))
1238 port
->ops
->enable_ms(port
);
1240 spin_unlock_irqrestore(&port
->lock
, flags
);
1244 * Return string describing the specified port
1246 static const char *atmel_type(struct uart_port
*port
)
1248 return (port
->type
== PORT_ATMEL
) ? "ATMEL_SERIAL" : NULL
;
1252 * Release the memory region(s) being used by 'port'.
1254 static void atmel_release_port(struct uart_port
*port
)
1256 struct platform_device
*pdev
= to_platform_device(port
->dev
);
1257 int size
= pdev
->resource
[0].end
- pdev
->resource
[0].start
+ 1;
1259 release_mem_region(port
->mapbase
, size
);
1261 if (port
->flags
& UPF_IOREMAP
) {
1262 iounmap(port
->membase
);
1263 port
->membase
= NULL
;
1268 * Request the memory region(s) being used by 'port'.
1270 static int atmel_request_port(struct uart_port
*port
)
1272 struct platform_device
*pdev
= to_platform_device(port
->dev
);
1273 int size
= pdev
->resource
[0].end
- pdev
->resource
[0].start
+ 1;
1275 if (!request_mem_region(port
->mapbase
, size
, "atmel_serial"))
1278 if (port
->flags
& UPF_IOREMAP
) {
1279 port
->membase
= ioremap(port
->mapbase
, size
);
1280 if (port
->membase
== NULL
) {
1281 release_mem_region(port
->mapbase
, size
);
1290 * Configure/autoconfigure the port.
1292 static void atmel_config_port(struct uart_port
*port
, int flags
)
1294 if (flags
& UART_CONFIG_TYPE
) {
1295 port
->type
= PORT_ATMEL
;
1296 atmel_request_port(port
);
1301 * Verify the new serial_struct (for TIOCSSERIAL).
1303 static int atmel_verify_port(struct uart_port
*port
, struct serial_struct
*ser
)
1306 if (ser
->type
!= PORT_UNKNOWN
&& ser
->type
!= PORT_ATMEL
)
1308 if (port
->irq
!= ser
->irq
)
1310 if (ser
->io_type
!= SERIAL_IO_MEM
)
1312 if (port
->uartclk
/ 16 != ser
->baud_base
)
1314 if ((void *)port
->mapbase
!= ser
->iomem_base
)
1316 if (port
->iobase
!= ser
->port
)
1323 #ifdef CONFIG_CONSOLE_POLL
1324 static int atmel_poll_get_char(struct uart_port
*port
)
1326 while (!(UART_GET_CSR(port
) & ATMEL_US_RXRDY
))
1329 return UART_GET_CHAR(port
);
1332 static void atmel_poll_put_char(struct uart_port
*port
, unsigned char ch
)
1334 while (!(UART_GET_CSR(port
) & ATMEL_US_TXRDY
))
1337 UART_PUT_CHAR(port
, ch
);
1342 atmel_ioctl(struct uart_port
*port
, unsigned int cmd
, unsigned long arg
)
1344 struct serial_rs485 rs485conf
;
1348 if (copy_from_user(&rs485conf
, (struct serial_rs485
*) arg
,
1352 atmel_config_rs485(port
, &rs485conf
);
1356 if (copy_to_user((struct serial_rs485
*) arg
,
1357 &(to_atmel_uart_port(port
)->rs485
),
1363 return -ENOIOCTLCMD
;
1370 static struct uart_ops atmel_pops
= {
1371 .tx_empty
= atmel_tx_empty
,
1372 .set_mctrl
= atmel_set_mctrl
,
1373 .get_mctrl
= atmel_get_mctrl
,
1374 .stop_tx
= atmel_stop_tx
,
1375 .start_tx
= atmel_start_tx
,
1376 .stop_rx
= atmel_stop_rx
,
1377 .enable_ms
= atmel_enable_ms
,
1378 .break_ctl
= atmel_break_ctl
,
1379 .startup
= atmel_startup
,
1380 .shutdown
= atmel_shutdown
,
1381 .flush_buffer
= atmel_flush_buffer
,
1382 .set_termios
= atmel_set_termios
,
1384 .release_port
= atmel_release_port
,
1385 .request_port
= atmel_request_port
,
1386 .config_port
= atmel_config_port
,
1387 .verify_port
= atmel_verify_port
,
1388 .pm
= atmel_serial_pm
,
1389 .ioctl
= atmel_ioctl
,
1390 #ifdef CONFIG_CONSOLE_POLL
1391 .poll_get_char
= atmel_poll_get_char
,
1392 .poll_put_char
= atmel_poll_put_char
,
1397 * Configure the port from the platform device resource info.
1399 static void __devinit
atmel_init_port(struct atmel_uart_port
*atmel_port
,
1400 struct platform_device
*pdev
)
1402 struct uart_port
*port
= &atmel_port
->uart
;
1403 struct atmel_uart_data
*data
= pdev
->dev
.platform_data
;
1405 port
->iotype
= UPIO_MEM
;
1406 port
->flags
= UPF_BOOT_AUTOCONF
;
1407 port
->ops
= &atmel_pops
;
1409 port
->line
= pdev
->id
;
1410 port
->dev
= &pdev
->dev
;
1411 port
->mapbase
= pdev
->resource
[0].start
;
1412 port
->irq
= pdev
->resource
[1].start
;
1414 tasklet_init(&atmel_port
->tasklet
, atmel_tasklet_func
,
1415 (unsigned long)port
);
1417 memset(&atmel_port
->rx_ring
, 0, sizeof(atmel_port
->rx_ring
));
1420 /* Already mapped by setup code */
1421 port
->membase
= data
->regs
;
1423 port
->flags
|= UPF_IOREMAP
;
1424 port
->membase
= NULL
;
1427 /* for console, the clock could already be configured */
1428 if (!atmel_port
->clk
) {
1429 atmel_port
->clk
= clk_get(&pdev
->dev
, "usart");
1430 clk_enable(atmel_port
->clk
);
1431 port
->uartclk
= clk_get_rate(atmel_port
->clk
);
1432 clk_disable(atmel_port
->clk
);
1433 /* only enable clock when USART is in use */
1436 atmel_port
->use_dma_rx
= data
->use_dma_rx
;
1437 atmel_port
->use_dma_tx
= data
->use_dma_tx
;
1438 atmel_port
->rs485
= data
->rs485
;
1439 /* Use TXEMPTY for interrupt when rs485 else TXRDY or ENDTX|TXBUFE */
1440 if (atmel_port
->rs485
.flags
& SER_RS485_ENABLED
)
1441 atmel_port
->tx_done_mask
= ATMEL_US_TXEMPTY
;
1442 else if (atmel_use_dma_tx(port
)) {
1443 port
->fifosize
= PDC_BUFFER_SIZE
;
1444 atmel_port
->tx_done_mask
= ATMEL_US_ENDTX
| ATMEL_US_TXBUFE
;
1446 atmel_port
->tx_done_mask
= ATMEL_US_TXRDY
;
1451 * Register board-specific modem-control line handlers.
1453 void __init
atmel_register_uart_fns(struct atmel_port_fns
*fns
)
1456 atmel_pops
.enable_ms
= fns
->enable_ms
;
1458 atmel_pops
.get_mctrl
= fns
->get_mctrl
;
1460 atmel_pops
.set_mctrl
= fns
->set_mctrl
;
1461 atmel_open_hook
= fns
->open
;
1462 atmel_close_hook
= fns
->close
;
1463 atmel_pops
.pm
= fns
->pm
;
1464 atmel_pops
.set_wake
= fns
->set_wake
;
1467 #ifdef CONFIG_SERIAL_ATMEL_CONSOLE
1468 static void atmel_console_putchar(struct uart_port
*port
, int ch
)
1470 while (!(UART_GET_CSR(port
) & ATMEL_US_TXRDY
))
1472 UART_PUT_CHAR(port
, ch
);
1476 * Interrupts are disabled on entering
1478 static void atmel_console_write(struct console
*co
, const char *s
, u_int count
)
1480 struct uart_port
*port
= &atmel_ports
[co
->index
].uart
;
1481 struct atmel_uart_port
*atmel_port
= to_atmel_uart_port(port
);
1482 unsigned int status
, imr
;
1483 unsigned int pdc_tx
;
1486 * First, save IMR and then disable interrupts
1488 imr
= UART_GET_IMR(port
);
1489 UART_PUT_IDR(port
, ATMEL_US_RXRDY
| atmel_port
->tx_done_mask
);
1491 /* Store PDC transmit status and disable it */
1492 pdc_tx
= UART_GET_PTSR(port
) & ATMEL_PDC_TXTEN
;
1493 UART_PUT_PTCR(port
, ATMEL_PDC_TXTDIS
);
1495 uart_console_write(port
, s
, count
, atmel_console_putchar
);
1498 * Finally, wait for transmitter to become empty
1502 status
= UART_GET_CSR(port
);
1503 } while (!(status
& ATMEL_US_TXRDY
));
1505 /* Restore PDC transmit status */
1507 UART_PUT_PTCR(port
, ATMEL_PDC_TXTEN
);
1509 /* set interrupts back the way they were */
1510 UART_PUT_IER(port
, imr
);
1514 * If the port was already initialised (eg, by a boot loader),
1515 * try to determine the current setup.
1517 static void __init
atmel_console_get_options(struct uart_port
*port
, int *baud
,
1518 int *parity
, int *bits
)
1520 unsigned int mr
, quot
;
1523 * If the baud rate generator isn't running, the port wasn't
1524 * initialized by the boot loader.
1526 quot
= UART_GET_BRGR(port
) & ATMEL_US_CD
;
1530 mr
= UART_GET_MR(port
) & ATMEL_US_CHRL
;
1531 if (mr
== ATMEL_US_CHRL_8
)
1536 mr
= UART_GET_MR(port
) & ATMEL_US_PAR
;
1537 if (mr
== ATMEL_US_PAR_EVEN
)
1539 else if (mr
== ATMEL_US_PAR_ODD
)
1543 * The serial core only rounds down when matching this to a
1544 * supported baud rate. Make sure we don't end up slightly
1545 * lower than one of those, as it would make us fall through
1546 * to a much lower baud rate than we really want.
1548 *baud
= port
->uartclk
/ (16 * (quot
- 1));
1551 static int __init
atmel_console_setup(struct console
*co
, char *options
)
1553 struct uart_port
*port
= &atmel_ports
[co
->index
].uart
;
1559 if (port
->membase
== NULL
) {
1560 /* Port not initialized yet - delay setup */
1564 clk_enable(atmel_ports
[co
->index
].clk
);
1566 UART_PUT_IDR(port
, -1);
1567 UART_PUT_CR(port
, ATMEL_US_RSTSTA
| ATMEL_US_RSTRX
);
1568 UART_PUT_CR(port
, ATMEL_US_TXEN
| ATMEL_US_RXEN
);
1571 uart_parse_options(options
, &baud
, &parity
, &bits
, &flow
);
1573 atmel_console_get_options(port
, &baud
, &parity
, &bits
);
1575 return uart_set_options(port
, co
, baud
, parity
, bits
, flow
);
1578 static struct uart_driver atmel_uart
;
1580 static struct console atmel_console
= {
1581 .name
= ATMEL_DEVICENAME
,
1582 .write
= atmel_console_write
,
1583 .device
= uart_console_device
,
1584 .setup
= atmel_console_setup
,
1585 .flags
= CON_PRINTBUFFER
,
1587 .data
= &atmel_uart
,
1590 #define ATMEL_CONSOLE_DEVICE (&atmel_console)
1593 * Early console initialization (before VM subsystem initialized).
1595 static int __init
atmel_console_init(void)
1597 if (atmel_default_console_device
) {
1598 add_preferred_console(ATMEL_DEVICENAME
,
1599 atmel_default_console_device
->id
, NULL
);
1600 atmel_init_port(&atmel_ports
[atmel_default_console_device
->id
],
1601 atmel_default_console_device
);
1602 register_console(&atmel_console
);
1608 console_initcall(atmel_console_init
);
1611 * Late console initialization.
1613 static int __init
atmel_late_console_init(void)
1615 if (atmel_default_console_device
1616 && !(atmel_console
.flags
& CON_ENABLED
))
1617 register_console(&atmel_console
);
1622 core_initcall(atmel_late_console_init
);
1624 static inline bool atmel_is_console_port(struct uart_port
*port
)
1626 return port
->cons
&& port
->cons
->index
== port
->line
;
1630 #define ATMEL_CONSOLE_DEVICE NULL
1632 static inline bool atmel_is_console_port(struct uart_port
*port
)
1638 static struct uart_driver atmel_uart
= {
1639 .owner
= THIS_MODULE
,
1640 .driver_name
= "atmel_serial",
1641 .dev_name
= ATMEL_DEVICENAME
,
1642 .major
= SERIAL_ATMEL_MAJOR
,
1643 .minor
= MINOR_START
,
1644 .nr
= ATMEL_MAX_UART
,
1645 .cons
= ATMEL_CONSOLE_DEVICE
,
1649 static bool atmel_serial_clk_will_stop(void)
1651 #ifdef CONFIG_ARCH_AT91
1652 return at91_suspend_entering_slow_clock();
1658 static int atmel_serial_suspend(struct platform_device
*pdev
,
1661 struct uart_port
*port
= platform_get_drvdata(pdev
);
1662 struct atmel_uart_port
*atmel_port
= to_atmel_uart_port(port
);
1664 if (atmel_is_console_port(port
) && console_suspend_enabled
) {
1665 /* Drain the TX shifter */
1666 while (!(UART_GET_CSR(port
) & ATMEL_US_TXEMPTY
))
1670 /* we can not wake up if we're running on slow clock */
1671 atmel_port
->may_wakeup
= device_may_wakeup(&pdev
->dev
);
1672 if (atmel_serial_clk_will_stop())
1673 device_set_wakeup_enable(&pdev
->dev
, 0);
1675 uart_suspend_port(&atmel_uart
, port
);
1680 static int atmel_serial_resume(struct platform_device
*pdev
)
1682 struct uart_port
*port
= platform_get_drvdata(pdev
);
1683 struct atmel_uart_port
*atmel_port
= to_atmel_uart_port(port
);
1685 uart_resume_port(&atmel_uart
, port
);
1686 device_set_wakeup_enable(&pdev
->dev
, atmel_port
->may_wakeup
);
1691 #define atmel_serial_suspend NULL
1692 #define atmel_serial_resume NULL
1695 static int __devinit
atmel_serial_probe(struct platform_device
*pdev
)
1697 struct atmel_uart_port
*port
;
1701 BUILD_BUG_ON(ATMEL_SERIAL_RINGSIZE
& (ATMEL_SERIAL_RINGSIZE
- 1));
1703 port
= &atmel_ports
[pdev
->id
];
1704 port
->backup_imr
= 0;
1706 atmel_init_port(port
, pdev
);
1708 if (!atmel_use_dma_rx(&port
->uart
)) {
1710 data
= kmalloc(sizeof(struct atmel_uart_char
)
1711 * ATMEL_SERIAL_RINGSIZE
, GFP_KERNEL
);
1713 goto err_alloc_ring
;
1714 port
->rx_ring
.buf
= data
;
1717 ret
= uart_add_one_port(&atmel_uart
, &port
->uart
);
1721 #ifdef CONFIG_SERIAL_ATMEL_CONSOLE
1722 if (atmel_is_console_port(&port
->uart
)
1723 && ATMEL_CONSOLE_DEVICE
->flags
& CON_ENABLED
) {
1725 * The serial core enabled the clock for us, so undo
1726 * the clk_enable() in atmel_console_setup()
1728 clk_disable(port
->clk
);
1732 device_init_wakeup(&pdev
->dev
, 1);
1733 platform_set_drvdata(pdev
, port
);
1735 if (port
->rs485
.flags
& SER_RS485_ENABLED
) {
1736 UART_PUT_MR(&port
->uart
, ATMEL_US_USMODE_NORMAL
);
1737 UART_PUT_CR(&port
->uart
, ATMEL_US_RTSEN
);
1743 kfree(port
->rx_ring
.buf
);
1744 port
->rx_ring
.buf
= NULL
;
1746 if (!atmel_is_console_port(&port
->uart
)) {
1754 static int __devexit
atmel_serial_remove(struct platform_device
*pdev
)
1756 struct uart_port
*port
= platform_get_drvdata(pdev
);
1757 struct atmel_uart_port
*atmel_port
= to_atmel_uart_port(port
);
1760 device_init_wakeup(&pdev
->dev
, 0);
1761 platform_set_drvdata(pdev
, NULL
);
1763 ret
= uart_remove_one_port(&atmel_uart
, port
);
1765 tasklet_kill(&atmel_port
->tasklet
);
1766 kfree(atmel_port
->rx_ring
.buf
);
1768 /* "port" is allocated statically, so we shouldn't free it */
1770 clk_put(atmel_port
->clk
);
1775 static struct platform_driver atmel_serial_driver
= {
1776 .probe
= atmel_serial_probe
,
1777 .remove
= __devexit_p(atmel_serial_remove
),
1778 .suspend
= atmel_serial_suspend
,
1779 .resume
= atmel_serial_resume
,
1781 .name
= "atmel_usart",
1782 .owner
= THIS_MODULE
,
1786 static int __init
atmel_serial_init(void)
1790 ret
= uart_register_driver(&atmel_uart
);
1794 ret
= platform_driver_register(&atmel_serial_driver
);
1796 uart_unregister_driver(&atmel_uart
);
1801 static void __exit
atmel_serial_exit(void)
1803 platform_driver_unregister(&atmel_serial_driver
);
1804 uart_unregister_driver(&atmel_uart
);
1807 module_init(atmel_serial_init
);
1808 module_exit(atmel_serial_exit
);
1810 MODULE_AUTHOR("Rick Bronson");
1811 MODULE_DESCRIPTION("Atmel AT91 / AT32 serial port driver");
1812 MODULE_LICENSE("GPL");
1813 MODULE_ALIAS("platform:atmel_usart");