4 * High-speed serial driver for NVIDIA Tegra SoCs
6 * Copyright (c) 2012-2013, NVIDIA CORPORATION. All rights reserved.
8 * Author: Laxman Dewangan <ldewangan@nvidia.com>
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.
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
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/>.
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>
29 #include <linux/err.h>
31 #include <linux/irq.h>
32 #include <linux/module.h>
34 #include <linux/of_device.h>
35 #include <linux/pagemap.h>
36 #include <linux/platform_device.h>
37 #include <linux/reset.h>
38 #include <linux/serial.h>
39 #include <linux/serial_8250.h>
40 #include <linux/serial_core.h>
41 #include <linux/serial_reg.h>
42 #include <linux/slab.h>
43 #include <linux/string.h>
44 #include <linux/termios.h>
45 #include <linux/tty.h>
46 #include <linux/tty_flip.h>
48 #define TEGRA_UART_TYPE "TEGRA_UART"
49 #define TX_EMPTY_STATUS (UART_LSR_TEMT | UART_LSR_THRE)
50 #define BYTES_TO_ALIGN(x) ((unsigned long)(x) & 0x3)
52 #define TEGRA_UART_RX_DMA_BUFFER_SIZE 4096
53 #define TEGRA_UART_LSR_TXFIFO_FULL 0x100
54 #define TEGRA_UART_IER_EORD 0x20
55 #define TEGRA_UART_MCR_RTS_EN 0x40
56 #define TEGRA_UART_MCR_CTS_EN 0x20
57 #define TEGRA_UART_LSR_ANY (UART_LSR_OE | UART_LSR_BI | \
58 UART_LSR_PE | UART_LSR_FE)
59 #define TEGRA_UART_IRDA_CSR 0x08
60 #define TEGRA_UART_SIR_ENABLED 0x80
62 #define TEGRA_UART_TX_PIO 1
63 #define TEGRA_UART_TX_DMA 2
64 #define TEGRA_UART_MIN_DMA 16
65 #define TEGRA_UART_FIFO_SIZE 32
68 * Tx fifo trigger level setting in tegra uart is in
69 * reverse way then conventional uart.
71 #define TEGRA_UART_TX_TRIG_16B 0x00
72 #define TEGRA_UART_TX_TRIG_8B 0x10
73 #define TEGRA_UART_TX_TRIG_4B 0x20
74 #define TEGRA_UART_TX_TRIG_1B 0x30
76 #define TEGRA_UART_MAXIMUM 5
78 /* Default UART setting when started: 115200 no parity, stop, 8 data bits */
79 #define TEGRA_UART_DEFAULT_BAUD 115200
80 #define TEGRA_UART_DEFAULT_LSR UART_LCR_WLEN8
82 /* Tx transfer mode */
83 #define TEGRA_TX_PIO 1
84 #define TEGRA_TX_DMA 2
87 * tegra_uart_chip_data: SOC specific data.
89 * @tx_fifo_full_status: Status flag available for checking tx fifo full.
90 * @allow_txfifo_reset_fifo_mode: allow_tx fifo reset with fifo mode or not.
91 * Tegra30 does not allow this.
92 * @support_clk_src_div: Clock source support the clock divider.
94 struct tegra_uart_chip_data
{
95 bool tx_fifo_full_status
;
96 bool allow_txfifo_reset_fifo_mode
;
97 bool support_clk_src_div
;
100 struct tegra_uart_port
{
101 struct uart_port uport
;
102 const struct tegra_uart_chip_data
*cdata
;
104 struct clk
*uart_clk
;
105 struct reset_control
*rst
;
106 unsigned int current_baud
;
108 /* Register shadow */
109 unsigned long fcr_shadow
;
110 unsigned long mcr_shadow
;
111 unsigned long lcr_shadow
;
112 unsigned long ier_shadow
;
116 unsigned int tx_bytes
;
118 bool enable_modem_interrupt
;
124 struct dma_chan
*rx_dma_chan
;
125 struct dma_chan
*tx_dma_chan
;
126 dma_addr_t rx_dma_buf_phys
;
127 dma_addr_t tx_dma_buf_phys
;
128 unsigned char *rx_dma_buf_virt
;
129 unsigned char *tx_dma_buf_virt
;
130 struct dma_async_tx_descriptor
*tx_dma_desc
;
131 struct dma_async_tx_descriptor
*rx_dma_desc
;
132 dma_cookie_t tx_cookie
;
133 dma_cookie_t rx_cookie
;
134 unsigned int tx_bytes_requested
;
135 unsigned int rx_bytes_requested
;
138 static void tegra_uart_start_next_tx(struct tegra_uart_port
*tup
);
139 static int tegra_uart_start_rx_dma(struct tegra_uart_port
*tup
);
141 static inline unsigned long tegra_uart_read(struct tegra_uart_port
*tup
,
144 return readl(tup
->uport
.membase
+ (reg
<< tup
->uport
.regshift
));
147 static inline void tegra_uart_write(struct tegra_uart_port
*tup
, unsigned val
,
150 writel(val
, tup
->uport
.membase
+ (reg
<< tup
->uport
.regshift
));
153 static inline struct tegra_uart_port
*to_tegra_uport(struct uart_port
*u
)
155 return container_of(u
, struct tegra_uart_port
, uport
);
158 static unsigned int tegra_uart_get_mctrl(struct uart_port
*u
)
160 struct tegra_uart_port
*tup
= to_tegra_uport(u
);
163 * RI - Ring detector is active
164 * CD/DCD/CAR - Carrier detect is always active. For some reason
165 * linux has different names for carrier detect.
166 * DSR - Data Set ready is active as the hardware doesn't support it.
167 * Don't know if the linux support this yet?
168 * CTS - Clear to send. Always set to active, as the hardware handles
171 if (tup
->enable_modem_interrupt
)
172 return TIOCM_RI
| TIOCM_CD
| TIOCM_DSR
| TIOCM_CTS
;
176 static void set_rts(struct tegra_uart_port
*tup
, bool active
)
180 mcr
= tup
->mcr_shadow
;
182 mcr
|= TEGRA_UART_MCR_RTS_EN
;
184 mcr
&= ~TEGRA_UART_MCR_RTS_EN
;
185 if (mcr
!= tup
->mcr_shadow
) {
186 tegra_uart_write(tup
, mcr
, UART_MCR
);
187 tup
->mcr_shadow
= mcr
;
191 static void set_dtr(struct tegra_uart_port
*tup
, bool active
)
195 mcr
= tup
->mcr_shadow
;
199 mcr
&= ~UART_MCR_DTR
;
200 if (mcr
!= tup
->mcr_shadow
) {
201 tegra_uart_write(tup
, mcr
, UART_MCR
);
202 tup
->mcr_shadow
= mcr
;
206 static void tegra_uart_set_mctrl(struct uart_port
*u
, unsigned int mctrl
)
208 struct tegra_uart_port
*tup
= to_tegra_uport(u
);
211 tup
->rts_active
= !!(mctrl
& TIOCM_RTS
);
212 set_rts(tup
, tup
->rts_active
);
214 dtr_enable
= !!(mctrl
& TIOCM_DTR
);
215 set_dtr(tup
, dtr_enable
);
218 static void tegra_uart_break_ctl(struct uart_port
*u
, int break_ctl
)
220 struct tegra_uart_port
*tup
= to_tegra_uport(u
);
223 lcr
= tup
->lcr_shadow
;
227 lcr
&= ~UART_LCR_SBC
;
228 tegra_uart_write(tup
, lcr
, UART_LCR
);
229 tup
->lcr_shadow
= lcr
;
233 * tegra_uart_wait_cycle_time: Wait for N UART clock periods
235 * @tup: Tegra serial port data structure.
236 * @cycles: Number of clock periods to wait.
238 * Tegra UARTs are clocked at 16X the baud/bit rate and hence the UART
239 * clock speed is 16X the current baud rate.
241 static void tegra_uart_wait_cycle_time(struct tegra_uart_port
*tup
,
244 if (tup
->current_baud
)
245 udelay(DIV_ROUND_UP(cycles
* 1000000, tup
->current_baud
* 16));
248 /* Wait for a symbol-time. */
249 static void tegra_uart_wait_sym_time(struct tegra_uart_port
*tup
,
252 if (tup
->current_baud
)
253 udelay(DIV_ROUND_UP(syms
* tup
->symb_bit
* 1000000,
257 static void tegra_uart_fifo_reset(struct tegra_uart_port
*tup
, u8 fcr_bits
)
259 unsigned long fcr
= tup
->fcr_shadow
;
261 if (tup
->cdata
->allow_txfifo_reset_fifo_mode
) {
262 fcr
|= fcr_bits
& (UART_FCR_CLEAR_RCVR
| UART_FCR_CLEAR_XMIT
);
263 tegra_uart_write(tup
, fcr
, UART_FCR
);
265 fcr
&= ~UART_FCR_ENABLE_FIFO
;
266 tegra_uart_write(tup
, fcr
, UART_FCR
);
268 fcr
|= fcr_bits
& (UART_FCR_CLEAR_RCVR
| UART_FCR_CLEAR_XMIT
);
269 tegra_uart_write(tup
, fcr
, UART_FCR
);
270 fcr
|= UART_FCR_ENABLE_FIFO
;
271 tegra_uart_write(tup
, fcr
, UART_FCR
);
274 /* Dummy read to ensure the write is posted */
275 tegra_uart_read(tup
, UART_SCR
);
278 * For all tegra devices (up to t210), there is a hardware issue that
279 * requires software to wait for 32 UART clock periods for the flush
280 * to propagate, otherwise data could be lost.
282 tegra_uart_wait_cycle_time(tup
, 32);
285 static int tegra_set_baudrate(struct tegra_uart_port
*tup
, unsigned int baud
)
288 unsigned int divisor
;
292 if (tup
->current_baud
== baud
)
295 if (tup
->cdata
->support_clk_src_div
) {
297 ret
= clk_set_rate(tup
->uart_clk
, rate
);
299 dev_err(tup
->uport
.dev
,
300 "clk_set_rate() failed for rate %lu\n", rate
);
305 rate
= clk_get_rate(tup
->uart_clk
);
306 divisor
= DIV_ROUND_CLOSEST(rate
, baud
* 16);
309 lcr
= tup
->lcr_shadow
;
310 lcr
|= UART_LCR_DLAB
;
311 tegra_uart_write(tup
, lcr
, UART_LCR
);
313 tegra_uart_write(tup
, divisor
& 0xFF, UART_TX
);
314 tegra_uart_write(tup
, ((divisor
>> 8) & 0xFF), UART_IER
);
316 lcr
&= ~UART_LCR_DLAB
;
317 tegra_uart_write(tup
, lcr
, UART_LCR
);
319 /* Dummy read to ensure the write is posted */
320 tegra_uart_read(tup
, UART_SCR
);
322 tup
->current_baud
= baud
;
324 /* wait two character intervals at new rate */
325 tegra_uart_wait_sym_time(tup
, 2);
329 static char tegra_uart_decode_rx_error(struct tegra_uart_port
*tup
,
332 char flag
= TTY_NORMAL
;
334 if (unlikely(lsr
& TEGRA_UART_LSR_ANY
)) {
335 if (lsr
& UART_LSR_OE
) {
338 tup
->uport
.icount
.overrun
++;
339 dev_err(tup
->uport
.dev
, "Got overrun errors\n");
340 } else if (lsr
& UART_LSR_PE
) {
343 tup
->uport
.icount
.parity
++;
344 dev_err(tup
->uport
.dev
, "Got Parity errors\n");
345 } else if (lsr
& UART_LSR_FE
) {
347 tup
->uport
.icount
.frame
++;
348 dev_err(tup
->uport
.dev
, "Got frame errors\n");
349 } else if (lsr
& UART_LSR_BI
) {
350 dev_err(tup
->uport
.dev
, "Got Break\n");
351 tup
->uport
.icount
.brk
++;
352 /* If FIFO read error without any data, reset Rx FIFO */
353 if (!(lsr
& UART_LSR_DR
) && (lsr
& UART_LSR_FIFOE
))
354 tegra_uart_fifo_reset(tup
, UART_FCR_CLEAR_RCVR
);
360 static int tegra_uart_request_port(struct uart_port
*u
)
365 static void tegra_uart_release_port(struct uart_port
*u
)
367 /* Nothing to do here */
370 static void tegra_uart_fill_tx_fifo(struct tegra_uart_port
*tup
, int max_bytes
)
372 struct circ_buf
*xmit
= &tup
->uport
.state
->xmit
;
375 for (i
= 0; i
< max_bytes
; i
++) {
376 BUG_ON(uart_circ_empty(xmit
));
377 if (tup
->cdata
->tx_fifo_full_status
) {
378 unsigned long lsr
= tegra_uart_read(tup
, UART_LSR
);
379 if ((lsr
& TEGRA_UART_LSR_TXFIFO_FULL
))
382 tegra_uart_write(tup
, xmit
->buf
[xmit
->tail
], UART_TX
);
383 xmit
->tail
= (xmit
->tail
+ 1) & (UART_XMIT_SIZE
- 1);
384 tup
->uport
.icount
.tx
++;
388 static void tegra_uart_start_pio_tx(struct tegra_uart_port
*tup
,
391 if (bytes
> TEGRA_UART_MIN_DMA
)
392 bytes
= TEGRA_UART_MIN_DMA
;
394 tup
->tx_in_progress
= TEGRA_UART_TX_PIO
;
395 tup
->tx_bytes
= bytes
;
396 tup
->ier_shadow
|= UART_IER_THRI
;
397 tegra_uart_write(tup
, tup
->ier_shadow
, UART_IER
);
400 static void tegra_uart_tx_dma_complete(void *args
)
402 struct tegra_uart_port
*tup
= args
;
403 struct circ_buf
*xmit
= &tup
->uport
.state
->xmit
;
404 struct dma_tx_state state
;
408 dmaengine_tx_status(tup
->tx_dma_chan
, tup
->tx_cookie
, &state
);
409 count
= tup
->tx_bytes_requested
- state
.residue
;
410 async_tx_ack(tup
->tx_dma_desc
);
411 spin_lock_irqsave(&tup
->uport
.lock
, flags
);
412 xmit
->tail
= (xmit
->tail
+ count
) & (UART_XMIT_SIZE
- 1);
413 tup
->tx_in_progress
= 0;
414 if (uart_circ_chars_pending(xmit
) < WAKEUP_CHARS
)
415 uart_write_wakeup(&tup
->uport
);
416 tegra_uart_start_next_tx(tup
);
417 spin_unlock_irqrestore(&tup
->uport
.lock
, flags
);
420 static int tegra_uart_start_tx_dma(struct tegra_uart_port
*tup
,
423 struct circ_buf
*xmit
= &tup
->uport
.state
->xmit
;
424 dma_addr_t tx_phys_addr
;
426 dma_sync_single_for_device(tup
->uport
.dev
, tup
->tx_dma_buf_phys
,
427 UART_XMIT_SIZE
, DMA_TO_DEVICE
);
429 tup
->tx_bytes
= count
& ~(0xF);
430 tx_phys_addr
= tup
->tx_dma_buf_phys
+ xmit
->tail
;
431 tup
->tx_dma_desc
= dmaengine_prep_slave_single(tup
->tx_dma_chan
,
432 tx_phys_addr
, tup
->tx_bytes
, DMA_MEM_TO_DEV
,
434 if (!tup
->tx_dma_desc
) {
435 dev_err(tup
->uport
.dev
, "Not able to get desc for Tx\n");
439 tup
->tx_dma_desc
->callback
= tegra_uart_tx_dma_complete
;
440 tup
->tx_dma_desc
->callback_param
= tup
;
441 tup
->tx_in_progress
= TEGRA_UART_TX_DMA
;
442 tup
->tx_bytes_requested
= tup
->tx_bytes
;
443 tup
->tx_cookie
= dmaengine_submit(tup
->tx_dma_desc
);
444 dma_async_issue_pending(tup
->tx_dma_chan
);
448 static void tegra_uart_start_next_tx(struct tegra_uart_port
*tup
)
452 struct circ_buf
*xmit
= &tup
->uport
.state
->xmit
;
454 tail
= (unsigned long)&xmit
->buf
[xmit
->tail
];
455 count
= CIRC_CNT_TO_END(xmit
->head
, xmit
->tail
, UART_XMIT_SIZE
);
459 if (count
< TEGRA_UART_MIN_DMA
)
460 tegra_uart_start_pio_tx(tup
, count
);
461 else if (BYTES_TO_ALIGN(tail
) > 0)
462 tegra_uart_start_pio_tx(tup
, BYTES_TO_ALIGN(tail
));
464 tegra_uart_start_tx_dma(tup
, count
);
467 /* Called by serial core driver with u->lock taken. */
468 static void tegra_uart_start_tx(struct uart_port
*u
)
470 struct tegra_uart_port
*tup
= to_tegra_uport(u
);
471 struct circ_buf
*xmit
= &u
->state
->xmit
;
473 if (!uart_circ_empty(xmit
) && !tup
->tx_in_progress
)
474 tegra_uart_start_next_tx(tup
);
477 static unsigned int tegra_uart_tx_empty(struct uart_port
*u
)
479 struct tegra_uart_port
*tup
= to_tegra_uport(u
);
480 unsigned int ret
= 0;
483 spin_lock_irqsave(&u
->lock
, flags
);
484 if (!tup
->tx_in_progress
) {
485 unsigned long lsr
= tegra_uart_read(tup
, UART_LSR
);
486 if ((lsr
& TX_EMPTY_STATUS
) == TX_EMPTY_STATUS
)
489 spin_unlock_irqrestore(&u
->lock
, flags
);
493 static void tegra_uart_stop_tx(struct uart_port
*u
)
495 struct tegra_uart_port
*tup
= to_tegra_uport(u
);
496 struct circ_buf
*xmit
= &tup
->uport
.state
->xmit
;
497 struct dma_tx_state state
;
500 if (tup
->tx_in_progress
!= TEGRA_UART_TX_DMA
)
503 dmaengine_terminate_all(tup
->tx_dma_chan
);
504 dmaengine_tx_status(tup
->tx_dma_chan
, tup
->tx_cookie
, &state
);
505 count
= tup
->tx_bytes_requested
- state
.residue
;
506 async_tx_ack(tup
->tx_dma_desc
);
507 xmit
->tail
= (xmit
->tail
+ count
) & (UART_XMIT_SIZE
- 1);
508 tup
->tx_in_progress
= 0;
511 static void tegra_uart_handle_tx_pio(struct tegra_uart_port
*tup
)
513 struct circ_buf
*xmit
= &tup
->uport
.state
->xmit
;
515 tegra_uart_fill_tx_fifo(tup
, tup
->tx_bytes
);
516 tup
->tx_in_progress
= 0;
517 if (uart_circ_chars_pending(xmit
) < WAKEUP_CHARS
)
518 uart_write_wakeup(&tup
->uport
);
519 tegra_uart_start_next_tx(tup
);
522 static void tegra_uart_handle_rx_pio(struct tegra_uart_port
*tup
,
523 struct tty_port
*tty
)
526 char flag
= TTY_NORMAL
;
527 unsigned long lsr
= 0;
530 lsr
= tegra_uart_read(tup
, UART_LSR
);
531 if (!(lsr
& UART_LSR_DR
))
534 flag
= tegra_uart_decode_rx_error(tup
, lsr
);
535 ch
= (unsigned char) tegra_uart_read(tup
, UART_RX
);
536 tup
->uport
.icount
.rx
++;
538 if (!uart_handle_sysrq_char(&tup
->uport
, ch
) && tty
)
539 tty_insert_flip_char(tty
, ch
, flag
);
543 static void tegra_uart_copy_rx_to_tty(struct tegra_uart_port
*tup
,
544 struct tty_port
*tty
,
549 /* If count is zero, then there is no data to be copied */
553 tup
->uport
.icount
.rx
+= count
;
555 dev_err(tup
->uport
.dev
, "No tty port\n");
558 dma_sync_single_for_cpu(tup
->uport
.dev
, tup
->rx_dma_buf_phys
,
559 TEGRA_UART_RX_DMA_BUFFER_SIZE
, DMA_FROM_DEVICE
);
560 copied
= tty_insert_flip_string(tty
,
561 ((unsigned char *)(tup
->rx_dma_buf_virt
)), count
);
562 if (copied
!= count
) {
564 dev_err(tup
->uport
.dev
, "RxData copy to tty layer failed\n");
566 dma_sync_single_for_device(tup
->uport
.dev
, tup
->rx_dma_buf_phys
,
567 TEGRA_UART_RX_DMA_BUFFER_SIZE
, DMA_TO_DEVICE
);
570 static void tegra_uart_rx_buffer_push(struct tegra_uart_port
*tup
,
571 unsigned int residue
)
573 struct tty_port
*port
= &tup
->uport
.state
->port
;
574 struct tty_struct
*tty
= tty_port_tty_get(port
);
577 async_tx_ack(tup
->rx_dma_desc
);
578 count
= tup
->rx_bytes_requested
- residue
;
580 /* If we are here, DMA is stopped */
581 tegra_uart_copy_rx_to_tty(tup
, port
, count
);
583 tegra_uart_handle_rx_pio(tup
, port
);
585 tty_flip_buffer_push(port
);
590 static void tegra_uart_rx_dma_complete(void *args
)
592 struct tegra_uart_port
*tup
= args
;
593 struct uart_port
*u
= &tup
->uport
;
595 struct dma_tx_state state
;
596 enum dma_status status
;
598 spin_lock_irqsave(&u
->lock
, flags
);
600 status
= dmaengine_tx_status(tup
->rx_dma_chan
, tup
->rx_cookie
, &state
);
602 if (status
== DMA_IN_PROGRESS
) {
603 dev_dbg(tup
->uport
.dev
, "RX DMA is in progress\n");
607 /* Deactivate flow control to stop sender */
611 tegra_uart_rx_buffer_push(tup
, 0);
612 tegra_uart_start_rx_dma(tup
);
614 /* Activate flow control to start transfer */
619 spin_unlock_irqrestore(&u
->lock
, flags
);
622 static void tegra_uart_handle_rx_dma(struct tegra_uart_port
*tup
)
624 struct dma_tx_state state
;
626 /* Deactivate flow control to stop sender */
630 dmaengine_terminate_all(tup
->rx_dma_chan
);
631 dmaengine_tx_status(tup
->rx_dma_chan
, tup
->rx_cookie
, &state
);
632 tegra_uart_rx_buffer_push(tup
, state
.residue
);
633 tegra_uart_start_rx_dma(tup
);
639 static int tegra_uart_start_rx_dma(struct tegra_uart_port
*tup
)
641 unsigned int count
= TEGRA_UART_RX_DMA_BUFFER_SIZE
;
643 tup
->rx_dma_desc
= dmaengine_prep_slave_single(tup
->rx_dma_chan
,
644 tup
->rx_dma_buf_phys
, count
, DMA_DEV_TO_MEM
,
646 if (!tup
->rx_dma_desc
) {
647 dev_err(tup
->uport
.dev
, "Not able to get desc for Rx\n");
651 tup
->rx_dma_desc
->callback
= tegra_uart_rx_dma_complete
;
652 tup
->rx_dma_desc
->callback_param
= tup
;
653 dma_sync_single_for_device(tup
->uport
.dev
, tup
->rx_dma_buf_phys
,
654 count
, DMA_TO_DEVICE
);
655 tup
->rx_bytes_requested
= count
;
656 tup
->rx_cookie
= dmaengine_submit(tup
->rx_dma_desc
);
657 dma_async_issue_pending(tup
->rx_dma_chan
);
661 static void tegra_uart_handle_modem_signal_change(struct uart_port
*u
)
663 struct tegra_uart_port
*tup
= to_tegra_uport(u
);
666 msr
= tegra_uart_read(tup
, UART_MSR
);
667 if (!(msr
& UART_MSR_ANY_DELTA
))
670 if (msr
& UART_MSR_TERI
)
671 tup
->uport
.icount
.rng
++;
672 if (msr
& UART_MSR_DDSR
)
673 tup
->uport
.icount
.dsr
++;
674 /* We may only get DDCD when HW init and reset */
675 if (msr
& UART_MSR_DDCD
)
676 uart_handle_dcd_change(&tup
->uport
, msr
& UART_MSR_DCD
);
677 /* Will start/stop_tx accordingly */
678 if (msr
& UART_MSR_DCTS
)
679 uart_handle_cts_change(&tup
->uport
, msr
& UART_MSR_CTS
);
682 static irqreturn_t
tegra_uart_isr(int irq
, void *data
)
684 struct tegra_uart_port
*tup
= data
;
685 struct uart_port
*u
= &tup
->uport
;
688 bool is_rx_int
= false;
691 spin_lock_irqsave(&u
->lock
, flags
);
693 iir
= tegra_uart_read(tup
, UART_IIR
);
694 if (iir
& UART_IIR_NO_INT
) {
696 tegra_uart_handle_rx_dma(tup
);
697 if (tup
->rx_in_progress
) {
698 ier
= tup
->ier_shadow
;
699 ier
|= (UART_IER_RLSI
| UART_IER_RTOIE
|
700 TEGRA_UART_IER_EORD
);
701 tup
->ier_shadow
= ier
;
702 tegra_uart_write(tup
, ier
, UART_IER
);
705 spin_unlock_irqrestore(&u
->lock
, flags
);
709 switch ((iir
>> 1) & 0x7) {
710 case 0: /* Modem signal change interrupt */
711 tegra_uart_handle_modem_signal_change(u
);
714 case 1: /* Transmit interrupt only triggered when using PIO */
715 tup
->ier_shadow
&= ~UART_IER_THRI
;
716 tegra_uart_write(tup
, tup
->ier_shadow
, UART_IER
);
717 tegra_uart_handle_tx_pio(tup
);
720 case 4: /* End of data */
721 case 6: /* Rx timeout */
722 case 2: /* Receive */
725 /* Disable Rx interrupts */
726 ier
= tup
->ier_shadow
;
728 tegra_uart_write(tup
, ier
, UART_IER
);
729 ier
&= ~(UART_IER_RDI
| UART_IER_RLSI
|
730 UART_IER_RTOIE
| TEGRA_UART_IER_EORD
);
731 tup
->ier_shadow
= ier
;
732 tegra_uart_write(tup
, ier
, UART_IER
);
736 case 3: /* Receive error */
737 tegra_uart_decode_rx_error(tup
,
738 tegra_uart_read(tup
, UART_LSR
));
741 case 5: /* break nothing to handle */
742 case 7: /* break nothing to handle */
748 static void tegra_uart_stop_rx(struct uart_port
*u
)
750 struct tegra_uart_port
*tup
= to_tegra_uport(u
);
751 struct dma_tx_state state
;
757 if (!tup
->rx_in_progress
)
760 tegra_uart_wait_sym_time(tup
, 1); /* wait a character interval */
762 ier
= tup
->ier_shadow
;
763 ier
&= ~(UART_IER_RDI
| UART_IER_RLSI
| UART_IER_RTOIE
|
764 TEGRA_UART_IER_EORD
);
765 tup
->ier_shadow
= ier
;
766 tegra_uart_write(tup
, ier
, UART_IER
);
767 tup
->rx_in_progress
= 0;
768 dmaengine_terminate_all(tup
->rx_dma_chan
);
769 dmaengine_tx_status(tup
->rx_dma_chan
, tup
->rx_cookie
, &state
);
770 tegra_uart_rx_buffer_push(tup
, state
.residue
);
773 static void tegra_uart_hw_deinit(struct tegra_uart_port
*tup
)
776 unsigned long char_time
= DIV_ROUND_UP(10000000, tup
->current_baud
);
777 unsigned long fifo_empty_time
= tup
->uport
.fifosize
* char_time
;
778 unsigned long wait_time
;
783 /* Disable interrupts */
784 tegra_uart_write(tup
, 0, UART_IER
);
786 lsr
= tegra_uart_read(tup
, UART_LSR
);
787 if ((lsr
& UART_LSR_TEMT
) != UART_LSR_TEMT
) {
788 msr
= tegra_uart_read(tup
, UART_MSR
);
789 mcr
= tegra_uart_read(tup
, UART_MCR
);
790 if ((mcr
& TEGRA_UART_MCR_CTS_EN
) && (msr
& UART_MSR_CTS
))
791 dev_err(tup
->uport
.dev
,
792 "Tx Fifo not empty, CTS disabled, waiting\n");
794 /* Wait for Tx fifo to be empty */
795 while ((lsr
& UART_LSR_TEMT
) != UART_LSR_TEMT
) {
796 wait_time
= min(fifo_empty_time
, 100lu);
798 fifo_empty_time
-= wait_time
;
799 if (!fifo_empty_time
) {
800 msr
= tegra_uart_read(tup
, UART_MSR
);
801 mcr
= tegra_uart_read(tup
, UART_MCR
);
802 if ((mcr
& TEGRA_UART_MCR_CTS_EN
) &&
803 (msr
& UART_MSR_CTS
))
804 dev_err(tup
->uport
.dev
,
805 "Slave not ready\n");
808 lsr
= tegra_uart_read(tup
, UART_LSR
);
812 spin_lock_irqsave(&tup
->uport
.lock
, flags
);
813 /* Reset the Rx and Tx FIFOs */
814 tegra_uart_fifo_reset(tup
, UART_FCR_CLEAR_XMIT
| UART_FCR_CLEAR_RCVR
);
815 tup
->current_baud
= 0;
816 spin_unlock_irqrestore(&tup
->uport
.lock
, flags
);
818 clk_disable_unprepare(tup
->uart_clk
);
821 static int tegra_uart_hw_init(struct tegra_uart_port
*tup
)
829 tup
->current_baud
= 0;
831 clk_prepare_enable(tup
->uart_clk
);
833 /* Reset the UART controller to clear all previous status.*/
834 reset_control_assert(tup
->rst
);
836 reset_control_deassert(tup
->rst
);
838 tup
->rx_in_progress
= 0;
839 tup
->tx_in_progress
= 0;
842 * Set the trigger level
846 * For receive, this will interrupt the CPU after that many number of
847 * bytes are received, for the remaining bytes the receive timeout
848 * interrupt is received. Rx high watermark is set to 4.
850 * For transmit, if the trasnmit interrupt is enabled, this will
851 * interrupt the CPU when the number of entries in the FIFO reaches the
852 * low watermark. Tx low watermark is set to 16 bytes.
856 * Set the Tx trigger to 16. This should match the DMA burst size that
857 * programmed in the DMA registers.
859 tup
->fcr_shadow
= UART_FCR_ENABLE_FIFO
;
860 tup
->fcr_shadow
|= UART_FCR_R_TRIG_01
;
861 tup
->fcr_shadow
|= TEGRA_UART_TX_TRIG_16B
;
862 tegra_uart_write(tup
, tup
->fcr_shadow
, UART_FCR
);
864 /* Dummy read to ensure the write is posted */
865 tegra_uart_read(tup
, UART_SCR
);
868 * For all tegra devices (up to t210), there is a hardware issue that
869 * requires software to wait for 3 UART clock periods after enabling
870 * the TX fifo, otherwise data could be lost.
872 tegra_uart_wait_cycle_time(tup
, 3);
875 * Initialize the UART with default configuration
876 * (115200, N, 8, 1) so that the receive DMA buffer may be
879 tup
->lcr_shadow
= TEGRA_UART_DEFAULT_LSR
;
880 tegra_set_baudrate(tup
, TEGRA_UART_DEFAULT_BAUD
);
881 tup
->fcr_shadow
|= UART_FCR_DMA_SELECT
;
882 tegra_uart_write(tup
, tup
->fcr_shadow
, UART_FCR
);
884 ret
= tegra_uart_start_rx_dma(tup
);
886 dev_err(tup
->uport
.dev
, "Not able to start Rx DMA\n");
889 tup
->rx_in_progress
= 1;
892 * Enable IE_RXS for the receive status interrupts like line errros.
893 * Enable IE_RX_TIMEOUT to get the bytes which cannot be DMA'd.
895 * If using DMA mode, enable EORD instead of receive interrupt which
896 * will interrupt after the UART is done with the receive instead of
897 * the interrupt when the FIFO "threshold" is reached.
899 * EORD is different interrupt than RX_TIMEOUT - RX_TIMEOUT occurs when
900 * the DATA is sitting in the FIFO and couldn't be transferred to the
901 * DMA as the DMA size alignment(4 bytes) is not met. EORD will be
902 * triggered when there is a pause of the incomming data stream for 4
905 * For pauses in the data which is not aligned to 4 bytes, we get
906 * both the EORD as well as RX_TIMEOUT - SW sees RX_TIMEOUT first
909 tup
->ier_shadow
= UART_IER_RLSI
| UART_IER_RTOIE
| TEGRA_UART_IER_EORD
;
910 tegra_uart_write(tup
, tup
->ier_shadow
, UART_IER
);
914 static void tegra_uart_dma_channel_free(struct tegra_uart_port
*tup
,
918 dmaengine_terminate_all(tup
->rx_dma_chan
);
919 dma_release_channel(tup
->rx_dma_chan
);
920 dma_free_coherent(tup
->uport
.dev
, TEGRA_UART_RX_DMA_BUFFER_SIZE
,
921 tup
->rx_dma_buf_virt
, tup
->rx_dma_buf_phys
);
922 tup
->rx_dma_chan
= NULL
;
923 tup
->rx_dma_buf_phys
= 0;
924 tup
->rx_dma_buf_virt
= NULL
;
926 dmaengine_terminate_all(tup
->tx_dma_chan
);
927 dma_release_channel(tup
->tx_dma_chan
);
928 dma_unmap_single(tup
->uport
.dev
, tup
->tx_dma_buf_phys
,
929 UART_XMIT_SIZE
, DMA_TO_DEVICE
);
930 tup
->tx_dma_chan
= NULL
;
931 tup
->tx_dma_buf_phys
= 0;
932 tup
->tx_dma_buf_virt
= NULL
;
936 static int tegra_uart_dma_channel_allocate(struct tegra_uart_port
*tup
,
939 struct dma_chan
*dma_chan
;
940 unsigned char *dma_buf
;
943 struct dma_slave_config dma_sconfig
;
945 dma_chan
= dma_request_slave_channel_reason(tup
->uport
.dev
,
946 dma_to_memory
? "rx" : "tx");
947 if (IS_ERR(dma_chan
)) {
948 ret
= PTR_ERR(dma_chan
);
949 dev_err(tup
->uport
.dev
,
950 "DMA channel alloc failed: %d\n", ret
);
955 dma_buf
= dma_alloc_coherent(tup
->uport
.dev
,
956 TEGRA_UART_RX_DMA_BUFFER_SIZE
,
957 &dma_phys
, GFP_KERNEL
);
959 dev_err(tup
->uport
.dev
,
960 "Not able to allocate the dma buffer\n");
961 dma_release_channel(dma_chan
);
964 dma_sconfig
.src_addr
= tup
->uport
.mapbase
;
965 dma_sconfig
.src_addr_width
= DMA_SLAVE_BUSWIDTH_1_BYTE
;
966 dma_sconfig
.src_maxburst
= 4;
967 tup
->rx_dma_chan
= dma_chan
;
968 tup
->rx_dma_buf_virt
= dma_buf
;
969 tup
->rx_dma_buf_phys
= dma_phys
;
971 dma_phys
= dma_map_single(tup
->uport
.dev
,
972 tup
->uport
.state
->xmit
.buf
, UART_XMIT_SIZE
,
974 if (dma_mapping_error(tup
->uport
.dev
, dma_phys
)) {
975 dev_err(tup
->uport
.dev
, "dma_map_single tx failed\n");
976 dma_release_channel(dma_chan
);
979 dma_buf
= tup
->uport
.state
->xmit
.buf
;
980 dma_sconfig
.dst_addr
= tup
->uport
.mapbase
;
981 dma_sconfig
.dst_addr_width
= DMA_SLAVE_BUSWIDTH_1_BYTE
;
982 dma_sconfig
.dst_maxburst
= 16;
983 tup
->tx_dma_chan
= dma_chan
;
984 tup
->tx_dma_buf_virt
= dma_buf
;
985 tup
->tx_dma_buf_phys
= dma_phys
;
988 ret
= dmaengine_slave_config(dma_chan
, &dma_sconfig
);
990 dev_err(tup
->uport
.dev
,
991 "Dma slave config failed, err = %d\n", ret
);
992 tegra_uart_dma_channel_free(tup
, dma_to_memory
);
999 static int tegra_uart_startup(struct uart_port
*u
)
1001 struct tegra_uart_port
*tup
= to_tegra_uport(u
);
1004 ret
= tegra_uart_dma_channel_allocate(tup
, false);
1006 dev_err(u
->dev
, "Tx Dma allocation failed, err = %d\n", ret
);
1010 ret
= tegra_uart_dma_channel_allocate(tup
, true);
1012 dev_err(u
->dev
, "Rx Dma allocation failed, err = %d\n", ret
);
1016 ret
= tegra_uart_hw_init(tup
);
1018 dev_err(u
->dev
, "Uart HW init failed, err = %d\n", ret
);
1022 ret
= request_irq(u
->irq
, tegra_uart_isr
, 0,
1023 dev_name(u
->dev
), tup
);
1025 dev_err(u
->dev
, "Failed to register ISR for IRQ %d\n", u
->irq
);
1031 tegra_uart_dma_channel_free(tup
, true);
1033 tegra_uart_dma_channel_free(tup
, false);
1038 * Flush any TX data submitted for DMA and PIO. Called when the
1039 * TX circular buffer is reset.
1041 static void tegra_uart_flush_buffer(struct uart_port
*u
)
1043 struct tegra_uart_port
*tup
= to_tegra_uport(u
);
1046 if (tup
->tx_dma_chan
)
1047 dmaengine_terminate_all(tup
->tx_dma_chan
);
1050 static void tegra_uart_shutdown(struct uart_port
*u
)
1052 struct tegra_uart_port
*tup
= to_tegra_uport(u
);
1054 tegra_uart_hw_deinit(tup
);
1056 tup
->rx_in_progress
= 0;
1057 tup
->tx_in_progress
= 0;
1059 tegra_uart_dma_channel_free(tup
, true);
1060 tegra_uart_dma_channel_free(tup
, false);
1061 free_irq(u
->irq
, tup
);
1064 static void tegra_uart_enable_ms(struct uart_port
*u
)
1066 struct tegra_uart_port
*tup
= to_tegra_uport(u
);
1068 if (tup
->enable_modem_interrupt
) {
1069 tup
->ier_shadow
|= UART_IER_MSI
;
1070 tegra_uart_write(tup
, tup
->ier_shadow
, UART_IER
);
1074 static void tegra_uart_set_termios(struct uart_port
*u
,
1075 struct ktermios
*termios
, struct ktermios
*oldtermios
)
1077 struct tegra_uart_port
*tup
= to_tegra_uport(u
);
1079 unsigned long flags
;
1082 struct clk
*parent_clk
= clk_get_parent(tup
->uart_clk
);
1083 unsigned long parent_clk_rate
= clk_get_rate(parent_clk
);
1084 int max_divider
= (tup
->cdata
->support_clk_src_div
) ? 0x7FFF : 0xFFFF;
1087 spin_lock_irqsave(&u
->lock
, flags
);
1089 /* Changing configuration, it is safe to stop any rx now */
1090 if (tup
->rts_active
)
1091 set_rts(tup
, false);
1093 /* Clear all interrupts as configuration is going to be change */
1094 tegra_uart_write(tup
, tup
->ier_shadow
| UART_IER_RDI
, UART_IER
);
1095 tegra_uart_read(tup
, UART_IER
);
1096 tegra_uart_write(tup
, 0, UART_IER
);
1097 tegra_uart_read(tup
, UART_IER
);
1100 lcr
= tup
->lcr_shadow
;
1101 lcr
&= ~UART_LCR_PARITY
;
1103 /* CMSPAR isn't supported by this driver */
1104 termios
->c_cflag
&= ~CMSPAR
;
1106 if ((termios
->c_cflag
& PARENB
) == PARENB
) {
1108 if (termios
->c_cflag
& PARODD
) {
1109 lcr
|= UART_LCR_PARITY
;
1110 lcr
&= ~UART_LCR_EPAR
;
1111 lcr
&= ~UART_LCR_SPAR
;
1113 lcr
|= UART_LCR_PARITY
;
1114 lcr
|= UART_LCR_EPAR
;
1115 lcr
&= ~UART_LCR_SPAR
;
1119 lcr
&= ~UART_LCR_WLEN8
;
1120 switch (termios
->c_cflag
& CSIZE
) {
1122 lcr
|= UART_LCR_WLEN5
;
1126 lcr
|= UART_LCR_WLEN6
;
1130 lcr
|= UART_LCR_WLEN7
;
1134 lcr
|= UART_LCR_WLEN8
;
1140 if (termios
->c_cflag
& CSTOPB
) {
1141 lcr
|= UART_LCR_STOP
;
1144 lcr
&= ~UART_LCR_STOP
;
1148 tegra_uart_write(tup
, lcr
, UART_LCR
);
1149 tup
->lcr_shadow
= lcr
;
1150 tup
->symb_bit
= symb_bit
;
1153 baud
= uart_get_baud_rate(u
, termios
, oldtermios
,
1154 parent_clk_rate
/max_divider
,
1155 parent_clk_rate
/16);
1156 spin_unlock_irqrestore(&u
->lock
, flags
);
1157 tegra_set_baudrate(tup
, baud
);
1158 if (tty_termios_baud_rate(termios
))
1159 tty_termios_encode_baud_rate(termios
, baud
, baud
);
1160 spin_lock_irqsave(&u
->lock
, flags
);
1163 if (termios
->c_cflag
& CRTSCTS
) {
1164 tup
->mcr_shadow
|= TEGRA_UART_MCR_CTS_EN
;
1165 tup
->mcr_shadow
&= ~TEGRA_UART_MCR_RTS_EN
;
1166 tegra_uart_write(tup
, tup
->mcr_shadow
, UART_MCR
);
1167 /* if top layer has asked to set rts active then do so here */
1168 if (tup
->rts_active
)
1171 tup
->mcr_shadow
&= ~TEGRA_UART_MCR_CTS_EN
;
1172 tup
->mcr_shadow
&= ~TEGRA_UART_MCR_RTS_EN
;
1173 tegra_uart_write(tup
, tup
->mcr_shadow
, UART_MCR
);
1176 /* update the port timeout based on new settings */
1177 uart_update_timeout(u
, termios
->c_cflag
, baud
);
1179 /* Make sure all write has completed */
1180 tegra_uart_read(tup
, UART_IER
);
1182 /* Reenable interrupt */
1183 tegra_uart_write(tup
, tup
->ier_shadow
, UART_IER
);
1184 tegra_uart_read(tup
, UART_IER
);
1186 spin_unlock_irqrestore(&u
->lock
, flags
);
1189 static const char *tegra_uart_type(struct uart_port
*u
)
1191 return TEGRA_UART_TYPE
;
1194 static struct uart_ops tegra_uart_ops
= {
1195 .tx_empty
= tegra_uart_tx_empty
,
1196 .set_mctrl
= tegra_uart_set_mctrl
,
1197 .get_mctrl
= tegra_uart_get_mctrl
,
1198 .stop_tx
= tegra_uart_stop_tx
,
1199 .start_tx
= tegra_uart_start_tx
,
1200 .stop_rx
= tegra_uart_stop_rx
,
1201 .flush_buffer
= tegra_uart_flush_buffer
,
1202 .enable_ms
= tegra_uart_enable_ms
,
1203 .break_ctl
= tegra_uart_break_ctl
,
1204 .startup
= tegra_uart_startup
,
1205 .shutdown
= tegra_uart_shutdown
,
1206 .set_termios
= tegra_uart_set_termios
,
1207 .type
= tegra_uart_type
,
1208 .request_port
= tegra_uart_request_port
,
1209 .release_port
= tegra_uart_release_port
,
1212 static struct uart_driver tegra_uart_driver
= {
1213 .owner
= THIS_MODULE
,
1214 .driver_name
= "tegra_hsuart",
1215 .dev_name
= "ttyTHS",
1217 .nr
= TEGRA_UART_MAXIMUM
,
1220 static int tegra_uart_parse_dt(struct platform_device
*pdev
,
1221 struct tegra_uart_port
*tup
)
1223 struct device_node
*np
= pdev
->dev
.of_node
;
1226 port
= of_alias_get_id(np
, "serial");
1228 dev_err(&pdev
->dev
, "failed to get alias id, errno %d\n", port
);
1231 tup
->uport
.line
= port
;
1233 tup
->enable_modem_interrupt
= of_property_read_bool(np
,
1234 "nvidia,enable-modem-interrupt");
1238 static struct tegra_uart_chip_data tegra20_uart_chip_data
= {
1239 .tx_fifo_full_status
= false,
1240 .allow_txfifo_reset_fifo_mode
= true,
1241 .support_clk_src_div
= false,
1244 static struct tegra_uart_chip_data tegra30_uart_chip_data
= {
1245 .tx_fifo_full_status
= true,
1246 .allow_txfifo_reset_fifo_mode
= false,
1247 .support_clk_src_div
= true,
1250 static const struct of_device_id tegra_uart_of_match
[] = {
1252 .compatible
= "nvidia,tegra30-hsuart",
1253 .data
= &tegra30_uart_chip_data
,
1255 .compatible
= "nvidia,tegra20-hsuart",
1256 .data
= &tegra20_uart_chip_data
,
1260 MODULE_DEVICE_TABLE(of
, tegra_uart_of_match
);
1262 static int tegra_uart_probe(struct platform_device
*pdev
)
1264 struct tegra_uart_port
*tup
;
1265 struct uart_port
*u
;
1266 struct resource
*resource
;
1268 const struct tegra_uart_chip_data
*cdata
;
1269 const struct of_device_id
*match
;
1271 match
= of_match_device(tegra_uart_of_match
, &pdev
->dev
);
1273 dev_err(&pdev
->dev
, "Error: No device match found\n");
1276 cdata
= match
->data
;
1278 tup
= devm_kzalloc(&pdev
->dev
, sizeof(*tup
), GFP_KERNEL
);
1280 dev_err(&pdev
->dev
, "Failed to allocate memory for tup\n");
1284 ret
= tegra_uart_parse_dt(pdev
, tup
);
1289 u
->dev
= &pdev
->dev
;
1290 u
->ops
= &tegra_uart_ops
;
1291 u
->type
= PORT_TEGRA
;
1295 platform_set_drvdata(pdev
, tup
);
1296 resource
= platform_get_resource(pdev
, IORESOURCE_MEM
, 0);
1298 dev_err(&pdev
->dev
, "No IO memory resource\n");
1302 u
->mapbase
= resource
->start
;
1303 u
->membase
= devm_ioremap_resource(&pdev
->dev
, resource
);
1304 if (IS_ERR(u
->membase
))
1305 return PTR_ERR(u
->membase
);
1307 tup
->uart_clk
= devm_clk_get(&pdev
->dev
, NULL
);
1308 if (IS_ERR(tup
->uart_clk
)) {
1309 dev_err(&pdev
->dev
, "Couldn't get the clock\n");
1310 return PTR_ERR(tup
->uart_clk
);
1313 tup
->rst
= devm_reset_control_get(&pdev
->dev
, "serial");
1314 if (IS_ERR(tup
->rst
)) {
1315 dev_err(&pdev
->dev
, "Couldn't get the reset\n");
1316 return PTR_ERR(tup
->rst
);
1319 u
->iotype
= UPIO_MEM32
;
1320 ret
= platform_get_irq(pdev
, 0);
1322 dev_err(&pdev
->dev
, "Couldn't get IRQ\n");
1327 ret
= uart_add_one_port(&tegra_uart_driver
, u
);
1329 dev_err(&pdev
->dev
, "Failed to add uart port, err %d\n", ret
);
1335 static int tegra_uart_remove(struct platform_device
*pdev
)
1337 struct tegra_uart_port
*tup
= platform_get_drvdata(pdev
);
1338 struct uart_port
*u
= &tup
->uport
;
1340 uart_remove_one_port(&tegra_uart_driver
, u
);
1344 #ifdef CONFIG_PM_SLEEP
1345 static int tegra_uart_suspend(struct device
*dev
)
1347 struct tegra_uart_port
*tup
= dev_get_drvdata(dev
);
1348 struct uart_port
*u
= &tup
->uport
;
1350 return uart_suspend_port(&tegra_uart_driver
, u
);
1353 static int tegra_uart_resume(struct device
*dev
)
1355 struct tegra_uart_port
*tup
= dev_get_drvdata(dev
);
1356 struct uart_port
*u
= &tup
->uport
;
1358 return uart_resume_port(&tegra_uart_driver
, u
);
1362 static const struct dev_pm_ops tegra_uart_pm_ops
= {
1363 SET_SYSTEM_SLEEP_PM_OPS(tegra_uart_suspend
, tegra_uart_resume
)
1366 static struct platform_driver tegra_uart_platform_driver
= {
1367 .probe
= tegra_uart_probe
,
1368 .remove
= tegra_uart_remove
,
1370 .name
= "serial-tegra",
1371 .of_match_table
= tegra_uart_of_match
,
1372 .pm
= &tegra_uart_pm_ops
,
1376 static int __init
tegra_uart_init(void)
1380 ret
= uart_register_driver(&tegra_uart_driver
);
1382 pr_err("Could not register %s driver\n",
1383 tegra_uart_driver
.driver_name
);
1387 ret
= platform_driver_register(&tegra_uart_platform_driver
);
1389 pr_err("Uart platform driver register failed, e = %d\n", ret
);
1390 uart_unregister_driver(&tegra_uart_driver
);
1396 static void __exit
tegra_uart_exit(void)
1398 pr_info("Unloading tegra uart driver\n");
1399 platform_driver_unregister(&tegra_uart_platform_driver
);
1400 uart_unregister_driver(&tegra_uart_driver
);
1403 module_init(tegra_uart_init
);
1404 module_exit(tegra_uart_exit
);
1406 MODULE_ALIAS("platform:serial-tegra");
1407 MODULE_DESCRIPTION("High speed UART driver for tegra chipset");
1408 MODULE_AUTHOR("Laxman Dewangan <ldewangan@nvidia.com>");
1409 MODULE_LICENSE("GPL v2");