xref: /openbmc/linux/drivers/tty/serial/atmel_serial.c (revision 94ec165c9f98189ce9aa50cfcb7181ba23f92eb7)
1e3b3d0f5SGreg Kroah-Hartman // SPDX-License-Identifier: GPL-2.0+
2ab4382d2SGreg Kroah-Hartman /*
372ce5732SAndy Shevchenko  *  Driver for Atmel AT91 Serial ports
4ab4382d2SGreg Kroah-Hartman  *  Copyright (C) 2003 Rick Bronson
5ab4382d2SGreg Kroah-Hartman  *
6ab4382d2SGreg Kroah-Hartman  *  Based on drivers/char/serial_sa1100.c, by Deep Blue Solutions Ltd.
7ab4382d2SGreg Kroah-Hartman  *  Based on drivers/char/serial.c, by Linus Torvalds, Theodore Ts'o.
8ab4382d2SGreg Kroah-Hartman  *
9ab4382d2SGreg Kroah-Hartman  *  DMA support added by Chip Coldwell.
10ab4382d2SGreg Kroah-Hartman  */
11702d10a0SJiri Slaby #include <linux/circ_buf.h>
12ab4382d2SGreg Kroah-Hartman #include <linux/tty.h>
13ab4382d2SGreg Kroah-Hartman #include <linux/ioport.h>
14ab4382d2SGreg Kroah-Hartman #include <linux/slab.h>
15ab4382d2SGreg Kroah-Hartman #include <linux/init.h>
16ab4382d2SGreg Kroah-Hartman #include <linux/serial.h>
17ab4382d2SGreg Kroah-Hartman #include <linux/clk.h>
185e3ce1f2SSergiu Moga #include <linux/clk-provider.h>
19ab4382d2SGreg Kroah-Hartman #include <linux/console.h>
20ab4382d2SGreg Kroah-Hartman #include <linux/sysrq.h>
21ab4382d2SGreg Kroah-Hartman #include <linux/tty_flip.h>
22ab4382d2SGreg Kroah-Hartman #include <linux/platform_device.h>
235fbe46b6SNicolas Ferre #include <linux/of.h>
245fbe46b6SNicolas Ferre #include <linux/of_device.h>
25ab4382d2SGreg Kroah-Hartman #include <linux/dma-mapping.h>
266b997babSVinod Koul #include <linux/dmaengine.h>
27ab4382d2SGreg Kroah-Hartman #include <linux/atmel_pdc.h>
28ab4382d2SGreg Kroah-Hartman #include <linux/uaccess.h>
29bcd2360cSJean-Christophe PLAGNIOL-VILLARD #include <linux/platform_data/atmel.h>
302e68c22fSElen Song #include <linux/timer.h>
31e0b0baadSRichard Genoud #include <linux/err.h>
32ab5e4e41SRichard Genoud #include <linux/irq.h>
332c7af5baSBoris BREZILLON #include <linux/suspend.h>
342b5cf14bSGeliang Tang #include <linux/mm.h>
35635b2589SZihao Tang #include <linux/io.h>
36ab4382d2SGreg Kroah-Hartman 
37377fedd1SNicolas Ferre #include <asm/div64.h>
38ab4382d2SGreg Kroah-Hartman #include <asm/ioctls.h>
39ab4382d2SGreg Kroah-Hartman 
40ab4382d2SGreg Kroah-Hartman #define PDC_BUFFER_SIZE		512
41ab4382d2SGreg Kroah-Hartman /* Revisit: We should calculate this based on the actual port settings */
42ab4382d2SGreg Kroah-Hartman #define PDC_RX_TIMEOUT		(3 * 10)		/* 3 bytes */
43ab4382d2SGreg Kroah-Hartman 
44b5199d46SCyrille Pitchen /* The minium number of data FIFOs should be able to contain */
45b5199d46SCyrille Pitchen #define ATMEL_MIN_FIFO_SIZE	8
46b5199d46SCyrille Pitchen /*
47b5199d46SCyrille Pitchen  * These two offsets are substracted from the RX FIFO size to define the RTS
48b5199d46SCyrille Pitchen  * high and low thresholds
49b5199d46SCyrille Pitchen  */
50b5199d46SCyrille Pitchen #define ATMEL_RTS_HIGH_OFFSET	16
51b5199d46SCyrille Pitchen #define ATMEL_RTS_LOW_OFFSET	20
52b5199d46SCyrille Pitchen 
53ab4382d2SGreg Kroah-Hartman #include <linux/serial_core.h>
54ab4382d2SGreg Kroah-Hartman 
55e0b0baadSRichard Genoud #include "serial_mctrl_gpio.h"
568961df89SRichard Genoud #include "atmel_serial.h"
57e0b0baadSRichard Genoud 
58ab4382d2SGreg Kroah-Hartman static void atmel_start_rx(struct uart_port *port);
59ab4382d2SGreg Kroah-Hartman static void atmel_stop_rx(struct uart_port *port);
60ab4382d2SGreg Kroah-Hartman 
61ab4382d2SGreg Kroah-Hartman #ifdef CONFIG_SERIAL_ATMEL_TTYAT
62ab4382d2SGreg Kroah-Hartman 
63ab4382d2SGreg Kroah-Hartman /* Use device name ttyAT, major 204 and minor 154-169.  This is necessary if we
64ab4382d2SGreg Kroah-Hartman  * should coexist with the 8250 driver, such as if we have an external 16C550
65ab4382d2SGreg Kroah-Hartman  * UART. */
66ab4382d2SGreg Kroah-Hartman #define SERIAL_ATMEL_MAJOR	204
67ab4382d2SGreg Kroah-Hartman #define MINOR_START		154
68ab4382d2SGreg Kroah-Hartman #define ATMEL_DEVICENAME	"ttyAT"
69ab4382d2SGreg Kroah-Hartman 
70ab4382d2SGreg Kroah-Hartman #else
71ab4382d2SGreg Kroah-Hartman 
72ab4382d2SGreg Kroah-Hartman /* Use device name ttyS, major 4, minor 64-68.  This is the usual serial port
73ab4382d2SGreg Kroah-Hartman  * name, but it is legally reserved for the 8250 driver. */
74ab4382d2SGreg Kroah-Hartman #define SERIAL_ATMEL_MAJOR	TTY_MAJOR
75ab4382d2SGreg Kroah-Hartman #define MINOR_START		64
76ab4382d2SGreg Kroah-Hartman #define ATMEL_DEVICENAME	"ttyS"
77ab4382d2SGreg Kroah-Hartman 
78ab4382d2SGreg Kroah-Hartman #endif
79ab4382d2SGreg Kroah-Hartman 
80ab4382d2SGreg Kroah-Hartman #define ATMEL_ISR_PASS_LIMIT	256
81ab4382d2SGreg Kroah-Hartman 
82ab4382d2SGreg Kroah-Hartman struct atmel_dma_buffer {
83ab4382d2SGreg Kroah-Hartman 	unsigned char	*buf;
84ab4382d2SGreg Kroah-Hartman 	dma_addr_t	dma_addr;
85ab4382d2SGreg Kroah-Hartman 	unsigned int	dma_size;
86ab4382d2SGreg Kroah-Hartman 	unsigned int	ofs;
87ab4382d2SGreg Kroah-Hartman };
88ab4382d2SGreg Kroah-Hartman 
89ab4382d2SGreg Kroah-Hartman struct atmel_uart_char {
90ab4382d2SGreg Kroah-Hartman 	u16		status;
91ab4382d2SGreg Kroah-Hartman 	u16		ch;
92ab4382d2SGreg Kroah-Hartman };
93ab4382d2SGreg Kroah-Hartman 
94637ba54fSLudovic Desroches /*
95637ba54fSLudovic Desroches  * Be careful, the real size of the ring buffer is
96637ba54fSLudovic Desroches  * sizeof(atmel_uart_char) * ATMEL_SERIAL_RINGSIZE. It means that ring buffer
97637ba54fSLudovic Desroches  * can contain up to 1024 characters in PIO mode and up to 4096 characters in
98637ba54fSLudovic Desroches  * DMA mode.
99637ba54fSLudovic Desroches  */
100ab4382d2SGreg Kroah-Hartman #define ATMEL_SERIAL_RINGSIZE 1024
101ab4382d2SGreg Kroah-Hartman 
102ab4382d2SGreg Kroah-Hartman /*
1039af92fbfSAlexandre Belloni  * at91: 6 USARTs and one DBGU port (SAM9260)
104432f9748SAlexandre Belloni  * samx7: 3 USARTs and 5 UARTs
1059af92fbfSAlexandre Belloni  */
106432f9748SAlexandre Belloni #define ATMEL_MAX_UART		8
1079af92fbfSAlexandre Belloni 
1089af92fbfSAlexandre Belloni /*
109ab4382d2SGreg Kroah-Hartman  * We wrap our port structure around the generic uart_port.
110ab4382d2SGreg Kroah-Hartman  */
111ab4382d2SGreg Kroah-Hartman struct atmel_uart_port {
112ab4382d2SGreg Kroah-Hartman 	struct uart_port	uart;		/* uart */
113ab4382d2SGreg Kroah-Hartman 	struct clk		*clk;		/* uart clock */
1145e3ce1f2SSergiu Moga 	struct clk		*gclk;		/* uart generic clock */
115ab4382d2SGreg Kroah-Hartman 	int			may_wakeup;	/* cached value of device_may_wakeup for times we need to disable it */
116ab4382d2SGreg Kroah-Hartman 	u32			backup_imr;	/* IMR saved during suspend */
117ab4382d2SGreg Kroah-Hartman 	int			break_active;	/* break being received */
118ab4382d2SGreg Kroah-Hartman 
11934df42f5SElen Song 	bool			use_dma_rx;	/* enable DMA receiver */
12064e22ebeSElen Song 	bool			use_pdc_rx;	/* enable PDC receiver */
121ab4382d2SGreg Kroah-Hartman 	short			pdc_rx_idx;	/* current PDC RX buffer */
122ab4382d2SGreg Kroah-Hartman 	struct atmel_dma_buffer	pdc_rx[2];	/* PDC receier */
123ab4382d2SGreg Kroah-Hartman 
12408f738beSElen Song 	bool			use_dma_tx;     /* enable DMA transmitter */
12564e22ebeSElen Song 	bool			use_pdc_tx;	/* enable PDC transmitter */
126ab4382d2SGreg Kroah-Hartman 	struct atmel_dma_buffer	pdc_tx;		/* PDC transmitter */
127ab4382d2SGreg Kroah-Hartman 
12808f738beSElen Song 	spinlock_t			lock_tx;	/* port lock */
12934df42f5SElen Song 	spinlock_t			lock_rx;	/* port lock */
13008f738beSElen Song 	struct dma_chan			*chan_tx;
13134df42f5SElen Song 	struct dma_chan			*chan_rx;
13208f738beSElen Song 	struct dma_async_tx_descriptor	*desc_tx;
13334df42f5SElen Song 	struct dma_async_tx_descriptor	*desc_rx;
13408f738beSElen Song 	dma_cookie_t			cookie_tx;
13534df42f5SElen Song 	dma_cookie_t			cookie_rx;
13608f738beSElen Song 	struct scatterlist		sg_tx;
13734df42f5SElen Song 	struct scatterlist		sg_rx;
13800e8e658SNicolas Ferre 	struct tasklet_struct	tasklet_rx;
13900e8e658SNicolas Ferre 	struct tasklet_struct	tasklet_tx;
14098f2082cSNicolas Ferre 	atomic_t		tasklet_shutdown;
141ab4382d2SGreg Kroah-Hartman 	unsigned int		irq_status_prev;
1425f258b3eSCyrille Pitchen 	unsigned int		tx_len;
143ab4382d2SGreg Kroah-Hartman 
144ab4382d2SGreg Kroah-Hartman 	struct circ_buf		rx_ring;
145ab4382d2SGreg Kroah-Hartman 
146e0b0baadSRichard Genoud 	struct mctrl_gpios	*gpios;
147377fedd1SNicolas Ferre 	u32			backup_mode;	/* MR saved during iso7816 operations */
148377fedd1SNicolas Ferre 	u32			backup_brgr;	/* BRGR saved during iso7816 operations */
149ab4382d2SGreg Kroah-Hartman 	unsigned int		tx_done_mask;
150b5199d46SCyrille Pitchen 	u32			fifo_size;
151b5199d46SCyrille Pitchen 	u32			rts_high;
152b5199d46SCyrille Pitchen 	u32			rts_low;
153ab5e4e41SRichard Genoud 	bool			ms_irq_enabled;
1542958cceeSLudovic Desroches 	u32			rtor;	/* address of receiver timeout register if it exists */
1555644bf18SSergiu Moga 	bool			is_usart;
1565bf5635aSLudovic Desroches 	bool			has_frac_baudrate;
1574b769371SNicolas Ferre 	bool			has_hw_timer;
1584b769371SNicolas Ferre 	struct timer_list	uart_timer;
1592c7af5baSBoris BREZILLON 
160ea04f82aSRomain Izard 	bool			tx_stopped;
1612c7af5baSBoris BREZILLON 	bool			suspended;
1622c7af5baSBoris BREZILLON 	unsigned int		pending;
1632c7af5baSBoris BREZILLON 	unsigned int		pending_status;
1642c7af5baSBoris BREZILLON 	spinlock_t		lock_suspended;
1652c7af5baSBoris BREZILLON 
16669646d7aSRazvan Stefanescu 	bool			hd_start_rx;	/* can start RX during half-duplex operation */
16769646d7aSRazvan Stefanescu 
168377fedd1SNicolas Ferre 	/* ISO7816 */
169377fedd1SNicolas Ferre 	unsigned int		fidi_min;
170377fedd1SNicolas Ferre 	unsigned int		fidi_max;
171377fedd1SNicolas Ferre 
1726a5f0e2fSAlexandre Belloni 	struct {
1736a5f0e2fSAlexandre Belloni 		u32		cr;
1746a5f0e2fSAlexandre Belloni 		u32		mr;
1756a5f0e2fSAlexandre Belloni 		u32		imr;
1766a5f0e2fSAlexandre Belloni 		u32		brgr;
1776a5f0e2fSAlexandre Belloni 		u32		rtor;
1786a5f0e2fSAlexandre Belloni 		u32		ttgr;
1796a5f0e2fSAlexandre Belloni 		u32		fmr;
1806a5f0e2fSAlexandre Belloni 		u32		fimr;
1816a5f0e2fSAlexandre Belloni 	} cache;
1826a5f0e2fSAlexandre Belloni 
183a930e528SElen Song 	int (*prepare_rx)(struct uart_port *port);
184a930e528SElen Song 	int (*prepare_tx)(struct uart_port *port);
185a930e528SElen Song 	void (*schedule_rx)(struct uart_port *port);
186a930e528SElen Song 	void (*schedule_tx)(struct uart_port *port);
187a930e528SElen Song 	void (*release_rx)(struct uart_port *port);
188a930e528SElen Song 	void (*release_tx)(struct uart_port *port);
189ab4382d2SGreg Kroah-Hartman };
190ab4382d2SGreg Kroah-Hartman 
191ab4382d2SGreg Kroah-Hartman static struct atmel_uart_port atmel_ports[ATMEL_MAX_UART];
192503bded9SPawel Wieczorkiewicz static DECLARE_BITMAP(atmel_ports_in_use, ATMEL_MAX_UART);
193ab4382d2SGreg Kroah-Hartman 
1945fbe46b6SNicolas Ferre #if defined(CONFIG_OF)
1955fbe46b6SNicolas Ferre static const struct of_device_id atmel_serial_dt_ids[] = {
196c24d2531SRadu Pirea 	{ .compatible = "atmel,at91rm9200-usart-serial" },
1975fbe46b6SNicolas Ferre 	{ /* sentinel */ }
1985fbe46b6SNicolas Ferre };
1995fbe46b6SNicolas Ferre #endif
2005fbe46b6SNicolas Ferre 
201ab4382d2SGreg Kroah-Hartman static inline struct atmel_uart_port *
202ab4382d2SGreg Kroah-Hartman to_atmel_uart_port(struct uart_port *uart)
203ab4382d2SGreg Kroah-Hartman {
204ab4382d2SGreg Kroah-Hartman 	return container_of(uart, struct atmel_uart_port, uart);
205ab4382d2SGreg Kroah-Hartman }
206ab4382d2SGreg Kroah-Hartman 
2074e7decdaSCyrille Pitchen static inline u32 atmel_uart_readl(struct uart_port *port, u32 reg)
2084e7decdaSCyrille Pitchen {
2094e7decdaSCyrille Pitchen 	return __raw_readl(port->membase + reg);
2104e7decdaSCyrille Pitchen }
2114e7decdaSCyrille Pitchen 
2124e7decdaSCyrille Pitchen static inline void atmel_uart_writel(struct uart_port *port, u32 reg, u32 value)
2134e7decdaSCyrille Pitchen {
2144e7decdaSCyrille Pitchen 	__raw_writel(value, port->membase + reg);
2154e7decdaSCyrille Pitchen }
2164e7decdaSCyrille Pitchen 
217a6499435SCyrille Pitchen static inline u8 atmel_uart_read_char(struct uart_port *port)
218a6499435SCyrille Pitchen {
219a6499435SCyrille Pitchen 	return __raw_readb(port->membase + ATMEL_US_RHR);
220a6499435SCyrille Pitchen }
221a6499435SCyrille Pitchen 
222a6499435SCyrille Pitchen static inline void atmel_uart_write_char(struct uart_port *port, u8 value)
223a6499435SCyrille Pitchen {
224a6499435SCyrille Pitchen 	__raw_writeb(value, port->membase + ATMEL_US_THR);
225a6499435SCyrille Pitchen }
226a6499435SCyrille Pitchen 
227f3040983SRazvan Stefanescu static inline int atmel_uart_is_half_duplex(struct uart_port *port)
228f3040983SRazvan Stefanescu {
229f3040983SRazvan Stefanescu 	return ((port->rs485.flags & SER_RS485_ENABLED) &&
230f3040983SRazvan Stefanescu 		!(port->rs485.flags & SER_RS485_RX_DURING_TX)) ||
231f3040983SRazvan Stefanescu 		(port->iso7816.flags & SER_ISO7816_ENABLED);
232f3040983SRazvan Stefanescu }
233f3040983SRazvan Stefanescu 
2345e3ce1f2SSergiu Moga static inline int atmel_error_rate(int desired_value, int actual_value)
2355e3ce1f2SSergiu Moga {
2365e3ce1f2SSergiu Moga 	return 100 - (desired_value * 100) / actual_value;
2375e3ce1f2SSergiu Moga }
2385e3ce1f2SSergiu Moga 
239ab4382d2SGreg Kroah-Hartman #ifdef CONFIG_SERIAL_ATMEL_PDC
24064e22ebeSElen Song static bool atmel_use_pdc_rx(struct uart_port *port)
241ab4382d2SGreg Kroah-Hartman {
242ab4382d2SGreg Kroah-Hartman 	struct atmel_uart_port *atmel_port = to_atmel_uart_port(port);
243ab4382d2SGreg Kroah-Hartman 
24464e22ebeSElen Song 	return atmel_port->use_pdc_rx;
245ab4382d2SGreg Kroah-Hartman }
246ab4382d2SGreg Kroah-Hartman 
24764e22ebeSElen Song static bool atmel_use_pdc_tx(struct uart_port *port)
248ab4382d2SGreg Kroah-Hartman {
249ab4382d2SGreg Kroah-Hartman 	struct atmel_uart_port *atmel_port = to_atmel_uart_port(port);
250ab4382d2SGreg Kroah-Hartman 
25164e22ebeSElen Song 	return atmel_port->use_pdc_tx;
252ab4382d2SGreg Kroah-Hartman }
253ab4382d2SGreg Kroah-Hartman #else
25464e22ebeSElen Song static bool atmel_use_pdc_rx(struct uart_port *port)
255ab4382d2SGreg Kroah-Hartman {
256ab4382d2SGreg Kroah-Hartman 	return false;
257ab4382d2SGreg Kroah-Hartman }
258ab4382d2SGreg Kroah-Hartman 
25964e22ebeSElen Song static bool atmel_use_pdc_tx(struct uart_port *port)
260ab4382d2SGreg Kroah-Hartman {
261ab4382d2SGreg Kroah-Hartman 	return false;
262ab4382d2SGreg Kroah-Hartman }
263ab4382d2SGreg Kroah-Hartman #endif
264ab4382d2SGreg Kroah-Hartman 
26508f738beSElen Song static bool atmel_use_dma_tx(struct uart_port *port)
26608f738beSElen Song {
26708f738beSElen Song 	struct atmel_uart_port *atmel_port = to_atmel_uart_port(port);
26808f738beSElen Song 
26908f738beSElen Song 	return atmel_port->use_dma_tx;
27008f738beSElen Song }
27108f738beSElen Song 
27234df42f5SElen Song static bool atmel_use_dma_rx(struct uart_port *port)
27334df42f5SElen Song {
27434df42f5SElen Song 	struct atmel_uart_port *atmel_port = to_atmel_uart_port(port);
27534df42f5SElen Song 
27634df42f5SElen Song 	return atmel_port->use_dma_rx;
27734df42f5SElen Song }
27834df42f5SElen Song 
2795be605acSAlexandre Belloni static bool atmel_use_fifo(struct uart_port *port)
2805be605acSAlexandre Belloni {
2815be605acSAlexandre Belloni 	struct atmel_uart_port *atmel_port = to_atmel_uart_port(port);
2825be605acSAlexandre Belloni 
2835be605acSAlexandre Belloni 	return atmel_port->fifo_size;
2845be605acSAlexandre Belloni }
2855be605acSAlexandre Belloni 
28698f2082cSNicolas Ferre static void atmel_tasklet_schedule(struct atmel_uart_port *atmel_port,
28798f2082cSNicolas Ferre 				   struct tasklet_struct *t)
28898f2082cSNicolas Ferre {
28998f2082cSNicolas Ferre 	if (!atomic_read(&atmel_port->tasklet_shutdown))
29098f2082cSNicolas Ferre 		tasklet_schedule(t);
29198f2082cSNicolas Ferre }
29298f2082cSNicolas Ferre 
293ab4382d2SGreg Kroah-Hartman /* Enable or disable the rs485 support */
294ae50bb27SIlpo Järvinen static int atmel_config_rs485(struct uart_port *port, struct ktermios *termios,
29513bd3e6fSRicardo Ribalda Delgado 			      struct serial_rs485 *rs485conf)
296ab4382d2SGreg Kroah-Hartman {
297ab4382d2SGreg Kroah-Hartman 	struct atmel_uart_port *atmel_port = to_atmel_uart_port(port);
298ab4382d2SGreg Kroah-Hartman 	unsigned int mode;
299ab4382d2SGreg Kroah-Hartman 
300ab4382d2SGreg Kroah-Hartman 	/* Disable interrupts */
3014e7decdaSCyrille Pitchen 	atmel_uart_writel(port, ATMEL_US_IDR, atmel_port->tx_done_mask);
302ab4382d2SGreg Kroah-Hartman 
3034e7decdaSCyrille Pitchen 	mode = atmel_uart_readl(port, ATMEL_US_MR);
304ab4382d2SGreg Kroah-Hartman 
305ab4382d2SGreg Kroah-Hartman 	if (rs485conf->flags & SER_RS485_ENABLED) {
306ab4382d2SGreg Kroah-Hartman 		dev_dbg(port->dev, "Setting UART to RS485\n");
30760efd051SLino Sanfilippo 		if (rs485conf->flags & SER_RS485_RX_DURING_TX)
308477b8383SCodrin.Ciubotariu@microchip.com 			atmel_port->tx_done_mask = ATMEL_US_TXRDY;
309477b8383SCodrin.Ciubotariu@microchip.com 		else
310ab4382d2SGreg Kroah-Hartman 			atmel_port->tx_done_mask = ATMEL_US_TXEMPTY;
311477b8383SCodrin.Ciubotariu@microchip.com 
3124e7decdaSCyrille Pitchen 		atmel_uart_writel(port, ATMEL_US_TTGR,
3134e7decdaSCyrille Pitchen 				  rs485conf->delay_rts_after_send);
314692a8ebcSSergiu Moga 		mode &= ~ATMEL_US_USMODE;
315ab4382d2SGreg Kroah-Hartman 		mode |= ATMEL_US_USMODE_RS485;
316ab4382d2SGreg Kroah-Hartman 	} else {
317ab4382d2SGreg Kroah-Hartman 		dev_dbg(port->dev, "Setting UART to RS232\n");
31864e22ebeSElen Song 		if (atmel_use_pdc_tx(port))
319ab4382d2SGreg Kroah-Hartman 			atmel_port->tx_done_mask = ATMEL_US_ENDTX |
320ab4382d2SGreg Kroah-Hartman 				ATMEL_US_TXBUFE;
321ab4382d2SGreg Kroah-Hartman 		else
322ab4382d2SGreg Kroah-Hartman 			atmel_port->tx_done_mask = ATMEL_US_TXRDY;
323ab4382d2SGreg Kroah-Hartman 	}
3244e7decdaSCyrille Pitchen 	atmel_uart_writel(port, ATMEL_US_MR, mode);
325ab4382d2SGreg Kroah-Hartman 
326ab4382d2SGreg Kroah-Hartman 	/* Enable interrupts */
3274e7decdaSCyrille Pitchen 	atmel_uart_writel(port, ATMEL_US_IER, atmel_port->tx_done_mask);
328ab4382d2SGreg Kroah-Hartman 
32913bd3e6fSRicardo Ribalda Delgado 	return 0;
330ab4382d2SGreg Kroah-Hartman }
331ab4382d2SGreg Kroah-Hartman 
332377fedd1SNicolas Ferre static unsigned int atmel_calc_cd(struct uart_port *port,
333377fedd1SNicolas Ferre 				  struct serial_iso7816 *iso7816conf)
334377fedd1SNicolas Ferre {
335377fedd1SNicolas Ferre 	struct atmel_uart_port *atmel_port = to_atmel_uart_port(port);
336377fedd1SNicolas Ferre 	unsigned int cd;
337377fedd1SNicolas Ferre 	u64 mck_rate;
338377fedd1SNicolas Ferre 
339377fedd1SNicolas Ferre 	mck_rate = (u64)clk_get_rate(atmel_port->clk);
340377fedd1SNicolas Ferre 	do_div(mck_rate, iso7816conf->clk);
341377fedd1SNicolas Ferre 	cd = mck_rate;
342377fedd1SNicolas Ferre 	return cd;
343377fedd1SNicolas Ferre }
344377fedd1SNicolas Ferre 
345377fedd1SNicolas Ferre static unsigned int atmel_calc_fidi(struct uart_port *port,
346377fedd1SNicolas Ferre 				    struct serial_iso7816 *iso7816conf)
347377fedd1SNicolas Ferre {
348377fedd1SNicolas Ferre 	u64 fidi = 0;
349377fedd1SNicolas Ferre 
350377fedd1SNicolas Ferre 	if (iso7816conf->sc_fi && iso7816conf->sc_di) {
351377fedd1SNicolas Ferre 		fidi = (u64)iso7816conf->sc_fi;
352377fedd1SNicolas Ferre 		do_div(fidi, iso7816conf->sc_di);
353377fedd1SNicolas Ferre 	}
354377fedd1SNicolas Ferre 	return (u32)fidi;
355377fedd1SNicolas Ferre }
356377fedd1SNicolas Ferre 
357377fedd1SNicolas Ferre /* Enable or disable the iso7816 support */
358377fedd1SNicolas Ferre /* Called with interrupts disabled */
359377fedd1SNicolas Ferre static int atmel_config_iso7816(struct uart_port *port,
360377fedd1SNicolas Ferre 				struct serial_iso7816 *iso7816conf)
361377fedd1SNicolas Ferre {
362377fedd1SNicolas Ferre 	struct atmel_uart_port *atmel_port = to_atmel_uart_port(port);
363377fedd1SNicolas Ferre 	unsigned int mode;
364377fedd1SNicolas Ferre 	unsigned int cd, fidi;
365377fedd1SNicolas Ferre 	int ret = 0;
366377fedd1SNicolas Ferre 
367377fedd1SNicolas Ferre 	/* Disable interrupts */
368377fedd1SNicolas Ferre 	atmel_uart_writel(port, ATMEL_US_IDR, atmel_port->tx_done_mask);
369377fedd1SNicolas Ferre 
370377fedd1SNicolas Ferre 	mode = atmel_uart_readl(port, ATMEL_US_MR);
371377fedd1SNicolas Ferre 
372377fedd1SNicolas Ferre 	if (iso7816conf->flags & SER_ISO7816_ENABLED) {
373377fedd1SNicolas Ferre 		mode &= ~ATMEL_US_USMODE;
374377fedd1SNicolas Ferre 
375377fedd1SNicolas Ferre 		if (iso7816conf->tg > 255) {
376377fedd1SNicolas Ferre 			dev_err(port->dev, "ISO7816: Timeguard exceeding 255\n");
377377fedd1SNicolas Ferre 			memset(iso7816conf, 0, sizeof(struct serial_iso7816));
378377fedd1SNicolas Ferre 			ret = -EINVAL;
379377fedd1SNicolas Ferre 			goto err_out;
380377fedd1SNicolas Ferre 		}
381377fedd1SNicolas Ferre 
382377fedd1SNicolas Ferre 		if ((iso7816conf->flags & SER_ISO7816_T_PARAM)
383377fedd1SNicolas Ferre 		    == SER_ISO7816_T(0)) {
384377fedd1SNicolas Ferre 			mode |= ATMEL_US_USMODE_ISO7816_T0 | ATMEL_US_DSNACK;
385377fedd1SNicolas Ferre 		} else if ((iso7816conf->flags & SER_ISO7816_T_PARAM)
386377fedd1SNicolas Ferre 			   == SER_ISO7816_T(1)) {
387377fedd1SNicolas Ferre 			mode |= ATMEL_US_USMODE_ISO7816_T1 | ATMEL_US_INACK;
388377fedd1SNicolas Ferre 		} else {
389377fedd1SNicolas Ferre 			dev_err(port->dev, "ISO7816: Type not supported\n");
390377fedd1SNicolas Ferre 			memset(iso7816conf, 0, sizeof(struct serial_iso7816));
391377fedd1SNicolas Ferre 			ret = -EINVAL;
392377fedd1SNicolas Ferre 			goto err_out;
393377fedd1SNicolas Ferre 		}
394377fedd1SNicolas Ferre 
395377fedd1SNicolas Ferre 		mode &= ~(ATMEL_US_USCLKS | ATMEL_US_NBSTOP | ATMEL_US_PAR);
396377fedd1SNicolas Ferre 
397377fedd1SNicolas Ferre 		/* select mck clock, and output  */
398377fedd1SNicolas Ferre 		mode |= ATMEL_US_USCLKS_MCK | ATMEL_US_CLKO;
399377fedd1SNicolas Ferre 		/* set parity for normal/inverse mode + max iterations */
400377fedd1SNicolas Ferre 		mode |= ATMEL_US_PAR_EVEN | ATMEL_US_NBSTOP_1 | ATMEL_US_MAX_ITER(3);
401377fedd1SNicolas Ferre 
402377fedd1SNicolas Ferre 		cd = atmel_calc_cd(port, iso7816conf);
403377fedd1SNicolas Ferre 		fidi = atmel_calc_fidi(port, iso7816conf);
404377fedd1SNicolas Ferre 		if (fidi == 0) {
405377fedd1SNicolas Ferre 			dev_warn(port->dev, "ISO7816 fidi = 0, Generator generates no signal\n");
406377fedd1SNicolas Ferre 		} else if (fidi < atmel_port->fidi_min
407377fedd1SNicolas Ferre 			   || fidi > atmel_port->fidi_max) {
408377fedd1SNicolas Ferre 			dev_err(port->dev, "ISO7816 fidi = %u, value not supported\n", fidi);
409377fedd1SNicolas Ferre 			memset(iso7816conf, 0, sizeof(struct serial_iso7816));
410377fedd1SNicolas Ferre 			ret = -EINVAL;
411377fedd1SNicolas Ferre 			goto err_out;
412377fedd1SNicolas Ferre 		}
413377fedd1SNicolas Ferre 
414377fedd1SNicolas Ferre 		if (!(port->iso7816.flags & SER_ISO7816_ENABLED)) {
415377fedd1SNicolas Ferre 			/* port not yet in iso7816 mode: store configuration */
416377fedd1SNicolas Ferre 			atmel_port->backup_mode = atmel_uart_readl(port, ATMEL_US_MR);
417377fedd1SNicolas Ferre 			atmel_port->backup_brgr = atmel_uart_readl(port, ATMEL_US_BRGR);
418377fedd1SNicolas Ferre 		}
419377fedd1SNicolas Ferre 
420377fedd1SNicolas Ferre 		atmel_uart_writel(port, ATMEL_US_TTGR, iso7816conf->tg);
421377fedd1SNicolas Ferre 		atmel_uart_writel(port, ATMEL_US_BRGR, cd);
422377fedd1SNicolas Ferre 		atmel_uart_writel(port, ATMEL_US_FIDI, fidi);
423377fedd1SNicolas Ferre 
424377fedd1SNicolas Ferre 		atmel_uart_writel(port, ATMEL_US_CR, ATMEL_US_TXDIS | ATMEL_US_RXEN);
425377fedd1SNicolas Ferre 		atmel_port->tx_done_mask = ATMEL_US_TXEMPTY | ATMEL_US_NACK | ATMEL_US_ITERATION;
426377fedd1SNicolas Ferre 	} else {
427377fedd1SNicolas Ferre 		dev_dbg(port->dev, "Setting UART back to RS232\n");
428377fedd1SNicolas Ferre 		/* back to last RS232 settings */
429377fedd1SNicolas Ferre 		mode = atmel_port->backup_mode;
430377fedd1SNicolas Ferre 		memset(iso7816conf, 0, sizeof(struct serial_iso7816));
431377fedd1SNicolas Ferre 		atmel_uart_writel(port, ATMEL_US_TTGR, 0);
432377fedd1SNicolas Ferre 		atmel_uart_writel(port, ATMEL_US_BRGR, atmel_port->backup_brgr);
433377fedd1SNicolas Ferre 		atmel_uart_writel(port, ATMEL_US_FIDI, 0x174);
434377fedd1SNicolas Ferre 
435377fedd1SNicolas Ferre 		if (atmel_use_pdc_tx(port))
436377fedd1SNicolas Ferre 			atmel_port->tx_done_mask = ATMEL_US_ENDTX |
437377fedd1SNicolas Ferre 						   ATMEL_US_TXBUFE;
438377fedd1SNicolas Ferre 		else
439377fedd1SNicolas Ferre 			atmel_port->tx_done_mask = ATMEL_US_TXRDY;
440377fedd1SNicolas Ferre 	}
441377fedd1SNicolas Ferre 
442377fedd1SNicolas Ferre 	port->iso7816 = *iso7816conf;
443377fedd1SNicolas Ferre 
444377fedd1SNicolas Ferre 	atmel_uart_writel(port, ATMEL_US_MR, mode);
445377fedd1SNicolas Ferre 
446377fedd1SNicolas Ferre err_out:
447377fedd1SNicolas Ferre 	/* Enable interrupts */
448377fedd1SNicolas Ferre 	atmel_uart_writel(port, ATMEL_US_IER, atmel_port->tx_done_mask);
449377fedd1SNicolas Ferre 
450377fedd1SNicolas Ferre 	return ret;
451377fedd1SNicolas Ferre }
452377fedd1SNicolas Ferre 
453ab4382d2SGreg Kroah-Hartman /*
454ab4382d2SGreg Kroah-Hartman  * Return TIOCSER_TEMT when transmitter FIFO and Shift register is empty.
455ab4382d2SGreg Kroah-Hartman  */
456ab4382d2SGreg Kroah-Hartman static u_int atmel_tx_empty(struct uart_port *port)
457ab4382d2SGreg Kroah-Hartman {
458ea04f82aSRomain Izard 	struct atmel_uart_port *atmel_port = to_atmel_uart_port(port);
459ea04f82aSRomain Izard 
460ea04f82aSRomain Izard 	if (atmel_port->tx_stopped)
461ea04f82aSRomain Izard 		return TIOCSER_TEMT;
4624e7decdaSCyrille Pitchen 	return (atmel_uart_readl(port, ATMEL_US_CSR) & ATMEL_US_TXEMPTY) ?
4634e7decdaSCyrille Pitchen 		TIOCSER_TEMT :
4644e7decdaSCyrille Pitchen 		0;
465ab4382d2SGreg Kroah-Hartman }
466ab4382d2SGreg Kroah-Hartman 
467ab4382d2SGreg Kroah-Hartman /*
468ab4382d2SGreg Kroah-Hartman  * Set state of the modem control output lines
469ab4382d2SGreg Kroah-Hartman  */
470ab4382d2SGreg Kroah-Hartman static void atmel_set_mctrl(struct uart_port *port, u_int mctrl)
471ab4382d2SGreg Kroah-Hartman {
472ab4382d2SGreg Kroah-Hartman 	unsigned int control = 0;
4734e7decdaSCyrille Pitchen 	unsigned int mode = atmel_uart_readl(port, ATMEL_US_MR);
4741cf6e8fcSCyrille Pitchen 	unsigned int rts_paused, rts_ready;
475ab4382d2SGreg Kroah-Hartman 	struct atmel_uart_port *atmel_port = to_atmel_uart_port(port);
476ab4382d2SGreg Kroah-Hartman 
4771cf6e8fcSCyrille Pitchen 	/* override mode to RS485 if needed, otherwise keep the current mode */
4781cf6e8fcSCyrille Pitchen 	if (port->rs485.flags & SER_RS485_ENABLED) {
4794e7decdaSCyrille Pitchen 		atmel_uart_writel(port, ATMEL_US_TTGR,
4804e7decdaSCyrille Pitchen 				  port->rs485.delay_rts_after_send);
4811cf6e8fcSCyrille Pitchen 		mode &= ~ATMEL_US_USMODE;
4821cf6e8fcSCyrille Pitchen 		mode |= ATMEL_US_USMODE_RS485;
4831cf6e8fcSCyrille Pitchen 	}
4841cf6e8fcSCyrille Pitchen 
4851cf6e8fcSCyrille Pitchen 	/* set the RTS line state according to the mode */
4861cf6e8fcSCyrille Pitchen 	if ((mode & ATMEL_US_USMODE) == ATMEL_US_USMODE_HWHS) {
4871cf6e8fcSCyrille Pitchen 		/* force RTS line to high level */
4881cf6e8fcSCyrille Pitchen 		rts_paused = ATMEL_US_RTSEN;
4891cf6e8fcSCyrille Pitchen 
4901cf6e8fcSCyrille Pitchen 		/* give the control of the RTS line back to the hardware */
4911cf6e8fcSCyrille Pitchen 		rts_ready = ATMEL_US_RTSDIS;
4921cf6e8fcSCyrille Pitchen 	} else {
4931cf6e8fcSCyrille Pitchen 		/* force RTS line to high level */
4941cf6e8fcSCyrille Pitchen 		rts_paused = ATMEL_US_RTSDIS;
4951cf6e8fcSCyrille Pitchen 
4961cf6e8fcSCyrille Pitchen 		/* force RTS line to low level */
4971cf6e8fcSCyrille Pitchen 		rts_ready = ATMEL_US_RTSEN;
4981cf6e8fcSCyrille Pitchen 	}
4991cf6e8fcSCyrille Pitchen 
500ab4382d2SGreg Kroah-Hartman 	if (mctrl & TIOCM_RTS)
5011cf6e8fcSCyrille Pitchen 		control |= rts_ready;
502ab4382d2SGreg Kroah-Hartman 	else
5031cf6e8fcSCyrille Pitchen 		control |= rts_paused;
504ab4382d2SGreg Kroah-Hartman 
505ab4382d2SGreg Kroah-Hartman 	if (mctrl & TIOCM_DTR)
506ab4382d2SGreg Kroah-Hartman 		control |= ATMEL_US_DTREN;
507ab4382d2SGreg Kroah-Hartman 	else
508ab4382d2SGreg Kroah-Hartman 		control |= ATMEL_US_DTRDIS;
509ab4382d2SGreg Kroah-Hartman 
5104e7decdaSCyrille Pitchen 	atmel_uart_writel(port, ATMEL_US_CR, control);
511ab4382d2SGreg Kroah-Hartman 
512e0b0baadSRichard Genoud 	mctrl_gpio_set(atmel_port->gpios, mctrl);
513e0b0baadSRichard Genoud 
514ab4382d2SGreg Kroah-Hartman 	/* Local loopback mode? */
5151cf6e8fcSCyrille Pitchen 	mode &= ~ATMEL_US_CHMODE;
516ab4382d2SGreg Kroah-Hartman 	if (mctrl & TIOCM_LOOP)
517ab4382d2SGreg Kroah-Hartman 		mode |= ATMEL_US_CHMODE_LOC_LOOP;
518ab4382d2SGreg Kroah-Hartman 	else
519ab4382d2SGreg Kroah-Hartman 		mode |= ATMEL_US_CHMODE_NORMAL;
520ab4382d2SGreg Kroah-Hartman 
5214e7decdaSCyrille Pitchen 	atmel_uart_writel(port, ATMEL_US_MR, mode);
522ab4382d2SGreg Kroah-Hartman }
523ab4382d2SGreg Kroah-Hartman 
524ab4382d2SGreg Kroah-Hartman /*
525ab4382d2SGreg Kroah-Hartman  * Get state of the modem control input lines
526ab4382d2SGreg Kroah-Hartman  */
527ab4382d2SGreg Kroah-Hartman static u_int atmel_get_mctrl(struct uart_port *port)
528ab4382d2SGreg Kroah-Hartman {
529e0b0baadSRichard Genoud 	struct atmel_uart_port *atmel_port = to_atmel_uart_port(port);
530e0b0baadSRichard Genoud 	unsigned int ret = 0, status;
531ab4382d2SGreg Kroah-Hartman 
5324e7decdaSCyrille Pitchen 	status = atmel_uart_readl(port, ATMEL_US_CSR);
533ab4382d2SGreg Kroah-Hartman 
534ab4382d2SGreg Kroah-Hartman 	/*
535ab4382d2SGreg Kroah-Hartman 	 * The control signals are active low.
536ab4382d2SGreg Kroah-Hartman 	 */
537ab4382d2SGreg Kroah-Hartman 	if (!(status & ATMEL_US_DCD))
538ab4382d2SGreg Kroah-Hartman 		ret |= TIOCM_CD;
539ab4382d2SGreg Kroah-Hartman 	if (!(status & ATMEL_US_CTS))
540ab4382d2SGreg Kroah-Hartman 		ret |= TIOCM_CTS;
541ab4382d2SGreg Kroah-Hartman 	if (!(status & ATMEL_US_DSR))
542ab4382d2SGreg Kroah-Hartman 		ret |= TIOCM_DSR;
543ab4382d2SGreg Kroah-Hartman 	if (!(status & ATMEL_US_RI))
544ab4382d2SGreg Kroah-Hartman 		ret |= TIOCM_RI;
545ab4382d2SGreg Kroah-Hartman 
546e0b0baadSRichard Genoud 	return mctrl_gpio_get(atmel_port->gpios, &ret);
547ab4382d2SGreg Kroah-Hartman }
548ab4382d2SGreg Kroah-Hartman 
549ab4382d2SGreg Kroah-Hartman /*
550ab4382d2SGreg Kroah-Hartman  * Stop transmitting.
551ab4382d2SGreg Kroah-Hartman  */
552ab4382d2SGreg Kroah-Hartman static void atmel_stop_tx(struct uart_port *port)
553ab4382d2SGreg Kroah-Hartman {
554ab4382d2SGreg Kroah-Hartman 	struct atmel_uart_port *atmel_port = to_atmel_uart_port(port);
555*94ec165cSJiri Slaby (SUSE) 	bool is_pdc = atmel_use_pdc_tx(port);
556ab4382d2SGreg Kroah-Hartman 
557*94ec165cSJiri Slaby (SUSE) 	if (is_pdc) {
558ab4382d2SGreg Kroah-Hartman 		/* disable PDC transmit */
5594e7decdaSCyrille Pitchen 		atmel_uart_writel(port, ATMEL_PDC_PTCR, ATMEL_PDC_TXTDIS);
560ab4382d2SGreg Kroah-Hartman 	}
56189d82324SRichard Genoud 
56289d82324SRichard Genoud 	/*
56389d82324SRichard Genoud 	 * Disable the transmitter.
56489d82324SRichard Genoud 	 * This is mandatory when DMA is used, otherwise the DMA buffer
56589d82324SRichard Genoud 	 * is fully transmitted.
56689d82324SRichard Genoud 	 */
56789d82324SRichard Genoud 	atmel_uart_writel(port, ATMEL_US_CR, ATMEL_US_TXDIS);
568ea04f82aSRomain Izard 	atmel_port->tx_stopped = true;
56989d82324SRichard Genoud 
570ab4382d2SGreg Kroah-Hartman 	/* Disable interrupts */
5714e7decdaSCyrille Pitchen 	atmel_uart_writel(port, ATMEL_US_IDR, atmel_port->tx_done_mask);
572ab4382d2SGreg Kroah-Hartman 
573f3040983SRazvan Stefanescu 	if (atmel_uart_is_half_duplex(port))
57404b5bfe3SNicolas Ferre 		if (!atomic_read(&atmel_port->tasklet_shutdown))
575ab4382d2SGreg Kroah-Hartman 			atmel_start_rx(port);
576ab4382d2SGreg Kroah-Hartman }
577ab4382d2SGreg Kroah-Hartman 
578ab4382d2SGreg Kroah-Hartman /*
579ab4382d2SGreg Kroah-Hartman  * Start transmitting.
580ab4382d2SGreg Kroah-Hartman  */
581ab4382d2SGreg Kroah-Hartman static void atmel_start_tx(struct uart_port *port)
582ab4382d2SGreg Kroah-Hartman {
583ab4382d2SGreg Kroah-Hartman 	struct atmel_uart_port *atmel_port = to_atmel_uart_port(port);
584*94ec165cSJiri Slaby (SUSE) 	bool is_pdc = atmel_use_pdc_tx(port);
585*94ec165cSJiri Slaby (SUSE) 	bool is_dma = is_pdc || atmel_use_dma_tx(port);
586ab4382d2SGreg Kroah-Hartman 
587*94ec165cSJiri Slaby (SUSE) 	if (is_pdc && (atmel_uart_readl(port, ATMEL_PDC_PTSR)
5880058f087SAlexandre Belloni 				       & ATMEL_PDC_TXTEN))
589ab4382d2SGreg Kroah-Hartman 		/* The transmitter is already running.  Yes, we
590ab4382d2SGreg Kroah-Hartman 		   really need this.*/
591ab4382d2SGreg Kroah-Hartman 		return;
592ab4382d2SGreg Kroah-Hartman 
593*94ec165cSJiri Slaby (SUSE) 	if (is_dma && atmel_uart_is_half_duplex(port))
594ab4382d2SGreg Kroah-Hartman 		atmel_stop_rx(port);
595ab4382d2SGreg Kroah-Hartman 
596*94ec165cSJiri Slaby (SUSE) 	if (is_pdc) {
597ab4382d2SGreg Kroah-Hartman 		/* re-enable PDC transmit */
5984e7decdaSCyrille Pitchen 		atmel_uart_writel(port, ATMEL_PDC_PTCR, ATMEL_PDC_TXTEN);
599*94ec165cSJiri Slaby (SUSE) 	}
6000058f087SAlexandre Belloni 
601ab4382d2SGreg Kroah-Hartman 	/* Enable interrupts */
6024e7decdaSCyrille Pitchen 	atmel_uart_writel(port, ATMEL_US_IER, atmel_port->tx_done_mask);
60389d82324SRichard Genoud 
60489d82324SRichard Genoud 	/* re-enable the transmitter */
60589d82324SRichard Genoud 	atmel_uart_writel(port, ATMEL_US_CR, ATMEL_US_TXEN);
606ea04f82aSRomain Izard 	atmel_port->tx_stopped = false;
607ab4382d2SGreg Kroah-Hartman }
608ab4382d2SGreg Kroah-Hartman 
609ab4382d2SGreg Kroah-Hartman /*
610ab4382d2SGreg Kroah-Hartman  * start receiving - port is in process of being opened.
611ab4382d2SGreg Kroah-Hartman  */
612ab4382d2SGreg Kroah-Hartman static void atmel_start_rx(struct uart_port *port)
613ab4382d2SGreg Kroah-Hartman {
6144e7decdaSCyrille Pitchen 	/* reset status and receiver */
6154e7decdaSCyrille Pitchen 	atmel_uart_writel(port, ATMEL_US_CR, ATMEL_US_RSTSTA);
616ab4382d2SGreg Kroah-Hartman 
6174e7decdaSCyrille Pitchen 	atmel_uart_writel(port, ATMEL_US_CR, ATMEL_US_RXEN);
61857c36868SSiftar, Gabe 
61964e22ebeSElen Song 	if (atmel_use_pdc_rx(port)) {
620ab4382d2SGreg Kroah-Hartman 		/* enable PDC controller */
6214e7decdaSCyrille Pitchen 		atmel_uart_writel(port, ATMEL_US_IER,
6224e7decdaSCyrille Pitchen 				  ATMEL_US_ENDRX | ATMEL_US_TIMEOUT |
623ab4382d2SGreg Kroah-Hartman 				  port->read_status_mask);
6244e7decdaSCyrille Pitchen 		atmel_uart_writel(port, ATMEL_PDC_PTCR, ATMEL_PDC_RXTEN);
625ab4382d2SGreg Kroah-Hartman 	} else {
6264e7decdaSCyrille Pitchen 		atmel_uart_writel(port, ATMEL_US_IER, ATMEL_US_RXRDY);
627ab4382d2SGreg Kroah-Hartman 	}
628ab4382d2SGreg Kroah-Hartman }
629ab4382d2SGreg Kroah-Hartman 
630ab4382d2SGreg Kroah-Hartman /*
631ab4382d2SGreg Kroah-Hartman  * Stop receiving - port is in process of being closed.
632ab4382d2SGreg Kroah-Hartman  */
633ab4382d2SGreg Kroah-Hartman static void atmel_stop_rx(struct uart_port *port)
634ab4382d2SGreg Kroah-Hartman {
6354e7decdaSCyrille Pitchen 	atmel_uart_writel(port, ATMEL_US_CR, ATMEL_US_RXDIS);
63657c36868SSiftar, Gabe 
63764e22ebeSElen Song 	if (atmel_use_pdc_rx(port)) {
638ab4382d2SGreg Kroah-Hartman 		/* disable PDC receive */
6394e7decdaSCyrille Pitchen 		atmel_uart_writel(port, ATMEL_PDC_PTCR, ATMEL_PDC_RXTDIS);
6404e7decdaSCyrille Pitchen 		atmel_uart_writel(port, ATMEL_US_IDR,
6414e7decdaSCyrille Pitchen 				  ATMEL_US_ENDRX | ATMEL_US_TIMEOUT |
642ab4382d2SGreg Kroah-Hartman 				  port->read_status_mask);
643ab4382d2SGreg Kroah-Hartman 	} else {
6444e7decdaSCyrille Pitchen 		atmel_uart_writel(port, ATMEL_US_IDR, ATMEL_US_RXRDY);
645ab4382d2SGreg Kroah-Hartman 	}
646ab4382d2SGreg Kroah-Hartman }
647ab4382d2SGreg Kroah-Hartman 
648ab4382d2SGreg Kroah-Hartman /*
649ab4382d2SGreg Kroah-Hartman  * Enable modem status interrupts
650ab4382d2SGreg Kroah-Hartman  */
651ab4382d2SGreg Kroah-Hartman static void atmel_enable_ms(struct uart_port *port)
652ab4382d2SGreg Kroah-Hartman {
653ab5e4e41SRichard Genoud 	struct atmel_uart_port *atmel_port = to_atmel_uart_port(port);
654ab5e4e41SRichard Genoud 	uint32_t ier = 0;
655ab5e4e41SRichard Genoud 
656ab5e4e41SRichard Genoud 	/*
657ab5e4e41SRichard Genoud 	 * Interrupt should not be enabled twice
658ab5e4e41SRichard Genoud 	 */
659ab5e4e41SRichard Genoud 	if (atmel_port->ms_irq_enabled)
660ab5e4e41SRichard Genoud 		return;
661ab5e4e41SRichard Genoud 
662ab5e4e41SRichard Genoud 	atmel_port->ms_irq_enabled = true;
663ab5e4e41SRichard Genoud 
66418dfef9cSUwe Kleine-König 	if (!mctrl_gpio_to_gpiod(atmel_port->gpios, UART_GPIO_CTS))
665ab5e4e41SRichard Genoud 		ier |= ATMEL_US_CTSIC;
666ab5e4e41SRichard Genoud 
66718dfef9cSUwe Kleine-König 	if (!mctrl_gpio_to_gpiod(atmel_port->gpios, UART_GPIO_DSR))
668ab5e4e41SRichard Genoud 		ier |= ATMEL_US_DSRIC;
669ab5e4e41SRichard Genoud 
67018dfef9cSUwe Kleine-König 	if (!mctrl_gpio_to_gpiod(atmel_port->gpios, UART_GPIO_RI))
671ab5e4e41SRichard Genoud 		ier |= ATMEL_US_RIIC;
672ab5e4e41SRichard Genoud 
67318dfef9cSUwe Kleine-König 	if (!mctrl_gpio_to_gpiod(atmel_port->gpios, UART_GPIO_DCD))
674ab5e4e41SRichard Genoud 		ier |= ATMEL_US_DCDIC;
675ab5e4e41SRichard Genoud 
6764e7decdaSCyrille Pitchen 	atmel_uart_writel(port, ATMEL_US_IER, ier);
67718dfef9cSUwe Kleine-König 
67818dfef9cSUwe Kleine-König 	mctrl_gpio_enable_ms(atmel_port->gpios);
679ab4382d2SGreg Kroah-Hartman }
680ab4382d2SGreg Kroah-Hartman 
681ab4382d2SGreg Kroah-Hartman /*
68235b675b9SRichard Genoud  * Disable modem status interrupts
68335b675b9SRichard Genoud  */
68435b675b9SRichard Genoud static void atmel_disable_ms(struct uart_port *port)
68535b675b9SRichard Genoud {
68635b675b9SRichard Genoud 	struct atmel_uart_port *atmel_port = to_atmel_uart_port(port);
68735b675b9SRichard Genoud 	uint32_t idr = 0;
68835b675b9SRichard Genoud 
68935b675b9SRichard Genoud 	/*
69035b675b9SRichard Genoud 	 * Interrupt should not be disabled twice
69135b675b9SRichard Genoud 	 */
69235b675b9SRichard Genoud 	if (!atmel_port->ms_irq_enabled)
69335b675b9SRichard Genoud 		return;
69435b675b9SRichard Genoud 
69535b675b9SRichard Genoud 	atmel_port->ms_irq_enabled = false;
69635b675b9SRichard Genoud 
69718dfef9cSUwe Kleine-König 	mctrl_gpio_disable_ms(atmel_port->gpios);
69818dfef9cSUwe Kleine-König 
69918dfef9cSUwe Kleine-König 	if (!mctrl_gpio_to_gpiod(atmel_port->gpios, UART_GPIO_CTS))
70035b675b9SRichard Genoud 		idr |= ATMEL_US_CTSIC;
70135b675b9SRichard Genoud 
70218dfef9cSUwe Kleine-König 	if (!mctrl_gpio_to_gpiod(atmel_port->gpios, UART_GPIO_DSR))
70335b675b9SRichard Genoud 		idr |= ATMEL_US_DSRIC;
70435b675b9SRichard Genoud 
70518dfef9cSUwe Kleine-König 	if (!mctrl_gpio_to_gpiod(atmel_port->gpios, UART_GPIO_RI))
70635b675b9SRichard Genoud 		idr |= ATMEL_US_RIIC;
70735b675b9SRichard Genoud 
70818dfef9cSUwe Kleine-König 	if (!mctrl_gpio_to_gpiod(atmel_port->gpios, UART_GPIO_DCD))
70935b675b9SRichard Genoud 		idr |= ATMEL_US_DCDIC;
71035b675b9SRichard Genoud 
7114e7decdaSCyrille Pitchen 	atmel_uart_writel(port, ATMEL_US_IDR, idr);
71235b675b9SRichard Genoud }
71335b675b9SRichard Genoud 
71435b675b9SRichard Genoud /*
715ab4382d2SGreg Kroah-Hartman  * Control the transmission of a break signal
716ab4382d2SGreg Kroah-Hartman  */
717ab4382d2SGreg Kroah-Hartman static void atmel_break_ctl(struct uart_port *port, int break_state)
718ab4382d2SGreg Kroah-Hartman {
719ab4382d2SGreg Kroah-Hartman 	if (break_state != 0)
7204e7decdaSCyrille Pitchen 		/* start break */
7214e7decdaSCyrille Pitchen 		atmel_uart_writel(port, ATMEL_US_CR, ATMEL_US_STTBRK);
722ab4382d2SGreg Kroah-Hartman 	else
7234e7decdaSCyrille Pitchen 		/* stop break */
7244e7decdaSCyrille Pitchen 		atmel_uart_writel(port, ATMEL_US_CR, ATMEL_US_STPBRK);
725ab4382d2SGreg Kroah-Hartman }
726ab4382d2SGreg Kroah-Hartman 
727ab4382d2SGreg Kroah-Hartman /*
728ab4382d2SGreg Kroah-Hartman  * Stores the incoming character in the ring buffer
729ab4382d2SGreg Kroah-Hartman  */
730ab4382d2SGreg Kroah-Hartman static void
731ab4382d2SGreg Kroah-Hartman atmel_buffer_rx_char(struct uart_port *port, unsigned int status,
732ab4382d2SGreg Kroah-Hartman 		     unsigned int ch)
733ab4382d2SGreg Kroah-Hartman {
734ab4382d2SGreg Kroah-Hartman 	struct atmel_uart_port *atmel_port = to_atmel_uart_port(port);
735ab4382d2SGreg Kroah-Hartman 	struct circ_buf *ring = &atmel_port->rx_ring;
736ab4382d2SGreg Kroah-Hartman 	struct atmel_uart_char *c;
737ab4382d2SGreg Kroah-Hartman 
738ab4382d2SGreg Kroah-Hartman 	if (!CIRC_SPACE(ring->head, ring->tail, ATMEL_SERIAL_RINGSIZE))
739ab4382d2SGreg Kroah-Hartman 		/* Buffer overflow, ignore char */
740ab4382d2SGreg Kroah-Hartman 		return;
741ab4382d2SGreg Kroah-Hartman 
742ab4382d2SGreg Kroah-Hartman 	c = &((struct atmel_uart_char *)ring->buf)[ring->head];
743ab4382d2SGreg Kroah-Hartman 	c->status	= status;
744ab4382d2SGreg Kroah-Hartman 	c->ch		= ch;
745ab4382d2SGreg Kroah-Hartman 
746ab4382d2SGreg Kroah-Hartman 	/* Make sure the character is stored before we update head. */
747ab4382d2SGreg Kroah-Hartman 	smp_wmb();
748ab4382d2SGreg Kroah-Hartman 
749ab4382d2SGreg Kroah-Hartman 	ring->head = (ring->head + 1) & (ATMEL_SERIAL_RINGSIZE - 1);
750ab4382d2SGreg Kroah-Hartman }
751ab4382d2SGreg Kroah-Hartman 
752ab4382d2SGreg Kroah-Hartman /*
753ab4382d2SGreg Kroah-Hartman  * Deal with parity, framing and overrun errors.
754ab4382d2SGreg Kroah-Hartman  */
755ab4382d2SGreg Kroah-Hartman static void atmel_pdc_rxerr(struct uart_port *port, unsigned int status)
756ab4382d2SGreg Kroah-Hartman {
757ab4382d2SGreg Kroah-Hartman 	/* clear error */
7584e7decdaSCyrille Pitchen 	atmel_uart_writel(port, ATMEL_US_CR, ATMEL_US_RSTSTA);
759ab4382d2SGreg Kroah-Hartman 
760ab4382d2SGreg Kroah-Hartman 	if (status & ATMEL_US_RXBRK) {
761ab4382d2SGreg Kroah-Hartman 		/* ignore side-effect */
762ab4382d2SGreg Kroah-Hartman 		status &= ~(ATMEL_US_PARE | ATMEL_US_FRAME);
763ab4382d2SGreg Kroah-Hartman 		port->icount.brk++;
764ab4382d2SGreg Kroah-Hartman 	}
765ab4382d2SGreg Kroah-Hartman 	if (status & ATMEL_US_PARE)
766ab4382d2SGreg Kroah-Hartman 		port->icount.parity++;
767ab4382d2SGreg Kroah-Hartman 	if (status & ATMEL_US_FRAME)
768ab4382d2SGreg Kroah-Hartman 		port->icount.frame++;
769ab4382d2SGreg Kroah-Hartman 	if (status & ATMEL_US_OVRE)
770ab4382d2SGreg Kroah-Hartman 		port->icount.overrun++;
771ab4382d2SGreg Kroah-Hartman }
772ab4382d2SGreg Kroah-Hartman 
773ab4382d2SGreg Kroah-Hartman /*
774ab4382d2SGreg Kroah-Hartman  * Characters received (called from interrupt handler)
775ab4382d2SGreg Kroah-Hartman  */
776ab4382d2SGreg Kroah-Hartman static void atmel_rx_chars(struct uart_port *port)
777ab4382d2SGreg Kroah-Hartman {
778ab4382d2SGreg Kroah-Hartman 	struct atmel_uart_port *atmel_port = to_atmel_uart_port(port);
779ab4382d2SGreg Kroah-Hartman 	unsigned int status, ch;
780ab4382d2SGreg Kroah-Hartman 
7814e7decdaSCyrille Pitchen 	status = atmel_uart_readl(port, ATMEL_US_CSR);
782ab4382d2SGreg Kroah-Hartman 	while (status & ATMEL_US_RXRDY) {
783a6499435SCyrille Pitchen 		ch = atmel_uart_read_char(port);
784ab4382d2SGreg Kroah-Hartman 
785ab4382d2SGreg Kroah-Hartman 		/*
786ab4382d2SGreg Kroah-Hartman 		 * note that the error handling code is
787ab4382d2SGreg Kroah-Hartman 		 * out of the main execution path
788ab4382d2SGreg Kroah-Hartman 		 */
789ab4382d2SGreg Kroah-Hartman 		if (unlikely(status & (ATMEL_US_PARE | ATMEL_US_FRAME
790ab4382d2SGreg Kroah-Hartman 				       | ATMEL_US_OVRE | ATMEL_US_RXBRK)
791ab4382d2SGreg Kroah-Hartman 			     || atmel_port->break_active)) {
792ab4382d2SGreg Kroah-Hartman 
793ab4382d2SGreg Kroah-Hartman 			/* clear error */
7944e7decdaSCyrille Pitchen 			atmel_uart_writel(port, ATMEL_US_CR, ATMEL_US_RSTSTA);
795ab4382d2SGreg Kroah-Hartman 
796ab4382d2SGreg Kroah-Hartman 			if (status & ATMEL_US_RXBRK
797ab4382d2SGreg Kroah-Hartman 			    && !atmel_port->break_active) {
798ab4382d2SGreg Kroah-Hartman 				atmel_port->break_active = 1;
7994e7decdaSCyrille Pitchen 				atmel_uart_writel(port, ATMEL_US_IER,
8004e7decdaSCyrille Pitchen 						  ATMEL_US_RXBRK);
801ab4382d2SGreg Kroah-Hartman 			} else {
802ab4382d2SGreg Kroah-Hartman 				/*
803ab4382d2SGreg Kroah-Hartman 				 * This is either the end-of-break
804ab4382d2SGreg Kroah-Hartman 				 * condition or we've received at
805ab4382d2SGreg Kroah-Hartman 				 * least one character without RXBRK
806ab4382d2SGreg Kroah-Hartman 				 * being set. In both cases, the next
807ab4382d2SGreg Kroah-Hartman 				 * RXBRK will indicate start-of-break.
808ab4382d2SGreg Kroah-Hartman 				 */
8094e7decdaSCyrille Pitchen 				atmel_uart_writel(port, ATMEL_US_IDR,
8104e7decdaSCyrille Pitchen 						  ATMEL_US_RXBRK);
811ab4382d2SGreg Kroah-Hartman 				status &= ~ATMEL_US_RXBRK;
812ab4382d2SGreg Kroah-Hartman 				atmel_port->break_active = 0;
813ab4382d2SGreg Kroah-Hartman 			}
814ab4382d2SGreg Kroah-Hartman 		}
815ab4382d2SGreg Kroah-Hartman 
816ab4382d2SGreg Kroah-Hartman 		atmel_buffer_rx_char(port, status, ch);
8174e7decdaSCyrille Pitchen 		status = atmel_uart_readl(port, ATMEL_US_CSR);
818ab4382d2SGreg Kroah-Hartman 	}
819ab4382d2SGreg Kroah-Hartman 
82098f2082cSNicolas Ferre 	atmel_tasklet_schedule(atmel_port, &atmel_port->tasklet_rx);
821ab4382d2SGreg Kroah-Hartman }
822ab4382d2SGreg Kroah-Hartman 
823ab4382d2SGreg Kroah-Hartman /*
824ab4382d2SGreg Kroah-Hartman  * Transmit characters (called from tasklet with TXRDY interrupt
825ab4382d2SGreg Kroah-Hartman  * disabled)
826ab4382d2SGreg Kroah-Hartman  */
827ab4382d2SGreg Kroah-Hartman static void atmel_tx_chars(struct uart_port *port)
828ab4382d2SGreg Kroah-Hartman {
829ab4382d2SGreg Kroah-Hartman 	struct atmel_uart_port *atmel_port = to_atmel_uart_port(port);
8302d141e68SJiri Slaby (SUSE) 	bool pending;
8312d141e68SJiri Slaby (SUSE) 	u8 ch;
832ab4382d2SGreg Kroah-Hartman 
8332d141e68SJiri Slaby (SUSE) 	pending = uart_port_tx(port, ch,
8342d141e68SJiri Slaby (SUSE) 		atmel_uart_readl(port, ATMEL_US_CSR) & ATMEL_US_TXRDY,
8352d141e68SJiri Slaby (SUSE) 		atmel_uart_write_char(port, ch));
8362d141e68SJiri Slaby (SUSE) 	if (pending) {
837477b8383SCodrin.Ciubotariu@microchip.com 		/* we still have characters to transmit, so we should continue
838477b8383SCodrin.Ciubotariu@microchip.com 		 * transmitting them when TX is ready, regardless of
839477b8383SCodrin.Ciubotariu@microchip.com 		 * mode or duplexity
840477b8383SCodrin.Ciubotariu@microchip.com 		 */
841477b8383SCodrin.Ciubotariu@microchip.com 		atmel_port->tx_done_mask |= ATMEL_US_TXRDY;
842477b8383SCodrin.Ciubotariu@microchip.com 
843ab4382d2SGreg Kroah-Hartman 		/* Enable interrupts */
8444e7decdaSCyrille Pitchen 		atmel_uart_writel(port, ATMEL_US_IER,
8454e7decdaSCyrille Pitchen 				  atmel_port->tx_done_mask);
846477b8383SCodrin.Ciubotariu@microchip.com 	} else {
847477b8383SCodrin.Ciubotariu@microchip.com 		if (atmel_uart_is_half_duplex(port))
848477b8383SCodrin.Ciubotariu@microchip.com 			atmel_port->tx_done_mask &= ~ATMEL_US_TXRDY;
849477b8383SCodrin.Ciubotariu@microchip.com 	}
850ab4382d2SGreg Kroah-Hartman }
851ab4382d2SGreg Kroah-Hartman 
85208f738beSElen Song static void atmel_complete_tx_dma(void *arg)
85308f738beSElen Song {
85408f738beSElen Song 	struct atmel_uart_port *atmel_port = arg;
85508f738beSElen Song 	struct uart_port *port = &atmel_port->uart;
85608f738beSElen Song 	struct circ_buf *xmit = &port->state->xmit;
85708f738beSElen Song 	struct dma_chan *chan = atmel_port->chan_tx;
85808f738beSElen Song 	unsigned long flags;
85908f738beSElen Song 
86008f738beSElen Song 	spin_lock_irqsave(&port->lock, flags);
86108f738beSElen Song 
86208f738beSElen Song 	if (chan)
86308f738beSElen Song 		dmaengine_terminate_all(chan);
864add147a4SIlpo Järvinen 	uart_xmit_advance(port, atmel_port->tx_len);
86508f738beSElen Song 
86608f738beSElen Song 	spin_lock_irq(&atmel_port->lock_tx);
86708f738beSElen Song 	async_tx_ack(atmel_port->desc_tx);
86808f738beSElen Song 	atmel_port->cookie_tx = -EINVAL;
86908f738beSElen Song 	atmel_port->desc_tx = NULL;
87008f738beSElen Song 	spin_unlock_irq(&atmel_port->lock_tx);
87108f738beSElen Song 
87208f738beSElen Song 	if (uart_circ_chars_pending(xmit) < WAKEUP_CHARS)
87308f738beSElen Song 		uart_write_wakeup(port);
87408f738beSElen Song 
8751842dc2eSCyrille Pitchen 	/*
8761842dc2eSCyrille Pitchen 	 * xmit is a circular buffer so, if we have just send data from
8771842dc2eSCyrille Pitchen 	 * xmit->tail to the end of xmit->buf, now we have to transmit the
8781842dc2eSCyrille Pitchen 	 * remaining data from the beginning of xmit->buf to xmit->head.
8791842dc2eSCyrille Pitchen 	 */
88008f738beSElen Song 	if (!uart_circ_empty(xmit))
88198f2082cSNicolas Ferre 		atmel_tasklet_schedule(atmel_port, &atmel_port->tasklet_tx);
882f3040983SRazvan Stefanescu 	else if (atmel_uart_is_half_duplex(port)) {
88369646d7aSRazvan Stefanescu 		/*
88469646d7aSRazvan Stefanescu 		 * DMA done, re-enable TXEMPTY and signal that we can stop
88569646d7aSRazvan Stefanescu 		 * TX and start RX for RS485
88669646d7aSRazvan Stefanescu 		 */
88769646d7aSRazvan Stefanescu 		atmel_port->hd_start_rx = true;
88869646d7aSRazvan Stefanescu 		atmel_uart_writel(port, ATMEL_US_IER,
88969646d7aSRazvan Stefanescu 				  atmel_port->tx_done_mask);
890b389f173SRichard Genoud 	}
89108f738beSElen Song 
89208f738beSElen Song 	spin_unlock_irqrestore(&port->lock, flags);
89308f738beSElen Song }
89408f738beSElen Song 
89508f738beSElen Song static void atmel_release_tx_dma(struct uart_port *port)
89608f738beSElen Song {
89708f738beSElen Song 	struct atmel_uart_port *atmel_port = to_atmel_uart_port(port);
89808f738beSElen Song 	struct dma_chan *chan = atmel_port->chan_tx;
89908f738beSElen Song 
90008f738beSElen Song 	if (chan) {
90108f738beSElen Song 		dmaengine_terminate_all(chan);
90208f738beSElen Song 		dma_release_channel(chan);
90308f738beSElen Song 		dma_unmap_sg(port->dev, &atmel_port->sg_tx, 1,
90448479148SWolfram Sang 				DMA_TO_DEVICE);
90508f738beSElen Song 	}
90608f738beSElen Song 
90708f738beSElen Song 	atmel_port->desc_tx = NULL;
90808f738beSElen Song 	atmel_port->chan_tx = NULL;
90908f738beSElen Song 	atmel_port->cookie_tx = -EINVAL;
91008f738beSElen Song }
91108f738beSElen Song 
91208f738beSElen Song /*
91308f738beSElen Song  * Called from tasklet with TXRDY interrupt is disabled.
91408f738beSElen Song  */
91508f738beSElen Song static void atmel_tx_dma(struct uart_port *port)
91608f738beSElen Song {
91708f738beSElen Song 	struct atmel_uart_port *atmel_port = to_atmel_uart_port(port);
91808f738beSElen Song 	struct circ_buf *xmit = &port->state->xmit;
91908f738beSElen Song 	struct dma_chan *chan = atmel_port->chan_tx;
92008f738beSElen Song 	struct dma_async_tx_descriptor *desc;
9215f258b3eSCyrille Pitchen 	struct scatterlist sgl[2], *sg, *sg_tx = &atmel_port->sg_tx;
9225f258b3eSCyrille Pitchen 	unsigned int tx_len, part1_len, part2_len, sg_len;
9235f258b3eSCyrille Pitchen 	dma_addr_t phys_addr;
92408f738beSElen Song 
92508f738beSElen Song 	/* Make sure we have an idle channel */
92608f738beSElen Song 	if (atmel_port->desc_tx != NULL)
92708f738beSElen Song 		return;
92808f738beSElen Song 
92908f738beSElen Song 	if (!uart_circ_empty(xmit) && !uart_tx_stopped(port)) {
93008f738beSElen Song 		/*
93108f738beSElen Song 		 * DMA is idle now.
93208f738beSElen Song 		 * Port xmit buffer is already mapped,
93308f738beSElen Song 		 * and it is one page... Just adjust
93408f738beSElen Song 		 * offsets and lengths. Since it is a circular buffer,
93508f738beSElen Song 		 * we have to transmit till the end, and then the rest.
93608f738beSElen Song 		 * Take the port lock to get a
93708f738beSElen Song 		 * consistent xmit buffer state.
93808f738beSElen Song 		 */
9395f258b3eSCyrille Pitchen 		tx_len = CIRC_CNT_TO_END(xmit->head,
94008f738beSElen Song 					 xmit->tail,
94108f738beSElen Song 					 UART_XMIT_SIZE);
9425f258b3eSCyrille Pitchen 
9435f258b3eSCyrille Pitchen 		if (atmel_port->fifo_size) {
9445f258b3eSCyrille Pitchen 			/* multi data mode */
9455f258b3eSCyrille Pitchen 			part1_len = (tx_len & ~0x3); /* DWORD access */
9465f258b3eSCyrille Pitchen 			part2_len = (tx_len & 0x3); /* BYTE access */
9475f258b3eSCyrille Pitchen 		} else {
9485f258b3eSCyrille Pitchen 			/* single data (legacy) mode */
9495f258b3eSCyrille Pitchen 			part1_len = 0;
9505f258b3eSCyrille Pitchen 			part2_len = tx_len; /* BYTE access only */
9515f258b3eSCyrille Pitchen 		}
9525f258b3eSCyrille Pitchen 
9535f258b3eSCyrille Pitchen 		sg_init_table(sgl, 2);
9545f258b3eSCyrille Pitchen 		sg_len = 0;
9555f258b3eSCyrille Pitchen 		phys_addr = sg_dma_address(sg_tx) + xmit->tail;
9565f258b3eSCyrille Pitchen 		if (part1_len) {
9575f258b3eSCyrille Pitchen 			sg = &sgl[sg_len++];
9585f258b3eSCyrille Pitchen 			sg_dma_address(sg) = phys_addr;
9595f258b3eSCyrille Pitchen 			sg_dma_len(sg) = part1_len;
9605f258b3eSCyrille Pitchen 
9615f258b3eSCyrille Pitchen 			phys_addr += part1_len;
9625f258b3eSCyrille Pitchen 		}
9635f258b3eSCyrille Pitchen 
9645f258b3eSCyrille Pitchen 		if (part2_len) {
9655f258b3eSCyrille Pitchen 			sg = &sgl[sg_len++];
9665f258b3eSCyrille Pitchen 			sg_dma_address(sg) = phys_addr;
9675f258b3eSCyrille Pitchen 			sg_dma_len(sg) = part2_len;
9685f258b3eSCyrille Pitchen 		}
9695f258b3eSCyrille Pitchen 
9705f258b3eSCyrille Pitchen 		/*
9715f258b3eSCyrille Pitchen 		 * save tx_len so atmel_complete_tx_dma() will increase
9725f258b3eSCyrille Pitchen 		 * xmit->tail correctly
9735f258b3eSCyrille Pitchen 		 */
9745f258b3eSCyrille Pitchen 		atmel_port->tx_len = tx_len;
97508f738beSElen Song 
97608f738beSElen Song 		desc = dmaengine_prep_slave_sg(chan,
9775f258b3eSCyrille Pitchen 					       sgl,
9785f258b3eSCyrille Pitchen 					       sg_len,
97908f738beSElen Song 					       DMA_MEM_TO_DEV,
98008f738beSElen Song 					       DMA_PREP_INTERRUPT |
98108f738beSElen Song 					       DMA_CTRL_ACK);
98208f738beSElen Song 		if (!desc) {
98308f738beSElen Song 			dev_err(port->dev, "Failed to send via dma!\n");
98408f738beSElen Song 			return;
98508f738beSElen Song 		}
98608f738beSElen Song 
9875f258b3eSCyrille Pitchen 		dma_sync_sg_for_device(port->dev, sg_tx, 1, DMA_TO_DEVICE);
98808f738beSElen Song 
98908f738beSElen Song 		atmel_port->desc_tx = desc;
99008f738beSElen Song 		desc->callback = atmel_complete_tx_dma;
99108f738beSElen Song 		desc->callback_param = atmel_port;
99208f738beSElen Song 		atmel_port->cookie_tx = dmaengine_submit(desc);
9931e67bd2bSTudor Ambarus 		if (dma_submit_error(atmel_port->cookie_tx)) {
9941e67bd2bSTudor Ambarus 			dev_err(port->dev, "dma_submit_error %d\n",
9951e67bd2bSTudor Ambarus 				atmel_port->cookie_tx);
9961e67bd2bSTudor Ambarus 			return;
9971e67bd2bSTudor Ambarus 		}
9984f4b9b58STudor Ambarus 
9994f4b9b58STudor Ambarus 		dma_async_issue_pending(chan);
100008f738beSElen Song 	}
100108f738beSElen Song 
100208f738beSElen Song 	if (uart_circ_chars_pending(xmit) < WAKEUP_CHARS)
100308f738beSElen Song 		uart_write_wakeup(port);
100408f738beSElen Song }
100508f738beSElen Song 
100608f738beSElen Song static int atmel_prepare_tx_dma(struct uart_port *port)
100708f738beSElen Song {
100808f738beSElen Song 	struct atmel_uart_port *atmel_port = to_atmel_uart_port(port);
1009c24d2531SRadu Pirea 	struct device *mfd_dev = port->dev->parent;
101008f738beSElen Song 	dma_cap_mask_t		mask;
101108f738beSElen Song 	struct dma_slave_config config;
101208f738beSElen Song 	int ret, nent;
101308f738beSElen Song 
101408f738beSElen Song 	dma_cap_zero(mask);
101508f738beSElen Song 	dma_cap_set(DMA_SLAVE, mask);
101608f738beSElen Song 
1017c24d2531SRadu Pirea 	atmel_port->chan_tx = dma_request_slave_channel(mfd_dev, "tx");
101808f738beSElen Song 	if (atmel_port->chan_tx == NULL)
101908f738beSElen Song 		goto chan_err;
102008f738beSElen Song 	dev_info(port->dev, "using %s for tx DMA transfers\n",
102108f738beSElen Song 		dma_chan_name(atmel_port->chan_tx));
102208f738beSElen Song 
102308f738beSElen Song 	spin_lock_init(&atmel_port->lock_tx);
102408f738beSElen Song 	sg_init_table(&atmel_port->sg_tx, 1);
102508f738beSElen Song 	/* UART circular tx buffer is an aligned page. */
10262c277054SLeilei Zhao 	BUG_ON(!PAGE_ALIGNED(port->state->xmit.buf));
102708f738beSElen Song 	sg_set_page(&atmel_port->sg_tx,
102808f738beSElen Song 			virt_to_page(port->state->xmit.buf),
102908f738beSElen Song 			UART_XMIT_SIZE,
10302b5cf14bSGeliang Tang 			offset_in_page(port->state->xmit.buf));
103108f738beSElen Song 	nent = dma_map_sg(port->dev,
103208f738beSElen Song 				&atmel_port->sg_tx,
103308f738beSElen Song 				1,
103448479148SWolfram Sang 				DMA_TO_DEVICE);
103508f738beSElen Song 
103608f738beSElen Song 	if (!nent) {
103708f738beSElen Song 		dev_dbg(port->dev, "need to release resource of dma\n");
103808f738beSElen Song 		goto chan_err;
103908f738beSElen Song 	} else {
1040c8d1f022SUwe Kleine-König 		dev_dbg(port->dev, "%s: mapped %d@%p to %pad\n", __func__,
104108f738beSElen Song 			sg_dma_len(&atmel_port->sg_tx),
104208f738beSElen Song 			port->state->xmit.buf,
1043c8d1f022SUwe Kleine-König 			&sg_dma_address(&atmel_port->sg_tx));
104408f738beSElen Song 	}
104508f738beSElen Song 
104608f738beSElen Song 	/* Configure the slave DMA */
104708f738beSElen Song 	memset(&config, 0, sizeof(config));
104808f738beSElen Song 	config.direction = DMA_MEM_TO_DEV;
10495f258b3eSCyrille Pitchen 	config.dst_addr_width = (atmel_port->fifo_size) ?
10505f258b3eSCyrille Pitchen 				DMA_SLAVE_BUSWIDTH_4_BYTES :
10515f258b3eSCyrille Pitchen 				DMA_SLAVE_BUSWIDTH_1_BYTE;
105208f738beSElen Song 	config.dst_addr = port->mapbase + ATMEL_US_THR;
1053a8d4e016SLudovic Desroches 	config.dst_maxburst = 1;
105408f738beSElen Song 
10555483c10eSMaxime Ripard 	ret = dmaengine_slave_config(atmel_port->chan_tx,
10565483c10eSMaxime Ripard 				     &config);
105708f738beSElen Song 	if (ret) {
105808f738beSElen Song 		dev_err(port->dev, "DMA tx slave configuration failed\n");
105908f738beSElen Song 		goto chan_err;
106008f738beSElen Song 	}
106108f738beSElen Song 
106208f738beSElen Song 	return 0;
106308f738beSElen Song 
106408f738beSElen Song chan_err:
106508f738beSElen Song 	dev_err(port->dev, "TX channel not available, switch to pio\n");
106636ce7cffSZheng Bin 	atmel_port->use_dma_tx = false;
106708f738beSElen Song 	if (atmel_port->chan_tx)
106808f738beSElen Song 		atmel_release_tx_dma(port);
106908f738beSElen Song 	return -EINVAL;
107008f738beSElen Song }
107108f738beSElen Song 
107234df42f5SElen Song static void atmel_complete_rx_dma(void *arg)
107334df42f5SElen Song {
107434df42f5SElen Song 	struct uart_port *port = arg;
107534df42f5SElen Song 	struct atmel_uart_port *atmel_port = to_atmel_uart_port(port);
107634df42f5SElen Song 
107798f2082cSNicolas Ferre 	atmel_tasklet_schedule(atmel_port, &atmel_port->tasklet_rx);
107834df42f5SElen Song }
107934df42f5SElen Song 
108034df42f5SElen Song static void atmel_release_rx_dma(struct uart_port *port)
108134df42f5SElen Song {
108234df42f5SElen Song 	struct atmel_uart_port *atmel_port = to_atmel_uart_port(port);
108334df42f5SElen Song 	struct dma_chan *chan = atmel_port->chan_rx;
108434df42f5SElen Song 
108534df42f5SElen Song 	if (chan) {
108634df42f5SElen Song 		dmaengine_terminate_all(chan);
108734df42f5SElen Song 		dma_release_channel(chan);
108834df42f5SElen Song 		dma_unmap_sg(port->dev, &atmel_port->sg_rx, 1,
108948479148SWolfram Sang 				DMA_FROM_DEVICE);
109034df42f5SElen Song 	}
109134df42f5SElen Song 
109234df42f5SElen Song 	atmel_port->desc_rx = NULL;
109334df42f5SElen Song 	atmel_port->chan_rx = NULL;
109434df42f5SElen Song 	atmel_port->cookie_rx = -EINVAL;
109534df42f5SElen Song }
109634df42f5SElen Song 
109734df42f5SElen Song static void atmel_rx_from_dma(struct uart_port *port)
109834df42f5SElen Song {
109934df42f5SElen Song 	struct atmel_uart_port *atmel_port = to_atmel_uart_port(port);
110066f37aafSCyrille Pitchen 	struct tty_port *tport = &port->state->port;
110134df42f5SElen Song 	struct circ_buf *ring = &atmel_port->rx_ring;
110234df42f5SElen Song 	struct dma_chan *chan = atmel_port->chan_rx;
110334df42f5SElen Song 	struct dma_tx_state state;
110434df42f5SElen Song 	enum dma_status dmastat;
110566f37aafSCyrille Pitchen 	size_t count;
110634df42f5SElen Song 
110734df42f5SElen Song 
110834df42f5SElen Song 	/* Reset the UART timeout early so that we don't miss one */
11094e7decdaSCyrille Pitchen 	atmel_uart_writel(port, ATMEL_US_CR, ATMEL_US_STTTO);
111034df42f5SElen Song 	dmastat = dmaengine_tx_status(chan,
111134df42f5SElen Song 				atmel_port->cookie_rx,
111234df42f5SElen Song 				&state);
111334df42f5SElen Song 	/* Restart a new tasklet if DMA status is error */
111434df42f5SElen Song 	if (dmastat == DMA_ERROR) {
111534df42f5SElen Song 		dev_dbg(port->dev, "Get residue error, restart tasklet\n");
11164e7decdaSCyrille Pitchen 		atmel_uart_writel(port, ATMEL_US_IER, ATMEL_US_TIMEOUT);
111798f2082cSNicolas Ferre 		atmel_tasklet_schedule(atmel_port, &atmel_port->tasklet_rx);
111834df42f5SElen Song 		return;
111934df42f5SElen Song 	}
112066f37aafSCyrille Pitchen 
112166f37aafSCyrille Pitchen 	/* CPU claims ownership of RX DMA buffer */
112266f37aafSCyrille Pitchen 	dma_sync_sg_for_cpu(port->dev,
112366f37aafSCyrille Pitchen 			    &atmel_port->sg_rx,
112466f37aafSCyrille Pitchen 			    1,
1125485819b5SCyrille Pitchen 			    DMA_FROM_DEVICE);
112634df42f5SElen Song 
112734df42f5SElen Song 	/*
112866f37aafSCyrille Pitchen 	 * ring->head points to the end of data already written by the DMA.
112966f37aafSCyrille Pitchen 	 * ring->tail points to the beginning of data to be read by the
113066f37aafSCyrille Pitchen 	 * framework.
113166f37aafSCyrille Pitchen 	 * The current transfer size should not be larger than the dma buffer
113266f37aafSCyrille Pitchen 	 * length.
113334df42f5SElen Song 	 */
113466f37aafSCyrille Pitchen 	ring->head = sg_dma_len(&atmel_port->sg_rx) - state.residue;
113566f37aafSCyrille Pitchen 	BUG_ON(ring->head > sg_dma_len(&atmel_port->sg_rx));
113666f37aafSCyrille Pitchen 	/*
113766f37aafSCyrille Pitchen 	 * At this point ring->head may point to the first byte right after the
113866f37aafSCyrille Pitchen 	 * last byte of the dma buffer:
113966f37aafSCyrille Pitchen 	 * 0 <= ring->head <= sg_dma_len(&atmel_port->sg_rx)
114066f37aafSCyrille Pitchen 	 *
114166f37aafSCyrille Pitchen 	 * However ring->tail must always points inside the dma buffer:
114266f37aafSCyrille Pitchen 	 * 0 <= ring->tail <= sg_dma_len(&atmel_port->sg_rx) - 1
114366f37aafSCyrille Pitchen 	 *
114466f37aafSCyrille Pitchen 	 * Since we use a ring buffer, we have to handle the case
114566f37aafSCyrille Pitchen 	 * where head is lower than tail. In such a case, we first read from
114666f37aafSCyrille Pitchen 	 * tail to the end of the buffer then reset tail.
114766f37aafSCyrille Pitchen 	 */
114866f37aafSCyrille Pitchen 	if (ring->head < ring->tail) {
114966f37aafSCyrille Pitchen 		count = sg_dma_len(&atmel_port->sg_rx) - ring->tail;
115034df42f5SElen Song 
115166f37aafSCyrille Pitchen 		tty_insert_flip_string(tport, ring->buf + ring->tail, count);
115266f37aafSCyrille Pitchen 		ring->tail = 0;
115334df42f5SElen Song 		port->icount.rx += count;
115434df42f5SElen Song 	}
115534df42f5SElen Song 
115666f37aafSCyrille Pitchen 	/* Finally we read data from tail to head */
115766f37aafSCyrille Pitchen 	if (ring->tail < ring->head) {
115866f37aafSCyrille Pitchen 		count = ring->head - ring->tail;
115966f37aafSCyrille Pitchen 
116066f37aafSCyrille Pitchen 		tty_insert_flip_string(tport, ring->buf + ring->tail, count);
116166f37aafSCyrille Pitchen 		/* Wrap ring->head if needed */
116266f37aafSCyrille Pitchen 		if (ring->head >= sg_dma_len(&atmel_port->sg_rx))
116366f37aafSCyrille Pitchen 			ring->head = 0;
116466f37aafSCyrille Pitchen 		ring->tail = ring->head;
116566f37aafSCyrille Pitchen 		port->icount.rx += count;
116666f37aafSCyrille Pitchen 	}
116766f37aafSCyrille Pitchen 
116866f37aafSCyrille Pitchen 	/* USART retreives ownership of RX DMA buffer */
116966f37aafSCyrille Pitchen 	dma_sync_sg_for_device(port->dev,
117066f37aafSCyrille Pitchen 			       &atmel_port->sg_rx,
117166f37aafSCyrille Pitchen 			       1,
1172485819b5SCyrille Pitchen 			       DMA_FROM_DEVICE);
117366f37aafSCyrille Pitchen 
117466f37aafSCyrille Pitchen 	tty_flip_buffer_push(tport);
117566f37aafSCyrille Pitchen 
11764e7decdaSCyrille Pitchen 	atmel_uart_writel(port, ATMEL_US_IER, ATMEL_US_TIMEOUT);
117734df42f5SElen Song }
117834df42f5SElen Song 
117934df42f5SElen Song static int atmel_prepare_rx_dma(struct uart_port *port)
118034df42f5SElen Song {
118134df42f5SElen Song 	struct atmel_uart_port *atmel_port = to_atmel_uart_port(port);
1182c24d2531SRadu Pirea 	struct device *mfd_dev = port->dev->parent;
118334df42f5SElen Song 	struct dma_async_tx_descriptor *desc;
118434df42f5SElen Song 	dma_cap_mask_t		mask;
118534df42f5SElen Song 	struct dma_slave_config config;
118634df42f5SElen Song 	struct circ_buf		*ring;
118734df42f5SElen Song 	int ret, nent;
118834df42f5SElen Song 
118934df42f5SElen Song 	ring = &atmel_port->rx_ring;
119034df42f5SElen Song 
119134df42f5SElen Song 	dma_cap_zero(mask);
119234df42f5SElen Song 	dma_cap_set(DMA_CYCLIC, mask);
119334df42f5SElen Song 
1194c24d2531SRadu Pirea 	atmel_port->chan_rx = dma_request_slave_channel(mfd_dev, "rx");
119534df42f5SElen Song 	if (atmel_port->chan_rx == NULL)
119634df42f5SElen Song 		goto chan_err;
119734df42f5SElen Song 	dev_info(port->dev, "using %s for rx DMA transfers\n",
119834df42f5SElen Song 		dma_chan_name(atmel_port->chan_rx));
119934df42f5SElen Song 
120034df42f5SElen Song 	spin_lock_init(&atmel_port->lock_rx);
120134df42f5SElen Song 	sg_init_table(&atmel_port->sg_rx, 1);
120234df42f5SElen Song 	/* UART circular rx buffer is an aligned page. */
12032c277054SLeilei Zhao 	BUG_ON(!PAGE_ALIGNED(ring->buf));
120434df42f5SElen Song 	sg_set_page(&atmel_port->sg_rx,
120534df42f5SElen Song 		    virt_to_page(ring->buf),
1206a510880fSLeilei Zhao 		    sizeof(struct atmel_uart_char) * ATMEL_SERIAL_RINGSIZE,
12072b5cf14bSGeliang Tang 		    offset_in_page(ring->buf));
120834df42f5SElen Song 	nent = dma_map_sg(port->dev,
120934df42f5SElen Song 			  &atmel_port->sg_rx,
121034df42f5SElen Song 			  1,
121148479148SWolfram Sang 			  DMA_FROM_DEVICE);
121234df42f5SElen Song 
121334df42f5SElen Song 	if (!nent) {
121434df42f5SElen Song 		dev_dbg(port->dev, "need to release resource of dma\n");
121534df42f5SElen Song 		goto chan_err;
121634df42f5SElen Song 	} else {
1217c8d1f022SUwe Kleine-König 		dev_dbg(port->dev, "%s: mapped %d@%p to %pad\n", __func__,
121834df42f5SElen Song 			sg_dma_len(&atmel_port->sg_rx),
121934df42f5SElen Song 			ring->buf,
1220c8d1f022SUwe Kleine-König 			&sg_dma_address(&atmel_port->sg_rx));
122134df42f5SElen Song 	}
122234df42f5SElen Song 
122334df42f5SElen Song 	/* Configure the slave DMA */
122434df42f5SElen Song 	memset(&config, 0, sizeof(config));
122534df42f5SElen Song 	config.direction = DMA_DEV_TO_MEM;
122634df42f5SElen Song 	config.src_addr_width = DMA_SLAVE_BUSWIDTH_1_BYTE;
122734df42f5SElen Song 	config.src_addr = port->mapbase + ATMEL_US_RHR;
1228a8d4e016SLudovic Desroches 	config.src_maxburst = 1;
122934df42f5SElen Song 
12305483c10eSMaxime Ripard 	ret = dmaengine_slave_config(atmel_port->chan_rx,
12315483c10eSMaxime Ripard 				     &config);
123234df42f5SElen Song 	if (ret) {
123334df42f5SElen Song 		dev_err(port->dev, "DMA rx slave configuration failed\n");
123434df42f5SElen Song 		goto chan_err;
123534df42f5SElen Song 	}
123634df42f5SElen Song 	/*
123734df42f5SElen Song 	 * Prepare a cyclic dma transfer, assign 2 descriptors,
123834df42f5SElen Song 	 * each one is half ring buffer size
123934df42f5SElen Song 	 */
124034df42f5SElen Song 	desc = dmaengine_prep_dma_cyclic(atmel_port->chan_rx,
124134df42f5SElen Song 					 sg_dma_address(&atmel_port->sg_rx),
124234df42f5SElen Song 					 sg_dma_len(&atmel_port->sg_rx),
124334df42f5SElen Song 					 sg_dma_len(&atmel_port->sg_rx)/2,
124434df42f5SElen Song 					 DMA_DEV_TO_MEM,
124534df42f5SElen Song 					 DMA_PREP_INTERRUPT);
1246c85be041SKangjie Lu 	if (!desc) {
1247c85be041SKangjie Lu 		dev_err(port->dev, "Preparing DMA cyclic failed\n");
1248c85be041SKangjie Lu 		goto chan_err;
1249c85be041SKangjie Lu 	}
125034df42f5SElen Song 	desc->callback = atmel_complete_rx_dma;
125134df42f5SElen Song 	desc->callback_param = port;
125234df42f5SElen Song 	atmel_port->desc_rx = desc;
125334df42f5SElen Song 	atmel_port->cookie_rx = dmaengine_submit(desc);
12541e67bd2bSTudor Ambarus 	if (dma_submit_error(atmel_port->cookie_rx)) {
12551e67bd2bSTudor Ambarus 		dev_err(port->dev, "dma_submit_error %d\n",
12561e67bd2bSTudor Ambarus 			atmel_port->cookie_rx);
12571e67bd2bSTudor Ambarus 		goto chan_err;
12581e67bd2bSTudor Ambarus 	}
125934df42f5SElen Song 
12604f4b9b58STudor Ambarus 	dma_async_issue_pending(atmel_port->chan_rx);
12614f4b9b58STudor Ambarus 
126234df42f5SElen Song 	return 0;
126334df42f5SElen Song 
126434df42f5SElen Song chan_err:
126534df42f5SElen Song 	dev_err(port->dev, "RX channel not available, switch to pio\n");
126636ce7cffSZheng Bin 	atmel_port->use_dma_rx = false;
126734df42f5SElen Song 	if (atmel_port->chan_rx)
126834df42f5SElen Song 		atmel_release_rx_dma(port);
126934df42f5SElen Song 	return -EINVAL;
127034df42f5SElen Song }
127134df42f5SElen Song 
1272026cb432SKees Cook static void atmel_uart_timer_callback(struct timer_list *t)
12732e68c22fSElen Song {
1274026cb432SKees Cook 	struct atmel_uart_port *atmel_port = from_timer(atmel_port, t,
1275026cb432SKees Cook 							uart_timer);
1276026cb432SKees Cook 	struct uart_port *port = &atmel_port->uart;
12772e68c22fSElen Song 
127898f2082cSNicolas Ferre 	if (!atomic_read(&atmel_port->tasklet_shutdown)) {
127900e8e658SNicolas Ferre 		tasklet_schedule(&atmel_port->tasklet_rx);
128098f2082cSNicolas Ferre 		mod_timer(&atmel_port->uart_timer,
128198f2082cSNicolas Ferre 			  jiffies + uart_poll_timeout(port));
128298f2082cSNicolas Ferre 	}
12832e68c22fSElen Song }
12842e68c22fSElen Song 
1285ab4382d2SGreg Kroah-Hartman /*
1286ab4382d2SGreg Kroah-Hartman  * receive interrupt handler.
1287ab4382d2SGreg Kroah-Hartman  */
1288ab4382d2SGreg Kroah-Hartman static void
1289ab4382d2SGreg Kroah-Hartman atmel_handle_receive(struct uart_port *port, unsigned int pending)
1290ab4382d2SGreg Kroah-Hartman {
1291ab4382d2SGreg Kroah-Hartman 	struct atmel_uart_port *atmel_port = to_atmel_uart_port(port);
1292ab4382d2SGreg Kroah-Hartman 
129364e22ebeSElen Song 	if (atmel_use_pdc_rx(port)) {
1294ab4382d2SGreg Kroah-Hartman 		/*
1295ab4382d2SGreg Kroah-Hartman 		 * PDC receive. Just schedule the tasklet and let it
1296ab4382d2SGreg Kroah-Hartman 		 * figure out the details.
1297ab4382d2SGreg Kroah-Hartman 		 *
1298ab4382d2SGreg Kroah-Hartman 		 * TODO: We're not handling error flags correctly at
1299ab4382d2SGreg Kroah-Hartman 		 * the moment.
1300ab4382d2SGreg Kroah-Hartman 		 */
1301ab4382d2SGreg Kroah-Hartman 		if (pending & (ATMEL_US_ENDRX | ATMEL_US_TIMEOUT)) {
13024e7decdaSCyrille Pitchen 			atmel_uart_writel(port, ATMEL_US_IDR,
13034e7decdaSCyrille Pitchen 					  (ATMEL_US_ENDRX | ATMEL_US_TIMEOUT));
130498f2082cSNicolas Ferre 			atmel_tasklet_schedule(atmel_port,
130598f2082cSNicolas Ferre 					       &atmel_port->tasklet_rx);
1306ab4382d2SGreg Kroah-Hartman 		}
1307ab4382d2SGreg Kroah-Hartman 
1308ab4382d2SGreg Kroah-Hartman 		if (pending & (ATMEL_US_RXBRK | ATMEL_US_OVRE |
1309ab4382d2SGreg Kroah-Hartman 				ATMEL_US_FRAME | ATMEL_US_PARE))
1310ab4382d2SGreg Kroah-Hartman 			atmel_pdc_rxerr(port, pending);
1311ab4382d2SGreg Kroah-Hartman 	}
1312ab4382d2SGreg Kroah-Hartman 
131334df42f5SElen Song 	if (atmel_use_dma_rx(port)) {
131434df42f5SElen Song 		if (pending & ATMEL_US_TIMEOUT) {
13154e7decdaSCyrille Pitchen 			atmel_uart_writel(port, ATMEL_US_IDR,
13164e7decdaSCyrille Pitchen 					  ATMEL_US_TIMEOUT);
131798f2082cSNicolas Ferre 			atmel_tasklet_schedule(atmel_port,
131898f2082cSNicolas Ferre 					       &atmel_port->tasklet_rx);
131934df42f5SElen Song 		}
132034df42f5SElen Song 	}
132134df42f5SElen Song 
1322ab4382d2SGreg Kroah-Hartman 	/* Interrupt receive */
1323ab4382d2SGreg Kroah-Hartman 	if (pending & ATMEL_US_RXRDY)
1324ab4382d2SGreg Kroah-Hartman 		atmel_rx_chars(port);
1325ab4382d2SGreg Kroah-Hartman 	else if (pending & ATMEL_US_RXBRK) {
1326ab4382d2SGreg Kroah-Hartman 		/*
1327ab4382d2SGreg Kroah-Hartman 		 * End of break detected. If it came along with a
1328ab4382d2SGreg Kroah-Hartman 		 * character, atmel_rx_chars will handle it.
1329ab4382d2SGreg Kroah-Hartman 		 */
13304e7decdaSCyrille Pitchen 		atmel_uart_writel(port, ATMEL_US_CR, ATMEL_US_RSTSTA);
13314e7decdaSCyrille Pitchen 		atmel_uart_writel(port, ATMEL_US_IDR, ATMEL_US_RXBRK);
1332ab4382d2SGreg Kroah-Hartman 		atmel_port->break_active = 0;
1333ab4382d2SGreg Kroah-Hartman 	}
1334ab4382d2SGreg Kroah-Hartman }
1335ab4382d2SGreg Kroah-Hartman 
1336ab4382d2SGreg Kroah-Hartman /*
1337ab4382d2SGreg Kroah-Hartman  * transmit interrupt handler. (Transmit is IRQF_NODELAY safe)
1338ab4382d2SGreg Kroah-Hartman  */
1339ab4382d2SGreg Kroah-Hartman static void
1340ab4382d2SGreg Kroah-Hartman atmel_handle_transmit(struct uart_port *port, unsigned int pending)
1341ab4382d2SGreg Kroah-Hartman {
1342ab4382d2SGreg Kroah-Hartman 	struct atmel_uart_port *atmel_port = to_atmel_uart_port(port);
1343ab4382d2SGreg Kroah-Hartman 
1344ab4382d2SGreg Kroah-Hartman 	if (pending & atmel_port->tx_done_mask) {
13454e7decdaSCyrille Pitchen 		atmel_uart_writel(port, ATMEL_US_IDR,
13464e7decdaSCyrille Pitchen 				  atmel_port->tx_done_mask);
134769646d7aSRazvan Stefanescu 
134869646d7aSRazvan Stefanescu 		/* Start RX if flag was set and FIFO is empty */
134969646d7aSRazvan Stefanescu 		if (atmel_port->hd_start_rx) {
135069646d7aSRazvan Stefanescu 			if (!(atmel_uart_readl(port, ATMEL_US_CSR)
135169646d7aSRazvan Stefanescu 					& ATMEL_US_TXEMPTY))
135269646d7aSRazvan Stefanescu 				dev_warn(port->dev, "Should start RX, but TX fifo is not empty\n");
135369646d7aSRazvan Stefanescu 
135469646d7aSRazvan Stefanescu 			atmel_port->hd_start_rx = false;
135569646d7aSRazvan Stefanescu 			atmel_start_rx(port);
135669646d7aSRazvan Stefanescu 		}
135769646d7aSRazvan Stefanescu 
135898f2082cSNicolas Ferre 		atmel_tasklet_schedule(atmel_port, &atmel_port->tasklet_tx);
1359ab4382d2SGreg Kroah-Hartman 	}
1360ab4382d2SGreg Kroah-Hartman }
1361ab4382d2SGreg Kroah-Hartman 
1362ab4382d2SGreg Kroah-Hartman /*
1363ab4382d2SGreg Kroah-Hartman  * status flags interrupt handler.
1364ab4382d2SGreg Kroah-Hartman  */
1365ab4382d2SGreg Kroah-Hartman static void
1366ab4382d2SGreg Kroah-Hartman atmel_handle_status(struct uart_port *port, unsigned int pending,
1367ab4382d2SGreg Kroah-Hartman 		    unsigned int status)
1368ab4382d2SGreg Kroah-Hartman {
1369ab4382d2SGreg Kroah-Hartman 	struct atmel_uart_port *atmel_port = to_atmel_uart_port(port);
13709205218eSNicolas Ferre 	unsigned int status_change;
1371ab4382d2SGreg Kroah-Hartman 
1372ab4382d2SGreg Kroah-Hartman 	if (pending & (ATMEL_US_RIIC | ATMEL_US_DSRIC | ATMEL_US_DCDIC
1373ab4382d2SGreg Kroah-Hartman 				| ATMEL_US_CTSIC)) {
13749205218eSNicolas Ferre 		status_change = status ^ atmel_port->irq_status_prev;
1375d033e82dSLeilei Zhao 		atmel_port->irq_status_prev = status;
13769205218eSNicolas Ferre 
13779205218eSNicolas Ferre 		if (status_change & (ATMEL_US_RI | ATMEL_US_DSR
13789205218eSNicolas Ferre 					| ATMEL_US_DCD | ATMEL_US_CTS)) {
13799205218eSNicolas Ferre 			/* TODO: All reads to CSR will clear these interrupts! */
13809205218eSNicolas Ferre 			if (status_change & ATMEL_US_RI)
13819205218eSNicolas Ferre 				port->icount.rng++;
13829205218eSNicolas Ferre 			if (status_change & ATMEL_US_DSR)
13839205218eSNicolas Ferre 				port->icount.dsr++;
13849205218eSNicolas Ferre 			if (status_change & ATMEL_US_DCD)
13859205218eSNicolas Ferre 				uart_handle_dcd_change(port, !(status & ATMEL_US_DCD));
13869205218eSNicolas Ferre 			if (status_change & ATMEL_US_CTS)
13879205218eSNicolas Ferre 				uart_handle_cts_change(port, !(status & ATMEL_US_CTS));
13889205218eSNicolas Ferre 
13899205218eSNicolas Ferre 			wake_up_interruptible(&port->state->port.delta_msr_wait);
13909205218eSNicolas Ferre 		}
1391ab4382d2SGreg Kroah-Hartman 	}
1392377fedd1SNicolas Ferre 
1393377fedd1SNicolas Ferre 	if (pending & (ATMEL_US_NACK | ATMEL_US_ITERATION))
1394377fedd1SNicolas Ferre 		dev_dbg(port->dev, "ISO7816 ERROR (0x%08x)\n", pending);
1395ab4382d2SGreg Kroah-Hartman }
1396ab4382d2SGreg Kroah-Hartman 
1397ab4382d2SGreg Kroah-Hartman /*
1398ab4382d2SGreg Kroah-Hartman  * Interrupt handler
1399ab4382d2SGreg Kroah-Hartman  */
1400ab4382d2SGreg Kroah-Hartman static irqreturn_t atmel_interrupt(int irq, void *dev_id)
1401ab4382d2SGreg Kroah-Hartman {
1402ab4382d2SGreg Kroah-Hartman 	struct uart_port *port = dev_id;
1403ab5e4e41SRichard Genoud 	struct atmel_uart_port *atmel_port = to_atmel_uart_port(port);
14042c7af5baSBoris BREZILLON 	unsigned int status, pending, mask, pass_counter = 0;
1405ab4382d2SGreg Kroah-Hartman 
14062c7af5baSBoris BREZILLON 	spin_lock(&atmel_port->lock_suspended);
14072c7af5baSBoris BREZILLON 
1408ab4382d2SGreg Kroah-Hartman 	do {
1409d2d8d4c0SRichard Genoud 		status = atmel_uart_readl(port, ATMEL_US_CSR);
14104e7decdaSCyrille Pitchen 		mask = atmel_uart_readl(port, ATMEL_US_IMR);
14112c7af5baSBoris BREZILLON 		pending = status & mask;
1412ab4382d2SGreg Kroah-Hartman 		if (!pending)
1413ab4382d2SGreg Kroah-Hartman 			break;
1414ab4382d2SGreg Kroah-Hartman 
14152c7af5baSBoris BREZILLON 		if (atmel_port->suspended) {
14162c7af5baSBoris BREZILLON 			atmel_port->pending |= pending;
14172c7af5baSBoris BREZILLON 			atmel_port->pending_status = status;
14184e7decdaSCyrille Pitchen 			atmel_uart_writel(port, ATMEL_US_IDR, mask);
14192c7af5baSBoris BREZILLON 			pm_system_wakeup();
14202c7af5baSBoris BREZILLON 			break;
14212c7af5baSBoris BREZILLON 		}
14222c7af5baSBoris BREZILLON 
1423ab4382d2SGreg Kroah-Hartman 		atmel_handle_receive(port, pending);
1424ab4382d2SGreg Kroah-Hartman 		atmel_handle_status(port, pending, status);
1425ab4382d2SGreg Kroah-Hartman 		atmel_handle_transmit(port, pending);
1426ab4382d2SGreg Kroah-Hartman 	} while (pass_counter++ < ATMEL_ISR_PASS_LIMIT);
1427ab4382d2SGreg Kroah-Hartman 
14282c7af5baSBoris BREZILLON 	spin_unlock(&atmel_port->lock_suspended);
14292c7af5baSBoris BREZILLON 
1430ab4382d2SGreg Kroah-Hartman 	return pass_counter ? IRQ_HANDLED : IRQ_NONE;
1431ab4382d2SGreg Kroah-Hartman }
1432ab4382d2SGreg Kroah-Hartman 
1433a930e528SElen Song static void atmel_release_tx_pdc(struct uart_port *port)
1434a930e528SElen Song {
1435a930e528SElen Song 	struct atmel_uart_port *atmel_port = to_atmel_uart_port(port);
1436a930e528SElen Song 	struct atmel_dma_buffer *pdc = &atmel_port->pdc_tx;
1437a930e528SElen Song 
1438a930e528SElen Song 	dma_unmap_single(port->dev,
1439a930e528SElen Song 			 pdc->dma_addr,
1440a930e528SElen Song 			 pdc->dma_size,
1441a930e528SElen Song 			 DMA_TO_DEVICE);
1442a930e528SElen Song }
1443a930e528SElen Song 
1444ab4382d2SGreg Kroah-Hartman /*
1445ab4382d2SGreg Kroah-Hartman  * Called from tasklet with ENDTX and TXBUFE interrupts disabled.
1446ab4382d2SGreg Kroah-Hartman  */
144764e22ebeSElen Song static void atmel_tx_pdc(struct uart_port *port)
1448ab4382d2SGreg Kroah-Hartman {
1449ab4382d2SGreg Kroah-Hartman 	struct atmel_uart_port *atmel_port = to_atmel_uart_port(port);
1450ab4382d2SGreg Kroah-Hartman 	struct circ_buf *xmit = &port->state->xmit;
1451ab4382d2SGreg Kroah-Hartman 	struct atmel_dma_buffer *pdc = &atmel_port->pdc_tx;
1452ab4382d2SGreg Kroah-Hartman 	int count;
1453ab4382d2SGreg Kroah-Hartman 
1454ab4382d2SGreg Kroah-Hartman 	/* nothing left to transmit? */
14554e7decdaSCyrille Pitchen 	if (atmel_uart_readl(port, ATMEL_PDC_TCR))
1456ab4382d2SGreg Kroah-Hartman 		return;
1457add147a4SIlpo Järvinen 	uart_xmit_advance(port, pdc->ofs);
1458ab4382d2SGreg Kroah-Hartman 	pdc->ofs = 0;
1459ab4382d2SGreg Kroah-Hartman 
1460ab4382d2SGreg Kroah-Hartman 	/* more to transmit - setup next transfer */
1461ab4382d2SGreg Kroah-Hartman 
1462ab4382d2SGreg Kroah-Hartman 	/* disable PDC transmit */
14634e7decdaSCyrille Pitchen 	atmel_uart_writel(port, ATMEL_PDC_PTCR, ATMEL_PDC_TXTDIS);
1464ab4382d2SGreg Kroah-Hartman 
1465ab4382d2SGreg Kroah-Hartman 	if (!uart_circ_empty(xmit) && !uart_tx_stopped(port)) {
1466ab4382d2SGreg Kroah-Hartman 		dma_sync_single_for_device(port->dev,
1467ab4382d2SGreg Kroah-Hartman 					   pdc->dma_addr,
1468ab4382d2SGreg Kroah-Hartman 					   pdc->dma_size,
1469ab4382d2SGreg Kroah-Hartman 					   DMA_TO_DEVICE);
1470ab4382d2SGreg Kroah-Hartman 
1471ab4382d2SGreg Kroah-Hartman 		count = CIRC_CNT_TO_END(xmit->head, xmit->tail, UART_XMIT_SIZE);
1472ab4382d2SGreg Kroah-Hartman 		pdc->ofs = count;
1473ab4382d2SGreg Kroah-Hartman 
14744e7decdaSCyrille Pitchen 		atmel_uart_writel(port, ATMEL_PDC_TPR,
14754e7decdaSCyrille Pitchen 				  pdc->dma_addr + xmit->tail);
14764e7decdaSCyrille Pitchen 		atmel_uart_writel(port, ATMEL_PDC_TCR, count);
1477ab4382d2SGreg Kroah-Hartman 		/* re-enable PDC transmit */
14784e7decdaSCyrille Pitchen 		atmel_uart_writel(port, ATMEL_PDC_PTCR, ATMEL_PDC_TXTEN);
1479ab4382d2SGreg Kroah-Hartman 		/* Enable interrupts */
14804e7decdaSCyrille Pitchen 		atmel_uart_writel(port, ATMEL_US_IER,
14814e7decdaSCyrille Pitchen 				  atmel_port->tx_done_mask);
1482ab4382d2SGreg Kroah-Hartman 	} else {
1483f3040983SRazvan Stefanescu 		if (atmel_uart_is_half_duplex(port)) {
1484ab4382d2SGreg Kroah-Hartman 			/* DMA done, stop TX, start RX for RS485 */
1485ab4382d2SGreg Kroah-Hartman 			atmel_start_rx(port);
1486ab4382d2SGreg Kroah-Hartman 		}
1487ab4382d2SGreg Kroah-Hartman 	}
1488ab4382d2SGreg Kroah-Hartman 
1489ab4382d2SGreg Kroah-Hartman 	if (uart_circ_chars_pending(xmit) < WAKEUP_CHARS)
1490ab4382d2SGreg Kroah-Hartman 		uart_write_wakeup(port);
1491ab4382d2SGreg Kroah-Hartman }
1492ab4382d2SGreg Kroah-Hartman 
1493a930e528SElen Song static int atmel_prepare_tx_pdc(struct uart_port *port)
1494a930e528SElen Song {
1495a930e528SElen Song 	struct atmel_uart_port *atmel_port = to_atmel_uart_port(port);
1496a930e528SElen Song 	struct atmel_dma_buffer *pdc = &atmel_port->pdc_tx;
1497a930e528SElen Song 	struct circ_buf *xmit = &port->state->xmit;
1498a930e528SElen Song 
1499a930e528SElen Song 	pdc->buf = xmit->buf;
1500a930e528SElen Song 	pdc->dma_addr = dma_map_single(port->dev,
1501a930e528SElen Song 					pdc->buf,
1502a930e528SElen Song 					UART_XMIT_SIZE,
1503a930e528SElen Song 					DMA_TO_DEVICE);
1504a930e528SElen Song 	pdc->dma_size = UART_XMIT_SIZE;
1505a930e528SElen Song 	pdc->ofs = 0;
1506a930e528SElen Song 
1507a930e528SElen Song 	return 0;
1508a930e528SElen Song }
1509a930e528SElen Song 
1510ab4382d2SGreg Kroah-Hartman static void atmel_rx_from_ring(struct uart_port *port)
1511ab4382d2SGreg Kroah-Hartman {
1512ab4382d2SGreg Kroah-Hartman 	struct atmel_uart_port *atmel_port = to_atmel_uart_port(port);
1513ab4382d2SGreg Kroah-Hartman 	struct circ_buf *ring = &atmel_port->rx_ring;
1514ab4382d2SGreg Kroah-Hartman 	unsigned int flg;
1515ab4382d2SGreg Kroah-Hartman 	unsigned int status;
1516ab4382d2SGreg Kroah-Hartman 
1517ab4382d2SGreg Kroah-Hartman 	while (ring->head != ring->tail) {
1518ab4382d2SGreg Kroah-Hartman 		struct atmel_uart_char c;
1519ab4382d2SGreg Kroah-Hartman 
1520ab4382d2SGreg Kroah-Hartman 		/* Make sure c is loaded after head. */
1521ab4382d2SGreg Kroah-Hartman 		smp_rmb();
1522ab4382d2SGreg Kroah-Hartman 
1523ab4382d2SGreg Kroah-Hartman 		c = ((struct atmel_uart_char *)ring->buf)[ring->tail];
1524ab4382d2SGreg Kroah-Hartman 
1525ab4382d2SGreg Kroah-Hartman 		ring->tail = (ring->tail + 1) & (ATMEL_SERIAL_RINGSIZE - 1);
1526ab4382d2SGreg Kroah-Hartman 
1527ab4382d2SGreg Kroah-Hartman 		port->icount.rx++;
1528ab4382d2SGreg Kroah-Hartman 		status = c.status;
1529ab4382d2SGreg Kroah-Hartman 		flg = TTY_NORMAL;
1530ab4382d2SGreg Kroah-Hartman 
1531ab4382d2SGreg Kroah-Hartman 		/*
1532ab4382d2SGreg Kroah-Hartman 		 * note that the error handling code is
1533ab4382d2SGreg Kroah-Hartman 		 * out of the main execution path
1534ab4382d2SGreg Kroah-Hartman 		 */
1535ab4382d2SGreg Kroah-Hartman 		if (unlikely(status & (ATMEL_US_PARE | ATMEL_US_FRAME
1536ab4382d2SGreg Kroah-Hartman 				       | ATMEL_US_OVRE | ATMEL_US_RXBRK))) {
1537ab4382d2SGreg Kroah-Hartman 			if (status & ATMEL_US_RXBRK) {
1538ab4382d2SGreg Kroah-Hartman 				/* ignore side-effect */
1539ab4382d2SGreg Kroah-Hartman 				status &= ~(ATMEL_US_PARE | ATMEL_US_FRAME);
1540ab4382d2SGreg Kroah-Hartman 
1541ab4382d2SGreg Kroah-Hartman 				port->icount.brk++;
1542ab4382d2SGreg Kroah-Hartman 				if (uart_handle_break(port))
1543ab4382d2SGreg Kroah-Hartman 					continue;
1544ab4382d2SGreg Kroah-Hartman 			}
1545ab4382d2SGreg Kroah-Hartman 			if (status & ATMEL_US_PARE)
1546ab4382d2SGreg Kroah-Hartman 				port->icount.parity++;
1547ab4382d2SGreg Kroah-Hartman 			if (status & ATMEL_US_FRAME)
1548ab4382d2SGreg Kroah-Hartman 				port->icount.frame++;
1549ab4382d2SGreg Kroah-Hartman 			if (status & ATMEL_US_OVRE)
1550ab4382d2SGreg Kroah-Hartman 				port->icount.overrun++;
1551ab4382d2SGreg Kroah-Hartman 
1552ab4382d2SGreg Kroah-Hartman 			status &= port->read_status_mask;
1553ab4382d2SGreg Kroah-Hartman 
1554ab4382d2SGreg Kroah-Hartman 			if (status & ATMEL_US_RXBRK)
1555ab4382d2SGreg Kroah-Hartman 				flg = TTY_BREAK;
1556ab4382d2SGreg Kroah-Hartman 			else if (status & ATMEL_US_PARE)
1557ab4382d2SGreg Kroah-Hartman 				flg = TTY_PARITY;
1558ab4382d2SGreg Kroah-Hartman 			else if (status & ATMEL_US_FRAME)
1559ab4382d2SGreg Kroah-Hartman 				flg = TTY_FRAME;
1560ab4382d2SGreg Kroah-Hartman 		}
1561ab4382d2SGreg Kroah-Hartman 
1562ab4382d2SGreg Kroah-Hartman 
1563ab4382d2SGreg Kroah-Hartman 		if (uart_handle_sysrq_char(port, c.ch))
1564ab4382d2SGreg Kroah-Hartman 			continue;
1565ab4382d2SGreg Kroah-Hartman 
1566ab4382d2SGreg Kroah-Hartman 		uart_insert_char(port, status, ATMEL_US_OVRE, c.ch, flg);
1567ab4382d2SGreg Kroah-Hartman 	}
1568ab4382d2SGreg Kroah-Hartman 
15692e124b4aSJiri Slaby 	tty_flip_buffer_push(&port->state->port);
1570ab4382d2SGreg Kroah-Hartman }
1571ab4382d2SGreg Kroah-Hartman 
1572a930e528SElen Song static void atmel_release_rx_pdc(struct uart_port *port)
1573a930e528SElen Song {
1574a930e528SElen Song 	struct atmel_uart_port *atmel_port = to_atmel_uart_port(port);
1575a930e528SElen Song 	int i;
1576a930e528SElen Song 
1577a930e528SElen Song 	for (i = 0; i < 2; i++) {
1578a930e528SElen Song 		struct atmel_dma_buffer *pdc = &atmel_port->pdc_rx[i];
1579a930e528SElen Song 
1580a930e528SElen Song 		dma_unmap_single(port->dev,
1581a930e528SElen Song 				 pdc->dma_addr,
1582a930e528SElen Song 				 pdc->dma_size,
1583a930e528SElen Song 				 DMA_FROM_DEVICE);
1584a930e528SElen Song 		kfree(pdc->buf);
1585a930e528SElen Song 	}
1586a930e528SElen Song }
1587a930e528SElen Song 
158864e22ebeSElen Song static void atmel_rx_from_pdc(struct uart_port *port)
1589ab4382d2SGreg Kroah-Hartman {
1590ab4382d2SGreg Kroah-Hartman 	struct atmel_uart_port *atmel_port = to_atmel_uart_port(port);
159105c7cd39SJiri Slaby 	struct tty_port *tport = &port->state->port;
1592ab4382d2SGreg Kroah-Hartman 	struct atmel_dma_buffer *pdc;
1593ab4382d2SGreg Kroah-Hartman 	int rx_idx = atmel_port->pdc_rx_idx;
1594ab4382d2SGreg Kroah-Hartman 	unsigned int head;
1595ab4382d2SGreg Kroah-Hartman 	unsigned int tail;
1596ab4382d2SGreg Kroah-Hartman 	unsigned int count;
1597ab4382d2SGreg Kroah-Hartman 
1598ab4382d2SGreg Kroah-Hartman 	do {
1599ab4382d2SGreg Kroah-Hartman 		/* Reset the UART timeout early so that we don't miss one */
16004e7decdaSCyrille Pitchen 		atmel_uart_writel(port, ATMEL_US_CR, ATMEL_US_STTTO);
1601ab4382d2SGreg Kroah-Hartman 
1602ab4382d2SGreg Kroah-Hartman 		pdc = &atmel_port->pdc_rx[rx_idx];
16034e7decdaSCyrille Pitchen 		head = atmel_uart_readl(port, ATMEL_PDC_RPR) - pdc->dma_addr;
1604ab4382d2SGreg Kroah-Hartman 		tail = pdc->ofs;
1605ab4382d2SGreg Kroah-Hartman 
1606ab4382d2SGreg Kroah-Hartman 		/* If the PDC has switched buffers, RPR won't contain
1607ab4382d2SGreg Kroah-Hartman 		 * any address within the current buffer. Since head
1608ab4382d2SGreg Kroah-Hartman 		 * is unsigned, we just need a one-way comparison to
1609ab4382d2SGreg Kroah-Hartman 		 * find out.
1610ab4382d2SGreg Kroah-Hartman 		 *
1611ab4382d2SGreg Kroah-Hartman 		 * In this case, we just need to consume the entire
1612ab4382d2SGreg Kroah-Hartman 		 * buffer and resubmit it for DMA. This will clear the
1613ab4382d2SGreg Kroah-Hartman 		 * ENDRX bit as well, so that we can safely re-enable
1614ab4382d2SGreg Kroah-Hartman 		 * all interrupts below.
1615ab4382d2SGreg Kroah-Hartman 		 */
1616ab4382d2SGreg Kroah-Hartman 		head = min(head, pdc->dma_size);
1617ab4382d2SGreg Kroah-Hartman 
1618ab4382d2SGreg Kroah-Hartman 		if (likely(head != tail)) {
1619ab4382d2SGreg Kroah-Hartman 			dma_sync_single_for_cpu(port->dev, pdc->dma_addr,
1620ab4382d2SGreg Kroah-Hartman 					pdc->dma_size, DMA_FROM_DEVICE);
1621ab4382d2SGreg Kroah-Hartman 
1622ab4382d2SGreg Kroah-Hartman 			/*
1623ab4382d2SGreg Kroah-Hartman 			 * head will only wrap around when we recycle
1624ab4382d2SGreg Kroah-Hartman 			 * the DMA buffer, and when that happens, we
1625ab4382d2SGreg Kroah-Hartman 			 * explicitly set tail to 0. So head will
1626ab4382d2SGreg Kroah-Hartman 			 * always be greater than tail.
1627ab4382d2SGreg Kroah-Hartman 			 */
1628ab4382d2SGreg Kroah-Hartman 			count = head - tail;
1629ab4382d2SGreg Kroah-Hartman 
163005c7cd39SJiri Slaby 			tty_insert_flip_string(tport, pdc->buf + pdc->ofs,
163105c7cd39SJiri Slaby 						count);
1632ab4382d2SGreg Kroah-Hartman 
1633ab4382d2SGreg Kroah-Hartman 			dma_sync_single_for_device(port->dev, pdc->dma_addr,
1634ab4382d2SGreg Kroah-Hartman 					pdc->dma_size, DMA_FROM_DEVICE);
1635ab4382d2SGreg Kroah-Hartman 
1636ab4382d2SGreg Kroah-Hartman 			port->icount.rx += count;
1637ab4382d2SGreg Kroah-Hartman 			pdc->ofs = head;
1638ab4382d2SGreg Kroah-Hartman 		}
1639ab4382d2SGreg Kroah-Hartman 
1640ab4382d2SGreg Kroah-Hartman 		/*
1641ab4382d2SGreg Kroah-Hartman 		 * If the current buffer is full, we need to check if
1642ab4382d2SGreg Kroah-Hartman 		 * the next one contains any additional data.
1643ab4382d2SGreg Kroah-Hartman 		 */
1644ab4382d2SGreg Kroah-Hartman 		if (head >= pdc->dma_size) {
1645ab4382d2SGreg Kroah-Hartman 			pdc->ofs = 0;
16464e7decdaSCyrille Pitchen 			atmel_uart_writel(port, ATMEL_PDC_RNPR, pdc->dma_addr);
16474e7decdaSCyrille Pitchen 			atmel_uart_writel(port, ATMEL_PDC_RNCR, pdc->dma_size);
1648ab4382d2SGreg Kroah-Hartman 
1649ab4382d2SGreg Kroah-Hartman 			rx_idx = !rx_idx;
1650ab4382d2SGreg Kroah-Hartman 			atmel_port->pdc_rx_idx = rx_idx;
1651ab4382d2SGreg Kroah-Hartman 		}
1652ab4382d2SGreg Kroah-Hartman 	} while (head >= pdc->dma_size);
1653ab4382d2SGreg Kroah-Hartman 
16542e124b4aSJiri Slaby 	tty_flip_buffer_push(tport);
1655ab4382d2SGreg Kroah-Hartman 
16564e7decdaSCyrille Pitchen 	atmel_uart_writel(port, ATMEL_US_IER,
16574e7decdaSCyrille Pitchen 			  ATMEL_US_ENDRX | ATMEL_US_TIMEOUT);
1658ab4382d2SGreg Kroah-Hartman }
1659ab4382d2SGreg Kroah-Hartman 
1660a930e528SElen Song static int atmel_prepare_rx_pdc(struct uart_port *port)
1661a930e528SElen Song {
1662a930e528SElen Song 	struct atmel_uart_port *atmel_port = to_atmel_uart_port(port);
1663a930e528SElen Song 	int i;
1664a930e528SElen Song 
1665a930e528SElen Song 	for (i = 0; i < 2; i++) {
1666a930e528SElen Song 		struct atmel_dma_buffer *pdc = &atmel_port->pdc_rx[i];
1667a930e528SElen Song 
1668a930e528SElen Song 		pdc->buf = kmalloc(PDC_BUFFER_SIZE, GFP_KERNEL);
1669a930e528SElen Song 		if (pdc->buf == NULL) {
1670a930e528SElen Song 			if (i != 0) {
1671a930e528SElen Song 				dma_unmap_single(port->dev,
1672a930e528SElen Song 					atmel_port->pdc_rx[0].dma_addr,
1673a930e528SElen Song 					PDC_BUFFER_SIZE,
1674a930e528SElen Song 					DMA_FROM_DEVICE);
1675a930e528SElen Song 				kfree(atmel_port->pdc_rx[0].buf);
1676a930e528SElen Song 			}
167736ce7cffSZheng Bin 			atmel_port->use_pdc_rx = false;
1678a930e528SElen Song 			return -ENOMEM;
1679a930e528SElen Song 		}
1680a930e528SElen Song 		pdc->dma_addr = dma_map_single(port->dev,
1681a930e528SElen Song 						pdc->buf,
1682a930e528SElen Song 						PDC_BUFFER_SIZE,
1683a930e528SElen Song 						DMA_FROM_DEVICE);
1684a930e528SElen Song 		pdc->dma_size = PDC_BUFFER_SIZE;
1685a930e528SElen Song 		pdc->ofs = 0;
1686a930e528SElen Song 	}
1687a930e528SElen Song 
1688a930e528SElen Song 	atmel_port->pdc_rx_idx = 0;
1689a930e528SElen Song 
16904e7decdaSCyrille Pitchen 	atmel_uart_writel(port, ATMEL_PDC_RPR, atmel_port->pdc_rx[0].dma_addr);
16914e7decdaSCyrille Pitchen 	atmel_uart_writel(port, ATMEL_PDC_RCR, PDC_BUFFER_SIZE);
1692a930e528SElen Song 
16934e7decdaSCyrille Pitchen 	atmel_uart_writel(port, ATMEL_PDC_RNPR,
16944e7decdaSCyrille Pitchen 			  atmel_port->pdc_rx[1].dma_addr);
16954e7decdaSCyrille Pitchen 	atmel_uart_writel(port, ATMEL_PDC_RNCR, PDC_BUFFER_SIZE);
1696a930e528SElen Song 
1697a930e528SElen Song 	return 0;
1698a930e528SElen Song }
1699a930e528SElen Song 
1700ab4382d2SGreg Kroah-Hartman /*
1701ab4382d2SGreg Kroah-Hartman  * tasklet handling tty stuff outside the interrupt handler.
1702ab4382d2SGreg Kroah-Hartman  */
170341e85e44SAllen Pais static void atmel_tasklet_rx_func(struct tasklet_struct *t)
1704ab4382d2SGreg Kroah-Hartman {
170541e85e44SAllen Pais 	struct atmel_uart_port *atmel_port = from_tasklet(atmel_port, t,
170641e85e44SAllen Pais 							  tasklet_rx);
170741e85e44SAllen Pais 	struct uart_port *port = &atmel_port->uart;
1708ab4382d2SGreg Kroah-Hartman 
1709ab4382d2SGreg Kroah-Hartman 	/* The interrupt handler does not take the lock */
1710ab4382d2SGreg Kroah-Hartman 	spin_lock(&port->lock);
1711a930e528SElen Song 	atmel_port->schedule_rx(port);
171200e8e658SNicolas Ferre 	spin_unlock(&port->lock);
171300e8e658SNicolas Ferre }
1714ab4382d2SGreg Kroah-Hartman 
171541e85e44SAllen Pais static void atmel_tasklet_tx_func(struct tasklet_struct *t)
171600e8e658SNicolas Ferre {
171741e85e44SAllen Pais 	struct atmel_uart_port *atmel_port = from_tasklet(atmel_port, t,
171841e85e44SAllen Pais 							  tasklet_tx);
171941e85e44SAllen Pais 	struct uart_port *port = &atmel_port->uart;
172000e8e658SNicolas Ferre 
172100e8e658SNicolas Ferre 	/* The interrupt handler does not take the lock */
172200e8e658SNicolas Ferre 	spin_lock(&port->lock);
172300e8e658SNicolas Ferre 	atmel_port->schedule_tx(port);
1724ab4382d2SGreg Kroah-Hartman 	spin_unlock(&port->lock);
1725ab4382d2SGreg Kroah-Hartman }
1726ab4382d2SGreg Kroah-Hartman 
17274a1e8888SLeilei Zhao static void atmel_init_property(struct atmel_uart_port *atmel_port,
172833d64c4fSElen Song 				struct platform_device *pdev)
172933d64c4fSElen Song {
173033d64c4fSElen Song 	struct device_node *np = pdev->dev.of_node;
173133d64c4fSElen Song 
173233d64c4fSElen Song 	/* DMA/PDC usage specification */
1733490d5ce2SJulia Lawall 	if (of_property_read_bool(np, "atmel,use-dma-rx")) {
1734490d5ce2SJulia Lawall 		if (of_property_read_bool(np, "dmas")) {
173533d64c4fSElen Song 			atmel_port->use_dma_rx  = true;
173633d64c4fSElen Song 			atmel_port->use_pdc_rx  = false;
173733d64c4fSElen Song 		} else {
173833d64c4fSElen Song 			atmel_port->use_dma_rx  = false;
173933d64c4fSElen Song 			atmel_port->use_pdc_rx  = true;
174033d64c4fSElen Song 		}
174133d64c4fSElen Song 	} else {
174233d64c4fSElen Song 		atmel_port->use_dma_rx  = false;
174333d64c4fSElen Song 		atmel_port->use_pdc_rx  = false;
174433d64c4fSElen Song 	}
174533d64c4fSElen Song 
1746490d5ce2SJulia Lawall 	if (of_property_read_bool(np, "atmel,use-dma-tx")) {
1747490d5ce2SJulia Lawall 		if (of_property_read_bool(np, "dmas")) {
174833d64c4fSElen Song 			atmel_port->use_dma_tx  = true;
174933d64c4fSElen Song 			atmel_port->use_pdc_tx  = false;
175033d64c4fSElen Song 		} else {
175133d64c4fSElen Song 			atmel_port->use_dma_tx  = false;
175233d64c4fSElen Song 			atmel_port->use_pdc_tx  = true;
175333d64c4fSElen Song 		}
175433d64c4fSElen Song 	} else {
175533d64c4fSElen Song 		atmel_port->use_dma_tx  = false;
175633d64c4fSElen Song 		atmel_port->use_pdc_tx  = false;
175733d64c4fSElen Song 	}
175833d64c4fSElen Song }
175933d64c4fSElen Song 
1760a930e528SElen Song static void atmel_set_ops(struct uart_port *port)
1761a930e528SElen Song {
1762a930e528SElen Song 	struct atmel_uart_port *atmel_port = to_atmel_uart_port(port);
1763a930e528SElen Song 
176434df42f5SElen Song 	if (atmel_use_dma_rx(port)) {
176534df42f5SElen Song 		atmel_port->prepare_rx = &atmel_prepare_rx_dma;
176634df42f5SElen Song 		atmel_port->schedule_rx = &atmel_rx_from_dma;
176734df42f5SElen Song 		atmel_port->release_rx = &atmel_release_rx_dma;
176834df42f5SElen Song 	} else if (atmel_use_pdc_rx(port)) {
1769a930e528SElen Song 		atmel_port->prepare_rx = &atmel_prepare_rx_pdc;
1770a930e528SElen Song 		atmel_port->schedule_rx = &atmel_rx_from_pdc;
1771a930e528SElen Song 		atmel_port->release_rx = &atmel_release_rx_pdc;
1772a930e528SElen Song 	} else {
1773a930e528SElen Song 		atmel_port->prepare_rx = NULL;
1774a930e528SElen Song 		atmel_port->schedule_rx = &atmel_rx_from_ring;
1775a930e528SElen Song 		atmel_port->release_rx = NULL;
1776a930e528SElen Song 	}
1777a930e528SElen Song 
177808f738beSElen Song 	if (atmel_use_dma_tx(port)) {
177908f738beSElen Song 		atmel_port->prepare_tx = &atmel_prepare_tx_dma;
178008f738beSElen Song 		atmel_port->schedule_tx = &atmel_tx_dma;
178108f738beSElen Song 		atmel_port->release_tx = &atmel_release_tx_dma;
178208f738beSElen Song 	} else if (atmel_use_pdc_tx(port)) {
1783a930e528SElen Song 		atmel_port->prepare_tx = &atmel_prepare_tx_pdc;
1784a930e528SElen Song 		atmel_port->schedule_tx = &atmel_tx_pdc;
1785a930e528SElen Song 		atmel_port->release_tx = &atmel_release_tx_pdc;
1786a930e528SElen Song 	} else {
1787a930e528SElen Song 		atmel_port->prepare_tx = NULL;
1788a930e528SElen Song 		atmel_port->schedule_tx = &atmel_tx_chars;
1789a930e528SElen Song 		atmel_port->release_tx = NULL;
1790a930e528SElen Song 	}
1791a930e528SElen Song }
1792a930e528SElen Song 
1793ab4382d2SGreg Kroah-Hartman /*
1794055560b0SElen Song  * Get ip name usart or uart
1795055560b0SElen Song  */
1796892db58bSNicolas Ferre static void atmel_get_ip_name(struct uart_port *port)
1797055560b0SElen Song {
1798055560b0SElen Song 	struct atmel_uart_port *atmel_port = to_atmel_uart_port(port);
17994e7decdaSCyrille Pitchen 	int name = atmel_uart_readl(port, ATMEL_US_NAME);
1800731d9caeSNicolas Ferre 	u32 version;
18011d673fb9SNicolas Ferre 	u32 usart, dbgu_uart, new_uart;
18024b769371SNicolas Ferre 	/* ASCII decoding for IP version */
18034b769371SNicolas Ferre 	usart = 0x55534152;	/* USAR(T) */
18044b769371SNicolas Ferre 	dbgu_uart = 0x44424755;	/* DBGU */
18051d673fb9SNicolas Ferre 	new_uart = 0x55415254;	/* UART */
1806055560b0SElen Song 
18075bf5635aSLudovic Desroches 	/*
18085bf5635aSLudovic Desroches 	 * Only USART devices from at91sam9260 SOC implement fractional
18092867af2dSRomain Izard 	 * baudrate. It is available for all asynchronous modes, with the
18102867af2dSRomain Izard 	 * following restriction: the sampling clock's duty cycle is not
18112867af2dSRomain Izard 	 * constant.
18125bf5635aSLudovic Desroches 	 */
18135bf5635aSLudovic Desroches 	atmel_port->has_frac_baudrate = false;
18144b769371SNicolas Ferre 	atmel_port->has_hw_timer = false;
18155644bf18SSergiu Moga 	atmel_port->is_usart = false;
1816055560b0SElen Song 
18172958cceeSLudovic Desroches 	if (name == new_uart) {
18182958cceeSLudovic Desroches 		dev_dbg(port->dev, "Uart with hw timer");
18194b769371SNicolas Ferre 		atmel_port->has_hw_timer = true;
18202958cceeSLudovic Desroches 		atmel_port->rtor = ATMEL_UA_RTOR;
18212958cceeSLudovic Desroches 	} else if (name == usart) {
18222958cceeSLudovic Desroches 		dev_dbg(port->dev, "Usart\n");
18235bf5635aSLudovic Desroches 		atmel_port->has_frac_baudrate = true;
18242958cceeSLudovic Desroches 		atmel_port->has_hw_timer = true;
18255644bf18SSergiu Moga 		atmel_port->is_usart = true;
18262958cceeSLudovic Desroches 		atmel_port->rtor = ATMEL_US_RTOR;
1827377fedd1SNicolas Ferre 		version = atmel_uart_readl(port, ATMEL_US_VERSION);
1828377fedd1SNicolas Ferre 		switch (version) {
1829377fedd1SNicolas Ferre 		case 0x814:	/* sama5d2 */
1830df561f66SGustavo A. R. Silva 			fallthrough;
1831377fedd1SNicolas Ferre 		case 0x701:	/* sama5d4 */
1832377fedd1SNicolas Ferre 			atmel_port->fidi_min = 3;
1833377fedd1SNicolas Ferre 			atmel_port->fidi_max = 65535;
1834377fedd1SNicolas Ferre 			break;
1835377fedd1SNicolas Ferre 		case 0x502:	/* sam9x5, sama5d3 */
1836377fedd1SNicolas Ferre 			atmel_port->fidi_min = 3;
1837377fedd1SNicolas Ferre 			atmel_port->fidi_max = 2047;
1838377fedd1SNicolas Ferre 			break;
1839377fedd1SNicolas Ferre 		default:
1840377fedd1SNicolas Ferre 			atmel_port->fidi_min = 1;
1841377fedd1SNicolas Ferre 			atmel_port->fidi_max = 2047;
1842377fedd1SNicolas Ferre 		}
18434b769371SNicolas Ferre 	} else if (name == dbgu_uart) {
18444b769371SNicolas Ferre 		dev_dbg(port->dev, "Dbgu or uart without hw timer\n");
1845055560b0SElen Song 	} else {
1846731d9caeSNicolas Ferre 		/* fallback for older SoCs: use version field */
18474e7decdaSCyrille Pitchen 		version = atmel_uart_readl(port, ATMEL_US_VERSION);
1848731d9caeSNicolas Ferre 		switch (version) {
1849731d9caeSNicolas Ferre 		case 0x302:
1850731d9caeSNicolas Ferre 		case 0x10213:
1851fd63a890SJonas Danielsson 		case 0x10302:
1852731d9caeSNicolas Ferre 			dev_dbg(port->dev, "This version is usart\n");
18535bf5635aSLudovic Desroches 			atmel_port->has_frac_baudrate = true;
18544b769371SNicolas Ferre 			atmel_port->has_hw_timer = true;
18555644bf18SSergiu Moga 			atmel_port->is_usart = true;
18562958cceeSLudovic Desroches 			atmel_port->rtor = ATMEL_US_RTOR;
1857731d9caeSNicolas Ferre 			break;
1858731d9caeSNicolas Ferre 		case 0x203:
1859731d9caeSNicolas Ferre 		case 0x10202:
1860731d9caeSNicolas Ferre 			dev_dbg(port->dev, "This version is uart\n");
1861731d9caeSNicolas Ferre 			break;
1862731d9caeSNicolas Ferre 		default:
1863731d9caeSNicolas Ferre 			dev_err(port->dev, "Not supported ip name nor version, set to uart\n");
1864731d9caeSNicolas Ferre 		}
1865055560b0SElen Song 	}
1866055560b0SElen Song }
1867055560b0SElen Song 
1868055560b0SElen Song /*
1869ab4382d2SGreg Kroah-Hartman  * Perform initialization and enable port for reception
1870ab4382d2SGreg Kroah-Hartman  */
1871ab4382d2SGreg Kroah-Hartman static int atmel_startup(struct uart_port *port)
1872ab4382d2SGreg Kroah-Hartman {
187333d64c4fSElen Song 	struct platform_device *pdev = to_platform_device(port->dev);
1874ab4382d2SGreg Kroah-Hartman 	struct atmel_uart_port *atmel_port = to_atmel_uart_port(port);
1875ab4382d2SGreg Kroah-Hartman 	int retval;
1876ab4382d2SGreg Kroah-Hartman 
1877ab4382d2SGreg Kroah-Hartman 	/*
1878ab4382d2SGreg Kroah-Hartman 	 * Ensure that no interrupts are enabled otherwise when
1879ab4382d2SGreg Kroah-Hartman 	 * request_irq() is called we could get stuck trying to
1880ab4382d2SGreg Kroah-Hartman 	 * handle an unexpected interrupt
1881ab4382d2SGreg Kroah-Hartman 	 */
18824e7decdaSCyrille Pitchen 	atmel_uart_writel(port, ATMEL_US_IDR, -1);
1883ab5e4e41SRichard Genoud 	atmel_port->ms_irq_enabled = false;
1884ab4382d2SGreg Kroah-Hartman 
1885ab4382d2SGreg Kroah-Hartman 	/*
1886ab4382d2SGreg Kroah-Hartman 	 * Allocate the IRQ
1887ab4382d2SGreg Kroah-Hartman 	 */
18882c7af5baSBoris BREZILLON 	retval = request_irq(port->irq, atmel_interrupt,
18892c7af5baSBoris BREZILLON 			     IRQF_SHARED | IRQF_COND_SUSPEND,
18909594b5beSSebastian Andrzej Siewior 			     dev_name(&pdev->dev), port);
1891ab4382d2SGreg Kroah-Hartman 	if (retval) {
1892ddaa6037SRichard Genoud 		dev_err(port->dev, "atmel_startup - Can't get irq\n");
1893ab4382d2SGreg Kroah-Hartman 		return retval;
1894ab4382d2SGreg Kroah-Hartman 	}
1895ab4382d2SGreg Kroah-Hartman 
189698f2082cSNicolas Ferre 	atomic_set(&atmel_port->tasklet_shutdown, 0);
189741e85e44SAllen Pais 	tasklet_setup(&atmel_port->tasklet_rx, atmel_tasklet_rx_func);
189841e85e44SAllen Pais 	tasklet_setup(&atmel_port->tasklet_tx, atmel_tasklet_tx_func);
18991e125786SLeilei Zhao 
1900ab5e4e41SRichard Genoud 	/*
1901ab4382d2SGreg Kroah-Hartman 	 * Initialize DMA (if necessary)
1902ab4382d2SGreg Kroah-Hartman 	 */
190333d64c4fSElen Song 	atmel_init_property(atmel_port, pdev);
19044d9628a1SLeilei Zhao 	atmel_set_ops(port);
190533d64c4fSElen Song 
1906a930e528SElen Song 	if (atmel_port->prepare_rx) {
1907a930e528SElen Song 		retval = atmel_port->prepare_rx(port);
1908a930e528SElen Song 		if (retval < 0)
1909a930e528SElen Song 			atmel_set_ops(port);
1910ab4382d2SGreg Kroah-Hartman 	}
1911ab4382d2SGreg Kroah-Hartman 
1912a930e528SElen Song 	if (atmel_port->prepare_tx) {
1913a930e528SElen Song 		retval = atmel_port->prepare_tx(port);
1914a930e528SElen Song 		if (retval < 0)
1915a930e528SElen Song 			atmel_set_ops(port);
1916ab4382d2SGreg Kroah-Hartman 	}
1917ab4382d2SGreg Kroah-Hartman 
1918b5199d46SCyrille Pitchen 	/*
1919b5199d46SCyrille Pitchen 	 * Enable FIFO when available
1920b5199d46SCyrille Pitchen 	 */
1921b5199d46SCyrille Pitchen 	if (atmel_port->fifo_size) {
1922b5199d46SCyrille Pitchen 		unsigned int txrdym = ATMEL_US_ONE_DATA;
1923b5199d46SCyrille Pitchen 		unsigned int rxrdym = ATMEL_US_ONE_DATA;
1924b5199d46SCyrille Pitchen 		unsigned int fmr;
1925b5199d46SCyrille Pitchen 
1926b5199d46SCyrille Pitchen 		atmel_uart_writel(port, ATMEL_US_CR,
1927b5199d46SCyrille Pitchen 				  ATMEL_US_FIFOEN |
1928b5199d46SCyrille Pitchen 				  ATMEL_US_RXFCLR |
1929b5199d46SCyrille Pitchen 				  ATMEL_US_TXFLCLR);
1930b5199d46SCyrille Pitchen 
19315f258b3eSCyrille Pitchen 		if (atmel_use_dma_tx(port))
19325f258b3eSCyrille Pitchen 			txrdym = ATMEL_US_FOUR_DATA;
19335f258b3eSCyrille Pitchen 
1934b5199d46SCyrille Pitchen 		fmr = ATMEL_US_TXRDYM(txrdym) | ATMEL_US_RXRDYM(rxrdym);
1935b5199d46SCyrille Pitchen 		if (atmel_port->rts_high &&
1936b5199d46SCyrille Pitchen 		    atmel_port->rts_low)
1937b5199d46SCyrille Pitchen 			fmr |=	ATMEL_US_FRTSC |
1938b5199d46SCyrille Pitchen 				ATMEL_US_RXFTHRES(atmel_port->rts_high) |
1939b5199d46SCyrille Pitchen 				ATMEL_US_RXFTHRES2(atmel_port->rts_low);
1940b5199d46SCyrille Pitchen 
1941b5199d46SCyrille Pitchen 		atmel_uart_writel(port, ATMEL_US_FMR, fmr);
1942b5199d46SCyrille Pitchen 	}
1943b5199d46SCyrille Pitchen 
1944ab4382d2SGreg Kroah-Hartman 	/* Save current CSR for comparison in atmel_tasklet_func() */
1945d2d8d4c0SRichard Genoud 	atmel_port->irq_status_prev = atmel_uart_readl(port, ATMEL_US_CSR);
1946ab4382d2SGreg Kroah-Hartman 
1947ab4382d2SGreg Kroah-Hartman 	/*
1948ab4382d2SGreg Kroah-Hartman 	 * Finally, enable the serial port
1949ab4382d2SGreg Kroah-Hartman 	 */
19504e7decdaSCyrille Pitchen 	atmel_uart_writel(port, ATMEL_US_CR, ATMEL_US_RSTSTA | ATMEL_US_RSTRX);
1951ab4382d2SGreg Kroah-Hartman 	/* enable xmit & rcvr */
19524e7decdaSCyrille Pitchen 	atmel_uart_writel(port, ATMEL_US_CR, ATMEL_US_TXEN | ATMEL_US_RXEN);
1953ea04f82aSRomain Izard 	atmel_port->tx_stopped = false;
1954ab4382d2SGreg Kroah-Hartman 
1955026cb432SKees Cook 	timer_setup(&atmel_port->uart_timer, atmel_uart_timer_callback, 0);
19568bc661bfSMarek Roszko 
19578bc661bfSMarek Roszko 	if (atmel_use_pdc_rx(port)) {
19588bc661bfSMarek Roszko 		/* set UART timeout */
19594b769371SNicolas Ferre 		if (!atmel_port->has_hw_timer) {
19602e68c22fSElen Song 			mod_timer(&atmel_port->uart_timer,
19612e68c22fSElen Song 					jiffies + uart_poll_timeout(port));
19622e68c22fSElen Song 		/* set USART timeout */
19632e68c22fSElen Song 		} else {
19642958cceeSLudovic Desroches 			atmel_uart_writel(port, atmel_port->rtor,
19652958cceeSLudovic Desroches 					  PDC_RX_TIMEOUT);
19664e7decdaSCyrille Pitchen 			atmel_uart_writel(port, ATMEL_US_CR, ATMEL_US_STTTO);
1967ab4382d2SGreg Kroah-Hartman 
19684e7decdaSCyrille Pitchen 			atmel_uart_writel(port, ATMEL_US_IER,
19694e7decdaSCyrille Pitchen 					  ATMEL_US_ENDRX | ATMEL_US_TIMEOUT);
19702e68c22fSElen Song 		}
1971ab4382d2SGreg Kroah-Hartman 		/* enable PDC controller */
19724e7decdaSCyrille Pitchen 		atmel_uart_writel(port, ATMEL_PDC_PTCR, ATMEL_PDC_RXTEN);
197334df42f5SElen Song 	} else if (atmel_use_dma_rx(port)) {
19742e68c22fSElen Song 		/* set UART timeout */
19754b769371SNicolas Ferre 		if (!atmel_port->has_hw_timer) {
19762e68c22fSElen Song 			mod_timer(&atmel_port->uart_timer,
19772e68c22fSElen Song 					jiffies + uart_poll_timeout(port));
19782e68c22fSElen Song 		/* set USART timeout */
19792e68c22fSElen Song 		} else {
19802958cceeSLudovic Desroches 			atmel_uart_writel(port, atmel_port->rtor,
19812958cceeSLudovic Desroches 					  PDC_RX_TIMEOUT);
19824e7decdaSCyrille Pitchen 			atmel_uart_writel(port, ATMEL_US_CR, ATMEL_US_STTTO);
198334df42f5SElen Song 
19844e7decdaSCyrille Pitchen 			atmel_uart_writel(port, ATMEL_US_IER,
19854e7decdaSCyrille Pitchen 					  ATMEL_US_TIMEOUT);
19862e68c22fSElen Song 		}
1987ab4382d2SGreg Kroah-Hartman 	} else {
1988ab4382d2SGreg Kroah-Hartman 		/* enable receive only */
19894e7decdaSCyrille Pitchen 		atmel_uart_writel(port, ATMEL_US_IER, ATMEL_US_RXRDY);
1990ab4382d2SGreg Kroah-Hartman 	}
1991ab4382d2SGreg Kroah-Hartman 
1992ab4382d2SGreg Kroah-Hartman 	return 0;
1993ab4382d2SGreg Kroah-Hartman }
1994ab4382d2SGreg Kroah-Hartman 
1995ab4382d2SGreg Kroah-Hartman /*
1996479e9b94SPeter Hurley  * Flush any TX data submitted for DMA. Called when the TX circular
1997479e9b94SPeter Hurley  * buffer is reset.
1998479e9b94SPeter Hurley  */
1999479e9b94SPeter Hurley static void atmel_flush_buffer(struct uart_port *port)
2000479e9b94SPeter Hurley {
2001479e9b94SPeter Hurley 	struct atmel_uart_port *atmel_port = to_atmel_uart_port(port);
2002479e9b94SPeter Hurley 
2003479e9b94SPeter Hurley 	if (atmel_use_pdc_tx(port)) {
20044e7decdaSCyrille Pitchen 		atmel_uart_writel(port, ATMEL_PDC_TCR, 0);
2005479e9b94SPeter Hurley 		atmel_port->pdc_tx.ofs = 0;
2006479e9b94SPeter Hurley 	}
200731ca2c63SRichard Genoud 	/*
200831ca2c63SRichard Genoud 	 * in uart_flush_buffer(), the xmit circular buffer has just
200931ca2c63SRichard Genoud 	 * been cleared, so we have to reset tx_len accordingly.
201031ca2c63SRichard Genoud 	 */
201131ca2c63SRichard Genoud 	atmel_port->tx_len = 0;
2012479e9b94SPeter Hurley }
2013479e9b94SPeter Hurley 
2014479e9b94SPeter Hurley /*
2015ab4382d2SGreg Kroah-Hartman  * Disable the port
2016ab4382d2SGreg Kroah-Hartman  */
2017ab4382d2SGreg Kroah-Hartman static void atmel_shutdown(struct uart_port *port)
2018ab4382d2SGreg Kroah-Hartman {
2019ab4382d2SGreg Kroah-Hartman 	struct atmel_uart_port *atmel_port = to_atmel_uart_port(port);
20200cc7c6c7SMarek Roszko 
20210ae9fdefSRichard Genoud 	/* Disable modem control lines interrupts */
20220ae9fdefSRichard Genoud 	atmel_disable_ms(port);
20230ae9fdefSRichard Genoud 
202498f2082cSNicolas Ferre 	/* Disable interrupts at device level */
202598f2082cSNicolas Ferre 	atmel_uart_writel(port, ATMEL_US_IDR, -1);
202698f2082cSNicolas Ferre 
202798f2082cSNicolas Ferre 	/* Prevent spurious interrupts from scheduling the tasklet */
202898f2082cSNicolas Ferre 	atomic_inc(&atmel_port->tasklet_shutdown);
202998f2082cSNicolas Ferre 
2030ab4382d2SGreg Kroah-Hartman 	/*
20318bc661bfSMarek Roszko 	 * Prevent any tasklets being scheduled during
20328bc661bfSMarek Roszko 	 * cleanup
20338bc661bfSMarek Roszko 	 */
20348bc661bfSMarek Roszko 	del_timer_sync(&atmel_port->uart_timer);
20358bc661bfSMarek Roszko 
203698f2082cSNicolas Ferre 	/* Make sure that no interrupt is on the fly */
203798f2082cSNicolas Ferre 	synchronize_irq(port->irq);
203898f2082cSNicolas Ferre 
20398bc661bfSMarek Roszko 	/*
20400cc7c6c7SMarek Roszko 	 * Clear out any scheduled tasklets before
20410cc7c6c7SMarek Roszko 	 * we destroy the buffers
20420cc7c6c7SMarek Roszko 	 */
204300e8e658SNicolas Ferre 	tasklet_kill(&atmel_port->tasklet_rx);
204400e8e658SNicolas Ferre 	tasklet_kill(&atmel_port->tasklet_tx);
20450cc7c6c7SMarek Roszko 
20460cc7c6c7SMarek Roszko 	/*
20470cc7c6c7SMarek Roszko 	 * Ensure everything is stopped and
204898f2082cSNicolas Ferre 	 * disable port and break condition.
2049ab4382d2SGreg Kroah-Hartman 	 */
2050ab4382d2SGreg Kroah-Hartman 	atmel_stop_rx(port);
2051ab4382d2SGreg Kroah-Hartman 	atmel_stop_tx(port);
2052ab4382d2SGreg Kroah-Hartman 
20534e7decdaSCyrille Pitchen 	atmel_uart_writel(port, ATMEL_US_CR, ATMEL_US_RSTSTA);
20540cc7c6c7SMarek Roszko 
2055ab4382d2SGreg Kroah-Hartman 	/*
2056ab4382d2SGreg Kroah-Hartman 	 * Shut-down the DMA.
2057ab4382d2SGreg Kroah-Hartman 	 */
2058a930e528SElen Song 	if (atmel_port->release_rx)
2059a930e528SElen Song 		atmel_port->release_rx(port);
2060a930e528SElen Song 	if (atmel_port->release_tx)
2061a930e528SElen Song 		atmel_port->release_tx(port);
2062ab4382d2SGreg Kroah-Hartman 
2063ab4382d2SGreg Kroah-Hartman 	/*
2064bb7e73c5SMark Deneen 	 * Reset ring buffer pointers
2065bb7e73c5SMark Deneen 	 */
2066bb7e73c5SMark Deneen 	atmel_port->rx_ring.head = 0;
2067bb7e73c5SMark Deneen 	atmel_port->rx_ring.tail = 0;
2068bb7e73c5SMark Deneen 
2069bb7e73c5SMark Deneen 	/*
2070ab5e4e41SRichard Genoud 	 * Free the interrupts
2071ab4382d2SGreg Kroah-Hartman 	 */
2072ab4382d2SGreg Kroah-Hartman 	free_irq(port->irq, port);
2073ab5e4e41SRichard Genoud 
2074479e9b94SPeter Hurley 	atmel_flush_buffer(port);
2075ab4382d2SGreg Kroah-Hartman }
2076ab4382d2SGreg Kroah-Hartman 
2077ab4382d2SGreg Kroah-Hartman /*
2078ab4382d2SGreg Kroah-Hartman  * Power / Clock management.
2079ab4382d2SGreg Kroah-Hartman  */
2080ab4382d2SGreg Kroah-Hartman static void atmel_serial_pm(struct uart_port *port, unsigned int state,
2081ab4382d2SGreg Kroah-Hartman 			    unsigned int oldstate)
2082ab4382d2SGreg Kroah-Hartman {
2083ab4382d2SGreg Kroah-Hartman 	struct atmel_uart_port *atmel_port = to_atmel_uart_port(port);
2084ab4382d2SGreg Kroah-Hartman 
2085ab4382d2SGreg Kroah-Hartman 	switch (state) {
2086aec079f8SClaudiu Beznea 	case UART_PM_STATE_ON:
2087ab4382d2SGreg Kroah-Hartman 		/*
2088ab4382d2SGreg Kroah-Hartman 		 * Enable the peripheral clock for this serial port.
2089ab4382d2SGreg Kroah-Hartman 		 * This is called on uart_open() or a resume event.
2090ab4382d2SGreg Kroah-Hartman 		 */
209191f8c2d8SBoris BREZILLON 		clk_prepare_enable(atmel_port->clk);
2092ab4382d2SGreg Kroah-Hartman 
2093ab4382d2SGreg Kroah-Hartman 		/* re-enable interrupts if we disabled some on suspend */
20944e7decdaSCyrille Pitchen 		atmel_uart_writel(port, ATMEL_US_IER, atmel_port->backup_imr);
2095ab4382d2SGreg Kroah-Hartman 		break;
2096aec079f8SClaudiu Beznea 	case UART_PM_STATE_OFF:
2097ab4382d2SGreg Kroah-Hartman 		/* Back up the interrupt mask and disable all interrupts */
20984e7decdaSCyrille Pitchen 		atmel_port->backup_imr = atmel_uart_readl(port, ATMEL_US_IMR);
20994e7decdaSCyrille Pitchen 		atmel_uart_writel(port, ATMEL_US_IDR, -1);
2100ab4382d2SGreg Kroah-Hartman 
2101ab4382d2SGreg Kroah-Hartman 		/*
2102ab4382d2SGreg Kroah-Hartman 		 * Disable the peripheral clock for this serial port.
2103ab4382d2SGreg Kroah-Hartman 		 * This is called on uart_close() or a suspend event.
2104ab4382d2SGreg Kroah-Hartman 		 */
210591f8c2d8SBoris BREZILLON 		clk_disable_unprepare(atmel_port->clk);
21065e3ce1f2SSergiu Moga 		if (__clk_is_enabled(atmel_port->gclk))
21075e3ce1f2SSergiu Moga 			clk_disable_unprepare(atmel_port->gclk);
2108ab4382d2SGreg Kroah-Hartman 		break;
2109ab4382d2SGreg Kroah-Hartman 	default:
2110ddaa6037SRichard Genoud 		dev_err(port->dev, "atmel_serial: unknown pm %d\n", state);
2111ab4382d2SGreg Kroah-Hartman 	}
2112ab4382d2SGreg Kroah-Hartman }
2113ab4382d2SGreg Kroah-Hartman 
2114ab4382d2SGreg Kroah-Hartman /*
2115ab4382d2SGreg Kroah-Hartman  * Change the port parameters
2116ab4382d2SGreg Kroah-Hartman  */
2117bec5b814SIlpo Järvinen static void atmel_set_termios(struct uart_port *port,
2118bec5b814SIlpo Järvinen 			      struct ktermios *termios,
2119bec5b814SIlpo Järvinen 			      const struct ktermios *old)
2120ab4382d2SGreg Kroah-Hartman {
21215bf5635aSLudovic Desroches 	struct atmel_uart_port *atmel_port = to_atmel_uart_port(port);
2122ab4382d2SGreg Kroah-Hartman 	unsigned long flags;
21235e3ce1f2SSergiu Moga 	unsigned int old_mode, mode, imr, quot, div, cd, fp = 0;
21245e3ce1f2SSergiu Moga 	unsigned int baud, actual_baud, gclk_rate;
21255e3ce1f2SSergiu Moga 	int ret;
2126ab4382d2SGreg Kroah-Hartman 
21271cf6e8fcSCyrille Pitchen 	/* save the current mode register */
21284e7decdaSCyrille Pitchen 	mode = old_mode = atmel_uart_readl(port, ATMEL_US_MR);
21291cf6e8fcSCyrille Pitchen 
21301cf6e8fcSCyrille Pitchen 	/* reset the mode, clock divisor, parity, stop bits and data size */
21311a5a01a1SSergiu Moga 	if (atmel_port->is_usart)
21321a5a01a1SSergiu Moga 		mode &= ~(ATMEL_US_NBSTOP | ATMEL_US_PAR | ATMEL_US_CHRL |
21331a5a01a1SSergiu Moga 			  ATMEL_US_USCLKS | ATMEL_US_USMODE);
21341a5a01a1SSergiu Moga 	else
21351a5a01a1SSergiu Moga 		mode &= ~(ATMEL_UA_BRSRCCK | ATMEL_US_PAR | ATMEL_UA_FILTER);
2136ab4382d2SGreg Kroah-Hartman 
2137ab4382d2SGreg Kroah-Hartman 	baud = uart_get_baud_rate(port, termios, old, 0, port->uartclk / 16);
2138ab4382d2SGreg Kroah-Hartman 
2139ab4382d2SGreg Kroah-Hartman 	/* byte size */
2140ab4382d2SGreg Kroah-Hartman 	switch (termios->c_cflag & CSIZE) {
2141ab4382d2SGreg Kroah-Hartman 	case CS5:
2142ab4382d2SGreg Kroah-Hartman 		mode |= ATMEL_US_CHRL_5;
2143ab4382d2SGreg Kroah-Hartman 		break;
2144ab4382d2SGreg Kroah-Hartman 	case CS6:
2145ab4382d2SGreg Kroah-Hartman 		mode |= ATMEL_US_CHRL_6;
2146ab4382d2SGreg Kroah-Hartman 		break;
2147ab4382d2SGreg Kroah-Hartman 	case CS7:
2148ab4382d2SGreg Kroah-Hartman 		mode |= ATMEL_US_CHRL_7;
2149ab4382d2SGreg Kroah-Hartman 		break;
2150ab4382d2SGreg Kroah-Hartman 	default:
2151ab4382d2SGreg Kroah-Hartman 		mode |= ATMEL_US_CHRL_8;
2152ab4382d2SGreg Kroah-Hartman 		break;
2153ab4382d2SGreg Kroah-Hartman 	}
2154ab4382d2SGreg Kroah-Hartman 
2155ab4382d2SGreg Kroah-Hartman 	/* stop bits */
2156ab4382d2SGreg Kroah-Hartman 	if (termios->c_cflag & CSTOPB)
2157ab4382d2SGreg Kroah-Hartman 		mode |= ATMEL_US_NBSTOP_2;
2158ab4382d2SGreg Kroah-Hartman 
2159ab4382d2SGreg Kroah-Hartman 	/* parity */
2160ab4382d2SGreg Kroah-Hartman 	if (termios->c_cflag & PARENB) {
2161ab4382d2SGreg Kroah-Hartman 		/* Mark or Space parity */
2162ab4382d2SGreg Kroah-Hartman 		if (termios->c_cflag & CMSPAR) {
2163ab4382d2SGreg Kroah-Hartman 			if (termios->c_cflag & PARODD)
2164ab4382d2SGreg Kroah-Hartman 				mode |= ATMEL_US_PAR_MARK;
2165ab4382d2SGreg Kroah-Hartman 			else
2166ab4382d2SGreg Kroah-Hartman 				mode |= ATMEL_US_PAR_SPACE;
2167ab4382d2SGreg Kroah-Hartman 		} else if (termios->c_cflag & PARODD)
2168ab4382d2SGreg Kroah-Hartman 			mode |= ATMEL_US_PAR_ODD;
2169ab4382d2SGreg Kroah-Hartman 		else
2170ab4382d2SGreg Kroah-Hartman 			mode |= ATMEL_US_PAR_EVEN;
2171ab4382d2SGreg Kroah-Hartman 	} else
2172ab4382d2SGreg Kroah-Hartman 		mode |= ATMEL_US_PAR_NONE;
2173ab4382d2SGreg Kroah-Hartman 
2174ab4382d2SGreg Kroah-Hartman 	spin_lock_irqsave(&port->lock, flags);
2175ab4382d2SGreg Kroah-Hartman 
2176ab4382d2SGreg Kroah-Hartman 	port->read_status_mask = ATMEL_US_OVRE;
2177ab4382d2SGreg Kroah-Hartman 	if (termios->c_iflag & INPCK)
2178ab4382d2SGreg Kroah-Hartman 		port->read_status_mask |= (ATMEL_US_FRAME | ATMEL_US_PARE);
2179ef8b9ddcSPeter Hurley 	if (termios->c_iflag & (IGNBRK | BRKINT | PARMRK))
2180ab4382d2SGreg Kroah-Hartman 		port->read_status_mask |= ATMEL_US_RXBRK;
2181ab4382d2SGreg Kroah-Hartman 
218264e22ebeSElen Song 	if (atmel_use_pdc_rx(port))
2183ab4382d2SGreg Kroah-Hartman 		/* need to enable error interrupts */
21844e7decdaSCyrille Pitchen 		atmel_uart_writel(port, ATMEL_US_IER, port->read_status_mask);
2185ab4382d2SGreg Kroah-Hartman 
2186ab4382d2SGreg Kroah-Hartman 	/*
2187ab4382d2SGreg Kroah-Hartman 	 * Characters to ignore
2188ab4382d2SGreg Kroah-Hartman 	 */
2189ab4382d2SGreg Kroah-Hartman 	port->ignore_status_mask = 0;
2190ab4382d2SGreg Kroah-Hartman 	if (termios->c_iflag & IGNPAR)
2191ab4382d2SGreg Kroah-Hartman 		port->ignore_status_mask |= (ATMEL_US_FRAME | ATMEL_US_PARE);
2192ab4382d2SGreg Kroah-Hartman 	if (termios->c_iflag & IGNBRK) {
2193ab4382d2SGreg Kroah-Hartman 		port->ignore_status_mask |= ATMEL_US_RXBRK;
2194ab4382d2SGreg Kroah-Hartman 		/*
2195ab4382d2SGreg Kroah-Hartman 		 * If we're ignoring parity and break indicators,
2196ab4382d2SGreg Kroah-Hartman 		 * ignore overruns too (for real raw support).
2197ab4382d2SGreg Kroah-Hartman 		 */
2198ab4382d2SGreg Kroah-Hartman 		if (termios->c_iflag & IGNPAR)
2199ab4382d2SGreg Kroah-Hartman 			port->ignore_status_mask |= ATMEL_US_OVRE;
2200ab4382d2SGreg Kroah-Hartman 	}
2201ab4382d2SGreg Kroah-Hartman 	/* TODO: Ignore all characters if CREAD is set.*/
2202ab4382d2SGreg Kroah-Hartman 
2203ab4382d2SGreg Kroah-Hartman 	/* update the per-port timeout */
2204ab4382d2SGreg Kroah-Hartman 	uart_update_timeout(port, termios->c_cflag, baud);
2205ab4382d2SGreg Kroah-Hartman 
2206ab4382d2SGreg Kroah-Hartman 	/*
2207ab4382d2SGreg Kroah-Hartman 	 * save/disable interrupts. The tty layer will ensure that the
2208ab4382d2SGreg Kroah-Hartman 	 * transmitter is empty if requested by the caller, so there's
2209ab4382d2SGreg Kroah-Hartman 	 * no need to wait for it here.
2210ab4382d2SGreg Kroah-Hartman 	 */
22114e7decdaSCyrille Pitchen 	imr = atmel_uart_readl(port, ATMEL_US_IMR);
22124e7decdaSCyrille Pitchen 	atmel_uart_writel(port, ATMEL_US_IDR, -1);
2213ab4382d2SGreg Kroah-Hartman 
2214ab4382d2SGreg Kroah-Hartman 	/* disable receiver and transmitter */
22154e7decdaSCyrille Pitchen 	atmel_uart_writel(port, ATMEL_US_CR, ATMEL_US_TXDIS | ATMEL_US_RXDIS);
2216ea04f82aSRomain Izard 	atmel_port->tx_stopped = true;
2217ab4382d2SGreg Kroah-Hartman 
22181cf6e8fcSCyrille Pitchen 	/* mode */
221913bd3e6fSRicardo Ribalda Delgado 	if (port->rs485.flags & SER_RS485_ENABLED) {
22204e7decdaSCyrille Pitchen 		atmel_uart_writel(port, ATMEL_US_TTGR,
22214e7decdaSCyrille Pitchen 				  port->rs485.delay_rts_after_send);
2222ab4382d2SGreg Kroah-Hartman 		mode |= ATMEL_US_USMODE_RS485;
2223377fedd1SNicolas Ferre 	} else if (port->iso7816.flags & SER_ISO7816_ENABLED) {
2224377fedd1SNicolas Ferre 		atmel_uart_writel(port, ATMEL_US_TTGR, port->iso7816.tg);
2225377fedd1SNicolas Ferre 		/* select mck clock, and output  */
2226377fedd1SNicolas Ferre 		mode |= ATMEL_US_USCLKS_MCK | ATMEL_US_CLKO;
2227377fedd1SNicolas Ferre 		/* set max iterations */
2228377fedd1SNicolas Ferre 		mode |= ATMEL_US_MAX_ITER(3);
2229377fedd1SNicolas Ferre 		if ((port->iso7816.flags & SER_ISO7816_T_PARAM)
2230377fedd1SNicolas Ferre 				== SER_ISO7816_T(0))
2231377fedd1SNicolas Ferre 			mode |= ATMEL_US_USMODE_ISO7816_T0;
2232377fedd1SNicolas Ferre 		else
2233377fedd1SNicolas Ferre 			mode |= ATMEL_US_USMODE_ISO7816_T1;
22341cf6e8fcSCyrille Pitchen 	} else if (termios->c_cflag & CRTSCTS) {
22351cf6e8fcSCyrille Pitchen 		/* RS232 with hardware handshake (RTS/CTS) */
22369bcffe75SRichard Genoud 		if (atmel_use_fifo(port) &&
22379bcffe75SRichard Genoud 		    !mctrl_gpio_to_gpiod(atmel_port->gpios, UART_GPIO_CTS)) {
22389bcffe75SRichard Genoud 			/*
22399bcffe75SRichard Genoud 			 * with ATMEL_US_USMODE_HWHS set, the controller will
22409bcffe75SRichard Genoud 			 * be able to drive the RTS pin high/low when the RX
22419bcffe75SRichard Genoud 			 * FIFO is above RXFTHRES/below RXFTHRES2.
22429bcffe75SRichard Genoud 			 * It will also disable the transmitter when the CTS
22439bcffe75SRichard Genoud 			 * pin is high.
22449bcffe75SRichard Genoud 			 * This mode is not activated if CTS pin is a GPIO
22459bcffe75SRichard Genoud 			 * because in this case, the transmitter is always
22469bcffe75SRichard Genoud 			 * disabled (there must be an internal pull-up
22479bcffe75SRichard Genoud 			 * responsible for this behaviour).
22489bcffe75SRichard Genoud 			 * If the RTS pin is a GPIO, the controller won't be
22499bcffe75SRichard Genoud 			 * able to drive it according to the FIFO thresholds,
22509bcffe75SRichard Genoud 			 * but it will be handled by the driver.
22519bcffe75SRichard Genoud 			 */
22521cf6e8fcSCyrille Pitchen 			mode |= ATMEL_US_USMODE_HWHS;
22539bcffe75SRichard Genoud 		} else {
22549bcffe75SRichard Genoud 			/*
22559bcffe75SRichard Genoud 			 * For platforms without FIFO, the flow control is
22569bcffe75SRichard Genoud 			 * handled by the driver.
22579bcffe75SRichard Genoud 			 */
22589bcffe75SRichard Genoud 			mode |= ATMEL_US_USMODE_NORMAL;
22595be605acSAlexandre Belloni 		}
22601cf6e8fcSCyrille Pitchen 	} else {
22611cf6e8fcSCyrille Pitchen 		/* RS232 without hadware handshake */
22621cf6e8fcSCyrille Pitchen 		mode |= ATMEL_US_USMODE_NORMAL;
2263ab4382d2SGreg Kroah-Hartman 	}
2264ab4382d2SGreg Kroah-Hartman 
22655bf5635aSLudovic Desroches 	/*
22665bf5635aSLudovic Desroches 	 * Set the baud rate:
22675bf5635aSLudovic Desroches 	 * Fractional baudrate allows to setup output frequency more
22685bf5635aSLudovic Desroches 	 * accurately. This feature is enabled only when using normal mode.
22695bf5635aSLudovic Desroches 	 * baudrate = selected clock / (8 * (2 - OVER) * (CD + FP / 8))
22705bf5635aSLudovic Desroches 	 * Currently, OVER is always set to 0 so we get
227136131cdfSAlexey Starikovskiy 	 * baudrate = selected clock / (16 * (CD + FP / 8))
227236131cdfSAlexey Starikovskiy 	 * then
227336131cdfSAlexey Starikovskiy 	 * 8 CD + FP = selected clock / (2 * baudrate)
22745bf5635aSLudovic Desroches 	 */
22752867af2dSRomain Izard 	if (atmel_port->has_frac_baudrate) {
227636131cdfSAlexey Starikovskiy 		div = DIV_ROUND_CLOSEST(port->uartclk, baud * 2);
227736131cdfSAlexey Starikovskiy 		cd = div >> 3;
227836131cdfSAlexey Starikovskiy 		fp = div & ATMEL_US_FP_MASK;
22795bf5635aSLudovic Desroches 	} else {
22805bf5635aSLudovic Desroches 		cd = uart_get_divisor(port, baud);
22815bf5635aSLudovic Desroches 	}
22825bf5635aSLudovic Desroches 
22835644bf18SSergiu Moga 	/*
22845644bf18SSergiu Moga 	 * If the current value of the Clock Divisor surpasses the 16 bit
22855644bf18SSergiu Moga 	 * ATMEL_US_CD mask and the IP is USART, switch to the Peripheral
22865644bf18SSergiu Moga 	 * Clock implicitly divided by 8.
22875644bf18SSergiu Moga 	 * If the IP is UART however, keep the highest possible value for
22885644bf18SSergiu Moga 	 * the CD and avoid needless division of CD, since UART IP's do not
22895644bf18SSergiu Moga 	 * support implicit division of the Peripheral Clock.
22905644bf18SSergiu Moga 	 */
22915644bf18SSergiu Moga 	if (atmel_port->is_usart && cd > ATMEL_US_CD) {
22925bf5635aSLudovic Desroches 		cd /= 8;
22935bf5635aSLudovic Desroches 		mode |= ATMEL_US_USCLKS_MCK_DIV8;
22945644bf18SSergiu Moga 	} else {
22955644bf18SSergiu Moga 		cd = min_t(unsigned int, cd, ATMEL_US_CD);
22965bf5635aSLudovic Desroches 	}
22975644bf18SSergiu Moga 
22985e3ce1f2SSergiu Moga 	/*
22995e3ce1f2SSergiu Moga 	 * If there is no Fractional Part, there is a high chance that
23005e3ce1f2SSergiu Moga 	 * we may be able to generate a baudrate closer to the desired one
23015e3ce1f2SSergiu Moga 	 * if we use the GCLK as the clock source driving the baudrate
23025e3ce1f2SSergiu Moga 	 * generator.
23035e3ce1f2SSergiu Moga 	 */
23045e3ce1f2SSergiu Moga 	if (!atmel_port->has_frac_baudrate) {
23055e3ce1f2SSergiu Moga 		if (__clk_is_enabled(atmel_port->gclk))
23065e3ce1f2SSergiu Moga 			clk_disable_unprepare(atmel_port->gclk);
23075e3ce1f2SSergiu Moga 		gclk_rate = clk_round_rate(atmel_port->gclk, 16 * baud);
23085e3ce1f2SSergiu Moga 		actual_baud = clk_get_rate(atmel_port->clk) / (16 * cd);
23095e3ce1f2SSergiu Moga 		if (gclk_rate && abs(atmel_error_rate(baud, actual_baud)) >
23105e3ce1f2SSergiu Moga 		    abs(atmel_error_rate(baud, gclk_rate / 16))) {
23115e3ce1f2SSergiu Moga 			clk_set_rate(atmel_port->gclk, 16 * baud);
23125e3ce1f2SSergiu Moga 			ret = clk_prepare_enable(atmel_port->gclk);
23135e3ce1f2SSergiu Moga 			if (ret)
23145e3ce1f2SSergiu Moga 				goto gclk_fail;
23155e3ce1f2SSergiu Moga 
23165e3ce1f2SSergiu Moga 			if (atmel_port->is_usart) {
23175e3ce1f2SSergiu Moga 				mode &= ~ATMEL_US_USCLKS;
23185e3ce1f2SSergiu Moga 				mode |= ATMEL_US_USCLKS_GCLK;
23195e3ce1f2SSergiu Moga 			} else {
23205e3ce1f2SSergiu Moga 				mode |= ATMEL_UA_BRSRCCK;
23215e3ce1f2SSergiu Moga 			}
23225e3ce1f2SSergiu Moga 
23235e3ce1f2SSergiu Moga 			/*
23245e3ce1f2SSergiu Moga 			 * Set the Clock Divisor for GCLK to 1.
23255e3ce1f2SSergiu Moga 			 * Since we were able to generate the smallest
23265e3ce1f2SSergiu Moga 			 * multiple of the desired baudrate times 16,
23275e3ce1f2SSergiu Moga 			 * then we surely can generate a bigger multiple
23285e3ce1f2SSergiu Moga 			 * with the exact error rate for an equally increased
23295e3ce1f2SSergiu Moga 			 * CD. Thus no need to take into account
23305e3ce1f2SSergiu Moga 			 * a higher value for CD.
23315e3ce1f2SSergiu Moga 			 */
23325e3ce1f2SSergiu Moga 			cd = 1;
23335e3ce1f2SSergiu Moga 		}
23345e3ce1f2SSergiu Moga 	}
23355e3ce1f2SSergiu Moga 
23365e3ce1f2SSergiu Moga gclk_fail:
23375bf5635aSLudovic Desroches 	quot = cd | fp << ATMEL_US_FP_OFFSET;
23385bf5635aSLudovic Desroches 
2339377fedd1SNicolas Ferre 	if (!(port->iso7816.flags & SER_ISO7816_ENABLED))
23404e7decdaSCyrille Pitchen 		atmel_uart_writel(port, ATMEL_US_BRGR, quot);
2341cb47b9f8SDavid Engraf 
2342cb47b9f8SDavid Engraf 	/* set the mode, clock divisor, parity, stop bits and data size */
2343cb47b9f8SDavid Engraf 	atmel_uart_writel(port, ATMEL_US_MR, mode);
2344cb47b9f8SDavid Engraf 
2345cb47b9f8SDavid Engraf 	/*
2346cb47b9f8SDavid Engraf 	 * when switching the mode, set the RTS line state according to the
2347cb47b9f8SDavid Engraf 	 * new mode, otherwise keep the former state
2348cb47b9f8SDavid Engraf 	 */
2349cb47b9f8SDavid Engraf 	if ((old_mode & ATMEL_US_USMODE) != (mode & ATMEL_US_USMODE)) {
2350cb47b9f8SDavid Engraf 		unsigned int rts_state;
2351cb47b9f8SDavid Engraf 
2352cb47b9f8SDavid Engraf 		if ((mode & ATMEL_US_USMODE) == ATMEL_US_USMODE_HWHS) {
2353cb47b9f8SDavid Engraf 			/* let the hardware control the RTS line */
2354cb47b9f8SDavid Engraf 			rts_state = ATMEL_US_RTSDIS;
2355cb47b9f8SDavid Engraf 		} else {
2356cb47b9f8SDavid Engraf 			/* force RTS line to low level */
2357cb47b9f8SDavid Engraf 			rts_state = ATMEL_US_RTSEN;
2358cb47b9f8SDavid Engraf 		}
2359cb47b9f8SDavid Engraf 
2360cb47b9f8SDavid Engraf 		atmel_uart_writel(port, ATMEL_US_CR, rts_state);
2361cb47b9f8SDavid Engraf 	}
2362cb47b9f8SDavid Engraf 
23634e7decdaSCyrille Pitchen 	atmel_uart_writel(port, ATMEL_US_CR, ATMEL_US_RSTSTA | ATMEL_US_RSTRX);
23644e7decdaSCyrille Pitchen 	atmel_uart_writel(port, ATMEL_US_CR, ATMEL_US_TXEN | ATMEL_US_RXEN);
2365ea04f82aSRomain Izard 	atmel_port->tx_stopped = false;
2366ab4382d2SGreg Kroah-Hartman 
2367ab4382d2SGreg Kroah-Hartman 	/* restore interrupts */
23684e7decdaSCyrille Pitchen 	atmel_uart_writel(port, ATMEL_US_IER, imr);
2369ab4382d2SGreg Kroah-Hartman 
2370ab4382d2SGreg Kroah-Hartman 	/* CTS flow-control and modem-status interrupts */
2371ab4382d2SGreg Kroah-Hartman 	if (UART_ENABLE_MS(port, termios->c_cflag))
237235b675b9SRichard Genoud 		atmel_enable_ms(port);
237335b675b9SRichard Genoud 	else
237435b675b9SRichard Genoud 		atmel_disable_ms(port);
2375ab4382d2SGreg Kroah-Hartman 
2376ab4382d2SGreg Kroah-Hartman 	spin_unlock_irqrestore(&port->lock, flags);
2377ab4382d2SGreg Kroah-Hartman }
2378ab4382d2SGreg Kroah-Hartman 
2379732a84a0SPeter Hurley static void atmel_set_ldisc(struct uart_port *port, struct ktermios *termios)
238042bd7a4fSViktar Palstsiuk {
2381732a84a0SPeter Hurley 	if (termios->c_line == N_PPS) {
238242bd7a4fSViktar Palstsiuk 		port->flags |= UPF_HARDPPS_CD;
2383d41510ceSPeter Hurley 		spin_lock_irq(&port->lock);
238442bd7a4fSViktar Palstsiuk 		atmel_enable_ms(port);
2385d41510ceSPeter Hurley 		spin_unlock_irq(&port->lock);
238642bd7a4fSViktar Palstsiuk 	} else {
238742bd7a4fSViktar Palstsiuk 		port->flags &= ~UPF_HARDPPS_CD;
2388cab68f89SPeter Hurley 		if (!UART_ENABLE_MS(port, termios->c_cflag)) {
2389cab68f89SPeter Hurley 			spin_lock_irq(&port->lock);
2390cab68f89SPeter Hurley 			atmel_disable_ms(port);
2391cab68f89SPeter Hurley 			spin_unlock_irq(&port->lock);
2392cab68f89SPeter Hurley 		}
239342bd7a4fSViktar Palstsiuk 	}
239442bd7a4fSViktar Palstsiuk }
239542bd7a4fSViktar Palstsiuk 
2396ab4382d2SGreg Kroah-Hartman /*
2397ab4382d2SGreg Kroah-Hartman  * Return string describing the specified port
2398ab4382d2SGreg Kroah-Hartman  */
2399ab4382d2SGreg Kroah-Hartman static const char *atmel_type(struct uart_port *port)
2400ab4382d2SGreg Kroah-Hartman {
2401ab4382d2SGreg Kroah-Hartman 	return (port->type == PORT_ATMEL) ? "ATMEL_SERIAL" : NULL;
2402ab4382d2SGreg Kroah-Hartman }
2403ab4382d2SGreg Kroah-Hartman 
2404ab4382d2SGreg Kroah-Hartman /*
2405ab4382d2SGreg Kroah-Hartman  * Release the memory region(s) being used by 'port'.
2406ab4382d2SGreg Kroah-Hartman  */
2407ab4382d2SGreg Kroah-Hartman static void atmel_release_port(struct uart_port *port)
2408ab4382d2SGreg Kroah-Hartman {
2409c24d2531SRadu Pirea 	struct platform_device *mpdev = to_platform_device(port->dev->parent);
2410c24d2531SRadu Pirea 	int size = resource_size(mpdev->resource);
2411ab4382d2SGreg Kroah-Hartman 
2412ab4382d2SGreg Kroah-Hartman 	release_mem_region(port->mapbase, size);
2413ab4382d2SGreg Kroah-Hartman 
2414ab4382d2SGreg Kroah-Hartman 	if (port->flags & UPF_IOREMAP) {
2415ab4382d2SGreg Kroah-Hartman 		iounmap(port->membase);
2416ab4382d2SGreg Kroah-Hartman 		port->membase = NULL;
2417ab4382d2SGreg Kroah-Hartman 	}
2418ab4382d2SGreg Kroah-Hartman }
2419ab4382d2SGreg Kroah-Hartman 
2420ab4382d2SGreg Kroah-Hartman /*
2421ab4382d2SGreg Kroah-Hartman  * Request the memory region(s) being used by 'port'.
2422ab4382d2SGreg Kroah-Hartman  */
2423ab4382d2SGreg Kroah-Hartman static int atmel_request_port(struct uart_port *port)
2424ab4382d2SGreg Kroah-Hartman {
2425c24d2531SRadu Pirea 	struct platform_device *mpdev = to_platform_device(port->dev->parent);
2426c24d2531SRadu Pirea 	int size = resource_size(mpdev->resource);
2427ab4382d2SGreg Kroah-Hartman 
2428ab4382d2SGreg Kroah-Hartman 	if (!request_mem_region(port->mapbase, size, "atmel_serial"))
2429ab4382d2SGreg Kroah-Hartman 		return -EBUSY;
2430ab4382d2SGreg Kroah-Hartman 
2431ab4382d2SGreg Kroah-Hartman 	if (port->flags & UPF_IOREMAP) {
2432ab4382d2SGreg Kroah-Hartman 		port->membase = ioremap(port->mapbase, size);
2433ab4382d2SGreg Kroah-Hartman 		if (port->membase == NULL) {
2434ab4382d2SGreg Kroah-Hartman 			release_mem_region(port->mapbase, size);
2435ab4382d2SGreg Kroah-Hartman 			return -ENOMEM;
2436ab4382d2SGreg Kroah-Hartman 		}
2437ab4382d2SGreg Kroah-Hartman 	}
2438ab4382d2SGreg Kroah-Hartman 
2439ab4382d2SGreg Kroah-Hartman 	return 0;
2440ab4382d2SGreg Kroah-Hartman }
2441ab4382d2SGreg Kroah-Hartman 
2442ab4382d2SGreg Kroah-Hartman /*
2443ab4382d2SGreg Kroah-Hartman  * Configure/autoconfigure the port.
2444ab4382d2SGreg Kroah-Hartman  */
2445ab4382d2SGreg Kroah-Hartman static void atmel_config_port(struct uart_port *port, int flags)
2446ab4382d2SGreg Kroah-Hartman {
2447ab4382d2SGreg Kroah-Hartman 	if (flags & UART_CONFIG_TYPE) {
2448ab4382d2SGreg Kroah-Hartman 		port->type = PORT_ATMEL;
2449ab4382d2SGreg Kroah-Hartman 		atmel_request_port(port);
2450ab4382d2SGreg Kroah-Hartman 	}
2451ab4382d2SGreg Kroah-Hartman }
2452ab4382d2SGreg Kroah-Hartman 
2453ab4382d2SGreg Kroah-Hartman /*
2454ab4382d2SGreg Kroah-Hartman  * Verify the new serial_struct (for TIOCSSERIAL).
2455ab4382d2SGreg Kroah-Hartman  */
2456ab4382d2SGreg Kroah-Hartman static int atmel_verify_port(struct uart_port *port, struct serial_struct *ser)
2457ab4382d2SGreg Kroah-Hartman {
2458ab4382d2SGreg Kroah-Hartman 	int ret = 0;
2459ab4382d2SGreg Kroah-Hartman 	if (ser->type != PORT_UNKNOWN && ser->type != PORT_ATMEL)
2460ab4382d2SGreg Kroah-Hartman 		ret = -EINVAL;
2461ab4382d2SGreg Kroah-Hartman 	if (port->irq != ser->irq)
2462ab4382d2SGreg Kroah-Hartman 		ret = -EINVAL;
2463ab4382d2SGreg Kroah-Hartman 	if (ser->io_type != SERIAL_IO_MEM)
2464ab4382d2SGreg Kroah-Hartman 		ret = -EINVAL;
2465ab4382d2SGreg Kroah-Hartman 	if (port->uartclk / 16 != ser->baud_base)
2466ab4382d2SGreg Kroah-Hartman 		ret = -EINVAL;
2467270c2adeSAndre Przywara 	if (port->mapbase != (unsigned long)ser->iomem_base)
2468ab4382d2SGreg Kroah-Hartman 		ret = -EINVAL;
2469ab4382d2SGreg Kroah-Hartman 	if (port->iobase != ser->port)
2470ab4382d2SGreg Kroah-Hartman 		ret = -EINVAL;
2471ab4382d2SGreg Kroah-Hartman 	if (ser->hub6 != 0)
2472ab4382d2SGreg Kroah-Hartman 		ret = -EINVAL;
2473ab4382d2SGreg Kroah-Hartman 	return ret;
2474ab4382d2SGreg Kroah-Hartman }
2475ab4382d2SGreg Kroah-Hartman 
2476ab4382d2SGreg Kroah-Hartman #ifdef CONFIG_CONSOLE_POLL
2477ab4382d2SGreg Kroah-Hartman static int atmel_poll_get_char(struct uart_port *port)
2478ab4382d2SGreg Kroah-Hartman {
24794e7decdaSCyrille Pitchen 	while (!(atmel_uart_readl(port, ATMEL_US_CSR) & ATMEL_US_RXRDY))
2480ab4382d2SGreg Kroah-Hartman 		cpu_relax();
2481ab4382d2SGreg Kroah-Hartman 
2482a6499435SCyrille Pitchen 	return atmel_uart_read_char(port);
2483ab4382d2SGreg Kroah-Hartman }
2484ab4382d2SGreg Kroah-Hartman 
2485ab4382d2SGreg Kroah-Hartman static void atmel_poll_put_char(struct uart_port *port, unsigned char ch)
2486ab4382d2SGreg Kroah-Hartman {
24874e7decdaSCyrille Pitchen 	while (!(atmel_uart_readl(port, ATMEL_US_CSR) & ATMEL_US_TXRDY))
2488ab4382d2SGreg Kroah-Hartman 		cpu_relax();
2489ab4382d2SGreg Kroah-Hartman 
2490a6499435SCyrille Pitchen 	atmel_uart_write_char(port, ch);
2491ab4382d2SGreg Kroah-Hartman }
2492ab4382d2SGreg Kroah-Hartman #endif
2493ab4382d2SGreg Kroah-Hartman 
24945c7dcdb6SJulia Lawall static const struct uart_ops atmel_pops = {
2495ab4382d2SGreg Kroah-Hartman 	.tx_empty	= atmel_tx_empty,
2496ab4382d2SGreg Kroah-Hartman 	.set_mctrl	= atmel_set_mctrl,
2497ab4382d2SGreg Kroah-Hartman 	.get_mctrl	= atmel_get_mctrl,
2498ab4382d2SGreg Kroah-Hartman 	.stop_tx	= atmel_stop_tx,
2499ab4382d2SGreg Kroah-Hartman 	.start_tx	= atmel_start_tx,
2500ab4382d2SGreg Kroah-Hartman 	.stop_rx	= atmel_stop_rx,
2501ab4382d2SGreg Kroah-Hartman 	.enable_ms	= atmel_enable_ms,
2502ab4382d2SGreg Kroah-Hartman 	.break_ctl	= atmel_break_ctl,
2503ab4382d2SGreg Kroah-Hartman 	.startup	= atmel_startup,
2504ab4382d2SGreg Kroah-Hartman 	.shutdown	= atmel_shutdown,
2505ab4382d2SGreg Kroah-Hartman 	.flush_buffer	= atmel_flush_buffer,
2506ab4382d2SGreg Kroah-Hartman 	.set_termios	= atmel_set_termios,
250742bd7a4fSViktar Palstsiuk 	.set_ldisc	= atmel_set_ldisc,
2508ab4382d2SGreg Kroah-Hartman 	.type		= atmel_type,
2509ab4382d2SGreg Kroah-Hartman 	.release_port	= atmel_release_port,
2510ab4382d2SGreg Kroah-Hartman 	.request_port	= atmel_request_port,
2511ab4382d2SGreg Kroah-Hartman 	.config_port	= atmel_config_port,
2512ab4382d2SGreg Kroah-Hartman 	.verify_port	= atmel_verify_port,
2513ab4382d2SGreg Kroah-Hartman 	.pm		= atmel_serial_pm,
2514ab4382d2SGreg Kroah-Hartman #ifdef CONFIG_CONSOLE_POLL
2515ab4382d2SGreg Kroah-Hartman 	.poll_get_char	= atmel_poll_get_char,
2516ab4382d2SGreg Kroah-Hartman 	.poll_put_char	= atmel_poll_put_char,
2517ab4382d2SGreg Kroah-Hartman #endif
2518ab4382d2SGreg Kroah-Hartman };
2519ab4382d2SGreg Kroah-Hartman 
2520af47c491SIlpo Järvinen static const struct serial_rs485 atmel_rs485_supported = {
2521af47c491SIlpo Järvinen 	.flags = SER_RS485_ENABLED | SER_RS485_RTS_AFTER_SEND | SER_RS485_RX_DURING_TX,
2522af47c491SIlpo Järvinen 	.delay_rts_before_send = 1,
2523af47c491SIlpo Järvinen 	.delay_rts_after_send = 1,
2524af47c491SIlpo Järvinen };
2525af47c491SIlpo Järvinen 
2526ab4382d2SGreg Kroah-Hartman /*
2527ab4382d2SGreg Kroah-Hartman  * Configure the port from the platform device resource info.
2528ab4382d2SGreg Kroah-Hartman  */
252991f8c2d8SBoris BREZILLON static int atmel_init_port(struct atmel_uart_port *atmel_port,
2530ab4382d2SGreg Kroah-Hartman 				      struct platform_device *pdev)
2531ab4382d2SGreg Kroah-Hartman {
253291f8c2d8SBoris BREZILLON 	int ret;
2533ab4382d2SGreg Kroah-Hartman 	struct uart_port *port = &atmel_port->uart;
2534c24d2531SRadu Pirea 	struct platform_device *mpdev = to_platform_device(pdev->dev.parent);
2535ab4382d2SGreg Kroah-Hartman 
25364a1e8888SLeilei Zhao 	atmel_init_property(atmel_port, pdev);
2537a930e528SElen Song 	atmel_set_ops(port);
2538a930e528SElen Song 
2539ab4382d2SGreg Kroah-Hartman 	port->iotype		= UPIO_MEM;
254092c8f7c0SAlexandre Belloni 	port->flags		= UPF_BOOT_AUTOCONF | UPF_IOREMAP;
2541ab4382d2SGreg Kroah-Hartman 	port->ops		= &atmel_pops;
2542ab4382d2SGreg Kroah-Hartman 	port->fifosize		= 1;
2543ab4382d2SGreg Kroah-Hartman 	port->dev		= &pdev->dev;
2544c24d2531SRadu Pirea 	port->mapbase		= mpdev->resource[0].start;
25455bb221b0SRob Herring 	port->irq		= platform_get_irq(mpdev, 0);
254613bd3e6fSRicardo Ribalda Delgado 	port->rs485_config	= atmel_config_rs485;
25470139da50SIlpo Järvinen 	port->rs485_supported	= atmel_rs485_supported;
2548377fedd1SNicolas Ferre 	port->iso7816_config	= atmel_config_iso7816;
254992c8f7c0SAlexandre Belloni 	port->membase		= NULL;
2550ab4382d2SGreg Kroah-Hartman 
2551ab4382d2SGreg Kroah-Hartman 	memset(&atmel_port->rx_ring, 0, sizeof(atmel_port->rx_ring));
2552ab4382d2SGreg Kroah-Hartman 
2553c150c0f3SLukas Wunner 	ret = uart_get_rs485_mode(port);
2554c150c0f3SLukas Wunner 	if (ret)
2555c150c0f3SLukas Wunner 		return ret;
2556c150c0f3SLukas Wunner 
2557ab4382d2SGreg Kroah-Hartman 	port->uartclk = clk_get_rate(atmel_port->clk);
2558ab4382d2SGreg Kroah-Hartman 
2559377fedd1SNicolas Ferre 	/*
2560377fedd1SNicolas Ferre 	 * Use TXEMPTY for interrupt when rs485 or ISO7816 else TXRDY or
2561377fedd1SNicolas Ferre 	 * ENDTX|TXBUFE
2562377fedd1SNicolas Ferre 	 */
2563477b8383SCodrin.Ciubotariu@microchip.com 	if (atmel_uart_is_half_duplex(port))
2564ab4382d2SGreg Kroah-Hartman 		atmel_port->tx_done_mask = ATMEL_US_TXEMPTY;
256564e22ebeSElen Song 	else if (atmel_use_pdc_tx(port)) {
2566ab4382d2SGreg Kroah-Hartman 		port->fifosize = PDC_BUFFER_SIZE;
2567ab4382d2SGreg Kroah-Hartman 		atmel_port->tx_done_mask = ATMEL_US_ENDTX | ATMEL_US_TXBUFE;
2568ab4382d2SGreg Kroah-Hartman 	} else {
2569ab4382d2SGreg Kroah-Hartman 		atmel_port->tx_done_mask = ATMEL_US_TXRDY;
2570ab4382d2SGreg Kroah-Hartman 	}
257191f8c2d8SBoris BREZILLON 
257291f8c2d8SBoris BREZILLON 	return 0;
2573ab4382d2SGreg Kroah-Hartman }
2574ab4382d2SGreg Kroah-Hartman 
2575ab4382d2SGreg Kroah-Hartman #ifdef CONFIG_SERIAL_ATMEL_CONSOLE
25763f8bab17SJiri Slaby static void atmel_console_putchar(struct uart_port *port, unsigned char ch)
2577ab4382d2SGreg Kroah-Hartman {
25784e7decdaSCyrille Pitchen 	while (!(atmel_uart_readl(port, ATMEL_US_CSR) & ATMEL_US_TXRDY))
2579ab4382d2SGreg Kroah-Hartman 		cpu_relax();
2580a6499435SCyrille Pitchen 	atmel_uart_write_char(port, ch);
2581ab4382d2SGreg Kroah-Hartman }
2582ab4382d2SGreg Kroah-Hartman 
2583ab4382d2SGreg Kroah-Hartman /*
2584ab4382d2SGreg Kroah-Hartman  * Interrupts are disabled on entering
2585ab4382d2SGreg Kroah-Hartman  */
2586ab4382d2SGreg Kroah-Hartman static void atmel_console_write(struct console *co, const char *s, u_int count)
2587ab4382d2SGreg Kroah-Hartman {
2588ab4382d2SGreg Kroah-Hartman 	struct uart_port *port = &atmel_ports[co->index].uart;
2589ab4382d2SGreg Kroah-Hartman 	struct atmel_uart_port *atmel_port = to_atmel_uart_port(port);
2590ab4382d2SGreg Kroah-Hartman 	unsigned int status, imr;
2591ab4382d2SGreg Kroah-Hartman 	unsigned int pdc_tx;
2592ab4382d2SGreg Kroah-Hartman 
2593ab4382d2SGreg Kroah-Hartman 	/*
2594ab4382d2SGreg Kroah-Hartman 	 * First, save IMR and then disable interrupts
2595ab4382d2SGreg Kroah-Hartman 	 */
25964e7decdaSCyrille Pitchen 	imr = atmel_uart_readl(port, ATMEL_US_IMR);
25974e7decdaSCyrille Pitchen 	atmel_uart_writel(port, ATMEL_US_IDR,
25984e7decdaSCyrille Pitchen 			  ATMEL_US_RXRDY | atmel_port->tx_done_mask);
2599ab4382d2SGreg Kroah-Hartman 
2600ab4382d2SGreg Kroah-Hartman 	/* Store PDC transmit status and disable it */
26014e7decdaSCyrille Pitchen 	pdc_tx = atmel_uart_readl(port, ATMEL_PDC_PTSR) & ATMEL_PDC_TXTEN;
26024e7decdaSCyrille Pitchen 	atmel_uart_writel(port, ATMEL_PDC_PTCR, ATMEL_PDC_TXTDIS);
2603ab4382d2SGreg Kroah-Hartman 
2604497e1e16SNicolas Ferre 	/* Make sure that tx path is actually able to send characters */
2605497e1e16SNicolas Ferre 	atmel_uart_writel(port, ATMEL_US_CR, ATMEL_US_TXEN);
2606ea04f82aSRomain Izard 	atmel_port->tx_stopped = false;
2607497e1e16SNicolas Ferre 
2608ab4382d2SGreg Kroah-Hartman 	uart_console_write(port, s, count, atmel_console_putchar);
2609ab4382d2SGreg Kroah-Hartman 
2610ab4382d2SGreg Kroah-Hartman 	/*
2611ab4382d2SGreg Kroah-Hartman 	 * Finally, wait for transmitter to become empty
2612ab4382d2SGreg Kroah-Hartman 	 * and restore IMR
2613ab4382d2SGreg Kroah-Hartman 	 */
2614ab4382d2SGreg Kroah-Hartman 	do {
26154e7decdaSCyrille Pitchen 		status = atmel_uart_readl(port, ATMEL_US_CSR);
2616ab4382d2SGreg Kroah-Hartman 	} while (!(status & ATMEL_US_TXRDY));
2617ab4382d2SGreg Kroah-Hartman 
2618ab4382d2SGreg Kroah-Hartman 	/* Restore PDC transmit status */
2619ab4382d2SGreg Kroah-Hartman 	if (pdc_tx)
26204e7decdaSCyrille Pitchen 		atmel_uart_writel(port, ATMEL_PDC_PTCR, ATMEL_PDC_TXTEN);
2621ab4382d2SGreg Kroah-Hartman 
2622ab4382d2SGreg Kroah-Hartman 	/* set interrupts back the way they were */
26234e7decdaSCyrille Pitchen 	atmel_uart_writel(port, ATMEL_US_IER, imr);
2624ab4382d2SGreg Kroah-Hartman }
2625ab4382d2SGreg Kroah-Hartman 
2626ab4382d2SGreg Kroah-Hartman /*
2627ab4382d2SGreg Kroah-Hartman  * If the port was already initialised (eg, by a boot loader),
2628ab4382d2SGreg Kroah-Hartman  * try to determine the current setup.
2629ab4382d2SGreg Kroah-Hartman  */
2630ab4382d2SGreg Kroah-Hartman static void __init atmel_console_get_options(struct uart_port *port, int *baud,
2631ab4382d2SGreg Kroah-Hartman 					     int *parity, int *bits)
2632ab4382d2SGreg Kroah-Hartman {
2633ab4382d2SGreg Kroah-Hartman 	unsigned int mr, quot;
2634ab4382d2SGreg Kroah-Hartman 
2635ab4382d2SGreg Kroah-Hartman 	/*
2636ab4382d2SGreg Kroah-Hartman 	 * If the baud rate generator isn't running, the port wasn't
2637ab4382d2SGreg Kroah-Hartman 	 * initialized by the boot loader.
2638ab4382d2SGreg Kroah-Hartman 	 */
26394e7decdaSCyrille Pitchen 	quot = atmel_uart_readl(port, ATMEL_US_BRGR) & ATMEL_US_CD;
2640ab4382d2SGreg Kroah-Hartman 	if (!quot)
2641ab4382d2SGreg Kroah-Hartman 		return;
2642ab4382d2SGreg Kroah-Hartman 
26434e7decdaSCyrille Pitchen 	mr = atmel_uart_readl(port, ATMEL_US_MR) & ATMEL_US_CHRL;
2644ab4382d2SGreg Kroah-Hartman 	if (mr == ATMEL_US_CHRL_8)
2645ab4382d2SGreg Kroah-Hartman 		*bits = 8;
2646ab4382d2SGreg Kroah-Hartman 	else
2647ab4382d2SGreg Kroah-Hartman 		*bits = 7;
2648ab4382d2SGreg Kroah-Hartman 
26494e7decdaSCyrille Pitchen 	mr = atmel_uart_readl(port, ATMEL_US_MR) & ATMEL_US_PAR;
2650ab4382d2SGreg Kroah-Hartman 	if (mr == ATMEL_US_PAR_EVEN)
2651ab4382d2SGreg Kroah-Hartman 		*parity = 'e';
2652ab4382d2SGreg Kroah-Hartman 	else if (mr == ATMEL_US_PAR_ODD)
2653ab4382d2SGreg Kroah-Hartman 		*parity = 'o';
2654ab4382d2SGreg Kroah-Hartman 
2655ab4382d2SGreg Kroah-Hartman 	/*
2656ab4382d2SGreg Kroah-Hartman 	 * The serial core only rounds down when matching this to a
2657ab4382d2SGreg Kroah-Hartman 	 * supported baud rate. Make sure we don't end up slightly
2658ab4382d2SGreg Kroah-Hartman 	 * lower than one of those, as it would make us fall through
2659ab4382d2SGreg Kroah-Hartman 	 * to a much lower baud rate than we really want.
2660ab4382d2SGreg Kroah-Hartman 	 */
2661ab4382d2SGreg Kroah-Hartman 	*baud = port->uartclk / (16 * (quot - 1));
2662ab4382d2SGreg Kroah-Hartman }
2663ab4382d2SGreg Kroah-Hartman 
2664ab4382d2SGreg Kroah-Hartman static int __init atmel_console_setup(struct console *co, char *options)
2665ab4382d2SGreg Kroah-Hartman {
2666ab4382d2SGreg Kroah-Hartman 	struct uart_port *port = &atmel_ports[co->index].uart;
2667ea04f82aSRomain Izard 	struct atmel_uart_port *atmel_port = to_atmel_uart_port(port);
2668ab4382d2SGreg Kroah-Hartman 	int baud = 115200;
2669ab4382d2SGreg Kroah-Hartman 	int bits = 8;
2670ab4382d2SGreg Kroah-Hartman 	int parity = 'n';
2671ab4382d2SGreg Kroah-Hartman 	int flow = 'n';
2672ab4382d2SGreg Kroah-Hartman 
2673ab4382d2SGreg Kroah-Hartman 	if (port->membase == NULL) {
2674ab4382d2SGreg Kroah-Hartman 		/* Port not initialized yet - delay setup */
2675ab4382d2SGreg Kroah-Hartman 		return -ENODEV;
2676ab4382d2SGreg Kroah-Hartman 	}
2677ab4382d2SGreg Kroah-Hartman 
26784e7decdaSCyrille Pitchen 	atmel_uart_writel(port, ATMEL_US_IDR, -1);
26794e7decdaSCyrille Pitchen 	atmel_uart_writel(port, ATMEL_US_CR, ATMEL_US_RSTSTA | ATMEL_US_RSTRX);
26804e7decdaSCyrille Pitchen 	atmel_uart_writel(port, ATMEL_US_CR, ATMEL_US_TXEN | ATMEL_US_RXEN);
2681ea04f82aSRomain Izard 	atmel_port->tx_stopped = false;
2682ab4382d2SGreg Kroah-Hartman 
2683ab4382d2SGreg Kroah-Hartman 	if (options)
2684ab4382d2SGreg Kroah-Hartman 		uart_parse_options(options, &baud, &parity, &bits, &flow);
2685ab4382d2SGreg Kroah-Hartman 	else
2686ab4382d2SGreg Kroah-Hartman 		atmel_console_get_options(port, &baud, &parity, &bits);
2687ab4382d2SGreg Kroah-Hartman 
2688ab4382d2SGreg Kroah-Hartman 	return uart_set_options(port, co, baud, parity, bits, flow);
2689ab4382d2SGreg Kroah-Hartman }
2690ab4382d2SGreg Kroah-Hartman 
2691ab4382d2SGreg Kroah-Hartman static struct uart_driver atmel_uart;
2692ab4382d2SGreg Kroah-Hartman 
2693ab4382d2SGreg Kroah-Hartman static struct console atmel_console = {
2694ab4382d2SGreg Kroah-Hartman 	.name		= ATMEL_DEVICENAME,
2695ab4382d2SGreg Kroah-Hartman 	.write		= atmel_console_write,
2696ab4382d2SGreg Kroah-Hartman 	.device		= uart_console_device,
2697ab4382d2SGreg Kroah-Hartman 	.setup		= atmel_console_setup,
2698ab4382d2SGreg Kroah-Hartman 	.flags		= CON_PRINTBUFFER,
2699ab4382d2SGreg Kroah-Hartman 	.index		= -1,
2700ab4382d2SGreg Kroah-Hartman 	.data		= &atmel_uart,
2701ab4382d2SGreg Kroah-Hartman };
2702ab4382d2SGreg Kroah-Hartman 
2703aab68e95SMichael Walle static void atmel_serial_early_write(struct console *con, const char *s,
2704aab68e95SMichael Walle 				     unsigned int n)
2705aab68e95SMichael Walle {
2706aab68e95SMichael Walle 	struct earlycon_device *dev = con->data;
2707aab68e95SMichael Walle 
2708aab68e95SMichael Walle 	uart_console_write(&dev->port, s, n, atmel_console_putchar);
2709aab68e95SMichael Walle }
2710aab68e95SMichael Walle 
2711aab68e95SMichael Walle static int __init atmel_early_console_setup(struct earlycon_device *device,
2712aab68e95SMichael Walle 					    const char *options)
2713aab68e95SMichael Walle {
2714aab68e95SMichael Walle 	if (!device->port.membase)
2715aab68e95SMichael Walle 		return -ENODEV;
2716aab68e95SMichael Walle 
2717aab68e95SMichael Walle 	device->con->write = atmel_serial_early_write;
2718aab68e95SMichael Walle 
2719aab68e95SMichael Walle 	return 0;
2720aab68e95SMichael Walle }
2721aab68e95SMichael Walle 
2722aab68e95SMichael Walle OF_EARLYCON_DECLARE(atmel_serial, "atmel,at91rm9200-usart",
2723aab68e95SMichael Walle 		    atmel_early_console_setup);
2724aab68e95SMichael Walle OF_EARLYCON_DECLARE(atmel_serial, "atmel,at91sam9260-usart",
2725aab68e95SMichael Walle 		    atmel_early_console_setup);
2726aab68e95SMichael Walle 
2727ab4382d2SGreg Kroah-Hartman #define ATMEL_CONSOLE_DEVICE	(&atmel_console)
2728ab4382d2SGreg Kroah-Hartman 
2729ab4382d2SGreg Kroah-Hartman #else
2730ab4382d2SGreg Kroah-Hartman #define ATMEL_CONSOLE_DEVICE	NULL
2731ab4382d2SGreg Kroah-Hartman #endif
2732ab4382d2SGreg Kroah-Hartman 
2733ab4382d2SGreg Kroah-Hartman static struct uart_driver atmel_uart = {
2734ab4382d2SGreg Kroah-Hartman 	.owner		= THIS_MODULE,
2735ab4382d2SGreg Kroah-Hartman 	.driver_name	= "atmel_serial",
2736ab4382d2SGreg Kroah-Hartman 	.dev_name	= ATMEL_DEVICENAME,
2737ab4382d2SGreg Kroah-Hartman 	.major		= SERIAL_ATMEL_MAJOR,
2738ab4382d2SGreg Kroah-Hartman 	.minor		= MINOR_START,
2739ab4382d2SGreg Kroah-Hartman 	.nr		= ATMEL_MAX_UART,
2740ab4382d2SGreg Kroah-Hartman 	.cons		= ATMEL_CONSOLE_DEVICE,
2741ab4382d2SGreg Kroah-Hartman };
2742ab4382d2SGreg Kroah-Hartman 
2743ab4382d2SGreg Kroah-Hartman static bool atmel_serial_clk_will_stop(void)
2744ab4382d2SGreg Kroah-Hartman {
2745ab4382d2SGreg Kroah-Hartman #ifdef CONFIG_ARCH_AT91
2746ab4382d2SGreg Kroah-Hartman 	return at91_suspend_entering_slow_clock();
2747ab4382d2SGreg Kroah-Hartman #else
2748ab4382d2SGreg Kroah-Hartman 	return false;
2749ab4382d2SGreg Kroah-Hartman #endif
2750ab4382d2SGreg Kroah-Hartman }
2751ab4382d2SGreg Kroah-Hartman 
2752b50058b8SClaudiu Beznea static int __maybe_unused atmel_serial_suspend(struct device *dev)
2753ab4382d2SGreg Kroah-Hartman {
2754b50058b8SClaudiu Beznea 	struct uart_port *port = dev_get_drvdata(dev);
2755ab4382d2SGreg Kroah-Hartman 	struct atmel_uart_port *atmel_port = to_atmel_uart_port(port);
2756ab4382d2SGreg Kroah-Hartman 
2757207f6f34SAndy Shevchenko 	if (uart_console(port) && console_suspend_enabled) {
2758ab4382d2SGreg Kroah-Hartman 		/* Drain the TX shifter */
27594e7decdaSCyrille Pitchen 		while (!(atmel_uart_readl(port, ATMEL_US_CSR) &
27604e7decdaSCyrille Pitchen 			 ATMEL_US_TXEMPTY))
2761ab4382d2SGreg Kroah-Hartman 			cpu_relax();
2762ab4382d2SGreg Kroah-Hartman 	}
2763ab4382d2SGreg Kroah-Hartman 
2764207f6f34SAndy Shevchenko 	if (uart_console(port) && !console_suspend_enabled) {
27656a5f0e2fSAlexandre Belloni 		/* Cache register values as we won't get a full shutdown/startup
27666a5f0e2fSAlexandre Belloni 		 * cycle
27676a5f0e2fSAlexandre Belloni 		 */
27686a5f0e2fSAlexandre Belloni 		atmel_port->cache.mr = atmel_uart_readl(port, ATMEL_US_MR);
27696a5f0e2fSAlexandre Belloni 		atmel_port->cache.imr = atmel_uart_readl(port, ATMEL_US_IMR);
27706a5f0e2fSAlexandre Belloni 		atmel_port->cache.brgr = atmel_uart_readl(port, ATMEL_US_BRGR);
27716a5f0e2fSAlexandre Belloni 		atmel_port->cache.rtor = atmel_uart_readl(port,
27726a5f0e2fSAlexandre Belloni 							  atmel_port->rtor);
27736a5f0e2fSAlexandre Belloni 		atmel_port->cache.ttgr = atmel_uart_readl(port, ATMEL_US_TTGR);
27746a5f0e2fSAlexandre Belloni 		atmel_port->cache.fmr = atmel_uart_readl(port, ATMEL_US_FMR);
27756a5f0e2fSAlexandre Belloni 		atmel_port->cache.fimr = atmel_uart_readl(port, ATMEL_US_FIMR);
27766a5f0e2fSAlexandre Belloni 	}
27776a5f0e2fSAlexandre Belloni 
2778ab4382d2SGreg Kroah-Hartman 	/* we can not wake up if we're running on slow clock */
2779b50058b8SClaudiu Beznea 	atmel_port->may_wakeup = device_may_wakeup(dev);
27802c7af5baSBoris BREZILLON 	if (atmel_serial_clk_will_stop()) {
27812c7af5baSBoris BREZILLON 		unsigned long flags;
27822c7af5baSBoris BREZILLON 
27832c7af5baSBoris BREZILLON 		spin_lock_irqsave(&atmel_port->lock_suspended, flags);
27842c7af5baSBoris BREZILLON 		atmel_port->suspended = true;
27852c7af5baSBoris BREZILLON 		spin_unlock_irqrestore(&atmel_port->lock_suspended, flags);
2786b50058b8SClaudiu Beznea 		device_set_wakeup_enable(dev, 0);
27872c7af5baSBoris BREZILLON 	}
2788ab4382d2SGreg Kroah-Hartman 
2789ab4382d2SGreg Kroah-Hartman 	uart_suspend_port(&atmel_uart, port);
2790ab4382d2SGreg Kroah-Hartman 
2791ab4382d2SGreg Kroah-Hartman 	return 0;
2792ab4382d2SGreg Kroah-Hartman }
2793ab4382d2SGreg Kroah-Hartman 
2794b50058b8SClaudiu Beznea static int __maybe_unused atmel_serial_resume(struct device *dev)
2795ab4382d2SGreg Kroah-Hartman {
2796b50058b8SClaudiu Beznea 	struct uart_port *port = dev_get_drvdata(dev);
2797ab4382d2SGreg Kroah-Hartman 	struct atmel_uart_port *atmel_port = to_atmel_uart_port(port);
27982c7af5baSBoris BREZILLON 	unsigned long flags;
27992c7af5baSBoris BREZILLON 
2800207f6f34SAndy Shevchenko 	if (uart_console(port) && !console_suspend_enabled) {
28016a5f0e2fSAlexandre Belloni 		atmel_uart_writel(port, ATMEL_US_MR, atmel_port->cache.mr);
28026a5f0e2fSAlexandre Belloni 		atmel_uart_writel(port, ATMEL_US_IER, atmel_port->cache.imr);
28036a5f0e2fSAlexandre Belloni 		atmel_uart_writel(port, ATMEL_US_BRGR, atmel_port->cache.brgr);
28046a5f0e2fSAlexandre Belloni 		atmel_uart_writel(port, atmel_port->rtor,
28056a5f0e2fSAlexandre Belloni 				  atmel_port->cache.rtor);
28066a5f0e2fSAlexandre Belloni 		atmel_uart_writel(port, ATMEL_US_TTGR, atmel_port->cache.ttgr);
28076a5f0e2fSAlexandre Belloni 
28086a5f0e2fSAlexandre Belloni 		if (atmel_port->fifo_size) {
28096a5f0e2fSAlexandre Belloni 			atmel_uart_writel(port, ATMEL_US_CR, ATMEL_US_FIFOEN |
28106a5f0e2fSAlexandre Belloni 					  ATMEL_US_RXFCLR | ATMEL_US_TXFLCLR);
28116a5f0e2fSAlexandre Belloni 			atmel_uart_writel(port, ATMEL_US_FMR,
28126a5f0e2fSAlexandre Belloni 					  atmel_port->cache.fmr);
28136a5f0e2fSAlexandre Belloni 			atmel_uart_writel(port, ATMEL_US_FIER,
28146a5f0e2fSAlexandre Belloni 					  atmel_port->cache.fimr);
28156a5f0e2fSAlexandre Belloni 		}
28166a5f0e2fSAlexandre Belloni 		atmel_start_rx(port);
28176a5f0e2fSAlexandre Belloni 	}
28186a5f0e2fSAlexandre Belloni 
28192c7af5baSBoris BREZILLON 	spin_lock_irqsave(&atmel_port->lock_suspended, flags);
28202c7af5baSBoris BREZILLON 	if (atmel_port->pending) {
28212c7af5baSBoris BREZILLON 		atmel_handle_receive(port, atmel_port->pending);
28222c7af5baSBoris BREZILLON 		atmel_handle_status(port, atmel_port->pending,
28232c7af5baSBoris BREZILLON 				    atmel_port->pending_status);
28242c7af5baSBoris BREZILLON 		atmel_handle_transmit(port, atmel_port->pending);
28252c7af5baSBoris BREZILLON 		atmel_port->pending = 0;
28262c7af5baSBoris BREZILLON 	}
28272c7af5baSBoris BREZILLON 	atmel_port->suspended = false;
28282c7af5baSBoris BREZILLON 	spin_unlock_irqrestore(&atmel_port->lock_suspended, flags);
2829ab4382d2SGreg Kroah-Hartman 
2830ab4382d2SGreg Kroah-Hartman 	uart_resume_port(&atmel_uart, port);
2831b50058b8SClaudiu Beznea 	device_set_wakeup_enable(dev, atmel_port->may_wakeup);
2832ab4382d2SGreg Kroah-Hartman 
2833ab4382d2SGreg Kroah-Hartman 	return 0;
2834ab4382d2SGreg Kroah-Hartman }
2835ab4382d2SGreg Kroah-Hartman 
2836b78cd169SJaeden Amero static void atmel_serial_probe_fifos(struct atmel_uart_port *atmel_port,
2837b5199d46SCyrille Pitchen 				     struct platform_device *pdev)
2838b5199d46SCyrille Pitchen {
2839b78cd169SJaeden Amero 	atmel_port->fifo_size = 0;
2840b78cd169SJaeden Amero 	atmel_port->rts_low = 0;
2841b78cd169SJaeden Amero 	atmel_port->rts_high = 0;
2842b5199d46SCyrille Pitchen 
2843b5199d46SCyrille Pitchen 	if (of_property_read_u32(pdev->dev.of_node,
2844b5199d46SCyrille Pitchen 				 "atmel,fifo-size",
2845b78cd169SJaeden Amero 				 &atmel_port->fifo_size))
2846b5199d46SCyrille Pitchen 		return;
2847b5199d46SCyrille Pitchen 
2848b78cd169SJaeden Amero 	if (!atmel_port->fifo_size)
2849b5199d46SCyrille Pitchen 		return;
2850b5199d46SCyrille Pitchen 
2851b78cd169SJaeden Amero 	if (atmel_port->fifo_size < ATMEL_MIN_FIFO_SIZE) {
2852b78cd169SJaeden Amero 		atmel_port->fifo_size = 0;
2853b5199d46SCyrille Pitchen 		dev_err(&pdev->dev, "Invalid FIFO size\n");
2854b5199d46SCyrille Pitchen 		return;
2855b5199d46SCyrille Pitchen 	}
2856b5199d46SCyrille Pitchen 
2857b5199d46SCyrille Pitchen 	/*
2858b5199d46SCyrille Pitchen 	 * 0 <= rts_low <= rts_high <= fifo_size
2859b5199d46SCyrille Pitchen 	 * Once their CTS line asserted by the remote peer, some x86 UARTs tend
2860b5199d46SCyrille Pitchen 	 * to flush their internal TX FIFO, commonly up to 16 data, before
2861b5199d46SCyrille Pitchen 	 * actually stopping to send new data. So we try to set the RTS High
2862b5199d46SCyrille Pitchen 	 * Threshold to a reasonably high value respecting this 16 data
2863b5199d46SCyrille Pitchen 	 * empirical rule when possible.
2864b5199d46SCyrille Pitchen 	 */
2865b78cd169SJaeden Amero 	atmel_port->rts_high = max_t(int, atmel_port->fifo_size >> 1,
2866b78cd169SJaeden Amero 			       atmel_port->fifo_size - ATMEL_RTS_HIGH_OFFSET);
2867b78cd169SJaeden Amero 	atmel_port->rts_low  = max_t(int, atmel_port->fifo_size >> 2,
2868b78cd169SJaeden Amero 			       atmel_port->fifo_size - ATMEL_RTS_LOW_OFFSET);
2869b5199d46SCyrille Pitchen 
2870b5199d46SCyrille Pitchen 	dev_info(&pdev->dev, "Using FIFO (%u data)\n",
2871b78cd169SJaeden Amero 		 atmel_port->fifo_size);
2872b5199d46SCyrille Pitchen 	dev_dbg(&pdev->dev, "RTS High Threshold : %2u data\n",
2873b78cd169SJaeden Amero 		atmel_port->rts_high);
2874b5199d46SCyrille Pitchen 	dev_dbg(&pdev->dev, "RTS Low Threshold  : %2u data\n",
2875b78cd169SJaeden Amero 		atmel_port->rts_low);
2876b5199d46SCyrille Pitchen }
2877b5199d46SCyrille Pitchen 
28789671f099SBill Pemberton static int atmel_serial_probe(struct platform_device *pdev)
2879ab4382d2SGreg Kroah-Hartman {
2880b78cd169SJaeden Amero 	struct atmel_uart_port *atmel_port;
2881c24d2531SRadu Pirea 	struct device_node *np = pdev->dev.parent->of_node;
2882ab4382d2SGreg Kroah-Hartman 	void *data;
28838d41ab87SColin Ian King 	int ret;
2884bd737f87SRicardo Ribalda Delgado 	bool rs485_enabled;
2885ab4382d2SGreg Kroah-Hartman 
2886ab4382d2SGreg Kroah-Hartman 	BUILD_BUG_ON(ATMEL_SERIAL_RINGSIZE & (ATMEL_SERIAL_RINGSIZE - 1));
2887ab4382d2SGreg Kroah-Hartman 
2888c24d2531SRadu Pirea 	/*
2889c24d2531SRadu Pirea 	 * In device tree there is no node with "atmel,at91rm9200-usart-serial"
2890c24d2531SRadu Pirea 	 * as compatible string. This driver is probed by at91-usart mfd driver
2891c24d2531SRadu Pirea 	 * which is just a wrapper over the atmel_serial driver and
2892c24d2531SRadu Pirea 	 * spi-at91-usart driver. All attributes needed by this driver are
2893c24d2531SRadu Pirea 	 * found in of_node of parent.
2894c24d2531SRadu Pirea 	 */
2895c24d2531SRadu Pirea 	pdev->dev.of_node = np;
2896c24d2531SRadu Pirea 
28975fbe46b6SNicolas Ferre 	ret = of_alias_get_id(np, "serial");
28984cbf9f48SNicolas Ferre 	if (ret < 0)
28995fbe46b6SNicolas Ferre 		/* port id not found in platform data nor device-tree aliases:
29004cbf9f48SNicolas Ferre 		 * auto-enumerate it */
2901503bded9SPawel Wieczorkiewicz 		ret = find_first_zero_bit(atmel_ports_in_use, ATMEL_MAX_UART);
29024cbf9f48SNicolas Ferre 
2903503bded9SPawel Wieczorkiewicz 	if (ret >= ATMEL_MAX_UART) {
29044cbf9f48SNicolas Ferre 		ret = -ENODEV;
29054cbf9f48SNicolas Ferre 		goto err;
29064cbf9f48SNicolas Ferre 	}
29074cbf9f48SNicolas Ferre 
2908503bded9SPawel Wieczorkiewicz 	if (test_and_set_bit(ret, atmel_ports_in_use)) {
29094cbf9f48SNicolas Ferre 		/* port already in use */
29104cbf9f48SNicolas Ferre 		ret = -EBUSY;
29114cbf9f48SNicolas Ferre 		goto err;
29124cbf9f48SNicolas Ferre 	}
29134cbf9f48SNicolas Ferre 
2914b78cd169SJaeden Amero 	atmel_port = &atmel_ports[ret];
2915b78cd169SJaeden Amero 	atmel_port->backup_imr = 0;
2916b78cd169SJaeden Amero 	atmel_port->uart.line = ret;
2917078abd98SDmitry Safonov 	atmel_port->uart.has_sysrq = IS_ENABLED(CONFIG_SERIAL_ATMEL_CONSOLE);
2918b78cd169SJaeden Amero 	atmel_serial_probe_fifos(atmel_port, pdev);
2919354e57f3SLinus Walleij 
292098f2082cSNicolas Ferre 	atomic_set(&atmel_port->tasklet_shutdown, 0);
2921b78cd169SJaeden Amero 	spin_lock_init(&atmel_port->lock_suspended);
29222c7af5baSBoris BREZILLON 
292384b476b1SClaudiu Beznea 	atmel_port->clk = devm_clk_get(&pdev->dev, "usart");
292484b476b1SClaudiu Beznea 	if (IS_ERR(atmel_port->clk)) {
292584b476b1SClaudiu Beznea 		ret = PTR_ERR(atmel_port->clk);
292684b476b1SClaudiu Beznea 		goto err;
292784b476b1SClaudiu Beznea 	}
292884b476b1SClaudiu Beznea 	ret = clk_prepare_enable(atmel_port->clk);
292984b476b1SClaudiu Beznea 	if (ret)
293084b476b1SClaudiu Beznea 		goto err;
293184b476b1SClaudiu Beznea 
29325e3ce1f2SSergiu Moga 	atmel_port->gclk = devm_clk_get_optional(&pdev->dev, "gclk");
29335e3ce1f2SSergiu Moga 	if (IS_ERR(atmel_port->gclk)) {
29345e3ce1f2SSergiu Moga 		ret = PTR_ERR(atmel_port->gclk);
29355e3ce1f2SSergiu Moga 		goto err_clk_disable_unprepare;
29365e3ce1f2SSergiu Moga 	}
29375e3ce1f2SSergiu Moga 
2938b78cd169SJaeden Amero 	ret = atmel_init_port(atmel_port, pdev);
293991f8c2d8SBoris BREZILLON 	if (ret)
294084b476b1SClaudiu Beznea 		goto err_clk_disable_unprepare;
2941ab4382d2SGreg Kroah-Hartman 
2942b78cd169SJaeden Amero 	atmel_port->gpios = mctrl_gpio_init(&atmel_port->uart, 0);
2943b78cd169SJaeden Amero 	if (IS_ERR(atmel_port->gpios)) {
2944b78cd169SJaeden Amero 		ret = PTR_ERR(atmel_port->gpios);
294584b476b1SClaudiu Beznea 		goto err_clk_disable_unprepare;
294618dfef9cSUwe Kleine-König 	}
294718dfef9cSUwe Kleine-König 
2948b78cd169SJaeden Amero 	if (!atmel_use_pdc_rx(&atmel_port->uart)) {
2949ab4382d2SGreg Kroah-Hartman 		ret = -ENOMEM;
29506da2ec56SKees Cook 		data = kmalloc_array(ATMEL_SERIAL_RINGSIZE,
29516da2ec56SKees Cook 				     sizeof(struct atmel_uart_char),
29526da2ec56SKees Cook 				     GFP_KERNEL);
2953ab4382d2SGreg Kroah-Hartman 		if (!data)
295484b476b1SClaudiu Beznea 			goto err_clk_disable_unprepare;
2955b78cd169SJaeden Amero 		atmel_port->rx_ring.buf = data;
2956ab4382d2SGreg Kroah-Hartman 	}
2957ab4382d2SGreg Kroah-Hartman 
2958b78cd169SJaeden Amero 	rs485_enabled = atmel_port->uart.rs485.flags & SER_RS485_ENABLED;
2959bd737f87SRicardo Ribalda Delgado 
2960b78cd169SJaeden Amero 	ret = uart_add_one_port(&atmel_uart, &atmel_port->uart);
2961ab4382d2SGreg Kroah-Hartman 	if (ret)
2962ab4382d2SGreg Kroah-Hartman 		goto err_add_port;
2963ab4382d2SGreg Kroah-Hartman 
2964ab4382d2SGreg Kroah-Hartman 	device_init_wakeup(&pdev->dev, 1);
2965b78cd169SJaeden Amero 	platform_set_drvdata(pdev, atmel_port);
2966ab4382d2SGreg Kroah-Hartman 
2967bd737f87SRicardo Ribalda Delgado 	if (rs485_enabled) {
2968b78cd169SJaeden Amero 		atmel_uart_writel(&atmel_port->uart, ATMEL_US_MR,
29694e7decdaSCyrille Pitchen 				  ATMEL_US_USMODE_NORMAL);
2970b78cd169SJaeden Amero 		atmel_uart_writel(&atmel_port->uart, ATMEL_US_CR,
2971b78cd169SJaeden Amero 				  ATMEL_US_RTSEN);
2972fc887b15SLinus Torvalds 	}
2973fc887b15SLinus Torvalds 
2974055560b0SElen Song 	/*
2975055560b0SElen Song 	 * Get port name of usart or uart
2976055560b0SElen Song 	 */
2977b78cd169SJaeden Amero 	atmel_get_ip_name(&atmel_port->uart);
2978055560b0SElen Song 
2979d4f64187SCyrille Pitchen 	/*
2980d4f64187SCyrille Pitchen 	 * The peripheral clock can now safely be disabled till the port
2981d4f64187SCyrille Pitchen 	 * is used
2982d4f64187SCyrille Pitchen 	 */
2983b78cd169SJaeden Amero 	clk_disable_unprepare(atmel_port->clk);
2984d4f64187SCyrille Pitchen 
2985ab4382d2SGreg Kroah-Hartman 	return 0;
2986ab4382d2SGreg Kroah-Hartman 
2987ab4382d2SGreg Kroah-Hartman err_add_port:
2988b78cd169SJaeden Amero 	kfree(atmel_port->rx_ring.buf);
2989b78cd169SJaeden Amero 	atmel_port->rx_ring.buf = NULL;
299084b476b1SClaudiu Beznea err_clk_disable_unprepare:
299184b476b1SClaudiu Beznea 	clk_disable_unprepare(atmel_port->clk);
2992b78cd169SJaeden Amero 	clear_bit(atmel_port->uart.line, atmel_ports_in_use);
29934cbf9f48SNicolas Ferre err:
2994ab4382d2SGreg Kroah-Hartman 	return ret;
2995ab4382d2SGreg Kroah-Hartman }
2996ab4382d2SGreg Kroah-Hartman 
2997f4a8ab04SRomain Izard /*
2998f4a8ab04SRomain Izard  * Even if the driver is not modular, it makes sense to be able to
2999f4a8ab04SRomain Izard  * unbind a device: there can be many bound devices, and there are
3000f4a8ab04SRomain Izard  * situations where dynamic binding and unbinding can be useful.
3001f4a8ab04SRomain Izard  *
3002f4a8ab04SRomain Izard  * For example, a connected device can require a specific firmware update
3003f4a8ab04SRomain Izard  * protocol that needs bitbanging on IO lines, but use the regular serial
3004f4a8ab04SRomain Izard  * port in the normal case.
3005f4a8ab04SRomain Izard  */
3006f4a8ab04SRomain Izard static int atmel_serial_remove(struct platform_device *pdev)
3007f4a8ab04SRomain Izard {
3008f4a8ab04SRomain Izard 	struct uart_port *port = platform_get_drvdata(pdev);
3009f4a8ab04SRomain Izard 	struct atmel_uart_port *atmel_port = to_atmel_uart_port(port);
3010f4a8ab04SRomain Izard 	int ret = 0;
3011f4a8ab04SRomain Izard 
301200e8e658SNicolas Ferre 	tasklet_kill(&atmel_port->tasklet_rx);
301300e8e658SNicolas Ferre 	tasklet_kill(&atmel_port->tasklet_tx);
3014f4a8ab04SRomain Izard 
3015f4a8ab04SRomain Izard 	device_init_wakeup(&pdev->dev, 0);
3016f4a8ab04SRomain Izard 
3017f4a8ab04SRomain Izard 	ret = uart_remove_one_port(&atmel_uart, port);
3018f4a8ab04SRomain Izard 
3019f4a8ab04SRomain Izard 	kfree(atmel_port->rx_ring.buf);
3020f4a8ab04SRomain Izard 
3021f4a8ab04SRomain Izard 	/* "port" is allocated statically, so we shouldn't free it */
3022f4a8ab04SRomain Izard 
3023f4a8ab04SRomain Izard 	clear_bit(port->line, atmel_ports_in_use);
3024f4a8ab04SRomain Izard 
3025c24d2531SRadu Pirea 	pdev->dev.of_node = NULL;
3026f4a8ab04SRomain Izard 
3027f4a8ab04SRomain Izard 	return ret;
3028f4a8ab04SRomain Izard }
3029f4a8ab04SRomain Izard 
3030b50058b8SClaudiu Beznea static SIMPLE_DEV_PM_OPS(atmel_serial_pm_ops, atmel_serial_suspend,
3031b50058b8SClaudiu Beznea 			 atmel_serial_resume);
3032b50058b8SClaudiu Beznea 
3033ab4382d2SGreg Kroah-Hartman static struct platform_driver atmel_serial_driver = {
3034ab4382d2SGreg Kroah-Hartman 	.probe		= atmel_serial_probe,
3035f4a8ab04SRomain Izard 	.remove		= atmel_serial_remove,
3036ab4382d2SGreg Kroah-Hartman 	.driver		= {
3037c24d2531SRadu Pirea 		.name			= "atmel_usart_serial",
30385fbe46b6SNicolas Ferre 		.of_match_table		= of_match_ptr(atmel_serial_dt_ids),
3039b50058b8SClaudiu Beznea 		.pm			= pm_ptr(&atmel_serial_pm_ops),
3040ab4382d2SGreg Kroah-Hartman 	},
3041ab4382d2SGreg Kroah-Hartman };
3042ab4382d2SGreg Kroah-Hartman 
3043ab4382d2SGreg Kroah-Hartman static int __init atmel_serial_init(void)
3044ab4382d2SGreg Kroah-Hartman {
3045ab4382d2SGreg Kroah-Hartman 	int ret;
3046ab4382d2SGreg Kroah-Hartman 
3047ab4382d2SGreg Kroah-Hartman 	ret = uart_register_driver(&atmel_uart);
3048ab4382d2SGreg Kroah-Hartman 	if (ret)
3049ab4382d2SGreg Kroah-Hartman 		return ret;
3050ab4382d2SGreg Kroah-Hartman 
3051ab4382d2SGreg Kroah-Hartman 	ret = platform_driver_register(&atmel_serial_driver);
3052ab4382d2SGreg Kroah-Hartman 	if (ret)
3053ab4382d2SGreg Kroah-Hartman 		uart_unregister_driver(&atmel_uart);
3054ab4382d2SGreg Kroah-Hartman 
3055ab4382d2SGreg Kroah-Hartman 	return ret;
3056ab4382d2SGreg Kroah-Hartman }
3057c39dfebcSPaul Gortmaker device_initcall(atmel_serial_init);
3058