Merge branch 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/jmorris...
[linux/fpc-iii.git] / drivers / tty / serial / 8250 / 8250_dma.c
blob7046769608d403501158a044fd109203f0e0531f
1 /*
2 * 8250_dma.c - DMA Engine API support for 8250.c
4 * Copyright (C) 2013 Intel Corporation
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
11 #include <linux/tty.h>
12 #include <linux/tty_flip.h>
13 #include <linux/serial_reg.h>
14 #include <linux/dma-mapping.h>
16 #include "8250.h"
18 static void __dma_tx_complete(void *param)
20 struct uart_8250_port *p = param;
21 struct uart_8250_dma *dma = p->dma;
22 struct circ_buf *xmit = &p->port.state->xmit;
24 dma->tx_running = 0;
26 dma_sync_single_for_cpu(dma->txchan->device->dev, dma->tx_addr,
27 UART_XMIT_SIZE, DMA_TO_DEVICE);
29 xmit->tail += dma->tx_size;
30 xmit->tail &= UART_XMIT_SIZE - 1;
31 p->port.icount.tx += dma->tx_size;
33 if (uart_circ_chars_pending(xmit) < WAKEUP_CHARS)
34 uart_write_wakeup(&p->port);
36 if (!uart_circ_empty(xmit) && !uart_tx_stopped(&p->port))
37 serial8250_tx_dma(p);
40 static void __dma_rx_complete(void *param)
42 struct uart_8250_port *p = param;
43 struct uart_8250_dma *dma = p->dma;
44 struct tty_port *tty_port = &p->port.state->port;
45 struct dma_tx_state state;
46 int count;
48 dma_sync_single_for_cpu(dma->rxchan->device->dev, dma->rx_addr,
49 dma->rx_size, DMA_FROM_DEVICE);
51 dmaengine_tx_status(dma->rxchan, dma->rx_cookie, &state);
52 dmaengine_terminate_all(dma->rxchan);
54 count = dma->rx_size - state.residue;
56 tty_insert_flip_string(tty_port, dma->rx_buf, count);
57 p->port.icount.rx += count;
59 tty_flip_buffer_push(tty_port);
62 int serial8250_tx_dma(struct uart_8250_port *p)
64 struct uart_8250_dma *dma = p->dma;
65 struct circ_buf *xmit = &p->port.state->xmit;
66 struct dma_async_tx_descriptor *desc;
68 if (uart_tx_stopped(&p->port) || dma->tx_running ||
69 uart_circ_empty(xmit))
70 return 0;
72 dma->tx_size = CIRC_CNT_TO_END(xmit->head, xmit->tail, UART_XMIT_SIZE);
74 desc = dmaengine_prep_slave_single(dma->txchan,
75 dma->tx_addr + xmit->tail,
76 dma->tx_size, DMA_MEM_TO_DEV,
77 DMA_PREP_INTERRUPT | DMA_CTRL_ACK);
78 if (!desc)
79 return -EBUSY;
81 dma->tx_running = 1;
83 desc->callback = __dma_tx_complete;
84 desc->callback_param = p;
86 dma->tx_cookie = dmaengine_submit(desc);
88 dma_sync_single_for_device(dma->txchan->device->dev, dma->tx_addr,
89 UART_XMIT_SIZE, DMA_TO_DEVICE);
91 dma_async_issue_pending(dma->txchan);
93 return 0;
95 EXPORT_SYMBOL_GPL(serial8250_tx_dma);
97 int serial8250_rx_dma(struct uart_8250_port *p, unsigned int iir)
99 struct uart_8250_dma *dma = p->dma;
100 struct dma_async_tx_descriptor *desc;
101 struct dma_tx_state state;
102 int dma_status;
104 dma_status = dmaengine_tx_status(dma->rxchan, dma->rx_cookie, &state);
106 switch (iir & 0x3f) {
107 case UART_IIR_RLSI:
108 /* 8250_core handles errors and break interrupts */
109 return -EIO;
110 case UART_IIR_RX_TIMEOUT:
112 * If RCVR FIFO trigger level was not reached, complete the
113 * transfer and let 8250_core copy the remaining data.
115 if (dma_status == DMA_IN_PROGRESS) {
116 dmaengine_pause(dma->rxchan);
117 __dma_rx_complete(p);
119 return -ETIMEDOUT;
120 default:
121 break;
124 if (dma_status)
125 return 0;
127 desc = dmaengine_prep_slave_single(dma->rxchan, dma->rx_addr,
128 dma->rx_size, DMA_DEV_TO_MEM,
129 DMA_PREP_INTERRUPT | DMA_CTRL_ACK);
130 if (!desc)
131 return -EBUSY;
133 desc->callback = __dma_rx_complete;
134 desc->callback_param = p;
136 dma->rx_cookie = dmaengine_submit(desc);
138 dma_sync_single_for_device(dma->rxchan->device->dev, dma->rx_addr,
139 dma->rx_size, DMA_FROM_DEVICE);
141 dma_async_issue_pending(dma->rxchan);
143 return 0;
145 EXPORT_SYMBOL_GPL(serial8250_rx_dma);
147 int serial8250_request_dma(struct uart_8250_port *p)
149 struct uart_8250_dma *dma = p->dma;
150 dma_cap_mask_t mask;
152 /* Default slave configuration parameters */
153 dma->rxconf.direction = DMA_DEV_TO_MEM;
154 dma->rxconf.src_addr_width = DMA_SLAVE_BUSWIDTH_1_BYTE;
155 dma->rxconf.src_addr = p->port.mapbase + UART_RX;
157 dma->txconf.direction = DMA_MEM_TO_DEV;
158 dma->txconf.dst_addr_width = DMA_SLAVE_BUSWIDTH_1_BYTE;
159 dma->txconf.dst_addr = p->port.mapbase + UART_TX;
161 dma_cap_zero(mask);
162 dma_cap_set(DMA_SLAVE, mask);
164 /* Get a channel for RX */
165 dma->rxchan = dma_request_slave_channel_compat(mask,
166 dma->fn, dma->rx_param,
167 p->port.dev, "rx");
168 if (!dma->rxchan)
169 return -ENODEV;
171 dmaengine_slave_config(dma->rxchan, &dma->rxconf);
173 /* Get a channel for TX */
174 dma->txchan = dma_request_slave_channel_compat(mask,
175 dma->fn, dma->tx_param,
176 p->port.dev, "tx");
177 if (!dma->txchan) {
178 dma_release_channel(dma->rxchan);
179 return -ENODEV;
182 dmaengine_slave_config(dma->txchan, &dma->txconf);
184 /* RX buffer */
185 if (!dma->rx_size)
186 dma->rx_size = PAGE_SIZE;
188 dma->rx_buf = dma_alloc_coherent(dma->rxchan->device->dev, dma->rx_size,
189 &dma->rx_addr, GFP_KERNEL);
190 if (!dma->rx_buf) {
191 dma_release_channel(dma->rxchan);
192 dma_release_channel(dma->txchan);
193 return -ENOMEM;
196 /* TX buffer */
197 dma->tx_addr = dma_map_single(dma->txchan->device->dev,
198 p->port.state->xmit.buf,
199 UART_XMIT_SIZE,
200 DMA_TO_DEVICE);
202 dev_dbg_ratelimited(p->port.dev, "got both dma channels\n");
204 return 0;
206 EXPORT_SYMBOL_GPL(serial8250_request_dma);
208 void serial8250_release_dma(struct uart_8250_port *p)
210 struct uart_8250_dma *dma = p->dma;
212 if (!dma)
213 return;
215 /* Release RX resources */
216 dmaengine_terminate_all(dma->rxchan);
217 dma_free_coherent(dma->rxchan->device->dev, dma->rx_size, dma->rx_buf,
218 dma->rx_addr);
219 dma_release_channel(dma->rxchan);
220 dma->rxchan = NULL;
222 /* Release TX resources */
223 dmaengine_terminate_all(dma->txchan);
224 dma_unmap_single(dma->txchan->device->dev, dma->tx_addr,
225 UART_XMIT_SIZE, DMA_TO_DEVICE);
226 dma_release_channel(dma->txchan);
227 dma->txchan = NULL;
228 dma->tx_running = 0;
230 dev_dbg_ratelimited(p->port.dev, "dma channels released\n");
232 EXPORT_SYMBOL_GPL(serial8250_release_dma);