blob: 3f6b9150e5758c5bfc46125ca92112a926bc034b [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>
Linus Torvalds1da177e2005-04-16 15:20:36 -070061
62#define UART_NR 14
63
64#define SERIAL_AMBA_MAJOR 204
65#define SERIAL_AMBA_MINOR 64
66#define SERIAL_AMBA_NR UART_NR
67
68#define AMBA_ISR_PASS_LIMIT 256
69
Russell Kingb63d4f02005-11-19 11:10:35 +000070#define UART_DR_ERROR (UART011_DR_OE|UART011_DR_BE|UART011_DR_PE|UART011_DR_FE)
71#define UART_DUMMY_DR_RX (1 << 16)
Linus Torvalds1da177e2005-04-16 15:20:36 -070072
Alessandro Rubini5926a292009-06-04 17:43:04 +010073/* There is by now at least one vendor with differing details, so handle it */
74struct vendor_data {
75 unsigned int ifls;
Linus Walleijec489aa2010-06-02 08:13:52 +010076 unsigned int lcrh_tx;
77 unsigned int lcrh_rx;
Linus Walleijac3e3fb2010-06-02 20:40:22 +010078 bool oversampling;
Russell King38d62432010-12-22 17:59:16 +000079 bool dma_threshold;
Rajanikanth H.V4fd06902012-03-26 11:17:02 +020080 bool cts_event_workaround;
Andre Przywara71eec482015-05-21 17:26:21 +010081 bool always_enabled;
Jongsung Kim78506f22013-04-15 14:45:25 +090082
Jongsung Kimea336402013-05-10 18:05:35 +090083 unsigned int (*get_fifosize)(struct amba_device *dev);
Alessandro Rubini5926a292009-06-04 17:43:04 +010084};
85
Jongsung Kimea336402013-05-10 18:05:35 +090086static unsigned int get_fifosize_arm(struct amba_device *dev)
Jongsung Kim78506f22013-04-15 14:45:25 +090087{
Jongsung Kimea336402013-05-10 18:05:35 +090088 return amba_rev(dev) < 3 ? 16 : 32;
Jongsung Kim78506f22013-04-15 14:45:25 +090089}
90
Alessandro Rubini5926a292009-06-04 17:43:04 +010091static struct vendor_data vendor_arm = {
92 .ifls = UART011_IFLS_RX4_8|UART011_IFLS_TX4_8,
Linus Walleijec489aa2010-06-02 08:13:52 +010093 .lcrh_tx = UART011_LCRH,
94 .lcrh_rx = UART011_LCRH,
Linus Walleijac3e3fb2010-06-02 20:40:22 +010095 .oversampling = false,
Russell King38d62432010-12-22 17:59:16 +000096 .dma_threshold = false,
Rajanikanth H.V4fd06902012-03-26 11:17:02 +020097 .cts_event_workaround = false,
Andre Przywara71eec482015-05-21 17:26:21 +010098 .always_enabled = false,
Jongsung Kim78506f22013-04-15 14:45:25 +090099 .get_fifosize = get_fifosize_arm,
Alessandro Rubini5926a292009-06-04 17:43:04 +0100100};
101
Jongsung Kimea336402013-05-10 18:05:35 +0900102static unsigned int get_fifosize_st(struct amba_device *dev)
Jongsung Kim78506f22013-04-15 14:45:25 +0900103{
104 return 64;
105}
106
Alessandro Rubini5926a292009-06-04 17:43:04 +0100107static struct vendor_data vendor_st = {
108 .ifls = UART011_IFLS_RX_HALF|UART011_IFLS_TX_HALF,
Linus Walleijec489aa2010-06-02 08:13:52 +0100109 .lcrh_tx = ST_UART011_LCRH_TX,
110 .lcrh_rx = ST_UART011_LCRH_RX,
Linus Walleijac3e3fb2010-06-02 20:40:22 +0100111 .oversampling = true,
Russell King38d62432010-12-22 17:59:16 +0000112 .dma_threshold = true,
Rajanikanth H.V4fd06902012-03-26 11:17:02 +0200113 .cts_event_workaround = true,
Andre Przywara71eec482015-05-21 17:26:21 +0100114 .always_enabled = false,
Jongsung Kim78506f22013-04-15 14:45:25 +0900115 .get_fifosize = get_fifosize_st,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116};
117
Russell King68b65f72010-12-22 17:24:39 +0000118/* Deals with DMA transactions */
Linus Walleijead76f32011-02-24 13:21:08 +0100119
120struct pl011_sgbuf {
121 struct scatterlist sg;
122 char *buf;
123};
124
125struct pl011_dmarx_data {
126 struct dma_chan *chan;
127 struct completion complete;
128 bool use_buf_b;
129 struct pl011_sgbuf sgbuf_a;
130 struct pl011_sgbuf sgbuf_b;
131 dma_cookie_t cookie;
132 bool running;
Chanho Mincb06ff12013-03-27 18:38:11 +0900133 struct timer_list timer;
134 unsigned int last_residue;
135 unsigned long last_jiffies;
136 bool auto_poll_rate;
137 unsigned int poll_rate;
138 unsigned int poll_timeout;
Linus Walleijead76f32011-02-24 13:21:08 +0100139};
140
Russell King68b65f72010-12-22 17:24:39 +0000141struct pl011_dmatx_data {
142 struct dma_chan *chan;
143 struct scatterlist sg;
144 char *buf;
145 bool queued;
146};
147
Russell Kingc19f12b2010-12-22 17:48:26 +0000148/*
149 * We wrap our port structure around the generic uart_port.
150 */
151struct uart_amba_port {
152 struct uart_port port;
153 struct clk *clk;
154 const struct vendor_data *vendor;
Russell King68b65f72010-12-22 17:24:39 +0000155 unsigned int dmacr; /* dma control reg */
Russell Kingc19f12b2010-12-22 17:48:26 +0000156 unsigned int im; /* interrupt mask */
157 unsigned int old_status;
Russell Kingffca2b12010-12-22 17:13:05 +0000158 unsigned int fifosize; /* vendor-specific */
Russell Kingc19f12b2010-12-22 17:48:26 +0000159 unsigned int lcrh_tx; /* vendor-specific */
160 unsigned int lcrh_rx; /* vendor-specific */
Shreshtha Kumar Sahud8d8ffa2012-01-18 15:53:59 +0530161 unsigned int old_cr; /* state during shutdown */
Russell Kingc19f12b2010-12-22 17:48:26 +0000162 bool autorts;
163 char type[12];
Russell King68b65f72010-12-22 17:24:39 +0000164#ifdef CONFIG_DMA_ENGINE
165 /* DMA stuff */
Linus Walleijead76f32011-02-24 13:21:08 +0100166 bool using_tx_dma;
167 bool using_rx_dma;
168 struct pl011_dmarx_data dmarx;
Russell King68b65f72010-12-22 17:24:39 +0000169 struct pl011_dmatx_data dmatx;
Jorge Ramirez-Ortiz1c9be312015-03-06 13:05:40 -0500170 bool dma_probed;
Russell King68b65f72010-12-22 17:24:39 +0000171#endif
Russell Kingc19f12b2010-12-22 17:48:26 +0000172};
173
Russell King68b65f72010-12-22 17:24:39 +0000174/*
Linus Walleij29772c42011-02-24 13:21:36 +0100175 * Reads up to 256 characters from the FIFO or until it's empty and
176 * inserts them into the TTY layer. Returns the number of characters
177 * read from the FIFO.
178 */
179static int pl011_fifo_to_tty(struct uart_amba_port *uap)
180{
181 u16 status, ch;
182 unsigned int flag, max_count = 256;
183 int fifotaken = 0;
184
185 while (max_count--) {
186 status = readw(uap->port.membase + UART01x_FR);
187 if (status & UART01x_FR_RXFE)
188 break;
189
190 /* Take chars from the FIFO and update status */
191 ch = readw(uap->port.membase + UART01x_DR) |
192 UART_DUMMY_DR_RX;
193 flag = TTY_NORMAL;
194 uap->port.icount.rx++;
195 fifotaken++;
196
197 if (unlikely(ch & UART_DR_ERROR)) {
198 if (ch & UART011_DR_BE) {
199 ch &= ~(UART011_DR_FE | UART011_DR_PE);
200 uap->port.icount.brk++;
201 if (uart_handle_break(&uap->port))
202 continue;
203 } else if (ch & UART011_DR_PE)
204 uap->port.icount.parity++;
205 else if (ch & UART011_DR_FE)
206 uap->port.icount.frame++;
207 if (ch & UART011_DR_OE)
208 uap->port.icount.overrun++;
209
210 ch &= uap->port.read_status_mask;
211
212 if (ch & UART011_DR_BE)
213 flag = TTY_BREAK;
214 else if (ch & UART011_DR_PE)
215 flag = TTY_PARITY;
216 else if (ch & UART011_DR_FE)
217 flag = TTY_FRAME;
218 }
219
220 if (uart_handle_sysrq_char(&uap->port, ch & 255))
221 continue;
222
223 uart_insert_char(&uap->port, ch, UART011_DR_OE, ch, flag);
224 }
225
226 return fifotaken;
227}
228
229
230/*
Russell King68b65f72010-12-22 17:24:39 +0000231 * All the DMA operation mode stuff goes inside this ifdef.
232 * This assumes that you have a generic DMA device interface,
233 * no custom DMA interfaces are supported.
234 */
235#ifdef CONFIG_DMA_ENGINE
236
237#define PL011_DMA_BUFFER_SIZE PAGE_SIZE
238
Linus Walleijead76f32011-02-24 13:21:08 +0100239static int pl011_sgbuf_init(struct dma_chan *chan, struct pl011_sgbuf *sg,
240 enum dma_data_direction dir)
241{
Chanho Mincb06ff12013-03-27 18:38:11 +0900242 dma_addr_t dma_addr;
243
244 sg->buf = dma_alloc_coherent(chan->device->dev,
245 PL011_DMA_BUFFER_SIZE, &dma_addr, GFP_KERNEL);
Linus Walleijead76f32011-02-24 13:21:08 +0100246 if (!sg->buf)
247 return -ENOMEM;
248
Chanho Mincb06ff12013-03-27 18:38:11 +0900249 sg_init_table(&sg->sg, 1);
250 sg_set_page(&sg->sg, phys_to_page(dma_addr),
251 PL011_DMA_BUFFER_SIZE, offset_in_page(dma_addr));
252 sg_dma_address(&sg->sg) = dma_addr;
Andrew Jacksonc64be922014-11-07 14:14:43 +0000253 sg_dma_len(&sg->sg) = PL011_DMA_BUFFER_SIZE;
Linus Walleijead76f32011-02-24 13:21:08 +0100254
Linus Walleijead76f32011-02-24 13:21:08 +0100255 return 0;
256}
257
258static void pl011_sgbuf_free(struct dma_chan *chan, struct pl011_sgbuf *sg,
259 enum dma_data_direction dir)
260{
261 if (sg->buf) {
Chanho Mincb06ff12013-03-27 18:38:11 +0900262 dma_free_coherent(chan->device->dev,
263 PL011_DMA_BUFFER_SIZE, sg->buf,
264 sg_dma_address(&sg->sg));
Linus Walleijead76f32011-02-24 13:21:08 +0100265 }
266}
267
Jorge Ramirez-Ortiz1c9be312015-03-06 13:05:40 -0500268static void pl011_dma_probe(struct uart_amba_port *uap)
Russell King68b65f72010-12-22 17:24:39 +0000269{
270 /* DMA is the sole user of the platform data right now */
Jingoo Han574de552013-07-30 17:06:57 +0900271 struct amba_pl011_data *plat = dev_get_platdata(uap->port.dev);
Jorge Ramirez-Ortiz1c9be312015-03-06 13:05:40 -0500272 struct device *dev = uap->port.dev;
Russell King68b65f72010-12-22 17:24:39 +0000273 struct dma_slave_config tx_conf = {
274 .dst_addr = uap->port.mapbase + UART01x_DR,
275 .dst_addr_width = DMA_SLAVE_BUSWIDTH_1_BYTE,
Vinod Koula485df42011-10-14 10:47:38 +0530276 .direction = DMA_MEM_TO_DEV,
Russell King68b65f72010-12-22 17:24:39 +0000277 .dst_maxburst = uap->fifosize >> 1,
Viresh Kumar258aea72012-02-01 16:12:19 +0530278 .device_fc = false,
Russell King68b65f72010-12-22 17:24:39 +0000279 };
280 struct dma_chan *chan;
281 dma_cap_mask_t mask;
282
Jorge Ramirez-Ortiz1c9be312015-03-06 13:05:40 -0500283 uap->dma_probed = true;
284 chan = dma_request_slave_channel_reason(dev, "tx");
285 if (IS_ERR(chan)) {
286 if (PTR_ERR(chan) == -EPROBE_DEFER) {
Jorge Ramirez-Ortiz1c9be312015-03-06 13:05:40 -0500287 uap->dma_probed = false;
288 return;
289 }
Russell King68b65f72010-12-22 17:24:39 +0000290
Arnd Bergmann787b0c12013-01-28 16:24:37 +0000291 /* We need platform data */
292 if (!plat || !plat->dma_filter) {
293 dev_info(uap->port.dev, "no DMA platform data\n");
294 return;
295 }
296
297 /* Try to acquire a generic DMA engine slave TX channel */
298 dma_cap_zero(mask);
299 dma_cap_set(DMA_SLAVE, mask);
300
301 chan = dma_request_channel(mask, plat->dma_filter,
302 plat->dma_tx_param);
303 if (!chan) {
304 dev_err(uap->port.dev, "no TX DMA channel!\n");
305 return;
306 }
Russell King68b65f72010-12-22 17:24:39 +0000307 }
308
309 dmaengine_slave_config(chan, &tx_conf);
310 uap->dmatx.chan = chan;
311
312 dev_info(uap->port.dev, "DMA channel TX %s\n",
313 dma_chan_name(uap->dmatx.chan));
Linus Walleijead76f32011-02-24 13:21:08 +0100314
315 /* Optionally make use of an RX channel as well */
Arnd Bergmann787b0c12013-01-28 16:24:37 +0000316 chan = dma_request_slave_channel(dev, "rx");
Rob Herring0d3c6732014-04-18 17:19:57 -0500317
Arnd Bergmann787b0c12013-01-28 16:24:37 +0000318 if (!chan && plat->dma_rx_param) {
319 chan = dma_request_channel(mask, plat->dma_filter, plat->dma_rx_param);
320
321 if (!chan) {
322 dev_err(uap->port.dev, "no RX DMA channel!\n");
323 return;
324 }
325 }
326
327 if (chan) {
Linus Walleijead76f32011-02-24 13:21:08 +0100328 struct dma_slave_config rx_conf = {
329 .src_addr = uap->port.mapbase + UART01x_DR,
330 .src_addr_width = DMA_SLAVE_BUSWIDTH_1_BYTE,
Vinod Koula485df42011-10-14 10:47:38 +0530331 .direction = DMA_DEV_TO_MEM,
Guennadi Liakhovetskib2aeb772014-04-12 19:47:17 +0200332 .src_maxburst = uap->fifosize >> 2,
Viresh Kumar258aea72012-02-01 16:12:19 +0530333 .device_fc = false,
Linus Walleijead76f32011-02-24 13:21:08 +0100334 };
Andrew Jackson2d3b7d62014-11-07 14:14:47 +0000335 struct dma_slave_caps caps;
Linus Walleijead76f32011-02-24 13:21:08 +0100336
Andrew Jackson2d3b7d62014-11-07 14:14:47 +0000337 /*
338 * Some DMA controllers provide information on their capabilities.
339 * If the controller does, check for suitable residue processing
340 * otherwise assime all is well.
341 */
342 if (0 == dma_get_slave_caps(chan, &caps)) {
343 if (caps.residue_granularity ==
344 DMA_RESIDUE_GRANULARITY_DESCRIPTOR) {
345 dma_release_channel(chan);
346 dev_info(uap->port.dev,
347 "RX DMA disabled - no residue processing\n");
348 return;
349 }
350 }
Linus Walleijead76f32011-02-24 13:21:08 +0100351 dmaengine_slave_config(chan, &rx_conf);
352 uap->dmarx.chan = chan;
353
Andrew Jackson98267d32014-11-07 14:14:23 +0000354 uap->dmarx.auto_poll_rate = false;
Greg Kroah-Hartman8f898bf2013-12-17 09:33:18 -0800355 if (plat && plat->dma_rx_poll_enable) {
Chanho Mincb06ff12013-03-27 18:38:11 +0900356 /* Set poll rate if specified. */
357 if (plat->dma_rx_poll_rate) {
358 uap->dmarx.auto_poll_rate = false;
359 uap->dmarx.poll_rate = plat->dma_rx_poll_rate;
360 } else {
361 /*
362 * 100 ms defaults to poll rate if not
363 * specified. This will be adjusted with
364 * the baud rate at set_termios.
365 */
366 uap->dmarx.auto_poll_rate = true;
367 uap->dmarx.poll_rate = 100;
368 }
369 /* 3 secs defaults poll_timeout if not specified. */
370 if (plat->dma_rx_poll_timeout)
371 uap->dmarx.poll_timeout =
372 plat->dma_rx_poll_timeout;
373 else
374 uap->dmarx.poll_timeout = 3000;
Andrew Jackson98267d32014-11-07 14:14:23 +0000375 } else if (!plat && dev->of_node) {
376 uap->dmarx.auto_poll_rate = of_property_read_bool(
377 dev->of_node, "auto-poll");
378 if (uap->dmarx.auto_poll_rate) {
379 u32 x;
Chanho Mincb06ff12013-03-27 18:38:11 +0900380
Andrew Jackson98267d32014-11-07 14:14:23 +0000381 if (0 == of_property_read_u32(dev->of_node,
382 "poll-rate-ms", &x))
383 uap->dmarx.poll_rate = x;
384 else
385 uap->dmarx.poll_rate = 100;
386 if (0 == of_property_read_u32(dev->of_node,
387 "poll-timeout-ms", &x))
388 uap->dmarx.poll_timeout = x;
389 else
390 uap->dmarx.poll_timeout = 3000;
391 }
392 }
Linus Walleijead76f32011-02-24 13:21:08 +0100393 dev_info(uap->port.dev, "DMA channel RX %s\n",
394 dma_chan_name(uap->dmarx.chan));
395 }
Russell King68b65f72010-12-22 17:24:39 +0000396}
397
Russell King68b65f72010-12-22 17:24:39 +0000398static void pl011_dma_remove(struct uart_amba_port *uap)
399{
Russell King68b65f72010-12-22 17:24:39 +0000400 if (uap->dmatx.chan)
401 dma_release_channel(uap->dmatx.chan);
Linus Walleijead76f32011-02-24 13:21:08 +0100402 if (uap->dmarx.chan)
403 dma_release_channel(uap->dmarx.chan);
Russell King68b65f72010-12-22 17:24:39 +0000404}
405
Dave Martin734745c2015-03-04 12:27:33 +0000406/* Forward declare these for the refill routine */
Russell King68b65f72010-12-22 17:24:39 +0000407static int pl011_dma_tx_refill(struct uart_amba_port *uap);
Dave Martin734745c2015-03-04 12:27:33 +0000408static void pl011_start_tx_pio(struct uart_amba_port *uap);
Russell King68b65f72010-12-22 17:24:39 +0000409
410/*
411 * The current DMA TX buffer has been sent.
412 * Try to queue up another DMA buffer.
413 */
414static void pl011_dma_tx_callback(void *data)
415{
416 struct uart_amba_port *uap = data;
417 struct pl011_dmatx_data *dmatx = &uap->dmatx;
418 unsigned long flags;
419 u16 dmacr;
420
421 spin_lock_irqsave(&uap->port.lock, flags);
422 if (uap->dmatx.queued)
423 dma_unmap_sg(dmatx->chan->device->dev, &dmatx->sg, 1,
424 DMA_TO_DEVICE);
425
426 dmacr = uap->dmacr;
427 uap->dmacr = dmacr & ~UART011_TXDMAE;
428 writew(uap->dmacr, uap->port.membase + UART011_DMACR);
429
430 /*
431 * If TX DMA was disabled, it means that we've stopped the DMA for
432 * some reason (eg, XOFF received, or we want to send an X-char.)
433 *
434 * Note: we need to be careful here of a potential race between DMA
435 * and the rest of the driver - if the driver disables TX DMA while
436 * a TX buffer completing, we must update the tx queued status to
437 * get further refills (hence we check dmacr).
438 */
439 if (!(dmacr & UART011_TXDMAE) || uart_tx_stopped(&uap->port) ||
440 uart_circ_empty(&uap->port.state->xmit)) {
441 uap->dmatx.queued = false;
442 spin_unlock_irqrestore(&uap->port.lock, flags);
443 return;
444 }
445
Dave Martin734745c2015-03-04 12:27:33 +0000446 if (pl011_dma_tx_refill(uap) <= 0)
Russell King68b65f72010-12-22 17:24:39 +0000447 /*
448 * We didn't queue a DMA buffer for some reason, but we
449 * have data pending to be sent. Re-enable the TX IRQ.
450 */
Dave Martin734745c2015-03-04 12:27:33 +0000451 pl011_start_tx_pio(uap);
452
Russell King68b65f72010-12-22 17:24:39 +0000453 spin_unlock_irqrestore(&uap->port.lock, flags);
454}
455
456/*
457 * Try to refill the TX DMA buffer.
458 * Locking: called with port lock held and IRQs disabled.
459 * Returns:
460 * 1 if we queued up a TX DMA buffer.
461 * 0 if we didn't want to handle this by DMA
462 * <0 on error
463 */
464static int pl011_dma_tx_refill(struct uart_amba_port *uap)
465{
466 struct pl011_dmatx_data *dmatx = &uap->dmatx;
467 struct dma_chan *chan = dmatx->chan;
468 struct dma_device *dma_dev = chan->device;
469 struct dma_async_tx_descriptor *desc;
470 struct circ_buf *xmit = &uap->port.state->xmit;
471 unsigned int count;
472
473 /*
474 * Try to avoid the overhead involved in using DMA if the
475 * transaction fits in the first half of the FIFO, by using
476 * the standard interrupt handling. This ensures that we
477 * issue a uart_write_wakeup() at the appropriate time.
478 */
479 count = uart_circ_chars_pending(xmit);
480 if (count < (uap->fifosize >> 1)) {
481 uap->dmatx.queued = false;
482 return 0;
483 }
484
485 /*
486 * Bodge: don't send the last character by DMA, as this
487 * will prevent XON from notifying us to restart DMA.
488 */
489 count -= 1;
490
491 /* Else proceed to copy the TX chars to the DMA buffer and fire DMA */
492 if (count > PL011_DMA_BUFFER_SIZE)
493 count = PL011_DMA_BUFFER_SIZE;
494
495 if (xmit->tail < xmit->head)
496 memcpy(&dmatx->buf[0], &xmit->buf[xmit->tail], count);
497 else {
498 size_t first = UART_XMIT_SIZE - xmit->tail;
Andrew Jacksone2a545a2014-11-07 14:14:39 +0000499 size_t second;
500
501 if (first > count)
502 first = count;
503 second = count - first;
Russell King68b65f72010-12-22 17:24:39 +0000504
505 memcpy(&dmatx->buf[0], &xmit->buf[xmit->tail], first);
506 if (second)
507 memcpy(&dmatx->buf[first], &xmit->buf[0], second);
508 }
509
510 dmatx->sg.length = count;
511
512 if (dma_map_sg(dma_dev->dev, &dmatx->sg, 1, DMA_TO_DEVICE) != 1) {
513 uap->dmatx.queued = false;
514 dev_dbg(uap->port.dev, "unable to map TX DMA\n");
515 return -EBUSY;
516 }
517
Alexandre Bounine16052822012-03-08 16:11:18 -0500518 desc = dmaengine_prep_slave_sg(chan, &dmatx->sg, 1, DMA_MEM_TO_DEV,
Russell King68b65f72010-12-22 17:24:39 +0000519 DMA_PREP_INTERRUPT | DMA_CTRL_ACK);
520 if (!desc) {
521 dma_unmap_sg(dma_dev->dev, &dmatx->sg, 1, DMA_TO_DEVICE);
522 uap->dmatx.queued = false;
523 /*
524 * If DMA cannot be used right now, we complete this
525 * transaction via IRQ and let the TTY layer retry.
526 */
527 dev_dbg(uap->port.dev, "TX DMA busy\n");
528 return -EBUSY;
529 }
530
531 /* Some data to go along to the callback */
532 desc->callback = pl011_dma_tx_callback;
533 desc->callback_param = uap;
534
535 /* All errors should happen at prepare time */
536 dmaengine_submit(desc);
537
538 /* Fire the DMA transaction */
539 dma_dev->device_issue_pending(chan);
540
541 uap->dmacr |= UART011_TXDMAE;
542 writew(uap->dmacr, uap->port.membase + UART011_DMACR);
543 uap->dmatx.queued = true;
544
545 /*
546 * Now we know that DMA will fire, so advance the ring buffer
547 * with the stuff we just dispatched.
548 */
549 xmit->tail = (xmit->tail + count) & (UART_XMIT_SIZE - 1);
550 uap->port.icount.tx += count;
551
552 if (uart_circ_chars_pending(xmit) < WAKEUP_CHARS)
553 uart_write_wakeup(&uap->port);
554
555 return 1;
556}
557
558/*
559 * We received a transmit interrupt without a pending X-char but with
560 * pending characters.
561 * Locking: called with port lock held and IRQs disabled.
562 * Returns:
563 * false if we want to use PIO to transmit
564 * true if we queued a DMA buffer
565 */
566static bool pl011_dma_tx_irq(struct uart_amba_port *uap)
567{
Linus Walleijead76f32011-02-24 13:21:08 +0100568 if (!uap->using_tx_dma)
Russell King68b65f72010-12-22 17:24:39 +0000569 return false;
570
571 /*
572 * If we already have a TX buffer queued, but received a
573 * TX interrupt, it will be because we've just sent an X-char.
574 * Ensure the TX DMA is enabled and the TX IRQ is disabled.
575 */
576 if (uap->dmatx.queued) {
577 uap->dmacr |= UART011_TXDMAE;
578 writew(uap->dmacr, uap->port.membase + UART011_DMACR);
579 uap->im &= ~UART011_TXIM;
580 writew(uap->im, uap->port.membase + UART011_IMSC);
581 return true;
582 }
583
584 /*
585 * We don't have a TX buffer queued, so try to queue one.
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300586 * If we successfully queued a buffer, mask the TX IRQ.
Russell King68b65f72010-12-22 17:24:39 +0000587 */
588 if (pl011_dma_tx_refill(uap) > 0) {
589 uap->im &= ~UART011_TXIM;
590 writew(uap->im, uap->port.membase + UART011_IMSC);
591 return true;
592 }
593 return false;
594}
595
596/*
597 * Stop the DMA transmit (eg, due to received XOFF).
598 * Locking: called with port lock held and IRQs disabled.
599 */
600static inline void pl011_dma_tx_stop(struct uart_amba_port *uap)
601{
602 if (uap->dmatx.queued) {
603 uap->dmacr &= ~UART011_TXDMAE;
604 writew(uap->dmacr, uap->port.membase + UART011_DMACR);
605 }
606}
607
608/*
609 * Try to start a DMA transmit, or in the case of an XON/OFF
610 * character queued for send, try to get that character out ASAP.
611 * Locking: called with port lock held and IRQs disabled.
612 * Returns:
613 * false if we want the TX IRQ to be enabled
614 * true if we have a buffer queued
615 */
616static inline bool pl011_dma_tx_start(struct uart_amba_port *uap)
617{
618 u16 dmacr;
619
Linus Walleijead76f32011-02-24 13:21:08 +0100620 if (!uap->using_tx_dma)
Russell King68b65f72010-12-22 17:24:39 +0000621 return false;
622
623 if (!uap->port.x_char) {
624 /* no X-char, try to push chars out in DMA mode */
625 bool ret = true;
626
627 if (!uap->dmatx.queued) {
628 if (pl011_dma_tx_refill(uap) > 0) {
629 uap->im &= ~UART011_TXIM;
Dave Martin734745c2015-03-04 12:27:33 +0000630 writew(uap->im, uap->port.membase +
631 UART011_IMSC);
632 } else
Russell King68b65f72010-12-22 17:24:39 +0000633 ret = false;
Russell King68b65f72010-12-22 17:24:39 +0000634 } else if (!(uap->dmacr & UART011_TXDMAE)) {
635 uap->dmacr |= UART011_TXDMAE;
636 writew(uap->dmacr,
637 uap->port.membase + UART011_DMACR);
638 }
639 return ret;
640 }
641
642 /*
643 * We have an X-char to send. Disable DMA to prevent it loading
644 * the TX fifo, and then see if we can stuff it into the FIFO.
645 */
646 dmacr = uap->dmacr;
647 uap->dmacr &= ~UART011_TXDMAE;
648 writew(uap->dmacr, uap->port.membase + UART011_DMACR);
649
650 if (readw(uap->port.membase + UART01x_FR) & UART01x_FR_TXFF) {
651 /*
652 * No space in the FIFO, so enable the transmit interrupt
653 * so we know when there is space. Note that once we've
654 * loaded the character, we should just re-enable DMA.
655 */
656 return false;
657 }
658
659 writew(uap->port.x_char, uap->port.membase + UART01x_DR);
660 uap->port.icount.tx++;
661 uap->port.x_char = 0;
662
663 /* Success - restore the DMA state */
664 uap->dmacr = dmacr;
665 writew(dmacr, uap->port.membase + UART011_DMACR);
666
667 return true;
668}
669
670/*
671 * Flush the transmit buffer.
672 * Locking: called with port lock held and IRQs disabled.
673 */
674static void pl011_dma_flush_buffer(struct uart_port *port)
Fabio Estevamb83286b2013-08-09 17:58:51 -0300675__releases(&uap->port.lock)
676__acquires(&uap->port.lock)
Russell King68b65f72010-12-22 17:24:39 +0000677{
Daniel Thompsona5820c22014-09-03 12:51:55 +0100678 struct uart_amba_port *uap =
679 container_of(port, struct uart_amba_port, port);
Russell King68b65f72010-12-22 17:24:39 +0000680
Linus Walleijead76f32011-02-24 13:21:08 +0100681 if (!uap->using_tx_dma)
Russell King68b65f72010-12-22 17:24:39 +0000682 return;
683
684 /* Avoid deadlock with the DMA engine callback */
685 spin_unlock(&uap->port.lock);
686 dmaengine_terminate_all(uap->dmatx.chan);
687 spin_lock(&uap->port.lock);
688 if (uap->dmatx.queued) {
689 dma_unmap_sg(uap->dmatx.chan->device->dev, &uap->dmatx.sg, 1,
690 DMA_TO_DEVICE);
691 uap->dmatx.queued = false;
692 uap->dmacr &= ~UART011_TXDMAE;
693 writew(uap->dmacr, uap->port.membase + UART011_DMACR);
694 }
695}
696
Linus Walleijead76f32011-02-24 13:21:08 +0100697static void pl011_dma_rx_callback(void *data);
698
699static int pl011_dma_rx_trigger_dma(struct uart_amba_port *uap)
700{
701 struct dma_chan *rxchan = uap->dmarx.chan;
Linus Walleijead76f32011-02-24 13:21:08 +0100702 struct pl011_dmarx_data *dmarx = &uap->dmarx;
703 struct dma_async_tx_descriptor *desc;
704 struct pl011_sgbuf *sgbuf;
705
706 if (!rxchan)
707 return -EIO;
708
709 /* Start the RX DMA job */
710 sgbuf = uap->dmarx.use_buf_b ?
711 &uap->dmarx.sgbuf_b : &uap->dmarx.sgbuf_a;
Alexandre Bounine16052822012-03-08 16:11:18 -0500712 desc = dmaengine_prep_slave_sg(rxchan, &sgbuf->sg, 1,
Vinod Koula485df42011-10-14 10:47:38 +0530713 DMA_DEV_TO_MEM,
Linus Walleijead76f32011-02-24 13:21:08 +0100714 DMA_PREP_INTERRUPT | DMA_CTRL_ACK);
715 /*
716 * If the DMA engine is busy and cannot prepare a
717 * channel, no big deal, the driver will fall back
718 * to interrupt mode as a result of this error code.
719 */
720 if (!desc) {
721 uap->dmarx.running = false;
722 dmaengine_terminate_all(rxchan);
723 return -EBUSY;
724 }
725
726 /* Some data to go along to the callback */
727 desc->callback = pl011_dma_rx_callback;
728 desc->callback_param = uap;
729 dmarx->cookie = dmaengine_submit(desc);
730 dma_async_issue_pending(rxchan);
731
732 uap->dmacr |= UART011_RXDMAE;
733 writew(uap->dmacr, uap->port.membase + UART011_DMACR);
734 uap->dmarx.running = true;
735
736 uap->im &= ~UART011_RXIM;
737 writew(uap->im, uap->port.membase + UART011_IMSC);
738
739 return 0;
740}
741
742/*
743 * This is called when either the DMA job is complete, or
744 * the FIFO timeout interrupt occurred. This must be called
745 * with the port spinlock uap->port.lock held.
746 */
747static void pl011_dma_rx_chars(struct uart_amba_port *uap,
748 u32 pending, bool use_buf_b,
749 bool readfifo)
750{
Jiri Slaby05c7cd32013-01-03 15:53:04 +0100751 struct tty_port *port = &uap->port.state->port;
Linus Walleijead76f32011-02-24 13:21:08 +0100752 struct pl011_sgbuf *sgbuf = use_buf_b ?
753 &uap->dmarx.sgbuf_b : &uap->dmarx.sgbuf_a;
Linus Walleijead76f32011-02-24 13:21:08 +0100754 int dma_count = 0;
755 u32 fifotaken = 0; /* only used for vdbg() */
756
Chanho Mincb06ff12013-03-27 18:38:11 +0900757 struct pl011_dmarx_data *dmarx = &uap->dmarx;
758 int dmataken = 0;
759
760 if (uap->dmarx.poll_rate) {
761 /* The data can be taken by polling */
762 dmataken = sgbuf->sg.length - dmarx->last_residue;
763 /* Recalculate the pending size */
764 if (pending >= dmataken)
765 pending -= dmataken;
766 }
767
768 /* Pick the remain data from the DMA */
Linus Walleijead76f32011-02-24 13:21:08 +0100769 if (pending) {
Linus Walleijead76f32011-02-24 13:21:08 +0100770
771 /*
772 * First take all chars in the DMA pipe, then look in the FIFO.
773 * Note that tty_insert_flip_buf() tries to take as many chars
774 * as it can.
775 */
Chanho Mincb06ff12013-03-27 18:38:11 +0900776 dma_count = tty_insert_flip_string(port, sgbuf->buf + dmataken,
777 pending);
Linus Walleijead76f32011-02-24 13:21:08 +0100778
779 uap->port.icount.rx += dma_count;
780 if (dma_count < pending)
781 dev_warn(uap->port.dev,
782 "couldn't insert all characters (TTY is full?)\n");
783 }
784
Chanho Mincb06ff12013-03-27 18:38:11 +0900785 /* Reset the last_residue for Rx DMA poll */
786 if (uap->dmarx.poll_rate)
787 dmarx->last_residue = sgbuf->sg.length;
788
Linus Walleijead76f32011-02-24 13:21:08 +0100789 /*
790 * Only continue with trying to read the FIFO if all DMA chars have
791 * been taken first.
792 */
793 if (dma_count == pending && readfifo) {
794 /* Clear any error flags */
795 writew(UART011_OEIS | UART011_BEIS | UART011_PEIS | UART011_FEIS,
796 uap->port.membase + UART011_ICR);
797
798 /*
799 * If we read all the DMA'd characters, and we had an
Linus Walleij29772c42011-02-24 13:21:36 +0100800 * incomplete buffer, that could be due to an rx error, or
801 * maybe we just timed out. Read any pending chars and check
802 * the error status.
803 *
804 * Error conditions will only occur in the FIFO, these will
805 * trigger an immediate interrupt and stop the DMA job, so we
806 * will always find the error in the FIFO, never in the DMA
807 * buffer.
Linus Walleijead76f32011-02-24 13:21:08 +0100808 */
Linus Walleij29772c42011-02-24 13:21:36 +0100809 fifotaken = pl011_fifo_to_tty(uap);
Linus Walleijead76f32011-02-24 13:21:08 +0100810 }
811
812 spin_unlock(&uap->port.lock);
813 dev_vdbg(uap->port.dev,
814 "Took %d chars from DMA buffer and %d chars from the FIFO\n",
815 dma_count, fifotaken);
Jiri Slaby2e124b42013-01-03 15:53:06 +0100816 tty_flip_buffer_push(port);
Linus Walleijead76f32011-02-24 13:21:08 +0100817 spin_lock(&uap->port.lock);
818}
819
820static void pl011_dma_rx_irq(struct uart_amba_port *uap)
821{
822 struct pl011_dmarx_data *dmarx = &uap->dmarx;
823 struct dma_chan *rxchan = dmarx->chan;
824 struct pl011_sgbuf *sgbuf = dmarx->use_buf_b ?
825 &dmarx->sgbuf_b : &dmarx->sgbuf_a;
826 size_t pending;
827 struct dma_tx_state state;
828 enum dma_status dmastat;
829
830 /*
831 * Pause the transfer so we can trust the current counter,
832 * do this before we pause the PL011 block, else we may
833 * overflow the FIFO.
834 */
835 if (dmaengine_pause(rxchan))
836 dev_err(uap->port.dev, "unable to pause DMA transfer\n");
837 dmastat = rxchan->device->device_tx_status(rxchan,
838 dmarx->cookie, &state);
839 if (dmastat != DMA_PAUSED)
840 dev_err(uap->port.dev, "unable to pause DMA transfer\n");
841
842 /* Disable RX DMA - incoming data will wait in the FIFO */
843 uap->dmacr &= ~UART011_RXDMAE;
844 writew(uap->dmacr, uap->port.membase + UART011_DMACR);
845 uap->dmarx.running = false;
846
847 pending = sgbuf->sg.length - state.residue;
848 BUG_ON(pending > PL011_DMA_BUFFER_SIZE);
849 /* Then we terminate the transfer - we now know our residue */
850 dmaengine_terminate_all(rxchan);
851
852 /*
853 * This will take the chars we have so far and insert
854 * into the framework.
855 */
856 pl011_dma_rx_chars(uap, pending, dmarx->use_buf_b, true);
857
858 /* Switch buffer & re-trigger DMA job */
859 dmarx->use_buf_b = !dmarx->use_buf_b;
860 if (pl011_dma_rx_trigger_dma(uap)) {
861 dev_dbg(uap->port.dev, "could not retrigger RX DMA job "
862 "fall back to interrupt mode\n");
863 uap->im |= UART011_RXIM;
864 writew(uap->im, uap->port.membase + UART011_IMSC);
865 }
866}
867
868static void pl011_dma_rx_callback(void *data)
869{
870 struct uart_amba_port *uap = data;
871 struct pl011_dmarx_data *dmarx = &uap->dmarx;
Chanho Min6dc01aa2012-02-20 10:24:40 +0900872 struct dma_chan *rxchan = dmarx->chan;
Linus Walleijead76f32011-02-24 13:21:08 +0100873 bool lastbuf = dmarx->use_buf_b;
Chanho Min6dc01aa2012-02-20 10:24:40 +0900874 struct pl011_sgbuf *sgbuf = dmarx->use_buf_b ?
875 &dmarx->sgbuf_b : &dmarx->sgbuf_a;
876 size_t pending;
877 struct dma_tx_state state;
Linus Walleijead76f32011-02-24 13:21:08 +0100878 int ret;
879
880 /*
881 * This completion interrupt occurs typically when the
882 * RX buffer is totally stuffed but no timeout has yet
883 * occurred. When that happens, we just want the RX
884 * routine to flush out the secondary DMA buffer while
885 * we immediately trigger the next DMA job.
886 */
887 spin_lock_irq(&uap->port.lock);
Chanho Min6dc01aa2012-02-20 10:24:40 +0900888 /*
889 * Rx data can be taken by the UART interrupts during
890 * the DMA irq handler. So we check the residue here.
891 */
892 rxchan->device->device_tx_status(rxchan, dmarx->cookie, &state);
893 pending = sgbuf->sg.length - state.residue;
894 BUG_ON(pending > PL011_DMA_BUFFER_SIZE);
895 /* Then we terminate the transfer - we now know our residue */
896 dmaengine_terminate_all(rxchan);
897
Linus Walleijead76f32011-02-24 13:21:08 +0100898 uap->dmarx.running = false;
899 dmarx->use_buf_b = !lastbuf;
900 ret = pl011_dma_rx_trigger_dma(uap);
901
Chanho Min6dc01aa2012-02-20 10:24:40 +0900902 pl011_dma_rx_chars(uap, pending, lastbuf, false);
Linus Walleijead76f32011-02-24 13:21:08 +0100903 spin_unlock_irq(&uap->port.lock);
904 /*
905 * Do this check after we picked the DMA chars so we don't
906 * get some IRQ immediately from RX.
907 */
908 if (ret) {
909 dev_dbg(uap->port.dev, "could not retrigger RX DMA job "
910 "fall back to interrupt mode\n");
911 uap->im |= UART011_RXIM;
912 writew(uap->im, uap->port.membase + UART011_IMSC);
913 }
914}
915
916/*
917 * Stop accepting received characters, when we're shutting down or
918 * suspending this port.
919 * Locking: called with port lock held and IRQs disabled.
920 */
921static inline void pl011_dma_rx_stop(struct uart_amba_port *uap)
922{
923 /* FIXME. Just disable the DMA enable */
924 uap->dmacr &= ~UART011_RXDMAE;
925 writew(uap->dmacr, uap->port.membase + UART011_DMACR);
926}
Russell King68b65f72010-12-22 17:24:39 +0000927
Chanho Mincb06ff12013-03-27 18:38:11 +0900928/*
929 * Timer handler for Rx DMA polling.
930 * Every polling, It checks the residue in the dma buffer and transfer
931 * data to the tty. Also, last_residue is updated for the next polling.
932 */
933static void pl011_dma_rx_poll(unsigned long args)
934{
935 struct uart_amba_port *uap = (struct uart_amba_port *)args;
936 struct tty_port *port = &uap->port.state->port;
937 struct pl011_dmarx_data *dmarx = &uap->dmarx;
938 struct dma_chan *rxchan = uap->dmarx.chan;
939 unsigned long flags = 0;
940 unsigned int dmataken = 0;
941 unsigned int size = 0;
942 struct pl011_sgbuf *sgbuf;
943 int dma_count;
944 struct dma_tx_state state;
945
946 sgbuf = dmarx->use_buf_b ? &uap->dmarx.sgbuf_b : &uap->dmarx.sgbuf_a;
947 rxchan->device->device_tx_status(rxchan, dmarx->cookie, &state);
948 if (likely(state.residue < dmarx->last_residue)) {
949 dmataken = sgbuf->sg.length - dmarx->last_residue;
950 size = dmarx->last_residue - state.residue;
951 dma_count = tty_insert_flip_string(port, sgbuf->buf + dmataken,
952 size);
953 if (dma_count == size)
954 dmarx->last_residue = state.residue;
955 dmarx->last_jiffies = jiffies;
956 }
957 tty_flip_buffer_push(port);
958
959 /*
960 * If no data is received in poll_timeout, the driver will fall back
961 * to interrupt mode. We will retrigger DMA at the first interrupt.
962 */
963 if (jiffies_to_msecs(jiffies - dmarx->last_jiffies)
964 > uap->dmarx.poll_timeout) {
965
966 spin_lock_irqsave(&uap->port.lock, flags);
967 pl011_dma_rx_stop(uap);
Guennadi Liakhovetskic25a1ad2013-12-10 14:54:47 +0100968 uap->im |= UART011_RXIM;
969 writew(uap->im, uap->port.membase + UART011_IMSC);
Chanho Mincb06ff12013-03-27 18:38:11 +0900970 spin_unlock_irqrestore(&uap->port.lock, flags);
971
972 uap->dmarx.running = false;
973 dmaengine_terminate_all(rxchan);
974 del_timer(&uap->dmarx.timer);
975 } else {
976 mod_timer(&uap->dmarx.timer,
977 jiffies + msecs_to_jiffies(uap->dmarx.poll_rate));
978 }
979}
980
Russell King68b65f72010-12-22 17:24:39 +0000981static void pl011_dma_startup(struct uart_amba_port *uap)
982{
Linus Walleijead76f32011-02-24 13:21:08 +0100983 int ret;
984
Jorge Ramirez-Ortiz1c9be312015-03-06 13:05:40 -0500985 if (!uap->dma_probed)
986 pl011_dma_probe(uap);
987
Russell King68b65f72010-12-22 17:24:39 +0000988 if (!uap->dmatx.chan)
989 return;
990
Andrew Jackson4c0be452014-11-07 14:14:35 +0000991 uap->dmatx.buf = kmalloc(PL011_DMA_BUFFER_SIZE, GFP_KERNEL | __GFP_DMA);
Russell King68b65f72010-12-22 17:24:39 +0000992 if (!uap->dmatx.buf) {
993 dev_err(uap->port.dev, "no memory for DMA TX buffer\n");
994 uap->port.fifosize = uap->fifosize;
995 return;
996 }
997
998 sg_init_one(&uap->dmatx.sg, uap->dmatx.buf, PL011_DMA_BUFFER_SIZE);
999
1000 /* The DMA buffer is now the FIFO the TTY subsystem can use */
1001 uap->port.fifosize = PL011_DMA_BUFFER_SIZE;
Linus Walleijead76f32011-02-24 13:21:08 +01001002 uap->using_tx_dma = true;
Russell King68b65f72010-12-22 17:24:39 +00001003
Linus Walleijead76f32011-02-24 13:21:08 +01001004 if (!uap->dmarx.chan)
1005 goto skip_rx;
1006
1007 /* Allocate and map DMA RX buffers */
1008 ret = pl011_sgbuf_init(uap->dmarx.chan, &uap->dmarx.sgbuf_a,
1009 DMA_FROM_DEVICE);
1010 if (ret) {
1011 dev_err(uap->port.dev, "failed to init DMA %s: %d\n",
1012 "RX buffer A", ret);
1013 goto skip_rx;
1014 }
1015
1016 ret = pl011_sgbuf_init(uap->dmarx.chan, &uap->dmarx.sgbuf_b,
1017 DMA_FROM_DEVICE);
1018 if (ret) {
1019 dev_err(uap->port.dev, "failed to init DMA %s: %d\n",
1020 "RX buffer B", ret);
1021 pl011_sgbuf_free(uap->dmarx.chan, &uap->dmarx.sgbuf_a,
1022 DMA_FROM_DEVICE);
1023 goto skip_rx;
1024 }
1025
1026 uap->using_rx_dma = true;
1027
1028skip_rx:
Russell King68b65f72010-12-22 17:24:39 +00001029 /* Turn on DMA error (RX/TX will be enabled on demand) */
1030 uap->dmacr |= UART011_DMAONERR;
1031 writew(uap->dmacr, uap->port.membase + UART011_DMACR);
Russell King38d62432010-12-22 17:59:16 +00001032
1033 /*
1034 * ST Micro variants has some specific dma burst threshold
1035 * compensation. Set this to 16 bytes, so burst will only
1036 * be issued above/below 16 bytes.
1037 */
1038 if (uap->vendor->dma_threshold)
1039 writew(ST_UART011_DMAWM_RX_16 | ST_UART011_DMAWM_TX_16,
1040 uap->port.membase + ST_UART011_DMAWM);
Linus Walleijead76f32011-02-24 13:21:08 +01001041
1042 if (uap->using_rx_dma) {
1043 if (pl011_dma_rx_trigger_dma(uap))
1044 dev_dbg(uap->port.dev, "could not trigger initial "
1045 "RX DMA job, fall back to interrupt mode\n");
Chanho Mincb06ff12013-03-27 18:38:11 +09001046 if (uap->dmarx.poll_rate) {
1047 init_timer(&(uap->dmarx.timer));
1048 uap->dmarx.timer.function = pl011_dma_rx_poll;
1049 uap->dmarx.timer.data = (unsigned long)uap;
1050 mod_timer(&uap->dmarx.timer,
1051 jiffies +
1052 msecs_to_jiffies(uap->dmarx.poll_rate));
1053 uap->dmarx.last_residue = PL011_DMA_BUFFER_SIZE;
1054 uap->dmarx.last_jiffies = jiffies;
1055 }
Linus Walleijead76f32011-02-24 13:21:08 +01001056 }
Russell King68b65f72010-12-22 17:24:39 +00001057}
1058
1059static void pl011_dma_shutdown(struct uart_amba_port *uap)
1060{
Linus Walleijead76f32011-02-24 13:21:08 +01001061 if (!(uap->using_tx_dma || uap->using_rx_dma))
Russell King68b65f72010-12-22 17:24:39 +00001062 return;
1063
1064 /* Disable RX and TX DMA */
1065 while (readw(uap->port.membase + UART01x_FR) & UART01x_FR_BUSY)
1066 barrier();
1067
1068 spin_lock_irq(&uap->port.lock);
1069 uap->dmacr &= ~(UART011_DMAONERR | UART011_RXDMAE | UART011_TXDMAE);
1070 writew(uap->dmacr, uap->port.membase + UART011_DMACR);
1071 spin_unlock_irq(&uap->port.lock);
1072
Linus Walleijead76f32011-02-24 13:21:08 +01001073 if (uap->using_tx_dma) {
1074 /* In theory, this should already be done by pl011_dma_flush_buffer */
1075 dmaengine_terminate_all(uap->dmatx.chan);
1076 if (uap->dmatx.queued) {
1077 dma_unmap_sg(uap->dmatx.chan->device->dev, &uap->dmatx.sg, 1,
1078 DMA_TO_DEVICE);
1079 uap->dmatx.queued = false;
1080 }
1081
1082 kfree(uap->dmatx.buf);
1083 uap->using_tx_dma = false;
Russell King68b65f72010-12-22 17:24:39 +00001084 }
1085
Linus Walleijead76f32011-02-24 13:21:08 +01001086 if (uap->using_rx_dma) {
1087 dmaengine_terminate_all(uap->dmarx.chan);
1088 /* Clean up the RX DMA */
1089 pl011_sgbuf_free(uap->dmarx.chan, &uap->dmarx.sgbuf_a, DMA_FROM_DEVICE);
1090 pl011_sgbuf_free(uap->dmarx.chan, &uap->dmarx.sgbuf_b, DMA_FROM_DEVICE);
Chanho Mincb06ff12013-03-27 18:38:11 +09001091 if (uap->dmarx.poll_rate)
1092 del_timer_sync(&uap->dmarx.timer);
Linus Walleijead76f32011-02-24 13:21:08 +01001093 uap->using_rx_dma = false;
1094 }
Russell King68b65f72010-12-22 17:24:39 +00001095}
1096
Linus Walleijead76f32011-02-24 13:21:08 +01001097static inline bool pl011_dma_rx_available(struct uart_amba_port *uap)
1098{
1099 return uap->using_rx_dma;
1100}
1101
1102static inline bool pl011_dma_rx_running(struct uart_amba_port *uap)
1103{
1104 return uap->using_rx_dma && uap->dmarx.running;
1105}
1106
Russell King68b65f72010-12-22 17:24:39 +00001107#else
1108/* Blank functions if the DMA engine is not available */
Jorge Ramirez-Ortiz1c9be312015-03-06 13:05:40 -05001109static inline void pl011_dma_probe(struct uart_amba_port *uap)
Russell King68b65f72010-12-22 17:24:39 +00001110{
1111}
1112
1113static inline void pl011_dma_remove(struct uart_amba_port *uap)
1114{
1115}
1116
1117static inline void pl011_dma_startup(struct uart_amba_port *uap)
1118{
1119}
1120
1121static inline void pl011_dma_shutdown(struct uart_amba_port *uap)
1122{
1123}
1124
1125static inline bool pl011_dma_tx_irq(struct uart_amba_port *uap)
1126{
1127 return false;
1128}
1129
1130static inline void pl011_dma_tx_stop(struct uart_amba_port *uap)
1131{
1132}
1133
1134static inline bool pl011_dma_tx_start(struct uart_amba_port *uap)
1135{
1136 return false;
1137}
1138
Linus Walleijead76f32011-02-24 13:21:08 +01001139static inline void pl011_dma_rx_irq(struct uart_amba_port *uap)
1140{
1141}
1142
1143static inline void pl011_dma_rx_stop(struct uart_amba_port *uap)
1144{
1145}
1146
1147static inline int pl011_dma_rx_trigger_dma(struct uart_amba_port *uap)
1148{
1149 return -EIO;
1150}
1151
1152static inline bool pl011_dma_rx_available(struct uart_amba_port *uap)
1153{
1154 return false;
1155}
1156
1157static inline bool pl011_dma_rx_running(struct uart_amba_port *uap)
1158{
1159 return false;
1160}
1161
Russell King68b65f72010-12-22 17:24:39 +00001162#define pl011_dma_flush_buffer NULL
1163#endif
1164
Russell Kingb129a8c2005-08-31 10:12:14 +01001165static void pl011_stop_tx(struct uart_port *port)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001166{
Daniel Thompsona5820c22014-09-03 12:51:55 +01001167 struct uart_amba_port *uap =
1168 container_of(port, struct uart_amba_port, port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001169
1170 uap->im &= ~UART011_TXIM;
1171 writew(uap->im, uap->port.membase + UART011_IMSC);
Russell King68b65f72010-12-22 17:24:39 +00001172 pl011_dma_tx_stop(uap);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001173}
1174
Dave Martin1e84d222015-04-27 16:49:05 +01001175static void pl011_tx_chars(struct uart_amba_port *uap, bool from_irq);
Dave Martin734745c2015-03-04 12:27:33 +00001176
1177/* Start TX with programmed I/O only (no DMA) */
1178static void pl011_start_tx_pio(struct uart_amba_port *uap)
1179{
1180 uap->im |= UART011_TXIM;
1181 writew(uap->im, uap->port.membase + UART011_IMSC);
Dave Martin1e84d222015-04-27 16:49:05 +01001182 pl011_tx_chars(uap, false);
Dave Martin734745c2015-03-04 12:27:33 +00001183}
1184
Russell Kingb129a8c2005-08-31 10:12:14 +01001185static void pl011_start_tx(struct uart_port *port)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001186{
Daniel Thompsona5820c22014-09-03 12:51:55 +01001187 struct uart_amba_port *uap =
1188 container_of(port, struct uart_amba_port, port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001189
Dave Martin734745c2015-03-04 12:27:33 +00001190 if (!pl011_dma_tx_start(uap))
1191 pl011_start_tx_pio(uap);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001192}
1193
1194static void pl011_stop_rx(struct uart_port *port)
1195{
Daniel Thompsona5820c22014-09-03 12:51:55 +01001196 struct uart_amba_port *uap =
1197 container_of(port, struct uart_amba_port, port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001198
1199 uap->im &= ~(UART011_RXIM|UART011_RTIM|UART011_FEIM|
1200 UART011_PEIM|UART011_BEIM|UART011_OEIM);
1201 writew(uap->im, uap->port.membase + UART011_IMSC);
Linus Walleijead76f32011-02-24 13:21:08 +01001202
1203 pl011_dma_rx_stop(uap);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001204}
1205
1206static void pl011_enable_ms(struct uart_port *port)
1207{
Daniel Thompsona5820c22014-09-03 12:51:55 +01001208 struct uart_amba_port *uap =
1209 container_of(port, struct uart_amba_port, port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001210
1211 uap->im |= UART011_RIMIM|UART011_CTSMIM|UART011_DCDMIM|UART011_DSRMIM;
1212 writew(uap->im, uap->port.membase + UART011_IMSC);
1213}
1214
David Howells7d12e782006-10-05 14:55:46 +01001215static void pl011_rx_chars(struct uart_amba_port *uap)
Fabio Estevamb83286b2013-08-09 17:58:51 -03001216__releases(&uap->port.lock)
1217__acquires(&uap->port.lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001218{
Linus Walleij29772c42011-02-24 13:21:36 +01001219 pl011_fifo_to_tty(uap);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001220
Thomas Gleixner2389b272007-05-29 21:53:50 +01001221 spin_unlock(&uap->port.lock);
Jiri Slaby2e124b42013-01-03 15:53:06 +01001222 tty_flip_buffer_push(&uap->port.state->port);
Linus Walleijead76f32011-02-24 13:21:08 +01001223 /*
1224 * If we were temporarily out of DMA mode for a while,
1225 * attempt to switch back to DMA mode again.
1226 */
1227 if (pl011_dma_rx_available(uap)) {
1228 if (pl011_dma_rx_trigger_dma(uap)) {
1229 dev_dbg(uap->port.dev, "could not trigger RX DMA job "
1230 "fall back to interrupt mode again\n");
1231 uap->im |= UART011_RXIM;
Guennadi Liakhovetski30ae5852013-12-10 14:54:42 +01001232 writew(uap->im, uap->port.membase + UART011_IMSC);
Chanho Mincb06ff12013-03-27 18:38:11 +09001233 } else {
Chanho Min89fa28d2013-04-03 11:10:37 +09001234#ifdef CONFIG_DMA_ENGINE
Chanho Mincb06ff12013-03-27 18:38:11 +09001235 /* Start Rx DMA poll */
1236 if (uap->dmarx.poll_rate) {
1237 uap->dmarx.last_jiffies = jiffies;
1238 uap->dmarx.last_residue = PL011_DMA_BUFFER_SIZE;
1239 mod_timer(&uap->dmarx.timer,
1240 jiffies +
1241 msecs_to_jiffies(uap->dmarx.poll_rate));
1242 }
Chanho Min89fa28d2013-04-03 11:10:37 +09001243#endif
Chanho Mincb06ff12013-03-27 18:38:11 +09001244 }
Linus Walleijead76f32011-02-24 13:21:08 +01001245 }
Thomas Gleixner2389b272007-05-29 21:53:50 +01001246 spin_lock(&uap->port.lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001247}
1248
Dave Martin1e84d222015-04-27 16:49:05 +01001249static bool pl011_tx_char(struct uart_amba_port *uap, unsigned char c,
1250 bool from_irq)
Dave Martin734745c2015-03-04 12:27:33 +00001251{
Dave Martin1e84d222015-04-27 16:49:05 +01001252 if (unlikely(!from_irq) &&
1253 readw(uap->port.membase + UART01x_FR) & UART01x_FR_TXFF)
1254 return false; /* unable to transmit character */
1255
Dave Martin734745c2015-03-04 12:27:33 +00001256 writew(c, uap->port.membase + UART01x_DR);
1257 uap->port.icount.tx++;
1258
Dave Martin1e84d222015-04-27 16:49:05 +01001259 return true;
Dave Martin734745c2015-03-04 12:27:33 +00001260}
1261
Dave Martin1e84d222015-04-27 16:49:05 +01001262static void pl011_tx_chars(struct uart_amba_port *uap, bool from_irq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001263{
Alan Coxebd2c8f2009-09-19 13:13:28 -07001264 struct circ_buf *xmit = &uap->port.state->xmit;
Dave Martin1e84d222015-04-27 16:49:05 +01001265 int count = uap->fifosize >> 1;
Dave Martin734745c2015-03-04 12:27:33 +00001266
Linus Torvalds1da177e2005-04-16 15:20:36 -07001267 if (uap->port.x_char) {
Dave Martin1e84d222015-04-27 16:49:05 +01001268 if (!pl011_tx_char(uap, uap->port.x_char, from_irq))
1269 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001270 uap->port.x_char = 0;
Dave Martin734745c2015-03-04 12:27:33 +00001271 --count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001272 }
1273 if (uart_circ_empty(xmit) || uart_tx_stopped(&uap->port)) {
Russell Kingb129a8c2005-08-31 10:12:14 +01001274 pl011_stop_tx(&uap->port);
Dave Martin1e84d222015-04-27 16:49:05 +01001275 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001276 }
1277
Russell King68b65f72010-12-22 17:24:39 +00001278 /* If we are using DMA mode, try to send some characters. */
1279 if (pl011_dma_tx_irq(uap))
Dave Martin1e84d222015-04-27 16:49:05 +01001280 return;
Russell King68b65f72010-12-22 17:24:39 +00001281
Dave Martin1e84d222015-04-27 16:49:05 +01001282 do {
1283 if (likely(from_irq) && count-- == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001284 break;
Dave Martin1e84d222015-04-27 16:49:05 +01001285
1286 if (!pl011_tx_char(uap, xmit->buf[xmit->tail], from_irq))
1287 break;
1288
1289 xmit->tail = (xmit->tail + 1) & (UART_XMIT_SIZE - 1);
1290 } while (!uart_circ_empty(xmit));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001291
1292 if (uart_circ_chars_pending(xmit) < WAKEUP_CHARS)
1293 uart_write_wakeup(&uap->port);
1294
Dave Martin1e84d222015-04-27 16:49:05 +01001295 if (uart_circ_empty(xmit))
Russell Kingb129a8c2005-08-31 10:12:14 +01001296 pl011_stop_tx(&uap->port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001297}
1298
1299static void pl011_modem_status(struct uart_amba_port *uap)
1300{
1301 unsigned int status, delta;
1302
1303 status = readw(uap->port.membase + UART01x_FR) & UART01x_FR_MODEM_ANY;
1304
1305 delta = status ^ uap->old_status;
1306 uap->old_status = status;
1307
1308 if (!delta)
1309 return;
1310
1311 if (delta & UART01x_FR_DCD)
1312 uart_handle_dcd_change(&uap->port, status & UART01x_FR_DCD);
1313
1314 if (delta & UART01x_FR_DSR)
1315 uap->port.icount.dsr++;
1316
1317 if (delta & UART01x_FR_CTS)
1318 uart_handle_cts_change(&uap->port, status & UART01x_FR_CTS);
1319
Alan Coxbdc04e32009-09-19 13:13:31 -07001320 wake_up_interruptible(&uap->port.state->port.delta_msr_wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001321}
1322
Andre Przywara9c4ef4b2015-05-21 17:26:20 +01001323static void check_apply_cts_event_workaround(struct uart_amba_port *uap)
1324{
1325 unsigned int dummy_read;
1326
1327 if (!uap->vendor->cts_event_workaround)
1328 return;
1329
1330 /* workaround to make sure that all bits are unlocked.. */
1331 writew(0x00, uap->port.membase + UART011_ICR);
1332
1333 /*
1334 * WA: introduce 26ns(1 uart clk) delay before W1C;
1335 * single apb access will incur 2 pclk(133.12Mhz) delay,
1336 * so add 2 dummy reads
1337 */
1338 dummy_read = readw(uap->port.membase + UART011_ICR);
1339 dummy_read = readw(uap->port.membase + UART011_ICR);
1340}
1341
David Howells7d12e782006-10-05 14:55:46 +01001342static irqreturn_t pl011_int(int irq, void *dev_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001343{
1344 struct uart_amba_port *uap = dev_id;
Russell King963cc982010-12-22 17:16:09 +00001345 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001346 unsigned int status, pass_counter = AMBA_ISR_PASS_LIMIT;
Andre Przywara075167e2015-05-21 17:26:19 +01001347 u16 imsc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001348 int handled = 0;
1349
Russell King963cc982010-12-22 17:16:09 +00001350 spin_lock_irqsave(&uap->port.lock, flags);
Andre Przywara075167e2015-05-21 17:26:19 +01001351 imsc = readw(uap->port.membase + UART011_IMSC);
1352 status = readw(uap->port.membase + UART011_RIS) & imsc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001353 if (status) {
1354 do {
Andre Przywara9c4ef4b2015-05-21 17:26:20 +01001355 check_apply_cts_event_workaround(uap);
Rajanikanth H.V4fd06902012-03-26 11:17:02 +02001356
Linus Torvalds1da177e2005-04-16 15:20:36 -07001357 writew(status & ~(UART011_TXIS|UART011_RTIS|
1358 UART011_RXIS),
1359 uap->port.membase + UART011_ICR);
1360
Linus Walleijead76f32011-02-24 13:21:08 +01001361 if (status & (UART011_RTIS|UART011_RXIS)) {
1362 if (pl011_dma_rx_running(uap))
1363 pl011_dma_rx_irq(uap);
1364 else
1365 pl011_rx_chars(uap);
1366 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001367 if (status & (UART011_DSRMIS|UART011_DCDMIS|
1368 UART011_CTSMIS|UART011_RIMIS))
1369 pl011_modem_status(uap);
Dave Martin1e84d222015-04-27 16:49:05 +01001370 if (status & UART011_TXIS)
1371 pl011_tx_chars(uap, true);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001372
Rajanikanth H.V4fd06902012-03-26 11:17:02 +02001373 if (pass_counter-- == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001374 break;
1375
Andre Przywara075167e2015-05-21 17:26:19 +01001376 status = readw(uap->port.membase + UART011_RIS) & imsc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001377 } while (status != 0);
1378 handled = 1;
1379 }
1380
Russell King963cc982010-12-22 17:16:09 +00001381 spin_unlock_irqrestore(&uap->port.lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001382
1383 return IRQ_RETVAL(handled);
1384}
1385
Linus Walleije643f872012-06-17 15:44:19 +02001386static unsigned int pl011_tx_empty(struct uart_port *port)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001387{
Daniel Thompsona5820c22014-09-03 12:51:55 +01001388 struct uart_amba_port *uap =
1389 container_of(port, struct uart_amba_port, port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001390 unsigned int status = readw(uap->port.membase + UART01x_FR);
1391 return status & (UART01x_FR_BUSY|UART01x_FR_TXFF) ? 0 : TIOCSER_TEMT;
1392}
1393
Linus Walleije643f872012-06-17 15:44:19 +02001394static unsigned int pl011_get_mctrl(struct uart_port *port)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001395{
Daniel Thompsona5820c22014-09-03 12:51:55 +01001396 struct uart_amba_port *uap =
1397 container_of(port, struct uart_amba_port, port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001398 unsigned int result = 0;
1399 unsigned int status = readw(uap->port.membase + UART01x_FR);
1400
Jiri Slaby5159f402007-10-18 23:40:31 -07001401#define TIOCMBIT(uartbit, tiocmbit) \
Linus Torvalds1da177e2005-04-16 15:20:36 -07001402 if (status & uartbit) \
1403 result |= tiocmbit
1404
Jiri Slaby5159f402007-10-18 23:40:31 -07001405 TIOCMBIT(UART01x_FR_DCD, TIOCM_CAR);
1406 TIOCMBIT(UART01x_FR_DSR, TIOCM_DSR);
1407 TIOCMBIT(UART01x_FR_CTS, TIOCM_CTS);
1408 TIOCMBIT(UART011_FR_RI, TIOCM_RNG);
1409#undef TIOCMBIT
Linus Torvalds1da177e2005-04-16 15:20:36 -07001410 return result;
1411}
1412
1413static void pl011_set_mctrl(struct uart_port *port, unsigned int mctrl)
1414{
Daniel Thompsona5820c22014-09-03 12:51:55 +01001415 struct uart_amba_port *uap =
1416 container_of(port, struct uart_amba_port, port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001417 unsigned int cr;
1418
1419 cr = readw(uap->port.membase + UART011_CR);
1420
Jiri Slaby5159f402007-10-18 23:40:31 -07001421#define TIOCMBIT(tiocmbit, uartbit) \
Linus Torvalds1da177e2005-04-16 15:20:36 -07001422 if (mctrl & tiocmbit) \
1423 cr |= uartbit; \
1424 else \
1425 cr &= ~uartbit
1426
Jiri Slaby5159f402007-10-18 23:40:31 -07001427 TIOCMBIT(TIOCM_RTS, UART011_CR_RTS);
1428 TIOCMBIT(TIOCM_DTR, UART011_CR_DTR);
1429 TIOCMBIT(TIOCM_OUT1, UART011_CR_OUT1);
1430 TIOCMBIT(TIOCM_OUT2, UART011_CR_OUT2);
1431 TIOCMBIT(TIOCM_LOOP, UART011_CR_LBE);
Rabin Vincent3b438162010-02-12 06:43:11 +01001432
1433 if (uap->autorts) {
1434 /* We need to disable auto-RTS if we want to turn RTS off */
1435 TIOCMBIT(TIOCM_RTS, UART011_CR_RTSEN);
1436 }
Jiri Slaby5159f402007-10-18 23:40:31 -07001437#undef TIOCMBIT
Linus Torvalds1da177e2005-04-16 15:20:36 -07001438
1439 writew(cr, uap->port.membase + UART011_CR);
1440}
1441
1442static void pl011_break_ctl(struct uart_port *port, int break_state)
1443{
Daniel Thompsona5820c22014-09-03 12:51:55 +01001444 struct uart_amba_port *uap =
1445 container_of(port, struct uart_amba_port, port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001446 unsigned long flags;
1447 unsigned int lcr_h;
1448
1449 spin_lock_irqsave(&uap->port.lock, flags);
Linus Walleijec489aa2010-06-02 08:13:52 +01001450 lcr_h = readw(uap->port.membase + uap->lcrh_tx);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001451 if (break_state == -1)
1452 lcr_h |= UART01x_LCRH_BRK;
1453 else
1454 lcr_h &= ~UART01x_LCRH_BRK;
Linus Walleijec489aa2010-06-02 08:13:52 +01001455 writew(lcr_h, uap->port.membase + uap->lcrh_tx);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001456 spin_unlock_irqrestore(&uap->port.lock, flags);
1457}
1458
Jason Wessel84b5ae12008-02-20 13:33:39 -06001459#ifdef CONFIG_CONSOLE_POLL
Anton Vorontsov5c8124a2012-09-24 14:27:55 -07001460
1461static void pl011_quiesce_irqs(struct uart_port *port)
1462{
Daniel Thompsona5820c22014-09-03 12:51:55 +01001463 struct uart_amba_port *uap =
1464 container_of(port, struct uart_amba_port, port);
Anton Vorontsov5c8124a2012-09-24 14:27:55 -07001465 unsigned char __iomem *regs = uap->port.membase;
1466
1467 writew(readw(regs + UART011_MIS), regs + UART011_ICR);
1468 /*
1469 * There is no way to clear TXIM as this is "ready to transmit IRQ", so
1470 * we simply mask it. start_tx() will unmask it.
1471 *
1472 * Note we can race with start_tx(), and if the race happens, the
1473 * polling user might get another interrupt just after we clear it.
1474 * But it should be OK and can happen even w/o the race, e.g.
1475 * controller immediately got some new data and raised the IRQ.
1476 *
1477 * And whoever uses polling routines assumes that it manages the device
1478 * (including tx queue), so we're also fine with start_tx()'s caller
1479 * side.
1480 */
1481 writew(readw(regs + UART011_IMSC) & ~UART011_TXIM, regs + UART011_IMSC);
1482}
1483
Linus Walleije643f872012-06-17 15:44:19 +02001484static int pl011_get_poll_char(struct uart_port *port)
Jason Wessel84b5ae12008-02-20 13:33:39 -06001485{
Daniel Thompsona5820c22014-09-03 12:51:55 +01001486 struct uart_amba_port *uap =
1487 container_of(port, struct uart_amba_port, port);
Jason Wessel84b5ae12008-02-20 13:33:39 -06001488 unsigned int status;
1489
Anton Vorontsov5c8124a2012-09-24 14:27:55 -07001490 /*
1491 * The caller might need IRQs lowered, e.g. if used with KDB NMI
1492 * debugger.
1493 */
1494 pl011_quiesce_irqs(port);
1495
Jason Wesself5316b42010-05-20 21:04:22 -05001496 status = readw(uap->port.membase + UART01x_FR);
1497 if (status & UART01x_FR_RXFE)
1498 return NO_POLL_CHAR;
Jason Wessel84b5ae12008-02-20 13:33:39 -06001499
1500 return readw(uap->port.membase + UART01x_DR);
1501}
1502
Linus Walleije643f872012-06-17 15:44:19 +02001503static void pl011_put_poll_char(struct uart_port *port,
Jason Wessel84b5ae12008-02-20 13:33:39 -06001504 unsigned char ch)
1505{
Daniel Thompsona5820c22014-09-03 12:51:55 +01001506 struct uart_amba_port *uap =
1507 container_of(port, struct uart_amba_port, port);
Jason Wessel84b5ae12008-02-20 13:33:39 -06001508
1509 while (readw(uap->port.membase + UART01x_FR) & UART01x_FR_TXFF)
1510 barrier();
1511
1512 writew(ch, uap->port.membase + UART01x_DR);
1513}
1514
1515#endif /* CONFIG_CONSOLE_POLL */
1516
Anton Vorontsovb3564c22012-09-24 14:27:54 -07001517static int pl011_hwinit(struct uart_port *port)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001518{
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 int retval;
1522
Linus Walleij78d80c52012-05-23 21:18:46 +02001523 /* Optionaly enable pins to be muxed in and configured */
Linus Walleij2b996fc2013-06-05 15:36:42 +02001524 pinctrl_pm_select_default_state(port->dev);
Linus Walleij78d80c52012-05-23 21:18:46 +02001525
Linus Torvalds1da177e2005-04-16 15:20:36 -07001526 /*
1527 * Try to enable the clock producer.
1528 */
Julia Lawall1c4c4392012-08-26 18:01:01 +02001529 retval = clk_prepare_enable(uap->clk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001530 if (retval)
Tushar Behera7f6d9422014-06-26 15:35:35 +05301531 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001532
1533 uap->port.uartclk = clk_get_rate(uap->clk);
1534
Linus Walleij9b96fba2012-03-13 13:27:23 +01001535 /* Clear pending error and receive interrupts */
1536 writew(UART011_OEIS | UART011_BEIS | UART011_PEIS | UART011_FEIS |
1537 UART011_RTIS | UART011_RXIS, uap->port.membase + UART011_ICR);
1538
Linus Torvalds1da177e2005-04-16 15:20:36 -07001539 /*
Anton Vorontsovb3564c22012-09-24 14:27:54 -07001540 * Save interrupts enable mask, and enable RX interrupts in case if
1541 * the interrupt is used for NMI entry.
1542 */
1543 uap->im = readw(uap->port.membase + UART011_IMSC);
1544 writew(UART011_RTIM | UART011_RXIM, uap->port.membase + UART011_IMSC);
1545
Jingoo Han574de552013-07-30 17:06:57 +09001546 if (dev_get_platdata(uap->port.dev)) {
Anton Vorontsovb3564c22012-09-24 14:27:54 -07001547 struct amba_pl011_data *plat;
1548
Jingoo Han574de552013-07-30 17:06:57 +09001549 plat = dev_get_platdata(uap->port.dev);
Anton Vorontsovb3564c22012-09-24 14:27:54 -07001550 if (plat->init)
1551 plat->init();
1552 }
1553 return 0;
Anton Vorontsovb3564c22012-09-24 14:27:54 -07001554}
1555
Jon Medhurstb60f2f62013-12-10 10:18:59 +00001556static void pl011_write_lcr_h(struct uart_amba_port *uap, unsigned int lcr_h)
1557{
1558 writew(lcr_h, uap->port.membase + uap->lcrh_rx);
1559 if (uap->lcrh_rx != uap->lcrh_tx) {
1560 int i;
1561 /*
1562 * Wait 10 PCLKs before writing LCRH_TX register,
1563 * to get this delay write read only register 10 times
1564 */
1565 for (i = 0; i < 10; ++i)
1566 writew(0xff, uap->port.membase + UART011_MIS);
1567 writew(lcr_h, uap->port.membase + uap->lcrh_tx);
1568 }
1569}
1570
Andre Przywara867b8e82015-05-21 17:26:15 +01001571static int pl011_allocate_irq(struct uart_amba_port *uap)
1572{
1573 writew(uap->im, uap->port.membase + UART011_IMSC);
1574
1575 return request_irq(uap->port.irq, pl011_int, 0, "uart-pl011", uap);
1576}
1577
1578/*
1579 * Enable interrupts, only timeouts when using DMA
1580 * if initial RX DMA job failed, start in interrupt mode
1581 * as well.
1582 */
1583static void pl011_enable_interrupts(struct uart_amba_port *uap)
1584{
1585 spin_lock_irq(&uap->port.lock);
1586
1587 /* Clear out any spuriously appearing RX interrupts */
1588 writew(UART011_RTIS | UART011_RXIS,
1589 uap->port.membase + UART011_ICR);
1590 uap->im = UART011_RTIM;
1591 if (!pl011_dma_rx_running(uap))
1592 uap->im |= UART011_RXIM;
1593 writew(uap->im, uap->port.membase + UART011_IMSC);
1594 spin_unlock_irq(&uap->port.lock);
1595}
1596
Anton Vorontsovb3564c22012-09-24 14:27:54 -07001597static int pl011_startup(struct uart_port *port)
1598{
Daniel Thompsona5820c22014-09-03 12:51:55 +01001599 struct uart_amba_port *uap =
1600 container_of(port, struct uart_amba_port, port);
Dave Martin734745c2015-03-04 12:27:33 +00001601 unsigned int cr;
Anton Vorontsovb3564c22012-09-24 14:27:54 -07001602 int retval;
1603
1604 retval = pl011_hwinit(port);
1605 if (retval)
1606 goto clk_dis;
1607
Andre Przywara867b8e82015-05-21 17:26:15 +01001608 retval = pl011_allocate_irq(uap);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001609 if (retval)
1610 goto clk_dis;
1611
Russell Kingc19f12b2010-12-22 17:48:26 +00001612 writew(uap->vendor->ifls, uap->port.membase + UART011_IFLS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001613
Jon Medhurstfe433902013-12-10 10:18:58 +00001614 spin_lock_irq(&uap->port.lock);
1615
Shreshtha Kumar Sahud8d8ffa2012-01-18 15:53:59 +05301616 /* restore RTS and DTR */
1617 cr = uap->old_cr & (UART011_CR_RTS | UART011_CR_DTR);
1618 cr |= UART01x_CR_UARTEN | UART011_CR_RXE | UART011_CR_TXE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001619 writew(cr, uap->port.membase + UART011_CR);
1620
Jon Medhurstfe433902013-12-10 10:18:58 +00001621 spin_unlock_irq(&uap->port.lock);
1622
Linus Torvalds1da177e2005-04-16 15:20:36 -07001623 /*
1624 * initialise the old status of the modem signals
1625 */
1626 uap->old_status = readw(uap->port.membase + UART01x_FR) & UART01x_FR_MODEM_ANY;
1627
Russell King68b65f72010-12-22 17:24:39 +00001628 /* Startup DMA */
1629 pl011_dma_startup(uap);
1630
Andre Przywara867b8e82015-05-21 17:26:15 +01001631 pl011_enable_interrupts(uap);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001632
1633 return 0;
1634
1635 clk_dis:
Julia Lawall1c4c4392012-08-26 18:01:01 +02001636 clk_disable_unprepare(uap->clk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001637 return retval;
1638}
1639
Linus Walleijec489aa2010-06-02 08:13:52 +01001640static void pl011_shutdown_channel(struct uart_amba_port *uap,
1641 unsigned int lcrh)
1642{
1643 unsigned long val;
1644
1645 val = readw(uap->port.membase + lcrh);
1646 val &= ~(UART01x_LCRH_BRK | UART01x_LCRH_FEN);
1647 writew(val, uap->port.membase + lcrh);
1648}
1649
Andre Przywara95166a32015-05-21 17:26:16 +01001650/*
1651 * disable the port. It should not disable RTS and DTR.
1652 * Also RTS and DTR state should be preserved to restore
1653 * it during startup().
1654 */
1655static void pl011_disable_uart(struct uart_amba_port *uap)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001656{
Shreshtha Kumar Sahud8d8ffa2012-01-18 15:53:59 +05301657 unsigned int cr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001658
Rabin Vincent3b438162010-02-12 06:43:11 +01001659 uap->autorts = false;
Jon Medhurstfe433902013-12-10 10:18:58 +00001660 spin_lock_irq(&uap->port.lock);
Shreshtha Kumar Sahud8d8ffa2012-01-18 15:53:59 +05301661 cr = readw(uap->port.membase + UART011_CR);
1662 uap->old_cr = cr;
1663 cr &= UART011_CR_RTS | UART011_CR_DTR;
1664 cr |= UART01x_CR_UARTEN | UART011_CR_TXE;
1665 writew(cr, uap->port.membase + UART011_CR);
Jon Medhurstfe433902013-12-10 10:18:58 +00001666 spin_unlock_irq(&uap->port.lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001667
1668 /*
1669 * disable break condition and fifos
1670 */
Linus Walleijec489aa2010-06-02 08:13:52 +01001671 pl011_shutdown_channel(uap, uap->lcrh_rx);
1672 if (uap->lcrh_rx != uap->lcrh_tx)
1673 pl011_shutdown_channel(uap, uap->lcrh_tx);
Andre Przywara95166a32015-05-21 17:26:16 +01001674}
1675
1676static void pl011_disable_interrupts(struct uart_amba_port *uap)
1677{
1678 spin_lock_irq(&uap->port.lock);
1679
1680 /* mask all interrupts and clear all pending ones */
1681 uap->im = 0;
1682 writew(uap->im, uap->port.membase + UART011_IMSC);
1683 writew(0xffff, uap->port.membase + UART011_ICR);
1684
1685 spin_unlock_irq(&uap->port.lock);
1686}
1687
1688static void pl011_shutdown(struct uart_port *port)
1689{
1690 struct uart_amba_port *uap =
1691 container_of(port, struct uart_amba_port, port);
1692
1693 pl011_disable_interrupts(uap);
1694
1695 pl011_dma_shutdown(uap);
1696
1697 free_irq(uap->port.irq, uap);
1698
1699 pl011_disable_uart(uap);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001700
1701 /*
1702 * Shut down the clock producer
1703 */
Julia Lawall1c4c4392012-08-26 18:01:01 +02001704 clk_disable_unprepare(uap->clk);
Linus Walleij78d80c52012-05-23 21:18:46 +02001705 /* Optionally let pins go into sleep states */
Linus Walleij2b996fc2013-06-05 15:36:42 +02001706 pinctrl_pm_select_sleep_state(port->dev);
Shreshtha Kumar Sahuc16d51a2011-06-13 10:11:33 +02001707
Jingoo Han574de552013-07-30 17:06:57 +09001708 if (dev_get_platdata(uap->port.dev)) {
Shreshtha Kumar Sahuc16d51a2011-06-13 10:11:33 +02001709 struct amba_pl011_data *plat;
1710
Jingoo Han574de552013-07-30 17:06:57 +09001711 plat = dev_get_platdata(uap->port.dev);
Shreshtha Kumar Sahuc16d51a2011-06-13 10:11:33 +02001712 if (plat->exit)
1713 plat->exit();
1714 }
1715
Peter Hurley36f339d2014-11-06 09:06:12 -05001716 if (uap->port.ops->flush_buffer)
1717 uap->port.ops->flush_buffer(port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001718}
1719
1720static void
Andre Przywaraef5a9352015-05-21 17:26:17 +01001721pl011_setup_status_masks(struct uart_port *port, struct ktermios *termios)
1722{
1723 port->read_status_mask = UART011_DR_OE | 255;
1724 if (termios->c_iflag & INPCK)
1725 port->read_status_mask |= UART011_DR_FE | UART011_DR_PE;
1726 if (termios->c_iflag & (IGNBRK | BRKINT | PARMRK))
1727 port->read_status_mask |= UART011_DR_BE;
1728
1729 /*
1730 * Characters to ignore
1731 */
1732 port->ignore_status_mask = 0;
1733 if (termios->c_iflag & IGNPAR)
1734 port->ignore_status_mask |= UART011_DR_FE | UART011_DR_PE;
1735 if (termios->c_iflag & IGNBRK) {
1736 port->ignore_status_mask |= UART011_DR_BE;
1737 /*
1738 * If we're ignoring parity and break indicators,
1739 * ignore overruns too (for real raw support).
1740 */
1741 if (termios->c_iflag & IGNPAR)
1742 port->ignore_status_mask |= UART011_DR_OE;
1743 }
1744
1745 /*
1746 * Ignore all characters if CREAD is not set.
1747 */
1748 if ((termios->c_cflag & CREAD) == 0)
1749 port->ignore_status_mask |= UART_DUMMY_DR_RX;
1750}
1751
1752static void
Alan Cox606d0992006-12-08 02:38:45 -08001753pl011_set_termios(struct uart_port *port, struct ktermios *termios,
1754 struct ktermios *old)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001755{
Daniel Thompsona5820c22014-09-03 12:51:55 +01001756 struct uart_amba_port *uap =
1757 container_of(port, struct uart_amba_port, port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001758 unsigned int lcr_h, old_cr;
1759 unsigned long flags;
Russell Kingc19f12b2010-12-22 17:48:26 +00001760 unsigned int baud, quot, clkdiv;
1761
1762 if (uap->vendor->oversampling)
1763 clkdiv = 8;
1764 else
1765 clkdiv = 16;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001766
1767 /*
1768 * Ask the core to calculate the divisor for us.
1769 */
Linus Walleijac3e3fb2010-06-02 20:40:22 +01001770 baud = uart_get_baud_rate(port, termios, old, 0,
Russell Kingc19f12b2010-12-22 17:48:26 +00001771 port->uartclk / clkdiv);
Chanho Min89fa28d2013-04-03 11:10:37 +09001772#ifdef CONFIG_DMA_ENGINE
Chanho Mincb06ff12013-03-27 18:38:11 +09001773 /*
1774 * Adjust RX DMA polling rate with baud rate if not specified.
1775 */
1776 if (uap->dmarx.auto_poll_rate)
1777 uap->dmarx.poll_rate = DIV_ROUND_UP(10000000, baud);
Chanho Min89fa28d2013-04-03 11:10:37 +09001778#endif
Linus Walleijac3e3fb2010-06-02 20:40:22 +01001779
1780 if (baud > port->uartclk/16)
1781 quot = DIV_ROUND_CLOSEST(port->uartclk * 8, baud);
1782 else
1783 quot = DIV_ROUND_CLOSEST(port->uartclk * 4, baud);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001784
1785 switch (termios->c_cflag & CSIZE) {
1786 case CS5:
1787 lcr_h = UART01x_LCRH_WLEN_5;
1788 break;
1789 case CS6:
1790 lcr_h = UART01x_LCRH_WLEN_6;
1791 break;
1792 case CS7:
1793 lcr_h = UART01x_LCRH_WLEN_7;
1794 break;
1795 default: // CS8
1796 lcr_h = UART01x_LCRH_WLEN_8;
1797 break;
1798 }
1799 if (termios->c_cflag & CSTOPB)
1800 lcr_h |= UART01x_LCRH_STP2;
1801 if (termios->c_cflag & PARENB) {
1802 lcr_h |= UART01x_LCRH_PEN;
1803 if (!(termios->c_cflag & PARODD))
1804 lcr_h |= UART01x_LCRH_EPS;
1805 }
Russell Kingffca2b12010-12-22 17:13:05 +00001806 if (uap->fifosize > 1)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001807 lcr_h |= UART01x_LCRH_FEN;
1808
1809 spin_lock_irqsave(&port->lock, flags);
1810
1811 /*
1812 * Update the per-port timeout.
1813 */
1814 uart_update_timeout(port, termios->c_cflag, baud);
1815
Andre Przywaraef5a9352015-05-21 17:26:17 +01001816 pl011_setup_status_masks(port, termios);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001817
1818 if (UART_ENABLE_MS(port, termios->c_cflag))
1819 pl011_enable_ms(port);
1820
1821 /* first, disable everything */
1822 old_cr = readw(port->membase + UART011_CR);
1823 writew(0, port->membase + UART011_CR);
1824
Rabin Vincent3b438162010-02-12 06:43:11 +01001825 if (termios->c_cflag & CRTSCTS) {
1826 if (old_cr & UART011_CR_RTS)
1827 old_cr |= UART011_CR_RTSEN;
1828
1829 old_cr |= UART011_CR_CTSEN;
1830 uap->autorts = true;
1831 } else {
1832 old_cr &= ~(UART011_CR_CTSEN | UART011_CR_RTSEN);
1833 uap->autorts = false;
1834 }
1835
Russell Kingc19f12b2010-12-22 17:48:26 +00001836 if (uap->vendor->oversampling) {
1837 if (baud > port->uartclk / 16)
Linus Walleijac3e3fb2010-06-02 20:40:22 +01001838 old_cr |= ST_UART011_CR_OVSFACT;
1839 else
1840 old_cr &= ~ST_UART011_CR_OVSFACT;
1841 }
1842
Linus Walleijc5dd5532012-09-26 17:21:36 +02001843 /*
1844 * Workaround for the ST Micro oversampling variants to
1845 * increase the bitrate slightly, by lowering the divisor,
1846 * to avoid delayed sampling of start bit at high speeds,
1847 * else we see data corruption.
1848 */
1849 if (uap->vendor->oversampling) {
1850 if ((baud >= 3000000) && (baud < 3250000) && (quot > 1))
1851 quot -= 1;
1852 else if ((baud > 3250000) && (quot > 2))
1853 quot -= 2;
1854 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001855 /* Set baud rate */
1856 writew(quot & 0x3f, port->membase + UART011_FBRD);
1857 writew(quot >> 6, port->membase + UART011_IBRD);
1858
1859 /*
1860 * ----------v----------v----------v----------v-----
Linus Walleijc5dd5532012-09-26 17:21:36 +02001861 * NOTE: lcrh_tx and lcrh_rx MUST BE WRITTEN AFTER
1862 * UART011_FBRD & UART011_IBRD.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001863 * ----------^----------^----------^----------^-----
1864 */
Jon Medhurstb60f2f62013-12-10 10:18:59 +00001865 pl011_write_lcr_h(uap, lcr_h);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001866 writew(old_cr, port->membase + UART011_CR);
1867
1868 spin_unlock_irqrestore(&port->lock, flags);
1869}
1870
1871static const char *pl011_type(struct uart_port *port)
1872{
Daniel Thompsona5820c22014-09-03 12:51:55 +01001873 struct uart_amba_port *uap =
1874 container_of(port, struct uart_amba_port, port);
Russell Kinge8a7ba82010-12-28 09:16:54 +00001875 return uap->port.type == PORT_AMBA ? uap->type : NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001876}
1877
1878/*
1879 * Release the memory region(s) being used by 'port'
1880 */
Linus Walleije643f872012-06-17 15:44:19 +02001881static void pl011_release_port(struct uart_port *port)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001882{
1883 release_mem_region(port->mapbase, SZ_4K);
1884}
1885
1886/*
1887 * Request the memory region(s) being used by 'port'
1888 */
Linus Walleije643f872012-06-17 15:44:19 +02001889static int pl011_request_port(struct uart_port *port)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001890{
1891 return request_mem_region(port->mapbase, SZ_4K, "uart-pl011")
1892 != NULL ? 0 : -EBUSY;
1893}
1894
1895/*
1896 * Configure/autoconfigure the port.
1897 */
Linus Walleije643f872012-06-17 15:44:19 +02001898static void pl011_config_port(struct uart_port *port, int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001899{
1900 if (flags & UART_CONFIG_TYPE) {
1901 port->type = PORT_AMBA;
Linus Walleije643f872012-06-17 15:44:19 +02001902 pl011_request_port(port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001903 }
1904}
1905
1906/*
1907 * verify the new serial_struct (for TIOCSSERIAL).
1908 */
Linus Walleije643f872012-06-17 15:44:19 +02001909static int pl011_verify_port(struct uart_port *port, struct serial_struct *ser)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001910{
1911 int ret = 0;
1912 if (ser->type != PORT_UNKNOWN && ser->type != PORT_AMBA)
1913 ret = -EINVAL;
Yinghai Lua62c4132008-08-19 20:49:55 -07001914 if (ser->irq < 0 || ser->irq >= nr_irqs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001915 ret = -EINVAL;
1916 if (ser->baud_base < 9600)
1917 ret = -EINVAL;
1918 return ret;
1919}
1920
1921static struct uart_ops amba_pl011_pops = {
Linus Walleije643f872012-06-17 15:44:19 +02001922 .tx_empty = pl011_tx_empty,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001923 .set_mctrl = pl011_set_mctrl,
Linus Walleije643f872012-06-17 15:44:19 +02001924 .get_mctrl = pl011_get_mctrl,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001925 .stop_tx = pl011_stop_tx,
1926 .start_tx = pl011_start_tx,
1927 .stop_rx = pl011_stop_rx,
1928 .enable_ms = pl011_enable_ms,
1929 .break_ctl = pl011_break_ctl,
1930 .startup = pl011_startup,
1931 .shutdown = pl011_shutdown,
Russell King68b65f72010-12-22 17:24:39 +00001932 .flush_buffer = pl011_dma_flush_buffer,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001933 .set_termios = pl011_set_termios,
1934 .type = pl011_type,
Linus Walleije643f872012-06-17 15:44:19 +02001935 .release_port = pl011_release_port,
1936 .request_port = pl011_request_port,
1937 .config_port = pl011_config_port,
1938 .verify_port = pl011_verify_port,
Jason Wessel84b5ae12008-02-20 13:33:39 -06001939#ifdef CONFIG_CONSOLE_POLL
Anton Vorontsovb3564c22012-09-24 14:27:54 -07001940 .poll_init = pl011_hwinit,
Linus Walleije643f872012-06-17 15:44:19 +02001941 .poll_get_char = pl011_get_poll_char,
1942 .poll_put_char = pl011_put_poll_char,
Jason Wessel84b5ae12008-02-20 13:33:39 -06001943#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001944};
1945
1946static struct uart_amba_port *amba_ports[UART_NR];
1947
1948#ifdef CONFIG_SERIAL_AMBA_PL011_CONSOLE
1949
Russell Kingd3587882006-03-20 20:00:09 +00001950static void pl011_console_putchar(struct uart_port *port, int ch)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001951{
Daniel Thompsona5820c22014-09-03 12:51:55 +01001952 struct uart_amba_port *uap =
1953 container_of(port, struct uart_amba_port, port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001954
Russell Kingd3587882006-03-20 20:00:09 +00001955 while (readw(uap->port.membase + UART01x_FR) & UART01x_FR_TXFF)
1956 barrier();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001957 writew(ch, uap->port.membase + UART01x_DR);
1958}
1959
1960static void
1961pl011_console_write(struct console *co, const char *s, unsigned int count)
1962{
1963 struct uart_amba_port *uap = amba_ports[co->index];
Andre Przywara71eec482015-05-21 17:26:21 +01001964 unsigned int status, old_cr = 0, new_cr;
Rabin Vincentef605fd2012-01-17 11:52:28 +01001965 unsigned long flags;
1966 int locked = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001967
1968 clk_enable(uap->clk);
1969
Rabin Vincentef605fd2012-01-17 11:52:28 +01001970 local_irq_save(flags);
1971 if (uap->port.sysrq)
1972 locked = 0;
1973 else if (oops_in_progress)
1974 locked = spin_trylock(&uap->port.lock);
1975 else
1976 spin_lock(&uap->port.lock);
1977
Linus Torvalds1da177e2005-04-16 15:20:36 -07001978 /*
1979 * First save the CR then disable the interrupts
1980 */
Andre Przywara71eec482015-05-21 17:26:21 +01001981 if (!uap->vendor->always_enabled) {
1982 old_cr = readw(uap->port.membase + UART011_CR);
1983 new_cr = old_cr & ~UART011_CR_CTSEN;
1984 new_cr |= UART01x_CR_UARTEN | UART011_CR_TXE;
1985 writew(new_cr, uap->port.membase + UART011_CR);
1986 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001987
Russell Kingd3587882006-03-20 20:00:09 +00001988 uart_console_write(&uap->port, s, count, pl011_console_putchar);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001989
1990 /*
1991 * Finally, wait for transmitter to become empty
1992 * and restore the TCR
1993 */
1994 do {
1995 status = readw(uap->port.membase + UART01x_FR);
1996 } while (status & UART01x_FR_BUSY);
Andre Przywara71eec482015-05-21 17:26:21 +01001997 if (!uap->vendor->always_enabled)
1998 writew(old_cr, uap->port.membase + UART011_CR);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001999
Rabin Vincentef605fd2012-01-17 11:52:28 +01002000 if (locked)
2001 spin_unlock(&uap->port.lock);
2002 local_irq_restore(flags);
2003
Linus Torvalds1da177e2005-04-16 15:20:36 -07002004 clk_disable(uap->clk);
2005}
2006
2007static void __init
2008pl011_console_get_options(struct uart_amba_port *uap, int *baud,
2009 int *parity, int *bits)
2010{
2011 if (readw(uap->port.membase + UART011_CR) & UART01x_CR_UARTEN) {
2012 unsigned int lcr_h, ibrd, fbrd;
2013
Linus Walleijec489aa2010-06-02 08:13:52 +01002014 lcr_h = readw(uap->port.membase + uap->lcrh_tx);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002015
2016 *parity = 'n';
2017 if (lcr_h & UART01x_LCRH_PEN) {
2018 if (lcr_h & UART01x_LCRH_EPS)
2019 *parity = 'e';
2020 else
2021 *parity = 'o';
2022 }
2023
2024 if ((lcr_h & 0x60) == UART01x_LCRH_WLEN_7)
2025 *bits = 7;
2026 else
2027 *bits = 8;
2028
2029 ibrd = readw(uap->port.membase + UART011_IBRD);
2030 fbrd = readw(uap->port.membase + UART011_FBRD);
2031
2032 *baud = uap->port.uartclk * 4 / (64 * ibrd + fbrd);
Linus Walleijac3e3fb2010-06-02 20:40:22 +01002033
Russell Kingc19f12b2010-12-22 17:48:26 +00002034 if (uap->vendor->oversampling) {
Linus Walleijac3e3fb2010-06-02 20:40:22 +01002035 if (readw(uap->port.membase + UART011_CR)
2036 & ST_UART011_CR_OVSFACT)
2037 *baud *= 2;
2038 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002039 }
2040}
2041
2042static int __init pl011_console_setup(struct console *co, char *options)
2043{
2044 struct uart_amba_port *uap;
2045 int baud = 38400;
2046 int bits = 8;
2047 int parity = 'n';
2048 int flow = 'n';
Russell King4b4851c2011-09-22 11:35:30 +01002049 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002050
2051 /*
2052 * Check whether an invalid uart number has been specified, and
2053 * if so, search for the first available port that does have
2054 * console support.
2055 */
2056 if (co->index >= UART_NR)
2057 co->index = 0;
2058 uap = amba_ports[co->index];
Russell Kingd28122a2007-01-22 18:59:42 +00002059 if (!uap)
2060 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002061
Linus Walleij78d80c52012-05-23 21:18:46 +02002062 /* Allow pins to be muxed in and configured */
Linus Walleij2b996fc2013-06-05 15:36:42 +02002063 pinctrl_pm_select_default_state(uap->port.dev);
Linus Walleij78d80c52012-05-23 21:18:46 +02002064
Russell King4b4851c2011-09-22 11:35:30 +01002065 ret = clk_prepare(uap->clk);
2066 if (ret)
2067 return ret;
2068
Jingoo Han574de552013-07-30 17:06:57 +09002069 if (dev_get_platdata(uap->port.dev)) {
Shreshtha Kumar Sahuc16d51a2011-06-13 10:11:33 +02002070 struct amba_pl011_data *plat;
2071
Jingoo Han574de552013-07-30 17:06:57 +09002072 plat = dev_get_platdata(uap->port.dev);
Shreshtha Kumar Sahuc16d51a2011-06-13 10:11:33 +02002073 if (plat->init)
2074 plat->init();
2075 }
2076
Linus Torvalds1da177e2005-04-16 15:20:36 -07002077 uap->port.uartclk = clk_get_rate(uap->clk);
2078
2079 if (options)
2080 uart_parse_options(options, &baud, &parity, &bits, &flow);
2081 else
2082 pl011_console_get_options(uap, &baud, &parity, &bits);
2083
2084 return uart_set_options(&uap->port, co, baud, parity, bits, flow);
2085}
2086
Vincent Sanders2d934862005-09-14 22:36:03 +01002087static struct uart_driver amba_reg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002088static struct console amba_console = {
2089 .name = "ttyAMA",
2090 .write = pl011_console_write,
2091 .device = uart_console_device,
2092 .setup = pl011_console_setup,
2093 .flags = CON_PRINTBUFFER,
2094 .index = -1,
2095 .data = &amba_reg,
2096};
2097
2098#define AMBA_CONSOLE (&amba_console)
Rob Herring0d3c6732014-04-18 17:19:57 -05002099
2100static void pl011_putc(struct uart_port *port, int c)
2101{
2102 while (readl(port->membase + UART01x_FR) & UART01x_FR_TXFF)
2103 ;
2104 writeb(c, port->membase + UART01x_DR);
2105 while (readl(port->membase + UART01x_FR) & UART01x_FR_BUSY)
2106 ;
2107}
2108
2109static void pl011_early_write(struct console *con, const char *s, unsigned n)
2110{
2111 struct earlycon_device *dev = con->data;
2112
2113 uart_console_write(&dev->port, s, n, pl011_putc);
2114}
2115
2116static int __init pl011_early_console_setup(struct earlycon_device *device,
2117 const char *opt)
2118{
2119 if (!device->port.membase)
2120 return -ENODEV;
2121
2122 device->con->write = pl011_early_write;
2123 return 0;
2124}
2125EARLYCON_DECLARE(pl011, pl011_early_console_setup);
Rob Herring45e0f0f2014-03-27 08:08:03 -05002126OF_EARLYCON_DECLARE(pl011, "arm,pl011", pl011_early_console_setup);
Rob Herring0d3c6732014-04-18 17:19:57 -05002127
Linus Torvalds1da177e2005-04-16 15:20:36 -07002128#else
2129#define AMBA_CONSOLE NULL
2130#endif
2131
2132static struct uart_driver amba_reg = {
2133 .owner = THIS_MODULE,
2134 .driver_name = "ttyAMA",
2135 .dev_name = "ttyAMA",
2136 .major = SERIAL_AMBA_MAJOR,
2137 .minor = SERIAL_AMBA_MINOR,
2138 .nr = UART_NR,
2139 .cons = AMBA_CONSOLE,
2140};
2141
Matthew Leach32614aa2012-08-28 16:41:28 +01002142static int pl011_probe_dt_alias(int index, struct device *dev)
2143{
2144 struct device_node *np;
2145 static bool seen_dev_with_alias = false;
2146 static bool seen_dev_without_alias = false;
2147 int ret = index;
2148
2149 if (!IS_ENABLED(CONFIG_OF))
2150 return ret;
2151
2152 np = dev->of_node;
2153 if (!np)
2154 return ret;
2155
2156 ret = of_alias_get_id(np, "serial");
2157 if (IS_ERR_VALUE(ret)) {
2158 seen_dev_without_alias = true;
2159 ret = index;
2160 } else {
2161 seen_dev_with_alias = true;
2162 if (ret >= ARRAY_SIZE(amba_ports) || amba_ports[ret] != NULL) {
2163 dev_warn(dev, "requested serial port %d not available.\n", ret);
2164 ret = index;
2165 }
2166 }
2167
2168 if (seen_dev_with_alias && seen_dev_without_alias)
2169 dev_warn(dev, "aliased and non-aliased serial devices found in device tree. Serial port enumeration may be unpredictable.\n");
2170
2171 return ret;
2172}
2173
Andre Przywara49bb3c82015-05-21 17:26:14 +01002174/* unregisters the driver also if no more ports are left */
2175static void pl011_unregister_port(struct uart_amba_port *uap)
2176{
2177 int i;
2178 bool busy = false;
2179
2180 for (i = 0; i < ARRAY_SIZE(amba_ports); i++) {
2181 if (amba_ports[i] == uap)
2182 amba_ports[i] = NULL;
2183 else if (amba_ports[i])
2184 busy = true;
2185 }
2186 pl011_dma_remove(uap);
2187 if (!busy)
2188 uart_unregister_driver(&amba_reg);
2189}
2190
Andre Przywara3873e2d2015-05-21 17:26:18 +01002191static int pl011_find_free_port(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002192{
Andre Przywara3873e2d2015-05-21 17:26:18 +01002193 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002194
2195 for (i = 0; i < ARRAY_SIZE(amba_ports); i++)
2196 if (amba_ports[i] == NULL)
Andre Przywara3873e2d2015-05-21 17:26:18 +01002197 return i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002198
Andre Przywara3873e2d2015-05-21 17:26:18 +01002199 return -EBUSY;
2200}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002201
Andre Przywara3873e2d2015-05-21 17:26:18 +01002202static int pl011_setup_port(struct device *dev, struct uart_amba_port *uap,
2203 struct resource *mmiobase, int index)
2204{
2205 void __iomem *base;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002206
Andre Przywara3873e2d2015-05-21 17:26:18 +01002207 base = devm_ioremap_resource(dev, mmiobase);
Tushar Behera7f6d9422014-06-26 15:35:35 +05302208 if (!base)
2209 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002210
Andre Przywara3873e2d2015-05-21 17:26:18 +01002211 index = pl011_probe_dt_alias(index, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002212
Shreshtha Kumar Sahud8d8ffa2012-01-18 15:53:59 +05302213 uap->old_cr = 0;
Andre Przywara3873e2d2015-05-21 17:26:18 +01002214 uap->port.dev = dev;
2215 uap->port.mapbase = mmiobase->start;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002216 uap->port.membase = base;
2217 uap->port.iotype = UPIO_MEM;
Russell Kingffca2b12010-12-22 17:13:05 +00002218 uap->port.fifosize = uap->fifosize;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002219 uap->port.flags = UPF_BOOT_AUTOCONF;
Andre Przywara3873e2d2015-05-21 17:26:18 +01002220 uap->port.line = index;
2221
2222 amba_ports[index] = uap;
2223
2224 return 0;
2225}
2226
2227static int pl011_register_port(struct uart_amba_port *uap)
2228{
2229 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002230
Linus Walleijc3d8b762012-03-21 20:15:18 +01002231 /* Ensure interrupts from this UART are masked and cleared */
2232 writew(0, uap->port.membase + UART011_IMSC);
2233 writew(0xffff, uap->port.membase + UART011_ICR);
2234
Tushar Beheraef2889f2014-01-20 14:32:35 +05302235 if (!amba_reg.state) {
2236 ret = uart_register_driver(&amba_reg);
2237 if (ret < 0) {
Andre Przywara3873e2d2015-05-21 17:26:18 +01002238 dev_err(uap->port.dev,
Jorge Ramirez-Ortiz1c9be312015-03-06 13:05:40 -05002239 "Failed to register AMBA-PL011 driver\n");
Tushar Beheraef2889f2014-01-20 14:32:35 +05302240 return ret;
2241 }
2242 }
2243
Linus Torvalds1da177e2005-04-16 15:20:36 -07002244 ret = uart_add_one_port(&amba_reg, &uap->port);
Andre Przywara49bb3c82015-05-21 17:26:14 +01002245 if (ret)
2246 pl011_unregister_port(uap);
Tushar Behera7f6d9422014-06-26 15:35:35 +05302247
Linus Torvalds1da177e2005-04-16 15:20:36 -07002248 return ret;
2249}
2250
Andre Przywara3873e2d2015-05-21 17:26:18 +01002251static int pl011_probe(struct amba_device *dev, const struct amba_id *id)
2252{
2253 struct uart_amba_port *uap;
2254 struct vendor_data *vendor = id->data;
2255 int portnr, ret;
2256
2257 portnr = pl011_find_free_port();
2258 if (portnr < 0)
2259 return portnr;
2260
2261 uap = devm_kzalloc(&dev->dev, sizeof(struct uart_amba_port),
2262 GFP_KERNEL);
2263 if (!uap)
2264 return -ENOMEM;
2265
2266 uap->clk = devm_clk_get(&dev->dev, NULL);
2267 if (IS_ERR(uap->clk))
2268 return PTR_ERR(uap->clk);
2269
2270 uap->vendor = vendor;
2271 uap->lcrh_rx = vendor->lcrh_rx;
2272 uap->lcrh_tx = vendor->lcrh_tx;
2273 uap->fifosize = vendor->get_fifosize(dev);
2274 uap->port.irq = dev->irq[0];
2275 uap->port.ops = &amba_pl011_pops;
2276
2277 snprintf(uap->type, sizeof(uap->type), "PL011 rev%u", amba_rev(dev));
2278
2279 ret = pl011_setup_port(&dev->dev, uap, &dev->res, portnr);
2280 if (ret)
2281 return ret;
2282
2283 amba_set_drvdata(dev, uap);
2284
2285 return pl011_register_port(uap);
2286}
2287
Linus Torvalds1da177e2005-04-16 15:20:36 -07002288static int pl011_remove(struct amba_device *dev)
2289{
2290 struct uart_amba_port *uap = amba_get_drvdata(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002291
Linus Torvalds1da177e2005-04-16 15:20:36 -07002292 uart_remove_one_port(&amba_reg, &uap->port);
Andre Przywara49bb3c82015-05-21 17:26:14 +01002293 pl011_unregister_port(uap);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002294 return 0;
2295}
2296
Ulf Hanssond0ce8502013-12-03 11:04:28 +01002297#ifdef CONFIG_PM_SLEEP
2298static int pl011_suspend(struct device *dev)
Leo Chenb736b892009-07-28 23:43:33 +01002299{
Ulf Hanssond0ce8502013-12-03 11:04:28 +01002300 struct uart_amba_port *uap = dev_get_drvdata(dev);
Leo Chenb736b892009-07-28 23:43:33 +01002301
2302 if (!uap)
2303 return -EINVAL;
2304
2305 return uart_suspend_port(&amba_reg, &uap->port);
2306}
2307
Ulf Hanssond0ce8502013-12-03 11:04:28 +01002308static int pl011_resume(struct device *dev)
Leo Chenb736b892009-07-28 23:43:33 +01002309{
Ulf Hanssond0ce8502013-12-03 11:04:28 +01002310 struct uart_amba_port *uap = dev_get_drvdata(dev);
Leo Chenb736b892009-07-28 23:43:33 +01002311
2312 if (!uap)
2313 return -EINVAL;
2314
2315 return uart_resume_port(&amba_reg, &uap->port);
2316}
2317#endif
2318
Ulf Hanssond0ce8502013-12-03 11:04:28 +01002319static SIMPLE_DEV_PM_OPS(pl011_dev_pm_ops, pl011_suspend, pl011_resume);
2320
Russell King2c39c9e2010-07-27 08:50:16 +01002321static struct amba_id pl011_ids[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002322 {
2323 .id = 0x00041011,
2324 .mask = 0x000fffff,
Alessandro Rubini5926a292009-06-04 17:43:04 +01002325 .data = &vendor_arm,
2326 },
2327 {
2328 .id = 0x00380802,
2329 .mask = 0x00ffffff,
2330 .data = &vendor_st,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002331 },
2332 { 0, 0 },
2333};
2334
Dave Martin60f7a332011-10-05 15:15:22 +01002335MODULE_DEVICE_TABLE(amba, pl011_ids);
2336
Linus Torvalds1da177e2005-04-16 15:20:36 -07002337static struct amba_driver pl011_driver = {
2338 .drv = {
2339 .name = "uart-pl011",
Ulf Hanssond0ce8502013-12-03 11:04:28 +01002340 .pm = &pl011_dev_pm_ops,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002341 },
2342 .id_table = pl011_ids,
2343 .probe = pl011_probe,
2344 .remove = pl011_remove,
2345};
2346
2347static int __init pl011_init(void)
2348{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002349 printk(KERN_INFO "Serial: AMBA PL011 UART driver\n");
2350
Tushar Beheraef2889f2014-01-20 14:32:35 +05302351 return amba_driver_register(&pl011_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002352}
2353
2354static void __exit pl011_exit(void)
2355{
2356 amba_driver_unregister(&pl011_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002357}
2358
Alessandro Rubini4dd9e742009-05-05 05:54:13 +01002359/*
2360 * While this can be a module, if builtin it's most likely the console
2361 * So let's leave module_exit but move module_init to an earlier place
2362 */
2363arch_initcall(pl011_init);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002364module_exit(pl011_exit);
2365
2366MODULE_AUTHOR("ARM Ltd/Deep Blue Solutions Ltd");
2367MODULE_DESCRIPTION("ARM AMBA serial port driver");
2368MODULE_LICENSE("GPL");