blob: 8a9e213387a79fcc335caad27520a68edf03f446 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002 * Driver for AMBA serial ports
3 *
4 * Based on drivers/char/serial.c, by Linus Torvalds, Theodore Ts'o.
5 *
6 * Copyright 1999 ARM Limited
7 * Copyright (C) 2000 Deep Blue Solutions Ltd.
Russell King68b65f72010-12-22 17:24:39 +00008 * Copyright (C) 2010 ST-Ericsson SA
Linus Torvalds1da177e2005-04-16 15:20:36 -07009 *
10 * This program is free software; you can redistribute it and/or modify
11 * it under the terms of the GNU General Public License as published by
12 * the Free Software Foundation; either version 2 of the License, or
13 * (at your option) any later version.
14 *
15 * This program is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 * GNU General Public License for more details.
19 *
20 * You should have received a copy of the GNU General Public License
21 * along with this program; if not, write to the Free Software
22 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
23 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070024 * This is a generic driver for ARM AMBA-type serial ports. They
25 * have a lot of 16550-like features, but are not register compatible.
26 * Note that although they do have CTS, DCD and DSR inputs, they do
27 * not have an RI input, nor do they have DTR or RTS outputs. If
28 * required, these have to be supplied via some other means (eg, GPIO)
29 * and hooked into this driver.
30 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070031
Chanho Mincb06ff12013-03-27 18:38:11 +090032
Linus Torvalds1da177e2005-04-16 15:20:36 -070033#if defined(CONFIG_SERIAL_AMBA_PL011_CONSOLE) && defined(CONFIG_MAGIC_SYSRQ)
34#define SUPPORT_SYSRQ
35#endif
36
37#include <linux/module.h>
38#include <linux/ioport.h>
39#include <linux/init.h>
40#include <linux/console.h>
41#include <linux/sysrq.h>
42#include <linux/device.h>
43#include <linux/tty.h>
44#include <linux/tty_flip.h>
45#include <linux/serial_core.h>
46#include <linux/serial.h>
Russell Kinga62c80e2006-01-07 13:52:45 +000047#include <linux/amba/bus.h>
48#include <linux/amba/serial.h>
Russell Kingf8ce2542006-01-07 16:15:52 +000049#include <linux/clk.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090050#include <linux/slab.h>
Russell King68b65f72010-12-22 17:24:39 +000051#include <linux/dmaengine.h>
52#include <linux/dma-mapping.h>
53#include <linux/scatterlist.h>
Shreshtha Kumar Sahuc16d51a2011-06-13 10:11:33 +020054#include <linux/delay.h>
Viresh Kumar258aea72012-02-01 16:12:19 +053055#include <linux/types.h>
Matthew Leach32614aa2012-08-28 16:41:28 +010056#include <linux/of.h>
57#include <linux/of_device.h>
Shawn Guo258e0552012-05-06 22:53:35 +080058#include <linux/pinctrl/consumer.h>
Alessandro Rubinicb707062012-06-24 12:46:37 +010059#include <linux/sizes.h>
Linus Walleijde609582012-10-15 13:36:01 +020060#include <linux/io.h>
Graeme Gregory3db9ab02015-05-21 17:26:24 +010061#include <linux/acpi.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070062
Russell King9f25bc52015-11-03 14:51:13 +000063#include "amba-pl011.h"
64
Linus Torvalds1da177e2005-04-16 15:20:36 -070065#define UART_NR 14
66
67#define SERIAL_AMBA_MAJOR 204
68#define SERIAL_AMBA_MINOR 64
69#define SERIAL_AMBA_NR UART_NR
70
71#define AMBA_ISR_PASS_LIMIT 256
72
Russell Kingb63d4f02005-11-19 11:10:35 +000073#define UART_DR_ERROR (UART011_DR_OE|UART011_DR_BE|UART011_DR_PE|UART011_DR_FE)
74#define UART_DUMMY_DR_RX (1 << 16)
Linus Torvalds1da177e2005-04-16 15:20:36 -070075
Russell Kingdebb7f62015-11-16 17:40:26 +000076static u16 pl011_std_offsets[REG_ARRAY_SIZE] = {
77 [REG_DR] = UART01x_DR,
Russell Kingdebb7f62015-11-16 17:40:26 +000078 [REG_FR] = UART01x_FR,
Russell Kinge4df9a82015-11-16 17:40:41 +000079 [REG_LCRH_RX] = UART011_LCRH,
80 [REG_LCRH_TX] = UART011_LCRH,
Russell Kingdebb7f62015-11-16 17:40:26 +000081 [REG_IBRD] = UART011_IBRD,
82 [REG_FBRD] = UART011_FBRD,
Russell Kingdebb7f62015-11-16 17:40:26 +000083 [REG_CR] = UART011_CR,
84 [REG_IFLS] = UART011_IFLS,
85 [REG_IMSC] = UART011_IMSC,
86 [REG_RIS] = UART011_RIS,
87 [REG_MIS] = UART011_MIS,
88 [REG_ICR] = UART011_ICR,
89 [REG_DMACR] = UART011_DMACR,
Russell Kingdebb7f62015-11-16 17:40:26 +000090};
91
Alessandro Rubini5926a292009-06-04 17:43:04 +010092/* There is by now at least one vendor with differing details, so handle it */
93struct vendor_data {
Russell King439403b2015-11-16 17:40:31 +000094 const u16 *reg_offset;
Alessandro Rubini5926a292009-06-04 17:43:04 +010095 unsigned int ifls;
Russell King84c3e032015-11-16 17:40:52 +000096 bool access_32b;
Linus Walleijac3e3fb2010-06-02 20:40:22 +010097 bool oversampling;
Russell King38d62432010-12-22 17:59:16 +000098 bool dma_threshold;
Rajanikanth H.V4fd06902012-03-26 11:17:02 +020099 bool cts_event_workaround;
Andre Przywara71eec482015-05-21 17:26:21 +0100100 bool always_enabled;
Andre Przywaracefc2d12015-05-21 17:26:22 +0100101 bool fixed_options;
Jongsung Kim78506f22013-04-15 14:45:25 +0900102
Jongsung Kimea336402013-05-10 18:05:35 +0900103 unsigned int (*get_fifosize)(struct amba_device *dev);
Alessandro Rubini5926a292009-06-04 17:43:04 +0100104};
105
Jongsung Kimea336402013-05-10 18:05:35 +0900106static unsigned int get_fifosize_arm(struct amba_device *dev)
Jongsung Kim78506f22013-04-15 14:45:25 +0900107{
Jongsung Kimea336402013-05-10 18:05:35 +0900108 return amba_rev(dev) < 3 ? 16 : 32;
Jongsung Kim78506f22013-04-15 14:45:25 +0900109}
110
Alessandro Rubini5926a292009-06-04 17:43:04 +0100111static struct vendor_data vendor_arm = {
Russell King439403b2015-11-16 17:40:31 +0000112 .reg_offset = pl011_std_offsets,
Alessandro Rubini5926a292009-06-04 17:43:04 +0100113 .ifls = UART011_IFLS_RX4_8|UART011_IFLS_TX4_8,
Linus Walleijac3e3fb2010-06-02 20:40:22 +0100114 .oversampling = false,
Russell King38d62432010-12-22 17:59:16 +0000115 .dma_threshold = false,
Rajanikanth H.V4fd06902012-03-26 11:17:02 +0200116 .cts_event_workaround = false,
Andre Przywara71eec482015-05-21 17:26:21 +0100117 .always_enabled = false,
Andre Przywaracefc2d12015-05-21 17:26:22 +0100118 .fixed_options = false,
Jongsung Kim78506f22013-04-15 14:45:25 +0900119 .get_fifosize = get_fifosize_arm,
Alessandro Rubini5926a292009-06-04 17:43:04 +0100120};
121
Andre Przywara0dd1e242015-05-21 17:26:23 +0100122static struct vendor_data vendor_sbsa = {
Russell King439403b2015-11-16 17:40:31 +0000123 .reg_offset = pl011_std_offsets,
Christopher Covington1aabf522016-04-01 17:23:58 -0400124 .access_32b = true,
Andre Przywara0dd1e242015-05-21 17:26:23 +0100125 .oversampling = false,
126 .dma_threshold = false,
127 .cts_event_workaround = false,
128 .always_enabled = true,
129 .fixed_options = true,
130};
131
Russell Kingbf69ff82015-11-16 17:40:36 +0000132static u16 pl011_st_offsets[REG_ARRAY_SIZE] = {
133 [REG_DR] = UART01x_DR,
134 [REG_ST_DMAWM] = ST_UART011_DMAWM,
135 [REG_ST_TIMEOUT] = ST_UART011_TIMEOUT,
136 [REG_FR] = UART01x_FR,
Russell Kinge4df9a82015-11-16 17:40:41 +0000137 [REG_LCRH_RX] = ST_UART011_LCRH_RX,
138 [REG_LCRH_TX] = ST_UART011_LCRH_TX,
Russell Kingbf69ff82015-11-16 17:40:36 +0000139 [REG_IBRD] = UART011_IBRD,
140 [REG_FBRD] = UART011_FBRD,
Russell Kingbf69ff82015-11-16 17:40:36 +0000141 [REG_CR] = UART011_CR,
142 [REG_IFLS] = UART011_IFLS,
143 [REG_IMSC] = UART011_IMSC,
144 [REG_RIS] = UART011_RIS,
145 [REG_MIS] = UART011_MIS,
146 [REG_ICR] = UART011_ICR,
147 [REG_DMACR] = UART011_DMACR,
148 [REG_ST_XFCR] = ST_UART011_XFCR,
149 [REG_ST_XON1] = ST_UART011_XON1,
150 [REG_ST_XON2] = ST_UART011_XON2,
151 [REG_ST_XOFF1] = ST_UART011_XOFF1,
152 [REG_ST_XOFF2] = ST_UART011_XOFF2,
153 [REG_ST_ITCR] = ST_UART011_ITCR,
154 [REG_ST_ITIP] = ST_UART011_ITIP,
155 [REG_ST_ABCR] = ST_UART011_ABCR,
156 [REG_ST_ABIMSC] = ST_UART011_ABIMSC,
157};
158
Jongsung Kimea336402013-05-10 18:05:35 +0900159static unsigned int get_fifosize_st(struct amba_device *dev)
Jongsung Kim78506f22013-04-15 14:45:25 +0900160{
161 return 64;
162}
163
Alessandro Rubini5926a292009-06-04 17:43:04 +0100164static struct vendor_data vendor_st = {
Russell Kingbf69ff82015-11-16 17:40:36 +0000165 .reg_offset = pl011_st_offsets,
Alessandro Rubini5926a292009-06-04 17:43:04 +0100166 .ifls = UART011_IFLS_RX_HALF|UART011_IFLS_TX_HALF,
Linus Walleijac3e3fb2010-06-02 20:40:22 +0100167 .oversampling = true,
Russell King38d62432010-12-22 17:59:16 +0000168 .dma_threshold = true,
Rajanikanth H.V4fd06902012-03-26 11:17:02 +0200169 .cts_event_workaround = true,
Andre Przywara71eec482015-05-21 17:26:21 +0100170 .always_enabled = false,
Andre Przywaracefc2d12015-05-21 17:26:22 +0100171 .fixed_options = false,
Jongsung Kim78506f22013-04-15 14:45:25 +0900172 .get_fifosize = get_fifosize_st,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173};
174
Russell King7ec75872015-11-16 17:40:57 +0000175static const u16 pl011_zte_offsets[REG_ARRAY_SIZE] = {
176 [REG_DR] = ZX_UART011_DR,
177 [REG_FR] = ZX_UART011_FR,
178 [REG_LCRH_RX] = ZX_UART011_LCRH,
179 [REG_LCRH_TX] = ZX_UART011_LCRH,
180 [REG_IBRD] = ZX_UART011_IBRD,
181 [REG_FBRD] = ZX_UART011_FBRD,
182 [REG_CR] = ZX_UART011_CR,
183 [REG_IFLS] = ZX_UART011_IFLS,
184 [REG_IMSC] = ZX_UART011_IMSC,
185 [REG_RIS] = ZX_UART011_RIS,
186 [REG_MIS] = ZX_UART011_MIS,
187 [REG_ICR] = ZX_UART011_ICR,
188 [REG_DMACR] = ZX_UART011_DMACR,
189};
190
Arnd Bergmannff52a9a2016-01-20 11:40:03 +0100191static struct vendor_data vendor_zte __maybe_unused = {
Russell King7ec75872015-11-16 17:40:57 +0000192 .reg_offset = pl011_zte_offsets,
193 .access_32b = true,
194 .ifls = UART011_IFLS_RX4_8|UART011_IFLS_TX4_8,
195 .get_fifosize = get_fifosize_arm,
196};
197
Russell King68b65f72010-12-22 17:24:39 +0000198/* Deals with DMA transactions */
Linus Walleijead76f32011-02-24 13:21:08 +0100199
200struct pl011_sgbuf {
201 struct scatterlist sg;
202 char *buf;
203};
204
205struct pl011_dmarx_data {
206 struct dma_chan *chan;
207 struct completion complete;
208 bool use_buf_b;
209 struct pl011_sgbuf sgbuf_a;
210 struct pl011_sgbuf sgbuf_b;
211 dma_cookie_t cookie;
212 bool running;
Chanho Mincb06ff12013-03-27 18:38:11 +0900213 struct timer_list timer;
214 unsigned int last_residue;
215 unsigned long last_jiffies;
216 bool auto_poll_rate;
217 unsigned int poll_rate;
218 unsigned int poll_timeout;
Linus Walleijead76f32011-02-24 13:21:08 +0100219};
220
Russell King68b65f72010-12-22 17:24:39 +0000221struct pl011_dmatx_data {
222 struct dma_chan *chan;
223 struct scatterlist sg;
224 char *buf;
225 bool queued;
226};
227
Russell Kingc19f12b2010-12-22 17:48:26 +0000228/*
229 * We wrap our port structure around the generic uart_port.
230 */
231struct uart_amba_port {
232 struct uart_port port;
Russell Kingdebb7f62015-11-16 17:40:26 +0000233 const u16 *reg_offset;
Russell Kingc19f12b2010-12-22 17:48:26 +0000234 struct clk *clk;
235 const struct vendor_data *vendor;
Russell King68b65f72010-12-22 17:24:39 +0000236 unsigned int dmacr; /* dma control reg */
Russell Kingc19f12b2010-12-22 17:48:26 +0000237 unsigned int im; /* interrupt mask */
238 unsigned int old_status;
Russell Kingffca2b12010-12-22 17:13:05 +0000239 unsigned int fifosize; /* vendor-specific */
Shreshtha Kumar Sahud8d8ffa2012-01-18 15:53:59 +0530240 unsigned int old_cr; /* state during shutdown */
Russell Kingc19f12b2010-12-22 17:48:26 +0000241 bool autorts;
Andre Przywaracefc2d12015-05-21 17:26:22 +0100242 unsigned int fixed_baud; /* vendor-set fixed baud rate */
Russell Kingc19f12b2010-12-22 17:48:26 +0000243 char type[12];
Russell King68b65f72010-12-22 17:24:39 +0000244#ifdef CONFIG_DMA_ENGINE
245 /* DMA stuff */
Linus Walleijead76f32011-02-24 13:21:08 +0100246 bool using_tx_dma;
247 bool using_rx_dma;
248 struct pl011_dmarx_data dmarx;
Russell King68b65f72010-12-22 17:24:39 +0000249 struct pl011_dmatx_data dmatx;
Jorge Ramirez-Ortiz1c9be312015-03-06 13:05:40 -0500250 bool dma_probed;
Russell King68b65f72010-12-22 17:24:39 +0000251#endif
Russell Kingc19f12b2010-12-22 17:48:26 +0000252};
253
Russell King9f25bc52015-11-03 14:51:13 +0000254static unsigned int pl011_reg_to_offset(const struct uart_amba_port *uap,
255 unsigned int reg)
256{
Russell Kingdebb7f62015-11-16 17:40:26 +0000257 return uap->reg_offset[reg];
Russell King9f25bc52015-11-03 14:51:13 +0000258}
259
Russell Kingb2a4e242015-11-03 14:51:03 +0000260static unsigned int pl011_read(const struct uart_amba_port *uap,
261 unsigned int reg)
Russell King75836332015-11-03 14:50:58 +0000262{
Russell King84c3e032015-11-16 17:40:52 +0000263 void __iomem *addr = uap->port.membase + pl011_reg_to_offset(uap, reg);
264
Timur Tabi3b78fae2016-01-04 15:37:42 -0600265 return (uap->port.iotype == UPIO_MEM32) ?
266 readl_relaxed(addr) : readw_relaxed(addr);
Russell King75836332015-11-03 14:50:58 +0000267}
268
Russell Kingb2a4e242015-11-03 14:51:03 +0000269static void pl011_write(unsigned int val, const struct uart_amba_port *uap,
270 unsigned int reg)
Russell King75836332015-11-03 14:50:58 +0000271{
Russell King84c3e032015-11-16 17:40:52 +0000272 void __iomem *addr = uap->port.membase + pl011_reg_to_offset(uap, reg);
273
Timur Tabi3b78fae2016-01-04 15:37:42 -0600274 if (uap->port.iotype == UPIO_MEM32)
Russell Kingf5ce6ed2015-11-16 17:41:02 +0000275 writel_relaxed(val, addr);
Russell King84c3e032015-11-16 17:40:52 +0000276 else
Russell Kingf5ce6ed2015-11-16 17:41:02 +0000277 writew_relaxed(val, addr);
Russell King75836332015-11-03 14:50:58 +0000278}
279
Russell King68b65f72010-12-22 17:24:39 +0000280/*
Linus Walleij29772c42011-02-24 13:21:36 +0100281 * Reads up to 256 characters from the FIFO or until it's empty and
282 * inserts them into the TTY layer. Returns the number of characters
283 * read from the FIFO.
284 */
285static int pl011_fifo_to_tty(struct uart_amba_port *uap)
286{
Timur Tabi71a5cd82015-10-07 15:27:16 -0500287 u16 status;
288 unsigned int ch, flag, max_count = 256;
Linus Walleij29772c42011-02-24 13:21:36 +0100289 int fifotaken = 0;
290
291 while (max_count--) {
Russell King9f25bc52015-11-03 14:51:13 +0000292 status = pl011_read(uap, REG_FR);
Linus Walleij29772c42011-02-24 13:21:36 +0100293 if (status & UART01x_FR_RXFE)
294 break;
295
296 /* Take chars from the FIFO and update status */
Russell King9f25bc52015-11-03 14:51:13 +0000297 ch = pl011_read(uap, REG_DR) | UART_DUMMY_DR_RX;
Linus Walleij29772c42011-02-24 13:21:36 +0100298 flag = TTY_NORMAL;
299 uap->port.icount.rx++;
300 fifotaken++;
301
302 if (unlikely(ch & UART_DR_ERROR)) {
303 if (ch & UART011_DR_BE) {
304 ch &= ~(UART011_DR_FE | UART011_DR_PE);
305 uap->port.icount.brk++;
306 if (uart_handle_break(&uap->port))
307 continue;
308 } else if (ch & UART011_DR_PE)
309 uap->port.icount.parity++;
310 else if (ch & UART011_DR_FE)
311 uap->port.icount.frame++;
312 if (ch & UART011_DR_OE)
313 uap->port.icount.overrun++;
314
315 ch &= uap->port.read_status_mask;
316
317 if (ch & UART011_DR_BE)
318 flag = TTY_BREAK;
319 else if (ch & UART011_DR_PE)
320 flag = TTY_PARITY;
321 else if (ch & UART011_DR_FE)
322 flag = TTY_FRAME;
323 }
324
325 if (uart_handle_sysrq_char(&uap->port, ch & 255))
326 continue;
327
328 uart_insert_char(&uap->port, ch, UART011_DR_OE, ch, flag);
329 }
330
331 return fifotaken;
332}
333
334
335/*
Russell King68b65f72010-12-22 17:24:39 +0000336 * All the DMA operation mode stuff goes inside this ifdef.
337 * This assumes that you have a generic DMA device interface,
338 * no custom DMA interfaces are supported.
339 */
340#ifdef CONFIG_DMA_ENGINE
341
342#define PL011_DMA_BUFFER_SIZE PAGE_SIZE
343
Linus Walleijead76f32011-02-24 13:21:08 +0100344static int pl011_sgbuf_init(struct dma_chan *chan, struct pl011_sgbuf *sg,
345 enum dma_data_direction dir)
346{
Chanho Mincb06ff12013-03-27 18:38:11 +0900347 dma_addr_t dma_addr;
348
349 sg->buf = dma_alloc_coherent(chan->device->dev,
350 PL011_DMA_BUFFER_SIZE, &dma_addr, GFP_KERNEL);
Linus Walleijead76f32011-02-24 13:21:08 +0100351 if (!sg->buf)
352 return -ENOMEM;
353
Chanho Mincb06ff12013-03-27 18:38:11 +0900354 sg_init_table(&sg->sg, 1);
355 sg_set_page(&sg->sg, phys_to_page(dma_addr),
356 PL011_DMA_BUFFER_SIZE, offset_in_page(dma_addr));
357 sg_dma_address(&sg->sg) = dma_addr;
Andrew Jacksonc64be922014-11-07 14:14:43 +0000358 sg_dma_len(&sg->sg) = PL011_DMA_BUFFER_SIZE;
Linus Walleijead76f32011-02-24 13:21:08 +0100359
Linus Walleijead76f32011-02-24 13:21:08 +0100360 return 0;
361}
362
363static void pl011_sgbuf_free(struct dma_chan *chan, struct pl011_sgbuf *sg,
364 enum dma_data_direction dir)
365{
366 if (sg->buf) {
Chanho Mincb06ff12013-03-27 18:38:11 +0900367 dma_free_coherent(chan->device->dev,
368 PL011_DMA_BUFFER_SIZE, sg->buf,
369 sg_dma_address(&sg->sg));
Linus Walleijead76f32011-02-24 13:21:08 +0100370 }
371}
372
Jorge Ramirez-Ortiz1c9be312015-03-06 13:05:40 -0500373static void pl011_dma_probe(struct uart_amba_port *uap)
Russell King68b65f72010-12-22 17:24:39 +0000374{
375 /* DMA is the sole user of the platform data right now */
Jingoo Han574de552013-07-30 17:06:57 +0900376 struct amba_pl011_data *plat = dev_get_platdata(uap->port.dev);
Jorge Ramirez-Ortiz1c9be312015-03-06 13:05:40 -0500377 struct device *dev = uap->port.dev;
Russell King68b65f72010-12-22 17:24:39 +0000378 struct dma_slave_config tx_conf = {
Russell King9f25bc52015-11-03 14:51:13 +0000379 .dst_addr = uap->port.mapbase +
380 pl011_reg_to_offset(uap, REG_DR),
Russell King68b65f72010-12-22 17:24:39 +0000381 .dst_addr_width = DMA_SLAVE_BUSWIDTH_1_BYTE,
Vinod Koula485df42011-10-14 10:47:38 +0530382 .direction = DMA_MEM_TO_DEV,
Russell King68b65f72010-12-22 17:24:39 +0000383 .dst_maxburst = uap->fifosize >> 1,
Viresh Kumar258aea72012-02-01 16:12:19 +0530384 .device_fc = false,
Russell King68b65f72010-12-22 17:24:39 +0000385 };
386 struct dma_chan *chan;
387 dma_cap_mask_t mask;
388
Jorge Ramirez-Ortiz1c9be312015-03-06 13:05:40 -0500389 uap->dma_probed = true;
390 chan = dma_request_slave_channel_reason(dev, "tx");
391 if (IS_ERR(chan)) {
392 if (PTR_ERR(chan) == -EPROBE_DEFER) {
Jorge Ramirez-Ortiz1c9be312015-03-06 13:05:40 -0500393 uap->dma_probed = false;
394 return;
395 }
Russell King68b65f72010-12-22 17:24:39 +0000396
Arnd Bergmann787b0c12013-01-28 16:24:37 +0000397 /* We need platform data */
398 if (!plat || !plat->dma_filter) {
399 dev_info(uap->port.dev, "no DMA platform data\n");
400 return;
401 }
402
403 /* Try to acquire a generic DMA engine slave TX channel */
404 dma_cap_zero(mask);
405 dma_cap_set(DMA_SLAVE, mask);
406
407 chan = dma_request_channel(mask, plat->dma_filter,
408 plat->dma_tx_param);
409 if (!chan) {
410 dev_err(uap->port.dev, "no TX DMA channel!\n");
411 return;
412 }
Russell King68b65f72010-12-22 17:24:39 +0000413 }
414
415 dmaengine_slave_config(chan, &tx_conf);
416 uap->dmatx.chan = chan;
417
418 dev_info(uap->port.dev, "DMA channel TX %s\n",
419 dma_chan_name(uap->dmatx.chan));
Linus Walleijead76f32011-02-24 13:21:08 +0100420
421 /* Optionally make use of an RX channel as well */
Arnd Bergmann787b0c12013-01-28 16:24:37 +0000422 chan = dma_request_slave_channel(dev, "rx");
Rob Herring0d3c6732014-04-18 17:19:57 -0500423
Robin Murphyd9e105c2016-03-03 16:35:35 +0000424 if (!chan && plat && plat->dma_rx_param) {
Arnd Bergmann787b0c12013-01-28 16:24:37 +0000425 chan = dma_request_channel(mask, plat->dma_filter, plat->dma_rx_param);
426
427 if (!chan) {
428 dev_err(uap->port.dev, "no RX DMA channel!\n");
429 return;
430 }
431 }
432
433 if (chan) {
Linus Walleijead76f32011-02-24 13:21:08 +0100434 struct dma_slave_config rx_conf = {
Russell King9f25bc52015-11-03 14:51:13 +0000435 .src_addr = uap->port.mapbase +
436 pl011_reg_to_offset(uap, REG_DR),
Linus Walleijead76f32011-02-24 13:21:08 +0100437 .src_addr_width = DMA_SLAVE_BUSWIDTH_1_BYTE,
Vinod Koula485df42011-10-14 10:47:38 +0530438 .direction = DMA_DEV_TO_MEM,
Guennadi Liakhovetskib2aeb772014-04-12 19:47:17 +0200439 .src_maxburst = uap->fifosize >> 2,
Viresh Kumar258aea72012-02-01 16:12:19 +0530440 .device_fc = false,
Linus Walleijead76f32011-02-24 13:21:08 +0100441 };
Andrew Jackson2d3b7d62014-11-07 14:14:47 +0000442 struct dma_slave_caps caps;
Linus Walleijead76f32011-02-24 13:21:08 +0100443
Andrew Jackson2d3b7d62014-11-07 14:14:47 +0000444 /*
445 * Some DMA controllers provide information on their capabilities.
446 * If the controller does, check for suitable residue processing
447 * otherwise assime all is well.
448 */
449 if (0 == dma_get_slave_caps(chan, &caps)) {
450 if (caps.residue_granularity ==
451 DMA_RESIDUE_GRANULARITY_DESCRIPTOR) {
452 dma_release_channel(chan);
453 dev_info(uap->port.dev,
454 "RX DMA disabled - no residue processing\n");
455 return;
456 }
457 }
Linus Walleijead76f32011-02-24 13:21:08 +0100458 dmaengine_slave_config(chan, &rx_conf);
459 uap->dmarx.chan = chan;
460
Andrew Jackson98267d32014-11-07 14:14:23 +0000461 uap->dmarx.auto_poll_rate = false;
Greg Kroah-Hartman8f898bf2013-12-17 09:33:18 -0800462 if (plat && plat->dma_rx_poll_enable) {
Chanho Mincb06ff12013-03-27 18:38:11 +0900463 /* Set poll rate if specified. */
464 if (plat->dma_rx_poll_rate) {
465 uap->dmarx.auto_poll_rate = false;
466 uap->dmarx.poll_rate = plat->dma_rx_poll_rate;
467 } else {
468 /*
469 * 100 ms defaults to poll rate if not
470 * specified. This will be adjusted with
471 * the baud rate at set_termios.
472 */
473 uap->dmarx.auto_poll_rate = true;
474 uap->dmarx.poll_rate = 100;
475 }
476 /* 3 secs defaults poll_timeout if not specified. */
477 if (plat->dma_rx_poll_timeout)
478 uap->dmarx.poll_timeout =
479 plat->dma_rx_poll_timeout;
480 else
481 uap->dmarx.poll_timeout = 3000;
Andrew Jackson98267d32014-11-07 14:14:23 +0000482 } else if (!plat && dev->of_node) {
483 uap->dmarx.auto_poll_rate = of_property_read_bool(
484 dev->of_node, "auto-poll");
485 if (uap->dmarx.auto_poll_rate) {
486 u32 x;
Chanho Mincb06ff12013-03-27 18:38:11 +0900487
Andrew Jackson98267d32014-11-07 14:14:23 +0000488 if (0 == of_property_read_u32(dev->of_node,
489 "poll-rate-ms", &x))
490 uap->dmarx.poll_rate = x;
491 else
492 uap->dmarx.poll_rate = 100;
493 if (0 == of_property_read_u32(dev->of_node,
494 "poll-timeout-ms", &x))
495 uap->dmarx.poll_timeout = x;
496 else
497 uap->dmarx.poll_timeout = 3000;
498 }
499 }
Linus Walleijead76f32011-02-24 13:21:08 +0100500 dev_info(uap->port.dev, "DMA channel RX %s\n",
501 dma_chan_name(uap->dmarx.chan));
502 }
Russell King68b65f72010-12-22 17:24:39 +0000503}
504
Russell King68b65f72010-12-22 17:24:39 +0000505static void pl011_dma_remove(struct uart_amba_port *uap)
506{
Russell King68b65f72010-12-22 17:24:39 +0000507 if (uap->dmatx.chan)
508 dma_release_channel(uap->dmatx.chan);
Linus Walleijead76f32011-02-24 13:21:08 +0100509 if (uap->dmarx.chan)
510 dma_release_channel(uap->dmarx.chan);
Russell King68b65f72010-12-22 17:24:39 +0000511}
512
Dave Martin734745c2015-03-04 12:27:33 +0000513/* Forward declare these for the refill routine */
Russell King68b65f72010-12-22 17:24:39 +0000514static int pl011_dma_tx_refill(struct uart_amba_port *uap);
Dave Martin734745c2015-03-04 12:27:33 +0000515static void pl011_start_tx_pio(struct uart_amba_port *uap);
Russell King68b65f72010-12-22 17:24:39 +0000516
517/*
518 * The current DMA TX buffer has been sent.
519 * Try to queue up another DMA buffer.
520 */
521static void pl011_dma_tx_callback(void *data)
522{
523 struct uart_amba_port *uap = data;
524 struct pl011_dmatx_data *dmatx = &uap->dmatx;
525 unsigned long flags;
526 u16 dmacr;
527
528 spin_lock_irqsave(&uap->port.lock, flags);
529 if (uap->dmatx.queued)
530 dma_unmap_sg(dmatx->chan->device->dev, &dmatx->sg, 1,
531 DMA_TO_DEVICE);
532
533 dmacr = uap->dmacr;
534 uap->dmacr = dmacr & ~UART011_TXDMAE;
Russell King9f25bc52015-11-03 14:51:13 +0000535 pl011_write(uap->dmacr, uap, REG_DMACR);
Russell King68b65f72010-12-22 17:24:39 +0000536
537 /*
538 * If TX DMA was disabled, it means that we've stopped the DMA for
539 * some reason (eg, XOFF received, or we want to send an X-char.)
540 *
541 * Note: we need to be careful here of a potential race between DMA
542 * and the rest of the driver - if the driver disables TX DMA while
543 * a TX buffer completing, we must update the tx queued status to
544 * get further refills (hence we check dmacr).
545 */
546 if (!(dmacr & UART011_TXDMAE) || uart_tx_stopped(&uap->port) ||
547 uart_circ_empty(&uap->port.state->xmit)) {
548 uap->dmatx.queued = false;
549 spin_unlock_irqrestore(&uap->port.lock, flags);
550 return;
551 }
552
Dave Martin734745c2015-03-04 12:27:33 +0000553 if (pl011_dma_tx_refill(uap) <= 0)
Russell King68b65f72010-12-22 17:24:39 +0000554 /*
555 * We didn't queue a DMA buffer for some reason, but we
556 * have data pending to be sent. Re-enable the TX IRQ.
557 */
Dave Martin734745c2015-03-04 12:27:33 +0000558 pl011_start_tx_pio(uap);
559
Russell King68b65f72010-12-22 17:24:39 +0000560 spin_unlock_irqrestore(&uap->port.lock, flags);
561}
562
563/*
564 * Try to refill the TX DMA buffer.
565 * Locking: called with port lock held and IRQs disabled.
566 * Returns:
567 * 1 if we queued up a TX DMA buffer.
568 * 0 if we didn't want to handle this by DMA
569 * <0 on error
570 */
571static int pl011_dma_tx_refill(struct uart_amba_port *uap)
572{
573 struct pl011_dmatx_data *dmatx = &uap->dmatx;
574 struct dma_chan *chan = dmatx->chan;
575 struct dma_device *dma_dev = chan->device;
576 struct dma_async_tx_descriptor *desc;
577 struct circ_buf *xmit = &uap->port.state->xmit;
578 unsigned int count;
579
580 /*
581 * Try to avoid the overhead involved in using DMA if the
582 * transaction fits in the first half of the FIFO, by using
583 * the standard interrupt handling. This ensures that we
584 * issue a uart_write_wakeup() at the appropriate time.
585 */
586 count = uart_circ_chars_pending(xmit);
587 if (count < (uap->fifosize >> 1)) {
588 uap->dmatx.queued = false;
589 return 0;
590 }
591
592 /*
593 * Bodge: don't send the last character by DMA, as this
594 * will prevent XON from notifying us to restart DMA.
595 */
596 count -= 1;
597
598 /* Else proceed to copy the TX chars to the DMA buffer and fire DMA */
599 if (count > PL011_DMA_BUFFER_SIZE)
600 count = PL011_DMA_BUFFER_SIZE;
601
602 if (xmit->tail < xmit->head)
603 memcpy(&dmatx->buf[0], &xmit->buf[xmit->tail], count);
604 else {
605 size_t first = UART_XMIT_SIZE - xmit->tail;
Andrew Jacksone2a545a2014-11-07 14:14:39 +0000606 size_t second;
607
608 if (first > count)
609 first = count;
610 second = count - first;
Russell King68b65f72010-12-22 17:24:39 +0000611
612 memcpy(&dmatx->buf[0], &xmit->buf[xmit->tail], first);
613 if (second)
614 memcpy(&dmatx->buf[first], &xmit->buf[0], second);
615 }
616
617 dmatx->sg.length = count;
618
619 if (dma_map_sg(dma_dev->dev, &dmatx->sg, 1, DMA_TO_DEVICE) != 1) {
620 uap->dmatx.queued = false;
621 dev_dbg(uap->port.dev, "unable to map TX DMA\n");
622 return -EBUSY;
623 }
624
Alexandre Bounine16052822012-03-08 16:11:18 -0500625 desc = dmaengine_prep_slave_sg(chan, &dmatx->sg, 1, DMA_MEM_TO_DEV,
Russell King68b65f72010-12-22 17:24:39 +0000626 DMA_PREP_INTERRUPT | DMA_CTRL_ACK);
627 if (!desc) {
628 dma_unmap_sg(dma_dev->dev, &dmatx->sg, 1, DMA_TO_DEVICE);
629 uap->dmatx.queued = false;
630 /*
631 * If DMA cannot be used right now, we complete this
632 * transaction via IRQ and let the TTY layer retry.
633 */
634 dev_dbg(uap->port.dev, "TX DMA busy\n");
635 return -EBUSY;
636 }
637
638 /* Some data to go along to the callback */
639 desc->callback = pl011_dma_tx_callback;
640 desc->callback_param = uap;
641
642 /* All errors should happen at prepare time */
643 dmaengine_submit(desc);
644
645 /* Fire the DMA transaction */
646 dma_dev->device_issue_pending(chan);
647
648 uap->dmacr |= UART011_TXDMAE;
Russell King9f25bc52015-11-03 14:51:13 +0000649 pl011_write(uap->dmacr, uap, REG_DMACR);
Russell King68b65f72010-12-22 17:24:39 +0000650 uap->dmatx.queued = true;
651
652 /*
653 * Now we know that DMA will fire, so advance the ring buffer
654 * with the stuff we just dispatched.
655 */
656 xmit->tail = (xmit->tail + count) & (UART_XMIT_SIZE - 1);
657 uap->port.icount.tx += count;
658
659 if (uart_circ_chars_pending(xmit) < WAKEUP_CHARS)
660 uart_write_wakeup(&uap->port);
661
662 return 1;
663}
664
665/*
666 * We received a transmit interrupt without a pending X-char but with
667 * pending characters.
668 * Locking: called with port lock held and IRQs disabled.
669 * Returns:
670 * false if we want to use PIO to transmit
671 * true if we queued a DMA buffer
672 */
673static bool pl011_dma_tx_irq(struct uart_amba_port *uap)
674{
Linus Walleijead76f32011-02-24 13:21:08 +0100675 if (!uap->using_tx_dma)
Russell King68b65f72010-12-22 17:24:39 +0000676 return false;
677
678 /*
679 * If we already have a TX buffer queued, but received a
680 * TX interrupt, it will be because we've just sent an X-char.
681 * Ensure the TX DMA is enabled and the TX IRQ is disabled.
682 */
683 if (uap->dmatx.queued) {
684 uap->dmacr |= UART011_TXDMAE;
Russell King9f25bc52015-11-03 14:51:13 +0000685 pl011_write(uap->dmacr, uap, REG_DMACR);
Russell King68b65f72010-12-22 17:24:39 +0000686 uap->im &= ~UART011_TXIM;
Russell King9f25bc52015-11-03 14:51:13 +0000687 pl011_write(uap->im, uap, REG_IMSC);
Russell King68b65f72010-12-22 17:24:39 +0000688 return true;
689 }
690
691 /*
692 * We don't have a TX buffer queued, so try to queue one.
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300693 * If we successfully queued a buffer, mask the TX IRQ.
Russell King68b65f72010-12-22 17:24:39 +0000694 */
695 if (pl011_dma_tx_refill(uap) > 0) {
696 uap->im &= ~UART011_TXIM;
Russell King9f25bc52015-11-03 14:51:13 +0000697 pl011_write(uap->im, uap, REG_IMSC);
Russell King68b65f72010-12-22 17:24:39 +0000698 return true;
699 }
700 return false;
701}
702
703/*
704 * Stop the DMA transmit (eg, due to received XOFF).
705 * Locking: called with port lock held and IRQs disabled.
706 */
707static inline void pl011_dma_tx_stop(struct uart_amba_port *uap)
708{
709 if (uap->dmatx.queued) {
710 uap->dmacr &= ~UART011_TXDMAE;
Russell King9f25bc52015-11-03 14:51:13 +0000711 pl011_write(uap->dmacr, uap, REG_DMACR);
Russell King68b65f72010-12-22 17:24:39 +0000712 }
713}
714
715/*
716 * Try to start a DMA transmit, or in the case of an XON/OFF
717 * character queued for send, try to get that character out ASAP.
718 * Locking: called with port lock held and IRQs disabled.
719 * Returns:
720 * false if we want the TX IRQ to be enabled
721 * true if we have a buffer queued
722 */
723static inline bool pl011_dma_tx_start(struct uart_amba_port *uap)
724{
725 u16 dmacr;
726
Linus Walleijead76f32011-02-24 13:21:08 +0100727 if (!uap->using_tx_dma)
Russell King68b65f72010-12-22 17:24:39 +0000728 return false;
729
730 if (!uap->port.x_char) {
731 /* no X-char, try to push chars out in DMA mode */
732 bool ret = true;
733
734 if (!uap->dmatx.queued) {
735 if (pl011_dma_tx_refill(uap) > 0) {
736 uap->im &= ~UART011_TXIM;
Russell King9f25bc52015-11-03 14:51:13 +0000737 pl011_write(uap->im, uap, REG_IMSC);
Dave Martin734745c2015-03-04 12:27:33 +0000738 } else
Russell King68b65f72010-12-22 17:24:39 +0000739 ret = false;
Russell King68b65f72010-12-22 17:24:39 +0000740 } else if (!(uap->dmacr & UART011_TXDMAE)) {
741 uap->dmacr |= UART011_TXDMAE;
Russell King9f25bc52015-11-03 14:51:13 +0000742 pl011_write(uap->dmacr, uap, REG_DMACR);
Russell King68b65f72010-12-22 17:24:39 +0000743 }
744 return ret;
745 }
746
747 /*
748 * We have an X-char to send. Disable DMA to prevent it loading
749 * the TX fifo, and then see if we can stuff it into the FIFO.
750 */
751 dmacr = uap->dmacr;
752 uap->dmacr &= ~UART011_TXDMAE;
Russell King9f25bc52015-11-03 14:51:13 +0000753 pl011_write(uap->dmacr, uap, REG_DMACR);
Russell King68b65f72010-12-22 17:24:39 +0000754
Russell King9f25bc52015-11-03 14:51:13 +0000755 if (pl011_read(uap, REG_FR) & UART01x_FR_TXFF) {
Russell King68b65f72010-12-22 17:24:39 +0000756 /*
757 * No space in the FIFO, so enable the transmit interrupt
758 * so we know when there is space. Note that once we've
759 * loaded the character, we should just re-enable DMA.
760 */
761 return false;
762 }
763
Russell King9f25bc52015-11-03 14:51:13 +0000764 pl011_write(uap->port.x_char, uap, REG_DR);
Russell King68b65f72010-12-22 17:24:39 +0000765 uap->port.icount.tx++;
766 uap->port.x_char = 0;
767
768 /* Success - restore the DMA state */
769 uap->dmacr = dmacr;
Russell King9f25bc52015-11-03 14:51:13 +0000770 pl011_write(dmacr, uap, REG_DMACR);
Russell King68b65f72010-12-22 17:24:39 +0000771
772 return true;
773}
774
775/*
776 * Flush the transmit buffer.
777 * Locking: called with port lock held and IRQs disabled.
778 */
779static void pl011_dma_flush_buffer(struct uart_port *port)
Fabio Estevamb83286b2013-08-09 17:58:51 -0300780__releases(&uap->port.lock)
781__acquires(&uap->port.lock)
Russell King68b65f72010-12-22 17:24:39 +0000782{
Daniel Thompsona5820c22014-09-03 12:51:55 +0100783 struct uart_amba_port *uap =
784 container_of(port, struct uart_amba_port, port);
Russell King68b65f72010-12-22 17:24:39 +0000785
Linus Walleijead76f32011-02-24 13:21:08 +0100786 if (!uap->using_tx_dma)
Russell King68b65f72010-12-22 17:24:39 +0000787 return;
788
789 /* Avoid deadlock with the DMA engine callback */
790 spin_unlock(&uap->port.lock);
791 dmaengine_terminate_all(uap->dmatx.chan);
792 spin_lock(&uap->port.lock);
793 if (uap->dmatx.queued) {
794 dma_unmap_sg(uap->dmatx.chan->device->dev, &uap->dmatx.sg, 1,
795 DMA_TO_DEVICE);
796 uap->dmatx.queued = false;
797 uap->dmacr &= ~UART011_TXDMAE;
Russell King9f25bc52015-11-03 14:51:13 +0000798 pl011_write(uap->dmacr, uap, REG_DMACR);
Russell King68b65f72010-12-22 17:24:39 +0000799 }
800}
801
Linus Walleijead76f32011-02-24 13:21:08 +0100802static void pl011_dma_rx_callback(void *data);
803
804static int pl011_dma_rx_trigger_dma(struct uart_amba_port *uap)
805{
806 struct dma_chan *rxchan = uap->dmarx.chan;
Linus Walleijead76f32011-02-24 13:21:08 +0100807 struct pl011_dmarx_data *dmarx = &uap->dmarx;
808 struct dma_async_tx_descriptor *desc;
809 struct pl011_sgbuf *sgbuf;
810
811 if (!rxchan)
812 return -EIO;
813
814 /* Start the RX DMA job */
815 sgbuf = uap->dmarx.use_buf_b ?
816 &uap->dmarx.sgbuf_b : &uap->dmarx.sgbuf_a;
Alexandre Bounine16052822012-03-08 16:11:18 -0500817 desc = dmaengine_prep_slave_sg(rxchan, &sgbuf->sg, 1,
Vinod Koula485df42011-10-14 10:47:38 +0530818 DMA_DEV_TO_MEM,
Linus Walleijead76f32011-02-24 13:21:08 +0100819 DMA_PREP_INTERRUPT | DMA_CTRL_ACK);
820 /*
821 * If the DMA engine is busy and cannot prepare a
822 * channel, no big deal, the driver will fall back
823 * to interrupt mode as a result of this error code.
824 */
825 if (!desc) {
826 uap->dmarx.running = false;
827 dmaengine_terminate_all(rxchan);
828 return -EBUSY;
829 }
830
831 /* Some data to go along to the callback */
832 desc->callback = pl011_dma_rx_callback;
833 desc->callback_param = uap;
834 dmarx->cookie = dmaengine_submit(desc);
835 dma_async_issue_pending(rxchan);
836
837 uap->dmacr |= UART011_RXDMAE;
Russell King9f25bc52015-11-03 14:51:13 +0000838 pl011_write(uap->dmacr, uap, REG_DMACR);
Linus Walleijead76f32011-02-24 13:21:08 +0100839 uap->dmarx.running = true;
840
841 uap->im &= ~UART011_RXIM;
Russell King9f25bc52015-11-03 14:51:13 +0000842 pl011_write(uap->im, uap, REG_IMSC);
Linus Walleijead76f32011-02-24 13:21:08 +0100843
844 return 0;
845}
846
847/*
848 * This is called when either the DMA job is complete, or
849 * the FIFO timeout interrupt occurred. This must be called
850 * with the port spinlock uap->port.lock held.
851 */
852static void pl011_dma_rx_chars(struct uart_amba_port *uap,
853 u32 pending, bool use_buf_b,
854 bool readfifo)
855{
Jiri Slaby05c7cd32013-01-03 15:53:04 +0100856 struct tty_port *port = &uap->port.state->port;
Linus Walleijead76f32011-02-24 13:21:08 +0100857 struct pl011_sgbuf *sgbuf = use_buf_b ?
858 &uap->dmarx.sgbuf_b : &uap->dmarx.sgbuf_a;
Linus Walleijead76f32011-02-24 13:21:08 +0100859 int dma_count = 0;
860 u32 fifotaken = 0; /* only used for vdbg() */
861
Chanho Mincb06ff12013-03-27 18:38:11 +0900862 struct pl011_dmarx_data *dmarx = &uap->dmarx;
863 int dmataken = 0;
864
865 if (uap->dmarx.poll_rate) {
866 /* The data can be taken by polling */
867 dmataken = sgbuf->sg.length - dmarx->last_residue;
868 /* Recalculate the pending size */
869 if (pending >= dmataken)
870 pending -= dmataken;
871 }
872
873 /* Pick the remain data from the DMA */
Linus Walleijead76f32011-02-24 13:21:08 +0100874 if (pending) {
Linus Walleijead76f32011-02-24 13:21:08 +0100875
876 /*
877 * First take all chars in the DMA pipe, then look in the FIFO.
878 * Note that tty_insert_flip_buf() tries to take as many chars
879 * as it can.
880 */
Chanho Mincb06ff12013-03-27 18:38:11 +0900881 dma_count = tty_insert_flip_string(port, sgbuf->buf + dmataken,
882 pending);
Linus Walleijead76f32011-02-24 13:21:08 +0100883
884 uap->port.icount.rx += dma_count;
885 if (dma_count < pending)
886 dev_warn(uap->port.dev,
887 "couldn't insert all characters (TTY is full?)\n");
888 }
889
Chanho Mincb06ff12013-03-27 18:38:11 +0900890 /* Reset the last_residue for Rx DMA poll */
891 if (uap->dmarx.poll_rate)
892 dmarx->last_residue = sgbuf->sg.length;
893
Linus Walleijead76f32011-02-24 13:21:08 +0100894 /*
895 * Only continue with trying to read the FIFO if all DMA chars have
896 * been taken first.
897 */
898 if (dma_count == pending && readfifo) {
899 /* Clear any error flags */
Russell King75836332015-11-03 14:50:58 +0000900 pl011_write(UART011_OEIS | UART011_BEIS | UART011_PEIS |
Russell King9f25bc52015-11-03 14:51:13 +0000901 UART011_FEIS, uap, REG_ICR);
Linus Walleijead76f32011-02-24 13:21:08 +0100902
903 /*
904 * If we read all the DMA'd characters, and we had an
Linus Walleij29772c42011-02-24 13:21:36 +0100905 * incomplete buffer, that could be due to an rx error, or
906 * maybe we just timed out. Read any pending chars and check
907 * the error status.
908 *
909 * Error conditions will only occur in the FIFO, these will
910 * trigger an immediate interrupt and stop the DMA job, so we
911 * will always find the error in the FIFO, never in the DMA
912 * buffer.
Linus Walleijead76f32011-02-24 13:21:08 +0100913 */
Linus Walleij29772c42011-02-24 13:21:36 +0100914 fifotaken = pl011_fifo_to_tty(uap);
Linus Walleijead76f32011-02-24 13:21:08 +0100915 }
916
917 spin_unlock(&uap->port.lock);
918 dev_vdbg(uap->port.dev,
919 "Took %d chars from DMA buffer and %d chars from the FIFO\n",
920 dma_count, fifotaken);
Jiri Slaby2e124b42013-01-03 15:53:06 +0100921 tty_flip_buffer_push(port);
Linus Walleijead76f32011-02-24 13:21:08 +0100922 spin_lock(&uap->port.lock);
923}
924
925static void pl011_dma_rx_irq(struct uart_amba_port *uap)
926{
927 struct pl011_dmarx_data *dmarx = &uap->dmarx;
928 struct dma_chan *rxchan = dmarx->chan;
929 struct pl011_sgbuf *sgbuf = dmarx->use_buf_b ?
930 &dmarx->sgbuf_b : &dmarx->sgbuf_a;
931 size_t pending;
932 struct dma_tx_state state;
933 enum dma_status dmastat;
934
935 /*
936 * Pause the transfer so we can trust the current counter,
937 * do this before we pause the PL011 block, else we may
938 * overflow the FIFO.
939 */
940 if (dmaengine_pause(rxchan))
941 dev_err(uap->port.dev, "unable to pause DMA transfer\n");
942 dmastat = rxchan->device->device_tx_status(rxchan,
943 dmarx->cookie, &state);
944 if (dmastat != DMA_PAUSED)
945 dev_err(uap->port.dev, "unable to pause DMA transfer\n");
946
947 /* Disable RX DMA - incoming data will wait in the FIFO */
948 uap->dmacr &= ~UART011_RXDMAE;
Russell King9f25bc52015-11-03 14:51:13 +0000949 pl011_write(uap->dmacr, uap, REG_DMACR);
Linus Walleijead76f32011-02-24 13:21:08 +0100950 uap->dmarx.running = false;
951
952 pending = sgbuf->sg.length - state.residue;
953 BUG_ON(pending > PL011_DMA_BUFFER_SIZE);
954 /* Then we terminate the transfer - we now know our residue */
955 dmaengine_terminate_all(rxchan);
956
957 /*
958 * This will take the chars we have so far and insert
959 * into the framework.
960 */
961 pl011_dma_rx_chars(uap, pending, dmarx->use_buf_b, true);
962
963 /* Switch buffer & re-trigger DMA job */
964 dmarx->use_buf_b = !dmarx->use_buf_b;
965 if (pl011_dma_rx_trigger_dma(uap)) {
966 dev_dbg(uap->port.dev, "could not retrigger RX DMA job "
967 "fall back to interrupt mode\n");
968 uap->im |= UART011_RXIM;
Russell King9f25bc52015-11-03 14:51:13 +0000969 pl011_write(uap->im, uap, REG_IMSC);
Linus Walleijead76f32011-02-24 13:21:08 +0100970 }
971}
972
973static void pl011_dma_rx_callback(void *data)
974{
975 struct uart_amba_port *uap = data;
976 struct pl011_dmarx_data *dmarx = &uap->dmarx;
Chanho Min6dc01aa2012-02-20 10:24:40 +0900977 struct dma_chan *rxchan = dmarx->chan;
Linus Walleijead76f32011-02-24 13:21:08 +0100978 bool lastbuf = dmarx->use_buf_b;
Chanho Min6dc01aa2012-02-20 10:24:40 +0900979 struct pl011_sgbuf *sgbuf = dmarx->use_buf_b ?
980 &dmarx->sgbuf_b : &dmarx->sgbuf_a;
981 size_t pending;
982 struct dma_tx_state state;
Linus Walleijead76f32011-02-24 13:21:08 +0100983 int ret;
984
985 /*
986 * This completion interrupt occurs typically when the
987 * RX buffer is totally stuffed but no timeout has yet
988 * occurred. When that happens, we just want the RX
989 * routine to flush out the secondary DMA buffer while
990 * we immediately trigger the next DMA job.
991 */
992 spin_lock_irq(&uap->port.lock);
Chanho Min6dc01aa2012-02-20 10:24:40 +0900993 /*
994 * Rx data can be taken by the UART interrupts during
995 * the DMA irq handler. So we check the residue here.
996 */
997 rxchan->device->device_tx_status(rxchan, dmarx->cookie, &state);
998 pending = sgbuf->sg.length - state.residue;
999 BUG_ON(pending > PL011_DMA_BUFFER_SIZE);
1000 /* Then we terminate the transfer - we now know our residue */
1001 dmaengine_terminate_all(rxchan);
1002
Linus Walleijead76f32011-02-24 13:21:08 +01001003 uap->dmarx.running = false;
1004 dmarx->use_buf_b = !lastbuf;
1005 ret = pl011_dma_rx_trigger_dma(uap);
1006
Chanho Min6dc01aa2012-02-20 10:24:40 +09001007 pl011_dma_rx_chars(uap, pending, lastbuf, false);
Linus Walleijead76f32011-02-24 13:21:08 +01001008 spin_unlock_irq(&uap->port.lock);
1009 /*
1010 * Do this check after we picked the DMA chars so we don't
1011 * get some IRQ immediately from RX.
1012 */
1013 if (ret) {
1014 dev_dbg(uap->port.dev, "could not retrigger RX DMA job "
1015 "fall back to interrupt mode\n");
1016 uap->im |= UART011_RXIM;
Russell King9f25bc52015-11-03 14:51:13 +00001017 pl011_write(uap->im, uap, REG_IMSC);
Linus Walleijead76f32011-02-24 13:21:08 +01001018 }
1019}
1020
1021/*
1022 * Stop accepting received characters, when we're shutting down or
1023 * suspending this port.
1024 * Locking: called with port lock held and IRQs disabled.
1025 */
1026static inline void pl011_dma_rx_stop(struct uart_amba_port *uap)
1027{
1028 /* FIXME. Just disable the DMA enable */
1029 uap->dmacr &= ~UART011_RXDMAE;
Russell King9f25bc52015-11-03 14:51:13 +00001030 pl011_write(uap->dmacr, uap, REG_DMACR);
Linus Walleijead76f32011-02-24 13:21:08 +01001031}
Russell King68b65f72010-12-22 17:24:39 +00001032
Chanho Mincb06ff12013-03-27 18:38:11 +09001033/*
1034 * Timer handler for Rx DMA polling.
1035 * Every polling, It checks the residue in the dma buffer and transfer
1036 * data to the tty. Also, last_residue is updated for the next polling.
1037 */
1038static void pl011_dma_rx_poll(unsigned long args)
1039{
1040 struct uart_amba_port *uap = (struct uart_amba_port *)args;
1041 struct tty_port *port = &uap->port.state->port;
1042 struct pl011_dmarx_data *dmarx = &uap->dmarx;
1043 struct dma_chan *rxchan = uap->dmarx.chan;
1044 unsigned long flags = 0;
1045 unsigned int dmataken = 0;
1046 unsigned int size = 0;
1047 struct pl011_sgbuf *sgbuf;
1048 int dma_count;
1049 struct dma_tx_state state;
1050
1051 sgbuf = dmarx->use_buf_b ? &uap->dmarx.sgbuf_b : &uap->dmarx.sgbuf_a;
1052 rxchan->device->device_tx_status(rxchan, dmarx->cookie, &state);
1053 if (likely(state.residue < dmarx->last_residue)) {
1054 dmataken = sgbuf->sg.length - dmarx->last_residue;
1055 size = dmarx->last_residue - state.residue;
1056 dma_count = tty_insert_flip_string(port, sgbuf->buf + dmataken,
1057 size);
1058 if (dma_count == size)
1059 dmarx->last_residue = state.residue;
1060 dmarx->last_jiffies = jiffies;
1061 }
1062 tty_flip_buffer_push(port);
1063
1064 /*
1065 * If no data is received in poll_timeout, the driver will fall back
1066 * to interrupt mode. We will retrigger DMA at the first interrupt.
1067 */
1068 if (jiffies_to_msecs(jiffies - dmarx->last_jiffies)
1069 > uap->dmarx.poll_timeout) {
1070
1071 spin_lock_irqsave(&uap->port.lock, flags);
1072 pl011_dma_rx_stop(uap);
Guennadi Liakhovetskic25a1ad2013-12-10 14:54:47 +01001073 uap->im |= UART011_RXIM;
Russell King9f25bc52015-11-03 14:51:13 +00001074 pl011_write(uap->im, uap, REG_IMSC);
Chanho Mincb06ff12013-03-27 18:38:11 +09001075 spin_unlock_irqrestore(&uap->port.lock, flags);
1076
1077 uap->dmarx.running = false;
1078 dmaengine_terminate_all(rxchan);
1079 del_timer(&uap->dmarx.timer);
1080 } else {
1081 mod_timer(&uap->dmarx.timer,
1082 jiffies + msecs_to_jiffies(uap->dmarx.poll_rate));
1083 }
1084}
1085
Russell King68b65f72010-12-22 17:24:39 +00001086static void pl011_dma_startup(struct uart_amba_port *uap)
1087{
Linus Walleijead76f32011-02-24 13:21:08 +01001088 int ret;
1089
Jorge Ramirez-Ortiz1c9be312015-03-06 13:05:40 -05001090 if (!uap->dma_probed)
1091 pl011_dma_probe(uap);
1092
Russell King68b65f72010-12-22 17:24:39 +00001093 if (!uap->dmatx.chan)
1094 return;
1095
Andrew Jackson4c0be452014-11-07 14:14:35 +00001096 uap->dmatx.buf = kmalloc(PL011_DMA_BUFFER_SIZE, GFP_KERNEL | __GFP_DMA);
Russell King68b65f72010-12-22 17:24:39 +00001097 if (!uap->dmatx.buf) {
1098 dev_err(uap->port.dev, "no memory for DMA TX buffer\n");
1099 uap->port.fifosize = uap->fifosize;
1100 return;
1101 }
1102
1103 sg_init_one(&uap->dmatx.sg, uap->dmatx.buf, PL011_DMA_BUFFER_SIZE);
1104
1105 /* The DMA buffer is now the FIFO the TTY subsystem can use */
1106 uap->port.fifosize = PL011_DMA_BUFFER_SIZE;
Linus Walleijead76f32011-02-24 13:21:08 +01001107 uap->using_tx_dma = true;
Russell King68b65f72010-12-22 17:24:39 +00001108
Linus Walleijead76f32011-02-24 13:21:08 +01001109 if (!uap->dmarx.chan)
1110 goto skip_rx;
1111
1112 /* Allocate and map DMA RX buffers */
1113 ret = pl011_sgbuf_init(uap->dmarx.chan, &uap->dmarx.sgbuf_a,
1114 DMA_FROM_DEVICE);
1115 if (ret) {
1116 dev_err(uap->port.dev, "failed to init DMA %s: %d\n",
1117 "RX buffer A", ret);
1118 goto skip_rx;
1119 }
1120
1121 ret = pl011_sgbuf_init(uap->dmarx.chan, &uap->dmarx.sgbuf_b,
1122 DMA_FROM_DEVICE);
1123 if (ret) {
1124 dev_err(uap->port.dev, "failed to init DMA %s: %d\n",
1125 "RX buffer B", ret);
1126 pl011_sgbuf_free(uap->dmarx.chan, &uap->dmarx.sgbuf_a,
1127 DMA_FROM_DEVICE);
1128 goto skip_rx;
1129 }
1130
1131 uap->using_rx_dma = true;
1132
1133skip_rx:
Russell King68b65f72010-12-22 17:24:39 +00001134 /* Turn on DMA error (RX/TX will be enabled on demand) */
1135 uap->dmacr |= UART011_DMAONERR;
Russell King9f25bc52015-11-03 14:51:13 +00001136 pl011_write(uap->dmacr, uap, REG_DMACR);
Russell King38d62432010-12-22 17:59:16 +00001137
1138 /*
1139 * ST Micro variants has some specific dma burst threshold
1140 * compensation. Set this to 16 bytes, so burst will only
1141 * be issued above/below 16 bytes.
1142 */
1143 if (uap->vendor->dma_threshold)
Russell King75836332015-11-03 14:50:58 +00001144 pl011_write(ST_UART011_DMAWM_RX_16 | ST_UART011_DMAWM_TX_16,
Russell King9f25bc52015-11-03 14:51:13 +00001145 uap, REG_ST_DMAWM);
Linus Walleijead76f32011-02-24 13:21:08 +01001146
1147 if (uap->using_rx_dma) {
1148 if (pl011_dma_rx_trigger_dma(uap))
1149 dev_dbg(uap->port.dev, "could not trigger initial "
1150 "RX DMA job, fall back to interrupt mode\n");
Chanho Mincb06ff12013-03-27 18:38:11 +09001151 if (uap->dmarx.poll_rate) {
1152 init_timer(&(uap->dmarx.timer));
1153 uap->dmarx.timer.function = pl011_dma_rx_poll;
1154 uap->dmarx.timer.data = (unsigned long)uap;
1155 mod_timer(&uap->dmarx.timer,
1156 jiffies +
1157 msecs_to_jiffies(uap->dmarx.poll_rate));
1158 uap->dmarx.last_residue = PL011_DMA_BUFFER_SIZE;
1159 uap->dmarx.last_jiffies = jiffies;
1160 }
Linus Walleijead76f32011-02-24 13:21:08 +01001161 }
Russell King68b65f72010-12-22 17:24:39 +00001162}
1163
1164static void pl011_dma_shutdown(struct uart_amba_port *uap)
1165{
Linus Walleijead76f32011-02-24 13:21:08 +01001166 if (!(uap->using_tx_dma || uap->using_rx_dma))
Russell King68b65f72010-12-22 17:24:39 +00001167 return;
1168
1169 /* Disable RX and TX DMA */
Russell King9f25bc52015-11-03 14:51:13 +00001170 while (pl011_read(uap, REG_FR) & UART01x_FR_BUSY)
Timur Tabi2f2fd082016-01-15 14:32:20 -06001171 cpu_relax();
Russell King68b65f72010-12-22 17:24:39 +00001172
1173 spin_lock_irq(&uap->port.lock);
1174 uap->dmacr &= ~(UART011_DMAONERR | UART011_RXDMAE | UART011_TXDMAE);
Russell King9f25bc52015-11-03 14:51:13 +00001175 pl011_write(uap->dmacr, uap, REG_DMACR);
Russell King68b65f72010-12-22 17:24:39 +00001176 spin_unlock_irq(&uap->port.lock);
1177
Linus Walleijead76f32011-02-24 13:21:08 +01001178 if (uap->using_tx_dma) {
1179 /* In theory, this should already be done by pl011_dma_flush_buffer */
1180 dmaengine_terminate_all(uap->dmatx.chan);
1181 if (uap->dmatx.queued) {
1182 dma_unmap_sg(uap->dmatx.chan->device->dev, &uap->dmatx.sg, 1,
1183 DMA_TO_DEVICE);
1184 uap->dmatx.queued = false;
1185 }
1186
1187 kfree(uap->dmatx.buf);
1188 uap->using_tx_dma = false;
Russell King68b65f72010-12-22 17:24:39 +00001189 }
1190
Linus Walleijead76f32011-02-24 13:21:08 +01001191 if (uap->using_rx_dma) {
1192 dmaengine_terminate_all(uap->dmarx.chan);
1193 /* Clean up the RX DMA */
1194 pl011_sgbuf_free(uap->dmarx.chan, &uap->dmarx.sgbuf_a, DMA_FROM_DEVICE);
1195 pl011_sgbuf_free(uap->dmarx.chan, &uap->dmarx.sgbuf_b, DMA_FROM_DEVICE);
Chanho Mincb06ff12013-03-27 18:38:11 +09001196 if (uap->dmarx.poll_rate)
1197 del_timer_sync(&uap->dmarx.timer);
Linus Walleijead76f32011-02-24 13:21:08 +01001198 uap->using_rx_dma = false;
1199 }
Russell King68b65f72010-12-22 17:24:39 +00001200}
1201
Linus Walleijead76f32011-02-24 13:21:08 +01001202static inline bool pl011_dma_rx_available(struct uart_amba_port *uap)
1203{
1204 return uap->using_rx_dma;
1205}
1206
1207static inline bool pl011_dma_rx_running(struct uart_amba_port *uap)
1208{
1209 return uap->using_rx_dma && uap->dmarx.running;
1210}
1211
Russell King68b65f72010-12-22 17:24:39 +00001212#else
1213/* Blank functions if the DMA engine is not available */
Jorge Ramirez-Ortiz1c9be312015-03-06 13:05:40 -05001214static inline void pl011_dma_probe(struct uart_amba_port *uap)
Russell King68b65f72010-12-22 17:24:39 +00001215{
1216}
1217
1218static inline void pl011_dma_remove(struct uart_amba_port *uap)
1219{
1220}
1221
1222static inline void pl011_dma_startup(struct uart_amba_port *uap)
1223{
1224}
1225
1226static inline void pl011_dma_shutdown(struct uart_amba_port *uap)
1227{
1228}
1229
1230static inline bool pl011_dma_tx_irq(struct uart_amba_port *uap)
1231{
1232 return false;
1233}
1234
1235static inline void pl011_dma_tx_stop(struct uart_amba_port *uap)
1236{
1237}
1238
1239static inline bool pl011_dma_tx_start(struct uart_amba_port *uap)
1240{
1241 return false;
1242}
1243
Linus Walleijead76f32011-02-24 13:21:08 +01001244static inline void pl011_dma_rx_irq(struct uart_amba_port *uap)
1245{
1246}
1247
1248static inline void pl011_dma_rx_stop(struct uart_amba_port *uap)
1249{
1250}
1251
1252static inline int pl011_dma_rx_trigger_dma(struct uart_amba_port *uap)
1253{
1254 return -EIO;
1255}
1256
1257static inline bool pl011_dma_rx_available(struct uart_amba_port *uap)
1258{
1259 return false;
1260}
1261
1262static inline bool pl011_dma_rx_running(struct uart_amba_port *uap)
1263{
1264 return false;
1265}
1266
Russell King68b65f72010-12-22 17:24:39 +00001267#define pl011_dma_flush_buffer NULL
1268#endif
1269
Russell Kingb129a8c2005-08-31 10:12:14 +01001270static void pl011_stop_tx(struct uart_port *port)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001271{
Daniel Thompsona5820c22014-09-03 12:51:55 +01001272 struct uart_amba_port *uap =
1273 container_of(port, struct uart_amba_port, port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001274
1275 uap->im &= ~UART011_TXIM;
Russell King9f25bc52015-11-03 14:51:13 +00001276 pl011_write(uap->im, uap, REG_IMSC);
Russell King68b65f72010-12-22 17:24:39 +00001277 pl011_dma_tx_stop(uap);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001278}
1279
Dave Martin1e84d222015-04-27 16:49:05 +01001280static void pl011_tx_chars(struct uart_amba_port *uap, bool from_irq);
Dave Martin734745c2015-03-04 12:27:33 +00001281
1282/* Start TX with programmed I/O only (no DMA) */
1283static void pl011_start_tx_pio(struct uart_amba_port *uap)
1284{
1285 uap->im |= UART011_TXIM;
Russell King9f25bc52015-11-03 14:51:13 +00001286 pl011_write(uap->im, uap, REG_IMSC);
Dave Martin1e84d222015-04-27 16:49:05 +01001287 pl011_tx_chars(uap, false);
Dave Martin734745c2015-03-04 12:27:33 +00001288}
1289
Russell Kingb129a8c2005-08-31 10:12:14 +01001290static void pl011_start_tx(struct uart_port *port)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001291{
Daniel Thompsona5820c22014-09-03 12:51:55 +01001292 struct uart_amba_port *uap =
1293 container_of(port, struct uart_amba_port, port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001294
Dave Martin734745c2015-03-04 12:27:33 +00001295 if (!pl011_dma_tx_start(uap))
1296 pl011_start_tx_pio(uap);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001297}
1298
1299static void pl011_stop_rx(struct uart_port *port)
1300{
Daniel Thompsona5820c22014-09-03 12:51:55 +01001301 struct uart_amba_port *uap =
1302 container_of(port, struct uart_amba_port, port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001303
1304 uap->im &= ~(UART011_RXIM|UART011_RTIM|UART011_FEIM|
1305 UART011_PEIM|UART011_BEIM|UART011_OEIM);
Russell King9f25bc52015-11-03 14:51:13 +00001306 pl011_write(uap->im, uap, REG_IMSC);
Linus Walleijead76f32011-02-24 13:21:08 +01001307
1308 pl011_dma_rx_stop(uap);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001309}
1310
1311static void pl011_enable_ms(struct uart_port *port)
1312{
Daniel Thompsona5820c22014-09-03 12:51:55 +01001313 struct uart_amba_port *uap =
1314 container_of(port, struct uart_amba_port, port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001315
1316 uap->im |= UART011_RIMIM|UART011_CTSMIM|UART011_DCDMIM|UART011_DSRMIM;
Russell King9f25bc52015-11-03 14:51:13 +00001317 pl011_write(uap->im, uap, REG_IMSC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001318}
1319
David Howells7d12e782006-10-05 14:55:46 +01001320static void pl011_rx_chars(struct uart_amba_port *uap)
Fabio Estevamb83286b2013-08-09 17:58:51 -03001321__releases(&uap->port.lock)
1322__acquires(&uap->port.lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001323{
Linus Walleij29772c42011-02-24 13:21:36 +01001324 pl011_fifo_to_tty(uap);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001325
Thomas Gleixner2389b272007-05-29 21:53:50 +01001326 spin_unlock(&uap->port.lock);
Jiri Slaby2e124b42013-01-03 15:53:06 +01001327 tty_flip_buffer_push(&uap->port.state->port);
Linus Walleijead76f32011-02-24 13:21:08 +01001328 /*
1329 * If we were temporarily out of DMA mode for a while,
1330 * attempt to switch back to DMA mode again.
1331 */
1332 if (pl011_dma_rx_available(uap)) {
1333 if (pl011_dma_rx_trigger_dma(uap)) {
1334 dev_dbg(uap->port.dev, "could not trigger RX DMA job "
1335 "fall back to interrupt mode again\n");
1336 uap->im |= UART011_RXIM;
Russell King9f25bc52015-11-03 14:51:13 +00001337 pl011_write(uap->im, uap, REG_IMSC);
Chanho Mincb06ff12013-03-27 18:38:11 +09001338 } else {
Chanho Min89fa28d2013-04-03 11:10:37 +09001339#ifdef CONFIG_DMA_ENGINE
Chanho Mincb06ff12013-03-27 18:38:11 +09001340 /* Start Rx DMA poll */
1341 if (uap->dmarx.poll_rate) {
1342 uap->dmarx.last_jiffies = jiffies;
1343 uap->dmarx.last_residue = PL011_DMA_BUFFER_SIZE;
1344 mod_timer(&uap->dmarx.timer,
1345 jiffies +
1346 msecs_to_jiffies(uap->dmarx.poll_rate));
1347 }
Chanho Min89fa28d2013-04-03 11:10:37 +09001348#endif
Chanho Mincb06ff12013-03-27 18:38:11 +09001349 }
Linus Walleijead76f32011-02-24 13:21:08 +01001350 }
Thomas Gleixner2389b272007-05-29 21:53:50 +01001351 spin_lock(&uap->port.lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001352}
1353
Dave Martin1e84d222015-04-27 16:49:05 +01001354static bool pl011_tx_char(struct uart_amba_port *uap, unsigned char c,
1355 bool from_irq)
Dave Martin734745c2015-03-04 12:27:33 +00001356{
Dave Martin1e84d222015-04-27 16:49:05 +01001357 if (unlikely(!from_irq) &&
Russell King9f25bc52015-11-03 14:51:13 +00001358 pl011_read(uap, REG_FR) & UART01x_FR_TXFF)
Dave Martin1e84d222015-04-27 16:49:05 +01001359 return false; /* unable to transmit character */
1360
Russell King9f25bc52015-11-03 14:51:13 +00001361 pl011_write(c, uap, REG_DR);
Dave Martin734745c2015-03-04 12:27:33 +00001362 uap->port.icount.tx++;
1363
Dave Martin1e84d222015-04-27 16:49:05 +01001364 return true;
Dave Martin734745c2015-03-04 12:27:33 +00001365}
1366
Dave Martin1e84d222015-04-27 16:49:05 +01001367static void pl011_tx_chars(struct uart_amba_port *uap, bool from_irq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001368{
Alan Coxebd2c8f2009-09-19 13:13:28 -07001369 struct circ_buf *xmit = &uap->port.state->xmit;
Dave Martin1e84d222015-04-27 16:49:05 +01001370 int count = uap->fifosize >> 1;
Dave Martin734745c2015-03-04 12:27:33 +00001371
Linus Torvalds1da177e2005-04-16 15:20:36 -07001372 if (uap->port.x_char) {
Dave Martin1e84d222015-04-27 16:49:05 +01001373 if (!pl011_tx_char(uap, uap->port.x_char, from_irq))
1374 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001375 uap->port.x_char = 0;
Dave Martin734745c2015-03-04 12:27:33 +00001376 --count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001377 }
1378 if (uart_circ_empty(xmit) || uart_tx_stopped(&uap->port)) {
Russell Kingb129a8c2005-08-31 10:12:14 +01001379 pl011_stop_tx(&uap->port);
Dave Martin1e84d222015-04-27 16:49:05 +01001380 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001381 }
1382
Russell King68b65f72010-12-22 17:24:39 +00001383 /* If we are using DMA mode, try to send some characters. */
1384 if (pl011_dma_tx_irq(uap))
Dave Martin1e84d222015-04-27 16:49:05 +01001385 return;
Russell King68b65f72010-12-22 17:24:39 +00001386
Dave Martin1e84d222015-04-27 16:49:05 +01001387 do {
1388 if (likely(from_irq) && count-- == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001389 break;
Dave Martin1e84d222015-04-27 16:49:05 +01001390
1391 if (!pl011_tx_char(uap, xmit->buf[xmit->tail], from_irq))
1392 break;
1393
1394 xmit->tail = (xmit->tail + 1) & (UART_XMIT_SIZE - 1);
1395 } while (!uart_circ_empty(xmit));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001396
1397 if (uart_circ_chars_pending(xmit) < WAKEUP_CHARS)
1398 uart_write_wakeup(&uap->port);
1399
Dave Martin1e84d222015-04-27 16:49:05 +01001400 if (uart_circ_empty(xmit))
Russell Kingb129a8c2005-08-31 10:12:14 +01001401 pl011_stop_tx(&uap->port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001402}
1403
1404static void pl011_modem_status(struct uart_amba_port *uap)
1405{
1406 unsigned int status, delta;
1407
Russell King9f25bc52015-11-03 14:51:13 +00001408 status = pl011_read(uap, REG_FR) & UART01x_FR_MODEM_ANY;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001409
1410 delta = status ^ uap->old_status;
1411 uap->old_status = status;
1412
1413 if (!delta)
1414 return;
1415
1416 if (delta & UART01x_FR_DCD)
1417 uart_handle_dcd_change(&uap->port, status & UART01x_FR_DCD);
1418
Greg Kroah-Hartman062a68a2015-09-04 09:11:24 -07001419 if (delta & UART01x_FR_DSR)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001420 uap->port.icount.dsr++;
1421
Greg Kroah-Hartman062a68a2015-09-04 09:11:24 -07001422 if (delta & UART01x_FR_CTS)
1423 uart_handle_cts_change(&uap->port, status & UART01x_FR_CTS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001424
Alan Coxbdc04e32009-09-19 13:13:31 -07001425 wake_up_interruptible(&uap->port.state->port.delta_msr_wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001426}
1427
Andre Przywara9c4ef4b2015-05-21 17:26:20 +01001428static void check_apply_cts_event_workaround(struct uart_amba_port *uap)
1429{
1430 unsigned int dummy_read;
1431
1432 if (!uap->vendor->cts_event_workaround)
1433 return;
1434
1435 /* workaround to make sure that all bits are unlocked.. */
Russell King9f25bc52015-11-03 14:51:13 +00001436 pl011_write(0x00, uap, REG_ICR);
Andre Przywara9c4ef4b2015-05-21 17:26:20 +01001437
1438 /*
1439 * WA: introduce 26ns(1 uart clk) delay before W1C;
1440 * single apb access will incur 2 pclk(133.12Mhz) delay,
1441 * so add 2 dummy reads
1442 */
Russell King9f25bc52015-11-03 14:51:13 +00001443 dummy_read = pl011_read(uap, REG_ICR);
1444 dummy_read = pl011_read(uap, REG_ICR);
Andre Przywara9c4ef4b2015-05-21 17:26:20 +01001445}
1446
David Howells7d12e782006-10-05 14:55:46 +01001447static irqreturn_t pl011_int(int irq, void *dev_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001448{
1449 struct uart_amba_port *uap = dev_id;
Russell King963cc982010-12-22 17:16:09 +00001450 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001451 unsigned int status, pass_counter = AMBA_ISR_PASS_LIMIT;
Andre Przywara075167e2015-05-21 17:26:19 +01001452 u16 imsc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001453 int handled = 0;
1454
Russell King963cc982010-12-22 17:16:09 +00001455 spin_lock_irqsave(&uap->port.lock, flags);
Russell King9f25bc52015-11-03 14:51:13 +00001456 imsc = pl011_read(uap, REG_IMSC);
1457 status = pl011_read(uap, REG_RIS) & imsc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001458 if (status) {
1459 do {
Andre Przywara9c4ef4b2015-05-21 17:26:20 +01001460 check_apply_cts_event_workaround(uap);
Greg Kroah-Hartmanf11c9842015-09-04 09:13:39 -07001461
Russell King75836332015-11-03 14:50:58 +00001462 pl011_write(status & ~(UART011_TXIS|UART011_RTIS|
1463 UART011_RXIS),
Russell King9f25bc52015-11-03 14:51:13 +00001464 uap, REG_ICR);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001465
Linus Walleijead76f32011-02-24 13:21:08 +01001466 if (status & (UART011_RTIS|UART011_RXIS)) {
1467 if (pl011_dma_rx_running(uap))
1468 pl011_dma_rx_irq(uap);
1469 else
1470 pl011_rx_chars(uap);
1471 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001472 if (status & (UART011_DSRMIS|UART011_DCDMIS|
1473 UART011_CTSMIS|UART011_RIMIS))
1474 pl011_modem_status(uap);
Dave Martin1e84d222015-04-27 16:49:05 +01001475 if (status & UART011_TXIS)
1476 pl011_tx_chars(uap, true);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001477
Rajanikanth H.V4fd06902012-03-26 11:17:02 +02001478 if (pass_counter-- == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001479 break;
1480
Russell King9f25bc52015-11-03 14:51:13 +00001481 status = pl011_read(uap, REG_RIS) & imsc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001482 } while (status != 0);
1483 handled = 1;
1484 }
1485
Russell King963cc982010-12-22 17:16:09 +00001486 spin_unlock_irqrestore(&uap->port.lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001487
1488 return IRQ_RETVAL(handled);
1489}
1490
Linus Walleije643f872012-06-17 15:44:19 +02001491static unsigned int pl011_tx_empty(struct uart_port *port)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001492{
Daniel Thompsona5820c22014-09-03 12:51:55 +01001493 struct uart_amba_port *uap =
1494 container_of(port, struct uart_amba_port, port);
Russell King9f25bc52015-11-03 14:51:13 +00001495 unsigned int status = pl011_read(uap, REG_FR);
Greg Kroah-Hartman062a68a2015-09-04 09:11:24 -07001496 return status & (UART01x_FR_BUSY|UART01x_FR_TXFF) ? 0 : TIOCSER_TEMT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001497}
1498
Linus Walleije643f872012-06-17 15:44:19 +02001499static unsigned int pl011_get_mctrl(struct uart_port *port)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001500{
Daniel Thompsona5820c22014-09-03 12:51:55 +01001501 struct uart_amba_port *uap =
1502 container_of(port, struct uart_amba_port, port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001503 unsigned int result = 0;
Russell King9f25bc52015-11-03 14:51:13 +00001504 unsigned int status = pl011_read(uap, REG_FR);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001505
Jiri Slaby5159f402007-10-18 23:40:31 -07001506#define TIOCMBIT(uartbit, tiocmbit) \
Linus Torvalds1da177e2005-04-16 15:20:36 -07001507 if (status & uartbit) \
1508 result |= tiocmbit
1509
Jiri Slaby5159f402007-10-18 23:40:31 -07001510 TIOCMBIT(UART01x_FR_DCD, TIOCM_CAR);
Greg Kroah-Hartman062a68a2015-09-04 09:11:24 -07001511 TIOCMBIT(UART01x_FR_DSR, TIOCM_DSR);
1512 TIOCMBIT(UART01x_FR_CTS, TIOCM_CTS);
1513 TIOCMBIT(UART011_FR_RI, TIOCM_RNG);
Jiri Slaby5159f402007-10-18 23:40:31 -07001514#undef TIOCMBIT
Linus Torvalds1da177e2005-04-16 15:20:36 -07001515 return result;
1516}
1517
1518static void pl011_set_mctrl(struct uart_port *port, unsigned int mctrl)
1519{
Daniel Thompsona5820c22014-09-03 12:51:55 +01001520 struct uart_amba_port *uap =
1521 container_of(port, struct uart_amba_port, port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001522 unsigned int cr;
1523
Russell King9f25bc52015-11-03 14:51:13 +00001524 cr = pl011_read(uap, REG_CR);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001525
Jiri Slaby5159f402007-10-18 23:40:31 -07001526#define TIOCMBIT(tiocmbit, uartbit) \
Linus Torvalds1da177e2005-04-16 15:20:36 -07001527 if (mctrl & tiocmbit) \
1528 cr |= uartbit; \
1529 else \
1530 cr &= ~uartbit
1531
Jiri Slaby5159f402007-10-18 23:40:31 -07001532 TIOCMBIT(TIOCM_RTS, UART011_CR_RTS);
1533 TIOCMBIT(TIOCM_DTR, UART011_CR_DTR);
1534 TIOCMBIT(TIOCM_OUT1, UART011_CR_OUT1);
1535 TIOCMBIT(TIOCM_OUT2, UART011_CR_OUT2);
1536 TIOCMBIT(TIOCM_LOOP, UART011_CR_LBE);
Rabin Vincent3b438162010-02-12 06:43:11 +01001537
1538 if (uap->autorts) {
1539 /* We need to disable auto-RTS if we want to turn RTS off */
1540 TIOCMBIT(TIOCM_RTS, UART011_CR_RTSEN);
1541 }
Jiri Slaby5159f402007-10-18 23:40:31 -07001542#undef TIOCMBIT
Linus Torvalds1da177e2005-04-16 15:20:36 -07001543
Russell King9f25bc52015-11-03 14:51:13 +00001544 pl011_write(cr, uap, REG_CR);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001545}
1546
1547static void pl011_break_ctl(struct uart_port *port, int break_state)
1548{
Daniel Thompsona5820c22014-09-03 12:51:55 +01001549 struct uart_amba_port *uap =
1550 container_of(port, struct uart_amba_port, port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001551 unsigned long flags;
1552 unsigned int lcr_h;
1553
1554 spin_lock_irqsave(&uap->port.lock, flags);
Russell Kinge4df9a82015-11-16 17:40:41 +00001555 lcr_h = pl011_read(uap, REG_LCRH_TX);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001556 if (break_state == -1)
1557 lcr_h |= UART01x_LCRH_BRK;
1558 else
1559 lcr_h &= ~UART01x_LCRH_BRK;
Russell Kinge4df9a82015-11-16 17:40:41 +00001560 pl011_write(lcr_h, uap, REG_LCRH_TX);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001561 spin_unlock_irqrestore(&uap->port.lock, flags);
1562}
1563
Jason Wessel84b5ae12008-02-20 13:33:39 -06001564#ifdef CONFIG_CONSOLE_POLL
Anton Vorontsov5c8124a2012-09-24 14:27:55 -07001565
1566static void pl011_quiesce_irqs(struct uart_port *port)
1567{
Daniel Thompsona5820c22014-09-03 12:51:55 +01001568 struct uart_amba_port *uap =
1569 container_of(port, struct uart_amba_port, port);
Anton Vorontsov5c8124a2012-09-24 14:27:55 -07001570
Russell King9f25bc52015-11-03 14:51:13 +00001571 pl011_write(pl011_read(uap, REG_MIS), uap, REG_ICR);
Anton Vorontsov5c8124a2012-09-24 14:27:55 -07001572 /*
1573 * There is no way to clear TXIM as this is "ready to transmit IRQ", so
1574 * we simply mask it. start_tx() will unmask it.
1575 *
1576 * Note we can race with start_tx(), and if the race happens, the
1577 * polling user might get another interrupt just after we clear it.
1578 * But it should be OK and can happen even w/o the race, e.g.
1579 * controller immediately got some new data and raised the IRQ.
1580 *
1581 * And whoever uses polling routines assumes that it manages the device
1582 * (including tx queue), so we're also fine with start_tx()'s caller
1583 * side.
1584 */
Russell King9f25bc52015-11-03 14:51:13 +00001585 pl011_write(pl011_read(uap, REG_IMSC) & ~UART011_TXIM, uap,
1586 REG_IMSC);
Anton Vorontsov5c8124a2012-09-24 14:27:55 -07001587}
1588
Linus Walleije643f872012-06-17 15:44:19 +02001589static int pl011_get_poll_char(struct uart_port *port)
Jason Wessel84b5ae12008-02-20 13:33:39 -06001590{
Daniel Thompsona5820c22014-09-03 12:51:55 +01001591 struct uart_amba_port *uap =
1592 container_of(port, struct uart_amba_port, port);
Jason Wessel84b5ae12008-02-20 13:33:39 -06001593 unsigned int status;
1594
Anton Vorontsov5c8124a2012-09-24 14:27:55 -07001595 /*
1596 * The caller might need IRQs lowered, e.g. if used with KDB NMI
1597 * debugger.
1598 */
1599 pl011_quiesce_irqs(port);
1600
Russell King9f25bc52015-11-03 14:51:13 +00001601 status = pl011_read(uap, REG_FR);
Jason Wesself5316b42010-05-20 21:04:22 -05001602 if (status & UART01x_FR_RXFE)
1603 return NO_POLL_CHAR;
Jason Wessel84b5ae12008-02-20 13:33:39 -06001604
Russell King9f25bc52015-11-03 14:51:13 +00001605 return pl011_read(uap, REG_DR);
Jason Wessel84b5ae12008-02-20 13:33:39 -06001606}
1607
Linus Walleije643f872012-06-17 15:44:19 +02001608static void pl011_put_poll_char(struct uart_port *port,
Jason Wessel84b5ae12008-02-20 13:33:39 -06001609 unsigned char ch)
1610{
Daniel Thompsona5820c22014-09-03 12:51:55 +01001611 struct uart_amba_port *uap =
1612 container_of(port, struct uart_amba_port, port);
Jason Wessel84b5ae12008-02-20 13:33:39 -06001613
Russell King9f25bc52015-11-03 14:51:13 +00001614 while (pl011_read(uap, REG_FR) & UART01x_FR_TXFF)
Timur Tabi2f2fd082016-01-15 14:32:20 -06001615 cpu_relax();
Jason Wessel84b5ae12008-02-20 13:33:39 -06001616
Russell King9f25bc52015-11-03 14:51:13 +00001617 pl011_write(ch, uap, REG_DR);
Jason Wessel84b5ae12008-02-20 13:33:39 -06001618}
1619
1620#endif /* CONFIG_CONSOLE_POLL */
1621
Anton Vorontsovb3564c22012-09-24 14:27:54 -07001622static int pl011_hwinit(struct uart_port *port)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001623{
Daniel Thompsona5820c22014-09-03 12:51:55 +01001624 struct uart_amba_port *uap =
1625 container_of(port, struct uart_amba_port, port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001626 int retval;
1627
Linus Walleij78d80c52012-05-23 21:18:46 +02001628 /* Optionaly enable pins to be muxed in and configured */
Linus Walleij2b996fc2013-06-05 15:36:42 +02001629 pinctrl_pm_select_default_state(port->dev);
Linus Walleij78d80c52012-05-23 21:18:46 +02001630
Linus Torvalds1da177e2005-04-16 15:20:36 -07001631 /*
1632 * Try to enable the clock producer.
1633 */
Julia Lawall1c4c4392012-08-26 18:01:01 +02001634 retval = clk_prepare_enable(uap->clk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001635 if (retval)
Tushar Behera7f6d9422014-06-26 15:35:35 +05301636 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001637
1638 uap->port.uartclk = clk_get_rate(uap->clk);
1639
Linus Walleij9b96fba2012-03-13 13:27:23 +01001640 /* Clear pending error and receive interrupts */
Russell King75836332015-11-03 14:50:58 +00001641 pl011_write(UART011_OEIS | UART011_BEIS | UART011_PEIS |
1642 UART011_FEIS | UART011_RTIS | UART011_RXIS,
Russell King9f25bc52015-11-03 14:51:13 +00001643 uap, REG_ICR);
Linus Walleij9b96fba2012-03-13 13:27:23 +01001644
Linus Torvalds1da177e2005-04-16 15:20:36 -07001645 /*
Anton Vorontsovb3564c22012-09-24 14:27:54 -07001646 * Save interrupts enable mask, and enable RX interrupts in case if
1647 * the interrupt is used for NMI entry.
1648 */
Russell King9f25bc52015-11-03 14:51:13 +00001649 uap->im = pl011_read(uap, REG_IMSC);
1650 pl011_write(UART011_RTIM | UART011_RXIM, uap, REG_IMSC);
Anton Vorontsovb3564c22012-09-24 14:27:54 -07001651
Jingoo Han574de552013-07-30 17:06:57 +09001652 if (dev_get_platdata(uap->port.dev)) {
Anton Vorontsovb3564c22012-09-24 14:27:54 -07001653 struct amba_pl011_data *plat;
1654
Jingoo Han574de552013-07-30 17:06:57 +09001655 plat = dev_get_platdata(uap->port.dev);
Anton Vorontsovb3564c22012-09-24 14:27:54 -07001656 if (plat->init)
1657 plat->init();
1658 }
1659 return 0;
Anton Vorontsovb3564c22012-09-24 14:27:54 -07001660}
1661
Russell King7fe9a5a2015-11-03 14:51:08 +00001662static bool pl011_split_lcrh(const struct uart_amba_port *uap)
1663{
Russell Kinge4df9a82015-11-16 17:40:41 +00001664 return pl011_reg_to_offset(uap, REG_LCRH_RX) !=
1665 pl011_reg_to_offset(uap, REG_LCRH_TX);
Russell King7fe9a5a2015-11-03 14:51:08 +00001666}
1667
Jon Medhurstb60f2f62013-12-10 10:18:59 +00001668static void pl011_write_lcr_h(struct uart_amba_port *uap, unsigned int lcr_h)
1669{
Russell Kinge4df9a82015-11-16 17:40:41 +00001670 pl011_write(lcr_h, uap, REG_LCRH_RX);
Russell King7fe9a5a2015-11-03 14:51:08 +00001671 if (pl011_split_lcrh(uap)) {
Jon Medhurstb60f2f62013-12-10 10:18:59 +00001672 int i;
1673 /*
1674 * Wait 10 PCLKs before writing LCRH_TX register,
1675 * to get this delay write read only register 10 times
1676 */
1677 for (i = 0; i < 10; ++i)
Russell King9f25bc52015-11-03 14:51:13 +00001678 pl011_write(0xff, uap, REG_MIS);
Russell Kinge4df9a82015-11-16 17:40:41 +00001679 pl011_write(lcr_h, uap, REG_LCRH_TX);
Jon Medhurstb60f2f62013-12-10 10:18:59 +00001680 }
1681}
1682
Andre Przywara867b8e82015-05-21 17:26:15 +01001683static int pl011_allocate_irq(struct uart_amba_port *uap)
1684{
Russell King9f25bc52015-11-03 14:51:13 +00001685 pl011_write(uap->im, uap, REG_IMSC);
Andre Przywara867b8e82015-05-21 17:26:15 +01001686
1687 return request_irq(uap->port.irq, pl011_int, 0, "uart-pl011", uap);
1688}
1689
1690/*
1691 * Enable interrupts, only timeouts when using DMA
1692 * if initial RX DMA job failed, start in interrupt mode
1693 * as well.
1694 */
1695static void pl011_enable_interrupts(struct uart_amba_port *uap)
1696{
1697 spin_lock_irq(&uap->port.lock);
1698
1699 /* Clear out any spuriously appearing RX interrupts */
Russell King9f25bc52015-11-03 14:51:13 +00001700 pl011_write(UART011_RTIS | UART011_RXIS, uap, REG_ICR);
Andre Przywara867b8e82015-05-21 17:26:15 +01001701 uap->im = UART011_RTIM;
1702 if (!pl011_dma_rx_running(uap))
1703 uap->im |= UART011_RXIM;
Russell King9f25bc52015-11-03 14:51:13 +00001704 pl011_write(uap->im, uap, REG_IMSC);
Andre Przywara867b8e82015-05-21 17:26:15 +01001705 spin_unlock_irq(&uap->port.lock);
1706}
1707
Anton Vorontsovb3564c22012-09-24 14:27:54 -07001708static int pl011_startup(struct uart_port *port)
1709{
Daniel Thompsona5820c22014-09-03 12:51:55 +01001710 struct uart_amba_port *uap =
1711 container_of(port, struct uart_amba_port, port);
Dave Martin734745c2015-03-04 12:27:33 +00001712 unsigned int cr;
Anton Vorontsovb3564c22012-09-24 14:27:54 -07001713 int retval;
1714
1715 retval = pl011_hwinit(port);
1716 if (retval)
1717 goto clk_dis;
1718
Andre Przywara867b8e82015-05-21 17:26:15 +01001719 retval = pl011_allocate_irq(uap);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001720 if (retval)
1721 goto clk_dis;
1722
Russell King9f25bc52015-11-03 14:51:13 +00001723 pl011_write(uap->vendor->ifls, uap, REG_IFLS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001724
Jon Medhurstfe433902013-12-10 10:18:58 +00001725 spin_lock_irq(&uap->port.lock);
1726
Shreshtha Kumar Sahud8d8ffa2012-01-18 15:53:59 +05301727 /* restore RTS and DTR */
1728 cr = uap->old_cr & (UART011_CR_RTS | UART011_CR_DTR);
1729 cr |= UART01x_CR_UARTEN | UART011_CR_RXE | UART011_CR_TXE;
Russell King9f25bc52015-11-03 14:51:13 +00001730 pl011_write(cr, uap, REG_CR);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001731
Jon Medhurstfe433902013-12-10 10:18:58 +00001732 spin_unlock_irq(&uap->port.lock);
1733
Linus Torvalds1da177e2005-04-16 15:20:36 -07001734 /*
1735 * initialise the old status of the modem signals
1736 */
Russell King9f25bc52015-11-03 14:51:13 +00001737 uap->old_status = pl011_read(uap, REG_FR) & UART01x_FR_MODEM_ANY;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001738
Russell King68b65f72010-12-22 17:24:39 +00001739 /* Startup DMA */
1740 pl011_dma_startup(uap);
1741
Andre Przywara867b8e82015-05-21 17:26:15 +01001742 pl011_enable_interrupts(uap);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001743
1744 return 0;
1745
1746 clk_dis:
Julia Lawall1c4c4392012-08-26 18:01:01 +02001747 clk_disable_unprepare(uap->clk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001748 return retval;
1749}
1750
Andre Przywara0dd1e242015-05-21 17:26:23 +01001751static int sbsa_uart_startup(struct uart_port *port)
1752{
1753 struct uart_amba_port *uap =
1754 container_of(port, struct uart_amba_port, port);
1755 int retval;
1756
1757 retval = pl011_hwinit(port);
1758 if (retval)
1759 return retval;
1760
1761 retval = pl011_allocate_irq(uap);
1762 if (retval)
1763 return retval;
1764
1765 /* The SBSA UART does not support any modem status lines. */
1766 uap->old_status = 0;
1767
1768 pl011_enable_interrupts(uap);
1769
1770 return 0;
1771}
1772
Linus Walleijec489aa2010-06-02 08:13:52 +01001773static void pl011_shutdown_channel(struct uart_amba_port *uap,
1774 unsigned int lcrh)
1775{
Greg Kroah-Hartmanf11c9842015-09-04 09:13:39 -07001776 unsigned long val;
Linus Walleijec489aa2010-06-02 08:13:52 +01001777
Russell Kingb2a4e242015-11-03 14:51:03 +00001778 val = pl011_read(uap, lcrh);
Greg Kroah-Hartmanf11c9842015-09-04 09:13:39 -07001779 val &= ~(UART01x_LCRH_BRK | UART01x_LCRH_FEN);
Russell Kingb2a4e242015-11-03 14:51:03 +00001780 pl011_write(val, uap, lcrh);
Linus Walleijec489aa2010-06-02 08:13:52 +01001781}
1782
Andre Przywara95166a32015-05-21 17:26:16 +01001783/*
1784 * disable the port. It should not disable RTS and DTR.
1785 * Also RTS and DTR state should be preserved to restore
1786 * it during startup().
1787 */
1788static void pl011_disable_uart(struct uart_amba_port *uap)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001789{
Shreshtha Kumar Sahud8d8ffa2012-01-18 15:53:59 +05301790 unsigned int cr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001791
Rabin Vincent3b438162010-02-12 06:43:11 +01001792 uap->autorts = false;
Jon Medhurstfe433902013-12-10 10:18:58 +00001793 spin_lock_irq(&uap->port.lock);
Russell King9f25bc52015-11-03 14:51:13 +00001794 cr = pl011_read(uap, REG_CR);
Shreshtha Kumar Sahud8d8ffa2012-01-18 15:53:59 +05301795 uap->old_cr = cr;
1796 cr &= UART011_CR_RTS | UART011_CR_DTR;
1797 cr |= UART01x_CR_UARTEN | UART011_CR_TXE;
Russell King9f25bc52015-11-03 14:51:13 +00001798 pl011_write(cr, uap, REG_CR);
Jon Medhurstfe433902013-12-10 10:18:58 +00001799 spin_unlock_irq(&uap->port.lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001800
1801 /*
1802 * disable break condition and fifos
1803 */
Russell Kinge4df9a82015-11-16 17:40:41 +00001804 pl011_shutdown_channel(uap, REG_LCRH_RX);
Russell King7fe9a5a2015-11-03 14:51:08 +00001805 if (pl011_split_lcrh(uap))
Russell Kinge4df9a82015-11-16 17:40:41 +00001806 pl011_shutdown_channel(uap, REG_LCRH_TX);
Andre Przywara95166a32015-05-21 17:26:16 +01001807}
1808
1809static void pl011_disable_interrupts(struct uart_amba_port *uap)
1810{
1811 spin_lock_irq(&uap->port.lock);
1812
1813 /* mask all interrupts and clear all pending ones */
1814 uap->im = 0;
Russell King9f25bc52015-11-03 14:51:13 +00001815 pl011_write(uap->im, uap, REG_IMSC);
1816 pl011_write(0xffff, uap, REG_ICR);
Andre Przywara95166a32015-05-21 17:26:16 +01001817
1818 spin_unlock_irq(&uap->port.lock);
1819}
1820
1821static void pl011_shutdown(struct uart_port *port)
1822{
1823 struct uart_amba_port *uap =
1824 container_of(port, struct uart_amba_port, port);
1825
1826 pl011_disable_interrupts(uap);
1827
1828 pl011_dma_shutdown(uap);
1829
1830 free_irq(uap->port.irq, uap);
1831
1832 pl011_disable_uart(uap);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001833
1834 /*
1835 * Shut down the clock producer
1836 */
Julia Lawall1c4c4392012-08-26 18:01:01 +02001837 clk_disable_unprepare(uap->clk);
Linus Walleij78d80c52012-05-23 21:18:46 +02001838 /* Optionally let pins go into sleep states */
Linus Walleij2b996fc2013-06-05 15:36:42 +02001839 pinctrl_pm_select_sleep_state(port->dev);
Shreshtha Kumar Sahuc16d51a2011-06-13 10:11:33 +02001840
Jingoo Han574de552013-07-30 17:06:57 +09001841 if (dev_get_platdata(uap->port.dev)) {
Shreshtha Kumar Sahuc16d51a2011-06-13 10:11:33 +02001842 struct amba_pl011_data *plat;
1843
Jingoo Han574de552013-07-30 17:06:57 +09001844 plat = dev_get_platdata(uap->port.dev);
Shreshtha Kumar Sahuc16d51a2011-06-13 10:11:33 +02001845 if (plat->exit)
1846 plat->exit();
1847 }
1848
Peter Hurley36f339d2014-11-06 09:06:12 -05001849 if (uap->port.ops->flush_buffer)
1850 uap->port.ops->flush_buffer(port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001851}
1852
Andre Przywara0dd1e242015-05-21 17:26:23 +01001853static void sbsa_uart_shutdown(struct uart_port *port)
1854{
1855 struct uart_amba_port *uap =
1856 container_of(port, struct uart_amba_port, port);
1857
1858 pl011_disable_interrupts(uap);
1859
1860 free_irq(uap->port.irq, uap);
1861
1862 if (uap->port.ops->flush_buffer)
1863 uap->port.ops->flush_buffer(port);
1864}
1865
Linus Torvalds1da177e2005-04-16 15:20:36 -07001866static void
Andre Przywaraef5a9352015-05-21 17:26:17 +01001867pl011_setup_status_masks(struct uart_port *port, struct ktermios *termios)
1868{
1869 port->read_status_mask = UART011_DR_OE | 255;
1870 if (termios->c_iflag & INPCK)
1871 port->read_status_mask |= UART011_DR_FE | UART011_DR_PE;
1872 if (termios->c_iflag & (IGNBRK | BRKINT | PARMRK))
1873 port->read_status_mask |= UART011_DR_BE;
1874
1875 /*
1876 * Characters to ignore
1877 */
1878 port->ignore_status_mask = 0;
1879 if (termios->c_iflag & IGNPAR)
1880 port->ignore_status_mask |= UART011_DR_FE | UART011_DR_PE;
1881 if (termios->c_iflag & IGNBRK) {
1882 port->ignore_status_mask |= UART011_DR_BE;
1883 /*
1884 * If we're ignoring parity and break indicators,
1885 * ignore overruns too (for real raw support).
1886 */
1887 if (termios->c_iflag & IGNPAR)
1888 port->ignore_status_mask |= UART011_DR_OE;
1889 }
1890
1891 /*
1892 * Ignore all characters if CREAD is not set.
1893 */
1894 if ((termios->c_cflag & CREAD) == 0)
1895 port->ignore_status_mask |= UART_DUMMY_DR_RX;
1896}
1897
1898static void
Alan Cox606d0992006-12-08 02:38:45 -08001899pl011_set_termios(struct uart_port *port, struct ktermios *termios,
1900 struct ktermios *old)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001901{
Daniel Thompsona5820c22014-09-03 12:51:55 +01001902 struct uart_amba_port *uap =
1903 container_of(port, struct uart_amba_port, port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001904 unsigned int lcr_h, old_cr;
1905 unsigned long flags;
Russell Kingc19f12b2010-12-22 17:48:26 +00001906 unsigned int baud, quot, clkdiv;
1907
1908 if (uap->vendor->oversampling)
1909 clkdiv = 8;
1910 else
1911 clkdiv = 16;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001912
1913 /*
1914 * Ask the core to calculate the divisor for us.
1915 */
Linus Walleijac3e3fb2010-06-02 20:40:22 +01001916 baud = uart_get_baud_rate(port, termios, old, 0,
Russell Kingc19f12b2010-12-22 17:48:26 +00001917 port->uartclk / clkdiv);
Chanho Min89fa28d2013-04-03 11:10:37 +09001918#ifdef CONFIG_DMA_ENGINE
Chanho Mincb06ff12013-03-27 18:38:11 +09001919 /*
1920 * Adjust RX DMA polling rate with baud rate if not specified.
1921 */
1922 if (uap->dmarx.auto_poll_rate)
1923 uap->dmarx.poll_rate = DIV_ROUND_UP(10000000, baud);
Chanho Min89fa28d2013-04-03 11:10:37 +09001924#endif
Linus Walleijac3e3fb2010-06-02 20:40:22 +01001925
1926 if (baud > port->uartclk/16)
1927 quot = DIV_ROUND_CLOSEST(port->uartclk * 8, baud);
1928 else
1929 quot = DIV_ROUND_CLOSEST(port->uartclk * 4, baud);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001930
1931 switch (termios->c_cflag & CSIZE) {
1932 case CS5:
1933 lcr_h = UART01x_LCRH_WLEN_5;
1934 break;
1935 case CS6:
1936 lcr_h = UART01x_LCRH_WLEN_6;
1937 break;
1938 case CS7:
1939 lcr_h = UART01x_LCRH_WLEN_7;
1940 break;
1941 default: // CS8
1942 lcr_h = UART01x_LCRH_WLEN_8;
1943 break;
1944 }
1945 if (termios->c_cflag & CSTOPB)
1946 lcr_h |= UART01x_LCRH_STP2;
1947 if (termios->c_cflag & PARENB) {
1948 lcr_h |= UART01x_LCRH_PEN;
1949 if (!(termios->c_cflag & PARODD))
1950 lcr_h |= UART01x_LCRH_EPS;
Ed Spiridonovbb700022016-03-04 08:11:53 +03001951 if (termios->c_cflag & CMSPAR)
1952 lcr_h |= UART011_LCRH_SPS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001953 }
Russell Kingffca2b12010-12-22 17:13:05 +00001954 if (uap->fifosize > 1)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001955 lcr_h |= UART01x_LCRH_FEN;
1956
1957 spin_lock_irqsave(&port->lock, flags);
1958
1959 /*
1960 * Update the per-port timeout.
1961 */
1962 uart_update_timeout(port, termios->c_cflag, baud);
1963
Andre Przywaraef5a9352015-05-21 17:26:17 +01001964 pl011_setup_status_masks(port, termios);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001965
1966 if (UART_ENABLE_MS(port, termios->c_cflag))
1967 pl011_enable_ms(port);
1968
1969 /* first, disable everything */
Russell King9f25bc52015-11-03 14:51:13 +00001970 old_cr = pl011_read(uap, REG_CR);
1971 pl011_write(0, uap, REG_CR);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001972
Rabin Vincent3b438162010-02-12 06:43:11 +01001973 if (termios->c_cflag & CRTSCTS) {
1974 if (old_cr & UART011_CR_RTS)
1975 old_cr |= UART011_CR_RTSEN;
1976
1977 old_cr |= UART011_CR_CTSEN;
1978 uap->autorts = true;
1979 } else {
1980 old_cr &= ~(UART011_CR_CTSEN | UART011_CR_RTSEN);
1981 uap->autorts = false;
1982 }
1983
Russell Kingc19f12b2010-12-22 17:48:26 +00001984 if (uap->vendor->oversampling) {
1985 if (baud > port->uartclk / 16)
Linus Walleijac3e3fb2010-06-02 20:40:22 +01001986 old_cr |= ST_UART011_CR_OVSFACT;
1987 else
1988 old_cr &= ~ST_UART011_CR_OVSFACT;
1989 }
1990
Linus Walleijc5dd5532012-09-26 17:21:36 +02001991 /*
1992 * Workaround for the ST Micro oversampling variants to
1993 * increase the bitrate slightly, by lowering the divisor,
1994 * to avoid delayed sampling of start bit at high speeds,
1995 * else we see data corruption.
1996 */
1997 if (uap->vendor->oversampling) {
1998 if ((baud >= 3000000) && (baud < 3250000) && (quot > 1))
1999 quot -= 1;
2000 else if ((baud > 3250000) && (quot > 2))
2001 quot -= 2;
2002 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002003 /* Set baud rate */
Russell King9f25bc52015-11-03 14:51:13 +00002004 pl011_write(quot & 0x3f, uap, REG_FBRD);
2005 pl011_write(quot >> 6, uap, REG_IBRD);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002006
2007 /*
2008 * ----------v----------v----------v----------v-----
Russell Kinge4df9a82015-11-16 17:40:41 +00002009 * NOTE: REG_LCRH_TX and REG_LCRH_RX MUST BE WRITTEN AFTER
Russell King9f25bc52015-11-03 14:51:13 +00002010 * REG_FBRD & REG_IBRD.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002011 * ----------^----------^----------^----------^-----
2012 */
Jon Medhurstb60f2f62013-12-10 10:18:59 +00002013 pl011_write_lcr_h(uap, lcr_h);
Russell King9f25bc52015-11-03 14:51:13 +00002014 pl011_write(old_cr, uap, REG_CR);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002015
2016 spin_unlock_irqrestore(&port->lock, flags);
2017}
2018
Andre Przywara0dd1e242015-05-21 17:26:23 +01002019static void
2020sbsa_uart_set_termios(struct uart_port *port, struct ktermios *termios,
2021 struct ktermios *old)
2022{
2023 struct uart_amba_port *uap =
2024 container_of(port, struct uart_amba_port, port);
2025 unsigned long flags;
2026
2027 tty_termios_encode_baud_rate(termios, uap->fixed_baud, uap->fixed_baud);
2028
2029 /* The SBSA UART only supports 8n1 without hardware flow control. */
2030 termios->c_cflag &= ~(CSIZE | CSTOPB | PARENB | PARODD);
2031 termios->c_cflag &= ~(CMSPAR | CRTSCTS);
2032 termios->c_cflag |= CS8 | CLOCAL;
2033
2034 spin_lock_irqsave(&port->lock, flags);
2035 uart_update_timeout(port, CS8, uap->fixed_baud);
2036 pl011_setup_status_masks(port, termios);
2037 spin_unlock_irqrestore(&port->lock, flags);
2038}
2039
Linus Torvalds1da177e2005-04-16 15:20:36 -07002040static const char *pl011_type(struct uart_port *port)
2041{
Daniel Thompsona5820c22014-09-03 12:51:55 +01002042 struct uart_amba_port *uap =
2043 container_of(port, struct uart_amba_port, port);
Russell Kinge8a7ba82010-12-28 09:16:54 +00002044 return uap->port.type == PORT_AMBA ? uap->type : NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002045}
2046
2047/*
2048 * Release the memory region(s) being used by 'port'
2049 */
Linus Walleije643f872012-06-17 15:44:19 +02002050static void pl011_release_port(struct uart_port *port)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002051{
2052 release_mem_region(port->mapbase, SZ_4K);
2053}
2054
2055/*
2056 * Request the memory region(s) being used by 'port'
2057 */
Linus Walleije643f872012-06-17 15:44:19 +02002058static int pl011_request_port(struct uart_port *port)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002059{
2060 return request_mem_region(port->mapbase, SZ_4K, "uart-pl011")
2061 != NULL ? 0 : -EBUSY;
2062}
2063
2064/*
2065 * Configure/autoconfigure the port.
2066 */
Linus Walleije643f872012-06-17 15:44:19 +02002067static void pl011_config_port(struct uart_port *port, int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002068{
2069 if (flags & UART_CONFIG_TYPE) {
2070 port->type = PORT_AMBA;
Linus Walleije643f872012-06-17 15:44:19 +02002071 pl011_request_port(port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002072 }
2073}
2074
2075/*
2076 * verify the new serial_struct (for TIOCSSERIAL).
2077 */
Linus Walleije643f872012-06-17 15:44:19 +02002078static int pl011_verify_port(struct uart_port *port, struct serial_struct *ser)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002079{
2080 int ret = 0;
2081 if (ser->type != PORT_UNKNOWN && ser->type != PORT_AMBA)
2082 ret = -EINVAL;
Yinghai Lua62c4132008-08-19 20:49:55 -07002083 if (ser->irq < 0 || ser->irq >= nr_irqs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002084 ret = -EINVAL;
2085 if (ser->baud_base < 9600)
2086 ret = -EINVAL;
2087 return ret;
2088}
2089
2090static struct uart_ops amba_pl011_pops = {
Linus Walleije643f872012-06-17 15:44:19 +02002091 .tx_empty = pl011_tx_empty,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002092 .set_mctrl = pl011_set_mctrl,
Linus Walleije643f872012-06-17 15:44:19 +02002093 .get_mctrl = pl011_get_mctrl,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002094 .stop_tx = pl011_stop_tx,
2095 .start_tx = pl011_start_tx,
2096 .stop_rx = pl011_stop_rx,
2097 .enable_ms = pl011_enable_ms,
2098 .break_ctl = pl011_break_ctl,
2099 .startup = pl011_startup,
2100 .shutdown = pl011_shutdown,
Russell King68b65f72010-12-22 17:24:39 +00002101 .flush_buffer = pl011_dma_flush_buffer,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002102 .set_termios = pl011_set_termios,
2103 .type = pl011_type,
Linus Walleije643f872012-06-17 15:44:19 +02002104 .release_port = pl011_release_port,
2105 .request_port = pl011_request_port,
2106 .config_port = pl011_config_port,
2107 .verify_port = pl011_verify_port,
Jason Wessel84b5ae12008-02-20 13:33:39 -06002108#ifdef CONFIG_CONSOLE_POLL
Anton Vorontsovb3564c22012-09-24 14:27:54 -07002109 .poll_init = pl011_hwinit,
Linus Walleije643f872012-06-17 15:44:19 +02002110 .poll_get_char = pl011_get_poll_char,
2111 .poll_put_char = pl011_put_poll_char,
Jason Wessel84b5ae12008-02-20 13:33:39 -06002112#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002113};
2114
Andre Przywara0dd1e242015-05-21 17:26:23 +01002115static void sbsa_uart_set_mctrl(struct uart_port *port, unsigned int mctrl)
2116{
2117}
2118
2119static unsigned int sbsa_uart_get_mctrl(struct uart_port *port)
2120{
2121 return 0;
2122}
2123
2124static const struct uart_ops sbsa_uart_pops = {
2125 .tx_empty = pl011_tx_empty,
2126 .set_mctrl = sbsa_uart_set_mctrl,
2127 .get_mctrl = sbsa_uart_get_mctrl,
2128 .stop_tx = pl011_stop_tx,
2129 .start_tx = pl011_start_tx,
2130 .stop_rx = pl011_stop_rx,
2131 .startup = sbsa_uart_startup,
2132 .shutdown = sbsa_uart_shutdown,
2133 .set_termios = sbsa_uart_set_termios,
2134 .type = pl011_type,
2135 .release_port = pl011_release_port,
2136 .request_port = pl011_request_port,
2137 .config_port = pl011_config_port,
2138 .verify_port = pl011_verify_port,
2139#ifdef CONFIG_CONSOLE_POLL
2140 .poll_init = pl011_hwinit,
2141 .poll_get_char = pl011_get_poll_char,
2142 .poll_put_char = pl011_put_poll_char,
2143#endif
2144};
2145
Linus Torvalds1da177e2005-04-16 15:20:36 -07002146static struct uart_amba_port *amba_ports[UART_NR];
2147
2148#ifdef CONFIG_SERIAL_AMBA_PL011_CONSOLE
2149
Russell Kingd3587882006-03-20 20:00:09 +00002150static void pl011_console_putchar(struct uart_port *port, int ch)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002151{
Daniel Thompsona5820c22014-09-03 12:51:55 +01002152 struct uart_amba_port *uap =
2153 container_of(port, struct uart_amba_port, port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002154
Russell King9f25bc52015-11-03 14:51:13 +00002155 while (pl011_read(uap, REG_FR) & UART01x_FR_TXFF)
Timur Tabi2f2fd082016-01-15 14:32:20 -06002156 cpu_relax();
Russell King9f25bc52015-11-03 14:51:13 +00002157 pl011_write(ch, uap, REG_DR);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002158}
2159
2160static void
2161pl011_console_write(struct console *co, const char *s, unsigned int count)
2162{
2163 struct uart_amba_port *uap = amba_ports[co->index];
Timur Tabi2f2fd082016-01-15 14:32:20 -06002164 unsigned int old_cr = 0, new_cr;
Rabin Vincentef605fd2012-01-17 11:52:28 +01002165 unsigned long flags;
2166 int locked = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002167
2168 clk_enable(uap->clk);
2169
Rabin Vincentef605fd2012-01-17 11:52:28 +01002170 local_irq_save(flags);
2171 if (uap->port.sysrq)
2172 locked = 0;
2173 else if (oops_in_progress)
2174 locked = spin_trylock(&uap->port.lock);
2175 else
2176 spin_lock(&uap->port.lock);
2177
Linus Torvalds1da177e2005-04-16 15:20:36 -07002178 /*
2179 * First save the CR then disable the interrupts
2180 */
Andre Przywara71eec482015-05-21 17:26:21 +01002181 if (!uap->vendor->always_enabled) {
Russell King9f25bc52015-11-03 14:51:13 +00002182 old_cr = pl011_read(uap, REG_CR);
Andre Przywara71eec482015-05-21 17:26:21 +01002183 new_cr = old_cr & ~UART011_CR_CTSEN;
2184 new_cr |= UART01x_CR_UARTEN | UART011_CR_TXE;
Russell King9f25bc52015-11-03 14:51:13 +00002185 pl011_write(new_cr, uap, REG_CR);
Andre Przywara71eec482015-05-21 17:26:21 +01002186 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002187
Russell Kingd3587882006-03-20 20:00:09 +00002188 uart_console_write(&uap->port, s, count, pl011_console_putchar);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002189
2190 /*
2191 * Finally, wait for transmitter to become empty
2192 * and restore the TCR
2193 */
Timur Tabi2f2fd082016-01-15 14:32:20 -06002194 while (pl011_read(uap, REG_FR) & UART01x_FR_BUSY)
2195 cpu_relax();
Andre Przywara71eec482015-05-21 17:26:21 +01002196 if (!uap->vendor->always_enabled)
Russell King9f25bc52015-11-03 14:51:13 +00002197 pl011_write(old_cr, uap, REG_CR);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002198
Rabin Vincentef605fd2012-01-17 11:52:28 +01002199 if (locked)
2200 spin_unlock(&uap->port.lock);
2201 local_irq_restore(flags);
2202
Linus Torvalds1da177e2005-04-16 15:20:36 -07002203 clk_disable(uap->clk);
2204}
2205
2206static void __init
2207pl011_console_get_options(struct uart_amba_port *uap, int *baud,
2208 int *parity, int *bits)
2209{
Russell King9f25bc52015-11-03 14:51:13 +00002210 if (pl011_read(uap, REG_CR) & UART01x_CR_UARTEN) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002211 unsigned int lcr_h, ibrd, fbrd;
2212
Russell Kinge4df9a82015-11-16 17:40:41 +00002213 lcr_h = pl011_read(uap, REG_LCRH_TX);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002214
2215 *parity = 'n';
2216 if (lcr_h & UART01x_LCRH_PEN) {
2217 if (lcr_h & UART01x_LCRH_EPS)
2218 *parity = 'e';
2219 else
2220 *parity = 'o';
2221 }
2222
2223 if ((lcr_h & 0x60) == UART01x_LCRH_WLEN_7)
2224 *bits = 7;
2225 else
2226 *bits = 8;
2227
Russell King9f25bc52015-11-03 14:51:13 +00002228 ibrd = pl011_read(uap, REG_IBRD);
2229 fbrd = pl011_read(uap, REG_FBRD);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002230
2231 *baud = uap->port.uartclk * 4 / (64 * ibrd + fbrd);
Linus Walleijac3e3fb2010-06-02 20:40:22 +01002232
Russell Kingc19f12b2010-12-22 17:48:26 +00002233 if (uap->vendor->oversampling) {
Russell King9f25bc52015-11-03 14:51:13 +00002234 if (pl011_read(uap, REG_CR)
Linus Walleijac3e3fb2010-06-02 20:40:22 +01002235 & ST_UART011_CR_OVSFACT)
2236 *baud *= 2;
2237 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002238 }
2239}
2240
2241static int __init pl011_console_setup(struct console *co, char *options)
2242{
2243 struct uart_amba_port *uap;
2244 int baud = 38400;
2245 int bits = 8;
2246 int parity = 'n';
2247 int flow = 'n';
Russell King4b4851c2011-09-22 11:35:30 +01002248 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002249
2250 /*
2251 * Check whether an invalid uart number has been specified, and
2252 * if so, search for the first available port that does have
2253 * console support.
2254 */
2255 if (co->index >= UART_NR)
2256 co->index = 0;
2257 uap = amba_ports[co->index];
Russell Kingd28122a2007-01-22 18:59:42 +00002258 if (!uap)
2259 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002260
Linus Walleij78d80c52012-05-23 21:18:46 +02002261 /* Allow pins to be muxed in and configured */
Linus Walleij2b996fc2013-06-05 15:36:42 +02002262 pinctrl_pm_select_default_state(uap->port.dev);
Linus Walleij78d80c52012-05-23 21:18:46 +02002263
Russell King4b4851c2011-09-22 11:35:30 +01002264 ret = clk_prepare(uap->clk);
2265 if (ret)
2266 return ret;
2267
Jingoo Han574de552013-07-30 17:06:57 +09002268 if (dev_get_platdata(uap->port.dev)) {
Shreshtha Kumar Sahuc16d51a2011-06-13 10:11:33 +02002269 struct amba_pl011_data *plat;
2270
Jingoo Han574de552013-07-30 17:06:57 +09002271 plat = dev_get_platdata(uap->port.dev);
Shreshtha Kumar Sahuc16d51a2011-06-13 10:11:33 +02002272 if (plat->init)
2273 plat->init();
2274 }
2275
Linus Torvalds1da177e2005-04-16 15:20:36 -07002276 uap->port.uartclk = clk_get_rate(uap->clk);
2277
Andre Przywaracefc2d12015-05-21 17:26:22 +01002278 if (uap->vendor->fixed_options) {
2279 baud = uap->fixed_baud;
2280 } else {
2281 if (options)
2282 uart_parse_options(options,
2283 &baud, &parity, &bits, &flow);
2284 else
2285 pl011_console_get_options(uap, &baud, &parity, &bits);
2286 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002287
2288 return uart_set_options(&uap->port, co, baud, parity, bits, flow);
2289}
2290
Vincent Sanders2d934862005-09-14 22:36:03 +01002291static struct uart_driver amba_reg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002292static struct console amba_console = {
2293 .name = "ttyAMA",
2294 .write = pl011_console_write,
2295 .device = uart_console_device,
2296 .setup = pl011_console_setup,
2297 .flags = CON_PRINTBUFFER,
2298 .index = -1,
2299 .data = &amba_reg,
2300};
2301
2302#define AMBA_CONSOLE (&amba_console)
Rob Herring0d3c6732014-04-18 17:19:57 -05002303
2304static void pl011_putc(struct uart_port *port, int c)
2305{
Russell Kingcdf091c2016-01-04 15:37:41 -06002306 while (readl(port->membase + UART01x_FR) & UART01x_FR_TXFF)
Timur Tabi2f2fd082016-01-15 14:32:20 -06002307 cpu_relax();
Timur Tabi3b78fae2016-01-04 15:37:42 -06002308 if (port->iotype == UPIO_MEM32)
2309 writel(c, port->membase + UART01x_DR);
2310 else
2311 writeb(c, port->membase + UART01x_DR);
Russell Kingcdf091c2016-01-04 15:37:41 -06002312 while (readl(port->membase + UART01x_FR) & UART01x_FR_BUSY)
Timur Tabi2f2fd082016-01-15 14:32:20 -06002313 cpu_relax();
Rob Herring0d3c6732014-04-18 17:19:57 -05002314}
2315
2316static void pl011_early_write(struct console *con, const char *s, unsigned n)
2317{
2318 struct earlycon_device *dev = con->data;
2319
2320 uart_console_write(&dev->port, s, n, pl011_putc);
2321}
2322
2323static int __init pl011_early_console_setup(struct earlycon_device *device,
2324 const char *opt)
2325{
2326 if (!device->port.membase)
2327 return -ENODEV;
2328
2329 device->con->write = pl011_early_write;
2330 return 0;
2331}
Rob Herring45e0f0f2014-03-27 08:08:03 -05002332OF_EARLYCON_DECLARE(pl011, "arm,pl011", pl011_early_console_setup);
Rob Herring0d3c6732014-04-18 17:19:57 -05002333
Linus Torvalds1da177e2005-04-16 15:20:36 -07002334#else
2335#define AMBA_CONSOLE NULL
2336#endif
2337
2338static struct uart_driver amba_reg = {
2339 .owner = THIS_MODULE,
2340 .driver_name = "ttyAMA",
2341 .dev_name = "ttyAMA",
2342 .major = SERIAL_AMBA_MAJOR,
2343 .minor = SERIAL_AMBA_MINOR,
2344 .nr = UART_NR,
2345 .cons = AMBA_CONSOLE,
2346};
2347
Matthew Leach32614aa2012-08-28 16:41:28 +01002348static int pl011_probe_dt_alias(int index, struct device *dev)
2349{
2350 struct device_node *np;
2351 static bool seen_dev_with_alias = false;
2352 static bool seen_dev_without_alias = false;
2353 int ret = index;
2354
2355 if (!IS_ENABLED(CONFIG_OF))
2356 return ret;
2357
2358 np = dev->of_node;
2359 if (!np)
2360 return ret;
2361
2362 ret = of_alias_get_id(np, "serial");
Arnd Bergmann287980e2016-05-27 23:23:25 +02002363 if (ret < 0) {
Matthew Leach32614aa2012-08-28 16:41:28 +01002364 seen_dev_without_alias = true;
2365 ret = index;
2366 } else {
2367 seen_dev_with_alias = true;
2368 if (ret >= ARRAY_SIZE(amba_ports) || amba_ports[ret] != NULL) {
2369 dev_warn(dev, "requested serial port %d not available.\n", ret);
2370 ret = index;
2371 }
2372 }
2373
2374 if (seen_dev_with_alias && seen_dev_without_alias)
2375 dev_warn(dev, "aliased and non-aliased serial devices found in device tree. Serial port enumeration may be unpredictable.\n");
2376
2377 return ret;
2378}
2379
Andre Przywara49bb3c82015-05-21 17:26:14 +01002380/* unregisters the driver also if no more ports are left */
2381static void pl011_unregister_port(struct uart_amba_port *uap)
2382{
2383 int i;
2384 bool busy = false;
2385
2386 for (i = 0; i < ARRAY_SIZE(amba_ports); i++) {
2387 if (amba_ports[i] == uap)
2388 amba_ports[i] = NULL;
2389 else if (amba_ports[i])
2390 busy = true;
2391 }
2392 pl011_dma_remove(uap);
2393 if (!busy)
2394 uart_unregister_driver(&amba_reg);
2395}
2396
Andre Przywara3873e2d2015-05-21 17:26:18 +01002397static int pl011_find_free_port(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002398{
Andre Przywara3873e2d2015-05-21 17:26:18 +01002399 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002400
2401 for (i = 0; i < ARRAY_SIZE(amba_ports); i++)
2402 if (amba_ports[i] == NULL)
Andre Przywara3873e2d2015-05-21 17:26:18 +01002403 return i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002404
Andre Przywara3873e2d2015-05-21 17:26:18 +01002405 return -EBUSY;
2406}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002407
Andre Przywara3873e2d2015-05-21 17:26:18 +01002408static int pl011_setup_port(struct device *dev, struct uart_amba_port *uap,
2409 struct resource *mmiobase, int index)
2410{
2411 void __iomem *base;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002412
Andre Przywara3873e2d2015-05-21 17:26:18 +01002413 base = devm_ioremap_resource(dev, mmiobase);
Krzysztof Kozlowski97a60ea2015-07-09 22:21:41 +09002414 if (IS_ERR(base))
2415 return PTR_ERR(base);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002416
Andre Przywara3873e2d2015-05-21 17:26:18 +01002417 index = pl011_probe_dt_alias(index, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002418
Shreshtha Kumar Sahud8d8ffa2012-01-18 15:53:59 +05302419 uap->old_cr = 0;
Andre Przywara3873e2d2015-05-21 17:26:18 +01002420 uap->port.dev = dev;
2421 uap->port.mapbase = mmiobase->start;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002422 uap->port.membase = base;
Russell Kingffca2b12010-12-22 17:13:05 +00002423 uap->port.fifosize = uap->fifosize;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002424 uap->port.flags = UPF_BOOT_AUTOCONF;
Andre Przywara3873e2d2015-05-21 17:26:18 +01002425 uap->port.line = index;
2426
2427 amba_ports[index] = uap;
2428
2429 return 0;
2430}
2431
2432static int pl011_register_port(struct uart_amba_port *uap)
2433{
2434 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002435
Linus Walleijc3d8b762012-03-21 20:15:18 +01002436 /* Ensure interrupts from this UART are masked and cleared */
Russell King9f25bc52015-11-03 14:51:13 +00002437 pl011_write(0, uap, REG_IMSC);
2438 pl011_write(0xffff, uap, REG_ICR);
Linus Walleijc3d8b762012-03-21 20:15:18 +01002439
Tushar Beheraef2889f2014-01-20 14:32:35 +05302440 if (!amba_reg.state) {
2441 ret = uart_register_driver(&amba_reg);
2442 if (ret < 0) {
Andre Przywara3873e2d2015-05-21 17:26:18 +01002443 dev_err(uap->port.dev,
Jorge Ramirez-Ortiz1c9be312015-03-06 13:05:40 -05002444 "Failed to register AMBA-PL011 driver\n");
Tushar Beheraef2889f2014-01-20 14:32:35 +05302445 return ret;
2446 }
2447 }
2448
Linus Torvalds1da177e2005-04-16 15:20:36 -07002449 ret = uart_add_one_port(&amba_reg, &uap->port);
Andre Przywara49bb3c82015-05-21 17:26:14 +01002450 if (ret)
2451 pl011_unregister_port(uap);
Tushar Behera7f6d9422014-06-26 15:35:35 +05302452
Linus Torvalds1da177e2005-04-16 15:20:36 -07002453 return ret;
2454}
2455
Andre Przywara3873e2d2015-05-21 17:26:18 +01002456static int pl011_probe(struct amba_device *dev, const struct amba_id *id)
2457{
2458 struct uart_amba_port *uap;
2459 struct vendor_data *vendor = id->data;
2460 int portnr, ret;
2461
2462 portnr = pl011_find_free_port();
2463 if (portnr < 0)
2464 return portnr;
2465
2466 uap = devm_kzalloc(&dev->dev, sizeof(struct uart_amba_port),
2467 GFP_KERNEL);
2468 if (!uap)
2469 return -ENOMEM;
2470
2471 uap->clk = devm_clk_get(&dev->dev, NULL);
2472 if (IS_ERR(uap->clk))
2473 return PTR_ERR(uap->clk);
2474
Russell King439403b2015-11-16 17:40:31 +00002475 uap->reg_offset = vendor->reg_offset;
Andre Przywara3873e2d2015-05-21 17:26:18 +01002476 uap->vendor = vendor;
Andre Przywara3873e2d2015-05-21 17:26:18 +01002477 uap->fifosize = vendor->get_fifosize(dev);
Timur Tabi3b78fae2016-01-04 15:37:42 -06002478 uap->port.iotype = vendor->access_32b ? UPIO_MEM32 : UPIO_MEM;
Andre Przywara3873e2d2015-05-21 17:26:18 +01002479 uap->port.irq = dev->irq[0];
2480 uap->port.ops = &amba_pl011_pops;
2481
2482 snprintf(uap->type, sizeof(uap->type), "PL011 rev%u", amba_rev(dev));
2483
2484 ret = pl011_setup_port(&dev->dev, uap, &dev->res, portnr);
2485 if (ret)
2486 return ret;
2487
2488 amba_set_drvdata(dev, uap);
2489
2490 return pl011_register_port(uap);
2491}
2492
Linus Torvalds1da177e2005-04-16 15:20:36 -07002493static int pl011_remove(struct amba_device *dev)
2494{
2495 struct uart_amba_port *uap = amba_get_drvdata(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002496
Linus Torvalds1da177e2005-04-16 15:20:36 -07002497 uart_remove_one_port(&amba_reg, &uap->port);
Andre Przywara49bb3c82015-05-21 17:26:14 +01002498 pl011_unregister_port(uap);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002499 return 0;
2500}
2501
Ulf Hanssond0ce8502013-12-03 11:04:28 +01002502#ifdef CONFIG_PM_SLEEP
2503static int pl011_suspend(struct device *dev)
Leo Chenb736b892009-07-28 23:43:33 +01002504{
Ulf Hanssond0ce8502013-12-03 11:04:28 +01002505 struct uart_amba_port *uap = dev_get_drvdata(dev);
Leo Chenb736b892009-07-28 23:43:33 +01002506
2507 if (!uap)
2508 return -EINVAL;
2509
2510 return uart_suspend_port(&amba_reg, &uap->port);
2511}
2512
Ulf Hanssond0ce8502013-12-03 11:04:28 +01002513static int pl011_resume(struct device *dev)
Leo Chenb736b892009-07-28 23:43:33 +01002514{
Ulf Hanssond0ce8502013-12-03 11:04:28 +01002515 struct uart_amba_port *uap = dev_get_drvdata(dev);
Leo Chenb736b892009-07-28 23:43:33 +01002516
2517 if (!uap)
2518 return -EINVAL;
2519
2520 return uart_resume_port(&amba_reg, &uap->port);
2521}
2522#endif
2523
Ulf Hanssond0ce8502013-12-03 11:04:28 +01002524static SIMPLE_DEV_PM_OPS(pl011_dev_pm_ops, pl011_suspend, pl011_resume);
2525
Andre Przywara0dd1e242015-05-21 17:26:23 +01002526static int sbsa_uart_probe(struct platform_device *pdev)
2527{
2528 struct uart_amba_port *uap;
2529 struct resource *r;
2530 int portnr, ret;
2531 int baudrate;
2532
2533 /*
2534 * Check the mandatory baud rate parameter in the DT node early
2535 * so that we can easily exit with the error.
2536 */
2537 if (pdev->dev.of_node) {
2538 struct device_node *np = pdev->dev.of_node;
2539
2540 ret = of_property_read_u32(np, "current-speed", &baudrate);
2541 if (ret)
2542 return ret;
2543 } else {
2544 baudrate = 115200;
2545 }
2546
2547 portnr = pl011_find_free_port();
2548 if (portnr < 0)
2549 return portnr;
2550
2551 uap = devm_kzalloc(&pdev->dev, sizeof(struct uart_amba_port),
2552 GFP_KERNEL);
2553 if (!uap)
2554 return -ENOMEM;
2555
Jiri Slaby394a9e22016-05-09 09:23:35 +02002556 ret = platform_get_irq(pdev, 0);
2557 if (ret < 0) {
2558 dev_err(&pdev->dev, "cannot obtain irq\n");
2559 return ret;
2560 }
2561 uap->port.irq = ret;
2562
Russell King439403b2015-11-16 17:40:31 +00002563 uap->reg_offset = vendor_sbsa.reg_offset;
Andre Przywara0dd1e242015-05-21 17:26:23 +01002564 uap->vendor = &vendor_sbsa;
2565 uap->fifosize = 32;
Timur Tabi3b78fae2016-01-04 15:37:42 -06002566 uap->port.iotype = vendor_sbsa.access_32b ? UPIO_MEM32 : UPIO_MEM;
Andre Przywara0dd1e242015-05-21 17:26:23 +01002567 uap->port.ops = &sbsa_uart_pops;
2568 uap->fixed_baud = baudrate;
2569
2570 snprintf(uap->type, sizeof(uap->type), "SBSA");
2571
2572 r = platform_get_resource(pdev, IORESOURCE_MEM, 0);
2573
2574 ret = pl011_setup_port(&pdev->dev, uap, r, portnr);
2575 if (ret)
2576 return ret;
2577
2578 platform_set_drvdata(pdev, uap);
2579
2580 return pl011_register_port(uap);
2581}
2582
2583static int sbsa_uart_remove(struct platform_device *pdev)
2584{
2585 struct uart_amba_port *uap = platform_get_drvdata(pdev);
2586
2587 uart_remove_one_port(&amba_reg, &uap->port);
2588 pl011_unregister_port(uap);
2589 return 0;
2590}
2591
2592static const struct of_device_id sbsa_uart_of_match[] = {
2593 { .compatible = "arm,sbsa-uart", },
2594 {},
2595};
2596MODULE_DEVICE_TABLE(of, sbsa_uart_of_match);
2597
Graeme Gregory3db9ab02015-05-21 17:26:24 +01002598static const struct acpi_device_id sbsa_uart_acpi_match[] = {
2599 { "ARMH0011", 0 },
2600 {},
2601};
2602MODULE_DEVICE_TABLE(acpi, sbsa_uart_acpi_match);
2603
Andre Przywara0dd1e242015-05-21 17:26:23 +01002604static struct platform_driver arm_sbsa_uart_platform_driver = {
2605 .probe = sbsa_uart_probe,
2606 .remove = sbsa_uart_remove,
2607 .driver = {
2608 .name = "sbsa-uart",
2609 .of_match_table = of_match_ptr(sbsa_uart_of_match),
Graeme Gregory3db9ab02015-05-21 17:26:24 +01002610 .acpi_match_table = ACPI_PTR(sbsa_uart_acpi_match),
Andre Przywara0dd1e242015-05-21 17:26:23 +01002611 },
2612};
2613
Russell King2c39c9e2010-07-27 08:50:16 +01002614static struct amba_id pl011_ids[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002615 {
2616 .id = 0x00041011,
2617 .mask = 0x000fffff,
Alessandro Rubini5926a292009-06-04 17:43:04 +01002618 .data = &vendor_arm,
2619 },
2620 {
2621 .id = 0x00380802,
2622 .mask = 0x00ffffff,
2623 .data = &vendor_st,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002624 },
2625 { 0, 0 },
2626};
2627
Dave Martin60f7a332011-10-05 15:15:22 +01002628MODULE_DEVICE_TABLE(amba, pl011_ids);
2629
Linus Torvalds1da177e2005-04-16 15:20:36 -07002630static struct amba_driver pl011_driver = {
2631 .drv = {
2632 .name = "uart-pl011",
Ulf Hanssond0ce8502013-12-03 11:04:28 +01002633 .pm = &pl011_dev_pm_ops,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002634 },
2635 .id_table = pl011_ids,
2636 .probe = pl011_probe,
2637 .remove = pl011_remove,
2638};
2639
2640static int __init pl011_init(void)
2641{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002642 printk(KERN_INFO "Serial: AMBA PL011 UART driver\n");
2643
Andre Przywara0dd1e242015-05-21 17:26:23 +01002644 if (platform_driver_register(&arm_sbsa_uart_platform_driver))
2645 pr_warn("could not register SBSA UART platform driver\n");
Greg Kroah-Hartman062a68a2015-09-04 09:11:24 -07002646 return amba_driver_register(&pl011_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002647}
2648
2649static void __exit pl011_exit(void)
2650{
Andre Przywara0dd1e242015-05-21 17:26:23 +01002651 platform_driver_unregister(&arm_sbsa_uart_platform_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002652 amba_driver_unregister(&pl011_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002653}
2654
Alessandro Rubini4dd9e742009-05-05 05:54:13 +01002655/*
2656 * While this can be a module, if builtin it's most likely the console
2657 * So let's leave module_exit but move module_init to an earlier place
2658 */
2659arch_initcall(pl011_init);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002660module_exit(pl011_exit);
2661
2662MODULE_AUTHOR("ARM Ltd/Deep Blue Solutions Ltd");
2663MODULE_DESCRIPTION("ARM AMBA serial port driver");
2664MODULE_LICENSE("GPL");