blob: 6ac3254bf68cec7bdf6d5ed87c19e39ccbb2a1ee [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;
Jongsung Kim78506f22013-04-15 14:45:25 +090081
82 unsigned int (*get_fifosize)(unsigned int periphid);
Alessandro Rubini5926a292009-06-04 17:43:04 +010083};
84
Jongsung Kim78506f22013-04-15 14:45:25 +090085static unsigned int get_fifosize_arm(unsigned int periphid)
86{
87 unsigned int rev = (periphid >> 20) & 0xf;
88 return rev < 3 ? 16 : 32;
89}
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,
Jongsung Kim78506f22013-04-15 14:45:25 +090098 .get_fifosize = get_fifosize_arm,
Alessandro Rubini5926a292009-06-04 17:43:04 +010099};
100
Jongsung Kim78506f22013-04-15 14:45:25 +0900101static unsigned int get_fifosize_st(unsigned int periphid)
102{
103 return 64;
104}
105
Alessandro Rubini5926a292009-06-04 17:43:04 +0100106static struct vendor_data vendor_st = {
107 .ifls = UART011_IFLS_RX_HALF|UART011_IFLS_TX_HALF,
Linus Walleijec489aa2010-06-02 08:13:52 +0100108 .lcrh_tx = ST_UART011_LCRH_TX,
109 .lcrh_rx = ST_UART011_LCRH_RX,
Linus Walleijac3e3fb2010-06-02 20:40:22 +0100110 .oversampling = true,
Russell King38d62432010-12-22 17:59:16 +0000111 .dma_threshold = true,
Rajanikanth H.V4fd06902012-03-26 11:17:02 +0200112 .cts_event_workaround = true,
Jongsung Kim78506f22013-04-15 14:45:25 +0900113 .get_fifosize = get_fifosize_st,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114};
115
Shreshtha Kumar Sahuc16d51a2011-06-13 10:11:33 +0200116static struct uart_amba_port *amba_ports[UART_NR];
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;
170#endif
Russell Kingc19f12b2010-12-22 17:48:26 +0000171};
172
Russell King68b65f72010-12-22 17:24:39 +0000173/*
Linus Walleij29772c42011-02-24 13:21:36 +0100174 * Reads up to 256 characters from the FIFO or until it's empty and
175 * inserts them into the TTY layer. Returns the number of characters
176 * read from the FIFO.
177 */
178static int pl011_fifo_to_tty(struct uart_amba_port *uap)
179{
180 u16 status, ch;
181 unsigned int flag, max_count = 256;
182 int fifotaken = 0;
183
184 while (max_count--) {
185 status = readw(uap->port.membase + UART01x_FR);
186 if (status & UART01x_FR_RXFE)
187 break;
188
189 /* Take chars from the FIFO and update status */
190 ch = readw(uap->port.membase + UART01x_DR) |
191 UART_DUMMY_DR_RX;
192 flag = TTY_NORMAL;
193 uap->port.icount.rx++;
194 fifotaken++;
195
196 if (unlikely(ch & UART_DR_ERROR)) {
197 if (ch & UART011_DR_BE) {
198 ch &= ~(UART011_DR_FE | UART011_DR_PE);
199 uap->port.icount.brk++;
200 if (uart_handle_break(&uap->port))
201 continue;
202 } else if (ch & UART011_DR_PE)
203 uap->port.icount.parity++;
204 else if (ch & UART011_DR_FE)
205 uap->port.icount.frame++;
206 if (ch & UART011_DR_OE)
207 uap->port.icount.overrun++;
208
209 ch &= uap->port.read_status_mask;
210
211 if (ch & UART011_DR_BE)
212 flag = TTY_BREAK;
213 else if (ch & UART011_DR_PE)
214 flag = TTY_PARITY;
215 else if (ch & UART011_DR_FE)
216 flag = TTY_FRAME;
217 }
218
219 if (uart_handle_sysrq_char(&uap->port, ch & 255))
220 continue;
221
222 uart_insert_char(&uap->port, ch, UART011_DR_OE, ch, flag);
223 }
224
225 return fifotaken;
226}
227
228
229/*
Russell King68b65f72010-12-22 17:24:39 +0000230 * All the DMA operation mode stuff goes inside this ifdef.
231 * This assumes that you have a generic DMA device interface,
232 * no custom DMA interfaces are supported.
233 */
234#ifdef CONFIG_DMA_ENGINE
235
236#define PL011_DMA_BUFFER_SIZE PAGE_SIZE
237
Linus Walleijead76f32011-02-24 13:21:08 +0100238static int pl011_sgbuf_init(struct dma_chan *chan, struct pl011_sgbuf *sg,
239 enum dma_data_direction dir)
240{
Chanho Mincb06ff12013-03-27 18:38:11 +0900241 dma_addr_t dma_addr;
242
243 sg->buf = dma_alloc_coherent(chan->device->dev,
244 PL011_DMA_BUFFER_SIZE, &dma_addr, GFP_KERNEL);
Linus Walleijead76f32011-02-24 13:21:08 +0100245 if (!sg->buf)
246 return -ENOMEM;
247
Chanho Mincb06ff12013-03-27 18:38:11 +0900248 sg_init_table(&sg->sg, 1);
249 sg_set_page(&sg->sg, phys_to_page(dma_addr),
250 PL011_DMA_BUFFER_SIZE, offset_in_page(dma_addr));
251 sg_dma_address(&sg->sg) = dma_addr;
Linus Walleijead76f32011-02-24 13:21:08 +0100252
Linus Walleijead76f32011-02-24 13:21:08 +0100253 return 0;
254}
255
256static void pl011_sgbuf_free(struct dma_chan *chan, struct pl011_sgbuf *sg,
257 enum dma_data_direction dir)
258{
259 if (sg->buf) {
Chanho Mincb06ff12013-03-27 18:38:11 +0900260 dma_free_coherent(chan->device->dev,
261 PL011_DMA_BUFFER_SIZE, sg->buf,
262 sg_dma_address(&sg->sg));
Linus Walleijead76f32011-02-24 13:21:08 +0100263 }
264}
265
Arnd Bergmann787b0c12013-01-28 16:24:37 +0000266static void pl011_dma_probe_initcall(struct device *dev, struct uart_amba_port *uap)
Russell King68b65f72010-12-22 17:24:39 +0000267{
268 /* DMA is the sole user of the platform data right now */
269 struct amba_pl011_data *plat = uap->port.dev->platform_data;
270 struct dma_slave_config tx_conf = {
271 .dst_addr = uap->port.mapbase + UART01x_DR,
272 .dst_addr_width = DMA_SLAVE_BUSWIDTH_1_BYTE,
Vinod Koula485df42011-10-14 10:47:38 +0530273 .direction = DMA_MEM_TO_DEV,
Russell King68b65f72010-12-22 17:24:39 +0000274 .dst_maxburst = uap->fifosize >> 1,
Viresh Kumar258aea72012-02-01 16:12:19 +0530275 .device_fc = false,
Russell King68b65f72010-12-22 17:24:39 +0000276 };
277 struct dma_chan *chan;
278 dma_cap_mask_t mask;
279
Arnd Bergmann787b0c12013-01-28 16:24:37 +0000280 chan = dma_request_slave_channel(dev, "tx");
Russell King68b65f72010-12-22 17:24:39 +0000281
Russell King68b65f72010-12-22 17:24:39 +0000282 if (!chan) {
Arnd Bergmann787b0c12013-01-28 16:24:37 +0000283 /* We need platform data */
284 if (!plat || !plat->dma_filter) {
285 dev_info(uap->port.dev, "no DMA platform data\n");
286 return;
287 }
288
289 /* Try to acquire a generic DMA engine slave TX channel */
290 dma_cap_zero(mask);
291 dma_cap_set(DMA_SLAVE, mask);
292
293 chan = dma_request_channel(mask, plat->dma_filter,
294 plat->dma_tx_param);
295 if (!chan) {
296 dev_err(uap->port.dev, "no TX DMA channel!\n");
297 return;
298 }
Russell King68b65f72010-12-22 17:24:39 +0000299 }
300
301 dmaengine_slave_config(chan, &tx_conf);
302 uap->dmatx.chan = chan;
303
304 dev_info(uap->port.dev, "DMA channel TX %s\n",
305 dma_chan_name(uap->dmatx.chan));
Linus Walleijead76f32011-02-24 13:21:08 +0100306
307 /* Optionally make use of an RX channel as well */
Arnd Bergmann787b0c12013-01-28 16:24:37 +0000308 chan = dma_request_slave_channel(dev, "rx");
309
310 if (!chan && plat->dma_rx_param) {
311 chan = dma_request_channel(mask, plat->dma_filter, plat->dma_rx_param);
312
313 if (!chan) {
314 dev_err(uap->port.dev, "no RX DMA channel!\n");
315 return;
316 }
317 }
318
319 if (chan) {
Linus Walleijead76f32011-02-24 13:21:08 +0100320 struct dma_slave_config rx_conf = {
321 .src_addr = uap->port.mapbase + UART01x_DR,
322 .src_addr_width = DMA_SLAVE_BUSWIDTH_1_BYTE,
Vinod Koula485df42011-10-14 10:47:38 +0530323 .direction = DMA_DEV_TO_MEM,
Linus Walleijead76f32011-02-24 13:21:08 +0100324 .src_maxburst = uap->fifosize >> 1,
Viresh Kumar258aea72012-02-01 16:12:19 +0530325 .device_fc = false,
Linus Walleijead76f32011-02-24 13:21:08 +0100326 };
327
Linus Walleijead76f32011-02-24 13:21:08 +0100328 dmaengine_slave_config(chan, &rx_conf);
329 uap->dmarx.chan = chan;
330
Lee Jonesf6b6f522013-05-09 13:50:55 +0100331 if (plat && plat->dma_rx_poll_enable) {
Chanho Mincb06ff12013-03-27 18:38:11 +0900332 /* Set poll rate if specified. */
333 if (plat->dma_rx_poll_rate) {
334 uap->dmarx.auto_poll_rate = false;
335 uap->dmarx.poll_rate = plat->dma_rx_poll_rate;
336 } else {
337 /*
338 * 100 ms defaults to poll rate if not
339 * specified. This will be adjusted with
340 * the baud rate at set_termios.
341 */
342 uap->dmarx.auto_poll_rate = true;
343 uap->dmarx.poll_rate = 100;
344 }
345 /* 3 secs defaults poll_timeout if not specified. */
346 if (plat->dma_rx_poll_timeout)
347 uap->dmarx.poll_timeout =
348 plat->dma_rx_poll_timeout;
349 else
350 uap->dmarx.poll_timeout = 3000;
351 } else
352 uap->dmarx.auto_poll_rate = false;
353
Linus Walleijead76f32011-02-24 13:21:08 +0100354 dev_info(uap->port.dev, "DMA channel RX %s\n",
355 dma_chan_name(uap->dmarx.chan));
356 }
Russell King68b65f72010-12-22 17:24:39 +0000357}
358
359#ifndef MODULE
360/*
361 * Stack up the UARTs and let the above initcall be done at device
362 * initcall time, because the serial driver is called as an arch
363 * initcall, and at this time the DMA subsystem is not yet registered.
364 * At this point the driver will switch over to using DMA where desired.
365 */
366struct dma_uap {
367 struct list_head node;
368 struct uart_amba_port *uap;
Arnd Bergmann787b0c12013-01-28 16:24:37 +0000369 struct device *dev;
Russell King68b65f72010-12-22 17:24:39 +0000370};
371
372static LIST_HEAD(pl011_dma_uarts);
373
374static int __init pl011_dma_initcall(void)
375{
376 struct list_head *node, *tmp;
377
378 list_for_each_safe(node, tmp, &pl011_dma_uarts) {
379 struct dma_uap *dmau = list_entry(node, struct dma_uap, node);
Arnd Bergmann787b0c12013-01-28 16:24:37 +0000380 pl011_dma_probe_initcall(dmau->dev, dmau->uap);
Russell King68b65f72010-12-22 17:24:39 +0000381 list_del(node);
382 kfree(dmau);
383 }
384 return 0;
385}
386
387device_initcall(pl011_dma_initcall);
388
Arnd Bergmann787b0c12013-01-28 16:24:37 +0000389static void pl011_dma_probe(struct device *dev, struct uart_amba_port *uap)
Russell King68b65f72010-12-22 17:24:39 +0000390{
391 struct dma_uap *dmau = kzalloc(sizeof(struct dma_uap), GFP_KERNEL);
392 if (dmau) {
393 dmau->uap = uap;
Arnd Bergmann787b0c12013-01-28 16:24:37 +0000394 dmau->dev = dev;
Russell King68b65f72010-12-22 17:24:39 +0000395 list_add_tail(&dmau->node, &pl011_dma_uarts);
396 }
397}
398#else
Arnd Bergmann787b0c12013-01-28 16:24:37 +0000399static void pl011_dma_probe(struct device *dev, struct uart_amba_port *uap)
Russell King68b65f72010-12-22 17:24:39 +0000400{
Arnd Bergmann787b0c12013-01-28 16:24:37 +0000401 pl011_dma_probe_initcall(dev, uap);
Russell King68b65f72010-12-22 17:24:39 +0000402}
403#endif
404
405static void pl011_dma_remove(struct uart_amba_port *uap)
406{
407 /* TODO: remove the initcall if it has not yet executed */
408 if (uap->dmatx.chan)
409 dma_release_channel(uap->dmatx.chan);
Linus Walleijead76f32011-02-24 13:21:08 +0100410 if (uap->dmarx.chan)
411 dma_release_channel(uap->dmarx.chan);
Russell King68b65f72010-12-22 17:24:39 +0000412}
413
Russell King68b65f72010-12-22 17:24:39 +0000414/* Forward declare this for the refill routine */
415static int pl011_dma_tx_refill(struct uart_amba_port *uap);
416
417/*
418 * The current DMA TX buffer has been sent.
419 * Try to queue up another DMA buffer.
420 */
421static void pl011_dma_tx_callback(void *data)
422{
423 struct uart_amba_port *uap = data;
424 struct pl011_dmatx_data *dmatx = &uap->dmatx;
425 unsigned long flags;
426 u16 dmacr;
427
428 spin_lock_irqsave(&uap->port.lock, flags);
429 if (uap->dmatx.queued)
430 dma_unmap_sg(dmatx->chan->device->dev, &dmatx->sg, 1,
431 DMA_TO_DEVICE);
432
433 dmacr = uap->dmacr;
434 uap->dmacr = dmacr & ~UART011_TXDMAE;
435 writew(uap->dmacr, uap->port.membase + UART011_DMACR);
436
437 /*
438 * If TX DMA was disabled, it means that we've stopped the DMA for
439 * some reason (eg, XOFF received, or we want to send an X-char.)
440 *
441 * Note: we need to be careful here of a potential race between DMA
442 * and the rest of the driver - if the driver disables TX DMA while
443 * a TX buffer completing, we must update the tx queued status to
444 * get further refills (hence we check dmacr).
445 */
446 if (!(dmacr & UART011_TXDMAE) || uart_tx_stopped(&uap->port) ||
447 uart_circ_empty(&uap->port.state->xmit)) {
448 uap->dmatx.queued = false;
449 spin_unlock_irqrestore(&uap->port.lock, flags);
450 return;
451 }
452
453 if (pl011_dma_tx_refill(uap) <= 0) {
454 /*
455 * We didn't queue a DMA buffer for some reason, but we
456 * have data pending to be sent. Re-enable the TX IRQ.
457 */
458 uap->im |= UART011_TXIM;
459 writew(uap->im, uap->port.membase + UART011_IMSC);
460 }
461 spin_unlock_irqrestore(&uap->port.lock, flags);
462}
463
464/*
465 * Try to refill the TX DMA buffer.
466 * Locking: called with port lock held and IRQs disabled.
467 * Returns:
468 * 1 if we queued up a TX DMA buffer.
469 * 0 if we didn't want to handle this by DMA
470 * <0 on error
471 */
472static int pl011_dma_tx_refill(struct uart_amba_port *uap)
473{
474 struct pl011_dmatx_data *dmatx = &uap->dmatx;
475 struct dma_chan *chan = dmatx->chan;
476 struct dma_device *dma_dev = chan->device;
477 struct dma_async_tx_descriptor *desc;
478 struct circ_buf *xmit = &uap->port.state->xmit;
479 unsigned int count;
480
481 /*
482 * Try to avoid the overhead involved in using DMA if the
483 * transaction fits in the first half of the FIFO, by using
484 * the standard interrupt handling. This ensures that we
485 * issue a uart_write_wakeup() at the appropriate time.
486 */
487 count = uart_circ_chars_pending(xmit);
488 if (count < (uap->fifosize >> 1)) {
489 uap->dmatx.queued = false;
490 return 0;
491 }
492
493 /*
494 * Bodge: don't send the last character by DMA, as this
495 * will prevent XON from notifying us to restart DMA.
496 */
497 count -= 1;
498
499 /* Else proceed to copy the TX chars to the DMA buffer and fire DMA */
500 if (count > PL011_DMA_BUFFER_SIZE)
501 count = PL011_DMA_BUFFER_SIZE;
502
503 if (xmit->tail < xmit->head)
504 memcpy(&dmatx->buf[0], &xmit->buf[xmit->tail], count);
505 else {
506 size_t first = UART_XMIT_SIZE - xmit->tail;
507 size_t second = xmit->head;
508
509 memcpy(&dmatx->buf[0], &xmit->buf[xmit->tail], first);
510 if (second)
511 memcpy(&dmatx->buf[first], &xmit->buf[0], second);
512 }
513
514 dmatx->sg.length = count;
515
516 if (dma_map_sg(dma_dev->dev, &dmatx->sg, 1, DMA_TO_DEVICE) != 1) {
517 uap->dmatx.queued = false;
518 dev_dbg(uap->port.dev, "unable to map TX DMA\n");
519 return -EBUSY;
520 }
521
Alexandre Bounine16052822012-03-08 16:11:18 -0500522 desc = dmaengine_prep_slave_sg(chan, &dmatx->sg, 1, DMA_MEM_TO_DEV,
Russell King68b65f72010-12-22 17:24:39 +0000523 DMA_PREP_INTERRUPT | DMA_CTRL_ACK);
524 if (!desc) {
525 dma_unmap_sg(dma_dev->dev, &dmatx->sg, 1, DMA_TO_DEVICE);
526 uap->dmatx.queued = false;
527 /*
528 * If DMA cannot be used right now, we complete this
529 * transaction via IRQ and let the TTY layer retry.
530 */
531 dev_dbg(uap->port.dev, "TX DMA busy\n");
532 return -EBUSY;
533 }
534
535 /* Some data to go along to the callback */
536 desc->callback = pl011_dma_tx_callback;
537 desc->callback_param = uap;
538
539 /* All errors should happen at prepare time */
540 dmaengine_submit(desc);
541
542 /* Fire the DMA transaction */
543 dma_dev->device_issue_pending(chan);
544
545 uap->dmacr |= UART011_TXDMAE;
546 writew(uap->dmacr, uap->port.membase + UART011_DMACR);
547 uap->dmatx.queued = true;
548
549 /*
550 * Now we know that DMA will fire, so advance the ring buffer
551 * with the stuff we just dispatched.
552 */
553 xmit->tail = (xmit->tail + count) & (UART_XMIT_SIZE - 1);
554 uap->port.icount.tx += count;
555
556 if (uart_circ_chars_pending(xmit) < WAKEUP_CHARS)
557 uart_write_wakeup(&uap->port);
558
559 return 1;
560}
561
562/*
563 * We received a transmit interrupt without a pending X-char but with
564 * pending characters.
565 * Locking: called with port lock held and IRQs disabled.
566 * Returns:
567 * false if we want to use PIO to transmit
568 * true if we queued a DMA buffer
569 */
570static bool pl011_dma_tx_irq(struct uart_amba_port *uap)
571{
Linus Walleijead76f32011-02-24 13:21:08 +0100572 if (!uap->using_tx_dma)
Russell King68b65f72010-12-22 17:24:39 +0000573 return false;
574
575 /*
576 * If we already have a TX buffer queued, but received a
577 * TX interrupt, it will be because we've just sent an X-char.
578 * Ensure the TX DMA is enabled and the TX IRQ is disabled.
579 */
580 if (uap->dmatx.queued) {
581 uap->dmacr |= UART011_TXDMAE;
582 writew(uap->dmacr, uap->port.membase + UART011_DMACR);
583 uap->im &= ~UART011_TXIM;
584 writew(uap->im, uap->port.membase + UART011_IMSC);
585 return true;
586 }
587
588 /*
589 * We don't have a TX buffer queued, so try to queue one.
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300590 * If we successfully queued a buffer, mask the TX IRQ.
Russell King68b65f72010-12-22 17:24:39 +0000591 */
592 if (pl011_dma_tx_refill(uap) > 0) {
593 uap->im &= ~UART011_TXIM;
594 writew(uap->im, uap->port.membase + UART011_IMSC);
595 return true;
596 }
597 return false;
598}
599
600/*
601 * Stop the DMA transmit (eg, due to received XOFF).
602 * Locking: called with port lock held and IRQs disabled.
603 */
604static inline void pl011_dma_tx_stop(struct uart_amba_port *uap)
605{
606 if (uap->dmatx.queued) {
607 uap->dmacr &= ~UART011_TXDMAE;
608 writew(uap->dmacr, uap->port.membase + UART011_DMACR);
609 }
610}
611
612/*
613 * Try to start a DMA transmit, or in the case of an XON/OFF
614 * character queued for send, try to get that character out ASAP.
615 * Locking: called with port lock held and IRQs disabled.
616 * Returns:
617 * false if we want the TX IRQ to be enabled
618 * true if we have a buffer queued
619 */
620static inline bool pl011_dma_tx_start(struct uart_amba_port *uap)
621{
622 u16 dmacr;
623
Linus Walleijead76f32011-02-24 13:21:08 +0100624 if (!uap->using_tx_dma)
Russell King68b65f72010-12-22 17:24:39 +0000625 return false;
626
627 if (!uap->port.x_char) {
628 /* no X-char, try to push chars out in DMA mode */
629 bool ret = true;
630
631 if (!uap->dmatx.queued) {
632 if (pl011_dma_tx_refill(uap) > 0) {
633 uap->im &= ~UART011_TXIM;
634 ret = true;
635 } else {
636 uap->im |= UART011_TXIM;
637 ret = false;
638 }
639 writew(uap->im, uap->port.membase + UART011_IMSC);
640 } else if (!(uap->dmacr & UART011_TXDMAE)) {
641 uap->dmacr |= UART011_TXDMAE;
642 writew(uap->dmacr,
643 uap->port.membase + UART011_DMACR);
644 }
645 return ret;
646 }
647
648 /*
649 * We have an X-char to send. Disable DMA to prevent it loading
650 * the TX fifo, and then see if we can stuff it into the FIFO.
651 */
652 dmacr = uap->dmacr;
653 uap->dmacr &= ~UART011_TXDMAE;
654 writew(uap->dmacr, uap->port.membase + UART011_DMACR);
655
656 if (readw(uap->port.membase + UART01x_FR) & UART01x_FR_TXFF) {
657 /*
658 * No space in the FIFO, so enable the transmit interrupt
659 * so we know when there is space. Note that once we've
660 * loaded the character, we should just re-enable DMA.
661 */
662 return false;
663 }
664
665 writew(uap->port.x_char, uap->port.membase + UART01x_DR);
666 uap->port.icount.tx++;
667 uap->port.x_char = 0;
668
669 /* Success - restore the DMA state */
670 uap->dmacr = dmacr;
671 writew(dmacr, uap->port.membase + UART011_DMACR);
672
673 return true;
674}
675
676/*
677 * Flush the transmit buffer.
678 * Locking: called with port lock held and IRQs disabled.
679 */
680static void pl011_dma_flush_buffer(struct uart_port *port)
681{
682 struct uart_amba_port *uap = (struct uart_amba_port *)port;
683
Linus Walleijead76f32011-02-24 13:21:08 +0100684 if (!uap->using_tx_dma)
Russell King68b65f72010-12-22 17:24:39 +0000685 return;
686
687 /* Avoid deadlock with the DMA engine callback */
688 spin_unlock(&uap->port.lock);
689 dmaengine_terminate_all(uap->dmatx.chan);
690 spin_lock(&uap->port.lock);
691 if (uap->dmatx.queued) {
692 dma_unmap_sg(uap->dmatx.chan->device->dev, &uap->dmatx.sg, 1,
693 DMA_TO_DEVICE);
694 uap->dmatx.queued = false;
695 uap->dmacr &= ~UART011_TXDMAE;
696 writew(uap->dmacr, uap->port.membase + UART011_DMACR);
697 }
698}
699
Linus Walleijead76f32011-02-24 13:21:08 +0100700static void pl011_dma_rx_callback(void *data);
701
702static int pl011_dma_rx_trigger_dma(struct uart_amba_port *uap)
703{
704 struct dma_chan *rxchan = uap->dmarx.chan;
Linus Walleijead76f32011-02-24 13:21:08 +0100705 struct pl011_dmarx_data *dmarx = &uap->dmarx;
706 struct dma_async_tx_descriptor *desc;
707 struct pl011_sgbuf *sgbuf;
708
709 if (!rxchan)
710 return -EIO;
711
712 /* Start the RX DMA job */
713 sgbuf = uap->dmarx.use_buf_b ?
714 &uap->dmarx.sgbuf_b : &uap->dmarx.sgbuf_a;
Alexandre Bounine16052822012-03-08 16:11:18 -0500715 desc = dmaengine_prep_slave_sg(rxchan, &sgbuf->sg, 1,
Vinod Koula485df42011-10-14 10:47:38 +0530716 DMA_DEV_TO_MEM,
Linus Walleijead76f32011-02-24 13:21:08 +0100717 DMA_PREP_INTERRUPT | DMA_CTRL_ACK);
718 /*
719 * If the DMA engine is busy and cannot prepare a
720 * channel, no big deal, the driver will fall back
721 * to interrupt mode as a result of this error code.
722 */
723 if (!desc) {
724 uap->dmarx.running = false;
725 dmaengine_terminate_all(rxchan);
726 return -EBUSY;
727 }
728
729 /* Some data to go along to the callback */
730 desc->callback = pl011_dma_rx_callback;
731 desc->callback_param = uap;
732 dmarx->cookie = dmaengine_submit(desc);
733 dma_async_issue_pending(rxchan);
734
735 uap->dmacr |= UART011_RXDMAE;
736 writew(uap->dmacr, uap->port.membase + UART011_DMACR);
737 uap->dmarx.running = true;
738
739 uap->im &= ~UART011_RXIM;
740 writew(uap->im, uap->port.membase + UART011_IMSC);
741
742 return 0;
743}
744
745/*
746 * This is called when either the DMA job is complete, or
747 * the FIFO timeout interrupt occurred. This must be called
748 * with the port spinlock uap->port.lock held.
749 */
750static void pl011_dma_rx_chars(struct uart_amba_port *uap,
751 u32 pending, bool use_buf_b,
752 bool readfifo)
753{
Jiri Slaby05c7cd32013-01-03 15:53:04 +0100754 struct tty_port *port = &uap->port.state->port;
Linus Walleijead76f32011-02-24 13:21:08 +0100755 struct pl011_sgbuf *sgbuf = use_buf_b ?
756 &uap->dmarx.sgbuf_b : &uap->dmarx.sgbuf_a;
Linus Walleijead76f32011-02-24 13:21:08 +0100757 int dma_count = 0;
758 u32 fifotaken = 0; /* only used for vdbg() */
759
Chanho Mincb06ff12013-03-27 18:38:11 +0900760 struct pl011_dmarx_data *dmarx = &uap->dmarx;
761 int dmataken = 0;
762
763 if (uap->dmarx.poll_rate) {
764 /* The data can be taken by polling */
765 dmataken = sgbuf->sg.length - dmarx->last_residue;
766 /* Recalculate the pending size */
767 if (pending >= dmataken)
768 pending -= dmataken;
769 }
770
771 /* Pick the remain data from the DMA */
Linus Walleijead76f32011-02-24 13:21:08 +0100772 if (pending) {
Linus Walleijead76f32011-02-24 13:21:08 +0100773
774 /*
775 * First take all chars in the DMA pipe, then look in the FIFO.
776 * Note that tty_insert_flip_buf() tries to take as many chars
777 * as it can.
778 */
Chanho Mincb06ff12013-03-27 18:38:11 +0900779 dma_count = tty_insert_flip_string(port, sgbuf->buf + dmataken,
780 pending);
Linus Walleijead76f32011-02-24 13:21:08 +0100781
782 uap->port.icount.rx += dma_count;
783 if (dma_count < pending)
784 dev_warn(uap->port.dev,
785 "couldn't insert all characters (TTY is full?)\n");
786 }
787
Chanho Mincb06ff12013-03-27 18:38:11 +0900788 /* Reset the last_residue for Rx DMA poll */
789 if (uap->dmarx.poll_rate)
790 dmarx->last_residue = sgbuf->sg.length;
791
Linus Walleijead76f32011-02-24 13:21:08 +0100792 /*
793 * Only continue with trying to read the FIFO if all DMA chars have
794 * been taken first.
795 */
796 if (dma_count == pending && readfifo) {
797 /* Clear any error flags */
798 writew(UART011_OEIS | UART011_BEIS | UART011_PEIS | UART011_FEIS,
799 uap->port.membase + UART011_ICR);
800
801 /*
802 * If we read all the DMA'd characters, and we had an
Linus Walleij29772c42011-02-24 13:21:36 +0100803 * incomplete buffer, that could be due to an rx error, or
804 * maybe we just timed out. Read any pending chars and check
805 * the error status.
806 *
807 * Error conditions will only occur in the FIFO, these will
808 * trigger an immediate interrupt and stop the DMA job, so we
809 * will always find the error in the FIFO, never in the DMA
810 * buffer.
Linus Walleijead76f32011-02-24 13:21:08 +0100811 */
Linus Walleij29772c42011-02-24 13:21:36 +0100812 fifotaken = pl011_fifo_to_tty(uap);
Linus Walleijead76f32011-02-24 13:21:08 +0100813 }
814
815 spin_unlock(&uap->port.lock);
816 dev_vdbg(uap->port.dev,
817 "Took %d chars from DMA buffer and %d chars from the FIFO\n",
818 dma_count, fifotaken);
Jiri Slaby2e124b42013-01-03 15:53:06 +0100819 tty_flip_buffer_push(port);
Linus Walleijead76f32011-02-24 13:21:08 +0100820 spin_lock(&uap->port.lock);
821}
822
823static void pl011_dma_rx_irq(struct uart_amba_port *uap)
824{
825 struct pl011_dmarx_data *dmarx = &uap->dmarx;
826 struct dma_chan *rxchan = dmarx->chan;
827 struct pl011_sgbuf *sgbuf = dmarx->use_buf_b ?
828 &dmarx->sgbuf_b : &dmarx->sgbuf_a;
829 size_t pending;
830 struct dma_tx_state state;
831 enum dma_status dmastat;
832
833 /*
834 * Pause the transfer so we can trust the current counter,
835 * do this before we pause the PL011 block, else we may
836 * overflow the FIFO.
837 */
838 if (dmaengine_pause(rxchan))
839 dev_err(uap->port.dev, "unable to pause DMA transfer\n");
840 dmastat = rxchan->device->device_tx_status(rxchan,
841 dmarx->cookie, &state);
842 if (dmastat != DMA_PAUSED)
843 dev_err(uap->port.dev, "unable to pause DMA transfer\n");
844
845 /* Disable RX DMA - incoming data will wait in the FIFO */
846 uap->dmacr &= ~UART011_RXDMAE;
847 writew(uap->dmacr, uap->port.membase + UART011_DMACR);
848 uap->dmarx.running = false;
849
850 pending = sgbuf->sg.length - state.residue;
851 BUG_ON(pending > PL011_DMA_BUFFER_SIZE);
852 /* Then we terminate the transfer - we now know our residue */
853 dmaengine_terminate_all(rxchan);
854
855 /*
856 * This will take the chars we have so far and insert
857 * into the framework.
858 */
859 pl011_dma_rx_chars(uap, pending, dmarx->use_buf_b, true);
860
861 /* Switch buffer & re-trigger DMA job */
862 dmarx->use_buf_b = !dmarx->use_buf_b;
863 if (pl011_dma_rx_trigger_dma(uap)) {
864 dev_dbg(uap->port.dev, "could not retrigger RX DMA job "
865 "fall back to interrupt mode\n");
866 uap->im |= UART011_RXIM;
867 writew(uap->im, uap->port.membase + UART011_IMSC);
868 }
869}
870
871static void pl011_dma_rx_callback(void *data)
872{
873 struct uart_amba_port *uap = data;
874 struct pl011_dmarx_data *dmarx = &uap->dmarx;
Chanho Min6dc01aa2012-02-20 10:24:40 +0900875 struct dma_chan *rxchan = dmarx->chan;
Linus Walleijead76f32011-02-24 13:21:08 +0100876 bool lastbuf = dmarx->use_buf_b;
Chanho Min6dc01aa2012-02-20 10:24:40 +0900877 struct pl011_sgbuf *sgbuf = dmarx->use_buf_b ?
878 &dmarx->sgbuf_b : &dmarx->sgbuf_a;
879 size_t pending;
880 struct dma_tx_state state;
Linus Walleijead76f32011-02-24 13:21:08 +0100881 int ret;
882
883 /*
884 * This completion interrupt occurs typically when the
885 * RX buffer is totally stuffed but no timeout has yet
886 * occurred. When that happens, we just want the RX
887 * routine to flush out the secondary DMA buffer while
888 * we immediately trigger the next DMA job.
889 */
890 spin_lock_irq(&uap->port.lock);
Chanho Min6dc01aa2012-02-20 10:24:40 +0900891 /*
892 * Rx data can be taken by the UART interrupts during
893 * the DMA irq handler. So we check the residue here.
894 */
895 rxchan->device->device_tx_status(rxchan, dmarx->cookie, &state);
896 pending = sgbuf->sg.length - state.residue;
897 BUG_ON(pending > PL011_DMA_BUFFER_SIZE);
898 /* Then we terminate the transfer - we now know our residue */
899 dmaengine_terminate_all(rxchan);
900
Linus Walleijead76f32011-02-24 13:21:08 +0100901 uap->dmarx.running = false;
902 dmarx->use_buf_b = !lastbuf;
903 ret = pl011_dma_rx_trigger_dma(uap);
904
Chanho Min6dc01aa2012-02-20 10:24:40 +0900905 pl011_dma_rx_chars(uap, pending, lastbuf, false);
Linus Walleijead76f32011-02-24 13:21:08 +0100906 spin_unlock_irq(&uap->port.lock);
907 /*
908 * Do this check after we picked the DMA chars so we don't
909 * get some IRQ immediately from RX.
910 */
911 if (ret) {
912 dev_dbg(uap->port.dev, "could not retrigger RX DMA job "
913 "fall back to interrupt mode\n");
914 uap->im |= UART011_RXIM;
915 writew(uap->im, uap->port.membase + UART011_IMSC);
916 }
917}
918
919/*
920 * Stop accepting received characters, when we're shutting down or
921 * suspending this port.
922 * Locking: called with port lock held and IRQs disabled.
923 */
924static inline void pl011_dma_rx_stop(struct uart_amba_port *uap)
925{
926 /* FIXME. Just disable the DMA enable */
927 uap->dmacr &= ~UART011_RXDMAE;
928 writew(uap->dmacr, uap->port.membase + UART011_DMACR);
929}
Russell King68b65f72010-12-22 17:24:39 +0000930
Chanho Mincb06ff12013-03-27 18:38:11 +0900931/*
932 * Timer handler for Rx DMA polling.
933 * Every polling, It checks the residue in the dma buffer and transfer
934 * data to the tty. Also, last_residue is updated for the next polling.
935 */
936static void pl011_dma_rx_poll(unsigned long args)
937{
938 struct uart_amba_port *uap = (struct uart_amba_port *)args;
939 struct tty_port *port = &uap->port.state->port;
940 struct pl011_dmarx_data *dmarx = &uap->dmarx;
941 struct dma_chan *rxchan = uap->dmarx.chan;
942 unsigned long flags = 0;
943 unsigned int dmataken = 0;
944 unsigned int size = 0;
945 struct pl011_sgbuf *sgbuf;
946 int dma_count;
947 struct dma_tx_state state;
948
949 sgbuf = dmarx->use_buf_b ? &uap->dmarx.sgbuf_b : &uap->dmarx.sgbuf_a;
950 rxchan->device->device_tx_status(rxchan, dmarx->cookie, &state);
951 if (likely(state.residue < dmarx->last_residue)) {
952 dmataken = sgbuf->sg.length - dmarx->last_residue;
953 size = dmarx->last_residue - state.residue;
954 dma_count = tty_insert_flip_string(port, sgbuf->buf + dmataken,
955 size);
956 if (dma_count == size)
957 dmarx->last_residue = state.residue;
958 dmarx->last_jiffies = jiffies;
959 }
960 tty_flip_buffer_push(port);
961
962 /*
963 * If no data is received in poll_timeout, the driver will fall back
964 * to interrupt mode. We will retrigger DMA at the first interrupt.
965 */
966 if (jiffies_to_msecs(jiffies - dmarx->last_jiffies)
967 > uap->dmarx.poll_timeout) {
968
969 spin_lock_irqsave(&uap->port.lock, flags);
970 pl011_dma_rx_stop(uap);
971 spin_unlock_irqrestore(&uap->port.lock, flags);
972
973 uap->dmarx.running = false;
974 dmaengine_terminate_all(rxchan);
975 del_timer(&uap->dmarx.timer);
976 } else {
977 mod_timer(&uap->dmarx.timer,
978 jiffies + msecs_to_jiffies(uap->dmarx.poll_rate));
979 }
980}
981
Russell King68b65f72010-12-22 17:24:39 +0000982static void pl011_dma_startup(struct uart_amba_port *uap)
983{
Linus Walleijead76f32011-02-24 13:21:08 +0100984 int ret;
985
Russell King68b65f72010-12-22 17:24:39 +0000986 if (!uap->dmatx.chan)
987 return;
988
989 uap->dmatx.buf = kmalloc(PL011_DMA_BUFFER_SIZE, GFP_KERNEL);
990 if (!uap->dmatx.buf) {
991 dev_err(uap->port.dev, "no memory for DMA TX buffer\n");
992 uap->port.fifosize = uap->fifosize;
993 return;
994 }
995
996 sg_init_one(&uap->dmatx.sg, uap->dmatx.buf, PL011_DMA_BUFFER_SIZE);
997
998 /* The DMA buffer is now the FIFO the TTY subsystem can use */
999 uap->port.fifosize = PL011_DMA_BUFFER_SIZE;
Linus Walleijead76f32011-02-24 13:21:08 +01001000 uap->using_tx_dma = true;
Russell King68b65f72010-12-22 17:24:39 +00001001
Linus Walleijead76f32011-02-24 13:21:08 +01001002 if (!uap->dmarx.chan)
1003 goto skip_rx;
1004
1005 /* Allocate and map DMA RX buffers */
1006 ret = pl011_sgbuf_init(uap->dmarx.chan, &uap->dmarx.sgbuf_a,
1007 DMA_FROM_DEVICE);
1008 if (ret) {
1009 dev_err(uap->port.dev, "failed to init DMA %s: %d\n",
1010 "RX buffer A", ret);
1011 goto skip_rx;
1012 }
1013
1014 ret = pl011_sgbuf_init(uap->dmarx.chan, &uap->dmarx.sgbuf_b,
1015 DMA_FROM_DEVICE);
1016 if (ret) {
1017 dev_err(uap->port.dev, "failed to init DMA %s: %d\n",
1018 "RX buffer B", ret);
1019 pl011_sgbuf_free(uap->dmarx.chan, &uap->dmarx.sgbuf_a,
1020 DMA_FROM_DEVICE);
1021 goto skip_rx;
1022 }
1023
1024 uap->using_rx_dma = true;
1025
1026skip_rx:
Russell King68b65f72010-12-22 17:24:39 +00001027 /* Turn on DMA error (RX/TX will be enabled on demand) */
1028 uap->dmacr |= UART011_DMAONERR;
1029 writew(uap->dmacr, uap->port.membase + UART011_DMACR);
Russell King38d62432010-12-22 17:59:16 +00001030
1031 /*
1032 * ST Micro variants has some specific dma burst threshold
1033 * compensation. Set this to 16 bytes, so burst will only
1034 * be issued above/below 16 bytes.
1035 */
1036 if (uap->vendor->dma_threshold)
1037 writew(ST_UART011_DMAWM_RX_16 | ST_UART011_DMAWM_TX_16,
1038 uap->port.membase + ST_UART011_DMAWM);
Linus Walleijead76f32011-02-24 13:21:08 +01001039
1040 if (uap->using_rx_dma) {
1041 if (pl011_dma_rx_trigger_dma(uap))
1042 dev_dbg(uap->port.dev, "could not trigger initial "
1043 "RX DMA job, fall back to interrupt mode\n");
Chanho Mincb06ff12013-03-27 18:38:11 +09001044 if (uap->dmarx.poll_rate) {
1045 init_timer(&(uap->dmarx.timer));
1046 uap->dmarx.timer.function = pl011_dma_rx_poll;
1047 uap->dmarx.timer.data = (unsigned long)uap;
1048 mod_timer(&uap->dmarx.timer,
1049 jiffies +
1050 msecs_to_jiffies(uap->dmarx.poll_rate));
1051 uap->dmarx.last_residue = PL011_DMA_BUFFER_SIZE;
1052 uap->dmarx.last_jiffies = jiffies;
1053 }
Linus Walleijead76f32011-02-24 13:21:08 +01001054 }
Russell King68b65f72010-12-22 17:24:39 +00001055}
1056
1057static void pl011_dma_shutdown(struct uart_amba_port *uap)
1058{
Linus Walleijead76f32011-02-24 13:21:08 +01001059 if (!(uap->using_tx_dma || uap->using_rx_dma))
Russell King68b65f72010-12-22 17:24:39 +00001060 return;
1061
1062 /* Disable RX and TX DMA */
1063 while (readw(uap->port.membase + UART01x_FR) & UART01x_FR_BUSY)
1064 barrier();
1065
1066 spin_lock_irq(&uap->port.lock);
1067 uap->dmacr &= ~(UART011_DMAONERR | UART011_RXDMAE | UART011_TXDMAE);
1068 writew(uap->dmacr, uap->port.membase + UART011_DMACR);
1069 spin_unlock_irq(&uap->port.lock);
1070
Linus Walleijead76f32011-02-24 13:21:08 +01001071 if (uap->using_tx_dma) {
1072 /* In theory, this should already be done by pl011_dma_flush_buffer */
1073 dmaengine_terminate_all(uap->dmatx.chan);
1074 if (uap->dmatx.queued) {
1075 dma_unmap_sg(uap->dmatx.chan->device->dev, &uap->dmatx.sg, 1,
1076 DMA_TO_DEVICE);
1077 uap->dmatx.queued = false;
1078 }
1079
1080 kfree(uap->dmatx.buf);
1081 uap->using_tx_dma = false;
Russell King68b65f72010-12-22 17:24:39 +00001082 }
1083
Linus Walleijead76f32011-02-24 13:21:08 +01001084 if (uap->using_rx_dma) {
1085 dmaengine_terminate_all(uap->dmarx.chan);
1086 /* Clean up the RX DMA */
1087 pl011_sgbuf_free(uap->dmarx.chan, &uap->dmarx.sgbuf_a, DMA_FROM_DEVICE);
1088 pl011_sgbuf_free(uap->dmarx.chan, &uap->dmarx.sgbuf_b, DMA_FROM_DEVICE);
Chanho Mincb06ff12013-03-27 18:38:11 +09001089 if (uap->dmarx.poll_rate)
1090 del_timer_sync(&uap->dmarx.timer);
Linus Walleijead76f32011-02-24 13:21:08 +01001091 uap->using_rx_dma = false;
1092 }
Russell King68b65f72010-12-22 17:24:39 +00001093}
1094
Linus Walleijead76f32011-02-24 13:21:08 +01001095static inline bool pl011_dma_rx_available(struct uart_amba_port *uap)
1096{
1097 return uap->using_rx_dma;
1098}
1099
1100static inline bool pl011_dma_rx_running(struct uart_amba_port *uap)
1101{
1102 return uap->using_rx_dma && uap->dmarx.running;
1103}
1104
Russell King68b65f72010-12-22 17:24:39 +00001105#else
1106/* Blank functions if the DMA engine is not available */
Arnd Bergmannaabdd292013-04-20 09:40:33 +02001107static inline void pl011_dma_probe(struct device *dev, struct uart_amba_port *uap)
Russell King68b65f72010-12-22 17:24:39 +00001108{
1109}
1110
1111static inline void pl011_dma_remove(struct uart_amba_port *uap)
1112{
1113}
1114
1115static inline void pl011_dma_startup(struct uart_amba_port *uap)
1116{
1117}
1118
1119static inline void pl011_dma_shutdown(struct uart_amba_port *uap)
1120{
1121}
1122
1123static inline bool pl011_dma_tx_irq(struct uart_amba_port *uap)
1124{
1125 return false;
1126}
1127
1128static inline void pl011_dma_tx_stop(struct uart_amba_port *uap)
1129{
1130}
1131
1132static inline bool pl011_dma_tx_start(struct uart_amba_port *uap)
1133{
1134 return false;
1135}
1136
Linus Walleijead76f32011-02-24 13:21:08 +01001137static inline void pl011_dma_rx_irq(struct uart_amba_port *uap)
1138{
1139}
1140
1141static inline void pl011_dma_rx_stop(struct uart_amba_port *uap)
1142{
1143}
1144
1145static inline int pl011_dma_rx_trigger_dma(struct uart_amba_port *uap)
1146{
1147 return -EIO;
1148}
1149
1150static inline bool pl011_dma_rx_available(struct uart_amba_port *uap)
1151{
1152 return false;
1153}
1154
1155static inline bool pl011_dma_rx_running(struct uart_amba_port *uap)
1156{
1157 return false;
1158}
1159
Russell King68b65f72010-12-22 17:24:39 +00001160#define pl011_dma_flush_buffer NULL
1161#endif
1162
Russell Kingb129a8c2005-08-31 10:12:14 +01001163static void pl011_stop_tx(struct uart_port *port)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001164{
1165 struct uart_amba_port *uap = (struct uart_amba_port *)port;
1166
1167 uap->im &= ~UART011_TXIM;
1168 writew(uap->im, uap->port.membase + UART011_IMSC);
Russell King68b65f72010-12-22 17:24:39 +00001169 pl011_dma_tx_stop(uap);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001170}
1171
Russell Kingb129a8c2005-08-31 10:12:14 +01001172static void pl011_start_tx(struct uart_port *port)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001173{
1174 struct uart_amba_port *uap = (struct uart_amba_port *)port;
1175
Russell King68b65f72010-12-22 17:24:39 +00001176 if (!pl011_dma_tx_start(uap)) {
1177 uap->im |= UART011_TXIM;
1178 writew(uap->im, uap->port.membase + UART011_IMSC);
1179 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001180}
1181
1182static void pl011_stop_rx(struct uart_port *port)
1183{
1184 struct uart_amba_port *uap = (struct uart_amba_port *)port;
1185
1186 uap->im &= ~(UART011_RXIM|UART011_RTIM|UART011_FEIM|
1187 UART011_PEIM|UART011_BEIM|UART011_OEIM);
1188 writew(uap->im, uap->port.membase + UART011_IMSC);
Linus Walleijead76f32011-02-24 13:21:08 +01001189
1190 pl011_dma_rx_stop(uap);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001191}
1192
1193static void pl011_enable_ms(struct uart_port *port)
1194{
1195 struct uart_amba_port *uap = (struct uart_amba_port *)port;
1196
1197 uap->im |= UART011_RIMIM|UART011_CTSMIM|UART011_DCDMIM|UART011_DSRMIM;
1198 writew(uap->im, uap->port.membase + UART011_IMSC);
1199}
1200
David Howells7d12e782006-10-05 14:55:46 +01001201static void pl011_rx_chars(struct uart_amba_port *uap)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001202{
Linus Walleij29772c42011-02-24 13:21:36 +01001203 pl011_fifo_to_tty(uap);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001204
Thomas Gleixner2389b272007-05-29 21:53:50 +01001205 spin_unlock(&uap->port.lock);
Jiri Slaby2e124b42013-01-03 15:53:06 +01001206 tty_flip_buffer_push(&uap->port.state->port);
Linus Walleijead76f32011-02-24 13:21:08 +01001207 /*
1208 * If we were temporarily out of DMA mode for a while,
1209 * attempt to switch back to DMA mode again.
1210 */
1211 if (pl011_dma_rx_available(uap)) {
1212 if (pl011_dma_rx_trigger_dma(uap)) {
1213 dev_dbg(uap->port.dev, "could not trigger RX DMA job "
1214 "fall back to interrupt mode again\n");
1215 uap->im |= UART011_RXIM;
Chanho Mincb06ff12013-03-27 18:38:11 +09001216 } else {
Linus Walleijead76f32011-02-24 13:21:08 +01001217 uap->im &= ~UART011_RXIM;
Chanho Min89fa28d2013-04-03 11:10:37 +09001218#ifdef CONFIG_DMA_ENGINE
Chanho Mincb06ff12013-03-27 18:38:11 +09001219 /* Start Rx DMA poll */
1220 if (uap->dmarx.poll_rate) {
1221 uap->dmarx.last_jiffies = jiffies;
1222 uap->dmarx.last_residue = PL011_DMA_BUFFER_SIZE;
1223 mod_timer(&uap->dmarx.timer,
1224 jiffies +
1225 msecs_to_jiffies(uap->dmarx.poll_rate));
1226 }
Chanho Min89fa28d2013-04-03 11:10:37 +09001227#endif
Chanho Mincb06ff12013-03-27 18:38:11 +09001228 }
1229
Linus Walleijead76f32011-02-24 13:21:08 +01001230 writew(uap->im, uap->port.membase + UART011_IMSC);
1231 }
Thomas Gleixner2389b272007-05-29 21:53:50 +01001232 spin_lock(&uap->port.lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001233}
1234
1235static void pl011_tx_chars(struct uart_amba_port *uap)
1236{
Alan Coxebd2c8f2009-09-19 13:13:28 -07001237 struct circ_buf *xmit = &uap->port.state->xmit;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001238 int count;
1239
1240 if (uap->port.x_char) {
1241 writew(uap->port.x_char, uap->port.membase + UART01x_DR);
1242 uap->port.icount.tx++;
1243 uap->port.x_char = 0;
1244 return;
1245 }
1246 if (uart_circ_empty(xmit) || uart_tx_stopped(&uap->port)) {
Russell Kingb129a8c2005-08-31 10:12:14 +01001247 pl011_stop_tx(&uap->port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001248 return;
1249 }
1250
Russell King68b65f72010-12-22 17:24:39 +00001251 /* If we are using DMA mode, try to send some characters. */
1252 if (pl011_dma_tx_irq(uap))
1253 return;
1254
Russell Kingffca2b12010-12-22 17:13:05 +00001255 count = uap->fifosize >> 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001256 do {
1257 writew(xmit->buf[xmit->tail], uap->port.membase + UART01x_DR);
1258 xmit->tail = (xmit->tail + 1) & (UART_XMIT_SIZE - 1);
1259 uap->port.icount.tx++;
1260 if (uart_circ_empty(xmit))
1261 break;
1262 } while (--count > 0);
1263
1264 if (uart_circ_chars_pending(xmit) < WAKEUP_CHARS)
1265 uart_write_wakeup(&uap->port);
1266
1267 if (uart_circ_empty(xmit))
Russell Kingb129a8c2005-08-31 10:12:14 +01001268 pl011_stop_tx(&uap->port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001269}
1270
1271static void pl011_modem_status(struct uart_amba_port *uap)
1272{
1273 unsigned int status, delta;
1274
1275 status = readw(uap->port.membase + UART01x_FR) & UART01x_FR_MODEM_ANY;
1276
1277 delta = status ^ uap->old_status;
1278 uap->old_status = status;
1279
1280 if (!delta)
1281 return;
1282
1283 if (delta & UART01x_FR_DCD)
1284 uart_handle_dcd_change(&uap->port, status & UART01x_FR_DCD);
1285
1286 if (delta & UART01x_FR_DSR)
1287 uap->port.icount.dsr++;
1288
1289 if (delta & UART01x_FR_CTS)
1290 uart_handle_cts_change(&uap->port, status & UART01x_FR_CTS);
1291
Alan Coxbdc04e32009-09-19 13:13:31 -07001292 wake_up_interruptible(&uap->port.state->port.delta_msr_wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001293}
1294
David Howells7d12e782006-10-05 14:55:46 +01001295static irqreturn_t pl011_int(int irq, void *dev_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001296{
1297 struct uart_amba_port *uap = dev_id;
Russell King963cc982010-12-22 17:16:09 +00001298 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001299 unsigned int status, pass_counter = AMBA_ISR_PASS_LIMIT;
1300 int handled = 0;
Rajanikanth H.V4fd06902012-03-26 11:17:02 +02001301 unsigned int dummy_read;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001302
Russell King963cc982010-12-22 17:16:09 +00001303 spin_lock_irqsave(&uap->port.lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001304 status = readw(uap->port.membase + UART011_MIS);
1305 if (status) {
1306 do {
Rajanikanth H.V4fd06902012-03-26 11:17:02 +02001307 if (uap->vendor->cts_event_workaround) {
1308 /* workaround to make sure that all bits are unlocked.. */
1309 writew(0x00, uap->port.membase + UART011_ICR);
1310
1311 /*
1312 * WA: introduce 26ns(1 uart clk) delay before W1C;
1313 * single apb access will incur 2 pclk(133.12Mhz) delay,
1314 * so add 2 dummy reads
1315 */
1316 dummy_read = readw(uap->port.membase + UART011_ICR);
1317 dummy_read = readw(uap->port.membase + UART011_ICR);
1318 }
1319
Linus Torvalds1da177e2005-04-16 15:20:36 -07001320 writew(status & ~(UART011_TXIS|UART011_RTIS|
1321 UART011_RXIS),
1322 uap->port.membase + UART011_ICR);
1323
Linus Walleijead76f32011-02-24 13:21:08 +01001324 if (status & (UART011_RTIS|UART011_RXIS)) {
1325 if (pl011_dma_rx_running(uap))
1326 pl011_dma_rx_irq(uap);
1327 else
1328 pl011_rx_chars(uap);
1329 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001330 if (status & (UART011_DSRMIS|UART011_DCDMIS|
1331 UART011_CTSMIS|UART011_RIMIS))
1332 pl011_modem_status(uap);
1333 if (status & UART011_TXIS)
1334 pl011_tx_chars(uap);
1335
Rajanikanth H.V4fd06902012-03-26 11:17:02 +02001336 if (pass_counter-- == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001337 break;
1338
1339 status = readw(uap->port.membase + UART011_MIS);
1340 } while (status != 0);
1341 handled = 1;
1342 }
1343
Russell King963cc982010-12-22 17:16:09 +00001344 spin_unlock_irqrestore(&uap->port.lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001345
1346 return IRQ_RETVAL(handled);
1347}
1348
Linus Walleije643f872012-06-17 15:44:19 +02001349static unsigned int pl011_tx_empty(struct uart_port *port)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001350{
1351 struct uart_amba_port *uap = (struct uart_amba_port *)port;
1352 unsigned int status = readw(uap->port.membase + UART01x_FR);
1353 return status & (UART01x_FR_BUSY|UART01x_FR_TXFF) ? 0 : TIOCSER_TEMT;
1354}
1355
Linus Walleije643f872012-06-17 15:44:19 +02001356static unsigned int pl011_get_mctrl(struct uart_port *port)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001357{
1358 struct uart_amba_port *uap = (struct uart_amba_port *)port;
1359 unsigned int result = 0;
1360 unsigned int status = readw(uap->port.membase + UART01x_FR);
1361
Jiri Slaby5159f402007-10-18 23:40:31 -07001362#define TIOCMBIT(uartbit, tiocmbit) \
Linus Torvalds1da177e2005-04-16 15:20:36 -07001363 if (status & uartbit) \
1364 result |= tiocmbit
1365
Jiri Slaby5159f402007-10-18 23:40:31 -07001366 TIOCMBIT(UART01x_FR_DCD, TIOCM_CAR);
1367 TIOCMBIT(UART01x_FR_DSR, TIOCM_DSR);
1368 TIOCMBIT(UART01x_FR_CTS, TIOCM_CTS);
1369 TIOCMBIT(UART011_FR_RI, TIOCM_RNG);
1370#undef TIOCMBIT
Linus Torvalds1da177e2005-04-16 15:20:36 -07001371 return result;
1372}
1373
1374static void pl011_set_mctrl(struct uart_port *port, unsigned int mctrl)
1375{
1376 struct uart_amba_port *uap = (struct uart_amba_port *)port;
1377 unsigned int cr;
1378
1379 cr = readw(uap->port.membase + UART011_CR);
1380
Jiri Slaby5159f402007-10-18 23:40:31 -07001381#define TIOCMBIT(tiocmbit, uartbit) \
Linus Torvalds1da177e2005-04-16 15:20:36 -07001382 if (mctrl & tiocmbit) \
1383 cr |= uartbit; \
1384 else \
1385 cr &= ~uartbit
1386
Jiri Slaby5159f402007-10-18 23:40:31 -07001387 TIOCMBIT(TIOCM_RTS, UART011_CR_RTS);
1388 TIOCMBIT(TIOCM_DTR, UART011_CR_DTR);
1389 TIOCMBIT(TIOCM_OUT1, UART011_CR_OUT1);
1390 TIOCMBIT(TIOCM_OUT2, UART011_CR_OUT2);
1391 TIOCMBIT(TIOCM_LOOP, UART011_CR_LBE);
Rabin Vincent3b438162010-02-12 06:43:11 +01001392
1393 if (uap->autorts) {
1394 /* We need to disable auto-RTS if we want to turn RTS off */
1395 TIOCMBIT(TIOCM_RTS, UART011_CR_RTSEN);
1396 }
Jiri Slaby5159f402007-10-18 23:40:31 -07001397#undef TIOCMBIT
Linus Torvalds1da177e2005-04-16 15:20:36 -07001398
1399 writew(cr, uap->port.membase + UART011_CR);
1400}
1401
1402static void pl011_break_ctl(struct uart_port *port, int break_state)
1403{
1404 struct uart_amba_port *uap = (struct uart_amba_port *)port;
1405 unsigned long flags;
1406 unsigned int lcr_h;
1407
1408 spin_lock_irqsave(&uap->port.lock, flags);
Linus Walleijec489aa2010-06-02 08:13:52 +01001409 lcr_h = readw(uap->port.membase + uap->lcrh_tx);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001410 if (break_state == -1)
1411 lcr_h |= UART01x_LCRH_BRK;
1412 else
1413 lcr_h &= ~UART01x_LCRH_BRK;
Linus Walleijec489aa2010-06-02 08:13:52 +01001414 writew(lcr_h, uap->port.membase + uap->lcrh_tx);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001415 spin_unlock_irqrestore(&uap->port.lock, flags);
1416}
1417
Jason Wessel84b5ae12008-02-20 13:33:39 -06001418#ifdef CONFIG_CONSOLE_POLL
Anton Vorontsov5c8124a2012-09-24 14:27:55 -07001419
1420static void pl011_quiesce_irqs(struct uart_port *port)
1421{
1422 struct uart_amba_port *uap = (struct uart_amba_port *)port;
1423 unsigned char __iomem *regs = uap->port.membase;
1424
1425 writew(readw(regs + UART011_MIS), regs + UART011_ICR);
1426 /*
1427 * There is no way to clear TXIM as this is "ready to transmit IRQ", so
1428 * we simply mask it. start_tx() will unmask it.
1429 *
1430 * Note we can race with start_tx(), and if the race happens, the
1431 * polling user might get another interrupt just after we clear it.
1432 * But it should be OK and can happen even w/o the race, e.g.
1433 * controller immediately got some new data and raised the IRQ.
1434 *
1435 * And whoever uses polling routines assumes that it manages the device
1436 * (including tx queue), so we're also fine with start_tx()'s caller
1437 * side.
1438 */
1439 writew(readw(regs + UART011_IMSC) & ~UART011_TXIM, regs + UART011_IMSC);
1440}
1441
Linus Walleije643f872012-06-17 15:44:19 +02001442static int pl011_get_poll_char(struct uart_port *port)
Jason Wessel84b5ae12008-02-20 13:33:39 -06001443{
1444 struct uart_amba_port *uap = (struct uart_amba_port *)port;
1445 unsigned int status;
1446
Anton Vorontsov5c8124a2012-09-24 14:27:55 -07001447 /*
1448 * The caller might need IRQs lowered, e.g. if used with KDB NMI
1449 * debugger.
1450 */
1451 pl011_quiesce_irqs(port);
1452
Jason Wesself5316b42010-05-20 21:04:22 -05001453 status = readw(uap->port.membase + UART01x_FR);
1454 if (status & UART01x_FR_RXFE)
1455 return NO_POLL_CHAR;
Jason Wessel84b5ae12008-02-20 13:33:39 -06001456
1457 return readw(uap->port.membase + UART01x_DR);
1458}
1459
Linus Walleije643f872012-06-17 15:44:19 +02001460static void pl011_put_poll_char(struct uart_port *port,
Jason Wessel84b5ae12008-02-20 13:33:39 -06001461 unsigned char ch)
1462{
1463 struct uart_amba_port *uap = (struct uart_amba_port *)port;
1464
1465 while (readw(uap->port.membase + UART01x_FR) & UART01x_FR_TXFF)
1466 barrier();
1467
1468 writew(ch, uap->port.membase + UART01x_DR);
1469}
1470
1471#endif /* CONFIG_CONSOLE_POLL */
1472
Anton Vorontsovb3564c22012-09-24 14:27:54 -07001473static int pl011_hwinit(struct uart_port *port)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001474{
1475 struct uart_amba_port *uap = (struct uart_amba_port *)port;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001476 int retval;
1477
Linus Walleij78d80c52012-05-23 21:18:46 +02001478 /* Optionaly enable pins to be muxed in and configured */
Linus Walleij2b996fc2013-06-05 15:36:42 +02001479 pinctrl_pm_select_default_state(port->dev);
Linus Walleij78d80c52012-05-23 21:18:46 +02001480
Linus Torvalds1da177e2005-04-16 15:20:36 -07001481 /*
1482 * Try to enable the clock producer.
1483 */
Julia Lawall1c4c4392012-08-26 18:01:01 +02001484 retval = clk_prepare_enable(uap->clk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001485 if (retval)
Julia Lawall1c4c4392012-08-26 18:01:01 +02001486 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001487
1488 uap->port.uartclk = clk_get_rate(uap->clk);
1489
Linus Walleij9b96fba2012-03-13 13:27:23 +01001490 /* Clear pending error and receive interrupts */
1491 writew(UART011_OEIS | UART011_BEIS | UART011_PEIS | UART011_FEIS |
1492 UART011_RTIS | UART011_RXIS, uap->port.membase + UART011_ICR);
1493
Linus Torvalds1da177e2005-04-16 15:20:36 -07001494 /*
Anton Vorontsovb3564c22012-09-24 14:27:54 -07001495 * Save interrupts enable mask, and enable RX interrupts in case if
1496 * the interrupt is used for NMI entry.
1497 */
1498 uap->im = readw(uap->port.membase + UART011_IMSC);
1499 writew(UART011_RTIM | UART011_RXIM, uap->port.membase + UART011_IMSC);
1500
1501 if (uap->port.dev->platform_data) {
1502 struct amba_pl011_data *plat;
1503
1504 plat = uap->port.dev->platform_data;
1505 if (plat->init)
1506 plat->init();
1507 }
1508 return 0;
1509 out:
1510 return retval;
1511}
1512
1513static int pl011_startup(struct uart_port *port)
1514{
1515 struct uart_amba_port *uap = (struct uart_amba_port *)port;
1516 unsigned int cr;
1517 int retval;
1518
1519 retval = pl011_hwinit(port);
1520 if (retval)
1521 goto clk_dis;
1522
1523 writew(uap->im, uap->port.membase + UART011_IMSC);
1524
1525 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001526 * Allocate the IRQ
1527 */
1528 retval = request_irq(uap->port.irq, pl011_int, 0, "uart-pl011", uap);
1529 if (retval)
1530 goto clk_dis;
1531
Russell Kingc19f12b2010-12-22 17:48:26 +00001532 writew(uap->vendor->ifls, uap->port.membase + UART011_IFLS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001533
1534 /*
1535 * Provoke TX FIFO interrupt into asserting.
1536 */
1537 cr = UART01x_CR_UARTEN | UART011_CR_TXE | UART011_CR_LBE;
1538 writew(cr, uap->port.membase + UART011_CR);
1539 writew(0, uap->port.membase + UART011_FBRD);
1540 writew(1, uap->port.membase + UART011_IBRD);
Linus Walleijec489aa2010-06-02 08:13:52 +01001541 writew(0, uap->port.membase + uap->lcrh_rx);
1542 if (uap->lcrh_tx != uap->lcrh_rx) {
1543 int i;
1544 /*
1545 * Wait 10 PCLKs before writing LCRH_TX register,
1546 * to get this delay write read only register 10 times
1547 */
1548 for (i = 0; i < 10; ++i)
1549 writew(0xff, uap->port.membase + UART011_MIS);
1550 writew(0, uap->port.membase + uap->lcrh_tx);
1551 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001552 writew(0, uap->port.membase + UART01x_DR);
1553 while (readw(uap->port.membase + UART01x_FR) & UART01x_FR_BUSY)
1554 barrier();
1555
Shreshtha Kumar Sahud8d8ffa2012-01-18 15:53:59 +05301556 /* restore RTS and DTR */
1557 cr = uap->old_cr & (UART011_CR_RTS | UART011_CR_DTR);
1558 cr |= UART01x_CR_UARTEN | UART011_CR_RXE | UART011_CR_TXE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001559 writew(cr, uap->port.membase + UART011_CR);
1560
1561 /*
1562 * initialise the old status of the modem signals
1563 */
1564 uap->old_status = readw(uap->port.membase + UART01x_FR) & UART01x_FR_MODEM_ANY;
1565
Russell King68b65f72010-12-22 17:24:39 +00001566 /* Startup DMA */
1567 pl011_dma_startup(uap);
1568
Linus Torvalds1da177e2005-04-16 15:20:36 -07001569 /*
Linus Walleijead76f32011-02-24 13:21:08 +01001570 * Finally, enable interrupts, only timeouts when using DMA
1571 * if initial RX DMA job failed, start in interrupt mode
1572 * as well.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001573 */
1574 spin_lock_irq(&uap->port.lock);
Linus Walleij9b96fba2012-03-13 13:27:23 +01001575 /* Clear out any spuriously appearing RX interrupts */
1576 writew(UART011_RTIS | UART011_RXIS,
1577 uap->port.membase + UART011_ICR);
Linus Walleijead76f32011-02-24 13:21:08 +01001578 uap->im = UART011_RTIM;
1579 if (!pl011_dma_rx_running(uap))
1580 uap->im |= UART011_RXIM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001581 writew(uap->im, uap->port.membase + UART011_IMSC);
1582 spin_unlock_irq(&uap->port.lock);
1583
1584 return 0;
1585
1586 clk_dis:
Julia Lawall1c4c4392012-08-26 18:01:01 +02001587 clk_disable_unprepare(uap->clk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001588 return retval;
1589}
1590
Linus Walleijec489aa2010-06-02 08:13:52 +01001591static void pl011_shutdown_channel(struct uart_amba_port *uap,
1592 unsigned int lcrh)
1593{
1594 unsigned long val;
1595
1596 val = readw(uap->port.membase + lcrh);
1597 val &= ~(UART01x_LCRH_BRK | UART01x_LCRH_FEN);
1598 writew(val, uap->port.membase + lcrh);
1599}
1600
Linus Torvalds1da177e2005-04-16 15:20:36 -07001601static void pl011_shutdown(struct uart_port *port)
1602{
1603 struct uart_amba_port *uap = (struct uart_amba_port *)port;
Shreshtha Kumar Sahud8d8ffa2012-01-18 15:53:59 +05301604 unsigned int cr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001605
1606 /*
1607 * disable all interrupts
1608 */
1609 spin_lock_irq(&uap->port.lock);
1610 uap->im = 0;
1611 writew(uap->im, uap->port.membase + UART011_IMSC);
1612 writew(0xffff, uap->port.membase + UART011_ICR);
1613 spin_unlock_irq(&uap->port.lock);
1614
Russell King68b65f72010-12-22 17:24:39 +00001615 pl011_dma_shutdown(uap);
1616
Linus Torvalds1da177e2005-04-16 15:20:36 -07001617 /*
1618 * Free the interrupt
1619 */
1620 free_irq(uap->port.irq, uap);
1621
1622 /*
1623 * disable the port
Shreshtha Kumar Sahud8d8ffa2012-01-18 15:53:59 +05301624 * disable the port. It should not disable RTS and DTR.
1625 * Also RTS and DTR state should be preserved to restore
1626 * it during startup().
Linus Torvalds1da177e2005-04-16 15:20:36 -07001627 */
Rabin Vincent3b438162010-02-12 06:43:11 +01001628 uap->autorts = false;
Shreshtha Kumar Sahud8d8ffa2012-01-18 15:53:59 +05301629 cr = readw(uap->port.membase + UART011_CR);
1630 uap->old_cr = cr;
1631 cr &= UART011_CR_RTS | UART011_CR_DTR;
1632 cr |= UART01x_CR_UARTEN | UART011_CR_TXE;
1633 writew(cr, uap->port.membase + UART011_CR);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001634
1635 /*
1636 * disable break condition and fifos
1637 */
Linus Walleijec489aa2010-06-02 08:13:52 +01001638 pl011_shutdown_channel(uap, uap->lcrh_rx);
1639 if (uap->lcrh_rx != uap->lcrh_tx)
1640 pl011_shutdown_channel(uap, uap->lcrh_tx);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001641
1642 /*
1643 * Shut down the clock producer
1644 */
Julia Lawall1c4c4392012-08-26 18:01:01 +02001645 clk_disable_unprepare(uap->clk);
Linus Walleij78d80c52012-05-23 21:18:46 +02001646 /* Optionally let pins go into sleep states */
Linus Walleij2b996fc2013-06-05 15:36:42 +02001647 pinctrl_pm_select_sleep_state(port->dev);
Shreshtha Kumar Sahuc16d51a2011-06-13 10:11:33 +02001648
1649 if (uap->port.dev->platform_data) {
1650 struct amba_pl011_data *plat;
1651
1652 plat = uap->port.dev->platform_data;
1653 if (plat->exit)
1654 plat->exit();
1655 }
1656
Linus Torvalds1da177e2005-04-16 15:20:36 -07001657}
1658
1659static void
Alan Cox606d0992006-12-08 02:38:45 -08001660pl011_set_termios(struct uart_port *port, struct ktermios *termios,
1661 struct ktermios *old)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001662{
Rabin Vincent3b438162010-02-12 06:43:11 +01001663 struct uart_amba_port *uap = (struct uart_amba_port *)port;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001664 unsigned int lcr_h, old_cr;
1665 unsigned long flags;
Russell Kingc19f12b2010-12-22 17:48:26 +00001666 unsigned int baud, quot, clkdiv;
1667
1668 if (uap->vendor->oversampling)
1669 clkdiv = 8;
1670 else
1671 clkdiv = 16;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001672
1673 /*
1674 * Ask the core to calculate the divisor for us.
1675 */
Linus Walleijac3e3fb2010-06-02 20:40:22 +01001676 baud = uart_get_baud_rate(port, termios, old, 0,
Russell Kingc19f12b2010-12-22 17:48:26 +00001677 port->uartclk / clkdiv);
Chanho Min89fa28d2013-04-03 11:10:37 +09001678#ifdef CONFIG_DMA_ENGINE
Chanho Mincb06ff12013-03-27 18:38:11 +09001679 /*
1680 * Adjust RX DMA polling rate with baud rate if not specified.
1681 */
1682 if (uap->dmarx.auto_poll_rate)
1683 uap->dmarx.poll_rate = DIV_ROUND_UP(10000000, baud);
Chanho Min89fa28d2013-04-03 11:10:37 +09001684#endif
Linus Walleijac3e3fb2010-06-02 20:40:22 +01001685
1686 if (baud > port->uartclk/16)
1687 quot = DIV_ROUND_CLOSEST(port->uartclk * 8, baud);
1688 else
1689 quot = DIV_ROUND_CLOSEST(port->uartclk * 4, baud);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001690
1691 switch (termios->c_cflag & CSIZE) {
1692 case CS5:
1693 lcr_h = UART01x_LCRH_WLEN_5;
1694 break;
1695 case CS6:
1696 lcr_h = UART01x_LCRH_WLEN_6;
1697 break;
1698 case CS7:
1699 lcr_h = UART01x_LCRH_WLEN_7;
1700 break;
1701 default: // CS8
1702 lcr_h = UART01x_LCRH_WLEN_8;
1703 break;
1704 }
1705 if (termios->c_cflag & CSTOPB)
1706 lcr_h |= UART01x_LCRH_STP2;
1707 if (termios->c_cflag & PARENB) {
1708 lcr_h |= UART01x_LCRH_PEN;
1709 if (!(termios->c_cflag & PARODD))
1710 lcr_h |= UART01x_LCRH_EPS;
1711 }
Russell Kingffca2b12010-12-22 17:13:05 +00001712 if (uap->fifosize > 1)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001713 lcr_h |= UART01x_LCRH_FEN;
1714
1715 spin_lock_irqsave(&port->lock, flags);
1716
1717 /*
1718 * Update the per-port timeout.
1719 */
1720 uart_update_timeout(port, termios->c_cflag, baud);
1721
Russell Kingb63d4f02005-11-19 11:10:35 +00001722 port->read_status_mask = UART011_DR_OE | 255;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001723 if (termios->c_iflag & INPCK)
Russell Kingb63d4f02005-11-19 11:10:35 +00001724 port->read_status_mask |= UART011_DR_FE | UART011_DR_PE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001725 if (termios->c_iflag & (BRKINT | PARMRK))
Russell Kingb63d4f02005-11-19 11:10:35 +00001726 port->read_status_mask |= UART011_DR_BE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001727
1728 /*
1729 * Characters to ignore
1730 */
1731 port->ignore_status_mask = 0;
1732 if (termios->c_iflag & IGNPAR)
Russell Kingb63d4f02005-11-19 11:10:35 +00001733 port->ignore_status_mask |= UART011_DR_FE | UART011_DR_PE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001734 if (termios->c_iflag & IGNBRK) {
Russell Kingb63d4f02005-11-19 11:10:35 +00001735 port->ignore_status_mask |= UART011_DR_BE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001736 /*
1737 * If we're ignoring parity and break indicators,
1738 * ignore overruns too (for real raw support).
1739 */
1740 if (termios->c_iflag & IGNPAR)
Russell Kingb63d4f02005-11-19 11:10:35 +00001741 port->ignore_status_mask |= UART011_DR_OE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001742 }
1743
1744 /*
1745 * Ignore all characters if CREAD is not set.
1746 */
1747 if ((termios->c_cflag & CREAD) == 0)
Russell Kingb63d4f02005-11-19 11:10:35 +00001748 port->ignore_status_mask |= UART_DUMMY_DR_RX;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001749
1750 if (UART_ENABLE_MS(port, termios->c_cflag))
1751 pl011_enable_ms(port);
1752
1753 /* first, disable everything */
1754 old_cr = readw(port->membase + UART011_CR);
1755 writew(0, port->membase + UART011_CR);
1756
Rabin Vincent3b438162010-02-12 06:43:11 +01001757 if (termios->c_cflag & CRTSCTS) {
1758 if (old_cr & UART011_CR_RTS)
1759 old_cr |= UART011_CR_RTSEN;
1760
1761 old_cr |= UART011_CR_CTSEN;
1762 uap->autorts = true;
1763 } else {
1764 old_cr &= ~(UART011_CR_CTSEN | UART011_CR_RTSEN);
1765 uap->autorts = false;
1766 }
1767
Russell Kingc19f12b2010-12-22 17:48:26 +00001768 if (uap->vendor->oversampling) {
1769 if (baud > port->uartclk / 16)
Linus Walleijac3e3fb2010-06-02 20:40:22 +01001770 old_cr |= ST_UART011_CR_OVSFACT;
1771 else
1772 old_cr &= ~ST_UART011_CR_OVSFACT;
1773 }
1774
Linus Walleijc5dd5532012-09-26 17:21:36 +02001775 /*
1776 * Workaround for the ST Micro oversampling variants to
1777 * increase the bitrate slightly, by lowering the divisor,
1778 * to avoid delayed sampling of start bit at high speeds,
1779 * else we see data corruption.
1780 */
1781 if (uap->vendor->oversampling) {
1782 if ((baud >= 3000000) && (baud < 3250000) && (quot > 1))
1783 quot -= 1;
1784 else if ((baud > 3250000) && (quot > 2))
1785 quot -= 2;
1786 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001787 /* Set baud rate */
1788 writew(quot & 0x3f, port->membase + UART011_FBRD);
1789 writew(quot >> 6, port->membase + UART011_IBRD);
1790
1791 /*
1792 * ----------v----------v----------v----------v-----
Linus Walleijc5dd5532012-09-26 17:21:36 +02001793 * NOTE: lcrh_tx and lcrh_rx MUST BE WRITTEN AFTER
1794 * UART011_FBRD & UART011_IBRD.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001795 * ----------^----------^----------^----------^-----
1796 */
Linus Walleijec489aa2010-06-02 08:13:52 +01001797 writew(lcr_h, port->membase + uap->lcrh_rx);
1798 if (uap->lcrh_rx != uap->lcrh_tx) {
1799 int i;
1800 /*
1801 * Wait 10 PCLKs before writing LCRH_TX register,
1802 * to get this delay write read only register 10 times
1803 */
1804 for (i = 0; i < 10; ++i)
1805 writew(0xff, uap->port.membase + UART011_MIS);
1806 writew(lcr_h, port->membase + uap->lcrh_tx);
1807 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001808 writew(old_cr, port->membase + UART011_CR);
1809
1810 spin_unlock_irqrestore(&port->lock, flags);
1811}
1812
1813static const char *pl011_type(struct uart_port *port)
1814{
Russell Kinge8a7ba82010-12-28 09:16:54 +00001815 struct uart_amba_port *uap = (struct uart_amba_port *)port;
1816 return uap->port.type == PORT_AMBA ? uap->type : NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001817}
1818
1819/*
1820 * Release the memory region(s) being used by 'port'
1821 */
Linus Walleije643f872012-06-17 15:44:19 +02001822static void pl011_release_port(struct uart_port *port)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001823{
1824 release_mem_region(port->mapbase, SZ_4K);
1825}
1826
1827/*
1828 * Request the memory region(s) being used by 'port'
1829 */
Linus Walleije643f872012-06-17 15:44:19 +02001830static int pl011_request_port(struct uart_port *port)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001831{
1832 return request_mem_region(port->mapbase, SZ_4K, "uart-pl011")
1833 != NULL ? 0 : -EBUSY;
1834}
1835
1836/*
1837 * Configure/autoconfigure the port.
1838 */
Linus Walleije643f872012-06-17 15:44:19 +02001839static void pl011_config_port(struct uart_port *port, int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001840{
1841 if (flags & UART_CONFIG_TYPE) {
1842 port->type = PORT_AMBA;
Linus Walleije643f872012-06-17 15:44:19 +02001843 pl011_request_port(port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001844 }
1845}
1846
1847/*
1848 * verify the new serial_struct (for TIOCSSERIAL).
1849 */
Linus Walleije643f872012-06-17 15:44:19 +02001850static int pl011_verify_port(struct uart_port *port, struct serial_struct *ser)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001851{
1852 int ret = 0;
1853 if (ser->type != PORT_UNKNOWN && ser->type != PORT_AMBA)
1854 ret = -EINVAL;
Yinghai Lua62c4132008-08-19 20:49:55 -07001855 if (ser->irq < 0 || ser->irq >= nr_irqs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001856 ret = -EINVAL;
1857 if (ser->baud_base < 9600)
1858 ret = -EINVAL;
1859 return ret;
1860}
1861
1862static struct uart_ops amba_pl011_pops = {
Linus Walleije643f872012-06-17 15:44:19 +02001863 .tx_empty = pl011_tx_empty,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001864 .set_mctrl = pl011_set_mctrl,
Linus Walleije643f872012-06-17 15:44:19 +02001865 .get_mctrl = pl011_get_mctrl,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001866 .stop_tx = pl011_stop_tx,
1867 .start_tx = pl011_start_tx,
1868 .stop_rx = pl011_stop_rx,
1869 .enable_ms = pl011_enable_ms,
1870 .break_ctl = pl011_break_ctl,
1871 .startup = pl011_startup,
1872 .shutdown = pl011_shutdown,
Russell King68b65f72010-12-22 17:24:39 +00001873 .flush_buffer = pl011_dma_flush_buffer,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001874 .set_termios = pl011_set_termios,
1875 .type = pl011_type,
Linus Walleije643f872012-06-17 15:44:19 +02001876 .release_port = pl011_release_port,
1877 .request_port = pl011_request_port,
1878 .config_port = pl011_config_port,
1879 .verify_port = pl011_verify_port,
Jason Wessel84b5ae12008-02-20 13:33:39 -06001880#ifdef CONFIG_CONSOLE_POLL
Anton Vorontsovb3564c22012-09-24 14:27:54 -07001881 .poll_init = pl011_hwinit,
Linus Walleije643f872012-06-17 15:44:19 +02001882 .poll_get_char = pl011_get_poll_char,
1883 .poll_put_char = pl011_put_poll_char,
Jason Wessel84b5ae12008-02-20 13:33:39 -06001884#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001885};
1886
1887static struct uart_amba_port *amba_ports[UART_NR];
1888
1889#ifdef CONFIG_SERIAL_AMBA_PL011_CONSOLE
1890
Russell Kingd3587882006-03-20 20:00:09 +00001891static void pl011_console_putchar(struct uart_port *port, int ch)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001892{
Russell Kingd3587882006-03-20 20:00:09 +00001893 struct uart_amba_port *uap = (struct uart_amba_port *)port;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001894
Russell Kingd3587882006-03-20 20:00:09 +00001895 while (readw(uap->port.membase + UART01x_FR) & UART01x_FR_TXFF)
1896 barrier();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001897 writew(ch, uap->port.membase + UART01x_DR);
1898}
1899
1900static void
1901pl011_console_write(struct console *co, const char *s, unsigned int count)
1902{
1903 struct uart_amba_port *uap = amba_ports[co->index];
1904 unsigned int status, old_cr, new_cr;
Rabin Vincentef605fd2012-01-17 11:52:28 +01001905 unsigned long flags;
1906 int locked = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001907
1908 clk_enable(uap->clk);
1909
Rabin Vincentef605fd2012-01-17 11:52:28 +01001910 local_irq_save(flags);
1911 if (uap->port.sysrq)
1912 locked = 0;
1913 else if (oops_in_progress)
1914 locked = spin_trylock(&uap->port.lock);
1915 else
1916 spin_lock(&uap->port.lock);
1917
Linus Torvalds1da177e2005-04-16 15:20:36 -07001918 /*
1919 * First save the CR then disable the interrupts
1920 */
1921 old_cr = readw(uap->port.membase + UART011_CR);
1922 new_cr = old_cr & ~UART011_CR_CTSEN;
1923 new_cr |= UART01x_CR_UARTEN | UART011_CR_TXE;
1924 writew(new_cr, uap->port.membase + UART011_CR);
1925
Russell Kingd3587882006-03-20 20:00:09 +00001926 uart_console_write(&uap->port, s, count, pl011_console_putchar);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001927
1928 /*
1929 * Finally, wait for transmitter to become empty
1930 * and restore the TCR
1931 */
1932 do {
1933 status = readw(uap->port.membase + UART01x_FR);
1934 } while (status & UART01x_FR_BUSY);
1935 writew(old_cr, uap->port.membase + UART011_CR);
1936
Rabin Vincentef605fd2012-01-17 11:52:28 +01001937 if (locked)
1938 spin_unlock(&uap->port.lock);
1939 local_irq_restore(flags);
1940
Linus Torvalds1da177e2005-04-16 15:20:36 -07001941 clk_disable(uap->clk);
1942}
1943
1944static void __init
1945pl011_console_get_options(struct uart_amba_port *uap, int *baud,
1946 int *parity, int *bits)
1947{
1948 if (readw(uap->port.membase + UART011_CR) & UART01x_CR_UARTEN) {
1949 unsigned int lcr_h, ibrd, fbrd;
1950
Linus Walleijec489aa2010-06-02 08:13:52 +01001951 lcr_h = readw(uap->port.membase + uap->lcrh_tx);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001952
1953 *parity = 'n';
1954 if (lcr_h & UART01x_LCRH_PEN) {
1955 if (lcr_h & UART01x_LCRH_EPS)
1956 *parity = 'e';
1957 else
1958 *parity = 'o';
1959 }
1960
1961 if ((lcr_h & 0x60) == UART01x_LCRH_WLEN_7)
1962 *bits = 7;
1963 else
1964 *bits = 8;
1965
1966 ibrd = readw(uap->port.membase + UART011_IBRD);
1967 fbrd = readw(uap->port.membase + UART011_FBRD);
1968
1969 *baud = uap->port.uartclk * 4 / (64 * ibrd + fbrd);
Linus Walleijac3e3fb2010-06-02 20:40:22 +01001970
Russell Kingc19f12b2010-12-22 17:48:26 +00001971 if (uap->vendor->oversampling) {
Linus Walleijac3e3fb2010-06-02 20:40:22 +01001972 if (readw(uap->port.membase + UART011_CR)
1973 & ST_UART011_CR_OVSFACT)
1974 *baud *= 2;
1975 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001976 }
1977}
1978
1979static int __init pl011_console_setup(struct console *co, char *options)
1980{
1981 struct uart_amba_port *uap;
1982 int baud = 38400;
1983 int bits = 8;
1984 int parity = 'n';
1985 int flow = 'n';
Russell King4b4851c2011-09-22 11:35:30 +01001986 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001987
1988 /*
1989 * Check whether an invalid uart number has been specified, and
1990 * if so, search for the first available port that does have
1991 * console support.
1992 */
1993 if (co->index >= UART_NR)
1994 co->index = 0;
1995 uap = amba_ports[co->index];
Russell Kingd28122a2007-01-22 18:59:42 +00001996 if (!uap)
1997 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001998
Linus Walleij78d80c52012-05-23 21:18:46 +02001999 /* Allow pins to be muxed in and configured */
Linus Walleij2b996fc2013-06-05 15:36:42 +02002000 pinctrl_pm_select_default_state(uap->port.dev);
Linus Walleij78d80c52012-05-23 21:18:46 +02002001
Russell King4b4851c2011-09-22 11:35:30 +01002002 ret = clk_prepare(uap->clk);
2003 if (ret)
2004 return ret;
2005
Shreshtha Kumar Sahuc16d51a2011-06-13 10:11:33 +02002006 if (uap->port.dev->platform_data) {
2007 struct amba_pl011_data *plat;
2008
2009 plat = uap->port.dev->platform_data;
2010 if (plat->init)
2011 plat->init();
2012 }
2013
Linus Torvalds1da177e2005-04-16 15:20:36 -07002014 uap->port.uartclk = clk_get_rate(uap->clk);
2015
2016 if (options)
2017 uart_parse_options(options, &baud, &parity, &bits, &flow);
2018 else
2019 pl011_console_get_options(uap, &baud, &parity, &bits);
2020
2021 return uart_set_options(&uap->port, co, baud, parity, bits, flow);
2022}
2023
Vincent Sanders2d934862005-09-14 22:36:03 +01002024static struct uart_driver amba_reg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002025static struct console amba_console = {
2026 .name = "ttyAMA",
2027 .write = pl011_console_write,
2028 .device = uart_console_device,
2029 .setup = pl011_console_setup,
2030 .flags = CON_PRINTBUFFER,
2031 .index = -1,
2032 .data = &amba_reg,
2033};
2034
2035#define AMBA_CONSOLE (&amba_console)
2036#else
2037#define AMBA_CONSOLE NULL
2038#endif
2039
2040static struct uart_driver amba_reg = {
2041 .owner = THIS_MODULE,
2042 .driver_name = "ttyAMA",
2043 .dev_name = "ttyAMA",
2044 .major = SERIAL_AMBA_MAJOR,
2045 .minor = SERIAL_AMBA_MINOR,
2046 .nr = UART_NR,
2047 .cons = AMBA_CONSOLE,
2048};
2049
Matthew Leach32614aa2012-08-28 16:41:28 +01002050static int pl011_probe_dt_alias(int index, struct device *dev)
2051{
2052 struct device_node *np;
2053 static bool seen_dev_with_alias = false;
2054 static bool seen_dev_without_alias = false;
2055 int ret = index;
2056
2057 if (!IS_ENABLED(CONFIG_OF))
2058 return ret;
2059
2060 np = dev->of_node;
2061 if (!np)
2062 return ret;
2063
2064 ret = of_alias_get_id(np, "serial");
2065 if (IS_ERR_VALUE(ret)) {
2066 seen_dev_without_alias = true;
2067 ret = index;
2068 } else {
2069 seen_dev_with_alias = true;
2070 if (ret >= ARRAY_SIZE(amba_ports) || amba_ports[ret] != NULL) {
2071 dev_warn(dev, "requested serial port %d not available.\n", ret);
2072 ret = index;
2073 }
2074 }
2075
2076 if (seen_dev_with_alias && seen_dev_without_alias)
2077 dev_warn(dev, "aliased and non-aliased serial devices found in device tree. Serial port enumeration may be unpredictable.\n");
2078
2079 return ret;
2080}
2081
Russell Kingaa25afa2011-02-19 15:55:00 +00002082static int pl011_probe(struct amba_device *dev, const struct amba_id *id)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002083{
2084 struct uart_amba_port *uap;
Alessandro Rubini5926a292009-06-04 17:43:04 +01002085 struct vendor_data *vendor = id->data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002086 void __iomem *base;
2087 int i, ret;
2088
2089 for (i = 0; i < ARRAY_SIZE(amba_ports); i++)
2090 if (amba_ports[i] == NULL)
2091 break;
2092
2093 if (i == ARRAY_SIZE(amba_ports)) {
2094 ret = -EBUSY;
2095 goto out;
2096 }
2097
Linus Walleijde609582012-10-15 13:36:01 +02002098 uap = devm_kzalloc(&dev->dev, sizeof(struct uart_amba_port),
2099 GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002100 if (uap == NULL) {
2101 ret = -ENOMEM;
2102 goto out;
2103 }
2104
Matthew Leach32614aa2012-08-28 16:41:28 +01002105 i = pl011_probe_dt_alias(i, &dev->dev);
2106
Linus Walleijde609582012-10-15 13:36:01 +02002107 base = devm_ioremap(&dev->dev, dev->res.start,
2108 resource_size(&dev->res));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002109 if (!base) {
2110 ret = -ENOMEM;
Linus Walleijde609582012-10-15 13:36:01 +02002111 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002112 }
2113
Linus Walleijde609582012-10-15 13:36:01 +02002114 uap->clk = devm_clk_get(&dev->dev, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002115 if (IS_ERR(uap->clk)) {
2116 ret = PTR_ERR(uap->clk);
Linus Walleijde609582012-10-15 13:36:01 +02002117 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002118 }
2119
Russell Kingc19f12b2010-12-22 17:48:26 +00002120 uap->vendor = vendor;
Linus Walleijec489aa2010-06-02 08:13:52 +01002121 uap->lcrh_rx = vendor->lcrh_rx;
2122 uap->lcrh_tx = vendor->lcrh_tx;
Shreshtha Kumar Sahud8d8ffa2012-01-18 15:53:59 +05302123 uap->old_cr = 0;
Jongsung Kim78506f22013-04-15 14:45:25 +09002124 uap->fifosize = vendor->get_fifosize(dev->periphid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002125 uap->port.dev = &dev->dev;
2126 uap->port.mapbase = dev->res.start;
2127 uap->port.membase = base;
2128 uap->port.iotype = UPIO_MEM;
2129 uap->port.irq = dev->irq[0];
Russell Kingffca2b12010-12-22 17:13:05 +00002130 uap->port.fifosize = uap->fifosize;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002131 uap->port.ops = &amba_pl011_pops;
2132 uap->port.flags = UPF_BOOT_AUTOCONF;
2133 uap->port.line = i;
Arnd Bergmann787b0c12013-01-28 16:24:37 +00002134 pl011_dma_probe(&dev->dev, uap);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002135
Linus Walleijc3d8b762012-03-21 20:15:18 +01002136 /* Ensure interrupts from this UART are masked and cleared */
2137 writew(0, uap->port.membase + UART011_IMSC);
2138 writew(0xffff, uap->port.membase + UART011_ICR);
2139
Russell Kinge8a7ba82010-12-28 09:16:54 +00002140 snprintf(uap->type, sizeof(uap->type), "PL011 rev%u", amba_rev(dev));
2141
Linus Torvalds1da177e2005-04-16 15:20:36 -07002142 amba_ports[i] = uap;
2143
2144 amba_set_drvdata(dev, uap);
2145 ret = uart_add_one_port(&amba_reg, &uap->port);
2146 if (ret) {
2147 amba_set_drvdata(dev, NULL);
2148 amba_ports[i] = NULL;
Russell King68b65f72010-12-22 17:24:39 +00002149 pl011_dma_remove(uap);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002150 }
2151 out:
2152 return ret;
2153}
2154
2155static int pl011_remove(struct amba_device *dev)
2156{
2157 struct uart_amba_port *uap = amba_get_drvdata(dev);
2158 int i;
2159
2160 amba_set_drvdata(dev, NULL);
2161
2162 uart_remove_one_port(&amba_reg, &uap->port);
2163
2164 for (i = 0; i < ARRAY_SIZE(amba_ports); i++)
2165 if (amba_ports[i] == uap)
2166 amba_ports[i] = NULL;
2167
Russell King68b65f72010-12-22 17:24:39 +00002168 pl011_dma_remove(uap);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002169 return 0;
2170}
2171
Leo Chenb736b892009-07-28 23:43:33 +01002172#ifdef CONFIG_PM
2173static int pl011_suspend(struct amba_device *dev, pm_message_t state)
2174{
2175 struct uart_amba_port *uap = amba_get_drvdata(dev);
2176
2177 if (!uap)
2178 return -EINVAL;
2179
2180 return uart_suspend_port(&amba_reg, &uap->port);
2181}
2182
2183static int pl011_resume(struct amba_device *dev)
2184{
2185 struct uart_amba_port *uap = amba_get_drvdata(dev);
2186
2187 if (!uap)
2188 return -EINVAL;
2189
2190 return uart_resume_port(&amba_reg, &uap->port);
2191}
2192#endif
2193
Russell King2c39c9e2010-07-27 08:50:16 +01002194static struct amba_id pl011_ids[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002195 {
2196 .id = 0x00041011,
2197 .mask = 0x000fffff,
Alessandro Rubini5926a292009-06-04 17:43:04 +01002198 .data = &vendor_arm,
2199 },
2200 {
2201 .id = 0x00380802,
2202 .mask = 0x00ffffff,
2203 .data = &vendor_st,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002204 },
2205 { 0, 0 },
2206};
2207
Dave Martin60f7a332011-10-05 15:15:22 +01002208MODULE_DEVICE_TABLE(amba, pl011_ids);
2209
Linus Torvalds1da177e2005-04-16 15:20:36 -07002210static struct amba_driver pl011_driver = {
2211 .drv = {
2212 .name = "uart-pl011",
2213 },
2214 .id_table = pl011_ids,
2215 .probe = pl011_probe,
2216 .remove = pl011_remove,
Leo Chenb736b892009-07-28 23:43:33 +01002217#ifdef CONFIG_PM
2218 .suspend = pl011_suspend,
2219 .resume = pl011_resume,
2220#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002221};
2222
2223static int __init pl011_init(void)
2224{
2225 int ret;
2226 printk(KERN_INFO "Serial: AMBA PL011 UART driver\n");
2227
2228 ret = uart_register_driver(&amba_reg);
2229 if (ret == 0) {
2230 ret = amba_driver_register(&pl011_driver);
2231 if (ret)
2232 uart_unregister_driver(&amba_reg);
2233 }
2234 return ret;
2235}
2236
2237static void __exit pl011_exit(void)
2238{
2239 amba_driver_unregister(&pl011_driver);
2240 uart_unregister_driver(&amba_reg);
2241}
2242
Alessandro Rubini4dd9e742009-05-05 05:54:13 +01002243/*
2244 * While this can be a module, if builtin it's most likely the console
2245 * So let's leave module_exit but move module_init to an earlier place
2246 */
2247arch_initcall(pl011_init);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002248module_exit(pl011_exit);
2249
2250MODULE_AUTHOR("ARM Ltd/Deep Blue Solutions Ltd");
2251MODULE_DESCRIPTION("ARM AMBA serial port driver");
2252MODULE_LICENSE("GPL");