devpts: Change the owner of /dev/pts/ptmx to the mounter of /dev/pts
[linux-2.6-block.git] / drivers / tty / serial / atmel_serial.c
CommitLineData
1e6c9c28 1/*
7192f92c 2 * Driver for Atmel AT91 / AT32 Serial ports
1e6c9c28
AV
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 *
a6670615
CC
8 * DMA support added by Chip Coldwell.
9 *
1e6c9c28
AV
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 */
1e6c9c28
AV
25#include <linux/tty.h>
26#include <linux/ioport.h>
27#include <linux/slab.h>
28#include <linux/init.h>
29#include <linux/serial.h>
afefc415 30#include <linux/clk.h>
1e6c9c28
AV
31#include <linux/console.h>
32#include <linux/sysrq.h>
33#include <linux/tty_flip.h>
afefc415 34#include <linux/platform_device.h>
5fbe46b6
NF
35#include <linux/of.h>
36#include <linux/of_device.h>
354e57f3 37#include <linux/of_gpio.h>
a6670615 38#include <linux/dma-mapping.h>
6b997bab 39#include <linux/dmaengine.h>
93a3ddc2 40#include <linux/atmel_pdc.h>
fa3218d8 41#include <linux/atmel_serial.h>
e8faff73 42#include <linux/uaccess.h>
bcd2360c 43#include <linux/platform_data/atmel.h>
2e68c22f 44#include <linux/timer.h>
354e57f3 45#include <linux/gpio.h>
e0b0baad
RG
46#include <linux/gpio/consumer.h>
47#include <linux/err.h>
ab5e4e41 48#include <linux/irq.h>
2c7af5ba 49#include <linux/suspend.h>
1e6c9c28
AV
50
51#include <asm/io.h>
f7512e7c 52#include <asm/ioctls.h>
1e6c9c28 53
a6670615
CC
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
b5199d46
CP
58/* The minium number of data FIFOs should be able to contain */
59#define ATMEL_MIN_FIFO_SIZE 8
60/*
61 * These two offsets are substracted from the RX FIFO size to define the RTS
62 * high and low thresholds
63 */
64#define ATMEL_RTS_HIGH_OFFSET 16
65#define ATMEL_RTS_LOW_OFFSET 20
66
749c4e60 67#if defined(CONFIG_SERIAL_ATMEL_CONSOLE) && defined(CONFIG_MAGIC_SYSRQ)
1e6c9c28
AV
68#define SUPPORT_SYSRQ
69#endif
70
71#include <linux/serial_core.h>
72
e0b0baad
RG
73#include "serial_mctrl_gpio.h"
74
e8faff73
CS
75static void atmel_start_rx(struct uart_port *port);
76static void atmel_stop_rx(struct uart_port *port);
77
749c4e60 78#ifdef CONFIG_SERIAL_ATMEL_TTYAT
1e6c9c28
AV
79
80/* Use device name ttyAT, major 204 and minor 154-169. This is necessary if we
81 * should coexist with the 8250 driver, such as if we have an external 16C550
82 * UART. */
7192f92c 83#define SERIAL_ATMEL_MAJOR 204
1e6c9c28 84#define MINOR_START 154
7192f92c 85#define ATMEL_DEVICENAME "ttyAT"
1e6c9c28
AV
86
87#else
88
89/* Use device name ttyS, major 4, minor 64-68. This is the usual serial port
90 * name, but it is legally reserved for the 8250 driver. */
7192f92c 91#define SERIAL_ATMEL_MAJOR TTY_MAJOR
1e6c9c28 92#define MINOR_START 64
7192f92c 93#define ATMEL_DEVICENAME "ttyS"
1e6c9c28
AV
94
95#endif
96
7192f92c 97#define ATMEL_ISR_PASS_LIMIT 256
1e6c9c28 98
a6670615
CC
99struct atmel_dma_buffer {
100 unsigned char *buf;
101 dma_addr_t dma_addr;
102 unsigned int dma_size;
103 unsigned int ofs;
104};
105
1ecc26bd
RB
106struct atmel_uart_char {
107 u16 status;
108 u16 ch;
109};
110
637ba54f
LD
111/*
112 * Be careful, the real size of the ring buffer is
113 * sizeof(atmel_uart_char) * ATMEL_SERIAL_RINGSIZE. It means that ring buffer
114 * can contain up to 1024 characters in PIO mode and up to 4096 characters in
115 * DMA mode.
116 */
1ecc26bd
RB
117#define ATMEL_SERIAL_RINGSIZE 1024
118
9af92fbf
AB
119/*
120 * at91: 6 USARTs and one DBGU port (SAM9260)
121 * avr32: 4
122 */
123#define ATMEL_MAX_UART 7
124
afefc415
AV
125/*
126 * We wrap our port structure around the generic uart_port.
127 */
7192f92c 128struct atmel_uart_port {
afefc415
AV
129 struct uart_port uart; /* uart */
130 struct clk *clk; /* uart clock */
f05596db
AS
131 int may_wakeup; /* cached value of device_may_wakeup for times we need to disable it */
132 u32 backup_imr; /* IMR saved during suspend */
9e6077bd 133 int break_active; /* break being received */
1ecc26bd 134
34df42f5 135 bool use_dma_rx; /* enable DMA receiver */
64e22ebe 136 bool use_pdc_rx; /* enable PDC receiver */
a6670615
CC
137 short pdc_rx_idx; /* current PDC RX buffer */
138 struct atmel_dma_buffer pdc_rx[2]; /* PDC receier */
139
08f738be 140 bool use_dma_tx; /* enable DMA transmitter */
64e22ebe 141 bool use_pdc_tx; /* enable PDC transmitter */
a6670615
CC
142 struct atmel_dma_buffer pdc_tx; /* PDC transmitter */
143
08f738be 144 spinlock_t lock_tx; /* port lock */
34df42f5 145 spinlock_t lock_rx; /* port lock */
08f738be 146 struct dma_chan *chan_tx;
34df42f5 147 struct dma_chan *chan_rx;
08f738be 148 struct dma_async_tx_descriptor *desc_tx;
34df42f5 149 struct dma_async_tx_descriptor *desc_rx;
08f738be 150 dma_cookie_t cookie_tx;
34df42f5 151 dma_cookie_t cookie_rx;
08f738be 152 struct scatterlist sg_tx;
34df42f5 153 struct scatterlist sg_rx;
00e8e658
NF
154 struct tasklet_struct tasklet_rx;
155 struct tasklet_struct tasklet_tx;
98f2082c 156 atomic_t tasklet_shutdown;
1ecc26bd 157 unsigned int irq_status_prev;
5f258b3e 158 unsigned int tx_len;
1ecc26bd
RB
159
160 struct circ_buf rx_ring;
e8faff73 161
e0b0baad 162 struct mctrl_gpios *gpios;
e8faff73 163 unsigned int tx_done_mask;
b5199d46
CP
164 u32 fifo_size;
165 u32 rts_high;
166 u32 rts_low;
ab5e4e41 167 bool ms_irq_enabled;
2958ccee 168 u32 rtor; /* address of receiver timeout register if it exists */
5bf5635a 169 bool has_frac_baudrate;
4b769371
NF
170 bool has_hw_timer;
171 struct timer_list uart_timer;
2c7af5ba
BB
172
173 bool suspended;
174 unsigned int pending;
175 unsigned int pending_status;
176 spinlock_t lock_suspended;
177
a930e528
ES
178 int (*prepare_rx)(struct uart_port *port);
179 int (*prepare_tx)(struct uart_port *port);
180 void (*schedule_rx)(struct uart_port *port);
181 void (*schedule_tx)(struct uart_port *port);
182 void (*release_rx)(struct uart_port *port);
183 void (*release_tx)(struct uart_port *port);
afefc415
AV
184};
185
7192f92c 186static struct atmel_uart_port atmel_ports[ATMEL_MAX_UART];
503bded9 187static DECLARE_BITMAP(atmel_ports_in_use, ATMEL_MAX_UART);
afefc415 188
1e6c9c28 189#ifdef SUPPORT_SYSRQ
7192f92c 190static struct console atmel_console;
1e6c9c28
AV
191#endif
192
5fbe46b6
NF
193#if defined(CONFIG_OF)
194static const struct of_device_id atmel_serial_dt_ids[] = {
195 { .compatible = "atmel,at91rm9200-usart" },
196 { .compatible = "atmel,at91sam9260-usart" },
197 { /* sentinel */ }
198};
5fbe46b6
NF
199#endif
200
c811ab8c
HS
201static inline struct atmel_uart_port *
202to_atmel_uart_port(struct uart_port *uart)
203{
204 return container_of(uart, struct atmel_uart_port, uart);
205}
206
4e7decda
CP
207static inline u32 atmel_uart_readl(struct uart_port *port, u32 reg)
208{
209 return __raw_readl(port->membase + reg);
210}
211
212static inline void atmel_uart_writel(struct uart_port *port, u32 reg, u32 value)
213{
214 __raw_writel(value, port->membase + reg);
215}
216
a6499435
CP
217#ifdef CONFIG_AVR32
218
219/* AVR32 cannot handle 8 or 16bit I/O accesses but only 32bit I/O accesses */
220static inline u8 atmel_uart_read_char(struct uart_port *port)
221{
222 return __raw_readl(port->membase + ATMEL_US_RHR);
223}
224
225static inline void atmel_uart_write_char(struct uart_port *port, u8 value)
b5199d46 226{
a6499435 227 __raw_writel(value, port->membase + ATMEL_US_THR);
b5199d46
CP
228}
229
a6499435
CP
230#else
231
232static inline u8 atmel_uart_read_char(struct uart_port *port)
b5199d46 233{
a6499435 234 return __raw_readb(port->membase + ATMEL_US_RHR);
b5199d46
CP
235}
236
a6499435
CP
237static inline void atmel_uart_write_char(struct uart_port *port, u8 value)
238{
239 __raw_writeb(value, port->membase + ATMEL_US_THR);
240}
241
242#endif
243
a6670615 244#ifdef CONFIG_SERIAL_ATMEL_PDC
64e22ebe 245static bool atmel_use_pdc_rx(struct uart_port *port)
a6670615 246{
c811ab8c 247 struct atmel_uart_port *atmel_port = to_atmel_uart_port(port);
a6670615 248
64e22ebe 249 return atmel_port->use_pdc_rx;
a6670615
CC
250}
251
64e22ebe 252static bool atmel_use_pdc_tx(struct uart_port *port)
a6670615 253{
c811ab8c 254 struct atmel_uart_port *atmel_port = to_atmel_uart_port(port);
a6670615 255
64e22ebe 256 return atmel_port->use_pdc_tx;
a6670615
CC
257}
258#else
64e22ebe 259static bool atmel_use_pdc_rx(struct uart_port *port)
a6670615
CC
260{
261 return false;
262}
263
64e22ebe 264static bool atmel_use_pdc_tx(struct uart_port *port)
a6670615
CC
265{
266 return false;
267}
268#endif
269
08f738be
ES
270static bool atmel_use_dma_tx(struct uart_port *port)
271{
272 struct atmel_uart_port *atmel_port = to_atmel_uart_port(port);
273
274 return atmel_port->use_dma_tx;
275}
276
34df42f5
ES
277static bool atmel_use_dma_rx(struct uart_port *port)
278{
279 struct atmel_uart_port *atmel_port = to_atmel_uart_port(port);
280
281 return atmel_port->use_dma_rx;
282}
283
5be605ac
AB
284static bool atmel_use_fifo(struct uart_port *port)
285{
286 struct atmel_uart_port *atmel_port = to_atmel_uart_port(port);
287
288 return atmel_port->fifo_size;
289}
290
98f2082c
NF
291static void atmel_tasklet_schedule(struct atmel_uart_port *atmel_port,
292 struct tasklet_struct *t)
293{
294 if (!atomic_read(&atmel_port->tasklet_shutdown))
295 tasklet_schedule(t);
296}
297
e0b0baad
RG
298static unsigned int atmel_get_lines_status(struct uart_port *port)
299{
300 struct atmel_uart_port *atmel_port = to_atmel_uart_port(port);
301 unsigned int status, ret = 0;
302
4e7decda 303 status = atmel_uart_readl(port, ATMEL_US_CSR);
e0b0baad
RG
304
305 mctrl_gpio_get(atmel_port->gpios, &ret);
306
307 if (!IS_ERR_OR_NULL(mctrl_gpio_to_gpiod(atmel_port->gpios,
308 UART_GPIO_CTS))) {
309 if (ret & TIOCM_CTS)
310 status &= ~ATMEL_US_CTS;
311 else
312 status |= ATMEL_US_CTS;
313 }
314
315 if (!IS_ERR_OR_NULL(mctrl_gpio_to_gpiod(atmel_port->gpios,
316 UART_GPIO_DSR))) {
317 if (ret & TIOCM_DSR)
318 status &= ~ATMEL_US_DSR;
319 else
320 status |= ATMEL_US_DSR;
321 }
322
323 if (!IS_ERR_OR_NULL(mctrl_gpio_to_gpiod(atmel_port->gpios,
324 UART_GPIO_RI))) {
325 if (ret & TIOCM_RI)
326 status &= ~ATMEL_US_RI;
327 else
328 status |= ATMEL_US_RI;
329 }
330
331 if (!IS_ERR_OR_NULL(mctrl_gpio_to_gpiod(atmel_port->gpios,
332 UART_GPIO_DCD))) {
333 if (ret & TIOCM_CD)
334 status &= ~ATMEL_US_DCD;
335 else
336 status |= ATMEL_US_DCD;
337 }
338
339 return status;
340}
341
e8faff73 342/* Enable or disable the rs485 support */
13bd3e6f
RRD
343static int atmel_config_rs485(struct uart_port *port,
344 struct serial_rs485 *rs485conf)
e8faff73
CS
345{
346 struct atmel_uart_port *atmel_port = to_atmel_uart_port(port);
347 unsigned int mode;
e8faff73
CS
348
349 /* Disable interrupts */
4e7decda 350 atmel_uart_writel(port, ATMEL_US_IDR, atmel_port->tx_done_mask);
e8faff73 351
4e7decda 352 mode = atmel_uart_readl(port, ATMEL_US_MR);
e8faff73
CS
353
354 /* Resetting serial mode to RS232 (0x0) */
355 mode &= ~ATMEL_US_USMODE;
356
13bd3e6f 357 port->rs485 = *rs485conf;
e8faff73
CS
358
359 if (rs485conf->flags & SER_RS485_ENABLED) {
360 dev_dbg(port->dev, "Setting UART to RS485\n");
361 atmel_port->tx_done_mask = ATMEL_US_TXEMPTY;
4e7decda
CP
362 atmel_uart_writel(port, ATMEL_US_TTGR,
363 rs485conf->delay_rts_after_send);
e8faff73
CS
364 mode |= ATMEL_US_USMODE_RS485;
365 } else {
366 dev_dbg(port->dev, "Setting UART to RS232\n");
64e22ebe 367 if (atmel_use_pdc_tx(port))
e8faff73
CS
368 atmel_port->tx_done_mask = ATMEL_US_ENDTX |
369 ATMEL_US_TXBUFE;
370 else
371 atmel_port->tx_done_mask = ATMEL_US_TXRDY;
372 }
4e7decda 373 atmel_uart_writel(port, ATMEL_US_MR, mode);
e8faff73
CS
374
375 /* Enable interrupts */
4e7decda 376 atmel_uart_writel(port, ATMEL_US_IER, atmel_port->tx_done_mask);
e8faff73 377
13bd3e6f 378 return 0;
e8faff73
CS
379}
380
1e6c9c28
AV
381/*
382 * Return TIOCSER_TEMT when transmitter FIFO and Shift register is empty.
383 */
7192f92c 384static u_int atmel_tx_empty(struct uart_port *port)
1e6c9c28 385{
4e7decda
CP
386 return (atmel_uart_readl(port, ATMEL_US_CSR) & ATMEL_US_TXEMPTY) ?
387 TIOCSER_TEMT :
388 0;
1e6c9c28
AV
389}
390
391/*
392 * Set state of the modem control output lines
393 */
7192f92c 394static void atmel_set_mctrl(struct uart_port *port, u_int mctrl)
1e6c9c28
AV
395{
396 unsigned int control = 0;
4e7decda 397 unsigned int mode = atmel_uart_readl(port, ATMEL_US_MR);
1cf6e8fc 398 unsigned int rts_paused, rts_ready;
e8faff73 399 struct atmel_uart_port *atmel_port = to_atmel_uart_port(port);
1e6c9c28 400
1cf6e8fc
CP
401 /* override mode to RS485 if needed, otherwise keep the current mode */
402 if (port->rs485.flags & SER_RS485_ENABLED) {
4e7decda
CP
403 atmel_uart_writel(port, ATMEL_US_TTGR,
404 port->rs485.delay_rts_after_send);
1cf6e8fc
CP
405 mode &= ~ATMEL_US_USMODE;
406 mode |= ATMEL_US_USMODE_RS485;
407 }
408
409 /* set the RTS line state according to the mode */
410 if ((mode & ATMEL_US_USMODE) == ATMEL_US_USMODE_HWHS) {
411 /* force RTS line to high level */
412 rts_paused = ATMEL_US_RTSEN;
413
414 /* give the control of the RTS line back to the hardware */
415 rts_ready = ATMEL_US_RTSDIS;
416 } else {
417 /* force RTS line to high level */
418 rts_paused = ATMEL_US_RTSDIS;
419
420 /* force RTS line to low level */
421 rts_ready = ATMEL_US_RTSEN;
422 }
423
1e6c9c28 424 if (mctrl & TIOCM_RTS)
1cf6e8fc 425 control |= rts_ready;
1e6c9c28 426 else
1cf6e8fc 427 control |= rts_paused;
1e6c9c28
AV
428
429 if (mctrl & TIOCM_DTR)
7192f92c 430 control |= ATMEL_US_DTREN;
1e6c9c28 431 else
7192f92c 432 control |= ATMEL_US_DTRDIS;
1e6c9c28 433
4e7decda 434 atmel_uart_writel(port, ATMEL_US_CR, control);
afefc415 435
e0b0baad
RG
436 mctrl_gpio_set(atmel_port->gpios, mctrl);
437
afefc415 438 /* Local loopback mode? */
1cf6e8fc 439 mode &= ~ATMEL_US_CHMODE;
afefc415 440 if (mctrl & TIOCM_LOOP)
7192f92c 441 mode |= ATMEL_US_CHMODE_LOC_LOOP;
afefc415 442 else
7192f92c 443 mode |= ATMEL_US_CHMODE_NORMAL;
e8faff73 444
4e7decda 445 atmel_uart_writel(port, ATMEL_US_MR, mode);
1e6c9c28
AV
446}
447
448/*
449 * Get state of the modem control input lines
450 */
7192f92c 451static u_int atmel_get_mctrl(struct uart_port *port)
1e6c9c28 452{
e0b0baad
RG
453 struct atmel_uart_port *atmel_port = to_atmel_uart_port(port);
454 unsigned int ret = 0, status;
1e6c9c28 455
4e7decda 456 status = atmel_uart_readl(port, ATMEL_US_CSR);
1e6c9c28
AV
457
458 /*
459 * The control signals are active low.
460 */
7192f92c 461 if (!(status & ATMEL_US_DCD))
1e6c9c28 462 ret |= TIOCM_CD;
7192f92c 463 if (!(status & ATMEL_US_CTS))
1e6c9c28 464 ret |= TIOCM_CTS;
7192f92c 465 if (!(status & ATMEL_US_DSR))
1e6c9c28 466 ret |= TIOCM_DSR;
7192f92c 467 if (!(status & ATMEL_US_RI))
1e6c9c28
AV
468 ret |= TIOCM_RI;
469
e0b0baad 470 return mctrl_gpio_get(atmel_port->gpios, &ret);
1e6c9c28
AV
471}
472
473/*
474 * Stop transmitting.
475 */
7192f92c 476static void atmel_stop_tx(struct uart_port *port)
1e6c9c28 477{
e8faff73
CS
478 struct atmel_uart_port *atmel_port = to_atmel_uart_port(port);
479
64e22ebe 480 if (atmel_use_pdc_tx(port)) {
a6670615 481 /* disable PDC transmit */
4e7decda 482 atmel_uart_writel(port, ATMEL_PDC_PTCR, ATMEL_PDC_TXTDIS);
e8faff73
CS
483 }
484 /* Disable interrupts */
4e7decda 485 atmel_uart_writel(port, ATMEL_US_IDR, atmel_port->tx_done_mask);
e8faff73 486
13bd3e6f
RRD
487 if ((port->rs485.flags & SER_RS485_ENABLED) &&
488 !(port->rs485.flags & SER_RS485_RX_DURING_TX))
e8faff73 489 atmel_start_rx(port);
1e6c9c28
AV
490}
491
492/*
493 * Start transmitting.
494 */
7192f92c 495static void atmel_start_tx(struct uart_port *port)
1e6c9c28 496{
e8faff73
CS
497 struct atmel_uart_port *atmel_port = to_atmel_uart_port(port);
498
0058f087
AB
499 if (atmel_use_pdc_tx(port) && (atmel_uart_readl(port, ATMEL_PDC_PTSR)
500 & ATMEL_PDC_TXTEN))
501 /* The transmitter is already running. Yes, we
502 really need this.*/
503 return;
a6670615 504
0058f087 505 if (atmel_use_pdc_tx(port) || atmel_use_dma_tx(port))
13bd3e6f
RRD
506 if ((port->rs485.flags & SER_RS485_ENABLED) &&
507 !(port->rs485.flags & SER_RS485_RX_DURING_TX))
e8faff73
CS
508 atmel_stop_rx(port);
509
0058f087 510 if (atmel_use_pdc_tx(port))
a6670615 511 /* re-enable PDC transmit */
4e7decda 512 atmel_uart_writel(port, ATMEL_PDC_PTCR, ATMEL_PDC_TXTEN);
0058f087 513
e8faff73 514 /* Enable interrupts */
4e7decda 515 atmel_uart_writel(port, ATMEL_US_IER, atmel_port->tx_done_mask);
e8faff73
CS
516}
517
518/*
519 * start receiving - port is in process of being opened.
520 */
521static void atmel_start_rx(struct uart_port *port)
522{
4e7decda
CP
523 /* reset status and receiver */
524 atmel_uart_writel(port, ATMEL_US_CR, ATMEL_US_RSTSTA);
e8faff73 525
4e7decda 526 atmel_uart_writel(port, ATMEL_US_CR, ATMEL_US_RXEN);
57c36868 527
64e22ebe 528 if (atmel_use_pdc_rx(port)) {
e8faff73 529 /* enable PDC controller */
4e7decda
CP
530 atmel_uart_writel(port, ATMEL_US_IER,
531 ATMEL_US_ENDRX | ATMEL_US_TIMEOUT |
532 port->read_status_mask);
533 atmel_uart_writel(port, ATMEL_PDC_PTCR, ATMEL_PDC_RXTEN);
e8faff73 534 } else {
4e7decda 535 atmel_uart_writel(port, ATMEL_US_IER, ATMEL_US_RXRDY);
e8faff73 536 }
1e6c9c28
AV
537}
538
539/*
540 * Stop receiving - port is in process of being closed.
541 */
7192f92c 542static void atmel_stop_rx(struct uart_port *port)
1e6c9c28 543{
4e7decda 544 atmel_uart_writel(port, ATMEL_US_CR, ATMEL_US_RXDIS);
57c36868 545
64e22ebe 546 if (atmel_use_pdc_rx(port)) {
a6670615 547 /* disable PDC receive */
4e7decda
CP
548 atmel_uart_writel(port, ATMEL_PDC_PTCR, ATMEL_PDC_RXTDIS);
549 atmel_uart_writel(port, ATMEL_US_IDR,
550 ATMEL_US_ENDRX | ATMEL_US_TIMEOUT |
551 port->read_status_mask);
e8faff73 552 } else {
4e7decda 553 atmel_uart_writel(port, ATMEL_US_IDR, ATMEL_US_RXRDY);
e8faff73 554 }
1e6c9c28
AV
555}
556
557/*
558 * Enable modem status interrupts
559 */
7192f92c 560static void atmel_enable_ms(struct uart_port *port)
1e6c9c28 561{
ab5e4e41
RG
562 struct atmel_uart_port *atmel_port = to_atmel_uart_port(port);
563 uint32_t ier = 0;
564
565 /*
566 * Interrupt should not be enabled twice
567 */
568 if (atmel_port->ms_irq_enabled)
569 return;
570
571 atmel_port->ms_irq_enabled = true;
572
18dfef9c 573 if (!mctrl_gpio_to_gpiod(atmel_port->gpios, UART_GPIO_CTS))
ab5e4e41
RG
574 ier |= ATMEL_US_CTSIC;
575
18dfef9c 576 if (!mctrl_gpio_to_gpiod(atmel_port->gpios, UART_GPIO_DSR))
ab5e4e41
RG
577 ier |= ATMEL_US_DSRIC;
578
18dfef9c 579 if (!mctrl_gpio_to_gpiod(atmel_port->gpios, UART_GPIO_RI))
ab5e4e41
RG
580 ier |= ATMEL_US_RIIC;
581
18dfef9c 582 if (!mctrl_gpio_to_gpiod(atmel_port->gpios, UART_GPIO_DCD))
ab5e4e41
RG
583 ier |= ATMEL_US_DCDIC;
584
4e7decda 585 atmel_uart_writel(port, ATMEL_US_IER, ier);
18dfef9c
UKK
586
587 mctrl_gpio_enable_ms(atmel_port->gpios);
1e6c9c28
AV
588}
589
35b675b9
RG
590/*
591 * Disable modem status interrupts
592 */
593static void atmel_disable_ms(struct uart_port *port)
594{
595 struct atmel_uart_port *atmel_port = to_atmel_uart_port(port);
596 uint32_t idr = 0;
597
598 /*
599 * Interrupt should not be disabled twice
600 */
601 if (!atmel_port->ms_irq_enabled)
602 return;
603
604 atmel_port->ms_irq_enabled = false;
605
18dfef9c
UKK
606 mctrl_gpio_disable_ms(atmel_port->gpios);
607
608 if (!mctrl_gpio_to_gpiod(atmel_port->gpios, UART_GPIO_CTS))
35b675b9
RG
609 idr |= ATMEL_US_CTSIC;
610
18dfef9c 611 if (!mctrl_gpio_to_gpiod(atmel_port->gpios, UART_GPIO_DSR))
35b675b9
RG
612 idr |= ATMEL_US_DSRIC;
613
18dfef9c 614 if (!mctrl_gpio_to_gpiod(atmel_port->gpios, UART_GPIO_RI))
35b675b9
RG
615 idr |= ATMEL_US_RIIC;
616
18dfef9c 617 if (!mctrl_gpio_to_gpiod(atmel_port->gpios, UART_GPIO_DCD))
35b675b9
RG
618 idr |= ATMEL_US_DCDIC;
619
4e7decda 620 atmel_uart_writel(port, ATMEL_US_IDR, idr);
35b675b9
RG
621}
622
1e6c9c28
AV
623/*
624 * Control the transmission of a break signal
625 */
7192f92c 626static void atmel_break_ctl(struct uart_port *port, int break_state)
1e6c9c28
AV
627{
628 if (break_state != 0)
4e7decda
CP
629 /* start break */
630 atmel_uart_writel(port, ATMEL_US_CR, ATMEL_US_STTBRK);
1e6c9c28 631 else
4e7decda
CP
632 /* stop break */
633 atmel_uart_writel(port, ATMEL_US_CR, ATMEL_US_STPBRK);
1e6c9c28
AV
634}
635
1ecc26bd
RB
636/*
637 * Stores the incoming character in the ring buffer
638 */
639static void
640atmel_buffer_rx_char(struct uart_port *port, unsigned int status,
641 unsigned int ch)
642{
c811ab8c 643 struct atmel_uart_port *atmel_port = to_atmel_uart_port(port);
1ecc26bd
RB
644 struct circ_buf *ring = &atmel_port->rx_ring;
645 struct atmel_uart_char *c;
646
647 if (!CIRC_SPACE(ring->head, ring->tail, ATMEL_SERIAL_RINGSIZE))
648 /* Buffer overflow, ignore char */
649 return;
650
651 c = &((struct atmel_uart_char *)ring->buf)[ring->head];
652 c->status = status;
653 c->ch = ch;
654
655 /* Make sure the character is stored before we update head. */
656 smp_wmb();
657
658 ring->head = (ring->head + 1) & (ATMEL_SERIAL_RINGSIZE - 1);
659}
660
a6670615
CC
661/*
662 * Deal with parity, framing and overrun errors.
663 */
664static void atmel_pdc_rxerr(struct uart_port *port, unsigned int status)
665{
666 /* clear error */
4e7decda 667 atmel_uart_writel(port, ATMEL_US_CR, ATMEL_US_RSTSTA);
a6670615
CC
668
669 if (status & ATMEL_US_RXBRK) {
670 /* ignore side-effect */
671 status &= ~(ATMEL_US_PARE | ATMEL_US_FRAME);
672 port->icount.brk++;
673 }
674 if (status & ATMEL_US_PARE)
675 port->icount.parity++;
676 if (status & ATMEL_US_FRAME)
677 port->icount.frame++;
678 if (status & ATMEL_US_OVRE)
679 port->icount.overrun++;
680}
681
1e6c9c28
AV
682/*
683 * Characters received (called from interrupt handler)
684 */
7d12e780 685static void atmel_rx_chars(struct uart_port *port)
1e6c9c28 686{
c811ab8c 687 struct atmel_uart_port *atmel_port = to_atmel_uart_port(port);
1ecc26bd 688 unsigned int status, ch;
1e6c9c28 689
4e7decda 690 status = atmel_uart_readl(port, ATMEL_US_CSR);
7192f92c 691 while (status & ATMEL_US_RXRDY) {
a6499435 692 ch = atmel_uart_read_char(port);
1e6c9c28 693
1e6c9c28
AV
694 /*
695 * note that the error handling code is
696 * out of the main execution path
697 */
9e6077bd
HS
698 if (unlikely(status & (ATMEL_US_PARE | ATMEL_US_FRAME
699 | ATMEL_US_OVRE | ATMEL_US_RXBRK)
700 || atmel_port->break_active)) {
1ecc26bd 701
b843aa21 702 /* clear error */
4e7decda 703 atmel_uart_writel(port, ATMEL_US_CR, ATMEL_US_RSTSTA);
1ecc26bd 704
9e6077bd
HS
705 if (status & ATMEL_US_RXBRK
706 && !atmel_port->break_active) {
9e6077bd 707 atmel_port->break_active = 1;
4e7decda
CP
708 atmel_uart_writel(port, ATMEL_US_IER,
709 ATMEL_US_RXBRK);
9e6077bd
HS
710 } else {
711 /*
712 * This is either the end-of-break
713 * condition or we've received at
714 * least one character without RXBRK
715 * being set. In both cases, the next
716 * RXBRK will indicate start-of-break.
717 */
4e7decda
CP
718 atmel_uart_writel(port, ATMEL_US_IDR,
719 ATMEL_US_RXBRK);
9e6077bd
HS
720 status &= ~ATMEL_US_RXBRK;
721 atmel_port->break_active = 0;
afefc415 722 }
1e6c9c28
AV
723 }
724
1ecc26bd 725 atmel_buffer_rx_char(port, status, ch);
4e7decda 726 status = atmel_uart_readl(port, ATMEL_US_CSR);
1e6c9c28
AV
727 }
728
98f2082c 729 atmel_tasklet_schedule(atmel_port, &atmel_port->tasklet_rx);
1e6c9c28
AV
730}
731
732/*
1ecc26bd
RB
733 * Transmit characters (called from tasklet with TXRDY interrupt
734 * disabled)
1e6c9c28 735 */
7192f92c 736static void atmel_tx_chars(struct uart_port *port)
1e6c9c28 737{
ebd2c8f6 738 struct circ_buf *xmit = &port->state->xmit;
e8faff73 739 struct atmel_uart_port *atmel_port = to_atmel_uart_port(port);
1e6c9c28 740
4e7decda
CP
741 if (port->x_char &&
742 (atmel_uart_readl(port, ATMEL_US_CSR) & atmel_port->tx_done_mask)) {
a6499435 743 atmel_uart_write_char(port, port->x_char);
1e6c9c28
AV
744 port->icount.tx++;
745 port->x_char = 0;
1e6c9c28 746 }
1ecc26bd 747 if (uart_circ_empty(xmit) || uart_tx_stopped(port))
1e6c9c28 748 return;
1e6c9c28 749
4e7decda
CP
750 while (atmel_uart_readl(port, ATMEL_US_CSR) &
751 atmel_port->tx_done_mask) {
a6499435 752 atmel_uart_write_char(port, xmit->buf[xmit->tail]);
1e6c9c28
AV
753 xmit->tail = (xmit->tail + 1) & (UART_XMIT_SIZE - 1);
754 port->icount.tx++;
755 if (uart_circ_empty(xmit))
756 break;
757 }
758
759 if (uart_circ_chars_pending(xmit) < WAKEUP_CHARS)
760 uart_write_wakeup(port);
761
1ecc26bd 762 if (!uart_circ_empty(xmit))
e8faff73 763 /* Enable interrupts */
4e7decda
CP
764 atmel_uart_writel(port, ATMEL_US_IER,
765 atmel_port->tx_done_mask);
1e6c9c28
AV
766}
767
08f738be
ES
768static void atmel_complete_tx_dma(void *arg)
769{
770 struct atmel_uart_port *atmel_port = arg;
771 struct uart_port *port = &atmel_port->uart;
772 struct circ_buf *xmit = &port->state->xmit;
773 struct dma_chan *chan = atmel_port->chan_tx;
774 unsigned long flags;
775
776 spin_lock_irqsave(&port->lock, flags);
777
778 if (chan)
779 dmaengine_terminate_all(chan);
5f258b3e 780 xmit->tail += atmel_port->tx_len;
08f738be
ES
781 xmit->tail &= UART_XMIT_SIZE - 1;
782
5f258b3e 783 port->icount.tx += atmel_port->tx_len;
08f738be
ES
784
785 spin_lock_irq(&atmel_port->lock_tx);
786 async_tx_ack(atmel_port->desc_tx);
787 atmel_port->cookie_tx = -EINVAL;
788 atmel_port->desc_tx = NULL;
789 spin_unlock_irq(&atmel_port->lock_tx);
790
791 if (uart_circ_chars_pending(xmit) < WAKEUP_CHARS)
792 uart_write_wakeup(port);
793
1842dc2e
CP
794 /*
795 * xmit is a circular buffer so, if we have just send data from
796 * xmit->tail to the end of xmit->buf, now we have to transmit the
797 * remaining data from the beginning of xmit->buf to xmit->head.
798 */
08f738be 799 if (!uart_circ_empty(xmit))
98f2082c 800 atmel_tasklet_schedule(atmel_port, &atmel_port->tasklet_tx);
08f738be
ES
801
802 spin_unlock_irqrestore(&port->lock, flags);
803}
804
805static void atmel_release_tx_dma(struct uart_port *port)
806{
807 struct atmel_uart_port *atmel_port = to_atmel_uart_port(port);
808 struct dma_chan *chan = atmel_port->chan_tx;
809
810 if (chan) {
811 dmaengine_terminate_all(chan);
812 dma_release_channel(chan);
813 dma_unmap_sg(port->dev, &atmel_port->sg_tx, 1,
48479148 814 DMA_TO_DEVICE);
08f738be
ES
815 }
816
817 atmel_port->desc_tx = NULL;
818 atmel_port->chan_tx = NULL;
819 atmel_port->cookie_tx = -EINVAL;
820}
821
822/*
823 * Called from tasklet with TXRDY interrupt is disabled.
824 */
825static void atmel_tx_dma(struct uart_port *port)
826{
827 struct atmel_uart_port *atmel_port = to_atmel_uart_port(port);
828 struct circ_buf *xmit = &port->state->xmit;
829 struct dma_chan *chan = atmel_port->chan_tx;
830 struct dma_async_tx_descriptor *desc;
5f258b3e
CP
831 struct scatterlist sgl[2], *sg, *sg_tx = &atmel_port->sg_tx;
832 unsigned int tx_len, part1_len, part2_len, sg_len;
833 dma_addr_t phys_addr;
08f738be
ES
834
835 /* Make sure we have an idle channel */
836 if (atmel_port->desc_tx != NULL)
837 return;
838
839 if (!uart_circ_empty(xmit) && !uart_tx_stopped(port)) {
840 /*
841 * DMA is idle now.
842 * Port xmit buffer is already mapped,
843 * and it is one page... Just adjust
844 * offsets and lengths. Since it is a circular buffer,
845 * we have to transmit till the end, and then the rest.
846 * Take the port lock to get a
847 * consistent xmit buffer state.
848 */
5f258b3e
CP
849 tx_len = CIRC_CNT_TO_END(xmit->head,
850 xmit->tail,
851 UART_XMIT_SIZE);
852
853 if (atmel_port->fifo_size) {
854 /* multi data mode */
855 part1_len = (tx_len & ~0x3); /* DWORD access */
856 part2_len = (tx_len & 0x3); /* BYTE access */
857 } else {
858 /* single data (legacy) mode */
859 part1_len = 0;
860 part2_len = tx_len; /* BYTE access only */
861 }
862
863 sg_init_table(sgl, 2);
864 sg_len = 0;
865 phys_addr = sg_dma_address(sg_tx) + xmit->tail;
866 if (part1_len) {
867 sg = &sgl[sg_len++];
868 sg_dma_address(sg) = phys_addr;
869 sg_dma_len(sg) = part1_len;
870
871 phys_addr += part1_len;
872 }
873
874 if (part2_len) {
875 sg = &sgl[sg_len++];
876 sg_dma_address(sg) = phys_addr;
877 sg_dma_len(sg) = part2_len;
878 }
879
880 /*
881 * save tx_len so atmel_complete_tx_dma() will increase
882 * xmit->tail correctly
883 */
884 atmel_port->tx_len = tx_len;
08f738be
ES
885
886 desc = dmaengine_prep_slave_sg(chan,
5f258b3e
CP
887 sgl,
888 sg_len,
1842dc2e
CP
889 DMA_MEM_TO_DEV,
890 DMA_PREP_INTERRUPT |
891 DMA_CTRL_ACK);
08f738be
ES
892 if (!desc) {
893 dev_err(port->dev, "Failed to send via dma!\n");
894 return;
895 }
896
5f258b3e 897 dma_sync_sg_for_device(port->dev, sg_tx, 1, DMA_TO_DEVICE);
08f738be
ES
898
899 atmel_port->desc_tx = desc;
900 desc->callback = atmel_complete_tx_dma;
901 desc->callback_param = atmel_port;
902 atmel_port->cookie_tx = dmaengine_submit(desc);
903
904 } else {
13bd3e6f 905 if (port->rs485.flags & SER_RS485_ENABLED) {
08f738be
ES
906 /* DMA done, stop TX, start RX for RS485 */
907 atmel_start_rx(port);
908 }
909 }
910
911 if (uart_circ_chars_pending(xmit) < WAKEUP_CHARS)
912 uart_write_wakeup(port);
913}
914
915static int atmel_prepare_tx_dma(struct uart_port *port)
916{
917 struct atmel_uart_port *atmel_port = to_atmel_uart_port(port);
918 dma_cap_mask_t mask;
919 struct dma_slave_config config;
920 int ret, nent;
921
922 dma_cap_zero(mask);
923 dma_cap_set(DMA_SLAVE, mask);
924
925 atmel_port->chan_tx = dma_request_slave_channel(port->dev, "tx");
926 if (atmel_port->chan_tx == NULL)
927 goto chan_err;
928 dev_info(port->dev, "using %s for tx DMA transfers\n",
929 dma_chan_name(atmel_port->chan_tx));
930
931 spin_lock_init(&atmel_port->lock_tx);
932 sg_init_table(&atmel_port->sg_tx, 1);
933 /* UART circular tx buffer is an aligned page. */
2c277054 934 BUG_ON(!PAGE_ALIGNED(port->state->xmit.buf));
08f738be
ES
935 sg_set_page(&atmel_port->sg_tx,
936 virt_to_page(port->state->xmit.buf),
937 UART_XMIT_SIZE,
c8d1f022 938 (unsigned long)port->state->xmit.buf & ~PAGE_MASK);
08f738be
ES
939 nent = dma_map_sg(port->dev,
940 &atmel_port->sg_tx,
941 1,
48479148 942 DMA_TO_DEVICE);
08f738be
ES
943
944 if (!nent) {
945 dev_dbg(port->dev, "need to release resource of dma\n");
946 goto chan_err;
947 } else {
c8d1f022 948 dev_dbg(port->dev, "%s: mapped %d@%p to %pad\n", __func__,
08f738be
ES
949 sg_dma_len(&atmel_port->sg_tx),
950 port->state->xmit.buf,
c8d1f022 951 &sg_dma_address(&atmel_port->sg_tx));
08f738be
ES
952 }
953
954 /* Configure the slave DMA */
955 memset(&config, 0, sizeof(config));
956 config.direction = DMA_MEM_TO_DEV;
5f258b3e
CP
957 config.dst_addr_width = (atmel_port->fifo_size) ?
958 DMA_SLAVE_BUSWIDTH_4_BYTES :
959 DMA_SLAVE_BUSWIDTH_1_BYTE;
08f738be 960 config.dst_addr = port->mapbase + ATMEL_US_THR;
a8d4e016 961 config.dst_maxburst = 1;
08f738be 962
5483c10e
MR
963 ret = dmaengine_slave_config(atmel_port->chan_tx,
964 &config);
08f738be
ES
965 if (ret) {
966 dev_err(port->dev, "DMA tx slave configuration failed\n");
967 goto chan_err;
968 }
969
970 return 0;
971
972chan_err:
973 dev_err(port->dev, "TX channel not available, switch to pio\n");
974 atmel_port->use_dma_tx = 0;
975 if (atmel_port->chan_tx)
976 atmel_release_tx_dma(port);
977 return -EINVAL;
978}
979
34df42f5
ES
980static void atmel_complete_rx_dma(void *arg)
981{
982 struct uart_port *port = arg;
983 struct atmel_uart_port *atmel_port = to_atmel_uart_port(port);
984
98f2082c 985 atmel_tasklet_schedule(atmel_port, &atmel_port->tasklet_rx);
34df42f5
ES
986}
987
988static void atmel_release_rx_dma(struct uart_port *port)
989{
990 struct atmel_uart_port *atmel_port = to_atmel_uart_port(port);
991 struct dma_chan *chan = atmel_port->chan_rx;
992
993 if (chan) {
994 dmaengine_terminate_all(chan);
995 dma_release_channel(chan);
996 dma_unmap_sg(port->dev, &atmel_port->sg_rx, 1,
48479148 997 DMA_FROM_DEVICE);
34df42f5
ES
998 }
999
1000 atmel_port->desc_rx = NULL;
1001 atmel_port->chan_rx = NULL;
1002 atmel_port->cookie_rx = -EINVAL;
1003}
1004
1005static void atmel_rx_from_dma(struct uart_port *port)
1006{
1007 struct atmel_uart_port *atmel_port = to_atmel_uart_port(port);
66f37aaf 1008 struct tty_port *tport = &port->state->port;
34df42f5
ES
1009 struct circ_buf *ring = &atmel_port->rx_ring;
1010 struct dma_chan *chan = atmel_port->chan_rx;
1011 struct dma_tx_state state;
1012 enum dma_status dmastat;
66f37aaf 1013 size_t count;
34df42f5
ES
1014
1015
1016 /* Reset the UART timeout early so that we don't miss one */
4e7decda 1017 atmel_uart_writel(port, ATMEL_US_CR, ATMEL_US_STTTO);
34df42f5
ES
1018 dmastat = dmaengine_tx_status(chan,
1019 atmel_port->cookie_rx,
1020 &state);
1021 /* Restart a new tasklet if DMA status is error */
1022 if (dmastat == DMA_ERROR) {
1023 dev_dbg(port->dev, "Get residue error, restart tasklet\n");
4e7decda 1024 atmel_uart_writel(port, ATMEL_US_IER, ATMEL_US_TIMEOUT);
98f2082c 1025 atmel_tasklet_schedule(atmel_port, &atmel_port->tasklet_rx);
34df42f5
ES
1026 return;
1027 }
34df42f5 1028
66f37aaf
CP
1029 /* CPU claims ownership of RX DMA buffer */
1030 dma_sync_sg_for_cpu(port->dev,
1031 &atmel_port->sg_rx,
1032 1,
485819b5 1033 DMA_FROM_DEVICE);
66f37aaf
CP
1034
1035 /*
1036 * ring->head points to the end of data already written by the DMA.
1037 * ring->tail points to the beginning of data to be read by the
1038 * framework.
1039 * The current transfer size should not be larger than the dma buffer
1040 * length.
1041 */
1042 ring->head = sg_dma_len(&atmel_port->sg_rx) - state.residue;
1043 BUG_ON(ring->head > sg_dma_len(&atmel_port->sg_rx));
34df42f5 1044 /*
66f37aaf
CP
1045 * At this point ring->head may point to the first byte right after the
1046 * last byte of the dma buffer:
1047 * 0 <= ring->head <= sg_dma_len(&atmel_port->sg_rx)
1048 *
1049 * However ring->tail must always points inside the dma buffer:
1050 * 0 <= ring->tail <= sg_dma_len(&atmel_port->sg_rx) - 1
1051 *
1052 * Since we use a ring buffer, we have to handle the case
1053 * where head is lower than tail. In such a case, we first read from
1054 * tail to the end of the buffer then reset tail.
34df42f5 1055 */
66f37aaf
CP
1056 if (ring->head < ring->tail) {
1057 count = sg_dma_len(&atmel_port->sg_rx) - ring->tail;
34df42f5 1058
66f37aaf
CP
1059 tty_insert_flip_string(tport, ring->buf + ring->tail, count);
1060 ring->tail = 0;
1061 port->icount.rx += count;
1062 }
34df42f5 1063
66f37aaf
CP
1064 /* Finally we read data from tail to head */
1065 if (ring->tail < ring->head) {
1066 count = ring->head - ring->tail;
34df42f5 1067
66f37aaf
CP
1068 tty_insert_flip_string(tport, ring->buf + ring->tail, count);
1069 /* Wrap ring->head if needed */
1070 if (ring->head >= sg_dma_len(&atmel_port->sg_rx))
1071 ring->head = 0;
1072 ring->tail = ring->head;
34df42f5
ES
1073 port->icount.rx += count;
1074 }
1075
66f37aaf
CP
1076 /* USART retreives ownership of RX DMA buffer */
1077 dma_sync_sg_for_device(port->dev,
1078 &atmel_port->sg_rx,
1079 1,
485819b5 1080 DMA_FROM_DEVICE);
66f37aaf
CP
1081
1082 /*
1083 * Drop the lock here since it might end up calling
1084 * uart_start(), which takes the lock.
1085 */
1086 spin_unlock(&port->lock);
1087 tty_flip_buffer_push(tport);
1088 spin_lock(&port->lock);
1089
4e7decda 1090 atmel_uart_writel(port, ATMEL_US_IER, ATMEL_US_TIMEOUT);
34df42f5
ES
1091}
1092
1093static int atmel_prepare_rx_dma(struct uart_port *port)
1094{
1095 struct atmel_uart_port *atmel_port = to_atmel_uart_port(port);
1096 struct dma_async_tx_descriptor *desc;
1097 dma_cap_mask_t mask;
1098 struct dma_slave_config config;
1099 struct circ_buf *ring;
1100 int ret, nent;
1101
1102 ring = &atmel_port->rx_ring;
1103
1104 dma_cap_zero(mask);
1105 dma_cap_set(DMA_CYCLIC, mask);
1106
1107 atmel_port->chan_rx = dma_request_slave_channel(port->dev, "rx");
1108 if (atmel_port->chan_rx == NULL)
1109 goto chan_err;
1110 dev_info(port->dev, "using %s for rx DMA transfers\n",
1111 dma_chan_name(atmel_port->chan_rx));
1112
1113 spin_lock_init(&atmel_port->lock_rx);
1114 sg_init_table(&atmel_port->sg_rx, 1);
1115 /* UART circular rx buffer is an aligned page. */
2c277054 1116 BUG_ON(!PAGE_ALIGNED(ring->buf));
34df42f5 1117 sg_set_page(&atmel_port->sg_rx,
1842dc2e 1118 virt_to_page(ring->buf),
a510880f 1119 sizeof(struct atmel_uart_char) * ATMEL_SERIAL_RINGSIZE,
c8d1f022 1120 (unsigned long)ring->buf & ~PAGE_MASK);
1842dc2e
CP
1121 nent = dma_map_sg(port->dev,
1122 &atmel_port->sg_rx,
1123 1,
1124 DMA_FROM_DEVICE);
34df42f5
ES
1125
1126 if (!nent) {
1127 dev_dbg(port->dev, "need to release resource of dma\n");
1128 goto chan_err;
1129 } else {
c8d1f022 1130 dev_dbg(port->dev, "%s: mapped %d@%p to %pad\n", __func__,
34df42f5
ES
1131 sg_dma_len(&atmel_port->sg_rx),
1132 ring->buf,
c8d1f022 1133 &sg_dma_address(&atmel_port->sg_rx));
34df42f5
ES
1134 }
1135
1136 /* Configure the slave DMA */
1137 memset(&config, 0, sizeof(config));
1138 config.direction = DMA_DEV_TO_MEM;
1139 config.src_addr_width = DMA_SLAVE_BUSWIDTH_1_BYTE;
1140 config.src_addr = port->mapbase + ATMEL_US_RHR;
a8d4e016 1141 config.src_maxburst = 1;
34df42f5 1142
5483c10e
MR
1143 ret = dmaengine_slave_config(atmel_port->chan_rx,
1144 &config);
34df42f5
ES
1145 if (ret) {
1146 dev_err(port->dev, "DMA rx slave configuration failed\n");
1147 goto chan_err;
1148 }
1149 /*
1150 * Prepare a cyclic dma transfer, assign 2 descriptors,
1151 * each one is half ring buffer size
1152 */
1153 desc = dmaengine_prep_dma_cyclic(atmel_port->chan_rx,
1842dc2e
CP
1154 sg_dma_address(&atmel_port->sg_rx),
1155 sg_dma_len(&atmel_port->sg_rx),
1156 sg_dma_len(&atmel_port->sg_rx)/2,
1157 DMA_DEV_TO_MEM,
1158 DMA_PREP_INTERRUPT);
34df42f5
ES
1159 desc->callback = atmel_complete_rx_dma;
1160 desc->callback_param = port;
1161 atmel_port->desc_rx = desc;
1162 atmel_port->cookie_rx = dmaengine_submit(desc);
1163
1164 return 0;
1165
1166chan_err:
1167 dev_err(port->dev, "RX channel not available, switch to pio\n");
1168 atmel_port->use_dma_rx = 0;
1169 if (atmel_port->chan_rx)
1170 atmel_release_rx_dma(port);
1171 return -EINVAL;
1172}
1173
2e68c22f
ES
1174static void atmel_uart_timer_callback(unsigned long data)
1175{
1176 struct uart_port *port = (void *)data;
1177 struct atmel_uart_port *atmel_port = to_atmel_uart_port(port);
1178
98f2082c
NF
1179 if (!atomic_read(&atmel_port->tasklet_shutdown)) {
1180 tasklet_schedule(&atmel_port->tasklet_rx);
1181 mod_timer(&atmel_port->uart_timer,
1182 jiffies + uart_poll_timeout(port));
1183 }
2e68c22f
ES
1184}
1185
b843aa21
RB
1186/*
1187 * receive interrupt handler.
1188 */
1189static void
1190atmel_handle_receive(struct uart_port *port, unsigned int pending)
1191{
c811ab8c 1192 struct atmel_uart_port *atmel_port = to_atmel_uart_port(port);
b843aa21 1193
64e22ebe 1194 if (atmel_use_pdc_rx(port)) {
a6670615
CC
1195 /*
1196 * PDC receive. Just schedule the tasklet and let it
1197 * figure out the details.
1198 *
1199 * TODO: We're not handling error flags correctly at
1200 * the moment.
1201 */
1202 if (pending & (ATMEL_US_ENDRX | ATMEL_US_TIMEOUT)) {
4e7decda
CP
1203 atmel_uart_writel(port, ATMEL_US_IDR,
1204 (ATMEL_US_ENDRX | ATMEL_US_TIMEOUT));
98f2082c
NF
1205 atmel_tasklet_schedule(atmel_port,
1206 &atmel_port->tasklet_rx);
a6670615
CC
1207 }
1208
1209 if (pending & (ATMEL_US_RXBRK | ATMEL_US_OVRE |
1210 ATMEL_US_FRAME | ATMEL_US_PARE))
1211 atmel_pdc_rxerr(port, pending);
1212 }
1213
34df42f5
ES
1214 if (atmel_use_dma_rx(port)) {
1215 if (pending & ATMEL_US_TIMEOUT) {
4e7decda
CP
1216 atmel_uart_writel(port, ATMEL_US_IDR,
1217 ATMEL_US_TIMEOUT);
98f2082c
NF
1218 atmel_tasklet_schedule(atmel_port,
1219 &atmel_port->tasklet_rx);
34df42f5
ES
1220 }
1221 }
1222
b843aa21
RB
1223 /* Interrupt receive */
1224 if (pending & ATMEL_US_RXRDY)
1225 atmel_rx_chars(port);
1226 else if (pending & ATMEL_US_RXBRK) {
1227 /*
1228 * End of break detected. If it came along with a
1229 * character, atmel_rx_chars will handle it.
1230 */
4e7decda
CP
1231 atmel_uart_writel(port, ATMEL_US_CR, ATMEL_US_RSTSTA);
1232 atmel_uart_writel(port, ATMEL_US_IDR, ATMEL_US_RXBRK);
b843aa21
RB
1233 atmel_port->break_active = 0;
1234 }
1235}
1236
1237/*
1ecc26bd 1238 * transmit interrupt handler. (Transmit is IRQF_NODELAY safe)
b843aa21
RB
1239 */
1240static void
1241atmel_handle_transmit(struct uart_port *port, unsigned int pending)
1242{
c811ab8c 1243 struct atmel_uart_port *atmel_port = to_atmel_uart_port(port);
1ecc26bd 1244
e8faff73
CS
1245 if (pending & atmel_port->tx_done_mask) {
1246 /* Either PDC or interrupt transmission */
4e7decda
CP
1247 atmel_uart_writel(port, ATMEL_US_IDR,
1248 atmel_port->tx_done_mask);
98f2082c 1249 atmel_tasklet_schedule(atmel_port, &atmel_port->tasklet_tx);
1ecc26bd 1250 }
b843aa21
RB
1251}
1252
1253/*
1254 * status flags interrupt handler.
1255 */
1256static void
1257atmel_handle_status(struct uart_port *port, unsigned int pending,
1258 unsigned int status)
1259{
c811ab8c 1260 struct atmel_uart_port *atmel_port = to_atmel_uart_port(port);
9205218e 1261 unsigned int status_change;
1ecc26bd 1262
b843aa21 1263 if (pending & (ATMEL_US_RIIC | ATMEL_US_DSRIC | ATMEL_US_DCDIC
1ecc26bd 1264 | ATMEL_US_CTSIC)) {
9205218e 1265 status_change = status ^ atmel_port->irq_status_prev;
d033e82d 1266 atmel_port->irq_status_prev = status;
9205218e
NF
1267
1268 if (status_change & (ATMEL_US_RI | ATMEL_US_DSR
1269 | ATMEL_US_DCD | ATMEL_US_CTS)) {
1270 /* TODO: All reads to CSR will clear these interrupts! */
1271 if (status_change & ATMEL_US_RI)
1272 port->icount.rng++;
1273 if (status_change & ATMEL_US_DSR)
1274 port->icount.dsr++;
1275 if (status_change & ATMEL_US_DCD)
1276 uart_handle_dcd_change(port, !(status & ATMEL_US_DCD));
1277 if (status_change & ATMEL_US_CTS)
1278 uart_handle_cts_change(port, !(status & ATMEL_US_CTS));
1279
1280 wake_up_interruptible(&port->state->port.delta_msr_wait);
1281 }
1ecc26bd 1282 }
b843aa21
RB
1283}
1284
1e6c9c28
AV
1285/*
1286 * Interrupt handler
1287 */
7d12e780 1288static irqreturn_t atmel_interrupt(int irq, void *dev_id)
1e6c9c28
AV
1289{
1290 struct uart_port *port = dev_id;
ab5e4e41 1291 struct atmel_uart_port *atmel_port = to_atmel_uart_port(port);
2c7af5ba 1292 unsigned int status, pending, mask, pass_counter = 0;
1e6c9c28 1293
2c7af5ba
BB
1294 spin_lock(&atmel_port->lock_suspended);
1295
a6670615 1296 do {
e0b0baad 1297 status = atmel_get_lines_status(port);
4e7decda 1298 mask = atmel_uart_readl(port, ATMEL_US_IMR);
2c7af5ba 1299 pending = status & mask;
a6670615
CC
1300 if (!pending)
1301 break;
1302
2c7af5ba
BB
1303 if (atmel_port->suspended) {
1304 atmel_port->pending |= pending;
1305 atmel_port->pending_status = status;
4e7decda 1306 atmel_uart_writel(port, ATMEL_US_IDR, mask);
2c7af5ba
BB
1307 pm_system_wakeup();
1308 break;
1309 }
1310
b843aa21
RB
1311 atmel_handle_receive(port, pending);
1312 atmel_handle_status(port, pending, status);
1313 atmel_handle_transmit(port, pending);
a6670615 1314 } while (pass_counter++ < ATMEL_ISR_PASS_LIMIT);
afefc415 1315
2c7af5ba
BB
1316 spin_unlock(&atmel_port->lock_suspended);
1317
0400b697 1318 return pass_counter ? IRQ_HANDLED : IRQ_NONE;
a6670615 1319}
1e6c9c28 1320
a930e528
ES
1321static void atmel_release_tx_pdc(struct uart_port *port)
1322{
1323 struct atmel_uart_port *atmel_port = to_atmel_uart_port(port);
1324 struct atmel_dma_buffer *pdc = &atmel_port->pdc_tx;
1325
1326 dma_unmap_single(port->dev,
1327 pdc->dma_addr,
1328 pdc->dma_size,
1329 DMA_TO_DEVICE);
1330}
1331
a6670615
CC
1332/*
1333 * Called from tasklet with ENDTX and TXBUFE interrupts disabled.
1334 */
64e22ebe 1335static void atmel_tx_pdc(struct uart_port *port)
a6670615 1336{
c811ab8c 1337 struct atmel_uart_port *atmel_port = to_atmel_uart_port(port);
ebd2c8f6 1338 struct circ_buf *xmit = &port->state->xmit;
a6670615
CC
1339 struct atmel_dma_buffer *pdc = &atmel_port->pdc_tx;
1340 int count;
1341
ba0657ff 1342 /* nothing left to transmit? */
4e7decda 1343 if (atmel_uart_readl(port, ATMEL_PDC_TCR))
ba0657ff
MT
1344 return;
1345
a6670615
CC
1346 xmit->tail += pdc->ofs;
1347 xmit->tail &= UART_XMIT_SIZE - 1;
1348
1349 port->icount.tx += pdc->ofs;
1350 pdc->ofs = 0;
1351
ba0657ff 1352 /* more to transmit - setup next transfer */
a6670615 1353
ba0657ff 1354 /* disable PDC transmit */
4e7decda 1355 atmel_uart_writel(port, ATMEL_PDC_PTCR, ATMEL_PDC_TXTDIS);
ba0657ff 1356
1f14081d 1357 if (!uart_circ_empty(xmit) && !uart_tx_stopped(port)) {
a6670615
CC
1358 dma_sync_single_for_device(port->dev,
1359 pdc->dma_addr,
1360 pdc->dma_size,
1361 DMA_TO_DEVICE);
1362
1363 count = CIRC_CNT_TO_END(xmit->head, xmit->tail, UART_XMIT_SIZE);
1364 pdc->ofs = count;
1365
4e7decda
CP
1366 atmel_uart_writel(port, ATMEL_PDC_TPR,
1367 pdc->dma_addr + xmit->tail);
1368 atmel_uart_writel(port, ATMEL_PDC_TCR, count);
e8faff73 1369 /* re-enable PDC transmit */
4e7decda 1370 atmel_uart_writel(port, ATMEL_PDC_PTCR, ATMEL_PDC_TXTEN);
e8faff73 1371 /* Enable interrupts */
4e7decda
CP
1372 atmel_uart_writel(port, ATMEL_US_IER,
1373 atmel_port->tx_done_mask);
e8faff73 1374 } else {
13bd3e6f
RRD
1375 if ((port->rs485.flags & SER_RS485_ENABLED) &&
1376 !(port->rs485.flags & SER_RS485_RX_DURING_TX)) {
e8faff73
CS
1377 /* DMA done, stop TX, start RX for RS485 */
1378 atmel_start_rx(port);
1379 }
1e6c9c28 1380 }
a6670615
CC
1381
1382 if (uart_circ_chars_pending(xmit) < WAKEUP_CHARS)
1383 uart_write_wakeup(port);
1e6c9c28
AV
1384}
1385
a930e528
ES
1386static int atmel_prepare_tx_pdc(struct uart_port *port)
1387{
1388 struct atmel_uart_port *atmel_port = to_atmel_uart_port(port);
1389 struct atmel_dma_buffer *pdc = &atmel_port->pdc_tx;
1390 struct circ_buf *xmit = &port->state->xmit;
1391
1392 pdc->buf = xmit->buf;
1393 pdc->dma_addr = dma_map_single(port->dev,
1394 pdc->buf,
1395 UART_XMIT_SIZE,
1396 DMA_TO_DEVICE);
1397 pdc->dma_size = UART_XMIT_SIZE;
1398 pdc->ofs = 0;
1399
1400 return 0;
1401}
1402
1ecc26bd
RB
1403static void atmel_rx_from_ring(struct uart_port *port)
1404{
c811ab8c 1405 struct atmel_uart_port *atmel_port = to_atmel_uart_port(port);
1ecc26bd
RB
1406 struct circ_buf *ring = &atmel_port->rx_ring;
1407 unsigned int flg;
1408 unsigned int status;
1409
1410 while (ring->head != ring->tail) {
1411 struct atmel_uart_char c;
1412
1413 /* Make sure c is loaded after head. */
1414 smp_rmb();
1415
1416 c = ((struct atmel_uart_char *)ring->buf)[ring->tail];
1417
1418 ring->tail = (ring->tail + 1) & (ATMEL_SERIAL_RINGSIZE - 1);
1419
1420 port->icount.rx++;
1421 status = c.status;
1422 flg = TTY_NORMAL;
1423
1424 /*
1425 * note that the error handling code is
1426 * out of the main execution path
1427 */
1428 if (unlikely(status & (ATMEL_US_PARE | ATMEL_US_FRAME
1429 | ATMEL_US_OVRE | ATMEL_US_RXBRK))) {
1430 if (status & ATMEL_US_RXBRK) {
1431 /* ignore side-effect */
1432 status &= ~(ATMEL_US_PARE | ATMEL_US_FRAME);
1433
1434 port->icount.brk++;
1435 if (uart_handle_break(port))
1436 continue;
1437 }
1438 if (status & ATMEL_US_PARE)
1439 port->icount.parity++;
1440 if (status & ATMEL_US_FRAME)
1441 port->icount.frame++;
1442 if (status & ATMEL_US_OVRE)
1443 port->icount.overrun++;
1444
1445 status &= port->read_status_mask;
1446
1447 if (status & ATMEL_US_RXBRK)
1448 flg = TTY_BREAK;
1449 else if (status & ATMEL_US_PARE)
1450 flg = TTY_PARITY;
1451 else if (status & ATMEL_US_FRAME)
1452 flg = TTY_FRAME;
1453 }
1454
1455
1456 if (uart_handle_sysrq_char(port, c.ch))
1457 continue;
1458
1459 uart_insert_char(port, status, ATMEL_US_OVRE, c.ch, flg);
1460 }
1461
1462 /*
1463 * Drop the lock here since it might end up calling
1464 * uart_start(), which takes the lock.
1465 */
1466 spin_unlock(&port->lock);
2e124b4a 1467 tty_flip_buffer_push(&port->state->port);
1ecc26bd
RB
1468 spin_lock(&port->lock);
1469}
1470
a930e528
ES
1471static void atmel_release_rx_pdc(struct uart_port *port)
1472{
1473 struct atmel_uart_port *atmel_port = to_atmel_uart_port(port);
1474 int i;
1475
1476 for (i = 0; i < 2; i++) {
1477 struct atmel_dma_buffer *pdc = &atmel_port->pdc_rx[i];
1478
1479 dma_unmap_single(port->dev,
1480 pdc->dma_addr,
1481 pdc->dma_size,
1482 DMA_FROM_DEVICE);
1483 kfree(pdc->buf);
1484 }
1485}
1486
64e22ebe 1487static void atmel_rx_from_pdc(struct uart_port *port)
a6670615 1488{
c811ab8c 1489 struct atmel_uart_port *atmel_port = to_atmel_uart_port(port);
05c7cd39 1490 struct tty_port *tport = &port->state->port;
a6670615
CC
1491 struct atmel_dma_buffer *pdc;
1492 int rx_idx = atmel_port->pdc_rx_idx;
1493 unsigned int head;
1494 unsigned int tail;
1495 unsigned int count;
1496
1497 do {
1498 /* Reset the UART timeout early so that we don't miss one */
4e7decda 1499 atmel_uart_writel(port, ATMEL_US_CR, ATMEL_US_STTTO);
a6670615
CC
1500
1501 pdc = &atmel_port->pdc_rx[rx_idx];
4e7decda 1502 head = atmel_uart_readl(port, ATMEL_PDC_RPR) - pdc->dma_addr;
a6670615
CC
1503 tail = pdc->ofs;
1504
1505 /* If the PDC has switched buffers, RPR won't contain
1506 * any address within the current buffer. Since head
1507 * is unsigned, we just need a one-way comparison to
1508 * find out.
1509 *
1510 * In this case, we just need to consume the entire
1511 * buffer and resubmit it for DMA. This will clear the
1512 * ENDRX bit as well, so that we can safely re-enable
1513 * all interrupts below.
1514 */
1515 head = min(head, pdc->dma_size);
1516
1517 if (likely(head != tail)) {
1518 dma_sync_single_for_cpu(port->dev, pdc->dma_addr,
1519 pdc->dma_size, DMA_FROM_DEVICE);
1520
1521 /*
1522 * head will only wrap around when we recycle
1523 * the DMA buffer, and when that happens, we
1524 * explicitly set tail to 0. So head will
1525 * always be greater than tail.
1526 */
1527 count = head - tail;
1528
05c7cd39
JS
1529 tty_insert_flip_string(tport, pdc->buf + pdc->ofs,
1530 count);
a6670615
CC
1531
1532 dma_sync_single_for_device(port->dev, pdc->dma_addr,
1533 pdc->dma_size, DMA_FROM_DEVICE);
1534
1535 port->icount.rx += count;
1536 pdc->ofs = head;
1537 }
1538
1539 /*
1540 * If the current buffer is full, we need to check if
1541 * the next one contains any additional data.
1542 */
1543 if (head >= pdc->dma_size) {
1544 pdc->ofs = 0;
4e7decda
CP
1545 atmel_uart_writel(port, ATMEL_PDC_RNPR, pdc->dma_addr);
1546 atmel_uart_writel(port, ATMEL_PDC_RNCR, pdc->dma_size);
a6670615
CC
1547
1548 rx_idx = !rx_idx;
1549 atmel_port->pdc_rx_idx = rx_idx;
1550 }
1551 } while (head >= pdc->dma_size);
1552
1553 /*
1554 * Drop the lock here since it might end up calling
1555 * uart_start(), which takes the lock.
1556 */
1557 spin_unlock(&port->lock);
2e124b4a 1558 tty_flip_buffer_push(tport);
a6670615
CC
1559 spin_lock(&port->lock);
1560
4e7decda
CP
1561 atmel_uart_writel(port, ATMEL_US_IER,
1562 ATMEL_US_ENDRX | ATMEL_US_TIMEOUT);
a6670615
CC
1563}
1564
a930e528
ES
1565static int atmel_prepare_rx_pdc(struct uart_port *port)
1566{
1567 struct atmel_uart_port *atmel_port = to_atmel_uart_port(port);
1568 int i;
1569
1570 for (i = 0; i < 2; i++) {
1571 struct atmel_dma_buffer *pdc = &atmel_port->pdc_rx[i];
1572
1573 pdc->buf = kmalloc(PDC_BUFFER_SIZE, GFP_KERNEL);
1574 if (pdc->buf == NULL) {
1575 if (i != 0) {
1576 dma_unmap_single(port->dev,
1577 atmel_port->pdc_rx[0].dma_addr,
1578 PDC_BUFFER_SIZE,
1579 DMA_FROM_DEVICE);
1580 kfree(atmel_port->pdc_rx[0].buf);
1581 }
1582 atmel_port->use_pdc_rx = 0;
1583 return -ENOMEM;
1584 }
1585 pdc->dma_addr = dma_map_single(port->dev,
1586 pdc->buf,
1587 PDC_BUFFER_SIZE,
1588 DMA_FROM_DEVICE);
1589 pdc->dma_size = PDC_BUFFER_SIZE;
1590 pdc->ofs = 0;
1591 }
1592
1593 atmel_port->pdc_rx_idx = 0;
1594
4e7decda
CP
1595 atmel_uart_writel(port, ATMEL_PDC_RPR, atmel_port->pdc_rx[0].dma_addr);
1596 atmel_uart_writel(port, ATMEL_PDC_RCR, PDC_BUFFER_SIZE);
a930e528 1597
4e7decda
CP
1598 atmel_uart_writel(port, ATMEL_PDC_RNPR,
1599 atmel_port->pdc_rx[1].dma_addr);
1600 atmel_uart_writel(port, ATMEL_PDC_RNCR, PDC_BUFFER_SIZE);
a930e528
ES
1601
1602 return 0;
1603}
1604
1ecc26bd
RB
1605/*
1606 * tasklet handling tty stuff outside the interrupt handler.
1607 */
00e8e658 1608static void atmel_tasklet_rx_func(unsigned long data)
1ecc26bd
RB
1609{
1610 struct uart_port *port = (struct uart_port *)data;
c811ab8c 1611 struct atmel_uart_port *atmel_port = to_atmel_uart_port(port);
1ecc26bd
RB
1612
1613 /* The interrupt handler does not take the lock */
1614 spin_lock(&port->lock);
a930e528 1615 atmel_port->schedule_rx(port);
00e8e658
NF
1616 spin_unlock(&port->lock);
1617}
1ecc26bd 1618
00e8e658
NF
1619static void atmel_tasklet_tx_func(unsigned long data)
1620{
1621 struct uart_port *port = (struct uart_port *)data;
1622 struct atmel_uart_port *atmel_port = to_atmel_uart_port(port);
1623
1624 /* The interrupt handler does not take the lock */
1625 spin_lock(&port->lock);
1626 atmel_port->schedule_tx(port);
1ecc26bd
RB
1627 spin_unlock(&port->lock);
1628}
1629
4a1e8888 1630static void atmel_init_property(struct atmel_uart_port *atmel_port,
33d64c4f
ES
1631 struct platform_device *pdev)
1632{
1633 struct device_node *np = pdev->dev.of_node;
574de559 1634 struct atmel_uart_data *pdata = dev_get_platdata(&pdev->dev);
33d64c4f
ES
1635
1636 if (np) {
1637 /* DMA/PDC usage specification */
490d5ce2
JL
1638 if (of_property_read_bool(np, "atmel,use-dma-rx")) {
1639 if (of_property_read_bool(np, "dmas")) {
33d64c4f
ES
1640 atmel_port->use_dma_rx = true;
1641 atmel_port->use_pdc_rx = false;
1642 } else {
1643 atmel_port->use_dma_rx = false;
1644 atmel_port->use_pdc_rx = true;
1645 }
1646 } else {
1647 atmel_port->use_dma_rx = false;
1648 atmel_port->use_pdc_rx = false;
1649 }
1650
490d5ce2
JL
1651 if (of_property_read_bool(np, "atmel,use-dma-tx")) {
1652 if (of_property_read_bool(np, "dmas")) {
33d64c4f
ES
1653 atmel_port->use_dma_tx = true;
1654 atmel_port->use_pdc_tx = false;
1655 } else {
1656 atmel_port->use_dma_tx = false;
1657 atmel_port->use_pdc_tx = true;
1658 }
1659 } else {
1660 atmel_port->use_dma_tx = false;
1661 atmel_port->use_pdc_tx = false;
1662 }
1663
1664 } else {
1665 atmel_port->use_pdc_rx = pdata->use_dma_rx;
1666 atmel_port->use_pdc_tx = pdata->use_dma_tx;
1667 atmel_port->use_dma_rx = false;
1668 atmel_port->use_dma_tx = false;
1669 }
1670
33d64c4f
ES
1671}
1672
13bd3e6f 1673static void atmel_init_rs485(struct uart_port *port,
33d64c4f
ES
1674 struct platform_device *pdev)
1675{
1676 struct device_node *np = pdev->dev.of_node;
574de559 1677 struct atmel_uart_data *pdata = dev_get_platdata(&pdev->dev);
33d64c4f
ES
1678
1679 if (np) {
77bdec6f 1680 struct serial_rs485 *rs485conf = &port->rs485;
33d64c4f
ES
1681 u32 rs485_delay[2];
1682 /* rs485 properties */
1683 if (of_property_read_u32_array(np, "rs485-rts-delay",
1684 rs485_delay, 2) == 0) {
33d64c4f
ES
1685 rs485conf->delay_rts_before_send = rs485_delay[0];
1686 rs485conf->delay_rts_after_send = rs485_delay[1];
1687 rs485conf->flags = 0;
77bdec6f 1688 }
33d64c4f
ES
1689
1690 if (of_get_property(np, "rs485-rx-during-tx", NULL))
1691 rs485conf->flags |= SER_RS485_RX_DURING_TX;
1692
1693 if (of_get_property(np, "linux,rs485-enabled-at-boot-time",
1694 NULL))
1695 rs485conf->flags |= SER_RS485_ENABLED;
33d64c4f 1696 } else {
13bd3e6f 1697 port->rs485 = pdata->rs485;
33d64c4f
ES
1698 }
1699
1700}
1701
a930e528
ES
1702static void atmel_set_ops(struct uart_port *port)
1703{
1704 struct atmel_uart_port *atmel_port = to_atmel_uart_port(port);
1705
34df42f5
ES
1706 if (atmel_use_dma_rx(port)) {
1707 atmel_port->prepare_rx = &atmel_prepare_rx_dma;
1708 atmel_port->schedule_rx = &atmel_rx_from_dma;
1709 atmel_port->release_rx = &atmel_release_rx_dma;
1710 } else if (atmel_use_pdc_rx(port)) {
a930e528
ES
1711 atmel_port->prepare_rx = &atmel_prepare_rx_pdc;
1712 atmel_port->schedule_rx = &atmel_rx_from_pdc;
1713 atmel_port->release_rx = &atmel_release_rx_pdc;
1714 } else {
1715 atmel_port->prepare_rx = NULL;
1716 atmel_port->schedule_rx = &atmel_rx_from_ring;
1717 atmel_port->release_rx = NULL;
1718 }
1719
08f738be
ES
1720 if (atmel_use_dma_tx(port)) {
1721 atmel_port->prepare_tx = &atmel_prepare_tx_dma;
1722 atmel_port->schedule_tx = &atmel_tx_dma;
1723 atmel_port->release_tx = &atmel_release_tx_dma;
1724 } else if (atmel_use_pdc_tx(port)) {
a930e528
ES
1725 atmel_port->prepare_tx = &atmel_prepare_tx_pdc;
1726 atmel_port->schedule_tx = &atmel_tx_pdc;
1727 atmel_port->release_tx = &atmel_release_tx_pdc;
1728 } else {
1729 atmel_port->prepare_tx = NULL;
1730 atmel_port->schedule_tx = &atmel_tx_chars;
1731 atmel_port->release_tx = NULL;
1732 }
1733}
1734
055560b0
ES
1735/*
1736 * Get ip name usart or uart
1737 */
892db58b 1738static void atmel_get_ip_name(struct uart_port *port)
055560b0
ES
1739{
1740 struct atmel_uart_port *atmel_port = to_atmel_uart_port(port);
4e7decda 1741 int name = atmel_uart_readl(port, ATMEL_US_NAME);
731d9cae 1742 u32 version;
1d673fb9 1743 u32 usart, dbgu_uart, new_uart;
4b769371
NF
1744 /* ASCII decoding for IP version */
1745 usart = 0x55534152; /* USAR(T) */
1746 dbgu_uart = 0x44424755; /* DBGU */
1d673fb9 1747 new_uart = 0x55415254; /* UART */
055560b0 1748
5bf5635a
LD
1749 /*
1750 * Only USART devices from at91sam9260 SOC implement fractional
1751 * baudrate.
1752 */
1753 atmel_port->has_frac_baudrate = false;
4b769371 1754 atmel_port->has_hw_timer = false;
055560b0 1755
2958ccee
LD
1756 if (name == new_uart) {
1757 dev_dbg(port->dev, "Uart with hw timer");
4b769371 1758 atmel_port->has_hw_timer = true;
2958ccee
LD
1759 atmel_port->rtor = ATMEL_UA_RTOR;
1760 } else if (name == usart) {
1761 dev_dbg(port->dev, "Usart\n");
5bf5635a 1762 atmel_port->has_frac_baudrate = true;
2958ccee
LD
1763 atmel_port->has_hw_timer = true;
1764 atmel_port->rtor = ATMEL_US_RTOR;
4b769371
NF
1765 } else if (name == dbgu_uart) {
1766 dev_dbg(port->dev, "Dbgu or uart without hw timer\n");
055560b0 1767 } else {
731d9cae 1768 /* fallback for older SoCs: use version field */
4e7decda 1769 version = atmel_uart_readl(port, ATMEL_US_VERSION);
731d9cae
NF
1770 switch (version) {
1771 case 0x302:
1772 case 0x10213:
1773 dev_dbg(port->dev, "This version is usart\n");
5bf5635a 1774 atmel_port->has_frac_baudrate = true;
4b769371 1775 atmel_port->has_hw_timer = true;
2958ccee 1776 atmel_port->rtor = ATMEL_US_RTOR;
731d9cae
NF
1777 break;
1778 case 0x203:
1779 case 0x10202:
1780 dev_dbg(port->dev, "This version is uart\n");
731d9cae
NF
1781 break;
1782 default:
1783 dev_err(port->dev, "Not supported ip name nor version, set to uart\n");
1784 }
055560b0 1785 }
055560b0
ES
1786}
1787
1e6c9c28
AV
1788/*
1789 * Perform initialization and enable port for reception
1790 */
7192f92c 1791static int atmel_startup(struct uart_port *port)
1e6c9c28 1792{
33d64c4f 1793 struct platform_device *pdev = to_platform_device(port->dev);
c811ab8c 1794 struct atmel_uart_port *atmel_port = to_atmel_uart_port(port);
ebd2c8f6 1795 struct tty_struct *tty = port->state->port.tty;
1e6c9c28
AV
1796 int retval;
1797
1798 /*
1799 * Ensure that no interrupts are enabled otherwise when
1800 * request_irq() is called we could get stuck trying to
1801 * handle an unexpected interrupt
1802 */
4e7decda 1803 atmel_uart_writel(port, ATMEL_US_IDR, -1);
ab5e4e41 1804 atmel_port->ms_irq_enabled = false;
1e6c9c28
AV
1805
1806 /*
1807 * Allocate the IRQ
1808 */
2c7af5ba
BB
1809 retval = request_irq(port->irq, atmel_interrupt,
1810 IRQF_SHARED | IRQF_COND_SUSPEND,
ae161068 1811 tty ? tty->name : "atmel_serial", port);
1e6c9c28 1812 if (retval) {
ddaa6037 1813 dev_err(port->dev, "atmel_startup - Can't get irq\n");
1e6c9c28
AV
1814 return retval;
1815 }
1816
98f2082c
NF
1817 atomic_set(&atmel_port->tasklet_shutdown, 0);
1818 tasklet_init(&atmel_port->tasklet_rx, atmel_tasklet_rx_func,
1819 (unsigned long)port);
1820 tasklet_init(&atmel_port->tasklet_tx, atmel_tasklet_tx_func,
1821 (unsigned long)port);
1e125786 1822
a6670615
CC
1823 /*
1824 * Initialize DMA (if necessary)
1825 */
33d64c4f 1826 atmel_init_property(atmel_port, pdev);
4d9628a1 1827 atmel_set_ops(port);
33d64c4f 1828
a930e528
ES
1829 if (atmel_port->prepare_rx) {
1830 retval = atmel_port->prepare_rx(port);
1831 if (retval < 0)
1832 atmel_set_ops(port);
a6670615 1833 }
a6670615 1834
a930e528
ES
1835 if (atmel_port->prepare_tx) {
1836 retval = atmel_port->prepare_tx(port);
1837 if (retval < 0)
1838 atmel_set_ops(port);
a6670615 1839 }
1e6c9c28 1840
b5199d46
CP
1841 /*
1842 * Enable FIFO when available
1843 */
1844 if (atmel_port->fifo_size) {
1845 unsigned int txrdym = ATMEL_US_ONE_DATA;
1846 unsigned int rxrdym = ATMEL_US_ONE_DATA;
1847 unsigned int fmr;
1848
1849 atmel_uart_writel(port, ATMEL_US_CR,
1850 ATMEL_US_FIFOEN |
1851 ATMEL_US_RXFCLR |
1852 ATMEL_US_TXFLCLR);
1853
5f258b3e
CP
1854 if (atmel_use_dma_tx(port))
1855 txrdym = ATMEL_US_FOUR_DATA;
1856
b5199d46
CP
1857 fmr = ATMEL_US_TXRDYM(txrdym) | ATMEL_US_RXRDYM(rxrdym);
1858 if (atmel_port->rts_high &&
1859 atmel_port->rts_low)
1860 fmr |= ATMEL_US_FRTSC |
1861 ATMEL_US_RXFTHRES(atmel_port->rts_high) |
1862 ATMEL_US_RXFTHRES2(atmel_port->rts_low);
1863
1864 atmel_uart_writel(port, ATMEL_US_FMR, fmr);
1865 }
1866
27c0c8e5 1867 /* Save current CSR for comparison in atmel_tasklet_func() */
e0b0baad 1868 atmel_port->irq_status_prev = atmel_get_lines_status(port);
27c0c8e5 1869
1e6c9c28
AV
1870 /*
1871 * Finally, enable the serial port
1872 */
4e7decda 1873 atmel_uart_writel(port, ATMEL_US_CR, ATMEL_US_RSTSTA | ATMEL_US_RSTRX);
b843aa21 1874 /* enable xmit & rcvr */
4e7decda 1875 atmel_uart_writel(port, ATMEL_US_CR, ATMEL_US_TXEN | ATMEL_US_RXEN);
afefc415 1876
8bc661bf
MR
1877 setup_timer(&atmel_port->uart_timer,
1878 atmel_uart_timer_callback,
1879 (unsigned long)port);
1880
64e22ebe 1881 if (atmel_use_pdc_rx(port)) {
a6670615 1882 /* set UART timeout */
4b769371 1883 if (!atmel_port->has_hw_timer) {
2e68c22f
ES
1884 mod_timer(&atmel_port->uart_timer,
1885 jiffies + uart_poll_timeout(port));
1886 /* set USART timeout */
1887 } else {
2958ccee
LD
1888 atmel_uart_writel(port, atmel_port->rtor,
1889 PDC_RX_TIMEOUT);
4e7decda 1890 atmel_uart_writel(port, ATMEL_US_CR, ATMEL_US_STTTO);
a6670615 1891
4e7decda
CP
1892 atmel_uart_writel(port, ATMEL_US_IER,
1893 ATMEL_US_ENDRX | ATMEL_US_TIMEOUT);
2e68c22f 1894 }
a6670615 1895 /* enable PDC controller */
4e7decda 1896 atmel_uart_writel(port, ATMEL_PDC_PTCR, ATMEL_PDC_RXTEN);
34df42f5 1897 } else if (atmel_use_dma_rx(port)) {
2e68c22f 1898 /* set UART timeout */
4b769371 1899 if (!atmel_port->has_hw_timer) {
2e68c22f
ES
1900 mod_timer(&atmel_port->uart_timer,
1901 jiffies + uart_poll_timeout(port));
1902 /* set USART timeout */
1903 } else {
2958ccee
LD
1904 atmel_uart_writel(port, atmel_port->rtor,
1905 PDC_RX_TIMEOUT);
4e7decda 1906 atmel_uart_writel(port, ATMEL_US_CR, ATMEL_US_STTTO);
34df42f5 1907
4e7decda
CP
1908 atmel_uart_writel(port, ATMEL_US_IER,
1909 ATMEL_US_TIMEOUT);
2e68c22f 1910 }
a6670615
CC
1911 } else {
1912 /* enable receive only */
4e7decda 1913 atmel_uart_writel(port, ATMEL_US_IER, ATMEL_US_RXRDY);
a6670615 1914 }
afefc415 1915
1e6c9c28
AV
1916 return 0;
1917}
1918
479e9b94
PH
1919/*
1920 * Flush any TX data submitted for DMA. Called when the TX circular
1921 * buffer is reset.
1922 */
1923static void atmel_flush_buffer(struct uart_port *port)
1924{
1925 struct atmel_uart_port *atmel_port = to_atmel_uart_port(port);
1926
1927 if (atmel_use_pdc_tx(port)) {
4e7decda 1928 atmel_uart_writel(port, ATMEL_PDC_TCR, 0);
479e9b94
PH
1929 atmel_port->pdc_tx.ofs = 0;
1930 }
1931}
1932
1e6c9c28
AV
1933/*
1934 * Disable the port
1935 */
7192f92c 1936static void atmel_shutdown(struct uart_port *port)
1e6c9c28 1937{
c811ab8c 1938 struct atmel_uart_port *atmel_port = to_atmel_uart_port(port);
0cc7c6c7 1939
0ae9fdef
RG
1940 /* Disable modem control lines interrupts */
1941 atmel_disable_ms(port);
1942
98f2082c
NF
1943 /* Disable interrupts at device level */
1944 atmel_uart_writel(port, ATMEL_US_IDR, -1);
1945
1946 /* Prevent spurious interrupts from scheduling the tasklet */
1947 atomic_inc(&atmel_port->tasklet_shutdown);
1948
8bc661bf
MR
1949 /*
1950 * Prevent any tasklets being scheduled during
1951 * cleanup
1952 */
1953 del_timer_sync(&atmel_port->uart_timer);
1954
98f2082c
NF
1955 /* Make sure that no interrupt is on the fly */
1956 synchronize_irq(port->irq);
1957
0cc7c6c7
MR
1958 /*
1959 * Clear out any scheduled tasklets before
1960 * we destroy the buffers
1961 */
00e8e658
NF
1962 tasklet_kill(&atmel_port->tasklet_rx);
1963 tasklet_kill(&atmel_port->tasklet_tx);
0cc7c6c7 1964
a6670615 1965 /*
0cc7c6c7 1966 * Ensure everything is stopped and
98f2082c 1967 * disable port and break condition.
a6670615
CC
1968 */
1969 atmel_stop_rx(port);
1970 atmel_stop_tx(port);
1971
4e7decda 1972 atmel_uart_writel(port, ATMEL_US_CR, ATMEL_US_RSTSTA);
0cc7c6c7 1973
a6670615
CC
1974 /*
1975 * Shut-down the DMA.
1976 */
a930e528
ES
1977 if (atmel_port->release_rx)
1978 atmel_port->release_rx(port);
1979 if (atmel_port->release_tx)
1980 atmel_port->release_tx(port);
a6670615 1981
bb7e73c5
MD
1982 /*
1983 * Reset ring buffer pointers
1984 */
1985 atmel_port->rx_ring.head = 0;
1986 atmel_port->rx_ring.tail = 0;
1987
1e6c9c28 1988 /*
ab5e4e41 1989 * Free the interrupts
1e6c9c28
AV
1990 */
1991 free_irq(port->irq, port);
ab5e4e41 1992
479e9b94 1993 atmel_flush_buffer(port);
9afd561a
HS
1994}
1995
1e6c9c28
AV
1996/*
1997 * Power / Clock management.
1998 */
b843aa21
RB
1999static void atmel_serial_pm(struct uart_port *port, unsigned int state,
2000 unsigned int oldstate)
1e6c9c28 2001{
c811ab8c 2002 struct atmel_uart_port *atmel_port = to_atmel_uart_port(port);
afefc415 2003
1e6c9c28 2004 switch (state) {
b843aa21
RB
2005 case 0:
2006 /*
2007 * Enable the peripheral clock for this serial port.
2008 * This is called on uart_open() or a resume event.
2009 */
91f8c2d8 2010 clk_prepare_enable(atmel_port->clk);
f05596db
AS
2011
2012 /* re-enable interrupts if we disabled some on suspend */
4e7decda 2013 atmel_uart_writel(port, ATMEL_US_IER, atmel_port->backup_imr);
b843aa21
RB
2014 break;
2015 case 3:
f05596db 2016 /* Back up the interrupt mask and disable all interrupts */
4e7decda
CP
2017 atmel_port->backup_imr = atmel_uart_readl(port, ATMEL_US_IMR);
2018 atmel_uart_writel(port, ATMEL_US_IDR, -1);
f05596db 2019
b843aa21
RB
2020 /*
2021 * Disable the peripheral clock for this serial port.
2022 * This is called on uart_close() or a suspend event.
2023 */
91f8c2d8 2024 clk_disable_unprepare(atmel_port->clk);
b843aa21
RB
2025 break;
2026 default:
ddaa6037 2027 dev_err(port->dev, "atmel_serial: unknown pm %d\n", state);
1e6c9c28
AV
2028 }
2029}
2030
2031/*
2032 * Change the port parameters
2033 */
b843aa21
RB
2034static void atmel_set_termios(struct uart_port *port, struct ktermios *termios,
2035 struct ktermios *old)
1e6c9c28 2036{
5bf5635a 2037 struct atmel_uart_port *atmel_port = to_atmel_uart_port(port);
1e6c9c28 2038 unsigned long flags;
5bf5635a 2039 unsigned int old_mode, mode, imr, quot, baud, div, cd, fp = 0;
1cf6e8fc
CP
2040
2041 /* save the current mode register */
4e7decda 2042 mode = old_mode = atmel_uart_readl(port, ATMEL_US_MR);
1e6c9c28 2043
1cf6e8fc
CP
2044 /* reset the mode, clock divisor, parity, stop bits and data size */
2045 mode &= ~(ATMEL_US_USCLKS | ATMEL_US_CHRL | ATMEL_US_NBSTOP |
2046 ATMEL_US_PAR | ATMEL_US_USMODE);
03abeac0 2047
b843aa21 2048 baud = uart_get_baud_rate(port, termios, old, 0, port->uartclk / 16);
1e6c9c28
AV
2049
2050 /* byte size */
2051 switch (termios->c_cflag & CSIZE) {
2052 case CS5:
7192f92c 2053 mode |= ATMEL_US_CHRL_5;
1e6c9c28
AV
2054 break;
2055 case CS6:
7192f92c 2056 mode |= ATMEL_US_CHRL_6;
1e6c9c28
AV
2057 break;
2058 case CS7:
7192f92c 2059 mode |= ATMEL_US_CHRL_7;
1e6c9c28
AV
2060 break;
2061 default:
7192f92c 2062 mode |= ATMEL_US_CHRL_8;
1e6c9c28
AV
2063 break;
2064 }
2065
2066 /* stop bits */
2067 if (termios->c_cflag & CSTOPB)
7192f92c 2068 mode |= ATMEL_US_NBSTOP_2;
1e6c9c28
AV
2069
2070 /* parity */
2071 if (termios->c_cflag & PARENB) {
b843aa21
RB
2072 /* Mark or Space parity */
2073 if (termios->c_cflag & CMSPAR) {
1e6c9c28 2074 if (termios->c_cflag & PARODD)
7192f92c 2075 mode |= ATMEL_US_PAR_MARK;
1e6c9c28 2076 else
7192f92c 2077 mode |= ATMEL_US_PAR_SPACE;
b843aa21 2078 } else if (termios->c_cflag & PARODD)
7192f92c 2079 mode |= ATMEL_US_PAR_ODD;
1e6c9c28 2080 else
7192f92c 2081 mode |= ATMEL_US_PAR_EVEN;
b843aa21 2082 } else
7192f92c 2083 mode |= ATMEL_US_PAR_NONE;
1e6c9c28
AV
2084
2085 spin_lock_irqsave(&port->lock, flags);
2086
7192f92c 2087 port->read_status_mask = ATMEL_US_OVRE;
1e6c9c28 2088 if (termios->c_iflag & INPCK)
7192f92c 2089 port->read_status_mask |= (ATMEL_US_FRAME | ATMEL_US_PARE);
ef8b9ddc 2090 if (termios->c_iflag & (IGNBRK | BRKINT | PARMRK))
7192f92c 2091 port->read_status_mask |= ATMEL_US_RXBRK;
1e6c9c28 2092
64e22ebe 2093 if (atmel_use_pdc_rx(port))
a6670615 2094 /* need to enable error interrupts */
4e7decda 2095 atmel_uart_writel(port, ATMEL_US_IER, port->read_status_mask);
a6670615 2096
1e6c9c28
AV
2097 /*
2098 * Characters to ignore
2099 */
2100 port->ignore_status_mask = 0;
2101 if (termios->c_iflag & IGNPAR)
7192f92c 2102 port->ignore_status_mask |= (ATMEL_US_FRAME | ATMEL_US_PARE);
1e6c9c28 2103 if (termios->c_iflag & IGNBRK) {
7192f92c 2104 port->ignore_status_mask |= ATMEL_US_RXBRK;
1e6c9c28
AV
2105 /*
2106 * If we're ignoring parity and break indicators,
2107 * ignore overruns too (for real raw support).
2108 */
2109 if (termios->c_iflag & IGNPAR)
7192f92c 2110 port->ignore_status_mask |= ATMEL_US_OVRE;
1e6c9c28 2111 }
b843aa21 2112 /* TODO: Ignore all characters if CREAD is set.*/
1e6c9c28
AV
2113
2114 /* update the per-port timeout */
2115 uart_update_timeout(port, termios->c_cflag, baud);
2116
0ccad870
HS
2117 /*
2118 * save/disable interrupts. The tty layer will ensure that the
2119 * transmitter is empty if requested by the caller, so there's
2120 * no need to wait for it here.
2121 */
4e7decda
CP
2122 imr = atmel_uart_readl(port, ATMEL_US_IMR);
2123 atmel_uart_writel(port, ATMEL_US_IDR, -1);
1e6c9c28
AV
2124
2125 /* disable receiver and transmitter */
4e7decda 2126 atmel_uart_writel(port, ATMEL_US_CR, ATMEL_US_TXDIS | ATMEL_US_RXDIS);
1e6c9c28 2127
1cf6e8fc 2128 /* mode */
13bd3e6f 2129 if (port->rs485.flags & SER_RS485_ENABLED) {
4e7decda
CP
2130 atmel_uart_writel(port, ATMEL_US_TTGR,
2131 port->rs485.delay_rts_after_send);
e8faff73 2132 mode |= ATMEL_US_USMODE_RS485;
1cf6e8fc
CP
2133 } else if (termios->c_cflag & CRTSCTS) {
2134 /* RS232 with hardware handshake (RTS/CTS) */
5be605ac
AB
2135 if (atmel_use_dma_rx(port) && !atmel_use_fifo(port)) {
2136 dev_info(port->dev, "not enabling hardware flow control because DMA is used");
2137 termios->c_cflag &= ~CRTSCTS;
2138 } else {
2139 mode |= ATMEL_US_USMODE_HWHS;
2140 }
1cf6e8fc
CP
2141 } else {
2142 /* RS232 without hadware handshake */
2143 mode |= ATMEL_US_USMODE_NORMAL;
e8faff73
CS
2144 }
2145
1cf6e8fc 2146 /* set the mode, clock divisor, parity, stop bits and data size */
4e7decda 2147 atmel_uart_writel(port, ATMEL_US_MR, mode);
1e6c9c28 2148
1cf6e8fc
CP
2149 /*
2150 * when switching the mode, set the RTS line state according to the
2151 * new mode, otherwise keep the former state
2152 */
2153 if ((old_mode & ATMEL_US_USMODE) != (mode & ATMEL_US_USMODE)) {
2154 unsigned int rts_state;
2155
2156 if ((mode & ATMEL_US_USMODE) == ATMEL_US_USMODE_HWHS) {
2157 /* let the hardware control the RTS line */
2158 rts_state = ATMEL_US_RTSDIS;
2159 } else {
2160 /* force RTS line to low level */
2161 rts_state = ATMEL_US_RTSEN;
2162 }
2163
4e7decda 2164 atmel_uart_writel(port, ATMEL_US_CR, rts_state);
1cf6e8fc
CP
2165 }
2166
5bf5635a
LD
2167 /*
2168 * Set the baud rate:
2169 * Fractional baudrate allows to setup output frequency more
2170 * accurately. This feature is enabled only when using normal mode.
2171 * baudrate = selected clock / (8 * (2 - OVER) * (CD + FP / 8))
2172 * Currently, OVER is always set to 0 so we get
2173 * baudrate = selected clock (16 * (CD + FP / 8))
2174 */
2175 if (atmel_port->has_frac_baudrate &&
2176 (mode & ATMEL_US_USMODE) == ATMEL_US_USMODE_NORMAL) {
2177 div = DIV_ROUND_CLOSEST(port->uartclk, baud);
2178 cd = div / 16;
2179 fp = DIV_ROUND_CLOSEST(div % 16, 2);
2180 } else {
2181 cd = uart_get_divisor(port, baud);
2182 }
2183
2184 if (cd > 65535) { /* BRGR is 16-bit, so switch to slower clock */
2185 cd /= 8;
2186 mode |= ATMEL_US_USCLKS_MCK_DIV8;
2187 }
2188 quot = cd | fp << ATMEL_US_FP_OFFSET;
2189
4e7decda
CP
2190 atmel_uart_writel(port, ATMEL_US_BRGR, quot);
2191 atmel_uart_writel(port, ATMEL_US_CR, ATMEL_US_RSTSTA | ATMEL_US_RSTRX);
2192 atmel_uart_writel(port, ATMEL_US_CR, ATMEL_US_TXEN | ATMEL_US_RXEN);
1e6c9c28
AV
2193
2194 /* restore interrupts */
4e7decda 2195 atmel_uart_writel(port, ATMEL_US_IER, imr);
1e6c9c28
AV
2196
2197 /* CTS flow-control and modem-status interrupts */
2198 if (UART_ENABLE_MS(port, termios->c_cflag))
35b675b9
RG
2199 atmel_enable_ms(port);
2200 else
2201 atmel_disable_ms(port);
1e6c9c28
AV
2202
2203 spin_unlock_irqrestore(&port->lock, flags);
2204}
2205
732a84a0 2206static void atmel_set_ldisc(struct uart_port *port, struct ktermios *termios)
42bd7a4f 2207{
732a84a0 2208 if (termios->c_line == N_PPS) {
42bd7a4f 2209 port->flags |= UPF_HARDPPS_CD;
d41510ce 2210 spin_lock_irq(&port->lock);
42bd7a4f 2211 atmel_enable_ms(port);
d41510ce 2212 spin_unlock_irq(&port->lock);
42bd7a4f
VP
2213 } else {
2214 port->flags &= ~UPF_HARDPPS_CD;
cab68f89
PH
2215 if (!UART_ENABLE_MS(port, termios->c_cflag)) {
2216 spin_lock_irq(&port->lock);
2217 atmel_disable_ms(port);
2218 spin_unlock_irq(&port->lock);
2219 }
42bd7a4f
VP
2220 }
2221}
2222
1e6c9c28
AV
2223/*
2224 * Return string describing the specified port
2225 */
7192f92c 2226static const char *atmel_type(struct uart_port *port)
1e6c9c28 2227{
9ab4f88b 2228 return (port->type == PORT_ATMEL) ? "ATMEL_SERIAL" : NULL;
1e6c9c28
AV
2229}
2230
2231/*
2232 * Release the memory region(s) being used by 'port'.
2233 */
7192f92c 2234static void atmel_release_port(struct uart_port *port)
1e6c9c28 2235{
afefc415
AV
2236 struct platform_device *pdev = to_platform_device(port->dev);
2237 int size = pdev->resource[0].end - pdev->resource[0].start + 1;
2238
2239 release_mem_region(port->mapbase, size);
2240
2241 if (port->flags & UPF_IOREMAP) {
2242 iounmap(port->membase);
2243 port->membase = NULL;
2244 }
1e6c9c28
AV
2245}
2246
2247/*
2248 * Request the memory region(s) being used by 'port'.
2249 */
7192f92c 2250static int atmel_request_port(struct uart_port *port)
1e6c9c28 2251{
afefc415
AV
2252 struct platform_device *pdev = to_platform_device(port->dev);
2253 int size = pdev->resource[0].end - pdev->resource[0].start + 1;
2254
7192f92c 2255 if (!request_mem_region(port->mapbase, size, "atmel_serial"))
afefc415
AV
2256 return -EBUSY;
2257
2258 if (port->flags & UPF_IOREMAP) {
2259 port->membase = ioremap(port->mapbase, size);
2260 if (port->membase == NULL) {
2261 release_mem_region(port->mapbase, size);
2262 return -ENOMEM;
2263 }
2264 }
1e6c9c28 2265
afefc415 2266 return 0;
1e6c9c28
AV
2267}
2268
2269/*
2270 * Configure/autoconfigure the port.
2271 */
7192f92c 2272static void atmel_config_port(struct uart_port *port, int flags)
1e6c9c28
AV
2273{
2274 if (flags & UART_CONFIG_TYPE) {
9ab4f88b 2275 port->type = PORT_ATMEL;
7192f92c 2276 atmel_request_port(port);
1e6c9c28
AV
2277 }
2278}
2279
2280/*
2281 * Verify the new serial_struct (for TIOCSSERIAL).
2282 */
7192f92c 2283static int atmel_verify_port(struct uart_port *port, struct serial_struct *ser)
1e6c9c28
AV
2284{
2285 int ret = 0;
9ab4f88b 2286 if (ser->type != PORT_UNKNOWN && ser->type != PORT_ATMEL)
1e6c9c28
AV
2287 ret = -EINVAL;
2288 if (port->irq != ser->irq)
2289 ret = -EINVAL;
2290 if (ser->io_type != SERIAL_IO_MEM)
2291 ret = -EINVAL;
2292 if (port->uartclk / 16 != ser->baud_base)
2293 ret = -EINVAL;
270c2ade 2294 if (port->mapbase != (unsigned long)ser->iomem_base)
1e6c9c28
AV
2295 ret = -EINVAL;
2296 if (port->iobase != ser->port)
2297 ret = -EINVAL;
2298 if (ser->hub6 != 0)
2299 ret = -EINVAL;
2300 return ret;
2301}
2302
8fe2d541
AT
2303#ifdef CONFIG_CONSOLE_POLL
2304static int atmel_poll_get_char(struct uart_port *port)
2305{
4e7decda 2306 while (!(atmel_uart_readl(port, ATMEL_US_CSR) & ATMEL_US_RXRDY))
8fe2d541
AT
2307 cpu_relax();
2308
a6499435 2309 return atmel_uart_read_char(port);
8fe2d541
AT
2310}
2311
2312static void atmel_poll_put_char(struct uart_port *port, unsigned char ch)
2313{
4e7decda 2314 while (!(atmel_uart_readl(port, ATMEL_US_CSR) & ATMEL_US_TXRDY))
8fe2d541
AT
2315 cpu_relax();
2316
a6499435 2317 atmel_uart_write_char(port, ch);
8fe2d541
AT
2318}
2319#endif
2320
5c7dcdb6 2321static const struct uart_ops atmel_pops = {
7192f92c
HS
2322 .tx_empty = atmel_tx_empty,
2323 .set_mctrl = atmel_set_mctrl,
2324 .get_mctrl = atmel_get_mctrl,
2325 .stop_tx = atmel_stop_tx,
2326 .start_tx = atmel_start_tx,
2327 .stop_rx = atmel_stop_rx,
2328 .enable_ms = atmel_enable_ms,
2329 .break_ctl = atmel_break_ctl,
2330 .startup = atmel_startup,
2331 .shutdown = atmel_shutdown,
9afd561a 2332 .flush_buffer = atmel_flush_buffer,
7192f92c 2333 .set_termios = atmel_set_termios,
42bd7a4f 2334 .set_ldisc = atmel_set_ldisc,
7192f92c
HS
2335 .type = atmel_type,
2336 .release_port = atmel_release_port,
2337 .request_port = atmel_request_port,
2338 .config_port = atmel_config_port,
2339 .verify_port = atmel_verify_port,
2340 .pm = atmel_serial_pm,
8fe2d541
AT
2341#ifdef CONFIG_CONSOLE_POLL
2342 .poll_get_char = atmel_poll_get_char,
2343 .poll_put_char = atmel_poll_put_char,
2344#endif
1e6c9c28
AV
2345};
2346
afefc415
AV
2347/*
2348 * Configure the port from the platform device resource info.
2349 */
91f8c2d8 2350static int atmel_init_port(struct atmel_uart_port *atmel_port,
b843aa21 2351 struct platform_device *pdev)
1e6c9c28 2352{
91f8c2d8 2353 int ret;
7192f92c 2354 struct uart_port *port = &atmel_port->uart;
574de559 2355 struct atmel_uart_data *pdata = dev_get_platdata(&pdev->dev);
afefc415 2356
4a1e8888
LZ
2357 atmel_init_property(atmel_port, pdev);
2358 atmel_set_ops(port);
afefc415 2359
13bd3e6f 2360 atmel_init_rs485(port, pdev);
a930e528 2361
e8faff73
CS
2362 port->iotype = UPIO_MEM;
2363 port->flags = UPF_BOOT_AUTOCONF;
2364 port->ops = &atmel_pops;
2365 port->fifosize = 1;
e8faff73 2366 port->dev = &pdev->dev;
afefc415
AV
2367 port->mapbase = pdev->resource[0].start;
2368 port->irq = pdev->resource[1].start;
13bd3e6f 2369 port->rs485_config = atmel_config_rs485;
afefc415 2370
1ecc26bd
RB
2371 memset(&atmel_port->rx_ring, 0, sizeof(atmel_port->rx_ring));
2372
5fbe46b6 2373 if (pdata && pdata->regs) {
75d35213 2374 /* Already mapped by setup code */
1acfc7ec 2375 port->membase = pdata->regs;
588edbf3 2376 } else {
afefc415
AV
2377 port->flags |= UPF_IOREMAP;
2378 port->membase = NULL;
2379 }
1e6c9c28 2380
b843aa21
RB
2381 /* for console, the clock could already be configured */
2382 if (!atmel_port->clk) {
7192f92c 2383 atmel_port->clk = clk_get(&pdev->dev, "usart");
91f8c2d8
BB
2384 if (IS_ERR(atmel_port->clk)) {
2385 ret = PTR_ERR(atmel_port->clk);
2386 atmel_port->clk = NULL;
2387 return ret;
2388 }
2389 ret = clk_prepare_enable(atmel_port->clk);
2390 if (ret) {
2391 clk_put(atmel_port->clk);
2392 atmel_port->clk = NULL;
2393 return ret;
2394 }
7192f92c 2395 port->uartclk = clk_get_rate(atmel_port->clk);
91f8c2d8 2396 clk_disable_unprepare(atmel_port->clk);
06a7f058 2397 /* only enable clock when USART is in use */
afefc415 2398 }
a6670615 2399
e8faff73 2400 /* Use TXEMPTY for interrupt when rs485 else TXRDY or ENDTX|TXBUFE */
13bd3e6f 2401 if (port->rs485.flags & SER_RS485_ENABLED)
e8faff73 2402 atmel_port->tx_done_mask = ATMEL_US_TXEMPTY;
64e22ebe 2403 else if (atmel_use_pdc_tx(port)) {
a6670615 2404 port->fifosize = PDC_BUFFER_SIZE;
e8faff73
CS
2405 atmel_port->tx_done_mask = ATMEL_US_ENDTX | ATMEL_US_TXBUFE;
2406 } else {
2407 atmel_port->tx_done_mask = ATMEL_US_TXRDY;
2408 }
91f8c2d8
BB
2409
2410 return 0;
1e6c9c28
AV
2411}
2412
69f6a27b
JCPV
2413struct platform_device *atmel_default_console_device; /* the serial console device */
2414
749c4e60 2415#ifdef CONFIG_SERIAL_ATMEL_CONSOLE
7192f92c 2416static void atmel_console_putchar(struct uart_port *port, int ch)
d358788f 2417{
4e7decda 2418 while (!(atmel_uart_readl(port, ATMEL_US_CSR) & ATMEL_US_TXRDY))
829dd811 2419 cpu_relax();
a6499435 2420 atmel_uart_write_char(port, ch);
d358788f 2421}
1e6c9c28
AV
2422
2423/*
2424 * Interrupts are disabled on entering
2425 */
7192f92c 2426static void atmel_console_write(struct console *co, const char *s, u_int count)
1e6c9c28 2427{
7192f92c 2428 struct uart_port *port = &atmel_ports[co->index].uart;
e8faff73 2429 struct atmel_uart_port *atmel_port = to_atmel_uart_port(port);
d358788f 2430 unsigned int status, imr;
39d4c922 2431 unsigned int pdc_tx;
1e6c9c28
AV
2432
2433 /*
b843aa21 2434 * First, save IMR and then disable interrupts
1e6c9c28 2435 */
4e7decda
CP
2436 imr = atmel_uart_readl(port, ATMEL_US_IMR);
2437 atmel_uart_writel(port, ATMEL_US_IDR,
2438 ATMEL_US_RXRDY | atmel_port->tx_done_mask);
1e6c9c28 2439
39d4c922 2440 /* Store PDC transmit status and disable it */
4e7decda
CP
2441 pdc_tx = atmel_uart_readl(port, ATMEL_PDC_PTSR) & ATMEL_PDC_TXTEN;
2442 atmel_uart_writel(port, ATMEL_PDC_PTCR, ATMEL_PDC_TXTDIS);
39d4c922 2443
7192f92c 2444 uart_console_write(port, s, count, atmel_console_putchar);
1e6c9c28
AV
2445
2446 /*
b843aa21
RB
2447 * Finally, wait for transmitter to become empty
2448 * and restore IMR
1e6c9c28
AV
2449 */
2450 do {
4e7decda 2451 status = atmel_uart_readl(port, ATMEL_US_CSR);
7192f92c 2452 } while (!(status & ATMEL_US_TXRDY));
39d4c922
MP
2453
2454 /* Restore PDC transmit status */
2455 if (pdc_tx)
4e7decda 2456 atmel_uart_writel(port, ATMEL_PDC_PTCR, ATMEL_PDC_TXTEN);
39d4c922 2457
b843aa21 2458 /* set interrupts back the way they were */
4e7decda 2459 atmel_uart_writel(port, ATMEL_US_IER, imr);
1e6c9c28
AV
2460}
2461
2462/*
b843aa21
RB
2463 * If the port was already initialised (eg, by a boot loader),
2464 * try to determine the current setup.
1e6c9c28 2465 */
b843aa21
RB
2466static void __init atmel_console_get_options(struct uart_port *port, int *baud,
2467 int *parity, int *bits)
1e6c9c28
AV
2468{
2469 unsigned int mr, quot;
2470
1c0fd82f
HS
2471 /*
2472 * If the baud rate generator isn't running, the port wasn't
2473 * initialized by the boot loader.
2474 */
4e7decda 2475 quot = atmel_uart_readl(port, ATMEL_US_BRGR) & ATMEL_US_CD;
1c0fd82f
HS
2476 if (!quot)
2477 return;
1e6c9c28 2478
4e7decda 2479 mr = atmel_uart_readl(port, ATMEL_US_MR) & ATMEL_US_CHRL;
7192f92c 2480 if (mr == ATMEL_US_CHRL_8)
1e6c9c28
AV
2481 *bits = 8;
2482 else
2483 *bits = 7;
2484
4e7decda 2485 mr = atmel_uart_readl(port, ATMEL_US_MR) & ATMEL_US_PAR;
7192f92c 2486 if (mr == ATMEL_US_PAR_EVEN)
1e6c9c28 2487 *parity = 'e';
7192f92c 2488 else if (mr == ATMEL_US_PAR_ODD)
1e6c9c28
AV
2489 *parity = 'o';
2490
4d5e392c
HS
2491 /*
2492 * The serial core only rounds down when matching this to a
2493 * supported baud rate. Make sure we don't end up slightly
2494 * lower than one of those, as it would make us fall through
2495 * to a much lower baud rate than we really want.
2496 */
4d5e392c 2497 *baud = port->uartclk / (16 * (quot - 1));
1e6c9c28
AV
2498}
2499
7192f92c 2500static int __init atmel_console_setup(struct console *co, char *options)
1e6c9c28 2501{
91f8c2d8 2502 int ret;
7192f92c 2503 struct uart_port *port = &atmel_ports[co->index].uart;
1e6c9c28
AV
2504 int baud = 115200;
2505 int bits = 8;
2506 int parity = 'n';
2507 int flow = 'n';
2508
b843aa21
RB
2509 if (port->membase == NULL) {
2510 /* Port not initialized yet - delay setup */
afefc415 2511 return -ENODEV;
b843aa21 2512 }
1e6c9c28 2513
91f8c2d8
BB
2514 ret = clk_prepare_enable(atmel_ports[co->index].clk);
2515 if (ret)
2516 return ret;
06a7f058 2517
4e7decda
CP
2518 atmel_uart_writel(port, ATMEL_US_IDR, -1);
2519 atmel_uart_writel(port, ATMEL_US_CR, ATMEL_US_RSTSTA | ATMEL_US_RSTRX);
2520 atmel_uart_writel(port, ATMEL_US_CR, ATMEL_US_TXEN | ATMEL_US_RXEN);
1e6c9c28
AV
2521
2522 if (options)
2523 uart_parse_options(options, &baud, &parity, &bits, &flow);
2524 else
7192f92c 2525 atmel_console_get_options(port, &baud, &parity, &bits);
1e6c9c28
AV
2526
2527 return uart_set_options(port, co, baud, parity, bits, flow);
2528}
2529
7192f92c 2530static struct uart_driver atmel_uart;
1e6c9c28 2531
7192f92c
HS
2532static struct console atmel_console = {
2533 .name = ATMEL_DEVICENAME,
2534 .write = atmel_console_write,
1e6c9c28 2535 .device = uart_console_device,
7192f92c 2536 .setup = atmel_console_setup,
1e6c9c28
AV
2537 .flags = CON_PRINTBUFFER,
2538 .index = -1,
7192f92c 2539 .data = &atmel_uart,
1e6c9c28
AV
2540};
2541
06a7f058 2542#define ATMEL_CONSOLE_DEVICE (&atmel_console)
1e6c9c28 2543
afefc415
AV
2544/*
2545 * Early console initialization (before VM subsystem initialized).
2546 */
7192f92c 2547static int __init atmel_console_init(void)
1e6c9c28 2548{
91f8c2d8 2549 int ret;
73e2798b 2550 if (atmel_default_console_device) {
0d0a3cc1 2551 struct atmel_uart_data *pdata =
574de559 2552 dev_get_platdata(&atmel_default_console_device->dev);
efb8d21b 2553 int id = pdata->num;
b78cd169 2554 struct atmel_uart_port *atmel_port = &atmel_ports[id];
4cbf9f48 2555
b78cd169
JA
2556 atmel_port->backup_imr = 0;
2557 atmel_port->uart.line = id;
0d0a3cc1 2558
4cbf9f48 2559 add_preferred_console(ATMEL_DEVICENAME, id, NULL);
b78cd169 2560 ret = atmel_init_port(atmel_port, atmel_default_console_device);
91f8c2d8
BB
2561 if (ret)
2562 return ret;
7192f92c 2563 register_console(&atmel_console);
afefc415 2564 }
1e6c9c28 2565
1e6c9c28
AV
2566 return 0;
2567}
b843aa21 2568
7192f92c 2569console_initcall(atmel_console_init);
1e6c9c28 2570
afefc415
AV
2571/*
2572 * Late console initialization.
2573 */
7192f92c 2574static int __init atmel_late_console_init(void)
afefc415 2575{
b843aa21
RB
2576 if (atmel_default_console_device
2577 && !(atmel_console.flags & CON_ENABLED))
7192f92c 2578 register_console(&atmel_console);
afefc415
AV
2579
2580 return 0;
2581}
b843aa21 2582
7192f92c 2583core_initcall(atmel_late_console_init);
afefc415 2584
dfa7f343
HS
2585static inline bool atmel_is_console_port(struct uart_port *port)
2586{
2587 return port->cons && port->cons->index == port->line;
2588}
2589
1e6c9c28 2590#else
7192f92c 2591#define ATMEL_CONSOLE_DEVICE NULL
dfa7f343
HS
2592
2593static inline bool atmel_is_console_port(struct uart_port *port)
2594{
2595 return false;
2596}
1e6c9c28
AV
2597#endif
2598
7192f92c 2599static struct uart_driver atmel_uart = {
b843aa21
RB
2600 .owner = THIS_MODULE,
2601 .driver_name = "atmel_serial",
2602 .dev_name = ATMEL_DEVICENAME,
2603 .major = SERIAL_ATMEL_MAJOR,
2604 .minor = MINOR_START,
2605 .nr = ATMEL_MAX_UART,
2606 .cons = ATMEL_CONSOLE_DEVICE,
1e6c9c28
AV
2607};
2608
afefc415 2609#ifdef CONFIG_PM
f826caa4
HS
2610static bool atmel_serial_clk_will_stop(void)
2611{
2612#ifdef CONFIG_ARCH_AT91
2613 return at91_suspend_entering_slow_clock();
2614#else
2615 return false;
2616#endif
2617}
2618
b843aa21
RB
2619static int atmel_serial_suspend(struct platform_device *pdev,
2620 pm_message_t state)
1e6c9c28 2621{
afefc415 2622 struct uart_port *port = platform_get_drvdata(pdev);
c811ab8c 2623 struct atmel_uart_port *atmel_port = to_atmel_uart_port(port);
afefc415 2624
e1c609ef
HS
2625 if (atmel_is_console_port(port) && console_suspend_enabled) {
2626 /* Drain the TX shifter */
4e7decda
CP
2627 while (!(atmel_uart_readl(port, ATMEL_US_CSR) &
2628 ATMEL_US_TXEMPTY))
e1c609ef
HS
2629 cpu_relax();
2630 }
2631
f05596db
AS
2632 /* we can not wake up if we're running on slow clock */
2633 atmel_port->may_wakeup = device_may_wakeup(&pdev->dev);
2c7af5ba
BB
2634 if (atmel_serial_clk_will_stop()) {
2635 unsigned long flags;
2636
2637 spin_lock_irqsave(&atmel_port->lock_suspended, flags);
2638 atmel_port->suspended = true;
2639 spin_unlock_irqrestore(&atmel_port->lock_suspended, flags);
f05596db 2640 device_set_wakeup_enable(&pdev->dev, 0);
2c7af5ba 2641 }
f05596db
AS
2642
2643 uart_suspend_port(&atmel_uart, port);
1e6c9c28 2644
afefc415
AV
2645 return 0;
2646}
1e6c9c28 2647
7192f92c 2648static int atmel_serial_resume(struct platform_device *pdev)
afefc415
AV
2649{
2650 struct uart_port *port = platform_get_drvdata(pdev);
c811ab8c 2651 struct atmel_uart_port *atmel_port = to_atmel_uart_port(port);
2c7af5ba
BB
2652 unsigned long flags;
2653
2654 spin_lock_irqsave(&atmel_port->lock_suspended, flags);
2655 if (atmel_port->pending) {
2656 atmel_handle_receive(port, atmel_port->pending);
2657 atmel_handle_status(port, atmel_port->pending,
2658 atmel_port->pending_status);
2659 atmel_handle_transmit(port, atmel_port->pending);
2660 atmel_port->pending = 0;
2661 }
2662 atmel_port->suspended = false;
2663 spin_unlock_irqrestore(&atmel_port->lock_suspended, flags);
1e6c9c28 2664
f05596db
AS
2665 uart_resume_port(&atmel_uart, port);
2666 device_set_wakeup_enable(&pdev->dev, atmel_port->may_wakeup);
1e6c9c28
AV
2667
2668 return 0;
2669}
afefc415 2670#else
7192f92c
HS
2671#define atmel_serial_suspend NULL
2672#define atmel_serial_resume NULL
afefc415 2673#endif
1e6c9c28 2674
b78cd169 2675static void atmel_serial_probe_fifos(struct atmel_uart_port *atmel_port,
b5199d46
CP
2676 struct platform_device *pdev)
2677{
b78cd169
JA
2678 atmel_port->fifo_size = 0;
2679 atmel_port->rts_low = 0;
2680 atmel_port->rts_high = 0;
b5199d46
CP
2681
2682 if (of_property_read_u32(pdev->dev.of_node,
2683 "atmel,fifo-size",
b78cd169 2684 &atmel_port->fifo_size))
b5199d46
CP
2685 return;
2686
b78cd169 2687 if (!atmel_port->fifo_size)
b5199d46
CP
2688 return;
2689
b78cd169
JA
2690 if (atmel_port->fifo_size < ATMEL_MIN_FIFO_SIZE) {
2691 atmel_port->fifo_size = 0;
b5199d46
CP
2692 dev_err(&pdev->dev, "Invalid FIFO size\n");
2693 return;
2694 }
2695
2696 /*
2697 * 0 <= rts_low <= rts_high <= fifo_size
2698 * Once their CTS line asserted by the remote peer, some x86 UARTs tend
2699 * to flush their internal TX FIFO, commonly up to 16 data, before
2700 * actually stopping to send new data. So we try to set the RTS High
2701 * Threshold to a reasonably high value respecting this 16 data
2702 * empirical rule when possible.
2703 */
b78cd169
JA
2704 atmel_port->rts_high = max_t(int, atmel_port->fifo_size >> 1,
2705 atmel_port->fifo_size - ATMEL_RTS_HIGH_OFFSET);
2706 atmel_port->rts_low = max_t(int, atmel_port->fifo_size >> 2,
2707 atmel_port->fifo_size - ATMEL_RTS_LOW_OFFSET);
b5199d46
CP
2708
2709 dev_info(&pdev->dev, "Using FIFO (%u data)\n",
b78cd169 2710 atmel_port->fifo_size);
b5199d46 2711 dev_dbg(&pdev->dev, "RTS High Threshold : %2u data\n",
b78cd169 2712 atmel_port->rts_high);
b5199d46 2713 dev_dbg(&pdev->dev, "RTS Low Threshold : %2u data\n",
b78cd169 2714 atmel_port->rts_low);
b5199d46
CP
2715}
2716
9671f099 2717static int atmel_serial_probe(struct platform_device *pdev)
1e6c9c28 2718{
b78cd169 2719 struct atmel_uart_port *atmel_port;
5fbe46b6 2720 struct device_node *np = pdev->dev.of_node;
574de559 2721 struct atmel_uart_data *pdata = dev_get_platdata(&pdev->dev);
1ecc26bd 2722 void *data;
4cbf9f48 2723 int ret = -ENODEV;
bd737f87 2724 bool rs485_enabled;
1e6c9c28 2725
9d09daf8 2726 BUILD_BUG_ON(ATMEL_SERIAL_RINGSIZE & (ATMEL_SERIAL_RINGSIZE - 1));
1ecc26bd 2727
5fbe46b6
NF
2728 if (np)
2729 ret = of_alias_get_id(np, "serial");
2730 else
2731 if (pdata)
2732 ret = pdata->num;
4cbf9f48
NF
2733
2734 if (ret < 0)
5fbe46b6 2735 /* port id not found in platform data nor device-tree aliases:
4cbf9f48 2736 * auto-enumerate it */
503bded9 2737 ret = find_first_zero_bit(atmel_ports_in_use, ATMEL_MAX_UART);
4cbf9f48 2738
503bded9 2739 if (ret >= ATMEL_MAX_UART) {
4cbf9f48
NF
2740 ret = -ENODEV;
2741 goto err;
2742 }
2743
503bded9 2744 if (test_and_set_bit(ret, atmel_ports_in_use)) {
4cbf9f48
NF
2745 /* port already in use */
2746 ret = -EBUSY;
2747 goto err;
2748 }
2749
b78cd169
JA
2750 atmel_port = &atmel_ports[ret];
2751 atmel_port->backup_imr = 0;
2752 atmel_port->uart.line = ret;
2753 atmel_serial_probe_fifos(atmel_port, pdev);
e0b0baad 2754
98f2082c 2755 atomic_set(&atmel_port->tasklet_shutdown, 0);
b78cd169 2756 spin_lock_init(&atmel_port->lock_suspended);
2c7af5ba 2757
b78cd169 2758 ret = atmel_init_port(atmel_port, pdev);
91f8c2d8 2759 if (ret)
6fbb9bdf 2760 goto err_clear_bit;
1e6c9c28 2761
b78cd169
JA
2762 atmel_port->gpios = mctrl_gpio_init(&atmel_port->uart, 0);
2763 if (IS_ERR(atmel_port->gpios)) {
2764 ret = PTR_ERR(atmel_port->gpios);
18dfef9c
UKK
2765 goto err_clear_bit;
2766 }
2767
b78cd169 2768 if (!atmel_use_pdc_rx(&atmel_port->uart)) {
a6670615 2769 ret = -ENOMEM;
6433471d
HS
2770 data = kmalloc(sizeof(struct atmel_uart_char)
2771 * ATMEL_SERIAL_RINGSIZE, GFP_KERNEL);
a6670615
CC
2772 if (!data)
2773 goto err_alloc_ring;
b78cd169 2774 atmel_port->rx_ring.buf = data;
a6670615 2775 }
1ecc26bd 2776
b78cd169 2777 rs485_enabled = atmel_port->uart.rs485.flags & SER_RS485_ENABLED;
bd737f87 2778
b78cd169 2779 ret = uart_add_one_port(&atmel_uart, &atmel_port->uart);
dfa7f343
HS
2780 if (ret)
2781 goto err_add_port;
2782
8da14b5f 2783#ifdef CONFIG_SERIAL_ATMEL_CONSOLE
b78cd169 2784 if (atmel_is_console_port(&atmel_port->uart)
06a7f058
DB
2785 && ATMEL_CONSOLE_DEVICE->flags & CON_ENABLED) {
2786 /*
2787 * The serial core enabled the clock for us, so undo
91f8c2d8 2788 * the clk_prepare_enable() in atmel_console_setup()
06a7f058 2789 */
b78cd169 2790 clk_disable_unprepare(atmel_port->clk);
06a7f058 2791 }
8da14b5f 2792#endif
06a7f058 2793
dfa7f343 2794 device_init_wakeup(&pdev->dev, 1);
b78cd169 2795 platform_set_drvdata(pdev, atmel_port);
dfa7f343 2796
d4f64187
CP
2797 /*
2798 * The peripheral clock has been disabled by atmel_init_port():
2799 * enable it before accessing I/O registers
2800 */
b78cd169 2801 clk_prepare_enable(atmel_port->clk);
d4f64187 2802
bd737f87 2803 if (rs485_enabled) {
b78cd169 2804 atmel_uart_writel(&atmel_port->uart, ATMEL_US_MR,
4e7decda 2805 ATMEL_US_USMODE_NORMAL);
b78cd169
JA
2806 atmel_uart_writel(&atmel_port->uart, ATMEL_US_CR,
2807 ATMEL_US_RTSEN);
5dfbd1d7
CS
2808 }
2809
055560b0
ES
2810 /*
2811 * Get port name of usart or uart
2812 */
b78cd169 2813 atmel_get_ip_name(&atmel_port->uart);
055560b0 2814
d4f64187
CP
2815 /*
2816 * The peripheral clock can now safely be disabled till the port
2817 * is used
2818 */
b78cd169 2819 clk_disable_unprepare(atmel_port->clk);
d4f64187 2820
dfa7f343
HS
2821 return 0;
2822
2823err_add_port:
b78cd169
JA
2824 kfree(atmel_port->rx_ring.buf);
2825 atmel_port->rx_ring.buf = NULL;
1ecc26bd 2826err_alloc_ring:
b78cd169
JA
2827 if (!atmel_is_console_port(&atmel_port->uart)) {
2828 clk_put(atmel_port->clk);
2829 atmel_port->clk = NULL;
afefc415 2830 }
6fbb9bdf 2831err_clear_bit:
b78cd169 2832 clear_bit(atmel_port->uart.line, atmel_ports_in_use);
4cbf9f48 2833err:
afefc415
AV
2834 return ret;
2835}
2836
f4a8ab04
RI
2837/*
2838 * Even if the driver is not modular, it makes sense to be able to
2839 * unbind a device: there can be many bound devices, and there are
2840 * situations where dynamic binding and unbinding can be useful.
2841 *
2842 * For example, a connected device can require a specific firmware update
2843 * protocol that needs bitbanging on IO lines, but use the regular serial
2844 * port in the normal case.
2845 */
2846static int atmel_serial_remove(struct platform_device *pdev)
2847{
2848 struct uart_port *port = platform_get_drvdata(pdev);
2849 struct atmel_uart_port *atmel_port = to_atmel_uart_port(port);
2850 int ret = 0;
2851
00e8e658
NF
2852 tasklet_kill(&atmel_port->tasklet_rx);
2853 tasklet_kill(&atmel_port->tasklet_tx);
f4a8ab04
RI
2854
2855 device_init_wakeup(&pdev->dev, 0);
2856
2857 ret = uart_remove_one_port(&atmel_uart, port);
2858
2859 kfree(atmel_port->rx_ring.buf);
2860
2861 /* "port" is allocated statically, so we shouldn't free it */
2862
2863 clear_bit(port->line, atmel_ports_in_use);
2864
2865 clk_put(atmel_port->clk);
2866 atmel_port->clk = NULL;
2867
2868 return ret;
2869}
2870
7192f92c
HS
2871static struct platform_driver atmel_serial_driver = {
2872 .probe = atmel_serial_probe,
f4a8ab04 2873 .remove = atmel_serial_remove,
7192f92c
HS
2874 .suspend = atmel_serial_suspend,
2875 .resume = atmel_serial_resume,
afefc415 2876 .driver = {
c39dfebc
PG
2877 .name = "atmel_usart",
2878 .of_match_table = of_match_ptr(atmel_serial_dt_ids),
afefc415
AV
2879 },
2880};
2881
7192f92c 2882static int __init atmel_serial_init(void)
afefc415
AV
2883{
2884 int ret;
2885
7192f92c 2886 ret = uart_register_driver(&atmel_uart);
afefc415
AV
2887 if (ret)
2888 return ret;
2889
7192f92c 2890 ret = platform_driver_register(&atmel_serial_driver);
afefc415 2891 if (ret)
7192f92c 2892 uart_unregister_driver(&atmel_uart);
afefc415
AV
2893
2894 return ret;
2895}
c39dfebc 2896device_initcall(atmel_serial_init);