blob: 500232ad38f32c1a1b4ee358078a3ae4ee247689 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002 * Driver for AMBA serial ports
3 *
4 * Based on drivers/char/serial.c, by Linus Torvalds, Theodore Ts'o.
5 *
6 * Copyright 1999 ARM Limited
7 * Copyright (C) 2000 Deep Blue Solutions Ltd.
Russell King68b65f72010-12-22 17:24:39 +00008 * Copyright (C) 2010 ST-Ericsson SA
Linus Torvalds1da177e2005-04-16 15:20:36 -07009 *
10 * This program is free software; you can redistribute it and/or modify
11 * it under the terms of the GNU General Public License as published by
12 * the Free Software Foundation; either version 2 of the License, or
13 * (at your option) any later version.
14 *
15 * This program is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 * GNU General Public License for more details.
19 *
20 * You should have received a copy of the GNU General Public License
21 * along with this program; if not, write to the Free Software
22 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
23 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070024 * This is a generic driver for ARM AMBA-type serial ports. They
25 * have a lot of 16550-like features, but are not register compatible.
26 * Note that although they do have CTS, DCD and DSR inputs, they do
27 * not have an RI input, nor do they have DTR or RTS outputs. If
28 * required, these have to be supplied via some other means (eg, GPIO)
29 * and hooked into this driver.
30 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070031
Chanho Mincb06ff12013-03-27 18:38:11 +090032
Linus Torvalds1da177e2005-04-16 15:20:36 -070033#if defined(CONFIG_SERIAL_AMBA_PL011_CONSOLE) && defined(CONFIG_MAGIC_SYSRQ)
34#define SUPPORT_SYSRQ
35#endif
36
37#include <linux/module.h>
38#include <linux/ioport.h>
39#include <linux/init.h>
40#include <linux/console.h>
41#include <linux/sysrq.h>
42#include <linux/device.h>
43#include <linux/tty.h>
44#include <linux/tty_flip.h>
45#include <linux/serial_core.h>
46#include <linux/serial.h>
Russell Kinga62c80e2006-01-07 13:52:45 +000047#include <linux/amba/bus.h>
48#include <linux/amba/serial.h>
Russell Kingf8ce2542006-01-07 16:15:52 +000049#include <linux/clk.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090050#include <linux/slab.h>
Russell King68b65f72010-12-22 17:24:39 +000051#include <linux/dmaengine.h>
52#include <linux/dma-mapping.h>
53#include <linux/scatterlist.h>
Shreshtha Kumar Sahuc16d51a2011-06-13 10:11:33 +020054#include <linux/delay.h>
Viresh Kumar258aea72012-02-01 16:12:19 +053055#include <linux/types.h>
Matthew Leach32614aa2012-08-28 16:41:28 +010056#include <linux/of.h>
57#include <linux/of_device.h>
Shawn Guo258e0552012-05-06 22:53:35 +080058#include <linux/pinctrl/consumer.h>
Alessandro Rubinicb707062012-06-24 12:46:37 +010059#include <linux/sizes.h>
Linus Walleijde609582012-10-15 13:36:01 +020060#include <linux/io.h>
Graeme Gregory3db9ab02015-05-21 17:26:24 +010061#include <linux/acpi.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070062
Russell King9f25bc52015-11-03 14:51:13 +000063#include "amba-pl011.h"
64
Linus Torvalds1da177e2005-04-16 15:20:36 -070065#define UART_NR 14
66
67#define SERIAL_AMBA_MAJOR 204
68#define SERIAL_AMBA_MINOR 64
69#define SERIAL_AMBA_NR UART_NR
70
71#define AMBA_ISR_PASS_LIMIT 256
72
Russell Kingb63d4f02005-11-19 11:10:35 +000073#define UART_DR_ERROR (UART011_DR_OE|UART011_DR_BE|UART011_DR_PE|UART011_DR_FE)
74#define UART_DUMMY_DR_RX (1 << 16)
Linus Torvalds1da177e2005-04-16 15:20:36 -070075
Russell Kingdebb7f62015-11-16 17:40:26 +000076static u16 pl011_std_offsets[REG_ARRAY_SIZE] = {
77 [REG_DR] = UART01x_DR,
Russell Kingdebb7f62015-11-16 17:40:26 +000078 [REG_FR] = UART01x_FR,
Russell Kinge4df9a82015-11-16 17:40:41 +000079 [REG_LCRH_RX] = UART011_LCRH,
80 [REG_LCRH_TX] = UART011_LCRH,
Russell Kingdebb7f62015-11-16 17:40:26 +000081 [REG_IBRD] = UART011_IBRD,
82 [REG_FBRD] = UART011_FBRD,
Russell Kingdebb7f62015-11-16 17:40:26 +000083 [REG_CR] = UART011_CR,
84 [REG_IFLS] = UART011_IFLS,
85 [REG_IMSC] = UART011_IMSC,
86 [REG_RIS] = UART011_RIS,
87 [REG_MIS] = UART011_MIS,
88 [REG_ICR] = UART011_ICR,
89 [REG_DMACR] = UART011_DMACR,
Russell Kingdebb7f62015-11-16 17:40:26 +000090};
91
Alessandro Rubini5926a292009-06-04 17:43:04 +010092/* There is by now at least one vendor with differing details, so handle it */
93struct vendor_data {
Russell King439403b2015-11-16 17:40:31 +000094 const u16 *reg_offset;
Alessandro Rubini5926a292009-06-04 17:43:04 +010095 unsigned int ifls;
Russell King84c3e032015-11-16 17:40:52 +000096 bool access_32b;
Linus Walleijac3e3fb2010-06-02 20:40:22 +010097 bool oversampling;
Russell King38d62432010-12-22 17:59:16 +000098 bool dma_threshold;
Rajanikanth H.V4fd06902012-03-26 11:17:02 +020099 bool cts_event_workaround;
Andre Przywara71eec482015-05-21 17:26:21 +0100100 bool always_enabled;
Andre Przywaracefc2d12015-05-21 17:26:22 +0100101 bool fixed_options;
Jongsung Kim78506f22013-04-15 14:45:25 +0900102
Jongsung Kimea336402013-05-10 18:05:35 +0900103 unsigned int (*get_fifosize)(struct amba_device *dev);
Alessandro Rubini5926a292009-06-04 17:43:04 +0100104};
105
Jongsung Kimea336402013-05-10 18:05:35 +0900106static unsigned int get_fifosize_arm(struct amba_device *dev)
Jongsung Kim78506f22013-04-15 14:45:25 +0900107{
Jongsung Kimea336402013-05-10 18:05:35 +0900108 return amba_rev(dev) < 3 ? 16 : 32;
Jongsung Kim78506f22013-04-15 14:45:25 +0900109}
110
Alessandro Rubini5926a292009-06-04 17:43:04 +0100111static struct vendor_data vendor_arm = {
Russell King439403b2015-11-16 17:40:31 +0000112 .reg_offset = pl011_std_offsets,
Alessandro Rubini5926a292009-06-04 17:43:04 +0100113 .ifls = UART011_IFLS_RX4_8|UART011_IFLS_TX4_8,
Linus Walleijac3e3fb2010-06-02 20:40:22 +0100114 .oversampling = false,
Russell King38d62432010-12-22 17:59:16 +0000115 .dma_threshold = false,
Rajanikanth H.V4fd06902012-03-26 11:17:02 +0200116 .cts_event_workaround = false,
Andre Przywara71eec482015-05-21 17:26:21 +0100117 .always_enabled = false,
Andre Przywaracefc2d12015-05-21 17:26:22 +0100118 .fixed_options = false,
Jongsung Kim78506f22013-04-15 14:45:25 +0900119 .get_fifosize = get_fifosize_arm,
Alessandro Rubini5926a292009-06-04 17:43:04 +0100120};
121
Andre Przywara0dd1e242015-05-21 17:26:23 +0100122static struct vendor_data vendor_sbsa = {
Russell King439403b2015-11-16 17:40:31 +0000123 .reg_offset = pl011_std_offsets,
Andre Przywara0dd1e242015-05-21 17:26:23 +0100124 .oversampling = false,
125 .dma_threshold = false,
126 .cts_event_workaround = false,
127 .always_enabled = true,
128 .fixed_options = true,
129};
130
Russell Kingbf69ff82015-11-16 17:40:36 +0000131static u16 pl011_st_offsets[REG_ARRAY_SIZE] = {
132 [REG_DR] = UART01x_DR,
133 [REG_ST_DMAWM] = ST_UART011_DMAWM,
134 [REG_ST_TIMEOUT] = ST_UART011_TIMEOUT,
135 [REG_FR] = UART01x_FR,
Russell Kinge4df9a82015-11-16 17:40:41 +0000136 [REG_LCRH_RX] = ST_UART011_LCRH_RX,
137 [REG_LCRH_TX] = ST_UART011_LCRH_TX,
Russell Kingbf69ff82015-11-16 17:40:36 +0000138 [REG_IBRD] = UART011_IBRD,
139 [REG_FBRD] = UART011_FBRD,
Russell Kingbf69ff82015-11-16 17:40:36 +0000140 [REG_CR] = UART011_CR,
141 [REG_IFLS] = UART011_IFLS,
142 [REG_IMSC] = UART011_IMSC,
143 [REG_RIS] = UART011_RIS,
144 [REG_MIS] = UART011_MIS,
145 [REG_ICR] = UART011_ICR,
146 [REG_DMACR] = UART011_DMACR,
147 [REG_ST_XFCR] = ST_UART011_XFCR,
148 [REG_ST_XON1] = ST_UART011_XON1,
149 [REG_ST_XON2] = ST_UART011_XON2,
150 [REG_ST_XOFF1] = ST_UART011_XOFF1,
151 [REG_ST_XOFF2] = ST_UART011_XOFF2,
152 [REG_ST_ITCR] = ST_UART011_ITCR,
153 [REG_ST_ITIP] = ST_UART011_ITIP,
154 [REG_ST_ABCR] = ST_UART011_ABCR,
155 [REG_ST_ABIMSC] = ST_UART011_ABIMSC,
156};
157
Jongsung Kimea336402013-05-10 18:05:35 +0900158static unsigned int get_fifosize_st(struct amba_device *dev)
Jongsung Kim78506f22013-04-15 14:45:25 +0900159{
160 return 64;
161}
162
Alessandro Rubini5926a292009-06-04 17:43:04 +0100163static struct vendor_data vendor_st = {
Russell Kingbf69ff82015-11-16 17:40:36 +0000164 .reg_offset = pl011_st_offsets,
Alessandro Rubini5926a292009-06-04 17:43:04 +0100165 .ifls = UART011_IFLS_RX_HALF|UART011_IFLS_TX_HALF,
Linus Walleijac3e3fb2010-06-02 20:40:22 +0100166 .oversampling = true,
Russell King38d62432010-12-22 17:59:16 +0000167 .dma_threshold = true,
Rajanikanth H.V4fd06902012-03-26 11:17:02 +0200168 .cts_event_workaround = true,
Andre Przywara71eec482015-05-21 17:26:21 +0100169 .always_enabled = false,
Andre Przywaracefc2d12015-05-21 17:26:22 +0100170 .fixed_options = false,
Jongsung Kim78506f22013-04-15 14:45:25 +0900171 .get_fifosize = get_fifosize_st,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172};
173
Russell King7ec75872015-11-16 17:40:57 +0000174static const u16 pl011_zte_offsets[REG_ARRAY_SIZE] = {
175 [REG_DR] = ZX_UART011_DR,
176 [REG_FR] = ZX_UART011_FR,
177 [REG_LCRH_RX] = ZX_UART011_LCRH,
178 [REG_LCRH_TX] = ZX_UART011_LCRH,
179 [REG_IBRD] = ZX_UART011_IBRD,
180 [REG_FBRD] = ZX_UART011_FBRD,
181 [REG_CR] = ZX_UART011_CR,
182 [REG_IFLS] = ZX_UART011_IFLS,
183 [REG_IMSC] = ZX_UART011_IMSC,
184 [REG_RIS] = ZX_UART011_RIS,
185 [REG_MIS] = ZX_UART011_MIS,
186 [REG_ICR] = ZX_UART011_ICR,
187 [REG_DMACR] = ZX_UART011_DMACR,
188};
189
Arnd Bergmannff52a9a2016-01-20 11:40:03 +0100190static struct vendor_data vendor_zte __maybe_unused = {
Russell King7ec75872015-11-16 17:40:57 +0000191 .reg_offset = pl011_zte_offsets,
192 .access_32b = true,
193 .ifls = UART011_IFLS_RX4_8|UART011_IFLS_TX4_8,
194 .get_fifosize = get_fifosize_arm,
195};
196
Russell King68b65f72010-12-22 17:24:39 +0000197/* Deals with DMA transactions */
Linus Walleijead76f32011-02-24 13:21:08 +0100198
199struct pl011_sgbuf {
200 struct scatterlist sg;
201 char *buf;
202};
203
204struct pl011_dmarx_data {
205 struct dma_chan *chan;
206 struct completion complete;
207 bool use_buf_b;
208 struct pl011_sgbuf sgbuf_a;
209 struct pl011_sgbuf sgbuf_b;
210 dma_cookie_t cookie;
211 bool running;
Chanho Mincb06ff12013-03-27 18:38:11 +0900212 struct timer_list timer;
213 unsigned int last_residue;
214 unsigned long last_jiffies;
215 bool auto_poll_rate;
216 unsigned int poll_rate;
217 unsigned int poll_timeout;
Linus Walleijead76f32011-02-24 13:21:08 +0100218};
219
Russell King68b65f72010-12-22 17:24:39 +0000220struct pl011_dmatx_data {
221 struct dma_chan *chan;
222 struct scatterlist sg;
223 char *buf;
224 bool queued;
225};
226
Russell Kingc19f12b2010-12-22 17:48:26 +0000227/*
228 * We wrap our port structure around the generic uart_port.
229 */
230struct uart_amba_port {
231 struct uart_port port;
Russell Kingdebb7f62015-11-16 17:40:26 +0000232 const u16 *reg_offset;
Russell Kingc19f12b2010-12-22 17:48:26 +0000233 struct clk *clk;
234 const struct vendor_data *vendor;
Russell King68b65f72010-12-22 17:24:39 +0000235 unsigned int dmacr; /* dma control reg */
Russell Kingc19f12b2010-12-22 17:48:26 +0000236 unsigned int im; /* interrupt mask */
237 unsigned int old_status;
Russell Kingffca2b12010-12-22 17:13:05 +0000238 unsigned int fifosize; /* vendor-specific */
Shreshtha Kumar Sahud8d8ffa2012-01-18 15:53:59 +0530239 unsigned int old_cr; /* state during shutdown */
Russell Kingc19f12b2010-12-22 17:48:26 +0000240 bool autorts;
Andre Przywaracefc2d12015-05-21 17:26:22 +0100241 unsigned int fixed_baud; /* vendor-set fixed baud rate */
Russell Kingc19f12b2010-12-22 17:48:26 +0000242 char type[12];
Russell King68b65f72010-12-22 17:24:39 +0000243#ifdef CONFIG_DMA_ENGINE
244 /* DMA stuff */
Linus Walleijead76f32011-02-24 13:21:08 +0100245 bool using_tx_dma;
246 bool using_rx_dma;
247 struct pl011_dmarx_data dmarx;
Russell King68b65f72010-12-22 17:24:39 +0000248 struct pl011_dmatx_data dmatx;
Jorge Ramirez-Ortiz1c9be312015-03-06 13:05:40 -0500249 bool dma_probed;
Russell King68b65f72010-12-22 17:24:39 +0000250#endif
Russell Kingc19f12b2010-12-22 17:48:26 +0000251};
252
Russell King9f25bc52015-11-03 14:51:13 +0000253static unsigned int pl011_reg_to_offset(const struct uart_amba_port *uap,
254 unsigned int reg)
255{
Russell Kingdebb7f62015-11-16 17:40:26 +0000256 return uap->reg_offset[reg];
Russell King9f25bc52015-11-03 14:51:13 +0000257}
258
Russell Kingb2a4e242015-11-03 14:51:03 +0000259static unsigned int pl011_read(const struct uart_amba_port *uap,
260 unsigned int reg)
Russell King75836332015-11-03 14:50:58 +0000261{
Russell King84c3e032015-11-16 17:40:52 +0000262 void __iomem *addr = uap->port.membase + pl011_reg_to_offset(uap, reg);
263
Timur Tabi3b78fae2016-01-04 15:37:42 -0600264 return (uap->port.iotype == UPIO_MEM32) ?
265 readl_relaxed(addr) : readw_relaxed(addr);
Russell King75836332015-11-03 14:50:58 +0000266}
267
Russell Kingb2a4e242015-11-03 14:51:03 +0000268static void pl011_write(unsigned int val, const struct uart_amba_port *uap,
269 unsigned int reg)
Russell King75836332015-11-03 14:50:58 +0000270{
Russell King84c3e032015-11-16 17:40:52 +0000271 void __iomem *addr = uap->port.membase + pl011_reg_to_offset(uap, reg);
272
Timur Tabi3b78fae2016-01-04 15:37:42 -0600273 if (uap->port.iotype == UPIO_MEM32)
Russell Kingf5ce6ed2015-11-16 17:41:02 +0000274 writel_relaxed(val, addr);
Russell King84c3e032015-11-16 17:40:52 +0000275 else
Russell Kingf5ce6ed2015-11-16 17:41:02 +0000276 writew_relaxed(val, addr);
Russell King75836332015-11-03 14:50:58 +0000277}
278
Russell King68b65f72010-12-22 17:24:39 +0000279/*
Linus Walleij29772c42011-02-24 13:21:36 +0100280 * Reads up to 256 characters from the FIFO or until it's empty and
281 * inserts them into the TTY layer. Returns the number of characters
282 * read from the FIFO.
283 */
284static int pl011_fifo_to_tty(struct uart_amba_port *uap)
285{
Timur Tabi71a5cd82015-10-07 15:27:16 -0500286 u16 status;
287 unsigned int ch, flag, max_count = 256;
Linus Walleij29772c42011-02-24 13:21:36 +0100288 int fifotaken = 0;
289
290 while (max_count--) {
Russell King9f25bc52015-11-03 14:51:13 +0000291 status = pl011_read(uap, REG_FR);
Linus Walleij29772c42011-02-24 13:21:36 +0100292 if (status & UART01x_FR_RXFE)
293 break;
294
295 /* Take chars from the FIFO and update status */
Russell King9f25bc52015-11-03 14:51:13 +0000296 ch = pl011_read(uap, REG_DR) | UART_DUMMY_DR_RX;
Linus Walleij29772c42011-02-24 13:21:36 +0100297 flag = TTY_NORMAL;
298 uap->port.icount.rx++;
299 fifotaken++;
300
301 if (unlikely(ch & UART_DR_ERROR)) {
302 if (ch & UART011_DR_BE) {
303 ch &= ~(UART011_DR_FE | UART011_DR_PE);
304 uap->port.icount.brk++;
305 if (uart_handle_break(&uap->port))
306 continue;
307 } else if (ch & UART011_DR_PE)
308 uap->port.icount.parity++;
309 else if (ch & UART011_DR_FE)
310 uap->port.icount.frame++;
311 if (ch & UART011_DR_OE)
312 uap->port.icount.overrun++;
313
314 ch &= uap->port.read_status_mask;
315
316 if (ch & UART011_DR_BE)
317 flag = TTY_BREAK;
318 else if (ch & UART011_DR_PE)
319 flag = TTY_PARITY;
320 else if (ch & UART011_DR_FE)
321 flag = TTY_FRAME;
322 }
323
324 if (uart_handle_sysrq_char(&uap->port, ch & 255))
325 continue;
326
327 uart_insert_char(&uap->port, ch, UART011_DR_OE, ch, flag);
328 }
329
330 return fifotaken;
331}
332
333
334/*
Russell King68b65f72010-12-22 17:24:39 +0000335 * All the DMA operation mode stuff goes inside this ifdef.
336 * This assumes that you have a generic DMA device interface,
337 * no custom DMA interfaces are supported.
338 */
339#ifdef CONFIG_DMA_ENGINE
340
341#define PL011_DMA_BUFFER_SIZE PAGE_SIZE
342
Linus Walleijead76f32011-02-24 13:21:08 +0100343static int pl011_sgbuf_init(struct dma_chan *chan, struct pl011_sgbuf *sg,
344 enum dma_data_direction dir)
345{
Chanho Mincb06ff12013-03-27 18:38:11 +0900346 dma_addr_t dma_addr;
347
348 sg->buf = dma_alloc_coherent(chan->device->dev,
349 PL011_DMA_BUFFER_SIZE, &dma_addr, GFP_KERNEL);
Linus Walleijead76f32011-02-24 13:21:08 +0100350 if (!sg->buf)
351 return -ENOMEM;
352
Chanho Mincb06ff12013-03-27 18:38:11 +0900353 sg_init_table(&sg->sg, 1);
354 sg_set_page(&sg->sg, phys_to_page(dma_addr),
355 PL011_DMA_BUFFER_SIZE, offset_in_page(dma_addr));
356 sg_dma_address(&sg->sg) = dma_addr;
Andrew Jacksonc64be922014-11-07 14:14:43 +0000357 sg_dma_len(&sg->sg) = PL011_DMA_BUFFER_SIZE;
Linus Walleijead76f32011-02-24 13:21:08 +0100358
Linus Walleijead76f32011-02-24 13:21:08 +0100359 return 0;
360}
361
362static void pl011_sgbuf_free(struct dma_chan *chan, struct pl011_sgbuf *sg,
363 enum dma_data_direction dir)
364{
365 if (sg->buf) {
Chanho Mincb06ff12013-03-27 18:38:11 +0900366 dma_free_coherent(chan->device->dev,
367 PL011_DMA_BUFFER_SIZE, sg->buf,
368 sg_dma_address(&sg->sg));
Linus Walleijead76f32011-02-24 13:21:08 +0100369 }
370}
371
Jorge Ramirez-Ortiz1c9be312015-03-06 13:05:40 -0500372static void pl011_dma_probe(struct uart_amba_port *uap)
Russell King68b65f72010-12-22 17:24:39 +0000373{
374 /* DMA is the sole user of the platform data right now */
Jingoo Han574de552013-07-30 17:06:57 +0900375 struct amba_pl011_data *plat = dev_get_platdata(uap->port.dev);
Jorge Ramirez-Ortiz1c9be312015-03-06 13:05:40 -0500376 struct device *dev = uap->port.dev;
Russell King68b65f72010-12-22 17:24:39 +0000377 struct dma_slave_config tx_conf = {
Russell King9f25bc52015-11-03 14:51:13 +0000378 .dst_addr = uap->port.mapbase +
379 pl011_reg_to_offset(uap, REG_DR),
Russell King68b65f72010-12-22 17:24:39 +0000380 .dst_addr_width = DMA_SLAVE_BUSWIDTH_1_BYTE,
Vinod Koula485df42011-10-14 10:47:38 +0530381 .direction = DMA_MEM_TO_DEV,
Russell King68b65f72010-12-22 17:24:39 +0000382 .dst_maxburst = uap->fifosize >> 1,
Viresh Kumar258aea72012-02-01 16:12:19 +0530383 .device_fc = false,
Russell King68b65f72010-12-22 17:24:39 +0000384 };
385 struct dma_chan *chan;
386 dma_cap_mask_t mask;
387
Jorge Ramirez-Ortiz1c9be312015-03-06 13:05:40 -0500388 uap->dma_probed = true;
389 chan = dma_request_slave_channel_reason(dev, "tx");
390 if (IS_ERR(chan)) {
391 if (PTR_ERR(chan) == -EPROBE_DEFER) {
Jorge Ramirez-Ortiz1c9be312015-03-06 13:05:40 -0500392 uap->dma_probed = false;
393 return;
394 }
Russell King68b65f72010-12-22 17:24:39 +0000395
Arnd Bergmann787b0c12013-01-28 16:24:37 +0000396 /* We need platform data */
397 if (!plat || !plat->dma_filter) {
398 dev_info(uap->port.dev, "no DMA platform data\n");
399 return;
400 }
401
402 /* Try to acquire a generic DMA engine slave TX channel */
403 dma_cap_zero(mask);
404 dma_cap_set(DMA_SLAVE, mask);
405
406 chan = dma_request_channel(mask, plat->dma_filter,
407 plat->dma_tx_param);
408 if (!chan) {
409 dev_err(uap->port.dev, "no TX DMA channel!\n");
410 return;
411 }
Russell King68b65f72010-12-22 17:24:39 +0000412 }
413
414 dmaengine_slave_config(chan, &tx_conf);
415 uap->dmatx.chan = chan;
416
417 dev_info(uap->port.dev, "DMA channel TX %s\n",
418 dma_chan_name(uap->dmatx.chan));
Linus Walleijead76f32011-02-24 13:21:08 +0100419
420 /* Optionally make use of an RX channel as well */
Arnd Bergmann787b0c12013-01-28 16:24:37 +0000421 chan = dma_request_slave_channel(dev, "rx");
Rob Herring0d3c6732014-04-18 17:19:57 -0500422
Arnd Bergmann787b0c12013-01-28 16:24:37 +0000423 if (!chan && plat->dma_rx_param) {
424 chan = dma_request_channel(mask, plat->dma_filter, plat->dma_rx_param);
425
426 if (!chan) {
427 dev_err(uap->port.dev, "no RX DMA channel!\n");
428 return;
429 }
430 }
431
432 if (chan) {
Linus Walleijead76f32011-02-24 13:21:08 +0100433 struct dma_slave_config rx_conf = {
Russell King9f25bc52015-11-03 14:51:13 +0000434 .src_addr = uap->port.mapbase +
435 pl011_reg_to_offset(uap, REG_DR),
Linus Walleijead76f32011-02-24 13:21:08 +0100436 .src_addr_width = DMA_SLAVE_BUSWIDTH_1_BYTE,
Vinod Koula485df42011-10-14 10:47:38 +0530437 .direction = DMA_DEV_TO_MEM,
Guennadi Liakhovetskib2aeb772014-04-12 19:47:17 +0200438 .src_maxburst = uap->fifosize >> 2,
Viresh Kumar258aea72012-02-01 16:12:19 +0530439 .device_fc = false,
Linus Walleijead76f32011-02-24 13:21:08 +0100440 };
Andrew Jackson2d3b7d62014-11-07 14:14:47 +0000441 struct dma_slave_caps caps;
Linus Walleijead76f32011-02-24 13:21:08 +0100442
Andrew Jackson2d3b7d62014-11-07 14:14:47 +0000443 /*
444 * Some DMA controllers provide information on their capabilities.
445 * If the controller does, check for suitable residue processing
446 * otherwise assime all is well.
447 */
448 if (0 == dma_get_slave_caps(chan, &caps)) {
449 if (caps.residue_granularity ==
450 DMA_RESIDUE_GRANULARITY_DESCRIPTOR) {
451 dma_release_channel(chan);
452 dev_info(uap->port.dev,
453 "RX DMA disabled - no residue processing\n");
454 return;
455 }
456 }
Linus Walleijead76f32011-02-24 13:21:08 +0100457 dmaengine_slave_config(chan, &rx_conf);
458 uap->dmarx.chan = chan;
459
Andrew Jackson98267d32014-11-07 14:14:23 +0000460 uap->dmarx.auto_poll_rate = false;
Greg Kroah-Hartman8f898bf2013-12-17 09:33:18 -0800461 if (plat && plat->dma_rx_poll_enable) {
Chanho Mincb06ff12013-03-27 18:38:11 +0900462 /* Set poll rate if specified. */
463 if (plat->dma_rx_poll_rate) {
464 uap->dmarx.auto_poll_rate = false;
465 uap->dmarx.poll_rate = plat->dma_rx_poll_rate;
466 } else {
467 /*
468 * 100 ms defaults to poll rate if not
469 * specified. This will be adjusted with
470 * the baud rate at set_termios.
471 */
472 uap->dmarx.auto_poll_rate = true;
473 uap->dmarx.poll_rate = 100;
474 }
475 /* 3 secs defaults poll_timeout if not specified. */
476 if (plat->dma_rx_poll_timeout)
477 uap->dmarx.poll_timeout =
478 plat->dma_rx_poll_timeout;
479 else
480 uap->dmarx.poll_timeout = 3000;
Andrew Jackson98267d32014-11-07 14:14:23 +0000481 } else if (!plat && dev->of_node) {
482 uap->dmarx.auto_poll_rate = of_property_read_bool(
483 dev->of_node, "auto-poll");
484 if (uap->dmarx.auto_poll_rate) {
485 u32 x;
Chanho Mincb06ff12013-03-27 18:38:11 +0900486
Andrew Jackson98267d32014-11-07 14:14:23 +0000487 if (0 == of_property_read_u32(dev->of_node,
488 "poll-rate-ms", &x))
489 uap->dmarx.poll_rate = x;
490 else
491 uap->dmarx.poll_rate = 100;
492 if (0 == of_property_read_u32(dev->of_node,
493 "poll-timeout-ms", &x))
494 uap->dmarx.poll_timeout = x;
495 else
496 uap->dmarx.poll_timeout = 3000;
497 }
498 }
Linus Walleijead76f32011-02-24 13:21:08 +0100499 dev_info(uap->port.dev, "DMA channel RX %s\n",
500 dma_chan_name(uap->dmarx.chan));
501 }
Russell King68b65f72010-12-22 17:24:39 +0000502}
503
Russell King68b65f72010-12-22 17:24:39 +0000504static void pl011_dma_remove(struct uart_amba_port *uap)
505{
Russell King68b65f72010-12-22 17:24:39 +0000506 if (uap->dmatx.chan)
507 dma_release_channel(uap->dmatx.chan);
Linus Walleijead76f32011-02-24 13:21:08 +0100508 if (uap->dmarx.chan)
509 dma_release_channel(uap->dmarx.chan);
Russell King68b65f72010-12-22 17:24:39 +0000510}
511
Dave Martin734745c2015-03-04 12:27:33 +0000512/* Forward declare these for the refill routine */
Russell King68b65f72010-12-22 17:24:39 +0000513static int pl011_dma_tx_refill(struct uart_amba_port *uap);
Dave Martin734745c2015-03-04 12:27:33 +0000514static void pl011_start_tx_pio(struct uart_amba_port *uap);
Russell King68b65f72010-12-22 17:24:39 +0000515
516/*
517 * The current DMA TX buffer has been sent.
518 * Try to queue up another DMA buffer.
519 */
520static void pl011_dma_tx_callback(void *data)
521{
522 struct uart_amba_port *uap = data;
523 struct pl011_dmatx_data *dmatx = &uap->dmatx;
524 unsigned long flags;
525 u16 dmacr;
526
527 spin_lock_irqsave(&uap->port.lock, flags);
528 if (uap->dmatx.queued)
529 dma_unmap_sg(dmatx->chan->device->dev, &dmatx->sg, 1,
530 DMA_TO_DEVICE);
531
532 dmacr = uap->dmacr;
533 uap->dmacr = dmacr & ~UART011_TXDMAE;
Russell King9f25bc52015-11-03 14:51:13 +0000534 pl011_write(uap->dmacr, uap, REG_DMACR);
Russell King68b65f72010-12-22 17:24:39 +0000535
536 /*
537 * If TX DMA was disabled, it means that we've stopped the DMA for
538 * some reason (eg, XOFF received, or we want to send an X-char.)
539 *
540 * Note: we need to be careful here of a potential race between DMA
541 * and the rest of the driver - if the driver disables TX DMA while
542 * a TX buffer completing, we must update the tx queued status to
543 * get further refills (hence we check dmacr).
544 */
545 if (!(dmacr & UART011_TXDMAE) || uart_tx_stopped(&uap->port) ||
546 uart_circ_empty(&uap->port.state->xmit)) {
547 uap->dmatx.queued = false;
548 spin_unlock_irqrestore(&uap->port.lock, flags);
549 return;
550 }
551
Dave Martin734745c2015-03-04 12:27:33 +0000552 if (pl011_dma_tx_refill(uap) <= 0)
Russell King68b65f72010-12-22 17:24:39 +0000553 /*
554 * We didn't queue a DMA buffer for some reason, but we
555 * have data pending to be sent. Re-enable the TX IRQ.
556 */
Dave Martin734745c2015-03-04 12:27:33 +0000557 pl011_start_tx_pio(uap);
558
Russell King68b65f72010-12-22 17:24:39 +0000559 spin_unlock_irqrestore(&uap->port.lock, flags);
560}
561
562/*
563 * Try to refill the TX DMA buffer.
564 * Locking: called with port lock held and IRQs disabled.
565 * Returns:
566 * 1 if we queued up a TX DMA buffer.
567 * 0 if we didn't want to handle this by DMA
568 * <0 on error
569 */
570static int pl011_dma_tx_refill(struct uart_amba_port *uap)
571{
572 struct pl011_dmatx_data *dmatx = &uap->dmatx;
573 struct dma_chan *chan = dmatx->chan;
574 struct dma_device *dma_dev = chan->device;
575 struct dma_async_tx_descriptor *desc;
576 struct circ_buf *xmit = &uap->port.state->xmit;
577 unsigned int count;
578
579 /*
580 * Try to avoid the overhead involved in using DMA if the
581 * transaction fits in the first half of the FIFO, by using
582 * the standard interrupt handling. This ensures that we
583 * issue a uart_write_wakeup() at the appropriate time.
584 */
585 count = uart_circ_chars_pending(xmit);
586 if (count < (uap->fifosize >> 1)) {
587 uap->dmatx.queued = false;
588 return 0;
589 }
590
591 /*
592 * Bodge: don't send the last character by DMA, as this
593 * will prevent XON from notifying us to restart DMA.
594 */
595 count -= 1;
596
597 /* Else proceed to copy the TX chars to the DMA buffer and fire DMA */
598 if (count > PL011_DMA_BUFFER_SIZE)
599 count = PL011_DMA_BUFFER_SIZE;
600
601 if (xmit->tail < xmit->head)
602 memcpy(&dmatx->buf[0], &xmit->buf[xmit->tail], count);
603 else {
604 size_t first = UART_XMIT_SIZE - xmit->tail;
Andrew Jacksone2a545a2014-11-07 14:14:39 +0000605 size_t second;
606
607 if (first > count)
608 first = count;
609 second = count - first;
Russell King68b65f72010-12-22 17:24:39 +0000610
611 memcpy(&dmatx->buf[0], &xmit->buf[xmit->tail], first);
612 if (second)
613 memcpy(&dmatx->buf[first], &xmit->buf[0], second);
614 }
615
616 dmatx->sg.length = count;
617
618 if (dma_map_sg(dma_dev->dev, &dmatx->sg, 1, DMA_TO_DEVICE) != 1) {
619 uap->dmatx.queued = false;
620 dev_dbg(uap->port.dev, "unable to map TX DMA\n");
621 return -EBUSY;
622 }
623
Alexandre Bounine16052822012-03-08 16:11:18 -0500624 desc = dmaengine_prep_slave_sg(chan, &dmatx->sg, 1, DMA_MEM_TO_DEV,
Russell King68b65f72010-12-22 17:24:39 +0000625 DMA_PREP_INTERRUPT | DMA_CTRL_ACK);
626 if (!desc) {
627 dma_unmap_sg(dma_dev->dev, &dmatx->sg, 1, DMA_TO_DEVICE);
628 uap->dmatx.queued = false;
629 /*
630 * If DMA cannot be used right now, we complete this
631 * transaction via IRQ and let the TTY layer retry.
632 */
633 dev_dbg(uap->port.dev, "TX DMA busy\n");
634 return -EBUSY;
635 }
636
637 /* Some data to go along to the callback */
638 desc->callback = pl011_dma_tx_callback;
639 desc->callback_param = uap;
640
641 /* All errors should happen at prepare time */
642 dmaengine_submit(desc);
643
644 /* Fire the DMA transaction */
645 dma_dev->device_issue_pending(chan);
646
647 uap->dmacr |= UART011_TXDMAE;
Russell King9f25bc52015-11-03 14:51:13 +0000648 pl011_write(uap->dmacr, uap, REG_DMACR);
Russell King68b65f72010-12-22 17:24:39 +0000649 uap->dmatx.queued = true;
650
651 /*
652 * Now we know that DMA will fire, so advance the ring buffer
653 * with the stuff we just dispatched.
654 */
655 xmit->tail = (xmit->tail + count) & (UART_XMIT_SIZE - 1);
656 uap->port.icount.tx += count;
657
658 if (uart_circ_chars_pending(xmit) < WAKEUP_CHARS)
659 uart_write_wakeup(&uap->port);
660
661 return 1;
662}
663
664/*
665 * We received a transmit interrupt without a pending X-char but with
666 * pending characters.
667 * Locking: called with port lock held and IRQs disabled.
668 * Returns:
669 * false if we want to use PIO to transmit
670 * true if we queued a DMA buffer
671 */
672static bool pl011_dma_tx_irq(struct uart_amba_port *uap)
673{
Linus Walleijead76f32011-02-24 13:21:08 +0100674 if (!uap->using_tx_dma)
Russell King68b65f72010-12-22 17:24:39 +0000675 return false;
676
677 /*
678 * If we already have a TX buffer queued, but received a
679 * TX interrupt, it will be because we've just sent an X-char.
680 * Ensure the TX DMA is enabled and the TX IRQ is disabled.
681 */
682 if (uap->dmatx.queued) {
683 uap->dmacr |= UART011_TXDMAE;
Russell King9f25bc52015-11-03 14:51:13 +0000684 pl011_write(uap->dmacr, uap, REG_DMACR);
Russell King68b65f72010-12-22 17:24:39 +0000685 uap->im &= ~UART011_TXIM;
Russell King9f25bc52015-11-03 14:51:13 +0000686 pl011_write(uap->im, uap, REG_IMSC);
Russell King68b65f72010-12-22 17:24:39 +0000687 return true;
688 }
689
690 /*
691 * We don't have a TX buffer queued, so try to queue one.
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300692 * If we successfully queued a buffer, mask the TX IRQ.
Russell King68b65f72010-12-22 17:24:39 +0000693 */
694 if (pl011_dma_tx_refill(uap) > 0) {
695 uap->im &= ~UART011_TXIM;
Russell King9f25bc52015-11-03 14:51:13 +0000696 pl011_write(uap->im, uap, REG_IMSC);
Russell King68b65f72010-12-22 17:24:39 +0000697 return true;
698 }
699 return false;
700}
701
702/*
703 * Stop the DMA transmit (eg, due to received XOFF).
704 * Locking: called with port lock held and IRQs disabled.
705 */
706static inline void pl011_dma_tx_stop(struct uart_amba_port *uap)
707{
708 if (uap->dmatx.queued) {
709 uap->dmacr &= ~UART011_TXDMAE;
Russell King9f25bc52015-11-03 14:51:13 +0000710 pl011_write(uap->dmacr, uap, REG_DMACR);
Russell King68b65f72010-12-22 17:24:39 +0000711 }
712}
713
714/*
715 * Try to start a DMA transmit, or in the case of an XON/OFF
716 * character queued for send, try to get that character out ASAP.
717 * Locking: called with port lock held and IRQs disabled.
718 * Returns:
719 * false if we want the TX IRQ to be enabled
720 * true if we have a buffer queued
721 */
722static inline bool pl011_dma_tx_start(struct uart_amba_port *uap)
723{
724 u16 dmacr;
725
Linus Walleijead76f32011-02-24 13:21:08 +0100726 if (!uap->using_tx_dma)
Russell King68b65f72010-12-22 17:24:39 +0000727 return false;
728
729 if (!uap->port.x_char) {
730 /* no X-char, try to push chars out in DMA mode */
731 bool ret = true;
732
733 if (!uap->dmatx.queued) {
734 if (pl011_dma_tx_refill(uap) > 0) {
735 uap->im &= ~UART011_TXIM;
Russell King9f25bc52015-11-03 14:51:13 +0000736 pl011_write(uap->im, uap, REG_IMSC);
Dave Martin734745c2015-03-04 12:27:33 +0000737 } else
Russell King68b65f72010-12-22 17:24:39 +0000738 ret = false;
Russell King68b65f72010-12-22 17:24:39 +0000739 } else if (!(uap->dmacr & UART011_TXDMAE)) {
740 uap->dmacr |= UART011_TXDMAE;
Russell King9f25bc52015-11-03 14:51:13 +0000741 pl011_write(uap->dmacr, uap, REG_DMACR);
Russell King68b65f72010-12-22 17:24:39 +0000742 }
743 return ret;
744 }
745
746 /*
747 * We have an X-char to send. Disable DMA to prevent it loading
748 * the TX fifo, and then see if we can stuff it into the FIFO.
749 */
750 dmacr = uap->dmacr;
751 uap->dmacr &= ~UART011_TXDMAE;
Russell King9f25bc52015-11-03 14:51:13 +0000752 pl011_write(uap->dmacr, uap, REG_DMACR);
Russell King68b65f72010-12-22 17:24:39 +0000753
Russell King9f25bc52015-11-03 14:51:13 +0000754 if (pl011_read(uap, REG_FR) & UART01x_FR_TXFF) {
Russell King68b65f72010-12-22 17:24:39 +0000755 /*
756 * No space in the FIFO, so enable the transmit interrupt
757 * so we know when there is space. Note that once we've
758 * loaded the character, we should just re-enable DMA.
759 */
760 return false;
761 }
762
Russell King9f25bc52015-11-03 14:51:13 +0000763 pl011_write(uap->port.x_char, uap, REG_DR);
Russell King68b65f72010-12-22 17:24:39 +0000764 uap->port.icount.tx++;
765 uap->port.x_char = 0;
766
767 /* Success - restore the DMA state */
768 uap->dmacr = dmacr;
Russell King9f25bc52015-11-03 14:51:13 +0000769 pl011_write(dmacr, uap, REG_DMACR);
Russell King68b65f72010-12-22 17:24:39 +0000770
771 return true;
772}
773
774/*
775 * Flush the transmit buffer.
776 * Locking: called with port lock held and IRQs disabled.
777 */
778static void pl011_dma_flush_buffer(struct uart_port *port)
Fabio Estevamb83286b2013-08-09 17:58:51 -0300779__releases(&uap->port.lock)
780__acquires(&uap->port.lock)
Russell King68b65f72010-12-22 17:24:39 +0000781{
Daniel Thompsona5820c22014-09-03 12:51:55 +0100782 struct uart_amba_port *uap =
783 container_of(port, struct uart_amba_port, port);
Russell King68b65f72010-12-22 17:24:39 +0000784
Linus Walleijead76f32011-02-24 13:21:08 +0100785 if (!uap->using_tx_dma)
Russell King68b65f72010-12-22 17:24:39 +0000786 return;
787
788 /* Avoid deadlock with the DMA engine callback */
789 spin_unlock(&uap->port.lock);
790 dmaengine_terminate_all(uap->dmatx.chan);
791 spin_lock(&uap->port.lock);
792 if (uap->dmatx.queued) {
793 dma_unmap_sg(uap->dmatx.chan->device->dev, &uap->dmatx.sg, 1,
794 DMA_TO_DEVICE);
795 uap->dmatx.queued = false;
796 uap->dmacr &= ~UART011_TXDMAE;
Russell King9f25bc52015-11-03 14:51:13 +0000797 pl011_write(uap->dmacr, uap, REG_DMACR);
Russell King68b65f72010-12-22 17:24:39 +0000798 }
799}
800
Linus Walleijead76f32011-02-24 13:21:08 +0100801static void pl011_dma_rx_callback(void *data);
802
803static int pl011_dma_rx_trigger_dma(struct uart_amba_port *uap)
804{
805 struct dma_chan *rxchan = uap->dmarx.chan;
Linus Walleijead76f32011-02-24 13:21:08 +0100806 struct pl011_dmarx_data *dmarx = &uap->dmarx;
807 struct dma_async_tx_descriptor *desc;
808 struct pl011_sgbuf *sgbuf;
809
810 if (!rxchan)
811 return -EIO;
812
813 /* Start the RX DMA job */
814 sgbuf = uap->dmarx.use_buf_b ?
815 &uap->dmarx.sgbuf_b : &uap->dmarx.sgbuf_a;
Alexandre Bounine16052822012-03-08 16:11:18 -0500816 desc = dmaengine_prep_slave_sg(rxchan, &sgbuf->sg, 1,
Vinod Koula485df42011-10-14 10:47:38 +0530817 DMA_DEV_TO_MEM,
Linus Walleijead76f32011-02-24 13:21:08 +0100818 DMA_PREP_INTERRUPT | DMA_CTRL_ACK);
819 /*
820 * If the DMA engine is busy and cannot prepare a
821 * channel, no big deal, the driver will fall back
822 * to interrupt mode as a result of this error code.
823 */
824 if (!desc) {
825 uap->dmarx.running = false;
826 dmaengine_terminate_all(rxchan);
827 return -EBUSY;
828 }
829
830 /* Some data to go along to the callback */
831 desc->callback = pl011_dma_rx_callback;
832 desc->callback_param = uap;
833 dmarx->cookie = dmaengine_submit(desc);
834 dma_async_issue_pending(rxchan);
835
836 uap->dmacr |= UART011_RXDMAE;
Russell King9f25bc52015-11-03 14:51:13 +0000837 pl011_write(uap->dmacr, uap, REG_DMACR);
Linus Walleijead76f32011-02-24 13:21:08 +0100838 uap->dmarx.running = true;
839
840 uap->im &= ~UART011_RXIM;
Russell King9f25bc52015-11-03 14:51:13 +0000841 pl011_write(uap->im, uap, REG_IMSC);
Linus Walleijead76f32011-02-24 13:21:08 +0100842
843 return 0;
844}
845
846/*
847 * This is called when either the DMA job is complete, or
848 * the FIFO timeout interrupt occurred. This must be called
849 * with the port spinlock uap->port.lock held.
850 */
851static void pl011_dma_rx_chars(struct uart_amba_port *uap,
852 u32 pending, bool use_buf_b,
853 bool readfifo)
854{
Jiri Slaby05c7cd32013-01-03 15:53:04 +0100855 struct tty_port *port = &uap->port.state->port;
Linus Walleijead76f32011-02-24 13:21:08 +0100856 struct pl011_sgbuf *sgbuf = use_buf_b ?
857 &uap->dmarx.sgbuf_b : &uap->dmarx.sgbuf_a;
Linus Walleijead76f32011-02-24 13:21:08 +0100858 int dma_count = 0;
859 u32 fifotaken = 0; /* only used for vdbg() */
860
Chanho Mincb06ff12013-03-27 18:38:11 +0900861 struct pl011_dmarx_data *dmarx = &uap->dmarx;
862 int dmataken = 0;
863
864 if (uap->dmarx.poll_rate) {
865 /* The data can be taken by polling */
866 dmataken = sgbuf->sg.length - dmarx->last_residue;
867 /* Recalculate the pending size */
868 if (pending >= dmataken)
869 pending -= dmataken;
870 }
871
872 /* Pick the remain data from the DMA */
Linus Walleijead76f32011-02-24 13:21:08 +0100873 if (pending) {
Linus Walleijead76f32011-02-24 13:21:08 +0100874
875 /*
876 * First take all chars in the DMA pipe, then look in the FIFO.
877 * Note that tty_insert_flip_buf() tries to take as many chars
878 * as it can.
879 */
Chanho Mincb06ff12013-03-27 18:38:11 +0900880 dma_count = tty_insert_flip_string(port, sgbuf->buf + dmataken,
881 pending);
Linus Walleijead76f32011-02-24 13:21:08 +0100882
883 uap->port.icount.rx += dma_count;
884 if (dma_count < pending)
885 dev_warn(uap->port.dev,
886 "couldn't insert all characters (TTY is full?)\n");
887 }
888
Chanho Mincb06ff12013-03-27 18:38:11 +0900889 /* Reset the last_residue for Rx DMA poll */
890 if (uap->dmarx.poll_rate)
891 dmarx->last_residue = sgbuf->sg.length;
892
Linus Walleijead76f32011-02-24 13:21:08 +0100893 /*
894 * Only continue with trying to read the FIFO if all DMA chars have
895 * been taken first.
896 */
897 if (dma_count == pending && readfifo) {
898 /* Clear any error flags */
Russell King75836332015-11-03 14:50:58 +0000899 pl011_write(UART011_OEIS | UART011_BEIS | UART011_PEIS |
Russell King9f25bc52015-11-03 14:51:13 +0000900 UART011_FEIS, uap, REG_ICR);
Linus Walleijead76f32011-02-24 13:21:08 +0100901
902 /*
903 * If we read all the DMA'd characters, and we had an
Linus Walleij29772c42011-02-24 13:21:36 +0100904 * incomplete buffer, that could be due to an rx error, or
905 * maybe we just timed out. Read any pending chars and check
906 * the error status.
907 *
908 * Error conditions will only occur in the FIFO, these will
909 * trigger an immediate interrupt and stop the DMA job, so we
910 * will always find the error in the FIFO, never in the DMA
911 * buffer.
Linus Walleijead76f32011-02-24 13:21:08 +0100912 */
Linus Walleij29772c42011-02-24 13:21:36 +0100913 fifotaken = pl011_fifo_to_tty(uap);
Linus Walleijead76f32011-02-24 13:21:08 +0100914 }
915
916 spin_unlock(&uap->port.lock);
917 dev_vdbg(uap->port.dev,
918 "Took %d chars from DMA buffer and %d chars from the FIFO\n",
919 dma_count, fifotaken);
Jiri Slaby2e124b42013-01-03 15:53:06 +0100920 tty_flip_buffer_push(port);
Linus Walleijead76f32011-02-24 13:21:08 +0100921 spin_lock(&uap->port.lock);
922}
923
924static void pl011_dma_rx_irq(struct uart_amba_port *uap)
925{
926 struct pl011_dmarx_data *dmarx = &uap->dmarx;
927 struct dma_chan *rxchan = dmarx->chan;
928 struct pl011_sgbuf *sgbuf = dmarx->use_buf_b ?
929 &dmarx->sgbuf_b : &dmarx->sgbuf_a;
930 size_t pending;
931 struct dma_tx_state state;
932 enum dma_status dmastat;
933
934 /*
935 * Pause the transfer so we can trust the current counter,
936 * do this before we pause the PL011 block, else we may
937 * overflow the FIFO.
938 */
939 if (dmaengine_pause(rxchan))
940 dev_err(uap->port.dev, "unable to pause DMA transfer\n");
941 dmastat = rxchan->device->device_tx_status(rxchan,
942 dmarx->cookie, &state);
943 if (dmastat != DMA_PAUSED)
944 dev_err(uap->port.dev, "unable to pause DMA transfer\n");
945
946 /* Disable RX DMA - incoming data will wait in the FIFO */
947 uap->dmacr &= ~UART011_RXDMAE;
Russell King9f25bc52015-11-03 14:51:13 +0000948 pl011_write(uap->dmacr, uap, REG_DMACR);
Linus Walleijead76f32011-02-24 13:21:08 +0100949 uap->dmarx.running = false;
950
951 pending = sgbuf->sg.length - state.residue;
952 BUG_ON(pending > PL011_DMA_BUFFER_SIZE);
953 /* Then we terminate the transfer - we now know our residue */
954 dmaengine_terminate_all(rxchan);
955
956 /*
957 * This will take the chars we have so far and insert
958 * into the framework.
959 */
960 pl011_dma_rx_chars(uap, pending, dmarx->use_buf_b, true);
961
962 /* Switch buffer & re-trigger DMA job */
963 dmarx->use_buf_b = !dmarx->use_buf_b;
964 if (pl011_dma_rx_trigger_dma(uap)) {
965 dev_dbg(uap->port.dev, "could not retrigger RX DMA job "
966 "fall back to interrupt mode\n");
967 uap->im |= UART011_RXIM;
Russell King9f25bc52015-11-03 14:51:13 +0000968 pl011_write(uap->im, uap, REG_IMSC);
Linus Walleijead76f32011-02-24 13:21:08 +0100969 }
970}
971
972static void pl011_dma_rx_callback(void *data)
973{
974 struct uart_amba_port *uap = data;
975 struct pl011_dmarx_data *dmarx = &uap->dmarx;
Chanho Min6dc01aa2012-02-20 10:24:40 +0900976 struct dma_chan *rxchan = dmarx->chan;
Linus Walleijead76f32011-02-24 13:21:08 +0100977 bool lastbuf = dmarx->use_buf_b;
Chanho Min6dc01aa2012-02-20 10:24:40 +0900978 struct pl011_sgbuf *sgbuf = dmarx->use_buf_b ?
979 &dmarx->sgbuf_b : &dmarx->sgbuf_a;
980 size_t pending;
981 struct dma_tx_state state;
Linus Walleijead76f32011-02-24 13:21:08 +0100982 int ret;
983
984 /*
985 * This completion interrupt occurs typically when the
986 * RX buffer is totally stuffed but no timeout has yet
987 * occurred. When that happens, we just want the RX
988 * routine to flush out the secondary DMA buffer while
989 * we immediately trigger the next DMA job.
990 */
991 spin_lock_irq(&uap->port.lock);
Chanho Min6dc01aa2012-02-20 10:24:40 +0900992 /*
993 * Rx data can be taken by the UART interrupts during
994 * the DMA irq handler. So we check the residue here.
995 */
996 rxchan->device->device_tx_status(rxchan, dmarx->cookie, &state);
997 pending = sgbuf->sg.length - state.residue;
998 BUG_ON(pending > PL011_DMA_BUFFER_SIZE);
999 /* Then we terminate the transfer - we now know our residue */
1000 dmaengine_terminate_all(rxchan);
1001
Linus Walleijead76f32011-02-24 13:21:08 +01001002 uap->dmarx.running = false;
1003 dmarx->use_buf_b = !lastbuf;
1004 ret = pl011_dma_rx_trigger_dma(uap);
1005
Chanho Min6dc01aa2012-02-20 10:24:40 +09001006 pl011_dma_rx_chars(uap, pending, lastbuf, false);
Linus Walleijead76f32011-02-24 13:21:08 +01001007 spin_unlock_irq(&uap->port.lock);
1008 /*
1009 * Do this check after we picked the DMA chars so we don't
1010 * get some IRQ immediately from RX.
1011 */
1012 if (ret) {
1013 dev_dbg(uap->port.dev, "could not retrigger RX DMA job "
1014 "fall back to interrupt mode\n");
1015 uap->im |= UART011_RXIM;
Russell King9f25bc52015-11-03 14:51:13 +00001016 pl011_write(uap->im, uap, REG_IMSC);
Linus Walleijead76f32011-02-24 13:21:08 +01001017 }
1018}
1019
1020/*
1021 * Stop accepting received characters, when we're shutting down or
1022 * suspending this port.
1023 * Locking: called with port lock held and IRQs disabled.
1024 */
1025static inline void pl011_dma_rx_stop(struct uart_amba_port *uap)
1026{
1027 /* FIXME. Just disable the DMA enable */
1028 uap->dmacr &= ~UART011_RXDMAE;
Russell King9f25bc52015-11-03 14:51:13 +00001029 pl011_write(uap->dmacr, uap, REG_DMACR);
Linus Walleijead76f32011-02-24 13:21:08 +01001030}
Russell King68b65f72010-12-22 17:24:39 +00001031
Chanho Mincb06ff12013-03-27 18:38:11 +09001032/*
1033 * Timer handler for Rx DMA polling.
1034 * Every polling, It checks the residue in the dma buffer and transfer
1035 * data to the tty. Also, last_residue is updated for the next polling.
1036 */
1037static void pl011_dma_rx_poll(unsigned long args)
1038{
1039 struct uart_amba_port *uap = (struct uart_amba_port *)args;
1040 struct tty_port *port = &uap->port.state->port;
1041 struct pl011_dmarx_data *dmarx = &uap->dmarx;
1042 struct dma_chan *rxchan = uap->dmarx.chan;
1043 unsigned long flags = 0;
1044 unsigned int dmataken = 0;
1045 unsigned int size = 0;
1046 struct pl011_sgbuf *sgbuf;
1047 int dma_count;
1048 struct dma_tx_state state;
1049
1050 sgbuf = dmarx->use_buf_b ? &uap->dmarx.sgbuf_b : &uap->dmarx.sgbuf_a;
1051 rxchan->device->device_tx_status(rxchan, dmarx->cookie, &state);
1052 if (likely(state.residue < dmarx->last_residue)) {
1053 dmataken = sgbuf->sg.length - dmarx->last_residue;
1054 size = dmarx->last_residue - state.residue;
1055 dma_count = tty_insert_flip_string(port, sgbuf->buf + dmataken,
1056 size);
1057 if (dma_count == size)
1058 dmarx->last_residue = state.residue;
1059 dmarx->last_jiffies = jiffies;
1060 }
1061 tty_flip_buffer_push(port);
1062
1063 /*
1064 * If no data is received in poll_timeout, the driver will fall back
1065 * to interrupt mode. We will retrigger DMA at the first interrupt.
1066 */
1067 if (jiffies_to_msecs(jiffies - dmarx->last_jiffies)
1068 > uap->dmarx.poll_timeout) {
1069
1070 spin_lock_irqsave(&uap->port.lock, flags);
1071 pl011_dma_rx_stop(uap);
Guennadi Liakhovetskic25a1ad2013-12-10 14:54:47 +01001072 uap->im |= UART011_RXIM;
Russell King9f25bc52015-11-03 14:51:13 +00001073 pl011_write(uap->im, uap, REG_IMSC);
Chanho Mincb06ff12013-03-27 18:38:11 +09001074 spin_unlock_irqrestore(&uap->port.lock, flags);
1075
1076 uap->dmarx.running = false;
1077 dmaengine_terminate_all(rxchan);
1078 del_timer(&uap->dmarx.timer);
1079 } else {
1080 mod_timer(&uap->dmarx.timer,
1081 jiffies + msecs_to_jiffies(uap->dmarx.poll_rate));
1082 }
1083}
1084
Russell King68b65f72010-12-22 17:24:39 +00001085static void pl011_dma_startup(struct uart_amba_port *uap)
1086{
Linus Walleijead76f32011-02-24 13:21:08 +01001087 int ret;
1088
Jorge Ramirez-Ortiz1c9be312015-03-06 13:05:40 -05001089 if (!uap->dma_probed)
1090 pl011_dma_probe(uap);
1091
Russell King68b65f72010-12-22 17:24:39 +00001092 if (!uap->dmatx.chan)
1093 return;
1094
Andrew Jackson4c0be452014-11-07 14:14:35 +00001095 uap->dmatx.buf = kmalloc(PL011_DMA_BUFFER_SIZE, GFP_KERNEL | __GFP_DMA);
Russell King68b65f72010-12-22 17:24:39 +00001096 if (!uap->dmatx.buf) {
1097 dev_err(uap->port.dev, "no memory for DMA TX buffer\n");
1098 uap->port.fifosize = uap->fifosize;
1099 return;
1100 }
1101
1102 sg_init_one(&uap->dmatx.sg, uap->dmatx.buf, PL011_DMA_BUFFER_SIZE);
1103
1104 /* The DMA buffer is now the FIFO the TTY subsystem can use */
1105 uap->port.fifosize = PL011_DMA_BUFFER_SIZE;
Linus Walleijead76f32011-02-24 13:21:08 +01001106 uap->using_tx_dma = true;
Russell King68b65f72010-12-22 17:24:39 +00001107
Linus Walleijead76f32011-02-24 13:21:08 +01001108 if (!uap->dmarx.chan)
1109 goto skip_rx;
1110
1111 /* Allocate and map DMA RX buffers */
1112 ret = pl011_sgbuf_init(uap->dmarx.chan, &uap->dmarx.sgbuf_a,
1113 DMA_FROM_DEVICE);
1114 if (ret) {
1115 dev_err(uap->port.dev, "failed to init DMA %s: %d\n",
1116 "RX buffer A", ret);
1117 goto skip_rx;
1118 }
1119
1120 ret = pl011_sgbuf_init(uap->dmarx.chan, &uap->dmarx.sgbuf_b,
1121 DMA_FROM_DEVICE);
1122 if (ret) {
1123 dev_err(uap->port.dev, "failed to init DMA %s: %d\n",
1124 "RX buffer B", ret);
1125 pl011_sgbuf_free(uap->dmarx.chan, &uap->dmarx.sgbuf_a,
1126 DMA_FROM_DEVICE);
1127 goto skip_rx;
1128 }
1129
1130 uap->using_rx_dma = true;
1131
1132skip_rx:
Russell King68b65f72010-12-22 17:24:39 +00001133 /* Turn on DMA error (RX/TX will be enabled on demand) */
1134 uap->dmacr |= UART011_DMAONERR;
Russell King9f25bc52015-11-03 14:51:13 +00001135 pl011_write(uap->dmacr, uap, REG_DMACR);
Russell King38d62432010-12-22 17:59:16 +00001136
1137 /*
1138 * ST Micro variants has some specific dma burst threshold
1139 * compensation. Set this to 16 bytes, so burst will only
1140 * be issued above/below 16 bytes.
1141 */
1142 if (uap->vendor->dma_threshold)
Russell King75836332015-11-03 14:50:58 +00001143 pl011_write(ST_UART011_DMAWM_RX_16 | ST_UART011_DMAWM_TX_16,
Russell King9f25bc52015-11-03 14:51:13 +00001144 uap, REG_ST_DMAWM);
Linus Walleijead76f32011-02-24 13:21:08 +01001145
1146 if (uap->using_rx_dma) {
1147 if (pl011_dma_rx_trigger_dma(uap))
1148 dev_dbg(uap->port.dev, "could not trigger initial "
1149 "RX DMA job, fall back to interrupt mode\n");
Chanho Mincb06ff12013-03-27 18:38:11 +09001150 if (uap->dmarx.poll_rate) {
1151 init_timer(&(uap->dmarx.timer));
1152 uap->dmarx.timer.function = pl011_dma_rx_poll;
1153 uap->dmarx.timer.data = (unsigned long)uap;
1154 mod_timer(&uap->dmarx.timer,
1155 jiffies +
1156 msecs_to_jiffies(uap->dmarx.poll_rate));
1157 uap->dmarx.last_residue = PL011_DMA_BUFFER_SIZE;
1158 uap->dmarx.last_jiffies = jiffies;
1159 }
Linus Walleijead76f32011-02-24 13:21:08 +01001160 }
Russell King68b65f72010-12-22 17:24:39 +00001161}
1162
1163static void pl011_dma_shutdown(struct uart_amba_port *uap)
1164{
Linus Walleijead76f32011-02-24 13:21:08 +01001165 if (!(uap->using_tx_dma || uap->using_rx_dma))
Russell King68b65f72010-12-22 17:24:39 +00001166 return;
1167
1168 /* Disable RX and TX DMA */
Russell King9f25bc52015-11-03 14:51:13 +00001169 while (pl011_read(uap, REG_FR) & UART01x_FR_BUSY)
Timur Tabi2f2fd082016-01-15 14:32:20 -06001170 cpu_relax();
Russell King68b65f72010-12-22 17:24:39 +00001171
1172 spin_lock_irq(&uap->port.lock);
1173 uap->dmacr &= ~(UART011_DMAONERR | UART011_RXDMAE | UART011_TXDMAE);
Russell King9f25bc52015-11-03 14:51:13 +00001174 pl011_write(uap->dmacr, uap, REG_DMACR);
Russell King68b65f72010-12-22 17:24:39 +00001175 spin_unlock_irq(&uap->port.lock);
1176
Linus Walleijead76f32011-02-24 13:21:08 +01001177 if (uap->using_tx_dma) {
1178 /* In theory, this should already be done by pl011_dma_flush_buffer */
1179 dmaengine_terminate_all(uap->dmatx.chan);
1180 if (uap->dmatx.queued) {
1181 dma_unmap_sg(uap->dmatx.chan->device->dev, &uap->dmatx.sg, 1,
1182 DMA_TO_DEVICE);
1183 uap->dmatx.queued = false;
1184 }
1185
1186 kfree(uap->dmatx.buf);
1187 uap->using_tx_dma = false;
Russell King68b65f72010-12-22 17:24:39 +00001188 }
1189
Linus Walleijead76f32011-02-24 13:21:08 +01001190 if (uap->using_rx_dma) {
1191 dmaengine_terminate_all(uap->dmarx.chan);
1192 /* Clean up the RX DMA */
1193 pl011_sgbuf_free(uap->dmarx.chan, &uap->dmarx.sgbuf_a, DMA_FROM_DEVICE);
1194 pl011_sgbuf_free(uap->dmarx.chan, &uap->dmarx.sgbuf_b, DMA_FROM_DEVICE);
Chanho Mincb06ff12013-03-27 18:38:11 +09001195 if (uap->dmarx.poll_rate)
1196 del_timer_sync(&uap->dmarx.timer);
Linus Walleijead76f32011-02-24 13:21:08 +01001197 uap->using_rx_dma = false;
1198 }
Russell King68b65f72010-12-22 17:24:39 +00001199}
1200
Linus Walleijead76f32011-02-24 13:21:08 +01001201static inline bool pl011_dma_rx_available(struct uart_amba_port *uap)
1202{
1203 return uap->using_rx_dma;
1204}
1205
1206static inline bool pl011_dma_rx_running(struct uart_amba_port *uap)
1207{
1208 return uap->using_rx_dma && uap->dmarx.running;
1209}
1210
Russell King68b65f72010-12-22 17:24:39 +00001211#else
1212/* Blank functions if the DMA engine is not available */
Jorge Ramirez-Ortiz1c9be312015-03-06 13:05:40 -05001213static inline void pl011_dma_probe(struct uart_amba_port *uap)
Russell King68b65f72010-12-22 17:24:39 +00001214{
1215}
1216
1217static inline void pl011_dma_remove(struct uart_amba_port *uap)
1218{
1219}
1220
1221static inline void pl011_dma_startup(struct uart_amba_port *uap)
1222{
1223}
1224
1225static inline void pl011_dma_shutdown(struct uart_amba_port *uap)
1226{
1227}
1228
1229static inline bool pl011_dma_tx_irq(struct uart_amba_port *uap)
1230{
1231 return false;
1232}
1233
1234static inline void pl011_dma_tx_stop(struct uart_amba_port *uap)
1235{
1236}
1237
1238static inline bool pl011_dma_tx_start(struct uart_amba_port *uap)
1239{
1240 return false;
1241}
1242
Linus Walleijead76f32011-02-24 13:21:08 +01001243static inline void pl011_dma_rx_irq(struct uart_amba_port *uap)
1244{
1245}
1246
1247static inline void pl011_dma_rx_stop(struct uart_amba_port *uap)
1248{
1249}
1250
1251static inline int pl011_dma_rx_trigger_dma(struct uart_amba_port *uap)
1252{
1253 return -EIO;
1254}
1255
1256static inline bool pl011_dma_rx_available(struct uart_amba_port *uap)
1257{
1258 return false;
1259}
1260
1261static inline bool pl011_dma_rx_running(struct uart_amba_port *uap)
1262{
1263 return false;
1264}
1265
Russell King68b65f72010-12-22 17:24:39 +00001266#define pl011_dma_flush_buffer NULL
1267#endif
1268
Russell Kingb129a8c2005-08-31 10:12:14 +01001269static void pl011_stop_tx(struct uart_port *port)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001270{
Daniel Thompsona5820c22014-09-03 12:51:55 +01001271 struct uart_amba_port *uap =
1272 container_of(port, struct uart_amba_port, port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001273
1274 uap->im &= ~UART011_TXIM;
Russell King9f25bc52015-11-03 14:51:13 +00001275 pl011_write(uap->im, uap, REG_IMSC);
Russell King68b65f72010-12-22 17:24:39 +00001276 pl011_dma_tx_stop(uap);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001277}
1278
Dave Martin1e84d222015-04-27 16:49:05 +01001279static void pl011_tx_chars(struct uart_amba_port *uap, bool from_irq);
Dave Martin734745c2015-03-04 12:27:33 +00001280
1281/* Start TX with programmed I/O only (no DMA) */
1282static void pl011_start_tx_pio(struct uart_amba_port *uap)
1283{
1284 uap->im |= UART011_TXIM;
Russell King9f25bc52015-11-03 14:51:13 +00001285 pl011_write(uap->im, uap, REG_IMSC);
Dave Martin1e84d222015-04-27 16:49:05 +01001286 pl011_tx_chars(uap, false);
Dave Martin734745c2015-03-04 12:27:33 +00001287}
1288
Russell Kingb129a8c2005-08-31 10:12:14 +01001289static void pl011_start_tx(struct uart_port *port)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001290{
Daniel Thompsona5820c22014-09-03 12:51:55 +01001291 struct uart_amba_port *uap =
1292 container_of(port, struct uart_amba_port, port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001293
Dave Martin734745c2015-03-04 12:27:33 +00001294 if (!pl011_dma_tx_start(uap))
1295 pl011_start_tx_pio(uap);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001296}
1297
1298static void pl011_stop_rx(struct uart_port *port)
1299{
Daniel Thompsona5820c22014-09-03 12:51:55 +01001300 struct uart_amba_port *uap =
1301 container_of(port, struct uart_amba_port, port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001302
1303 uap->im &= ~(UART011_RXIM|UART011_RTIM|UART011_FEIM|
1304 UART011_PEIM|UART011_BEIM|UART011_OEIM);
Russell King9f25bc52015-11-03 14:51:13 +00001305 pl011_write(uap->im, uap, REG_IMSC);
Linus Walleijead76f32011-02-24 13:21:08 +01001306
1307 pl011_dma_rx_stop(uap);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001308}
1309
1310static void pl011_enable_ms(struct uart_port *port)
1311{
Daniel Thompsona5820c22014-09-03 12:51:55 +01001312 struct uart_amba_port *uap =
1313 container_of(port, struct uart_amba_port, port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001314
1315 uap->im |= UART011_RIMIM|UART011_CTSMIM|UART011_DCDMIM|UART011_DSRMIM;
Russell King9f25bc52015-11-03 14:51:13 +00001316 pl011_write(uap->im, uap, REG_IMSC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001317}
1318
David Howells7d12e782006-10-05 14:55:46 +01001319static void pl011_rx_chars(struct uart_amba_port *uap)
Fabio Estevamb83286b2013-08-09 17:58:51 -03001320__releases(&uap->port.lock)
1321__acquires(&uap->port.lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001322{
Linus Walleij29772c42011-02-24 13:21:36 +01001323 pl011_fifo_to_tty(uap);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001324
Thomas Gleixner2389b272007-05-29 21:53:50 +01001325 spin_unlock(&uap->port.lock);
Jiri Slaby2e124b42013-01-03 15:53:06 +01001326 tty_flip_buffer_push(&uap->port.state->port);
Linus Walleijead76f32011-02-24 13:21:08 +01001327 /*
1328 * If we were temporarily out of DMA mode for a while,
1329 * attempt to switch back to DMA mode again.
1330 */
1331 if (pl011_dma_rx_available(uap)) {
1332 if (pl011_dma_rx_trigger_dma(uap)) {
1333 dev_dbg(uap->port.dev, "could not trigger RX DMA job "
1334 "fall back to interrupt mode again\n");
1335 uap->im |= UART011_RXIM;
Russell King9f25bc52015-11-03 14:51:13 +00001336 pl011_write(uap->im, uap, REG_IMSC);
Chanho Mincb06ff12013-03-27 18:38:11 +09001337 } else {
Chanho Min89fa28d2013-04-03 11:10:37 +09001338#ifdef CONFIG_DMA_ENGINE
Chanho Mincb06ff12013-03-27 18:38:11 +09001339 /* Start Rx DMA poll */
1340 if (uap->dmarx.poll_rate) {
1341 uap->dmarx.last_jiffies = jiffies;
1342 uap->dmarx.last_residue = PL011_DMA_BUFFER_SIZE;
1343 mod_timer(&uap->dmarx.timer,
1344 jiffies +
1345 msecs_to_jiffies(uap->dmarx.poll_rate));
1346 }
Chanho Min89fa28d2013-04-03 11:10:37 +09001347#endif
Chanho Mincb06ff12013-03-27 18:38:11 +09001348 }
Linus Walleijead76f32011-02-24 13:21:08 +01001349 }
Thomas Gleixner2389b272007-05-29 21:53:50 +01001350 spin_lock(&uap->port.lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001351}
1352
Dave Martin1e84d222015-04-27 16:49:05 +01001353static bool pl011_tx_char(struct uart_amba_port *uap, unsigned char c,
1354 bool from_irq)
Dave Martin734745c2015-03-04 12:27:33 +00001355{
Dave Martin1e84d222015-04-27 16:49:05 +01001356 if (unlikely(!from_irq) &&
Russell King9f25bc52015-11-03 14:51:13 +00001357 pl011_read(uap, REG_FR) & UART01x_FR_TXFF)
Dave Martin1e84d222015-04-27 16:49:05 +01001358 return false; /* unable to transmit character */
1359
Russell King9f25bc52015-11-03 14:51:13 +00001360 pl011_write(c, uap, REG_DR);
Dave Martin734745c2015-03-04 12:27:33 +00001361 uap->port.icount.tx++;
1362
Dave Martin1e84d222015-04-27 16:49:05 +01001363 return true;
Dave Martin734745c2015-03-04 12:27:33 +00001364}
1365
Dave Martin1e84d222015-04-27 16:49:05 +01001366static void pl011_tx_chars(struct uart_amba_port *uap, bool from_irq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001367{
Alan Coxebd2c8f2009-09-19 13:13:28 -07001368 struct circ_buf *xmit = &uap->port.state->xmit;
Dave Martin1e84d222015-04-27 16:49:05 +01001369 int count = uap->fifosize >> 1;
Dave Martin734745c2015-03-04 12:27:33 +00001370
Linus Torvalds1da177e2005-04-16 15:20:36 -07001371 if (uap->port.x_char) {
Dave Martin1e84d222015-04-27 16:49:05 +01001372 if (!pl011_tx_char(uap, uap->port.x_char, from_irq))
1373 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001374 uap->port.x_char = 0;
Dave Martin734745c2015-03-04 12:27:33 +00001375 --count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001376 }
1377 if (uart_circ_empty(xmit) || uart_tx_stopped(&uap->port)) {
Russell Kingb129a8c2005-08-31 10:12:14 +01001378 pl011_stop_tx(&uap->port);
Dave Martin1e84d222015-04-27 16:49:05 +01001379 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001380 }
1381
Russell King68b65f72010-12-22 17:24:39 +00001382 /* If we are using DMA mode, try to send some characters. */
1383 if (pl011_dma_tx_irq(uap))
Dave Martin1e84d222015-04-27 16:49:05 +01001384 return;
Russell King68b65f72010-12-22 17:24:39 +00001385
Dave Martin1e84d222015-04-27 16:49:05 +01001386 do {
1387 if (likely(from_irq) && count-- == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001388 break;
Dave Martin1e84d222015-04-27 16:49:05 +01001389
1390 if (!pl011_tx_char(uap, xmit->buf[xmit->tail], from_irq))
1391 break;
1392
1393 xmit->tail = (xmit->tail + 1) & (UART_XMIT_SIZE - 1);
1394 } while (!uart_circ_empty(xmit));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001395
1396 if (uart_circ_chars_pending(xmit) < WAKEUP_CHARS)
1397 uart_write_wakeup(&uap->port);
1398
Dave Martin1e84d222015-04-27 16:49:05 +01001399 if (uart_circ_empty(xmit))
Russell Kingb129a8c2005-08-31 10:12:14 +01001400 pl011_stop_tx(&uap->port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001401}
1402
1403static void pl011_modem_status(struct uart_amba_port *uap)
1404{
1405 unsigned int status, delta;
1406
Russell King9f25bc52015-11-03 14:51:13 +00001407 status = pl011_read(uap, REG_FR) & UART01x_FR_MODEM_ANY;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001408
1409 delta = status ^ uap->old_status;
1410 uap->old_status = status;
1411
1412 if (!delta)
1413 return;
1414
1415 if (delta & UART01x_FR_DCD)
1416 uart_handle_dcd_change(&uap->port, status & UART01x_FR_DCD);
1417
Greg Kroah-Hartman062a68a2015-09-04 09:11:24 -07001418 if (delta & UART01x_FR_DSR)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001419 uap->port.icount.dsr++;
1420
Greg Kroah-Hartman062a68a2015-09-04 09:11:24 -07001421 if (delta & UART01x_FR_CTS)
1422 uart_handle_cts_change(&uap->port, status & UART01x_FR_CTS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001423
Alan Coxbdc04e32009-09-19 13:13:31 -07001424 wake_up_interruptible(&uap->port.state->port.delta_msr_wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001425}
1426
Andre Przywara9c4ef4b2015-05-21 17:26:20 +01001427static void check_apply_cts_event_workaround(struct uart_amba_port *uap)
1428{
1429 unsigned int dummy_read;
1430
1431 if (!uap->vendor->cts_event_workaround)
1432 return;
1433
1434 /* workaround to make sure that all bits are unlocked.. */
Russell King9f25bc52015-11-03 14:51:13 +00001435 pl011_write(0x00, uap, REG_ICR);
Andre Przywara9c4ef4b2015-05-21 17:26:20 +01001436
1437 /*
1438 * WA: introduce 26ns(1 uart clk) delay before W1C;
1439 * single apb access will incur 2 pclk(133.12Mhz) delay,
1440 * so add 2 dummy reads
1441 */
Russell King9f25bc52015-11-03 14:51:13 +00001442 dummy_read = pl011_read(uap, REG_ICR);
1443 dummy_read = pl011_read(uap, REG_ICR);
Andre Przywara9c4ef4b2015-05-21 17:26:20 +01001444}
1445
David Howells7d12e782006-10-05 14:55:46 +01001446static irqreturn_t pl011_int(int irq, void *dev_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001447{
1448 struct uart_amba_port *uap = dev_id;
Russell King963cc982010-12-22 17:16:09 +00001449 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001450 unsigned int status, pass_counter = AMBA_ISR_PASS_LIMIT;
Andre Przywara075167e2015-05-21 17:26:19 +01001451 u16 imsc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001452 int handled = 0;
1453
Russell King963cc982010-12-22 17:16:09 +00001454 spin_lock_irqsave(&uap->port.lock, flags);
Russell King9f25bc52015-11-03 14:51:13 +00001455 imsc = pl011_read(uap, REG_IMSC);
1456 status = pl011_read(uap, REG_RIS) & imsc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001457 if (status) {
1458 do {
Andre Przywara9c4ef4b2015-05-21 17:26:20 +01001459 check_apply_cts_event_workaround(uap);
Greg Kroah-Hartmanf11c9842015-09-04 09:13:39 -07001460
Russell King75836332015-11-03 14:50:58 +00001461 pl011_write(status & ~(UART011_TXIS|UART011_RTIS|
1462 UART011_RXIS),
Russell King9f25bc52015-11-03 14:51:13 +00001463 uap, REG_ICR);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001464
Linus Walleijead76f32011-02-24 13:21:08 +01001465 if (status & (UART011_RTIS|UART011_RXIS)) {
1466 if (pl011_dma_rx_running(uap))
1467 pl011_dma_rx_irq(uap);
1468 else
1469 pl011_rx_chars(uap);
1470 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001471 if (status & (UART011_DSRMIS|UART011_DCDMIS|
1472 UART011_CTSMIS|UART011_RIMIS))
1473 pl011_modem_status(uap);
Dave Martin1e84d222015-04-27 16:49:05 +01001474 if (status & UART011_TXIS)
1475 pl011_tx_chars(uap, true);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001476
Rajanikanth H.V4fd06902012-03-26 11:17:02 +02001477 if (pass_counter-- == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001478 break;
1479
Russell King9f25bc52015-11-03 14:51:13 +00001480 status = pl011_read(uap, REG_RIS) & imsc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001481 } while (status != 0);
1482 handled = 1;
1483 }
1484
Russell King963cc982010-12-22 17:16:09 +00001485 spin_unlock_irqrestore(&uap->port.lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001486
1487 return IRQ_RETVAL(handled);
1488}
1489
Linus Walleije643f872012-06-17 15:44:19 +02001490static unsigned int pl011_tx_empty(struct uart_port *port)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001491{
Daniel Thompsona5820c22014-09-03 12:51:55 +01001492 struct uart_amba_port *uap =
1493 container_of(port, struct uart_amba_port, port);
Russell King9f25bc52015-11-03 14:51:13 +00001494 unsigned int status = pl011_read(uap, REG_FR);
Greg Kroah-Hartman062a68a2015-09-04 09:11:24 -07001495 return status & (UART01x_FR_BUSY|UART01x_FR_TXFF) ? 0 : TIOCSER_TEMT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001496}
1497
Linus Walleije643f872012-06-17 15:44:19 +02001498static unsigned int pl011_get_mctrl(struct uart_port *port)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001499{
Daniel Thompsona5820c22014-09-03 12:51:55 +01001500 struct uart_amba_port *uap =
1501 container_of(port, struct uart_amba_port, port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001502 unsigned int result = 0;
Russell King9f25bc52015-11-03 14:51:13 +00001503 unsigned int status = pl011_read(uap, REG_FR);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001504
Jiri Slaby5159f402007-10-18 23:40:31 -07001505#define TIOCMBIT(uartbit, tiocmbit) \
Linus Torvalds1da177e2005-04-16 15:20:36 -07001506 if (status & uartbit) \
1507 result |= tiocmbit
1508
Jiri Slaby5159f402007-10-18 23:40:31 -07001509 TIOCMBIT(UART01x_FR_DCD, TIOCM_CAR);
Greg Kroah-Hartman062a68a2015-09-04 09:11:24 -07001510 TIOCMBIT(UART01x_FR_DSR, TIOCM_DSR);
1511 TIOCMBIT(UART01x_FR_CTS, TIOCM_CTS);
1512 TIOCMBIT(UART011_FR_RI, TIOCM_RNG);
Jiri Slaby5159f402007-10-18 23:40:31 -07001513#undef TIOCMBIT
Linus Torvalds1da177e2005-04-16 15:20:36 -07001514 return result;
1515}
1516
1517static void pl011_set_mctrl(struct uart_port *port, unsigned int mctrl)
1518{
Daniel Thompsona5820c22014-09-03 12:51:55 +01001519 struct uart_amba_port *uap =
1520 container_of(port, struct uart_amba_port, port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001521 unsigned int cr;
1522
Russell King9f25bc52015-11-03 14:51:13 +00001523 cr = pl011_read(uap, REG_CR);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001524
Jiri Slaby5159f402007-10-18 23:40:31 -07001525#define TIOCMBIT(tiocmbit, uartbit) \
Linus Torvalds1da177e2005-04-16 15:20:36 -07001526 if (mctrl & tiocmbit) \
1527 cr |= uartbit; \
1528 else \
1529 cr &= ~uartbit
1530
Jiri Slaby5159f402007-10-18 23:40:31 -07001531 TIOCMBIT(TIOCM_RTS, UART011_CR_RTS);
1532 TIOCMBIT(TIOCM_DTR, UART011_CR_DTR);
1533 TIOCMBIT(TIOCM_OUT1, UART011_CR_OUT1);
1534 TIOCMBIT(TIOCM_OUT2, UART011_CR_OUT2);
1535 TIOCMBIT(TIOCM_LOOP, UART011_CR_LBE);
Rabin Vincent3b438162010-02-12 06:43:11 +01001536
1537 if (uap->autorts) {
1538 /* We need to disable auto-RTS if we want to turn RTS off */
1539 TIOCMBIT(TIOCM_RTS, UART011_CR_RTSEN);
1540 }
Jiri Slaby5159f402007-10-18 23:40:31 -07001541#undef TIOCMBIT
Linus Torvalds1da177e2005-04-16 15:20:36 -07001542
Russell King9f25bc52015-11-03 14:51:13 +00001543 pl011_write(cr, uap, REG_CR);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001544}
1545
1546static void pl011_break_ctl(struct uart_port *port, int break_state)
1547{
Daniel Thompsona5820c22014-09-03 12:51:55 +01001548 struct uart_amba_port *uap =
1549 container_of(port, struct uart_amba_port, port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001550 unsigned long flags;
1551 unsigned int lcr_h;
1552
1553 spin_lock_irqsave(&uap->port.lock, flags);
Russell Kinge4df9a82015-11-16 17:40:41 +00001554 lcr_h = pl011_read(uap, REG_LCRH_TX);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001555 if (break_state == -1)
1556 lcr_h |= UART01x_LCRH_BRK;
1557 else
1558 lcr_h &= ~UART01x_LCRH_BRK;
Russell Kinge4df9a82015-11-16 17:40:41 +00001559 pl011_write(lcr_h, uap, REG_LCRH_TX);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001560 spin_unlock_irqrestore(&uap->port.lock, flags);
1561}
1562
Jason Wessel84b5ae12008-02-20 13:33:39 -06001563#ifdef CONFIG_CONSOLE_POLL
Anton Vorontsov5c8124a2012-09-24 14:27:55 -07001564
1565static void pl011_quiesce_irqs(struct uart_port *port)
1566{
Daniel Thompsona5820c22014-09-03 12:51:55 +01001567 struct uart_amba_port *uap =
1568 container_of(port, struct uart_amba_port, port);
Anton Vorontsov5c8124a2012-09-24 14:27:55 -07001569
Russell King9f25bc52015-11-03 14:51:13 +00001570 pl011_write(pl011_read(uap, REG_MIS), uap, REG_ICR);
Anton Vorontsov5c8124a2012-09-24 14:27:55 -07001571 /*
1572 * There is no way to clear TXIM as this is "ready to transmit IRQ", so
1573 * we simply mask it. start_tx() will unmask it.
1574 *
1575 * Note we can race with start_tx(), and if the race happens, the
1576 * polling user might get another interrupt just after we clear it.
1577 * But it should be OK and can happen even w/o the race, e.g.
1578 * controller immediately got some new data and raised the IRQ.
1579 *
1580 * And whoever uses polling routines assumes that it manages the device
1581 * (including tx queue), so we're also fine with start_tx()'s caller
1582 * side.
1583 */
Russell King9f25bc52015-11-03 14:51:13 +00001584 pl011_write(pl011_read(uap, REG_IMSC) & ~UART011_TXIM, uap,
1585 REG_IMSC);
Anton Vorontsov5c8124a2012-09-24 14:27:55 -07001586}
1587
Linus Walleije643f872012-06-17 15:44:19 +02001588static int pl011_get_poll_char(struct uart_port *port)
Jason Wessel84b5ae12008-02-20 13:33:39 -06001589{
Daniel Thompsona5820c22014-09-03 12:51:55 +01001590 struct uart_amba_port *uap =
1591 container_of(port, struct uart_amba_port, port);
Jason Wessel84b5ae12008-02-20 13:33:39 -06001592 unsigned int status;
1593
Anton Vorontsov5c8124a2012-09-24 14:27:55 -07001594 /*
1595 * The caller might need IRQs lowered, e.g. if used with KDB NMI
1596 * debugger.
1597 */
1598 pl011_quiesce_irqs(port);
1599
Russell King9f25bc52015-11-03 14:51:13 +00001600 status = pl011_read(uap, REG_FR);
Jason Wesself5316b42010-05-20 21:04:22 -05001601 if (status & UART01x_FR_RXFE)
1602 return NO_POLL_CHAR;
Jason Wessel84b5ae12008-02-20 13:33:39 -06001603
Russell King9f25bc52015-11-03 14:51:13 +00001604 return pl011_read(uap, REG_DR);
Jason Wessel84b5ae12008-02-20 13:33:39 -06001605}
1606
Linus Walleije643f872012-06-17 15:44:19 +02001607static void pl011_put_poll_char(struct uart_port *port,
Jason Wessel84b5ae12008-02-20 13:33:39 -06001608 unsigned char ch)
1609{
Daniel Thompsona5820c22014-09-03 12:51:55 +01001610 struct uart_amba_port *uap =
1611 container_of(port, struct uart_amba_port, port);
Jason Wessel84b5ae12008-02-20 13:33:39 -06001612
Russell King9f25bc52015-11-03 14:51:13 +00001613 while (pl011_read(uap, REG_FR) & UART01x_FR_TXFF)
Timur Tabi2f2fd082016-01-15 14:32:20 -06001614 cpu_relax();
Jason Wessel84b5ae12008-02-20 13:33:39 -06001615
Russell King9f25bc52015-11-03 14:51:13 +00001616 pl011_write(ch, uap, REG_DR);
Jason Wessel84b5ae12008-02-20 13:33:39 -06001617}
1618
1619#endif /* CONFIG_CONSOLE_POLL */
1620
Anton Vorontsovb3564c22012-09-24 14:27:54 -07001621static int pl011_hwinit(struct uart_port *port)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001622{
Daniel Thompsona5820c22014-09-03 12:51:55 +01001623 struct uart_amba_port *uap =
1624 container_of(port, struct uart_amba_port, port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001625 int retval;
1626
Linus Walleij78d80c52012-05-23 21:18:46 +02001627 /* Optionaly enable pins to be muxed in and configured */
Linus Walleij2b996fc2013-06-05 15:36:42 +02001628 pinctrl_pm_select_default_state(port->dev);
Linus Walleij78d80c52012-05-23 21:18:46 +02001629
Linus Torvalds1da177e2005-04-16 15:20:36 -07001630 /*
1631 * Try to enable the clock producer.
1632 */
Julia Lawall1c4c4392012-08-26 18:01:01 +02001633 retval = clk_prepare_enable(uap->clk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001634 if (retval)
Tushar Behera7f6d9422014-06-26 15:35:35 +05301635 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001636
1637 uap->port.uartclk = clk_get_rate(uap->clk);
1638
Linus Walleij9b96fba2012-03-13 13:27:23 +01001639 /* Clear pending error and receive interrupts */
Russell King75836332015-11-03 14:50:58 +00001640 pl011_write(UART011_OEIS | UART011_BEIS | UART011_PEIS |
1641 UART011_FEIS | UART011_RTIS | UART011_RXIS,
Russell King9f25bc52015-11-03 14:51:13 +00001642 uap, REG_ICR);
Linus Walleij9b96fba2012-03-13 13:27:23 +01001643
Linus Torvalds1da177e2005-04-16 15:20:36 -07001644 /*
Anton Vorontsovb3564c22012-09-24 14:27:54 -07001645 * Save interrupts enable mask, and enable RX interrupts in case if
1646 * the interrupt is used for NMI entry.
1647 */
Russell King9f25bc52015-11-03 14:51:13 +00001648 uap->im = pl011_read(uap, REG_IMSC);
1649 pl011_write(UART011_RTIM | UART011_RXIM, uap, REG_IMSC);
Anton Vorontsovb3564c22012-09-24 14:27:54 -07001650
Jingoo Han574de552013-07-30 17:06:57 +09001651 if (dev_get_platdata(uap->port.dev)) {
Anton Vorontsovb3564c22012-09-24 14:27:54 -07001652 struct amba_pl011_data *plat;
1653
Jingoo Han574de552013-07-30 17:06:57 +09001654 plat = dev_get_platdata(uap->port.dev);
Anton Vorontsovb3564c22012-09-24 14:27:54 -07001655 if (plat->init)
1656 plat->init();
1657 }
1658 return 0;
Anton Vorontsovb3564c22012-09-24 14:27:54 -07001659}
1660
Russell King7fe9a5a2015-11-03 14:51:08 +00001661static bool pl011_split_lcrh(const struct uart_amba_port *uap)
1662{
Russell Kinge4df9a82015-11-16 17:40:41 +00001663 return pl011_reg_to_offset(uap, REG_LCRH_RX) !=
1664 pl011_reg_to_offset(uap, REG_LCRH_TX);
Russell King7fe9a5a2015-11-03 14:51:08 +00001665}
1666
Jon Medhurstb60f2f62013-12-10 10:18:59 +00001667static void pl011_write_lcr_h(struct uart_amba_port *uap, unsigned int lcr_h)
1668{
Russell Kinge4df9a82015-11-16 17:40:41 +00001669 pl011_write(lcr_h, uap, REG_LCRH_RX);
Russell King7fe9a5a2015-11-03 14:51:08 +00001670 if (pl011_split_lcrh(uap)) {
Jon Medhurstb60f2f62013-12-10 10:18:59 +00001671 int i;
1672 /*
1673 * Wait 10 PCLKs before writing LCRH_TX register,
1674 * to get this delay write read only register 10 times
1675 */
1676 for (i = 0; i < 10; ++i)
Russell King9f25bc52015-11-03 14:51:13 +00001677 pl011_write(0xff, uap, REG_MIS);
Russell Kinge4df9a82015-11-16 17:40:41 +00001678 pl011_write(lcr_h, uap, REG_LCRH_TX);
Jon Medhurstb60f2f62013-12-10 10:18:59 +00001679 }
1680}
1681
Andre Przywara867b8e82015-05-21 17:26:15 +01001682static int pl011_allocate_irq(struct uart_amba_port *uap)
1683{
Russell King9f25bc52015-11-03 14:51:13 +00001684 pl011_write(uap->im, uap, REG_IMSC);
Andre Przywara867b8e82015-05-21 17:26:15 +01001685
1686 return request_irq(uap->port.irq, pl011_int, 0, "uart-pl011", uap);
1687}
1688
1689/*
1690 * Enable interrupts, only timeouts when using DMA
1691 * if initial RX DMA job failed, start in interrupt mode
1692 * as well.
1693 */
1694static void pl011_enable_interrupts(struct uart_amba_port *uap)
1695{
1696 spin_lock_irq(&uap->port.lock);
1697
1698 /* Clear out any spuriously appearing RX interrupts */
Russell King9f25bc52015-11-03 14:51:13 +00001699 pl011_write(UART011_RTIS | UART011_RXIS, uap, REG_ICR);
Andre Przywara867b8e82015-05-21 17:26:15 +01001700 uap->im = UART011_RTIM;
1701 if (!pl011_dma_rx_running(uap))
1702 uap->im |= UART011_RXIM;
Russell King9f25bc52015-11-03 14:51:13 +00001703 pl011_write(uap->im, uap, REG_IMSC);
Andre Przywara867b8e82015-05-21 17:26:15 +01001704 spin_unlock_irq(&uap->port.lock);
1705}
1706
Anton Vorontsovb3564c22012-09-24 14:27:54 -07001707static int pl011_startup(struct uart_port *port)
1708{
Daniel Thompsona5820c22014-09-03 12:51:55 +01001709 struct uart_amba_port *uap =
1710 container_of(port, struct uart_amba_port, port);
Dave Martin734745c2015-03-04 12:27:33 +00001711 unsigned int cr;
Anton Vorontsovb3564c22012-09-24 14:27:54 -07001712 int retval;
1713
1714 retval = pl011_hwinit(port);
1715 if (retval)
1716 goto clk_dis;
1717
Andre Przywara867b8e82015-05-21 17:26:15 +01001718 retval = pl011_allocate_irq(uap);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001719 if (retval)
1720 goto clk_dis;
1721
Russell King9f25bc52015-11-03 14:51:13 +00001722 pl011_write(uap->vendor->ifls, uap, REG_IFLS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001723
Jon Medhurstfe433902013-12-10 10:18:58 +00001724 spin_lock_irq(&uap->port.lock);
1725
Shreshtha Kumar Sahud8d8ffa2012-01-18 15:53:59 +05301726 /* restore RTS and DTR */
1727 cr = uap->old_cr & (UART011_CR_RTS | UART011_CR_DTR);
1728 cr |= UART01x_CR_UARTEN | UART011_CR_RXE | UART011_CR_TXE;
Russell King9f25bc52015-11-03 14:51:13 +00001729 pl011_write(cr, uap, REG_CR);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001730
Jon Medhurstfe433902013-12-10 10:18:58 +00001731 spin_unlock_irq(&uap->port.lock);
1732
Linus Torvalds1da177e2005-04-16 15:20:36 -07001733 /*
1734 * initialise the old status of the modem signals
1735 */
Russell King9f25bc52015-11-03 14:51:13 +00001736 uap->old_status = pl011_read(uap, REG_FR) & UART01x_FR_MODEM_ANY;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001737
Russell King68b65f72010-12-22 17:24:39 +00001738 /* Startup DMA */
1739 pl011_dma_startup(uap);
1740
Andre Przywara867b8e82015-05-21 17:26:15 +01001741 pl011_enable_interrupts(uap);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001742
1743 return 0;
1744
1745 clk_dis:
Julia Lawall1c4c4392012-08-26 18:01:01 +02001746 clk_disable_unprepare(uap->clk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001747 return retval;
1748}
1749
Andre Przywara0dd1e242015-05-21 17:26:23 +01001750static int sbsa_uart_startup(struct uart_port *port)
1751{
1752 struct uart_amba_port *uap =
1753 container_of(port, struct uart_amba_port, port);
1754 int retval;
1755
1756 retval = pl011_hwinit(port);
1757 if (retval)
1758 return retval;
1759
1760 retval = pl011_allocate_irq(uap);
1761 if (retval)
1762 return retval;
1763
1764 /* The SBSA UART does not support any modem status lines. */
1765 uap->old_status = 0;
1766
1767 pl011_enable_interrupts(uap);
1768
1769 return 0;
1770}
1771
Linus Walleijec489aa2010-06-02 08:13:52 +01001772static void pl011_shutdown_channel(struct uart_amba_port *uap,
1773 unsigned int lcrh)
1774{
Greg Kroah-Hartmanf11c9842015-09-04 09:13:39 -07001775 unsigned long val;
Linus Walleijec489aa2010-06-02 08:13:52 +01001776
Russell Kingb2a4e242015-11-03 14:51:03 +00001777 val = pl011_read(uap, lcrh);
Greg Kroah-Hartmanf11c9842015-09-04 09:13:39 -07001778 val &= ~(UART01x_LCRH_BRK | UART01x_LCRH_FEN);
Russell Kingb2a4e242015-11-03 14:51:03 +00001779 pl011_write(val, uap, lcrh);
Linus Walleijec489aa2010-06-02 08:13:52 +01001780}
1781
Andre Przywara95166a32015-05-21 17:26:16 +01001782/*
1783 * disable the port. It should not disable RTS and DTR.
1784 * Also RTS and DTR state should be preserved to restore
1785 * it during startup().
1786 */
1787static void pl011_disable_uart(struct uart_amba_port *uap)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001788{
Shreshtha Kumar Sahud8d8ffa2012-01-18 15:53:59 +05301789 unsigned int cr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001790
Rabin Vincent3b438162010-02-12 06:43:11 +01001791 uap->autorts = false;
Jon Medhurstfe433902013-12-10 10:18:58 +00001792 spin_lock_irq(&uap->port.lock);
Russell King9f25bc52015-11-03 14:51:13 +00001793 cr = pl011_read(uap, REG_CR);
Shreshtha Kumar Sahud8d8ffa2012-01-18 15:53:59 +05301794 uap->old_cr = cr;
1795 cr &= UART011_CR_RTS | UART011_CR_DTR;
1796 cr |= UART01x_CR_UARTEN | UART011_CR_TXE;
Russell King9f25bc52015-11-03 14:51:13 +00001797 pl011_write(cr, uap, REG_CR);
Jon Medhurstfe433902013-12-10 10:18:58 +00001798 spin_unlock_irq(&uap->port.lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001799
1800 /*
1801 * disable break condition and fifos
1802 */
Russell Kinge4df9a82015-11-16 17:40:41 +00001803 pl011_shutdown_channel(uap, REG_LCRH_RX);
Russell King7fe9a5a2015-11-03 14:51:08 +00001804 if (pl011_split_lcrh(uap))
Russell Kinge4df9a82015-11-16 17:40:41 +00001805 pl011_shutdown_channel(uap, REG_LCRH_TX);
Andre Przywara95166a32015-05-21 17:26:16 +01001806}
1807
1808static void pl011_disable_interrupts(struct uart_amba_port *uap)
1809{
1810 spin_lock_irq(&uap->port.lock);
1811
1812 /* mask all interrupts and clear all pending ones */
1813 uap->im = 0;
Russell King9f25bc52015-11-03 14:51:13 +00001814 pl011_write(uap->im, uap, REG_IMSC);
1815 pl011_write(0xffff, uap, REG_ICR);
Andre Przywara95166a32015-05-21 17:26:16 +01001816
1817 spin_unlock_irq(&uap->port.lock);
1818}
1819
1820static void pl011_shutdown(struct uart_port *port)
1821{
1822 struct uart_amba_port *uap =
1823 container_of(port, struct uart_amba_port, port);
1824
1825 pl011_disable_interrupts(uap);
1826
1827 pl011_dma_shutdown(uap);
1828
1829 free_irq(uap->port.irq, uap);
1830
1831 pl011_disable_uart(uap);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001832
1833 /*
1834 * Shut down the clock producer
1835 */
Julia Lawall1c4c4392012-08-26 18:01:01 +02001836 clk_disable_unprepare(uap->clk);
Linus Walleij78d80c52012-05-23 21:18:46 +02001837 /* Optionally let pins go into sleep states */
Linus Walleij2b996fc2013-06-05 15:36:42 +02001838 pinctrl_pm_select_sleep_state(port->dev);
Shreshtha Kumar Sahuc16d51a2011-06-13 10:11:33 +02001839
Jingoo Han574de552013-07-30 17:06:57 +09001840 if (dev_get_platdata(uap->port.dev)) {
Shreshtha Kumar Sahuc16d51a2011-06-13 10:11:33 +02001841 struct amba_pl011_data *plat;
1842
Jingoo Han574de552013-07-30 17:06:57 +09001843 plat = dev_get_platdata(uap->port.dev);
Shreshtha Kumar Sahuc16d51a2011-06-13 10:11:33 +02001844 if (plat->exit)
1845 plat->exit();
1846 }
1847
Peter Hurley36f339d2014-11-06 09:06:12 -05001848 if (uap->port.ops->flush_buffer)
1849 uap->port.ops->flush_buffer(port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001850}
1851
Andre Przywara0dd1e242015-05-21 17:26:23 +01001852static void sbsa_uart_shutdown(struct uart_port *port)
1853{
1854 struct uart_amba_port *uap =
1855 container_of(port, struct uart_amba_port, port);
1856
1857 pl011_disable_interrupts(uap);
1858
1859 free_irq(uap->port.irq, uap);
1860
1861 if (uap->port.ops->flush_buffer)
1862 uap->port.ops->flush_buffer(port);
1863}
1864
Linus Torvalds1da177e2005-04-16 15:20:36 -07001865static void
Andre Przywaraef5a9352015-05-21 17:26:17 +01001866pl011_setup_status_masks(struct uart_port *port, struct ktermios *termios)
1867{
1868 port->read_status_mask = UART011_DR_OE | 255;
1869 if (termios->c_iflag & INPCK)
1870 port->read_status_mask |= UART011_DR_FE | UART011_DR_PE;
1871 if (termios->c_iflag & (IGNBRK | BRKINT | PARMRK))
1872 port->read_status_mask |= UART011_DR_BE;
1873
1874 /*
1875 * Characters to ignore
1876 */
1877 port->ignore_status_mask = 0;
1878 if (termios->c_iflag & IGNPAR)
1879 port->ignore_status_mask |= UART011_DR_FE | UART011_DR_PE;
1880 if (termios->c_iflag & IGNBRK) {
1881 port->ignore_status_mask |= UART011_DR_BE;
1882 /*
1883 * If we're ignoring parity and break indicators,
1884 * ignore overruns too (for real raw support).
1885 */
1886 if (termios->c_iflag & IGNPAR)
1887 port->ignore_status_mask |= UART011_DR_OE;
1888 }
1889
1890 /*
1891 * Ignore all characters if CREAD is not set.
1892 */
1893 if ((termios->c_cflag & CREAD) == 0)
1894 port->ignore_status_mask |= UART_DUMMY_DR_RX;
1895}
1896
1897static void
Alan Cox606d0992006-12-08 02:38:45 -08001898pl011_set_termios(struct uart_port *port, struct ktermios *termios,
1899 struct ktermios *old)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001900{
Daniel Thompsona5820c22014-09-03 12:51:55 +01001901 struct uart_amba_port *uap =
1902 container_of(port, struct uart_amba_port, port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001903 unsigned int lcr_h, old_cr;
1904 unsigned long flags;
Russell Kingc19f12b2010-12-22 17:48:26 +00001905 unsigned int baud, quot, clkdiv;
1906
1907 if (uap->vendor->oversampling)
1908 clkdiv = 8;
1909 else
1910 clkdiv = 16;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001911
1912 /*
1913 * Ask the core to calculate the divisor for us.
1914 */
Linus Walleijac3e3fb2010-06-02 20:40:22 +01001915 baud = uart_get_baud_rate(port, termios, old, 0,
Russell Kingc19f12b2010-12-22 17:48:26 +00001916 port->uartclk / clkdiv);
Chanho Min89fa28d2013-04-03 11:10:37 +09001917#ifdef CONFIG_DMA_ENGINE
Chanho Mincb06ff12013-03-27 18:38:11 +09001918 /*
1919 * Adjust RX DMA polling rate with baud rate if not specified.
1920 */
1921 if (uap->dmarx.auto_poll_rate)
1922 uap->dmarx.poll_rate = DIV_ROUND_UP(10000000, baud);
Chanho Min89fa28d2013-04-03 11:10:37 +09001923#endif
Linus Walleijac3e3fb2010-06-02 20:40:22 +01001924
1925 if (baud > port->uartclk/16)
1926 quot = DIV_ROUND_CLOSEST(port->uartclk * 8, baud);
1927 else
1928 quot = DIV_ROUND_CLOSEST(port->uartclk * 4, baud);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001929
1930 switch (termios->c_cflag & CSIZE) {
1931 case CS5:
1932 lcr_h = UART01x_LCRH_WLEN_5;
1933 break;
1934 case CS6:
1935 lcr_h = UART01x_LCRH_WLEN_6;
1936 break;
1937 case CS7:
1938 lcr_h = UART01x_LCRH_WLEN_7;
1939 break;
1940 default: // CS8
1941 lcr_h = UART01x_LCRH_WLEN_8;
1942 break;
1943 }
1944 if (termios->c_cflag & CSTOPB)
1945 lcr_h |= UART01x_LCRH_STP2;
1946 if (termios->c_cflag & PARENB) {
1947 lcr_h |= UART01x_LCRH_PEN;
1948 if (!(termios->c_cflag & PARODD))
1949 lcr_h |= UART01x_LCRH_EPS;
1950 }
Russell Kingffca2b12010-12-22 17:13:05 +00001951 if (uap->fifosize > 1)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001952 lcr_h |= UART01x_LCRH_FEN;
1953
1954 spin_lock_irqsave(&port->lock, flags);
1955
1956 /*
1957 * Update the per-port timeout.
1958 */
1959 uart_update_timeout(port, termios->c_cflag, baud);
1960
Andre Przywaraef5a9352015-05-21 17:26:17 +01001961 pl011_setup_status_masks(port, termios);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001962
1963 if (UART_ENABLE_MS(port, termios->c_cflag))
1964 pl011_enable_ms(port);
1965
1966 /* first, disable everything */
Russell King9f25bc52015-11-03 14:51:13 +00001967 old_cr = pl011_read(uap, REG_CR);
1968 pl011_write(0, uap, REG_CR);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001969
Rabin Vincent3b438162010-02-12 06:43:11 +01001970 if (termios->c_cflag & CRTSCTS) {
1971 if (old_cr & UART011_CR_RTS)
1972 old_cr |= UART011_CR_RTSEN;
1973
1974 old_cr |= UART011_CR_CTSEN;
1975 uap->autorts = true;
1976 } else {
1977 old_cr &= ~(UART011_CR_CTSEN | UART011_CR_RTSEN);
1978 uap->autorts = false;
1979 }
1980
Russell Kingc19f12b2010-12-22 17:48:26 +00001981 if (uap->vendor->oversampling) {
1982 if (baud > port->uartclk / 16)
Linus Walleijac3e3fb2010-06-02 20:40:22 +01001983 old_cr |= ST_UART011_CR_OVSFACT;
1984 else
1985 old_cr &= ~ST_UART011_CR_OVSFACT;
1986 }
1987
Linus Walleijc5dd5532012-09-26 17:21:36 +02001988 /*
1989 * Workaround for the ST Micro oversampling variants to
1990 * increase the bitrate slightly, by lowering the divisor,
1991 * to avoid delayed sampling of start bit at high speeds,
1992 * else we see data corruption.
1993 */
1994 if (uap->vendor->oversampling) {
1995 if ((baud >= 3000000) && (baud < 3250000) && (quot > 1))
1996 quot -= 1;
1997 else if ((baud > 3250000) && (quot > 2))
1998 quot -= 2;
1999 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002000 /* Set baud rate */
Russell King9f25bc52015-11-03 14:51:13 +00002001 pl011_write(quot & 0x3f, uap, REG_FBRD);
2002 pl011_write(quot >> 6, uap, REG_IBRD);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002003
2004 /*
2005 * ----------v----------v----------v----------v-----
Russell Kinge4df9a82015-11-16 17:40:41 +00002006 * NOTE: REG_LCRH_TX and REG_LCRH_RX MUST BE WRITTEN AFTER
Russell King9f25bc52015-11-03 14:51:13 +00002007 * REG_FBRD & REG_IBRD.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002008 * ----------^----------^----------^----------^-----
2009 */
Jon Medhurstb60f2f62013-12-10 10:18:59 +00002010 pl011_write_lcr_h(uap, lcr_h);
Russell King9f25bc52015-11-03 14:51:13 +00002011 pl011_write(old_cr, uap, REG_CR);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002012
2013 spin_unlock_irqrestore(&port->lock, flags);
2014}
2015
Andre Przywara0dd1e242015-05-21 17:26:23 +01002016static void
2017sbsa_uart_set_termios(struct uart_port *port, struct ktermios *termios,
2018 struct ktermios *old)
2019{
2020 struct uart_amba_port *uap =
2021 container_of(port, struct uart_amba_port, port);
2022 unsigned long flags;
2023
2024 tty_termios_encode_baud_rate(termios, uap->fixed_baud, uap->fixed_baud);
2025
2026 /* The SBSA UART only supports 8n1 without hardware flow control. */
2027 termios->c_cflag &= ~(CSIZE | CSTOPB | PARENB | PARODD);
2028 termios->c_cflag &= ~(CMSPAR | CRTSCTS);
2029 termios->c_cflag |= CS8 | CLOCAL;
2030
2031 spin_lock_irqsave(&port->lock, flags);
2032 uart_update_timeout(port, CS8, uap->fixed_baud);
2033 pl011_setup_status_masks(port, termios);
2034 spin_unlock_irqrestore(&port->lock, flags);
2035}
2036
Linus Torvalds1da177e2005-04-16 15:20:36 -07002037static const char *pl011_type(struct uart_port *port)
2038{
Daniel Thompsona5820c22014-09-03 12:51:55 +01002039 struct uart_amba_port *uap =
2040 container_of(port, struct uart_amba_port, port);
Russell Kinge8a7ba82010-12-28 09:16:54 +00002041 return uap->port.type == PORT_AMBA ? uap->type : NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002042}
2043
2044/*
2045 * Release the memory region(s) being used by 'port'
2046 */
Linus Walleije643f872012-06-17 15:44:19 +02002047static void pl011_release_port(struct uart_port *port)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002048{
2049 release_mem_region(port->mapbase, SZ_4K);
2050}
2051
2052/*
2053 * Request the memory region(s) being used by 'port'
2054 */
Linus Walleije643f872012-06-17 15:44:19 +02002055static int pl011_request_port(struct uart_port *port)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002056{
2057 return request_mem_region(port->mapbase, SZ_4K, "uart-pl011")
2058 != NULL ? 0 : -EBUSY;
2059}
2060
2061/*
2062 * Configure/autoconfigure the port.
2063 */
Linus Walleije643f872012-06-17 15:44:19 +02002064static void pl011_config_port(struct uart_port *port, int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002065{
2066 if (flags & UART_CONFIG_TYPE) {
2067 port->type = PORT_AMBA;
Linus Walleije643f872012-06-17 15:44:19 +02002068 pl011_request_port(port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002069 }
2070}
2071
2072/*
2073 * verify the new serial_struct (for TIOCSSERIAL).
2074 */
Linus Walleije643f872012-06-17 15:44:19 +02002075static int pl011_verify_port(struct uart_port *port, struct serial_struct *ser)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002076{
2077 int ret = 0;
2078 if (ser->type != PORT_UNKNOWN && ser->type != PORT_AMBA)
2079 ret = -EINVAL;
Yinghai Lua62c4132008-08-19 20:49:55 -07002080 if (ser->irq < 0 || ser->irq >= nr_irqs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002081 ret = -EINVAL;
2082 if (ser->baud_base < 9600)
2083 ret = -EINVAL;
2084 return ret;
2085}
2086
2087static struct uart_ops amba_pl011_pops = {
Linus Walleije643f872012-06-17 15:44:19 +02002088 .tx_empty = pl011_tx_empty,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002089 .set_mctrl = pl011_set_mctrl,
Linus Walleije643f872012-06-17 15:44:19 +02002090 .get_mctrl = pl011_get_mctrl,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002091 .stop_tx = pl011_stop_tx,
2092 .start_tx = pl011_start_tx,
2093 .stop_rx = pl011_stop_rx,
2094 .enable_ms = pl011_enable_ms,
2095 .break_ctl = pl011_break_ctl,
2096 .startup = pl011_startup,
2097 .shutdown = pl011_shutdown,
Russell King68b65f72010-12-22 17:24:39 +00002098 .flush_buffer = pl011_dma_flush_buffer,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002099 .set_termios = pl011_set_termios,
2100 .type = pl011_type,
Linus Walleije643f872012-06-17 15:44:19 +02002101 .release_port = pl011_release_port,
2102 .request_port = pl011_request_port,
2103 .config_port = pl011_config_port,
2104 .verify_port = pl011_verify_port,
Jason Wessel84b5ae12008-02-20 13:33:39 -06002105#ifdef CONFIG_CONSOLE_POLL
Anton Vorontsovb3564c22012-09-24 14:27:54 -07002106 .poll_init = pl011_hwinit,
Linus Walleije643f872012-06-17 15:44:19 +02002107 .poll_get_char = pl011_get_poll_char,
2108 .poll_put_char = pl011_put_poll_char,
Jason Wessel84b5ae12008-02-20 13:33:39 -06002109#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002110};
2111
Andre Przywara0dd1e242015-05-21 17:26:23 +01002112static void sbsa_uart_set_mctrl(struct uart_port *port, unsigned int mctrl)
2113{
2114}
2115
2116static unsigned int sbsa_uart_get_mctrl(struct uart_port *port)
2117{
2118 return 0;
2119}
2120
2121static const struct uart_ops sbsa_uart_pops = {
2122 .tx_empty = pl011_tx_empty,
2123 .set_mctrl = sbsa_uart_set_mctrl,
2124 .get_mctrl = sbsa_uart_get_mctrl,
2125 .stop_tx = pl011_stop_tx,
2126 .start_tx = pl011_start_tx,
2127 .stop_rx = pl011_stop_rx,
2128 .startup = sbsa_uart_startup,
2129 .shutdown = sbsa_uart_shutdown,
2130 .set_termios = sbsa_uart_set_termios,
2131 .type = pl011_type,
2132 .release_port = pl011_release_port,
2133 .request_port = pl011_request_port,
2134 .config_port = pl011_config_port,
2135 .verify_port = pl011_verify_port,
2136#ifdef CONFIG_CONSOLE_POLL
2137 .poll_init = pl011_hwinit,
2138 .poll_get_char = pl011_get_poll_char,
2139 .poll_put_char = pl011_put_poll_char,
2140#endif
2141};
2142
Linus Torvalds1da177e2005-04-16 15:20:36 -07002143static struct uart_amba_port *amba_ports[UART_NR];
2144
2145#ifdef CONFIG_SERIAL_AMBA_PL011_CONSOLE
2146
Russell Kingd3587882006-03-20 20:00:09 +00002147static void pl011_console_putchar(struct uart_port *port, int ch)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002148{
Daniel Thompsona5820c22014-09-03 12:51:55 +01002149 struct uart_amba_port *uap =
2150 container_of(port, struct uart_amba_port, port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002151
Russell King9f25bc52015-11-03 14:51:13 +00002152 while (pl011_read(uap, REG_FR) & UART01x_FR_TXFF)
Timur Tabi2f2fd082016-01-15 14:32:20 -06002153 cpu_relax();
Russell King9f25bc52015-11-03 14:51:13 +00002154 pl011_write(ch, uap, REG_DR);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002155}
2156
2157static void
2158pl011_console_write(struct console *co, const char *s, unsigned int count)
2159{
2160 struct uart_amba_port *uap = amba_ports[co->index];
Timur Tabi2f2fd082016-01-15 14:32:20 -06002161 unsigned int old_cr = 0, new_cr;
Rabin Vincentef605fd2012-01-17 11:52:28 +01002162 unsigned long flags;
2163 int locked = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002164
2165 clk_enable(uap->clk);
2166
Rabin Vincentef605fd2012-01-17 11:52:28 +01002167 local_irq_save(flags);
2168 if (uap->port.sysrq)
2169 locked = 0;
2170 else if (oops_in_progress)
2171 locked = spin_trylock(&uap->port.lock);
2172 else
2173 spin_lock(&uap->port.lock);
2174
Linus Torvalds1da177e2005-04-16 15:20:36 -07002175 /*
2176 * First save the CR then disable the interrupts
2177 */
Andre Przywara71eec482015-05-21 17:26:21 +01002178 if (!uap->vendor->always_enabled) {
Russell King9f25bc52015-11-03 14:51:13 +00002179 old_cr = pl011_read(uap, REG_CR);
Andre Przywara71eec482015-05-21 17:26:21 +01002180 new_cr = old_cr & ~UART011_CR_CTSEN;
2181 new_cr |= UART01x_CR_UARTEN | UART011_CR_TXE;
Russell King9f25bc52015-11-03 14:51:13 +00002182 pl011_write(new_cr, uap, REG_CR);
Andre Przywara71eec482015-05-21 17:26:21 +01002183 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002184
Russell Kingd3587882006-03-20 20:00:09 +00002185 uart_console_write(&uap->port, s, count, pl011_console_putchar);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002186
2187 /*
2188 * Finally, wait for transmitter to become empty
2189 * and restore the TCR
2190 */
Timur Tabi2f2fd082016-01-15 14:32:20 -06002191 while (pl011_read(uap, REG_FR) & UART01x_FR_BUSY)
2192 cpu_relax();
Andre Przywara71eec482015-05-21 17:26:21 +01002193 if (!uap->vendor->always_enabled)
Russell King9f25bc52015-11-03 14:51:13 +00002194 pl011_write(old_cr, uap, REG_CR);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002195
Rabin Vincentef605fd2012-01-17 11:52:28 +01002196 if (locked)
2197 spin_unlock(&uap->port.lock);
2198 local_irq_restore(flags);
2199
Linus Torvalds1da177e2005-04-16 15:20:36 -07002200 clk_disable(uap->clk);
2201}
2202
2203static void __init
2204pl011_console_get_options(struct uart_amba_port *uap, int *baud,
2205 int *parity, int *bits)
2206{
Russell King9f25bc52015-11-03 14:51:13 +00002207 if (pl011_read(uap, REG_CR) & UART01x_CR_UARTEN) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002208 unsigned int lcr_h, ibrd, fbrd;
2209
Russell Kinge4df9a82015-11-16 17:40:41 +00002210 lcr_h = pl011_read(uap, REG_LCRH_TX);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002211
2212 *parity = 'n';
2213 if (lcr_h & UART01x_LCRH_PEN) {
2214 if (lcr_h & UART01x_LCRH_EPS)
2215 *parity = 'e';
2216 else
2217 *parity = 'o';
2218 }
2219
2220 if ((lcr_h & 0x60) == UART01x_LCRH_WLEN_7)
2221 *bits = 7;
2222 else
2223 *bits = 8;
2224
Russell King9f25bc52015-11-03 14:51:13 +00002225 ibrd = pl011_read(uap, REG_IBRD);
2226 fbrd = pl011_read(uap, REG_FBRD);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002227
2228 *baud = uap->port.uartclk * 4 / (64 * ibrd + fbrd);
Linus Walleijac3e3fb2010-06-02 20:40:22 +01002229
Russell Kingc19f12b2010-12-22 17:48:26 +00002230 if (uap->vendor->oversampling) {
Russell King9f25bc52015-11-03 14:51:13 +00002231 if (pl011_read(uap, REG_CR)
Linus Walleijac3e3fb2010-06-02 20:40:22 +01002232 & ST_UART011_CR_OVSFACT)
2233 *baud *= 2;
2234 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002235 }
2236}
2237
2238static int __init pl011_console_setup(struct console *co, char *options)
2239{
2240 struct uart_amba_port *uap;
2241 int baud = 38400;
2242 int bits = 8;
2243 int parity = 'n';
2244 int flow = 'n';
Russell King4b4851c2011-09-22 11:35:30 +01002245 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002246
2247 /*
2248 * Check whether an invalid uart number has been specified, and
2249 * if so, search for the first available port that does have
2250 * console support.
2251 */
2252 if (co->index >= UART_NR)
2253 co->index = 0;
2254 uap = amba_ports[co->index];
Russell Kingd28122a2007-01-22 18:59:42 +00002255 if (!uap)
2256 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002257
Linus Walleij78d80c52012-05-23 21:18:46 +02002258 /* Allow pins to be muxed in and configured */
Linus Walleij2b996fc2013-06-05 15:36:42 +02002259 pinctrl_pm_select_default_state(uap->port.dev);
Linus Walleij78d80c52012-05-23 21:18:46 +02002260
Russell King4b4851c2011-09-22 11:35:30 +01002261 ret = clk_prepare(uap->clk);
2262 if (ret)
2263 return ret;
2264
Jingoo Han574de552013-07-30 17:06:57 +09002265 if (dev_get_platdata(uap->port.dev)) {
Shreshtha Kumar Sahuc16d51a2011-06-13 10:11:33 +02002266 struct amba_pl011_data *plat;
2267
Jingoo Han574de552013-07-30 17:06:57 +09002268 plat = dev_get_platdata(uap->port.dev);
Shreshtha Kumar Sahuc16d51a2011-06-13 10:11:33 +02002269 if (plat->init)
2270 plat->init();
2271 }
2272
Linus Torvalds1da177e2005-04-16 15:20:36 -07002273 uap->port.uartclk = clk_get_rate(uap->clk);
2274
Andre Przywaracefc2d12015-05-21 17:26:22 +01002275 if (uap->vendor->fixed_options) {
2276 baud = uap->fixed_baud;
2277 } else {
2278 if (options)
2279 uart_parse_options(options,
2280 &baud, &parity, &bits, &flow);
2281 else
2282 pl011_console_get_options(uap, &baud, &parity, &bits);
2283 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002284
2285 return uart_set_options(&uap->port, co, baud, parity, bits, flow);
2286}
2287
Vincent Sanders2d934862005-09-14 22:36:03 +01002288static struct uart_driver amba_reg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002289static struct console amba_console = {
2290 .name = "ttyAMA",
2291 .write = pl011_console_write,
2292 .device = uart_console_device,
2293 .setup = pl011_console_setup,
2294 .flags = CON_PRINTBUFFER,
2295 .index = -1,
2296 .data = &amba_reg,
2297};
2298
2299#define AMBA_CONSOLE (&amba_console)
Rob Herring0d3c6732014-04-18 17:19:57 -05002300
2301static void pl011_putc(struct uart_port *port, int c)
2302{
Russell Kingcdf091c2016-01-04 15:37:41 -06002303 while (readl(port->membase + UART01x_FR) & UART01x_FR_TXFF)
Timur Tabi2f2fd082016-01-15 14:32:20 -06002304 cpu_relax();
Timur Tabi3b78fae2016-01-04 15:37:42 -06002305 if (port->iotype == UPIO_MEM32)
2306 writel(c, port->membase + UART01x_DR);
2307 else
2308 writeb(c, port->membase + UART01x_DR);
Russell Kingcdf091c2016-01-04 15:37:41 -06002309 while (readl(port->membase + UART01x_FR) & UART01x_FR_BUSY)
Timur Tabi2f2fd082016-01-15 14:32:20 -06002310 cpu_relax();
Rob Herring0d3c6732014-04-18 17:19:57 -05002311}
2312
2313static void pl011_early_write(struct console *con, const char *s, unsigned n)
2314{
2315 struct earlycon_device *dev = con->data;
2316
2317 uart_console_write(&dev->port, s, n, pl011_putc);
2318}
2319
2320static int __init pl011_early_console_setup(struct earlycon_device *device,
2321 const char *opt)
2322{
2323 if (!device->port.membase)
2324 return -ENODEV;
2325
2326 device->con->write = pl011_early_write;
2327 return 0;
2328}
Rob Herring45e0f0f2014-03-27 08:08:03 -05002329OF_EARLYCON_DECLARE(pl011, "arm,pl011", pl011_early_console_setup);
Rob Herring0d3c6732014-04-18 17:19:57 -05002330
Linus Torvalds1da177e2005-04-16 15:20:36 -07002331#else
2332#define AMBA_CONSOLE NULL
2333#endif
2334
2335static struct uart_driver amba_reg = {
2336 .owner = THIS_MODULE,
2337 .driver_name = "ttyAMA",
2338 .dev_name = "ttyAMA",
2339 .major = SERIAL_AMBA_MAJOR,
2340 .minor = SERIAL_AMBA_MINOR,
2341 .nr = UART_NR,
2342 .cons = AMBA_CONSOLE,
2343};
2344
Matthew Leach32614aa2012-08-28 16:41:28 +01002345static int pl011_probe_dt_alias(int index, struct device *dev)
2346{
2347 struct device_node *np;
2348 static bool seen_dev_with_alias = false;
2349 static bool seen_dev_without_alias = false;
2350 int ret = index;
2351
2352 if (!IS_ENABLED(CONFIG_OF))
2353 return ret;
2354
2355 np = dev->of_node;
2356 if (!np)
2357 return ret;
2358
2359 ret = of_alias_get_id(np, "serial");
2360 if (IS_ERR_VALUE(ret)) {
2361 seen_dev_without_alias = true;
2362 ret = index;
2363 } else {
2364 seen_dev_with_alias = true;
2365 if (ret >= ARRAY_SIZE(amba_ports) || amba_ports[ret] != NULL) {
2366 dev_warn(dev, "requested serial port %d not available.\n", ret);
2367 ret = index;
2368 }
2369 }
2370
2371 if (seen_dev_with_alias && seen_dev_without_alias)
2372 dev_warn(dev, "aliased and non-aliased serial devices found in device tree. Serial port enumeration may be unpredictable.\n");
2373
2374 return ret;
2375}
2376
Andre Przywara49bb3c82015-05-21 17:26:14 +01002377/* unregisters the driver also if no more ports are left */
2378static void pl011_unregister_port(struct uart_amba_port *uap)
2379{
2380 int i;
2381 bool busy = false;
2382
2383 for (i = 0; i < ARRAY_SIZE(amba_ports); i++) {
2384 if (amba_ports[i] == uap)
2385 amba_ports[i] = NULL;
2386 else if (amba_ports[i])
2387 busy = true;
2388 }
2389 pl011_dma_remove(uap);
2390 if (!busy)
2391 uart_unregister_driver(&amba_reg);
2392}
2393
Andre Przywara3873e2d2015-05-21 17:26:18 +01002394static int pl011_find_free_port(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002395{
Andre Przywara3873e2d2015-05-21 17:26:18 +01002396 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002397
2398 for (i = 0; i < ARRAY_SIZE(amba_ports); i++)
2399 if (amba_ports[i] == NULL)
Andre Przywara3873e2d2015-05-21 17:26:18 +01002400 return i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002401
Andre Przywara3873e2d2015-05-21 17:26:18 +01002402 return -EBUSY;
2403}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002404
Andre Przywara3873e2d2015-05-21 17:26:18 +01002405static int pl011_setup_port(struct device *dev, struct uart_amba_port *uap,
2406 struct resource *mmiobase, int index)
2407{
2408 void __iomem *base;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002409
Andre Przywara3873e2d2015-05-21 17:26:18 +01002410 base = devm_ioremap_resource(dev, mmiobase);
Krzysztof Kozlowski97a60ea2015-07-09 22:21:41 +09002411 if (IS_ERR(base))
2412 return PTR_ERR(base);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002413
Andre Przywara3873e2d2015-05-21 17:26:18 +01002414 index = pl011_probe_dt_alias(index, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002415
Shreshtha Kumar Sahud8d8ffa2012-01-18 15:53:59 +05302416 uap->old_cr = 0;
Andre Przywara3873e2d2015-05-21 17:26:18 +01002417 uap->port.dev = dev;
2418 uap->port.mapbase = mmiobase->start;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002419 uap->port.membase = base;
Russell Kingffca2b12010-12-22 17:13:05 +00002420 uap->port.fifosize = uap->fifosize;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002421 uap->port.flags = UPF_BOOT_AUTOCONF;
Andre Przywara3873e2d2015-05-21 17:26:18 +01002422 uap->port.line = index;
2423
2424 amba_ports[index] = uap;
2425
2426 return 0;
2427}
2428
2429static int pl011_register_port(struct uart_amba_port *uap)
2430{
2431 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002432
Linus Walleijc3d8b762012-03-21 20:15:18 +01002433 /* Ensure interrupts from this UART are masked and cleared */
Russell King9f25bc52015-11-03 14:51:13 +00002434 pl011_write(0, uap, REG_IMSC);
2435 pl011_write(0xffff, uap, REG_ICR);
Linus Walleijc3d8b762012-03-21 20:15:18 +01002436
Tushar Beheraef2889f2014-01-20 14:32:35 +05302437 if (!amba_reg.state) {
2438 ret = uart_register_driver(&amba_reg);
2439 if (ret < 0) {
Andre Przywara3873e2d2015-05-21 17:26:18 +01002440 dev_err(uap->port.dev,
Jorge Ramirez-Ortiz1c9be312015-03-06 13:05:40 -05002441 "Failed to register AMBA-PL011 driver\n");
Tushar Beheraef2889f2014-01-20 14:32:35 +05302442 return ret;
2443 }
2444 }
2445
Linus Torvalds1da177e2005-04-16 15:20:36 -07002446 ret = uart_add_one_port(&amba_reg, &uap->port);
Andre Przywara49bb3c82015-05-21 17:26:14 +01002447 if (ret)
2448 pl011_unregister_port(uap);
Tushar Behera7f6d9422014-06-26 15:35:35 +05302449
Linus Torvalds1da177e2005-04-16 15:20:36 -07002450 return ret;
2451}
2452
Andre Przywara3873e2d2015-05-21 17:26:18 +01002453static int pl011_probe(struct amba_device *dev, const struct amba_id *id)
2454{
2455 struct uart_amba_port *uap;
2456 struct vendor_data *vendor = id->data;
2457 int portnr, ret;
2458
2459 portnr = pl011_find_free_port();
2460 if (portnr < 0)
2461 return portnr;
2462
2463 uap = devm_kzalloc(&dev->dev, sizeof(struct uart_amba_port),
2464 GFP_KERNEL);
2465 if (!uap)
2466 return -ENOMEM;
2467
2468 uap->clk = devm_clk_get(&dev->dev, NULL);
2469 if (IS_ERR(uap->clk))
2470 return PTR_ERR(uap->clk);
2471
Russell King439403b2015-11-16 17:40:31 +00002472 uap->reg_offset = vendor->reg_offset;
Andre Przywara3873e2d2015-05-21 17:26:18 +01002473 uap->vendor = vendor;
Andre Przywara3873e2d2015-05-21 17:26:18 +01002474 uap->fifosize = vendor->get_fifosize(dev);
Timur Tabi3b78fae2016-01-04 15:37:42 -06002475 uap->port.iotype = vendor->access_32b ? UPIO_MEM32 : UPIO_MEM;
Andre Przywara3873e2d2015-05-21 17:26:18 +01002476 uap->port.irq = dev->irq[0];
2477 uap->port.ops = &amba_pl011_pops;
2478
2479 snprintf(uap->type, sizeof(uap->type), "PL011 rev%u", amba_rev(dev));
2480
2481 ret = pl011_setup_port(&dev->dev, uap, &dev->res, portnr);
2482 if (ret)
2483 return ret;
2484
2485 amba_set_drvdata(dev, uap);
2486
2487 return pl011_register_port(uap);
2488}
2489
Linus Torvalds1da177e2005-04-16 15:20:36 -07002490static int pl011_remove(struct amba_device *dev)
2491{
2492 struct uart_amba_port *uap = amba_get_drvdata(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002493
Linus Torvalds1da177e2005-04-16 15:20:36 -07002494 uart_remove_one_port(&amba_reg, &uap->port);
Andre Przywara49bb3c82015-05-21 17:26:14 +01002495 pl011_unregister_port(uap);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002496 return 0;
2497}
2498
Ulf Hanssond0ce8502013-12-03 11:04:28 +01002499#ifdef CONFIG_PM_SLEEP
2500static int pl011_suspend(struct device *dev)
Leo Chenb736b892009-07-28 23:43:33 +01002501{
Ulf Hanssond0ce8502013-12-03 11:04:28 +01002502 struct uart_amba_port *uap = dev_get_drvdata(dev);
Leo Chenb736b892009-07-28 23:43:33 +01002503
2504 if (!uap)
2505 return -EINVAL;
2506
2507 return uart_suspend_port(&amba_reg, &uap->port);
2508}
2509
Ulf Hanssond0ce8502013-12-03 11:04:28 +01002510static int pl011_resume(struct device *dev)
Leo Chenb736b892009-07-28 23:43:33 +01002511{
Ulf Hanssond0ce8502013-12-03 11:04:28 +01002512 struct uart_amba_port *uap = dev_get_drvdata(dev);
Leo Chenb736b892009-07-28 23:43:33 +01002513
2514 if (!uap)
2515 return -EINVAL;
2516
2517 return uart_resume_port(&amba_reg, &uap->port);
2518}
2519#endif
2520
Ulf Hanssond0ce8502013-12-03 11:04:28 +01002521static SIMPLE_DEV_PM_OPS(pl011_dev_pm_ops, pl011_suspend, pl011_resume);
2522
Andre Przywara0dd1e242015-05-21 17:26:23 +01002523static int sbsa_uart_probe(struct platform_device *pdev)
2524{
2525 struct uart_amba_port *uap;
2526 struct resource *r;
2527 int portnr, ret;
2528 int baudrate;
2529
2530 /*
2531 * Check the mandatory baud rate parameter in the DT node early
2532 * so that we can easily exit with the error.
2533 */
2534 if (pdev->dev.of_node) {
2535 struct device_node *np = pdev->dev.of_node;
2536
2537 ret = of_property_read_u32(np, "current-speed", &baudrate);
2538 if (ret)
2539 return ret;
2540 } else {
2541 baudrate = 115200;
2542 }
2543
2544 portnr = pl011_find_free_port();
2545 if (portnr < 0)
2546 return portnr;
2547
2548 uap = devm_kzalloc(&pdev->dev, sizeof(struct uart_amba_port),
2549 GFP_KERNEL);
2550 if (!uap)
2551 return -ENOMEM;
2552
Russell King439403b2015-11-16 17:40:31 +00002553 uap->reg_offset = vendor_sbsa.reg_offset;
Andre Przywara0dd1e242015-05-21 17:26:23 +01002554 uap->vendor = &vendor_sbsa;
2555 uap->fifosize = 32;
Timur Tabi3b78fae2016-01-04 15:37:42 -06002556 uap->port.iotype = vendor_sbsa.access_32b ? UPIO_MEM32 : UPIO_MEM;
Andre Przywara0dd1e242015-05-21 17:26:23 +01002557 uap->port.irq = platform_get_irq(pdev, 0);
2558 uap->port.ops = &sbsa_uart_pops;
2559 uap->fixed_baud = baudrate;
2560
2561 snprintf(uap->type, sizeof(uap->type), "SBSA");
2562
2563 r = platform_get_resource(pdev, IORESOURCE_MEM, 0);
2564
2565 ret = pl011_setup_port(&pdev->dev, uap, r, portnr);
2566 if (ret)
2567 return ret;
2568
2569 platform_set_drvdata(pdev, uap);
2570
2571 return pl011_register_port(uap);
2572}
2573
2574static int sbsa_uart_remove(struct platform_device *pdev)
2575{
2576 struct uart_amba_port *uap = platform_get_drvdata(pdev);
2577
2578 uart_remove_one_port(&amba_reg, &uap->port);
2579 pl011_unregister_port(uap);
2580 return 0;
2581}
2582
2583static const struct of_device_id sbsa_uart_of_match[] = {
2584 { .compatible = "arm,sbsa-uart", },
2585 {},
2586};
2587MODULE_DEVICE_TABLE(of, sbsa_uart_of_match);
2588
Graeme Gregory3db9ab02015-05-21 17:26:24 +01002589static const struct acpi_device_id sbsa_uart_acpi_match[] = {
2590 { "ARMH0011", 0 },
2591 {},
2592};
2593MODULE_DEVICE_TABLE(acpi, sbsa_uart_acpi_match);
2594
Andre Przywara0dd1e242015-05-21 17:26:23 +01002595static struct platform_driver arm_sbsa_uart_platform_driver = {
2596 .probe = sbsa_uart_probe,
2597 .remove = sbsa_uart_remove,
2598 .driver = {
2599 .name = "sbsa-uart",
2600 .of_match_table = of_match_ptr(sbsa_uart_of_match),
Graeme Gregory3db9ab02015-05-21 17:26:24 +01002601 .acpi_match_table = ACPI_PTR(sbsa_uart_acpi_match),
Andre Przywara0dd1e242015-05-21 17:26:23 +01002602 },
2603};
2604
Russell King2c39c9e2010-07-27 08:50:16 +01002605static struct amba_id pl011_ids[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002606 {
2607 .id = 0x00041011,
2608 .mask = 0x000fffff,
Alessandro Rubini5926a292009-06-04 17:43:04 +01002609 .data = &vendor_arm,
2610 },
2611 {
2612 .id = 0x00380802,
2613 .mask = 0x00ffffff,
2614 .data = &vendor_st,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002615 },
2616 { 0, 0 },
2617};
2618
Dave Martin60f7a332011-10-05 15:15:22 +01002619MODULE_DEVICE_TABLE(amba, pl011_ids);
2620
Linus Torvalds1da177e2005-04-16 15:20:36 -07002621static struct amba_driver pl011_driver = {
2622 .drv = {
2623 .name = "uart-pl011",
Ulf Hanssond0ce8502013-12-03 11:04:28 +01002624 .pm = &pl011_dev_pm_ops,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002625 },
2626 .id_table = pl011_ids,
2627 .probe = pl011_probe,
2628 .remove = pl011_remove,
2629};
2630
2631static int __init pl011_init(void)
2632{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002633 printk(KERN_INFO "Serial: AMBA PL011 UART driver\n");
2634
Andre Przywara0dd1e242015-05-21 17:26:23 +01002635 if (platform_driver_register(&arm_sbsa_uart_platform_driver))
2636 pr_warn("could not register SBSA UART platform driver\n");
Greg Kroah-Hartman062a68a2015-09-04 09:11:24 -07002637 return amba_driver_register(&pl011_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002638}
2639
2640static void __exit pl011_exit(void)
2641{
Andre Przywara0dd1e242015-05-21 17:26:23 +01002642 platform_driver_unregister(&arm_sbsa_uart_platform_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002643 amba_driver_unregister(&pl011_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002644}
2645
Alessandro Rubini4dd9e742009-05-05 05:54:13 +01002646/*
2647 * While this can be a module, if builtin it's most likely the console
2648 * So let's leave module_exit but move module_init to an earlier place
2649 */
2650arch_initcall(pl011_init);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002651module_exit(pl011_exit);
2652
2653MODULE_AUTHOR("ARM Ltd/Deep Blue Solutions Ltd");
2654MODULE_DESCRIPTION("ARM AMBA serial port driver");
2655MODULE_LICENSE("GPL");