blob: 8321a3997c95772c7ae9588fa75feee960a3ebaf [file] [log] [blame]
Linus Walleije8689e62010-09-28 15:57:37 +02001/*
2 * Copyright (c) 2006 ARM Ltd.
3 * Copyright (c) 2010 ST-Ericsson SA
4 *
5 * Author: Peter Pearse <peter.pearse@arm.com>
6 * Author: Linus Walleij <linus.walleij@stericsson.com>
7 *
8 * This program is free software; you can redistribute it and/or modify it
9 * under the terms of the GNU General Public License as published by the Free
10 * Software Foundation; either version 2 of the License, or (at your option)
11 * any later version.
12 *
13 * This program is distributed in the hope that it will be useful, but WITHOUT
14 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
15 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
16 * more details.
17 *
18 * You should have received a copy of the GNU General Public License along with
19 * this program; if not, write to the Free Software Foundation, Inc., 59
20 * Temple Place - Suite 330, Boston, MA 02111-1307, USA.
21 *
Russell King - ARM Linux94ae8522011-01-16 20:18:05 +000022 * The full GNU General Public License is in this distribution in the file
23 * called COPYING.
Linus Walleije8689e62010-09-28 15:57:37 +020024 *
25 * Documentation: ARM DDI 0196G == PL080
Russell King - ARM Linux94ae8522011-01-16 20:18:05 +000026 * Documentation: ARM DDI 0218E == PL081
Linus Walleije8689e62010-09-28 15:57:37 +020027 *
Russell King - ARM Linux94ae8522011-01-16 20:18:05 +000028 * PL080 & PL081 both have 16 sets of DMA signals that can be routed to any
29 * channel.
Linus Walleije8689e62010-09-28 15:57:37 +020030 *
31 * The PL080 has 8 channels available for simultaneous use, and the PL081
32 * has only two channels. So on these DMA controllers the number of channels
33 * and the number of incoming DMA signals are two totally different things.
34 * It is usually not possible to theoretically handle all physical signals,
35 * so a multiplexing scheme with possible denial of use is necessary.
36 *
37 * The PL080 has a dual bus master, PL081 has a single master.
38 *
39 * Memory to peripheral transfer may be visualized as
40 * Get data from memory to DMAC
41 * Until no data left
42 * On burst request from peripheral
43 * Destination burst from DMAC to peripheral
44 * Clear burst request
45 * Raise terminal count interrupt
46 *
47 * For peripherals with a FIFO:
48 * Source burst size == half the depth of the peripheral FIFO
49 * Destination burst size == the depth of the peripheral FIFO
50 *
51 * (Bursts are irrelevant for mem to mem transfers - there are no burst
52 * signals, the DMA controller will simply facilitate its AHB master.)
53 *
54 * ASSUMES default (little) endianness for DMA transfers
55 *
Russell King - ARM Linux9dc2c202011-01-03 22:33:06 +000056 * The PL08x has two flow control settings:
57 * - DMAC flow control: the transfer size defines the number of transfers
58 * which occur for the current LLI entry, and the DMAC raises TC at the
59 * end of every LLI entry. Observed behaviour shows the DMAC listening
60 * to both the BREQ and SREQ signals (contrary to documented),
61 * transferring data if either is active. The LBREQ and LSREQ signals
62 * are ignored.
63 *
64 * - Peripheral flow control: the transfer size is ignored (and should be
65 * zero). The data is transferred from the current LLI entry, until
66 * after the final transfer signalled by LBREQ or LSREQ. The DMAC
67 * will then move to the next LLI entry.
68 *
69 * Only the former works sanely with scatter lists, so we only implement
70 * the DMAC flow control method. However, peripherals which use the LBREQ
71 * and LSREQ signals (eg, MMCI) are unable to use this mode, which through
72 * these hardware restrictions prevents them from using scatter DMA.
Linus Walleije8689e62010-09-28 15:57:37 +020073 *
74 * Global TODO:
75 * - Break out common code from arch/arm/mach-s3c64xx and share
76 */
77#include <linux/device.h>
78#include <linux/init.h>
79#include <linux/module.h>
Linus Walleije8689e62010-09-28 15:57:37 +020080#include <linux/interrupt.h>
81#include <linux/slab.h>
82#include <linux/dmapool.h>
Linus Walleije8689e62010-09-28 15:57:37 +020083#include <linux/dmaengine.h>
Russell King - ARM Linux730404a2011-01-03 22:34:07 +000084#include <linux/amba/bus.h>
Linus Walleije8689e62010-09-28 15:57:37 +020085#include <linux/amba/pl08x.h>
86#include <linux/debugfs.h>
87#include <linux/seq_file.h>
88
89#include <asm/hardware/pl080.h>
Linus Walleije8689e62010-09-28 15:57:37 +020090
91#define DRIVER_NAME "pl08xdmac"
92
93/**
Russell King - ARM Linux94ae8522011-01-16 20:18:05 +000094 * struct vendor_data - vendor-specific config parameters for PL08x derivatives
Linus Walleije8689e62010-09-28 15:57:37 +020095 * @channels: the number of channels available in this variant
Russell King - ARM Linux94ae8522011-01-16 20:18:05 +000096 * @dualmaster: whether this version supports dual AHB masters or not.
Linus Walleije8689e62010-09-28 15:57:37 +020097 */
98struct vendor_data {
Linus Walleije8689e62010-09-28 15:57:37 +020099 u8 channels;
100 bool dualmaster;
101};
102
103/*
104 * PL08X private data structures
Russell King - ARM Linuxe8b5e112011-01-03 22:30:24 +0000105 * An LLI struct - see PL08x TRM. Note that next uses bit[0] as a bus bit,
Russell King - ARM Linuxe25761d2011-01-03 22:37:52 +0000106 * start & end do not - their bus bit info is in cctl. Also note that these
107 * are fixed 32-bit quantities.
Linus Walleije8689e62010-09-28 15:57:37 +0200108 */
Russell King - ARM Linux7cb72ad2011-01-03 22:35:28 +0000109struct pl08x_lli {
Russell King - ARM Linuxe25761d2011-01-03 22:37:52 +0000110 u32 src;
111 u32 dst;
Russell King - ARM Linuxbfddfb42011-01-03 22:38:12 +0000112 u32 lli;
Linus Walleije8689e62010-09-28 15:57:37 +0200113 u32 cctl;
114};
115
116/**
117 * struct pl08x_driver_data - the local state holder for the PL08x
118 * @slave: slave engine for this instance
119 * @memcpy: memcpy engine for this instance
120 * @base: virtual memory base (remapped) for the PL08x
121 * @adev: the corresponding AMBA (PrimeCell) bus entry
122 * @vd: vendor data for this PL08x variant
123 * @pd: platform data passed in from the platform/machine
124 * @phy_chans: array of data for the physical channels
125 * @pool: a pool for the LLI descriptors
126 * @pool_ctr: counter of LLIs in the pool
Russell King - ARM Linux30749cb2011-01-03 22:41:13 +0000127 * @lli_buses: bitmask to or in to LLI pointer selecting AHB port for LLI fetches
128 * @mem_buses: set to indicate memory transfers on AHB2.
Linus Walleije8689e62010-09-28 15:57:37 +0200129 * @lock: a spinlock for this struct
130 */
131struct pl08x_driver_data {
132 struct dma_device slave;
133 struct dma_device memcpy;
134 void __iomem *base;
135 struct amba_device *adev;
Russell King - ARM Linuxf96ca9ec2011-01-03 22:35:08 +0000136 const struct vendor_data *vd;
Linus Walleije8689e62010-09-28 15:57:37 +0200137 struct pl08x_platform_data *pd;
138 struct pl08x_phy_chan *phy_chans;
139 struct dma_pool *pool;
140 int pool_ctr;
Russell King - ARM Linux30749cb2011-01-03 22:41:13 +0000141 u8 lli_buses;
142 u8 mem_buses;
Linus Walleije8689e62010-09-28 15:57:37 +0200143 spinlock_t lock;
144};
145
146/*
147 * PL08X specific defines
148 */
149
150/*
151 * Memory boundaries: the manual for PL08x says that the controller
152 * cannot read past a 1KiB boundary, so these defines are used to
153 * create transfer LLIs that do not cross such boundaries.
154 */
155#define PL08X_BOUNDARY_SHIFT (10) /* 1KB 0x400 */
156#define PL08X_BOUNDARY_SIZE (1 << PL08X_BOUNDARY_SHIFT)
157
158/* Minimum period between work queue runs */
159#define PL08X_WQ_PERIODMIN 20
160
161/* Size (bytes) of each LLI buffer allocated for one transfer */
162# define PL08X_LLI_TSFR_SIZE 0x2000
163
Russell King - ARM Linuxe8b5e112011-01-03 22:30:24 +0000164/* Maximum times we call dma_pool_alloc on this pool without freeing */
Linus Walleije8689e62010-09-28 15:57:37 +0200165#define PL08X_MAX_ALLOCS 0x40
Russell King - ARM Linux7cb72ad2011-01-03 22:35:28 +0000166#define MAX_NUM_TSFR_LLIS (PL08X_LLI_TSFR_SIZE/sizeof(struct pl08x_lli))
Linus Walleije8689e62010-09-28 15:57:37 +0200167#define PL08X_ALIGN 8
168
169static inline struct pl08x_dma_chan *to_pl08x_chan(struct dma_chan *chan)
170{
171 return container_of(chan, struct pl08x_dma_chan, chan);
172}
173
Russell King - ARM Linux501e67e2011-01-03 22:44:57 +0000174static inline struct pl08x_txd *to_pl08x_txd(struct dma_async_tx_descriptor *tx)
175{
176 return container_of(tx, struct pl08x_txd, tx);
177}
178
Linus Walleije8689e62010-09-28 15:57:37 +0200179/*
180 * Physical channel handling
181 */
182
183/* Whether a certain channel is busy or not */
184static int pl08x_phy_channel_busy(struct pl08x_phy_chan *ch)
185{
186 unsigned int val;
187
188 val = readl(ch->base + PL080_CH_CONFIG);
189 return val & PL080_CONFIG_ACTIVE;
190}
191
192/*
193 * Set the initial DMA register values i.e. those for the first LLI
Russell King - ARM Linuxe8b5e112011-01-03 22:30:24 +0000194 * The next LLI pointer and the configuration interrupt bit have
Russell King - ARM Linuxc885bee2011-01-03 22:38:52 +0000195 * been set when the LLIs were constructed. Poke them into the hardware
196 * and start the transfer.
Linus Walleije8689e62010-09-28 15:57:37 +0200197 */
Russell King - ARM Linuxc885bee2011-01-03 22:38:52 +0000198static void pl08x_start_txd(struct pl08x_dma_chan *plchan,
199 struct pl08x_txd *txd)
Linus Walleije8689e62010-09-28 15:57:37 +0200200{
Russell King - ARM Linuxc885bee2011-01-03 22:38:52 +0000201 struct pl08x_driver_data *pl08x = plchan->host;
Linus Walleije8689e62010-09-28 15:57:37 +0200202 struct pl08x_phy_chan *phychan = plchan->phychan;
Russell King - ARM Linux19524d72011-01-03 22:39:13 +0000203 struct pl08x_lli *lli = &txd->llis_va[0];
Russell King - ARM Linux09b3c322011-01-03 22:39:53 +0000204 u32 val;
Russell King - ARM Linuxc885bee2011-01-03 22:38:52 +0000205
206 plchan->at = txd;
Linus Walleije8689e62010-09-28 15:57:37 +0200207
Russell King - ARM Linuxc885bee2011-01-03 22:38:52 +0000208 /* Wait for channel inactive */
209 while (pl08x_phy_channel_busy(phychan))
Russell King - ARM Linux19386b322011-01-03 22:36:29 +0000210 cpu_relax();
Linus Walleije8689e62010-09-28 15:57:37 +0200211
Russell King - ARM Linuxc885bee2011-01-03 22:38:52 +0000212 dev_vdbg(&pl08x->adev->dev,
213 "WRITE channel %d: csrc=0x%08x, cdst=0x%08x, "
Russell King - ARM Linux19524d72011-01-03 22:39:13 +0000214 "clli=0x%08x, cctl=0x%08x, ccfg=0x%08x\n",
215 phychan->id, lli->src, lli->dst, lli->lli, lli->cctl,
Russell King - ARM Linux09b3c322011-01-03 22:39:53 +0000216 txd->ccfg);
Linus Walleije8689e62010-09-28 15:57:37 +0200217
Russell King - ARM Linux19524d72011-01-03 22:39:13 +0000218 writel(lli->src, phychan->base + PL080_CH_SRC_ADDR);
219 writel(lli->dst, phychan->base + PL080_CH_DST_ADDR);
220 writel(lli->lli, phychan->base + PL080_CH_LLI);
221 writel(lli->cctl, phychan->base + PL080_CH_CONTROL);
Russell King - ARM Linux09b3c322011-01-03 22:39:53 +0000222 writel(txd->ccfg, phychan->base + PL080_CH_CONFIG);
Russell King - ARM Linuxc885bee2011-01-03 22:38:52 +0000223
224 /* Enable the DMA channel */
225 /* Do not access config register until channel shows as disabled */
226 while (readl(pl08x->base + PL080_EN_CHAN) & (1 << phychan->id))
227 cpu_relax();
228
229 /* Do not access config register until channel shows as inactive */
230 val = readl(phychan->base + PL080_CH_CONFIG);
231 while ((val & PL080_CONFIG_ACTIVE) || (val & PL080_CONFIG_ENABLE))
232 val = readl(phychan->base + PL080_CH_CONFIG);
233
234 writel(val | PL080_CONFIG_ENABLE, phychan->base + PL080_CH_CONFIG);
Linus Walleije8689e62010-09-28 15:57:37 +0200235}
236
237/*
238 * Overall DMAC remains enabled always.
239 *
240 * Disabling individual channels could lose data.
241 *
Russell King - ARM Linux94ae8522011-01-16 20:18:05 +0000242 * Disable the peripheral DMA after disabling the DMAC in order to allow
243 * the DMAC FIFO to drain, and hence allow the channel to show inactive
Linus Walleije8689e62010-09-28 15:57:37 +0200244 */
245static void pl08x_pause_phy_chan(struct pl08x_phy_chan *ch)
246{
247 u32 val;
248
249 /* Set the HALT bit and wait for the FIFO to drain */
250 val = readl(ch->base + PL080_CH_CONFIG);
251 val |= PL080_CONFIG_HALT;
252 writel(val, ch->base + PL080_CH_CONFIG);
253
254 /* Wait for channel inactive */
255 while (pl08x_phy_channel_busy(ch))
Russell King - ARM Linux19386b322011-01-03 22:36:29 +0000256 cpu_relax();
Linus Walleije8689e62010-09-28 15:57:37 +0200257}
258
259static void pl08x_resume_phy_chan(struct pl08x_phy_chan *ch)
260{
261 u32 val;
262
263 /* Clear the HALT bit */
264 val = readl(ch->base + PL080_CH_CONFIG);
265 val &= ~PL080_CONFIG_HALT;
266 writel(val, ch->base + PL080_CH_CONFIG);
267}
268
269
Russell King - ARM Linuxfb526212011-01-27 12:32:53 +0000270/*
271 * pl08x_terminate_phy_chan() stops the channel, clears the FIFO and
272 * clears any pending interrupt status. This should not be used for
273 * an on-going transfer, but as a method of shutting down a channel
274 * (eg, when it's no longer used) or terminating a transfer.
275 */
276static void pl08x_terminate_phy_chan(struct pl08x_driver_data *pl08x,
277 struct pl08x_phy_chan *ch)
Linus Walleije8689e62010-09-28 15:57:37 +0200278{
Russell King - ARM Linuxfb526212011-01-27 12:32:53 +0000279 u32 val = readl(ch->base + PL080_CH_CONFIG);
Linus Walleije8689e62010-09-28 15:57:37 +0200280
Russell King - ARM Linuxfb526212011-01-27 12:32:53 +0000281 val &= ~(PL080_CONFIG_ENABLE | PL080_CONFIG_ERR_IRQ_MASK |
282 PL080_CONFIG_TC_IRQ_MASK);
Linus Walleije8689e62010-09-28 15:57:37 +0200283
Linus Walleije8689e62010-09-28 15:57:37 +0200284 writel(val, ch->base + PL080_CH_CONFIG);
Russell King - ARM Linuxfb526212011-01-27 12:32:53 +0000285
286 writel(1 << ch->id, pl08x->base + PL080_ERR_CLEAR);
287 writel(1 << ch->id, pl08x->base + PL080_TC_CLEAR);
Linus Walleije8689e62010-09-28 15:57:37 +0200288}
289
290static inline u32 get_bytes_in_cctl(u32 cctl)
291{
292 /* The source width defines the number of bytes */
293 u32 bytes = cctl & PL080_CONTROL_TRANSFER_SIZE_MASK;
294
295 switch (cctl >> PL080_CONTROL_SWIDTH_SHIFT) {
296 case PL080_WIDTH_8BIT:
297 break;
298 case PL080_WIDTH_16BIT:
299 bytes *= 2;
300 break;
301 case PL080_WIDTH_32BIT:
302 bytes *= 4;
303 break;
304 }
305 return bytes;
306}
307
308/* The channel should be paused when calling this */
309static u32 pl08x_getbytes_chan(struct pl08x_dma_chan *plchan)
310{
311 struct pl08x_phy_chan *ch;
Linus Walleije8689e62010-09-28 15:57:37 +0200312 struct pl08x_txd *txd;
313 unsigned long flags;
Russell King - ARM Linuxcace6582011-01-03 22:37:31 +0000314 size_t bytes = 0;
Linus Walleije8689e62010-09-28 15:57:37 +0200315
316 spin_lock_irqsave(&plchan->lock, flags);
Linus Walleije8689e62010-09-28 15:57:37 +0200317 ch = plchan->phychan;
318 txd = plchan->at;
319
320 /*
Russell King - ARM Linuxdb9f1362011-01-03 22:38:32 +0000321 * Follow the LLIs to get the number of remaining
322 * bytes in the currently active transaction.
Linus Walleije8689e62010-09-28 15:57:37 +0200323 */
324 if (ch && txd) {
Russell King - ARM Linux4c0df6a2011-01-03 22:36:50 +0000325 u32 clli = readl(ch->base + PL080_CH_LLI) & ~PL080_LLI_LM_AHB2;
Linus Walleije8689e62010-09-28 15:57:37 +0200326
Russell King - ARM Linuxdb9f1362011-01-03 22:38:32 +0000327 /* First get the remaining bytes in the active transfer */
Linus Walleije8689e62010-09-28 15:57:37 +0200328 bytes = get_bytes_in_cctl(readl(ch->base + PL080_CH_CONTROL));
329
330 if (clli) {
Russell King - ARM Linuxdb9f1362011-01-03 22:38:32 +0000331 struct pl08x_lli *llis_va = txd->llis_va;
332 dma_addr_t llis_bus = txd->llis_bus;
333 int index;
Linus Walleije8689e62010-09-28 15:57:37 +0200334
Russell King - ARM Linuxdb9f1362011-01-03 22:38:32 +0000335 BUG_ON(clli < llis_bus || clli >= llis_bus +
336 sizeof(struct pl08x_lli) * MAX_NUM_TSFR_LLIS);
Linus Walleije8689e62010-09-28 15:57:37 +0200337
Russell King - ARM Linuxdb9f1362011-01-03 22:38:32 +0000338 /*
339 * Locate the next LLI - as this is an array,
340 * it's simple maths to find.
341 */
342 index = (clli - llis_bus) / sizeof(struct pl08x_lli);
343
344 for (; index < MAX_NUM_TSFR_LLIS; index++) {
345 bytes += get_bytes_in_cctl(llis_va[index].cctl);
346
Linus Walleije8689e62010-09-28 15:57:37 +0200347 /*
Russell King - ARM Linuxe8b5e112011-01-03 22:30:24 +0000348 * A LLI pointer of 0 terminates the LLI list
Linus Walleije8689e62010-09-28 15:57:37 +0200349 */
Russell King - ARM Linuxdb9f1362011-01-03 22:38:32 +0000350 if (!llis_va[index].lli)
351 break;
Linus Walleije8689e62010-09-28 15:57:37 +0200352 }
353 }
354 }
355
356 /* Sum up all queued transactions */
Russell King - ARM Linux15c17232011-01-03 22:44:36 +0000357 if (!list_empty(&plchan->pend_list)) {
Russell King - ARM Linuxdb9f1362011-01-03 22:38:32 +0000358 struct pl08x_txd *txdi;
Russell King - ARM Linux15c17232011-01-03 22:44:36 +0000359 list_for_each_entry(txdi, &plchan->pend_list, node) {
Linus Walleije8689e62010-09-28 15:57:37 +0200360 bytes += txdi->len;
361 }
Linus Walleije8689e62010-09-28 15:57:37 +0200362 }
363
364 spin_unlock_irqrestore(&plchan->lock, flags);
365
366 return bytes;
367}
368
369/*
370 * Allocate a physical channel for a virtual channel
Russell King - ARM Linux94ae8522011-01-16 20:18:05 +0000371 *
372 * Try to locate a physical channel to be used for this transfer. If all
373 * are taken return NULL and the requester will have to cope by using
374 * some fallback PIO mode or retrying later.
Linus Walleije8689e62010-09-28 15:57:37 +0200375 */
376static struct pl08x_phy_chan *
377pl08x_get_phy_channel(struct pl08x_driver_data *pl08x,
378 struct pl08x_dma_chan *virt_chan)
379{
380 struct pl08x_phy_chan *ch = NULL;
381 unsigned long flags;
382 int i;
383
Linus Walleije8689e62010-09-28 15:57:37 +0200384 for (i = 0; i < pl08x->vd->channels; i++) {
385 ch = &pl08x->phy_chans[i];
386
387 spin_lock_irqsave(&ch->lock, flags);
388
389 if (!ch->serving) {
390 ch->serving = virt_chan;
391 ch->signal = -1;
392 spin_unlock_irqrestore(&ch->lock, flags);
393 break;
394 }
395
396 spin_unlock_irqrestore(&ch->lock, flags);
397 }
398
399 if (i == pl08x->vd->channels) {
400 /* No physical channel available, cope with it */
401 return NULL;
402 }
403
404 return ch;
405}
406
407static inline void pl08x_put_phy_channel(struct pl08x_driver_data *pl08x,
408 struct pl08x_phy_chan *ch)
409{
410 unsigned long flags;
411
Russell King - ARM Linuxfb526212011-01-27 12:32:53 +0000412 spin_lock_irqsave(&ch->lock, flags);
413
Linus Walleije8689e62010-09-28 15:57:37 +0200414 /* Stop the channel and clear its interrupts */
Russell King - ARM Linuxfb526212011-01-27 12:32:53 +0000415 pl08x_terminate_phy_chan(pl08x, ch);
Linus Walleije8689e62010-09-28 15:57:37 +0200416
417 /* Mark it as free */
Linus Walleije8689e62010-09-28 15:57:37 +0200418 ch->serving = NULL;
419 spin_unlock_irqrestore(&ch->lock, flags);
420}
421
422/*
423 * LLI handling
424 */
425
426static inline unsigned int pl08x_get_bytes_for_cctl(unsigned int coded)
427{
428 switch (coded) {
429 case PL080_WIDTH_8BIT:
430 return 1;
431 case PL080_WIDTH_16BIT:
432 return 2;
433 case PL080_WIDTH_32BIT:
434 return 4;
435 default:
436 break;
437 }
438 BUG();
439 return 0;
440}
441
442static inline u32 pl08x_cctl_bits(u32 cctl, u8 srcwidth, u8 dstwidth,
Russell King - ARM Linuxcace6582011-01-03 22:37:31 +0000443 size_t tsize)
Linus Walleije8689e62010-09-28 15:57:37 +0200444{
445 u32 retbits = cctl;
446
Russell King - ARM Linuxe8b5e112011-01-03 22:30:24 +0000447 /* Remove all src, dst and transfer size bits */
Linus Walleije8689e62010-09-28 15:57:37 +0200448 retbits &= ~PL080_CONTROL_DWIDTH_MASK;
449 retbits &= ~PL080_CONTROL_SWIDTH_MASK;
450 retbits &= ~PL080_CONTROL_TRANSFER_SIZE_MASK;
451
452 /* Then set the bits according to the parameters */
453 switch (srcwidth) {
454 case 1:
455 retbits |= PL080_WIDTH_8BIT << PL080_CONTROL_SWIDTH_SHIFT;
456 break;
457 case 2:
458 retbits |= PL080_WIDTH_16BIT << PL080_CONTROL_SWIDTH_SHIFT;
459 break;
460 case 4:
461 retbits |= PL080_WIDTH_32BIT << PL080_CONTROL_SWIDTH_SHIFT;
462 break;
463 default:
464 BUG();
465 break;
466 }
467
468 switch (dstwidth) {
469 case 1:
470 retbits |= PL080_WIDTH_8BIT << PL080_CONTROL_DWIDTH_SHIFT;
471 break;
472 case 2:
473 retbits |= PL080_WIDTH_16BIT << PL080_CONTROL_DWIDTH_SHIFT;
474 break;
475 case 4:
476 retbits |= PL080_WIDTH_32BIT << PL080_CONTROL_DWIDTH_SHIFT;
477 break;
478 default:
479 BUG();
480 break;
481 }
482
483 retbits |= tsize << PL080_CONTROL_TRANSFER_SIZE_SHIFT;
484 return retbits;
485}
486
Russell King - ARM Linux542361f2011-01-03 22:43:15 +0000487struct pl08x_lli_build_data {
488 struct pl08x_txd *txd;
489 struct pl08x_driver_data *pl08x;
490 struct pl08x_bus_data srcbus;
491 struct pl08x_bus_data dstbus;
492 size_t remainder;
493};
494
Linus Walleije8689e62010-09-28 15:57:37 +0200495/*
Russell King - ARM Linux94ae8522011-01-16 20:18:05 +0000496 * Autoselect a master bus to use for the transfer this prefers the
497 * destination bus if both available if fixed address on one bus the
498 * other will be chosen
Linus Walleije8689e62010-09-28 15:57:37 +0200499 */
Russell King - ARM Linux542361f2011-01-03 22:43:15 +0000500static void pl08x_choose_master_bus(struct pl08x_lli_build_data *bd,
501 struct pl08x_bus_data **mbus, struct pl08x_bus_data **sbus, u32 cctl)
Linus Walleije8689e62010-09-28 15:57:37 +0200502{
503 if (!(cctl & PL080_CONTROL_DST_INCR)) {
Russell King - ARM Linux542361f2011-01-03 22:43:15 +0000504 *mbus = &bd->srcbus;
505 *sbus = &bd->dstbus;
Linus Walleije8689e62010-09-28 15:57:37 +0200506 } else if (!(cctl & PL080_CONTROL_SRC_INCR)) {
Russell King - ARM Linux542361f2011-01-03 22:43:15 +0000507 *mbus = &bd->dstbus;
508 *sbus = &bd->srcbus;
Linus Walleije8689e62010-09-28 15:57:37 +0200509 } else {
Russell King - ARM Linux542361f2011-01-03 22:43:15 +0000510 if (bd->dstbus.buswidth == 4) {
511 *mbus = &bd->dstbus;
512 *sbus = &bd->srcbus;
513 } else if (bd->srcbus.buswidth == 4) {
514 *mbus = &bd->srcbus;
515 *sbus = &bd->dstbus;
516 } else if (bd->dstbus.buswidth == 2) {
517 *mbus = &bd->dstbus;
518 *sbus = &bd->srcbus;
519 } else if (bd->srcbus.buswidth == 2) {
520 *mbus = &bd->srcbus;
521 *sbus = &bd->dstbus;
Linus Walleije8689e62010-09-28 15:57:37 +0200522 } else {
Russell King - ARM Linux542361f2011-01-03 22:43:15 +0000523 /* bd->srcbus.buswidth == 1 */
524 *mbus = &bd->dstbus;
525 *sbus = &bd->srcbus;
Linus Walleije8689e62010-09-28 15:57:37 +0200526 }
527 }
528}
529
530/*
Russell King - ARM Linux94ae8522011-01-16 20:18:05 +0000531 * Fills in one LLI for a certain transfer descriptor and advance the counter
Linus Walleije8689e62010-09-28 15:57:37 +0200532 */
Russell King - ARM Linux542361f2011-01-03 22:43:15 +0000533static void pl08x_fill_lli_for_desc(struct pl08x_lli_build_data *bd,
534 int num_llis, int len, u32 cctl)
Linus Walleije8689e62010-09-28 15:57:37 +0200535{
Russell King - ARM Linux542361f2011-01-03 22:43:15 +0000536 struct pl08x_lli *llis_va = bd->txd->llis_va;
537 dma_addr_t llis_bus = bd->txd->llis_bus;
Linus Walleije8689e62010-09-28 15:57:37 +0200538
539 BUG_ON(num_llis >= MAX_NUM_TSFR_LLIS);
540
Russell King - ARM Linux30749cb2011-01-03 22:41:13 +0000541 llis_va[num_llis].cctl = cctl;
Russell King - ARM Linux542361f2011-01-03 22:43:15 +0000542 llis_va[num_llis].src = bd->srcbus.addr;
543 llis_va[num_llis].dst = bd->dstbus.addr;
Russell King - ARM Linuxbfddfb42011-01-03 22:38:12 +0000544 llis_va[num_llis].lli = llis_bus + (num_llis + 1) * sizeof(struct pl08x_lli);
Russell King - ARM Linux542361f2011-01-03 22:43:15 +0000545 if (bd->pl08x->lli_buses & PL08X_AHB2)
Russell King - ARM Linux30749cb2011-01-03 22:41:13 +0000546 llis_va[num_llis].lli |= PL080_LLI_LM_AHB2;
Linus Walleije8689e62010-09-28 15:57:37 +0200547
548 if (cctl & PL080_CONTROL_SRC_INCR)
Russell King - ARM Linux542361f2011-01-03 22:43:15 +0000549 bd->srcbus.addr += len;
Linus Walleije8689e62010-09-28 15:57:37 +0200550 if (cctl & PL080_CONTROL_DST_INCR)
Russell King - ARM Linux542361f2011-01-03 22:43:15 +0000551 bd->dstbus.addr += len;
Linus Walleije8689e62010-09-28 15:57:37 +0200552
Russell King - ARM Linux542361f2011-01-03 22:43:15 +0000553 BUG_ON(bd->remainder < len);
Russell King - ARM Linuxcace6582011-01-03 22:37:31 +0000554
Russell King - ARM Linux542361f2011-01-03 22:43:15 +0000555 bd->remainder -= len;
Linus Walleije8689e62010-09-28 15:57:37 +0200556}
557
558/*
Russell King - ARM Linuxb61be8d2011-01-03 22:42:14 +0000559 * Return number of bytes to fill to boundary, or len.
560 * This calculation works for any value of addr.
Linus Walleije8689e62010-09-28 15:57:37 +0200561 */
Russell King - ARM Linuxcace6582011-01-03 22:37:31 +0000562static inline size_t pl08x_pre_boundary(u32 addr, size_t len)
Linus Walleije8689e62010-09-28 15:57:37 +0200563{
Russell King - ARM Linuxb61be8d2011-01-03 22:42:14 +0000564 size_t boundary_len = PL08X_BOUNDARY_SIZE -
565 (addr & (PL08X_BOUNDARY_SIZE - 1));
Linus Walleije8689e62010-09-28 15:57:37 +0200566
Russell King - ARM Linuxb61be8d2011-01-03 22:42:14 +0000567 return min(boundary_len, len);
Linus Walleije8689e62010-09-28 15:57:37 +0200568}
569
570/*
571 * This fills in the table of LLIs for the transfer descriptor
572 * Note that we assume we never have to change the burst sizes
573 * Return 0 for error
574 */
575static int pl08x_fill_llis_for_desc(struct pl08x_driver_data *pl08x,
576 struct pl08x_txd *txd)
577{
Linus Walleije8689e62010-09-28 15:57:37 +0200578 struct pl08x_bus_data *mbus, *sbus;
Russell King - ARM Linux542361f2011-01-03 22:43:15 +0000579 struct pl08x_lli_build_data bd;
Linus Walleije8689e62010-09-28 15:57:37 +0200580 int num_llis = 0;
581 u32 cctl;
Russell King - ARM Linuxcace6582011-01-03 22:37:31 +0000582 size_t max_bytes_per_lli;
583 size_t total_bytes = 0;
Russell King - ARM Linux7cb72ad2011-01-03 22:35:28 +0000584 struct pl08x_lli *llis_va;
Linus Walleije8689e62010-09-28 15:57:37 +0200585
Linus Walleije8689e62010-09-28 15:57:37 +0200586 txd->llis_va = dma_pool_alloc(pl08x->pool, GFP_NOWAIT,
587 &txd->llis_bus);
588 if (!txd->llis_va) {
589 dev_err(&pl08x->adev->dev, "%s no memory for llis\n", __func__);
590 return 0;
591 }
592
593 pl08x->pool_ctr++;
594
Russell King - ARM Linux70b5ed62011-01-03 22:40:13 +0000595 /* Get the default CCTL */
596 cctl = txd->cctl;
Linus Walleije8689e62010-09-28 15:57:37 +0200597
Russell King - ARM Linux542361f2011-01-03 22:43:15 +0000598 bd.txd = txd;
599 bd.pl08x = pl08x;
Russell King - ARM Linuxd7244e92011-01-03 22:43:35 +0000600 bd.srcbus.addr = txd->src_addr;
601 bd.dstbus.addr = txd->dst_addr;
Russell King - ARM Linux542361f2011-01-03 22:43:15 +0000602
Linus Walleije8689e62010-09-28 15:57:37 +0200603 /* Find maximum width of the source bus */
Russell King - ARM Linux542361f2011-01-03 22:43:15 +0000604 bd.srcbus.maxwidth =
Linus Walleije8689e62010-09-28 15:57:37 +0200605 pl08x_get_bytes_for_cctl((cctl & PL080_CONTROL_SWIDTH_MASK) >>
606 PL080_CONTROL_SWIDTH_SHIFT);
607
608 /* Find maximum width of the destination bus */
Russell King - ARM Linux542361f2011-01-03 22:43:15 +0000609 bd.dstbus.maxwidth =
Linus Walleije8689e62010-09-28 15:57:37 +0200610 pl08x_get_bytes_for_cctl((cctl & PL080_CONTROL_DWIDTH_MASK) >>
611 PL080_CONTROL_DWIDTH_SHIFT);
612
613 /* Set up the bus widths to the maximum */
Russell King - ARM Linux542361f2011-01-03 22:43:15 +0000614 bd.srcbus.buswidth = bd.srcbus.maxwidth;
615 bd.dstbus.buswidth = bd.dstbus.maxwidth;
Linus Walleije8689e62010-09-28 15:57:37 +0200616 dev_vdbg(&pl08x->adev->dev,
617 "%s source bus is %d bytes wide, dest bus is %d bytes wide\n",
Russell King - ARM Linux542361f2011-01-03 22:43:15 +0000618 __func__, bd.srcbus.buswidth, bd.dstbus.buswidth);
Linus Walleije8689e62010-09-28 15:57:37 +0200619
620
621 /*
622 * Bytes transferred == tsize * MIN(buswidths), not max(buswidths)
623 */
Russell King - ARM Linux542361f2011-01-03 22:43:15 +0000624 max_bytes_per_lli = min(bd.srcbus.buswidth, bd.dstbus.buswidth) *
Linus Walleije8689e62010-09-28 15:57:37 +0200625 PL080_CONTROL_TRANSFER_SIZE_MASK;
626 dev_vdbg(&pl08x->adev->dev,
Russell King - ARM Linuxcace6582011-01-03 22:37:31 +0000627 "%s max bytes per lli = %zu\n",
Linus Walleije8689e62010-09-28 15:57:37 +0200628 __func__, max_bytes_per_lli);
629
630 /* We need to count this down to zero */
Russell King - ARM Linux542361f2011-01-03 22:43:15 +0000631 bd.remainder = txd->len;
Linus Walleije8689e62010-09-28 15:57:37 +0200632 dev_vdbg(&pl08x->adev->dev,
Russell King - ARM Linuxcace6582011-01-03 22:37:31 +0000633 "%s remainder = %zu\n",
Russell King - ARM Linux542361f2011-01-03 22:43:15 +0000634 __func__, bd.remainder);
Linus Walleije8689e62010-09-28 15:57:37 +0200635
636 /*
637 * Choose bus to align to
638 * - prefers destination bus if both available
639 * - if fixed address on one bus chooses other
Linus Walleije8689e62010-09-28 15:57:37 +0200640 */
Russell King - ARM Linux542361f2011-01-03 22:43:15 +0000641 pl08x_choose_master_bus(&bd, &mbus, &sbus, cctl);
Linus Walleije8689e62010-09-28 15:57:37 +0200642
Linus Walleije8689e62010-09-28 15:57:37 +0200643 if (txd->len < mbus->buswidth) {
Russell King - ARM Linux94ae8522011-01-16 20:18:05 +0000644 /* Less than a bus width available - send as single bytes */
Russell King - ARM Linux542361f2011-01-03 22:43:15 +0000645 while (bd.remainder) {
Linus Walleije8689e62010-09-28 15:57:37 +0200646 dev_vdbg(&pl08x->adev->dev,
647 "%s single byte LLIs for a transfer of "
Russell King - ARM Linux9c132992011-01-03 22:33:47 +0000648 "less than a bus width (remain 0x%08x)\n",
Russell King - ARM Linux542361f2011-01-03 22:43:15 +0000649 __func__, bd.remainder);
Linus Walleije8689e62010-09-28 15:57:37 +0200650 cctl = pl08x_cctl_bits(cctl, 1, 1, 1);
Russell King - ARM Linux542361f2011-01-03 22:43:15 +0000651 pl08x_fill_lli_for_desc(&bd, num_llis++, 1, cctl);
Linus Walleije8689e62010-09-28 15:57:37 +0200652 total_bytes++;
653 }
654 } else {
Russell King - ARM Linux94ae8522011-01-16 20:18:05 +0000655 /* Make one byte LLIs until master bus is aligned */
Linus Walleije8689e62010-09-28 15:57:37 +0200656 while ((mbus->addr) % (mbus->buswidth)) {
657 dev_vdbg(&pl08x->adev->dev,
658 "%s adjustment lli for less than bus width "
Russell King - ARM Linux9c132992011-01-03 22:33:47 +0000659 "(remain 0x%08x)\n",
Russell King - ARM Linux542361f2011-01-03 22:43:15 +0000660 __func__, bd.remainder);
Linus Walleije8689e62010-09-28 15:57:37 +0200661 cctl = pl08x_cctl_bits(cctl, 1, 1, 1);
Russell King - ARM Linux542361f2011-01-03 22:43:15 +0000662 pl08x_fill_lli_for_desc(&bd, num_llis++, 1, cctl);
Linus Walleije8689e62010-09-28 15:57:37 +0200663 total_bytes++;
664 }
665
666 /*
Russell King - ARM Linux94ae8522011-01-16 20:18:05 +0000667 * Master now aligned
Linus Walleije8689e62010-09-28 15:57:37 +0200668 * - if slave is not then we must set its width down
669 */
670 if (sbus->addr % sbus->buswidth) {
671 dev_dbg(&pl08x->adev->dev,
672 "%s set down bus width to one byte\n",
673 __func__);
674
675 sbus->buswidth = 1;
676 }
677
678 /*
679 * Make largest possible LLIs until less than one bus
680 * width left
681 */
Russell King - ARM Linux542361f2011-01-03 22:43:15 +0000682 while (bd.remainder > (mbus->buswidth - 1)) {
Russell King - ARM Linuxcace6582011-01-03 22:37:31 +0000683 size_t lli_len, target_len, tsize, odd_bytes;
Linus Walleije8689e62010-09-28 15:57:37 +0200684
685 /*
686 * If enough left try to send max possible,
687 * otherwise try to send the remainder
688 */
Russell King - ARM Linux542361f2011-01-03 22:43:15 +0000689 target_len = min(bd.remainder, max_bytes_per_lli);
Linus Walleije8689e62010-09-28 15:57:37 +0200690
691 /*
Russell King - ARM Linux5f638b42011-01-03 22:42:55 +0000692 * Set bus lengths for incrementing buses to the
693 * number of bytes which fill to next memory boundary,
694 * limiting on the target length calculated above.
Linus Walleije8689e62010-09-28 15:57:37 +0200695 */
696 if (cctl & PL080_CONTROL_SRC_INCR)
Russell King - ARM Linux542361f2011-01-03 22:43:15 +0000697 bd.srcbus.fill_bytes =
698 pl08x_pre_boundary(bd.srcbus.addr,
Russell King - ARM Linux5f638b42011-01-03 22:42:55 +0000699 target_len);
Linus Walleije8689e62010-09-28 15:57:37 +0200700 else
Russell King - ARM Linux542361f2011-01-03 22:43:15 +0000701 bd.srcbus.fill_bytes = target_len;
Linus Walleije8689e62010-09-28 15:57:37 +0200702
703 if (cctl & PL080_CONTROL_DST_INCR)
Russell King - ARM Linux542361f2011-01-03 22:43:15 +0000704 bd.dstbus.fill_bytes =
705 pl08x_pre_boundary(bd.dstbus.addr,
Russell King - ARM Linux5f638b42011-01-03 22:42:55 +0000706 target_len);
Linus Walleije8689e62010-09-28 15:57:37 +0200707 else
Russell King - ARM Linux542361f2011-01-03 22:43:15 +0000708 bd.dstbus.fill_bytes = target_len;
Linus Walleije8689e62010-09-28 15:57:37 +0200709
Russell King - ARM Linux5f638b42011-01-03 22:42:55 +0000710 /* Find the nearest */
Russell King - ARM Linux542361f2011-01-03 22:43:15 +0000711 lli_len = min(bd.srcbus.fill_bytes,
712 bd.dstbus.fill_bytes);
Linus Walleije8689e62010-09-28 15:57:37 +0200713
Russell King - ARM Linux542361f2011-01-03 22:43:15 +0000714 BUG_ON(lli_len > bd.remainder);
Linus Walleije8689e62010-09-28 15:57:37 +0200715
716 if (lli_len <= 0) {
717 dev_err(&pl08x->adev->dev,
Russell King - ARM Linuxcace6582011-01-03 22:37:31 +0000718 "%s lli_len is %zu, <= 0\n",
Linus Walleije8689e62010-09-28 15:57:37 +0200719 __func__, lli_len);
720 return 0;
721 }
722
723 if (lli_len == target_len) {
724 /*
Russell King - ARM Linux94ae8522011-01-16 20:18:05 +0000725 * Can send what we wanted.
726 * Maintain alignment
Linus Walleije8689e62010-09-28 15:57:37 +0200727 */
728 lli_len = (lli_len/mbus->buswidth) *
729 mbus->buswidth;
730 odd_bytes = 0;
731 } else {
732 /*
733 * So now we know how many bytes to transfer
Russell King - ARM Linux94ae8522011-01-16 20:18:05 +0000734 * to get to the nearest boundary. The next
735 * LLI will past the boundary. However, we
736 * may be working to a boundary on the slave
737 * bus. We need to ensure the master stays
738 * aligned, and that we are working in
739 * multiples of the bus widths.
Linus Walleije8689e62010-09-28 15:57:37 +0200740 */
741 odd_bytes = lli_len % mbus->buswidth;
Linus Walleije8689e62010-09-28 15:57:37 +0200742 lli_len -= odd_bytes;
743
744 }
745
746 if (lli_len) {
747 /*
748 * Check against minimum bus alignment:
749 * Calculate actual transfer size in relation
750 * to bus width an get a maximum remainder of
751 * the smallest bus width - 1
752 */
753 /* FIXME: use round_down()? */
754 tsize = lli_len / min(mbus->buswidth,
755 sbus->buswidth);
756 lli_len = tsize * min(mbus->buswidth,
757 sbus->buswidth);
758
759 if (target_len != lli_len) {
760 dev_vdbg(&pl08x->adev->dev,
Russell King - ARM Linuxcace6582011-01-03 22:37:31 +0000761 "%s can't send what we want. Desired 0x%08zx, lli of 0x%08zx bytes in txd of 0x%08zx\n",
Linus Walleije8689e62010-09-28 15:57:37 +0200762 __func__, target_len, lli_len, txd->len);
763 }
764
765 cctl = pl08x_cctl_bits(cctl,
Russell King - ARM Linux542361f2011-01-03 22:43:15 +0000766 bd.srcbus.buswidth,
767 bd.dstbus.buswidth,
Linus Walleije8689e62010-09-28 15:57:37 +0200768 tsize);
769
770 dev_vdbg(&pl08x->adev->dev,
Russell King - ARM Linuxcace6582011-01-03 22:37:31 +0000771 "%s fill lli with single lli chunk of size 0x%08zx (remainder 0x%08zx)\n",
Russell King - ARM Linux542361f2011-01-03 22:43:15 +0000772 __func__, lli_len, bd.remainder);
773 pl08x_fill_lli_for_desc(&bd, num_llis++,
774 lli_len, cctl);
Linus Walleije8689e62010-09-28 15:57:37 +0200775 total_bytes += lli_len;
776 }
777
778
779 if (odd_bytes) {
780 /*
Russell King - ARM Linux94ae8522011-01-16 20:18:05 +0000781 * Creep past the boundary, maintaining
782 * master alignment
Linus Walleije8689e62010-09-28 15:57:37 +0200783 */
784 int j;
785 for (j = 0; (j < mbus->buswidth)
Russell King - ARM Linux542361f2011-01-03 22:43:15 +0000786 && (bd.remainder); j++) {
Linus Walleije8689e62010-09-28 15:57:37 +0200787 cctl = pl08x_cctl_bits(cctl, 1, 1, 1);
788 dev_vdbg(&pl08x->adev->dev,
Russell King - ARM Linuxcace6582011-01-03 22:37:31 +0000789 "%s align with boundary, single byte (remain 0x%08zx)\n",
Russell King - ARM Linux542361f2011-01-03 22:43:15 +0000790 __func__, bd.remainder);
791 pl08x_fill_lli_for_desc(&bd,
792 num_llis++, 1, cctl);
Linus Walleije8689e62010-09-28 15:57:37 +0200793 total_bytes++;
794 }
795 }
796 }
797
798 /*
799 * Send any odd bytes
800 */
Russell King - ARM Linux542361f2011-01-03 22:43:15 +0000801 while (bd.remainder) {
Linus Walleije8689e62010-09-28 15:57:37 +0200802 cctl = pl08x_cctl_bits(cctl, 1, 1, 1);
803 dev_vdbg(&pl08x->adev->dev,
Russell King - ARM Linuxcace6582011-01-03 22:37:31 +0000804 "%s align with boundary, single odd byte (remain %zu)\n",
Russell King - ARM Linux542361f2011-01-03 22:43:15 +0000805 __func__, bd.remainder);
806 pl08x_fill_lli_for_desc(&bd, num_llis++, 1, cctl);
Linus Walleije8689e62010-09-28 15:57:37 +0200807 total_bytes++;
808 }
809 }
810 if (total_bytes != txd->len) {
811 dev_err(&pl08x->adev->dev,
Russell King - ARM Linuxcace6582011-01-03 22:37:31 +0000812 "%s size of encoded lli:s don't match total txd, transferred 0x%08zx from size 0x%08zx\n",
Linus Walleije8689e62010-09-28 15:57:37 +0200813 __func__, total_bytes, txd->len);
814 return 0;
815 }
816
817 if (num_llis >= MAX_NUM_TSFR_LLIS) {
818 dev_err(&pl08x->adev->dev,
819 "%s need to increase MAX_NUM_TSFR_LLIS from 0x%08x\n",
820 __func__, (u32) MAX_NUM_TSFR_LLIS);
821 return 0;
822 }
Linus Walleije8689e62010-09-28 15:57:37 +0200823
Russell King - ARM Linuxb58b6b52011-01-03 22:34:48 +0000824 llis_va = txd->llis_va;
Russell King - ARM Linux94ae8522011-01-16 20:18:05 +0000825 /* The final LLI terminates the LLI. */
Russell King - ARM Linuxbfddfb42011-01-03 22:38:12 +0000826 llis_va[num_llis - 1].lli = 0;
Russell King - ARM Linux94ae8522011-01-16 20:18:05 +0000827 /* The final LLI element shall also fire an interrupt. */
Russell King - ARM Linuxb58b6b52011-01-03 22:34:48 +0000828 llis_va[num_llis - 1].cctl |= PL080_CONTROL_TC_IRQ_EN;
Linus Walleije8689e62010-09-28 15:57:37 +0200829
Linus Walleije8689e62010-09-28 15:57:37 +0200830#ifdef VERBOSE_DEBUG
831 {
832 int i;
833
834 for (i = 0; i < num_llis; i++) {
835 dev_vdbg(&pl08x->adev->dev,
Russell King - ARM Linux9c132992011-01-03 22:33:47 +0000836 "lli %d @%p: csrc=0x%08x, cdst=0x%08x, cctl=0x%08x, clli=0x%08x\n",
Linus Walleije8689e62010-09-28 15:57:37 +0200837 i,
838 &llis_va[i],
839 llis_va[i].src,
840 llis_va[i].dst,
841 llis_va[i].cctl,
Russell King - ARM Linuxbfddfb42011-01-03 22:38:12 +0000842 llis_va[i].lli
Linus Walleije8689e62010-09-28 15:57:37 +0200843 );
844 }
845 }
846#endif
847
848 return num_llis;
849}
850
851/* You should call this with the struct pl08x lock held */
852static void pl08x_free_txd(struct pl08x_driver_data *pl08x,
853 struct pl08x_txd *txd)
854{
Linus Walleije8689e62010-09-28 15:57:37 +0200855 /* Free the LLI */
Russell King - ARM Linux56b61882011-01-03 22:37:10 +0000856 dma_pool_free(pl08x->pool, txd->llis_va, txd->llis_bus);
Linus Walleije8689e62010-09-28 15:57:37 +0200857
858 pl08x->pool_ctr--;
859
860 kfree(txd);
861}
862
863static void pl08x_free_txd_list(struct pl08x_driver_data *pl08x,
864 struct pl08x_dma_chan *plchan)
865{
866 struct pl08x_txd *txdi = NULL;
867 struct pl08x_txd *next;
868
Russell King - ARM Linux15c17232011-01-03 22:44:36 +0000869 if (!list_empty(&plchan->pend_list)) {
Linus Walleije8689e62010-09-28 15:57:37 +0200870 list_for_each_entry_safe(txdi,
Russell King - ARM Linux15c17232011-01-03 22:44:36 +0000871 next, &plchan->pend_list, node) {
Linus Walleije8689e62010-09-28 15:57:37 +0200872 list_del(&txdi->node);
873 pl08x_free_txd(pl08x, txdi);
874 }
Linus Walleije8689e62010-09-28 15:57:37 +0200875 }
876}
877
878/*
879 * The DMA ENGINE API
880 */
881static int pl08x_alloc_chan_resources(struct dma_chan *chan)
882{
883 return 0;
884}
885
886static void pl08x_free_chan_resources(struct dma_chan *chan)
887{
888}
889
890/*
891 * This should be called with the channel plchan->lock held
892 */
893static int prep_phy_channel(struct pl08x_dma_chan *plchan,
894 struct pl08x_txd *txd)
895{
896 struct pl08x_driver_data *pl08x = plchan->host;
897 struct pl08x_phy_chan *ch;
898 int ret;
899
900 /* Check if we already have a channel */
901 if (plchan->phychan)
902 return 0;
903
904 ch = pl08x_get_phy_channel(pl08x, plchan);
905 if (!ch) {
906 /* No physical channel available, cope with it */
907 dev_dbg(&pl08x->adev->dev, "no physical channel available for xfer on %s\n", plchan->name);
908 return -EBUSY;
909 }
910
911 /*
912 * OK we have a physical channel: for memcpy() this is all we
913 * need, but for slaves the physical signals may be muxed!
914 * Can the platform allow us to use this channel?
915 */
916 if (plchan->slave &&
917 ch->signal < 0 &&
918 pl08x->pd->get_signal) {
919 ret = pl08x->pd->get_signal(plchan);
920 if (ret < 0) {
921 dev_dbg(&pl08x->adev->dev,
922 "unable to use physical channel %d for transfer on %s due to platform restrictions\n",
923 ch->id, plchan->name);
924 /* Release physical channel & return */
925 pl08x_put_phy_channel(pl08x, ch);
926 return -EBUSY;
927 }
928 ch->signal = ret;
Russell King - ARM Linux09b3c322011-01-03 22:39:53 +0000929
930 /* Assign the flow control signal to this channel */
931 if (txd->direction == DMA_TO_DEVICE)
932 txd->ccfg |= ch->signal << PL080_CONFIG_DST_SEL_SHIFT;
933 else if (txd->direction == DMA_FROM_DEVICE)
934 txd->ccfg |= ch->signal << PL080_CONFIG_SRC_SEL_SHIFT;
Linus Walleije8689e62010-09-28 15:57:37 +0200935 }
936
937 dev_dbg(&pl08x->adev->dev, "allocated physical channel %d and signal %d for xfer on %s\n",
938 ch->id,
939 ch->signal,
940 plchan->name);
941
Russell King - ARM Linux8087aac2011-01-03 22:45:17 +0000942 plchan->phychan_hold++;
Linus Walleije8689e62010-09-28 15:57:37 +0200943 plchan->phychan = ch;
944
945 return 0;
946}
947
Russell King - ARM Linux8c8cc2b2011-01-03 22:36:09 +0000948static void release_phy_channel(struct pl08x_dma_chan *plchan)
949{
950 struct pl08x_driver_data *pl08x = plchan->host;
951
952 if ((plchan->phychan->signal >= 0) && pl08x->pd->put_signal) {
953 pl08x->pd->put_signal(plchan);
954 plchan->phychan->signal = -1;
955 }
956 pl08x_put_phy_channel(pl08x, plchan->phychan);
957 plchan->phychan = NULL;
958}
959
Linus Walleije8689e62010-09-28 15:57:37 +0200960static dma_cookie_t pl08x_tx_submit(struct dma_async_tx_descriptor *tx)
961{
962 struct pl08x_dma_chan *plchan = to_pl08x_chan(tx->chan);
Russell King - ARM Linux501e67e2011-01-03 22:44:57 +0000963 struct pl08x_txd *txd = to_pl08x_txd(tx);
Russell King - ARM Linuxc370e592011-01-03 22:45:37 +0000964 unsigned long flags;
965
966 spin_lock_irqsave(&plchan->lock, flags);
Linus Walleije8689e62010-09-28 15:57:37 +0200967
Russell King - ARM Linux91aa5fa2011-01-03 22:31:04 +0000968 plchan->chan.cookie += 1;
969 if (plchan->chan.cookie < 0)
970 plchan->chan.cookie = 1;
971 tx->cookie = plchan->chan.cookie;
Russell King - ARM Linux501e67e2011-01-03 22:44:57 +0000972
973 /* Put this onto the pending list */
974 list_add_tail(&txd->node, &plchan->pend_list);
975
976 /*
977 * If there was no physical channel available for this memcpy,
978 * stack the request up and indicate that the channel is waiting
979 * for a free physical channel.
980 */
981 if (!plchan->slave && !plchan->phychan) {
982 /* Do this memcpy whenever there is a channel ready */
983 plchan->state = PL08X_CHAN_WAITING;
984 plchan->waiting = txd;
Russell King - ARM Linux8087aac2011-01-03 22:45:17 +0000985 } else {
986 plchan->phychan_hold--;
Russell King - ARM Linux501e67e2011-01-03 22:44:57 +0000987 }
988
Russell King - ARM Linuxc370e592011-01-03 22:45:37 +0000989 spin_unlock_irqrestore(&plchan->lock, flags);
Linus Walleije8689e62010-09-28 15:57:37 +0200990
991 return tx->cookie;
992}
993
994static struct dma_async_tx_descriptor *pl08x_prep_dma_interrupt(
995 struct dma_chan *chan, unsigned long flags)
996{
997 struct dma_async_tx_descriptor *retval = NULL;
998
999 return retval;
1000}
1001
1002/*
Russell King - ARM Linux94ae8522011-01-16 20:18:05 +00001003 * Code accessing dma_async_is_complete() in a tight loop may give problems.
1004 * If slaves are relying on interrupts to signal completion this function
1005 * must not be called with interrupts disabled.
Linus Walleije8689e62010-09-28 15:57:37 +02001006 */
1007static enum dma_status
1008pl08x_dma_tx_status(struct dma_chan *chan,
1009 dma_cookie_t cookie,
1010 struct dma_tx_state *txstate)
1011{
1012 struct pl08x_dma_chan *plchan = to_pl08x_chan(chan);
1013 dma_cookie_t last_used;
1014 dma_cookie_t last_complete;
1015 enum dma_status ret;
1016 u32 bytesleft = 0;
1017
Russell King - ARM Linux91aa5fa2011-01-03 22:31:04 +00001018 last_used = plchan->chan.cookie;
Linus Walleije8689e62010-09-28 15:57:37 +02001019 last_complete = plchan->lc;
1020
1021 ret = dma_async_is_complete(cookie, last_complete, last_used);
1022 if (ret == DMA_SUCCESS) {
1023 dma_set_tx_state(txstate, last_complete, last_used, 0);
1024 return ret;
1025 }
1026
1027 /*
Linus Walleije8689e62010-09-28 15:57:37 +02001028 * This cookie not complete yet
1029 */
Russell King - ARM Linux91aa5fa2011-01-03 22:31:04 +00001030 last_used = plchan->chan.cookie;
Linus Walleije8689e62010-09-28 15:57:37 +02001031 last_complete = plchan->lc;
1032
1033 /* Get number of bytes left in the active transactions and queue */
1034 bytesleft = pl08x_getbytes_chan(plchan);
1035
1036 dma_set_tx_state(txstate, last_complete, last_used,
1037 bytesleft);
1038
1039 if (plchan->state == PL08X_CHAN_PAUSED)
1040 return DMA_PAUSED;
1041
1042 /* Whether waiting or running, we're in progress */
1043 return DMA_IN_PROGRESS;
1044}
1045
1046/* PrimeCell DMA extension */
1047struct burst_table {
1048 int burstwords;
1049 u32 reg;
1050};
1051
1052static const struct burst_table burst_sizes[] = {
1053 {
1054 .burstwords = 256,
1055 .reg = (PL080_BSIZE_256 << PL080_CONTROL_SB_SIZE_SHIFT) |
1056 (PL080_BSIZE_256 << PL080_CONTROL_DB_SIZE_SHIFT),
1057 },
1058 {
1059 .burstwords = 128,
1060 .reg = (PL080_BSIZE_128 << PL080_CONTROL_SB_SIZE_SHIFT) |
1061 (PL080_BSIZE_128 << PL080_CONTROL_DB_SIZE_SHIFT),
1062 },
1063 {
1064 .burstwords = 64,
1065 .reg = (PL080_BSIZE_64 << PL080_CONTROL_SB_SIZE_SHIFT) |
1066 (PL080_BSIZE_64 << PL080_CONTROL_DB_SIZE_SHIFT),
1067 },
1068 {
1069 .burstwords = 32,
1070 .reg = (PL080_BSIZE_32 << PL080_CONTROL_SB_SIZE_SHIFT) |
1071 (PL080_BSIZE_32 << PL080_CONTROL_DB_SIZE_SHIFT),
1072 },
1073 {
1074 .burstwords = 16,
1075 .reg = (PL080_BSIZE_16 << PL080_CONTROL_SB_SIZE_SHIFT) |
1076 (PL080_BSIZE_16 << PL080_CONTROL_DB_SIZE_SHIFT),
1077 },
1078 {
1079 .burstwords = 8,
1080 .reg = (PL080_BSIZE_8 << PL080_CONTROL_SB_SIZE_SHIFT) |
1081 (PL080_BSIZE_8 << PL080_CONTROL_DB_SIZE_SHIFT),
1082 },
1083 {
1084 .burstwords = 4,
1085 .reg = (PL080_BSIZE_4 << PL080_CONTROL_SB_SIZE_SHIFT) |
1086 (PL080_BSIZE_4 << PL080_CONTROL_DB_SIZE_SHIFT),
1087 },
1088 {
1089 .burstwords = 1,
1090 .reg = (PL080_BSIZE_1 << PL080_CONTROL_SB_SIZE_SHIFT) |
1091 (PL080_BSIZE_1 << PL080_CONTROL_DB_SIZE_SHIFT),
1092 },
1093};
1094
Russell King - ARM Linuxf0fd9442011-01-03 22:45:57 +00001095static int dma_set_runtime_config(struct dma_chan *chan,
1096 struct dma_slave_config *config)
Linus Walleije8689e62010-09-28 15:57:37 +02001097{
1098 struct pl08x_dma_chan *plchan = to_pl08x_chan(chan);
1099 struct pl08x_driver_data *pl08x = plchan->host;
1100 struct pl08x_channel_data *cd = plchan->cd;
1101 enum dma_slave_buswidth addr_width;
Russell King - ARM Linuxf0fd9442011-01-03 22:45:57 +00001102 dma_addr_t addr;
Linus Walleije8689e62010-09-28 15:57:37 +02001103 u32 maxburst;
1104 u32 cctl = 0;
Russell King - ARM Linux4440aac2011-01-03 22:30:44 +00001105 int i;
Linus Walleije8689e62010-09-28 15:57:37 +02001106
Russell King - ARM Linuxb7f75862011-01-03 22:46:17 +00001107 if (!plchan->slave)
1108 return -EINVAL;
1109
Linus Walleije8689e62010-09-28 15:57:37 +02001110 /* Transfer direction */
1111 plchan->runtime_direction = config->direction;
1112 if (config->direction == DMA_TO_DEVICE) {
Russell King - ARM Linuxf0fd9442011-01-03 22:45:57 +00001113 addr = config->dst_addr;
Linus Walleije8689e62010-09-28 15:57:37 +02001114 addr_width = config->dst_addr_width;
1115 maxburst = config->dst_maxburst;
1116 } else if (config->direction == DMA_FROM_DEVICE) {
Russell King - ARM Linuxf0fd9442011-01-03 22:45:57 +00001117 addr = config->src_addr;
Linus Walleije8689e62010-09-28 15:57:37 +02001118 addr_width = config->src_addr_width;
1119 maxburst = config->src_maxburst;
1120 } else {
1121 dev_err(&pl08x->adev->dev,
1122 "bad runtime_config: alien transfer direction\n");
Russell King - ARM Linuxf0fd9442011-01-03 22:45:57 +00001123 return -EINVAL;
Linus Walleije8689e62010-09-28 15:57:37 +02001124 }
1125
1126 switch (addr_width) {
1127 case DMA_SLAVE_BUSWIDTH_1_BYTE:
1128 cctl |= (PL080_WIDTH_8BIT << PL080_CONTROL_SWIDTH_SHIFT) |
1129 (PL080_WIDTH_8BIT << PL080_CONTROL_DWIDTH_SHIFT);
1130 break;
1131 case DMA_SLAVE_BUSWIDTH_2_BYTES:
1132 cctl |= (PL080_WIDTH_16BIT << PL080_CONTROL_SWIDTH_SHIFT) |
1133 (PL080_WIDTH_16BIT << PL080_CONTROL_DWIDTH_SHIFT);
1134 break;
1135 case DMA_SLAVE_BUSWIDTH_4_BYTES:
1136 cctl |= (PL080_WIDTH_32BIT << PL080_CONTROL_SWIDTH_SHIFT) |
1137 (PL080_WIDTH_32BIT << PL080_CONTROL_DWIDTH_SHIFT);
1138 break;
1139 default:
1140 dev_err(&pl08x->adev->dev,
1141 "bad runtime_config: alien address width\n");
Russell King - ARM Linuxf0fd9442011-01-03 22:45:57 +00001142 return -EINVAL;
Linus Walleije8689e62010-09-28 15:57:37 +02001143 }
1144
1145 /*
1146 * Now decide on a maxburst:
Russell King - ARM Linux4440aac2011-01-03 22:30:44 +00001147 * If this channel will only request single transfers, set this
1148 * down to ONE element. Also select one element if no maxburst
1149 * is specified.
Linus Walleije8689e62010-09-28 15:57:37 +02001150 */
Russell King - ARM Linux4440aac2011-01-03 22:30:44 +00001151 if (plchan->cd->single || maxburst == 0) {
Linus Walleije8689e62010-09-28 15:57:37 +02001152 cctl |= (PL080_BSIZE_1 << PL080_CONTROL_SB_SIZE_SHIFT) |
1153 (PL080_BSIZE_1 << PL080_CONTROL_DB_SIZE_SHIFT);
1154 } else {
Russell King - ARM Linux4440aac2011-01-03 22:30:44 +00001155 for (i = 0; i < ARRAY_SIZE(burst_sizes); i++)
Linus Walleije8689e62010-09-28 15:57:37 +02001156 if (burst_sizes[i].burstwords <= maxburst)
1157 break;
Linus Walleije8689e62010-09-28 15:57:37 +02001158 cctl |= burst_sizes[i].reg;
1159 }
1160
Russell King - ARM Linuxf0fd9442011-01-03 22:45:57 +00001161 plchan->runtime_addr = addr;
1162
Linus Walleije8689e62010-09-28 15:57:37 +02001163 /* Modify the default channel data to fit PrimeCell request */
1164 cd->cctl = cctl;
Linus Walleije8689e62010-09-28 15:57:37 +02001165
1166 dev_dbg(&pl08x->adev->dev,
1167 "configured channel %s (%s) for %s, data width %d, "
Russell King - ARM Linux4983a042011-01-03 22:39:33 +00001168 "maxburst %d words, LE, CCTL=0x%08x\n",
Linus Walleije8689e62010-09-28 15:57:37 +02001169 dma_chan_name(chan), plchan->name,
1170 (config->direction == DMA_FROM_DEVICE) ? "RX" : "TX",
1171 addr_width,
1172 maxburst,
Russell King - ARM Linux4983a042011-01-03 22:39:33 +00001173 cctl);
Russell King - ARM Linuxf0fd9442011-01-03 22:45:57 +00001174
1175 return 0;
Linus Walleije8689e62010-09-28 15:57:37 +02001176}
1177
1178/*
1179 * Slave transactions callback to the slave device to allow
1180 * synchronization of slave DMA signals with the DMAC enable
1181 */
1182static void pl08x_issue_pending(struct dma_chan *chan)
1183{
1184 struct pl08x_dma_chan *plchan = to_pl08x_chan(chan);
Linus Walleije8689e62010-09-28 15:57:37 +02001185 unsigned long flags;
1186
1187 spin_lock_irqsave(&plchan->lock, flags);
Russell King - ARM Linux9c0bb432011-01-03 22:32:05 +00001188 /* Something is already active, or we're waiting for a channel... */
1189 if (plchan->at || plchan->state == PL08X_CHAN_WAITING) {
1190 spin_unlock_irqrestore(&plchan->lock, flags);
Linus Walleije8689e62010-09-28 15:57:37 +02001191 return;
Russell King - ARM Linux9c0bb432011-01-03 22:32:05 +00001192 }
Linus Walleije8689e62010-09-28 15:57:37 +02001193
1194 /* Take the first element in the queue and execute it */
Russell King - ARM Linux15c17232011-01-03 22:44:36 +00001195 if (!list_empty(&plchan->pend_list)) {
Linus Walleije8689e62010-09-28 15:57:37 +02001196 struct pl08x_txd *next;
1197
Russell King - ARM Linux15c17232011-01-03 22:44:36 +00001198 next = list_first_entry(&plchan->pend_list,
Linus Walleije8689e62010-09-28 15:57:37 +02001199 struct pl08x_txd,
1200 node);
1201 list_del(&next->node);
Linus Walleije8689e62010-09-28 15:57:37 +02001202 plchan->state = PL08X_CHAN_RUNNING;
1203
Russell King - ARM Linuxc885bee2011-01-03 22:38:52 +00001204 pl08x_start_txd(plchan, next);
Linus Walleije8689e62010-09-28 15:57:37 +02001205 }
1206
1207 spin_unlock_irqrestore(&plchan->lock, flags);
1208}
1209
1210static int pl08x_prep_channel_resources(struct pl08x_dma_chan *plchan,
1211 struct pl08x_txd *txd)
1212{
Linus Walleije8689e62010-09-28 15:57:37 +02001213 struct pl08x_driver_data *pl08x = plchan->host;
Russell King - ARM Linuxc370e592011-01-03 22:45:37 +00001214 unsigned long flags;
1215 int num_llis, ret;
Linus Walleije8689e62010-09-28 15:57:37 +02001216
1217 num_llis = pl08x_fill_llis_for_desc(pl08x, txd);
Russell King - ARM Linuxdafa7312011-01-03 22:31:45 +00001218 if (!num_llis) {
1219 kfree(txd);
Linus Walleije8689e62010-09-28 15:57:37 +02001220 return -EINVAL;
Russell King - ARM Linuxdafa7312011-01-03 22:31:45 +00001221 }
Linus Walleije8689e62010-09-28 15:57:37 +02001222
Russell King - ARM Linuxc370e592011-01-03 22:45:37 +00001223 spin_lock_irqsave(&plchan->lock, flags);
Linus Walleije8689e62010-09-28 15:57:37 +02001224
Linus Walleije8689e62010-09-28 15:57:37 +02001225 /*
1226 * See if we already have a physical channel allocated,
1227 * else this is the time to try to get one.
1228 */
1229 ret = prep_phy_channel(plchan, txd);
1230 if (ret) {
1231 /*
Russell King - ARM Linux501e67e2011-01-03 22:44:57 +00001232 * No physical channel was available.
1233 *
1234 * memcpy transfers can be sorted out at submission time.
1235 *
1236 * Slave transfers may have been denied due to platform
1237 * channel muxing restrictions. Since there is no guarantee
1238 * that this will ever be resolved, and the signal must be
1239 * acquired AFTER acquiring the physical channel, we will let
1240 * them be NACK:ed with -EBUSY here. The drivers can retry
1241 * the prep() call if they are eager on doing this using DMA.
Linus Walleije8689e62010-09-28 15:57:37 +02001242 */
1243 if (plchan->slave) {
1244 pl08x_free_txd_list(pl08x, plchan);
Russell King - ARM Linux501e67e2011-01-03 22:44:57 +00001245 pl08x_free_txd(pl08x, txd);
Russell King - ARM Linuxc370e592011-01-03 22:45:37 +00001246 spin_unlock_irqrestore(&plchan->lock, flags);
Linus Walleije8689e62010-09-28 15:57:37 +02001247 return -EBUSY;
1248 }
Linus Walleije8689e62010-09-28 15:57:37 +02001249 } else
1250 /*
Russell King - ARM Linux94ae8522011-01-16 20:18:05 +00001251 * Else we're all set, paused and ready to roll, status
1252 * will switch to PL08X_CHAN_RUNNING when we call
1253 * issue_pending(). If there is something running on the
1254 * channel already we don't change its state.
Linus Walleije8689e62010-09-28 15:57:37 +02001255 */
1256 if (plchan->state == PL08X_CHAN_IDLE)
1257 plchan->state = PL08X_CHAN_PAUSED;
1258
Russell King - ARM Linuxc370e592011-01-03 22:45:37 +00001259 spin_unlock_irqrestore(&plchan->lock, flags);
Linus Walleije8689e62010-09-28 15:57:37 +02001260
1261 return 0;
1262}
1263
Russell King - ARM Linux30749cb2011-01-03 22:41:13 +00001264/*
1265 * Given the source and destination available bus masks, select which
1266 * will be routed to each port. We try to have source and destination
1267 * on separate ports, but always respect the allowable settings.
1268 */
1269static u32 pl08x_select_bus(struct pl08x_driver_data *pl08x, u8 src, u8 dst)
1270{
1271 u32 cctl = 0;
1272
1273 if (!(dst & PL08X_AHB1) || ((dst & PL08X_AHB2) && (src & PL08X_AHB1)))
1274 cctl |= PL080_CONTROL_DST_AHB2;
1275 if (!(src & PL08X_AHB1) || ((src & PL08X_AHB2) && !(dst & PL08X_AHB2)))
1276 cctl |= PL080_CONTROL_SRC_AHB2;
1277
1278 return cctl;
1279}
1280
Russell King - ARM Linuxc0428792011-01-03 22:43:56 +00001281static struct pl08x_txd *pl08x_get_txd(struct pl08x_dma_chan *plchan,
1282 unsigned long flags)
Russell King - ARM Linuxac3cd202011-01-03 22:35:49 +00001283{
1284 struct pl08x_txd *txd = kzalloc(sizeof(struct pl08x_txd), GFP_NOWAIT);
1285
1286 if (txd) {
1287 dma_async_tx_descriptor_init(&txd->tx, &plchan->chan);
Russell King - ARM Linuxc0428792011-01-03 22:43:56 +00001288 txd->tx.flags = flags;
Russell King - ARM Linuxac3cd202011-01-03 22:35:49 +00001289 txd->tx.tx_submit = pl08x_tx_submit;
1290 INIT_LIST_HEAD(&txd->node);
Russell King - ARM Linux4983a042011-01-03 22:39:33 +00001291
1292 /* Always enable error and terminal interrupts */
1293 txd->ccfg = PL080_CONFIG_ERR_IRQ_MASK |
1294 PL080_CONFIG_TC_IRQ_MASK;
Russell King - ARM Linuxac3cd202011-01-03 22:35:49 +00001295 }
1296 return txd;
1297}
1298
Linus Walleije8689e62010-09-28 15:57:37 +02001299/*
1300 * Initialize a descriptor to be used by memcpy submit
1301 */
1302static struct dma_async_tx_descriptor *pl08x_prep_dma_memcpy(
1303 struct dma_chan *chan, dma_addr_t dest, dma_addr_t src,
1304 size_t len, unsigned long flags)
1305{
1306 struct pl08x_dma_chan *plchan = to_pl08x_chan(chan);
1307 struct pl08x_driver_data *pl08x = plchan->host;
1308 struct pl08x_txd *txd;
1309 int ret;
1310
Russell King - ARM Linuxc0428792011-01-03 22:43:56 +00001311 txd = pl08x_get_txd(plchan, flags);
Linus Walleije8689e62010-09-28 15:57:37 +02001312 if (!txd) {
1313 dev_err(&pl08x->adev->dev,
1314 "%s no memory for descriptor\n", __func__);
1315 return NULL;
1316 }
1317
Linus Walleije8689e62010-09-28 15:57:37 +02001318 txd->direction = DMA_NONE;
Russell King - ARM Linuxd7244e92011-01-03 22:43:35 +00001319 txd->src_addr = src;
1320 txd->dst_addr = dest;
Russell King - ARM Linuxc7da9a52011-01-03 22:40:53 +00001321 txd->len = len;
Linus Walleije8689e62010-09-28 15:57:37 +02001322
1323 /* Set platform data for m2m */
Russell King - ARM Linux4983a042011-01-03 22:39:33 +00001324 txd->ccfg |= PL080_FLOW_MEM2MEM << PL080_CONFIG_FLOW_CONTROL_SHIFT;
Russell King - ARM Linuxc7da9a52011-01-03 22:40:53 +00001325 txd->cctl = pl08x->pd->memcpy_channel.cctl &
1326 ~(PL080_CONTROL_DST_AHB2 | PL080_CONTROL_SRC_AHB2);
Russell King - ARM Linux4983a042011-01-03 22:39:33 +00001327
Linus Walleije8689e62010-09-28 15:57:37 +02001328 /* Both to be incremented or the code will break */
Russell King - ARM Linux70b5ed62011-01-03 22:40:13 +00001329 txd->cctl |= PL080_CONTROL_SRC_INCR | PL080_CONTROL_DST_INCR;
Russell King - ARM Linuxc7da9a52011-01-03 22:40:53 +00001330
Russell King - ARM Linuxc7da9a52011-01-03 22:40:53 +00001331 if (pl08x->vd->dualmaster)
Russell King - ARM Linux30749cb2011-01-03 22:41:13 +00001332 txd->cctl |= pl08x_select_bus(pl08x,
1333 pl08x->mem_buses, pl08x->mem_buses);
Linus Walleije8689e62010-09-28 15:57:37 +02001334
Linus Walleije8689e62010-09-28 15:57:37 +02001335 ret = pl08x_prep_channel_resources(plchan, txd);
1336 if (ret)
1337 return NULL;
Linus Walleije8689e62010-09-28 15:57:37 +02001338
1339 return &txd->tx;
1340}
1341
Russell King - ARM Linux3e2a0372011-01-03 22:32:46 +00001342static struct dma_async_tx_descriptor *pl08x_prep_slave_sg(
Linus Walleije8689e62010-09-28 15:57:37 +02001343 struct dma_chan *chan, struct scatterlist *sgl,
1344 unsigned int sg_len, enum dma_data_direction direction,
1345 unsigned long flags)
1346{
1347 struct pl08x_dma_chan *plchan = to_pl08x_chan(chan);
1348 struct pl08x_driver_data *pl08x = plchan->host;
1349 struct pl08x_txd *txd;
Russell King - ARM Linux30749cb2011-01-03 22:41:13 +00001350 u8 src_buses, dst_buses;
Linus Walleije8689e62010-09-28 15:57:37 +02001351 int ret;
1352
1353 /*
1354 * Current implementation ASSUMES only one sg
1355 */
1356 if (sg_len != 1) {
1357 dev_err(&pl08x->adev->dev, "%s prepared too long sglist\n",
1358 __func__);
1359 BUG();
1360 }
1361
1362 dev_dbg(&pl08x->adev->dev, "%s prepare transaction of %d bytes from %s\n",
1363 __func__, sgl->length, plchan->name);
1364
Russell King - ARM Linuxc0428792011-01-03 22:43:56 +00001365 txd = pl08x_get_txd(plchan, flags);
Linus Walleije8689e62010-09-28 15:57:37 +02001366 if (!txd) {
1367 dev_err(&pl08x->adev->dev, "%s no txd\n", __func__);
1368 return NULL;
1369 }
1370
Linus Walleije8689e62010-09-28 15:57:37 +02001371 if (direction != plchan->runtime_direction)
1372 dev_err(&pl08x->adev->dev, "%s DMA setup does not match "
1373 "the direction configured for the PrimeCell\n",
1374 __func__);
1375
1376 /*
1377 * Set up addresses, the PrimeCell configured address
1378 * will take precedence since this may configure the
1379 * channel target address dynamically at runtime.
1380 */
1381 txd->direction = direction;
Russell King - ARM Linuxc7da9a52011-01-03 22:40:53 +00001382 txd->len = sgl->length;
1383
Russell King - ARM Linux1cae78f2011-01-03 22:40:33 +00001384 txd->cctl = plchan->cd->cctl &
Russell King - ARM Linuxc7da9a52011-01-03 22:40:53 +00001385 ~(PL080_CONTROL_SRC_AHB2 | PL080_CONTROL_DST_AHB2 |
1386 PL080_CONTROL_SRC_INCR | PL080_CONTROL_DST_INCR |
Russell King - ARM Linux1cae78f2011-01-03 22:40:33 +00001387 PL080_CONTROL_PROT_MASK);
1388
1389 /* Access the cell in privileged mode, non-bufferable, non-cacheable */
1390 txd->cctl |= PL080_CONTROL_PROT_SYS;
Russell King - ARM Linux70b5ed62011-01-03 22:40:13 +00001391
Linus Walleije8689e62010-09-28 15:57:37 +02001392 if (direction == DMA_TO_DEVICE) {
Russell King - ARM Linux4983a042011-01-03 22:39:33 +00001393 txd->ccfg |= PL080_FLOW_MEM2PER << PL080_CONFIG_FLOW_CONTROL_SHIFT;
Russell King - ARM Linux1cae78f2011-01-03 22:40:33 +00001394 txd->cctl |= PL080_CONTROL_SRC_INCR;
Russell King - ARM Linuxd7244e92011-01-03 22:43:35 +00001395 txd->src_addr = sgl->dma_address;
Linus Walleije8689e62010-09-28 15:57:37 +02001396 if (plchan->runtime_addr)
Russell King - ARM Linuxd7244e92011-01-03 22:43:35 +00001397 txd->dst_addr = plchan->runtime_addr;
Linus Walleije8689e62010-09-28 15:57:37 +02001398 else
Russell King - ARM Linuxd7244e92011-01-03 22:43:35 +00001399 txd->dst_addr = plchan->cd->addr;
Russell King - ARM Linux30749cb2011-01-03 22:41:13 +00001400 src_buses = pl08x->mem_buses;
1401 dst_buses = plchan->cd->periph_buses;
Linus Walleije8689e62010-09-28 15:57:37 +02001402 } else if (direction == DMA_FROM_DEVICE) {
Russell King - ARM Linux4983a042011-01-03 22:39:33 +00001403 txd->ccfg |= PL080_FLOW_PER2MEM << PL080_CONFIG_FLOW_CONTROL_SHIFT;
Russell King - ARM Linux1cae78f2011-01-03 22:40:33 +00001404 txd->cctl |= PL080_CONTROL_DST_INCR;
Linus Walleije8689e62010-09-28 15:57:37 +02001405 if (plchan->runtime_addr)
Russell King - ARM Linuxd7244e92011-01-03 22:43:35 +00001406 txd->src_addr = plchan->runtime_addr;
Linus Walleije8689e62010-09-28 15:57:37 +02001407 else
Russell King - ARM Linuxd7244e92011-01-03 22:43:35 +00001408 txd->src_addr = plchan->cd->addr;
1409 txd->dst_addr = sgl->dma_address;
Russell King - ARM Linux30749cb2011-01-03 22:41:13 +00001410 src_buses = plchan->cd->periph_buses;
1411 dst_buses = pl08x->mem_buses;
Linus Walleije8689e62010-09-28 15:57:37 +02001412 } else {
1413 dev_err(&pl08x->adev->dev,
1414 "%s direction unsupported\n", __func__);
1415 return NULL;
1416 }
Linus Walleije8689e62010-09-28 15:57:37 +02001417
Russell King - ARM Linux30749cb2011-01-03 22:41:13 +00001418 txd->cctl |= pl08x_select_bus(pl08x, src_buses, dst_buses);
1419
Linus Walleije8689e62010-09-28 15:57:37 +02001420 ret = pl08x_prep_channel_resources(plchan, txd);
1421 if (ret)
1422 return NULL;
Linus Walleije8689e62010-09-28 15:57:37 +02001423
1424 return &txd->tx;
1425}
1426
1427static int pl08x_control(struct dma_chan *chan, enum dma_ctrl_cmd cmd,
1428 unsigned long arg)
1429{
1430 struct pl08x_dma_chan *plchan = to_pl08x_chan(chan);
1431 struct pl08x_driver_data *pl08x = plchan->host;
1432 unsigned long flags;
1433 int ret = 0;
1434
1435 /* Controls applicable to inactive channels */
1436 if (cmd == DMA_SLAVE_CONFIG) {
Russell King - ARM Linuxf0fd9442011-01-03 22:45:57 +00001437 return dma_set_runtime_config(chan,
1438 (struct dma_slave_config *)arg);
Linus Walleije8689e62010-09-28 15:57:37 +02001439 }
1440
1441 /*
1442 * Anything succeeds on channels with no physical allocation and
1443 * no queued transfers.
1444 */
1445 spin_lock_irqsave(&plchan->lock, flags);
1446 if (!plchan->phychan && !plchan->at) {
1447 spin_unlock_irqrestore(&plchan->lock, flags);
1448 return 0;
1449 }
1450
1451 switch (cmd) {
1452 case DMA_TERMINATE_ALL:
1453 plchan->state = PL08X_CHAN_IDLE;
1454
1455 if (plchan->phychan) {
Russell King - ARM Linuxfb526212011-01-27 12:32:53 +00001456 pl08x_terminate_phy_chan(pl08x, plchan->phychan);
Linus Walleije8689e62010-09-28 15:57:37 +02001457
1458 /*
1459 * Mark physical channel as free and free any slave
1460 * signal
1461 */
Russell King - ARM Linux8c8cc2b2011-01-03 22:36:09 +00001462 release_phy_channel(plchan);
Linus Walleije8689e62010-09-28 15:57:37 +02001463 }
Linus Walleije8689e62010-09-28 15:57:37 +02001464 /* Dequeue jobs and free LLIs */
1465 if (plchan->at) {
1466 pl08x_free_txd(pl08x, plchan->at);
1467 plchan->at = NULL;
1468 }
1469 /* Dequeue jobs not yet fired as well */
1470 pl08x_free_txd_list(pl08x, plchan);
1471 break;
1472 case DMA_PAUSE:
1473 pl08x_pause_phy_chan(plchan->phychan);
1474 plchan->state = PL08X_CHAN_PAUSED;
1475 break;
1476 case DMA_RESUME:
1477 pl08x_resume_phy_chan(plchan->phychan);
1478 plchan->state = PL08X_CHAN_RUNNING;
1479 break;
1480 default:
1481 /* Unknown command */
1482 ret = -ENXIO;
1483 break;
1484 }
1485
1486 spin_unlock_irqrestore(&plchan->lock, flags);
1487
1488 return ret;
1489}
1490
1491bool pl08x_filter_id(struct dma_chan *chan, void *chan_id)
1492{
1493 struct pl08x_dma_chan *plchan = to_pl08x_chan(chan);
1494 char *name = chan_id;
1495
1496 /* Check that the channel is not taken! */
1497 if (!strcmp(plchan->name, name))
1498 return true;
1499
1500 return false;
1501}
1502
1503/*
1504 * Just check that the device is there and active
Russell King - ARM Linux94ae8522011-01-16 20:18:05 +00001505 * TODO: turn this bit on/off depending on the number of physical channels
1506 * actually used, if it is zero... well shut it off. That will save some
1507 * power. Cut the clock at the same time.
Linus Walleije8689e62010-09-28 15:57:37 +02001508 */
1509static void pl08x_ensure_on(struct pl08x_driver_data *pl08x)
1510{
1511 u32 val;
1512
1513 val = readl(pl08x->base + PL080_CONFIG);
1514 val &= ~(PL080_CONFIG_M2_BE | PL080_CONFIG_M1_BE | PL080_CONFIG_ENABLE);
Russell King - ARM Linuxe8b5e112011-01-03 22:30:24 +00001515 /* We implicitly clear bit 1 and that means little-endian mode */
Linus Walleije8689e62010-09-28 15:57:37 +02001516 val |= PL080_CONFIG_ENABLE;
1517 writel(val, pl08x->base + PL080_CONFIG);
1518}
1519
Russell King - ARM Linux3d992e12011-01-03 22:44:16 +00001520static void pl08x_unmap_buffers(struct pl08x_txd *txd)
1521{
1522 struct device *dev = txd->tx.chan->device->dev;
1523
1524 if (!(txd->tx.flags & DMA_COMPL_SKIP_SRC_UNMAP)) {
1525 if (txd->tx.flags & DMA_COMPL_SRC_UNMAP_SINGLE)
1526 dma_unmap_single(dev, txd->src_addr, txd->len,
1527 DMA_TO_DEVICE);
1528 else
1529 dma_unmap_page(dev, txd->src_addr, txd->len,
1530 DMA_TO_DEVICE);
1531 }
1532 if (!(txd->tx.flags & DMA_COMPL_SKIP_DEST_UNMAP)) {
1533 if (txd->tx.flags & DMA_COMPL_DEST_UNMAP_SINGLE)
1534 dma_unmap_single(dev, txd->dst_addr, txd->len,
1535 DMA_FROM_DEVICE);
1536 else
1537 dma_unmap_page(dev, txd->dst_addr, txd->len,
1538 DMA_FROM_DEVICE);
1539 }
1540}
1541
Linus Walleije8689e62010-09-28 15:57:37 +02001542static void pl08x_tasklet(unsigned long data)
1543{
1544 struct pl08x_dma_chan *plchan = (struct pl08x_dma_chan *) data;
Linus Walleije8689e62010-09-28 15:57:37 +02001545 struct pl08x_driver_data *pl08x = plchan->host;
Russell King - ARM Linux858c21c2011-01-03 22:41:34 +00001546 struct pl08x_txd *txd;
Russell King - ARM Linuxbf072af2011-01-03 22:31:24 +00001547 unsigned long flags;
Linus Walleije8689e62010-09-28 15:57:37 +02001548
Russell King - ARM Linuxbf072af2011-01-03 22:31:24 +00001549 spin_lock_irqsave(&plchan->lock, flags);
Linus Walleije8689e62010-09-28 15:57:37 +02001550
Russell King - ARM Linux858c21c2011-01-03 22:41:34 +00001551 txd = plchan->at;
1552 plchan->at = NULL;
1553
1554 if (txd) {
Russell King - ARM Linux94ae8522011-01-16 20:18:05 +00001555 /* Update last completed */
Russell King - ARM Linux858c21c2011-01-03 22:41:34 +00001556 plchan->lc = txd->tx.cookie;
Linus Walleije8689e62010-09-28 15:57:37 +02001557 }
Russell King - ARM Linux8087aac2011-01-03 22:45:17 +00001558
Russell King - ARM Linux94ae8522011-01-16 20:18:05 +00001559 /* If a new descriptor is queued, set it up plchan->at is NULL here */
Russell King - ARM Linux15c17232011-01-03 22:44:36 +00001560 if (!list_empty(&plchan->pend_list)) {
Linus Walleije8689e62010-09-28 15:57:37 +02001561 struct pl08x_txd *next;
1562
Russell King - ARM Linux15c17232011-01-03 22:44:36 +00001563 next = list_first_entry(&plchan->pend_list,
Linus Walleije8689e62010-09-28 15:57:37 +02001564 struct pl08x_txd,
1565 node);
1566 list_del(&next->node);
Russell King - ARM Linuxc885bee2011-01-03 22:38:52 +00001567
1568 pl08x_start_txd(plchan, next);
Russell King - ARM Linux8087aac2011-01-03 22:45:17 +00001569 } else if (plchan->phychan_hold) {
1570 /*
1571 * This channel is still in use - we have a new txd being
1572 * prepared and will soon be queued. Don't give up the
1573 * physical channel.
1574 */
Linus Walleije8689e62010-09-28 15:57:37 +02001575 } else {
1576 struct pl08x_dma_chan *waiting = NULL;
1577
1578 /*
1579 * No more jobs, so free up the physical channel
1580 * Free any allocated signal on slave transfers too
1581 */
Russell King - ARM Linux8c8cc2b2011-01-03 22:36:09 +00001582 release_phy_channel(plchan);
Linus Walleije8689e62010-09-28 15:57:37 +02001583 plchan->state = PL08X_CHAN_IDLE;
1584
1585 /*
Russell King - ARM Linux94ae8522011-01-16 20:18:05 +00001586 * And NOW before anyone else can grab that free:d up
1587 * physical channel, see if there is some memcpy pending
1588 * that seriously needs to start because of being stacked
1589 * up while we were choking the physical channels with data.
Linus Walleije8689e62010-09-28 15:57:37 +02001590 */
1591 list_for_each_entry(waiting, &pl08x->memcpy.channels,
1592 chan.device_node) {
1593 if (waiting->state == PL08X_CHAN_WAITING &&
1594 waiting->waiting != NULL) {
1595 int ret;
1596
1597 /* This should REALLY not fail now */
1598 ret = prep_phy_channel(waiting,
1599 waiting->waiting);
1600 BUG_ON(ret);
Russell King - ARM Linux8087aac2011-01-03 22:45:17 +00001601 waiting->phychan_hold--;
Linus Walleije8689e62010-09-28 15:57:37 +02001602 waiting->state = PL08X_CHAN_RUNNING;
1603 waiting->waiting = NULL;
1604 pl08x_issue_pending(&waiting->chan);
1605 break;
1606 }
1607 }
1608 }
1609
Russell King - ARM Linuxbf072af2011-01-03 22:31:24 +00001610 spin_unlock_irqrestore(&plchan->lock, flags);
Russell King - ARM Linux858c21c2011-01-03 22:41:34 +00001611
Russell King - ARM Linux3d992e12011-01-03 22:44:16 +00001612 if (txd) {
1613 dma_async_tx_callback callback = txd->tx.callback;
1614 void *callback_param = txd->tx.callback_param;
1615
1616 /* Don't try to unmap buffers on slave channels */
1617 if (!plchan->slave)
1618 pl08x_unmap_buffers(txd);
1619
1620 /* Free the descriptor */
1621 spin_lock_irqsave(&plchan->lock, flags);
1622 pl08x_free_txd(pl08x, txd);
1623 spin_unlock_irqrestore(&plchan->lock, flags);
1624
1625 /* Callback to signal completion */
1626 if (callback)
1627 callback(callback_param);
1628 }
Linus Walleije8689e62010-09-28 15:57:37 +02001629}
1630
1631static irqreturn_t pl08x_irq(int irq, void *dev)
1632{
1633 struct pl08x_driver_data *pl08x = dev;
1634 u32 mask = 0;
1635 u32 val;
1636 int i;
1637
1638 val = readl(pl08x->base + PL080_ERR_STATUS);
1639 if (val) {
Russell King - ARM Linux94ae8522011-01-16 20:18:05 +00001640 /* An error interrupt (on one or more channels) */
Linus Walleije8689e62010-09-28 15:57:37 +02001641 dev_err(&pl08x->adev->dev,
1642 "%s error interrupt, register value 0x%08x\n",
1643 __func__, val);
1644 /*
1645 * Simply clear ALL PL08X error interrupts,
1646 * regardless of channel and cause
1647 * FIXME: should be 0x00000003 on PL081 really.
1648 */
1649 writel(0x000000FF, pl08x->base + PL080_ERR_CLEAR);
1650 }
1651 val = readl(pl08x->base + PL080_INT_STATUS);
1652 for (i = 0; i < pl08x->vd->channels; i++) {
1653 if ((1 << i) & val) {
1654 /* Locate physical channel */
1655 struct pl08x_phy_chan *phychan = &pl08x->phy_chans[i];
1656 struct pl08x_dma_chan *plchan = phychan->serving;
1657
1658 /* Schedule tasklet on this channel */
1659 tasklet_schedule(&plchan->tasklet);
1660
1661 mask |= (1 << i);
1662 }
1663 }
Russell King - ARM Linux94ae8522011-01-16 20:18:05 +00001664 /* Clear only the terminal interrupts on channels we processed */
Linus Walleije8689e62010-09-28 15:57:37 +02001665 writel(mask, pl08x->base + PL080_TC_CLEAR);
1666
1667 return mask ? IRQ_HANDLED : IRQ_NONE;
1668}
1669
1670/*
1671 * Initialise the DMAC memcpy/slave channels.
1672 * Make a local wrapper to hold required data
1673 */
1674static int pl08x_dma_init_virtual_channels(struct pl08x_driver_data *pl08x,
1675 struct dma_device *dmadev,
1676 unsigned int channels,
1677 bool slave)
1678{
1679 struct pl08x_dma_chan *chan;
1680 int i;
1681
1682 INIT_LIST_HEAD(&dmadev->channels);
Russell King - ARM Linux94ae8522011-01-16 20:18:05 +00001683
Linus Walleije8689e62010-09-28 15:57:37 +02001684 /*
1685 * Register as many many memcpy as we have physical channels,
1686 * we won't always be able to use all but the code will have
1687 * to cope with that situation.
1688 */
1689 for (i = 0; i < channels; i++) {
1690 chan = kzalloc(sizeof(struct pl08x_dma_chan), GFP_KERNEL);
1691 if (!chan) {
1692 dev_err(&pl08x->adev->dev,
1693 "%s no memory for channel\n", __func__);
1694 return -ENOMEM;
1695 }
1696
1697 chan->host = pl08x;
1698 chan->state = PL08X_CHAN_IDLE;
1699
1700 if (slave) {
1701 chan->slave = true;
1702 chan->name = pl08x->pd->slave_channels[i].bus_id;
1703 chan->cd = &pl08x->pd->slave_channels[i];
1704 } else {
1705 chan->cd = &pl08x->pd->memcpy_channel;
1706 chan->name = kasprintf(GFP_KERNEL, "memcpy%d", i);
1707 if (!chan->name) {
1708 kfree(chan);
1709 return -ENOMEM;
1710 }
1711 }
Russell King - ARM Linuxb58b6b52011-01-03 22:34:48 +00001712 if (chan->cd->circular_buffer) {
1713 dev_err(&pl08x->adev->dev,
1714 "channel %s: circular buffers not supported\n",
1715 chan->name);
1716 kfree(chan);
1717 continue;
1718 }
Linus Walleije8689e62010-09-28 15:57:37 +02001719 dev_info(&pl08x->adev->dev,
1720 "initialize virtual channel \"%s\"\n",
1721 chan->name);
1722
1723 chan->chan.device = dmadev;
Russell King - ARM Linux91aa5fa2011-01-03 22:31:04 +00001724 chan->chan.cookie = 0;
1725 chan->lc = 0;
Linus Walleije8689e62010-09-28 15:57:37 +02001726
1727 spin_lock_init(&chan->lock);
Russell King - ARM Linux15c17232011-01-03 22:44:36 +00001728 INIT_LIST_HEAD(&chan->pend_list);
Linus Walleije8689e62010-09-28 15:57:37 +02001729 tasklet_init(&chan->tasklet, pl08x_tasklet,
1730 (unsigned long) chan);
1731
1732 list_add_tail(&chan->chan.device_node, &dmadev->channels);
1733 }
1734 dev_info(&pl08x->adev->dev, "initialized %d virtual %s channels\n",
1735 i, slave ? "slave" : "memcpy");
1736 return i;
1737}
1738
1739static void pl08x_free_virtual_channels(struct dma_device *dmadev)
1740{
1741 struct pl08x_dma_chan *chan = NULL;
1742 struct pl08x_dma_chan *next;
1743
1744 list_for_each_entry_safe(chan,
1745 next, &dmadev->channels, chan.device_node) {
1746 list_del(&chan->chan.device_node);
1747 kfree(chan);
1748 }
1749}
1750
1751#ifdef CONFIG_DEBUG_FS
1752static const char *pl08x_state_str(enum pl08x_dma_chan_state state)
1753{
1754 switch (state) {
1755 case PL08X_CHAN_IDLE:
1756 return "idle";
1757 case PL08X_CHAN_RUNNING:
1758 return "running";
1759 case PL08X_CHAN_PAUSED:
1760 return "paused";
1761 case PL08X_CHAN_WAITING:
1762 return "waiting";
1763 default:
1764 break;
1765 }
1766 return "UNKNOWN STATE";
1767}
1768
1769static int pl08x_debugfs_show(struct seq_file *s, void *data)
1770{
1771 struct pl08x_driver_data *pl08x = s->private;
1772 struct pl08x_dma_chan *chan;
1773 struct pl08x_phy_chan *ch;
1774 unsigned long flags;
1775 int i;
1776
1777 seq_printf(s, "PL08x physical channels:\n");
1778 seq_printf(s, "CHANNEL:\tUSER:\n");
1779 seq_printf(s, "--------\t-----\n");
1780 for (i = 0; i < pl08x->vd->channels; i++) {
1781 struct pl08x_dma_chan *virt_chan;
1782
1783 ch = &pl08x->phy_chans[i];
1784
1785 spin_lock_irqsave(&ch->lock, flags);
1786 virt_chan = ch->serving;
1787
1788 seq_printf(s, "%d\t\t%s\n",
1789 ch->id, virt_chan ? virt_chan->name : "(none)");
1790
1791 spin_unlock_irqrestore(&ch->lock, flags);
1792 }
1793
1794 seq_printf(s, "\nPL08x virtual memcpy channels:\n");
1795 seq_printf(s, "CHANNEL:\tSTATE:\n");
1796 seq_printf(s, "--------\t------\n");
1797 list_for_each_entry(chan, &pl08x->memcpy.channels, chan.device_node) {
Russell King - ARM Linux3e2a0372011-01-03 22:32:46 +00001798 seq_printf(s, "%s\t\t%s\n", chan->name,
Linus Walleije8689e62010-09-28 15:57:37 +02001799 pl08x_state_str(chan->state));
1800 }
1801
1802 seq_printf(s, "\nPL08x virtual slave channels:\n");
1803 seq_printf(s, "CHANNEL:\tSTATE:\n");
1804 seq_printf(s, "--------\t------\n");
1805 list_for_each_entry(chan, &pl08x->slave.channels, chan.device_node) {
Russell King - ARM Linux3e2a0372011-01-03 22:32:46 +00001806 seq_printf(s, "%s\t\t%s\n", chan->name,
Linus Walleije8689e62010-09-28 15:57:37 +02001807 pl08x_state_str(chan->state));
1808 }
1809
1810 return 0;
1811}
1812
1813static int pl08x_debugfs_open(struct inode *inode, struct file *file)
1814{
1815 return single_open(file, pl08x_debugfs_show, inode->i_private);
1816}
1817
1818static const struct file_operations pl08x_debugfs_operations = {
1819 .open = pl08x_debugfs_open,
1820 .read = seq_read,
1821 .llseek = seq_lseek,
1822 .release = single_release,
1823};
1824
1825static void init_pl08x_debugfs(struct pl08x_driver_data *pl08x)
1826{
1827 /* Expose a simple debugfs interface to view all clocks */
1828 (void) debugfs_create_file(dev_name(&pl08x->adev->dev), S_IFREG | S_IRUGO,
1829 NULL, pl08x,
1830 &pl08x_debugfs_operations);
1831}
1832
1833#else
1834static inline void init_pl08x_debugfs(struct pl08x_driver_data *pl08x)
1835{
1836}
1837#endif
1838
1839static int pl08x_probe(struct amba_device *adev, struct amba_id *id)
1840{
1841 struct pl08x_driver_data *pl08x;
Russell King - ARM Linuxf96ca9ec2011-01-03 22:35:08 +00001842 const struct vendor_data *vd = id->data;
Linus Walleije8689e62010-09-28 15:57:37 +02001843 int ret = 0;
1844 int i;
1845
1846 ret = amba_request_regions(adev, NULL);
1847 if (ret)
1848 return ret;
1849
1850 /* Create the driver state holder */
1851 pl08x = kzalloc(sizeof(struct pl08x_driver_data), GFP_KERNEL);
1852 if (!pl08x) {
1853 ret = -ENOMEM;
1854 goto out_no_pl08x;
1855 }
1856
1857 /* Initialize memcpy engine */
1858 dma_cap_set(DMA_MEMCPY, pl08x->memcpy.cap_mask);
1859 pl08x->memcpy.dev = &adev->dev;
1860 pl08x->memcpy.device_alloc_chan_resources = pl08x_alloc_chan_resources;
1861 pl08x->memcpy.device_free_chan_resources = pl08x_free_chan_resources;
1862 pl08x->memcpy.device_prep_dma_memcpy = pl08x_prep_dma_memcpy;
1863 pl08x->memcpy.device_prep_dma_interrupt = pl08x_prep_dma_interrupt;
1864 pl08x->memcpy.device_tx_status = pl08x_dma_tx_status;
1865 pl08x->memcpy.device_issue_pending = pl08x_issue_pending;
1866 pl08x->memcpy.device_control = pl08x_control;
1867
1868 /* Initialize slave engine */
1869 dma_cap_set(DMA_SLAVE, pl08x->slave.cap_mask);
1870 pl08x->slave.dev = &adev->dev;
1871 pl08x->slave.device_alloc_chan_resources = pl08x_alloc_chan_resources;
1872 pl08x->slave.device_free_chan_resources = pl08x_free_chan_resources;
1873 pl08x->slave.device_prep_dma_interrupt = pl08x_prep_dma_interrupt;
1874 pl08x->slave.device_tx_status = pl08x_dma_tx_status;
1875 pl08x->slave.device_issue_pending = pl08x_issue_pending;
1876 pl08x->slave.device_prep_slave_sg = pl08x_prep_slave_sg;
1877 pl08x->slave.device_control = pl08x_control;
1878
1879 /* Get the platform data */
1880 pl08x->pd = dev_get_platdata(&adev->dev);
1881 if (!pl08x->pd) {
1882 dev_err(&adev->dev, "no platform data supplied\n");
1883 goto out_no_platdata;
1884 }
1885
1886 /* Assign useful pointers to the driver state */
1887 pl08x->adev = adev;
1888 pl08x->vd = vd;
1889
Russell King - ARM Linux30749cb2011-01-03 22:41:13 +00001890 /* By default, AHB1 only. If dualmaster, from platform */
1891 pl08x->lli_buses = PL08X_AHB1;
1892 pl08x->mem_buses = PL08X_AHB1;
1893 if (pl08x->vd->dualmaster) {
1894 pl08x->lli_buses = pl08x->pd->lli_buses;
1895 pl08x->mem_buses = pl08x->pd->mem_buses;
1896 }
1897
Linus Walleije8689e62010-09-28 15:57:37 +02001898 /* A DMA memory pool for LLIs, align on 1-byte boundary */
1899 pl08x->pool = dma_pool_create(DRIVER_NAME, &pl08x->adev->dev,
1900 PL08X_LLI_TSFR_SIZE, PL08X_ALIGN, 0);
1901 if (!pl08x->pool) {
1902 ret = -ENOMEM;
1903 goto out_no_lli_pool;
1904 }
1905
1906 spin_lock_init(&pl08x->lock);
1907
1908 pl08x->base = ioremap(adev->res.start, resource_size(&adev->res));
1909 if (!pl08x->base) {
1910 ret = -ENOMEM;
1911 goto out_no_ioremap;
1912 }
1913
1914 /* Turn on the PL08x */
1915 pl08x_ensure_on(pl08x);
1916
Russell King - ARM Linux94ae8522011-01-16 20:18:05 +00001917 /* Attach the interrupt handler */
Linus Walleije8689e62010-09-28 15:57:37 +02001918 writel(0x000000FF, pl08x->base + PL080_ERR_CLEAR);
1919 writel(0x000000FF, pl08x->base + PL080_TC_CLEAR);
1920
1921 ret = request_irq(adev->irq[0], pl08x_irq, IRQF_DISABLED,
Russell King - ARM Linuxb05cd8f2011-01-03 22:33:26 +00001922 DRIVER_NAME, pl08x);
Linus Walleije8689e62010-09-28 15:57:37 +02001923 if (ret) {
1924 dev_err(&adev->dev, "%s failed to request interrupt %d\n",
1925 __func__, adev->irq[0]);
1926 goto out_no_irq;
1927 }
1928
1929 /* Initialize physical channels */
1930 pl08x->phy_chans = kmalloc((vd->channels * sizeof(struct pl08x_phy_chan)),
1931 GFP_KERNEL);
1932 if (!pl08x->phy_chans) {
1933 dev_err(&adev->dev, "%s failed to allocate "
1934 "physical channel holders\n",
1935 __func__);
1936 goto out_no_phychans;
1937 }
1938
1939 for (i = 0; i < vd->channels; i++) {
1940 struct pl08x_phy_chan *ch = &pl08x->phy_chans[i];
1941
1942 ch->id = i;
1943 ch->base = pl08x->base + PL080_Cx_BASE(i);
1944 spin_lock_init(&ch->lock);
1945 ch->serving = NULL;
1946 ch->signal = -1;
1947 dev_info(&adev->dev,
1948 "physical channel %d is %s\n", i,
1949 pl08x_phy_channel_busy(ch) ? "BUSY" : "FREE");
1950 }
1951
1952 /* Register as many memcpy channels as there are physical channels */
1953 ret = pl08x_dma_init_virtual_channels(pl08x, &pl08x->memcpy,
1954 pl08x->vd->channels, false);
1955 if (ret <= 0) {
1956 dev_warn(&pl08x->adev->dev,
1957 "%s failed to enumerate memcpy channels - %d\n",
1958 __func__, ret);
1959 goto out_no_memcpy;
1960 }
1961 pl08x->memcpy.chancnt = ret;
1962
1963 /* Register slave channels */
1964 ret = pl08x_dma_init_virtual_channels(pl08x, &pl08x->slave,
1965 pl08x->pd->num_slave_channels,
1966 true);
1967 if (ret <= 0) {
1968 dev_warn(&pl08x->adev->dev,
1969 "%s failed to enumerate slave channels - %d\n",
1970 __func__, ret);
1971 goto out_no_slave;
1972 }
1973 pl08x->slave.chancnt = ret;
1974
1975 ret = dma_async_device_register(&pl08x->memcpy);
1976 if (ret) {
1977 dev_warn(&pl08x->adev->dev,
1978 "%s failed to register memcpy as an async device - %d\n",
1979 __func__, ret);
1980 goto out_no_memcpy_reg;
1981 }
1982
1983 ret = dma_async_device_register(&pl08x->slave);
1984 if (ret) {
1985 dev_warn(&pl08x->adev->dev,
1986 "%s failed to register slave as an async device - %d\n",
1987 __func__, ret);
1988 goto out_no_slave_reg;
1989 }
1990
1991 amba_set_drvdata(adev, pl08x);
1992 init_pl08x_debugfs(pl08x);
Russell King - ARM Linuxb05cd8f2011-01-03 22:33:26 +00001993 dev_info(&pl08x->adev->dev, "DMA: PL%03x rev%u at 0x%08llx irq %d\n",
1994 amba_part(adev), amba_rev(adev),
1995 (unsigned long long)adev->res.start, adev->irq[0]);
Linus Walleije8689e62010-09-28 15:57:37 +02001996 return 0;
1997
1998out_no_slave_reg:
1999 dma_async_device_unregister(&pl08x->memcpy);
2000out_no_memcpy_reg:
2001 pl08x_free_virtual_channels(&pl08x->slave);
2002out_no_slave:
2003 pl08x_free_virtual_channels(&pl08x->memcpy);
2004out_no_memcpy:
2005 kfree(pl08x->phy_chans);
2006out_no_phychans:
2007 free_irq(adev->irq[0], pl08x);
2008out_no_irq:
2009 iounmap(pl08x->base);
2010out_no_ioremap:
2011 dma_pool_destroy(pl08x->pool);
2012out_no_lli_pool:
2013out_no_platdata:
2014 kfree(pl08x);
2015out_no_pl08x:
2016 amba_release_regions(adev);
2017 return ret;
2018}
2019
2020/* PL080 has 8 channels and the PL080 have just 2 */
2021static struct vendor_data vendor_pl080 = {
Linus Walleije8689e62010-09-28 15:57:37 +02002022 .channels = 8,
2023 .dualmaster = true,
2024};
2025
2026static struct vendor_data vendor_pl081 = {
Linus Walleije8689e62010-09-28 15:57:37 +02002027 .channels = 2,
2028 .dualmaster = false,
2029};
2030
2031static struct amba_id pl08x_ids[] = {
2032 /* PL080 */
2033 {
2034 .id = 0x00041080,
2035 .mask = 0x000fffff,
2036 .data = &vendor_pl080,
2037 },
2038 /* PL081 */
2039 {
2040 .id = 0x00041081,
2041 .mask = 0x000fffff,
2042 .data = &vendor_pl081,
2043 },
2044 /* Nomadik 8815 PL080 variant */
2045 {
2046 .id = 0x00280880,
2047 .mask = 0x00ffffff,
2048 .data = &vendor_pl080,
2049 },
2050 { 0, 0 },
2051};
2052
2053static struct amba_driver pl08x_amba_driver = {
2054 .drv.name = DRIVER_NAME,
2055 .id_table = pl08x_ids,
2056 .probe = pl08x_probe,
2057};
2058
2059static int __init pl08x_init(void)
2060{
2061 int retval;
2062 retval = amba_driver_register(&pl08x_amba_driver);
2063 if (retval)
2064 printk(KERN_WARNING DRIVER_NAME
Russell King - ARM Linuxe8b5e112011-01-03 22:30:24 +00002065 "failed to register as an AMBA device (%d)\n",
Linus Walleije8689e62010-09-28 15:57:37 +02002066 retval);
2067 return retval;
2068}
2069subsys_initcall(pl08x_init);