blob: 6f5a0720a8c8eead6c23f37c359c516730013cef [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>
Dave Martin734745c2015-03-04 12:27:33 +000061#include <linux/workqueue.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070062
63#define UART_NR 14
64
65#define SERIAL_AMBA_MAJOR 204
66#define SERIAL_AMBA_MINOR 64
67#define SERIAL_AMBA_NR UART_NR
68
69#define AMBA_ISR_PASS_LIMIT 256
70
Russell Kingb63d4f02005-11-19 11:10:35 +000071#define UART_DR_ERROR (UART011_DR_OE|UART011_DR_BE|UART011_DR_PE|UART011_DR_FE)
72#define UART_DUMMY_DR_RX (1 << 16)
Linus Torvalds1da177e2005-04-16 15:20:36 -070073
Alessandro Rubini5926a292009-06-04 17:43:04 +010074/* There is by now at least one vendor with differing details, so handle it */
75struct vendor_data {
76 unsigned int ifls;
Linus Walleijec489aa2010-06-02 08:13:52 +010077 unsigned int lcrh_tx;
78 unsigned int lcrh_rx;
Linus Walleijac3e3fb2010-06-02 20:40:22 +010079 bool oversampling;
Russell King38d62432010-12-22 17:59:16 +000080 bool dma_threshold;
Rajanikanth H.V4fd06902012-03-26 11:17:02 +020081 bool cts_event_workaround;
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,
Jongsung Kim78506f22013-04-15 14:45:25 +090098 .get_fifosize = get_fifosize_arm,
Alessandro Rubini5926a292009-06-04 17:43:04 +010099};
100
Jongsung Kimea336402013-05-10 18:05:35 +0900101static unsigned int get_fifosize_st(struct amba_device *dev)
Jongsung Kim78506f22013-04-15 14:45:25 +0900102{
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
Russell King68b65f72010-12-22 17:24:39 +0000116/* Deals with DMA transactions */
Linus Walleijead76f32011-02-24 13:21:08 +0100117
118struct pl011_sgbuf {
119 struct scatterlist sg;
120 char *buf;
121};
122
123struct pl011_dmarx_data {
124 struct dma_chan *chan;
125 struct completion complete;
126 bool use_buf_b;
127 struct pl011_sgbuf sgbuf_a;
128 struct pl011_sgbuf sgbuf_b;
129 dma_cookie_t cookie;
130 bool running;
Chanho Mincb06ff12013-03-27 18:38:11 +0900131 struct timer_list timer;
132 unsigned int last_residue;
133 unsigned long last_jiffies;
134 bool auto_poll_rate;
135 unsigned int poll_rate;
136 unsigned int poll_timeout;
Linus Walleijead76f32011-02-24 13:21:08 +0100137};
138
Russell King68b65f72010-12-22 17:24:39 +0000139struct pl011_dmatx_data {
140 struct dma_chan *chan;
141 struct scatterlist sg;
142 char *buf;
143 bool queued;
144};
145
Russell Kingc19f12b2010-12-22 17:48:26 +0000146/*
147 * We wrap our port structure around the generic uart_port.
148 */
149struct uart_amba_port {
150 struct uart_port port;
151 struct clk *clk;
152 const struct vendor_data *vendor;
Russell King68b65f72010-12-22 17:24:39 +0000153 unsigned int dmacr; /* dma control reg */
Russell Kingc19f12b2010-12-22 17:48:26 +0000154 unsigned int im; /* interrupt mask */
155 unsigned int old_status;
Russell Kingffca2b12010-12-22 17:13:05 +0000156 unsigned int fifosize; /* vendor-specific */
Russell Kingc19f12b2010-12-22 17:48:26 +0000157 unsigned int lcrh_tx; /* vendor-specific */
158 unsigned int lcrh_rx; /* vendor-specific */
Shreshtha Kumar Sahud8d8ffa2012-01-18 15:53:59 +0530159 unsigned int old_cr; /* state during shutdown */
Dave Martin734745c2015-03-04 12:27:33 +0000160 struct delayed_work tx_softirq_work;
Russell Kingc19f12b2010-12-22 17:48:26 +0000161 bool autorts;
Dave Martin734745c2015-03-04 12:27:33 +0000162 unsigned int tx_irq_seen; /* 0=none, 1=1, 2=2 or more */
Russell Kingc19f12b2010-12-22 17:48:26 +0000163 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 Martin734745c2015-03-04 12:27:33 +00001175static bool pl011_tx_chars(struct uart_amba_port *uap);
1176
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);
1182 if (!uap->tx_irq_seen)
1183 pl011_tx_chars(uap);
1184}
1185
Russell Kingb129a8c2005-08-31 10:12:14 +01001186static void pl011_start_tx(struct uart_port *port)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001187{
Daniel Thompsona5820c22014-09-03 12:51:55 +01001188 struct uart_amba_port *uap =
1189 container_of(port, struct uart_amba_port, port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001190
Dave Martin734745c2015-03-04 12:27:33 +00001191 if (!pl011_dma_tx_start(uap))
1192 pl011_start_tx_pio(uap);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001193}
1194
1195static void pl011_stop_rx(struct uart_port *port)
1196{
Daniel Thompsona5820c22014-09-03 12:51:55 +01001197 struct uart_amba_port *uap =
1198 container_of(port, struct uart_amba_port, port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001199
1200 uap->im &= ~(UART011_RXIM|UART011_RTIM|UART011_FEIM|
1201 UART011_PEIM|UART011_BEIM|UART011_OEIM);
1202 writew(uap->im, uap->port.membase + UART011_IMSC);
Linus Walleijead76f32011-02-24 13:21:08 +01001203
1204 pl011_dma_rx_stop(uap);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001205}
1206
1207static void pl011_enable_ms(struct uart_port *port)
1208{
Daniel Thompsona5820c22014-09-03 12:51:55 +01001209 struct uart_amba_port *uap =
1210 container_of(port, struct uart_amba_port, port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001211
1212 uap->im |= UART011_RIMIM|UART011_CTSMIM|UART011_DCDMIM|UART011_DSRMIM;
1213 writew(uap->im, uap->port.membase + UART011_IMSC);
1214}
1215
David Howells7d12e782006-10-05 14:55:46 +01001216static void pl011_rx_chars(struct uart_amba_port *uap)
Fabio Estevamb83286b2013-08-09 17:58:51 -03001217__releases(&uap->port.lock)
1218__acquires(&uap->port.lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001219{
Linus Walleij29772c42011-02-24 13:21:36 +01001220 pl011_fifo_to_tty(uap);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001221
Thomas Gleixner2389b272007-05-29 21:53:50 +01001222 spin_unlock(&uap->port.lock);
Jiri Slaby2e124b42013-01-03 15:53:06 +01001223 tty_flip_buffer_push(&uap->port.state->port);
Linus Walleijead76f32011-02-24 13:21:08 +01001224 /*
1225 * If we were temporarily out of DMA mode for a while,
1226 * attempt to switch back to DMA mode again.
1227 */
1228 if (pl011_dma_rx_available(uap)) {
1229 if (pl011_dma_rx_trigger_dma(uap)) {
1230 dev_dbg(uap->port.dev, "could not trigger RX DMA job "
1231 "fall back to interrupt mode again\n");
1232 uap->im |= UART011_RXIM;
Guennadi Liakhovetski30ae5852013-12-10 14:54:42 +01001233 writew(uap->im, uap->port.membase + UART011_IMSC);
Chanho Mincb06ff12013-03-27 18:38:11 +09001234 } else {
Chanho Min89fa28d2013-04-03 11:10:37 +09001235#ifdef CONFIG_DMA_ENGINE
Chanho Mincb06ff12013-03-27 18:38:11 +09001236 /* Start Rx DMA poll */
1237 if (uap->dmarx.poll_rate) {
1238 uap->dmarx.last_jiffies = jiffies;
1239 uap->dmarx.last_residue = PL011_DMA_BUFFER_SIZE;
1240 mod_timer(&uap->dmarx.timer,
1241 jiffies +
1242 msecs_to_jiffies(uap->dmarx.poll_rate));
1243 }
Chanho Min89fa28d2013-04-03 11:10:37 +09001244#endif
Chanho Mincb06ff12013-03-27 18:38:11 +09001245 }
Linus Walleijead76f32011-02-24 13:21:08 +01001246 }
Thomas Gleixner2389b272007-05-29 21:53:50 +01001247 spin_lock(&uap->port.lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001248}
1249
Dave Martin734745c2015-03-04 12:27:33 +00001250/*
1251 * Transmit a character
1252 * There must be at least one free entry in the TX FIFO to accept the char.
1253 *
1254 * Returns true if the FIFO might have space in it afterwards;
1255 * returns false if the FIFO definitely became full.
1256 */
1257static bool pl011_tx_char(struct uart_amba_port *uap, unsigned char c)
1258{
1259 writew(c, uap->port.membase + UART01x_DR);
1260 uap->port.icount.tx++;
1261
1262 if (likely(uap->tx_irq_seen > 1))
1263 return true;
1264
1265 return !(readw(uap->port.membase + UART01x_FR) & UART01x_FR_TXFF);
1266}
1267
1268static bool pl011_tx_chars(struct uart_amba_port *uap)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001269{
Alan Coxebd2c8f2009-09-19 13:13:28 -07001270 struct circ_buf *xmit = &uap->port.state->xmit;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001271 int count;
1272
Dave Martin734745c2015-03-04 12:27:33 +00001273 if (unlikely(uap->tx_irq_seen < 2))
1274 /*
1275 * Initial FIFO fill level unknown: we must check TXFF
1276 * after each write, so just try to fill up the FIFO.
1277 */
1278 count = uap->fifosize;
1279 else /* tx_irq_seen >= 2 */
1280 /*
1281 * FIFO initially at least half-empty, so we can simply
1282 * write half the FIFO without polling TXFF.
1283
1284 * Note: the *first* TX IRQ can still race with
1285 * pl011_start_tx_pio(), which can result in the FIFO
1286 * being fuller than expected in that case.
1287 */
1288 count = uap->fifosize >> 1;
1289
1290 /*
1291 * If the FIFO is full we're guaranteed a TX IRQ at some later point,
1292 * and can't transmit immediately in any case:
1293 */
1294 if (unlikely(uap->tx_irq_seen < 2 &&
1295 readw(uap->port.membase + UART01x_FR) & UART01x_FR_TXFF))
1296 return false;
1297
Linus Torvalds1da177e2005-04-16 15:20:36 -07001298 if (uap->port.x_char) {
Dave Martin734745c2015-03-04 12:27:33 +00001299 pl011_tx_char(uap, uap->port.x_char);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001300 uap->port.x_char = 0;
Dave Martin734745c2015-03-04 12:27:33 +00001301 --count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001302 }
1303 if (uart_circ_empty(xmit) || uart_tx_stopped(&uap->port)) {
Russell Kingb129a8c2005-08-31 10:12:14 +01001304 pl011_stop_tx(&uap->port);
Dave Martin734745c2015-03-04 12:27:33 +00001305 goto done;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001306 }
1307
Russell King68b65f72010-12-22 17:24:39 +00001308 /* If we are using DMA mode, try to send some characters. */
1309 if (pl011_dma_tx_irq(uap))
Dave Martin734745c2015-03-04 12:27:33 +00001310 goto done;
Russell King68b65f72010-12-22 17:24:39 +00001311
Dave Martin734745c2015-03-04 12:27:33 +00001312 while (count-- > 0 && pl011_tx_char(uap, xmit->buf[xmit->tail])) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001313 xmit->tail = (xmit->tail + 1) & (UART_XMIT_SIZE - 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001314 if (uart_circ_empty(xmit))
1315 break;
Dave Martin734745c2015-03-04 12:27:33 +00001316 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001317
1318 if (uart_circ_chars_pending(xmit) < WAKEUP_CHARS)
1319 uart_write_wakeup(&uap->port);
1320
Dave Martin734745c2015-03-04 12:27:33 +00001321 if (uart_circ_empty(xmit)) {
Russell Kingb129a8c2005-08-31 10:12:14 +01001322 pl011_stop_tx(&uap->port);
Dave Martin734745c2015-03-04 12:27:33 +00001323 goto done;
1324 }
1325
1326 if (unlikely(!uap->tx_irq_seen))
1327 schedule_delayed_work(&uap->tx_softirq_work, uap->port.timeout);
1328
1329done:
1330 return false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001331}
1332
1333static void pl011_modem_status(struct uart_amba_port *uap)
1334{
1335 unsigned int status, delta;
1336
1337 status = readw(uap->port.membase + UART01x_FR) & UART01x_FR_MODEM_ANY;
1338
1339 delta = status ^ uap->old_status;
1340 uap->old_status = status;
1341
1342 if (!delta)
1343 return;
1344
1345 if (delta & UART01x_FR_DCD)
1346 uart_handle_dcd_change(&uap->port, status & UART01x_FR_DCD);
1347
1348 if (delta & UART01x_FR_DSR)
1349 uap->port.icount.dsr++;
1350
1351 if (delta & UART01x_FR_CTS)
1352 uart_handle_cts_change(&uap->port, status & UART01x_FR_CTS);
1353
Alan Coxbdc04e32009-09-19 13:13:31 -07001354 wake_up_interruptible(&uap->port.state->port.delta_msr_wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001355}
1356
Dave Martin734745c2015-03-04 12:27:33 +00001357static void pl011_tx_softirq(struct work_struct *work)
1358{
1359 struct delayed_work *dwork = to_delayed_work(work);
1360 struct uart_amba_port *uap =
1361 container_of(dwork, struct uart_amba_port, tx_softirq_work);
1362
1363 spin_lock(&uap->port.lock);
1364 while (pl011_tx_chars(uap)) ;
1365 spin_unlock(&uap->port.lock);
1366}
1367
1368static void pl011_tx_irq_seen(struct uart_amba_port *uap)
1369{
1370 if (likely(uap->tx_irq_seen > 1))
1371 return;
1372
1373 uap->tx_irq_seen++;
1374 if (uap->tx_irq_seen < 2)
1375 /* first TX IRQ */
1376 cancel_delayed_work(&uap->tx_softirq_work);
1377}
1378
David Howells7d12e782006-10-05 14:55:46 +01001379static irqreturn_t pl011_int(int irq, void *dev_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001380{
1381 struct uart_amba_port *uap = dev_id;
Russell King963cc982010-12-22 17:16:09 +00001382 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001383 unsigned int status, pass_counter = AMBA_ISR_PASS_LIMIT;
1384 int handled = 0;
Rajanikanth H.V4fd06902012-03-26 11:17:02 +02001385 unsigned int dummy_read;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001386
Russell King963cc982010-12-22 17:16:09 +00001387 spin_lock_irqsave(&uap->port.lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001388 status = readw(uap->port.membase + UART011_MIS);
1389 if (status) {
1390 do {
Rajanikanth H.V4fd06902012-03-26 11:17:02 +02001391 if (uap->vendor->cts_event_workaround) {
1392 /* workaround to make sure that all bits are unlocked.. */
1393 writew(0x00, uap->port.membase + UART011_ICR);
1394
1395 /*
1396 * WA: introduce 26ns(1 uart clk) delay before W1C;
1397 * single apb access will incur 2 pclk(133.12Mhz) delay,
1398 * so add 2 dummy reads
1399 */
1400 dummy_read = readw(uap->port.membase + UART011_ICR);
1401 dummy_read = readw(uap->port.membase + UART011_ICR);
1402 }
1403
Linus Torvalds1da177e2005-04-16 15:20:36 -07001404 writew(status & ~(UART011_TXIS|UART011_RTIS|
1405 UART011_RXIS),
1406 uap->port.membase + UART011_ICR);
1407
Linus Walleijead76f32011-02-24 13:21:08 +01001408 if (status & (UART011_RTIS|UART011_RXIS)) {
1409 if (pl011_dma_rx_running(uap))
1410 pl011_dma_rx_irq(uap);
1411 else
1412 pl011_rx_chars(uap);
1413 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001414 if (status & (UART011_DSRMIS|UART011_DCDMIS|
1415 UART011_CTSMIS|UART011_RIMIS))
1416 pl011_modem_status(uap);
Dave Martin734745c2015-03-04 12:27:33 +00001417 if (status & UART011_TXIS) {
1418 pl011_tx_irq_seen(uap);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001419 pl011_tx_chars(uap);
Dave Martin734745c2015-03-04 12:27:33 +00001420 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001421
Rajanikanth H.V4fd06902012-03-26 11:17:02 +02001422 if (pass_counter-- == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001423 break;
1424
1425 status = readw(uap->port.membase + UART011_MIS);
1426 } while (status != 0);
1427 handled = 1;
1428 }
1429
Russell King963cc982010-12-22 17:16:09 +00001430 spin_unlock_irqrestore(&uap->port.lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001431
1432 return IRQ_RETVAL(handled);
1433}
1434
Linus Walleije643f872012-06-17 15:44:19 +02001435static unsigned int pl011_tx_empty(struct uart_port *port)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001436{
Daniel Thompsona5820c22014-09-03 12:51:55 +01001437 struct uart_amba_port *uap =
1438 container_of(port, struct uart_amba_port, port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001439 unsigned int status = readw(uap->port.membase + UART01x_FR);
1440 return status & (UART01x_FR_BUSY|UART01x_FR_TXFF) ? 0 : TIOCSER_TEMT;
1441}
1442
Linus Walleije643f872012-06-17 15:44:19 +02001443static unsigned int pl011_get_mctrl(struct uart_port *port)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001444{
Daniel Thompsona5820c22014-09-03 12:51:55 +01001445 struct uart_amba_port *uap =
1446 container_of(port, struct uart_amba_port, port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001447 unsigned int result = 0;
1448 unsigned int status = readw(uap->port.membase + UART01x_FR);
1449
Jiri Slaby5159f402007-10-18 23:40:31 -07001450#define TIOCMBIT(uartbit, tiocmbit) \
Linus Torvalds1da177e2005-04-16 15:20:36 -07001451 if (status & uartbit) \
1452 result |= tiocmbit
1453
Jiri Slaby5159f402007-10-18 23:40:31 -07001454 TIOCMBIT(UART01x_FR_DCD, TIOCM_CAR);
1455 TIOCMBIT(UART01x_FR_DSR, TIOCM_DSR);
1456 TIOCMBIT(UART01x_FR_CTS, TIOCM_CTS);
1457 TIOCMBIT(UART011_FR_RI, TIOCM_RNG);
1458#undef TIOCMBIT
Linus Torvalds1da177e2005-04-16 15:20:36 -07001459 return result;
1460}
1461
1462static void pl011_set_mctrl(struct uart_port *port, unsigned int mctrl)
1463{
Daniel Thompsona5820c22014-09-03 12:51:55 +01001464 struct uart_amba_port *uap =
1465 container_of(port, struct uart_amba_port, port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001466 unsigned int cr;
1467
1468 cr = readw(uap->port.membase + UART011_CR);
1469
Jiri Slaby5159f402007-10-18 23:40:31 -07001470#define TIOCMBIT(tiocmbit, uartbit) \
Linus Torvalds1da177e2005-04-16 15:20:36 -07001471 if (mctrl & tiocmbit) \
1472 cr |= uartbit; \
1473 else \
1474 cr &= ~uartbit
1475
Jiri Slaby5159f402007-10-18 23:40:31 -07001476 TIOCMBIT(TIOCM_RTS, UART011_CR_RTS);
1477 TIOCMBIT(TIOCM_DTR, UART011_CR_DTR);
1478 TIOCMBIT(TIOCM_OUT1, UART011_CR_OUT1);
1479 TIOCMBIT(TIOCM_OUT2, UART011_CR_OUT2);
1480 TIOCMBIT(TIOCM_LOOP, UART011_CR_LBE);
Rabin Vincent3b438162010-02-12 06:43:11 +01001481
1482 if (uap->autorts) {
1483 /* We need to disable auto-RTS if we want to turn RTS off */
1484 TIOCMBIT(TIOCM_RTS, UART011_CR_RTSEN);
1485 }
Jiri Slaby5159f402007-10-18 23:40:31 -07001486#undef TIOCMBIT
Linus Torvalds1da177e2005-04-16 15:20:36 -07001487
1488 writew(cr, uap->port.membase + UART011_CR);
1489}
1490
1491static void pl011_break_ctl(struct uart_port *port, int break_state)
1492{
Daniel Thompsona5820c22014-09-03 12:51:55 +01001493 struct uart_amba_port *uap =
1494 container_of(port, struct uart_amba_port, port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001495 unsigned long flags;
1496 unsigned int lcr_h;
1497
1498 spin_lock_irqsave(&uap->port.lock, flags);
Linus Walleijec489aa2010-06-02 08:13:52 +01001499 lcr_h = readw(uap->port.membase + uap->lcrh_tx);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001500 if (break_state == -1)
1501 lcr_h |= UART01x_LCRH_BRK;
1502 else
1503 lcr_h &= ~UART01x_LCRH_BRK;
Linus Walleijec489aa2010-06-02 08:13:52 +01001504 writew(lcr_h, uap->port.membase + uap->lcrh_tx);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001505 spin_unlock_irqrestore(&uap->port.lock, flags);
1506}
1507
Jason Wessel84b5ae12008-02-20 13:33:39 -06001508#ifdef CONFIG_CONSOLE_POLL
Anton Vorontsov5c8124a2012-09-24 14:27:55 -07001509
1510static void pl011_quiesce_irqs(struct uart_port *port)
1511{
Daniel Thompsona5820c22014-09-03 12:51:55 +01001512 struct uart_amba_port *uap =
1513 container_of(port, struct uart_amba_port, port);
Anton Vorontsov5c8124a2012-09-24 14:27:55 -07001514 unsigned char __iomem *regs = uap->port.membase;
1515
1516 writew(readw(regs + UART011_MIS), regs + UART011_ICR);
1517 /*
1518 * There is no way to clear TXIM as this is "ready to transmit IRQ", so
1519 * we simply mask it. start_tx() will unmask it.
1520 *
1521 * Note we can race with start_tx(), and if the race happens, the
1522 * polling user might get another interrupt just after we clear it.
1523 * But it should be OK and can happen even w/o the race, e.g.
1524 * controller immediately got some new data and raised the IRQ.
1525 *
1526 * And whoever uses polling routines assumes that it manages the device
1527 * (including tx queue), so we're also fine with start_tx()'s caller
1528 * side.
1529 */
1530 writew(readw(regs + UART011_IMSC) & ~UART011_TXIM, regs + UART011_IMSC);
1531}
1532
Linus Walleije643f872012-06-17 15:44:19 +02001533static int pl011_get_poll_char(struct uart_port *port)
Jason Wessel84b5ae12008-02-20 13:33:39 -06001534{
Daniel Thompsona5820c22014-09-03 12:51:55 +01001535 struct uart_amba_port *uap =
1536 container_of(port, struct uart_amba_port, port);
Jason Wessel84b5ae12008-02-20 13:33:39 -06001537 unsigned int status;
1538
Anton Vorontsov5c8124a2012-09-24 14:27:55 -07001539 /*
1540 * The caller might need IRQs lowered, e.g. if used with KDB NMI
1541 * debugger.
1542 */
1543 pl011_quiesce_irqs(port);
1544
Jason Wesself5316b42010-05-20 21:04:22 -05001545 status = readw(uap->port.membase + UART01x_FR);
1546 if (status & UART01x_FR_RXFE)
1547 return NO_POLL_CHAR;
Jason Wessel84b5ae12008-02-20 13:33:39 -06001548
1549 return readw(uap->port.membase + UART01x_DR);
1550}
1551
Linus Walleije643f872012-06-17 15:44:19 +02001552static void pl011_put_poll_char(struct uart_port *port,
Jason Wessel84b5ae12008-02-20 13:33:39 -06001553 unsigned char ch)
1554{
Daniel Thompsona5820c22014-09-03 12:51:55 +01001555 struct uart_amba_port *uap =
1556 container_of(port, struct uart_amba_port, port);
Jason Wessel84b5ae12008-02-20 13:33:39 -06001557
1558 while (readw(uap->port.membase + UART01x_FR) & UART01x_FR_TXFF)
1559 barrier();
1560
1561 writew(ch, uap->port.membase + UART01x_DR);
1562}
1563
1564#endif /* CONFIG_CONSOLE_POLL */
1565
Anton Vorontsovb3564c22012-09-24 14:27:54 -07001566static int pl011_hwinit(struct uart_port *port)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001567{
Daniel Thompsona5820c22014-09-03 12:51:55 +01001568 struct uart_amba_port *uap =
1569 container_of(port, struct uart_amba_port, port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001570 int retval;
1571
Linus Walleij78d80c52012-05-23 21:18:46 +02001572 /* Optionaly enable pins to be muxed in and configured */
Linus Walleij2b996fc2013-06-05 15:36:42 +02001573 pinctrl_pm_select_default_state(port->dev);
Linus Walleij78d80c52012-05-23 21:18:46 +02001574
Linus Torvalds1da177e2005-04-16 15:20:36 -07001575 /*
1576 * Try to enable the clock producer.
1577 */
Julia Lawall1c4c4392012-08-26 18:01:01 +02001578 retval = clk_prepare_enable(uap->clk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001579 if (retval)
Tushar Behera7f6d9422014-06-26 15:35:35 +05301580 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001581
1582 uap->port.uartclk = clk_get_rate(uap->clk);
1583
Linus Walleij9b96fba2012-03-13 13:27:23 +01001584 /* Clear pending error and receive interrupts */
1585 writew(UART011_OEIS | UART011_BEIS | UART011_PEIS | UART011_FEIS |
1586 UART011_RTIS | UART011_RXIS, uap->port.membase + UART011_ICR);
1587
Linus Torvalds1da177e2005-04-16 15:20:36 -07001588 /*
Anton Vorontsovb3564c22012-09-24 14:27:54 -07001589 * Save interrupts enable mask, and enable RX interrupts in case if
1590 * the interrupt is used for NMI entry.
1591 */
1592 uap->im = readw(uap->port.membase + UART011_IMSC);
1593 writew(UART011_RTIM | UART011_RXIM, uap->port.membase + UART011_IMSC);
1594
Jingoo Han574de552013-07-30 17:06:57 +09001595 if (dev_get_platdata(uap->port.dev)) {
Anton Vorontsovb3564c22012-09-24 14:27:54 -07001596 struct amba_pl011_data *plat;
1597
Jingoo Han574de552013-07-30 17:06:57 +09001598 plat = dev_get_platdata(uap->port.dev);
Anton Vorontsovb3564c22012-09-24 14:27:54 -07001599 if (plat->init)
1600 plat->init();
1601 }
1602 return 0;
Anton Vorontsovb3564c22012-09-24 14:27:54 -07001603}
1604
Jon Medhurstb60f2f62013-12-10 10:18:59 +00001605static void pl011_write_lcr_h(struct uart_amba_port *uap, unsigned int lcr_h)
1606{
1607 writew(lcr_h, uap->port.membase + uap->lcrh_rx);
1608 if (uap->lcrh_rx != uap->lcrh_tx) {
1609 int i;
1610 /*
1611 * Wait 10 PCLKs before writing LCRH_TX register,
1612 * to get this delay write read only register 10 times
1613 */
1614 for (i = 0; i < 10; ++i)
1615 writew(0xff, uap->port.membase + UART011_MIS);
1616 writew(lcr_h, uap->port.membase + uap->lcrh_tx);
1617 }
1618}
1619
Anton Vorontsovb3564c22012-09-24 14:27:54 -07001620static int pl011_startup(struct uart_port *port)
1621{
Daniel Thompsona5820c22014-09-03 12:51:55 +01001622 struct uart_amba_port *uap =
1623 container_of(port, struct uart_amba_port, port);
Dave Martin734745c2015-03-04 12:27:33 +00001624 unsigned int cr;
Anton Vorontsovb3564c22012-09-24 14:27:54 -07001625 int retval;
1626
1627 retval = pl011_hwinit(port);
1628 if (retval)
1629 goto clk_dis;
1630
1631 writew(uap->im, uap->port.membase + UART011_IMSC);
1632
1633 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001634 * Allocate the IRQ
1635 */
1636 retval = request_irq(uap->port.irq, pl011_int, 0, "uart-pl011", uap);
1637 if (retval)
1638 goto clk_dis;
1639
Russell Kingc19f12b2010-12-22 17:48:26 +00001640 writew(uap->vendor->ifls, uap->port.membase + UART011_IFLS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001641
Dave Martinec618472015-05-08 14:07:50 +01001642 /* Assume that TX IRQ doesn't work until we see one: */
1643 uap->tx_irq_seen = 0;
1644
Jon Medhurstfe433902013-12-10 10:18:58 +00001645 spin_lock_irq(&uap->port.lock);
1646
Shreshtha Kumar Sahud8d8ffa2012-01-18 15:53:59 +05301647 /* restore RTS and DTR */
1648 cr = uap->old_cr & (UART011_CR_RTS | UART011_CR_DTR);
1649 cr |= UART01x_CR_UARTEN | UART011_CR_RXE | UART011_CR_TXE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001650 writew(cr, uap->port.membase + UART011_CR);
1651
Jon Medhurstfe433902013-12-10 10:18:58 +00001652 spin_unlock_irq(&uap->port.lock);
1653
Linus Torvalds1da177e2005-04-16 15:20:36 -07001654 /*
1655 * initialise the old status of the modem signals
1656 */
1657 uap->old_status = readw(uap->port.membase + UART01x_FR) & UART01x_FR_MODEM_ANY;
1658
Russell King68b65f72010-12-22 17:24:39 +00001659 /* Startup DMA */
1660 pl011_dma_startup(uap);
1661
Linus Torvalds1da177e2005-04-16 15:20:36 -07001662 /*
Linus Walleijead76f32011-02-24 13:21:08 +01001663 * Finally, enable interrupts, only timeouts when using DMA
1664 * if initial RX DMA job failed, start in interrupt mode
1665 * as well.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001666 */
1667 spin_lock_irq(&uap->port.lock);
Linus Walleij9b96fba2012-03-13 13:27:23 +01001668 /* Clear out any spuriously appearing RX interrupts */
1669 writew(UART011_RTIS | UART011_RXIS,
1670 uap->port.membase + UART011_ICR);
Linus Walleijead76f32011-02-24 13:21:08 +01001671 uap->im = UART011_RTIM;
1672 if (!pl011_dma_rx_running(uap))
1673 uap->im |= UART011_RXIM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001674 writew(uap->im, uap->port.membase + UART011_IMSC);
1675 spin_unlock_irq(&uap->port.lock);
1676
1677 return 0;
1678
1679 clk_dis:
Julia Lawall1c4c4392012-08-26 18:01:01 +02001680 clk_disable_unprepare(uap->clk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001681 return retval;
1682}
1683
Linus Walleijec489aa2010-06-02 08:13:52 +01001684static void pl011_shutdown_channel(struct uart_amba_port *uap,
1685 unsigned int lcrh)
1686{
1687 unsigned long val;
1688
1689 val = readw(uap->port.membase + lcrh);
1690 val &= ~(UART01x_LCRH_BRK | UART01x_LCRH_FEN);
1691 writew(val, uap->port.membase + lcrh);
1692}
1693
Linus Torvalds1da177e2005-04-16 15:20:36 -07001694static void pl011_shutdown(struct uart_port *port)
1695{
Daniel Thompsona5820c22014-09-03 12:51:55 +01001696 struct uart_amba_port *uap =
1697 container_of(port, struct uart_amba_port, port);
Shreshtha Kumar Sahud8d8ffa2012-01-18 15:53:59 +05301698 unsigned int cr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001699
Dave Martin734745c2015-03-04 12:27:33 +00001700 cancel_delayed_work_sync(&uap->tx_softirq_work);
1701
Linus Torvalds1da177e2005-04-16 15:20:36 -07001702 /*
1703 * disable all interrupts
1704 */
1705 spin_lock_irq(&uap->port.lock);
1706 uap->im = 0;
1707 writew(uap->im, uap->port.membase + UART011_IMSC);
Dave Martinec618472015-05-08 14:07:50 +01001708 writew(0xffff, uap->port.membase + UART011_ICR);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001709 spin_unlock_irq(&uap->port.lock);
1710
Russell King68b65f72010-12-22 17:24:39 +00001711 pl011_dma_shutdown(uap);
1712
Linus Torvalds1da177e2005-04-16 15:20:36 -07001713 /*
1714 * Free the interrupt
1715 */
1716 free_irq(uap->port.irq, uap);
1717
1718 /*
1719 * disable the port
Shreshtha Kumar Sahud8d8ffa2012-01-18 15:53:59 +05301720 * disable the port. It should not disable RTS and DTR.
1721 * Also RTS and DTR state should be preserved to restore
1722 * it during startup().
Linus Torvalds1da177e2005-04-16 15:20:36 -07001723 */
Rabin Vincent3b438162010-02-12 06:43:11 +01001724 uap->autorts = false;
Jon Medhurstfe433902013-12-10 10:18:58 +00001725 spin_lock_irq(&uap->port.lock);
Shreshtha Kumar Sahud8d8ffa2012-01-18 15:53:59 +05301726 cr = readw(uap->port.membase + UART011_CR);
1727 uap->old_cr = cr;
1728 cr &= UART011_CR_RTS | UART011_CR_DTR;
1729 cr |= UART01x_CR_UARTEN | UART011_CR_TXE;
1730 writew(cr, uap->port.membase + UART011_CR);
Jon Medhurstfe433902013-12-10 10:18:58 +00001731 spin_unlock_irq(&uap->port.lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001732
1733 /*
1734 * disable break condition and fifos
1735 */
Linus Walleijec489aa2010-06-02 08:13:52 +01001736 pl011_shutdown_channel(uap, uap->lcrh_rx);
1737 if (uap->lcrh_rx != uap->lcrh_tx)
1738 pl011_shutdown_channel(uap, uap->lcrh_tx);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001739
1740 /*
1741 * Shut down the clock producer
1742 */
Julia Lawall1c4c4392012-08-26 18:01:01 +02001743 clk_disable_unprepare(uap->clk);
Linus Walleij78d80c52012-05-23 21:18:46 +02001744 /* Optionally let pins go into sleep states */
Linus Walleij2b996fc2013-06-05 15:36:42 +02001745 pinctrl_pm_select_sleep_state(port->dev);
Shreshtha Kumar Sahuc16d51a2011-06-13 10:11:33 +02001746
Jingoo Han574de552013-07-30 17:06:57 +09001747 if (dev_get_platdata(uap->port.dev)) {
Shreshtha Kumar Sahuc16d51a2011-06-13 10:11:33 +02001748 struct amba_pl011_data *plat;
1749
Jingoo Han574de552013-07-30 17:06:57 +09001750 plat = dev_get_platdata(uap->port.dev);
Shreshtha Kumar Sahuc16d51a2011-06-13 10:11:33 +02001751 if (plat->exit)
1752 plat->exit();
1753 }
1754
Peter Hurley36f339d2014-11-06 09:06:12 -05001755 if (uap->port.ops->flush_buffer)
1756 uap->port.ops->flush_buffer(port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001757}
1758
1759static void
Alan Cox606d0992006-12-08 02:38:45 -08001760pl011_set_termios(struct uart_port *port, struct ktermios *termios,
1761 struct ktermios *old)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001762{
Daniel Thompsona5820c22014-09-03 12:51:55 +01001763 struct uart_amba_port *uap =
1764 container_of(port, struct uart_amba_port, port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001765 unsigned int lcr_h, old_cr;
1766 unsigned long flags;
Russell Kingc19f12b2010-12-22 17:48:26 +00001767 unsigned int baud, quot, clkdiv;
1768
1769 if (uap->vendor->oversampling)
1770 clkdiv = 8;
1771 else
1772 clkdiv = 16;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001773
1774 /*
1775 * Ask the core to calculate the divisor for us.
1776 */
Linus Walleijac3e3fb2010-06-02 20:40:22 +01001777 baud = uart_get_baud_rate(port, termios, old, 0,
Russell Kingc19f12b2010-12-22 17:48:26 +00001778 port->uartclk / clkdiv);
Chanho Min89fa28d2013-04-03 11:10:37 +09001779#ifdef CONFIG_DMA_ENGINE
Chanho Mincb06ff12013-03-27 18:38:11 +09001780 /*
1781 * Adjust RX DMA polling rate with baud rate if not specified.
1782 */
1783 if (uap->dmarx.auto_poll_rate)
1784 uap->dmarx.poll_rate = DIV_ROUND_UP(10000000, baud);
Chanho Min89fa28d2013-04-03 11:10:37 +09001785#endif
Linus Walleijac3e3fb2010-06-02 20:40:22 +01001786
1787 if (baud > port->uartclk/16)
1788 quot = DIV_ROUND_CLOSEST(port->uartclk * 8, baud);
1789 else
1790 quot = DIV_ROUND_CLOSEST(port->uartclk * 4, baud);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001791
1792 switch (termios->c_cflag & CSIZE) {
1793 case CS5:
1794 lcr_h = UART01x_LCRH_WLEN_5;
1795 break;
1796 case CS6:
1797 lcr_h = UART01x_LCRH_WLEN_6;
1798 break;
1799 case CS7:
1800 lcr_h = UART01x_LCRH_WLEN_7;
1801 break;
1802 default: // CS8
1803 lcr_h = UART01x_LCRH_WLEN_8;
1804 break;
1805 }
1806 if (termios->c_cflag & CSTOPB)
1807 lcr_h |= UART01x_LCRH_STP2;
1808 if (termios->c_cflag & PARENB) {
1809 lcr_h |= UART01x_LCRH_PEN;
1810 if (!(termios->c_cflag & PARODD))
1811 lcr_h |= UART01x_LCRH_EPS;
1812 }
Russell Kingffca2b12010-12-22 17:13:05 +00001813 if (uap->fifosize > 1)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001814 lcr_h |= UART01x_LCRH_FEN;
1815
1816 spin_lock_irqsave(&port->lock, flags);
1817
1818 /*
1819 * Update the per-port timeout.
1820 */
1821 uart_update_timeout(port, termios->c_cflag, baud);
1822
Russell Kingb63d4f02005-11-19 11:10:35 +00001823 port->read_status_mask = UART011_DR_OE | 255;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001824 if (termios->c_iflag & INPCK)
Russell Kingb63d4f02005-11-19 11:10:35 +00001825 port->read_status_mask |= UART011_DR_FE | UART011_DR_PE;
Peter Hurleyef8b9dd2014-06-16 08:10:41 -04001826 if (termios->c_iflag & (IGNBRK | BRKINT | PARMRK))
Russell Kingb63d4f02005-11-19 11:10:35 +00001827 port->read_status_mask |= UART011_DR_BE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001828
1829 /*
1830 * Characters to ignore
1831 */
1832 port->ignore_status_mask = 0;
1833 if (termios->c_iflag & IGNPAR)
Russell Kingb63d4f02005-11-19 11:10:35 +00001834 port->ignore_status_mask |= UART011_DR_FE | UART011_DR_PE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001835 if (termios->c_iflag & IGNBRK) {
Russell Kingb63d4f02005-11-19 11:10:35 +00001836 port->ignore_status_mask |= UART011_DR_BE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001837 /*
1838 * If we're ignoring parity and break indicators,
1839 * ignore overruns too (for real raw support).
1840 */
1841 if (termios->c_iflag & IGNPAR)
Russell Kingb63d4f02005-11-19 11:10:35 +00001842 port->ignore_status_mask |= UART011_DR_OE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001843 }
1844
1845 /*
1846 * Ignore all characters if CREAD is not set.
1847 */
1848 if ((termios->c_cflag & CREAD) == 0)
Russell Kingb63d4f02005-11-19 11:10:35 +00001849 port->ignore_status_mask |= UART_DUMMY_DR_RX;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001850
1851 if (UART_ENABLE_MS(port, termios->c_cflag))
1852 pl011_enable_ms(port);
1853
1854 /* first, disable everything */
1855 old_cr = readw(port->membase + UART011_CR);
1856 writew(0, port->membase + UART011_CR);
1857
Rabin Vincent3b438162010-02-12 06:43:11 +01001858 if (termios->c_cflag & CRTSCTS) {
1859 if (old_cr & UART011_CR_RTS)
1860 old_cr |= UART011_CR_RTSEN;
1861
1862 old_cr |= UART011_CR_CTSEN;
1863 uap->autorts = true;
1864 } else {
1865 old_cr &= ~(UART011_CR_CTSEN | UART011_CR_RTSEN);
1866 uap->autorts = false;
1867 }
1868
Russell Kingc19f12b2010-12-22 17:48:26 +00001869 if (uap->vendor->oversampling) {
1870 if (baud > port->uartclk / 16)
Linus Walleijac3e3fb2010-06-02 20:40:22 +01001871 old_cr |= ST_UART011_CR_OVSFACT;
1872 else
1873 old_cr &= ~ST_UART011_CR_OVSFACT;
1874 }
1875
Linus Walleijc5dd5532012-09-26 17:21:36 +02001876 /*
1877 * Workaround for the ST Micro oversampling variants to
1878 * increase the bitrate slightly, by lowering the divisor,
1879 * to avoid delayed sampling of start bit at high speeds,
1880 * else we see data corruption.
1881 */
1882 if (uap->vendor->oversampling) {
1883 if ((baud >= 3000000) && (baud < 3250000) && (quot > 1))
1884 quot -= 1;
1885 else if ((baud > 3250000) && (quot > 2))
1886 quot -= 2;
1887 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001888 /* Set baud rate */
1889 writew(quot & 0x3f, port->membase + UART011_FBRD);
1890 writew(quot >> 6, port->membase + UART011_IBRD);
1891
1892 /*
1893 * ----------v----------v----------v----------v-----
Linus Walleijc5dd5532012-09-26 17:21:36 +02001894 * NOTE: lcrh_tx and lcrh_rx MUST BE WRITTEN AFTER
1895 * UART011_FBRD & UART011_IBRD.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001896 * ----------^----------^----------^----------^-----
1897 */
Jon Medhurstb60f2f62013-12-10 10:18:59 +00001898 pl011_write_lcr_h(uap, lcr_h);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001899 writew(old_cr, port->membase + UART011_CR);
1900
1901 spin_unlock_irqrestore(&port->lock, flags);
1902}
1903
1904static const char *pl011_type(struct uart_port *port)
1905{
Daniel Thompsona5820c22014-09-03 12:51:55 +01001906 struct uart_amba_port *uap =
1907 container_of(port, struct uart_amba_port, port);
Russell Kinge8a7ba82010-12-28 09:16:54 +00001908 return uap->port.type == PORT_AMBA ? uap->type : NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001909}
1910
1911/*
1912 * Release the memory region(s) being used by 'port'
1913 */
Linus Walleije643f872012-06-17 15:44:19 +02001914static void pl011_release_port(struct uart_port *port)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001915{
1916 release_mem_region(port->mapbase, SZ_4K);
1917}
1918
1919/*
1920 * Request the memory region(s) being used by 'port'
1921 */
Linus Walleije643f872012-06-17 15:44:19 +02001922static int pl011_request_port(struct uart_port *port)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001923{
1924 return request_mem_region(port->mapbase, SZ_4K, "uart-pl011")
1925 != NULL ? 0 : -EBUSY;
1926}
1927
1928/*
1929 * Configure/autoconfigure the port.
1930 */
Linus Walleije643f872012-06-17 15:44:19 +02001931static void pl011_config_port(struct uart_port *port, int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001932{
1933 if (flags & UART_CONFIG_TYPE) {
1934 port->type = PORT_AMBA;
Linus Walleije643f872012-06-17 15:44:19 +02001935 pl011_request_port(port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001936 }
1937}
1938
1939/*
1940 * verify the new serial_struct (for TIOCSSERIAL).
1941 */
Linus Walleije643f872012-06-17 15:44:19 +02001942static int pl011_verify_port(struct uart_port *port, struct serial_struct *ser)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001943{
1944 int ret = 0;
1945 if (ser->type != PORT_UNKNOWN && ser->type != PORT_AMBA)
1946 ret = -EINVAL;
Yinghai Lua62c4132008-08-19 20:49:55 -07001947 if (ser->irq < 0 || ser->irq >= nr_irqs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001948 ret = -EINVAL;
1949 if (ser->baud_base < 9600)
1950 ret = -EINVAL;
1951 return ret;
1952}
1953
1954static struct uart_ops amba_pl011_pops = {
Linus Walleije643f872012-06-17 15:44:19 +02001955 .tx_empty = pl011_tx_empty,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001956 .set_mctrl = pl011_set_mctrl,
Linus Walleije643f872012-06-17 15:44:19 +02001957 .get_mctrl = pl011_get_mctrl,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001958 .stop_tx = pl011_stop_tx,
1959 .start_tx = pl011_start_tx,
1960 .stop_rx = pl011_stop_rx,
1961 .enable_ms = pl011_enable_ms,
1962 .break_ctl = pl011_break_ctl,
1963 .startup = pl011_startup,
1964 .shutdown = pl011_shutdown,
Russell King68b65f72010-12-22 17:24:39 +00001965 .flush_buffer = pl011_dma_flush_buffer,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001966 .set_termios = pl011_set_termios,
1967 .type = pl011_type,
Linus Walleije643f872012-06-17 15:44:19 +02001968 .release_port = pl011_release_port,
1969 .request_port = pl011_request_port,
1970 .config_port = pl011_config_port,
1971 .verify_port = pl011_verify_port,
Jason Wessel84b5ae12008-02-20 13:33:39 -06001972#ifdef CONFIG_CONSOLE_POLL
Anton Vorontsovb3564c22012-09-24 14:27:54 -07001973 .poll_init = pl011_hwinit,
Linus Walleije643f872012-06-17 15:44:19 +02001974 .poll_get_char = pl011_get_poll_char,
1975 .poll_put_char = pl011_put_poll_char,
Jason Wessel84b5ae12008-02-20 13:33:39 -06001976#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001977};
1978
1979static struct uart_amba_port *amba_ports[UART_NR];
1980
1981#ifdef CONFIG_SERIAL_AMBA_PL011_CONSOLE
1982
Russell Kingd3587882006-03-20 20:00:09 +00001983static void pl011_console_putchar(struct uart_port *port, int ch)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001984{
Daniel Thompsona5820c22014-09-03 12:51:55 +01001985 struct uart_amba_port *uap =
1986 container_of(port, struct uart_amba_port, port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001987
Russell Kingd3587882006-03-20 20:00:09 +00001988 while (readw(uap->port.membase + UART01x_FR) & UART01x_FR_TXFF)
1989 barrier();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001990 writew(ch, uap->port.membase + UART01x_DR);
1991}
1992
1993static void
1994pl011_console_write(struct console *co, const char *s, unsigned int count)
1995{
1996 struct uart_amba_port *uap = amba_ports[co->index];
1997 unsigned int status, old_cr, new_cr;
Rabin Vincentef605fd2012-01-17 11:52:28 +01001998 unsigned long flags;
1999 int locked = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002000
2001 clk_enable(uap->clk);
2002
Rabin Vincentef605fd2012-01-17 11:52:28 +01002003 local_irq_save(flags);
2004 if (uap->port.sysrq)
2005 locked = 0;
2006 else if (oops_in_progress)
2007 locked = spin_trylock(&uap->port.lock);
2008 else
2009 spin_lock(&uap->port.lock);
2010
Linus Torvalds1da177e2005-04-16 15:20:36 -07002011 /*
2012 * First save the CR then disable the interrupts
2013 */
2014 old_cr = readw(uap->port.membase + UART011_CR);
2015 new_cr = old_cr & ~UART011_CR_CTSEN;
2016 new_cr |= UART01x_CR_UARTEN | UART011_CR_TXE;
2017 writew(new_cr, uap->port.membase + UART011_CR);
2018
Russell Kingd3587882006-03-20 20:00:09 +00002019 uart_console_write(&uap->port, s, count, pl011_console_putchar);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002020
2021 /*
2022 * Finally, wait for transmitter to become empty
2023 * and restore the TCR
2024 */
2025 do {
2026 status = readw(uap->port.membase + UART01x_FR);
2027 } while (status & UART01x_FR_BUSY);
2028 writew(old_cr, uap->port.membase + UART011_CR);
2029
Rabin Vincentef605fd2012-01-17 11:52:28 +01002030 if (locked)
2031 spin_unlock(&uap->port.lock);
2032 local_irq_restore(flags);
2033
Linus Torvalds1da177e2005-04-16 15:20:36 -07002034 clk_disable(uap->clk);
2035}
2036
2037static void __init
2038pl011_console_get_options(struct uart_amba_port *uap, int *baud,
2039 int *parity, int *bits)
2040{
2041 if (readw(uap->port.membase + UART011_CR) & UART01x_CR_UARTEN) {
2042 unsigned int lcr_h, ibrd, fbrd;
2043
Linus Walleijec489aa2010-06-02 08:13:52 +01002044 lcr_h = readw(uap->port.membase + uap->lcrh_tx);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002045
2046 *parity = 'n';
2047 if (lcr_h & UART01x_LCRH_PEN) {
2048 if (lcr_h & UART01x_LCRH_EPS)
2049 *parity = 'e';
2050 else
2051 *parity = 'o';
2052 }
2053
2054 if ((lcr_h & 0x60) == UART01x_LCRH_WLEN_7)
2055 *bits = 7;
2056 else
2057 *bits = 8;
2058
2059 ibrd = readw(uap->port.membase + UART011_IBRD);
2060 fbrd = readw(uap->port.membase + UART011_FBRD);
2061
2062 *baud = uap->port.uartclk * 4 / (64 * ibrd + fbrd);
Linus Walleijac3e3fb2010-06-02 20:40:22 +01002063
Russell Kingc19f12b2010-12-22 17:48:26 +00002064 if (uap->vendor->oversampling) {
Linus Walleijac3e3fb2010-06-02 20:40:22 +01002065 if (readw(uap->port.membase + UART011_CR)
2066 & ST_UART011_CR_OVSFACT)
2067 *baud *= 2;
2068 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002069 }
2070}
2071
2072static int __init pl011_console_setup(struct console *co, char *options)
2073{
2074 struct uart_amba_port *uap;
2075 int baud = 38400;
2076 int bits = 8;
2077 int parity = 'n';
2078 int flow = 'n';
Russell King4b4851c2011-09-22 11:35:30 +01002079 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002080
2081 /*
2082 * Check whether an invalid uart number has been specified, and
2083 * if so, search for the first available port that does have
2084 * console support.
2085 */
2086 if (co->index >= UART_NR)
2087 co->index = 0;
2088 uap = amba_ports[co->index];
Russell Kingd28122a2007-01-22 18:59:42 +00002089 if (!uap)
2090 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002091
Linus Walleij78d80c52012-05-23 21:18:46 +02002092 /* Allow pins to be muxed in and configured */
Linus Walleij2b996fc2013-06-05 15:36:42 +02002093 pinctrl_pm_select_default_state(uap->port.dev);
Linus Walleij78d80c52012-05-23 21:18:46 +02002094
Russell King4b4851c2011-09-22 11:35:30 +01002095 ret = clk_prepare(uap->clk);
2096 if (ret)
2097 return ret;
2098
Jingoo Han574de552013-07-30 17:06:57 +09002099 if (dev_get_platdata(uap->port.dev)) {
Shreshtha Kumar Sahuc16d51a2011-06-13 10:11:33 +02002100 struct amba_pl011_data *plat;
2101
Jingoo Han574de552013-07-30 17:06:57 +09002102 plat = dev_get_platdata(uap->port.dev);
Shreshtha Kumar Sahuc16d51a2011-06-13 10:11:33 +02002103 if (plat->init)
2104 plat->init();
2105 }
2106
Linus Torvalds1da177e2005-04-16 15:20:36 -07002107 uap->port.uartclk = clk_get_rate(uap->clk);
2108
2109 if (options)
2110 uart_parse_options(options, &baud, &parity, &bits, &flow);
2111 else
2112 pl011_console_get_options(uap, &baud, &parity, &bits);
2113
2114 return uart_set_options(&uap->port, co, baud, parity, bits, flow);
2115}
2116
Vincent Sanders2d934862005-09-14 22:36:03 +01002117static struct uart_driver amba_reg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002118static struct console amba_console = {
2119 .name = "ttyAMA",
2120 .write = pl011_console_write,
2121 .device = uart_console_device,
2122 .setup = pl011_console_setup,
2123 .flags = CON_PRINTBUFFER,
2124 .index = -1,
2125 .data = &amba_reg,
2126};
2127
2128#define AMBA_CONSOLE (&amba_console)
Rob Herring0d3c6732014-04-18 17:19:57 -05002129
2130static void pl011_putc(struct uart_port *port, int c)
2131{
2132 while (readl(port->membase + UART01x_FR) & UART01x_FR_TXFF)
2133 ;
2134 writeb(c, port->membase + UART01x_DR);
2135 while (readl(port->membase + UART01x_FR) & UART01x_FR_BUSY)
2136 ;
2137}
2138
2139static void pl011_early_write(struct console *con, const char *s, unsigned n)
2140{
2141 struct earlycon_device *dev = con->data;
2142
2143 uart_console_write(&dev->port, s, n, pl011_putc);
2144}
2145
2146static int __init pl011_early_console_setup(struct earlycon_device *device,
2147 const char *opt)
2148{
2149 if (!device->port.membase)
2150 return -ENODEV;
2151
2152 device->con->write = pl011_early_write;
2153 return 0;
2154}
2155EARLYCON_DECLARE(pl011, pl011_early_console_setup);
Rob Herring45e0f0f2014-03-27 08:08:03 -05002156OF_EARLYCON_DECLARE(pl011, "arm,pl011", pl011_early_console_setup);
Rob Herring0d3c6732014-04-18 17:19:57 -05002157
Linus Torvalds1da177e2005-04-16 15:20:36 -07002158#else
2159#define AMBA_CONSOLE NULL
2160#endif
2161
2162static struct uart_driver amba_reg = {
2163 .owner = THIS_MODULE,
2164 .driver_name = "ttyAMA",
2165 .dev_name = "ttyAMA",
2166 .major = SERIAL_AMBA_MAJOR,
2167 .minor = SERIAL_AMBA_MINOR,
2168 .nr = UART_NR,
2169 .cons = AMBA_CONSOLE,
2170};
2171
Matthew Leach32614aa2012-08-28 16:41:28 +01002172static int pl011_probe_dt_alias(int index, struct device *dev)
2173{
2174 struct device_node *np;
2175 static bool seen_dev_with_alias = false;
2176 static bool seen_dev_without_alias = false;
2177 int ret = index;
2178
2179 if (!IS_ENABLED(CONFIG_OF))
2180 return ret;
2181
2182 np = dev->of_node;
2183 if (!np)
2184 return ret;
2185
2186 ret = of_alias_get_id(np, "serial");
2187 if (IS_ERR_VALUE(ret)) {
2188 seen_dev_without_alias = true;
2189 ret = index;
2190 } else {
2191 seen_dev_with_alias = true;
2192 if (ret >= ARRAY_SIZE(amba_ports) || amba_ports[ret] != NULL) {
2193 dev_warn(dev, "requested serial port %d not available.\n", ret);
2194 ret = index;
2195 }
2196 }
2197
2198 if (seen_dev_with_alias && seen_dev_without_alias)
2199 dev_warn(dev, "aliased and non-aliased serial devices found in device tree. Serial port enumeration may be unpredictable.\n");
2200
2201 return ret;
2202}
2203
Russell Kingaa25afa2011-02-19 15:55:00 +00002204static int pl011_probe(struct amba_device *dev, const struct amba_id *id)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002205{
2206 struct uart_amba_port *uap;
Alessandro Rubini5926a292009-06-04 17:43:04 +01002207 struct vendor_data *vendor = id->data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002208 void __iomem *base;
2209 int i, ret;
2210
2211 for (i = 0; i < ARRAY_SIZE(amba_ports); i++)
2212 if (amba_ports[i] == NULL)
2213 break;
2214
Tushar Behera7f6d9422014-06-26 15:35:35 +05302215 if (i == ARRAY_SIZE(amba_ports))
2216 return -EBUSY;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002217
Linus Walleijde609582012-10-15 13:36:01 +02002218 uap = devm_kzalloc(&dev->dev, sizeof(struct uart_amba_port),
2219 GFP_KERNEL);
Tushar Behera7f6d9422014-06-26 15:35:35 +05302220 if (uap == NULL)
2221 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002222
Matthew Leach32614aa2012-08-28 16:41:28 +01002223 i = pl011_probe_dt_alias(i, &dev->dev);
2224
Linus Walleijde609582012-10-15 13:36:01 +02002225 base = devm_ioremap(&dev->dev, dev->res.start,
2226 resource_size(&dev->res));
Tushar Behera7f6d9422014-06-26 15:35:35 +05302227 if (!base)
2228 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002229
Linus Walleijde609582012-10-15 13:36:01 +02002230 uap->clk = devm_clk_get(&dev->dev, NULL);
Tushar Behera7f6d9422014-06-26 15:35:35 +05302231 if (IS_ERR(uap->clk))
2232 return PTR_ERR(uap->clk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002233
Russell Kingc19f12b2010-12-22 17:48:26 +00002234 uap->vendor = vendor;
Linus Walleijec489aa2010-06-02 08:13:52 +01002235 uap->lcrh_rx = vendor->lcrh_rx;
2236 uap->lcrh_tx = vendor->lcrh_tx;
Shreshtha Kumar Sahud8d8ffa2012-01-18 15:53:59 +05302237 uap->old_cr = 0;
Jongsung Kimea336402013-05-10 18:05:35 +09002238 uap->fifosize = vendor->get_fifosize(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002239 uap->port.dev = &dev->dev;
2240 uap->port.mapbase = dev->res.start;
2241 uap->port.membase = base;
2242 uap->port.iotype = UPIO_MEM;
2243 uap->port.irq = dev->irq[0];
Russell Kingffca2b12010-12-22 17:13:05 +00002244 uap->port.fifosize = uap->fifosize;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002245 uap->port.ops = &amba_pl011_pops;
2246 uap->port.flags = UPF_BOOT_AUTOCONF;
2247 uap->port.line = i;
Dave Martin734745c2015-03-04 12:27:33 +00002248 INIT_DELAYED_WORK(&uap->tx_softirq_work, pl011_tx_softirq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002249
Linus Walleijc3d8b762012-03-21 20:15:18 +01002250 /* Ensure interrupts from this UART are masked and cleared */
2251 writew(0, uap->port.membase + UART011_IMSC);
2252 writew(0xffff, uap->port.membase + UART011_ICR);
2253
Russell Kinge8a7ba82010-12-28 09:16:54 +00002254 snprintf(uap->type, sizeof(uap->type), "PL011 rev%u", amba_rev(dev));
2255
Linus Torvalds1da177e2005-04-16 15:20:36 -07002256 amba_ports[i] = uap;
2257
2258 amba_set_drvdata(dev, uap);
Tushar Beheraef2889f2014-01-20 14:32:35 +05302259
2260 if (!amba_reg.state) {
2261 ret = uart_register_driver(&amba_reg);
2262 if (ret < 0) {
Jorge Ramirez-Ortiz1c9be312015-03-06 13:05:40 -05002263 dev_err(&dev->dev,
2264 "Failed to register AMBA-PL011 driver\n");
Tushar Beheraef2889f2014-01-20 14:32:35 +05302265 return ret;
2266 }
2267 }
2268
Linus Torvalds1da177e2005-04-16 15:20:36 -07002269 ret = uart_add_one_port(&amba_reg, &uap->port);
2270 if (ret) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002271 amba_ports[i] = NULL;
Tushar Beheraef2889f2014-01-20 14:32:35 +05302272 uart_unregister_driver(&amba_reg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002273 }
Tushar Behera7f6d9422014-06-26 15:35:35 +05302274
Linus Torvalds1da177e2005-04-16 15:20:36 -07002275 return ret;
2276}
2277
2278static int pl011_remove(struct amba_device *dev)
2279{
2280 struct uart_amba_port *uap = amba_get_drvdata(dev);
Guennadi Liakhovetski1e7da052014-04-05 16:31:08 +02002281 bool busy = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002282 int i;
2283
Linus Torvalds1da177e2005-04-16 15:20:36 -07002284 uart_remove_one_port(&amba_reg, &uap->port);
2285
2286 for (i = 0; i < ARRAY_SIZE(amba_ports); i++)
2287 if (amba_ports[i] == uap)
2288 amba_ports[i] = NULL;
Guennadi Liakhovetski1e7da052014-04-05 16:31:08 +02002289 else if (amba_ports[i])
2290 busy = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002291
Russell King68b65f72010-12-22 17:24:39 +00002292 pl011_dma_remove(uap);
Guennadi Liakhovetski1e7da052014-04-05 16:31:08 +02002293 if (!busy)
2294 uart_unregister_driver(&amba_reg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002295 return 0;
2296}
2297
Ulf Hanssond0ce8502013-12-03 11:04:28 +01002298#ifdef CONFIG_PM_SLEEP
2299static int pl011_suspend(struct device *dev)
Leo Chenb736b892009-07-28 23:43:33 +01002300{
Ulf Hanssond0ce8502013-12-03 11:04:28 +01002301 struct uart_amba_port *uap = dev_get_drvdata(dev);
Leo Chenb736b892009-07-28 23:43:33 +01002302
2303 if (!uap)
2304 return -EINVAL;
2305
2306 return uart_suspend_port(&amba_reg, &uap->port);
2307}
2308
Ulf Hanssond0ce8502013-12-03 11:04:28 +01002309static int pl011_resume(struct device *dev)
Leo Chenb736b892009-07-28 23:43:33 +01002310{
Ulf Hanssond0ce8502013-12-03 11:04:28 +01002311 struct uart_amba_port *uap = dev_get_drvdata(dev);
Leo Chenb736b892009-07-28 23:43:33 +01002312
2313 if (!uap)
2314 return -EINVAL;
2315
2316 return uart_resume_port(&amba_reg, &uap->port);
2317}
2318#endif
2319
Ulf Hanssond0ce8502013-12-03 11:04:28 +01002320static SIMPLE_DEV_PM_OPS(pl011_dev_pm_ops, pl011_suspend, pl011_resume);
2321
Russell King2c39c9e2010-07-27 08:50:16 +01002322static struct amba_id pl011_ids[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002323 {
2324 .id = 0x00041011,
2325 .mask = 0x000fffff,
Alessandro Rubini5926a292009-06-04 17:43:04 +01002326 .data = &vendor_arm,
2327 },
2328 {
2329 .id = 0x00380802,
2330 .mask = 0x00ffffff,
2331 .data = &vendor_st,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002332 },
2333 { 0, 0 },
2334};
2335
Dave Martin60f7a332011-10-05 15:15:22 +01002336MODULE_DEVICE_TABLE(amba, pl011_ids);
2337
Linus Torvalds1da177e2005-04-16 15:20:36 -07002338static struct amba_driver pl011_driver = {
2339 .drv = {
2340 .name = "uart-pl011",
Ulf Hanssond0ce8502013-12-03 11:04:28 +01002341 .pm = &pl011_dev_pm_ops,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002342 },
2343 .id_table = pl011_ids,
2344 .probe = pl011_probe,
2345 .remove = pl011_remove,
2346};
2347
2348static int __init pl011_init(void)
2349{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002350 printk(KERN_INFO "Serial: AMBA PL011 UART driver\n");
2351
Tushar Beheraef2889f2014-01-20 14:32:35 +05302352 return amba_driver_register(&pl011_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002353}
2354
2355static void __exit pl011_exit(void)
2356{
2357 amba_driver_unregister(&pl011_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002358}
2359
Alessandro Rubini4dd9e742009-05-05 05:54:13 +01002360/*
2361 * While this can be a module, if builtin it's most likely the console
2362 * So let's leave module_exit but move module_init to an earlier place
2363 */
2364arch_initcall(pl011_init);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002365module_exit(pl011_exit);
2366
2367MODULE_AUTHOR("ARM Ltd/Deep Blue Solutions Ltd");
2368MODULE_DESCRIPTION("ARM AMBA serial port driver");
2369MODULE_LICENSE("GPL");