blob: b30c93f80899b602bc8ecdb2b1301873aad259d0 [file] [log] [blame]
Andrew Victor1e6c9c22006-01-10 16:59:27 +00001/*
Haavard Skinnemoen7192f922006-10-04 16:02:05 +02002 * Driver for Atmel AT91 / AT32 Serial ports
Andrew Victor1e6c9c22006-01-10 16:59:27 +00003 * 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 *
Chip Coldwella6670612008-02-08 04:21:06 -08008 * DMA support added by Chip Coldwell.
9 *
Andrew Victor1e6c9c22006-01-10 16:59:27 +000010 * 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 */
Andrew Victor1e6c9c22006-01-10 16:59:27 +000025#include <linux/tty.h>
26#include <linux/ioport.h>
27#include <linux/slab.h>
28#include <linux/init.h>
29#include <linux/serial.h>
Andrew Victorafefc412006-06-19 19:53:19 +010030#include <linux/clk.h>
Andrew Victor1e6c9c22006-01-10 16:59:27 +000031#include <linux/console.h>
32#include <linux/sysrq.h>
33#include <linux/tty_flip.h>
Andrew Victorafefc412006-06-19 19:53:19 +010034#include <linux/platform_device.h>
Nicolas Ferre5fbe46b2011-10-12 18:07:00 +020035#include <linux/of.h>
36#include <linux/of_device.h>
Linus Walleij354e57f2013-11-07 10:25:55 +010037#include <linux/of_gpio.h>
Chip Coldwella6670612008-02-08 04:21:06 -080038#include <linux/dma-mapping.h>
Vinod Koul6b997ba2014-10-16 12:59:06 +053039#include <linux/dmaengine.h>
Andrew Victor93a3ddc2007-02-08 11:31:22 +010040#include <linux/atmel_pdc.h>
Guennadi Liakhovetskifa3218d2008-01-29 15:43:13 +010041#include <linux/atmel_serial.h>
Claudio Scordinoe8faff72010-05-03 13:31:28 +010042#include <linux/uaccess.h>
Jean-Christophe PLAGNIOL-VILLARDbcd23602012-10-30 05:12:23 +080043#include <linux/platform_data/atmel.h>
Elen Song2e68c222013-07-22 16:30:30 +080044#include <linux/timer.h>
Linus Walleij354e57f2013-11-07 10:25:55 +010045#include <linux/gpio.h>
Richard Genoude0b0baa2014-05-13 20:20:44 +020046#include <linux/gpio/consumer.h>
47#include <linux/err.h>
Richard Genoudab5e4e42014-05-13 20:20:45 +020048#include <linux/irq.h>
Boris BREZILLON2c7af5b2015-03-02 10:18:18 +010049#include <linux/suspend.h>
Andrew Victor1e6c9c22006-01-10 16:59:27 +000050
51#include <asm/io.h>
Peter Huewef7512e72010-06-29 19:35:39 +020052#include <asm/ioctls.h>
Andrew Victor1e6c9c22006-01-10 16:59:27 +000053
Chip Coldwella6670612008-02-08 04:21:06 -080054#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
Cyrille Pitchenb5199d42015-07-02 15:18:12 +020058/* 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
Haavard Skinnemoen749c4e62006-10-04 16:02:02 +020067#if defined(CONFIG_SERIAL_ATMEL_CONSOLE) && defined(CONFIG_MAGIC_SYSRQ)
Andrew Victor1e6c9c22006-01-10 16:59:27 +000068#define SUPPORT_SYSRQ
69#endif
70
71#include <linux/serial_core.h>
72
Richard Genoude0b0baa2014-05-13 20:20:44 +020073#include "serial_mctrl_gpio.h"
74
Claudio Scordinoe8faff72010-05-03 13:31:28 +010075static void atmel_start_rx(struct uart_port *port);
76static void atmel_stop_rx(struct uart_port *port);
77
Haavard Skinnemoen749c4e62006-10-04 16:02:02 +020078#ifdef CONFIG_SERIAL_ATMEL_TTYAT
Andrew Victor1e6c9c22006-01-10 16:59:27 +000079
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. */
Haavard Skinnemoen7192f922006-10-04 16:02:05 +020083#define SERIAL_ATMEL_MAJOR 204
Andrew Victor1e6c9c22006-01-10 16:59:27 +000084#define MINOR_START 154
Haavard Skinnemoen7192f922006-10-04 16:02:05 +020085#define ATMEL_DEVICENAME "ttyAT"
Andrew Victor1e6c9c22006-01-10 16:59:27 +000086
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. */
Haavard Skinnemoen7192f922006-10-04 16:02:05 +020091#define SERIAL_ATMEL_MAJOR TTY_MAJOR
Andrew Victor1e6c9c22006-01-10 16:59:27 +000092#define MINOR_START 64
Haavard Skinnemoen7192f922006-10-04 16:02:05 +020093#define ATMEL_DEVICENAME "ttyS"
Andrew Victor1e6c9c22006-01-10 16:59:27 +000094
95#endif
96
Haavard Skinnemoen7192f922006-10-04 16:02:05 +020097#define ATMEL_ISR_PASS_LIMIT 256
Andrew Victor1e6c9c22006-01-10 16:59:27 +000098
Chip Coldwella6670612008-02-08 04:21:06 -080099struct atmel_dma_buffer {
100 unsigned char *buf;
101 dma_addr_t dma_addr;
102 unsigned int dma_size;
103 unsigned int ofs;
104};
105
Remy Bohmer1ecc26b2008-02-08 04:21:05 -0800106struct atmel_uart_char {
107 u16 status;
108 u16 ch;
109};
110
111#define ATMEL_SERIAL_RINGSIZE 1024
112
Andrew Victorafefc412006-06-19 19:53:19 +0100113/*
Alexandre Belloni9af92fb2015-09-10 11:29:03 +0200114 * at91: 6 USARTs and one DBGU port (SAM9260)
115 * avr32: 4
116 */
117#define ATMEL_MAX_UART 7
118
119/*
Andrew Victorafefc412006-06-19 19:53:19 +0100120 * We wrap our port structure around the generic uart_port.
121 */
Haavard Skinnemoen7192f922006-10-04 16:02:05 +0200122struct atmel_uart_port {
Andrew Victorafefc412006-06-19 19:53:19 +0100123 struct uart_port uart; /* uart */
124 struct clk *clk; /* uart clock */
Anti Sullinf05596d2008-09-22 13:57:54 -0700125 int may_wakeup; /* cached value of device_may_wakeup for times we need to disable it */
126 u32 backup_imr; /* IMR saved during suspend */
Haavard Skinnemoen9e6077b2007-07-15 23:40:36 -0700127 int break_active; /* break being received */
Remy Bohmer1ecc26b2008-02-08 04:21:05 -0800128
Elen Song34df42f2013-07-22 16:30:27 +0800129 bool use_dma_rx; /* enable DMA receiver */
Elen Song64e22eb2013-07-22 16:30:24 +0800130 bool use_pdc_rx; /* enable PDC receiver */
Chip Coldwella6670612008-02-08 04:21:06 -0800131 short pdc_rx_idx; /* current PDC RX buffer */
132 struct atmel_dma_buffer pdc_rx[2]; /* PDC receier */
133
Elen Song08f738b2013-07-22 16:30:26 +0800134 bool use_dma_tx; /* enable DMA transmitter */
Elen Song64e22eb2013-07-22 16:30:24 +0800135 bool use_pdc_tx; /* enable PDC transmitter */
Chip Coldwella6670612008-02-08 04:21:06 -0800136 struct atmel_dma_buffer pdc_tx; /* PDC transmitter */
137
Elen Song08f738b2013-07-22 16:30:26 +0800138 spinlock_t lock_tx; /* port lock */
Elen Song34df42f2013-07-22 16:30:27 +0800139 spinlock_t lock_rx; /* port lock */
Elen Song08f738b2013-07-22 16:30:26 +0800140 struct dma_chan *chan_tx;
Elen Song34df42f2013-07-22 16:30:27 +0800141 struct dma_chan *chan_rx;
Elen Song08f738b2013-07-22 16:30:26 +0800142 struct dma_async_tx_descriptor *desc_tx;
Elen Song34df42f2013-07-22 16:30:27 +0800143 struct dma_async_tx_descriptor *desc_rx;
Elen Song08f738b2013-07-22 16:30:26 +0800144 dma_cookie_t cookie_tx;
Elen Song34df42f2013-07-22 16:30:27 +0800145 dma_cookie_t cookie_rx;
Elen Song08f738b2013-07-22 16:30:26 +0800146 struct scatterlist sg_tx;
Elen Song34df42f2013-07-22 16:30:27 +0800147 struct scatterlist sg_rx;
Remy Bohmer1ecc26b2008-02-08 04:21:05 -0800148 struct tasklet_struct tasklet;
149 unsigned int irq_status;
150 unsigned int irq_status_prev;
Leilei Zhaod033e822015-04-09 10:48:15 +0800151 unsigned int status_change;
Cyrille Pitchen5f258b32015-07-02 15:18:13 +0200152 unsigned int tx_len;
Remy Bohmer1ecc26b2008-02-08 04:21:05 -0800153
154 struct circ_buf rx_ring;
Claudio Scordinoe8faff72010-05-03 13:31:28 +0100155
Richard Genoude0b0baa2014-05-13 20:20:44 +0200156 struct mctrl_gpios *gpios;
Claudio Scordinoe8faff72010-05-03 13:31:28 +0100157 unsigned int tx_done_mask;
Cyrille Pitchenb5199d42015-07-02 15:18:12 +0200158 u32 fifo_size;
159 u32 rts_high;
160 u32 rts_low;
Richard Genoudab5e4e42014-05-13 20:20:45 +0200161 bool ms_irq_enabled;
Nicolas Ferre4b769372016-01-26 11:26:14 +0100162 bool has_hw_timer;
163 struct timer_list uart_timer;
Boris BREZILLON2c7af5b2015-03-02 10:18:18 +0100164
165 bool suspended;
166 unsigned int pending;
167 unsigned int pending_status;
168 spinlock_t lock_suspended;
169
Elen Songa930e522013-07-22 16:30:25 +0800170 int (*prepare_rx)(struct uart_port *port);
171 int (*prepare_tx)(struct uart_port *port);
172 void (*schedule_rx)(struct uart_port *port);
173 void (*schedule_tx)(struct uart_port *port);
174 void (*release_rx)(struct uart_port *port);
175 void (*release_tx)(struct uart_port *port);
Andrew Victorafefc412006-06-19 19:53:19 +0100176};
177
Haavard Skinnemoen7192f922006-10-04 16:02:05 +0200178static struct atmel_uart_port atmel_ports[ATMEL_MAX_UART];
Pawel Wieczorkiewicz503bded2013-02-20 17:26:20 +0100179static DECLARE_BITMAP(atmel_ports_in_use, ATMEL_MAX_UART);
Andrew Victorafefc412006-06-19 19:53:19 +0100180
Andrew Victor1e6c9c22006-01-10 16:59:27 +0000181#ifdef SUPPORT_SYSRQ
Haavard Skinnemoen7192f922006-10-04 16:02:05 +0200182static struct console atmel_console;
Andrew Victor1e6c9c22006-01-10 16:59:27 +0000183#endif
184
Nicolas Ferre5fbe46b2011-10-12 18:07:00 +0200185#if defined(CONFIG_OF)
186static const struct of_device_id atmel_serial_dt_ids[] = {
187 { .compatible = "atmel,at91rm9200-usart" },
188 { .compatible = "atmel,at91sam9260-usart" },
189 { /* sentinel */ }
190};
Nicolas Ferre5fbe46b2011-10-12 18:07:00 +0200191#endif
192
Haavard Skinnemoenc811ab82008-02-08 04:21:08 -0800193static inline struct atmel_uart_port *
194to_atmel_uart_port(struct uart_port *uart)
195{
196 return container_of(uart, struct atmel_uart_port, uart);
197}
198
Cyrille Pitchen4e7decd2015-07-02 15:18:11 +0200199static inline u32 atmel_uart_readl(struct uart_port *port, u32 reg)
200{
201 return __raw_readl(port->membase + reg);
202}
203
204static inline void atmel_uart_writel(struct uart_port *port, u32 reg, u32 value)
205{
206 __raw_writel(value, port->membase + reg);
207}
208
Cyrille Pitchena6499432015-07-30 16:33:38 +0200209#ifdef CONFIG_AVR32
210
211/* AVR32 cannot handle 8 or 16bit I/O accesses but only 32bit I/O accesses */
212static inline u8 atmel_uart_read_char(struct uart_port *port)
Cyrille Pitchenb5199d42015-07-02 15:18:12 +0200213{
Cyrille Pitchena6499432015-07-30 16:33:38 +0200214 return __raw_readl(port->membase + ATMEL_US_RHR);
Cyrille Pitchenb5199d42015-07-02 15:18:12 +0200215}
216
Cyrille Pitchena6499432015-07-30 16:33:38 +0200217static inline void atmel_uart_write_char(struct uart_port *port, u8 value)
Cyrille Pitchenb5199d42015-07-02 15:18:12 +0200218{
Cyrille Pitchena6499432015-07-30 16:33:38 +0200219 __raw_writel(value, port->membase + ATMEL_US_THR);
Cyrille Pitchenb5199d42015-07-02 15:18:12 +0200220}
221
Cyrille Pitchena6499432015-07-30 16:33:38 +0200222#else
223
224static inline u8 atmel_uart_read_char(struct uart_port *port)
225{
226 return __raw_readb(port->membase + ATMEL_US_RHR);
227}
228
229static inline void atmel_uart_write_char(struct uart_port *port, u8 value)
230{
231 __raw_writeb(value, port->membase + ATMEL_US_THR);
232}
233
234#endif
235
Chip Coldwella6670612008-02-08 04:21:06 -0800236#ifdef CONFIG_SERIAL_ATMEL_PDC
Elen Song64e22eb2013-07-22 16:30:24 +0800237static bool atmel_use_pdc_rx(struct uart_port *port)
Chip Coldwella6670612008-02-08 04:21:06 -0800238{
Haavard Skinnemoenc811ab82008-02-08 04:21:08 -0800239 struct atmel_uart_port *atmel_port = to_atmel_uart_port(port);
Chip Coldwella6670612008-02-08 04:21:06 -0800240
Elen Song64e22eb2013-07-22 16:30:24 +0800241 return atmel_port->use_pdc_rx;
Chip Coldwella6670612008-02-08 04:21:06 -0800242}
243
Elen Song64e22eb2013-07-22 16:30:24 +0800244static bool atmel_use_pdc_tx(struct uart_port *port)
Chip Coldwella6670612008-02-08 04:21:06 -0800245{
Haavard Skinnemoenc811ab82008-02-08 04:21:08 -0800246 struct atmel_uart_port *atmel_port = to_atmel_uart_port(port);
Chip Coldwella6670612008-02-08 04:21:06 -0800247
Elen Song64e22eb2013-07-22 16:30:24 +0800248 return atmel_port->use_pdc_tx;
Chip Coldwella6670612008-02-08 04:21:06 -0800249}
250#else
Elen Song64e22eb2013-07-22 16:30:24 +0800251static bool atmel_use_pdc_rx(struct uart_port *port)
Chip Coldwella6670612008-02-08 04:21:06 -0800252{
253 return false;
254}
255
Elen Song64e22eb2013-07-22 16:30:24 +0800256static bool atmel_use_pdc_tx(struct uart_port *port)
Chip Coldwella6670612008-02-08 04:21:06 -0800257{
258 return false;
259}
260#endif
261
Elen Song08f738b2013-07-22 16:30:26 +0800262static bool atmel_use_dma_tx(struct uart_port *port)
263{
264 struct atmel_uart_port *atmel_port = to_atmel_uart_port(port);
265
266 return atmel_port->use_dma_tx;
267}
268
Elen Song34df42f2013-07-22 16:30:27 +0800269static bool atmel_use_dma_rx(struct uart_port *port)
270{
271 struct atmel_uart_port *atmel_port = to_atmel_uart_port(port);
272
273 return atmel_port->use_dma_rx;
274}
275
Richard Genoude0b0baa2014-05-13 20:20:44 +0200276static unsigned int atmel_get_lines_status(struct uart_port *port)
277{
278 struct atmel_uart_port *atmel_port = to_atmel_uart_port(port);
279 unsigned int status, ret = 0;
280
Cyrille Pitchen4e7decd2015-07-02 15:18:11 +0200281 status = atmel_uart_readl(port, ATMEL_US_CSR);
Richard Genoude0b0baa2014-05-13 20:20:44 +0200282
283 mctrl_gpio_get(atmel_port->gpios, &ret);
284
285 if (!IS_ERR_OR_NULL(mctrl_gpio_to_gpiod(atmel_port->gpios,
286 UART_GPIO_CTS))) {
287 if (ret & TIOCM_CTS)
288 status &= ~ATMEL_US_CTS;
289 else
290 status |= ATMEL_US_CTS;
291 }
292
293 if (!IS_ERR_OR_NULL(mctrl_gpio_to_gpiod(atmel_port->gpios,
294 UART_GPIO_DSR))) {
295 if (ret & TIOCM_DSR)
296 status &= ~ATMEL_US_DSR;
297 else
298 status |= ATMEL_US_DSR;
299 }
300
301 if (!IS_ERR_OR_NULL(mctrl_gpio_to_gpiod(atmel_port->gpios,
302 UART_GPIO_RI))) {
303 if (ret & TIOCM_RI)
304 status &= ~ATMEL_US_RI;
305 else
306 status |= ATMEL_US_RI;
307 }
308
309 if (!IS_ERR_OR_NULL(mctrl_gpio_to_gpiod(atmel_port->gpios,
310 UART_GPIO_DCD))) {
311 if (ret & TIOCM_CD)
312 status &= ~ATMEL_US_DCD;
313 else
314 status |= ATMEL_US_DCD;
315 }
316
317 return status;
318}
319
Claudio Scordinoe8faff72010-05-03 13:31:28 +0100320/* Enable or disable the rs485 support */
Ricardo Ribalda Delgado13bd3e62014-11-06 09:22:56 +0100321static int atmel_config_rs485(struct uart_port *port,
322 struct serial_rs485 *rs485conf)
Claudio Scordinoe8faff72010-05-03 13:31:28 +0100323{
324 struct atmel_uart_port *atmel_port = to_atmel_uart_port(port);
325 unsigned int mode;
Claudio Scordinoe8faff72010-05-03 13:31:28 +0100326
327 /* Disable interrupts */
Cyrille Pitchen4e7decd2015-07-02 15:18:11 +0200328 atmel_uart_writel(port, ATMEL_US_IDR, atmel_port->tx_done_mask);
Claudio Scordinoe8faff72010-05-03 13:31:28 +0100329
Cyrille Pitchen4e7decd2015-07-02 15:18:11 +0200330 mode = atmel_uart_readl(port, ATMEL_US_MR);
Claudio Scordinoe8faff72010-05-03 13:31:28 +0100331
332 /* Resetting serial mode to RS232 (0x0) */
333 mode &= ~ATMEL_US_USMODE;
334
Ricardo Ribalda Delgado13bd3e62014-11-06 09:22:56 +0100335 port->rs485 = *rs485conf;
Claudio Scordinoe8faff72010-05-03 13:31:28 +0100336
337 if (rs485conf->flags & SER_RS485_ENABLED) {
338 dev_dbg(port->dev, "Setting UART to RS485\n");
339 atmel_port->tx_done_mask = ATMEL_US_TXEMPTY;
Cyrille Pitchen4e7decd2015-07-02 15:18:11 +0200340 atmel_uart_writel(port, ATMEL_US_TTGR,
341 rs485conf->delay_rts_after_send);
Claudio Scordinoe8faff72010-05-03 13:31:28 +0100342 mode |= ATMEL_US_USMODE_RS485;
343 } else {
344 dev_dbg(port->dev, "Setting UART to RS232\n");
Elen Song64e22eb2013-07-22 16:30:24 +0800345 if (atmel_use_pdc_tx(port))
Claudio Scordinoe8faff72010-05-03 13:31:28 +0100346 atmel_port->tx_done_mask = ATMEL_US_ENDTX |
347 ATMEL_US_TXBUFE;
348 else
349 atmel_port->tx_done_mask = ATMEL_US_TXRDY;
350 }
Cyrille Pitchen4e7decd2015-07-02 15:18:11 +0200351 atmel_uart_writel(port, ATMEL_US_MR, mode);
Claudio Scordinoe8faff72010-05-03 13:31:28 +0100352
353 /* Enable interrupts */
Cyrille Pitchen4e7decd2015-07-02 15:18:11 +0200354 atmel_uart_writel(port, ATMEL_US_IER, atmel_port->tx_done_mask);
Claudio Scordinoe8faff72010-05-03 13:31:28 +0100355
Ricardo Ribalda Delgado13bd3e62014-11-06 09:22:56 +0100356 return 0;
Claudio Scordinoe8faff72010-05-03 13:31:28 +0100357}
358
Andrew Victor1e6c9c22006-01-10 16:59:27 +0000359/*
360 * Return TIOCSER_TEMT when transmitter FIFO and Shift register is empty.
361 */
Haavard Skinnemoen7192f922006-10-04 16:02:05 +0200362static u_int atmel_tx_empty(struct uart_port *port)
Andrew Victor1e6c9c22006-01-10 16:59:27 +0000363{
Cyrille Pitchen4e7decd2015-07-02 15:18:11 +0200364 return (atmel_uart_readl(port, ATMEL_US_CSR) & ATMEL_US_TXEMPTY) ?
365 TIOCSER_TEMT :
366 0;
Andrew Victor1e6c9c22006-01-10 16:59:27 +0000367}
368
369/*
370 * Set state of the modem control output lines
371 */
Haavard Skinnemoen7192f922006-10-04 16:02:05 +0200372static void atmel_set_mctrl(struct uart_port *port, u_int mctrl)
Andrew Victor1e6c9c22006-01-10 16:59:27 +0000373{
374 unsigned int control = 0;
Cyrille Pitchen4e7decd2015-07-02 15:18:11 +0200375 unsigned int mode = atmel_uart_readl(port, ATMEL_US_MR);
Cyrille Pitchen1cf6e8f2014-12-09 14:31:35 +0100376 unsigned int rts_paused, rts_ready;
Claudio Scordinoe8faff72010-05-03 13:31:28 +0100377 struct atmel_uart_port *atmel_port = to_atmel_uart_port(port);
Andrew Victor1e6c9c22006-01-10 16:59:27 +0000378
Cyrille Pitchen1cf6e8f2014-12-09 14:31:35 +0100379 /* override mode to RS485 if needed, otherwise keep the current mode */
380 if (port->rs485.flags & SER_RS485_ENABLED) {
Cyrille Pitchen4e7decd2015-07-02 15:18:11 +0200381 atmel_uart_writel(port, ATMEL_US_TTGR,
382 port->rs485.delay_rts_after_send);
Cyrille Pitchen1cf6e8f2014-12-09 14:31:35 +0100383 mode &= ~ATMEL_US_USMODE;
384 mode |= ATMEL_US_USMODE_RS485;
385 }
386
387 /* set the RTS line state according to the mode */
388 if ((mode & ATMEL_US_USMODE) == ATMEL_US_USMODE_HWHS) {
389 /* force RTS line to high level */
390 rts_paused = ATMEL_US_RTSEN;
391
392 /* give the control of the RTS line back to the hardware */
393 rts_ready = ATMEL_US_RTSDIS;
394 } else {
395 /* force RTS line to high level */
396 rts_paused = ATMEL_US_RTSDIS;
397
398 /* force RTS line to low level */
399 rts_ready = ATMEL_US_RTSEN;
400 }
401
Andrew Victor1e6c9c22006-01-10 16:59:27 +0000402 if (mctrl & TIOCM_RTS)
Cyrille Pitchen1cf6e8f2014-12-09 14:31:35 +0100403 control |= rts_ready;
Andrew Victor1e6c9c22006-01-10 16:59:27 +0000404 else
Cyrille Pitchen1cf6e8f2014-12-09 14:31:35 +0100405 control |= rts_paused;
Andrew Victor1e6c9c22006-01-10 16:59:27 +0000406
407 if (mctrl & TIOCM_DTR)
Haavard Skinnemoen7192f922006-10-04 16:02:05 +0200408 control |= ATMEL_US_DTREN;
Andrew Victor1e6c9c22006-01-10 16:59:27 +0000409 else
Haavard Skinnemoen7192f922006-10-04 16:02:05 +0200410 control |= ATMEL_US_DTRDIS;
Andrew Victor1e6c9c22006-01-10 16:59:27 +0000411
Cyrille Pitchen4e7decd2015-07-02 15:18:11 +0200412 atmel_uart_writel(port, ATMEL_US_CR, control);
Andrew Victorafefc412006-06-19 19:53:19 +0100413
Richard Genoude0b0baa2014-05-13 20:20:44 +0200414 mctrl_gpio_set(atmel_port->gpios, mctrl);
415
Andrew Victorafefc412006-06-19 19:53:19 +0100416 /* Local loopback mode? */
Cyrille Pitchen1cf6e8f2014-12-09 14:31:35 +0100417 mode &= ~ATMEL_US_CHMODE;
Andrew Victorafefc412006-06-19 19:53:19 +0100418 if (mctrl & TIOCM_LOOP)
Haavard Skinnemoen7192f922006-10-04 16:02:05 +0200419 mode |= ATMEL_US_CHMODE_LOC_LOOP;
Andrew Victorafefc412006-06-19 19:53:19 +0100420 else
Haavard Skinnemoen7192f922006-10-04 16:02:05 +0200421 mode |= ATMEL_US_CHMODE_NORMAL;
Claudio Scordinoe8faff72010-05-03 13:31:28 +0100422
Cyrille Pitchen4e7decd2015-07-02 15:18:11 +0200423 atmel_uart_writel(port, ATMEL_US_MR, mode);
Andrew Victor1e6c9c22006-01-10 16:59:27 +0000424}
425
426/*
427 * Get state of the modem control input lines
428 */
Haavard Skinnemoen7192f922006-10-04 16:02:05 +0200429static u_int atmel_get_mctrl(struct uart_port *port)
Andrew Victor1e6c9c22006-01-10 16:59:27 +0000430{
Richard Genoude0b0baa2014-05-13 20:20:44 +0200431 struct atmel_uart_port *atmel_port = to_atmel_uart_port(port);
432 unsigned int ret = 0, status;
Andrew Victor1e6c9c22006-01-10 16:59:27 +0000433
Cyrille Pitchen4e7decd2015-07-02 15:18:11 +0200434 status = atmel_uart_readl(port, ATMEL_US_CSR);
Andrew Victor1e6c9c22006-01-10 16:59:27 +0000435
436 /*
437 * The control signals are active low.
438 */
Haavard Skinnemoen7192f922006-10-04 16:02:05 +0200439 if (!(status & ATMEL_US_DCD))
Andrew Victor1e6c9c22006-01-10 16:59:27 +0000440 ret |= TIOCM_CD;
Haavard Skinnemoen7192f922006-10-04 16:02:05 +0200441 if (!(status & ATMEL_US_CTS))
Andrew Victor1e6c9c22006-01-10 16:59:27 +0000442 ret |= TIOCM_CTS;
Haavard Skinnemoen7192f922006-10-04 16:02:05 +0200443 if (!(status & ATMEL_US_DSR))
Andrew Victor1e6c9c22006-01-10 16:59:27 +0000444 ret |= TIOCM_DSR;
Haavard Skinnemoen7192f922006-10-04 16:02:05 +0200445 if (!(status & ATMEL_US_RI))
Andrew Victor1e6c9c22006-01-10 16:59:27 +0000446 ret |= TIOCM_RI;
447
Richard Genoude0b0baa2014-05-13 20:20:44 +0200448 return mctrl_gpio_get(atmel_port->gpios, &ret);
Andrew Victor1e6c9c22006-01-10 16:59:27 +0000449}
450
451/*
452 * Stop transmitting.
453 */
Haavard Skinnemoen7192f922006-10-04 16:02:05 +0200454static void atmel_stop_tx(struct uart_port *port)
Andrew Victor1e6c9c22006-01-10 16:59:27 +0000455{
Claudio Scordinoe8faff72010-05-03 13:31:28 +0100456 struct atmel_uart_port *atmel_port = to_atmel_uart_port(port);
457
Elen Song64e22eb2013-07-22 16:30:24 +0800458 if (atmel_use_pdc_tx(port)) {
Chip Coldwella6670612008-02-08 04:21:06 -0800459 /* disable PDC transmit */
Cyrille Pitchen4e7decd2015-07-02 15:18:11 +0200460 atmel_uart_writel(port, ATMEL_PDC_PTCR, ATMEL_PDC_TXTDIS);
Claudio Scordinoe8faff72010-05-03 13:31:28 +0100461 }
462 /* Disable interrupts */
Cyrille Pitchen4e7decd2015-07-02 15:18:11 +0200463 atmel_uart_writel(port, ATMEL_US_IDR, atmel_port->tx_done_mask);
Claudio Scordinoe8faff72010-05-03 13:31:28 +0100464
Ricardo Ribalda Delgado13bd3e62014-11-06 09:22:56 +0100465 if ((port->rs485.flags & SER_RS485_ENABLED) &&
466 !(port->rs485.flags & SER_RS485_RX_DURING_TX))
Claudio Scordinoe8faff72010-05-03 13:31:28 +0100467 atmel_start_rx(port);
Andrew Victor1e6c9c22006-01-10 16:59:27 +0000468}
469
470/*
471 * Start transmitting.
472 */
Haavard Skinnemoen7192f922006-10-04 16:02:05 +0200473static void atmel_start_tx(struct uart_port *port)
Andrew Victor1e6c9c22006-01-10 16:59:27 +0000474{
Claudio Scordinoe8faff72010-05-03 13:31:28 +0100475 struct atmel_uart_port *atmel_port = to_atmel_uart_port(port);
476
Elen Song64e22eb2013-07-22 16:30:24 +0800477 if (atmel_use_pdc_tx(port)) {
Cyrille Pitchen4e7decd2015-07-02 15:18:11 +0200478 if (atmel_uart_readl(port, ATMEL_PDC_PTSR) & ATMEL_PDC_TXTEN)
Chip Coldwella6670612008-02-08 04:21:06 -0800479 /* The transmitter is already running. Yes, we
480 really need this.*/
481 return;
482
Ricardo Ribalda Delgado13bd3e62014-11-06 09:22:56 +0100483 if ((port->rs485.flags & SER_RS485_ENABLED) &&
484 !(port->rs485.flags & SER_RS485_RX_DURING_TX))
Claudio Scordinoe8faff72010-05-03 13:31:28 +0100485 atmel_stop_rx(port);
486
Chip Coldwella6670612008-02-08 04:21:06 -0800487 /* re-enable PDC transmit */
Cyrille Pitchen4e7decd2015-07-02 15:18:11 +0200488 atmel_uart_writel(port, ATMEL_PDC_PTCR, ATMEL_PDC_TXTEN);
Claudio Scordinoe8faff72010-05-03 13:31:28 +0100489 }
490 /* Enable interrupts */
Cyrille Pitchen4e7decd2015-07-02 15:18:11 +0200491 atmel_uart_writel(port, ATMEL_US_IER, atmel_port->tx_done_mask);
Claudio Scordinoe8faff72010-05-03 13:31:28 +0100492}
493
494/*
495 * start receiving - port is in process of being opened.
496 */
497static void atmel_start_rx(struct uart_port *port)
498{
Cyrille Pitchen4e7decd2015-07-02 15:18:11 +0200499 /* reset status and receiver */
500 atmel_uart_writel(port, ATMEL_US_CR, ATMEL_US_RSTSTA);
Claudio Scordinoe8faff72010-05-03 13:31:28 +0100501
Cyrille Pitchen4e7decd2015-07-02 15:18:11 +0200502 atmel_uart_writel(port, ATMEL_US_CR, ATMEL_US_RXEN);
Siftar, Gabe57c36862012-03-29 15:40:05 +0200503
Elen Song64e22eb2013-07-22 16:30:24 +0800504 if (atmel_use_pdc_rx(port)) {
Claudio Scordinoe8faff72010-05-03 13:31:28 +0100505 /* enable PDC controller */
Cyrille Pitchen4e7decd2015-07-02 15:18:11 +0200506 atmel_uart_writel(port, ATMEL_US_IER,
507 ATMEL_US_ENDRX | ATMEL_US_TIMEOUT |
508 port->read_status_mask);
509 atmel_uart_writel(port, ATMEL_PDC_PTCR, ATMEL_PDC_RXTEN);
Claudio Scordinoe8faff72010-05-03 13:31:28 +0100510 } else {
Cyrille Pitchen4e7decd2015-07-02 15:18:11 +0200511 atmel_uart_writel(port, ATMEL_US_IER, ATMEL_US_RXRDY);
Claudio Scordinoe8faff72010-05-03 13:31:28 +0100512 }
Andrew Victor1e6c9c22006-01-10 16:59:27 +0000513}
514
515/*
516 * Stop receiving - port is in process of being closed.
517 */
Haavard Skinnemoen7192f922006-10-04 16:02:05 +0200518static void atmel_stop_rx(struct uart_port *port)
Andrew Victor1e6c9c22006-01-10 16:59:27 +0000519{
Cyrille Pitchen4e7decd2015-07-02 15:18:11 +0200520 atmel_uart_writel(port, ATMEL_US_CR, ATMEL_US_RXDIS);
Siftar, Gabe57c36862012-03-29 15:40:05 +0200521
Elen Song64e22eb2013-07-22 16:30:24 +0800522 if (atmel_use_pdc_rx(port)) {
Chip Coldwella6670612008-02-08 04:21:06 -0800523 /* disable PDC receive */
Cyrille Pitchen4e7decd2015-07-02 15:18:11 +0200524 atmel_uart_writel(port, ATMEL_PDC_PTCR, ATMEL_PDC_RXTDIS);
525 atmel_uart_writel(port, ATMEL_US_IDR,
526 ATMEL_US_ENDRX | ATMEL_US_TIMEOUT |
527 port->read_status_mask);
Claudio Scordinoe8faff72010-05-03 13:31:28 +0100528 } else {
Cyrille Pitchen4e7decd2015-07-02 15:18:11 +0200529 atmel_uart_writel(port, ATMEL_US_IDR, ATMEL_US_RXRDY);
Claudio Scordinoe8faff72010-05-03 13:31:28 +0100530 }
Andrew Victor1e6c9c22006-01-10 16:59:27 +0000531}
532
533/*
534 * Enable modem status interrupts
535 */
Haavard Skinnemoen7192f922006-10-04 16:02:05 +0200536static void atmel_enable_ms(struct uart_port *port)
Andrew Victor1e6c9c22006-01-10 16:59:27 +0000537{
Richard Genoudab5e4e42014-05-13 20:20:45 +0200538 struct atmel_uart_port *atmel_port = to_atmel_uart_port(port);
539 uint32_t ier = 0;
540
541 /*
542 * Interrupt should not be enabled twice
543 */
544 if (atmel_port->ms_irq_enabled)
545 return;
546
547 atmel_port->ms_irq_enabled = true;
548
Uwe Kleine-König18dfef92015-10-18 21:34:45 +0200549 if (!mctrl_gpio_to_gpiod(atmel_port->gpios, UART_GPIO_CTS))
Richard Genoudab5e4e42014-05-13 20:20:45 +0200550 ier |= ATMEL_US_CTSIC;
551
Uwe Kleine-König18dfef92015-10-18 21:34:45 +0200552 if (!mctrl_gpio_to_gpiod(atmel_port->gpios, UART_GPIO_DSR))
Richard Genoudab5e4e42014-05-13 20:20:45 +0200553 ier |= ATMEL_US_DSRIC;
554
Uwe Kleine-König18dfef92015-10-18 21:34:45 +0200555 if (!mctrl_gpio_to_gpiod(atmel_port->gpios, UART_GPIO_RI))
Richard Genoudab5e4e42014-05-13 20:20:45 +0200556 ier |= ATMEL_US_RIIC;
557
Uwe Kleine-König18dfef92015-10-18 21:34:45 +0200558 if (!mctrl_gpio_to_gpiod(atmel_port->gpios, UART_GPIO_DCD))
Richard Genoudab5e4e42014-05-13 20:20:45 +0200559 ier |= ATMEL_US_DCDIC;
560
Cyrille Pitchen4e7decd2015-07-02 15:18:11 +0200561 atmel_uart_writel(port, ATMEL_US_IER, ier);
Uwe Kleine-König18dfef92015-10-18 21:34:45 +0200562
563 mctrl_gpio_enable_ms(atmel_port->gpios);
Andrew Victor1e6c9c22006-01-10 16:59:27 +0000564}
565
566/*
Richard Genoud35b675b2014-09-03 18:09:26 +0200567 * Disable modem status interrupts
568 */
569static void atmel_disable_ms(struct uart_port *port)
570{
571 struct atmel_uart_port *atmel_port = to_atmel_uart_port(port);
572 uint32_t idr = 0;
573
574 /*
575 * Interrupt should not be disabled twice
576 */
577 if (!atmel_port->ms_irq_enabled)
578 return;
579
580 atmel_port->ms_irq_enabled = false;
581
Uwe Kleine-König18dfef92015-10-18 21:34:45 +0200582 mctrl_gpio_disable_ms(atmel_port->gpios);
583
584 if (!mctrl_gpio_to_gpiod(atmel_port->gpios, UART_GPIO_CTS))
Richard Genoud35b675b2014-09-03 18:09:26 +0200585 idr |= ATMEL_US_CTSIC;
586
Uwe Kleine-König18dfef92015-10-18 21:34:45 +0200587 if (!mctrl_gpio_to_gpiod(atmel_port->gpios, UART_GPIO_DSR))
Richard Genoud35b675b2014-09-03 18:09:26 +0200588 idr |= ATMEL_US_DSRIC;
589
Uwe Kleine-König18dfef92015-10-18 21:34:45 +0200590 if (!mctrl_gpio_to_gpiod(atmel_port->gpios, UART_GPIO_RI))
Richard Genoud35b675b2014-09-03 18:09:26 +0200591 idr |= ATMEL_US_RIIC;
592
Uwe Kleine-König18dfef92015-10-18 21:34:45 +0200593 if (!mctrl_gpio_to_gpiod(atmel_port->gpios, UART_GPIO_DCD))
Richard Genoud35b675b2014-09-03 18:09:26 +0200594 idr |= ATMEL_US_DCDIC;
595
Cyrille Pitchen4e7decd2015-07-02 15:18:11 +0200596 atmel_uart_writel(port, ATMEL_US_IDR, idr);
Richard Genoud35b675b2014-09-03 18:09:26 +0200597}
598
599/*
Andrew Victor1e6c9c22006-01-10 16:59:27 +0000600 * Control the transmission of a break signal
601 */
Haavard Skinnemoen7192f922006-10-04 16:02:05 +0200602static void atmel_break_ctl(struct uart_port *port, int break_state)
Andrew Victor1e6c9c22006-01-10 16:59:27 +0000603{
604 if (break_state != 0)
Cyrille Pitchen4e7decd2015-07-02 15:18:11 +0200605 /* start break */
606 atmel_uart_writel(port, ATMEL_US_CR, ATMEL_US_STTBRK);
Andrew Victor1e6c9c22006-01-10 16:59:27 +0000607 else
Cyrille Pitchen4e7decd2015-07-02 15:18:11 +0200608 /* stop break */
609 atmel_uart_writel(port, ATMEL_US_CR, ATMEL_US_STPBRK);
Andrew Victor1e6c9c22006-01-10 16:59:27 +0000610}
611
612/*
Remy Bohmer1ecc26b2008-02-08 04:21:05 -0800613 * Stores the incoming character in the ring buffer
614 */
615static void
616atmel_buffer_rx_char(struct uart_port *port, unsigned int status,
617 unsigned int ch)
618{
Haavard Skinnemoenc811ab82008-02-08 04:21:08 -0800619 struct atmel_uart_port *atmel_port = to_atmel_uart_port(port);
Remy Bohmer1ecc26b2008-02-08 04:21:05 -0800620 struct circ_buf *ring = &atmel_port->rx_ring;
621 struct atmel_uart_char *c;
622
623 if (!CIRC_SPACE(ring->head, ring->tail, ATMEL_SERIAL_RINGSIZE))
624 /* Buffer overflow, ignore char */
625 return;
626
627 c = &((struct atmel_uart_char *)ring->buf)[ring->head];
628 c->status = status;
629 c->ch = ch;
630
631 /* Make sure the character is stored before we update head. */
632 smp_wmb();
633
634 ring->head = (ring->head + 1) & (ATMEL_SERIAL_RINGSIZE - 1);
635}
636
637/*
Chip Coldwella6670612008-02-08 04:21:06 -0800638 * Deal with parity, framing and overrun errors.
639 */
640static void atmel_pdc_rxerr(struct uart_port *port, unsigned int status)
641{
642 /* clear error */
Cyrille Pitchen4e7decd2015-07-02 15:18:11 +0200643 atmel_uart_writel(port, ATMEL_US_CR, ATMEL_US_RSTSTA);
Chip Coldwella6670612008-02-08 04:21:06 -0800644
645 if (status & ATMEL_US_RXBRK) {
646 /* ignore side-effect */
647 status &= ~(ATMEL_US_PARE | ATMEL_US_FRAME);
648 port->icount.brk++;
649 }
650 if (status & ATMEL_US_PARE)
651 port->icount.parity++;
652 if (status & ATMEL_US_FRAME)
653 port->icount.frame++;
654 if (status & ATMEL_US_OVRE)
655 port->icount.overrun++;
656}
657
658/*
Andrew Victor1e6c9c22006-01-10 16:59:27 +0000659 * Characters received (called from interrupt handler)
660 */
David Howells7d12e782006-10-05 14:55:46 +0100661static void atmel_rx_chars(struct uart_port *port)
Andrew Victor1e6c9c22006-01-10 16:59:27 +0000662{
Haavard Skinnemoenc811ab82008-02-08 04:21:08 -0800663 struct atmel_uart_port *atmel_port = to_atmel_uart_port(port);
Remy Bohmer1ecc26b2008-02-08 04:21:05 -0800664 unsigned int status, ch;
Andrew Victor1e6c9c22006-01-10 16:59:27 +0000665
Cyrille Pitchen4e7decd2015-07-02 15:18:11 +0200666 status = atmel_uart_readl(port, ATMEL_US_CSR);
Haavard Skinnemoen7192f922006-10-04 16:02:05 +0200667 while (status & ATMEL_US_RXRDY) {
Cyrille Pitchena6499432015-07-30 16:33:38 +0200668 ch = atmel_uart_read_char(port);
Andrew Victor1e6c9c22006-01-10 16:59:27 +0000669
Andrew Victor1e6c9c22006-01-10 16:59:27 +0000670 /*
671 * note that the error handling code is
672 * out of the main execution path
673 */
Haavard Skinnemoen9e6077b2007-07-15 23:40:36 -0700674 if (unlikely(status & (ATMEL_US_PARE | ATMEL_US_FRAME
675 | ATMEL_US_OVRE | ATMEL_US_RXBRK)
676 || atmel_port->break_active)) {
Remy Bohmer1ecc26b2008-02-08 04:21:05 -0800677
Remy Bohmerb843aa22008-02-08 04:21:01 -0800678 /* clear error */
Cyrille Pitchen4e7decd2015-07-02 15:18:11 +0200679 atmel_uart_writel(port, ATMEL_US_CR, ATMEL_US_RSTSTA);
Remy Bohmer1ecc26b2008-02-08 04:21:05 -0800680
Haavard Skinnemoen9e6077b2007-07-15 23:40:36 -0700681 if (status & ATMEL_US_RXBRK
682 && !atmel_port->break_active) {
Haavard Skinnemoen9e6077b2007-07-15 23:40:36 -0700683 atmel_port->break_active = 1;
Cyrille Pitchen4e7decd2015-07-02 15:18:11 +0200684 atmel_uart_writel(port, ATMEL_US_IER,
685 ATMEL_US_RXBRK);
Haavard Skinnemoen9e6077b2007-07-15 23:40:36 -0700686 } else {
687 /*
688 * This is either the end-of-break
689 * condition or we've received at
690 * least one character without RXBRK
691 * being set. In both cases, the next
692 * RXBRK will indicate start-of-break.
693 */
Cyrille Pitchen4e7decd2015-07-02 15:18:11 +0200694 atmel_uart_writel(port, ATMEL_US_IDR,
695 ATMEL_US_RXBRK);
Haavard Skinnemoen9e6077b2007-07-15 23:40:36 -0700696 status &= ~ATMEL_US_RXBRK;
697 atmel_port->break_active = 0;
Andrew Victorafefc412006-06-19 19:53:19 +0100698 }
Andrew Victor1e6c9c22006-01-10 16:59:27 +0000699 }
700
Remy Bohmer1ecc26b2008-02-08 04:21:05 -0800701 atmel_buffer_rx_char(port, status, ch);
Cyrille Pitchen4e7decd2015-07-02 15:18:11 +0200702 status = atmel_uart_readl(port, ATMEL_US_CSR);
Andrew Victor1e6c9c22006-01-10 16:59:27 +0000703 }
704
Remy Bohmer1ecc26b2008-02-08 04:21:05 -0800705 tasklet_schedule(&atmel_port->tasklet);
Andrew Victor1e6c9c22006-01-10 16:59:27 +0000706}
707
708/*
Remy Bohmer1ecc26b2008-02-08 04:21:05 -0800709 * Transmit characters (called from tasklet with TXRDY interrupt
710 * disabled)
Andrew Victor1e6c9c22006-01-10 16:59:27 +0000711 */
Haavard Skinnemoen7192f922006-10-04 16:02:05 +0200712static void atmel_tx_chars(struct uart_port *port)
Andrew Victor1e6c9c22006-01-10 16:59:27 +0000713{
Alan Coxebd2c8f2009-09-19 13:13:28 -0700714 struct circ_buf *xmit = &port->state->xmit;
Claudio Scordinoe8faff72010-05-03 13:31:28 +0100715 struct atmel_uart_port *atmel_port = to_atmel_uart_port(port);
Andrew Victor1e6c9c22006-01-10 16:59:27 +0000716
Cyrille Pitchen4e7decd2015-07-02 15:18:11 +0200717 if (port->x_char &&
718 (atmel_uart_readl(port, ATMEL_US_CSR) & atmel_port->tx_done_mask)) {
Cyrille Pitchena6499432015-07-30 16:33:38 +0200719 atmel_uart_write_char(port, port->x_char);
Andrew Victor1e6c9c22006-01-10 16:59:27 +0000720 port->icount.tx++;
721 port->x_char = 0;
Andrew Victor1e6c9c22006-01-10 16:59:27 +0000722 }
Remy Bohmer1ecc26b2008-02-08 04:21:05 -0800723 if (uart_circ_empty(xmit) || uart_tx_stopped(port))
Andrew Victor1e6c9c22006-01-10 16:59:27 +0000724 return;
Andrew Victor1e6c9c22006-01-10 16:59:27 +0000725
Cyrille Pitchen4e7decd2015-07-02 15:18:11 +0200726 while (atmel_uart_readl(port, ATMEL_US_CSR) &
727 atmel_port->tx_done_mask) {
Cyrille Pitchena6499432015-07-30 16:33:38 +0200728 atmel_uart_write_char(port, xmit->buf[xmit->tail]);
Andrew Victor1e6c9c22006-01-10 16:59:27 +0000729 xmit->tail = (xmit->tail + 1) & (UART_XMIT_SIZE - 1);
730 port->icount.tx++;
731 if (uart_circ_empty(xmit))
732 break;
733 }
734
735 if (uart_circ_chars_pending(xmit) < WAKEUP_CHARS)
736 uart_write_wakeup(port);
737
Remy Bohmer1ecc26b2008-02-08 04:21:05 -0800738 if (!uart_circ_empty(xmit))
Claudio Scordinoe8faff72010-05-03 13:31:28 +0100739 /* Enable interrupts */
Cyrille Pitchen4e7decd2015-07-02 15:18:11 +0200740 atmel_uart_writel(port, ATMEL_US_IER,
741 atmel_port->tx_done_mask);
Andrew Victor1e6c9c22006-01-10 16:59:27 +0000742}
743
Elen Song08f738b2013-07-22 16:30:26 +0800744static void atmel_complete_tx_dma(void *arg)
745{
746 struct atmel_uart_port *atmel_port = arg;
747 struct uart_port *port = &atmel_port->uart;
748 struct circ_buf *xmit = &port->state->xmit;
749 struct dma_chan *chan = atmel_port->chan_tx;
750 unsigned long flags;
751
752 spin_lock_irqsave(&port->lock, flags);
753
754 if (chan)
755 dmaengine_terminate_all(chan);
Cyrille Pitchen5f258b32015-07-02 15:18:13 +0200756 xmit->tail += atmel_port->tx_len;
Elen Song08f738b2013-07-22 16:30:26 +0800757 xmit->tail &= UART_XMIT_SIZE - 1;
758
Cyrille Pitchen5f258b32015-07-02 15:18:13 +0200759 port->icount.tx += atmel_port->tx_len;
Elen Song08f738b2013-07-22 16:30:26 +0800760
761 spin_lock_irq(&atmel_port->lock_tx);
762 async_tx_ack(atmel_port->desc_tx);
763 atmel_port->cookie_tx = -EINVAL;
764 atmel_port->desc_tx = NULL;
765 spin_unlock_irq(&atmel_port->lock_tx);
766
767 if (uart_circ_chars_pending(xmit) < WAKEUP_CHARS)
768 uart_write_wakeup(port);
769
Cyrille Pitchen1842dc22014-12-09 14:31:36 +0100770 /*
771 * xmit is a circular buffer so, if we have just send data from
772 * xmit->tail to the end of xmit->buf, now we have to transmit the
773 * remaining data from the beginning of xmit->buf to xmit->head.
774 */
Elen Song08f738b2013-07-22 16:30:26 +0800775 if (!uart_circ_empty(xmit))
776 tasklet_schedule(&atmel_port->tasklet);
777
778 spin_unlock_irqrestore(&port->lock, flags);
779}
780
781static void atmel_release_tx_dma(struct uart_port *port)
782{
783 struct atmel_uart_port *atmel_port = to_atmel_uart_port(port);
784 struct dma_chan *chan = atmel_port->chan_tx;
785
786 if (chan) {
787 dmaengine_terminate_all(chan);
788 dma_release_channel(chan);
789 dma_unmap_sg(port->dev, &atmel_port->sg_tx, 1,
Wolfram Sang48479142014-07-21 11:42:04 +0200790 DMA_TO_DEVICE);
Elen Song08f738b2013-07-22 16:30:26 +0800791 }
792
793 atmel_port->desc_tx = NULL;
794 atmel_port->chan_tx = NULL;
795 atmel_port->cookie_tx = -EINVAL;
796}
797
798/*
799 * Called from tasklet with TXRDY interrupt is disabled.
800 */
801static void atmel_tx_dma(struct uart_port *port)
802{
803 struct atmel_uart_port *atmel_port = to_atmel_uart_port(port);
804 struct circ_buf *xmit = &port->state->xmit;
805 struct dma_chan *chan = atmel_port->chan_tx;
806 struct dma_async_tx_descriptor *desc;
Cyrille Pitchen5f258b32015-07-02 15:18:13 +0200807 struct scatterlist sgl[2], *sg, *sg_tx = &atmel_port->sg_tx;
808 unsigned int tx_len, part1_len, part2_len, sg_len;
809 dma_addr_t phys_addr;
Elen Song08f738b2013-07-22 16:30:26 +0800810
811 /* Make sure we have an idle channel */
812 if (atmel_port->desc_tx != NULL)
813 return;
814
815 if (!uart_circ_empty(xmit) && !uart_tx_stopped(port)) {
816 /*
817 * DMA is idle now.
818 * Port xmit buffer is already mapped,
819 * and it is one page... Just adjust
820 * offsets and lengths. Since it is a circular buffer,
821 * we have to transmit till the end, and then the rest.
822 * Take the port lock to get a
823 * consistent xmit buffer state.
824 */
Cyrille Pitchen5f258b32015-07-02 15:18:13 +0200825 tx_len = CIRC_CNT_TO_END(xmit->head,
826 xmit->tail,
827 UART_XMIT_SIZE);
828
829 if (atmel_port->fifo_size) {
830 /* multi data mode */
831 part1_len = (tx_len & ~0x3); /* DWORD access */
832 part2_len = (tx_len & 0x3); /* BYTE access */
833 } else {
834 /* single data (legacy) mode */
835 part1_len = 0;
836 part2_len = tx_len; /* BYTE access only */
837 }
838
839 sg_init_table(sgl, 2);
840 sg_len = 0;
841 phys_addr = sg_dma_address(sg_tx) + xmit->tail;
842 if (part1_len) {
843 sg = &sgl[sg_len++];
844 sg_dma_address(sg) = phys_addr;
845 sg_dma_len(sg) = part1_len;
846
847 phys_addr += part1_len;
848 }
849
850 if (part2_len) {
851 sg = &sgl[sg_len++];
852 sg_dma_address(sg) = phys_addr;
853 sg_dma_len(sg) = part2_len;
854 }
855
856 /*
857 * save tx_len so atmel_complete_tx_dma() will increase
858 * xmit->tail correctly
859 */
860 atmel_port->tx_len = tx_len;
Elen Song08f738b2013-07-22 16:30:26 +0800861
862 desc = dmaengine_prep_slave_sg(chan,
Cyrille Pitchen5f258b32015-07-02 15:18:13 +0200863 sgl,
864 sg_len,
Cyrille Pitchen1842dc22014-12-09 14:31:36 +0100865 DMA_MEM_TO_DEV,
866 DMA_PREP_INTERRUPT |
867 DMA_CTRL_ACK);
Elen Song08f738b2013-07-22 16:30:26 +0800868 if (!desc) {
869 dev_err(port->dev, "Failed to send via dma!\n");
870 return;
871 }
872
Cyrille Pitchen5f258b32015-07-02 15:18:13 +0200873 dma_sync_sg_for_device(port->dev, sg_tx, 1, DMA_TO_DEVICE);
Elen Song08f738b2013-07-22 16:30:26 +0800874
875 atmel_port->desc_tx = desc;
876 desc->callback = atmel_complete_tx_dma;
877 desc->callback_param = atmel_port;
878 atmel_port->cookie_tx = dmaengine_submit(desc);
879
880 } else {
Ricardo Ribalda Delgado13bd3e62014-11-06 09:22:56 +0100881 if (port->rs485.flags & SER_RS485_ENABLED) {
Elen Song08f738b2013-07-22 16:30:26 +0800882 /* DMA done, stop TX, start RX for RS485 */
883 atmel_start_rx(port);
884 }
885 }
886
887 if (uart_circ_chars_pending(xmit) < WAKEUP_CHARS)
888 uart_write_wakeup(port);
889}
890
891static int atmel_prepare_tx_dma(struct uart_port *port)
892{
893 struct atmel_uart_port *atmel_port = to_atmel_uart_port(port);
894 dma_cap_mask_t mask;
895 struct dma_slave_config config;
896 int ret, nent;
897
898 dma_cap_zero(mask);
899 dma_cap_set(DMA_SLAVE, mask);
900
901 atmel_port->chan_tx = dma_request_slave_channel(port->dev, "tx");
902 if (atmel_port->chan_tx == NULL)
903 goto chan_err;
904 dev_info(port->dev, "using %s for tx DMA transfers\n",
905 dma_chan_name(atmel_port->chan_tx));
906
907 spin_lock_init(&atmel_port->lock_tx);
908 sg_init_table(&atmel_port->sg_tx, 1);
909 /* UART circular tx buffer is an aligned page. */
Leilei Zhao2c277052015-02-27 16:07:14 +0800910 BUG_ON(!PAGE_ALIGNED(port->state->xmit.buf));
Elen Song08f738b2013-07-22 16:30:26 +0800911 sg_set_page(&atmel_port->sg_tx,
912 virt_to_page(port->state->xmit.buf),
913 UART_XMIT_SIZE,
Uwe Kleine-Königc8d1f022015-09-30 10:19:38 +0200914 (unsigned long)port->state->xmit.buf & ~PAGE_MASK);
Elen Song08f738b2013-07-22 16:30:26 +0800915 nent = dma_map_sg(port->dev,
916 &atmel_port->sg_tx,
917 1,
Wolfram Sang48479142014-07-21 11:42:04 +0200918 DMA_TO_DEVICE);
Elen Song08f738b2013-07-22 16:30:26 +0800919
920 if (!nent) {
921 dev_dbg(port->dev, "need to release resource of dma\n");
922 goto chan_err;
923 } else {
Uwe Kleine-Königc8d1f022015-09-30 10:19:38 +0200924 dev_dbg(port->dev, "%s: mapped %d@%p to %pad\n", __func__,
Elen Song08f738b2013-07-22 16:30:26 +0800925 sg_dma_len(&atmel_port->sg_tx),
926 port->state->xmit.buf,
Uwe Kleine-Königc8d1f022015-09-30 10:19:38 +0200927 &sg_dma_address(&atmel_port->sg_tx));
Elen Song08f738b2013-07-22 16:30:26 +0800928 }
929
930 /* Configure the slave DMA */
931 memset(&config, 0, sizeof(config));
932 config.direction = DMA_MEM_TO_DEV;
Cyrille Pitchen5f258b32015-07-02 15:18:13 +0200933 config.dst_addr_width = (atmel_port->fifo_size) ?
934 DMA_SLAVE_BUSWIDTH_4_BYTES :
935 DMA_SLAVE_BUSWIDTH_1_BYTE;
Elen Song08f738b2013-07-22 16:30:26 +0800936 config.dst_addr = port->mapbase + ATMEL_US_THR;
Ludovic Desrochesa8d4e012015-04-16 16:58:12 +0200937 config.dst_maxburst = 1;
Elen Song08f738b2013-07-22 16:30:26 +0800938
Maxime Ripard5483c102014-10-22 17:43:16 +0200939 ret = dmaengine_slave_config(atmel_port->chan_tx,
940 &config);
Elen Song08f738b2013-07-22 16:30:26 +0800941 if (ret) {
942 dev_err(port->dev, "DMA tx slave configuration failed\n");
943 goto chan_err;
944 }
945
946 return 0;
947
948chan_err:
949 dev_err(port->dev, "TX channel not available, switch to pio\n");
950 atmel_port->use_dma_tx = 0;
951 if (atmel_port->chan_tx)
952 atmel_release_tx_dma(port);
953 return -EINVAL;
954}
955
Elen Song34df42f2013-07-22 16:30:27 +0800956static void atmel_complete_rx_dma(void *arg)
957{
958 struct uart_port *port = arg;
959 struct atmel_uart_port *atmel_port = to_atmel_uart_port(port);
960
961 tasklet_schedule(&atmel_port->tasklet);
962}
963
964static void atmel_release_rx_dma(struct uart_port *port)
965{
966 struct atmel_uart_port *atmel_port = to_atmel_uart_port(port);
967 struct dma_chan *chan = atmel_port->chan_rx;
968
969 if (chan) {
970 dmaengine_terminate_all(chan);
971 dma_release_channel(chan);
972 dma_unmap_sg(port->dev, &atmel_port->sg_rx, 1,
Wolfram Sang48479142014-07-21 11:42:04 +0200973 DMA_FROM_DEVICE);
Elen Song34df42f2013-07-22 16:30:27 +0800974 }
975
976 atmel_port->desc_rx = NULL;
977 atmel_port->chan_rx = NULL;
978 atmel_port->cookie_rx = -EINVAL;
979}
980
981static void atmel_rx_from_dma(struct uart_port *port)
982{
983 struct atmel_uart_port *atmel_port = to_atmel_uart_port(port);
Cyrille Pitchen66f37aa2014-10-20 19:12:20 +0200984 struct tty_port *tport = &port->state->port;
Elen Song34df42f2013-07-22 16:30:27 +0800985 struct circ_buf *ring = &atmel_port->rx_ring;
986 struct dma_chan *chan = atmel_port->chan_rx;
987 struct dma_tx_state state;
988 enum dma_status dmastat;
Cyrille Pitchen66f37aa2014-10-20 19:12:20 +0200989 size_t count;
Elen Song34df42f2013-07-22 16:30:27 +0800990
991
992 /* Reset the UART timeout early so that we don't miss one */
Cyrille Pitchen4e7decd2015-07-02 15:18:11 +0200993 atmel_uart_writel(port, ATMEL_US_CR, ATMEL_US_STTTO);
Elen Song34df42f2013-07-22 16:30:27 +0800994 dmastat = dmaengine_tx_status(chan,
995 atmel_port->cookie_rx,
996 &state);
997 /* Restart a new tasklet if DMA status is error */
998 if (dmastat == DMA_ERROR) {
999 dev_dbg(port->dev, "Get residue error, restart tasklet\n");
Cyrille Pitchen4e7decd2015-07-02 15:18:11 +02001000 atmel_uart_writel(port, ATMEL_US_IER, ATMEL_US_TIMEOUT);
Elen Song34df42f2013-07-22 16:30:27 +08001001 tasklet_schedule(&atmel_port->tasklet);
1002 return;
1003 }
Cyrille Pitchen66f37aa2014-10-20 19:12:20 +02001004
1005 /* CPU claims ownership of RX DMA buffer */
1006 dma_sync_sg_for_cpu(port->dev,
1007 &atmel_port->sg_rx,
1008 1,
Cyrille Pitchen485819b2014-12-09 14:31:32 +01001009 DMA_FROM_DEVICE);
Elen Song34df42f2013-07-22 16:30:27 +08001010
1011 /*
Cyrille Pitchen66f37aa2014-10-20 19:12:20 +02001012 * ring->head points to the end of data already written by the DMA.
1013 * ring->tail points to the beginning of data to be read by the
1014 * framework.
1015 * The current transfer size should not be larger than the dma buffer
1016 * length.
Elen Song34df42f2013-07-22 16:30:27 +08001017 */
Cyrille Pitchen66f37aa2014-10-20 19:12:20 +02001018 ring->head = sg_dma_len(&atmel_port->sg_rx) - state.residue;
1019 BUG_ON(ring->head > sg_dma_len(&atmel_port->sg_rx));
1020 /*
1021 * At this point ring->head may point to the first byte right after the
1022 * last byte of the dma buffer:
1023 * 0 <= ring->head <= sg_dma_len(&atmel_port->sg_rx)
1024 *
1025 * However ring->tail must always points inside the dma buffer:
1026 * 0 <= ring->tail <= sg_dma_len(&atmel_port->sg_rx) - 1
1027 *
1028 * Since we use a ring buffer, we have to handle the case
1029 * where head is lower than tail. In such a case, we first read from
1030 * tail to the end of the buffer then reset tail.
1031 */
1032 if (ring->head < ring->tail) {
1033 count = sg_dma_len(&atmel_port->sg_rx) - ring->tail;
Elen Song34df42f2013-07-22 16:30:27 +08001034
Cyrille Pitchen66f37aa2014-10-20 19:12:20 +02001035 tty_insert_flip_string(tport, ring->buf + ring->tail, count);
1036 ring->tail = 0;
Elen Song34df42f2013-07-22 16:30:27 +08001037 port->icount.rx += count;
1038 }
1039
Cyrille Pitchen66f37aa2014-10-20 19:12:20 +02001040 /* Finally we read data from tail to head */
1041 if (ring->tail < ring->head) {
1042 count = ring->head - ring->tail;
1043
1044 tty_insert_flip_string(tport, ring->buf + ring->tail, count);
1045 /* Wrap ring->head if needed */
1046 if (ring->head >= sg_dma_len(&atmel_port->sg_rx))
1047 ring->head = 0;
1048 ring->tail = ring->head;
1049 port->icount.rx += count;
1050 }
1051
1052 /* USART retreives ownership of RX DMA buffer */
1053 dma_sync_sg_for_device(port->dev,
1054 &atmel_port->sg_rx,
1055 1,
Cyrille Pitchen485819b2014-12-09 14:31:32 +01001056 DMA_FROM_DEVICE);
Cyrille Pitchen66f37aa2014-10-20 19:12:20 +02001057
1058 /*
1059 * Drop the lock here since it might end up calling
1060 * uart_start(), which takes the lock.
1061 */
1062 spin_unlock(&port->lock);
1063 tty_flip_buffer_push(tport);
1064 spin_lock(&port->lock);
1065
Cyrille Pitchen4e7decd2015-07-02 15:18:11 +02001066 atmel_uart_writel(port, ATMEL_US_IER, ATMEL_US_TIMEOUT);
Elen Song34df42f2013-07-22 16:30:27 +08001067}
1068
1069static int atmel_prepare_rx_dma(struct uart_port *port)
1070{
1071 struct atmel_uart_port *atmel_port = to_atmel_uart_port(port);
1072 struct dma_async_tx_descriptor *desc;
1073 dma_cap_mask_t mask;
1074 struct dma_slave_config config;
1075 struct circ_buf *ring;
1076 int ret, nent;
1077
1078 ring = &atmel_port->rx_ring;
1079
1080 dma_cap_zero(mask);
1081 dma_cap_set(DMA_CYCLIC, mask);
1082
1083 atmel_port->chan_rx = dma_request_slave_channel(port->dev, "rx");
1084 if (atmel_port->chan_rx == NULL)
1085 goto chan_err;
1086 dev_info(port->dev, "using %s for rx DMA transfers\n",
1087 dma_chan_name(atmel_port->chan_rx));
1088
1089 spin_lock_init(&atmel_port->lock_rx);
1090 sg_init_table(&atmel_port->sg_rx, 1);
1091 /* UART circular rx buffer is an aligned page. */
Leilei Zhao2c277052015-02-27 16:07:14 +08001092 BUG_ON(!PAGE_ALIGNED(ring->buf));
Elen Song34df42f2013-07-22 16:30:27 +08001093 sg_set_page(&atmel_port->sg_rx,
Cyrille Pitchen1842dc22014-12-09 14:31:36 +01001094 virt_to_page(ring->buf),
Leilei Zhaoa5108802015-02-27 16:07:15 +08001095 sizeof(struct atmel_uart_char) * ATMEL_SERIAL_RINGSIZE,
Uwe Kleine-Königc8d1f022015-09-30 10:19:38 +02001096 (unsigned long)ring->buf & ~PAGE_MASK);
Cyrille Pitchen1842dc22014-12-09 14:31:36 +01001097 nent = dma_map_sg(port->dev,
1098 &atmel_port->sg_rx,
1099 1,
1100 DMA_FROM_DEVICE);
Elen Song34df42f2013-07-22 16:30:27 +08001101
1102 if (!nent) {
1103 dev_dbg(port->dev, "need to release resource of dma\n");
1104 goto chan_err;
1105 } else {
Uwe Kleine-Königc8d1f022015-09-30 10:19:38 +02001106 dev_dbg(port->dev, "%s: mapped %d@%p to %pad\n", __func__,
Elen Song34df42f2013-07-22 16:30:27 +08001107 sg_dma_len(&atmel_port->sg_rx),
1108 ring->buf,
Uwe Kleine-Königc8d1f022015-09-30 10:19:38 +02001109 &sg_dma_address(&atmel_port->sg_rx));
Elen Song34df42f2013-07-22 16:30:27 +08001110 }
1111
1112 /* Configure the slave DMA */
1113 memset(&config, 0, sizeof(config));
1114 config.direction = DMA_DEV_TO_MEM;
1115 config.src_addr_width = DMA_SLAVE_BUSWIDTH_1_BYTE;
1116 config.src_addr = port->mapbase + ATMEL_US_RHR;
Ludovic Desrochesa8d4e012015-04-16 16:58:12 +02001117 config.src_maxburst = 1;
Elen Song34df42f2013-07-22 16:30:27 +08001118
Maxime Ripard5483c102014-10-22 17:43:16 +02001119 ret = dmaengine_slave_config(atmel_port->chan_rx,
1120 &config);
Elen Song34df42f2013-07-22 16:30:27 +08001121 if (ret) {
1122 dev_err(port->dev, "DMA rx slave configuration failed\n");
1123 goto chan_err;
1124 }
1125 /*
1126 * Prepare a cyclic dma transfer, assign 2 descriptors,
1127 * each one is half ring buffer size
1128 */
1129 desc = dmaengine_prep_dma_cyclic(atmel_port->chan_rx,
Cyrille Pitchen1842dc22014-12-09 14:31:36 +01001130 sg_dma_address(&atmel_port->sg_rx),
1131 sg_dma_len(&atmel_port->sg_rx),
1132 sg_dma_len(&atmel_port->sg_rx)/2,
1133 DMA_DEV_TO_MEM,
1134 DMA_PREP_INTERRUPT);
Elen Song34df42f2013-07-22 16:30:27 +08001135 desc->callback = atmel_complete_rx_dma;
1136 desc->callback_param = port;
1137 atmel_port->desc_rx = desc;
1138 atmel_port->cookie_rx = dmaengine_submit(desc);
1139
1140 return 0;
1141
1142chan_err:
1143 dev_err(port->dev, "RX channel not available, switch to pio\n");
1144 atmel_port->use_dma_rx = 0;
1145 if (atmel_port->chan_rx)
1146 atmel_release_rx_dma(port);
1147 return -EINVAL;
1148}
1149
Elen Song2e68c222013-07-22 16:30:30 +08001150static void atmel_uart_timer_callback(unsigned long data)
1151{
1152 struct uart_port *port = (void *)data;
1153 struct atmel_uart_port *atmel_port = to_atmel_uart_port(port);
1154
1155 tasklet_schedule(&atmel_port->tasklet);
1156 mod_timer(&atmel_port->uart_timer, jiffies + uart_poll_timeout(port));
1157}
1158
Andrew Victor1e6c9c22006-01-10 16:59:27 +00001159/*
Remy Bohmerb843aa22008-02-08 04:21:01 -08001160 * receive interrupt handler.
1161 */
1162static void
1163atmel_handle_receive(struct uart_port *port, unsigned int pending)
1164{
Haavard Skinnemoenc811ab82008-02-08 04:21:08 -08001165 struct atmel_uart_port *atmel_port = to_atmel_uart_port(port);
Remy Bohmerb843aa22008-02-08 04:21:01 -08001166
Elen Song64e22eb2013-07-22 16:30:24 +08001167 if (atmel_use_pdc_rx(port)) {
Chip Coldwella6670612008-02-08 04:21:06 -08001168 /*
1169 * PDC receive. Just schedule the tasklet and let it
1170 * figure out the details.
1171 *
1172 * TODO: We're not handling error flags correctly at
1173 * the moment.
1174 */
1175 if (pending & (ATMEL_US_ENDRX | ATMEL_US_TIMEOUT)) {
Cyrille Pitchen4e7decd2015-07-02 15:18:11 +02001176 atmel_uart_writel(port, ATMEL_US_IDR,
1177 (ATMEL_US_ENDRX | ATMEL_US_TIMEOUT));
Chip Coldwella6670612008-02-08 04:21:06 -08001178 tasklet_schedule(&atmel_port->tasklet);
1179 }
1180
1181 if (pending & (ATMEL_US_RXBRK | ATMEL_US_OVRE |
1182 ATMEL_US_FRAME | ATMEL_US_PARE))
1183 atmel_pdc_rxerr(port, pending);
1184 }
1185
Elen Song34df42f2013-07-22 16:30:27 +08001186 if (atmel_use_dma_rx(port)) {
1187 if (pending & ATMEL_US_TIMEOUT) {
Cyrille Pitchen4e7decd2015-07-02 15:18:11 +02001188 atmel_uart_writel(port, ATMEL_US_IDR,
1189 ATMEL_US_TIMEOUT);
Elen Song34df42f2013-07-22 16:30:27 +08001190 tasklet_schedule(&atmel_port->tasklet);
1191 }
1192 }
1193
Remy Bohmerb843aa22008-02-08 04:21:01 -08001194 /* Interrupt receive */
1195 if (pending & ATMEL_US_RXRDY)
1196 atmel_rx_chars(port);
1197 else if (pending & ATMEL_US_RXBRK) {
1198 /*
1199 * End of break detected. If it came along with a
1200 * character, atmel_rx_chars will handle it.
1201 */
Cyrille Pitchen4e7decd2015-07-02 15:18:11 +02001202 atmel_uart_writel(port, ATMEL_US_CR, ATMEL_US_RSTSTA);
1203 atmel_uart_writel(port, ATMEL_US_IDR, ATMEL_US_RXBRK);
Remy Bohmerb843aa22008-02-08 04:21:01 -08001204 atmel_port->break_active = 0;
1205 }
1206}
1207
1208/*
Remy Bohmer1ecc26b2008-02-08 04:21:05 -08001209 * transmit interrupt handler. (Transmit is IRQF_NODELAY safe)
Remy Bohmerb843aa22008-02-08 04:21:01 -08001210 */
1211static void
1212atmel_handle_transmit(struct uart_port *port, unsigned int pending)
1213{
Haavard Skinnemoenc811ab82008-02-08 04:21:08 -08001214 struct atmel_uart_port *atmel_port = to_atmel_uart_port(port);
Remy Bohmer1ecc26b2008-02-08 04:21:05 -08001215
Claudio Scordinoe8faff72010-05-03 13:31:28 +01001216 if (pending & atmel_port->tx_done_mask) {
1217 /* Either PDC or interrupt transmission */
Cyrille Pitchen4e7decd2015-07-02 15:18:11 +02001218 atmel_uart_writel(port, ATMEL_US_IDR,
1219 atmel_port->tx_done_mask);
Claudio Scordinoe8faff72010-05-03 13:31:28 +01001220 tasklet_schedule(&atmel_port->tasklet);
Remy Bohmer1ecc26b2008-02-08 04:21:05 -08001221 }
Remy Bohmerb843aa22008-02-08 04:21:01 -08001222}
1223
1224/*
1225 * status flags interrupt handler.
1226 */
1227static void
1228atmel_handle_status(struct uart_port *port, unsigned int pending,
1229 unsigned int status)
1230{
Haavard Skinnemoenc811ab82008-02-08 04:21:08 -08001231 struct atmel_uart_port *atmel_port = to_atmel_uart_port(port);
Remy Bohmer1ecc26b2008-02-08 04:21:05 -08001232
Remy Bohmerb843aa22008-02-08 04:21:01 -08001233 if (pending & (ATMEL_US_RIIC | ATMEL_US_DSRIC | ATMEL_US_DCDIC
Remy Bohmer1ecc26b2008-02-08 04:21:05 -08001234 | ATMEL_US_CTSIC)) {
1235 atmel_port->irq_status = status;
Leilei Zhaod033e822015-04-09 10:48:15 +08001236 atmel_port->status_change = atmel_port->irq_status ^
1237 atmel_port->irq_status_prev;
1238 atmel_port->irq_status_prev = status;
Remy Bohmer1ecc26b2008-02-08 04:21:05 -08001239 tasklet_schedule(&atmel_port->tasklet);
1240 }
Remy Bohmerb843aa22008-02-08 04:21:01 -08001241}
1242
1243/*
Andrew Victor1e6c9c22006-01-10 16:59:27 +00001244 * Interrupt handler
1245 */
David Howells7d12e782006-10-05 14:55:46 +01001246static irqreturn_t atmel_interrupt(int irq, void *dev_id)
Andrew Victor1e6c9c22006-01-10 16:59:27 +00001247{
1248 struct uart_port *port = dev_id;
Richard Genoudab5e4e42014-05-13 20:20:45 +02001249 struct atmel_uart_port *atmel_port = to_atmel_uart_port(port);
Boris BREZILLON2c7af5b2015-03-02 10:18:18 +01001250 unsigned int status, pending, mask, pass_counter = 0;
Andrew Victor1e6c9c22006-01-10 16:59:27 +00001251
Boris BREZILLON2c7af5b2015-03-02 10:18:18 +01001252 spin_lock(&atmel_port->lock_suspended);
1253
Chip Coldwella6670612008-02-08 04:21:06 -08001254 do {
Richard Genoude0b0baa2014-05-13 20:20:44 +02001255 status = atmel_get_lines_status(port);
Cyrille Pitchen4e7decd2015-07-02 15:18:11 +02001256 mask = atmel_uart_readl(port, ATMEL_US_IMR);
Boris BREZILLON2c7af5b2015-03-02 10:18:18 +01001257 pending = status & mask;
Chip Coldwella6670612008-02-08 04:21:06 -08001258 if (!pending)
1259 break;
1260
Boris BREZILLON2c7af5b2015-03-02 10:18:18 +01001261 if (atmel_port->suspended) {
1262 atmel_port->pending |= pending;
1263 atmel_port->pending_status = status;
Cyrille Pitchen4e7decd2015-07-02 15:18:11 +02001264 atmel_uart_writel(port, ATMEL_US_IDR, mask);
Boris BREZILLON2c7af5b2015-03-02 10:18:18 +01001265 pm_system_wakeup();
1266 break;
1267 }
1268
Remy Bohmerb843aa22008-02-08 04:21:01 -08001269 atmel_handle_receive(port, pending);
1270 atmel_handle_status(port, pending, status);
1271 atmel_handle_transmit(port, pending);
Chip Coldwella6670612008-02-08 04:21:06 -08001272 } while (pass_counter++ < ATMEL_ISR_PASS_LIMIT);
Andrew Victor1e6c9c22006-01-10 16:59:27 +00001273
Boris BREZILLON2c7af5b2015-03-02 10:18:18 +01001274 spin_unlock(&atmel_port->lock_suspended);
1275
Haavard Skinnemoen0400b692008-02-23 15:23:36 -08001276 return pass_counter ? IRQ_HANDLED : IRQ_NONE;
Andrew Victor1e6c9c22006-01-10 16:59:27 +00001277}
1278
Elen Songa930e522013-07-22 16:30:25 +08001279static void atmel_release_tx_pdc(struct uart_port *port)
1280{
1281 struct atmel_uart_port *atmel_port = to_atmel_uart_port(port);
1282 struct atmel_dma_buffer *pdc = &atmel_port->pdc_tx;
1283
1284 dma_unmap_single(port->dev,
1285 pdc->dma_addr,
1286 pdc->dma_size,
1287 DMA_TO_DEVICE);
1288}
1289
Chip Coldwella6670612008-02-08 04:21:06 -08001290/*
1291 * Called from tasklet with ENDTX and TXBUFE interrupts disabled.
1292 */
Elen Song64e22eb2013-07-22 16:30:24 +08001293static void atmel_tx_pdc(struct uart_port *port)
Chip Coldwella6670612008-02-08 04:21:06 -08001294{
Haavard Skinnemoenc811ab82008-02-08 04:21:08 -08001295 struct atmel_uart_port *atmel_port = to_atmel_uart_port(port);
Alan Coxebd2c8f2009-09-19 13:13:28 -07001296 struct circ_buf *xmit = &port->state->xmit;
Chip Coldwella6670612008-02-08 04:21:06 -08001297 struct atmel_dma_buffer *pdc = &atmel_port->pdc_tx;
1298 int count;
1299
Michael Trimarchiba0657f2008-04-02 13:04:41 -07001300 /* nothing left to transmit? */
Cyrille Pitchen4e7decd2015-07-02 15:18:11 +02001301 if (atmel_uart_readl(port, ATMEL_PDC_TCR))
Michael Trimarchiba0657f2008-04-02 13:04:41 -07001302 return;
1303
Chip Coldwella6670612008-02-08 04:21:06 -08001304 xmit->tail += pdc->ofs;
1305 xmit->tail &= UART_XMIT_SIZE - 1;
1306
1307 port->icount.tx += pdc->ofs;
1308 pdc->ofs = 0;
1309
Michael Trimarchiba0657f2008-04-02 13:04:41 -07001310 /* more to transmit - setup next transfer */
Chip Coldwella6670612008-02-08 04:21:06 -08001311
Michael Trimarchiba0657f2008-04-02 13:04:41 -07001312 /* disable PDC transmit */
Cyrille Pitchen4e7decd2015-07-02 15:18:11 +02001313 atmel_uart_writel(port, ATMEL_PDC_PTCR, ATMEL_PDC_TXTDIS);
Michael Trimarchiba0657f2008-04-02 13:04:41 -07001314
Itai Levi1f140812009-01-15 13:50:43 -08001315 if (!uart_circ_empty(xmit) && !uart_tx_stopped(port)) {
Chip Coldwella6670612008-02-08 04:21:06 -08001316 dma_sync_single_for_device(port->dev,
1317 pdc->dma_addr,
1318 pdc->dma_size,
1319 DMA_TO_DEVICE);
1320
1321 count = CIRC_CNT_TO_END(xmit->head, xmit->tail, UART_XMIT_SIZE);
1322 pdc->ofs = count;
1323
Cyrille Pitchen4e7decd2015-07-02 15:18:11 +02001324 atmel_uart_writel(port, ATMEL_PDC_TPR,
1325 pdc->dma_addr + xmit->tail);
1326 atmel_uart_writel(port, ATMEL_PDC_TCR, count);
Claudio Scordinoe8faff72010-05-03 13:31:28 +01001327 /* re-enable PDC transmit */
Cyrille Pitchen4e7decd2015-07-02 15:18:11 +02001328 atmel_uart_writel(port, ATMEL_PDC_PTCR, ATMEL_PDC_TXTEN);
Claudio Scordinoe8faff72010-05-03 13:31:28 +01001329 /* Enable interrupts */
Cyrille Pitchen4e7decd2015-07-02 15:18:11 +02001330 atmel_uart_writel(port, ATMEL_US_IER,
1331 atmel_port->tx_done_mask);
Claudio Scordinoe8faff72010-05-03 13:31:28 +01001332 } else {
Ricardo Ribalda Delgado13bd3e62014-11-06 09:22:56 +01001333 if ((port->rs485.flags & SER_RS485_ENABLED) &&
1334 !(port->rs485.flags & SER_RS485_RX_DURING_TX)) {
Claudio Scordinoe8faff72010-05-03 13:31:28 +01001335 /* DMA done, stop TX, start RX for RS485 */
1336 atmel_start_rx(port);
1337 }
Chip Coldwella6670612008-02-08 04:21:06 -08001338 }
1339
1340 if (uart_circ_chars_pending(xmit) < WAKEUP_CHARS)
1341 uart_write_wakeup(port);
1342}
1343
Elen Songa930e522013-07-22 16:30:25 +08001344static int atmel_prepare_tx_pdc(struct uart_port *port)
1345{
1346 struct atmel_uart_port *atmel_port = to_atmel_uart_port(port);
1347 struct atmel_dma_buffer *pdc = &atmel_port->pdc_tx;
1348 struct circ_buf *xmit = &port->state->xmit;
1349
1350 pdc->buf = xmit->buf;
1351 pdc->dma_addr = dma_map_single(port->dev,
1352 pdc->buf,
1353 UART_XMIT_SIZE,
1354 DMA_TO_DEVICE);
1355 pdc->dma_size = UART_XMIT_SIZE;
1356 pdc->ofs = 0;
1357
1358 return 0;
1359}
1360
Remy Bohmer1ecc26b2008-02-08 04:21:05 -08001361static void atmel_rx_from_ring(struct uart_port *port)
1362{
Haavard Skinnemoenc811ab82008-02-08 04:21:08 -08001363 struct atmel_uart_port *atmel_port = to_atmel_uart_port(port);
Remy Bohmer1ecc26b2008-02-08 04:21:05 -08001364 struct circ_buf *ring = &atmel_port->rx_ring;
1365 unsigned int flg;
1366 unsigned int status;
1367
1368 while (ring->head != ring->tail) {
1369 struct atmel_uart_char c;
1370
1371 /* Make sure c is loaded after head. */
1372 smp_rmb();
1373
1374 c = ((struct atmel_uart_char *)ring->buf)[ring->tail];
1375
1376 ring->tail = (ring->tail + 1) & (ATMEL_SERIAL_RINGSIZE - 1);
1377
1378 port->icount.rx++;
1379 status = c.status;
1380 flg = TTY_NORMAL;
1381
1382 /*
1383 * note that the error handling code is
1384 * out of the main execution path
1385 */
1386 if (unlikely(status & (ATMEL_US_PARE | ATMEL_US_FRAME
1387 | ATMEL_US_OVRE | ATMEL_US_RXBRK))) {
1388 if (status & ATMEL_US_RXBRK) {
1389 /* ignore side-effect */
1390 status &= ~(ATMEL_US_PARE | ATMEL_US_FRAME);
1391
1392 port->icount.brk++;
1393 if (uart_handle_break(port))
1394 continue;
1395 }
1396 if (status & ATMEL_US_PARE)
1397 port->icount.parity++;
1398 if (status & ATMEL_US_FRAME)
1399 port->icount.frame++;
1400 if (status & ATMEL_US_OVRE)
1401 port->icount.overrun++;
1402
1403 status &= port->read_status_mask;
1404
1405 if (status & ATMEL_US_RXBRK)
1406 flg = TTY_BREAK;
1407 else if (status & ATMEL_US_PARE)
1408 flg = TTY_PARITY;
1409 else if (status & ATMEL_US_FRAME)
1410 flg = TTY_FRAME;
1411 }
1412
1413
1414 if (uart_handle_sysrq_char(port, c.ch))
1415 continue;
1416
1417 uart_insert_char(port, status, ATMEL_US_OVRE, c.ch, flg);
1418 }
1419
1420 /*
1421 * Drop the lock here since it might end up calling
1422 * uart_start(), which takes the lock.
1423 */
1424 spin_unlock(&port->lock);
Jiri Slaby2e124b42013-01-03 15:53:06 +01001425 tty_flip_buffer_push(&port->state->port);
Remy Bohmer1ecc26b2008-02-08 04:21:05 -08001426 spin_lock(&port->lock);
1427}
1428
Elen Songa930e522013-07-22 16:30:25 +08001429static void atmel_release_rx_pdc(struct uart_port *port)
1430{
1431 struct atmel_uart_port *atmel_port = to_atmel_uart_port(port);
1432 int i;
1433
1434 for (i = 0; i < 2; i++) {
1435 struct atmel_dma_buffer *pdc = &atmel_port->pdc_rx[i];
1436
1437 dma_unmap_single(port->dev,
1438 pdc->dma_addr,
1439 pdc->dma_size,
1440 DMA_FROM_DEVICE);
1441 kfree(pdc->buf);
1442 }
1443}
1444
Elen Song64e22eb2013-07-22 16:30:24 +08001445static void atmel_rx_from_pdc(struct uart_port *port)
Chip Coldwella6670612008-02-08 04:21:06 -08001446{
Haavard Skinnemoenc811ab82008-02-08 04:21:08 -08001447 struct atmel_uart_port *atmel_port = to_atmel_uart_port(port);
Jiri Slaby05c7cd32013-01-03 15:53:04 +01001448 struct tty_port *tport = &port->state->port;
Chip Coldwella6670612008-02-08 04:21:06 -08001449 struct atmel_dma_buffer *pdc;
1450 int rx_idx = atmel_port->pdc_rx_idx;
1451 unsigned int head;
1452 unsigned int tail;
1453 unsigned int count;
1454
1455 do {
1456 /* Reset the UART timeout early so that we don't miss one */
Cyrille Pitchen4e7decd2015-07-02 15:18:11 +02001457 atmel_uart_writel(port, ATMEL_US_CR, ATMEL_US_STTTO);
Chip Coldwella6670612008-02-08 04:21:06 -08001458
1459 pdc = &atmel_port->pdc_rx[rx_idx];
Cyrille Pitchen4e7decd2015-07-02 15:18:11 +02001460 head = atmel_uart_readl(port, ATMEL_PDC_RPR) - pdc->dma_addr;
Chip Coldwella6670612008-02-08 04:21:06 -08001461 tail = pdc->ofs;
1462
1463 /* If the PDC has switched buffers, RPR won't contain
1464 * any address within the current buffer. Since head
1465 * is unsigned, we just need a one-way comparison to
1466 * find out.
1467 *
1468 * In this case, we just need to consume the entire
1469 * buffer and resubmit it for DMA. This will clear the
1470 * ENDRX bit as well, so that we can safely re-enable
1471 * all interrupts below.
1472 */
1473 head = min(head, pdc->dma_size);
1474
1475 if (likely(head != tail)) {
1476 dma_sync_single_for_cpu(port->dev, pdc->dma_addr,
1477 pdc->dma_size, DMA_FROM_DEVICE);
1478
1479 /*
1480 * head will only wrap around when we recycle
1481 * the DMA buffer, and when that happens, we
1482 * explicitly set tail to 0. So head will
1483 * always be greater than tail.
1484 */
1485 count = head - tail;
1486
Jiri Slaby05c7cd32013-01-03 15:53:04 +01001487 tty_insert_flip_string(tport, pdc->buf + pdc->ofs,
1488 count);
Chip Coldwella6670612008-02-08 04:21:06 -08001489
1490 dma_sync_single_for_device(port->dev, pdc->dma_addr,
1491 pdc->dma_size, DMA_FROM_DEVICE);
1492
1493 port->icount.rx += count;
1494 pdc->ofs = head;
1495 }
1496
1497 /*
1498 * If the current buffer is full, we need to check if
1499 * the next one contains any additional data.
1500 */
1501 if (head >= pdc->dma_size) {
1502 pdc->ofs = 0;
Cyrille Pitchen4e7decd2015-07-02 15:18:11 +02001503 atmel_uart_writel(port, ATMEL_PDC_RNPR, pdc->dma_addr);
1504 atmel_uart_writel(port, ATMEL_PDC_RNCR, pdc->dma_size);
Chip Coldwella6670612008-02-08 04:21:06 -08001505
1506 rx_idx = !rx_idx;
1507 atmel_port->pdc_rx_idx = rx_idx;
1508 }
1509 } while (head >= pdc->dma_size);
1510
1511 /*
1512 * Drop the lock here since it might end up calling
1513 * uart_start(), which takes the lock.
1514 */
1515 spin_unlock(&port->lock);
Jiri Slaby2e124b42013-01-03 15:53:06 +01001516 tty_flip_buffer_push(tport);
Chip Coldwella6670612008-02-08 04:21:06 -08001517 spin_lock(&port->lock);
1518
Cyrille Pitchen4e7decd2015-07-02 15:18:11 +02001519 atmel_uart_writel(port, ATMEL_US_IER,
1520 ATMEL_US_ENDRX | ATMEL_US_TIMEOUT);
Chip Coldwella6670612008-02-08 04:21:06 -08001521}
1522
Elen Songa930e522013-07-22 16:30:25 +08001523static int atmel_prepare_rx_pdc(struct uart_port *port)
1524{
1525 struct atmel_uart_port *atmel_port = to_atmel_uart_port(port);
1526 int i;
1527
1528 for (i = 0; i < 2; i++) {
1529 struct atmel_dma_buffer *pdc = &atmel_port->pdc_rx[i];
1530
1531 pdc->buf = kmalloc(PDC_BUFFER_SIZE, GFP_KERNEL);
1532 if (pdc->buf == NULL) {
1533 if (i != 0) {
1534 dma_unmap_single(port->dev,
1535 atmel_port->pdc_rx[0].dma_addr,
1536 PDC_BUFFER_SIZE,
1537 DMA_FROM_DEVICE);
1538 kfree(atmel_port->pdc_rx[0].buf);
1539 }
1540 atmel_port->use_pdc_rx = 0;
1541 return -ENOMEM;
1542 }
1543 pdc->dma_addr = dma_map_single(port->dev,
1544 pdc->buf,
1545 PDC_BUFFER_SIZE,
1546 DMA_FROM_DEVICE);
1547 pdc->dma_size = PDC_BUFFER_SIZE;
1548 pdc->ofs = 0;
1549 }
1550
1551 atmel_port->pdc_rx_idx = 0;
1552
Cyrille Pitchen4e7decd2015-07-02 15:18:11 +02001553 atmel_uart_writel(port, ATMEL_PDC_RPR, atmel_port->pdc_rx[0].dma_addr);
1554 atmel_uart_writel(port, ATMEL_PDC_RCR, PDC_BUFFER_SIZE);
Elen Songa930e522013-07-22 16:30:25 +08001555
Cyrille Pitchen4e7decd2015-07-02 15:18:11 +02001556 atmel_uart_writel(port, ATMEL_PDC_RNPR,
1557 atmel_port->pdc_rx[1].dma_addr);
1558 atmel_uart_writel(port, ATMEL_PDC_RNCR, PDC_BUFFER_SIZE);
Elen Songa930e522013-07-22 16:30:25 +08001559
1560 return 0;
1561}
1562
Remy Bohmer1ecc26b2008-02-08 04:21:05 -08001563/*
1564 * tasklet handling tty stuff outside the interrupt handler.
1565 */
1566static void atmel_tasklet_func(unsigned long data)
1567{
1568 struct uart_port *port = (struct uart_port *)data;
Haavard Skinnemoenc811ab82008-02-08 04:21:08 -08001569 struct atmel_uart_port *atmel_port = to_atmel_uart_port(port);
Leilei Zhaod033e822015-04-09 10:48:15 +08001570 unsigned int status = atmel_port->irq_status;
1571 unsigned int status_change = atmel_port->status_change;
Remy Bohmer1ecc26b2008-02-08 04:21:05 -08001572
1573 /* The interrupt handler does not take the lock */
1574 spin_lock(&port->lock);
1575
Elen Songa930e522013-07-22 16:30:25 +08001576 atmel_port->schedule_tx(port);
Remy Bohmer1ecc26b2008-02-08 04:21:05 -08001577
Remy Bohmer1ecc26b2008-02-08 04:21:05 -08001578 if (status_change & (ATMEL_US_RI | ATMEL_US_DSR
1579 | ATMEL_US_DCD | ATMEL_US_CTS)) {
1580 /* TODO: All reads to CSR will clear these interrupts! */
1581 if (status_change & ATMEL_US_RI)
1582 port->icount.rng++;
1583 if (status_change & ATMEL_US_DSR)
1584 port->icount.dsr++;
1585 if (status_change & ATMEL_US_DCD)
1586 uart_handle_dcd_change(port, !(status & ATMEL_US_DCD));
1587 if (status_change & ATMEL_US_CTS)
1588 uart_handle_cts_change(port, !(status & ATMEL_US_CTS));
1589
Alan Coxbdc04e32009-09-19 13:13:31 -07001590 wake_up_interruptible(&port->state->port.delta_msr_wait);
Remy Bohmer1ecc26b2008-02-08 04:21:05 -08001591
Leilei Zhaod033e822015-04-09 10:48:15 +08001592 atmel_port->status_change = 0;
Remy Bohmer1ecc26b2008-02-08 04:21:05 -08001593 }
1594
Elen Songa930e522013-07-22 16:30:25 +08001595 atmel_port->schedule_rx(port);
Remy Bohmer1ecc26b2008-02-08 04:21:05 -08001596
1597 spin_unlock(&port->lock);
1598}
1599
Leilei Zhao4a1e8882015-02-27 16:07:16 +08001600static void atmel_init_property(struct atmel_uart_port *atmel_port,
Elen Song33d64c42013-07-22 16:30:28 +08001601 struct platform_device *pdev)
1602{
1603 struct device_node *np = pdev->dev.of_node;
Jingoo Han574de552013-07-30 17:06:57 +09001604 struct atmel_uart_data *pdata = dev_get_platdata(&pdev->dev);
Elen Song33d64c42013-07-22 16:30:28 +08001605
1606 if (np) {
1607 /* DMA/PDC usage specification */
1608 if (of_get_property(np, "atmel,use-dma-rx", NULL)) {
1609 if (of_get_property(np, "dmas", NULL)) {
1610 atmel_port->use_dma_rx = true;
1611 atmel_port->use_pdc_rx = false;
1612 } else {
1613 atmel_port->use_dma_rx = false;
1614 atmel_port->use_pdc_rx = true;
1615 }
1616 } else {
1617 atmel_port->use_dma_rx = false;
1618 atmel_port->use_pdc_rx = false;
1619 }
1620
1621 if (of_get_property(np, "atmel,use-dma-tx", NULL)) {
1622 if (of_get_property(np, "dmas", NULL)) {
1623 atmel_port->use_dma_tx = true;
1624 atmel_port->use_pdc_tx = false;
1625 } else {
1626 atmel_port->use_dma_tx = false;
1627 atmel_port->use_pdc_tx = true;
1628 }
1629 } else {
1630 atmel_port->use_dma_tx = false;
1631 atmel_port->use_pdc_tx = false;
1632 }
1633
1634 } else {
1635 atmel_port->use_pdc_rx = pdata->use_dma_rx;
1636 atmel_port->use_pdc_tx = pdata->use_dma_tx;
1637 atmel_port->use_dma_rx = false;
1638 atmel_port->use_dma_tx = false;
1639 }
1640
Elen Song33d64c42013-07-22 16:30:28 +08001641}
1642
Ricardo Ribalda Delgado13bd3e62014-11-06 09:22:56 +01001643static void atmel_init_rs485(struct uart_port *port,
Elen Song33d64c42013-07-22 16:30:28 +08001644 struct platform_device *pdev)
1645{
1646 struct device_node *np = pdev->dev.of_node;
Jingoo Han574de552013-07-30 17:06:57 +09001647 struct atmel_uart_data *pdata = dev_get_platdata(&pdev->dev);
Elen Song33d64c42013-07-22 16:30:28 +08001648
1649 if (np) {
Jiri Slaby77bdec62015-10-11 15:22:44 +02001650 struct serial_rs485 *rs485conf = &port->rs485;
Elen Song33d64c42013-07-22 16:30:28 +08001651 u32 rs485_delay[2];
1652 /* rs485 properties */
1653 if (of_property_read_u32_array(np, "rs485-rts-delay",
1654 rs485_delay, 2) == 0) {
Elen Song33d64c42013-07-22 16:30:28 +08001655 rs485conf->delay_rts_before_send = rs485_delay[0];
1656 rs485conf->delay_rts_after_send = rs485_delay[1];
1657 rs485conf->flags = 0;
Jiri Slaby77bdec62015-10-11 15:22:44 +02001658 }
Elen Song33d64c42013-07-22 16:30:28 +08001659
1660 if (of_get_property(np, "rs485-rx-during-tx", NULL))
1661 rs485conf->flags |= SER_RS485_RX_DURING_TX;
1662
1663 if (of_get_property(np, "linux,rs485-enabled-at-boot-time",
1664 NULL))
1665 rs485conf->flags |= SER_RS485_ENABLED;
Elen Song33d64c42013-07-22 16:30:28 +08001666 } else {
Ricardo Ribalda Delgado13bd3e62014-11-06 09:22:56 +01001667 port->rs485 = pdata->rs485;
Elen Song33d64c42013-07-22 16:30:28 +08001668 }
1669
1670}
1671
Elen Songa930e522013-07-22 16:30:25 +08001672static void atmel_set_ops(struct uart_port *port)
1673{
1674 struct atmel_uart_port *atmel_port = to_atmel_uart_port(port);
1675
Elen Song34df42f2013-07-22 16:30:27 +08001676 if (atmel_use_dma_rx(port)) {
1677 atmel_port->prepare_rx = &atmel_prepare_rx_dma;
1678 atmel_port->schedule_rx = &atmel_rx_from_dma;
1679 atmel_port->release_rx = &atmel_release_rx_dma;
1680 } else if (atmel_use_pdc_rx(port)) {
Elen Songa930e522013-07-22 16:30:25 +08001681 atmel_port->prepare_rx = &atmel_prepare_rx_pdc;
1682 atmel_port->schedule_rx = &atmel_rx_from_pdc;
1683 atmel_port->release_rx = &atmel_release_rx_pdc;
1684 } else {
1685 atmel_port->prepare_rx = NULL;
1686 atmel_port->schedule_rx = &atmel_rx_from_ring;
1687 atmel_port->release_rx = NULL;
1688 }
1689
Elen Song08f738b2013-07-22 16:30:26 +08001690 if (atmel_use_dma_tx(port)) {
1691 atmel_port->prepare_tx = &atmel_prepare_tx_dma;
1692 atmel_port->schedule_tx = &atmel_tx_dma;
1693 atmel_port->release_tx = &atmel_release_tx_dma;
1694 } else if (atmel_use_pdc_tx(port)) {
Elen Songa930e522013-07-22 16:30:25 +08001695 atmel_port->prepare_tx = &atmel_prepare_tx_pdc;
1696 atmel_port->schedule_tx = &atmel_tx_pdc;
1697 atmel_port->release_tx = &atmel_release_tx_pdc;
1698 } else {
1699 atmel_port->prepare_tx = NULL;
1700 atmel_port->schedule_tx = &atmel_tx_chars;
1701 atmel_port->release_tx = NULL;
1702 }
1703}
1704
Andrew Victor1e6c9c22006-01-10 16:59:27 +00001705/*
Elen Song055560b2013-07-22 16:30:29 +08001706 * Get ip name usart or uart
1707 */
Nicolas Ferre892db582013-10-17 17:37:11 +02001708static void atmel_get_ip_name(struct uart_port *port)
Elen Song055560b2013-07-22 16:30:29 +08001709{
1710 struct atmel_uart_port *atmel_port = to_atmel_uart_port(port);
Cyrille Pitchen4e7decd2015-07-02 15:18:11 +02001711 int name = atmel_uart_readl(port, ATMEL_US_NAME);
Nicolas Ferre731d9ca2013-10-17 17:37:12 +02001712 u32 version;
Nicolas Ferre1d673fb2016-01-26 11:26:15 +01001713 u32 usart, dbgu_uart, new_uart;
Nicolas Ferre4b769372016-01-26 11:26:14 +01001714 /* ASCII decoding for IP version */
1715 usart = 0x55534152; /* USAR(T) */
1716 dbgu_uart = 0x44424755; /* DBGU */
Nicolas Ferre1d673fb2016-01-26 11:26:15 +01001717 new_uart = 0x55415254; /* UART */
Elen Song055560b2013-07-22 16:30:29 +08001718
Nicolas Ferre4b769372016-01-26 11:26:14 +01001719 atmel_port->has_hw_timer = false;
Elen Song055560b2013-07-22 16:30:29 +08001720
Nicolas Ferre1d673fb2016-01-26 11:26:15 +01001721 if (name == usart || name == new_uart) {
1722 dev_dbg(port->dev, "Usart or uart with hw timer\n");
Nicolas Ferre4b769372016-01-26 11:26:14 +01001723 atmel_port->has_hw_timer = true;
1724 } else if (name == dbgu_uart) {
1725 dev_dbg(port->dev, "Dbgu or uart without hw timer\n");
1726 atmel_port->has_hw_timer = false;
Elen Song055560b2013-07-22 16:30:29 +08001727 } else {
Nicolas Ferre731d9ca2013-10-17 17:37:12 +02001728 /* fallback for older SoCs: use version field */
Cyrille Pitchen4e7decd2015-07-02 15:18:11 +02001729 version = atmel_uart_readl(port, ATMEL_US_VERSION);
Nicolas Ferre731d9ca2013-10-17 17:37:12 +02001730 switch (version) {
1731 case 0x302:
1732 case 0x10213:
1733 dev_dbg(port->dev, "This version is usart\n");
Nicolas Ferre4b769372016-01-26 11:26:14 +01001734 atmel_port->has_hw_timer = true;
Nicolas Ferre731d9ca2013-10-17 17:37:12 +02001735 break;
1736 case 0x203:
1737 case 0x10202:
1738 dev_dbg(port->dev, "This version is uart\n");
Nicolas Ferre4b769372016-01-26 11:26:14 +01001739 atmel_port->has_hw_timer = false;
Nicolas Ferre731d9ca2013-10-17 17:37:12 +02001740 break;
1741 default:
1742 dev_err(port->dev, "Not supported ip name nor version, set to uart\n");
1743 }
Elen Song055560b2013-07-22 16:30:29 +08001744 }
Elen Song055560b2013-07-22 16:30:29 +08001745}
1746
1747/*
Andrew Victor1e6c9c22006-01-10 16:59:27 +00001748 * Perform initialization and enable port for reception
1749 */
Haavard Skinnemoen7192f922006-10-04 16:02:05 +02001750static int atmel_startup(struct uart_port *port)
Andrew Victor1e6c9c22006-01-10 16:59:27 +00001751{
Elen Song33d64c42013-07-22 16:30:28 +08001752 struct platform_device *pdev = to_platform_device(port->dev);
Haavard Skinnemoenc811ab82008-02-08 04:21:08 -08001753 struct atmel_uart_port *atmel_port = to_atmel_uart_port(port);
Alan Coxebd2c8f2009-09-19 13:13:28 -07001754 struct tty_struct *tty = port->state->port.tty;
Andrew Victor1e6c9c22006-01-10 16:59:27 +00001755 int retval;
1756
1757 /*
1758 * Ensure that no interrupts are enabled otherwise when
1759 * request_irq() is called we could get stuck trying to
1760 * handle an unexpected interrupt
1761 */
Cyrille Pitchen4e7decd2015-07-02 15:18:11 +02001762 atmel_uart_writel(port, ATMEL_US_IDR, -1);
Richard Genoudab5e4e42014-05-13 20:20:45 +02001763 atmel_port->ms_irq_enabled = false;
Andrew Victor1e6c9c22006-01-10 16:59:27 +00001764
1765 /*
1766 * Allocate the IRQ
1767 */
Boris BREZILLON2c7af5b2015-03-02 10:18:18 +01001768 retval = request_irq(port->irq, atmel_interrupt,
1769 IRQF_SHARED | IRQF_COND_SUSPEND,
Haavard Skinnemoenae161062008-02-08 04:21:08 -08001770 tty ? tty->name : "atmel_serial", port);
Andrew Victor1e6c9c22006-01-10 16:59:27 +00001771 if (retval) {
Richard Genoudddaa6032014-02-26 17:19:45 +01001772 dev_err(port->dev, "atmel_startup - Can't get irq\n");
Andrew Victor1e6c9c22006-01-10 16:59:27 +00001773 return retval;
1774 }
1775
Leilei Zhao1e125782015-02-27 16:07:18 +08001776 tasklet_enable(&atmel_port->tasklet);
1777
Richard Genoudab5e4e42014-05-13 20:20:45 +02001778 /*
Chip Coldwella6670612008-02-08 04:21:06 -08001779 * Initialize DMA (if necessary)
1780 */
Elen Song33d64c42013-07-22 16:30:28 +08001781 atmel_init_property(atmel_port, pdev);
Leilei Zhao4d9628a2015-02-27 16:07:17 +08001782 atmel_set_ops(port);
Elen Song33d64c42013-07-22 16:30:28 +08001783
Elen Songa930e522013-07-22 16:30:25 +08001784 if (atmel_port->prepare_rx) {
1785 retval = atmel_port->prepare_rx(port);
1786 if (retval < 0)
1787 atmel_set_ops(port);
Chip Coldwella6670612008-02-08 04:21:06 -08001788 }
1789
Elen Songa930e522013-07-22 16:30:25 +08001790 if (atmel_port->prepare_tx) {
1791 retval = atmel_port->prepare_tx(port);
1792 if (retval < 0)
1793 atmel_set_ops(port);
1794 }
Andrew Victor1e6c9c22006-01-10 16:59:27 +00001795
Cyrille Pitchenb5199d42015-07-02 15:18:12 +02001796 /*
1797 * Enable FIFO when available
1798 */
1799 if (atmel_port->fifo_size) {
1800 unsigned int txrdym = ATMEL_US_ONE_DATA;
1801 unsigned int rxrdym = ATMEL_US_ONE_DATA;
1802 unsigned int fmr;
1803
1804 atmel_uart_writel(port, ATMEL_US_CR,
1805 ATMEL_US_FIFOEN |
1806 ATMEL_US_RXFCLR |
1807 ATMEL_US_TXFLCLR);
1808
Cyrille Pitchen5f258b32015-07-02 15:18:13 +02001809 if (atmel_use_dma_tx(port))
1810 txrdym = ATMEL_US_FOUR_DATA;
1811
Cyrille Pitchenb5199d42015-07-02 15:18:12 +02001812 fmr = ATMEL_US_TXRDYM(txrdym) | ATMEL_US_RXRDYM(rxrdym);
1813 if (atmel_port->rts_high &&
1814 atmel_port->rts_low)
1815 fmr |= ATMEL_US_FRTSC |
1816 ATMEL_US_RXFTHRES(atmel_port->rts_high) |
1817 ATMEL_US_RXFTHRES2(atmel_port->rts_low);
1818
1819 atmel_uart_writel(port, ATMEL_US_FMR, fmr);
1820 }
1821
Atsushi Nemoto27c0c8e2009-02-18 14:48:28 -08001822 /* Save current CSR for comparison in atmel_tasklet_func() */
Richard Genoude0b0baa2014-05-13 20:20:44 +02001823 atmel_port->irq_status_prev = atmel_get_lines_status(port);
Atsushi Nemoto27c0c8e2009-02-18 14:48:28 -08001824 atmel_port->irq_status = atmel_port->irq_status_prev;
1825
Andrew Victor1e6c9c22006-01-10 16:59:27 +00001826 /*
1827 * Finally, enable the serial port
1828 */
Cyrille Pitchen4e7decd2015-07-02 15:18:11 +02001829 atmel_uart_writel(port, ATMEL_US_CR, ATMEL_US_RSTSTA | ATMEL_US_RSTRX);
Remy Bohmerb843aa22008-02-08 04:21:01 -08001830 /* enable xmit & rcvr */
Cyrille Pitchen4e7decd2015-07-02 15:18:11 +02001831 atmel_uart_writel(port, ATMEL_US_CR, ATMEL_US_TXEN | ATMEL_US_RXEN);
Andrew Victorafefc412006-06-19 19:53:19 +01001832
Marek Roszko8bc661b2014-01-10 10:33:11 +01001833 setup_timer(&atmel_port->uart_timer,
1834 atmel_uart_timer_callback,
1835 (unsigned long)port);
1836
Elen Song64e22eb2013-07-22 16:30:24 +08001837 if (atmel_use_pdc_rx(port)) {
Chip Coldwella6670612008-02-08 04:21:06 -08001838 /* set UART timeout */
Nicolas Ferre4b769372016-01-26 11:26:14 +01001839 if (!atmel_port->has_hw_timer) {
Elen Song2e68c222013-07-22 16:30:30 +08001840 mod_timer(&atmel_port->uart_timer,
1841 jiffies + uart_poll_timeout(port));
1842 /* set USART timeout */
1843 } else {
Cyrille Pitchen4e7decd2015-07-02 15:18:11 +02001844 atmel_uart_writel(port, ATMEL_US_RTOR, PDC_RX_TIMEOUT);
1845 atmel_uart_writel(port, ATMEL_US_CR, ATMEL_US_STTTO);
Chip Coldwella6670612008-02-08 04:21:06 -08001846
Cyrille Pitchen4e7decd2015-07-02 15:18:11 +02001847 atmel_uart_writel(port, ATMEL_US_IER,
1848 ATMEL_US_ENDRX | ATMEL_US_TIMEOUT);
Elen Song2e68c222013-07-22 16:30:30 +08001849 }
Chip Coldwella6670612008-02-08 04:21:06 -08001850 /* enable PDC controller */
Cyrille Pitchen4e7decd2015-07-02 15:18:11 +02001851 atmel_uart_writel(port, ATMEL_PDC_PTCR, ATMEL_PDC_RXTEN);
Elen Song34df42f2013-07-22 16:30:27 +08001852 } else if (atmel_use_dma_rx(port)) {
Elen Song2e68c222013-07-22 16:30:30 +08001853 /* set UART timeout */
Nicolas Ferre4b769372016-01-26 11:26:14 +01001854 if (!atmel_port->has_hw_timer) {
Elen Song2e68c222013-07-22 16:30:30 +08001855 mod_timer(&atmel_port->uart_timer,
1856 jiffies + uart_poll_timeout(port));
1857 /* set USART timeout */
1858 } else {
Cyrille Pitchen4e7decd2015-07-02 15:18:11 +02001859 atmel_uart_writel(port, ATMEL_US_RTOR, PDC_RX_TIMEOUT);
1860 atmel_uart_writel(port, ATMEL_US_CR, ATMEL_US_STTTO);
Elen Song34df42f2013-07-22 16:30:27 +08001861
Cyrille Pitchen4e7decd2015-07-02 15:18:11 +02001862 atmel_uart_writel(port, ATMEL_US_IER,
1863 ATMEL_US_TIMEOUT);
Elen Song2e68c222013-07-22 16:30:30 +08001864 }
Chip Coldwella6670612008-02-08 04:21:06 -08001865 } else {
1866 /* enable receive only */
Cyrille Pitchen4e7decd2015-07-02 15:18:11 +02001867 atmel_uart_writel(port, ATMEL_US_IER, ATMEL_US_RXRDY);
Chip Coldwella6670612008-02-08 04:21:06 -08001868 }
Andrew Victorafefc412006-06-19 19:53:19 +01001869
Andrew Victor1e6c9c22006-01-10 16:59:27 +00001870 return 0;
1871}
1872
1873/*
Peter Hurley479e9b92014-10-16 16:54:18 -04001874 * Flush any TX data submitted for DMA. Called when the TX circular
1875 * buffer is reset.
1876 */
1877static void atmel_flush_buffer(struct uart_port *port)
1878{
1879 struct atmel_uart_port *atmel_port = to_atmel_uart_port(port);
1880
1881 if (atmel_use_pdc_tx(port)) {
Cyrille Pitchen4e7decd2015-07-02 15:18:11 +02001882 atmel_uart_writel(port, ATMEL_PDC_TCR, 0);
Peter Hurley479e9b92014-10-16 16:54:18 -04001883 atmel_port->pdc_tx.ofs = 0;
1884 }
1885}
1886
1887/*
Andrew Victor1e6c9c22006-01-10 16:59:27 +00001888 * Disable the port
1889 */
Haavard Skinnemoen7192f922006-10-04 16:02:05 +02001890static void atmel_shutdown(struct uart_port *port)
Andrew Victor1e6c9c22006-01-10 16:59:27 +00001891{
Haavard Skinnemoenc811ab82008-02-08 04:21:08 -08001892 struct atmel_uart_port *atmel_port = to_atmel_uart_port(port);
Marek Roszko0cc7c6c2014-01-07 11:45:06 +01001893
Chip Coldwella6670612008-02-08 04:21:06 -08001894 /*
Marek Roszko8bc661b2014-01-10 10:33:11 +01001895 * Prevent any tasklets being scheduled during
1896 * cleanup
1897 */
1898 del_timer_sync(&atmel_port->uart_timer);
1899
1900 /*
Marek Roszko0cc7c6c2014-01-07 11:45:06 +01001901 * Clear out any scheduled tasklets before
1902 * we destroy the buffers
1903 */
Leilei Zhao1e125782015-02-27 16:07:18 +08001904 tasklet_disable(&atmel_port->tasklet);
Marek Roszko0cc7c6c2014-01-07 11:45:06 +01001905 tasklet_kill(&atmel_port->tasklet);
1906
1907 /*
1908 * Ensure everything is stopped and
1909 * disable all interrupts, port and break condition.
Chip Coldwella6670612008-02-08 04:21:06 -08001910 */
1911 atmel_stop_rx(port);
1912 atmel_stop_tx(port);
1913
Cyrille Pitchen4e7decd2015-07-02 15:18:11 +02001914 atmel_uart_writel(port, ATMEL_US_CR, ATMEL_US_RSTSTA);
1915 atmel_uart_writel(port, ATMEL_US_IDR, -1);
Marek Roszko0cc7c6c2014-01-07 11:45:06 +01001916
1917
Chip Coldwella6670612008-02-08 04:21:06 -08001918 /*
1919 * Shut-down the DMA.
1920 */
Elen Songa930e522013-07-22 16:30:25 +08001921 if (atmel_port->release_rx)
1922 atmel_port->release_rx(port);
1923 if (atmel_port->release_tx)
1924 atmel_port->release_tx(port);
Chip Coldwella6670612008-02-08 04:21:06 -08001925
Andrew Victor1e6c9c22006-01-10 16:59:27 +00001926 /*
Mark Deneenbb7e73c2014-01-07 11:45:09 +01001927 * Reset ring buffer pointers
1928 */
1929 atmel_port->rx_ring.head = 0;
1930 atmel_port->rx_ring.tail = 0;
1931
1932 /*
Richard Genoudab5e4e42014-05-13 20:20:45 +02001933 * Free the interrupts
Andrew Victor1e6c9c22006-01-10 16:59:27 +00001934 */
1935 free_irq(port->irq, port);
Richard Genoudab5e4e42014-05-13 20:20:45 +02001936
1937 atmel_port->ms_irq_enabled = false;
Andrew Victor1e6c9c22006-01-10 16:59:27 +00001938
Peter Hurley479e9b92014-10-16 16:54:18 -04001939 atmel_flush_buffer(port);
Haavard Skinnemoen9afd5612008-07-16 21:52:46 +01001940}
1941
1942/*
Andrew Victor1e6c9c22006-01-10 16:59:27 +00001943 * Power / Clock management.
1944 */
Remy Bohmerb843aa22008-02-08 04:21:01 -08001945static void atmel_serial_pm(struct uart_port *port, unsigned int state,
1946 unsigned int oldstate)
Andrew Victor1e6c9c22006-01-10 16:59:27 +00001947{
Haavard Skinnemoenc811ab82008-02-08 04:21:08 -08001948 struct atmel_uart_port *atmel_port = to_atmel_uart_port(port);
Andrew Victorafefc412006-06-19 19:53:19 +01001949
Andrew Victor1e6c9c22006-01-10 16:59:27 +00001950 switch (state) {
Remy Bohmerb843aa22008-02-08 04:21:01 -08001951 case 0:
1952 /*
1953 * Enable the peripheral clock for this serial port.
1954 * This is called on uart_open() or a resume event.
1955 */
Boris BREZILLON91f8c2d2013-06-19 13:17:30 +02001956 clk_prepare_enable(atmel_port->clk);
Anti Sullinf05596d2008-09-22 13:57:54 -07001957
1958 /* re-enable interrupts if we disabled some on suspend */
Cyrille Pitchen4e7decd2015-07-02 15:18:11 +02001959 atmel_uart_writel(port, ATMEL_US_IER, atmel_port->backup_imr);
Remy Bohmerb843aa22008-02-08 04:21:01 -08001960 break;
1961 case 3:
Anti Sullinf05596d2008-09-22 13:57:54 -07001962 /* Back up the interrupt mask and disable all interrupts */
Cyrille Pitchen4e7decd2015-07-02 15:18:11 +02001963 atmel_port->backup_imr = atmel_uart_readl(port, ATMEL_US_IMR);
1964 atmel_uart_writel(port, ATMEL_US_IDR, -1);
Anti Sullinf05596d2008-09-22 13:57:54 -07001965
Remy Bohmerb843aa22008-02-08 04:21:01 -08001966 /*
1967 * Disable the peripheral clock for this serial port.
1968 * This is called on uart_close() or a suspend event.
1969 */
Boris BREZILLON91f8c2d2013-06-19 13:17:30 +02001970 clk_disable_unprepare(atmel_port->clk);
Remy Bohmerb843aa22008-02-08 04:21:01 -08001971 break;
1972 default:
Richard Genoudddaa6032014-02-26 17:19:45 +01001973 dev_err(port->dev, "atmel_serial: unknown pm %d\n", state);
Andrew Victor1e6c9c22006-01-10 16:59:27 +00001974 }
1975}
1976
1977/*
1978 * Change the port parameters
1979 */
Remy Bohmerb843aa22008-02-08 04:21:01 -08001980static void atmel_set_termios(struct uart_port *port, struct ktermios *termios,
1981 struct ktermios *old)
Andrew Victor1e6c9c22006-01-10 16:59:27 +00001982{
1983 unsigned long flags;
Cyrille Pitchen1cf6e8f2014-12-09 14:31:35 +01001984 unsigned int old_mode, mode, imr, quot, baud;
Andrew Victor1e6c9c22006-01-10 16:59:27 +00001985
Cyrille Pitchen1cf6e8f2014-12-09 14:31:35 +01001986 /* save the current mode register */
Cyrille Pitchen4e7decd2015-07-02 15:18:11 +02001987 mode = old_mode = atmel_uart_readl(port, ATMEL_US_MR);
Cyrille Pitchen1cf6e8f2014-12-09 14:31:35 +01001988
1989 /* reset the mode, clock divisor, parity, stop bits and data size */
1990 mode &= ~(ATMEL_US_USCLKS | ATMEL_US_CHRL | ATMEL_US_NBSTOP |
1991 ATMEL_US_PAR | ATMEL_US_USMODE);
Andrew Victor03abeac2007-05-03 12:26:24 +01001992
Remy Bohmerb843aa22008-02-08 04:21:01 -08001993 baud = uart_get_baud_rate(port, termios, old, 0, port->uartclk / 16);
Andrew Victor1e6c9c22006-01-10 16:59:27 +00001994 quot = uart_get_divisor(port, baud);
1995
Remy Bohmerb843aa22008-02-08 04:21:01 -08001996 if (quot > 65535) { /* BRGR is 16-bit, so switch to slower clock */
Andrew Victor03abeac2007-05-03 12:26:24 +01001997 quot /= 8;
1998 mode |= ATMEL_US_USCLKS_MCK_DIV8;
1999 }
Andrew Victor1e6c9c22006-01-10 16:59:27 +00002000
2001 /* byte size */
2002 switch (termios->c_cflag & CSIZE) {
2003 case CS5:
Haavard Skinnemoen7192f922006-10-04 16:02:05 +02002004 mode |= ATMEL_US_CHRL_5;
Andrew Victor1e6c9c22006-01-10 16:59:27 +00002005 break;
2006 case CS6:
Haavard Skinnemoen7192f922006-10-04 16:02:05 +02002007 mode |= ATMEL_US_CHRL_6;
Andrew Victor1e6c9c22006-01-10 16:59:27 +00002008 break;
2009 case CS7:
Haavard Skinnemoen7192f922006-10-04 16:02:05 +02002010 mode |= ATMEL_US_CHRL_7;
Andrew Victor1e6c9c22006-01-10 16:59:27 +00002011 break;
2012 default:
Haavard Skinnemoen7192f922006-10-04 16:02:05 +02002013 mode |= ATMEL_US_CHRL_8;
Andrew Victor1e6c9c22006-01-10 16:59:27 +00002014 break;
2015 }
2016
2017 /* stop bits */
2018 if (termios->c_cflag & CSTOPB)
Haavard Skinnemoen7192f922006-10-04 16:02:05 +02002019 mode |= ATMEL_US_NBSTOP_2;
Andrew Victor1e6c9c22006-01-10 16:59:27 +00002020
2021 /* parity */
2022 if (termios->c_cflag & PARENB) {
Remy Bohmerb843aa22008-02-08 04:21:01 -08002023 /* Mark or Space parity */
2024 if (termios->c_cflag & CMSPAR) {
Andrew Victor1e6c9c22006-01-10 16:59:27 +00002025 if (termios->c_cflag & PARODD)
Haavard Skinnemoen7192f922006-10-04 16:02:05 +02002026 mode |= ATMEL_US_PAR_MARK;
Andrew Victor1e6c9c22006-01-10 16:59:27 +00002027 else
Haavard Skinnemoen7192f922006-10-04 16:02:05 +02002028 mode |= ATMEL_US_PAR_SPACE;
Remy Bohmerb843aa22008-02-08 04:21:01 -08002029 } else if (termios->c_cflag & PARODD)
Haavard Skinnemoen7192f922006-10-04 16:02:05 +02002030 mode |= ATMEL_US_PAR_ODD;
Andrew Victor1e6c9c22006-01-10 16:59:27 +00002031 else
Haavard Skinnemoen7192f922006-10-04 16:02:05 +02002032 mode |= ATMEL_US_PAR_EVEN;
Remy Bohmerb843aa22008-02-08 04:21:01 -08002033 } else
Haavard Skinnemoen7192f922006-10-04 16:02:05 +02002034 mode |= ATMEL_US_PAR_NONE;
Andrew Victor1e6c9c22006-01-10 16:59:27 +00002035
2036 spin_lock_irqsave(&port->lock, flags);
2037
Haavard Skinnemoen7192f922006-10-04 16:02:05 +02002038 port->read_status_mask = ATMEL_US_OVRE;
Andrew Victor1e6c9c22006-01-10 16:59:27 +00002039 if (termios->c_iflag & INPCK)
Haavard Skinnemoen7192f922006-10-04 16:02:05 +02002040 port->read_status_mask |= (ATMEL_US_FRAME | ATMEL_US_PARE);
Peter Hurleyef8b9dd2014-06-16 08:10:41 -04002041 if (termios->c_iflag & (IGNBRK | BRKINT | PARMRK))
Haavard Skinnemoen7192f922006-10-04 16:02:05 +02002042 port->read_status_mask |= ATMEL_US_RXBRK;
Andrew Victor1e6c9c22006-01-10 16:59:27 +00002043
Elen Song64e22eb2013-07-22 16:30:24 +08002044 if (atmel_use_pdc_rx(port))
Chip Coldwella6670612008-02-08 04:21:06 -08002045 /* need to enable error interrupts */
Cyrille Pitchen4e7decd2015-07-02 15:18:11 +02002046 atmel_uart_writel(port, ATMEL_US_IER, port->read_status_mask);
Chip Coldwella6670612008-02-08 04:21:06 -08002047
Andrew Victor1e6c9c22006-01-10 16:59:27 +00002048 /*
2049 * Characters to ignore
2050 */
2051 port->ignore_status_mask = 0;
2052 if (termios->c_iflag & IGNPAR)
Haavard Skinnemoen7192f922006-10-04 16:02:05 +02002053 port->ignore_status_mask |= (ATMEL_US_FRAME | ATMEL_US_PARE);
Andrew Victor1e6c9c22006-01-10 16:59:27 +00002054 if (termios->c_iflag & IGNBRK) {
Haavard Skinnemoen7192f922006-10-04 16:02:05 +02002055 port->ignore_status_mask |= ATMEL_US_RXBRK;
Andrew Victor1e6c9c22006-01-10 16:59:27 +00002056 /*
2057 * If we're ignoring parity and break indicators,
2058 * ignore overruns too (for real raw support).
2059 */
2060 if (termios->c_iflag & IGNPAR)
Haavard Skinnemoen7192f922006-10-04 16:02:05 +02002061 port->ignore_status_mask |= ATMEL_US_OVRE;
Andrew Victor1e6c9c22006-01-10 16:59:27 +00002062 }
Remy Bohmerb843aa22008-02-08 04:21:01 -08002063 /* TODO: Ignore all characters if CREAD is set.*/
Andrew Victor1e6c9c22006-01-10 16:59:27 +00002064
2065 /* update the per-port timeout */
2066 uart_update_timeout(port, termios->c_cflag, baud);
2067
Haavard Skinnemoen0ccad872009-06-16 17:02:03 +01002068 /*
2069 * save/disable interrupts. The tty layer will ensure that the
2070 * transmitter is empty if requested by the caller, so there's
2071 * no need to wait for it here.
2072 */
Cyrille Pitchen4e7decd2015-07-02 15:18:11 +02002073 imr = atmel_uart_readl(port, ATMEL_US_IMR);
2074 atmel_uart_writel(port, ATMEL_US_IDR, -1);
Andrew Victor1e6c9c22006-01-10 16:59:27 +00002075
2076 /* disable receiver and transmitter */
Cyrille Pitchen4e7decd2015-07-02 15:18:11 +02002077 atmel_uart_writel(port, ATMEL_US_CR, ATMEL_US_TXDIS | ATMEL_US_RXDIS);
Andrew Victor1e6c9c22006-01-10 16:59:27 +00002078
Cyrille Pitchen1cf6e8f2014-12-09 14:31:35 +01002079 /* mode */
Ricardo Ribalda Delgado13bd3e62014-11-06 09:22:56 +01002080 if (port->rs485.flags & SER_RS485_ENABLED) {
Cyrille Pitchen4e7decd2015-07-02 15:18:11 +02002081 atmel_uart_writel(port, ATMEL_US_TTGR,
2082 port->rs485.delay_rts_after_send);
Claudio Scordinoe8faff72010-05-03 13:31:28 +01002083 mode |= ATMEL_US_USMODE_RS485;
Cyrille Pitchen1cf6e8f2014-12-09 14:31:35 +01002084 } else if (termios->c_cflag & CRTSCTS) {
2085 /* RS232 with hardware handshake (RTS/CTS) */
2086 mode |= ATMEL_US_USMODE_HWHS;
2087 } else {
2088 /* RS232 without hadware handshake */
2089 mode |= ATMEL_US_USMODE_NORMAL;
Claudio Scordinoe8faff72010-05-03 13:31:28 +01002090 }
2091
Cyrille Pitchen1cf6e8f2014-12-09 14:31:35 +01002092 /* set the mode, clock divisor, parity, stop bits and data size */
Cyrille Pitchen4e7decd2015-07-02 15:18:11 +02002093 atmel_uart_writel(port, ATMEL_US_MR, mode);
Andrew Victor1e6c9c22006-01-10 16:59:27 +00002094
Cyrille Pitchen1cf6e8f2014-12-09 14:31:35 +01002095 /*
2096 * when switching the mode, set the RTS line state according to the
2097 * new mode, otherwise keep the former state
2098 */
2099 if ((old_mode & ATMEL_US_USMODE) != (mode & ATMEL_US_USMODE)) {
2100 unsigned int rts_state;
2101
2102 if ((mode & ATMEL_US_USMODE) == ATMEL_US_USMODE_HWHS) {
2103 /* let the hardware control the RTS line */
2104 rts_state = ATMEL_US_RTSDIS;
2105 } else {
2106 /* force RTS line to low level */
2107 rts_state = ATMEL_US_RTSEN;
2108 }
2109
Cyrille Pitchen4e7decd2015-07-02 15:18:11 +02002110 atmel_uart_writel(port, ATMEL_US_CR, rts_state);
Cyrille Pitchen1cf6e8f2014-12-09 14:31:35 +01002111 }
2112
Andrew Victor1e6c9c22006-01-10 16:59:27 +00002113 /* set the baud rate */
Cyrille Pitchen4e7decd2015-07-02 15:18:11 +02002114 atmel_uart_writel(port, ATMEL_US_BRGR, quot);
2115 atmel_uart_writel(port, ATMEL_US_CR, ATMEL_US_RSTSTA | ATMEL_US_RSTRX);
2116 atmel_uart_writel(port, ATMEL_US_CR, ATMEL_US_TXEN | ATMEL_US_RXEN);
Andrew Victor1e6c9c22006-01-10 16:59:27 +00002117
2118 /* restore interrupts */
Cyrille Pitchen4e7decd2015-07-02 15:18:11 +02002119 atmel_uart_writel(port, ATMEL_US_IER, imr);
Andrew Victor1e6c9c22006-01-10 16:59:27 +00002120
2121 /* CTS flow-control and modem-status interrupts */
2122 if (UART_ENABLE_MS(port, termios->c_cflag))
Richard Genoud35b675b2014-09-03 18:09:26 +02002123 atmel_enable_ms(port);
2124 else
2125 atmel_disable_ms(port);
Andrew Victor1e6c9c22006-01-10 16:59:27 +00002126
2127 spin_unlock_irqrestore(&port->lock, flags);
2128}
2129
Peter Hurley732a84a2014-11-05 13:11:43 -05002130static void atmel_set_ldisc(struct uart_port *port, struct ktermios *termios)
Viktar Palstsiuk42bd7a42011-02-09 15:26:13 +01002131{
Peter Hurley732a84a2014-11-05 13:11:43 -05002132 if (termios->c_line == N_PPS) {
Viktar Palstsiuk42bd7a42011-02-09 15:26:13 +01002133 port->flags |= UPF_HARDPPS_CD;
Peter Hurleyd41510c2014-11-05 13:11:44 -05002134 spin_lock_irq(&port->lock);
Viktar Palstsiuk42bd7a42011-02-09 15:26:13 +01002135 atmel_enable_ms(port);
Peter Hurleyd41510c2014-11-05 13:11:44 -05002136 spin_unlock_irq(&port->lock);
Viktar Palstsiuk42bd7a42011-02-09 15:26:13 +01002137 } else {
2138 port->flags &= ~UPF_HARDPPS_CD;
Peter Hurleycab68f82014-11-05 13:11:45 -05002139 if (!UART_ENABLE_MS(port, termios->c_cflag)) {
2140 spin_lock_irq(&port->lock);
2141 atmel_disable_ms(port);
2142 spin_unlock_irq(&port->lock);
2143 }
Viktar Palstsiuk42bd7a42011-02-09 15:26:13 +01002144 }
2145}
2146
Andrew Victor1e6c9c22006-01-10 16:59:27 +00002147/*
2148 * Return string describing the specified port
2149 */
Haavard Skinnemoen7192f922006-10-04 16:02:05 +02002150static const char *atmel_type(struct uart_port *port)
Andrew Victor1e6c9c22006-01-10 16:59:27 +00002151{
Haavard Skinnemoen9ab4f882006-10-04 16:02:06 +02002152 return (port->type == PORT_ATMEL) ? "ATMEL_SERIAL" : NULL;
Andrew Victor1e6c9c22006-01-10 16:59:27 +00002153}
2154
2155/*
2156 * Release the memory region(s) being used by 'port'.
2157 */
Haavard Skinnemoen7192f922006-10-04 16:02:05 +02002158static void atmel_release_port(struct uart_port *port)
Andrew Victor1e6c9c22006-01-10 16:59:27 +00002159{
Andrew Victorafefc412006-06-19 19:53:19 +01002160 struct platform_device *pdev = to_platform_device(port->dev);
2161 int size = pdev->resource[0].end - pdev->resource[0].start + 1;
2162
2163 release_mem_region(port->mapbase, size);
2164
2165 if (port->flags & UPF_IOREMAP) {
2166 iounmap(port->membase);
2167 port->membase = NULL;
2168 }
Andrew Victor1e6c9c22006-01-10 16:59:27 +00002169}
2170
2171/*
2172 * Request the memory region(s) being used by 'port'.
2173 */
Haavard Skinnemoen7192f922006-10-04 16:02:05 +02002174static int atmel_request_port(struct uart_port *port)
Andrew Victor1e6c9c22006-01-10 16:59:27 +00002175{
Andrew Victorafefc412006-06-19 19:53:19 +01002176 struct platform_device *pdev = to_platform_device(port->dev);
2177 int size = pdev->resource[0].end - pdev->resource[0].start + 1;
Andrew Victor1e6c9c22006-01-10 16:59:27 +00002178
Haavard Skinnemoen7192f922006-10-04 16:02:05 +02002179 if (!request_mem_region(port->mapbase, size, "atmel_serial"))
Andrew Victorafefc412006-06-19 19:53:19 +01002180 return -EBUSY;
2181
2182 if (port->flags & UPF_IOREMAP) {
2183 port->membase = ioremap(port->mapbase, size);
2184 if (port->membase == NULL) {
2185 release_mem_region(port->mapbase, size);
2186 return -ENOMEM;
2187 }
2188 }
2189
2190 return 0;
Andrew Victor1e6c9c22006-01-10 16:59:27 +00002191}
2192
2193/*
2194 * Configure/autoconfigure the port.
2195 */
Haavard Skinnemoen7192f922006-10-04 16:02:05 +02002196static void atmel_config_port(struct uart_port *port, int flags)
Andrew Victor1e6c9c22006-01-10 16:59:27 +00002197{
2198 if (flags & UART_CONFIG_TYPE) {
Haavard Skinnemoen9ab4f882006-10-04 16:02:06 +02002199 port->type = PORT_ATMEL;
Haavard Skinnemoen7192f922006-10-04 16:02:05 +02002200 atmel_request_port(port);
Andrew Victor1e6c9c22006-01-10 16:59:27 +00002201 }
2202}
2203
2204/*
2205 * Verify the new serial_struct (for TIOCSSERIAL).
2206 */
Haavard Skinnemoen7192f922006-10-04 16:02:05 +02002207static int atmel_verify_port(struct uart_port *port, struct serial_struct *ser)
Andrew Victor1e6c9c22006-01-10 16:59:27 +00002208{
2209 int ret = 0;
Haavard Skinnemoen9ab4f882006-10-04 16:02:06 +02002210 if (ser->type != PORT_UNKNOWN && ser->type != PORT_ATMEL)
Andrew Victor1e6c9c22006-01-10 16:59:27 +00002211 ret = -EINVAL;
2212 if (port->irq != ser->irq)
2213 ret = -EINVAL;
2214 if (ser->io_type != SERIAL_IO_MEM)
2215 ret = -EINVAL;
2216 if (port->uartclk / 16 != ser->baud_base)
2217 ret = -EINVAL;
Andre Przywara270c2ad2015-10-05 18:00:52 +01002218 if (port->mapbase != (unsigned long)ser->iomem_base)
Andrew Victor1e6c9c22006-01-10 16:59:27 +00002219 ret = -EINVAL;
2220 if (port->iobase != ser->port)
2221 ret = -EINVAL;
2222 if (ser->hub6 != 0)
2223 ret = -EINVAL;
2224 return ret;
2225}
2226
Albin Tonnerre8fe2d542009-12-09 12:31:32 -08002227#ifdef CONFIG_CONSOLE_POLL
2228static int atmel_poll_get_char(struct uart_port *port)
2229{
Cyrille Pitchen4e7decd2015-07-02 15:18:11 +02002230 while (!(atmel_uart_readl(port, ATMEL_US_CSR) & ATMEL_US_RXRDY))
Albin Tonnerre8fe2d542009-12-09 12:31:32 -08002231 cpu_relax();
2232
Cyrille Pitchena6499432015-07-30 16:33:38 +02002233 return atmel_uart_read_char(port);
Albin Tonnerre8fe2d542009-12-09 12:31:32 -08002234}
2235
2236static void atmel_poll_put_char(struct uart_port *port, unsigned char ch)
2237{
Cyrille Pitchen4e7decd2015-07-02 15:18:11 +02002238 while (!(atmel_uart_readl(port, ATMEL_US_CSR) & ATMEL_US_TXRDY))
Albin Tonnerre8fe2d542009-12-09 12:31:32 -08002239 cpu_relax();
2240
Cyrille Pitchena6499432015-07-30 16:33:38 +02002241 atmel_uart_write_char(port, ch);
Albin Tonnerre8fe2d542009-12-09 12:31:32 -08002242}
2243#endif
2244
Haavard Skinnemoen7192f922006-10-04 16:02:05 +02002245static struct uart_ops atmel_pops = {
2246 .tx_empty = atmel_tx_empty,
2247 .set_mctrl = atmel_set_mctrl,
2248 .get_mctrl = atmel_get_mctrl,
2249 .stop_tx = atmel_stop_tx,
2250 .start_tx = atmel_start_tx,
2251 .stop_rx = atmel_stop_rx,
2252 .enable_ms = atmel_enable_ms,
2253 .break_ctl = atmel_break_ctl,
2254 .startup = atmel_startup,
2255 .shutdown = atmel_shutdown,
Haavard Skinnemoen9afd5612008-07-16 21:52:46 +01002256 .flush_buffer = atmel_flush_buffer,
Haavard Skinnemoen7192f922006-10-04 16:02:05 +02002257 .set_termios = atmel_set_termios,
Viktar Palstsiuk42bd7a42011-02-09 15:26:13 +01002258 .set_ldisc = atmel_set_ldisc,
Haavard Skinnemoen7192f922006-10-04 16:02:05 +02002259 .type = atmel_type,
2260 .release_port = atmel_release_port,
2261 .request_port = atmel_request_port,
2262 .config_port = atmel_config_port,
2263 .verify_port = atmel_verify_port,
2264 .pm = atmel_serial_pm,
Albin Tonnerre8fe2d542009-12-09 12:31:32 -08002265#ifdef CONFIG_CONSOLE_POLL
2266 .poll_get_char = atmel_poll_get_char,
2267 .poll_put_char = atmel_poll_put_char,
2268#endif
Andrew Victor1e6c9c22006-01-10 16:59:27 +00002269};
2270
Andrew Victorafefc412006-06-19 19:53:19 +01002271/*
2272 * Configure the port from the platform device resource info.
2273 */
Boris BREZILLON91f8c2d2013-06-19 13:17:30 +02002274static int atmel_init_port(struct atmel_uart_port *atmel_port,
Remy Bohmerb843aa22008-02-08 04:21:01 -08002275 struct platform_device *pdev)
Andrew Victor1e6c9c22006-01-10 16:59:27 +00002276{
Boris BREZILLON91f8c2d2013-06-19 13:17:30 +02002277 int ret;
Haavard Skinnemoen7192f922006-10-04 16:02:05 +02002278 struct uart_port *port = &atmel_port->uart;
Jingoo Han574de552013-07-30 17:06:57 +09002279 struct atmel_uart_data *pdata = dev_get_platdata(&pdev->dev);
Andrew Victor1e6c9c22006-01-10 16:59:27 +00002280
Leilei Zhao4a1e8882015-02-27 16:07:16 +08002281 atmel_init_property(atmel_port, pdev);
2282 atmel_set_ops(port);
Andrew Victor1e6c9c22006-01-10 16:59:27 +00002283
Ricardo Ribalda Delgado13bd3e62014-11-06 09:22:56 +01002284 atmel_init_rs485(port, pdev);
Elen Songa930e522013-07-22 16:30:25 +08002285
Claudio Scordinoe8faff72010-05-03 13:31:28 +01002286 port->iotype = UPIO_MEM;
2287 port->flags = UPF_BOOT_AUTOCONF;
2288 port->ops = &atmel_pops;
2289 port->fifosize = 1;
Claudio Scordinoe8faff72010-05-03 13:31:28 +01002290 port->dev = &pdev->dev;
Andrew Victorafefc412006-06-19 19:53:19 +01002291 port->mapbase = pdev->resource[0].start;
2292 port->irq = pdev->resource[1].start;
Ricardo Ribalda Delgado13bd3e62014-11-06 09:22:56 +01002293 port->rs485_config = atmel_config_rs485;
Andrew Victorafefc412006-06-19 19:53:19 +01002294
Remy Bohmer1ecc26b2008-02-08 04:21:05 -08002295 tasklet_init(&atmel_port->tasklet, atmel_tasklet_func,
2296 (unsigned long)port);
Leilei Zhao1e125782015-02-27 16:07:18 +08002297 tasklet_disable(&atmel_port->tasklet);
Remy Bohmer1ecc26b2008-02-08 04:21:05 -08002298
2299 memset(&atmel_port->rx_ring, 0, sizeof(atmel_port->rx_ring));
2300
Nicolas Ferre5fbe46b2011-10-12 18:07:00 +02002301 if (pdata && pdata->regs) {
Haavard Skinnemoen75d35212006-10-04 16:02:08 +02002302 /* Already mapped by setup code */
Nicolas Ferre1acfc7e2011-10-12 18:06:57 +02002303 port->membase = pdata->regs;
Nicolas Ferre588edbf2011-10-12 18:06:58 +02002304 } else {
Andrew Victorafefc412006-06-19 19:53:19 +01002305 port->flags |= UPF_IOREMAP;
2306 port->membase = NULL;
2307 }
2308
Remy Bohmerb843aa22008-02-08 04:21:01 -08002309 /* for console, the clock could already be configured */
2310 if (!atmel_port->clk) {
Haavard Skinnemoen7192f922006-10-04 16:02:05 +02002311 atmel_port->clk = clk_get(&pdev->dev, "usart");
Boris BREZILLON91f8c2d2013-06-19 13:17:30 +02002312 if (IS_ERR(atmel_port->clk)) {
2313 ret = PTR_ERR(atmel_port->clk);
2314 atmel_port->clk = NULL;
2315 return ret;
2316 }
2317 ret = clk_prepare_enable(atmel_port->clk);
2318 if (ret) {
2319 clk_put(atmel_port->clk);
2320 atmel_port->clk = NULL;
2321 return ret;
2322 }
Haavard Skinnemoen7192f922006-10-04 16:02:05 +02002323 port->uartclk = clk_get_rate(atmel_port->clk);
Boris BREZILLON91f8c2d2013-06-19 13:17:30 +02002324 clk_disable_unprepare(atmel_port->clk);
David Brownell06a7f052008-11-06 12:53:40 -08002325 /* only enable clock when USART is in use */
Andrew Victorafefc412006-06-19 19:53:19 +01002326 }
Chip Coldwella6670612008-02-08 04:21:06 -08002327
Claudio Scordinoe8faff72010-05-03 13:31:28 +01002328 /* Use TXEMPTY for interrupt when rs485 else TXRDY or ENDTX|TXBUFE */
Ricardo Ribalda Delgado13bd3e62014-11-06 09:22:56 +01002329 if (port->rs485.flags & SER_RS485_ENABLED)
Claudio Scordinoe8faff72010-05-03 13:31:28 +01002330 atmel_port->tx_done_mask = ATMEL_US_TXEMPTY;
Elen Song64e22eb2013-07-22 16:30:24 +08002331 else if (atmel_use_pdc_tx(port)) {
Chip Coldwella6670612008-02-08 04:21:06 -08002332 port->fifosize = PDC_BUFFER_SIZE;
Claudio Scordinoe8faff72010-05-03 13:31:28 +01002333 atmel_port->tx_done_mask = ATMEL_US_ENDTX | ATMEL_US_TXBUFE;
2334 } else {
2335 atmel_port->tx_done_mask = ATMEL_US_TXRDY;
2336 }
Boris BREZILLON91f8c2d2013-06-19 13:17:30 +02002337
2338 return 0;
Andrew Victor1e6c9c22006-01-10 16:59:27 +00002339}
2340
Jean-Christophe PLAGNIOL-VILLARD69f6a272012-02-16 00:24:07 +08002341struct platform_device *atmel_default_console_device; /* the serial console device */
2342
Haavard Skinnemoen749c4e62006-10-04 16:02:02 +02002343#ifdef CONFIG_SERIAL_ATMEL_CONSOLE
Haavard Skinnemoen7192f922006-10-04 16:02:05 +02002344static void atmel_console_putchar(struct uart_port *port, int ch)
Russell Kingd3587882006-03-20 20:00:09 +00002345{
Cyrille Pitchen4e7decd2015-07-02 15:18:11 +02002346 while (!(atmel_uart_readl(port, ATMEL_US_CSR) & ATMEL_US_TXRDY))
Haavard Skinnemoen829dd812008-02-08 04:21:02 -08002347 cpu_relax();
Cyrille Pitchena6499432015-07-30 16:33:38 +02002348 atmel_uart_write_char(port, ch);
Russell Kingd3587882006-03-20 20:00:09 +00002349}
Andrew Victor1e6c9c22006-01-10 16:59:27 +00002350
2351/*
2352 * Interrupts are disabled on entering
2353 */
Haavard Skinnemoen7192f922006-10-04 16:02:05 +02002354static void atmel_console_write(struct console *co, const char *s, u_int count)
Andrew Victor1e6c9c22006-01-10 16:59:27 +00002355{
Haavard Skinnemoen7192f922006-10-04 16:02:05 +02002356 struct uart_port *port = &atmel_ports[co->index].uart;
Claudio Scordinoe8faff72010-05-03 13:31:28 +01002357 struct atmel_uart_port *atmel_port = to_atmel_uart_port(port);
Russell Kingd3587882006-03-20 20:00:09 +00002358 unsigned int status, imr;
Marc Pignat39d4c922008-04-02 13:04:42 -07002359 unsigned int pdc_tx;
Andrew Victor1e6c9c22006-01-10 16:59:27 +00002360
2361 /*
Remy Bohmerb843aa22008-02-08 04:21:01 -08002362 * First, save IMR and then disable interrupts
Andrew Victor1e6c9c22006-01-10 16:59:27 +00002363 */
Cyrille Pitchen4e7decd2015-07-02 15:18:11 +02002364 imr = atmel_uart_readl(port, ATMEL_US_IMR);
2365 atmel_uart_writel(port, ATMEL_US_IDR,
2366 ATMEL_US_RXRDY | atmel_port->tx_done_mask);
Andrew Victor1e6c9c22006-01-10 16:59:27 +00002367
Marc Pignat39d4c922008-04-02 13:04:42 -07002368 /* Store PDC transmit status and disable it */
Cyrille Pitchen4e7decd2015-07-02 15:18:11 +02002369 pdc_tx = atmel_uart_readl(port, ATMEL_PDC_PTSR) & ATMEL_PDC_TXTEN;
2370 atmel_uart_writel(port, ATMEL_PDC_PTCR, ATMEL_PDC_TXTDIS);
Marc Pignat39d4c922008-04-02 13:04:42 -07002371
Haavard Skinnemoen7192f922006-10-04 16:02:05 +02002372 uart_console_write(port, s, count, atmel_console_putchar);
Andrew Victor1e6c9c22006-01-10 16:59:27 +00002373
2374 /*
Remy Bohmerb843aa22008-02-08 04:21:01 -08002375 * Finally, wait for transmitter to become empty
2376 * and restore IMR
Andrew Victor1e6c9c22006-01-10 16:59:27 +00002377 */
2378 do {
Cyrille Pitchen4e7decd2015-07-02 15:18:11 +02002379 status = atmel_uart_readl(port, ATMEL_US_CSR);
Haavard Skinnemoen7192f922006-10-04 16:02:05 +02002380 } while (!(status & ATMEL_US_TXRDY));
Marc Pignat39d4c922008-04-02 13:04:42 -07002381
2382 /* Restore PDC transmit status */
2383 if (pdc_tx)
Cyrille Pitchen4e7decd2015-07-02 15:18:11 +02002384 atmel_uart_writel(port, ATMEL_PDC_PTCR, ATMEL_PDC_TXTEN);
Marc Pignat39d4c922008-04-02 13:04:42 -07002385
Remy Bohmerb843aa22008-02-08 04:21:01 -08002386 /* set interrupts back the way they were */
Cyrille Pitchen4e7decd2015-07-02 15:18:11 +02002387 atmel_uart_writel(port, ATMEL_US_IER, imr);
Andrew Victor1e6c9c22006-01-10 16:59:27 +00002388}
2389
2390/*
Remy Bohmerb843aa22008-02-08 04:21:01 -08002391 * If the port was already initialised (eg, by a boot loader),
2392 * try to determine the current setup.
Andrew Victor1e6c9c22006-01-10 16:59:27 +00002393 */
Remy Bohmerb843aa22008-02-08 04:21:01 -08002394static void __init atmel_console_get_options(struct uart_port *port, int *baud,
2395 int *parity, int *bits)
Andrew Victor1e6c9c22006-01-10 16:59:27 +00002396{
2397 unsigned int mr, quot;
2398
Haavard Skinnemoen1c0fd822008-02-08 04:21:03 -08002399 /*
2400 * If the baud rate generator isn't running, the port wasn't
2401 * initialized by the boot loader.
2402 */
Cyrille Pitchen4e7decd2015-07-02 15:18:11 +02002403 quot = atmel_uart_readl(port, ATMEL_US_BRGR) & ATMEL_US_CD;
Haavard Skinnemoen1c0fd822008-02-08 04:21:03 -08002404 if (!quot)
2405 return;
Andrew Victor1e6c9c22006-01-10 16:59:27 +00002406
Cyrille Pitchen4e7decd2015-07-02 15:18:11 +02002407 mr = atmel_uart_readl(port, ATMEL_US_MR) & ATMEL_US_CHRL;
Haavard Skinnemoen7192f922006-10-04 16:02:05 +02002408 if (mr == ATMEL_US_CHRL_8)
Andrew Victor1e6c9c22006-01-10 16:59:27 +00002409 *bits = 8;
2410 else
2411 *bits = 7;
2412
Cyrille Pitchen4e7decd2015-07-02 15:18:11 +02002413 mr = atmel_uart_readl(port, ATMEL_US_MR) & ATMEL_US_PAR;
Haavard Skinnemoen7192f922006-10-04 16:02:05 +02002414 if (mr == ATMEL_US_PAR_EVEN)
Andrew Victor1e6c9c22006-01-10 16:59:27 +00002415 *parity = 'e';
Haavard Skinnemoen7192f922006-10-04 16:02:05 +02002416 else if (mr == ATMEL_US_PAR_ODD)
Andrew Victor1e6c9c22006-01-10 16:59:27 +00002417 *parity = 'o';
2418
Haavard Skinnemoen4d5e3922006-10-04 16:02:11 +02002419 /*
2420 * The serial core only rounds down when matching this to a
2421 * supported baud rate. Make sure we don't end up slightly
2422 * lower than one of those, as it would make us fall through
2423 * to a much lower baud rate than we really want.
2424 */
Haavard Skinnemoen4d5e3922006-10-04 16:02:11 +02002425 *baud = port->uartclk / (16 * (quot - 1));
Andrew Victor1e6c9c22006-01-10 16:59:27 +00002426}
2427
Haavard Skinnemoen7192f922006-10-04 16:02:05 +02002428static int __init atmel_console_setup(struct console *co, char *options)
Andrew Victor1e6c9c22006-01-10 16:59:27 +00002429{
Boris BREZILLON91f8c2d2013-06-19 13:17:30 +02002430 int ret;
Haavard Skinnemoen7192f922006-10-04 16:02:05 +02002431 struct uart_port *port = &atmel_ports[co->index].uart;
Andrew Victor1e6c9c22006-01-10 16:59:27 +00002432 int baud = 115200;
2433 int bits = 8;
2434 int parity = 'n';
2435 int flow = 'n';
2436
Remy Bohmerb843aa22008-02-08 04:21:01 -08002437 if (port->membase == NULL) {
2438 /* Port not initialized yet - delay setup */
Andrew Victorafefc412006-06-19 19:53:19 +01002439 return -ENODEV;
Remy Bohmerb843aa22008-02-08 04:21:01 -08002440 }
Andrew Victor1e6c9c22006-01-10 16:59:27 +00002441
Boris BREZILLON91f8c2d2013-06-19 13:17:30 +02002442 ret = clk_prepare_enable(atmel_ports[co->index].clk);
2443 if (ret)
2444 return ret;
David Brownell06a7f052008-11-06 12:53:40 -08002445
Cyrille Pitchen4e7decd2015-07-02 15:18:11 +02002446 atmel_uart_writel(port, ATMEL_US_IDR, -1);
2447 atmel_uart_writel(port, ATMEL_US_CR, ATMEL_US_RSTSTA | ATMEL_US_RSTRX);
2448 atmel_uart_writel(port, ATMEL_US_CR, ATMEL_US_TXEN | ATMEL_US_RXEN);
Andrew Victor1e6c9c22006-01-10 16:59:27 +00002449
2450 if (options)
2451 uart_parse_options(options, &baud, &parity, &bits, &flow);
2452 else
Haavard Skinnemoen7192f922006-10-04 16:02:05 +02002453 atmel_console_get_options(port, &baud, &parity, &bits);
Andrew Victor1e6c9c22006-01-10 16:59:27 +00002454
2455 return uart_set_options(port, co, baud, parity, bits, flow);
2456}
2457
Haavard Skinnemoen7192f922006-10-04 16:02:05 +02002458static struct uart_driver atmel_uart;
Andrew Victor1e6c9c22006-01-10 16:59:27 +00002459
Haavard Skinnemoen7192f922006-10-04 16:02:05 +02002460static struct console atmel_console = {
2461 .name = ATMEL_DEVICENAME,
2462 .write = atmel_console_write,
Andrew Victor1e6c9c22006-01-10 16:59:27 +00002463 .device = uart_console_device,
Haavard Skinnemoen7192f922006-10-04 16:02:05 +02002464 .setup = atmel_console_setup,
Andrew Victor1e6c9c22006-01-10 16:59:27 +00002465 .flags = CON_PRINTBUFFER,
2466 .index = -1,
Haavard Skinnemoen7192f922006-10-04 16:02:05 +02002467 .data = &atmel_uart,
Andrew Victor1e6c9c22006-01-10 16:59:27 +00002468};
2469
David Brownell06a7f052008-11-06 12:53:40 -08002470#define ATMEL_CONSOLE_DEVICE (&atmel_console)
Andrew Victor1e6c9c22006-01-10 16:59:27 +00002471
Andrew Victorafefc412006-06-19 19:53:19 +01002472/*
2473 * Early console initialization (before VM subsystem initialized).
2474 */
Haavard Skinnemoen7192f922006-10-04 16:02:05 +02002475static int __init atmel_console_init(void)
Andrew Victor1e6c9c22006-01-10 16:59:27 +00002476{
Boris BREZILLON91f8c2d2013-06-19 13:17:30 +02002477 int ret;
Haavard Skinnemoen73e27982006-10-04 16:02:04 +02002478 if (atmel_default_console_device) {
Voss, Nikolaus0d0a3cc2011-08-10 14:02:29 +02002479 struct atmel_uart_data *pdata =
Jingoo Han574de552013-07-30 17:06:57 +09002480 dev_get_platdata(&atmel_default_console_device->dev);
Linus Torvaldsefb8d212011-10-26 15:11:09 +02002481 int id = pdata->num;
Jaeden Amerob78cd162016-01-26 12:34:49 +01002482 struct atmel_uart_port *atmel_port = &atmel_ports[id];
Voss, Nikolaus0d0a3cc2011-08-10 14:02:29 +02002483
Jaeden Amerob78cd162016-01-26 12:34:49 +01002484 atmel_port->backup_imr = 0;
2485 atmel_port->uart.line = id;
Nicolas Ferre4cbf9f42011-10-12 18:06:59 +02002486
2487 add_preferred_console(ATMEL_DEVICENAME, id, NULL);
Jaeden Amerob78cd162016-01-26 12:34:49 +01002488 ret = atmel_init_port(atmel_port, atmel_default_console_device);
Boris BREZILLON91f8c2d2013-06-19 13:17:30 +02002489 if (ret)
2490 return ret;
Haavard Skinnemoen7192f922006-10-04 16:02:05 +02002491 register_console(&atmel_console);
Andrew Victorafefc412006-06-19 19:53:19 +01002492 }
Andrew Victor1e6c9c22006-01-10 16:59:27 +00002493
Andrew Victor1e6c9c22006-01-10 16:59:27 +00002494 return 0;
2495}
Remy Bohmerb843aa22008-02-08 04:21:01 -08002496
Haavard Skinnemoen7192f922006-10-04 16:02:05 +02002497console_initcall(atmel_console_init);
Andrew Victor1e6c9c22006-01-10 16:59:27 +00002498
Andrew Victorafefc412006-06-19 19:53:19 +01002499/*
2500 * Late console initialization.
2501 */
Haavard Skinnemoen7192f922006-10-04 16:02:05 +02002502static int __init atmel_late_console_init(void)
Andrew Victorafefc412006-06-19 19:53:19 +01002503{
Remy Bohmerb843aa22008-02-08 04:21:01 -08002504 if (atmel_default_console_device
2505 && !(atmel_console.flags & CON_ENABLED))
Haavard Skinnemoen7192f922006-10-04 16:02:05 +02002506 register_console(&atmel_console);
Andrew Victorafefc412006-06-19 19:53:19 +01002507
2508 return 0;
2509}
Remy Bohmerb843aa22008-02-08 04:21:01 -08002510
Haavard Skinnemoen7192f922006-10-04 16:02:05 +02002511core_initcall(atmel_late_console_init);
Andrew Victorafefc412006-06-19 19:53:19 +01002512
Haavard Skinnemoendfa7f342008-02-08 04:21:04 -08002513static inline bool atmel_is_console_port(struct uart_port *port)
2514{
2515 return port->cons && port->cons->index == port->line;
2516}
2517
Andrew Victor1e6c9c22006-01-10 16:59:27 +00002518#else
Haavard Skinnemoen7192f922006-10-04 16:02:05 +02002519#define ATMEL_CONSOLE_DEVICE NULL
Haavard Skinnemoendfa7f342008-02-08 04:21:04 -08002520
2521static inline bool atmel_is_console_port(struct uart_port *port)
2522{
2523 return false;
2524}
Andrew Victor1e6c9c22006-01-10 16:59:27 +00002525#endif
2526
Haavard Skinnemoen7192f922006-10-04 16:02:05 +02002527static struct uart_driver atmel_uart = {
Remy Bohmerb843aa22008-02-08 04:21:01 -08002528 .owner = THIS_MODULE,
2529 .driver_name = "atmel_serial",
2530 .dev_name = ATMEL_DEVICENAME,
2531 .major = SERIAL_ATMEL_MAJOR,
2532 .minor = MINOR_START,
2533 .nr = ATMEL_MAX_UART,
2534 .cons = ATMEL_CONSOLE_DEVICE,
Andrew Victor1e6c9c22006-01-10 16:59:27 +00002535};
2536
Andrew Victorafefc412006-06-19 19:53:19 +01002537#ifdef CONFIG_PM
Haavard Skinnemoenf826caa2008-02-24 14:34:45 +01002538static bool atmel_serial_clk_will_stop(void)
2539{
2540#ifdef CONFIG_ARCH_AT91
2541 return at91_suspend_entering_slow_clock();
2542#else
2543 return false;
2544#endif
2545}
2546
Remy Bohmerb843aa22008-02-08 04:21:01 -08002547static int atmel_serial_suspend(struct platform_device *pdev,
2548 pm_message_t state)
Andrew Victor1e6c9c22006-01-10 16:59:27 +00002549{
Andrew Victorafefc412006-06-19 19:53:19 +01002550 struct uart_port *port = platform_get_drvdata(pdev);
Haavard Skinnemoenc811ab82008-02-08 04:21:08 -08002551 struct atmel_uart_port *atmel_port = to_atmel_uart_port(port);
Andrew Victor1e6c9c22006-01-10 16:59:27 +00002552
Haavard Skinnemoene1c609e2008-03-14 14:54:13 +01002553 if (atmel_is_console_port(port) && console_suspend_enabled) {
2554 /* Drain the TX shifter */
Cyrille Pitchen4e7decd2015-07-02 15:18:11 +02002555 while (!(atmel_uart_readl(port, ATMEL_US_CSR) &
2556 ATMEL_US_TXEMPTY))
Haavard Skinnemoene1c609e2008-03-14 14:54:13 +01002557 cpu_relax();
2558 }
2559
Anti Sullinf05596d2008-09-22 13:57:54 -07002560 /* we can not wake up if we're running on slow clock */
2561 atmel_port->may_wakeup = device_may_wakeup(&pdev->dev);
Boris BREZILLON2c7af5b2015-03-02 10:18:18 +01002562 if (atmel_serial_clk_will_stop()) {
2563 unsigned long flags;
2564
2565 spin_lock_irqsave(&atmel_port->lock_suspended, flags);
2566 atmel_port->suspended = true;
2567 spin_unlock_irqrestore(&atmel_port->lock_suspended, flags);
Anti Sullinf05596d2008-09-22 13:57:54 -07002568 device_set_wakeup_enable(&pdev->dev, 0);
Boris BREZILLON2c7af5b2015-03-02 10:18:18 +01002569 }
Anti Sullinf05596d2008-09-22 13:57:54 -07002570
2571 uart_suspend_port(&atmel_uart, port);
Andrew Victor1e6c9c22006-01-10 16:59:27 +00002572
2573 return 0;
2574}
2575
Haavard Skinnemoen7192f922006-10-04 16:02:05 +02002576static int atmel_serial_resume(struct platform_device *pdev)
Andrew Victorafefc412006-06-19 19:53:19 +01002577{
2578 struct uart_port *port = platform_get_drvdata(pdev);
Haavard Skinnemoenc811ab82008-02-08 04:21:08 -08002579 struct atmel_uart_port *atmel_port = to_atmel_uart_port(port);
Boris BREZILLON2c7af5b2015-03-02 10:18:18 +01002580 unsigned long flags;
2581
2582 spin_lock_irqsave(&atmel_port->lock_suspended, flags);
2583 if (atmel_port->pending) {
2584 atmel_handle_receive(port, atmel_port->pending);
2585 atmel_handle_status(port, atmel_port->pending,
2586 atmel_port->pending_status);
2587 atmel_handle_transmit(port, atmel_port->pending);
2588 atmel_port->pending = 0;
2589 }
2590 atmel_port->suspended = false;
2591 spin_unlock_irqrestore(&atmel_port->lock_suspended, flags);
Andrew Victorafefc412006-06-19 19:53:19 +01002592
Anti Sullinf05596d2008-09-22 13:57:54 -07002593 uart_resume_port(&atmel_uart, port);
2594 device_set_wakeup_enable(&pdev->dev, atmel_port->may_wakeup);
Andrew Victorafefc412006-06-19 19:53:19 +01002595
2596 return 0;
2597}
2598#else
Haavard Skinnemoen7192f922006-10-04 16:02:05 +02002599#define atmel_serial_suspend NULL
2600#define atmel_serial_resume NULL
Andrew Victorafefc412006-06-19 19:53:19 +01002601#endif
2602
Jaeden Amerob78cd162016-01-26 12:34:49 +01002603static void atmel_serial_probe_fifos(struct atmel_uart_port *atmel_port,
Cyrille Pitchenb5199d42015-07-02 15:18:12 +02002604 struct platform_device *pdev)
2605{
Jaeden Amerob78cd162016-01-26 12:34:49 +01002606 atmel_port->fifo_size = 0;
2607 atmel_port->rts_low = 0;
2608 atmel_port->rts_high = 0;
Cyrille Pitchenb5199d42015-07-02 15:18:12 +02002609
2610 if (of_property_read_u32(pdev->dev.of_node,
2611 "atmel,fifo-size",
Jaeden Amerob78cd162016-01-26 12:34:49 +01002612 &atmel_port->fifo_size))
Cyrille Pitchenb5199d42015-07-02 15:18:12 +02002613 return;
2614
Jaeden Amerob78cd162016-01-26 12:34:49 +01002615 if (!atmel_port->fifo_size)
Cyrille Pitchenb5199d42015-07-02 15:18:12 +02002616 return;
2617
Jaeden Amerob78cd162016-01-26 12:34:49 +01002618 if (atmel_port->fifo_size < ATMEL_MIN_FIFO_SIZE) {
2619 atmel_port->fifo_size = 0;
Cyrille Pitchenb5199d42015-07-02 15:18:12 +02002620 dev_err(&pdev->dev, "Invalid FIFO size\n");
2621 return;
2622 }
2623
2624 /*
2625 * 0 <= rts_low <= rts_high <= fifo_size
2626 * Once their CTS line asserted by the remote peer, some x86 UARTs tend
2627 * to flush their internal TX FIFO, commonly up to 16 data, before
2628 * actually stopping to send new data. So we try to set the RTS High
2629 * Threshold to a reasonably high value respecting this 16 data
2630 * empirical rule when possible.
2631 */
Jaeden Amerob78cd162016-01-26 12:34:49 +01002632 atmel_port->rts_high = max_t(int, atmel_port->fifo_size >> 1,
2633 atmel_port->fifo_size - ATMEL_RTS_HIGH_OFFSET);
2634 atmel_port->rts_low = max_t(int, atmel_port->fifo_size >> 2,
2635 atmel_port->fifo_size - ATMEL_RTS_LOW_OFFSET);
Cyrille Pitchenb5199d42015-07-02 15:18:12 +02002636
2637 dev_info(&pdev->dev, "Using FIFO (%u data)\n",
Jaeden Amerob78cd162016-01-26 12:34:49 +01002638 atmel_port->fifo_size);
Cyrille Pitchenb5199d42015-07-02 15:18:12 +02002639 dev_dbg(&pdev->dev, "RTS High Threshold : %2u data\n",
Jaeden Amerob78cd162016-01-26 12:34:49 +01002640 atmel_port->rts_high);
Cyrille Pitchenb5199d42015-07-02 15:18:12 +02002641 dev_dbg(&pdev->dev, "RTS Low Threshold : %2u data\n",
Jaeden Amerob78cd162016-01-26 12:34:49 +01002642 atmel_port->rts_low);
Cyrille Pitchenb5199d42015-07-02 15:18:12 +02002643}
2644
Bill Pemberton9671f092012-11-19 13:21:50 -05002645static int atmel_serial_probe(struct platform_device *pdev)
Andrew Victorafefc412006-06-19 19:53:19 +01002646{
Jaeden Amerob78cd162016-01-26 12:34:49 +01002647 struct atmel_uart_port *atmel_port;
Nicolas Ferre5fbe46b2011-10-12 18:07:00 +02002648 struct device_node *np = pdev->dev.of_node;
Jingoo Han574de552013-07-30 17:06:57 +09002649 struct atmel_uart_data *pdata = dev_get_platdata(&pdev->dev);
Remy Bohmer1ecc26b2008-02-08 04:21:05 -08002650 void *data;
Nicolas Ferre4cbf9f42011-10-12 18:06:59 +02002651 int ret = -ENODEV;
Ricardo Ribalda Delgadobd737f82014-11-06 09:23:00 +01002652 bool rs485_enabled;
Andrew Victorafefc412006-06-19 19:53:19 +01002653
Haavard Skinnemoen9d09daf2009-10-26 16:50:02 -07002654 BUILD_BUG_ON(ATMEL_SERIAL_RINGSIZE & (ATMEL_SERIAL_RINGSIZE - 1));
Remy Bohmer1ecc26b2008-02-08 04:21:05 -08002655
Nicolas Ferre5fbe46b2011-10-12 18:07:00 +02002656 if (np)
2657 ret = of_alias_get_id(np, "serial");
2658 else
2659 if (pdata)
2660 ret = pdata->num;
Nicolas Ferre4cbf9f42011-10-12 18:06:59 +02002661
2662 if (ret < 0)
Nicolas Ferre5fbe46b2011-10-12 18:07:00 +02002663 /* port id not found in platform data nor device-tree aliases:
Nicolas Ferre4cbf9f42011-10-12 18:06:59 +02002664 * auto-enumerate it */
Pawel Wieczorkiewicz503bded2013-02-20 17:26:20 +01002665 ret = find_first_zero_bit(atmel_ports_in_use, ATMEL_MAX_UART);
Nicolas Ferre4cbf9f42011-10-12 18:06:59 +02002666
Pawel Wieczorkiewicz503bded2013-02-20 17:26:20 +01002667 if (ret >= ATMEL_MAX_UART) {
Nicolas Ferre4cbf9f42011-10-12 18:06:59 +02002668 ret = -ENODEV;
2669 goto err;
2670 }
2671
Pawel Wieczorkiewicz503bded2013-02-20 17:26:20 +01002672 if (test_and_set_bit(ret, atmel_ports_in_use)) {
Nicolas Ferre4cbf9f42011-10-12 18:06:59 +02002673 /* port already in use */
2674 ret = -EBUSY;
2675 goto err;
2676 }
2677
Jaeden Amerob78cd162016-01-26 12:34:49 +01002678 atmel_port = &atmel_ports[ret];
2679 atmel_port->backup_imr = 0;
2680 atmel_port->uart.line = ret;
2681 atmel_serial_probe_fifos(atmel_port, pdev);
Linus Walleij354e57f2013-11-07 10:25:55 +01002682
Jaeden Amerob78cd162016-01-26 12:34:49 +01002683 spin_lock_init(&atmel_port->lock_suspended);
Boris BREZILLON2c7af5b2015-03-02 10:18:18 +01002684
Jaeden Amerob78cd162016-01-26 12:34:49 +01002685 ret = atmel_init_port(atmel_port, pdev);
Boris BREZILLON91f8c2d2013-06-19 13:17:30 +02002686 if (ret)
Cyrille Pitchen6fbb9bd2014-12-09 14:31:34 +01002687 goto err_clear_bit;
Andrew Victorafefc412006-06-19 19:53:19 +01002688
Jaeden Amerob78cd162016-01-26 12:34:49 +01002689 atmel_port->gpios = mctrl_gpio_init(&atmel_port->uart, 0);
2690 if (IS_ERR(atmel_port->gpios)) {
2691 ret = PTR_ERR(atmel_port->gpios);
Uwe Kleine-König18dfef92015-10-18 21:34:45 +02002692 goto err_clear_bit;
2693 }
2694
Jaeden Amerob78cd162016-01-26 12:34:49 +01002695 if (!atmel_use_pdc_rx(&atmel_port->uart)) {
Chip Coldwella6670612008-02-08 04:21:06 -08002696 ret = -ENOMEM;
Haavard Skinnemoen64334712008-02-08 04:21:07 -08002697 data = kmalloc(sizeof(struct atmel_uart_char)
2698 * ATMEL_SERIAL_RINGSIZE, GFP_KERNEL);
Chip Coldwella6670612008-02-08 04:21:06 -08002699 if (!data)
2700 goto err_alloc_ring;
Jaeden Amerob78cd162016-01-26 12:34:49 +01002701 atmel_port->rx_ring.buf = data;
Chip Coldwella6670612008-02-08 04:21:06 -08002702 }
Remy Bohmer1ecc26b2008-02-08 04:21:05 -08002703
Jaeden Amerob78cd162016-01-26 12:34:49 +01002704 rs485_enabled = atmel_port->uart.rs485.flags & SER_RS485_ENABLED;
Ricardo Ribalda Delgadobd737f82014-11-06 09:23:00 +01002705
Jaeden Amerob78cd162016-01-26 12:34:49 +01002706 ret = uart_add_one_port(&atmel_uart, &atmel_port->uart);
Haavard Skinnemoendfa7f342008-02-08 04:21:04 -08002707 if (ret)
2708 goto err_add_port;
2709
Albin Tonnerre8da14b52009-07-29 15:04:18 -07002710#ifdef CONFIG_SERIAL_ATMEL_CONSOLE
Jaeden Amerob78cd162016-01-26 12:34:49 +01002711 if (atmel_is_console_port(&atmel_port->uart)
David Brownell06a7f052008-11-06 12:53:40 -08002712 && ATMEL_CONSOLE_DEVICE->flags & CON_ENABLED) {
2713 /*
2714 * The serial core enabled the clock for us, so undo
Boris BREZILLON91f8c2d2013-06-19 13:17:30 +02002715 * the clk_prepare_enable() in atmel_console_setup()
David Brownell06a7f052008-11-06 12:53:40 -08002716 */
Jaeden Amerob78cd162016-01-26 12:34:49 +01002717 clk_disable_unprepare(atmel_port->clk);
David Brownell06a7f052008-11-06 12:53:40 -08002718 }
Albin Tonnerre8da14b52009-07-29 15:04:18 -07002719#endif
David Brownell06a7f052008-11-06 12:53:40 -08002720
Haavard Skinnemoendfa7f342008-02-08 04:21:04 -08002721 device_init_wakeup(&pdev->dev, 1);
Jaeden Amerob78cd162016-01-26 12:34:49 +01002722 platform_set_drvdata(pdev, atmel_port);
Haavard Skinnemoendfa7f342008-02-08 04:21:04 -08002723
Cyrille Pitchend4f64182014-12-09 14:31:33 +01002724 /*
2725 * The peripheral clock has been disabled by atmel_init_port():
2726 * enable it before accessing I/O registers
2727 */
Jaeden Amerob78cd162016-01-26 12:34:49 +01002728 clk_prepare_enable(atmel_port->clk);
Cyrille Pitchend4f64182014-12-09 14:31:33 +01002729
Ricardo Ribalda Delgadobd737f82014-11-06 09:23:00 +01002730 if (rs485_enabled) {
Jaeden Amerob78cd162016-01-26 12:34:49 +01002731 atmel_uart_writel(&atmel_port->uart, ATMEL_US_MR,
Cyrille Pitchen4e7decd2015-07-02 15:18:11 +02002732 ATMEL_US_USMODE_NORMAL);
Jaeden Amerob78cd162016-01-26 12:34:49 +01002733 atmel_uart_writel(&atmel_port->uart, ATMEL_US_CR,
2734 ATMEL_US_RTSEN);
Claudio Scordino5dfbd1d72011-01-13 15:45:39 -08002735 }
2736
Elen Song055560b2013-07-22 16:30:29 +08002737 /*
2738 * Get port name of usart or uart
2739 */
Jaeden Amerob78cd162016-01-26 12:34:49 +01002740 atmel_get_ip_name(&atmel_port->uart);
Elen Song055560b2013-07-22 16:30:29 +08002741
Cyrille Pitchend4f64182014-12-09 14:31:33 +01002742 /*
2743 * The peripheral clock can now safely be disabled till the port
2744 * is used
2745 */
Jaeden Amerob78cd162016-01-26 12:34:49 +01002746 clk_disable_unprepare(atmel_port->clk);
Cyrille Pitchend4f64182014-12-09 14:31:33 +01002747
Haavard Skinnemoendfa7f342008-02-08 04:21:04 -08002748 return 0;
2749
2750err_add_port:
Jaeden Amerob78cd162016-01-26 12:34:49 +01002751 kfree(atmel_port->rx_ring.buf);
2752 atmel_port->rx_ring.buf = NULL;
Remy Bohmer1ecc26b2008-02-08 04:21:05 -08002753err_alloc_ring:
Jaeden Amerob78cd162016-01-26 12:34:49 +01002754 if (!atmel_is_console_port(&atmel_port->uart)) {
2755 clk_put(atmel_port->clk);
2756 atmel_port->clk = NULL;
Andrew Victorafefc412006-06-19 19:53:19 +01002757 }
Cyrille Pitchen6fbb9bd2014-12-09 14:31:34 +01002758err_clear_bit:
Jaeden Amerob78cd162016-01-26 12:34:49 +01002759 clear_bit(atmel_port->uart.line, atmel_ports_in_use);
Nicolas Ferre4cbf9f42011-10-12 18:06:59 +02002760err:
Andrew Victorafefc412006-06-19 19:53:19 +01002761 return ret;
2762}
2763
Haavard Skinnemoen7192f922006-10-04 16:02:05 +02002764static struct platform_driver atmel_serial_driver = {
2765 .probe = atmel_serial_probe,
Haavard Skinnemoen7192f922006-10-04 16:02:05 +02002766 .suspend = atmel_serial_suspend,
2767 .resume = atmel_serial_resume,
Andrew Victorafefc412006-06-19 19:53:19 +01002768 .driver = {
Paul Gortmakerc39dfeb2015-10-18 18:21:16 -04002769 .name = "atmel_usart",
2770 .of_match_table = of_match_ptr(atmel_serial_dt_ids),
2771 .suppress_bind_attrs = true,
Andrew Victorafefc412006-06-19 19:53:19 +01002772 },
2773};
2774
Haavard Skinnemoen7192f922006-10-04 16:02:05 +02002775static int __init atmel_serial_init(void)
Andrew Victorafefc412006-06-19 19:53:19 +01002776{
2777 int ret;
2778
Haavard Skinnemoen7192f922006-10-04 16:02:05 +02002779 ret = uart_register_driver(&atmel_uart);
Andrew Victorafefc412006-06-19 19:53:19 +01002780 if (ret)
2781 return ret;
2782
Haavard Skinnemoen7192f922006-10-04 16:02:05 +02002783 ret = platform_driver_register(&atmel_serial_driver);
Andrew Victorafefc412006-06-19 19:53:19 +01002784 if (ret)
Haavard Skinnemoen7192f922006-10-04 16:02:05 +02002785 uart_unregister_driver(&atmel_uart);
Andrew Victorafefc412006-06-19 19:53:19 +01002786
2787 return ret;
2788}
Paul Gortmakerc39dfeb2015-10-18 18:21:16 -04002789device_initcall(atmel_serial_init);