blob: 2eaa18ddef6171640729bf8a770363331f5edaa3 [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
Ludovic Desroches637ba542016-06-17 12:05:48 +0200111/*
112 * Be careful, the real size of the ring buffer is
113 * sizeof(atmel_uart_char) * ATMEL_SERIAL_RINGSIZE. It means that ring buffer
114 * can contain up to 1024 characters in PIO mode and up to 4096 characters in
115 * DMA mode.
116 */
Remy Bohmer1ecc26b2008-02-08 04:21:05 -0800117#define ATMEL_SERIAL_RINGSIZE 1024
118
Andrew Victorafefc412006-06-19 19:53:19 +0100119/*
Alexandre Belloni9af92fb2015-09-10 11:29:03 +0200120 * at91: 6 USARTs and one DBGU port (SAM9260)
121 * avr32: 4
122 */
123#define ATMEL_MAX_UART 7
124
125/*
Andrew Victorafefc412006-06-19 19:53:19 +0100126 * We wrap our port structure around the generic uart_port.
127 */
Haavard Skinnemoen7192f922006-10-04 16:02:05 +0200128struct atmel_uart_port {
Andrew Victorafefc412006-06-19 19:53:19 +0100129 struct uart_port uart; /* uart */
130 struct clk *clk; /* uart clock */
Anti Sullinf05596d2008-09-22 13:57:54 -0700131 int may_wakeup; /* cached value of device_may_wakeup for times we need to disable it */
132 u32 backup_imr; /* IMR saved during suspend */
Haavard Skinnemoen9e6077b2007-07-15 23:40:36 -0700133 int break_active; /* break being received */
Remy Bohmer1ecc26b2008-02-08 04:21:05 -0800134
Elen Song34df42f2013-07-22 16:30:27 +0800135 bool use_dma_rx; /* enable DMA receiver */
Elen Song64e22eb2013-07-22 16:30:24 +0800136 bool use_pdc_rx; /* enable PDC receiver */
Chip Coldwella6670612008-02-08 04:21:06 -0800137 short pdc_rx_idx; /* current PDC RX buffer */
138 struct atmel_dma_buffer pdc_rx[2]; /* PDC receier */
139
Elen Song08f738b2013-07-22 16:30:26 +0800140 bool use_dma_tx; /* enable DMA transmitter */
Elen Song64e22eb2013-07-22 16:30:24 +0800141 bool use_pdc_tx; /* enable PDC transmitter */
Chip Coldwella6670612008-02-08 04:21:06 -0800142 struct atmel_dma_buffer pdc_tx; /* PDC transmitter */
143
Elen Song08f738b2013-07-22 16:30:26 +0800144 spinlock_t lock_tx; /* port lock */
Elen Song34df42f2013-07-22 16:30:27 +0800145 spinlock_t lock_rx; /* port lock */
Elen Song08f738b2013-07-22 16:30:26 +0800146 struct dma_chan *chan_tx;
Elen Song34df42f2013-07-22 16:30:27 +0800147 struct dma_chan *chan_rx;
Elen Song08f738b2013-07-22 16:30:26 +0800148 struct dma_async_tx_descriptor *desc_tx;
Elen Song34df42f2013-07-22 16:30:27 +0800149 struct dma_async_tx_descriptor *desc_rx;
Elen Song08f738b2013-07-22 16:30:26 +0800150 dma_cookie_t cookie_tx;
Elen Song34df42f2013-07-22 16:30:27 +0800151 dma_cookie_t cookie_rx;
Elen Song08f738b2013-07-22 16:30:26 +0800152 struct scatterlist sg_tx;
Elen Song34df42f2013-07-22 16:30:27 +0800153 struct scatterlist sg_rx;
Nicolas Ferre00e8e6582016-06-17 12:05:47 +0200154 struct tasklet_struct tasklet_rx;
155 struct tasklet_struct tasklet_tx;
Nicolas Ferre98f20822016-06-26 09:44:49 +0200156 atomic_t tasklet_shutdown;
Remy Bohmer1ecc26b2008-02-08 04:21:05 -0800157 unsigned int irq_status_prev;
Cyrille Pitchen5f258b32015-07-02 15:18:13 +0200158 unsigned int tx_len;
Remy Bohmer1ecc26b2008-02-08 04:21:05 -0800159
160 struct circ_buf rx_ring;
Claudio Scordinoe8faff72010-05-03 13:31:28 +0100161
Richard Genoude0b0baa2014-05-13 20:20:44 +0200162 struct mctrl_gpios *gpios;
Claudio Scordinoe8faff72010-05-03 13:31:28 +0100163 unsigned int tx_done_mask;
Cyrille Pitchenb5199d42015-07-02 15:18:12 +0200164 u32 fifo_size;
165 u32 rts_high;
166 u32 rts_low;
Richard Genoudab5e4e42014-05-13 20:20:45 +0200167 bool ms_irq_enabled;
Ludovic Desroches2958cce2016-02-22 15:18:55 +0100168 u32 rtor; /* address of receiver timeout register if it exists */
Nicolas Ferre4b769372016-01-26 11:26:14 +0100169 bool has_hw_timer;
170 struct timer_list uart_timer;
Boris BREZILLON2c7af5b2015-03-02 10:18:18 +0100171
172 bool suspended;
173 unsigned int pending;
174 unsigned int pending_status;
175 spinlock_t lock_suspended;
176
Elen Songa930e522013-07-22 16:30:25 +0800177 int (*prepare_rx)(struct uart_port *port);
178 int (*prepare_tx)(struct uart_port *port);
179 void (*schedule_rx)(struct uart_port *port);
180 void (*schedule_tx)(struct uart_port *port);
181 void (*release_rx)(struct uart_port *port);
182 void (*release_tx)(struct uart_port *port);
Andrew Victorafefc412006-06-19 19:53:19 +0100183};
184
Haavard Skinnemoen7192f922006-10-04 16:02:05 +0200185static struct atmel_uart_port atmel_ports[ATMEL_MAX_UART];
Pawel Wieczorkiewicz503bded2013-02-20 17:26:20 +0100186static DECLARE_BITMAP(atmel_ports_in_use, ATMEL_MAX_UART);
Andrew Victorafefc412006-06-19 19:53:19 +0100187
Andrew Victor1e6c9c22006-01-10 16:59:27 +0000188#ifdef SUPPORT_SYSRQ
Haavard Skinnemoen7192f922006-10-04 16:02:05 +0200189static struct console atmel_console;
Andrew Victor1e6c9c22006-01-10 16:59:27 +0000190#endif
191
Nicolas Ferre5fbe46b2011-10-12 18:07:00 +0200192#if defined(CONFIG_OF)
193static const struct of_device_id atmel_serial_dt_ids[] = {
194 { .compatible = "atmel,at91rm9200-usart" },
195 { .compatible = "atmel,at91sam9260-usart" },
196 { /* sentinel */ }
197};
Nicolas Ferre5fbe46b2011-10-12 18:07:00 +0200198#endif
199
Haavard Skinnemoenc811ab82008-02-08 04:21:08 -0800200static inline struct atmel_uart_port *
201to_atmel_uart_port(struct uart_port *uart)
202{
203 return container_of(uart, struct atmel_uart_port, uart);
204}
205
Cyrille Pitchen4e7decd2015-07-02 15:18:11 +0200206static inline u32 atmel_uart_readl(struct uart_port *port, u32 reg)
207{
208 return __raw_readl(port->membase + reg);
209}
210
211static inline void atmel_uart_writel(struct uart_port *port, u32 reg, u32 value)
212{
213 __raw_writel(value, port->membase + reg);
214}
215
Cyrille Pitchena6499432015-07-30 16:33:38 +0200216#ifdef CONFIG_AVR32
217
218/* AVR32 cannot handle 8 or 16bit I/O accesses but only 32bit I/O accesses */
219static inline u8 atmel_uart_read_char(struct uart_port *port)
Cyrille Pitchenb5199d42015-07-02 15:18:12 +0200220{
Cyrille Pitchena6499432015-07-30 16:33:38 +0200221 return __raw_readl(port->membase + ATMEL_US_RHR);
Cyrille Pitchenb5199d42015-07-02 15:18:12 +0200222}
223
Cyrille Pitchena6499432015-07-30 16:33:38 +0200224static inline void atmel_uart_write_char(struct uart_port *port, u8 value)
Cyrille Pitchenb5199d42015-07-02 15:18:12 +0200225{
Cyrille Pitchena6499432015-07-30 16:33:38 +0200226 __raw_writel(value, port->membase + ATMEL_US_THR);
Cyrille Pitchenb5199d42015-07-02 15:18:12 +0200227}
228
Cyrille Pitchena6499432015-07-30 16:33:38 +0200229#else
230
231static inline u8 atmel_uart_read_char(struct uart_port *port)
232{
233 return __raw_readb(port->membase + ATMEL_US_RHR);
234}
235
236static inline void atmel_uart_write_char(struct uart_port *port, u8 value)
237{
238 __raw_writeb(value, port->membase + ATMEL_US_THR);
239}
240
241#endif
242
Chip Coldwella6670612008-02-08 04:21:06 -0800243#ifdef CONFIG_SERIAL_ATMEL_PDC
Elen Song64e22eb2013-07-22 16:30:24 +0800244static bool atmel_use_pdc_rx(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_rx;
Chip Coldwella6670612008-02-08 04:21:06 -0800249}
250
Elen Song64e22eb2013-07-22 16:30:24 +0800251static bool atmel_use_pdc_tx(struct uart_port *port)
Chip Coldwella6670612008-02-08 04:21:06 -0800252{
Haavard Skinnemoenc811ab82008-02-08 04:21:08 -0800253 struct atmel_uart_port *atmel_port = to_atmel_uart_port(port);
Chip Coldwella6670612008-02-08 04:21:06 -0800254
Elen Song64e22eb2013-07-22 16:30:24 +0800255 return atmel_port->use_pdc_tx;
Chip Coldwella6670612008-02-08 04:21:06 -0800256}
257#else
Elen Song64e22eb2013-07-22 16:30:24 +0800258static bool atmel_use_pdc_rx(struct uart_port *port)
Chip Coldwella6670612008-02-08 04:21:06 -0800259{
260 return false;
261}
262
Elen Song64e22eb2013-07-22 16:30:24 +0800263static bool atmel_use_pdc_tx(struct uart_port *port)
Chip Coldwella6670612008-02-08 04:21:06 -0800264{
265 return false;
266}
267#endif
268
Elen Song08f738b2013-07-22 16:30:26 +0800269static bool atmel_use_dma_tx(struct uart_port *port)
270{
271 struct atmel_uart_port *atmel_port = to_atmel_uart_port(port);
272
273 return atmel_port->use_dma_tx;
274}
275
Elen Song34df42f2013-07-22 16:30:27 +0800276static bool atmel_use_dma_rx(struct uart_port *port)
277{
278 struct atmel_uart_port *atmel_port = to_atmel_uart_port(port);
279
280 return atmel_port->use_dma_rx;
281}
282
Alexandre Belloni5be605a2016-04-12 14:51:40 +0200283static bool atmel_use_fifo(struct uart_port *port)
284{
285 struct atmel_uart_port *atmel_port = to_atmel_uart_port(port);
286
287 return atmel_port->fifo_size;
288}
289
Nicolas Ferre98f20822016-06-26 09:44:49 +0200290static void atmel_tasklet_schedule(struct atmel_uart_port *atmel_port,
291 struct tasklet_struct *t)
292{
293 if (!atomic_read(&atmel_port->tasklet_shutdown))
294 tasklet_schedule(t);
295}
296
Richard Genoude0b0baa2014-05-13 20:20:44 +0200297static unsigned int atmel_get_lines_status(struct uart_port *port)
298{
299 struct atmel_uart_port *atmel_port = to_atmel_uart_port(port);
300 unsigned int status, ret = 0;
301
Cyrille Pitchen4e7decd2015-07-02 15:18:11 +0200302 status = atmel_uart_readl(port, ATMEL_US_CSR);
Richard Genoude0b0baa2014-05-13 20:20:44 +0200303
304 mctrl_gpio_get(atmel_port->gpios, &ret);
305
306 if (!IS_ERR_OR_NULL(mctrl_gpio_to_gpiod(atmel_port->gpios,
307 UART_GPIO_CTS))) {
308 if (ret & TIOCM_CTS)
309 status &= ~ATMEL_US_CTS;
310 else
311 status |= ATMEL_US_CTS;
312 }
313
314 if (!IS_ERR_OR_NULL(mctrl_gpio_to_gpiod(atmel_port->gpios,
315 UART_GPIO_DSR))) {
316 if (ret & TIOCM_DSR)
317 status &= ~ATMEL_US_DSR;
318 else
319 status |= ATMEL_US_DSR;
320 }
321
322 if (!IS_ERR_OR_NULL(mctrl_gpio_to_gpiod(atmel_port->gpios,
323 UART_GPIO_RI))) {
324 if (ret & TIOCM_RI)
325 status &= ~ATMEL_US_RI;
326 else
327 status |= ATMEL_US_RI;
328 }
329
330 if (!IS_ERR_OR_NULL(mctrl_gpio_to_gpiod(atmel_port->gpios,
331 UART_GPIO_DCD))) {
332 if (ret & TIOCM_CD)
333 status &= ~ATMEL_US_DCD;
334 else
335 status |= ATMEL_US_DCD;
336 }
337
338 return status;
339}
340
Claudio Scordinoe8faff72010-05-03 13:31:28 +0100341/* Enable or disable the rs485 support */
Ricardo Ribalda Delgado13bd3e62014-11-06 09:22:56 +0100342static int atmel_config_rs485(struct uart_port *port,
343 struct serial_rs485 *rs485conf)
Claudio Scordinoe8faff72010-05-03 13:31:28 +0100344{
345 struct atmel_uart_port *atmel_port = to_atmel_uart_port(port);
346 unsigned int mode;
Claudio Scordinoe8faff72010-05-03 13:31:28 +0100347
348 /* Disable interrupts */
Cyrille Pitchen4e7decd2015-07-02 15:18:11 +0200349 atmel_uart_writel(port, ATMEL_US_IDR, atmel_port->tx_done_mask);
Claudio Scordinoe8faff72010-05-03 13:31:28 +0100350
Cyrille Pitchen4e7decd2015-07-02 15:18:11 +0200351 mode = atmel_uart_readl(port, ATMEL_US_MR);
Claudio Scordinoe8faff72010-05-03 13:31:28 +0100352
353 /* Resetting serial mode to RS232 (0x0) */
354 mode &= ~ATMEL_US_USMODE;
355
Ricardo Ribalda Delgado13bd3e62014-11-06 09:22:56 +0100356 port->rs485 = *rs485conf;
Claudio Scordinoe8faff72010-05-03 13:31:28 +0100357
358 if (rs485conf->flags & SER_RS485_ENABLED) {
359 dev_dbg(port->dev, "Setting UART to RS485\n");
360 atmel_port->tx_done_mask = ATMEL_US_TXEMPTY;
Cyrille Pitchen4e7decd2015-07-02 15:18:11 +0200361 atmel_uart_writel(port, ATMEL_US_TTGR,
362 rs485conf->delay_rts_after_send);
Claudio Scordinoe8faff72010-05-03 13:31:28 +0100363 mode |= ATMEL_US_USMODE_RS485;
364 } else {
365 dev_dbg(port->dev, "Setting UART to RS232\n");
Elen Song64e22eb2013-07-22 16:30:24 +0800366 if (atmel_use_pdc_tx(port))
Claudio Scordinoe8faff72010-05-03 13:31:28 +0100367 atmel_port->tx_done_mask = ATMEL_US_ENDTX |
368 ATMEL_US_TXBUFE;
369 else
370 atmel_port->tx_done_mask = ATMEL_US_TXRDY;
371 }
Cyrille Pitchen4e7decd2015-07-02 15:18:11 +0200372 atmel_uart_writel(port, ATMEL_US_MR, mode);
Claudio Scordinoe8faff72010-05-03 13:31:28 +0100373
374 /* Enable interrupts */
Cyrille Pitchen4e7decd2015-07-02 15:18:11 +0200375 atmel_uart_writel(port, ATMEL_US_IER, atmel_port->tx_done_mask);
Claudio Scordinoe8faff72010-05-03 13:31:28 +0100376
Ricardo Ribalda Delgado13bd3e62014-11-06 09:22:56 +0100377 return 0;
Claudio Scordinoe8faff72010-05-03 13:31:28 +0100378}
379
Andrew Victor1e6c9c22006-01-10 16:59:27 +0000380/*
381 * Return TIOCSER_TEMT when transmitter FIFO and Shift register is empty.
382 */
Haavard Skinnemoen7192f922006-10-04 16:02:05 +0200383static u_int atmel_tx_empty(struct uart_port *port)
Andrew Victor1e6c9c22006-01-10 16:59:27 +0000384{
Cyrille Pitchen4e7decd2015-07-02 15:18:11 +0200385 return (atmel_uart_readl(port, ATMEL_US_CSR) & ATMEL_US_TXEMPTY) ?
386 TIOCSER_TEMT :
387 0;
Andrew Victor1e6c9c22006-01-10 16:59:27 +0000388}
389
390/*
391 * Set state of the modem control output lines
392 */
Haavard Skinnemoen7192f922006-10-04 16:02:05 +0200393static void atmel_set_mctrl(struct uart_port *port, u_int mctrl)
Andrew Victor1e6c9c22006-01-10 16:59:27 +0000394{
395 unsigned int control = 0;
Cyrille Pitchen4e7decd2015-07-02 15:18:11 +0200396 unsigned int mode = atmel_uart_readl(port, ATMEL_US_MR);
Cyrille Pitchen1cf6e8f2014-12-09 14:31:35 +0100397 unsigned int rts_paused, rts_ready;
Claudio Scordinoe8faff72010-05-03 13:31:28 +0100398 struct atmel_uart_port *atmel_port = to_atmel_uart_port(port);
Andrew Victor1e6c9c22006-01-10 16:59:27 +0000399
Cyrille Pitchen1cf6e8f2014-12-09 14:31:35 +0100400 /* override mode to RS485 if needed, otherwise keep the current mode */
401 if (port->rs485.flags & SER_RS485_ENABLED) {
Cyrille Pitchen4e7decd2015-07-02 15:18:11 +0200402 atmel_uart_writel(port, ATMEL_US_TTGR,
403 port->rs485.delay_rts_after_send);
Cyrille Pitchen1cf6e8f2014-12-09 14:31:35 +0100404 mode &= ~ATMEL_US_USMODE;
405 mode |= ATMEL_US_USMODE_RS485;
406 }
407
408 /* set the RTS line state according to the mode */
409 if ((mode & ATMEL_US_USMODE) == ATMEL_US_USMODE_HWHS) {
410 /* force RTS line to high level */
411 rts_paused = ATMEL_US_RTSEN;
412
413 /* give the control of the RTS line back to the hardware */
414 rts_ready = ATMEL_US_RTSDIS;
415 } else {
416 /* force RTS line to high level */
417 rts_paused = ATMEL_US_RTSDIS;
418
419 /* force RTS line to low level */
420 rts_ready = ATMEL_US_RTSEN;
421 }
422
Andrew Victor1e6c9c22006-01-10 16:59:27 +0000423 if (mctrl & TIOCM_RTS)
Cyrille Pitchen1cf6e8f2014-12-09 14:31:35 +0100424 control |= rts_ready;
Andrew Victor1e6c9c22006-01-10 16:59:27 +0000425 else
Cyrille Pitchen1cf6e8f2014-12-09 14:31:35 +0100426 control |= rts_paused;
Andrew Victor1e6c9c22006-01-10 16:59:27 +0000427
428 if (mctrl & TIOCM_DTR)
Haavard Skinnemoen7192f922006-10-04 16:02:05 +0200429 control |= ATMEL_US_DTREN;
Andrew Victor1e6c9c22006-01-10 16:59:27 +0000430 else
Haavard Skinnemoen7192f922006-10-04 16:02:05 +0200431 control |= ATMEL_US_DTRDIS;
Andrew Victor1e6c9c22006-01-10 16:59:27 +0000432
Cyrille Pitchen4e7decd2015-07-02 15:18:11 +0200433 atmel_uart_writel(port, ATMEL_US_CR, control);
Andrew Victorafefc412006-06-19 19:53:19 +0100434
Richard Genoude0b0baa2014-05-13 20:20:44 +0200435 mctrl_gpio_set(atmel_port->gpios, mctrl);
436
Andrew Victorafefc412006-06-19 19:53:19 +0100437 /* Local loopback mode? */
Cyrille Pitchen1cf6e8f2014-12-09 14:31:35 +0100438 mode &= ~ATMEL_US_CHMODE;
Andrew Victorafefc412006-06-19 19:53:19 +0100439 if (mctrl & TIOCM_LOOP)
Haavard Skinnemoen7192f922006-10-04 16:02:05 +0200440 mode |= ATMEL_US_CHMODE_LOC_LOOP;
Andrew Victorafefc412006-06-19 19:53:19 +0100441 else
Haavard Skinnemoen7192f922006-10-04 16:02:05 +0200442 mode |= ATMEL_US_CHMODE_NORMAL;
Claudio Scordinoe8faff72010-05-03 13:31:28 +0100443
Cyrille Pitchen4e7decd2015-07-02 15:18:11 +0200444 atmel_uart_writel(port, ATMEL_US_MR, mode);
Andrew Victor1e6c9c22006-01-10 16:59:27 +0000445}
446
447/*
448 * Get state of the modem control input lines
449 */
Haavard Skinnemoen7192f922006-10-04 16:02:05 +0200450static u_int atmel_get_mctrl(struct uart_port *port)
Andrew Victor1e6c9c22006-01-10 16:59:27 +0000451{
Richard Genoude0b0baa2014-05-13 20:20:44 +0200452 struct atmel_uart_port *atmel_port = to_atmel_uart_port(port);
453 unsigned int ret = 0, status;
Andrew Victor1e6c9c22006-01-10 16:59:27 +0000454
Cyrille Pitchen4e7decd2015-07-02 15:18:11 +0200455 status = atmel_uart_readl(port, ATMEL_US_CSR);
Andrew Victor1e6c9c22006-01-10 16:59:27 +0000456
457 /*
458 * The control signals are active low.
459 */
Haavard Skinnemoen7192f922006-10-04 16:02:05 +0200460 if (!(status & ATMEL_US_DCD))
Andrew Victor1e6c9c22006-01-10 16:59:27 +0000461 ret |= TIOCM_CD;
Haavard Skinnemoen7192f922006-10-04 16:02:05 +0200462 if (!(status & ATMEL_US_CTS))
Andrew Victor1e6c9c22006-01-10 16:59:27 +0000463 ret |= TIOCM_CTS;
Haavard Skinnemoen7192f922006-10-04 16:02:05 +0200464 if (!(status & ATMEL_US_DSR))
Andrew Victor1e6c9c22006-01-10 16:59:27 +0000465 ret |= TIOCM_DSR;
Haavard Skinnemoen7192f922006-10-04 16:02:05 +0200466 if (!(status & ATMEL_US_RI))
Andrew Victor1e6c9c22006-01-10 16:59:27 +0000467 ret |= TIOCM_RI;
468
Richard Genoude0b0baa2014-05-13 20:20:44 +0200469 return mctrl_gpio_get(atmel_port->gpios, &ret);
Andrew Victor1e6c9c22006-01-10 16:59:27 +0000470}
471
472/*
473 * Stop transmitting.
474 */
Haavard Skinnemoen7192f922006-10-04 16:02:05 +0200475static void atmel_stop_tx(struct uart_port *port)
Andrew Victor1e6c9c22006-01-10 16:59:27 +0000476{
Claudio Scordinoe8faff72010-05-03 13:31:28 +0100477 struct atmel_uart_port *atmel_port = to_atmel_uart_port(port);
478
Elen Song64e22eb2013-07-22 16:30:24 +0800479 if (atmel_use_pdc_tx(port)) {
Chip Coldwella6670612008-02-08 04:21:06 -0800480 /* disable PDC transmit */
Cyrille Pitchen4e7decd2015-07-02 15:18:11 +0200481 atmel_uart_writel(port, ATMEL_PDC_PTCR, ATMEL_PDC_TXTDIS);
Claudio Scordinoe8faff72010-05-03 13:31:28 +0100482 }
483 /* Disable interrupts */
Cyrille Pitchen4e7decd2015-07-02 15:18:11 +0200484 atmel_uart_writel(port, ATMEL_US_IDR, atmel_port->tx_done_mask);
Claudio Scordinoe8faff72010-05-03 13:31:28 +0100485
Ricardo Ribalda Delgado13bd3e62014-11-06 09:22:56 +0100486 if ((port->rs485.flags & SER_RS485_ENABLED) &&
487 !(port->rs485.flags & SER_RS485_RX_DURING_TX))
Claudio Scordinoe8faff72010-05-03 13:31:28 +0100488 atmel_start_rx(port);
Andrew Victor1e6c9c22006-01-10 16:59:27 +0000489}
490
491/*
492 * Start transmitting.
493 */
Haavard Skinnemoen7192f922006-10-04 16:02:05 +0200494static void atmel_start_tx(struct uart_port *port)
Andrew Victor1e6c9c22006-01-10 16:59:27 +0000495{
Claudio Scordinoe8faff72010-05-03 13:31:28 +0100496 struct atmel_uart_port *atmel_port = to_atmel_uart_port(port);
497
Alexandre Belloni0058f082016-05-28 00:54:08 +0200498 if (atmel_use_pdc_tx(port) && (atmel_uart_readl(port, ATMEL_PDC_PTSR)
499 & ATMEL_PDC_TXTEN))
500 /* The transmitter is already running. Yes, we
501 really need this.*/
502 return;
Chip Coldwella6670612008-02-08 04:21:06 -0800503
Alexandre Belloni0058f082016-05-28 00:54:08 +0200504 if (atmel_use_pdc_tx(port) || atmel_use_dma_tx(port))
Ricardo Ribalda Delgado13bd3e62014-11-06 09:22:56 +0100505 if ((port->rs485.flags & SER_RS485_ENABLED) &&
506 !(port->rs485.flags & SER_RS485_RX_DURING_TX))
Claudio Scordinoe8faff72010-05-03 13:31:28 +0100507 atmel_stop_rx(port);
508
Alexandre Belloni0058f082016-05-28 00:54:08 +0200509 if (atmel_use_pdc_tx(port))
Chip Coldwella6670612008-02-08 04:21:06 -0800510 /* re-enable PDC transmit */
Cyrille Pitchen4e7decd2015-07-02 15:18:11 +0200511 atmel_uart_writel(port, ATMEL_PDC_PTCR, ATMEL_PDC_TXTEN);
Alexandre Belloni0058f082016-05-28 00:54:08 +0200512
Claudio Scordinoe8faff72010-05-03 13:31:28 +0100513 /* Enable interrupts */
Cyrille Pitchen4e7decd2015-07-02 15:18:11 +0200514 atmel_uart_writel(port, ATMEL_US_IER, atmel_port->tx_done_mask);
Claudio Scordinoe8faff72010-05-03 13:31:28 +0100515}
516
517/*
518 * start receiving - port is in process of being opened.
519 */
520static void atmel_start_rx(struct uart_port *port)
521{
Cyrille Pitchen4e7decd2015-07-02 15:18:11 +0200522 /* reset status and receiver */
523 atmel_uart_writel(port, ATMEL_US_CR, ATMEL_US_RSTSTA);
Claudio Scordinoe8faff72010-05-03 13:31:28 +0100524
Cyrille Pitchen4e7decd2015-07-02 15:18:11 +0200525 atmel_uart_writel(port, ATMEL_US_CR, ATMEL_US_RXEN);
Siftar, Gabe57c36862012-03-29 15:40:05 +0200526
Elen Song64e22eb2013-07-22 16:30:24 +0800527 if (atmel_use_pdc_rx(port)) {
Claudio Scordinoe8faff72010-05-03 13:31:28 +0100528 /* enable PDC controller */
Cyrille Pitchen4e7decd2015-07-02 15:18:11 +0200529 atmel_uart_writel(port, ATMEL_US_IER,
530 ATMEL_US_ENDRX | ATMEL_US_TIMEOUT |
531 port->read_status_mask);
532 atmel_uart_writel(port, ATMEL_PDC_PTCR, ATMEL_PDC_RXTEN);
Claudio Scordinoe8faff72010-05-03 13:31:28 +0100533 } else {
Cyrille Pitchen4e7decd2015-07-02 15:18:11 +0200534 atmel_uart_writel(port, ATMEL_US_IER, ATMEL_US_RXRDY);
Claudio Scordinoe8faff72010-05-03 13:31:28 +0100535 }
Andrew Victor1e6c9c22006-01-10 16:59:27 +0000536}
537
538/*
539 * Stop receiving - port is in process of being closed.
540 */
Haavard Skinnemoen7192f922006-10-04 16:02:05 +0200541static void atmel_stop_rx(struct uart_port *port)
Andrew Victor1e6c9c22006-01-10 16:59:27 +0000542{
Cyrille Pitchen4e7decd2015-07-02 15:18:11 +0200543 atmel_uart_writel(port, ATMEL_US_CR, ATMEL_US_RXDIS);
Siftar, Gabe57c36862012-03-29 15:40:05 +0200544
Elen Song64e22eb2013-07-22 16:30:24 +0800545 if (atmel_use_pdc_rx(port)) {
Chip Coldwella6670612008-02-08 04:21:06 -0800546 /* disable PDC receive */
Cyrille Pitchen4e7decd2015-07-02 15:18:11 +0200547 atmel_uart_writel(port, ATMEL_PDC_PTCR, ATMEL_PDC_RXTDIS);
548 atmel_uart_writel(port, ATMEL_US_IDR,
549 ATMEL_US_ENDRX | ATMEL_US_TIMEOUT |
550 port->read_status_mask);
Claudio Scordinoe8faff72010-05-03 13:31:28 +0100551 } else {
Cyrille Pitchen4e7decd2015-07-02 15:18:11 +0200552 atmel_uart_writel(port, ATMEL_US_IDR, ATMEL_US_RXRDY);
Claudio Scordinoe8faff72010-05-03 13:31:28 +0100553 }
Andrew Victor1e6c9c22006-01-10 16:59:27 +0000554}
555
556/*
557 * Enable modem status interrupts
558 */
Haavard Skinnemoen7192f922006-10-04 16:02:05 +0200559static void atmel_enable_ms(struct uart_port *port)
Andrew Victor1e6c9c22006-01-10 16:59:27 +0000560{
Richard Genoudab5e4e42014-05-13 20:20:45 +0200561 struct atmel_uart_port *atmel_port = to_atmel_uart_port(port);
562 uint32_t ier = 0;
563
564 /*
565 * Interrupt should not be enabled twice
566 */
567 if (atmel_port->ms_irq_enabled)
568 return;
569
570 atmel_port->ms_irq_enabled = true;
571
Uwe Kleine-König18dfef92015-10-18 21:34:45 +0200572 if (!mctrl_gpio_to_gpiod(atmel_port->gpios, UART_GPIO_CTS))
Richard Genoudab5e4e42014-05-13 20:20:45 +0200573 ier |= ATMEL_US_CTSIC;
574
Uwe Kleine-König18dfef92015-10-18 21:34:45 +0200575 if (!mctrl_gpio_to_gpiod(atmel_port->gpios, UART_GPIO_DSR))
Richard Genoudab5e4e42014-05-13 20:20:45 +0200576 ier |= ATMEL_US_DSRIC;
577
Uwe Kleine-König18dfef92015-10-18 21:34:45 +0200578 if (!mctrl_gpio_to_gpiod(atmel_port->gpios, UART_GPIO_RI))
Richard Genoudab5e4e42014-05-13 20:20:45 +0200579 ier |= ATMEL_US_RIIC;
580
Uwe Kleine-König18dfef92015-10-18 21:34:45 +0200581 if (!mctrl_gpio_to_gpiod(atmel_port->gpios, UART_GPIO_DCD))
Richard Genoudab5e4e42014-05-13 20:20:45 +0200582 ier |= ATMEL_US_DCDIC;
583
Cyrille Pitchen4e7decd2015-07-02 15:18:11 +0200584 atmel_uart_writel(port, ATMEL_US_IER, ier);
Uwe Kleine-König18dfef92015-10-18 21:34:45 +0200585
586 mctrl_gpio_enable_ms(atmel_port->gpios);
Andrew Victor1e6c9c22006-01-10 16:59:27 +0000587}
588
589/*
Richard Genoud35b675b2014-09-03 18:09:26 +0200590 * Disable modem status interrupts
591 */
592static void atmel_disable_ms(struct uart_port *port)
593{
594 struct atmel_uart_port *atmel_port = to_atmel_uart_port(port);
595 uint32_t idr = 0;
596
597 /*
598 * Interrupt should not be disabled twice
599 */
600 if (!atmel_port->ms_irq_enabled)
601 return;
602
603 atmel_port->ms_irq_enabled = false;
604
Uwe Kleine-König18dfef92015-10-18 21:34:45 +0200605 mctrl_gpio_disable_ms(atmel_port->gpios);
606
607 if (!mctrl_gpio_to_gpiod(atmel_port->gpios, UART_GPIO_CTS))
Richard Genoud35b675b2014-09-03 18:09:26 +0200608 idr |= ATMEL_US_CTSIC;
609
Uwe Kleine-König18dfef92015-10-18 21:34:45 +0200610 if (!mctrl_gpio_to_gpiod(atmel_port->gpios, UART_GPIO_DSR))
Richard Genoud35b675b2014-09-03 18:09:26 +0200611 idr |= ATMEL_US_DSRIC;
612
Uwe Kleine-König18dfef92015-10-18 21:34:45 +0200613 if (!mctrl_gpio_to_gpiod(atmel_port->gpios, UART_GPIO_RI))
Richard Genoud35b675b2014-09-03 18:09:26 +0200614 idr |= ATMEL_US_RIIC;
615
Uwe Kleine-König18dfef92015-10-18 21:34:45 +0200616 if (!mctrl_gpio_to_gpiod(atmel_port->gpios, UART_GPIO_DCD))
Richard Genoud35b675b2014-09-03 18:09:26 +0200617 idr |= ATMEL_US_DCDIC;
618
Cyrille Pitchen4e7decd2015-07-02 15:18:11 +0200619 atmel_uart_writel(port, ATMEL_US_IDR, idr);
Richard Genoud35b675b2014-09-03 18:09:26 +0200620}
621
622/*
Andrew Victor1e6c9c22006-01-10 16:59:27 +0000623 * Control the transmission of a break signal
624 */
Haavard Skinnemoen7192f922006-10-04 16:02:05 +0200625static void atmel_break_ctl(struct uart_port *port, int break_state)
Andrew Victor1e6c9c22006-01-10 16:59:27 +0000626{
627 if (break_state != 0)
Cyrille Pitchen4e7decd2015-07-02 15:18:11 +0200628 /* start break */
629 atmel_uart_writel(port, ATMEL_US_CR, ATMEL_US_STTBRK);
Andrew Victor1e6c9c22006-01-10 16:59:27 +0000630 else
Cyrille Pitchen4e7decd2015-07-02 15:18:11 +0200631 /* stop break */
632 atmel_uart_writel(port, ATMEL_US_CR, ATMEL_US_STPBRK);
Andrew Victor1e6c9c22006-01-10 16:59:27 +0000633}
634
635/*
Remy Bohmer1ecc26b2008-02-08 04:21:05 -0800636 * Stores the incoming character in the ring buffer
637 */
638static void
639atmel_buffer_rx_char(struct uart_port *port, unsigned int status,
640 unsigned int ch)
641{
Haavard Skinnemoenc811ab82008-02-08 04:21:08 -0800642 struct atmel_uart_port *atmel_port = to_atmel_uart_port(port);
Remy Bohmer1ecc26b2008-02-08 04:21:05 -0800643 struct circ_buf *ring = &atmel_port->rx_ring;
644 struct atmel_uart_char *c;
645
646 if (!CIRC_SPACE(ring->head, ring->tail, ATMEL_SERIAL_RINGSIZE))
647 /* Buffer overflow, ignore char */
648 return;
649
650 c = &((struct atmel_uart_char *)ring->buf)[ring->head];
651 c->status = status;
652 c->ch = ch;
653
654 /* Make sure the character is stored before we update head. */
655 smp_wmb();
656
657 ring->head = (ring->head + 1) & (ATMEL_SERIAL_RINGSIZE - 1);
658}
659
660/*
Chip Coldwella6670612008-02-08 04:21:06 -0800661 * Deal with parity, framing and overrun errors.
662 */
663static void atmel_pdc_rxerr(struct uart_port *port, unsigned int status)
664{
665 /* clear error */
Cyrille Pitchen4e7decd2015-07-02 15:18:11 +0200666 atmel_uart_writel(port, ATMEL_US_CR, ATMEL_US_RSTSTA);
Chip Coldwella6670612008-02-08 04:21:06 -0800667
668 if (status & ATMEL_US_RXBRK) {
669 /* ignore side-effect */
670 status &= ~(ATMEL_US_PARE | ATMEL_US_FRAME);
671 port->icount.brk++;
672 }
673 if (status & ATMEL_US_PARE)
674 port->icount.parity++;
675 if (status & ATMEL_US_FRAME)
676 port->icount.frame++;
677 if (status & ATMEL_US_OVRE)
678 port->icount.overrun++;
679}
680
681/*
Andrew Victor1e6c9c22006-01-10 16:59:27 +0000682 * Characters received (called from interrupt handler)
683 */
David Howells7d12e782006-10-05 14:55:46 +0100684static void atmel_rx_chars(struct uart_port *port)
Andrew Victor1e6c9c22006-01-10 16:59:27 +0000685{
Haavard Skinnemoenc811ab82008-02-08 04:21:08 -0800686 struct atmel_uart_port *atmel_port = to_atmel_uart_port(port);
Remy Bohmer1ecc26b2008-02-08 04:21:05 -0800687 unsigned int status, ch;
Andrew Victor1e6c9c22006-01-10 16:59:27 +0000688
Cyrille Pitchen4e7decd2015-07-02 15:18:11 +0200689 status = atmel_uart_readl(port, ATMEL_US_CSR);
Haavard Skinnemoen7192f922006-10-04 16:02:05 +0200690 while (status & ATMEL_US_RXRDY) {
Cyrille Pitchena6499432015-07-30 16:33:38 +0200691 ch = atmel_uart_read_char(port);
Andrew Victor1e6c9c22006-01-10 16:59:27 +0000692
Andrew Victor1e6c9c22006-01-10 16:59:27 +0000693 /*
694 * note that the error handling code is
695 * out of the main execution path
696 */
Haavard Skinnemoen9e6077b2007-07-15 23:40:36 -0700697 if (unlikely(status & (ATMEL_US_PARE | ATMEL_US_FRAME
698 | ATMEL_US_OVRE | ATMEL_US_RXBRK)
699 || atmel_port->break_active)) {
Remy Bohmer1ecc26b2008-02-08 04:21:05 -0800700
Remy Bohmerb843aa22008-02-08 04:21:01 -0800701 /* clear error */
Cyrille Pitchen4e7decd2015-07-02 15:18:11 +0200702 atmel_uart_writel(port, ATMEL_US_CR, ATMEL_US_RSTSTA);
Remy Bohmer1ecc26b2008-02-08 04:21:05 -0800703
Haavard Skinnemoen9e6077b2007-07-15 23:40:36 -0700704 if (status & ATMEL_US_RXBRK
705 && !atmel_port->break_active) {
Haavard Skinnemoen9e6077b2007-07-15 23:40:36 -0700706 atmel_port->break_active = 1;
Cyrille Pitchen4e7decd2015-07-02 15:18:11 +0200707 atmel_uart_writel(port, ATMEL_US_IER,
708 ATMEL_US_RXBRK);
Haavard Skinnemoen9e6077b2007-07-15 23:40:36 -0700709 } else {
710 /*
711 * This is either the end-of-break
712 * condition or we've received at
713 * least one character without RXBRK
714 * being set. In both cases, the next
715 * RXBRK will indicate start-of-break.
716 */
Cyrille Pitchen4e7decd2015-07-02 15:18:11 +0200717 atmel_uart_writel(port, ATMEL_US_IDR,
718 ATMEL_US_RXBRK);
Haavard Skinnemoen9e6077b2007-07-15 23:40:36 -0700719 status &= ~ATMEL_US_RXBRK;
720 atmel_port->break_active = 0;
Andrew Victorafefc412006-06-19 19:53:19 +0100721 }
Andrew Victor1e6c9c22006-01-10 16:59:27 +0000722 }
723
Remy Bohmer1ecc26b2008-02-08 04:21:05 -0800724 atmel_buffer_rx_char(port, status, ch);
Cyrille Pitchen4e7decd2015-07-02 15:18:11 +0200725 status = atmel_uart_readl(port, ATMEL_US_CSR);
Andrew Victor1e6c9c22006-01-10 16:59:27 +0000726 }
727
Nicolas Ferre98f20822016-06-26 09:44:49 +0200728 atmel_tasklet_schedule(atmel_port, &atmel_port->tasklet_rx);
Andrew Victor1e6c9c22006-01-10 16:59:27 +0000729}
730
731/*
Remy Bohmer1ecc26b2008-02-08 04:21:05 -0800732 * Transmit characters (called from tasklet with TXRDY interrupt
733 * disabled)
Andrew Victor1e6c9c22006-01-10 16:59:27 +0000734 */
Haavard Skinnemoen7192f922006-10-04 16:02:05 +0200735static void atmel_tx_chars(struct uart_port *port)
Andrew Victor1e6c9c22006-01-10 16:59:27 +0000736{
Alan Coxebd2c8f2009-09-19 13:13:28 -0700737 struct circ_buf *xmit = &port->state->xmit;
Claudio Scordinoe8faff72010-05-03 13:31:28 +0100738 struct atmel_uart_port *atmel_port = to_atmel_uart_port(port);
Andrew Victor1e6c9c22006-01-10 16:59:27 +0000739
Cyrille Pitchen4e7decd2015-07-02 15:18:11 +0200740 if (port->x_char &&
741 (atmel_uart_readl(port, ATMEL_US_CSR) & atmel_port->tx_done_mask)) {
Cyrille Pitchena6499432015-07-30 16:33:38 +0200742 atmel_uart_write_char(port, port->x_char);
Andrew Victor1e6c9c22006-01-10 16:59:27 +0000743 port->icount.tx++;
744 port->x_char = 0;
Andrew Victor1e6c9c22006-01-10 16:59:27 +0000745 }
Remy Bohmer1ecc26b2008-02-08 04:21:05 -0800746 if (uart_circ_empty(xmit) || uart_tx_stopped(port))
Andrew Victor1e6c9c22006-01-10 16:59:27 +0000747 return;
Andrew Victor1e6c9c22006-01-10 16:59:27 +0000748
Cyrille Pitchen4e7decd2015-07-02 15:18:11 +0200749 while (atmel_uart_readl(port, ATMEL_US_CSR) &
750 atmel_port->tx_done_mask) {
Cyrille Pitchena6499432015-07-30 16:33:38 +0200751 atmel_uart_write_char(port, xmit->buf[xmit->tail]);
Andrew Victor1e6c9c22006-01-10 16:59:27 +0000752 xmit->tail = (xmit->tail + 1) & (UART_XMIT_SIZE - 1);
753 port->icount.tx++;
754 if (uart_circ_empty(xmit))
755 break;
756 }
757
758 if (uart_circ_chars_pending(xmit) < WAKEUP_CHARS)
759 uart_write_wakeup(port);
760
Remy Bohmer1ecc26b2008-02-08 04:21:05 -0800761 if (!uart_circ_empty(xmit))
Claudio Scordinoe8faff72010-05-03 13:31:28 +0100762 /* Enable interrupts */
Cyrille Pitchen4e7decd2015-07-02 15:18:11 +0200763 atmel_uart_writel(port, ATMEL_US_IER,
764 atmel_port->tx_done_mask);
Andrew Victor1e6c9c22006-01-10 16:59:27 +0000765}
766
Elen Song08f738b2013-07-22 16:30:26 +0800767static void atmel_complete_tx_dma(void *arg)
768{
769 struct atmel_uart_port *atmel_port = arg;
770 struct uart_port *port = &atmel_port->uart;
771 struct circ_buf *xmit = &port->state->xmit;
772 struct dma_chan *chan = atmel_port->chan_tx;
773 unsigned long flags;
774
775 spin_lock_irqsave(&port->lock, flags);
776
777 if (chan)
778 dmaengine_terminate_all(chan);
Cyrille Pitchen5f258b32015-07-02 15:18:13 +0200779 xmit->tail += atmel_port->tx_len;
Elen Song08f738b2013-07-22 16:30:26 +0800780 xmit->tail &= UART_XMIT_SIZE - 1;
781
Cyrille Pitchen5f258b32015-07-02 15:18:13 +0200782 port->icount.tx += atmel_port->tx_len;
Elen Song08f738b2013-07-22 16:30:26 +0800783
784 spin_lock_irq(&atmel_port->lock_tx);
785 async_tx_ack(atmel_port->desc_tx);
786 atmel_port->cookie_tx = -EINVAL;
787 atmel_port->desc_tx = NULL;
788 spin_unlock_irq(&atmel_port->lock_tx);
789
790 if (uart_circ_chars_pending(xmit) < WAKEUP_CHARS)
791 uart_write_wakeup(port);
792
Cyrille Pitchen1842dc22014-12-09 14:31:36 +0100793 /*
794 * xmit is a circular buffer so, if we have just send data from
795 * xmit->tail to the end of xmit->buf, now we have to transmit the
796 * remaining data from the beginning of xmit->buf to xmit->head.
797 */
Elen Song08f738b2013-07-22 16:30:26 +0800798 if (!uart_circ_empty(xmit))
Nicolas Ferre98f20822016-06-26 09:44:49 +0200799 atmel_tasklet_schedule(atmel_port, &atmel_port->tasklet_tx);
Elen Song08f738b2013-07-22 16:30:26 +0800800
801 spin_unlock_irqrestore(&port->lock, flags);
802}
803
804static void atmel_release_tx_dma(struct uart_port *port)
805{
806 struct atmel_uart_port *atmel_port = to_atmel_uart_port(port);
807 struct dma_chan *chan = atmel_port->chan_tx;
808
809 if (chan) {
810 dmaengine_terminate_all(chan);
811 dma_release_channel(chan);
812 dma_unmap_sg(port->dev, &atmel_port->sg_tx, 1,
Wolfram Sang48479142014-07-21 11:42:04 +0200813 DMA_TO_DEVICE);
Elen Song08f738b2013-07-22 16:30:26 +0800814 }
815
816 atmel_port->desc_tx = NULL;
817 atmel_port->chan_tx = NULL;
818 atmel_port->cookie_tx = -EINVAL;
819}
820
821/*
822 * Called from tasklet with TXRDY interrupt is disabled.
823 */
824static void atmel_tx_dma(struct uart_port *port)
825{
826 struct atmel_uart_port *atmel_port = to_atmel_uart_port(port);
827 struct circ_buf *xmit = &port->state->xmit;
828 struct dma_chan *chan = atmel_port->chan_tx;
829 struct dma_async_tx_descriptor *desc;
Cyrille Pitchen5f258b32015-07-02 15:18:13 +0200830 struct scatterlist sgl[2], *sg, *sg_tx = &atmel_port->sg_tx;
831 unsigned int tx_len, part1_len, part2_len, sg_len;
832 dma_addr_t phys_addr;
Elen Song08f738b2013-07-22 16:30:26 +0800833
834 /* Make sure we have an idle channel */
835 if (atmel_port->desc_tx != NULL)
836 return;
837
838 if (!uart_circ_empty(xmit) && !uart_tx_stopped(port)) {
839 /*
840 * DMA is idle now.
841 * Port xmit buffer is already mapped,
842 * and it is one page... Just adjust
843 * offsets and lengths. Since it is a circular buffer,
844 * we have to transmit till the end, and then the rest.
845 * Take the port lock to get a
846 * consistent xmit buffer state.
847 */
Cyrille Pitchen5f258b32015-07-02 15:18:13 +0200848 tx_len = CIRC_CNT_TO_END(xmit->head,
849 xmit->tail,
850 UART_XMIT_SIZE);
851
852 if (atmel_port->fifo_size) {
853 /* multi data mode */
854 part1_len = (tx_len & ~0x3); /* DWORD access */
855 part2_len = (tx_len & 0x3); /* BYTE access */
856 } else {
857 /* single data (legacy) mode */
858 part1_len = 0;
859 part2_len = tx_len; /* BYTE access only */
860 }
861
862 sg_init_table(sgl, 2);
863 sg_len = 0;
864 phys_addr = sg_dma_address(sg_tx) + xmit->tail;
865 if (part1_len) {
866 sg = &sgl[sg_len++];
867 sg_dma_address(sg) = phys_addr;
868 sg_dma_len(sg) = part1_len;
869
870 phys_addr += part1_len;
871 }
872
873 if (part2_len) {
874 sg = &sgl[sg_len++];
875 sg_dma_address(sg) = phys_addr;
876 sg_dma_len(sg) = part2_len;
877 }
878
879 /*
880 * save tx_len so atmel_complete_tx_dma() will increase
881 * xmit->tail correctly
882 */
883 atmel_port->tx_len = tx_len;
Elen Song08f738b2013-07-22 16:30:26 +0800884
885 desc = dmaengine_prep_slave_sg(chan,
Cyrille Pitchen5f258b32015-07-02 15:18:13 +0200886 sgl,
887 sg_len,
Cyrille Pitchen1842dc22014-12-09 14:31:36 +0100888 DMA_MEM_TO_DEV,
889 DMA_PREP_INTERRUPT |
890 DMA_CTRL_ACK);
Elen Song08f738b2013-07-22 16:30:26 +0800891 if (!desc) {
892 dev_err(port->dev, "Failed to send via dma!\n");
893 return;
894 }
895
Cyrille Pitchen5f258b32015-07-02 15:18:13 +0200896 dma_sync_sg_for_device(port->dev, sg_tx, 1, DMA_TO_DEVICE);
Elen Song08f738b2013-07-22 16:30:26 +0800897
898 atmel_port->desc_tx = desc;
899 desc->callback = atmel_complete_tx_dma;
900 desc->callback_param = atmel_port;
901 atmel_port->cookie_tx = dmaengine_submit(desc);
902
903 } else {
Ricardo Ribalda Delgado13bd3e62014-11-06 09:22:56 +0100904 if (port->rs485.flags & SER_RS485_ENABLED) {
Elen Song08f738b2013-07-22 16:30:26 +0800905 /* DMA done, stop TX, start RX for RS485 */
906 atmel_start_rx(port);
907 }
908 }
909
910 if (uart_circ_chars_pending(xmit) < WAKEUP_CHARS)
911 uart_write_wakeup(port);
912}
913
914static int atmel_prepare_tx_dma(struct uart_port *port)
915{
916 struct atmel_uart_port *atmel_port = to_atmel_uart_port(port);
917 dma_cap_mask_t mask;
918 struct dma_slave_config config;
919 int ret, nent;
920
921 dma_cap_zero(mask);
922 dma_cap_set(DMA_SLAVE, mask);
923
924 atmel_port->chan_tx = dma_request_slave_channel(port->dev, "tx");
925 if (atmel_port->chan_tx == NULL)
926 goto chan_err;
927 dev_info(port->dev, "using %s for tx DMA transfers\n",
928 dma_chan_name(atmel_port->chan_tx));
929
930 spin_lock_init(&atmel_port->lock_tx);
931 sg_init_table(&atmel_port->sg_tx, 1);
932 /* UART circular tx buffer is an aligned page. */
Leilei Zhao2c277052015-02-27 16:07:14 +0800933 BUG_ON(!PAGE_ALIGNED(port->state->xmit.buf));
Elen Song08f738b2013-07-22 16:30:26 +0800934 sg_set_page(&atmel_port->sg_tx,
935 virt_to_page(port->state->xmit.buf),
936 UART_XMIT_SIZE,
Uwe Kleine-Königc8d1f022015-09-30 10:19:38 +0200937 (unsigned long)port->state->xmit.buf & ~PAGE_MASK);
Elen Song08f738b2013-07-22 16:30:26 +0800938 nent = dma_map_sg(port->dev,
939 &atmel_port->sg_tx,
940 1,
Wolfram Sang48479142014-07-21 11:42:04 +0200941 DMA_TO_DEVICE);
Elen Song08f738b2013-07-22 16:30:26 +0800942
943 if (!nent) {
944 dev_dbg(port->dev, "need to release resource of dma\n");
945 goto chan_err;
946 } else {
Uwe Kleine-Königc8d1f022015-09-30 10:19:38 +0200947 dev_dbg(port->dev, "%s: mapped %d@%p to %pad\n", __func__,
Elen Song08f738b2013-07-22 16:30:26 +0800948 sg_dma_len(&atmel_port->sg_tx),
949 port->state->xmit.buf,
Uwe Kleine-Königc8d1f022015-09-30 10:19:38 +0200950 &sg_dma_address(&atmel_port->sg_tx));
Elen Song08f738b2013-07-22 16:30:26 +0800951 }
952
953 /* Configure the slave DMA */
954 memset(&config, 0, sizeof(config));
955 config.direction = DMA_MEM_TO_DEV;
Cyrille Pitchen5f258b32015-07-02 15:18:13 +0200956 config.dst_addr_width = (atmel_port->fifo_size) ?
957 DMA_SLAVE_BUSWIDTH_4_BYTES :
958 DMA_SLAVE_BUSWIDTH_1_BYTE;
Elen Song08f738b2013-07-22 16:30:26 +0800959 config.dst_addr = port->mapbase + ATMEL_US_THR;
Ludovic Desrochesa8d4e012015-04-16 16:58:12 +0200960 config.dst_maxburst = 1;
Elen Song08f738b2013-07-22 16:30:26 +0800961
Maxime Ripard5483c102014-10-22 17:43:16 +0200962 ret = dmaengine_slave_config(atmel_port->chan_tx,
963 &config);
Elen Song08f738b2013-07-22 16:30:26 +0800964 if (ret) {
965 dev_err(port->dev, "DMA tx slave configuration failed\n");
966 goto chan_err;
967 }
968
969 return 0;
970
971chan_err:
972 dev_err(port->dev, "TX channel not available, switch to pio\n");
973 atmel_port->use_dma_tx = 0;
974 if (atmel_port->chan_tx)
975 atmel_release_tx_dma(port);
976 return -EINVAL;
977}
978
Elen Song34df42f2013-07-22 16:30:27 +0800979static void atmel_complete_rx_dma(void *arg)
980{
981 struct uart_port *port = arg;
982 struct atmel_uart_port *atmel_port = to_atmel_uart_port(port);
983
Nicolas Ferre98f20822016-06-26 09:44:49 +0200984 atmel_tasklet_schedule(atmel_port, &atmel_port->tasklet_rx);
Elen Song34df42f2013-07-22 16:30:27 +0800985}
986
987static void atmel_release_rx_dma(struct uart_port *port)
988{
989 struct atmel_uart_port *atmel_port = to_atmel_uart_port(port);
990 struct dma_chan *chan = atmel_port->chan_rx;
991
992 if (chan) {
993 dmaengine_terminate_all(chan);
994 dma_release_channel(chan);
995 dma_unmap_sg(port->dev, &atmel_port->sg_rx, 1,
Wolfram Sang48479142014-07-21 11:42:04 +0200996 DMA_FROM_DEVICE);
Elen Song34df42f2013-07-22 16:30:27 +0800997 }
998
999 atmel_port->desc_rx = NULL;
1000 atmel_port->chan_rx = NULL;
1001 atmel_port->cookie_rx = -EINVAL;
1002}
1003
1004static void atmel_rx_from_dma(struct uart_port *port)
1005{
1006 struct atmel_uart_port *atmel_port = to_atmel_uart_port(port);
Cyrille Pitchen66f37aa2014-10-20 19:12:20 +02001007 struct tty_port *tport = &port->state->port;
Elen Song34df42f2013-07-22 16:30:27 +08001008 struct circ_buf *ring = &atmel_port->rx_ring;
1009 struct dma_chan *chan = atmel_port->chan_rx;
1010 struct dma_tx_state state;
1011 enum dma_status dmastat;
Cyrille Pitchen66f37aa2014-10-20 19:12:20 +02001012 size_t count;
Elen Song34df42f2013-07-22 16:30:27 +08001013
1014
1015 /* Reset the UART timeout early so that we don't miss one */
Cyrille Pitchen4e7decd2015-07-02 15:18:11 +02001016 atmel_uart_writel(port, ATMEL_US_CR, ATMEL_US_STTTO);
Elen Song34df42f2013-07-22 16:30:27 +08001017 dmastat = dmaengine_tx_status(chan,
1018 atmel_port->cookie_rx,
1019 &state);
1020 /* Restart a new tasklet if DMA status is error */
1021 if (dmastat == DMA_ERROR) {
1022 dev_dbg(port->dev, "Get residue error, restart tasklet\n");
Cyrille Pitchen4e7decd2015-07-02 15:18:11 +02001023 atmel_uart_writel(port, ATMEL_US_IER, ATMEL_US_TIMEOUT);
Nicolas Ferre98f20822016-06-26 09:44:49 +02001024 atmel_tasklet_schedule(atmel_port, &atmel_port->tasklet_rx);
Elen Song34df42f2013-07-22 16:30:27 +08001025 return;
1026 }
Cyrille Pitchen66f37aa2014-10-20 19:12:20 +02001027
1028 /* CPU claims ownership of RX DMA buffer */
1029 dma_sync_sg_for_cpu(port->dev,
1030 &atmel_port->sg_rx,
1031 1,
Cyrille Pitchen485819b2014-12-09 14:31:32 +01001032 DMA_FROM_DEVICE);
Elen Song34df42f2013-07-22 16:30:27 +08001033
1034 /*
Cyrille Pitchen66f37aa2014-10-20 19:12:20 +02001035 * ring->head points to the end of data already written by the DMA.
1036 * ring->tail points to the beginning of data to be read by the
1037 * framework.
1038 * The current transfer size should not be larger than the dma buffer
1039 * length.
Elen Song34df42f2013-07-22 16:30:27 +08001040 */
Cyrille Pitchen66f37aa2014-10-20 19:12:20 +02001041 ring->head = sg_dma_len(&atmel_port->sg_rx) - state.residue;
1042 BUG_ON(ring->head > sg_dma_len(&atmel_port->sg_rx));
1043 /*
1044 * At this point ring->head may point to the first byte right after the
1045 * last byte of the dma buffer:
1046 * 0 <= ring->head <= sg_dma_len(&atmel_port->sg_rx)
1047 *
1048 * However ring->tail must always points inside the dma buffer:
1049 * 0 <= ring->tail <= sg_dma_len(&atmel_port->sg_rx) - 1
1050 *
1051 * Since we use a ring buffer, we have to handle the case
1052 * where head is lower than tail. In such a case, we first read from
1053 * tail to the end of the buffer then reset tail.
1054 */
1055 if (ring->head < ring->tail) {
1056 count = sg_dma_len(&atmel_port->sg_rx) - ring->tail;
Elen Song34df42f2013-07-22 16:30:27 +08001057
Cyrille Pitchen66f37aa2014-10-20 19:12:20 +02001058 tty_insert_flip_string(tport, ring->buf + ring->tail, count);
1059 ring->tail = 0;
Elen Song34df42f2013-07-22 16:30:27 +08001060 port->icount.rx += count;
1061 }
1062
Cyrille Pitchen66f37aa2014-10-20 19:12:20 +02001063 /* Finally we read data from tail to head */
1064 if (ring->tail < ring->head) {
1065 count = ring->head - ring->tail;
1066
1067 tty_insert_flip_string(tport, ring->buf + ring->tail, count);
1068 /* Wrap ring->head if needed */
1069 if (ring->head >= sg_dma_len(&atmel_port->sg_rx))
1070 ring->head = 0;
1071 ring->tail = ring->head;
1072 port->icount.rx += count;
1073 }
1074
1075 /* USART retreives ownership of RX DMA buffer */
1076 dma_sync_sg_for_device(port->dev,
1077 &atmel_port->sg_rx,
1078 1,
Cyrille Pitchen485819b2014-12-09 14:31:32 +01001079 DMA_FROM_DEVICE);
Cyrille Pitchen66f37aa2014-10-20 19:12:20 +02001080
1081 /*
1082 * Drop the lock here since it might end up calling
1083 * uart_start(), which takes the lock.
1084 */
1085 spin_unlock(&port->lock);
1086 tty_flip_buffer_push(tport);
1087 spin_lock(&port->lock);
1088
Cyrille Pitchen4e7decd2015-07-02 15:18:11 +02001089 atmel_uart_writel(port, ATMEL_US_IER, ATMEL_US_TIMEOUT);
Elen Song34df42f2013-07-22 16:30:27 +08001090}
1091
1092static int atmel_prepare_rx_dma(struct uart_port *port)
1093{
1094 struct atmel_uart_port *atmel_port = to_atmel_uart_port(port);
1095 struct dma_async_tx_descriptor *desc;
1096 dma_cap_mask_t mask;
1097 struct dma_slave_config config;
1098 struct circ_buf *ring;
1099 int ret, nent;
1100
1101 ring = &atmel_port->rx_ring;
1102
1103 dma_cap_zero(mask);
1104 dma_cap_set(DMA_CYCLIC, mask);
1105
1106 atmel_port->chan_rx = dma_request_slave_channel(port->dev, "rx");
1107 if (atmel_port->chan_rx == NULL)
1108 goto chan_err;
1109 dev_info(port->dev, "using %s for rx DMA transfers\n",
1110 dma_chan_name(atmel_port->chan_rx));
1111
1112 spin_lock_init(&atmel_port->lock_rx);
1113 sg_init_table(&atmel_port->sg_rx, 1);
1114 /* UART circular rx buffer is an aligned page. */
Leilei Zhao2c277052015-02-27 16:07:14 +08001115 BUG_ON(!PAGE_ALIGNED(ring->buf));
Elen Song34df42f2013-07-22 16:30:27 +08001116 sg_set_page(&atmel_port->sg_rx,
Cyrille Pitchen1842dc22014-12-09 14:31:36 +01001117 virt_to_page(ring->buf),
Leilei Zhaoa5108802015-02-27 16:07:15 +08001118 sizeof(struct atmel_uart_char) * ATMEL_SERIAL_RINGSIZE,
Uwe Kleine-Königc8d1f022015-09-30 10:19:38 +02001119 (unsigned long)ring->buf & ~PAGE_MASK);
Cyrille Pitchen1842dc22014-12-09 14:31:36 +01001120 nent = dma_map_sg(port->dev,
1121 &atmel_port->sg_rx,
1122 1,
1123 DMA_FROM_DEVICE);
Elen Song34df42f2013-07-22 16:30:27 +08001124
1125 if (!nent) {
1126 dev_dbg(port->dev, "need to release resource of dma\n");
1127 goto chan_err;
1128 } else {
Uwe Kleine-Königc8d1f022015-09-30 10:19:38 +02001129 dev_dbg(port->dev, "%s: mapped %d@%p to %pad\n", __func__,
Elen Song34df42f2013-07-22 16:30:27 +08001130 sg_dma_len(&atmel_port->sg_rx),
1131 ring->buf,
Uwe Kleine-Königc8d1f022015-09-30 10:19:38 +02001132 &sg_dma_address(&atmel_port->sg_rx));
Elen Song34df42f2013-07-22 16:30:27 +08001133 }
1134
1135 /* Configure the slave DMA */
1136 memset(&config, 0, sizeof(config));
1137 config.direction = DMA_DEV_TO_MEM;
1138 config.src_addr_width = DMA_SLAVE_BUSWIDTH_1_BYTE;
1139 config.src_addr = port->mapbase + ATMEL_US_RHR;
Ludovic Desrochesa8d4e012015-04-16 16:58:12 +02001140 config.src_maxburst = 1;
Elen Song34df42f2013-07-22 16:30:27 +08001141
Maxime Ripard5483c102014-10-22 17:43:16 +02001142 ret = dmaengine_slave_config(atmel_port->chan_rx,
1143 &config);
Elen Song34df42f2013-07-22 16:30:27 +08001144 if (ret) {
1145 dev_err(port->dev, "DMA rx slave configuration failed\n");
1146 goto chan_err;
1147 }
1148 /*
1149 * Prepare a cyclic dma transfer, assign 2 descriptors,
1150 * each one is half ring buffer size
1151 */
1152 desc = dmaengine_prep_dma_cyclic(atmel_port->chan_rx,
Cyrille Pitchen1842dc22014-12-09 14:31:36 +01001153 sg_dma_address(&atmel_port->sg_rx),
1154 sg_dma_len(&atmel_port->sg_rx),
1155 sg_dma_len(&atmel_port->sg_rx)/2,
1156 DMA_DEV_TO_MEM,
1157 DMA_PREP_INTERRUPT);
Elen Song34df42f2013-07-22 16:30:27 +08001158 desc->callback = atmel_complete_rx_dma;
1159 desc->callback_param = port;
1160 atmel_port->desc_rx = desc;
1161 atmel_port->cookie_rx = dmaengine_submit(desc);
1162
1163 return 0;
1164
1165chan_err:
1166 dev_err(port->dev, "RX channel not available, switch to pio\n");
1167 atmel_port->use_dma_rx = 0;
1168 if (atmel_port->chan_rx)
1169 atmel_release_rx_dma(port);
1170 return -EINVAL;
1171}
1172
Elen Song2e68c222013-07-22 16:30:30 +08001173static void atmel_uart_timer_callback(unsigned long data)
1174{
1175 struct uart_port *port = (void *)data;
1176 struct atmel_uart_port *atmel_port = to_atmel_uart_port(port);
1177
Nicolas Ferre98f20822016-06-26 09:44:49 +02001178 if (!atomic_read(&atmel_port->tasklet_shutdown)) {
1179 tasklet_schedule(&atmel_port->tasklet_rx);
1180 mod_timer(&atmel_port->uart_timer,
1181 jiffies + uart_poll_timeout(port));
1182 }
Elen Song2e68c222013-07-22 16:30:30 +08001183}
1184
Andrew Victor1e6c9c22006-01-10 16:59:27 +00001185/*
Remy Bohmerb843aa22008-02-08 04:21:01 -08001186 * receive interrupt handler.
1187 */
1188static void
1189atmel_handle_receive(struct uart_port *port, unsigned int pending)
1190{
Haavard Skinnemoenc811ab82008-02-08 04:21:08 -08001191 struct atmel_uart_port *atmel_port = to_atmel_uart_port(port);
Remy Bohmerb843aa22008-02-08 04:21:01 -08001192
Elen Song64e22eb2013-07-22 16:30:24 +08001193 if (atmel_use_pdc_rx(port)) {
Chip Coldwella6670612008-02-08 04:21:06 -08001194 /*
1195 * PDC receive. Just schedule the tasklet and let it
1196 * figure out the details.
1197 *
1198 * TODO: We're not handling error flags correctly at
1199 * the moment.
1200 */
1201 if (pending & (ATMEL_US_ENDRX | ATMEL_US_TIMEOUT)) {
Cyrille Pitchen4e7decd2015-07-02 15:18:11 +02001202 atmel_uart_writel(port, ATMEL_US_IDR,
1203 (ATMEL_US_ENDRX | ATMEL_US_TIMEOUT));
Nicolas Ferre98f20822016-06-26 09:44:49 +02001204 atmel_tasklet_schedule(atmel_port,
1205 &atmel_port->tasklet_rx);
Chip Coldwella6670612008-02-08 04:21:06 -08001206 }
1207
1208 if (pending & (ATMEL_US_RXBRK | ATMEL_US_OVRE |
1209 ATMEL_US_FRAME | ATMEL_US_PARE))
1210 atmel_pdc_rxerr(port, pending);
1211 }
1212
Elen Song34df42f2013-07-22 16:30:27 +08001213 if (atmel_use_dma_rx(port)) {
1214 if (pending & ATMEL_US_TIMEOUT) {
Cyrille Pitchen4e7decd2015-07-02 15:18:11 +02001215 atmel_uart_writel(port, ATMEL_US_IDR,
1216 ATMEL_US_TIMEOUT);
Nicolas Ferre98f20822016-06-26 09:44:49 +02001217 atmel_tasklet_schedule(atmel_port,
1218 &atmel_port->tasklet_rx);
Elen Song34df42f2013-07-22 16:30:27 +08001219 }
1220 }
1221
Remy Bohmerb843aa22008-02-08 04:21:01 -08001222 /* Interrupt receive */
1223 if (pending & ATMEL_US_RXRDY)
1224 atmel_rx_chars(port);
1225 else if (pending & ATMEL_US_RXBRK) {
1226 /*
1227 * End of break detected. If it came along with a
1228 * character, atmel_rx_chars will handle it.
1229 */
Cyrille Pitchen4e7decd2015-07-02 15:18:11 +02001230 atmel_uart_writel(port, ATMEL_US_CR, ATMEL_US_RSTSTA);
1231 atmel_uart_writel(port, ATMEL_US_IDR, ATMEL_US_RXBRK);
Remy Bohmerb843aa22008-02-08 04:21:01 -08001232 atmel_port->break_active = 0;
1233 }
1234}
1235
1236/*
Remy Bohmer1ecc26b2008-02-08 04:21:05 -08001237 * transmit interrupt handler. (Transmit is IRQF_NODELAY safe)
Remy Bohmerb843aa22008-02-08 04:21:01 -08001238 */
1239static void
1240atmel_handle_transmit(struct uart_port *port, unsigned int pending)
1241{
Haavard Skinnemoenc811ab82008-02-08 04:21:08 -08001242 struct atmel_uart_port *atmel_port = to_atmel_uart_port(port);
Remy Bohmer1ecc26b2008-02-08 04:21:05 -08001243
Claudio Scordinoe8faff72010-05-03 13:31:28 +01001244 if (pending & atmel_port->tx_done_mask) {
1245 /* Either PDC or interrupt transmission */
Cyrille Pitchen4e7decd2015-07-02 15:18:11 +02001246 atmel_uart_writel(port, ATMEL_US_IDR,
1247 atmel_port->tx_done_mask);
Nicolas Ferre98f20822016-06-26 09:44:49 +02001248 atmel_tasklet_schedule(atmel_port, &atmel_port->tasklet_tx);
Remy Bohmer1ecc26b2008-02-08 04:21:05 -08001249 }
Remy Bohmerb843aa22008-02-08 04:21:01 -08001250}
1251
1252/*
1253 * status flags interrupt handler.
1254 */
1255static void
1256atmel_handle_status(struct uart_port *port, unsigned int pending,
1257 unsigned int status)
1258{
Haavard Skinnemoenc811ab82008-02-08 04:21:08 -08001259 struct atmel_uart_port *atmel_port = to_atmel_uart_port(port);
Nicolas Ferre92052182016-06-17 12:05:46 +02001260 unsigned int status_change;
Remy Bohmer1ecc26b2008-02-08 04:21:05 -08001261
Remy Bohmerb843aa22008-02-08 04:21:01 -08001262 if (pending & (ATMEL_US_RIIC | ATMEL_US_DSRIC | ATMEL_US_DCDIC
Remy Bohmer1ecc26b2008-02-08 04:21:05 -08001263 | ATMEL_US_CTSIC)) {
Nicolas Ferre92052182016-06-17 12:05:46 +02001264 status_change = status ^ atmel_port->irq_status_prev;
Leilei Zhaod033e822015-04-09 10:48:15 +08001265 atmel_port->irq_status_prev = status;
Nicolas Ferre92052182016-06-17 12:05:46 +02001266
1267 if (status_change & (ATMEL_US_RI | ATMEL_US_DSR
1268 | ATMEL_US_DCD | ATMEL_US_CTS)) {
1269 /* TODO: All reads to CSR will clear these interrupts! */
1270 if (status_change & ATMEL_US_RI)
1271 port->icount.rng++;
1272 if (status_change & ATMEL_US_DSR)
1273 port->icount.dsr++;
1274 if (status_change & ATMEL_US_DCD)
1275 uart_handle_dcd_change(port, !(status & ATMEL_US_DCD));
1276 if (status_change & ATMEL_US_CTS)
1277 uart_handle_cts_change(port, !(status & ATMEL_US_CTS));
1278
1279 wake_up_interruptible(&port->state->port.delta_msr_wait);
1280 }
Remy Bohmer1ecc26b2008-02-08 04:21:05 -08001281 }
Remy Bohmerb843aa22008-02-08 04:21:01 -08001282}
1283
1284/*
Andrew Victor1e6c9c22006-01-10 16:59:27 +00001285 * Interrupt handler
1286 */
David Howells7d12e782006-10-05 14:55:46 +01001287static irqreturn_t atmel_interrupt(int irq, void *dev_id)
Andrew Victor1e6c9c22006-01-10 16:59:27 +00001288{
1289 struct uart_port *port = dev_id;
Richard Genoudab5e4e42014-05-13 20:20:45 +02001290 struct atmel_uart_port *atmel_port = to_atmel_uart_port(port);
Boris BREZILLON2c7af5b2015-03-02 10:18:18 +01001291 unsigned int status, pending, mask, pass_counter = 0;
Andrew Victor1e6c9c22006-01-10 16:59:27 +00001292
Boris BREZILLON2c7af5b2015-03-02 10:18:18 +01001293 spin_lock(&atmel_port->lock_suspended);
1294
Chip Coldwella6670612008-02-08 04:21:06 -08001295 do {
Richard Genoude0b0baa2014-05-13 20:20:44 +02001296 status = atmel_get_lines_status(port);
Cyrille Pitchen4e7decd2015-07-02 15:18:11 +02001297 mask = atmel_uart_readl(port, ATMEL_US_IMR);
Boris BREZILLON2c7af5b2015-03-02 10:18:18 +01001298 pending = status & mask;
Chip Coldwella6670612008-02-08 04:21:06 -08001299 if (!pending)
1300 break;
1301
Boris BREZILLON2c7af5b2015-03-02 10:18:18 +01001302 if (atmel_port->suspended) {
1303 atmel_port->pending |= pending;
1304 atmel_port->pending_status = status;
Cyrille Pitchen4e7decd2015-07-02 15:18:11 +02001305 atmel_uart_writel(port, ATMEL_US_IDR, mask);
Boris BREZILLON2c7af5b2015-03-02 10:18:18 +01001306 pm_system_wakeup();
1307 break;
1308 }
1309
Remy Bohmerb843aa22008-02-08 04:21:01 -08001310 atmel_handle_receive(port, pending);
1311 atmel_handle_status(port, pending, status);
1312 atmel_handle_transmit(port, pending);
Chip Coldwella6670612008-02-08 04:21:06 -08001313 } while (pass_counter++ < ATMEL_ISR_PASS_LIMIT);
Andrew Victor1e6c9c22006-01-10 16:59:27 +00001314
Boris BREZILLON2c7af5b2015-03-02 10:18:18 +01001315 spin_unlock(&atmel_port->lock_suspended);
1316
Haavard Skinnemoen0400b692008-02-23 15:23:36 -08001317 return pass_counter ? IRQ_HANDLED : IRQ_NONE;
Andrew Victor1e6c9c22006-01-10 16:59:27 +00001318}
1319
Elen Songa930e522013-07-22 16:30:25 +08001320static void atmel_release_tx_pdc(struct uart_port *port)
1321{
1322 struct atmel_uart_port *atmel_port = to_atmel_uart_port(port);
1323 struct atmel_dma_buffer *pdc = &atmel_port->pdc_tx;
1324
1325 dma_unmap_single(port->dev,
1326 pdc->dma_addr,
1327 pdc->dma_size,
1328 DMA_TO_DEVICE);
1329}
1330
Chip Coldwella6670612008-02-08 04:21:06 -08001331/*
1332 * Called from tasklet with ENDTX and TXBUFE interrupts disabled.
1333 */
Elen Song64e22eb2013-07-22 16:30:24 +08001334static void atmel_tx_pdc(struct uart_port *port)
Chip Coldwella6670612008-02-08 04:21:06 -08001335{
Haavard Skinnemoenc811ab82008-02-08 04:21:08 -08001336 struct atmel_uart_port *atmel_port = to_atmel_uart_port(port);
Alan Coxebd2c8f2009-09-19 13:13:28 -07001337 struct circ_buf *xmit = &port->state->xmit;
Chip Coldwella6670612008-02-08 04:21:06 -08001338 struct atmel_dma_buffer *pdc = &atmel_port->pdc_tx;
1339 int count;
1340
Michael Trimarchiba0657f2008-04-02 13:04:41 -07001341 /* nothing left to transmit? */
Cyrille Pitchen4e7decd2015-07-02 15:18:11 +02001342 if (atmel_uart_readl(port, ATMEL_PDC_TCR))
Michael Trimarchiba0657f2008-04-02 13:04:41 -07001343 return;
1344
Chip Coldwella6670612008-02-08 04:21:06 -08001345 xmit->tail += pdc->ofs;
1346 xmit->tail &= UART_XMIT_SIZE - 1;
1347
1348 port->icount.tx += pdc->ofs;
1349 pdc->ofs = 0;
1350
Michael Trimarchiba0657f2008-04-02 13:04:41 -07001351 /* more to transmit - setup next transfer */
Chip Coldwella6670612008-02-08 04:21:06 -08001352
Michael Trimarchiba0657f2008-04-02 13:04:41 -07001353 /* disable PDC transmit */
Cyrille Pitchen4e7decd2015-07-02 15:18:11 +02001354 atmel_uart_writel(port, ATMEL_PDC_PTCR, ATMEL_PDC_TXTDIS);
Michael Trimarchiba0657f2008-04-02 13:04:41 -07001355
Itai Levi1f140812009-01-15 13:50:43 -08001356 if (!uart_circ_empty(xmit) && !uart_tx_stopped(port)) {
Chip Coldwella6670612008-02-08 04:21:06 -08001357 dma_sync_single_for_device(port->dev,
1358 pdc->dma_addr,
1359 pdc->dma_size,
1360 DMA_TO_DEVICE);
1361
1362 count = CIRC_CNT_TO_END(xmit->head, xmit->tail, UART_XMIT_SIZE);
1363 pdc->ofs = count;
1364
Cyrille Pitchen4e7decd2015-07-02 15:18:11 +02001365 atmel_uart_writel(port, ATMEL_PDC_TPR,
1366 pdc->dma_addr + xmit->tail);
1367 atmel_uart_writel(port, ATMEL_PDC_TCR, count);
Claudio Scordinoe8faff72010-05-03 13:31:28 +01001368 /* re-enable PDC transmit */
Cyrille Pitchen4e7decd2015-07-02 15:18:11 +02001369 atmel_uart_writel(port, ATMEL_PDC_PTCR, ATMEL_PDC_TXTEN);
Claudio Scordinoe8faff72010-05-03 13:31:28 +01001370 /* Enable interrupts */
Cyrille Pitchen4e7decd2015-07-02 15:18:11 +02001371 atmel_uart_writel(port, ATMEL_US_IER,
1372 atmel_port->tx_done_mask);
Claudio Scordinoe8faff72010-05-03 13:31:28 +01001373 } else {
Ricardo Ribalda Delgado13bd3e62014-11-06 09:22:56 +01001374 if ((port->rs485.flags & SER_RS485_ENABLED) &&
1375 !(port->rs485.flags & SER_RS485_RX_DURING_TX)) {
Claudio Scordinoe8faff72010-05-03 13:31:28 +01001376 /* DMA done, stop TX, start RX for RS485 */
1377 atmel_start_rx(port);
1378 }
Chip Coldwella6670612008-02-08 04:21:06 -08001379 }
1380
1381 if (uart_circ_chars_pending(xmit) < WAKEUP_CHARS)
1382 uart_write_wakeup(port);
1383}
1384
Elen Songa930e522013-07-22 16:30:25 +08001385static int atmel_prepare_tx_pdc(struct uart_port *port)
1386{
1387 struct atmel_uart_port *atmel_port = to_atmel_uart_port(port);
1388 struct atmel_dma_buffer *pdc = &atmel_port->pdc_tx;
1389 struct circ_buf *xmit = &port->state->xmit;
1390
1391 pdc->buf = xmit->buf;
1392 pdc->dma_addr = dma_map_single(port->dev,
1393 pdc->buf,
1394 UART_XMIT_SIZE,
1395 DMA_TO_DEVICE);
1396 pdc->dma_size = UART_XMIT_SIZE;
1397 pdc->ofs = 0;
1398
1399 return 0;
1400}
1401
Remy Bohmer1ecc26b2008-02-08 04:21:05 -08001402static void atmel_rx_from_ring(struct uart_port *port)
1403{
Haavard Skinnemoenc811ab82008-02-08 04:21:08 -08001404 struct atmel_uart_port *atmel_port = to_atmel_uart_port(port);
Remy Bohmer1ecc26b2008-02-08 04:21:05 -08001405 struct circ_buf *ring = &atmel_port->rx_ring;
1406 unsigned int flg;
1407 unsigned int status;
1408
1409 while (ring->head != ring->tail) {
1410 struct atmel_uart_char c;
1411
1412 /* Make sure c is loaded after head. */
1413 smp_rmb();
1414
1415 c = ((struct atmel_uart_char *)ring->buf)[ring->tail];
1416
1417 ring->tail = (ring->tail + 1) & (ATMEL_SERIAL_RINGSIZE - 1);
1418
1419 port->icount.rx++;
1420 status = c.status;
1421 flg = TTY_NORMAL;
1422
1423 /*
1424 * note that the error handling code is
1425 * out of the main execution path
1426 */
1427 if (unlikely(status & (ATMEL_US_PARE | ATMEL_US_FRAME
1428 | ATMEL_US_OVRE | ATMEL_US_RXBRK))) {
1429 if (status & ATMEL_US_RXBRK) {
1430 /* ignore side-effect */
1431 status &= ~(ATMEL_US_PARE | ATMEL_US_FRAME);
1432
1433 port->icount.brk++;
1434 if (uart_handle_break(port))
1435 continue;
1436 }
1437 if (status & ATMEL_US_PARE)
1438 port->icount.parity++;
1439 if (status & ATMEL_US_FRAME)
1440 port->icount.frame++;
1441 if (status & ATMEL_US_OVRE)
1442 port->icount.overrun++;
1443
1444 status &= port->read_status_mask;
1445
1446 if (status & ATMEL_US_RXBRK)
1447 flg = TTY_BREAK;
1448 else if (status & ATMEL_US_PARE)
1449 flg = TTY_PARITY;
1450 else if (status & ATMEL_US_FRAME)
1451 flg = TTY_FRAME;
1452 }
1453
1454
1455 if (uart_handle_sysrq_char(port, c.ch))
1456 continue;
1457
1458 uart_insert_char(port, status, ATMEL_US_OVRE, c.ch, flg);
1459 }
1460
1461 /*
1462 * Drop the lock here since it might end up calling
1463 * uart_start(), which takes the lock.
1464 */
1465 spin_unlock(&port->lock);
Jiri Slaby2e124b42013-01-03 15:53:06 +01001466 tty_flip_buffer_push(&port->state->port);
Remy Bohmer1ecc26b2008-02-08 04:21:05 -08001467 spin_lock(&port->lock);
1468}
1469
Elen Songa930e522013-07-22 16:30:25 +08001470static void atmel_release_rx_pdc(struct uart_port *port)
1471{
1472 struct atmel_uart_port *atmel_port = to_atmel_uart_port(port);
1473 int i;
1474
1475 for (i = 0; i < 2; i++) {
1476 struct atmel_dma_buffer *pdc = &atmel_port->pdc_rx[i];
1477
1478 dma_unmap_single(port->dev,
1479 pdc->dma_addr,
1480 pdc->dma_size,
1481 DMA_FROM_DEVICE);
1482 kfree(pdc->buf);
1483 }
1484}
1485
Elen Song64e22eb2013-07-22 16:30:24 +08001486static void atmel_rx_from_pdc(struct uart_port *port)
Chip Coldwella6670612008-02-08 04:21:06 -08001487{
Haavard Skinnemoenc811ab82008-02-08 04:21:08 -08001488 struct atmel_uart_port *atmel_port = to_atmel_uart_port(port);
Jiri Slaby05c7cd32013-01-03 15:53:04 +01001489 struct tty_port *tport = &port->state->port;
Chip Coldwella6670612008-02-08 04:21:06 -08001490 struct atmel_dma_buffer *pdc;
1491 int rx_idx = atmel_port->pdc_rx_idx;
1492 unsigned int head;
1493 unsigned int tail;
1494 unsigned int count;
1495
1496 do {
1497 /* Reset the UART timeout early so that we don't miss one */
Cyrille Pitchen4e7decd2015-07-02 15:18:11 +02001498 atmel_uart_writel(port, ATMEL_US_CR, ATMEL_US_STTTO);
Chip Coldwella6670612008-02-08 04:21:06 -08001499
1500 pdc = &atmel_port->pdc_rx[rx_idx];
Cyrille Pitchen4e7decd2015-07-02 15:18:11 +02001501 head = atmel_uart_readl(port, ATMEL_PDC_RPR) - pdc->dma_addr;
Chip Coldwella6670612008-02-08 04:21:06 -08001502 tail = pdc->ofs;
1503
1504 /* If the PDC has switched buffers, RPR won't contain
1505 * any address within the current buffer. Since head
1506 * is unsigned, we just need a one-way comparison to
1507 * find out.
1508 *
1509 * In this case, we just need to consume the entire
1510 * buffer and resubmit it for DMA. This will clear the
1511 * ENDRX bit as well, so that we can safely re-enable
1512 * all interrupts below.
1513 */
1514 head = min(head, pdc->dma_size);
1515
1516 if (likely(head != tail)) {
1517 dma_sync_single_for_cpu(port->dev, pdc->dma_addr,
1518 pdc->dma_size, DMA_FROM_DEVICE);
1519
1520 /*
1521 * head will only wrap around when we recycle
1522 * the DMA buffer, and when that happens, we
1523 * explicitly set tail to 0. So head will
1524 * always be greater than tail.
1525 */
1526 count = head - tail;
1527
Jiri Slaby05c7cd32013-01-03 15:53:04 +01001528 tty_insert_flip_string(tport, pdc->buf + pdc->ofs,
1529 count);
Chip Coldwella6670612008-02-08 04:21:06 -08001530
1531 dma_sync_single_for_device(port->dev, pdc->dma_addr,
1532 pdc->dma_size, DMA_FROM_DEVICE);
1533
1534 port->icount.rx += count;
1535 pdc->ofs = head;
1536 }
1537
1538 /*
1539 * If the current buffer is full, we need to check if
1540 * the next one contains any additional data.
1541 */
1542 if (head >= pdc->dma_size) {
1543 pdc->ofs = 0;
Cyrille Pitchen4e7decd2015-07-02 15:18:11 +02001544 atmel_uart_writel(port, ATMEL_PDC_RNPR, pdc->dma_addr);
1545 atmel_uart_writel(port, ATMEL_PDC_RNCR, pdc->dma_size);
Chip Coldwella6670612008-02-08 04:21:06 -08001546
1547 rx_idx = !rx_idx;
1548 atmel_port->pdc_rx_idx = rx_idx;
1549 }
1550 } while (head >= pdc->dma_size);
1551
1552 /*
1553 * Drop the lock here since it might end up calling
1554 * uart_start(), which takes the lock.
1555 */
1556 spin_unlock(&port->lock);
Jiri Slaby2e124b42013-01-03 15:53:06 +01001557 tty_flip_buffer_push(tport);
Chip Coldwella6670612008-02-08 04:21:06 -08001558 spin_lock(&port->lock);
1559
Cyrille Pitchen4e7decd2015-07-02 15:18:11 +02001560 atmel_uart_writel(port, ATMEL_US_IER,
1561 ATMEL_US_ENDRX | ATMEL_US_TIMEOUT);
Chip Coldwella6670612008-02-08 04:21:06 -08001562}
1563
Elen Songa930e522013-07-22 16:30:25 +08001564static int atmel_prepare_rx_pdc(struct uart_port *port)
1565{
1566 struct atmel_uart_port *atmel_port = to_atmel_uart_port(port);
1567 int i;
1568
1569 for (i = 0; i < 2; i++) {
1570 struct atmel_dma_buffer *pdc = &atmel_port->pdc_rx[i];
1571
1572 pdc->buf = kmalloc(PDC_BUFFER_SIZE, GFP_KERNEL);
1573 if (pdc->buf == NULL) {
1574 if (i != 0) {
1575 dma_unmap_single(port->dev,
1576 atmel_port->pdc_rx[0].dma_addr,
1577 PDC_BUFFER_SIZE,
1578 DMA_FROM_DEVICE);
1579 kfree(atmel_port->pdc_rx[0].buf);
1580 }
1581 atmel_port->use_pdc_rx = 0;
1582 return -ENOMEM;
1583 }
1584 pdc->dma_addr = dma_map_single(port->dev,
1585 pdc->buf,
1586 PDC_BUFFER_SIZE,
1587 DMA_FROM_DEVICE);
1588 pdc->dma_size = PDC_BUFFER_SIZE;
1589 pdc->ofs = 0;
1590 }
1591
1592 atmel_port->pdc_rx_idx = 0;
1593
Cyrille Pitchen4e7decd2015-07-02 15:18:11 +02001594 atmel_uart_writel(port, ATMEL_PDC_RPR, atmel_port->pdc_rx[0].dma_addr);
1595 atmel_uart_writel(port, ATMEL_PDC_RCR, PDC_BUFFER_SIZE);
Elen Songa930e522013-07-22 16:30:25 +08001596
Cyrille Pitchen4e7decd2015-07-02 15:18:11 +02001597 atmel_uart_writel(port, ATMEL_PDC_RNPR,
1598 atmel_port->pdc_rx[1].dma_addr);
1599 atmel_uart_writel(port, ATMEL_PDC_RNCR, PDC_BUFFER_SIZE);
Elen Songa930e522013-07-22 16:30:25 +08001600
1601 return 0;
1602}
1603
Remy Bohmer1ecc26b2008-02-08 04:21:05 -08001604/*
1605 * tasklet handling tty stuff outside the interrupt handler.
1606 */
Nicolas Ferre00e8e6582016-06-17 12:05:47 +02001607static void atmel_tasklet_rx_func(unsigned long data)
Remy Bohmer1ecc26b2008-02-08 04:21:05 -08001608{
1609 struct uart_port *port = (struct uart_port *)data;
Haavard Skinnemoenc811ab82008-02-08 04:21:08 -08001610 struct atmel_uart_port *atmel_port = to_atmel_uart_port(port);
Remy Bohmer1ecc26b2008-02-08 04:21:05 -08001611
1612 /* The interrupt handler does not take the lock */
1613 spin_lock(&port->lock);
Elen Songa930e522013-07-22 16:30:25 +08001614 atmel_port->schedule_rx(port);
Nicolas Ferre00e8e6582016-06-17 12:05:47 +02001615 spin_unlock(&port->lock);
1616}
Remy Bohmer1ecc26b2008-02-08 04:21:05 -08001617
Nicolas Ferre00e8e6582016-06-17 12:05:47 +02001618static void atmel_tasklet_tx_func(unsigned long data)
1619{
1620 struct uart_port *port = (struct uart_port *)data;
1621 struct atmel_uart_port *atmel_port = to_atmel_uart_port(port);
1622
1623 /* The interrupt handler does not take the lock */
1624 spin_lock(&port->lock);
1625 atmel_port->schedule_tx(port);
Remy Bohmer1ecc26b2008-02-08 04:21:05 -08001626 spin_unlock(&port->lock);
1627}
1628
Leilei Zhao4a1e8882015-02-27 16:07:16 +08001629static void atmel_init_property(struct atmel_uart_port *atmel_port,
Elen Song33d64c42013-07-22 16:30:28 +08001630 struct platform_device *pdev)
1631{
1632 struct device_node *np = pdev->dev.of_node;
Jingoo Han574de552013-07-30 17:06:57 +09001633 struct atmel_uart_data *pdata = dev_get_platdata(&pdev->dev);
Elen Song33d64c42013-07-22 16:30:28 +08001634
1635 if (np) {
1636 /* DMA/PDC usage specification */
1637 if (of_get_property(np, "atmel,use-dma-rx", NULL)) {
1638 if (of_get_property(np, "dmas", NULL)) {
1639 atmel_port->use_dma_rx = true;
1640 atmel_port->use_pdc_rx = false;
1641 } else {
1642 atmel_port->use_dma_rx = false;
1643 atmel_port->use_pdc_rx = true;
1644 }
1645 } else {
1646 atmel_port->use_dma_rx = false;
1647 atmel_port->use_pdc_rx = false;
1648 }
1649
1650 if (of_get_property(np, "atmel,use-dma-tx", NULL)) {
1651 if (of_get_property(np, "dmas", NULL)) {
1652 atmel_port->use_dma_tx = true;
1653 atmel_port->use_pdc_tx = false;
1654 } else {
1655 atmel_port->use_dma_tx = false;
1656 atmel_port->use_pdc_tx = true;
1657 }
1658 } else {
1659 atmel_port->use_dma_tx = false;
1660 atmel_port->use_pdc_tx = false;
1661 }
1662
1663 } else {
1664 atmel_port->use_pdc_rx = pdata->use_dma_rx;
1665 atmel_port->use_pdc_tx = pdata->use_dma_tx;
1666 atmel_port->use_dma_rx = false;
1667 atmel_port->use_dma_tx = false;
1668 }
1669
Elen Song33d64c42013-07-22 16:30:28 +08001670}
1671
Ricardo Ribalda Delgado13bd3e62014-11-06 09:22:56 +01001672static void atmel_init_rs485(struct uart_port *port,
Elen Song33d64c42013-07-22 16:30:28 +08001673 struct platform_device *pdev)
1674{
1675 struct device_node *np = pdev->dev.of_node;
Jingoo Han574de552013-07-30 17:06:57 +09001676 struct atmel_uart_data *pdata = dev_get_platdata(&pdev->dev);
Elen Song33d64c42013-07-22 16:30:28 +08001677
1678 if (np) {
Jiri Slaby77bdec62015-10-11 15:22:44 +02001679 struct serial_rs485 *rs485conf = &port->rs485;
Elen Song33d64c42013-07-22 16:30:28 +08001680 u32 rs485_delay[2];
1681 /* rs485 properties */
1682 if (of_property_read_u32_array(np, "rs485-rts-delay",
1683 rs485_delay, 2) == 0) {
Elen Song33d64c42013-07-22 16:30:28 +08001684 rs485conf->delay_rts_before_send = rs485_delay[0];
1685 rs485conf->delay_rts_after_send = rs485_delay[1];
1686 rs485conf->flags = 0;
Jiri Slaby77bdec62015-10-11 15:22:44 +02001687 }
Elen Song33d64c42013-07-22 16:30:28 +08001688
1689 if (of_get_property(np, "rs485-rx-during-tx", NULL))
1690 rs485conf->flags |= SER_RS485_RX_DURING_TX;
1691
1692 if (of_get_property(np, "linux,rs485-enabled-at-boot-time",
1693 NULL))
1694 rs485conf->flags |= SER_RS485_ENABLED;
Elen Song33d64c42013-07-22 16:30:28 +08001695 } else {
Ricardo Ribalda Delgado13bd3e62014-11-06 09:22:56 +01001696 port->rs485 = pdata->rs485;
Elen Song33d64c42013-07-22 16:30:28 +08001697 }
1698
1699}
1700
Elen Songa930e522013-07-22 16:30:25 +08001701static void atmel_set_ops(struct uart_port *port)
1702{
1703 struct atmel_uart_port *atmel_port = to_atmel_uart_port(port);
1704
Elen Song34df42f2013-07-22 16:30:27 +08001705 if (atmel_use_dma_rx(port)) {
1706 atmel_port->prepare_rx = &atmel_prepare_rx_dma;
1707 atmel_port->schedule_rx = &atmel_rx_from_dma;
1708 atmel_port->release_rx = &atmel_release_rx_dma;
1709 } else if (atmel_use_pdc_rx(port)) {
Elen Songa930e522013-07-22 16:30:25 +08001710 atmel_port->prepare_rx = &atmel_prepare_rx_pdc;
1711 atmel_port->schedule_rx = &atmel_rx_from_pdc;
1712 atmel_port->release_rx = &atmel_release_rx_pdc;
1713 } else {
1714 atmel_port->prepare_rx = NULL;
1715 atmel_port->schedule_rx = &atmel_rx_from_ring;
1716 atmel_port->release_rx = NULL;
1717 }
1718
Elen Song08f738b2013-07-22 16:30:26 +08001719 if (atmel_use_dma_tx(port)) {
1720 atmel_port->prepare_tx = &atmel_prepare_tx_dma;
1721 atmel_port->schedule_tx = &atmel_tx_dma;
1722 atmel_port->release_tx = &atmel_release_tx_dma;
1723 } else if (atmel_use_pdc_tx(port)) {
Elen Songa930e522013-07-22 16:30:25 +08001724 atmel_port->prepare_tx = &atmel_prepare_tx_pdc;
1725 atmel_port->schedule_tx = &atmel_tx_pdc;
1726 atmel_port->release_tx = &atmel_release_tx_pdc;
1727 } else {
1728 atmel_port->prepare_tx = NULL;
1729 atmel_port->schedule_tx = &atmel_tx_chars;
1730 atmel_port->release_tx = NULL;
1731 }
1732}
1733
Andrew Victor1e6c9c22006-01-10 16:59:27 +00001734/*
Elen Song055560b2013-07-22 16:30:29 +08001735 * Get ip name usart or uart
1736 */
Nicolas Ferre892db582013-10-17 17:37:11 +02001737static void atmel_get_ip_name(struct uart_port *port)
Elen Song055560b2013-07-22 16:30:29 +08001738{
1739 struct atmel_uart_port *atmel_port = to_atmel_uart_port(port);
Cyrille Pitchen4e7decd2015-07-02 15:18:11 +02001740 int name = atmel_uart_readl(port, ATMEL_US_NAME);
Nicolas Ferre731d9ca2013-10-17 17:37:12 +02001741 u32 version;
Nicolas Ferre1d673fb2016-01-26 11:26:15 +01001742 u32 usart, dbgu_uart, new_uart;
Nicolas Ferre4b769372016-01-26 11:26:14 +01001743 /* ASCII decoding for IP version */
1744 usart = 0x55534152; /* USAR(T) */
1745 dbgu_uart = 0x44424755; /* DBGU */
Nicolas Ferre1d673fb2016-01-26 11:26:15 +01001746 new_uart = 0x55415254; /* UART */
Elen Song055560b2013-07-22 16:30:29 +08001747
Nicolas Ferre4b769372016-01-26 11:26:14 +01001748 atmel_port->has_hw_timer = false;
Elen Song055560b2013-07-22 16:30:29 +08001749
Ludovic Desroches2958cce2016-02-22 15:18:55 +01001750 if (name == new_uart) {
1751 dev_dbg(port->dev, "Uart with hw timer");
Nicolas Ferre4b769372016-01-26 11:26:14 +01001752 atmel_port->has_hw_timer = true;
Ludovic Desroches2958cce2016-02-22 15:18:55 +01001753 atmel_port->rtor = ATMEL_UA_RTOR;
1754 } else if (name == usart) {
1755 dev_dbg(port->dev, "Usart\n");
1756 atmel_port->has_hw_timer = true;
1757 atmel_port->rtor = ATMEL_US_RTOR;
Nicolas Ferre4b769372016-01-26 11:26:14 +01001758 } else if (name == dbgu_uart) {
1759 dev_dbg(port->dev, "Dbgu or uart without hw timer\n");
Elen Song055560b2013-07-22 16:30:29 +08001760 } else {
Nicolas Ferre731d9ca2013-10-17 17:37:12 +02001761 /* fallback for older SoCs: use version field */
Cyrille Pitchen4e7decd2015-07-02 15:18:11 +02001762 version = atmel_uart_readl(port, ATMEL_US_VERSION);
Nicolas Ferre731d9ca2013-10-17 17:37:12 +02001763 switch (version) {
1764 case 0x302:
1765 case 0x10213:
1766 dev_dbg(port->dev, "This version is usart\n");
Nicolas Ferre4b769372016-01-26 11:26:14 +01001767 atmel_port->has_hw_timer = true;
Ludovic Desroches2958cce2016-02-22 15:18:55 +01001768 atmel_port->rtor = ATMEL_US_RTOR;
Nicolas Ferre731d9ca2013-10-17 17:37:12 +02001769 break;
1770 case 0x203:
1771 case 0x10202:
1772 dev_dbg(port->dev, "This version is uart\n");
Nicolas Ferre731d9ca2013-10-17 17:37:12 +02001773 break;
1774 default:
1775 dev_err(port->dev, "Not supported ip name nor version, set to uart\n");
1776 }
Elen Song055560b2013-07-22 16:30:29 +08001777 }
Elen Song055560b2013-07-22 16:30:29 +08001778}
1779
1780/*
Andrew Victor1e6c9c22006-01-10 16:59:27 +00001781 * Perform initialization and enable port for reception
1782 */
Haavard Skinnemoen7192f922006-10-04 16:02:05 +02001783static int atmel_startup(struct uart_port *port)
Andrew Victor1e6c9c22006-01-10 16:59:27 +00001784{
Elen Song33d64c42013-07-22 16:30:28 +08001785 struct platform_device *pdev = to_platform_device(port->dev);
Haavard Skinnemoenc811ab82008-02-08 04:21:08 -08001786 struct atmel_uart_port *atmel_port = to_atmel_uart_port(port);
Alan Coxebd2c8f2009-09-19 13:13:28 -07001787 struct tty_struct *tty = port->state->port.tty;
Andrew Victor1e6c9c22006-01-10 16:59:27 +00001788 int retval;
1789
1790 /*
1791 * Ensure that no interrupts are enabled otherwise when
1792 * request_irq() is called we could get stuck trying to
1793 * handle an unexpected interrupt
1794 */
Cyrille Pitchen4e7decd2015-07-02 15:18:11 +02001795 atmel_uart_writel(port, ATMEL_US_IDR, -1);
Richard Genoudab5e4e42014-05-13 20:20:45 +02001796 atmel_port->ms_irq_enabled = false;
Andrew Victor1e6c9c22006-01-10 16:59:27 +00001797
1798 /*
1799 * Allocate the IRQ
1800 */
Boris BREZILLON2c7af5b2015-03-02 10:18:18 +01001801 retval = request_irq(port->irq, atmel_interrupt,
1802 IRQF_SHARED | IRQF_COND_SUSPEND,
Haavard Skinnemoenae161062008-02-08 04:21:08 -08001803 tty ? tty->name : "atmel_serial", port);
Andrew Victor1e6c9c22006-01-10 16:59:27 +00001804 if (retval) {
Richard Genoudddaa6032014-02-26 17:19:45 +01001805 dev_err(port->dev, "atmel_startup - Can't get irq\n");
Andrew Victor1e6c9c22006-01-10 16:59:27 +00001806 return retval;
1807 }
1808
Nicolas Ferre98f20822016-06-26 09:44:49 +02001809 atomic_set(&atmel_port->tasklet_shutdown, 0);
1810 tasklet_init(&atmel_port->tasklet_rx, atmel_tasklet_rx_func,
1811 (unsigned long)port);
1812 tasklet_init(&atmel_port->tasklet_tx, atmel_tasklet_tx_func,
1813 (unsigned long)port);
Leilei Zhao1e125782015-02-27 16:07:18 +08001814
Richard Genoudab5e4e42014-05-13 20:20:45 +02001815 /*
Chip Coldwella6670612008-02-08 04:21:06 -08001816 * Initialize DMA (if necessary)
1817 */
Elen Song33d64c42013-07-22 16:30:28 +08001818 atmel_init_property(atmel_port, pdev);
Leilei Zhao4d9628a2015-02-27 16:07:17 +08001819 atmel_set_ops(port);
Elen Song33d64c42013-07-22 16:30:28 +08001820
Elen Songa930e522013-07-22 16:30:25 +08001821 if (atmel_port->prepare_rx) {
1822 retval = atmel_port->prepare_rx(port);
1823 if (retval < 0)
1824 atmel_set_ops(port);
Chip Coldwella6670612008-02-08 04:21:06 -08001825 }
1826
Elen Songa930e522013-07-22 16:30:25 +08001827 if (atmel_port->prepare_tx) {
1828 retval = atmel_port->prepare_tx(port);
1829 if (retval < 0)
1830 atmel_set_ops(port);
1831 }
Andrew Victor1e6c9c22006-01-10 16:59:27 +00001832
Cyrille Pitchenb5199d42015-07-02 15:18:12 +02001833 /*
1834 * Enable FIFO when available
1835 */
1836 if (atmel_port->fifo_size) {
1837 unsigned int txrdym = ATMEL_US_ONE_DATA;
1838 unsigned int rxrdym = ATMEL_US_ONE_DATA;
1839 unsigned int fmr;
1840
1841 atmel_uart_writel(port, ATMEL_US_CR,
1842 ATMEL_US_FIFOEN |
1843 ATMEL_US_RXFCLR |
1844 ATMEL_US_TXFLCLR);
1845
Cyrille Pitchen5f258b32015-07-02 15:18:13 +02001846 if (atmel_use_dma_tx(port))
1847 txrdym = ATMEL_US_FOUR_DATA;
1848
Cyrille Pitchenb5199d42015-07-02 15:18:12 +02001849 fmr = ATMEL_US_TXRDYM(txrdym) | ATMEL_US_RXRDYM(rxrdym);
1850 if (atmel_port->rts_high &&
1851 atmel_port->rts_low)
1852 fmr |= ATMEL_US_FRTSC |
1853 ATMEL_US_RXFTHRES(atmel_port->rts_high) |
1854 ATMEL_US_RXFTHRES2(atmel_port->rts_low);
1855
1856 atmel_uart_writel(port, ATMEL_US_FMR, fmr);
1857 }
1858
Atsushi Nemoto27c0c8e2009-02-18 14:48:28 -08001859 /* Save current CSR for comparison in atmel_tasklet_func() */
Richard Genoude0b0baa2014-05-13 20:20:44 +02001860 atmel_port->irq_status_prev = atmel_get_lines_status(port);
Atsushi Nemoto27c0c8e2009-02-18 14:48:28 -08001861
Andrew Victor1e6c9c22006-01-10 16:59:27 +00001862 /*
1863 * Finally, enable the serial port
1864 */
Cyrille Pitchen4e7decd2015-07-02 15:18:11 +02001865 atmel_uart_writel(port, ATMEL_US_CR, ATMEL_US_RSTSTA | ATMEL_US_RSTRX);
Remy Bohmerb843aa22008-02-08 04:21:01 -08001866 /* enable xmit & rcvr */
Cyrille Pitchen4e7decd2015-07-02 15:18:11 +02001867 atmel_uart_writel(port, ATMEL_US_CR, ATMEL_US_TXEN | ATMEL_US_RXEN);
Andrew Victorafefc412006-06-19 19:53:19 +01001868
Marek Roszko8bc661b2014-01-10 10:33:11 +01001869 setup_timer(&atmel_port->uart_timer,
1870 atmel_uart_timer_callback,
1871 (unsigned long)port);
1872
Elen Song64e22eb2013-07-22 16:30:24 +08001873 if (atmel_use_pdc_rx(port)) {
Chip Coldwella6670612008-02-08 04:21:06 -08001874 /* set UART timeout */
Nicolas Ferre4b769372016-01-26 11:26:14 +01001875 if (!atmel_port->has_hw_timer) {
Elen Song2e68c222013-07-22 16:30:30 +08001876 mod_timer(&atmel_port->uart_timer,
1877 jiffies + uart_poll_timeout(port));
1878 /* set USART timeout */
1879 } else {
Ludovic Desroches2958cce2016-02-22 15:18:55 +01001880 atmel_uart_writel(port, atmel_port->rtor,
1881 PDC_RX_TIMEOUT);
Cyrille Pitchen4e7decd2015-07-02 15:18:11 +02001882 atmel_uart_writel(port, ATMEL_US_CR, ATMEL_US_STTTO);
Chip Coldwella6670612008-02-08 04:21:06 -08001883
Cyrille Pitchen4e7decd2015-07-02 15:18:11 +02001884 atmel_uart_writel(port, ATMEL_US_IER,
1885 ATMEL_US_ENDRX | ATMEL_US_TIMEOUT);
Elen Song2e68c222013-07-22 16:30:30 +08001886 }
Chip Coldwella6670612008-02-08 04:21:06 -08001887 /* enable PDC controller */
Cyrille Pitchen4e7decd2015-07-02 15:18:11 +02001888 atmel_uart_writel(port, ATMEL_PDC_PTCR, ATMEL_PDC_RXTEN);
Elen Song34df42f2013-07-22 16:30:27 +08001889 } else if (atmel_use_dma_rx(port)) {
Elen Song2e68c222013-07-22 16:30:30 +08001890 /* set UART timeout */
Nicolas Ferre4b769372016-01-26 11:26:14 +01001891 if (!atmel_port->has_hw_timer) {
Elen Song2e68c222013-07-22 16:30:30 +08001892 mod_timer(&atmel_port->uart_timer,
1893 jiffies + uart_poll_timeout(port));
1894 /* set USART timeout */
1895 } else {
Ludovic Desroches2958cce2016-02-22 15:18:55 +01001896 atmel_uart_writel(port, atmel_port->rtor,
1897 PDC_RX_TIMEOUT);
Cyrille Pitchen4e7decd2015-07-02 15:18:11 +02001898 atmel_uart_writel(port, ATMEL_US_CR, ATMEL_US_STTTO);
Elen Song34df42f2013-07-22 16:30:27 +08001899
Cyrille Pitchen4e7decd2015-07-02 15:18:11 +02001900 atmel_uart_writel(port, ATMEL_US_IER,
1901 ATMEL_US_TIMEOUT);
Elen Song2e68c222013-07-22 16:30:30 +08001902 }
Chip Coldwella6670612008-02-08 04:21:06 -08001903 } else {
1904 /* enable receive only */
Cyrille Pitchen4e7decd2015-07-02 15:18:11 +02001905 atmel_uart_writel(port, ATMEL_US_IER, ATMEL_US_RXRDY);
Chip Coldwella6670612008-02-08 04:21:06 -08001906 }
Andrew Victorafefc412006-06-19 19:53:19 +01001907
Andrew Victor1e6c9c22006-01-10 16:59:27 +00001908 return 0;
1909}
1910
1911/*
Peter Hurley479e9b92014-10-16 16:54:18 -04001912 * Flush any TX data submitted for DMA. Called when the TX circular
1913 * buffer is reset.
1914 */
1915static void atmel_flush_buffer(struct uart_port *port)
1916{
1917 struct atmel_uart_port *atmel_port = to_atmel_uart_port(port);
1918
1919 if (atmel_use_pdc_tx(port)) {
Cyrille Pitchen4e7decd2015-07-02 15:18:11 +02001920 atmel_uart_writel(port, ATMEL_PDC_TCR, 0);
Peter Hurley479e9b92014-10-16 16:54:18 -04001921 atmel_port->pdc_tx.ofs = 0;
1922 }
1923}
1924
1925/*
Andrew Victor1e6c9c22006-01-10 16:59:27 +00001926 * Disable the port
1927 */
Haavard Skinnemoen7192f922006-10-04 16:02:05 +02001928static void atmel_shutdown(struct uart_port *port)
Andrew Victor1e6c9c22006-01-10 16:59:27 +00001929{
Haavard Skinnemoenc811ab82008-02-08 04:21:08 -08001930 struct atmel_uart_port *atmel_port = to_atmel_uart_port(port);
Marek Roszko0cc7c6c2014-01-07 11:45:06 +01001931
Nicolas Ferre98f20822016-06-26 09:44:49 +02001932 /* Disable interrupts at device level */
1933 atmel_uart_writel(port, ATMEL_US_IDR, -1);
1934
1935 /* Prevent spurious interrupts from scheduling the tasklet */
1936 atomic_inc(&atmel_port->tasklet_shutdown);
1937
Chip Coldwella6670612008-02-08 04:21:06 -08001938 /*
Marek Roszko8bc661b2014-01-10 10:33:11 +01001939 * Prevent any tasklets being scheduled during
1940 * cleanup
1941 */
1942 del_timer_sync(&atmel_port->uart_timer);
1943
Nicolas Ferre98f20822016-06-26 09:44:49 +02001944 /* Make sure that no interrupt is on the fly */
1945 synchronize_irq(port->irq);
1946
Marek Roszko8bc661b2014-01-10 10:33:11 +01001947 /*
Marek Roszko0cc7c6c2014-01-07 11:45:06 +01001948 * Clear out any scheduled tasklets before
1949 * we destroy the buffers
1950 */
Nicolas Ferre00e8e6582016-06-17 12:05:47 +02001951 tasklet_kill(&atmel_port->tasklet_rx);
1952 tasklet_kill(&atmel_port->tasklet_tx);
Marek Roszko0cc7c6c2014-01-07 11:45:06 +01001953
1954 /*
1955 * Ensure everything is stopped and
Nicolas Ferre98f20822016-06-26 09:44:49 +02001956 * disable port and break condition.
Chip Coldwella6670612008-02-08 04:21:06 -08001957 */
1958 atmel_stop_rx(port);
1959 atmel_stop_tx(port);
1960
Cyrille Pitchen4e7decd2015-07-02 15:18:11 +02001961 atmel_uart_writel(port, ATMEL_US_CR, ATMEL_US_RSTSTA);
Marek Roszko0cc7c6c2014-01-07 11:45:06 +01001962
Chip Coldwella6670612008-02-08 04:21:06 -08001963 /*
1964 * Shut-down the DMA.
1965 */
Elen Songa930e522013-07-22 16:30:25 +08001966 if (atmel_port->release_rx)
1967 atmel_port->release_rx(port);
1968 if (atmel_port->release_tx)
1969 atmel_port->release_tx(port);
Chip Coldwella6670612008-02-08 04:21:06 -08001970
Andrew Victor1e6c9c22006-01-10 16:59:27 +00001971 /*
Mark Deneenbb7e73c2014-01-07 11:45:09 +01001972 * Reset ring buffer pointers
1973 */
1974 atmel_port->rx_ring.head = 0;
1975 atmel_port->rx_ring.tail = 0;
1976
1977 /*
Richard Genoudab5e4e42014-05-13 20:20:45 +02001978 * Free the interrupts
Andrew Victor1e6c9c22006-01-10 16:59:27 +00001979 */
1980 free_irq(port->irq, port);
Richard Genoudab5e4e42014-05-13 20:20:45 +02001981
1982 atmel_port->ms_irq_enabled = false;
Andrew Victor1e6c9c22006-01-10 16:59:27 +00001983
Peter Hurley479e9b92014-10-16 16:54:18 -04001984 atmel_flush_buffer(port);
Haavard Skinnemoen9afd5612008-07-16 21:52:46 +01001985}
1986
1987/*
Andrew Victor1e6c9c22006-01-10 16:59:27 +00001988 * Power / Clock management.
1989 */
Remy Bohmerb843aa22008-02-08 04:21:01 -08001990static void atmel_serial_pm(struct uart_port *port, unsigned int state,
1991 unsigned int oldstate)
Andrew Victor1e6c9c22006-01-10 16:59:27 +00001992{
Haavard Skinnemoenc811ab82008-02-08 04:21:08 -08001993 struct atmel_uart_port *atmel_port = to_atmel_uart_port(port);
Andrew Victorafefc412006-06-19 19:53:19 +01001994
Andrew Victor1e6c9c22006-01-10 16:59:27 +00001995 switch (state) {
Remy Bohmerb843aa22008-02-08 04:21:01 -08001996 case 0:
1997 /*
1998 * Enable the peripheral clock for this serial port.
1999 * This is called on uart_open() or a resume event.
2000 */
Boris BREZILLON91f8c2d2013-06-19 13:17:30 +02002001 clk_prepare_enable(atmel_port->clk);
Anti Sullinf05596d2008-09-22 13:57:54 -07002002
2003 /* re-enable interrupts if we disabled some on suspend */
Cyrille Pitchen4e7decd2015-07-02 15:18:11 +02002004 atmel_uart_writel(port, ATMEL_US_IER, atmel_port->backup_imr);
Remy Bohmerb843aa22008-02-08 04:21:01 -08002005 break;
2006 case 3:
Anti Sullinf05596d2008-09-22 13:57:54 -07002007 /* Back up the interrupt mask and disable all interrupts */
Cyrille Pitchen4e7decd2015-07-02 15:18:11 +02002008 atmel_port->backup_imr = atmel_uart_readl(port, ATMEL_US_IMR);
2009 atmel_uart_writel(port, ATMEL_US_IDR, -1);
Anti Sullinf05596d2008-09-22 13:57:54 -07002010
Remy Bohmerb843aa22008-02-08 04:21:01 -08002011 /*
2012 * Disable the peripheral clock for this serial port.
2013 * This is called on uart_close() or a suspend event.
2014 */
Boris BREZILLON91f8c2d2013-06-19 13:17:30 +02002015 clk_disable_unprepare(atmel_port->clk);
Remy Bohmerb843aa22008-02-08 04:21:01 -08002016 break;
2017 default:
Richard Genoudddaa6032014-02-26 17:19:45 +01002018 dev_err(port->dev, "atmel_serial: unknown pm %d\n", state);
Andrew Victor1e6c9c22006-01-10 16:59:27 +00002019 }
2020}
2021
2022/*
2023 * Change the port parameters
2024 */
Remy Bohmerb843aa22008-02-08 04:21:01 -08002025static void atmel_set_termios(struct uart_port *port, struct ktermios *termios,
2026 struct ktermios *old)
Andrew Victor1e6c9c22006-01-10 16:59:27 +00002027{
2028 unsigned long flags;
Cyrille Pitchen1cf6e8f2014-12-09 14:31:35 +01002029 unsigned int old_mode, mode, imr, quot, baud;
Andrew Victor1e6c9c22006-01-10 16:59:27 +00002030
Cyrille Pitchen1cf6e8f2014-12-09 14:31:35 +01002031 /* save the current mode register */
Cyrille Pitchen4e7decd2015-07-02 15:18:11 +02002032 mode = old_mode = atmel_uart_readl(port, ATMEL_US_MR);
Cyrille Pitchen1cf6e8f2014-12-09 14:31:35 +01002033
2034 /* reset the mode, clock divisor, parity, stop bits and data size */
2035 mode &= ~(ATMEL_US_USCLKS | ATMEL_US_CHRL | ATMEL_US_NBSTOP |
2036 ATMEL_US_PAR | ATMEL_US_USMODE);
Andrew Victor03abeac2007-05-03 12:26:24 +01002037
Remy Bohmerb843aa22008-02-08 04:21:01 -08002038 baud = uart_get_baud_rate(port, termios, old, 0, port->uartclk / 16);
Andrew Victor1e6c9c22006-01-10 16:59:27 +00002039 quot = uart_get_divisor(port, baud);
2040
Remy Bohmerb843aa22008-02-08 04:21:01 -08002041 if (quot > 65535) { /* BRGR is 16-bit, so switch to slower clock */
Andrew Victor03abeac2007-05-03 12:26:24 +01002042 quot /= 8;
2043 mode |= ATMEL_US_USCLKS_MCK_DIV8;
2044 }
Andrew Victor1e6c9c22006-01-10 16:59:27 +00002045
2046 /* byte size */
2047 switch (termios->c_cflag & CSIZE) {
2048 case CS5:
Haavard Skinnemoen7192f922006-10-04 16:02:05 +02002049 mode |= ATMEL_US_CHRL_5;
Andrew Victor1e6c9c22006-01-10 16:59:27 +00002050 break;
2051 case CS6:
Haavard Skinnemoen7192f922006-10-04 16:02:05 +02002052 mode |= ATMEL_US_CHRL_6;
Andrew Victor1e6c9c22006-01-10 16:59:27 +00002053 break;
2054 case CS7:
Haavard Skinnemoen7192f922006-10-04 16:02:05 +02002055 mode |= ATMEL_US_CHRL_7;
Andrew Victor1e6c9c22006-01-10 16:59:27 +00002056 break;
2057 default:
Haavard Skinnemoen7192f922006-10-04 16:02:05 +02002058 mode |= ATMEL_US_CHRL_8;
Andrew Victor1e6c9c22006-01-10 16:59:27 +00002059 break;
2060 }
2061
2062 /* stop bits */
2063 if (termios->c_cflag & CSTOPB)
Haavard Skinnemoen7192f922006-10-04 16:02:05 +02002064 mode |= ATMEL_US_NBSTOP_2;
Andrew Victor1e6c9c22006-01-10 16:59:27 +00002065
2066 /* parity */
2067 if (termios->c_cflag & PARENB) {
Remy Bohmerb843aa22008-02-08 04:21:01 -08002068 /* Mark or Space parity */
2069 if (termios->c_cflag & CMSPAR) {
Andrew Victor1e6c9c22006-01-10 16:59:27 +00002070 if (termios->c_cflag & PARODD)
Haavard Skinnemoen7192f922006-10-04 16:02:05 +02002071 mode |= ATMEL_US_PAR_MARK;
Andrew Victor1e6c9c22006-01-10 16:59:27 +00002072 else
Haavard Skinnemoen7192f922006-10-04 16:02:05 +02002073 mode |= ATMEL_US_PAR_SPACE;
Remy Bohmerb843aa22008-02-08 04:21:01 -08002074 } else if (termios->c_cflag & PARODD)
Haavard Skinnemoen7192f922006-10-04 16:02:05 +02002075 mode |= ATMEL_US_PAR_ODD;
Andrew Victor1e6c9c22006-01-10 16:59:27 +00002076 else
Haavard Skinnemoen7192f922006-10-04 16:02:05 +02002077 mode |= ATMEL_US_PAR_EVEN;
Remy Bohmerb843aa22008-02-08 04:21:01 -08002078 } else
Haavard Skinnemoen7192f922006-10-04 16:02:05 +02002079 mode |= ATMEL_US_PAR_NONE;
Andrew Victor1e6c9c22006-01-10 16:59:27 +00002080
2081 spin_lock_irqsave(&port->lock, flags);
2082
Haavard Skinnemoen7192f922006-10-04 16:02:05 +02002083 port->read_status_mask = ATMEL_US_OVRE;
Andrew Victor1e6c9c22006-01-10 16:59:27 +00002084 if (termios->c_iflag & INPCK)
Haavard Skinnemoen7192f922006-10-04 16:02:05 +02002085 port->read_status_mask |= (ATMEL_US_FRAME | ATMEL_US_PARE);
Peter Hurleyef8b9dd2014-06-16 08:10:41 -04002086 if (termios->c_iflag & (IGNBRK | BRKINT | PARMRK))
Haavard Skinnemoen7192f922006-10-04 16:02:05 +02002087 port->read_status_mask |= ATMEL_US_RXBRK;
Andrew Victor1e6c9c22006-01-10 16:59:27 +00002088
Elen Song64e22eb2013-07-22 16:30:24 +08002089 if (atmel_use_pdc_rx(port))
Chip Coldwella6670612008-02-08 04:21:06 -08002090 /* need to enable error interrupts */
Cyrille Pitchen4e7decd2015-07-02 15:18:11 +02002091 atmel_uart_writel(port, ATMEL_US_IER, port->read_status_mask);
Chip Coldwella6670612008-02-08 04:21:06 -08002092
Andrew Victor1e6c9c22006-01-10 16:59:27 +00002093 /*
2094 * Characters to ignore
2095 */
2096 port->ignore_status_mask = 0;
2097 if (termios->c_iflag & IGNPAR)
Haavard Skinnemoen7192f922006-10-04 16:02:05 +02002098 port->ignore_status_mask |= (ATMEL_US_FRAME | ATMEL_US_PARE);
Andrew Victor1e6c9c22006-01-10 16:59:27 +00002099 if (termios->c_iflag & IGNBRK) {
Haavard Skinnemoen7192f922006-10-04 16:02:05 +02002100 port->ignore_status_mask |= ATMEL_US_RXBRK;
Andrew Victor1e6c9c22006-01-10 16:59:27 +00002101 /*
2102 * If we're ignoring parity and break indicators,
2103 * ignore overruns too (for real raw support).
2104 */
2105 if (termios->c_iflag & IGNPAR)
Haavard Skinnemoen7192f922006-10-04 16:02:05 +02002106 port->ignore_status_mask |= ATMEL_US_OVRE;
Andrew Victor1e6c9c22006-01-10 16:59:27 +00002107 }
Remy Bohmerb843aa22008-02-08 04:21:01 -08002108 /* TODO: Ignore all characters if CREAD is set.*/
Andrew Victor1e6c9c22006-01-10 16:59:27 +00002109
2110 /* update the per-port timeout */
2111 uart_update_timeout(port, termios->c_cflag, baud);
2112
Haavard Skinnemoen0ccad872009-06-16 17:02:03 +01002113 /*
2114 * save/disable interrupts. The tty layer will ensure that the
2115 * transmitter is empty if requested by the caller, so there's
2116 * no need to wait for it here.
2117 */
Cyrille Pitchen4e7decd2015-07-02 15:18:11 +02002118 imr = atmel_uart_readl(port, ATMEL_US_IMR);
2119 atmel_uart_writel(port, ATMEL_US_IDR, -1);
Andrew Victor1e6c9c22006-01-10 16:59:27 +00002120
2121 /* disable receiver and transmitter */
Cyrille Pitchen4e7decd2015-07-02 15:18:11 +02002122 atmel_uart_writel(port, ATMEL_US_CR, ATMEL_US_TXDIS | ATMEL_US_RXDIS);
Andrew Victor1e6c9c22006-01-10 16:59:27 +00002123
Cyrille Pitchen1cf6e8f2014-12-09 14:31:35 +01002124 /* mode */
Ricardo Ribalda Delgado13bd3e62014-11-06 09:22:56 +01002125 if (port->rs485.flags & SER_RS485_ENABLED) {
Cyrille Pitchen4e7decd2015-07-02 15:18:11 +02002126 atmel_uart_writel(port, ATMEL_US_TTGR,
2127 port->rs485.delay_rts_after_send);
Claudio Scordinoe8faff72010-05-03 13:31:28 +01002128 mode |= ATMEL_US_USMODE_RS485;
Cyrille Pitchen1cf6e8f2014-12-09 14:31:35 +01002129 } else if (termios->c_cflag & CRTSCTS) {
2130 /* RS232 with hardware handshake (RTS/CTS) */
Alexandre Belloni5be605a2016-04-12 14:51:40 +02002131 if (atmel_use_dma_rx(port) && !atmel_use_fifo(port)) {
2132 dev_info(port->dev, "not enabling hardware flow control because DMA is used");
2133 termios->c_cflag &= ~CRTSCTS;
2134 } else {
2135 mode |= ATMEL_US_USMODE_HWHS;
2136 }
Cyrille Pitchen1cf6e8f2014-12-09 14:31:35 +01002137 } else {
2138 /* RS232 without hadware handshake */
2139 mode |= ATMEL_US_USMODE_NORMAL;
Claudio Scordinoe8faff72010-05-03 13:31:28 +01002140 }
2141
Cyrille Pitchen1cf6e8f2014-12-09 14:31:35 +01002142 /* set the mode, clock divisor, parity, stop bits and data size */
Cyrille Pitchen4e7decd2015-07-02 15:18:11 +02002143 atmel_uart_writel(port, ATMEL_US_MR, mode);
Andrew Victor1e6c9c22006-01-10 16:59:27 +00002144
Cyrille Pitchen1cf6e8f2014-12-09 14:31:35 +01002145 /*
2146 * when switching the mode, set the RTS line state according to the
2147 * new mode, otherwise keep the former state
2148 */
2149 if ((old_mode & ATMEL_US_USMODE) != (mode & ATMEL_US_USMODE)) {
2150 unsigned int rts_state;
2151
2152 if ((mode & ATMEL_US_USMODE) == ATMEL_US_USMODE_HWHS) {
2153 /* let the hardware control the RTS line */
2154 rts_state = ATMEL_US_RTSDIS;
2155 } else {
2156 /* force RTS line to low level */
2157 rts_state = ATMEL_US_RTSEN;
2158 }
2159
Cyrille Pitchen4e7decd2015-07-02 15:18:11 +02002160 atmel_uart_writel(port, ATMEL_US_CR, rts_state);
Cyrille Pitchen1cf6e8f2014-12-09 14:31:35 +01002161 }
2162
Andrew Victor1e6c9c22006-01-10 16:59:27 +00002163 /* set the baud rate */
Cyrille Pitchen4e7decd2015-07-02 15:18:11 +02002164 atmel_uart_writel(port, ATMEL_US_BRGR, quot);
2165 atmel_uart_writel(port, ATMEL_US_CR, ATMEL_US_RSTSTA | ATMEL_US_RSTRX);
2166 atmel_uart_writel(port, ATMEL_US_CR, ATMEL_US_TXEN | ATMEL_US_RXEN);
Andrew Victor1e6c9c22006-01-10 16:59:27 +00002167
2168 /* restore interrupts */
Cyrille Pitchen4e7decd2015-07-02 15:18:11 +02002169 atmel_uart_writel(port, ATMEL_US_IER, imr);
Andrew Victor1e6c9c22006-01-10 16:59:27 +00002170
2171 /* CTS flow-control and modem-status interrupts */
2172 if (UART_ENABLE_MS(port, termios->c_cflag))
Richard Genoud35b675b2014-09-03 18:09:26 +02002173 atmel_enable_ms(port);
2174 else
2175 atmel_disable_ms(port);
Andrew Victor1e6c9c22006-01-10 16:59:27 +00002176
2177 spin_unlock_irqrestore(&port->lock, flags);
2178}
2179
Peter Hurley732a84a2014-11-05 13:11:43 -05002180static void atmel_set_ldisc(struct uart_port *port, struct ktermios *termios)
Viktar Palstsiuk42bd7a42011-02-09 15:26:13 +01002181{
Peter Hurley732a84a2014-11-05 13:11:43 -05002182 if (termios->c_line == N_PPS) {
Viktar Palstsiuk42bd7a42011-02-09 15:26:13 +01002183 port->flags |= UPF_HARDPPS_CD;
Peter Hurleyd41510c2014-11-05 13:11:44 -05002184 spin_lock_irq(&port->lock);
Viktar Palstsiuk42bd7a42011-02-09 15:26:13 +01002185 atmel_enable_ms(port);
Peter Hurleyd41510c2014-11-05 13:11:44 -05002186 spin_unlock_irq(&port->lock);
Viktar Palstsiuk42bd7a42011-02-09 15:26:13 +01002187 } else {
2188 port->flags &= ~UPF_HARDPPS_CD;
Peter Hurleycab68f82014-11-05 13:11:45 -05002189 if (!UART_ENABLE_MS(port, termios->c_cflag)) {
2190 spin_lock_irq(&port->lock);
2191 atmel_disable_ms(port);
2192 spin_unlock_irq(&port->lock);
2193 }
Viktar Palstsiuk42bd7a42011-02-09 15:26:13 +01002194 }
2195}
2196
Andrew Victor1e6c9c22006-01-10 16:59:27 +00002197/*
2198 * Return string describing the specified port
2199 */
Haavard Skinnemoen7192f922006-10-04 16:02:05 +02002200static const char *atmel_type(struct uart_port *port)
Andrew Victor1e6c9c22006-01-10 16:59:27 +00002201{
Haavard Skinnemoen9ab4f882006-10-04 16:02:06 +02002202 return (port->type == PORT_ATMEL) ? "ATMEL_SERIAL" : NULL;
Andrew Victor1e6c9c22006-01-10 16:59:27 +00002203}
2204
2205/*
2206 * Release the memory region(s) being used by 'port'.
2207 */
Haavard Skinnemoen7192f922006-10-04 16:02:05 +02002208static void atmel_release_port(struct uart_port *port)
Andrew Victor1e6c9c22006-01-10 16:59:27 +00002209{
Andrew Victorafefc412006-06-19 19:53:19 +01002210 struct platform_device *pdev = to_platform_device(port->dev);
2211 int size = pdev->resource[0].end - pdev->resource[0].start + 1;
2212
2213 release_mem_region(port->mapbase, size);
2214
2215 if (port->flags & UPF_IOREMAP) {
2216 iounmap(port->membase);
2217 port->membase = NULL;
2218 }
Andrew Victor1e6c9c22006-01-10 16:59:27 +00002219}
2220
2221/*
2222 * Request the memory region(s) being used by 'port'.
2223 */
Haavard Skinnemoen7192f922006-10-04 16:02:05 +02002224static int atmel_request_port(struct uart_port *port)
Andrew Victor1e6c9c22006-01-10 16:59:27 +00002225{
Andrew Victorafefc412006-06-19 19:53:19 +01002226 struct platform_device *pdev = to_platform_device(port->dev);
2227 int size = pdev->resource[0].end - pdev->resource[0].start + 1;
Andrew Victor1e6c9c22006-01-10 16:59:27 +00002228
Haavard Skinnemoen7192f922006-10-04 16:02:05 +02002229 if (!request_mem_region(port->mapbase, size, "atmel_serial"))
Andrew Victorafefc412006-06-19 19:53:19 +01002230 return -EBUSY;
2231
2232 if (port->flags & UPF_IOREMAP) {
2233 port->membase = ioremap(port->mapbase, size);
2234 if (port->membase == NULL) {
2235 release_mem_region(port->mapbase, size);
2236 return -ENOMEM;
2237 }
2238 }
2239
2240 return 0;
Andrew Victor1e6c9c22006-01-10 16:59:27 +00002241}
2242
2243/*
2244 * Configure/autoconfigure the port.
2245 */
Haavard Skinnemoen7192f922006-10-04 16:02:05 +02002246static void atmel_config_port(struct uart_port *port, int flags)
Andrew Victor1e6c9c22006-01-10 16:59:27 +00002247{
2248 if (flags & UART_CONFIG_TYPE) {
Haavard Skinnemoen9ab4f882006-10-04 16:02:06 +02002249 port->type = PORT_ATMEL;
Haavard Skinnemoen7192f922006-10-04 16:02:05 +02002250 atmel_request_port(port);
Andrew Victor1e6c9c22006-01-10 16:59:27 +00002251 }
2252}
2253
2254/*
2255 * Verify the new serial_struct (for TIOCSSERIAL).
2256 */
Haavard Skinnemoen7192f922006-10-04 16:02:05 +02002257static int atmel_verify_port(struct uart_port *port, struct serial_struct *ser)
Andrew Victor1e6c9c22006-01-10 16:59:27 +00002258{
2259 int ret = 0;
Haavard Skinnemoen9ab4f882006-10-04 16:02:06 +02002260 if (ser->type != PORT_UNKNOWN && ser->type != PORT_ATMEL)
Andrew Victor1e6c9c22006-01-10 16:59:27 +00002261 ret = -EINVAL;
2262 if (port->irq != ser->irq)
2263 ret = -EINVAL;
2264 if (ser->io_type != SERIAL_IO_MEM)
2265 ret = -EINVAL;
2266 if (port->uartclk / 16 != ser->baud_base)
2267 ret = -EINVAL;
Andre Przywara270c2ad2015-10-05 18:00:52 +01002268 if (port->mapbase != (unsigned long)ser->iomem_base)
Andrew Victor1e6c9c22006-01-10 16:59:27 +00002269 ret = -EINVAL;
2270 if (port->iobase != ser->port)
2271 ret = -EINVAL;
2272 if (ser->hub6 != 0)
2273 ret = -EINVAL;
2274 return ret;
2275}
2276
Albin Tonnerre8fe2d542009-12-09 12:31:32 -08002277#ifdef CONFIG_CONSOLE_POLL
2278static int atmel_poll_get_char(struct uart_port *port)
2279{
Cyrille Pitchen4e7decd2015-07-02 15:18:11 +02002280 while (!(atmel_uart_readl(port, ATMEL_US_CSR) & ATMEL_US_RXRDY))
Albin Tonnerre8fe2d542009-12-09 12:31:32 -08002281 cpu_relax();
2282
Cyrille Pitchena6499432015-07-30 16:33:38 +02002283 return atmel_uart_read_char(port);
Albin Tonnerre8fe2d542009-12-09 12:31:32 -08002284}
2285
2286static void atmel_poll_put_char(struct uart_port *port, unsigned char ch)
2287{
Cyrille Pitchen4e7decd2015-07-02 15:18:11 +02002288 while (!(atmel_uart_readl(port, ATMEL_US_CSR) & ATMEL_US_TXRDY))
Albin Tonnerre8fe2d542009-12-09 12:31:32 -08002289 cpu_relax();
2290
Cyrille Pitchena6499432015-07-30 16:33:38 +02002291 atmel_uart_write_char(port, ch);
Albin Tonnerre8fe2d542009-12-09 12:31:32 -08002292}
2293#endif
2294
Haavard Skinnemoen7192f922006-10-04 16:02:05 +02002295static struct uart_ops atmel_pops = {
2296 .tx_empty = atmel_tx_empty,
2297 .set_mctrl = atmel_set_mctrl,
2298 .get_mctrl = atmel_get_mctrl,
2299 .stop_tx = atmel_stop_tx,
2300 .start_tx = atmel_start_tx,
2301 .stop_rx = atmel_stop_rx,
2302 .enable_ms = atmel_enable_ms,
2303 .break_ctl = atmel_break_ctl,
2304 .startup = atmel_startup,
2305 .shutdown = atmel_shutdown,
Haavard Skinnemoen9afd5612008-07-16 21:52:46 +01002306 .flush_buffer = atmel_flush_buffer,
Haavard Skinnemoen7192f922006-10-04 16:02:05 +02002307 .set_termios = atmel_set_termios,
Viktar Palstsiuk42bd7a42011-02-09 15:26:13 +01002308 .set_ldisc = atmel_set_ldisc,
Haavard Skinnemoen7192f922006-10-04 16:02:05 +02002309 .type = atmel_type,
2310 .release_port = atmel_release_port,
2311 .request_port = atmel_request_port,
2312 .config_port = atmel_config_port,
2313 .verify_port = atmel_verify_port,
2314 .pm = atmel_serial_pm,
Albin Tonnerre8fe2d542009-12-09 12:31:32 -08002315#ifdef CONFIG_CONSOLE_POLL
2316 .poll_get_char = atmel_poll_get_char,
2317 .poll_put_char = atmel_poll_put_char,
2318#endif
Andrew Victor1e6c9c22006-01-10 16:59:27 +00002319};
2320
Andrew Victorafefc412006-06-19 19:53:19 +01002321/*
2322 * Configure the port from the platform device resource info.
2323 */
Boris BREZILLON91f8c2d2013-06-19 13:17:30 +02002324static int atmel_init_port(struct atmel_uart_port *atmel_port,
Remy Bohmerb843aa22008-02-08 04:21:01 -08002325 struct platform_device *pdev)
Andrew Victor1e6c9c22006-01-10 16:59:27 +00002326{
Boris BREZILLON91f8c2d2013-06-19 13:17:30 +02002327 int ret;
Haavard Skinnemoen7192f922006-10-04 16:02:05 +02002328 struct uart_port *port = &atmel_port->uart;
Jingoo Han574de552013-07-30 17:06:57 +09002329 struct atmel_uart_data *pdata = dev_get_platdata(&pdev->dev);
Andrew Victor1e6c9c22006-01-10 16:59:27 +00002330
Leilei Zhao4a1e8882015-02-27 16:07:16 +08002331 atmel_init_property(atmel_port, pdev);
2332 atmel_set_ops(port);
Andrew Victor1e6c9c22006-01-10 16:59:27 +00002333
Ricardo Ribalda Delgado13bd3e62014-11-06 09:22:56 +01002334 atmel_init_rs485(port, pdev);
Elen Songa930e522013-07-22 16:30:25 +08002335
Claudio Scordinoe8faff72010-05-03 13:31:28 +01002336 port->iotype = UPIO_MEM;
2337 port->flags = UPF_BOOT_AUTOCONF;
2338 port->ops = &atmel_pops;
2339 port->fifosize = 1;
Claudio Scordinoe8faff72010-05-03 13:31:28 +01002340 port->dev = &pdev->dev;
Andrew Victorafefc412006-06-19 19:53:19 +01002341 port->mapbase = pdev->resource[0].start;
2342 port->irq = pdev->resource[1].start;
Ricardo Ribalda Delgado13bd3e62014-11-06 09:22:56 +01002343 port->rs485_config = atmel_config_rs485;
Andrew Victorafefc412006-06-19 19:53:19 +01002344
Remy Bohmer1ecc26b2008-02-08 04:21:05 -08002345 memset(&atmel_port->rx_ring, 0, sizeof(atmel_port->rx_ring));
2346
Nicolas Ferre5fbe46b2011-10-12 18:07:00 +02002347 if (pdata && pdata->regs) {
Haavard Skinnemoen75d35212006-10-04 16:02:08 +02002348 /* Already mapped by setup code */
Nicolas Ferre1acfc7e2011-10-12 18:06:57 +02002349 port->membase = pdata->regs;
Nicolas Ferre588edbf2011-10-12 18:06:58 +02002350 } else {
Andrew Victorafefc412006-06-19 19:53:19 +01002351 port->flags |= UPF_IOREMAP;
2352 port->membase = NULL;
2353 }
2354
Remy Bohmerb843aa22008-02-08 04:21:01 -08002355 /* for console, the clock could already be configured */
2356 if (!atmel_port->clk) {
Haavard Skinnemoen7192f922006-10-04 16:02:05 +02002357 atmel_port->clk = clk_get(&pdev->dev, "usart");
Boris BREZILLON91f8c2d2013-06-19 13:17:30 +02002358 if (IS_ERR(atmel_port->clk)) {
2359 ret = PTR_ERR(atmel_port->clk);
2360 atmel_port->clk = NULL;
2361 return ret;
2362 }
2363 ret = clk_prepare_enable(atmel_port->clk);
2364 if (ret) {
2365 clk_put(atmel_port->clk);
2366 atmel_port->clk = NULL;
2367 return ret;
2368 }
Haavard Skinnemoen7192f922006-10-04 16:02:05 +02002369 port->uartclk = clk_get_rate(atmel_port->clk);
Boris BREZILLON91f8c2d2013-06-19 13:17:30 +02002370 clk_disable_unprepare(atmel_port->clk);
David Brownell06a7f052008-11-06 12:53:40 -08002371 /* only enable clock when USART is in use */
Andrew Victorafefc412006-06-19 19:53:19 +01002372 }
Chip Coldwella6670612008-02-08 04:21:06 -08002373
Claudio Scordinoe8faff72010-05-03 13:31:28 +01002374 /* Use TXEMPTY for interrupt when rs485 else TXRDY or ENDTX|TXBUFE */
Ricardo Ribalda Delgado13bd3e62014-11-06 09:22:56 +01002375 if (port->rs485.flags & SER_RS485_ENABLED)
Claudio Scordinoe8faff72010-05-03 13:31:28 +01002376 atmel_port->tx_done_mask = ATMEL_US_TXEMPTY;
Elen Song64e22eb2013-07-22 16:30:24 +08002377 else if (atmel_use_pdc_tx(port)) {
Chip Coldwella6670612008-02-08 04:21:06 -08002378 port->fifosize = PDC_BUFFER_SIZE;
Claudio Scordinoe8faff72010-05-03 13:31:28 +01002379 atmel_port->tx_done_mask = ATMEL_US_ENDTX | ATMEL_US_TXBUFE;
2380 } else {
2381 atmel_port->tx_done_mask = ATMEL_US_TXRDY;
2382 }
Boris BREZILLON91f8c2d2013-06-19 13:17:30 +02002383
2384 return 0;
Andrew Victor1e6c9c22006-01-10 16:59:27 +00002385}
2386
Jean-Christophe PLAGNIOL-VILLARD69f6a272012-02-16 00:24:07 +08002387struct platform_device *atmel_default_console_device; /* the serial console device */
2388
Haavard Skinnemoen749c4e62006-10-04 16:02:02 +02002389#ifdef CONFIG_SERIAL_ATMEL_CONSOLE
Haavard Skinnemoen7192f922006-10-04 16:02:05 +02002390static void atmel_console_putchar(struct uart_port *port, int ch)
Russell Kingd3587882006-03-20 20:00:09 +00002391{
Cyrille Pitchen4e7decd2015-07-02 15:18:11 +02002392 while (!(atmel_uart_readl(port, ATMEL_US_CSR) & ATMEL_US_TXRDY))
Haavard Skinnemoen829dd812008-02-08 04:21:02 -08002393 cpu_relax();
Cyrille Pitchena6499432015-07-30 16:33:38 +02002394 atmel_uart_write_char(port, ch);
Russell Kingd3587882006-03-20 20:00:09 +00002395}
Andrew Victor1e6c9c22006-01-10 16:59:27 +00002396
2397/*
2398 * Interrupts are disabled on entering
2399 */
Haavard Skinnemoen7192f922006-10-04 16:02:05 +02002400static void atmel_console_write(struct console *co, const char *s, u_int count)
Andrew Victor1e6c9c22006-01-10 16:59:27 +00002401{
Haavard Skinnemoen7192f922006-10-04 16:02:05 +02002402 struct uart_port *port = &atmel_ports[co->index].uart;
Claudio Scordinoe8faff72010-05-03 13:31:28 +01002403 struct atmel_uart_port *atmel_port = to_atmel_uart_port(port);
Russell Kingd3587882006-03-20 20:00:09 +00002404 unsigned int status, imr;
Marc Pignat39d4c922008-04-02 13:04:42 -07002405 unsigned int pdc_tx;
Andrew Victor1e6c9c22006-01-10 16:59:27 +00002406
2407 /*
Remy Bohmerb843aa22008-02-08 04:21:01 -08002408 * First, save IMR and then disable interrupts
Andrew Victor1e6c9c22006-01-10 16:59:27 +00002409 */
Cyrille Pitchen4e7decd2015-07-02 15:18:11 +02002410 imr = atmel_uart_readl(port, ATMEL_US_IMR);
2411 atmel_uart_writel(port, ATMEL_US_IDR,
2412 ATMEL_US_RXRDY | atmel_port->tx_done_mask);
Andrew Victor1e6c9c22006-01-10 16:59:27 +00002413
Marc Pignat39d4c922008-04-02 13:04:42 -07002414 /* Store PDC transmit status and disable it */
Cyrille Pitchen4e7decd2015-07-02 15:18:11 +02002415 pdc_tx = atmel_uart_readl(port, ATMEL_PDC_PTSR) & ATMEL_PDC_TXTEN;
2416 atmel_uart_writel(port, ATMEL_PDC_PTCR, ATMEL_PDC_TXTDIS);
Marc Pignat39d4c922008-04-02 13:04:42 -07002417
Haavard Skinnemoen7192f922006-10-04 16:02:05 +02002418 uart_console_write(port, s, count, atmel_console_putchar);
Andrew Victor1e6c9c22006-01-10 16:59:27 +00002419
2420 /*
Remy Bohmerb843aa22008-02-08 04:21:01 -08002421 * Finally, wait for transmitter to become empty
2422 * and restore IMR
Andrew Victor1e6c9c22006-01-10 16:59:27 +00002423 */
2424 do {
Cyrille Pitchen4e7decd2015-07-02 15:18:11 +02002425 status = atmel_uart_readl(port, ATMEL_US_CSR);
Haavard Skinnemoen7192f922006-10-04 16:02:05 +02002426 } while (!(status & ATMEL_US_TXRDY));
Marc Pignat39d4c922008-04-02 13:04:42 -07002427
2428 /* Restore PDC transmit status */
2429 if (pdc_tx)
Cyrille Pitchen4e7decd2015-07-02 15:18:11 +02002430 atmel_uart_writel(port, ATMEL_PDC_PTCR, ATMEL_PDC_TXTEN);
Marc Pignat39d4c922008-04-02 13:04:42 -07002431
Remy Bohmerb843aa22008-02-08 04:21:01 -08002432 /* set interrupts back the way they were */
Cyrille Pitchen4e7decd2015-07-02 15:18:11 +02002433 atmel_uart_writel(port, ATMEL_US_IER, imr);
Andrew Victor1e6c9c22006-01-10 16:59:27 +00002434}
2435
2436/*
Remy Bohmerb843aa22008-02-08 04:21:01 -08002437 * If the port was already initialised (eg, by a boot loader),
2438 * try to determine the current setup.
Andrew Victor1e6c9c22006-01-10 16:59:27 +00002439 */
Remy Bohmerb843aa22008-02-08 04:21:01 -08002440static void __init atmel_console_get_options(struct uart_port *port, int *baud,
2441 int *parity, int *bits)
Andrew Victor1e6c9c22006-01-10 16:59:27 +00002442{
2443 unsigned int mr, quot;
2444
Haavard Skinnemoen1c0fd822008-02-08 04:21:03 -08002445 /*
2446 * If the baud rate generator isn't running, the port wasn't
2447 * initialized by the boot loader.
2448 */
Cyrille Pitchen4e7decd2015-07-02 15:18:11 +02002449 quot = atmel_uart_readl(port, ATMEL_US_BRGR) & ATMEL_US_CD;
Haavard Skinnemoen1c0fd822008-02-08 04:21:03 -08002450 if (!quot)
2451 return;
Andrew Victor1e6c9c22006-01-10 16:59:27 +00002452
Cyrille Pitchen4e7decd2015-07-02 15:18:11 +02002453 mr = atmel_uart_readl(port, ATMEL_US_MR) & ATMEL_US_CHRL;
Haavard Skinnemoen7192f922006-10-04 16:02:05 +02002454 if (mr == ATMEL_US_CHRL_8)
Andrew Victor1e6c9c22006-01-10 16:59:27 +00002455 *bits = 8;
2456 else
2457 *bits = 7;
2458
Cyrille Pitchen4e7decd2015-07-02 15:18:11 +02002459 mr = atmel_uart_readl(port, ATMEL_US_MR) & ATMEL_US_PAR;
Haavard Skinnemoen7192f922006-10-04 16:02:05 +02002460 if (mr == ATMEL_US_PAR_EVEN)
Andrew Victor1e6c9c22006-01-10 16:59:27 +00002461 *parity = 'e';
Haavard Skinnemoen7192f922006-10-04 16:02:05 +02002462 else if (mr == ATMEL_US_PAR_ODD)
Andrew Victor1e6c9c22006-01-10 16:59:27 +00002463 *parity = 'o';
2464
Haavard Skinnemoen4d5e3922006-10-04 16:02:11 +02002465 /*
2466 * The serial core only rounds down when matching this to a
2467 * supported baud rate. Make sure we don't end up slightly
2468 * lower than one of those, as it would make us fall through
2469 * to a much lower baud rate than we really want.
2470 */
Haavard Skinnemoen4d5e3922006-10-04 16:02:11 +02002471 *baud = port->uartclk / (16 * (quot - 1));
Andrew Victor1e6c9c22006-01-10 16:59:27 +00002472}
2473
Haavard Skinnemoen7192f922006-10-04 16:02:05 +02002474static int __init atmel_console_setup(struct console *co, char *options)
Andrew Victor1e6c9c22006-01-10 16:59:27 +00002475{
Boris BREZILLON91f8c2d2013-06-19 13:17:30 +02002476 int ret;
Haavard Skinnemoen7192f922006-10-04 16:02:05 +02002477 struct uart_port *port = &atmel_ports[co->index].uart;
Andrew Victor1e6c9c22006-01-10 16:59:27 +00002478 int baud = 115200;
2479 int bits = 8;
2480 int parity = 'n';
2481 int flow = 'n';
2482
Remy Bohmerb843aa22008-02-08 04:21:01 -08002483 if (port->membase == NULL) {
2484 /* Port not initialized yet - delay setup */
Andrew Victorafefc412006-06-19 19:53:19 +01002485 return -ENODEV;
Remy Bohmerb843aa22008-02-08 04:21:01 -08002486 }
Andrew Victor1e6c9c22006-01-10 16:59:27 +00002487
Boris BREZILLON91f8c2d2013-06-19 13:17:30 +02002488 ret = clk_prepare_enable(atmel_ports[co->index].clk);
2489 if (ret)
2490 return ret;
David Brownell06a7f052008-11-06 12:53:40 -08002491
Cyrille Pitchen4e7decd2015-07-02 15:18:11 +02002492 atmel_uart_writel(port, ATMEL_US_IDR, -1);
2493 atmel_uart_writel(port, ATMEL_US_CR, ATMEL_US_RSTSTA | ATMEL_US_RSTRX);
2494 atmel_uart_writel(port, ATMEL_US_CR, ATMEL_US_TXEN | ATMEL_US_RXEN);
Andrew Victor1e6c9c22006-01-10 16:59:27 +00002495
2496 if (options)
2497 uart_parse_options(options, &baud, &parity, &bits, &flow);
2498 else
Haavard Skinnemoen7192f922006-10-04 16:02:05 +02002499 atmel_console_get_options(port, &baud, &parity, &bits);
Andrew Victor1e6c9c22006-01-10 16:59:27 +00002500
2501 return uart_set_options(port, co, baud, parity, bits, flow);
2502}
2503
Haavard Skinnemoen7192f922006-10-04 16:02:05 +02002504static struct uart_driver atmel_uart;
Andrew Victor1e6c9c22006-01-10 16:59:27 +00002505
Haavard Skinnemoen7192f922006-10-04 16:02:05 +02002506static struct console atmel_console = {
2507 .name = ATMEL_DEVICENAME,
2508 .write = atmel_console_write,
Andrew Victor1e6c9c22006-01-10 16:59:27 +00002509 .device = uart_console_device,
Haavard Skinnemoen7192f922006-10-04 16:02:05 +02002510 .setup = atmel_console_setup,
Andrew Victor1e6c9c22006-01-10 16:59:27 +00002511 .flags = CON_PRINTBUFFER,
2512 .index = -1,
Haavard Skinnemoen7192f922006-10-04 16:02:05 +02002513 .data = &atmel_uart,
Andrew Victor1e6c9c22006-01-10 16:59:27 +00002514};
2515
David Brownell06a7f052008-11-06 12:53:40 -08002516#define ATMEL_CONSOLE_DEVICE (&atmel_console)
Andrew Victor1e6c9c22006-01-10 16:59:27 +00002517
Andrew Victorafefc412006-06-19 19:53:19 +01002518/*
2519 * Early console initialization (before VM subsystem initialized).
2520 */
Haavard Skinnemoen7192f922006-10-04 16:02:05 +02002521static int __init atmel_console_init(void)
Andrew Victor1e6c9c22006-01-10 16:59:27 +00002522{
Boris BREZILLON91f8c2d2013-06-19 13:17:30 +02002523 int ret;
Haavard Skinnemoen73e27982006-10-04 16:02:04 +02002524 if (atmel_default_console_device) {
Voss, Nikolaus0d0a3cc2011-08-10 14:02:29 +02002525 struct atmel_uart_data *pdata =
Jingoo Han574de552013-07-30 17:06:57 +09002526 dev_get_platdata(&atmel_default_console_device->dev);
Linus Torvaldsefb8d212011-10-26 15:11:09 +02002527 int id = pdata->num;
Jaeden Amerob78cd162016-01-26 12:34:49 +01002528 struct atmel_uart_port *atmel_port = &atmel_ports[id];
Voss, Nikolaus0d0a3cc2011-08-10 14:02:29 +02002529
Jaeden Amerob78cd162016-01-26 12:34:49 +01002530 atmel_port->backup_imr = 0;
2531 atmel_port->uart.line = id;
Nicolas Ferre4cbf9f42011-10-12 18:06:59 +02002532
2533 add_preferred_console(ATMEL_DEVICENAME, id, NULL);
Jaeden Amerob78cd162016-01-26 12:34:49 +01002534 ret = atmel_init_port(atmel_port, atmel_default_console_device);
Boris BREZILLON91f8c2d2013-06-19 13:17:30 +02002535 if (ret)
2536 return ret;
Haavard Skinnemoen7192f922006-10-04 16:02:05 +02002537 register_console(&atmel_console);
Andrew Victorafefc412006-06-19 19:53:19 +01002538 }
Andrew Victor1e6c9c22006-01-10 16:59:27 +00002539
Andrew Victor1e6c9c22006-01-10 16:59:27 +00002540 return 0;
2541}
Remy Bohmerb843aa22008-02-08 04:21:01 -08002542
Haavard Skinnemoen7192f922006-10-04 16:02:05 +02002543console_initcall(atmel_console_init);
Andrew Victor1e6c9c22006-01-10 16:59:27 +00002544
Andrew Victorafefc412006-06-19 19:53:19 +01002545/*
2546 * Late console initialization.
2547 */
Haavard Skinnemoen7192f922006-10-04 16:02:05 +02002548static int __init atmel_late_console_init(void)
Andrew Victorafefc412006-06-19 19:53:19 +01002549{
Remy Bohmerb843aa22008-02-08 04:21:01 -08002550 if (atmel_default_console_device
2551 && !(atmel_console.flags & CON_ENABLED))
Haavard Skinnemoen7192f922006-10-04 16:02:05 +02002552 register_console(&atmel_console);
Andrew Victorafefc412006-06-19 19:53:19 +01002553
2554 return 0;
2555}
Remy Bohmerb843aa22008-02-08 04:21:01 -08002556
Haavard Skinnemoen7192f922006-10-04 16:02:05 +02002557core_initcall(atmel_late_console_init);
Andrew Victorafefc412006-06-19 19:53:19 +01002558
Haavard Skinnemoendfa7f342008-02-08 04:21:04 -08002559static inline bool atmel_is_console_port(struct uart_port *port)
2560{
2561 return port->cons && port->cons->index == port->line;
2562}
2563
Andrew Victor1e6c9c22006-01-10 16:59:27 +00002564#else
Haavard Skinnemoen7192f922006-10-04 16:02:05 +02002565#define ATMEL_CONSOLE_DEVICE NULL
Haavard Skinnemoendfa7f342008-02-08 04:21:04 -08002566
2567static inline bool atmel_is_console_port(struct uart_port *port)
2568{
2569 return false;
2570}
Andrew Victor1e6c9c22006-01-10 16:59:27 +00002571#endif
2572
Haavard Skinnemoen7192f922006-10-04 16:02:05 +02002573static struct uart_driver atmel_uart = {
Remy Bohmerb843aa22008-02-08 04:21:01 -08002574 .owner = THIS_MODULE,
2575 .driver_name = "atmel_serial",
2576 .dev_name = ATMEL_DEVICENAME,
2577 .major = SERIAL_ATMEL_MAJOR,
2578 .minor = MINOR_START,
2579 .nr = ATMEL_MAX_UART,
2580 .cons = ATMEL_CONSOLE_DEVICE,
Andrew Victor1e6c9c22006-01-10 16:59:27 +00002581};
2582
Andrew Victorafefc412006-06-19 19:53:19 +01002583#ifdef CONFIG_PM
Haavard Skinnemoenf826caa2008-02-24 14:34:45 +01002584static bool atmel_serial_clk_will_stop(void)
2585{
2586#ifdef CONFIG_ARCH_AT91
2587 return at91_suspend_entering_slow_clock();
2588#else
2589 return false;
2590#endif
2591}
2592
Remy Bohmerb843aa22008-02-08 04:21:01 -08002593static int atmel_serial_suspend(struct platform_device *pdev,
2594 pm_message_t state)
Andrew Victor1e6c9c22006-01-10 16:59:27 +00002595{
Andrew Victorafefc412006-06-19 19:53:19 +01002596 struct uart_port *port = platform_get_drvdata(pdev);
Haavard Skinnemoenc811ab82008-02-08 04:21:08 -08002597 struct atmel_uart_port *atmel_port = to_atmel_uart_port(port);
Andrew Victor1e6c9c22006-01-10 16:59:27 +00002598
Haavard Skinnemoene1c609e2008-03-14 14:54:13 +01002599 if (atmel_is_console_port(port) && console_suspend_enabled) {
2600 /* Drain the TX shifter */
Cyrille Pitchen4e7decd2015-07-02 15:18:11 +02002601 while (!(atmel_uart_readl(port, ATMEL_US_CSR) &
2602 ATMEL_US_TXEMPTY))
Haavard Skinnemoene1c609e2008-03-14 14:54:13 +01002603 cpu_relax();
2604 }
2605
Anti Sullinf05596d2008-09-22 13:57:54 -07002606 /* we can not wake up if we're running on slow clock */
2607 atmel_port->may_wakeup = device_may_wakeup(&pdev->dev);
Boris BREZILLON2c7af5b2015-03-02 10:18:18 +01002608 if (atmel_serial_clk_will_stop()) {
2609 unsigned long flags;
2610
2611 spin_lock_irqsave(&atmel_port->lock_suspended, flags);
2612 atmel_port->suspended = true;
2613 spin_unlock_irqrestore(&atmel_port->lock_suspended, flags);
Anti Sullinf05596d2008-09-22 13:57:54 -07002614 device_set_wakeup_enable(&pdev->dev, 0);
Boris BREZILLON2c7af5b2015-03-02 10:18:18 +01002615 }
Anti Sullinf05596d2008-09-22 13:57:54 -07002616
2617 uart_suspend_port(&atmel_uart, port);
Andrew Victor1e6c9c22006-01-10 16:59:27 +00002618
2619 return 0;
2620}
2621
Haavard Skinnemoen7192f922006-10-04 16:02:05 +02002622static int atmel_serial_resume(struct platform_device *pdev)
Andrew Victorafefc412006-06-19 19:53:19 +01002623{
2624 struct uart_port *port = platform_get_drvdata(pdev);
Haavard Skinnemoenc811ab82008-02-08 04:21:08 -08002625 struct atmel_uart_port *atmel_port = to_atmel_uart_port(port);
Boris BREZILLON2c7af5b2015-03-02 10:18:18 +01002626 unsigned long flags;
2627
2628 spin_lock_irqsave(&atmel_port->lock_suspended, flags);
2629 if (atmel_port->pending) {
2630 atmel_handle_receive(port, atmel_port->pending);
2631 atmel_handle_status(port, atmel_port->pending,
2632 atmel_port->pending_status);
2633 atmel_handle_transmit(port, atmel_port->pending);
2634 atmel_port->pending = 0;
2635 }
2636 atmel_port->suspended = false;
2637 spin_unlock_irqrestore(&atmel_port->lock_suspended, flags);
Andrew Victorafefc412006-06-19 19:53:19 +01002638
Anti Sullinf05596d2008-09-22 13:57:54 -07002639 uart_resume_port(&atmel_uart, port);
2640 device_set_wakeup_enable(&pdev->dev, atmel_port->may_wakeup);
Andrew Victorafefc412006-06-19 19:53:19 +01002641
2642 return 0;
2643}
2644#else
Haavard Skinnemoen7192f922006-10-04 16:02:05 +02002645#define atmel_serial_suspend NULL
2646#define atmel_serial_resume NULL
Andrew Victorafefc412006-06-19 19:53:19 +01002647#endif
2648
Jaeden Amerob78cd162016-01-26 12:34:49 +01002649static void atmel_serial_probe_fifos(struct atmel_uart_port *atmel_port,
Cyrille Pitchenb5199d42015-07-02 15:18:12 +02002650 struct platform_device *pdev)
2651{
Jaeden Amerob78cd162016-01-26 12:34:49 +01002652 atmel_port->fifo_size = 0;
2653 atmel_port->rts_low = 0;
2654 atmel_port->rts_high = 0;
Cyrille Pitchenb5199d42015-07-02 15:18:12 +02002655
2656 if (of_property_read_u32(pdev->dev.of_node,
2657 "atmel,fifo-size",
Jaeden Amerob78cd162016-01-26 12:34:49 +01002658 &atmel_port->fifo_size))
Cyrille Pitchenb5199d42015-07-02 15:18:12 +02002659 return;
2660
Jaeden Amerob78cd162016-01-26 12:34:49 +01002661 if (!atmel_port->fifo_size)
Cyrille Pitchenb5199d42015-07-02 15:18:12 +02002662 return;
2663
Jaeden Amerob78cd162016-01-26 12:34:49 +01002664 if (atmel_port->fifo_size < ATMEL_MIN_FIFO_SIZE) {
2665 atmel_port->fifo_size = 0;
Cyrille Pitchenb5199d42015-07-02 15:18:12 +02002666 dev_err(&pdev->dev, "Invalid FIFO size\n");
2667 return;
2668 }
2669
2670 /*
2671 * 0 <= rts_low <= rts_high <= fifo_size
2672 * Once their CTS line asserted by the remote peer, some x86 UARTs tend
2673 * to flush their internal TX FIFO, commonly up to 16 data, before
2674 * actually stopping to send new data. So we try to set the RTS High
2675 * Threshold to a reasonably high value respecting this 16 data
2676 * empirical rule when possible.
2677 */
Jaeden Amerob78cd162016-01-26 12:34:49 +01002678 atmel_port->rts_high = max_t(int, atmel_port->fifo_size >> 1,
2679 atmel_port->fifo_size - ATMEL_RTS_HIGH_OFFSET);
2680 atmel_port->rts_low = max_t(int, atmel_port->fifo_size >> 2,
2681 atmel_port->fifo_size - ATMEL_RTS_LOW_OFFSET);
Cyrille Pitchenb5199d42015-07-02 15:18:12 +02002682
2683 dev_info(&pdev->dev, "Using FIFO (%u data)\n",
Jaeden Amerob78cd162016-01-26 12:34:49 +01002684 atmel_port->fifo_size);
Cyrille Pitchenb5199d42015-07-02 15:18:12 +02002685 dev_dbg(&pdev->dev, "RTS High Threshold : %2u data\n",
Jaeden Amerob78cd162016-01-26 12:34:49 +01002686 atmel_port->rts_high);
Cyrille Pitchenb5199d42015-07-02 15:18:12 +02002687 dev_dbg(&pdev->dev, "RTS Low Threshold : %2u data\n",
Jaeden Amerob78cd162016-01-26 12:34:49 +01002688 atmel_port->rts_low);
Cyrille Pitchenb5199d42015-07-02 15:18:12 +02002689}
2690
Bill Pemberton9671f092012-11-19 13:21:50 -05002691static int atmel_serial_probe(struct platform_device *pdev)
Andrew Victorafefc412006-06-19 19:53:19 +01002692{
Jaeden Amerob78cd162016-01-26 12:34:49 +01002693 struct atmel_uart_port *atmel_port;
Nicolas Ferre5fbe46b2011-10-12 18:07:00 +02002694 struct device_node *np = pdev->dev.of_node;
Jingoo Han574de552013-07-30 17:06:57 +09002695 struct atmel_uart_data *pdata = dev_get_platdata(&pdev->dev);
Remy Bohmer1ecc26b2008-02-08 04:21:05 -08002696 void *data;
Nicolas Ferre4cbf9f42011-10-12 18:06:59 +02002697 int ret = -ENODEV;
Ricardo Ribalda Delgadobd737f82014-11-06 09:23:00 +01002698 bool rs485_enabled;
Andrew Victorafefc412006-06-19 19:53:19 +01002699
Haavard Skinnemoen9d09daf2009-10-26 16:50:02 -07002700 BUILD_BUG_ON(ATMEL_SERIAL_RINGSIZE & (ATMEL_SERIAL_RINGSIZE - 1));
Remy Bohmer1ecc26b2008-02-08 04:21:05 -08002701
Nicolas Ferre5fbe46b2011-10-12 18:07:00 +02002702 if (np)
2703 ret = of_alias_get_id(np, "serial");
2704 else
2705 if (pdata)
2706 ret = pdata->num;
Nicolas Ferre4cbf9f42011-10-12 18:06:59 +02002707
2708 if (ret < 0)
Nicolas Ferre5fbe46b2011-10-12 18:07:00 +02002709 /* port id not found in platform data nor device-tree aliases:
Nicolas Ferre4cbf9f42011-10-12 18:06:59 +02002710 * auto-enumerate it */
Pawel Wieczorkiewicz503bded2013-02-20 17:26:20 +01002711 ret = find_first_zero_bit(atmel_ports_in_use, ATMEL_MAX_UART);
Nicolas Ferre4cbf9f42011-10-12 18:06:59 +02002712
Pawel Wieczorkiewicz503bded2013-02-20 17:26:20 +01002713 if (ret >= ATMEL_MAX_UART) {
Nicolas Ferre4cbf9f42011-10-12 18:06:59 +02002714 ret = -ENODEV;
2715 goto err;
2716 }
2717
Pawel Wieczorkiewicz503bded2013-02-20 17:26:20 +01002718 if (test_and_set_bit(ret, atmel_ports_in_use)) {
Nicolas Ferre4cbf9f42011-10-12 18:06:59 +02002719 /* port already in use */
2720 ret = -EBUSY;
2721 goto err;
2722 }
2723
Jaeden Amerob78cd162016-01-26 12:34:49 +01002724 atmel_port = &atmel_ports[ret];
2725 atmel_port->backup_imr = 0;
2726 atmel_port->uart.line = ret;
2727 atmel_serial_probe_fifos(atmel_port, pdev);
Linus Walleij354e57f2013-11-07 10:25:55 +01002728
Nicolas Ferre98f20822016-06-26 09:44:49 +02002729 atomic_set(&atmel_port->tasklet_shutdown, 0);
Jaeden Amerob78cd162016-01-26 12:34:49 +01002730 spin_lock_init(&atmel_port->lock_suspended);
Boris BREZILLON2c7af5b2015-03-02 10:18:18 +01002731
Jaeden Amerob78cd162016-01-26 12:34:49 +01002732 ret = atmel_init_port(atmel_port, pdev);
Boris BREZILLON91f8c2d2013-06-19 13:17:30 +02002733 if (ret)
Cyrille Pitchen6fbb9bd2014-12-09 14:31:34 +01002734 goto err_clear_bit;
Andrew Victorafefc412006-06-19 19:53:19 +01002735
Jaeden Amerob78cd162016-01-26 12:34:49 +01002736 atmel_port->gpios = mctrl_gpio_init(&atmel_port->uart, 0);
2737 if (IS_ERR(atmel_port->gpios)) {
2738 ret = PTR_ERR(atmel_port->gpios);
Uwe Kleine-König18dfef92015-10-18 21:34:45 +02002739 goto err_clear_bit;
2740 }
2741
Jaeden Amerob78cd162016-01-26 12:34:49 +01002742 if (!atmel_use_pdc_rx(&atmel_port->uart)) {
Chip Coldwella6670612008-02-08 04:21:06 -08002743 ret = -ENOMEM;
Haavard Skinnemoen64334712008-02-08 04:21:07 -08002744 data = kmalloc(sizeof(struct atmel_uart_char)
2745 * ATMEL_SERIAL_RINGSIZE, GFP_KERNEL);
Chip Coldwella6670612008-02-08 04:21:06 -08002746 if (!data)
2747 goto err_alloc_ring;
Jaeden Amerob78cd162016-01-26 12:34:49 +01002748 atmel_port->rx_ring.buf = data;
Chip Coldwella6670612008-02-08 04:21:06 -08002749 }
Remy Bohmer1ecc26b2008-02-08 04:21:05 -08002750
Jaeden Amerob78cd162016-01-26 12:34:49 +01002751 rs485_enabled = atmel_port->uart.rs485.flags & SER_RS485_ENABLED;
Ricardo Ribalda Delgadobd737f82014-11-06 09:23:00 +01002752
Jaeden Amerob78cd162016-01-26 12:34:49 +01002753 ret = uart_add_one_port(&atmel_uart, &atmel_port->uart);
Haavard Skinnemoendfa7f342008-02-08 04:21:04 -08002754 if (ret)
2755 goto err_add_port;
2756
Albin Tonnerre8da14b52009-07-29 15:04:18 -07002757#ifdef CONFIG_SERIAL_ATMEL_CONSOLE
Jaeden Amerob78cd162016-01-26 12:34:49 +01002758 if (atmel_is_console_port(&atmel_port->uart)
David Brownell06a7f052008-11-06 12:53:40 -08002759 && ATMEL_CONSOLE_DEVICE->flags & CON_ENABLED) {
2760 /*
2761 * The serial core enabled the clock for us, so undo
Boris BREZILLON91f8c2d2013-06-19 13:17:30 +02002762 * the clk_prepare_enable() in atmel_console_setup()
David Brownell06a7f052008-11-06 12:53:40 -08002763 */
Jaeden Amerob78cd162016-01-26 12:34:49 +01002764 clk_disable_unprepare(atmel_port->clk);
David Brownell06a7f052008-11-06 12:53:40 -08002765 }
Albin Tonnerre8da14b52009-07-29 15:04:18 -07002766#endif
David Brownell06a7f052008-11-06 12:53:40 -08002767
Haavard Skinnemoendfa7f342008-02-08 04:21:04 -08002768 device_init_wakeup(&pdev->dev, 1);
Jaeden Amerob78cd162016-01-26 12:34:49 +01002769 platform_set_drvdata(pdev, atmel_port);
Haavard Skinnemoendfa7f342008-02-08 04:21:04 -08002770
Cyrille Pitchend4f64182014-12-09 14:31:33 +01002771 /*
2772 * The peripheral clock has been disabled by atmel_init_port():
2773 * enable it before accessing I/O registers
2774 */
Jaeden Amerob78cd162016-01-26 12:34:49 +01002775 clk_prepare_enable(atmel_port->clk);
Cyrille Pitchend4f64182014-12-09 14:31:33 +01002776
Ricardo Ribalda Delgadobd737f82014-11-06 09:23:00 +01002777 if (rs485_enabled) {
Jaeden Amerob78cd162016-01-26 12:34:49 +01002778 atmel_uart_writel(&atmel_port->uart, ATMEL_US_MR,
Cyrille Pitchen4e7decd2015-07-02 15:18:11 +02002779 ATMEL_US_USMODE_NORMAL);
Jaeden Amerob78cd162016-01-26 12:34:49 +01002780 atmel_uart_writel(&atmel_port->uart, ATMEL_US_CR,
2781 ATMEL_US_RTSEN);
Claudio Scordino5dfbd1d72011-01-13 15:45:39 -08002782 }
2783
Elen Song055560b2013-07-22 16:30:29 +08002784 /*
2785 * Get port name of usart or uart
2786 */
Jaeden Amerob78cd162016-01-26 12:34:49 +01002787 atmel_get_ip_name(&atmel_port->uart);
Elen Song055560b2013-07-22 16:30:29 +08002788
Cyrille Pitchend4f64182014-12-09 14:31:33 +01002789 /*
2790 * The peripheral clock can now safely be disabled till the port
2791 * is used
2792 */
Jaeden Amerob78cd162016-01-26 12:34:49 +01002793 clk_disable_unprepare(atmel_port->clk);
Cyrille Pitchend4f64182014-12-09 14:31:33 +01002794
Haavard Skinnemoendfa7f342008-02-08 04:21:04 -08002795 return 0;
2796
2797err_add_port:
Jaeden Amerob78cd162016-01-26 12:34:49 +01002798 kfree(atmel_port->rx_ring.buf);
2799 atmel_port->rx_ring.buf = NULL;
Remy Bohmer1ecc26b2008-02-08 04:21:05 -08002800err_alloc_ring:
Jaeden Amerob78cd162016-01-26 12:34:49 +01002801 if (!atmel_is_console_port(&atmel_port->uart)) {
2802 clk_put(atmel_port->clk);
2803 atmel_port->clk = NULL;
Andrew Victorafefc412006-06-19 19:53:19 +01002804 }
Cyrille Pitchen6fbb9bd2014-12-09 14:31:34 +01002805err_clear_bit:
Jaeden Amerob78cd162016-01-26 12:34:49 +01002806 clear_bit(atmel_port->uart.line, atmel_ports_in_use);
Nicolas Ferre4cbf9f42011-10-12 18:06:59 +02002807err:
Andrew Victorafefc412006-06-19 19:53:19 +01002808 return ret;
2809}
2810
Romain Izardf4a8ab042016-02-26 11:15:04 +01002811/*
2812 * Even if the driver is not modular, it makes sense to be able to
2813 * unbind a device: there can be many bound devices, and there are
2814 * situations where dynamic binding and unbinding can be useful.
2815 *
2816 * For example, a connected device can require a specific firmware update
2817 * protocol that needs bitbanging on IO lines, but use the regular serial
2818 * port in the normal case.
2819 */
2820static int atmel_serial_remove(struct platform_device *pdev)
2821{
2822 struct uart_port *port = platform_get_drvdata(pdev);
2823 struct atmel_uart_port *atmel_port = to_atmel_uart_port(port);
2824 int ret = 0;
2825
Nicolas Ferre00e8e6582016-06-17 12:05:47 +02002826 tasklet_kill(&atmel_port->tasklet_rx);
2827 tasklet_kill(&atmel_port->tasklet_tx);
Romain Izardf4a8ab042016-02-26 11:15:04 +01002828
2829 device_init_wakeup(&pdev->dev, 0);
2830
2831 ret = uart_remove_one_port(&atmel_uart, port);
2832
2833 kfree(atmel_port->rx_ring.buf);
2834
2835 /* "port" is allocated statically, so we shouldn't free it */
2836
2837 clear_bit(port->line, atmel_ports_in_use);
2838
2839 clk_put(atmel_port->clk);
2840 atmel_port->clk = NULL;
2841
2842 return ret;
2843}
2844
Haavard Skinnemoen7192f922006-10-04 16:02:05 +02002845static struct platform_driver atmel_serial_driver = {
2846 .probe = atmel_serial_probe,
Romain Izardf4a8ab042016-02-26 11:15:04 +01002847 .remove = atmel_serial_remove,
Haavard Skinnemoen7192f922006-10-04 16:02:05 +02002848 .suspend = atmel_serial_suspend,
2849 .resume = atmel_serial_resume,
Andrew Victorafefc412006-06-19 19:53:19 +01002850 .driver = {
Paul Gortmakerc39dfeb2015-10-18 18:21:16 -04002851 .name = "atmel_usart",
2852 .of_match_table = of_match_ptr(atmel_serial_dt_ids),
Andrew Victorafefc412006-06-19 19:53:19 +01002853 },
2854};
2855
Haavard Skinnemoen7192f922006-10-04 16:02:05 +02002856static int __init atmel_serial_init(void)
Andrew Victorafefc412006-06-19 19:53:19 +01002857{
2858 int ret;
2859
Haavard Skinnemoen7192f922006-10-04 16:02:05 +02002860 ret = uart_register_driver(&atmel_uart);
Andrew Victorafefc412006-06-19 19:53:19 +01002861 if (ret)
2862 return ret;
2863
Haavard Skinnemoen7192f922006-10-04 16:02:05 +02002864 ret = platform_driver_register(&atmel_serial_driver);
Andrew Victorafefc412006-06-19 19:53:19 +01002865 if (ret)
Haavard Skinnemoen7192f922006-10-04 16:02:05 +02002866 uart_unregister_driver(&atmel_uart);
Andrew Victorafefc412006-06-19 19:53:19 +01002867
2868 return ret;
2869}
Paul Gortmakerc39dfeb2015-10-18 18:21:16 -04002870device_initcall(atmel_serial_init);