tty/serial: at91: RS485 mode: 0 is valid for delay_rts_after_send
[pandora-kernel.git] / drivers / tty / serial / atmel_serial.c
1 /*
2  *  Driver for Atmel AT91 / AT32 Serial ports
3  *  Copyright (C) 2003 Rick Bronson
4  *
5  *  Based on drivers/char/serial_sa1100.c, by Deep Blue Solutions Ltd.
6  *  Based on drivers/char/serial.c, by Linus Torvalds, Theodore Ts'o.
7  *
8  *  DMA support added by Chip Coldwell.
9  *
10  * This program is free software; you can redistribute it and/or modify
11  * it under the terms of the GNU General Public License as published by
12  * the Free Software Foundation; either version 2 of the License, or
13  * (at your option) any later version.
14  *
15  * This program is distributed in the hope that it will be useful,
16  * but WITHOUT ANY WARRANTY; without even the implied warranty of
17  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18  * GNU General Public License for more details.
19  *
20  * You should have received a copy of the GNU General Public License
21  * along with this program; if not, write to the Free Software
22  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
23  *
24  */
25 #include <linux/module.h>
26 #include <linux/tty.h>
27 #include <linux/ioport.h>
28 #include <linux/slab.h>
29 #include <linux/init.h>
30 #include <linux/serial.h>
31 #include <linux/clk.h>
32 #include <linux/console.h>
33 #include <linux/sysrq.h>
34 #include <linux/tty_flip.h>
35 #include <linux/platform_device.h>
36 #include <linux/of.h>
37 #include <linux/of_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>
42
43 #include <asm/io.h>
44 #include <asm/ioctls.h>
45
46 #include <asm/mach/serial_at91.h>
47 #include <mach/board.h>
48
49 #ifdef CONFIG_ARM
50 #include <mach/cpu.h>
51 #include <asm/gpio.h>
52 #endif
53
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 */
57
58 #if defined(CONFIG_SERIAL_ATMEL_CONSOLE) && defined(CONFIG_MAGIC_SYSRQ)
59 #define SUPPORT_SYSRQ
60 #endif
61
62 #include <linux/serial_core.h>
63
64 static void atmel_start_rx(struct uart_port *port);
65 static void atmel_stop_rx(struct uart_port *port);
66
67 #ifdef CONFIG_SERIAL_ATMEL_TTYAT
68
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
71  * UART. */
72 #define SERIAL_ATMEL_MAJOR      204
73 #define MINOR_START             154
74 #define ATMEL_DEVICENAME        "ttyAT"
75
76 #else
77
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"
83
84 #endif
85
86 #define ATMEL_ISR_PASS_LIMIT    256
87
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)
102
103  /* PDC registers */
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)
106
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)
112
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)
116
117 static int (*atmel_open_hook)(struct uart_port *);
118 static void (*atmel_close_hook)(struct uart_port *);
119
120 struct atmel_dma_buffer {
121         unsigned char   *buf;
122         dma_addr_t      dma_addr;
123         unsigned int    dma_size;
124         unsigned int    ofs;
125 };
126
127 struct atmel_uart_char {
128         u16             status;
129         u16             ch;
130 };
131
132 #define ATMEL_SERIAL_RINGSIZE 1024
133
134 /*
135  * We wrap our port structure around the generic uart_port.
136  */
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 */
143
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 */
147
148         short                   use_dma_tx;     /* enable PDC transmitter */
149         struct atmel_dma_buffer pdc_tx;         /* PDC transmitter */
150
151         struct tasklet_struct   tasklet;
152         unsigned int            irq_status;
153         unsigned int            irq_status_prev;
154
155         struct circ_buf         rx_ring;
156
157         struct serial_rs485     rs485;          /* rs485 settings */
158         unsigned int            tx_done_mask;
159 };
160
161 static struct atmel_uart_port atmel_ports[ATMEL_MAX_UART];
162 static DECLARE_BITMAP(atmel_ports_in_use, ATMEL_MAX_UART);
163
164 #ifdef SUPPORT_SYSRQ
165 static struct console atmel_console;
166 #endif
167
168 #if defined(CONFIG_OF)
169 static const struct of_device_id atmel_serial_dt_ids[] = {
170         { .compatible = "atmel,at91rm9200-usart" },
171         { .compatible = "atmel,at91sam9260-usart" },
172         { /* sentinel */ }
173 };
174
175 MODULE_DEVICE_TABLE(of, atmel_serial_dt_ids);
176 #endif
177
178 static inline struct atmel_uart_port *
179 to_atmel_uart_port(struct uart_port *uart)
180 {
181         return container_of(uart, struct atmel_uart_port, uart);
182 }
183
184 #ifdef CONFIG_SERIAL_ATMEL_PDC
185 static bool atmel_use_dma_rx(struct uart_port *port)
186 {
187         struct atmel_uart_port *atmel_port = to_atmel_uart_port(port);
188
189         return atmel_port->use_dma_rx;
190 }
191
192 static bool atmel_use_dma_tx(struct uart_port *port)
193 {
194         struct atmel_uart_port *atmel_port = to_atmel_uart_port(port);
195
196         return atmel_port->use_dma_tx;
197 }
198 #else
199 static bool atmel_use_dma_rx(struct uart_port *port)
200 {
201         return false;
202 }
203
204 static bool atmel_use_dma_tx(struct uart_port *port)
205 {
206         return false;
207 }
208 #endif
209
210 /* Enable or disable the rs485 support */
211 void atmel_config_rs485(struct uart_port *port, struct serial_rs485 *rs485conf)
212 {
213         struct atmel_uart_port *atmel_port = to_atmel_uart_port(port);
214         unsigned int mode;
215         unsigned long flags;
216
217         spin_lock_irqsave(&port->lock, flags);
218
219         /* Disable interrupts */
220         UART_PUT_IDR(port, atmel_port->tx_done_mask);
221
222         mode = UART_GET_MR(port);
223
224         /* Resetting serial mode to RS232 (0x0) */
225         mode &= ~ATMEL_US_USMODE;
226
227         atmel_port->rs485 = *rs485conf;
228
229         if (rs485conf->flags & SER_RS485_ENABLED) {
230                 dev_dbg(port->dev, "Setting UART to RS485\n");
231                 atmel_port->tx_done_mask = ATMEL_US_TXEMPTY;
232                 UART_PUT_TTGR(port, rs485conf->delay_rts_after_send);
233                 mode |= ATMEL_US_USMODE_RS485;
234         } else {
235                 dev_dbg(port->dev, "Setting UART to RS232\n");
236                 if (atmel_use_dma_tx(port))
237                         atmel_port->tx_done_mask = ATMEL_US_ENDTX |
238                                 ATMEL_US_TXBUFE;
239                 else
240                         atmel_port->tx_done_mask = ATMEL_US_TXRDY;
241         }
242         UART_PUT_MR(port, mode);
243
244         /* Enable interrupts */
245         UART_PUT_IER(port, atmel_port->tx_done_mask);
246
247         spin_unlock_irqrestore(&port->lock, flags);
248
249 }
250
251 /*
252  * Return TIOCSER_TEMT when transmitter FIFO and Shift register is empty.
253  */
254 static u_int atmel_tx_empty(struct uart_port *port)
255 {
256         return (UART_GET_CSR(port) & ATMEL_US_TXEMPTY) ? TIOCSER_TEMT : 0;
257 }
258
259 /*
260  * Set state of the modem control output lines
261  */
262 static void atmel_set_mctrl(struct uart_port *port, u_int mctrl)
263 {
264         unsigned int control = 0;
265         unsigned int mode;
266         struct atmel_uart_port *atmel_port = to_atmel_uart_port(port);
267
268 #ifdef CONFIG_ARCH_AT91RM9200
269         if (cpu_is_at91rm9200()) {
270                 /*
271                  * AT91RM9200 Errata #39: RTS0 is not internally connected
272                  * to PA21. We need to drive the pin manually.
273                  */
274                 if (port->mapbase == AT91RM9200_BASE_US0) {
275                         if (mctrl & TIOCM_RTS)
276                                 at91_set_gpio_value(AT91_PIN_PA21, 0);
277                         else
278                                 at91_set_gpio_value(AT91_PIN_PA21, 1);
279                 }
280         }
281 #endif
282
283         if (mctrl & TIOCM_RTS)
284                 control |= ATMEL_US_RTSEN;
285         else
286                 control |= ATMEL_US_RTSDIS;
287
288         if (mctrl & TIOCM_DTR)
289                 control |= ATMEL_US_DTREN;
290         else
291                 control |= ATMEL_US_DTRDIS;
292
293         UART_PUT_CR(port, control);
294
295         /* Local loopback mode? */
296         mode = UART_GET_MR(port) & ~ATMEL_US_CHMODE;
297         if (mctrl & TIOCM_LOOP)
298                 mode |= ATMEL_US_CHMODE_LOC_LOOP;
299         else
300                 mode |= ATMEL_US_CHMODE_NORMAL;
301
302         /* Resetting serial mode to RS232 (0x0) */
303         mode &= ~ATMEL_US_USMODE;
304
305         if (atmel_port->rs485.flags & SER_RS485_ENABLED) {
306                 dev_dbg(port->dev, "Setting UART to RS485\n");
307                 UART_PUT_TTGR(port, atmel_port->rs485.delay_rts_after_send);
308                 mode |= ATMEL_US_USMODE_RS485;
309         } else {
310                 dev_dbg(port->dev, "Setting UART to RS232\n");
311         }
312         UART_PUT_MR(port, mode);
313 }
314
315 /*
316  * Get state of the modem control input lines
317  */
318 static u_int atmel_get_mctrl(struct uart_port *port)
319 {
320         unsigned int status, ret = 0;
321
322         status = UART_GET_CSR(port);
323
324         /*
325          * The control signals are active low.
326          */
327         if (!(status & ATMEL_US_DCD))
328                 ret |= TIOCM_CD;
329         if (!(status & ATMEL_US_CTS))
330                 ret |= TIOCM_CTS;
331         if (!(status & ATMEL_US_DSR))
332                 ret |= TIOCM_DSR;
333         if (!(status & ATMEL_US_RI))
334                 ret |= TIOCM_RI;
335
336         return ret;
337 }
338
339 /*
340  * Stop transmitting.
341  */
342 static void atmel_stop_tx(struct uart_port *port)
343 {
344         struct atmel_uart_port *atmel_port = to_atmel_uart_port(port);
345
346         if (atmel_use_dma_tx(port)) {
347                 /* disable PDC transmit */
348                 UART_PUT_PTCR(port, ATMEL_PDC_TXTDIS);
349         }
350         /* Disable interrupts */
351         UART_PUT_IDR(port, atmel_port->tx_done_mask);
352
353         if ((atmel_port->rs485.flags & SER_RS485_ENABLED) &&
354             !(atmel_port->rs485.flags & SER_RS485_RX_DURING_TX))
355                 atmel_start_rx(port);
356 }
357
358 /*
359  * Start transmitting.
360  */
361 static void atmel_start_tx(struct uart_port *port)
362 {
363         struct atmel_uart_port *atmel_port = to_atmel_uart_port(port);
364
365         if (atmel_use_dma_tx(port)) {
366                 if (UART_GET_PTSR(port) & ATMEL_PDC_TXTEN)
367                         /* The transmitter is already running.  Yes, we
368                            really need this.*/
369                         return;
370
371                 if ((atmel_port->rs485.flags & SER_RS485_ENABLED) &&
372                     !(atmel_port->rs485.flags & SER_RS485_RX_DURING_TX))
373                         atmel_stop_rx(port);
374
375                 /* re-enable PDC transmit */
376                 UART_PUT_PTCR(port, ATMEL_PDC_TXTEN);
377         }
378         /* Enable interrupts */
379         UART_PUT_IER(port, atmel_port->tx_done_mask);
380 }
381
382 /*
383  * start receiving - port is in process of being opened.
384  */
385 static void atmel_start_rx(struct uart_port *port)
386 {
387         UART_PUT_CR(port, ATMEL_US_RSTSTA);  /* reset status and receiver */
388
389         if (atmel_use_dma_rx(port)) {
390                 /* enable PDC controller */
391                 UART_PUT_IER(port, ATMEL_US_ENDRX | ATMEL_US_TIMEOUT |
392                         port->read_status_mask);
393                 UART_PUT_PTCR(port, ATMEL_PDC_RXTEN);
394         } else {
395                 UART_PUT_IER(port, ATMEL_US_RXRDY);
396         }
397 }
398
399 /*
400  * Stop receiving - port is in process of being closed.
401  */
402 static void atmel_stop_rx(struct uart_port *port)
403 {
404         if (atmel_use_dma_rx(port)) {
405                 /* disable PDC receive */
406                 UART_PUT_PTCR(port, ATMEL_PDC_RXTDIS);
407                 UART_PUT_IDR(port, ATMEL_US_ENDRX | ATMEL_US_TIMEOUT |
408                         port->read_status_mask);
409         } else {
410                 UART_PUT_IDR(port, ATMEL_US_RXRDY);
411         }
412 }
413
414 /*
415  * Enable modem status interrupts
416  */
417 static void atmel_enable_ms(struct uart_port *port)
418 {
419         UART_PUT_IER(port, ATMEL_US_RIIC | ATMEL_US_DSRIC
420                         | ATMEL_US_DCDIC | ATMEL_US_CTSIC);
421 }
422
423 /*
424  * Control the transmission of a break signal
425  */
426 static void atmel_break_ctl(struct uart_port *port, int break_state)
427 {
428         if (break_state != 0)
429                 UART_PUT_CR(port, ATMEL_US_STTBRK);     /* start break */
430         else
431                 UART_PUT_CR(port, ATMEL_US_STPBRK);     /* stop break */
432 }
433
434 /*
435  * Stores the incoming character in the ring buffer
436  */
437 static void
438 atmel_buffer_rx_char(struct uart_port *port, unsigned int status,
439                      unsigned int ch)
440 {
441         struct atmel_uart_port *atmel_port = to_atmel_uart_port(port);
442         struct circ_buf *ring = &atmel_port->rx_ring;
443         struct atmel_uart_char *c;
444
445         if (!CIRC_SPACE(ring->head, ring->tail, ATMEL_SERIAL_RINGSIZE))
446                 /* Buffer overflow, ignore char */
447                 return;
448
449         c = &((struct atmel_uart_char *)ring->buf)[ring->head];
450         c->status       = status;
451         c->ch           = ch;
452
453         /* Make sure the character is stored before we update head. */
454         smp_wmb();
455
456         ring->head = (ring->head + 1) & (ATMEL_SERIAL_RINGSIZE - 1);
457 }
458
459 /*
460  * Deal with parity, framing and overrun errors.
461  */
462 static void atmel_pdc_rxerr(struct uart_port *port, unsigned int status)
463 {
464         /* clear error */
465         UART_PUT_CR(port, ATMEL_US_RSTSTA);
466
467         if (status & ATMEL_US_RXBRK) {
468                 /* ignore side-effect */
469                 status &= ~(ATMEL_US_PARE | ATMEL_US_FRAME);
470                 port->icount.brk++;
471         }
472         if (status & ATMEL_US_PARE)
473                 port->icount.parity++;
474         if (status & ATMEL_US_FRAME)
475                 port->icount.frame++;
476         if (status & ATMEL_US_OVRE)
477                 port->icount.overrun++;
478 }
479
480 /*
481  * Characters received (called from interrupt handler)
482  */
483 static void atmel_rx_chars(struct uart_port *port)
484 {
485         struct atmel_uart_port *atmel_port = to_atmel_uart_port(port);
486         unsigned int status, ch;
487
488         status = UART_GET_CSR(port);
489         while (status & ATMEL_US_RXRDY) {
490                 ch = UART_GET_CHAR(port);
491
492                 /*
493                  * note that the error handling code is
494                  * out of the main execution path
495                  */
496                 if (unlikely(status & (ATMEL_US_PARE | ATMEL_US_FRAME
497                                        | ATMEL_US_OVRE | ATMEL_US_RXBRK)
498                              || atmel_port->break_active)) {
499
500                         /* clear error */
501                         UART_PUT_CR(port, ATMEL_US_RSTSTA);
502
503                         if (status & ATMEL_US_RXBRK
504                             && !atmel_port->break_active) {
505                                 atmel_port->break_active = 1;
506                                 UART_PUT_IER(port, ATMEL_US_RXBRK);
507                         } else {
508                                 /*
509                                  * This is either the end-of-break
510                                  * condition or we've received at
511                                  * least one character without RXBRK
512                                  * being set. In both cases, the next
513                                  * RXBRK will indicate start-of-break.
514                                  */
515                                 UART_PUT_IDR(port, ATMEL_US_RXBRK);
516                                 status &= ~ATMEL_US_RXBRK;
517                                 atmel_port->break_active = 0;
518                         }
519                 }
520
521                 atmel_buffer_rx_char(port, status, ch);
522                 status = UART_GET_CSR(port);
523         }
524
525         tasklet_schedule(&atmel_port->tasklet);
526 }
527
528 /*
529  * Transmit characters (called from tasklet with TXRDY interrupt
530  * disabled)
531  */
532 static void atmel_tx_chars(struct uart_port *port)
533 {
534         struct circ_buf *xmit = &port->state->xmit;
535         struct atmel_uart_port *atmel_port = to_atmel_uart_port(port);
536
537         if (port->x_char && UART_GET_CSR(port) & atmel_port->tx_done_mask) {
538                 UART_PUT_CHAR(port, port->x_char);
539                 port->icount.tx++;
540                 port->x_char = 0;
541         }
542         if (uart_circ_empty(xmit) || uart_tx_stopped(port))
543                 return;
544
545         while (UART_GET_CSR(port) & atmel_port->tx_done_mask) {
546                 UART_PUT_CHAR(port, xmit->buf[xmit->tail]);
547                 xmit->tail = (xmit->tail + 1) & (UART_XMIT_SIZE - 1);
548                 port->icount.tx++;
549                 if (uart_circ_empty(xmit))
550                         break;
551         }
552
553         if (uart_circ_chars_pending(xmit) < WAKEUP_CHARS)
554                 uart_write_wakeup(port);
555
556         if (!uart_circ_empty(xmit))
557                 /* Enable interrupts */
558                 UART_PUT_IER(port, atmel_port->tx_done_mask);
559 }
560
561 /*
562  * receive interrupt handler.
563  */
564 static void
565 atmel_handle_receive(struct uart_port *port, unsigned int pending)
566 {
567         struct atmel_uart_port *atmel_port = to_atmel_uart_port(port);
568
569         if (atmel_use_dma_rx(port)) {
570                 /*
571                  * PDC receive. Just schedule the tasklet and let it
572                  * figure out the details.
573                  *
574                  * TODO: We're not handling error flags correctly at
575                  * the moment.
576                  */
577                 if (pending & (ATMEL_US_ENDRX | ATMEL_US_TIMEOUT)) {
578                         UART_PUT_IDR(port, (ATMEL_US_ENDRX
579                                                 | ATMEL_US_TIMEOUT));
580                         tasklet_schedule(&atmel_port->tasklet);
581                 }
582
583                 if (pending & (ATMEL_US_RXBRK | ATMEL_US_OVRE |
584                                 ATMEL_US_FRAME | ATMEL_US_PARE))
585                         atmel_pdc_rxerr(port, pending);
586         }
587
588         /* Interrupt receive */
589         if (pending & ATMEL_US_RXRDY)
590                 atmel_rx_chars(port);
591         else if (pending & ATMEL_US_RXBRK) {
592                 /*
593                  * End of break detected. If it came along with a
594                  * character, atmel_rx_chars will handle it.
595                  */
596                 UART_PUT_CR(port, ATMEL_US_RSTSTA);
597                 UART_PUT_IDR(port, ATMEL_US_RXBRK);
598                 atmel_port->break_active = 0;
599         }
600 }
601
602 /*
603  * transmit interrupt handler. (Transmit is IRQF_NODELAY safe)
604  */
605 static void
606 atmel_handle_transmit(struct uart_port *port, unsigned int pending)
607 {
608         struct atmel_uart_port *atmel_port = to_atmel_uart_port(port);
609
610         if (pending & atmel_port->tx_done_mask) {
611                 /* Either PDC or interrupt transmission */
612                 UART_PUT_IDR(port, atmel_port->tx_done_mask);
613                 tasklet_schedule(&atmel_port->tasklet);
614         }
615 }
616
617 /*
618  * status flags interrupt handler.
619  */
620 static void
621 atmel_handle_status(struct uart_port *port, unsigned int pending,
622                     unsigned int status)
623 {
624         struct atmel_uart_port *atmel_port = to_atmel_uart_port(port);
625
626         if (pending & (ATMEL_US_RIIC | ATMEL_US_DSRIC | ATMEL_US_DCDIC
627                                 | ATMEL_US_CTSIC)) {
628                 atmel_port->irq_status = status;
629                 tasklet_schedule(&atmel_port->tasklet);
630         }
631 }
632
633 /*
634  * Interrupt handler
635  */
636 static irqreturn_t atmel_interrupt(int irq, void *dev_id)
637 {
638         struct uart_port *port = dev_id;
639         unsigned int status, pending, pass_counter = 0;
640
641         do {
642                 status = UART_GET_CSR(port);
643                 pending = status & UART_GET_IMR(port);
644                 if (!pending)
645                         break;
646
647                 atmel_handle_receive(port, pending);
648                 atmel_handle_status(port, pending, status);
649                 atmel_handle_transmit(port, pending);
650         } while (pass_counter++ < ATMEL_ISR_PASS_LIMIT);
651
652         return pass_counter ? IRQ_HANDLED : IRQ_NONE;
653 }
654
655 /*
656  * Called from tasklet with ENDTX and TXBUFE interrupts disabled.
657  */
658 static void atmel_tx_dma(struct uart_port *port)
659 {
660         struct atmel_uart_port *atmel_port = to_atmel_uart_port(port);
661         struct circ_buf *xmit = &port->state->xmit;
662         struct atmel_dma_buffer *pdc = &atmel_port->pdc_tx;
663         int count;
664
665         /* nothing left to transmit? */
666         if (UART_GET_TCR(port))
667                 return;
668
669         xmit->tail += pdc->ofs;
670         xmit->tail &= UART_XMIT_SIZE - 1;
671
672         port->icount.tx += pdc->ofs;
673         pdc->ofs = 0;
674
675         /* more to transmit - setup next transfer */
676
677         /* disable PDC transmit */
678         UART_PUT_PTCR(port, ATMEL_PDC_TXTDIS);
679
680         if (!uart_circ_empty(xmit) && !uart_tx_stopped(port)) {
681                 dma_sync_single_for_device(port->dev,
682                                            pdc->dma_addr,
683                                            pdc->dma_size,
684                                            DMA_TO_DEVICE);
685
686                 count = CIRC_CNT_TO_END(xmit->head, xmit->tail, UART_XMIT_SIZE);
687                 pdc->ofs = count;
688
689                 UART_PUT_TPR(port, pdc->dma_addr + xmit->tail);
690                 UART_PUT_TCR(port, count);
691                 /* re-enable PDC transmit */
692                 UART_PUT_PTCR(port, ATMEL_PDC_TXTEN);
693                 /* Enable interrupts */
694                 UART_PUT_IER(port, atmel_port->tx_done_mask);
695         } else {
696                 if ((atmel_port->rs485.flags & SER_RS485_ENABLED) &&
697                     !(atmel_port->rs485.flags & SER_RS485_RX_DURING_TX)) {
698                         /* DMA done, stop TX, start RX for RS485 */
699                         atmel_start_rx(port);
700                 }
701         }
702
703         if (uart_circ_chars_pending(xmit) < WAKEUP_CHARS)
704                 uart_write_wakeup(port);
705 }
706
707 static void atmel_rx_from_ring(struct uart_port *port)
708 {
709         struct atmel_uart_port *atmel_port = to_atmel_uart_port(port);
710         struct circ_buf *ring = &atmel_port->rx_ring;
711         unsigned int flg;
712         unsigned int status;
713
714         while (ring->head != ring->tail) {
715                 struct atmel_uart_char c;
716
717                 /* Make sure c is loaded after head. */
718                 smp_rmb();
719
720                 c = ((struct atmel_uart_char *)ring->buf)[ring->tail];
721
722                 ring->tail = (ring->tail + 1) & (ATMEL_SERIAL_RINGSIZE - 1);
723
724                 port->icount.rx++;
725                 status = c.status;
726                 flg = TTY_NORMAL;
727
728                 /*
729                  * note that the error handling code is
730                  * out of the main execution path
731                  */
732                 if (unlikely(status & (ATMEL_US_PARE | ATMEL_US_FRAME
733                                        | ATMEL_US_OVRE | ATMEL_US_RXBRK))) {
734                         if (status & ATMEL_US_RXBRK) {
735                                 /* ignore side-effect */
736                                 status &= ~(ATMEL_US_PARE | ATMEL_US_FRAME);
737
738                                 port->icount.brk++;
739                                 if (uart_handle_break(port))
740                                         continue;
741                         }
742                         if (status & ATMEL_US_PARE)
743                                 port->icount.parity++;
744                         if (status & ATMEL_US_FRAME)
745                                 port->icount.frame++;
746                         if (status & ATMEL_US_OVRE)
747                                 port->icount.overrun++;
748
749                         status &= port->read_status_mask;
750
751                         if (status & ATMEL_US_RXBRK)
752                                 flg = TTY_BREAK;
753                         else if (status & ATMEL_US_PARE)
754                                 flg = TTY_PARITY;
755                         else if (status & ATMEL_US_FRAME)
756                                 flg = TTY_FRAME;
757                 }
758
759
760                 if (uart_handle_sysrq_char(port, c.ch))
761                         continue;
762
763                 uart_insert_char(port, status, ATMEL_US_OVRE, c.ch, flg);
764         }
765
766         /*
767          * Drop the lock here since it might end up calling
768          * uart_start(), which takes the lock.
769          */
770         spin_unlock(&port->lock);
771         tty_flip_buffer_push(port->state->port.tty);
772         spin_lock(&port->lock);
773 }
774
775 static void atmel_rx_from_dma(struct uart_port *port)
776 {
777         struct atmel_uart_port *atmel_port = to_atmel_uart_port(port);
778         struct tty_struct *tty = port->state->port.tty;
779         struct atmel_dma_buffer *pdc;
780         int rx_idx = atmel_port->pdc_rx_idx;
781         unsigned int head;
782         unsigned int tail;
783         unsigned int count;
784
785         do {
786                 /* Reset the UART timeout early so that we don't miss one */
787                 UART_PUT_CR(port, ATMEL_US_STTTO);
788
789                 pdc = &atmel_port->pdc_rx[rx_idx];
790                 head = UART_GET_RPR(port) - pdc->dma_addr;
791                 tail = pdc->ofs;
792
793                 /* If the PDC has switched buffers, RPR won't contain
794                  * any address within the current buffer. Since head
795                  * is unsigned, we just need a one-way comparison to
796                  * find out.
797                  *
798                  * In this case, we just need to consume the entire
799                  * buffer and resubmit it for DMA. This will clear the
800                  * ENDRX bit as well, so that we can safely re-enable
801                  * all interrupts below.
802                  */
803                 head = min(head, pdc->dma_size);
804
805                 if (likely(head != tail)) {
806                         dma_sync_single_for_cpu(port->dev, pdc->dma_addr,
807                                         pdc->dma_size, DMA_FROM_DEVICE);
808
809                         /*
810                          * head will only wrap around when we recycle
811                          * the DMA buffer, and when that happens, we
812                          * explicitly set tail to 0. So head will
813                          * always be greater than tail.
814                          */
815                         count = head - tail;
816
817                         tty_insert_flip_string(tty, pdc->buf + pdc->ofs, count);
818
819                         dma_sync_single_for_device(port->dev, pdc->dma_addr,
820                                         pdc->dma_size, DMA_FROM_DEVICE);
821
822                         port->icount.rx += count;
823                         pdc->ofs = head;
824                 }
825
826                 /*
827                  * If the current buffer is full, we need to check if
828                  * the next one contains any additional data.
829                  */
830                 if (head >= pdc->dma_size) {
831                         pdc->ofs = 0;
832                         UART_PUT_RNPR(port, pdc->dma_addr);
833                         UART_PUT_RNCR(port, pdc->dma_size);
834
835                         rx_idx = !rx_idx;
836                         atmel_port->pdc_rx_idx = rx_idx;
837                 }
838         } while (head >= pdc->dma_size);
839
840         /*
841          * Drop the lock here since it might end up calling
842          * uart_start(), which takes the lock.
843          */
844         spin_unlock(&port->lock);
845         tty_flip_buffer_push(tty);
846         spin_lock(&port->lock);
847
848         UART_PUT_IER(port, ATMEL_US_ENDRX | ATMEL_US_TIMEOUT);
849 }
850
851 /*
852  * tasklet handling tty stuff outside the interrupt handler.
853  */
854 static void atmel_tasklet_func(unsigned long data)
855 {
856         struct uart_port *port = (struct uart_port *)data;
857         struct atmel_uart_port *atmel_port = to_atmel_uart_port(port);
858         unsigned int status;
859         unsigned int status_change;
860
861         /* The interrupt handler does not take the lock */
862         spin_lock(&port->lock);
863
864         if (atmel_use_dma_tx(port))
865                 atmel_tx_dma(port);
866         else
867                 atmel_tx_chars(port);
868
869         status = atmel_port->irq_status;
870         status_change = status ^ atmel_port->irq_status_prev;
871
872         if (status_change & (ATMEL_US_RI | ATMEL_US_DSR
873                                 | ATMEL_US_DCD | ATMEL_US_CTS)) {
874                 /* TODO: All reads to CSR will clear these interrupts! */
875                 if (status_change & ATMEL_US_RI)
876                         port->icount.rng++;
877                 if (status_change & ATMEL_US_DSR)
878                         port->icount.dsr++;
879                 if (status_change & ATMEL_US_DCD)
880                         uart_handle_dcd_change(port, !(status & ATMEL_US_DCD));
881                 if (status_change & ATMEL_US_CTS)
882                         uart_handle_cts_change(port, !(status & ATMEL_US_CTS));
883
884                 wake_up_interruptible(&port->state->port.delta_msr_wait);
885
886                 atmel_port->irq_status_prev = status;
887         }
888
889         if (atmel_use_dma_rx(port))
890                 atmel_rx_from_dma(port);
891         else
892                 atmel_rx_from_ring(port);
893
894         spin_unlock(&port->lock);
895 }
896
897 /*
898  * Perform initialization and enable port for reception
899  */
900 static int atmel_startup(struct uart_port *port)
901 {
902         struct atmel_uart_port *atmel_port = to_atmel_uart_port(port);
903         struct tty_struct *tty = port->state->port.tty;
904         int retval;
905
906         /*
907          * Ensure that no interrupts are enabled otherwise when
908          * request_irq() is called we could get stuck trying to
909          * handle an unexpected interrupt
910          */
911         UART_PUT_IDR(port, -1);
912
913         /*
914          * Allocate the IRQ
915          */
916         retval = request_irq(port->irq, atmel_interrupt, IRQF_SHARED,
917                         tty ? tty->name : "atmel_serial", port);
918         if (retval) {
919                 printk("atmel_serial: atmel_startup - Can't get irq\n");
920                 return retval;
921         }
922
923         /*
924          * Initialize DMA (if necessary)
925          */
926         if (atmel_use_dma_rx(port)) {
927                 int i;
928
929                 for (i = 0; i < 2; i++) {
930                         struct atmel_dma_buffer *pdc = &atmel_port->pdc_rx[i];
931
932                         pdc->buf = kmalloc(PDC_BUFFER_SIZE, GFP_KERNEL);
933                         if (pdc->buf == NULL) {
934                                 if (i != 0) {
935                                         dma_unmap_single(port->dev,
936                                                 atmel_port->pdc_rx[0].dma_addr,
937                                                 PDC_BUFFER_SIZE,
938                                                 DMA_FROM_DEVICE);
939                                         kfree(atmel_port->pdc_rx[0].buf);
940                                 }
941                                 free_irq(port->irq, port);
942                                 return -ENOMEM;
943                         }
944                         pdc->dma_addr = dma_map_single(port->dev,
945                                                        pdc->buf,
946                                                        PDC_BUFFER_SIZE,
947                                                        DMA_FROM_DEVICE);
948                         pdc->dma_size = PDC_BUFFER_SIZE;
949                         pdc->ofs = 0;
950                 }
951
952                 atmel_port->pdc_rx_idx = 0;
953
954                 UART_PUT_RPR(port, atmel_port->pdc_rx[0].dma_addr);
955                 UART_PUT_RCR(port, PDC_BUFFER_SIZE);
956
957                 UART_PUT_RNPR(port, atmel_port->pdc_rx[1].dma_addr);
958                 UART_PUT_RNCR(port, PDC_BUFFER_SIZE);
959         }
960         if (atmel_use_dma_tx(port)) {
961                 struct atmel_dma_buffer *pdc = &atmel_port->pdc_tx;
962                 struct circ_buf *xmit = &port->state->xmit;
963
964                 pdc->buf = xmit->buf;
965                 pdc->dma_addr = dma_map_single(port->dev,
966                                                pdc->buf,
967                                                UART_XMIT_SIZE,
968                                                DMA_TO_DEVICE);
969                 pdc->dma_size = UART_XMIT_SIZE;
970                 pdc->ofs = 0;
971         }
972
973         /*
974          * If there is a specific "open" function (to register
975          * control line interrupts)
976          */
977         if (atmel_open_hook) {
978                 retval = atmel_open_hook(port);
979                 if (retval) {
980                         free_irq(port->irq, port);
981                         return retval;
982                 }
983         }
984
985         /* Save current CSR for comparison in atmel_tasklet_func() */
986         atmel_port->irq_status_prev = UART_GET_CSR(port);
987         atmel_port->irq_status = atmel_port->irq_status_prev;
988
989         /*
990          * Finally, enable the serial port
991          */
992         UART_PUT_CR(port, ATMEL_US_RSTSTA | ATMEL_US_RSTRX);
993         /* enable xmit & rcvr */
994         UART_PUT_CR(port, ATMEL_US_TXEN | ATMEL_US_RXEN);
995
996         if (atmel_use_dma_rx(port)) {
997                 /* set UART timeout */
998                 UART_PUT_RTOR(port, PDC_RX_TIMEOUT);
999                 UART_PUT_CR(port, ATMEL_US_STTTO);
1000
1001                 UART_PUT_IER(port, ATMEL_US_ENDRX | ATMEL_US_TIMEOUT);
1002                 /* enable PDC controller */
1003                 UART_PUT_PTCR(port, ATMEL_PDC_RXTEN);
1004         } else {
1005                 /* enable receive only */
1006                 UART_PUT_IER(port, ATMEL_US_RXRDY);
1007         }
1008
1009         return 0;
1010 }
1011
1012 /*
1013  * Disable the port
1014  */
1015 static void atmel_shutdown(struct uart_port *port)
1016 {
1017         struct atmel_uart_port *atmel_port = to_atmel_uart_port(port);
1018         /*
1019          * Ensure everything is stopped.
1020          */
1021         atmel_stop_rx(port);
1022         atmel_stop_tx(port);
1023
1024         /*
1025          * Shut-down the DMA.
1026          */
1027         if (atmel_use_dma_rx(port)) {
1028                 int i;
1029
1030                 for (i = 0; i < 2; i++) {
1031                         struct atmel_dma_buffer *pdc = &atmel_port->pdc_rx[i];
1032
1033                         dma_unmap_single(port->dev,
1034                                          pdc->dma_addr,
1035                                          pdc->dma_size,
1036                                          DMA_FROM_DEVICE);
1037                         kfree(pdc->buf);
1038                 }
1039         }
1040         if (atmel_use_dma_tx(port)) {
1041                 struct atmel_dma_buffer *pdc = &atmel_port->pdc_tx;
1042
1043                 dma_unmap_single(port->dev,
1044                                  pdc->dma_addr,
1045                                  pdc->dma_size,
1046                                  DMA_TO_DEVICE);
1047         }
1048
1049         /*
1050          * Disable all interrupts, port and break condition.
1051          */
1052         UART_PUT_CR(port, ATMEL_US_RSTSTA);
1053         UART_PUT_IDR(port, -1);
1054
1055         /*
1056          * Free the interrupt
1057          */
1058         free_irq(port->irq, port);
1059
1060         /*
1061          * If there is a specific "close" function (to unregister
1062          * control line interrupts)
1063          */
1064         if (atmel_close_hook)
1065                 atmel_close_hook(port);
1066 }
1067
1068 /*
1069  * Flush any TX data submitted for DMA. Called when the TX circular
1070  * buffer is reset.
1071  */
1072 static void atmel_flush_buffer(struct uart_port *port)
1073 {
1074         struct atmel_uart_port *atmel_port = to_atmel_uart_port(port);
1075
1076         if (atmel_use_dma_tx(port)) {
1077                 UART_PUT_TCR(port, 0);
1078                 atmel_port->pdc_tx.ofs = 0;
1079         }
1080 }
1081
1082 /*
1083  * Power / Clock management.
1084  */
1085 static void atmel_serial_pm(struct uart_port *port, unsigned int state,
1086                             unsigned int oldstate)
1087 {
1088         struct atmel_uart_port *atmel_port = to_atmel_uart_port(port);
1089
1090         switch (state) {
1091         case 0:
1092                 /*
1093                  * Enable the peripheral clock for this serial port.
1094                  * This is called on uart_open() or a resume event.
1095                  */
1096                 clk_enable(atmel_port->clk);
1097
1098                 /* re-enable interrupts if we disabled some on suspend */
1099                 UART_PUT_IER(port, atmel_port->backup_imr);
1100                 break;
1101         case 3:
1102                 /* Back up the interrupt mask and disable all interrupts */
1103                 atmel_port->backup_imr = UART_GET_IMR(port);
1104                 UART_PUT_IDR(port, -1);
1105
1106                 /*
1107                  * Disable the peripheral clock for this serial port.
1108                  * This is called on uart_close() or a suspend event.
1109                  */
1110                 clk_disable(atmel_port->clk);
1111                 break;
1112         default:
1113                 printk(KERN_ERR "atmel_serial: unknown pm %d\n", state);
1114         }
1115 }
1116
1117 /*
1118  * Change the port parameters
1119  */
1120 static void atmel_set_termios(struct uart_port *port, struct ktermios *termios,
1121                               struct ktermios *old)
1122 {
1123         unsigned long flags;
1124         unsigned int mode, imr, quot, baud;
1125         struct atmel_uart_port *atmel_port = to_atmel_uart_port(port);
1126
1127         /* Get current mode register */
1128         mode = UART_GET_MR(port) & ~(ATMEL_US_USCLKS | ATMEL_US_CHRL
1129                                         | ATMEL_US_NBSTOP | ATMEL_US_PAR
1130                                         | ATMEL_US_USMODE);
1131
1132         baud = uart_get_baud_rate(port, termios, old, 0, port->uartclk / 16);
1133         quot = uart_get_divisor(port, baud);
1134
1135         if (quot > 65535) {     /* BRGR is 16-bit, so switch to slower clock */
1136                 quot /= 8;
1137                 mode |= ATMEL_US_USCLKS_MCK_DIV8;
1138         }
1139
1140         /* byte size */
1141         switch (termios->c_cflag & CSIZE) {
1142         case CS5:
1143                 mode |= ATMEL_US_CHRL_5;
1144                 break;
1145         case CS6:
1146                 mode |= ATMEL_US_CHRL_6;
1147                 break;
1148         case CS7:
1149                 mode |= ATMEL_US_CHRL_7;
1150                 break;
1151         default:
1152                 mode |= ATMEL_US_CHRL_8;
1153                 break;
1154         }
1155
1156         /* stop bits */
1157         if (termios->c_cflag & CSTOPB)
1158                 mode |= ATMEL_US_NBSTOP_2;
1159
1160         /* parity */
1161         if (termios->c_cflag & PARENB) {
1162                 /* Mark or Space parity */
1163                 if (termios->c_cflag & CMSPAR) {
1164                         if (termios->c_cflag & PARODD)
1165                                 mode |= ATMEL_US_PAR_MARK;
1166                         else
1167                                 mode |= ATMEL_US_PAR_SPACE;
1168                 } else if (termios->c_cflag & PARODD)
1169                         mode |= ATMEL_US_PAR_ODD;
1170                 else
1171                         mode |= ATMEL_US_PAR_EVEN;
1172         } else
1173                 mode |= ATMEL_US_PAR_NONE;
1174
1175         /* hardware handshake (RTS/CTS) */
1176         if (termios->c_cflag & CRTSCTS)
1177                 mode |= ATMEL_US_USMODE_HWHS;
1178         else
1179                 mode |= ATMEL_US_USMODE_NORMAL;
1180
1181         spin_lock_irqsave(&port->lock, flags);
1182
1183         port->read_status_mask = ATMEL_US_OVRE;
1184         if (termios->c_iflag & INPCK)
1185                 port->read_status_mask |= (ATMEL_US_FRAME | ATMEL_US_PARE);
1186         if (termios->c_iflag & (BRKINT | PARMRK))
1187                 port->read_status_mask |= ATMEL_US_RXBRK;
1188
1189         if (atmel_use_dma_rx(port))
1190                 /* need to enable error interrupts */
1191                 UART_PUT_IER(port, port->read_status_mask);
1192
1193         /*
1194          * Characters to ignore
1195          */
1196         port->ignore_status_mask = 0;
1197         if (termios->c_iflag & IGNPAR)
1198                 port->ignore_status_mask |= (ATMEL_US_FRAME | ATMEL_US_PARE);
1199         if (termios->c_iflag & IGNBRK) {
1200                 port->ignore_status_mask |= ATMEL_US_RXBRK;
1201                 /*
1202                  * If we're ignoring parity and break indicators,
1203                  * ignore overruns too (for real raw support).
1204                  */
1205                 if (termios->c_iflag & IGNPAR)
1206                         port->ignore_status_mask |= ATMEL_US_OVRE;
1207         }
1208         /* TODO: Ignore all characters if CREAD is set.*/
1209
1210         /* update the per-port timeout */
1211         uart_update_timeout(port, termios->c_cflag, baud);
1212
1213         /*
1214          * save/disable interrupts. The tty layer will ensure that the
1215          * transmitter is empty if requested by the caller, so there's
1216          * no need to wait for it here.
1217          */
1218         imr = UART_GET_IMR(port);
1219         UART_PUT_IDR(port, -1);
1220
1221         /* disable receiver and transmitter */
1222         UART_PUT_CR(port, ATMEL_US_TXDIS | ATMEL_US_RXDIS);
1223
1224         /* Resetting serial mode to RS232 (0x0) */
1225         mode &= ~ATMEL_US_USMODE;
1226
1227         if (atmel_port->rs485.flags & SER_RS485_ENABLED) {
1228                 dev_dbg(port->dev, "Setting UART to RS485\n");
1229                 UART_PUT_TTGR(port, atmel_port->rs485.delay_rts_after_send);
1230                 mode |= ATMEL_US_USMODE_RS485;
1231         } else {
1232                 dev_dbg(port->dev, "Setting UART to RS232\n");
1233         }
1234
1235         /* set the parity, stop bits and data size */
1236         UART_PUT_MR(port, mode);
1237
1238         /* set the baud rate */
1239         UART_PUT_BRGR(port, quot);
1240         UART_PUT_CR(port, ATMEL_US_RSTSTA | ATMEL_US_RSTRX);
1241         UART_PUT_CR(port, ATMEL_US_TXEN | ATMEL_US_RXEN);
1242
1243         /* restore interrupts */
1244         UART_PUT_IER(port, imr);
1245
1246         /* CTS flow-control and modem-status interrupts */
1247         if (UART_ENABLE_MS(port, termios->c_cflag))
1248                 port->ops->enable_ms(port);
1249
1250         spin_unlock_irqrestore(&port->lock, flags);
1251 }
1252
1253 static void atmel_set_ldisc(struct uart_port *port, int new)
1254 {
1255         int line = port->line;
1256
1257         if (line >= port->state->port.tty->driver->num)
1258                 return;
1259
1260         if (port->state->port.tty->ldisc->ops->num == N_PPS) {
1261                 port->flags |= UPF_HARDPPS_CD;
1262                 atmel_enable_ms(port);
1263         } else {
1264                 port->flags &= ~UPF_HARDPPS_CD;
1265         }
1266 }
1267
1268 /*
1269  * Return string describing the specified port
1270  */
1271 static const char *atmel_type(struct uart_port *port)
1272 {
1273         return (port->type == PORT_ATMEL) ? "ATMEL_SERIAL" : NULL;
1274 }
1275
1276 /*
1277  * Release the memory region(s) being used by 'port'.
1278  */
1279 static void atmel_release_port(struct uart_port *port)
1280 {
1281         struct platform_device *pdev = to_platform_device(port->dev);
1282         int size = pdev->resource[0].end - pdev->resource[0].start + 1;
1283
1284         release_mem_region(port->mapbase, size);
1285
1286         if (port->flags & UPF_IOREMAP) {
1287                 iounmap(port->membase);
1288                 port->membase = NULL;
1289         }
1290 }
1291
1292 /*
1293  * Request the memory region(s) being used by 'port'.
1294  */
1295 static int atmel_request_port(struct uart_port *port)
1296 {
1297         struct platform_device *pdev = to_platform_device(port->dev);
1298         int size = pdev->resource[0].end - pdev->resource[0].start + 1;
1299
1300         if (!request_mem_region(port->mapbase, size, "atmel_serial"))
1301                 return -EBUSY;
1302
1303         if (port->flags & UPF_IOREMAP) {
1304                 port->membase = ioremap(port->mapbase, size);
1305                 if (port->membase == NULL) {
1306                         release_mem_region(port->mapbase, size);
1307                         return -ENOMEM;
1308                 }
1309         }
1310
1311         return 0;
1312 }
1313
1314 /*
1315  * Configure/autoconfigure the port.
1316  */
1317 static void atmel_config_port(struct uart_port *port, int flags)
1318 {
1319         if (flags & UART_CONFIG_TYPE) {
1320                 port->type = PORT_ATMEL;
1321                 atmel_request_port(port);
1322         }
1323 }
1324
1325 /*
1326  * Verify the new serial_struct (for TIOCSSERIAL).
1327  */
1328 static int atmel_verify_port(struct uart_port *port, struct serial_struct *ser)
1329 {
1330         int ret = 0;
1331         if (ser->type != PORT_UNKNOWN && ser->type != PORT_ATMEL)
1332                 ret = -EINVAL;
1333         if (port->irq != ser->irq)
1334                 ret = -EINVAL;
1335         if (ser->io_type != SERIAL_IO_MEM)
1336                 ret = -EINVAL;
1337         if (port->uartclk / 16 != ser->baud_base)
1338                 ret = -EINVAL;
1339         if ((void *)port->mapbase != ser->iomem_base)
1340                 ret = -EINVAL;
1341         if (port->iobase != ser->port)
1342                 ret = -EINVAL;
1343         if (ser->hub6 != 0)
1344                 ret = -EINVAL;
1345         return ret;
1346 }
1347
1348 #ifdef CONFIG_CONSOLE_POLL
1349 static int atmel_poll_get_char(struct uart_port *port)
1350 {
1351         while (!(UART_GET_CSR(port) & ATMEL_US_RXRDY))
1352                 cpu_relax();
1353
1354         return UART_GET_CHAR(port);
1355 }
1356
1357 static void atmel_poll_put_char(struct uart_port *port, unsigned char ch)
1358 {
1359         while (!(UART_GET_CSR(port) & ATMEL_US_TXRDY))
1360                 cpu_relax();
1361
1362         UART_PUT_CHAR(port, ch);
1363 }
1364 #endif
1365
1366 static int
1367 atmel_ioctl(struct uart_port *port, unsigned int cmd, unsigned long arg)
1368 {
1369         struct serial_rs485 rs485conf;
1370
1371         switch (cmd) {
1372         case TIOCSRS485:
1373                 if (copy_from_user(&rs485conf, (struct serial_rs485 *) arg,
1374                                         sizeof(rs485conf)))
1375                         return -EFAULT;
1376
1377                 atmel_config_rs485(port, &rs485conf);
1378                 break;
1379
1380         case TIOCGRS485:
1381                 if (copy_to_user((struct serial_rs485 *) arg,
1382                                         &(to_atmel_uart_port(port)->rs485),
1383                                         sizeof(rs485conf)))
1384                         return -EFAULT;
1385                 break;
1386
1387         default:
1388                 return -ENOIOCTLCMD;
1389         }
1390         return 0;
1391 }
1392
1393
1394
1395 static struct uart_ops atmel_pops = {
1396         .tx_empty       = atmel_tx_empty,
1397         .set_mctrl      = atmel_set_mctrl,
1398         .get_mctrl      = atmel_get_mctrl,
1399         .stop_tx        = atmel_stop_tx,
1400         .start_tx       = atmel_start_tx,
1401         .stop_rx        = atmel_stop_rx,
1402         .enable_ms      = atmel_enable_ms,
1403         .break_ctl      = atmel_break_ctl,
1404         .startup        = atmel_startup,
1405         .shutdown       = atmel_shutdown,
1406         .flush_buffer   = atmel_flush_buffer,
1407         .set_termios    = atmel_set_termios,
1408         .set_ldisc      = atmel_set_ldisc,
1409         .type           = atmel_type,
1410         .release_port   = atmel_release_port,
1411         .request_port   = atmel_request_port,
1412         .config_port    = atmel_config_port,
1413         .verify_port    = atmel_verify_port,
1414         .pm             = atmel_serial_pm,
1415         .ioctl          = atmel_ioctl,
1416 #ifdef CONFIG_CONSOLE_POLL
1417         .poll_get_char  = atmel_poll_get_char,
1418         .poll_put_char  = atmel_poll_put_char,
1419 #endif
1420 };
1421
1422 static void __devinit atmel_of_init_port(struct atmel_uart_port *atmel_port,
1423                                          struct device_node *np)
1424 {
1425         u32 rs485_delay[2];
1426
1427         /* DMA/PDC usage specification */
1428         if (of_get_property(np, "atmel,use-dma-rx", NULL))
1429                 atmel_port->use_dma_rx  = 1;
1430         else
1431                 atmel_port->use_dma_rx  = 0;
1432         if (of_get_property(np, "atmel,use-dma-tx", NULL))
1433                 atmel_port->use_dma_tx  = 1;
1434         else
1435                 atmel_port->use_dma_tx  = 0;
1436
1437         /* rs485 properties */
1438         if (of_property_read_u32_array(np, "rs485-rts-delay",
1439                                             rs485_delay, 2) == 0) {
1440                 struct serial_rs485 *rs485conf = &atmel_port->rs485;
1441
1442                 rs485conf->delay_rts_before_send = rs485_delay[0];
1443                 rs485conf->delay_rts_after_send = rs485_delay[1];
1444                 rs485conf->flags = 0;
1445
1446                 if (of_get_property(np, "rs485-rx-during-tx", NULL))
1447                         rs485conf->flags |= SER_RS485_RX_DURING_TX;
1448
1449                 if (of_get_property(np, "linux,rs485-enabled-at-boot-time", NULL))
1450                         rs485conf->flags |= SER_RS485_ENABLED;
1451         }
1452 }
1453
1454 /*
1455  * Configure the port from the platform device resource info.
1456  */
1457 static void __devinit atmel_init_port(struct atmel_uart_port *atmel_port,
1458                                       struct platform_device *pdev)
1459 {
1460         struct uart_port *port = &atmel_port->uart;
1461         struct atmel_uart_data *pdata = pdev->dev.platform_data;
1462
1463         if (pdev->dev.of_node) {
1464                 atmel_of_init_port(atmel_port, pdev->dev.of_node);
1465         } else {
1466                 atmel_port->use_dma_rx  = pdata->use_dma_rx;
1467                 atmel_port->use_dma_tx  = pdata->use_dma_tx;
1468                 atmel_port->rs485       = pdata->rs485;
1469         }
1470
1471         port->iotype            = UPIO_MEM;
1472         port->flags             = UPF_BOOT_AUTOCONF;
1473         port->ops               = &atmel_pops;
1474         port->fifosize          = 1;
1475         port->dev               = &pdev->dev;
1476         port->mapbase   = pdev->resource[0].start;
1477         port->irq       = pdev->resource[1].start;
1478
1479         tasklet_init(&atmel_port->tasklet, atmel_tasklet_func,
1480                         (unsigned long)port);
1481
1482         memset(&atmel_port->rx_ring, 0, sizeof(atmel_port->rx_ring));
1483
1484         if (pdata && pdata->regs) {
1485                 /* Already mapped by setup code */
1486                 port->membase = pdata->regs;
1487         } else {
1488                 port->flags     |= UPF_IOREMAP;
1489                 port->membase   = NULL;
1490         }
1491
1492         /* for console, the clock could already be configured */
1493         if (!atmel_port->clk) {
1494                 atmel_port->clk = clk_get(&pdev->dev, "usart");
1495                 clk_enable(atmel_port->clk);
1496                 port->uartclk = clk_get_rate(atmel_port->clk);
1497                 clk_disable(atmel_port->clk);
1498                 /* only enable clock when USART is in use */
1499         }
1500
1501         /* Use TXEMPTY for interrupt when rs485 else TXRDY or ENDTX|TXBUFE */
1502         if (atmel_port->rs485.flags & SER_RS485_ENABLED)
1503                 atmel_port->tx_done_mask = ATMEL_US_TXEMPTY;
1504         else if (atmel_use_dma_tx(port)) {
1505                 port->fifosize = PDC_BUFFER_SIZE;
1506                 atmel_port->tx_done_mask = ATMEL_US_ENDTX | ATMEL_US_TXBUFE;
1507         } else {
1508                 atmel_port->tx_done_mask = ATMEL_US_TXRDY;
1509         }
1510 }
1511
1512 /*
1513  * Register board-specific modem-control line handlers.
1514  */
1515 void __init atmel_register_uart_fns(struct atmel_port_fns *fns)
1516 {
1517         if (fns->enable_ms)
1518                 atmel_pops.enable_ms = fns->enable_ms;
1519         if (fns->get_mctrl)
1520                 atmel_pops.get_mctrl = fns->get_mctrl;
1521         if (fns->set_mctrl)
1522                 atmel_pops.set_mctrl = fns->set_mctrl;
1523         atmel_open_hook         = fns->open;
1524         atmel_close_hook        = fns->close;
1525         atmel_pops.pm           = fns->pm;
1526         atmel_pops.set_wake     = fns->set_wake;
1527 }
1528
1529 #ifdef CONFIG_SERIAL_ATMEL_CONSOLE
1530 static void atmel_console_putchar(struct uart_port *port, int ch)
1531 {
1532         while (!(UART_GET_CSR(port) & ATMEL_US_TXRDY))
1533                 cpu_relax();
1534         UART_PUT_CHAR(port, ch);
1535 }
1536
1537 /*
1538  * Interrupts are disabled on entering
1539  */
1540 static void atmel_console_write(struct console *co, const char *s, u_int count)
1541 {
1542         struct uart_port *port = &atmel_ports[co->index].uart;
1543         struct atmel_uart_port *atmel_port = to_atmel_uart_port(port);
1544         unsigned int status, imr;
1545         unsigned int pdc_tx;
1546
1547         /*
1548          * First, save IMR and then disable interrupts
1549          */
1550         imr = UART_GET_IMR(port);
1551         UART_PUT_IDR(port, ATMEL_US_RXRDY | atmel_port->tx_done_mask);
1552
1553         /* Store PDC transmit status and disable it */
1554         pdc_tx = UART_GET_PTSR(port) & ATMEL_PDC_TXTEN;
1555         UART_PUT_PTCR(port, ATMEL_PDC_TXTDIS);
1556
1557         uart_console_write(port, s, count, atmel_console_putchar);
1558
1559         /*
1560          * Finally, wait for transmitter to become empty
1561          * and restore IMR
1562          */
1563         do {
1564                 status = UART_GET_CSR(port);
1565         } while (!(status & ATMEL_US_TXRDY));
1566
1567         /* Restore PDC transmit status */
1568         if (pdc_tx)
1569                 UART_PUT_PTCR(port, ATMEL_PDC_TXTEN);
1570
1571         /* set interrupts back the way they were */
1572         UART_PUT_IER(port, imr);
1573 }
1574
1575 /*
1576  * If the port was already initialised (eg, by a boot loader),
1577  * try to determine the current setup.
1578  */
1579 static void __init atmel_console_get_options(struct uart_port *port, int *baud,
1580                                              int *parity, int *bits)
1581 {
1582         unsigned int mr, quot;
1583
1584         /*
1585          * If the baud rate generator isn't running, the port wasn't
1586          * initialized by the boot loader.
1587          */
1588         quot = UART_GET_BRGR(port) & ATMEL_US_CD;
1589         if (!quot)
1590                 return;
1591
1592         mr = UART_GET_MR(port) & ATMEL_US_CHRL;
1593         if (mr == ATMEL_US_CHRL_8)
1594                 *bits = 8;
1595         else
1596                 *bits = 7;
1597
1598         mr = UART_GET_MR(port) & ATMEL_US_PAR;
1599         if (mr == ATMEL_US_PAR_EVEN)
1600                 *parity = 'e';
1601         else if (mr == ATMEL_US_PAR_ODD)
1602                 *parity = 'o';
1603
1604         /*
1605          * The serial core only rounds down when matching this to a
1606          * supported baud rate. Make sure we don't end up slightly
1607          * lower than one of those, as it would make us fall through
1608          * to a much lower baud rate than we really want.
1609          */
1610         *baud = port->uartclk / (16 * (quot - 1));
1611 }
1612
1613 static int __init atmel_console_setup(struct console *co, char *options)
1614 {
1615         struct uart_port *port = &atmel_ports[co->index].uart;
1616         int baud = 115200;
1617         int bits = 8;
1618         int parity = 'n';
1619         int flow = 'n';
1620
1621         if (port->membase == NULL) {
1622                 /* Port not initialized yet - delay setup */
1623                 return -ENODEV;
1624         }
1625
1626         clk_enable(atmel_ports[co->index].clk);
1627
1628         UART_PUT_IDR(port, -1);
1629         UART_PUT_CR(port, ATMEL_US_RSTSTA | ATMEL_US_RSTRX);
1630         UART_PUT_CR(port, ATMEL_US_TXEN | ATMEL_US_RXEN);
1631
1632         if (options)
1633                 uart_parse_options(options, &baud, &parity, &bits, &flow);
1634         else
1635                 atmel_console_get_options(port, &baud, &parity, &bits);
1636
1637         return uart_set_options(port, co, baud, parity, bits, flow);
1638 }
1639
1640 static struct uart_driver atmel_uart;
1641
1642 static struct console atmel_console = {
1643         .name           = ATMEL_DEVICENAME,
1644         .write          = atmel_console_write,
1645         .device         = uart_console_device,
1646         .setup          = atmel_console_setup,
1647         .flags          = CON_PRINTBUFFER,
1648         .index          = -1,
1649         .data           = &atmel_uart,
1650 };
1651
1652 #define ATMEL_CONSOLE_DEVICE    (&atmel_console)
1653
1654 /*
1655  * Early console initialization (before VM subsystem initialized).
1656  */
1657 static int __init atmel_console_init(void)
1658 {
1659         if (atmel_default_console_device) {
1660                 struct atmel_uart_data *pdata =
1661                         atmel_default_console_device->dev.platform_data;
1662                 int id = pdata->num;
1663                 struct atmel_uart_port *port = &atmel_ports[id];
1664
1665                 port->backup_imr = 0;
1666                 port->uart.line = id;
1667
1668                 add_preferred_console(ATMEL_DEVICENAME, id, NULL);
1669                 atmel_init_port(port, atmel_default_console_device);
1670                 register_console(&atmel_console);
1671         }
1672
1673         return 0;
1674 }
1675
1676 console_initcall(atmel_console_init);
1677
1678 /*
1679  * Late console initialization.
1680  */
1681 static int __init atmel_late_console_init(void)
1682 {
1683         if (atmel_default_console_device
1684             && !(atmel_console.flags & CON_ENABLED))
1685                 register_console(&atmel_console);
1686
1687         return 0;
1688 }
1689
1690 core_initcall(atmel_late_console_init);
1691
1692 static inline bool atmel_is_console_port(struct uart_port *port)
1693 {
1694         return port->cons && port->cons->index == port->line;
1695 }
1696
1697 #else
1698 #define ATMEL_CONSOLE_DEVICE    NULL
1699
1700 static inline bool atmel_is_console_port(struct uart_port *port)
1701 {
1702         return false;
1703 }
1704 #endif
1705
1706 static struct uart_driver atmel_uart = {
1707         .owner          = THIS_MODULE,
1708         .driver_name    = "atmel_serial",
1709         .dev_name       = ATMEL_DEVICENAME,
1710         .major          = SERIAL_ATMEL_MAJOR,
1711         .minor          = MINOR_START,
1712         .nr             = ATMEL_MAX_UART,
1713         .cons           = ATMEL_CONSOLE_DEVICE,
1714 };
1715
1716 #ifdef CONFIG_PM
1717 static bool atmel_serial_clk_will_stop(void)
1718 {
1719 #ifdef CONFIG_ARCH_AT91
1720         return at91_suspend_entering_slow_clock();
1721 #else
1722         return false;
1723 #endif
1724 }
1725
1726 static int atmel_serial_suspend(struct platform_device *pdev,
1727                                 pm_message_t state)
1728 {
1729         struct uart_port *port = platform_get_drvdata(pdev);
1730         struct atmel_uart_port *atmel_port = to_atmel_uart_port(port);
1731
1732         if (atmel_is_console_port(port) && console_suspend_enabled) {
1733                 /* Drain the TX shifter */
1734                 while (!(UART_GET_CSR(port) & ATMEL_US_TXEMPTY))
1735                         cpu_relax();
1736         }
1737
1738         /* we can not wake up if we're running on slow clock */
1739         atmel_port->may_wakeup = device_may_wakeup(&pdev->dev);
1740         if (atmel_serial_clk_will_stop())
1741                 device_set_wakeup_enable(&pdev->dev, 0);
1742
1743         uart_suspend_port(&atmel_uart, port);
1744
1745         return 0;
1746 }
1747
1748 static int atmel_serial_resume(struct platform_device *pdev)
1749 {
1750         struct uart_port *port = platform_get_drvdata(pdev);
1751         struct atmel_uart_port *atmel_port = to_atmel_uart_port(port);
1752
1753         uart_resume_port(&atmel_uart, port);
1754         device_set_wakeup_enable(&pdev->dev, atmel_port->may_wakeup);
1755
1756         return 0;
1757 }
1758 #else
1759 #define atmel_serial_suspend NULL
1760 #define atmel_serial_resume NULL
1761 #endif
1762
1763 static int __devinit atmel_serial_probe(struct platform_device *pdev)
1764 {
1765         struct atmel_uart_port *port;
1766         struct device_node *np = pdev->dev.of_node;
1767         struct atmel_uart_data *pdata = pdev->dev.platform_data;
1768         void *data;
1769         int ret = -ENODEV;
1770
1771         BUILD_BUG_ON(ATMEL_SERIAL_RINGSIZE & (ATMEL_SERIAL_RINGSIZE - 1));
1772
1773         if (np)
1774                 ret = of_alias_get_id(np, "serial");
1775         else
1776                 if (pdata)
1777                         ret = pdata->num;
1778
1779         if (ret < 0)
1780                 /* port id not found in platform data nor device-tree aliases:
1781                  * auto-enumerate it */
1782                 ret = find_first_zero_bit(atmel_ports_in_use, ATMEL_MAX_UART);
1783
1784         if (ret >= ATMEL_MAX_UART) {
1785                 ret = -ENODEV;
1786                 goto err;
1787         }
1788
1789         if (test_and_set_bit(ret, atmel_ports_in_use)) {
1790                 /* port already in use */
1791                 ret = -EBUSY;
1792                 goto err;
1793         }
1794
1795         port = &atmel_ports[ret];
1796         port->backup_imr = 0;
1797         port->uart.line = ret;
1798
1799         atmel_init_port(port, pdev);
1800
1801         if (!atmel_use_dma_rx(&port->uart)) {
1802                 ret = -ENOMEM;
1803                 data = kmalloc(sizeof(struct atmel_uart_char)
1804                                 * ATMEL_SERIAL_RINGSIZE, GFP_KERNEL);
1805                 if (!data)
1806                         goto err_alloc_ring;
1807                 port->rx_ring.buf = data;
1808         }
1809
1810         ret = uart_add_one_port(&atmel_uart, &port->uart);
1811         if (ret)
1812                 goto err_add_port;
1813
1814 #ifdef CONFIG_SERIAL_ATMEL_CONSOLE
1815         if (atmel_is_console_port(&port->uart)
1816                         && ATMEL_CONSOLE_DEVICE->flags & CON_ENABLED) {
1817                 /*
1818                  * The serial core enabled the clock for us, so undo
1819                  * the clk_enable() in atmel_console_setup()
1820                  */
1821                 clk_disable(port->clk);
1822         }
1823 #endif
1824
1825         device_init_wakeup(&pdev->dev, 1);
1826         platform_set_drvdata(pdev, port);
1827
1828         if (port->rs485.flags & SER_RS485_ENABLED) {
1829                 UART_PUT_MR(&port->uart, ATMEL_US_USMODE_NORMAL);
1830                 UART_PUT_CR(&port->uart, ATMEL_US_RTSEN);
1831         }
1832
1833         return 0;
1834
1835 err_add_port:
1836         kfree(port->rx_ring.buf);
1837         port->rx_ring.buf = NULL;
1838 err_alloc_ring:
1839         if (!atmel_is_console_port(&port->uart)) {
1840                 clk_put(port->clk);
1841                 port->clk = NULL;
1842         }
1843 err:
1844         return ret;
1845 }
1846
1847 static int __devexit atmel_serial_remove(struct platform_device *pdev)
1848 {
1849         struct uart_port *port = platform_get_drvdata(pdev);
1850         struct atmel_uart_port *atmel_port = to_atmel_uart_port(port);
1851         int ret = 0;
1852
1853         device_init_wakeup(&pdev->dev, 0);
1854         platform_set_drvdata(pdev, NULL);
1855
1856         ret = uart_remove_one_port(&atmel_uart, port);
1857
1858         tasklet_kill(&atmel_port->tasklet);
1859         kfree(atmel_port->rx_ring.buf);
1860
1861         /* "port" is allocated statically, so we shouldn't free it */
1862
1863         clear_bit(port->line, atmel_ports_in_use);
1864
1865         clk_put(atmel_port->clk);
1866
1867         return ret;
1868 }
1869
1870 static struct platform_driver atmel_serial_driver = {
1871         .probe          = atmel_serial_probe,
1872         .remove         = __devexit_p(atmel_serial_remove),
1873         .suspend        = atmel_serial_suspend,
1874         .resume         = atmel_serial_resume,
1875         .driver         = {
1876                 .name   = "atmel_usart",
1877                 .owner  = THIS_MODULE,
1878                 .of_match_table = of_match_ptr(atmel_serial_dt_ids),
1879         },
1880 };
1881
1882 static int __init atmel_serial_init(void)
1883 {
1884         int ret;
1885
1886         ret = uart_register_driver(&atmel_uart);
1887         if (ret)
1888                 return ret;
1889
1890         ret = platform_driver_register(&atmel_serial_driver);
1891         if (ret)
1892                 uart_unregister_driver(&atmel_uart);
1893
1894         return ret;
1895 }
1896
1897 static void __exit atmel_serial_exit(void)
1898 {
1899         platform_driver_unregister(&atmel_serial_driver);
1900         uart_unregister_driver(&atmel_uart);
1901 }
1902
1903 module_init(atmel_serial_init);
1904 module_exit(atmel_serial_exit);
1905
1906 MODULE_AUTHOR("Rick Bronson");
1907 MODULE_DESCRIPTION("Atmel AT91 / AT32 serial port driver");
1908 MODULE_LICENSE("GPL");
1909 MODULE_ALIAS("platform:atmel_usart");