blob: 357a8370ce2aeb2fd3cc6744cff624cb53b7e2fc [file] [log] [blame]
Laxman Dewangane9ea0962013-01-08 16:27:44 +05301/*
2 * serial_tegra.c
3 *
4 * High-speed serial driver for NVIDIA Tegra SoCs
5 *
6 * Copyright (c) 2012-2013, NVIDIA CORPORATION. All rights reserved.
7 *
8 * Author: Laxman Dewangan <ldewangan@nvidia.com>
9 *
10 * This program is free software; you can redistribute it and/or modify it
11 * under the terms and conditions of the GNU General Public License,
12 * version 2, as published by the Free Software Foundation.
13 *
14 * This program is distributed in the hope it will be useful, but WITHOUT
15 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
16 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
17 * more details.
18 *
19 * You should have received a copy of the GNU General Public License
20 * along with this program. If not, see <http://www.gnu.org/licenses/>.
21 */
22
23#include <linux/clk.h>
24#include <linux/debugfs.h>
25#include <linux/delay.h>
26#include <linux/dmaengine.h>
27#include <linux/dma-mapping.h>
28#include <linux/dmapool.h>
Sachin Kamat84e81922013-03-04 09:59:00 +053029#include <linux/err.h>
Laxman Dewangane9ea0962013-01-08 16:27:44 +053030#include <linux/io.h>
31#include <linux/irq.h>
32#include <linux/module.h>
33#include <linux/of.h>
34#include <linux/of_device.h>
35#include <linux/pagemap.h>
36#include <linux/platform_device.h>
37#include <linux/serial.h>
38#include <linux/serial_8250.h>
39#include <linux/serial_core.h>
40#include <linux/serial_reg.h>
41#include <linux/slab.h>
42#include <linux/string.h>
43#include <linux/termios.h>
44#include <linux/tty.h>
45#include <linux/tty_flip.h>
46
Venu Byravarasudbf5bef2013-01-23 12:52:13 +053047#include <linux/clk/tegra.h>
Laxman Dewangane9ea0962013-01-08 16:27:44 +053048
49#define TEGRA_UART_TYPE "TEGRA_UART"
50#define TX_EMPTY_STATUS (UART_LSR_TEMT | UART_LSR_THRE)
51#define BYTES_TO_ALIGN(x) ((unsigned long)(x) & 0x3)
52
53#define TEGRA_UART_RX_DMA_BUFFER_SIZE 4096
54#define TEGRA_UART_LSR_TXFIFO_FULL 0x100
55#define TEGRA_UART_IER_EORD 0x20
56#define TEGRA_UART_MCR_RTS_EN 0x40
57#define TEGRA_UART_MCR_CTS_EN 0x20
58#define TEGRA_UART_LSR_ANY (UART_LSR_OE | UART_LSR_BI | \
59 UART_LSR_PE | UART_LSR_FE)
60#define TEGRA_UART_IRDA_CSR 0x08
61#define TEGRA_UART_SIR_ENABLED 0x80
62
63#define TEGRA_UART_TX_PIO 1
64#define TEGRA_UART_TX_DMA 2
65#define TEGRA_UART_MIN_DMA 16
66#define TEGRA_UART_FIFO_SIZE 32
67
68/*
69 * Tx fifo trigger level setting in tegra uart is in
70 * reverse way then conventional uart.
71 */
72#define TEGRA_UART_TX_TRIG_16B 0x00
73#define TEGRA_UART_TX_TRIG_8B 0x10
74#define TEGRA_UART_TX_TRIG_4B 0x20
75#define TEGRA_UART_TX_TRIG_1B 0x30
76
77#define TEGRA_UART_MAXIMUM 5
78
79/* Default UART setting when started: 115200 no parity, stop, 8 data bits */
80#define TEGRA_UART_DEFAULT_BAUD 115200
81#define TEGRA_UART_DEFAULT_LSR UART_LCR_WLEN8
82
83/* Tx transfer mode */
84#define TEGRA_TX_PIO 1
85#define TEGRA_TX_DMA 2
86
87/**
88 * tegra_uart_chip_data: SOC specific data.
89 *
90 * @tx_fifo_full_status: Status flag available for checking tx fifo full.
91 * @allow_txfifo_reset_fifo_mode: allow_tx fifo reset with fifo mode or not.
92 * Tegra30 does not allow this.
93 * @support_clk_src_div: Clock source support the clock divider.
94 */
95struct tegra_uart_chip_data {
96 bool tx_fifo_full_status;
97 bool allow_txfifo_reset_fifo_mode;
98 bool support_clk_src_div;
99};
100
101struct tegra_uart_port {
102 struct uart_port uport;
103 const struct tegra_uart_chip_data *cdata;
104
105 struct clk *uart_clk;
106 unsigned int current_baud;
107
108 /* Register shadow */
109 unsigned long fcr_shadow;
110 unsigned long mcr_shadow;
111 unsigned long lcr_shadow;
112 unsigned long ier_shadow;
113 bool rts_active;
114
115 int tx_in_progress;
116 unsigned int tx_bytes;
117
118 bool enable_modem_interrupt;
119
120 bool rx_timeout;
121 int rx_in_progress;
122 int symb_bit;
123 int dma_req_sel;
124
125 struct dma_chan *rx_dma_chan;
126 struct dma_chan *tx_dma_chan;
127 dma_addr_t rx_dma_buf_phys;
128 dma_addr_t tx_dma_buf_phys;
129 unsigned char *rx_dma_buf_virt;
130 unsigned char *tx_dma_buf_virt;
131 struct dma_async_tx_descriptor *tx_dma_desc;
132 struct dma_async_tx_descriptor *rx_dma_desc;
133 dma_cookie_t tx_cookie;
134 dma_cookie_t rx_cookie;
135 int tx_bytes_requested;
136 int rx_bytes_requested;
137};
138
139static void tegra_uart_start_next_tx(struct tegra_uart_port *tup);
140static int tegra_uart_start_rx_dma(struct tegra_uart_port *tup);
141
142static inline unsigned long tegra_uart_read(struct tegra_uart_port *tup,
143 unsigned long reg)
144{
145 return readl(tup->uport.membase + (reg << tup->uport.regshift));
146}
147
148static inline void tegra_uart_write(struct tegra_uart_port *tup, unsigned val,
149 unsigned long reg)
150{
151 writel(val, tup->uport.membase + (reg << tup->uport.regshift));
152}
153
154static inline struct tegra_uart_port *to_tegra_uport(struct uart_port *u)
155{
156 return container_of(u, struct tegra_uart_port, uport);
157}
158
159static unsigned int tegra_uart_get_mctrl(struct uart_port *u)
160{
161 struct tegra_uart_port *tup = to_tegra_uport(u);
162
163 /*
164 * RI - Ring detector is active
165 * CD/DCD/CAR - Carrier detect is always active. For some reason
166 * linux has different names for carrier detect.
167 * DSR - Data Set ready is active as the hardware doesn't support it.
168 * Don't know if the linux support this yet?
169 * CTS - Clear to send. Always set to active, as the hardware handles
170 * CTS automatically.
171 */
172 if (tup->enable_modem_interrupt)
173 return TIOCM_RI | TIOCM_CD | TIOCM_DSR | TIOCM_CTS;
174 return TIOCM_CTS;
175}
176
177static void set_rts(struct tegra_uart_port *tup, bool active)
178{
179 unsigned long mcr;
180
181 mcr = tup->mcr_shadow;
182 if (active)
183 mcr |= TEGRA_UART_MCR_RTS_EN;
184 else
185 mcr &= ~TEGRA_UART_MCR_RTS_EN;
186 if (mcr != tup->mcr_shadow) {
187 tegra_uart_write(tup, mcr, UART_MCR);
188 tup->mcr_shadow = mcr;
189 }
190 return;
191}
192
193static void set_dtr(struct tegra_uart_port *tup, bool active)
194{
195 unsigned long mcr;
196
197 mcr = tup->mcr_shadow;
198 if (active)
199 mcr |= UART_MCR_DTR;
200 else
201 mcr &= ~UART_MCR_DTR;
202 if (mcr != tup->mcr_shadow) {
203 tegra_uart_write(tup, mcr, UART_MCR);
204 tup->mcr_shadow = mcr;
205 }
206 return;
207}
208
209static void tegra_uart_set_mctrl(struct uart_port *u, unsigned int mctrl)
210{
211 struct tegra_uart_port *tup = to_tegra_uport(u);
212 unsigned long mcr;
213 int dtr_enable;
214
215 mcr = tup->mcr_shadow;
216 tup->rts_active = !!(mctrl & TIOCM_RTS);
217 set_rts(tup, tup->rts_active);
218
219 dtr_enable = !!(mctrl & TIOCM_DTR);
220 set_dtr(tup, dtr_enable);
221 return;
222}
223
224static void tegra_uart_break_ctl(struct uart_port *u, int break_ctl)
225{
226 struct tegra_uart_port *tup = to_tegra_uport(u);
227 unsigned long lcr;
228
229 lcr = tup->lcr_shadow;
230 if (break_ctl)
231 lcr |= UART_LCR_SBC;
232 else
233 lcr &= ~UART_LCR_SBC;
234 tegra_uart_write(tup, lcr, UART_LCR);
235 tup->lcr_shadow = lcr;
236}
237
238/* Wait for a symbol-time. */
239static void tegra_uart_wait_sym_time(struct tegra_uart_port *tup,
240 unsigned int syms)
241{
242 if (tup->current_baud)
243 udelay(DIV_ROUND_UP(syms * tup->symb_bit * 1000000,
244 tup->current_baud));
245}
246
247static void tegra_uart_fifo_reset(struct tegra_uart_port *tup, u8 fcr_bits)
248{
249 unsigned long fcr = tup->fcr_shadow;
250
251 if (tup->cdata->allow_txfifo_reset_fifo_mode) {
252 fcr |= fcr_bits & (UART_FCR_CLEAR_RCVR | UART_FCR_CLEAR_XMIT);
253 tegra_uart_write(tup, fcr, UART_FCR);
254 } else {
255 fcr &= ~UART_FCR_ENABLE_FIFO;
256 tegra_uart_write(tup, fcr, UART_FCR);
257 udelay(60);
258 fcr |= fcr_bits & (UART_FCR_CLEAR_RCVR | UART_FCR_CLEAR_XMIT);
259 tegra_uart_write(tup, fcr, UART_FCR);
260 fcr |= UART_FCR_ENABLE_FIFO;
261 tegra_uart_write(tup, fcr, UART_FCR);
262 }
263
264 /* Dummy read to ensure the write is posted */
265 tegra_uart_read(tup, UART_SCR);
266
267 /* Wait for the flush to propagate. */
268 tegra_uart_wait_sym_time(tup, 1);
269}
270
271static int tegra_set_baudrate(struct tegra_uart_port *tup, unsigned int baud)
272{
273 unsigned long rate;
274 unsigned int divisor;
275 unsigned long lcr;
276 int ret;
277
278 if (tup->current_baud == baud)
279 return 0;
280
281 if (tup->cdata->support_clk_src_div) {
282 rate = baud * 16;
283 ret = clk_set_rate(tup->uart_clk, rate);
284 if (ret < 0) {
285 dev_err(tup->uport.dev,
286 "clk_set_rate() failed for rate %lu\n", rate);
287 return ret;
288 }
289 divisor = 1;
290 } else {
291 rate = clk_get_rate(tup->uart_clk);
292 divisor = DIV_ROUND_CLOSEST(rate, baud * 16);
293 }
294
295 lcr = tup->lcr_shadow;
296 lcr |= UART_LCR_DLAB;
297 tegra_uart_write(tup, lcr, UART_LCR);
298
299 tegra_uart_write(tup, divisor & 0xFF, UART_TX);
300 tegra_uart_write(tup, ((divisor >> 8) & 0xFF), UART_IER);
301
302 lcr &= ~UART_LCR_DLAB;
303 tegra_uart_write(tup, lcr, UART_LCR);
304
305 /* Dummy read to ensure the write is posted */
306 tegra_uart_read(tup, UART_SCR);
307
308 tup->current_baud = baud;
309
310 /* wait two character intervals at new rate */
311 tegra_uart_wait_sym_time(tup, 2);
312 return 0;
313}
314
315static char tegra_uart_decode_rx_error(struct tegra_uart_port *tup,
316 unsigned long lsr)
317{
318 char flag = TTY_NORMAL;
319
320 if (unlikely(lsr & TEGRA_UART_LSR_ANY)) {
321 if (lsr & UART_LSR_OE) {
322 /* Overrrun error */
323 flag |= TTY_OVERRUN;
324 tup->uport.icount.overrun++;
325 dev_err(tup->uport.dev, "Got overrun errors\n");
326 } else if (lsr & UART_LSR_PE) {
327 /* Parity error */
328 flag |= TTY_PARITY;
329 tup->uport.icount.parity++;
330 dev_err(tup->uport.dev, "Got Parity errors\n");
331 } else if (lsr & UART_LSR_FE) {
332 flag |= TTY_FRAME;
333 tup->uport.icount.frame++;
334 dev_err(tup->uport.dev, "Got frame errors\n");
335 } else if (lsr & UART_LSR_BI) {
336 dev_err(tup->uport.dev, "Got Break\n");
337 tup->uport.icount.brk++;
338 /* If FIFO read error without any data, reset Rx FIFO */
339 if (!(lsr & UART_LSR_DR) && (lsr & UART_LSR_FIFOE))
340 tegra_uart_fifo_reset(tup, UART_FCR_CLEAR_RCVR);
341 }
342 }
343 return flag;
344}
345
346static int tegra_uart_request_port(struct uart_port *u)
347{
348 return 0;
349}
350
351static void tegra_uart_release_port(struct uart_port *u)
352{
353 /* Nothing to do here */
354}
355
356static void tegra_uart_fill_tx_fifo(struct tegra_uart_port *tup, int max_bytes)
357{
358 struct circ_buf *xmit = &tup->uport.state->xmit;
359 int i;
360
361 for (i = 0; i < max_bytes; i++) {
362 BUG_ON(uart_circ_empty(xmit));
363 if (tup->cdata->tx_fifo_full_status) {
364 unsigned long lsr = tegra_uart_read(tup, UART_LSR);
365 if ((lsr & TEGRA_UART_LSR_TXFIFO_FULL))
366 break;
367 }
368 tegra_uart_write(tup, xmit->buf[xmit->tail], UART_TX);
369 xmit->tail = (xmit->tail + 1) & (UART_XMIT_SIZE - 1);
370 tup->uport.icount.tx++;
371 }
372}
373
374static void tegra_uart_start_pio_tx(struct tegra_uart_port *tup,
375 unsigned int bytes)
376{
377 if (bytes > TEGRA_UART_MIN_DMA)
378 bytes = TEGRA_UART_MIN_DMA;
379
380 tup->tx_in_progress = TEGRA_UART_TX_PIO;
381 tup->tx_bytes = bytes;
382 tup->ier_shadow |= UART_IER_THRI;
383 tegra_uart_write(tup, tup->ier_shadow, UART_IER);
384}
385
386static void tegra_uart_tx_dma_complete(void *args)
387{
388 struct tegra_uart_port *tup = args;
389 struct circ_buf *xmit = &tup->uport.state->xmit;
390 struct dma_tx_state state;
391 unsigned long flags;
392 int count;
393
394 dmaengine_tx_status(tup->tx_dma_chan, tup->rx_cookie, &state);
395 count = tup->tx_bytes_requested - state.residue;
396 async_tx_ack(tup->tx_dma_desc);
397 spin_lock_irqsave(&tup->uport.lock, flags);
398 xmit->tail = (xmit->tail + count) & (UART_XMIT_SIZE - 1);
399 tup->tx_in_progress = 0;
400 if (uart_circ_chars_pending(xmit) < WAKEUP_CHARS)
401 uart_write_wakeup(&tup->uport);
402 tegra_uart_start_next_tx(tup);
403 spin_unlock_irqrestore(&tup->uport.lock, flags);
404}
405
406static int tegra_uart_start_tx_dma(struct tegra_uart_port *tup,
407 unsigned long count)
408{
409 struct circ_buf *xmit = &tup->uport.state->xmit;
410 dma_addr_t tx_phys_addr;
411
412 dma_sync_single_for_device(tup->uport.dev, tup->tx_dma_buf_phys,
413 UART_XMIT_SIZE, DMA_TO_DEVICE);
414
415 tup->tx_bytes = count & ~(0xF);
416 tx_phys_addr = tup->tx_dma_buf_phys + xmit->tail;
417 tup->tx_dma_desc = dmaengine_prep_slave_single(tup->tx_dma_chan,
418 tx_phys_addr, tup->tx_bytes, DMA_MEM_TO_DEV,
419 DMA_PREP_INTERRUPT);
420 if (!tup->tx_dma_desc) {
421 dev_err(tup->uport.dev, "Not able to get desc for Tx\n");
422 return -EIO;
423 }
424
425 tup->tx_dma_desc->callback = tegra_uart_tx_dma_complete;
426 tup->tx_dma_desc->callback_param = tup;
427 tup->tx_in_progress = TEGRA_UART_TX_DMA;
428 tup->tx_bytes_requested = tup->tx_bytes;
429 tup->tx_cookie = dmaengine_submit(tup->tx_dma_desc);
430 dma_async_issue_pending(tup->tx_dma_chan);
431 return 0;
432}
433
434static void tegra_uart_start_next_tx(struct tegra_uart_port *tup)
435{
436 unsigned long tail;
437 unsigned long count;
438 struct circ_buf *xmit = &tup->uport.state->xmit;
439
440 tail = (unsigned long)&xmit->buf[xmit->tail];
441 count = CIRC_CNT_TO_END(xmit->head, xmit->tail, UART_XMIT_SIZE);
442 if (!count)
443 return;
444
445 if (count < TEGRA_UART_MIN_DMA)
446 tegra_uart_start_pio_tx(tup, count);
447 else if (BYTES_TO_ALIGN(tail) > 0)
448 tegra_uart_start_pio_tx(tup, BYTES_TO_ALIGN(tail));
449 else
450 tegra_uart_start_tx_dma(tup, count);
451}
452
453/* Called by serial core driver with u->lock taken. */
454static void tegra_uart_start_tx(struct uart_port *u)
455{
456 struct tegra_uart_port *tup = to_tegra_uport(u);
457 struct circ_buf *xmit = &u->state->xmit;
458
459 if (!uart_circ_empty(xmit) && !tup->tx_in_progress)
460 tegra_uart_start_next_tx(tup);
461}
462
463static unsigned int tegra_uart_tx_empty(struct uart_port *u)
464{
465 struct tegra_uart_port *tup = to_tegra_uport(u);
466 unsigned int ret = 0;
467 unsigned long flags;
468
469 spin_lock_irqsave(&u->lock, flags);
470 if (!tup->tx_in_progress) {
471 unsigned long lsr = tegra_uart_read(tup, UART_LSR);
472 if ((lsr & TX_EMPTY_STATUS) == TX_EMPTY_STATUS)
473 ret = TIOCSER_TEMT;
474 }
475 spin_unlock_irqrestore(&u->lock, flags);
476 return ret;
477}
478
479static void tegra_uart_stop_tx(struct uart_port *u)
480{
481 struct tegra_uart_port *tup = to_tegra_uport(u);
482 struct circ_buf *xmit = &tup->uport.state->xmit;
483 struct dma_tx_state state;
484 int count;
485
486 dmaengine_terminate_all(tup->tx_dma_chan);
487 dmaengine_tx_status(tup->tx_dma_chan, tup->tx_cookie, &state);
488 count = tup->tx_bytes_requested - state.residue;
489 async_tx_ack(tup->tx_dma_desc);
490 xmit->tail = (xmit->tail + count) & (UART_XMIT_SIZE - 1);
491 tup->tx_in_progress = 0;
492 return;
493}
494
495static void tegra_uart_handle_tx_pio(struct tegra_uart_port *tup)
496{
497 struct circ_buf *xmit = &tup->uport.state->xmit;
498
499 tegra_uart_fill_tx_fifo(tup, tup->tx_bytes);
500 tup->tx_in_progress = 0;
501 if (uart_circ_chars_pending(xmit) < WAKEUP_CHARS)
502 uart_write_wakeup(&tup->uport);
503 tegra_uart_start_next_tx(tup);
504 return;
505}
506
507static void tegra_uart_handle_rx_pio(struct tegra_uart_port *tup,
Thierry Reding962963e2013-01-17 14:31:45 +0100508 struct tty_port *tty)
Laxman Dewangane9ea0962013-01-08 16:27:44 +0530509{
510 do {
511 char flag = TTY_NORMAL;
512 unsigned long lsr = 0;
513 unsigned char ch;
514
515 lsr = tegra_uart_read(tup, UART_LSR);
516 if (!(lsr & UART_LSR_DR))
517 break;
518
519 flag = tegra_uart_decode_rx_error(tup, lsr);
520 ch = (unsigned char) tegra_uart_read(tup, UART_RX);
521 tup->uport.icount.rx++;
522
523 if (!uart_handle_sysrq_char(&tup->uport, ch) && tty)
524 tty_insert_flip_char(tty, ch, flag);
525 } while (1);
526
527 return;
528}
529
530static void tegra_uart_copy_rx_to_tty(struct tegra_uart_port *tup,
Thierry Reding962963e2013-01-17 14:31:45 +0100531 struct tty_port *tty, int count)
Laxman Dewangane9ea0962013-01-08 16:27:44 +0530532{
533 int copied;
534
535 tup->uport.icount.rx += count;
536 if (!tty) {
537 dev_err(tup->uport.dev, "No tty port\n");
538 return;
539 }
540 dma_sync_single_for_cpu(tup->uport.dev, tup->rx_dma_buf_phys,
541 TEGRA_UART_RX_DMA_BUFFER_SIZE, DMA_FROM_DEVICE);
542 copied = tty_insert_flip_string(tty,
543 ((unsigned char *)(tup->rx_dma_buf_virt)), count);
544 if (copied != count) {
545 WARN_ON(1);
546 dev_err(tup->uport.dev, "RxData copy to tty layer failed\n");
547 }
548 dma_sync_single_for_device(tup->uport.dev, tup->rx_dma_buf_phys,
549 TEGRA_UART_RX_DMA_BUFFER_SIZE, DMA_TO_DEVICE);
550}
551
552static void tegra_uart_rx_dma_complete(void *args)
553{
554 struct tegra_uart_port *tup = args;
555 struct uart_port *u = &tup->uport;
556 int count = tup->rx_bytes_requested;
557 struct tty_struct *tty = tty_port_tty_get(&tup->uport.state->port);
Thierry Reding962963e2013-01-17 14:31:45 +0100558 struct tty_port *port = &u->state->port;
Laxman Dewangane9ea0962013-01-08 16:27:44 +0530559 unsigned long flags;
560
561 async_tx_ack(tup->rx_dma_desc);
562 spin_lock_irqsave(&u->lock, flags);
563
564 /* Deactivate flow control to stop sender */
565 if (tup->rts_active)
566 set_rts(tup, false);
567
568 /* If we are here, DMA is stopped */
569 if (count)
Thierry Reding962963e2013-01-17 14:31:45 +0100570 tegra_uart_copy_rx_to_tty(tup, port, count);
Laxman Dewangane9ea0962013-01-08 16:27:44 +0530571
Thierry Reding962963e2013-01-17 14:31:45 +0100572 tegra_uart_handle_rx_pio(tup, port);
Laxman Dewangane9ea0962013-01-08 16:27:44 +0530573 if (tty) {
Thierry Reding962963e2013-01-17 14:31:45 +0100574 tty_flip_buffer_push(port);
Laxman Dewangane9ea0962013-01-08 16:27:44 +0530575 tty_kref_put(tty);
576 }
577 tegra_uart_start_rx_dma(tup);
578
579 /* Activate flow control to start transfer */
580 if (tup->rts_active)
581 set_rts(tup, true);
582
583 spin_unlock_irqrestore(&u->lock, flags);
584}
585
586static void tegra_uart_handle_rx_dma(struct tegra_uart_port *tup)
587{
588 struct dma_tx_state state;
589 struct tty_struct *tty = tty_port_tty_get(&tup->uport.state->port);
Thierry Reding962963e2013-01-17 14:31:45 +0100590 struct tty_port *port = &tup->uport.state->port;
Laxman Dewangane9ea0962013-01-08 16:27:44 +0530591 int count;
592
593 /* Deactivate flow control to stop sender */
594 if (tup->rts_active)
595 set_rts(tup, false);
596
597 dmaengine_terminate_all(tup->rx_dma_chan);
598 dmaengine_tx_status(tup->rx_dma_chan, tup->rx_cookie, &state);
599 count = tup->rx_bytes_requested - state.residue;
600
601 /* If we are here, DMA is stopped */
602 if (count)
Thierry Reding962963e2013-01-17 14:31:45 +0100603 tegra_uart_copy_rx_to_tty(tup, port, count);
Laxman Dewangane9ea0962013-01-08 16:27:44 +0530604
Thierry Reding962963e2013-01-17 14:31:45 +0100605 tegra_uart_handle_rx_pio(tup, port);
Laxman Dewangane9ea0962013-01-08 16:27:44 +0530606 if (tty) {
Thierry Reding962963e2013-01-17 14:31:45 +0100607 tty_flip_buffer_push(port);
Laxman Dewangane9ea0962013-01-08 16:27:44 +0530608 tty_kref_put(tty);
609 }
610 tegra_uart_start_rx_dma(tup);
611
612 if (tup->rts_active)
613 set_rts(tup, true);
614}
615
616static int tegra_uart_start_rx_dma(struct tegra_uart_port *tup)
617{
618 unsigned int count = TEGRA_UART_RX_DMA_BUFFER_SIZE;
619
620 tup->rx_dma_desc = dmaengine_prep_slave_single(tup->rx_dma_chan,
621 tup->rx_dma_buf_phys, count, DMA_DEV_TO_MEM,
622 DMA_PREP_INTERRUPT);
623 if (!tup->rx_dma_desc) {
624 dev_err(tup->uport.dev, "Not able to get desc for Rx\n");
625 return -EIO;
626 }
627
628 tup->rx_dma_desc->callback = tegra_uart_rx_dma_complete;
629 tup->rx_dma_desc->callback_param = tup;
630 dma_sync_single_for_device(tup->uport.dev, tup->rx_dma_buf_phys,
631 count, DMA_TO_DEVICE);
632 tup->rx_bytes_requested = count;
633 tup->rx_cookie = dmaengine_submit(tup->rx_dma_desc);
634 dma_async_issue_pending(tup->rx_dma_chan);
635 return 0;
636}
637
638static void tegra_uart_handle_modem_signal_change(struct uart_port *u)
639{
640 struct tegra_uart_port *tup = to_tegra_uport(u);
641 unsigned long msr;
642
643 msr = tegra_uart_read(tup, UART_MSR);
644 if (!(msr & UART_MSR_ANY_DELTA))
645 return;
646
647 if (msr & UART_MSR_TERI)
648 tup->uport.icount.rng++;
649 if (msr & UART_MSR_DDSR)
650 tup->uport.icount.dsr++;
651 /* We may only get DDCD when HW init and reset */
652 if (msr & UART_MSR_DDCD)
653 uart_handle_dcd_change(&tup->uport, msr & UART_MSR_DCD);
654 /* Will start/stop_tx accordingly */
655 if (msr & UART_MSR_DCTS)
656 uart_handle_cts_change(&tup->uport, msr & UART_MSR_CTS);
657 return;
658}
659
660static irqreturn_t tegra_uart_isr(int irq, void *data)
661{
662 struct tegra_uart_port *tup = data;
663 struct uart_port *u = &tup->uport;
664 unsigned long iir;
665 unsigned long ier;
666 bool is_rx_int = false;
667 unsigned long flags;
668
669 spin_lock_irqsave(&u->lock, flags);
670 while (1) {
671 iir = tegra_uart_read(tup, UART_IIR);
672 if (iir & UART_IIR_NO_INT) {
673 if (is_rx_int) {
674 tegra_uart_handle_rx_dma(tup);
675 if (tup->rx_in_progress) {
676 ier = tup->ier_shadow;
677 ier |= (UART_IER_RLSI | UART_IER_RTOIE |
678 TEGRA_UART_IER_EORD);
679 tup->ier_shadow = ier;
680 tegra_uart_write(tup, ier, UART_IER);
681 }
682 }
683 spin_unlock_irqrestore(&u->lock, flags);
684 return IRQ_HANDLED;
685 }
686
687 switch ((iir >> 1) & 0x7) {
688 case 0: /* Modem signal change interrupt */
689 tegra_uart_handle_modem_signal_change(u);
690 break;
691
692 case 1: /* Transmit interrupt only triggered when using PIO */
693 tup->ier_shadow &= ~UART_IER_THRI;
694 tegra_uart_write(tup, tup->ier_shadow, UART_IER);
695 tegra_uart_handle_tx_pio(tup);
696 break;
697
698 case 4: /* End of data */
699 case 6: /* Rx timeout */
700 case 2: /* Receive */
701 if (!is_rx_int) {
702 is_rx_int = true;
703 /* Disable Rx interrupts */
704 ier = tup->ier_shadow;
705 ier |= UART_IER_RDI;
706 tegra_uart_write(tup, ier, UART_IER);
707 ier &= ~(UART_IER_RDI | UART_IER_RLSI |
708 UART_IER_RTOIE | TEGRA_UART_IER_EORD);
709 tup->ier_shadow = ier;
710 tegra_uart_write(tup, ier, UART_IER);
711 }
712 break;
713
714 case 3: /* Receive error */
715 tegra_uart_decode_rx_error(tup,
716 tegra_uart_read(tup, UART_LSR));
717 break;
718
719 case 5: /* break nothing to handle */
720 case 7: /* break nothing to handle */
721 break;
722 }
723 }
724}
725
726static void tegra_uart_stop_rx(struct uart_port *u)
727{
728 struct tegra_uart_port *tup = to_tegra_uport(u);
Johan Hovold64dc8de2013-09-10 12:50:48 +0200729 struct tty_struct *tty;
Thierry Reding962963e2013-01-17 14:31:45 +0100730 struct tty_port *port = &u->state->port;
Laxman Dewangane9ea0962013-01-08 16:27:44 +0530731 struct dma_tx_state state;
732 unsigned long ier;
733 int count;
734
735 if (tup->rts_active)
736 set_rts(tup, false);
737
738 if (!tup->rx_in_progress)
739 return;
740
Johan Hovold64dc8de2013-09-10 12:50:48 +0200741 tty = tty_port_tty_get(&tup->uport.state->port);
742
Laxman Dewangane9ea0962013-01-08 16:27:44 +0530743 tegra_uart_wait_sym_time(tup, 1); /* wait a character interval */
744
745 ier = tup->ier_shadow;
746 ier &= ~(UART_IER_RDI | UART_IER_RLSI | UART_IER_RTOIE |
747 TEGRA_UART_IER_EORD);
748 tup->ier_shadow = ier;
749 tegra_uart_write(tup, ier, UART_IER);
750 tup->rx_in_progress = 0;
751 if (tup->rx_dma_chan) {
752 dmaengine_terminate_all(tup->rx_dma_chan);
753 dmaengine_tx_status(tup->rx_dma_chan, tup->rx_cookie, &state);
754 async_tx_ack(tup->rx_dma_desc);
755 count = tup->rx_bytes_requested - state.residue;
Thierry Reding962963e2013-01-17 14:31:45 +0100756 tegra_uart_copy_rx_to_tty(tup, port, count);
757 tegra_uart_handle_rx_pio(tup, port);
Laxman Dewangane9ea0962013-01-08 16:27:44 +0530758 } else {
Thierry Reding962963e2013-01-17 14:31:45 +0100759 tegra_uart_handle_rx_pio(tup, port);
Laxman Dewangane9ea0962013-01-08 16:27:44 +0530760 }
761 if (tty) {
Thierry Reding962963e2013-01-17 14:31:45 +0100762 tty_flip_buffer_push(port);
Laxman Dewangane9ea0962013-01-08 16:27:44 +0530763 tty_kref_put(tty);
764 }
765 return;
766}
767
768static void tegra_uart_hw_deinit(struct tegra_uart_port *tup)
769{
770 unsigned long flags;
771 unsigned long char_time = DIV_ROUND_UP(10000000, tup->current_baud);
772 unsigned long fifo_empty_time = tup->uport.fifosize * char_time;
773 unsigned long wait_time;
774 unsigned long lsr;
775 unsigned long msr;
776 unsigned long mcr;
777
778 /* Disable interrupts */
779 tegra_uart_write(tup, 0, UART_IER);
780
781 lsr = tegra_uart_read(tup, UART_LSR);
782 if ((lsr & UART_LSR_TEMT) != UART_LSR_TEMT) {
783 msr = tegra_uart_read(tup, UART_MSR);
784 mcr = tegra_uart_read(tup, UART_MCR);
785 if ((mcr & TEGRA_UART_MCR_CTS_EN) && (msr & UART_MSR_CTS))
786 dev_err(tup->uport.dev,
787 "Tx Fifo not empty, CTS disabled, waiting\n");
788
789 /* Wait for Tx fifo to be empty */
790 while ((lsr & UART_LSR_TEMT) != UART_LSR_TEMT) {
791 wait_time = min(fifo_empty_time, 100lu);
792 udelay(wait_time);
793 fifo_empty_time -= wait_time;
794 if (!fifo_empty_time) {
795 msr = tegra_uart_read(tup, UART_MSR);
796 mcr = tegra_uart_read(tup, UART_MCR);
797 if ((mcr & TEGRA_UART_MCR_CTS_EN) &&
798 (msr & UART_MSR_CTS))
799 dev_err(tup->uport.dev,
800 "Slave not ready\n");
801 break;
802 }
803 lsr = tegra_uart_read(tup, UART_LSR);
804 }
805 }
806
807 spin_lock_irqsave(&tup->uport.lock, flags);
808 /* Reset the Rx and Tx FIFOs */
809 tegra_uart_fifo_reset(tup, UART_FCR_CLEAR_XMIT | UART_FCR_CLEAR_RCVR);
810 tup->current_baud = 0;
811 spin_unlock_irqrestore(&tup->uport.lock, flags);
812
813 clk_disable_unprepare(tup->uart_clk);
814}
815
816static int tegra_uart_hw_init(struct tegra_uart_port *tup)
817{
818 int ret;
819
820 tup->fcr_shadow = 0;
821 tup->mcr_shadow = 0;
822 tup->lcr_shadow = 0;
823 tup->ier_shadow = 0;
824 tup->current_baud = 0;
825
826 clk_prepare_enable(tup->uart_clk);
827
828 /* Reset the UART controller to clear all previous status.*/
829 tegra_periph_reset_assert(tup->uart_clk);
830 udelay(10);
831 tegra_periph_reset_deassert(tup->uart_clk);
832
833 tup->rx_in_progress = 0;
834 tup->tx_in_progress = 0;
835
836 /*
837 * Set the trigger level
838 *
839 * For PIO mode:
840 *
841 * For receive, this will interrupt the CPU after that many number of
842 * bytes are received, for the remaining bytes the receive timeout
843 * interrupt is received. Rx high watermark is set to 4.
844 *
845 * For transmit, if the trasnmit interrupt is enabled, this will
846 * interrupt the CPU when the number of entries in the FIFO reaches the
847 * low watermark. Tx low watermark is set to 16 bytes.
848 *
849 * For DMA mode:
850 *
851 * Set the Tx trigger to 16. This should match the DMA burst size that
852 * programmed in the DMA registers.
853 */
854 tup->fcr_shadow = UART_FCR_ENABLE_FIFO;
855 tup->fcr_shadow |= UART_FCR_R_TRIG_01;
856 tup->fcr_shadow |= TEGRA_UART_TX_TRIG_16B;
857 tegra_uart_write(tup, tup->fcr_shadow, UART_FCR);
858
859 /*
860 * Initialize the UART with default configuration
861 * (115200, N, 8, 1) so that the receive DMA buffer may be
862 * enqueued
863 */
864 tup->lcr_shadow = TEGRA_UART_DEFAULT_LSR;
865 tegra_set_baudrate(tup, TEGRA_UART_DEFAULT_BAUD);
866 tup->fcr_shadow |= UART_FCR_DMA_SELECT;
867 tegra_uart_write(tup, tup->fcr_shadow, UART_FCR);
868
869 ret = tegra_uart_start_rx_dma(tup);
870 if (ret < 0) {
871 dev_err(tup->uport.dev, "Not able to start Rx DMA\n");
872 return ret;
873 }
874 tup->rx_in_progress = 1;
875
876 /*
877 * Enable IE_RXS for the receive status interrupts like line errros.
878 * Enable IE_RX_TIMEOUT to get the bytes which cannot be DMA'd.
879 *
880 * If using DMA mode, enable EORD instead of receive interrupt which
881 * will interrupt after the UART is done with the receive instead of
882 * the interrupt when the FIFO "threshold" is reached.
883 *
884 * EORD is different interrupt than RX_TIMEOUT - RX_TIMEOUT occurs when
885 * the DATA is sitting in the FIFO and couldn't be transferred to the
886 * DMA as the DMA size alignment(4 bytes) is not met. EORD will be
887 * triggered when there is a pause of the incomming data stream for 4
888 * characters long.
889 *
890 * For pauses in the data which is not aligned to 4 bytes, we get
891 * both the EORD as well as RX_TIMEOUT - SW sees RX_TIMEOUT first
892 * then the EORD.
893 */
894 tup->ier_shadow = UART_IER_RLSI | UART_IER_RTOIE | TEGRA_UART_IER_EORD;
895 tegra_uart_write(tup, tup->ier_shadow, UART_IER);
896 return 0;
897}
898
899static int tegra_uart_dma_channel_allocate(struct tegra_uart_port *tup,
900 bool dma_to_memory)
901{
902 struct dma_chan *dma_chan;
903 unsigned char *dma_buf;
904 dma_addr_t dma_phys;
905 int ret;
906 struct dma_slave_config dma_sconfig;
907 dma_cap_mask_t mask;
908
909 dma_cap_zero(mask);
910 dma_cap_set(DMA_SLAVE, mask);
911 dma_chan = dma_request_channel(mask, NULL, NULL);
912 if (!dma_chan) {
913 dev_err(tup->uport.dev,
914 "Dma channel is not available, will try later\n");
915 return -EPROBE_DEFER;
916 }
917
918 if (dma_to_memory) {
919 dma_buf = dma_alloc_coherent(tup->uport.dev,
920 TEGRA_UART_RX_DMA_BUFFER_SIZE,
921 &dma_phys, GFP_KERNEL);
922 if (!dma_buf) {
923 dev_err(tup->uport.dev,
924 "Not able to allocate the dma buffer\n");
925 dma_release_channel(dma_chan);
926 return -ENOMEM;
927 }
928 } else {
929 dma_phys = dma_map_single(tup->uport.dev,
930 tup->uport.state->xmit.buf, UART_XMIT_SIZE,
931 DMA_TO_DEVICE);
932 dma_buf = tup->uport.state->xmit.buf;
933 }
934
935 dma_sconfig.slave_id = tup->dma_req_sel;
936 if (dma_to_memory) {
937 dma_sconfig.src_addr = tup->uport.mapbase;
938 dma_sconfig.src_addr_width = DMA_SLAVE_BUSWIDTH_1_BYTE;
939 dma_sconfig.src_maxburst = 4;
940 } else {
941 dma_sconfig.dst_addr = tup->uport.mapbase;
942 dma_sconfig.dst_addr_width = DMA_SLAVE_BUSWIDTH_1_BYTE;
943 dma_sconfig.dst_maxburst = 16;
944 }
945
946 ret = dmaengine_slave_config(dma_chan, &dma_sconfig);
947 if (ret < 0) {
948 dev_err(tup->uport.dev,
949 "Dma slave config failed, err = %d\n", ret);
950 goto scrub;
951 }
952
953 if (dma_to_memory) {
954 tup->rx_dma_chan = dma_chan;
955 tup->rx_dma_buf_virt = dma_buf;
956 tup->rx_dma_buf_phys = dma_phys;
957 } else {
958 tup->tx_dma_chan = dma_chan;
959 tup->tx_dma_buf_virt = dma_buf;
960 tup->tx_dma_buf_phys = dma_phys;
961 }
962 return 0;
963
964scrub:
965 dma_release_channel(dma_chan);
966 return ret;
967}
968
969static void tegra_uart_dma_channel_free(struct tegra_uart_port *tup,
970 bool dma_to_memory)
971{
972 struct dma_chan *dma_chan;
973
974 if (dma_to_memory) {
975 dma_free_coherent(tup->uport.dev, TEGRA_UART_RX_DMA_BUFFER_SIZE,
976 tup->rx_dma_buf_virt, tup->rx_dma_buf_phys);
977 dma_chan = tup->rx_dma_chan;
978 tup->rx_dma_chan = NULL;
979 tup->rx_dma_buf_phys = 0;
980 tup->rx_dma_buf_virt = NULL;
981 } else {
982 dma_unmap_single(tup->uport.dev, tup->tx_dma_buf_phys,
983 UART_XMIT_SIZE, DMA_TO_DEVICE);
984 dma_chan = tup->tx_dma_chan;
985 tup->tx_dma_chan = NULL;
986 tup->tx_dma_buf_phys = 0;
987 tup->tx_dma_buf_virt = NULL;
988 }
989 dma_release_channel(dma_chan);
990}
991
992static int tegra_uart_startup(struct uart_port *u)
993{
994 struct tegra_uart_port *tup = to_tegra_uport(u);
995 int ret;
996
997 ret = tegra_uart_dma_channel_allocate(tup, false);
998 if (ret < 0) {
999 dev_err(u->dev, "Tx Dma allocation failed, err = %d\n", ret);
1000 return ret;
1001 }
1002
1003 ret = tegra_uart_dma_channel_allocate(tup, true);
1004 if (ret < 0) {
1005 dev_err(u->dev, "Rx Dma allocation failed, err = %d\n", ret);
1006 goto fail_rx_dma;
1007 }
1008
1009 ret = tegra_uart_hw_init(tup);
1010 if (ret < 0) {
1011 dev_err(u->dev, "Uart HW init failed, err = %d\n", ret);
1012 goto fail_hw_init;
1013 }
1014
1015 ret = request_irq(u->irq, tegra_uart_isr, IRQF_DISABLED,
1016 dev_name(u->dev), tup);
1017 if (ret < 0) {
1018 dev_err(u->dev, "Failed to register ISR for IRQ %d\n", u->irq);
1019 goto fail_hw_init;
1020 }
1021 return 0;
1022
1023fail_hw_init:
1024 tegra_uart_dma_channel_free(tup, true);
1025fail_rx_dma:
1026 tegra_uart_dma_channel_free(tup, false);
1027 return ret;
1028}
1029
1030static void tegra_uart_shutdown(struct uart_port *u)
1031{
1032 struct tegra_uart_port *tup = to_tegra_uport(u);
1033
1034 tegra_uart_hw_deinit(tup);
1035
1036 tup->rx_in_progress = 0;
1037 tup->tx_in_progress = 0;
1038
1039 tegra_uart_dma_channel_free(tup, true);
1040 tegra_uart_dma_channel_free(tup, false);
1041 free_irq(u->irq, tup);
1042}
1043
1044static void tegra_uart_enable_ms(struct uart_port *u)
1045{
1046 struct tegra_uart_port *tup = to_tegra_uport(u);
1047
1048 if (tup->enable_modem_interrupt) {
1049 tup->ier_shadow |= UART_IER_MSI;
1050 tegra_uart_write(tup, tup->ier_shadow, UART_IER);
1051 }
1052}
1053
1054static void tegra_uart_set_termios(struct uart_port *u,
1055 struct ktermios *termios, struct ktermios *oldtermios)
1056{
1057 struct tegra_uart_port *tup = to_tegra_uport(u);
1058 unsigned int baud;
1059 unsigned long flags;
1060 unsigned int lcr;
1061 int symb_bit = 1;
1062 struct clk *parent_clk = clk_get_parent(tup->uart_clk);
1063 unsigned long parent_clk_rate = clk_get_rate(parent_clk);
1064 int max_divider = (tup->cdata->support_clk_src_div) ? 0x7FFF : 0xFFFF;
1065
1066 max_divider *= 16;
1067 spin_lock_irqsave(&u->lock, flags);
1068
1069 /* Changing configuration, it is safe to stop any rx now */
1070 if (tup->rts_active)
1071 set_rts(tup, false);
1072
1073 /* Clear all interrupts as configuration is going to be change */
1074 tegra_uart_write(tup, tup->ier_shadow | UART_IER_RDI, UART_IER);
1075 tegra_uart_read(tup, UART_IER);
1076 tegra_uart_write(tup, 0, UART_IER);
1077 tegra_uart_read(tup, UART_IER);
1078
1079 /* Parity */
1080 lcr = tup->lcr_shadow;
1081 lcr &= ~UART_LCR_PARITY;
1082
1083 /* CMSPAR isn't supported by this driver */
1084 termios->c_cflag &= ~CMSPAR;
1085
1086 if ((termios->c_cflag & PARENB) == PARENB) {
1087 symb_bit++;
1088 if (termios->c_cflag & PARODD) {
1089 lcr |= UART_LCR_PARITY;
1090 lcr &= ~UART_LCR_EPAR;
1091 lcr &= ~UART_LCR_SPAR;
1092 } else {
1093 lcr |= UART_LCR_PARITY;
1094 lcr |= UART_LCR_EPAR;
1095 lcr &= ~UART_LCR_SPAR;
1096 }
1097 }
1098
1099 lcr &= ~UART_LCR_WLEN8;
1100 switch (termios->c_cflag & CSIZE) {
1101 case CS5:
1102 lcr |= UART_LCR_WLEN5;
1103 symb_bit += 5;
1104 break;
1105 case CS6:
1106 lcr |= UART_LCR_WLEN6;
1107 symb_bit += 6;
1108 break;
1109 case CS7:
1110 lcr |= UART_LCR_WLEN7;
1111 symb_bit += 7;
1112 break;
1113 default:
1114 lcr |= UART_LCR_WLEN8;
1115 symb_bit += 8;
1116 break;
1117 }
1118
1119 /* Stop bits */
1120 if (termios->c_cflag & CSTOPB) {
1121 lcr |= UART_LCR_STOP;
1122 symb_bit += 2;
1123 } else {
1124 lcr &= ~UART_LCR_STOP;
1125 symb_bit++;
1126 }
1127
1128 tegra_uart_write(tup, lcr, UART_LCR);
1129 tup->lcr_shadow = lcr;
1130 tup->symb_bit = symb_bit;
1131
1132 /* Baud rate. */
1133 baud = uart_get_baud_rate(u, termios, oldtermios,
1134 parent_clk_rate/max_divider,
1135 parent_clk_rate/16);
1136 spin_unlock_irqrestore(&u->lock, flags);
1137 tegra_set_baudrate(tup, baud);
1138 if (tty_termios_baud_rate(termios))
1139 tty_termios_encode_baud_rate(termios, baud, baud);
1140 spin_lock_irqsave(&u->lock, flags);
1141
1142 /* Flow control */
1143 if (termios->c_cflag & CRTSCTS) {
1144 tup->mcr_shadow |= TEGRA_UART_MCR_CTS_EN;
1145 tup->mcr_shadow &= ~TEGRA_UART_MCR_RTS_EN;
1146 tegra_uart_write(tup, tup->mcr_shadow, UART_MCR);
1147 /* if top layer has asked to set rts active then do so here */
1148 if (tup->rts_active)
1149 set_rts(tup, true);
1150 } else {
1151 tup->mcr_shadow &= ~TEGRA_UART_MCR_CTS_EN;
1152 tup->mcr_shadow &= ~TEGRA_UART_MCR_RTS_EN;
1153 tegra_uart_write(tup, tup->mcr_shadow, UART_MCR);
1154 }
1155
1156 /* update the port timeout based on new settings */
1157 uart_update_timeout(u, termios->c_cflag, baud);
1158
1159 /* Make sure all write has completed */
1160 tegra_uart_read(tup, UART_IER);
1161
1162 /* Reenable interrupt */
1163 tegra_uart_write(tup, tup->ier_shadow, UART_IER);
1164 tegra_uart_read(tup, UART_IER);
1165
1166 spin_unlock_irqrestore(&u->lock, flags);
1167 return;
1168}
1169
1170/*
1171 * Flush any TX data submitted for DMA and PIO. Called when the
1172 * TX circular buffer is reset.
1173 */
1174static void tegra_uart_flush_buffer(struct uart_port *u)
1175{
1176 struct tegra_uart_port *tup = to_tegra_uport(u);
1177
1178 tup->tx_bytes = 0;
1179 if (tup->tx_dma_chan)
1180 dmaengine_terminate_all(tup->tx_dma_chan);
1181 return;
1182}
1183
1184static const char *tegra_uart_type(struct uart_port *u)
1185{
1186 return TEGRA_UART_TYPE;
1187}
1188
1189static struct uart_ops tegra_uart_ops = {
1190 .tx_empty = tegra_uart_tx_empty,
1191 .set_mctrl = tegra_uart_set_mctrl,
1192 .get_mctrl = tegra_uart_get_mctrl,
1193 .stop_tx = tegra_uart_stop_tx,
1194 .start_tx = tegra_uart_start_tx,
1195 .stop_rx = tegra_uart_stop_rx,
1196 .flush_buffer = tegra_uart_flush_buffer,
1197 .enable_ms = tegra_uart_enable_ms,
1198 .break_ctl = tegra_uart_break_ctl,
1199 .startup = tegra_uart_startup,
1200 .shutdown = tegra_uart_shutdown,
1201 .set_termios = tegra_uart_set_termios,
1202 .type = tegra_uart_type,
1203 .request_port = tegra_uart_request_port,
1204 .release_port = tegra_uart_release_port,
1205};
1206
1207static struct uart_driver tegra_uart_driver = {
1208 .owner = THIS_MODULE,
1209 .driver_name = "tegra_hsuart",
1210 .dev_name = "ttyTHS",
1211 .cons = 0,
1212 .nr = TEGRA_UART_MAXIMUM,
1213};
1214
1215static int tegra_uart_parse_dt(struct platform_device *pdev,
1216 struct tegra_uart_port *tup)
1217{
1218 struct device_node *np = pdev->dev.of_node;
1219 u32 of_dma[2];
1220 int port;
1221
1222 if (of_property_read_u32_array(np, "nvidia,dma-request-selector",
1223 of_dma, 2) >= 0) {
1224 tup->dma_req_sel = of_dma[1];
1225 } else {
1226 dev_err(&pdev->dev, "missing dma requestor in device tree\n");
1227 return -EINVAL;
1228 }
1229
1230 port = of_alias_get_id(np, "serial");
1231 if (port < 0) {
1232 dev_err(&pdev->dev, "failed to get alias id, errno %d\n", port);
1233 return port;
1234 }
1235 tup->uport.line = port;
1236
1237 tup->enable_modem_interrupt = of_property_read_bool(np,
1238 "nvidia,enable-modem-interrupt");
1239 return 0;
1240}
1241
1242struct tegra_uart_chip_data tegra20_uart_chip_data = {
1243 .tx_fifo_full_status = false,
1244 .allow_txfifo_reset_fifo_mode = true,
1245 .support_clk_src_div = false,
1246};
1247
1248struct tegra_uart_chip_data tegra30_uart_chip_data = {
1249 .tx_fifo_full_status = true,
1250 .allow_txfifo_reset_fifo_mode = false,
1251 .support_clk_src_div = true,
1252};
1253
1254static struct of_device_id tegra_uart_of_match[] = {
1255 {
1256 .compatible = "nvidia,tegra30-hsuart",
1257 .data = &tegra30_uart_chip_data,
1258 }, {
1259 .compatible = "nvidia,tegra20-hsuart",
1260 .data = &tegra20_uart_chip_data,
1261 }, {
1262 },
1263};
1264MODULE_DEVICE_TABLE(of, tegra_uart_of_match);
1265
1266static int tegra_uart_probe(struct platform_device *pdev)
1267{
1268 struct tegra_uart_port *tup;
1269 struct uart_port *u;
1270 struct resource *resource;
1271 int ret;
1272 const struct tegra_uart_chip_data *cdata;
1273 const struct of_device_id *match;
1274
Stephen Warrenc3e1bec2013-02-15 15:04:45 -07001275 match = of_match_device(tegra_uart_of_match, &pdev->dev);
Laxman Dewangane9ea0962013-01-08 16:27:44 +05301276 if (!match) {
1277 dev_err(&pdev->dev, "Error: No device match found\n");
1278 return -ENODEV;
1279 }
1280 cdata = match->data;
1281
1282 tup = devm_kzalloc(&pdev->dev, sizeof(*tup), GFP_KERNEL);
1283 if (!tup) {
1284 dev_err(&pdev->dev, "Failed to allocate memory for tup\n");
1285 return -ENOMEM;
1286 }
1287
1288 ret = tegra_uart_parse_dt(pdev, tup);
1289 if (ret < 0)
1290 return ret;
1291
1292 u = &tup->uport;
1293 u->dev = &pdev->dev;
1294 u->ops = &tegra_uart_ops;
1295 u->type = PORT_TEGRA;
1296 u->fifosize = 32;
1297 tup->cdata = cdata;
1298
1299 platform_set_drvdata(pdev, tup);
1300 resource = platform_get_resource(pdev, IORESOURCE_MEM, 0);
1301 if (!resource) {
1302 dev_err(&pdev->dev, "No IO memory resource\n");
1303 return -ENODEV;
1304 }
1305
1306 u->mapbase = resource->start;
Sachin Kamat84e81922013-03-04 09:59:00 +05301307 u->membase = devm_ioremap_resource(&pdev->dev, resource);
1308 if (IS_ERR(u->membase))
1309 return PTR_ERR(u->membase);
Laxman Dewangane9ea0962013-01-08 16:27:44 +05301310
1311 tup->uart_clk = devm_clk_get(&pdev->dev, NULL);
1312 if (IS_ERR(tup->uart_clk)) {
1313 dev_err(&pdev->dev, "Couldn't get the clock\n");
1314 return PTR_ERR(tup->uart_clk);
1315 }
1316
1317 u->iotype = UPIO_MEM32;
1318 u->irq = platform_get_irq(pdev, 0);
1319 u->regshift = 2;
1320 ret = uart_add_one_port(&tegra_uart_driver, u);
1321 if (ret < 0) {
1322 dev_err(&pdev->dev, "Failed to add uart port, err %d\n", ret);
1323 return ret;
1324 }
1325 return ret;
1326}
1327
1328static int tegra_uart_remove(struct platform_device *pdev)
1329{
1330 struct tegra_uart_port *tup = platform_get_drvdata(pdev);
1331 struct uart_port *u = &tup->uport;
1332
1333 uart_remove_one_port(&tegra_uart_driver, u);
1334 return 0;
1335}
1336
1337#ifdef CONFIG_PM_SLEEP
1338static int tegra_uart_suspend(struct device *dev)
1339{
1340 struct tegra_uart_port *tup = dev_get_drvdata(dev);
1341 struct uart_port *u = &tup->uport;
1342
1343 return uart_suspend_port(&tegra_uart_driver, u);
1344}
1345
1346static int tegra_uart_resume(struct device *dev)
1347{
1348 struct tegra_uart_port *tup = dev_get_drvdata(dev);
1349 struct uart_port *u = &tup->uport;
1350
1351 return uart_resume_port(&tegra_uart_driver, u);
1352}
1353#endif
1354
1355static const struct dev_pm_ops tegra_uart_pm_ops = {
1356 SET_SYSTEM_SLEEP_PM_OPS(tegra_uart_suspend, tegra_uart_resume)
1357};
1358
1359static struct platform_driver tegra_uart_platform_driver = {
1360 .probe = tegra_uart_probe,
1361 .remove = tegra_uart_remove,
1362 .driver = {
1363 .name = "serial-tegra",
Stephen Warrenc3e1bec2013-02-15 15:04:45 -07001364 .of_match_table = tegra_uart_of_match,
Laxman Dewangane9ea0962013-01-08 16:27:44 +05301365 .pm = &tegra_uart_pm_ops,
1366 },
1367};
1368
1369static int __init tegra_uart_init(void)
1370{
1371 int ret;
1372
1373 ret = uart_register_driver(&tegra_uart_driver);
1374 if (ret < 0) {
1375 pr_err("Could not register %s driver\n",
1376 tegra_uart_driver.driver_name);
1377 return ret;
1378 }
1379
1380 ret = platform_driver_register(&tegra_uart_platform_driver);
1381 if (ret < 0) {
1382 pr_err("Uart platfrom driver register failed, e = %d\n", ret);
1383 uart_unregister_driver(&tegra_uart_driver);
1384 return ret;
1385 }
1386 return 0;
1387}
1388
1389static void __exit tegra_uart_exit(void)
1390{
1391 pr_info("Unloading tegra uart driver\n");
1392 platform_driver_unregister(&tegra_uart_platform_driver);
1393 uart_unregister_driver(&tegra_uart_driver);
1394}
1395
1396module_init(tegra_uart_init);
1397module_exit(tegra_uart_exit);
1398
1399MODULE_ALIAS("platform:serial-tegra");
1400MODULE_DESCRIPTION("High speed UART driver for tegra chipset");
1401MODULE_AUTHOR("Laxman Dewangan <ldewangan@nvidia.com>");
1402MODULE_LICENSE("GPL v2");