blob: fde801f787cdcc37ed8f3939061f2ad8c08d346c [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 *
Linus Walleije8689e62010-09-28 15:57:37 +020069 * Global TODO:
70 * - Break out common code from arch/arm/mach-s3c64xx and share
71 */
Russell King - ARM Linux730404a2011-01-03 22:34:07 +000072#include <linux/amba/bus.h>
Linus Walleije8689e62010-09-28 15:57:37 +020073#include <linux/amba/pl08x.h>
74#include <linux/debugfs.h>
Viresh Kumar0c38d702011-08-05 15:32:28 +053075#include <linux/delay.h>
76#include <linux/device.h>
77#include <linux/dmaengine.h>
78#include <linux/dmapool.h>
Vinod Koul8516f522011-09-02 16:43:44 +053079#include <linux/dma-mapping.h>
Viresh Kumar0c38d702011-08-05 15:32:28 +053080#include <linux/init.h>
81#include <linux/interrupt.h>
82#include <linux/module.h>
Viresh Kumarb7b60182011-08-05 15:32:33 +053083#include <linux/pm_runtime.h>
Linus Walleije8689e62010-09-28 15:57:37 +020084#include <linux/seq_file.h>
Viresh Kumar0c38d702011-08-05 15:32:28 +053085#include <linux/slab.h>
Linus Walleije8689e62010-09-28 15:57:37 +020086#include <asm/hardware/pl080.h>
Linus Walleije8689e62010-09-28 15:57:37 +020087
Russell King - ARM Linuxd2ebfb32012-03-06 22:34:26 +000088#include "dmaengine.h"
89
Linus Walleije8689e62010-09-28 15:57:37 +020090#define DRIVER_NAME "pl08xdmac"
91
Russell King - ARM Linux7703eac2011-08-31 09:34:35 +010092static struct amba_driver pl08x_amba_driver;
Russell Kingb23f2042012-05-16 10:48:44 +010093struct pl08x_driver_data;
Russell King - ARM Linux7703eac2011-08-31 09:34:35 +010094
Linus Walleije8689e62010-09-28 15:57:37 +020095/**
Russell King - ARM Linux94ae8522011-01-16 20:18:05 +000096 * struct vendor_data - vendor-specific config parameters for PL08x derivatives
Linus Walleije8689e62010-09-28 15:57:37 +020097 * @channels: the number of channels available in this variant
Russell King - ARM Linux94ae8522011-01-16 20:18:05 +000098 * @dualmaster: whether this version supports dual AHB masters or not.
Linus Walleijaffa1152012-04-12 09:01:49 +020099 * @nomadik: whether the channels have Nomadik security extension bits
100 * that need to be checked for permission before use and some registers are
101 * missing
Linus Walleije8689e62010-09-28 15:57:37 +0200102 */
103struct vendor_data {
Linus Walleije8689e62010-09-28 15:57:37 +0200104 u8 channels;
105 bool dualmaster;
Linus Walleijaffa1152012-04-12 09:01:49 +0200106 bool nomadik;
Linus Walleije8689e62010-09-28 15:57:37 +0200107};
108
109/*
110 * PL08X private data structures
Russell King - ARM Linuxe8b5e112011-01-03 22:30:24 +0000111 * 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 +0000112 * start & end do not - their bus bit info is in cctl. Also note that these
113 * are fixed 32-bit quantities.
Linus Walleije8689e62010-09-28 15:57:37 +0200114 */
Russell King - ARM Linux7cb72ad2011-01-03 22:35:28 +0000115struct pl08x_lli {
Russell King - ARM Linuxe25761d2011-01-03 22:37:52 +0000116 u32 src;
117 u32 dst;
Russell King - ARM Linuxbfddfb42011-01-03 22:38:12 +0000118 u32 lli;
Linus Walleije8689e62010-09-28 15:57:37 +0200119 u32 cctl;
120};
121
122/**
Russell Kingb23f2042012-05-16 10:48:44 +0100123 * struct pl08x_bus_data - information of source or destination
124 * busses for a transfer
125 * @addr: current address
126 * @maxwidth: the maximum width of a transfer on this bus
127 * @buswidth: the width of this bus in bytes: 1, 2 or 4
128 */
129struct pl08x_bus_data {
130 dma_addr_t addr;
131 u8 maxwidth;
132 u8 buswidth;
133};
134
135/**
136 * struct pl08x_phy_chan - holder for the physical channels
137 * @id: physical index to this channel
138 * @lock: a lock to use when altering an instance of this struct
139 * @signal: the physical signal (aka channel) serving this physical channel
140 * right now
141 * @serving: the virtual channel currently being served by this physical
142 * channel
143 */
144struct pl08x_phy_chan {
145 unsigned int id;
146 void __iomem *base;
147 spinlock_t lock;
148 int signal;
149 struct pl08x_dma_chan *serving;
150};
151
152/**
153 * struct pl08x_sg - structure containing data per sg
154 * @src_addr: src address of sg
155 * @dst_addr: dst address of sg
156 * @len: transfer len in bytes
157 * @node: node for txd's dsg_list
158 */
159struct pl08x_sg {
160 dma_addr_t src_addr;
161 dma_addr_t dst_addr;
162 size_t len;
163 struct list_head node;
164};
165
166/**
167 * struct pl08x_txd - wrapper for struct dma_async_tx_descriptor
168 * @tx: async tx descriptor
169 * @node: node for txd list for channels
170 * @dsg_list: list of children sg's
171 * @direction: direction of transfer
172 * @llis_bus: DMA memory address (physical) start for the LLIs
173 * @llis_va: virtual memory address start for the LLIs
174 * @cctl: control reg values for current txd
175 * @ccfg: config reg values for current txd
176 */
177struct pl08x_txd {
178 struct dma_async_tx_descriptor tx;
179 struct list_head node;
180 struct list_head dsg_list;
181 enum dma_transfer_direction direction;
182 dma_addr_t llis_bus;
183 struct pl08x_lli *llis_va;
184 /* Default cctl value for LLIs */
185 u32 cctl;
186 /*
187 * Settings to be put into the physical channel when we
188 * trigger this txd. Other registers are in llis_va[0].
189 */
190 u32 ccfg;
191};
192
193/**
194 * struct pl08x_dma_chan_state - holds the PL08x specific virtual channel
195 * states
196 * @PL08X_CHAN_IDLE: the channel is idle
197 * @PL08X_CHAN_RUNNING: the channel has allocated a physical transport
198 * channel and is running a transfer on it
199 * @PL08X_CHAN_PAUSED: the channel has allocated a physical transport
200 * channel, but the transfer is currently paused
201 * @PL08X_CHAN_WAITING: the channel is waiting for a physical transport
202 * channel to become available (only pertains to memcpy channels)
203 */
204enum pl08x_dma_chan_state {
205 PL08X_CHAN_IDLE,
206 PL08X_CHAN_RUNNING,
207 PL08X_CHAN_PAUSED,
208 PL08X_CHAN_WAITING,
209};
210
211/**
212 * struct pl08x_dma_chan - this structure wraps a DMA ENGINE channel
213 * @chan: wrappped abstract channel
214 * @phychan: the physical channel utilized by this channel, if there is one
215 * @phychan_hold: if non-zero, hold on to the physical channel even if we
216 * have no pending entries
217 * @tasklet: tasklet scheduled by the IRQ to handle actual work etc
218 * @name: name of channel
219 * @cd: channel platform data
220 * @runtime_addr: address for RX/TX according to the runtime config
221 * @runtime_direction: current direction of this channel according to
222 * runtime config
223 * @pend_list: queued transactions pending on this channel
224 * @at: active transaction on this channel
225 * @lock: a lock for this channel data
226 * @host: a pointer to the host (internal use)
227 * @state: whether the channel is idle, paused, running etc
228 * @slave: whether this channel is a device (slave) or for memcpy
Russell Kingb23f2042012-05-16 10:48:44 +0100229 * @waiting: a TX descriptor on this channel which is waiting for a physical
230 * channel to become available
231 */
232struct pl08x_dma_chan {
233 struct dma_chan chan;
234 struct pl08x_phy_chan *phychan;
235 int phychan_hold;
236 struct tasklet_struct tasklet;
Russell King550ec362012-05-28 10:18:55 +0100237 const char *name;
Russell Kingb23f2042012-05-16 10:48:44 +0100238 const struct pl08x_channel_data *cd;
Russell Kinged91c132012-05-16 11:02:40 +0100239 struct dma_slave_config cfg;
Russell Kingb23f2042012-05-16 10:48:44 +0100240 u32 src_cctl;
241 u32 dst_cctl;
242 enum dma_transfer_direction runtime_direction;
243 struct list_head pend_list;
244 struct pl08x_txd *at;
245 spinlock_t lock;
246 struct pl08x_driver_data *host;
247 enum pl08x_dma_chan_state state;
248 bool slave;
Russell Kingb23f2042012-05-16 10:48:44 +0100249 struct pl08x_txd *waiting;
250};
251
252/**
Linus Walleije8689e62010-09-28 15:57:37 +0200253 * struct pl08x_driver_data - the local state holder for the PL08x
254 * @slave: slave engine for this instance
255 * @memcpy: memcpy engine for this instance
256 * @base: virtual memory base (remapped) for the PL08x
257 * @adev: the corresponding AMBA (PrimeCell) bus entry
258 * @vd: vendor data for this PL08x variant
259 * @pd: platform data passed in from the platform/machine
260 * @phy_chans: array of data for the physical channels
261 * @pool: a pool for the LLI descriptors
262 * @pool_ctr: counter of LLIs in the pool
Viresh Kumar3e27ee82011-08-05 15:32:27 +0530263 * @lli_buses: bitmask to or in to LLI pointer selecting AHB port for LLI
264 * fetches
Russell King - ARM Linux30749cb2011-01-03 22:41:13 +0000265 * @mem_buses: set to indicate memory transfers on AHB2.
Linus Walleije8689e62010-09-28 15:57:37 +0200266 * @lock: a spinlock for this struct
267 */
268struct pl08x_driver_data {
269 struct dma_device slave;
270 struct dma_device memcpy;
271 void __iomem *base;
272 struct amba_device *adev;
Russell King - ARM Linuxf96ca9ec2011-01-03 22:35:08 +0000273 const struct vendor_data *vd;
Linus Walleije8689e62010-09-28 15:57:37 +0200274 struct pl08x_platform_data *pd;
275 struct pl08x_phy_chan *phy_chans;
276 struct dma_pool *pool;
277 int pool_ctr;
Russell King - ARM Linux30749cb2011-01-03 22:41:13 +0000278 u8 lli_buses;
279 u8 mem_buses;
Linus Walleije8689e62010-09-28 15:57:37 +0200280};
281
282/*
283 * PL08X specific defines
284 */
285
Linus Walleije8689e62010-09-28 15:57:37 +0200286/* Size (bytes) of each LLI buffer allocated for one transfer */
287# define PL08X_LLI_TSFR_SIZE 0x2000
288
Russell King - ARM Linuxe8b5e112011-01-03 22:30:24 +0000289/* Maximum times we call dma_pool_alloc on this pool without freeing */
Russell King - ARM Linux7cb72ad2011-01-03 22:35:28 +0000290#define MAX_NUM_TSFR_LLIS (PL08X_LLI_TSFR_SIZE/sizeof(struct pl08x_lli))
Linus Walleije8689e62010-09-28 15:57:37 +0200291#define PL08X_ALIGN 8
292
293static inline struct pl08x_dma_chan *to_pl08x_chan(struct dma_chan *chan)
294{
295 return container_of(chan, struct pl08x_dma_chan, chan);
296}
297
Russell King - ARM Linux501e67e2011-01-03 22:44:57 +0000298static inline struct pl08x_txd *to_pl08x_txd(struct dma_async_tx_descriptor *tx)
299{
300 return container_of(tx, struct pl08x_txd, tx);
301}
302
Linus Walleije8689e62010-09-28 15:57:37 +0200303/*
304 * Physical channel handling
305 */
306
307/* Whether a certain channel is busy or not */
308static int pl08x_phy_channel_busy(struct pl08x_phy_chan *ch)
309{
310 unsigned int val;
311
312 val = readl(ch->base + PL080_CH_CONFIG);
313 return val & PL080_CONFIG_ACTIVE;
314}
315
316/*
317 * Set the initial DMA register values i.e. those for the first LLI
Russell King - ARM Linuxe8b5e112011-01-03 22:30:24 +0000318 * The next LLI pointer and the configuration interrupt bit have
Russell King - ARM Linuxc885bee2011-01-03 22:38:52 +0000319 * been set when the LLIs were constructed. Poke them into the hardware
320 * and start the transfer.
Linus Walleije8689e62010-09-28 15:57:37 +0200321 */
Russell King - ARM Linuxc885bee2011-01-03 22:38:52 +0000322static void pl08x_start_txd(struct pl08x_dma_chan *plchan,
323 struct pl08x_txd *txd)
Linus Walleije8689e62010-09-28 15:57:37 +0200324{
Russell King - ARM Linuxc885bee2011-01-03 22:38:52 +0000325 struct pl08x_driver_data *pl08x = plchan->host;
Linus Walleije8689e62010-09-28 15:57:37 +0200326 struct pl08x_phy_chan *phychan = plchan->phychan;
Russell King - ARM Linux19524d72011-01-03 22:39:13 +0000327 struct pl08x_lli *lli = &txd->llis_va[0];
Russell King - ARM Linux09b3c322011-01-03 22:39:53 +0000328 u32 val;
Russell King - ARM Linuxc885bee2011-01-03 22:38:52 +0000329
330 plchan->at = txd;
Linus Walleije8689e62010-09-28 15:57:37 +0200331
Russell King - ARM Linuxc885bee2011-01-03 22:38:52 +0000332 /* Wait for channel inactive */
333 while (pl08x_phy_channel_busy(phychan))
Russell King - ARM Linux19386b322011-01-03 22:36:29 +0000334 cpu_relax();
Linus Walleije8689e62010-09-28 15:57:37 +0200335
Russell King - ARM Linuxc885bee2011-01-03 22:38:52 +0000336 dev_vdbg(&pl08x->adev->dev,
337 "WRITE channel %d: csrc=0x%08x, cdst=0x%08x, "
Russell King - ARM Linux19524d72011-01-03 22:39:13 +0000338 "clli=0x%08x, cctl=0x%08x, ccfg=0x%08x\n",
339 phychan->id, lli->src, lli->dst, lli->lli, lli->cctl,
Russell King - ARM Linux09b3c322011-01-03 22:39:53 +0000340 txd->ccfg);
Linus Walleije8689e62010-09-28 15:57:37 +0200341
Russell King - ARM Linux19524d72011-01-03 22:39:13 +0000342 writel(lli->src, phychan->base + PL080_CH_SRC_ADDR);
343 writel(lli->dst, phychan->base + PL080_CH_DST_ADDR);
344 writel(lli->lli, phychan->base + PL080_CH_LLI);
345 writel(lli->cctl, phychan->base + PL080_CH_CONTROL);
Russell King - ARM Linux09b3c322011-01-03 22:39:53 +0000346 writel(txd->ccfg, phychan->base + PL080_CH_CONFIG);
Russell King - ARM Linuxc885bee2011-01-03 22:38:52 +0000347
348 /* Enable the DMA channel */
349 /* Do not access config register until channel shows as disabled */
350 while (readl(pl08x->base + PL080_EN_CHAN) & (1 << phychan->id))
351 cpu_relax();
352
353 /* Do not access config register until channel shows as inactive */
354 val = readl(phychan->base + PL080_CH_CONFIG);
355 while ((val & PL080_CONFIG_ACTIVE) || (val & PL080_CONFIG_ENABLE))
356 val = readl(phychan->base + PL080_CH_CONFIG);
357
358 writel(val | PL080_CONFIG_ENABLE, phychan->base + PL080_CH_CONFIG);
Linus Walleije8689e62010-09-28 15:57:37 +0200359}
360
361/*
Russell King - ARM Linux81796612011-01-27 12:37:44 +0000362 * Pause the channel by setting the HALT bit.
Linus Walleije8689e62010-09-28 15:57:37 +0200363 *
Russell King - ARM Linux81796612011-01-27 12:37:44 +0000364 * For M->P transfers, pause the DMAC first and then stop the peripheral -
365 * the FIFO can only drain if the peripheral is still requesting data.
366 * (note: this can still timeout if the DMAC FIFO never drains of data.)
Linus Walleije8689e62010-09-28 15:57:37 +0200367 *
Russell King - ARM Linux81796612011-01-27 12:37:44 +0000368 * For P->M transfers, disable the peripheral first to stop it filling
369 * the DMAC FIFO, and then pause the DMAC.
Linus Walleije8689e62010-09-28 15:57:37 +0200370 */
371static void pl08x_pause_phy_chan(struct pl08x_phy_chan *ch)
372{
373 u32 val;
Russell King - ARM Linux81796612011-01-27 12:37:44 +0000374 int timeout;
Linus Walleije8689e62010-09-28 15:57:37 +0200375
376 /* Set the HALT bit and wait for the FIFO to drain */
377 val = readl(ch->base + PL080_CH_CONFIG);
378 val |= PL080_CONFIG_HALT;
379 writel(val, ch->base + PL080_CH_CONFIG);
380
381 /* Wait for channel inactive */
Russell King - ARM Linux81796612011-01-27 12:37:44 +0000382 for (timeout = 1000; timeout; timeout--) {
383 if (!pl08x_phy_channel_busy(ch))
384 break;
385 udelay(1);
386 }
387 if (pl08x_phy_channel_busy(ch))
388 pr_err("pl08x: channel%u timeout waiting for pause\n", ch->id);
Linus Walleije8689e62010-09-28 15:57:37 +0200389}
390
391static void pl08x_resume_phy_chan(struct pl08x_phy_chan *ch)
392{
393 u32 val;
394
395 /* Clear the HALT bit */
396 val = readl(ch->base + PL080_CH_CONFIG);
397 val &= ~PL080_CONFIG_HALT;
398 writel(val, ch->base + PL080_CH_CONFIG);
399}
400
Russell King - ARM Linuxfb526212011-01-27 12:32:53 +0000401/*
402 * pl08x_terminate_phy_chan() stops the channel, clears the FIFO and
403 * clears any pending interrupt status. This should not be used for
404 * an on-going transfer, but as a method of shutting down a channel
405 * (eg, when it's no longer used) or terminating a transfer.
406 */
407static void pl08x_terminate_phy_chan(struct pl08x_driver_data *pl08x,
408 struct pl08x_phy_chan *ch)
Linus Walleije8689e62010-09-28 15:57:37 +0200409{
Russell King - ARM Linuxfb526212011-01-27 12:32:53 +0000410 u32 val = readl(ch->base + PL080_CH_CONFIG);
Linus Walleije8689e62010-09-28 15:57:37 +0200411
Russell King - ARM Linuxfb526212011-01-27 12:32:53 +0000412 val &= ~(PL080_CONFIG_ENABLE | PL080_CONFIG_ERR_IRQ_MASK |
413 PL080_CONFIG_TC_IRQ_MASK);
Linus Walleije8689e62010-09-28 15:57:37 +0200414
Linus Walleije8689e62010-09-28 15:57:37 +0200415 writel(val, ch->base + PL080_CH_CONFIG);
Russell King - ARM Linuxfb526212011-01-27 12:32:53 +0000416
417 writel(1 << ch->id, pl08x->base + PL080_ERR_CLEAR);
418 writel(1 << ch->id, pl08x->base + PL080_TC_CLEAR);
Linus Walleije8689e62010-09-28 15:57:37 +0200419}
420
421static inline u32 get_bytes_in_cctl(u32 cctl)
422{
423 /* The source width defines the number of bytes */
424 u32 bytes = cctl & PL080_CONTROL_TRANSFER_SIZE_MASK;
425
426 switch (cctl >> PL080_CONTROL_SWIDTH_SHIFT) {
427 case PL080_WIDTH_8BIT:
428 break;
429 case PL080_WIDTH_16BIT:
430 bytes *= 2;
431 break;
432 case PL080_WIDTH_32BIT:
433 bytes *= 4;
434 break;
435 }
436 return bytes;
437}
438
439/* The channel should be paused when calling this */
440static u32 pl08x_getbytes_chan(struct pl08x_dma_chan *plchan)
441{
442 struct pl08x_phy_chan *ch;
Linus Walleije8689e62010-09-28 15:57:37 +0200443 struct pl08x_txd *txd;
444 unsigned long flags;
Russell King - ARM Linuxcace6582011-01-03 22:37:31 +0000445 size_t bytes = 0;
Linus Walleije8689e62010-09-28 15:57:37 +0200446
447 spin_lock_irqsave(&plchan->lock, flags);
Linus Walleije8689e62010-09-28 15:57:37 +0200448 ch = plchan->phychan;
449 txd = plchan->at;
450
451 /*
Russell King - ARM Linuxdb9f1362011-01-03 22:38:32 +0000452 * Follow the LLIs to get the number of remaining
453 * bytes in the currently active transaction.
Linus Walleije8689e62010-09-28 15:57:37 +0200454 */
455 if (ch && txd) {
Russell King - ARM Linux4c0df6a2011-01-03 22:36:50 +0000456 u32 clli = readl(ch->base + PL080_CH_LLI) & ~PL080_LLI_LM_AHB2;
Linus Walleije8689e62010-09-28 15:57:37 +0200457
Russell King - ARM Linuxdb9f1362011-01-03 22:38:32 +0000458 /* First get the remaining bytes in the active transfer */
Linus Walleije8689e62010-09-28 15:57:37 +0200459 bytes = get_bytes_in_cctl(readl(ch->base + PL080_CH_CONTROL));
460
461 if (clli) {
Russell King - ARM Linuxdb9f1362011-01-03 22:38:32 +0000462 struct pl08x_lli *llis_va = txd->llis_va;
463 dma_addr_t llis_bus = txd->llis_bus;
464 int index;
Linus Walleije8689e62010-09-28 15:57:37 +0200465
Russell King - ARM Linuxdb9f1362011-01-03 22:38:32 +0000466 BUG_ON(clli < llis_bus || clli >= llis_bus +
467 sizeof(struct pl08x_lli) * MAX_NUM_TSFR_LLIS);
Linus Walleije8689e62010-09-28 15:57:37 +0200468
Russell King - ARM Linuxdb9f1362011-01-03 22:38:32 +0000469 /*
470 * Locate the next LLI - as this is an array,
471 * it's simple maths to find.
472 */
473 index = (clli - llis_bus) / sizeof(struct pl08x_lli);
474
475 for (; index < MAX_NUM_TSFR_LLIS; index++) {
476 bytes += get_bytes_in_cctl(llis_va[index].cctl);
477
Linus Walleije8689e62010-09-28 15:57:37 +0200478 /*
Russell King - ARM Linuxe8b5e112011-01-03 22:30:24 +0000479 * A LLI pointer of 0 terminates the LLI list
Linus Walleije8689e62010-09-28 15:57:37 +0200480 */
Russell King - ARM Linuxdb9f1362011-01-03 22:38:32 +0000481 if (!llis_va[index].lli)
482 break;
Linus Walleije8689e62010-09-28 15:57:37 +0200483 }
484 }
485 }
486
487 /* Sum up all queued transactions */
Russell King - ARM Linux15c17232011-01-03 22:44:36 +0000488 if (!list_empty(&plchan->pend_list)) {
Russell King - ARM Linuxdb9f1362011-01-03 22:38:32 +0000489 struct pl08x_txd *txdi;
Russell King - ARM Linux15c17232011-01-03 22:44:36 +0000490 list_for_each_entry(txdi, &plchan->pend_list, node) {
Viresh Kumarb7f69d92011-08-05 15:32:43 +0530491 struct pl08x_sg *dsg;
492 list_for_each_entry(dsg, &txd->dsg_list, node)
493 bytes += dsg->len;
Linus Walleije8689e62010-09-28 15:57:37 +0200494 }
Linus Walleije8689e62010-09-28 15:57:37 +0200495 }
496
497 spin_unlock_irqrestore(&plchan->lock, flags);
498
499 return bytes;
500}
501
502/*
503 * Allocate a physical channel for a virtual channel
Russell King - ARM Linux94ae8522011-01-16 20:18:05 +0000504 *
505 * Try to locate a physical channel to be used for this transfer. If all
506 * are taken return NULL and the requester will have to cope by using
507 * some fallback PIO mode or retrying later.
Linus Walleije8689e62010-09-28 15:57:37 +0200508 */
509static struct pl08x_phy_chan *
510pl08x_get_phy_channel(struct pl08x_driver_data *pl08x,
511 struct pl08x_dma_chan *virt_chan)
512{
513 struct pl08x_phy_chan *ch = NULL;
514 unsigned long flags;
515 int i;
516
Linus Walleije8689e62010-09-28 15:57:37 +0200517 for (i = 0; i < pl08x->vd->channels; i++) {
518 ch = &pl08x->phy_chans[i];
519
520 spin_lock_irqsave(&ch->lock, flags);
521
Linus Walleijaffa1152012-04-12 09:01:49 +0200522 if (!ch->locked && !ch->serving) {
Linus Walleije8689e62010-09-28 15:57:37 +0200523 ch->serving = virt_chan;
524 ch->signal = -1;
525 spin_unlock_irqrestore(&ch->lock, flags);
526 break;
527 }
528
529 spin_unlock_irqrestore(&ch->lock, flags);
530 }
531
532 if (i == pl08x->vd->channels) {
533 /* No physical channel available, cope with it */
534 return NULL;
535 }
536
537 return ch;
538}
539
540static inline void pl08x_put_phy_channel(struct pl08x_driver_data *pl08x,
541 struct pl08x_phy_chan *ch)
542{
543 unsigned long flags;
544
Russell King - ARM Linuxfb526212011-01-27 12:32:53 +0000545 spin_lock_irqsave(&ch->lock, flags);
546
Linus Walleije8689e62010-09-28 15:57:37 +0200547 /* Stop the channel and clear its interrupts */
Russell King - ARM Linuxfb526212011-01-27 12:32:53 +0000548 pl08x_terminate_phy_chan(pl08x, ch);
Linus Walleije8689e62010-09-28 15:57:37 +0200549
550 /* Mark it as free */
Linus Walleije8689e62010-09-28 15:57:37 +0200551 ch->serving = NULL;
552 spin_unlock_irqrestore(&ch->lock, flags);
553}
554
555/*
556 * LLI handling
557 */
558
559static inline unsigned int pl08x_get_bytes_for_cctl(unsigned int coded)
560{
561 switch (coded) {
562 case PL080_WIDTH_8BIT:
563 return 1;
564 case PL080_WIDTH_16BIT:
565 return 2;
566 case PL080_WIDTH_32BIT:
567 return 4;
568 default:
569 break;
570 }
571 BUG();
572 return 0;
573}
574
575static inline u32 pl08x_cctl_bits(u32 cctl, u8 srcwidth, u8 dstwidth,
Russell King - ARM Linuxcace6582011-01-03 22:37:31 +0000576 size_t tsize)
Linus Walleije8689e62010-09-28 15:57:37 +0200577{
578 u32 retbits = cctl;
579
Russell King - ARM Linuxe8b5e112011-01-03 22:30:24 +0000580 /* Remove all src, dst and transfer size bits */
Linus Walleije8689e62010-09-28 15:57:37 +0200581 retbits &= ~PL080_CONTROL_DWIDTH_MASK;
582 retbits &= ~PL080_CONTROL_SWIDTH_MASK;
583 retbits &= ~PL080_CONTROL_TRANSFER_SIZE_MASK;
584
585 /* Then set the bits according to the parameters */
586 switch (srcwidth) {
587 case 1:
588 retbits |= PL080_WIDTH_8BIT << PL080_CONTROL_SWIDTH_SHIFT;
589 break;
590 case 2:
591 retbits |= PL080_WIDTH_16BIT << PL080_CONTROL_SWIDTH_SHIFT;
592 break;
593 case 4:
594 retbits |= PL080_WIDTH_32BIT << PL080_CONTROL_SWIDTH_SHIFT;
595 break;
596 default:
597 BUG();
598 break;
599 }
600
601 switch (dstwidth) {
602 case 1:
603 retbits |= PL080_WIDTH_8BIT << PL080_CONTROL_DWIDTH_SHIFT;
604 break;
605 case 2:
606 retbits |= PL080_WIDTH_16BIT << PL080_CONTROL_DWIDTH_SHIFT;
607 break;
608 case 4:
609 retbits |= PL080_WIDTH_32BIT << PL080_CONTROL_DWIDTH_SHIFT;
610 break;
611 default:
612 BUG();
613 break;
614 }
615
616 retbits |= tsize << PL080_CONTROL_TRANSFER_SIZE_SHIFT;
617 return retbits;
618}
619
Russell King - ARM Linux542361f2011-01-03 22:43:15 +0000620struct pl08x_lli_build_data {
621 struct pl08x_txd *txd;
Russell King - ARM Linux542361f2011-01-03 22:43:15 +0000622 struct pl08x_bus_data srcbus;
623 struct pl08x_bus_data dstbus;
624 size_t remainder;
Russell King - ARM Linux25c94f72011-07-21 17:11:46 +0100625 u32 lli_bus;
Russell King - ARM Linux542361f2011-01-03 22:43:15 +0000626};
627
Linus Walleije8689e62010-09-28 15:57:37 +0200628/*
Viresh Kumar0532e6f2011-08-05 15:32:31 +0530629 * Autoselect a master bus to use for the transfer. Slave will be the chosen as
630 * victim in case src & dest are not similarly aligned. i.e. If after aligning
631 * masters address with width requirements of transfer (by sending few byte by
632 * byte data), slave is still not aligned, then its width will be reduced to
633 * BYTE.
634 * - prefers the destination bus if both available
Viresh Kumar036f05f2011-08-05 15:32:41 +0530635 * - prefers bus with fixed address (i.e. peripheral)
Linus Walleije8689e62010-09-28 15:57:37 +0200636 */
Russell King - ARM Linux542361f2011-01-03 22:43:15 +0000637static void pl08x_choose_master_bus(struct pl08x_lli_build_data *bd,
638 struct pl08x_bus_data **mbus, struct pl08x_bus_data **sbus, u32 cctl)
Linus Walleije8689e62010-09-28 15:57:37 +0200639{
640 if (!(cctl & PL080_CONTROL_DST_INCR)) {
Russell King - ARM Linux542361f2011-01-03 22:43:15 +0000641 *mbus = &bd->dstbus;
642 *sbus = &bd->srcbus;
Viresh Kumar036f05f2011-08-05 15:32:41 +0530643 } else if (!(cctl & PL080_CONTROL_SRC_INCR)) {
644 *mbus = &bd->srcbus;
645 *sbus = &bd->dstbus;
Linus Walleije8689e62010-09-28 15:57:37 +0200646 } else {
Viresh Kumar036f05f2011-08-05 15:32:41 +0530647 if (bd->dstbus.buswidth >= bd->srcbus.buswidth) {
Russell King - ARM Linux542361f2011-01-03 22:43:15 +0000648 *mbus = &bd->dstbus;
649 *sbus = &bd->srcbus;
Linus Walleije8689e62010-09-28 15:57:37 +0200650 } else {
Viresh Kumar036f05f2011-08-05 15:32:41 +0530651 *mbus = &bd->srcbus;
652 *sbus = &bd->dstbus;
Linus Walleije8689e62010-09-28 15:57:37 +0200653 }
654 }
655}
656
657/*
Russell King - ARM Linux94ae8522011-01-16 20:18:05 +0000658 * Fills in one LLI for a certain transfer descriptor and advance the counter
Linus Walleije8689e62010-09-28 15:57:37 +0200659 */
Russell King - ARM Linux542361f2011-01-03 22:43:15 +0000660static void pl08x_fill_lli_for_desc(struct pl08x_lli_build_data *bd,
661 int num_llis, int len, u32 cctl)
Linus Walleije8689e62010-09-28 15:57:37 +0200662{
Russell King - ARM Linux542361f2011-01-03 22:43:15 +0000663 struct pl08x_lli *llis_va = bd->txd->llis_va;
664 dma_addr_t llis_bus = bd->txd->llis_bus;
Linus Walleije8689e62010-09-28 15:57:37 +0200665
666 BUG_ON(num_llis >= MAX_NUM_TSFR_LLIS);
667
Russell King - ARM Linux30749cb2011-01-03 22:41:13 +0000668 llis_va[num_llis].cctl = cctl;
Russell King - ARM Linux542361f2011-01-03 22:43:15 +0000669 llis_va[num_llis].src = bd->srcbus.addr;
670 llis_va[num_llis].dst = bd->dstbus.addr;
Viresh Kumar3e27ee82011-08-05 15:32:27 +0530671 llis_va[num_llis].lli = llis_bus + (num_llis + 1) *
672 sizeof(struct pl08x_lli);
Russell King - ARM Linux25c94f72011-07-21 17:11:46 +0100673 llis_va[num_llis].lli |= bd->lli_bus;
Linus Walleije8689e62010-09-28 15:57:37 +0200674
675 if (cctl & PL080_CONTROL_SRC_INCR)
Russell King - ARM Linux542361f2011-01-03 22:43:15 +0000676 bd->srcbus.addr += len;
Linus Walleije8689e62010-09-28 15:57:37 +0200677 if (cctl & PL080_CONTROL_DST_INCR)
Russell King - ARM Linux542361f2011-01-03 22:43:15 +0000678 bd->dstbus.addr += len;
Linus Walleije8689e62010-09-28 15:57:37 +0200679
Russell King - ARM Linux542361f2011-01-03 22:43:15 +0000680 BUG_ON(bd->remainder < len);
Russell King - ARM Linuxcace6582011-01-03 22:37:31 +0000681
Russell King - ARM Linux542361f2011-01-03 22:43:15 +0000682 bd->remainder -= len;
Linus Walleije8689e62010-09-28 15:57:37 +0200683}
684
Viresh Kumar03af5002011-08-05 15:32:39 +0530685static inline void prep_byte_width_lli(struct pl08x_lli_build_data *bd,
686 u32 *cctl, u32 len, int num_llis, size_t *total_bytes)
Linus Walleije8689e62010-09-28 15:57:37 +0200687{
Viresh Kumar03af5002011-08-05 15:32:39 +0530688 *cctl = pl08x_cctl_bits(*cctl, 1, 1, len);
689 pl08x_fill_lli_for_desc(bd, num_llis, len, *cctl);
690 (*total_bytes) += len;
Linus Walleije8689e62010-09-28 15:57:37 +0200691}
692
693/*
694 * This fills in the table of LLIs for the transfer descriptor
695 * Note that we assume we never have to change the burst sizes
696 * Return 0 for error
697 */
698static int pl08x_fill_llis_for_desc(struct pl08x_driver_data *pl08x,
699 struct pl08x_txd *txd)
700{
Linus Walleije8689e62010-09-28 15:57:37 +0200701 struct pl08x_bus_data *mbus, *sbus;
Russell King - ARM Linux542361f2011-01-03 22:43:15 +0000702 struct pl08x_lli_build_data bd;
Linus Walleije8689e62010-09-28 15:57:37 +0200703 int num_llis = 0;
Viresh Kumar03af5002011-08-05 15:32:39 +0530704 u32 cctl, early_bytes = 0;
Viresh Kumarb7f69d92011-08-05 15:32:43 +0530705 size_t max_bytes_per_lli, total_bytes;
Russell King - ARM Linux7cb72ad2011-01-03 22:35:28 +0000706 struct pl08x_lli *llis_va;
Viresh Kumarb7f69d92011-08-05 15:32:43 +0530707 struct pl08x_sg *dsg;
Linus Walleije8689e62010-09-28 15:57:37 +0200708
Viresh Kumar3e27ee82011-08-05 15:32:27 +0530709 txd->llis_va = dma_pool_alloc(pl08x->pool, GFP_NOWAIT, &txd->llis_bus);
Linus Walleije8689e62010-09-28 15:57:37 +0200710 if (!txd->llis_va) {
711 dev_err(&pl08x->adev->dev, "%s no memory for llis\n", __func__);
712 return 0;
713 }
714
715 pl08x->pool_ctr++;
716
Russell King - ARM Linux542361f2011-01-03 22:43:15 +0000717 bd.txd = txd;
Russell King - ARM Linux25c94f72011-07-21 17:11:46 +0100718 bd.lli_bus = (pl08x->lli_buses & PL08X_AHB2) ? PL080_LLI_LM_AHB2 : 0;
Viresh Kumarb7f69d92011-08-05 15:32:43 +0530719 cctl = txd->cctl;
Russell King - ARM Linux542361f2011-01-03 22:43:15 +0000720
Linus Walleije8689e62010-09-28 15:57:37 +0200721 /* Find maximum width of the source bus */
Russell King - ARM Linux542361f2011-01-03 22:43:15 +0000722 bd.srcbus.maxwidth =
Linus Walleije8689e62010-09-28 15:57:37 +0200723 pl08x_get_bytes_for_cctl((cctl & PL080_CONTROL_SWIDTH_MASK) >>
724 PL080_CONTROL_SWIDTH_SHIFT);
725
726 /* Find maximum width of the destination bus */
Russell King - ARM Linux542361f2011-01-03 22:43:15 +0000727 bd.dstbus.maxwidth =
Linus Walleije8689e62010-09-28 15:57:37 +0200728 pl08x_get_bytes_for_cctl((cctl & PL080_CONTROL_DWIDTH_MASK) >>
729 PL080_CONTROL_DWIDTH_SHIFT);
730
Viresh Kumarb7f69d92011-08-05 15:32:43 +0530731 list_for_each_entry(dsg, &txd->dsg_list, node) {
732 total_bytes = 0;
733 cctl = txd->cctl;
Linus Walleije8689e62010-09-28 15:57:37 +0200734
Viresh Kumarb7f69d92011-08-05 15:32:43 +0530735 bd.srcbus.addr = dsg->src_addr;
736 bd.dstbus.addr = dsg->dst_addr;
737 bd.remainder = dsg->len;
738 bd.srcbus.buswidth = bd.srcbus.maxwidth;
739 bd.dstbus.buswidth = bd.dstbus.maxwidth;
Linus Walleije8689e62010-09-28 15:57:37 +0200740
Viresh Kumarb7f69d92011-08-05 15:32:43 +0530741 pl08x_choose_master_bus(&bd, &mbus, &sbus, cctl);
Linus Walleije8689e62010-09-28 15:57:37 +0200742
Viresh Kumarb7f69d92011-08-05 15:32:43 +0530743 dev_vdbg(&pl08x->adev->dev, "src=0x%08x%s/%u dst=0x%08x%s/%u len=%zu\n",
744 bd.srcbus.addr, cctl & PL080_CONTROL_SRC_INCR ? "+" : "",
745 bd.srcbus.buswidth,
746 bd.dstbus.addr, cctl & PL080_CONTROL_DST_INCR ? "+" : "",
747 bd.dstbus.buswidth,
748 bd.remainder);
749 dev_vdbg(&pl08x->adev->dev, "mbus=%s sbus=%s\n",
750 mbus == &bd.srcbus ? "src" : "dst",
751 sbus == &bd.srcbus ? "src" : "dst");
Russell King - ARM Linuxfc74eb72011-07-21 17:12:06 +0100752
Viresh Kumarb7f69d92011-08-05 15:32:43 +0530753 /*
754 * Zero length is only allowed if all these requirements are
755 * met:
756 * - flow controller is peripheral.
757 * - src.addr is aligned to src.width
758 * - dst.addr is aligned to dst.width
759 *
760 * sg_len == 1 should be true, as there can be two cases here:
761 *
762 * - Memory addresses are contiguous and are not scattered.
763 * Here, Only one sg will be passed by user driver, with
764 * memory address and zero length. We pass this to controller
765 * and after the transfer it will receive the last burst
766 * request from peripheral and so transfer finishes.
767 *
768 * - Memory addresses are scattered and are not contiguous.
769 * Here, Obviously as DMA controller doesn't know when a lli's
770 * transfer gets over, it can't load next lli. So in this
771 * case, there has to be an assumption that only one lli is
772 * supported. Thus, we can't have scattered addresses.
773 */
774 if (!bd.remainder) {
775 u32 fc = (txd->ccfg & PL080_CONFIG_FLOW_CONTROL_MASK) >>
776 PL080_CONFIG_FLOW_CONTROL_SHIFT;
777 if (!((fc >= PL080_FLOW_SRC2DST_DST) &&
Viresh Kumar0a235652011-08-05 15:32:42 +0530778 (fc <= PL080_FLOW_SRC2DST_SRC))) {
Viresh Kumarb7f69d92011-08-05 15:32:43 +0530779 dev_err(&pl08x->adev->dev, "%s sg len can't be zero",
780 __func__);
781 return 0;
782 }
Linus Walleije8689e62010-09-28 15:57:37 +0200783
Viresh Kumarb7f69d92011-08-05 15:32:43 +0530784 if ((bd.srcbus.addr % bd.srcbus.buswidth) ||
Julia Lawall880db3f2012-01-12 22:49:29 +0100785 (bd.dstbus.addr % bd.dstbus.buswidth)) {
Viresh Kumarb7f69d92011-08-05 15:32:43 +0530786 dev_err(&pl08x->adev->dev,
787 "%s src & dst address must be aligned to src"
788 " & dst width if peripheral is flow controller",
789 __func__);
790 return 0;
791 }
Linus Walleije8689e62010-09-28 15:57:37 +0200792
Viresh Kumar16a2e7d2011-08-05 15:32:37 +0530793 cctl = pl08x_cctl_bits(cctl, bd.srcbus.buswidth,
Viresh Kumarb7f69d92011-08-05 15:32:43 +0530794 bd.dstbus.buswidth, 0);
795 pl08x_fill_lli_for_desc(&bd, num_llis++, 0, cctl);
796 break;
Linus Walleije8689e62010-09-28 15:57:37 +0200797 }
798
799 /*
Viresh Kumarb7f69d92011-08-05 15:32:43 +0530800 * Send byte by byte for following cases
801 * - Less than a bus width available
802 * - until master bus is aligned
Linus Walleije8689e62010-09-28 15:57:37 +0200803 */
Viresh Kumarb7f69d92011-08-05 15:32:43 +0530804 if (bd.remainder < mbus->buswidth)
805 early_bytes = bd.remainder;
806 else if ((mbus->addr) % (mbus->buswidth)) {
807 early_bytes = mbus->buswidth - (mbus->addr) %
808 (mbus->buswidth);
809 if ((bd.remainder - early_bytes) < mbus->buswidth)
810 early_bytes = bd.remainder;
Linus Walleije8689e62010-09-28 15:57:37 +0200811 }
Viresh Kumar16a2e7d2011-08-05 15:32:37 +0530812
Viresh Kumarb7f69d92011-08-05 15:32:43 +0530813 if (early_bytes) {
814 dev_vdbg(&pl08x->adev->dev,
815 "%s byte width LLIs (remain 0x%08x)\n",
816 __func__, bd.remainder);
817 prep_byte_width_lli(&bd, &cctl, early_bytes, num_llis++,
818 &total_bytes);
819 }
Linus Walleije8689e62010-09-28 15:57:37 +0200820
Viresh Kumarb7f69d92011-08-05 15:32:43 +0530821 if (bd.remainder) {
822 /*
823 * Master now aligned
824 * - if slave is not then we must set its width down
825 */
826 if (sbus->addr % sbus->buswidth) {
827 dev_dbg(&pl08x->adev->dev,
828 "%s set down bus width to one byte\n",
829 __func__);
830
831 sbus->buswidth = 1;
832 }
833
834 /*
835 * Bytes transferred = tsize * src width, not
836 * MIN(buswidths)
837 */
838 max_bytes_per_lli = bd.srcbus.buswidth *
839 PL080_CONTROL_TRANSFER_SIZE_MASK;
840 dev_vdbg(&pl08x->adev->dev,
841 "%s max bytes per lli = %zu\n",
842 __func__, max_bytes_per_lli);
843
844 /*
845 * Make largest possible LLIs until less than one bus
846 * width left
847 */
848 while (bd.remainder > (mbus->buswidth - 1)) {
849 size_t lli_len, tsize, width;
850
851 /*
852 * If enough left try to send max possible,
853 * otherwise try to send the remainder
854 */
855 lli_len = min(bd.remainder, max_bytes_per_lli);
856
857 /*
858 * Check against maximum bus alignment:
859 * Calculate actual transfer size in relation to
860 * bus width an get a maximum remainder of the
861 * highest bus width - 1
862 */
863 width = max(mbus->buswidth, sbus->buswidth);
864 lli_len = (lli_len / width) * width;
865 tsize = lli_len / bd.srcbus.buswidth;
866
867 dev_vdbg(&pl08x->adev->dev,
868 "%s fill lli with single lli chunk of "
869 "size 0x%08zx (remainder 0x%08zx)\n",
870 __func__, lli_len, bd.remainder);
871
872 cctl = pl08x_cctl_bits(cctl, bd.srcbus.buswidth,
873 bd.dstbus.buswidth, tsize);
874 pl08x_fill_lli_for_desc(&bd, num_llis++,
875 lli_len, cctl);
876 total_bytes += lli_len;
877 }
878
879 /*
880 * Send any odd bytes
881 */
882 if (bd.remainder) {
883 dev_vdbg(&pl08x->adev->dev,
884 "%s align with boundary, send odd bytes (remain %zu)\n",
885 __func__, bd.remainder);
886 prep_byte_width_lli(&bd, &cctl, bd.remainder,
887 num_llis++, &total_bytes);
888 }
889 }
890
891 if (total_bytes != dsg->len) {
892 dev_err(&pl08x->adev->dev,
893 "%s size of encoded lli:s don't match total txd, transferred 0x%08zx from size 0x%08zx\n",
894 __func__, total_bytes, dsg->len);
895 return 0;
896 }
897
898 if (num_llis >= MAX_NUM_TSFR_LLIS) {
899 dev_err(&pl08x->adev->dev,
900 "%s need to increase MAX_NUM_TSFR_LLIS from 0x%08x\n",
901 __func__, (u32) MAX_NUM_TSFR_LLIS);
902 return 0;
903 }
Linus Walleije8689e62010-09-28 15:57:37 +0200904 }
Linus Walleije8689e62010-09-28 15:57:37 +0200905
Russell King - ARM Linuxb58b6b52011-01-03 22:34:48 +0000906 llis_va = txd->llis_va;
Russell King - ARM Linux94ae8522011-01-16 20:18:05 +0000907 /* The final LLI terminates the LLI. */
Russell King - ARM Linuxbfddfb42011-01-03 22:38:12 +0000908 llis_va[num_llis - 1].lli = 0;
Russell King - ARM Linux94ae8522011-01-16 20:18:05 +0000909 /* The final LLI element shall also fire an interrupt. */
Russell King - ARM Linuxb58b6b52011-01-03 22:34:48 +0000910 llis_va[num_llis - 1].cctl |= PL080_CONTROL_TC_IRQ_EN;
Linus Walleije8689e62010-09-28 15:57:37 +0200911
Linus Walleije8689e62010-09-28 15:57:37 +0200912#ifdef VERBOSE_DEBUG
913 {
914 int i;
915
Russell King - ARM Linuxfc74eb72011-07-21 17:12:06 +0100916 dev_vdbg(&pl08x->adev->dev,
917 "%-3s %-9s %-10s %-10s %-10s %s\n",
918 "lli", "", "csrc", "cdst", "clli", "cctl");
Linus Walleije8689e62010-09-28 15:57:37 +0200919 for (i = 0; i < num_llis; i++) {
920 dev_vdbg(&pl08x->adev->dev,
Russell King - ARM Linuxfc74eb72011-07-21 17:12:06 +0100921 "%3d @%p: 0x%08x 0x%08x 0x%08x 0x%08x\n",
922 i, &llis_va[i], llis_va[i].src,
923 llis_va[i].dst, llis_va[i].lli, llis_va[i].cctl
Linus Walleije8689e62010-09-28 15:57:37 +0200924 );
925 }
926 }
927#endif
928
929 return num_llis;
930}
931
932/* You should call this with the struct pl08x lock held */
933static void pl08x_free_txd(struct pl08x_driver_data *pl08x,
934 struct pl08x_txd *txd)
935{
Viresh Kumarb7f69d92011-08-05 15:32:43 +0530936 struct pl08x_sg *dsg, *_dsg;
937
Linus Walleije8689e62010-09-28 15:57:37 +0200938 /* Free the LLI */
Viresh Kumarc1205642011-08-05 15:32:44 +0530939 if (txd->llis_va)
940 dma_pool_free(pl08x->pool, txd->llis_va, txd->llis_bus);
Linus Walleije8689e62010-09-28 15:57:37 +0200941
942 pl08x->pool_ctr--;
943
Viresh Kumarb7f69d92011-08-05 15:32:43 +0530944 list_for_each_entry_safe(dsg, _dsg, &txd->dsg_list, node) {
945 list_del(&dsg->node);
946 kfree(dsg);
947 }
948
Linus Walleije8689e62010-09-28 15:57:37 +0200949 kfree(txd);
950}
951
952static void pl08x_free_txd_list(struct pl08x_driver_data *pl08x,
953 struct pl08x_dma_chan *plchan)
954{
955 struct pl08x_txd *txdi = NULL;
956 struct pl08x_txd *next;
957
Russell King - ARM Linux15c17232011-01-03 22:44:36 +0000958 if (!list_empty(&plchan->pend_list)) {
Linus Walleije8689e62010-09-28 15:57:37 +0200959 list_for_each_entry_safe(txdi,
Russell King - ARM Linux15c17232011-01-03 22:44:36 +0000960 next, &plchan->pend_list, node) {
Linus Walleije8689e62010-09-28 15:57:37 +0200961 list_del(&txdi->node);
962 pl08x_free_txd(pl08x, txdi);
963 }
Linus Walleije8689e62010-09-28 15:57:37 +0200964 }
965}
966
967/*
968 * The DMA ENGINE API
969 */
970static int pl08x_alloc_chan_resources(struct dma_chan *chan)
971{
972 return 0;
973}
974
975static void pl08x_free_chan_resources(struct dma_chan *chan)
976{
977}
978
979/*
980 * This should be called with the channel plchan->lock held
981 */
982static int prep_phy_channel(struct pl08x_dma_chan *plchan,
983 struct pl08x_txd *txd)
984{
985 struct pl08x_driver_data *pl08x = plchan->host;
986 struct pl08x_phy_chan *ch;
987 int ret;
988
989 /* Check if we already have a channel */
Viresh Kumar8f0d30f2011-11-29 12:56:50 +0530990 if (plchan->phychan) {
991 ch = plchan->phychan;
992 goto got_channel;
993 }
Linus Walleije8689e62010-09-28 15:57:37 +0200994
995 ch = pl08x_get_phy_channel(pl08x, plchan);
996 if (!ch) {
997 /* No physical channel available, cope with it */
998 dev_dbg(&pl08x->adev->dev, "no physical channel available for xfer on %s\n", plchan->name);
999 return -EBUSY;
1000 }
1001
1002 /*
1003 * OK we have a physical channel: for memcpy() this is all we
1004 * need, but for slaves the physical signals may be muxed!
1005 * Can the platform allow us to use this channel?
1006 */
Viresh Kumar16ca8102011-08-05 15:32:35 +05301007 if (plchan->slave && pl08x->pd->get_signal) {
Russell Kingaeea1802012-05-17 15:01:28 +01001008 ret = pl08x->pd->get_signal(plchan->cd);
Linus Walleije8689e62010-09-28 15:57:37 +02001009 if (ret < 0) {
1010 dev_dbg(&pl08x->adev->dev,
1011 "unable to use physical channel %d for transfer on %s due to platform restrictions\n",
1012 ch->id, plchan->name);
1013 /* Release physical channel & return */
1014 pl08x_put_phy_channel(pl08x, ch);
1015 return -EBUSY;
1016 }
1017 ch->signal = ret;
1018 }
1019
Viresh Kumar8f0d30f2011-11-29 12:56:50 +05301020 plchan->phychan = ch;
Linus Walleije8689e62010-09-28 15:57:37 +02001021 dev_dbg(&pl08x->adev->dev, "allocated physical channel %d and signal %d for xfer on %s\n",
1022 ch->id,
1023 ch->signal,
1024 plchan->name);
1025
Viresh Kumar8f0d30f2011-11-29 12:56:50 +05301026got_channel:
1027 /* Assign the flow control signal to this channel */
1028 if (txd->direction == DMA_MEM_TO_DEV)
1029 txd->ccfg |= ch->signal << PL080_CONFIG_DST_SEL_SHIFT;
1030 else if (txd->direction == DMA_DEV_TO_MEM)
1031 txd->ccfg |= ch->signal << PL080_CONFIG_SRC_SEL_SHIFT;
1032
Russell King - ARM Linux8087aac2011-01-03 22:45:17 +00001033 plchan->phychan_hold++;
Linus Walleije8689e62010-09-28 15:57:37 +02001034
1035 return 0;
1036}
1037
Russell King - ARM Linux8c8cc2b2011-01-03 22:36:09 +00001038static void release_phy_channel(struct pl08x_dma_chan *plchan)
1039{
1040 struct pl08x_driver_data *pl08x = plchan->host;
1041
1042 if ((plchan->phychan->signal >= 0) && pl08x->pd->put_signal) {
Russell Kingaeea1802012-05-17 15:01:28 +01001043 pl08x->pd->put_signal(plchan->cd, plchan->phychan->signal);
Russell King - ARM Linux8c8cc2b2011-01-03 22:36:09 +00001044 plchan->phychan->signal = -1;
1045 }
1046 pl08x_put_phy_channel(pl08x, plchan->phychan);
1047 plchan->phychan = NULL;
1048}
1049
Linus Walleije8689e62010-09-28 15:57:37 +02001050static dma_cookie_t pl08x_tx_submit(struct dma_async_tx_descriptor *tx)
1051{
1052 struct pl08x_dma_chan *plchan = to_pl08x_chan(tx->chan);
Russell King - ARM Linux501e67e2011-01-03 22:44:57 +00001053 struct pl08x_txd *txd = to_pl08x_txd(tx);
Russell King - ARM Linuxc370e592011-01-03 22:45:37 +00001054 unsigned long flags;
Russell King - ARM Linux884485e2012-03-06 22:34:46 +00001055 dma_cookie_t cookie;
Russell King - ARM Linuxc370e592011-01-03 22:45:37 +00001056
1057 spin_lock_irqsave(&plchan->lock, flags);
Russell King - ARM Linux884485e2012-03-06 22:34:46 +00001058 cookie = dma_cookie_assign(tx);
Russell King - ARM Linux501e67e2011-01-03 22:44:57 +00001059
1060 /* Put this onto the pending list */
1061 list_add_tail(&txd->node, &plchan->pend_list);
1062
1063 /*
1064 * If there was no physical channel available for this memcpy,
1065 * stack the request up and indicate that the channel is waiting
1066 * for a free physical channel.
1067 */
1068 if (!plchan->slave && !plchan->phychan) {
1069 /* Do this memcpy whenever there is a channel ready */
1070 plchan->state = PL08X_CHAN_WAITING;
1071 plchan->waiting = txd;
Russell King - ARM Linux8087aac2011-01-03 22:45:17 +00001072 } else {
1073 plchan->phychan_hold--;
Russell King - ARM Linux501e67e2011-01-03 22:44:57 +00001074 }
1075
Russell King - ARM Linuxc370e592011-01-03 22:45:37 +00001076 spin_unlock_irqrestore(&plchan->lock, flags);
Linus Walleije8689e62010-09-28 15:57:37 +02001077
Russell King - ARM Linux884485e2012-03-06 22:34:46 +00001078 return cookie;
Linus Walleije8689e62010-09-28 15:57:37 +02001079}
1080
1081static struct dma_async_tx_descriptor *pl08x_prep_dma_interrupt(
1082 struct dma_chan *chan, unsigned long flags)
1083{
1084 struct dma_async_tx_descriptor *retval = NULL;
1085
1086 return retval;
1087}
1088
1089/*
Russell King - ARM Linux94ae8522011-01-16 20:18:05 +00001090 * Code accessing dma_async_is_complete() in a tight loop may give problems.
1091 * If slaves are relying on interrupts to signal completion this function
1092 * must not be called with interrupts disabled.
Linus Walleije8689e62010-09-28 15:57:37 +02001093 */
Viresh Kumar3e27ee82011-08-05 15:32:27 +05301094static enum dma_status pl08x_dma_tx_status(struct dma_chan *chan,
1095 dma_cookie_t cookie, struct dma_tx_state *txstate)
Linus Walleije8689e62010-09-28 15:57:37 +02001096{
1097 struct pl08x_dma_chan *plchan = to_pl08x_chan(chan);
Linus Walleije8689e62010-09-28 15:57:37 +02001098 enum dma_status ret;
Linus Walleije8689e62010-09-28 15:57:37 +02001099
Russell King - ARM Linux96a2af42012-03-06 22:35:27 +00001100 ret = dma_cookie_status(chan, cookie, txstate);
1101 if (ret == DMA_SUCCESS)
Linus Walleije8689e62010-09-28 15:57:37 +02001102 return ret;
Linus Walleije8689e62010-09-28 15:57:37 +02001103
1104 /*
Linus Walleije8689e62010-09-28 15:57:37 +02001105 * This cookie not complete yet
Russell King - ARM Linux96a2af42012-03-06 22:35:27 +00001106 * Get number of bytes left in the active transactions and queue
Linus Walleije8689e62010-09-28 15:57:37 +02001107 */
Russell King - ARM Linux96a2af42012-03-06 22:35:27 +00001108 dma_set_residue(txstate, pl08x_getbytes_chan(plchan));
Linus Walleije8689e62010-09-28 15:57:37 +02001109
1110 if (plchan->state == PL08X_CHAN_PAUSED)
1111 return DMA_PAUSED;
1112
1113 /* Whether waiting or running, we're in progress */
1114 return DMA_IN_PROGRESS;
1115}
1116
1117/* PrimeCell DMA extension */
1118struct burst_table {
Russell King - ARM Linux760596c62011-07-21 17:14:08 +01001119 u32 burstwords;
Linus Walleije8689e62010-09-28 15:57:37 +02001120 u32 reg;
1121};
1122
1123static const struct burst_table burst_sizes[] = {
1124 {
1125 .burstwords = 256,
Russell King - ARM Linux760596c62011-07-21 17:14:08 +01001126 .reg = PL080_BSIZE_256,
Linus Walleije8689e62010-09-28 15:57:37 +02001127 },
1128 {
1129 .burstwords = 128,
Russell King - ARM Linux760596c62011-07-21 17:14:08 +01001130 .reg = PL080_BSIZE_128,
Linus Walleije8689e62010-09-28 15:57:37 +02001131 },
1132 {
1133 .burstwords = 64,
Russell King - ARM Linux760596c62011-07-21 17:14:08 +01001134 .reg = PL080_BSIZE_64,
Linus Walleije8689e62010-09-28 15:57:37 +02001135 },
1136 {
1137 .burstwords = 32,
Russell King - ARM Linux760596c62011-07-21 17:14:08 +01001138 .reg = PL080_BSIZE_32,
Linus Walleije8689e62010-09-28 15:57:37 +02001139 },
1140 {
1141 .burstwords = 16,
Russell King - ARM Linux760596c62011-07-21 17:14:08 +01001142 .reg = PL080_BSIZE_16,
Linus Walleije8689e62010-09-28 15:57:37 +02001143 },
1144 {
1145 .burstwords = 8,
Russell King - ARM Linux760596c62011-07-21 17:14:08 +01001146 .reg = PL080_BSIZE_8,
Linus Walleije8689e62010-09-28 15:57:37 +02001147 },
1148 {
1149 .burstwords = 4,
Russell King - ARM Linux760596c62011-07-21 17:14:08 +01001150 .reg = PL080_BSIZE_4,
Linus Walleije8689e62010-09-28 15:57:37 +02001151 },
1152 {
Russell King - ARM Linux760596c62011-07-21 17:14:08 +01001153 .burstwords = 0,
1154 .reg = PL080_BSIZE_1,
Linus Walleije8689e62010-09-28 15:57:37 +02001155 },
1156};
1157
Russell King - ARM Linux121c8472011-07-21 17:13:48 +01001158/*
1159 * Given the source and destination available bus masks, select which
1160 * will be routed to each port. We try to have source and destination
1161 * on separate ports, but always respect the allowable settings.
1162 */
1163static u32 pl08x_select_bus(u8 src, u8 dst)
1164{
1165 u32 cctl = 0;
1166
1167 if (!(dst & PL08X_AHB1) || ((dst & PL08X_AHB2) && (src & PL08X_AHB1)))
1168 cctl |= PL080_CONTROL_DST_AHB2;
1169 if (!(src & PL08X_AHB1) || ((src & PL08X_AHB2) && !(dst & PL08X_AHB2)))
1170 cctl |= PL080_CONTROL_SRC_AHB2;
1171
1172 return cctl;
1173}
1174
Russell King - ARM Linuxf14c4262011-07-21 17:12:47 +01001175static u32 pl08x_cctl(u32 cctl)
1176{
1177 cctl &= ~(PL080_CONTROL_SRC_AHB2 | PL080_CONTROL_DST_AHB2 |
1178 PL080_CONTROL_SRC_INCR | PL080_CONTROL_DST_INCR |
1179 PL080_CONTROL_PROT_MASK);
1180
1181 /* Access the cell in privileged mode, non-bufferable, non-cacheable */
1182 return cctl | PL080_CONTROL_PROT_SYS;
1183}
1184
Russell King - ARM Linuxaa88cda2011-07-21 17:13:28 +01001185static u32 pl08x_width(enum dma_slave_buswidth width)
1186{
1187 switch (width) {
1188 case DMA_SLAVE_BUSWIDTH_1_BYTE:
1189 return PL080_WIDTH_8BIT;
1190 case DMA_SLAVE_BUSWIDTH_2_BYTES:
1191 return PL080_WIDTH_16BIT;
1192 case DMA_SLAVE_BUSWIDTH_4_BYTES:
1193 return PL080_WIDTH_32BIT;
Vinod Koulf32807f2011-07-25 19:22:01 +05301194 default:
1195 return ~0;
Russell King - ARM Linuxaa88cda2011-07-21 17:13:28 +01001196 }
Russell King - ARM Linuxaa88cda2011-07-21 17:13:28 +01001197}
1198
Russell King - ARM Linux760596c62011-07-21 17:14:08 +01001199static u32 pl08x_burst(u32 maxburst)
1200{
1201 int i;
1202
1203 for (i = 0; i < ARRAY_SIZE(burst_sizes); i++)
1204 if (burst_sizes[i].burstwords <= maxburst)
1205 break;
1206
1207 return burst_sizes[i].reg;
1208}
1209
Russell King9862ba12012-05-16 11:16:03 +01001210static u32 pl08x_get_cctl(struct pl08x_dma_chan *plchan,
1211 enum dma_slave_buswidth addr_width, u32 maxburst)
1212{
1213 u32 width, burst, cctl = 0;
1214
1215 width = pl08x_width(addr_width);
1216 if (width == ~0)
1217 return ~0;
1218
1219 cctl |= width << PL080_CONTROL_SWIDTH_SHIFT;
1220 cctl |= width << PL080_CONTROL_DWIDTH_SHIFT;
1221
1222 /*
1223 * If this channel will only request single transfers, set this
1224 * down to ONE element. Also select one element if no maxburst
1225 * is specified.
1226 */
1227 if (plchan->cd->single)
1228 maxburst = 1;
1229
1230 burst = pl08x_burst(maxburst);
1231 cctl |= burst << PL080_CONTROL_SB_SIZE_SHIFT;
1232 cctl |= burst << PL080_CONTROL_DB_SIZE_SHIFT;
1233
1234 return pl08x_cctl(cctl);
1235}
1236
Russell King - ARM Linuxf0fd9442011-01-03 22:45:57 +00001237static int dma_set_runtime_config(struct dma_chan *chan,
1238 struct dma_slave_config *config)
Linus Walleije8689e62010-09-28 15:57:37 +02001239{
1240 struct pl08x_dma_chan *plchan = to_pl08x_chan(chan);
1241 struct pl08x_driver_data *pl08x = plchan->host;
Linus Walleije8689e62010-09-28 15:57:37 +02001242 enum dma_slave_buswidth addr_width;
Russell King9862ba12012-05-16 11:16:03 +01001243 u32 maxburst, cctl = 0;
Linus Walleije8689e62010-09-28 15:57:37 +02001244
Russell King - ARM Linuxb7f75862011-01-03 22:46:17 +00001245 if (!plchan->slave)
1246 return -EINVAL;
1247
Linus Walleije8689e62010-09-28 15:57:37 +02001248 /* Transfer direction */
1249 plchan->runtime_direction = config->direction;
Vinod Kouldb8196d2011-10-13 22:34:23 +05301250 if (config->direction == DMA_MEM_TO_DEV) {
Linus Walleije8689e62010-09-28 15:57:37 +02001251 addr_width = config->dst_addr_width;
1252 maxburst = config->dst_maxburst;
Vinod Kouldb8196d2011-10-13 22:34:23 +05301253 } else if (config->direction == DMA_DEV_TO_MEM) {
Linus Walleije8689e62010-09-28 15:57:37 +02001254 addr_width = config->src_addr_width;
1255 maxburst = config->src_maxburst;
1256 } else {
1257 dev_err(&pl08x->adev->dev,
1258 "bad runtime_config: alien transfer direction\n");
Russell King - ARM Linuxf0fd9442011-01-03 22:45:57 +00001259 return -EINVAL;
Linus Walleije8689e62010-09-28 15:57:37 +02001260 }
1261
Russell King9862ba12012-05-16 11:16:03 +01001262 cctl = pl08x_get_cctl(plchan, addr_width, maxburst);
1263 if (cctl == ~0) {
Linus Walleije8689e62010-09-28 15:57:37 +02001264 dev_err(&pl08x->adev->dev,
1265 "bad runtime_config: alien address width\n");
Russell King - ARM Linuxf0fd9442011-01-03 22:45:57 +00001266 return -EINVAL;
Linus Walleije8689e62010-09-28 15:57:37 +02001267 }
1268
Russell Kinged91c132012-05-16 11:02:40 +01001269 plchan->cfg = *config;
1270
Vinod Kouldb8196d2011-10-13 22:34:23 +05301271 if (plchan->runtime_direction == DMA_DEV_TO_MEM) {
Russell King9862ba12012-05-16 11:16:03 +01001272 plchan->src_cctl = cctl;
Russell King - ARM Linuxb207b4d2011-07-21 17:12:27 +01001273 } else {
Russell King9862ba12012-05-16 11:16:03 +01001274 plchan->dst_cctl = cctl;
Russell King - ARM Linuxb207b4d2011-07-21 17:12:27 +01001275 }
Russell King - ARM Linuxf0fd9442011-01-03 22:45:57 +00001276
Linus Walleije8689e62010-09-28 15:57:37 +02001277 dev_dbg(&pl08x->adev->dev,
1278 "configured channel %s (%s) for %s, data width %d, "
Russell King - ARM Linux4983a042011-01-03 22:39:33 +00001279 "maxburst %d words, LE, CCTL=0x%08x\n",
Linus Walleije8689e62010-09-28 15:57:37 +02001280 dma_chan_name(chan), plchan->name,
Vinod Kouldb8196d2011-10-13 22:34:23 +05301281 (config->direction == DMA_DEV_TO_MEM) ? "RX" : "TX",
Linus Walleije8689e62010-09-28 15:57:37 +02001282 addr_width,
1283 maxburst,
Russell King - ARM Linux4983a042011-01-03 22:39:33 +00001284 cctl);
Russell King - ARM Linuxf0fd9442011-01-03 22:45:57 +00001285
1286 return 0;
Linus Walleije8689e62010-09-28 15:57:37 +02001287}
1288
1289/*
1290 * Slave transactions callback to the slave device to allow
1291 * synchronization of slave DMA signals with the DMAC enable
1292 */
1293static void pl08x_issue_pending(struct dma_chan *chan)
1294{
1295 struct pl08x_dma_chan *plchan = to_pl08x_chan(chan);
Linus Walleije8689e62010-09-28 15:57:37 +02001296 unsigned long flags;
1297
1298 spin_lock_irqsave(&plchan->lock, flags);
Russell King - ARM Linux9c0bb432011-01-03 22:32:05 +00001299 /* Something is already active, or we're waiting for a channel... */
1300 if (plchan->at || plchan->state == PL08X_CHAN_WAITING) {
1301 spin_unlock_irqrestore(&plchan->lock, flags);
Linus Walleije8689e62010-09-28 15:57:37 +02001302 return;
Russell King - ARM Linux9c0bb432011-01-03 22:32:05 +00001303 }
Linus Walleije8689e62010-09-28 15:57:37 +02001304
1305 /* Take the first element in the queue and execute it */
Russell King - ARM Linux15c17232011-01-03 22:44:36 +00001306 if (!list_empty(&plchan->pend_list)) {
Linus Walleije8689e62010-09-28 15:57:37 +02001307 struct pl08x_txd *next;
1308
Russell King - ARM Linux15c17232011-01-03 22:44:36 +00001309 next = list_first_entry(&plchan->pend_list,
Linus Walleije8689e62010-09-28 15:57:37 +02001310 struct pl08x_txd,
1311 node);
1312 list_del(&next->node);
Linus Walleije8689e62010-09-28 15:57:37 +02001313 plchan->state = PL08X_CHAN_RUNNING;
1314
Russell King - ARM Linuxc885bee2011-01-03 22:38:52 +00001315 pl08x_start_txd(plchan, next);
Linus Walleije8689e62010-09-28 15:57:37 +02001316 }
1317
1318 spin_unlock_irqrestore(&plchan->lock, flags);
1319}
1320
1321static int pl08x_prep_channel_resources(struct pl08x_dma_chan *plchan,
1322 struct pl08x_txd *txd)
1323{
Linus Walleije8689e62010-09-28 15:57:37 +02001324 struct pl08x_driver_data *pl08x = plchan->host;
Russell King - ARM Linuxc370e592011-01-03 22:45:37 +00001325 unsigned long flags;
1326 int num_llis, ret;
Linus Walleije8689e62010-09-28 15:57:37 +02001327
1328 num_llis = pl08x_fill_llis_for_desc(pl08x, txd);
Russell King - ARM Linuxdafa7312011-01-03 22:31:45 +00001329 if (!num_llis) {
Viresh Kumar57001a62011-08-05 15:32:45 +05301330 spin_lock_irqsave(&plchan->lock, flags);
1331 pl08x_free_txd(pl08x, txd);
1332 spin_unlock_irqrestore(&plchan->lock, flags);
Linus Walleije8689e62010-09-28 15:57:37 +02001333 return -EINVAL;
Russell King - ARM Linuxdafa7312011-01-03 22:31:45 +00001334 }
Linus Walleije8689e62010-09-28 15:57:37 +02001335
Russell King - ARM Linuxc370e592011-01-03 22:45:37 +00001336 spin_lock_irqsave(&plchan->lock, flags);
Linus Walleije8689e62010-09-28 15:57:37 +02001337
Linus Walleije8689e62010-09-28 15:57:37 +02001338 /*
1339 * See if we already have a physical channel allocated,
1340 * else this is the time to try to get one.
1341 */
1342 ret = prep_phy_channel(plchan, txd);
1343 if (ret) {
1344 /*
Russell King - ARM Linux501e67e2011-01-03 22:44:57 +00001345 * No physical channel was available.
1346 *
1347 * memcpy transfers can be sorted out at submission time.
1348 *
1349 * Slave transfers may have been denied due to platform
1350 * channel muxing restrictions. Since there is no guarantee
1351 * that this will ever be resolved, and the signal must be
1352 * acquired AFTER acquiring the physical channel, we will let
1353 * them be NACK:ed with -EBUSY here. The drivers can retry
1354 * the prep() call if they are eager on doing this using DMA.
Linus Walleije8689e62010-09-28 15:57:37 +02001355 */
1356 if (plchan->slave) {
1357 pl08x_free_txd_list(pl08x, plchan);
Russell King - ARM Linux501e67e2011-01-03 22:44:57 +00001358 pl08x_free_txd(pl08x, txd);
Russell King - ARM Linuxc370e592011-01-03 22:45:37 +00001359 spin_unlock_irqrestore(&plchan->lock, flags);
Linus Walleije8689e62010-09-28 15:57:37 +02001360 return -EBUSY;
1361 }
Linus Walleije8689e62010-09-28 15:57:37 +02001362 } else
1363 /*
Russell King - ARM Linux94ae8522011-01-16 20:18:05 +00001364 * Else we're all set, paused and ready to roll, status
1365 * will switch to PL08X_CHAN_RUNNING when we call
1366 * issue_pending(). If there is something running on the
1367 * channel already we don't change its state.
Linus Walleije8689e62010-09-28 15:57:37 +02001368 */
1369 if (plchan->state == PL08X_CHAN_IDLE)
1370 plchan->state = PL08X_CHAN_PAUSED;
1371
Russell King - ARM Linuxc370e592011-01-03 22:45:37 +00001372 spin_unlock_irqrestore(&plchan->lock, flags);
Linus Walleije8689e62010-09-28 15:57:37 +02001373
1374 return 0;
1375}
1376
Russell King - ARM Linuxc0428792011-01-03 22:43:56 +00001377static struct pl08x_txd *pl08x_get_txd(struct pl08x_dma_chan *plchan,
1378 unsigned long flags)
Russell King - ARM Linuxac3cd202011-01-03 22:35:49 +00001379{
Viresh Kumarb201c112011-08-05 15:32:29 +05301380 struct pl08x_txd *txd = kzalloc(sizeof(*txd), GFP_NOWAIT);
Russell King - ARM Linuxac3cd202011-01-03 22:35:49 +00001381
1382 if (txd) {
1383 dma_async_tx_descriptor_init(&txd->tx, &plchan->chan);
Russell King - ARM Linuxc0428792011-01-03 22:43:56 +00001384 txd->tx.flags = flags;
Russell King - ARM Linuxac3cd202011-01-03 22:35:49 +00001385 txd->tx.tx_submit = pl08x_tx_submit;
1386 INIT_LIST_HEAD(&txd->node);
Viresh Kumarb7f69d92011-08-05 15:32:43 +05301387 INIT_LIST_HEAD(&txd->dsg_list);
Russell King - ARM Linux4983a042011-01-03 22:39:33 +00001388
1389 /* Always enable error and terminal interrupts */
1390 txd->ccfg = PL080_CONFIG_ERR_IRQ_MASK |
1391 PL080_CONFIG_TC_IRQ_MASK;
Russell King - ARM Linuxac3cd202011-01-03 22:35:49 +00001392 }
1393 return txd;
1394}
1395
Linus Walleije8689e62010-09-28 15:57:37 +02001396/*
1397 * Initialize a descriptor to be used by memcpy submit
1398 */
1399static struct dma_async_tx_descriptor *pl08x_prep_dma_memcpy(
1400 struct dma_chan *chan, dma_addr_t dest, dma_addr_t src,
1401 size_t len, unsigned long flags)
1402{
1403 struct pl08x_dma_chan *plchan = to_pl08x_chan(chan);
1404 struct pl08x_driver_data *pl08x = plchan->host;
1405 struct pl08x_txd *txd;
Viresh Kumarb7f69d92011-08-05 15:32:43 +05301406 struct pl08x_sg *dsg;
Linus Walleije8689e62010-09-28 15:57:37 +02001407 int ret;
1408
Russell King - ARM Linuxc0428792011-01-03 22:43:56 +00001409 txd = pl08x_get_txd(plchan, flags);
Linus Walleije8689e62010-09-28 15:57:37 +02001410 if (!txd) {
1411 dev_err(&pl08x->adev->dev,
1412 "%s no memory for descriptor\n", __func__);
1413 return NULL;
1414 }
1415
Viresh Kumarb7f69d92011-08-05 15:32:43 +05301416 dsg = kzalloc(sizeof(struct pl08x_sg), GFP_NOWAIT);
1417 if (!dsg) {
1418 pl08x_free_txd(pl08x, txd);
1419 dev_err(&pl08x->adev->dev, "%s no memory for pl080 sg\n",
1420 __func__);
1421 return NULL;
1422 }
1423 list_add_tail(&dsg->node, &txd->dsg_list);
1424
Russell King92d2fd62012-05-25 14:37:56 +01001425 txd->direction = DMA_MEM_TO_MEM;
Viresh Kumarb7f69d92011-08-05 15:32:43 +05301426 dsg->src_addr = src;
1427 dsg->dst_addr = dest;
1428 dsg->len = len;
Linus Walleije8689e62010-09-28 15:57:37 +02001429
1430 /* Set platform data for m2m */
Russell King - ARM Linux4983a042011-01-03 22:39:33 +00001431 txd->ccfg |= PL080_FLOW_MEM2MEM << PL080_CONFIG_FLOW_CONTROL_SHIFT;
Russell King - ARM Linuxc7da9a52011-01-03 22:40:53 +00001432 txd->cctl = pl08x->pd->memcpy_channel.cctl &
1433 ~(PL080_CONTROL_DST_AHB2 | PL080_CONTROL_SRC_AHB2);
Russell King - ARM Linux4983a042011-01-03 22:39:33 +00001434
Linus Walleije8689e62010-09-28 15:57:37 +02001435 /* Both to be incremented or the code will break */
Russell King - ARM Linux70b5ed62011-01-03 22:40:13 +00001436 txd->cctl |= PL080_CONTROL_SRC_INCR | PL080_CONTROL_DST_INCR;
Russell King - ARM Linuxc7da9a52011-01-03 22:40:53 +00001437
Russell King - ARM Linuxc7da9a52011-01-03 22:40:53 +00001438 if (pl08x->vd->dualmaster)
Russell King - ARM Linux121c8472011-07-21 17:13:48 +01001439 txd->cctl |= pl08x_select_bus(pl08x->mem_buses,
1440 pl08x->mem_buses);
Linus Walleije8689e62010-09-28 15:57:37 +02001441
Linus Walleije8689e62010-09-28 15:57:37 +02001442 ret = pl08x_prep_channel_resources(plchan, txd);
1443 if (ret)
1444 return NULL;
Linus Walleije8689e62010-09-28 15:57:37 +02001445
1446 return &txd->tx;
1447}
1448
Russell King - ARM Linux3e2a0372011-01-03 22:32:46 +00001449static struct dma_async_tx_descriptor *pl08x_prep_slave_sg(
Linus Walleije8689e62010-09-28 15:57:37 +02001450 struct dma_chan *chan, struct scatterlist *sgl,
Vinod Kouldb8196d2011-10-13 22:34:23 +05301451 unsigned int sg_len, enum dma_transfer_direction direction,
Alexandre Bounine185ecb52012-03-08 15:35:13 -05001452 unsigned long flags, void *context)
Linus Walleije8689e62010-09-28 15:57:37 +02001453{
1454 struct pl08x_dma_chan *plchan = to_pl08x_chan(chan);
1455 struct pl08x_driver_data *pl08x = plchan->host;
1456 struct pl08x_txd *txd;
Viresh Kumarb7f69d92011-08-05 15:32:43 +05301457 struct pl08x_sg *dsg;
1458 struct scatterlist *sg;
1459 dma_addr_t slave_addr;
Viresh Kumar0a235652011-08-05 15:32:42 +05301460 int ret, tmp;
Russell King409ec8d2012-05-16 11:08:43 +01001461 u8 src_buses, dst_buses;
1462 u32 cctl;
Linus Walleije8689e62010-09-28 15:57:37 +02001463
Linus Walleije8689e62010-09-28 15:57:37 +02001464 dev_dbg(&pl08x->adev->dev, "%s prepare transaction of %d bytes from %s\n",
Lars-Peter Clausenfdaf9c42012-04-25 20:50:52 +02001465 __func__, sg_dma_len(sgl), plchan->name);
Linus Walleije8689e62010-09-28 15:57:37 +02001466
Russell King - ARM Linuxc0428792011-01-03 22:43:56 +00001467 txd = pl08x_get_txd(plchan, flags);
Linus Walleije8689e62010-09-28 15:57:37 +02001468 if (!txd) {
1469 dev_err(&pl08x->adev->dev, "%s no txd\n", __func__);
1470 return NULL;
1471 }
1472
Linus Walleije8689e62010-09-28 15:57:37 +02001473 if (direction != plchan->runtime_direction)
1474 dev_err(&pl08x->adev->dev, "%s DMA setup does not match "
1475 "the direction configured for the PrimeCell\n",
1476 __func__);
1477
1478 /*
1479 * Set up addresses, the PrimeCell configured address
1480 * will take precedence since this may configure the
1481 * channel target address dynamically at runtime.
1482 */
1483 txd->direction = direction;
Russell King - ARM Linuxc7da9a52011-01-03 22:40:53 +00001484
Vinod Kouldb8196d2011-10-13 22:34:23 +05301485 if (direction == DMA_MEM_TO_DEV) {
Russell King409ec8d2012-05-16 11:08:43 +01001486 cctl = plchan->dst_cctl | PL080_CONTROL_SRC_INCR;
Russell Kinged91c132012-05-16 11:02:40 +01001487 slave_addr = plchan->cfg.dst_addr;
Russell King409ec8d2012-05-16 11:08:43 +01001488 src_buses = pl08x->mem_buses;
1489 dst_buses = plchan->cd->periph_buses;
Vinod Kouldb8196d2011-10-13 22:34:23 +05301490 } else if (direction == DMA_DEV_TO_MEM) {
Russell King409ec8d2012-05-16 11:08:43 +01001491 cctl = plchan->src_cctl | PL080_CONTROL_DST_INCR;
Russell Kinged91c132012-05-16 11:02:40 +01001492 slave_addr = plchan->cfg.src_addr;
Russell King409ec8d2012-05-16 11:08:43 +01001493 src_buses = plchan->cd->periph_buses;
1494 dst_buses = pl08x->mem_buses;
Linus Walleije8689e62010-09-28 15:57:37 +02001495 } else {
Viresh Kumarb7f69d92011-08-05 15:32:43 +05301496 pl08x_free_txd(pl08x, txd);
Linus Walleije8689e62010-09-28 15:57:37 +02001497 dev_err(&pl08x->adev->dev,
1498 "%s direction unsupported\n", __func__);
1499 return NULL;
1500 }
Linus Walleije8689e62010-09-28 15:57:37 +02001501
Russell King409ec8d2012-05-16 11:08:43 +01001502 txd->cctl = cctl | pl08x_select_bus(src_buses, dst_buses);
1503
Russell King95442b22012-05-16 11:05:09 +01001504 if (plchan->cfg.device_fc)
Vinod Kouldb8196d2011-10-13 22:34:23 +05301505 tmp = (direction == DMA_MEM_TO_DEV) ? PL080_FLOW_MEM2PER_PER :
Viresh Kumar0a235652011-08-05 15:32:42 +05301506 PL080_FLOW_PER2MEM_PER;
1507 else
Vinod Kouldb8196d2011-10-13 22:34:23 +05301508 tmp = (direction == DMA_MEM_TO_DEV) ? PL080_FLOW_MEM2PER :
Viresh Kumar0a235652011-08-05 15:32:42 +05301509 PL080_FLOW_PER2MEM;
1510
1511 txd->ccfg |= tmp << PL080_CONFIG_FLOW_CONTROL_SHIFT;
1512
Viresh Kumarb7f69d92011-08-05 15:32:43 +05301513 for_each_sg(sgl, sg, sg_len, tmp) {
1514 dsg = kzalloc(sizeof(struct pl08x_sg), GFP_NOWAIT);
1515 if (!dsg) {
1516 pl08x_free_txd(pl08x, txd);
1517 dev_err(&pl08x->adev->dev, "%s no mem for pl080 sg\n",
1518 __func__);
1519 return NULL;
1520 }
1521 list_add_tail(&dsg->node, &txd->dsg_list);
1522
1523 dsg->len = sg_dma_len(sg);
Vinod Kouldb8196d2011-10-13 22:34:23 +05301524 if (direction == DMA_MEM_TO_DEV) {
Lars-Peter Clausencbb796c2012-04-25 20:50:51 +02001525 dsg->src_addr = sg_dma_address(sg);
Viresh Kumarb7f69d92011-08-05 15:32:43 +05301526 dsg->dst_addr = slave_addr;
1527 } else {
1528 dsg->src_addr = slave_addr;
Lars-Peter Clausencbb796c2012-04-25 20:50:51 +02001529 dsg->dst_addr = sg_dma_address(sg);
Viresh Kumarb7f69d92011-08-05 15:32:43 +05301530 }
1531 }
1532
Linus Walleije8689e62010-09-28 15:57:37 +02001533 ret = pl08x_prep_channel_resources(plchan, txd);
1534 if (ret)
1535 return NULL;
Linus Walleije8689e62010-09-28 15:57:37 +02001536
1537 return &txd->tx;
1538}
1539
1540static int pl08x_control(struct dma_chan *chan, enum dma_ctrl_cmd cmd,
1541 unsigned long arg)
1542{
1543 struct pl08x_dma_chan *plchan = to_pl08x_chan(chan);
1544 struct pl08x_driver_data *pl08x = plchan->host;
1545 unsigned long flags;
1546 int ret = 0;
1547
1548 /* Controls applicable to inactive channels */
1549 if (cmd == DMA_SLAVE_CONFIG) {
Russell King - ARM Linuxf0fd9442011-01-03 22:45:57 +00001550 return dma_set_runtime_config(chan,
1551 (struct dma_slave_config *)arg);
Linus Walleije8689e62010-09-28 15:57:37 +02001552 }
1553
1554 /*
1555 * Anything succeeds on channels with no physical allocation and
1556 * no queued transfers.
1557 */
1558 spin_lock_irqsave(&plchan->lock, flags);
1559 if (!plchan->phychan && !plchan->at) {
1560 spin_unlock_irqrestore(&plchan->lock, flags);
1561 return 0;
1562 }
1563
1564 switch (cmd) {
1565 case DMA_TERMINATE_ALL:
1566 plchan->state = PL08X_CHAN_IDLE;
1567
1568 if (plchan->phychan) {
Russell King - ARM Linuxfb526212011-01-27 12:32:53 +00001569 pl08x_terminate_phy_chan(pl08x, plchan->phychan);
Linus Walleije8689e62010-09-28 15:57:37 +02001570
1571 /*
1572 * Mark physical channel as free and free any slave
1573 * signal
1574 */
Russell King - ARM Linux8c8cc2b2011-01-03 22:36:09 +00001575 release_phy_channel(plchan);
Davide Ciminaghi88c08a32012-04-19 12:20:24 +02001576 plchan->phychan_hold = 0;
Linus Walleije8689e62010-09-28 15:57:37 +02001577 }
Linus Walleije8689e62010-09-28 15:57:37 +02001578 /* Dequeue jobs and free LLIs */
1579 if (plchan->at) {
1580 pl08x_free_txd(pl08x, plchan->at);
1581 plchan->at = NULL;
1582 }
1583 /* Dequeue jobs not yet fired as well */
1584 pl08x_free_txd_list(pl08x, plchan);
1585 break;
1586 case DMA_PAUSE:
1587 pl08x_pause_phy_chan(plchan->phychan);
1588 plchan->state = PL08X_CHAN_PAUSED;
1589 break;
1590 case DMA_RESUME:
1591 pl08x_resume_phy_chan(plchan->phychan);
1592 plchan->state = PL08X_CHAN_RUNNING;
1593 break;
1594 default:
1595 /* Unknown command */
1596 ret = -ENXIO;
1597 break;
1598 }
1599
1600 spin_unlock_irqrestore(&plchan->lock, flags);
1601
1602 return ret;
1603}
1604
1605bool pl08x_filter_id(struct dma_chan *chan, void *chan_id)
1606{
Russell King - ARM Linux7703eac2011-08-31 09:34:35 +01001607 struct pl08x_dma_chan *plchan;
Linus Walleije8689e62010-09-28 15:57:37 +02001608 char *name = chan_id;
1609
Russell King - ARM Linux7703eac2011-08-31 09:34:35 +01001610 /* Reject channels for devices not bound to this driver */
1611 if (chan->device->dev->driver != &pl08x_amba_driver.drv)
1612 return false;
1613
1614 plchan = to_pl08x_chan(chan);
1615
Linus Walleije8689e62010-09-28 15:57:37 +02001616 /* Check that the channel is not taken! */
1617 if (!strcmp(plchan->name, name))
1618 return true;
1619
1620 return false;
1621}
1622
1623/*
1624 * Just check that the device is there and active
Russell King - ARM Linux94ae8522011-01-16 20:18:05 +00001625 * TODO: turn this bit on/off depending on the number of physical channels
1626 * actually used, if it is zero... well shut it off. That will save some
1627 * power. Cut the clock at the same time.
Linus Walleije8689e62010-09-28 15:57:37 +02001628 */
1629static void pl08x_ensure_on(struct pl08x_driver_data *pl08x)
1630{
Linus Walleijaffa1152012-04-12 09:01:49 +02001631 /* The Nomadik variant does not have the config register */
1632 if (pl08x->vd->nomadik)
1633 return;
Viresh Kumar48a59ef2011-08-05 15:32:34 +05301634 writel(PL080_CONFIG_ENABLE, pl08x->base + PL080_CONFIG);
Linus Walleije8689e62010-09-28 15:57:37 +02001635}
1636
Russell King - ARM Linux3d992e12011-01-03 22:44:16 +00001637static void pl08x_unmap_buffers(struct pl08x_txd *txd)
1638{
1639 struct device *dev = txd->tx.chan->device->dev;
Viresh Kumarb7f69d92011-08-05 15:32:43 +05301640 struct pl08x_sg *dsg;
Russell King - ARM Linux3d992e12011-01-03 22:44:16 +00001641
1642 if (!(txd->tx.flags & DMA_COMPL_SKIP_SRC_UNMAP)) {
1643 if (txd->tx.flags & DMA_COMPL_SRC_UNMAP_SINGLE)
Viresh Kumarb7f69d92011-08-05 15:32:43 +05301644 list_for_each_entry(dsg, &txd->dsg_list, node)
1645 dma_unmap_single(dev, dsg->src_addr, dsg->len,
1646 DMA_TO_DEVICE);
1647 else {
1648 list_for_each_entry(dsg, &txd->dsg_list, node)
1649 dma_unmap_page(dev, dsg->src_addr, dsg->len,
1650 DMA_TO_DEVICE);
1651 }
Russell King - ARM Linux3d992e12011-01-03 22:44:16 +00001652 }
1653 if (!(txd->tx.flags & DMA_COMPL_SKIP_DEST_UNMAP)) {
1654 if (txd->tx.flags & DMA_COMPL_DEST_UNMAP_SINGLE)
Viresh Kumarb7f69d92011-08-05 15:32:43 +05301655 list_for_each_entry(dsg, &txd->dsg_list, node)
1656 dma_unmap_single(dev, dsg->dst_addr, dsg->len,
1657 DMA_FROM_DEVICE);
Russell King - ARM Linux3d992e12011-01-03 22:44:16 +00001658 else
Viresh Kumarb7f69d92011-08-05 15:32:43 +05301659 list_for_each_entry(dsg, &txd->dsg_list, node)
1660 dma_unmap_page(dev, dsg->dst_addr, dsg->len,
1661 DMA_FROM_DEVICE);
Russell King - ARM Linux3d992e12011-01-03 22:44:16 +00001662 }
1663}
1664
Linus Walleije8689e62010-09-28 15:57:37 +02001665static void pl08x_tasklet(unsigned long data)
1666{
1667 struct pl08x_dma_chan *plchan = (struct pl08x_dma_chan *) data;
Linus Walleije8689e62010-09-28 15:57:37 +02001668 struct pl08x_driver_data *pl08x = plchan->host;
Russell King - ARM Linux858c21c2011-01-03 22:41:34 +00001669 struct pl08x_txd *txd;
Russell King - ARM Linuxbf072af2011-01-03 22:31:24 +00001670 unsigned long flags;
Linus Walleije8689e62010-09-28 15:57:37 +02001671
Russell King - ARM Linuxbf072af2011-01-03 22:31:24 +00001672 spin_lock_irqsave(&plchan->lock, flags);
Linus Walleije8689e62010-09-28 15:57:37 +02001673
Russell King - ARM Linux858c21c2011-01-03 22:41:34 +00001674 txd = plchan->at;
1675 plchan->at = NULL;
1676
1677 if (txd) {
Russell King - ARM Linux94ae8522011-01-16 20:18:05 +00001678 /* Update last completed */
Russell King - ARM Linuxf7fbce02012-03-06 22:35:07 +00001679 dma_cookie_complete(&txd->tx);
Linus Walleije8689e62010-09-28 15:57:37 +02001680 }
Russell King - ARM Linux8087aac2011-01-03 22:45:17 +00001681
Russell King - ARM Linux94ae8522011-01-16 20:18:05 +00001682 /* If a new descriptor is queued, set it up plchan->at is NULL here */
Russell King - ARM Linux15c17232011-01-03 22:44:36 +00001683 if (!list_empty(&plchan->pend_list)) {
Linus Walleije8689e62010-09-28 15:57:37 +02001684 struct pl08x_txd *next;
1685
Russell King - ARM Linux15c17232011-01-03 22:44:36 +00001686 next = list_first_entry(&plchan->pend_list,
Linus Walleije8689e62010-09-28 15:57:37 +02001687 struct pl08x_txd,
1688 node);
1689 list_del(&next->node);
Russell King - ARM Linuxc885bee2011-01-03 22:38:52 +00001690
1691 pl08x_start_txd(plchan, next);
Russell King - ARM Linux8087aac2011-01-03 22:45:17 +00001692 } else if (plchan->phychan_hold) {
1693 /*
1694 * This channel is still in use - we have a new txd being
1695 * prepared and will soon be queued. Don't give up the
1696 * physical channel.
1697 */
Linus Walleije8689e62010-09-28 15:57:37 +02001698 } else {
1699 struct pl08x_dma_chan *waiting = NULL;
1700
1701 /*
1702 * No more jobs, so free up the physical channel
1703 * Free any allocated signal on slave transfers too
1704 */
Russell King - ARM Linux8c8cc2b2011-01-03 22:36:09 +00001705 release_phy_channel(plchan);
Linus Walleije8689e62010-09-28 15:57:37 +02001706 plchan->state = PL08X_CHAN_IDLE;
1707
1708 /*
Russell King - ARM Linux94ae8522011-01-16 20:18:05 +00001709 * And NOW before anyone else can grab that free:d up
1710 * physical channel, see if there is some memcpy pending
1711 * that seriously needs to start because of being stacked
1712 * up while we were choking the physical channels with data.
Linus Walleije8689e62010-09-28 15:57:37 +02001713 */
1714 list_for_each_entry(waiting, &pl08x->memcpy.channels,
1715 chan.device_node) {
Viresh Kumar3e27ee82011-08-05 15:32:27 +05301716 if (waiting->state == PL08X_CHAN_WAITING &&
1717 waiting->waiting != NULL) {
Linus Walleije8689e62010-09-28 15:57:37 +02001718 int ret;
1719
1720 /* This should REALLY not fail now */
1721 ret = prep_phy_channel(waiting,
1722 waiting->waiting);
1723 BUG_ON(ret);
Russell King - ARM Linux8087aac2011-01-03 22:45:17 +00001724 waiting->phychan_hold--;
Linus Walleije8689e62010-09-28 15:57:37 +02001725 waiting->state = PL08X_CHAN_RUNNING;
1726 waiting->waiting = NULL;
1727 pl08x_issue_pending(&waiting->chan);
1728 break;
1729 }
1730 }
1731 }
1732
Russell King - ARM Linuxbf072af2011-01-03 22:31:24 +00001733 spin_unlock_irqrestore(&plchan->lock, flags);
Russell King - ARM Linux858c21c2011-01-03 22:41:34 +00001734
Russell King - ARM Linux3d992e12011-01-03 22:44:16 +00001735 if (txd) {
1736 dma_async_tx_callback callback = txd->tx.callback;
1737 void *callback_param = txd->tx.callback_param;
1738
1739 /* Don't try to unmap buffers on slave channels */
1740 if (!plchan->slave)
1741 pl08x_unmap_buffers(txd);
1742
1743 /* Free the descriptor */
1744 spin_lock_irqsave(&plchan->lock, flags);
1745 pl08x_free_txd(pl08x, txd);
1746 spin_unlock_irqrestore(&plchan->lock, flags);
1747
1748 /* Callback to signal completion */
1749 if (callback)
1750 callback(callback_param);
1751 }
Linus Walleije8689e62010-09-28 15:57:37 +02001752}
1753
1754static irqreturn_t pl08x_irq(int irq, void *dev)
1755{
1756 struct pl08x_driver_data *pl08x = dev;
Viresh Kumar28da2832011-08-05 15:32:36 +05301757 u32 mask = 0, err, tc, i;
Linus Walleije8689e62010-09-28 15:57:37 +02001758
Viresh Kumar28da2832011-08-05 15:32:36 +05301759 /* check & clear - ERR & TC interrupts */
1760 err = readl(pl08x->base + PL080_ERR_STATUS);
1761 if (err) {
1762 dev_err(&pl08x->adev->dev, "%s error interrupt, register value 0x%08x\n",
1763 __func__, err);
1764 writel(err, pl08x->base + PL080_ERR_CLEAR);
Linus Walleije8689e62010-09-28 15:57:37 +02001765 }
Linus Walleijd29bf012012-04-09 22:53:21 +02001766 tc = readl(pl08x->base + PL080_TC_STATUS);
Viresh Kumar28da2832011-08-05 15:32:36 +05301767 if (tc)
1768 writel(tc, pl08x->base + PL080_TC_CLEAR);
1769
1770 if (!err && !tc)
1771 return IRQ_NONE;
1772
Linus Walleije8689e62010-09-28 15:57:37 +02001773 for (i = 0; i < pl08x->vd->channels; i++) {
Viresh Kumar28da2832011-08-05 15:32:36 +05301774 if (((1 << i) & err) || ((1 << i) & tc)) {
Linus Walleije8689e62010-09-28 15:57:37 +02001775 /* Locate physical channel */
1776 struct pl08x_phy_chan *phychan = &pl08x->phy_chans[i];
1777 struct pl08x_dma_chan *plchan = phychan->serving;
1778
Viresh Kumar28da2832011-08-05 15:32:36 +05301779 if (!plchan) {
1780 dev_err(&pl08x->adev->dev,
1781 "%s Error TC interrupt on unused channel: 0x%08x\n",
1782 __func__, i);
1783 continue;
1784 }
1785
Linus Walleije8689e62010-09-28 15:57:37 +02001786 /* Schedule tasklet on this channel */
1787 tasklet_schedule(&plchan->tasklet);
Linus Walleije8689e62010-09-28 15:57:37 +02001788 mask |= (1 << i);
1789 }
1790 }
Linus Walleije8689e62010-09-28 15:57:37 +02001791
1792 return mask ? IRQ_HANDLED : IRQ_NONE;
1793}
1794
Russell King - ARM Linux121c8472011-07-21 17:13:48 +01001795static void pl08x_dma_slave_init(struct pl08x_dma_chan *chan)
1796{
1797 u32 cctl = pl08x_cctl(chan->cd->cctl);
1798
1799 chan->slave = true;
1800 chan->name = chan->cd->bus_id;
Russell Kinged91c132012-05-16 11:02:40 +01001801 chan->cfg.src_addr = chan->cd->addr;
1802 chan->cfg.dst_addr = chan->cd->addr;
Russell King409ec8d2012-05-16 11:08:43 +01001803 chan->src_cctl = cctl;
1804 chan->dst_cctl = cctl;
Russell King - ARM Linux121c8472011-07-21 17:13:48 +01001805}
1806
Linus Walleije8689e62010-09-28 15:57:37 +02001807/*
1808 * Initialise the DMAC memcpy/slave channels.
1809 * Make a local wrapper to hold required data
1810 */
1811static int pl08x_dma_init_virtual_channels(struct pl08x_driver_data *pl08x,
Viresh Kumar3e27ee82011-08-05 15:32:27 +05301812 struct dma_device *dmadev, unsigned int channels, bool slave)
Linus Walleije8689e62010-09-28 15:57:37 +02001813{
1814 struct pl08x_dma_chan *chan;
1815 int i;
1816
1817 INIT_LIST_HEAD(&dmadev->channels);
Russell King - ARM Linux94ae8522011-01-16 20:18:05 +00001818
Linus Walleije8689e62010-09-28 15:57:37 +02001819 /*
1820 * Register as many many memcpy as we have physical channels,
1821 * we won't always be able to use all but the code will have
1822 * to cope with that situation.
1823 */
1824 for (i = 0; i < channels; i++) {
Viresh Kumarb201c112011-08-05 15:32:29 +05301825 chan = kzalloc(sizeof(*chan), GFP_KERNEL);
Linus Walleije8689e62010-09-28 15:57:37 +02001826 if (!chan) {
1827 dev_err(&pl08x->adev->dev,
1828 "%s no memory for channel\n", __func__);
1829 return -ENOMEM;
1830 }
1831
1832 chan->host = pl08x;
1833 chan->state = PL08X_CHAN_IDLE;
1834
1835 if (slave) {
Linus Walleije8689e62010-09-28 15:57:37 +02001836 chan->cd = &pl08x->pd->slave_channels[i];
Russell King - ARM Linux121c8472011-07-21 17:13:48 +01001837 pl08x_dma_slave_init(chan);
Linus Walleije8689e62010-09-28 15:57:37 +02001838 } else {
1839 chan->cd = &pl08x->pd->memcpy_channel;
1840 chan->name = kasprintf(GFP_KERNEL, "memcpy%d", i);
1841 if (!chan->name) {
1842 kfree(chan);
1843 return -ENOMEM;
1844 }
1845 }
Viresh Kumar175a5e62011-08-05 15:32:32 +05301846 dev_dbg(&pl08x->adev->dev,
Linus Walleije8689e62010-09-28 15:57:37 +02001847 "initialize virtual channel \"%s\"\n",
1848 chan->name);
1849
1850 chan->chan.device = dmadev;
Russell King - ARM Linuxd3ee98cdc2012-03-06 22:35:47 +00001851 dma_cookie_init(&chan->chan);
Linus Walleije8689e62010-09-28 15:57:37 +02001852
1853 spin_lock_init(&chan->lock);
Russell King - ARM Linux15c17232011-01-03 22:44:36 +00001854 INIT_LIST_HEAD(&chan->pend_list);
Linus Walleije8689e62010-09-28 15:57:37 +02001855 tasklet_init(&chan->tasklet, pl08x_tasklet,
1856 (unsigned long) chan);
1857
1858 list_add_tail(&chan->chan.device_node, &dmadev->channels);
1859 }
1860 dev_info(&pl08x->adev->dev, "initialized %d virtual %s channels\n",
1861 i, slave ? "slave" : "memcpy");
1862 return i;
1863}
1864
1865static void pl08x_free_virtual_channels(struct dma_device *dmadev)
1866{
1867 struct pl08x_dma_chan *chan = NULL;
1868 struct pl08x_dma_chan *next;
1869
1870 list_for_each_entry_safe(chan,
1871 next, &dmadev->channels, chan.device_node) {
1872 list_del(&chan->chan.device_node);
1873 kfree(chan);
1874 }
1875}
1876
1877#ifdef CONFIG_DEBUG_FS
1878static const char *pl08x_state_str(enum pl08x_dma_chan_state state)
1879{
1880 switch (state) {
1881 case PL08X_CHAN_IDLE:
1882 return "idle";
1883 case PL08X_CHAN_RUNNING:
1884 return "running";
1885 case PL08X_CHAN_PAUSED:
1886 return "paused";
1887 case PL08X_CHAN_WAITING:
1888 return "waiting";
1889 default:
1890 break;
1891 }
1892 return "UNKNOWN STATE";
1893}
1894
1895static int pl08x_debugfs_show(struct seq_file *s, void *data)
1896{
1897 struct pl08x_driver_data *pl08x = s->private;
1898 struct pl08x_dma_chan *chan;
1899 struct pl08x_phy_chan *ch;
1900 unsigned long flags;
1901 int i;
1902
1903 seq_printf(s, "PL08x physical channels:\n");
1904 seq_printf(s, "CHANNEL:\tUSER:\n");
1905 seq_printf(s, "--------\t-----\n");
1906 for (i = 0; i < pl08x->vd->channels; i++) {
1907 struct pl08x_dma_chan *virt_chan;
1908
1909 ch = &pl08x->phy_chans[i];
1910
1911 spin_lock_irqsave(&ch->lock, flags);
1912 virt_chan = ch->serving;
1913
Linus Walleijaffa1152012-04-12 09:01:49 +02001914 seq_printf(s, "%d\t\t%s%s\n",
1915 ch->id,
1916 virt_chan ? virt_chan->name : "(none)",
1917 ch->locked ? " LOCKED" : "");
Linus Walleije8689e62010-09-28 15:57:37 +02001918
1919 spin_unlock_irqrestore(&ch->lock, flags);
1920 }
1921
1922 seq_printf(s, "\nPL08x virtual memcpy channels:\n");
1923 seq_printf(s, "CHANNEL:\tSTATE:\n");
1924 seq_printf(s, "--------\t------\n");
1925 list_for_each_entry(chan, &pl08x->memcpy.channels, chan.device_node) {
Russell King - ARM Linux3e2a0372011-01-03 22:32:46 +00001926 seq_printf(s, "%s\t\t%s\n", chan->name,
Linus Walleije8689e62010-09-28 15:57:37 +02001927 pl08x_state_str(chan->state));
1928 }
1929
1930 seq_printf(s, "\nPL08x virtual slave channels:\n");
1931 seq_printf(s, "CHANNEL:\tSTATE:\n");
1932 seq_printf(s, "--------\t------\n");
1933 list_for_each_entry(chan, &pl08x->slave.channels, chan.device_node) {
Russell King - ARM Linux3e2a0372011-01-03 22:32:46 +00001934 seq_printf(s, "%s\t\t%s\n", chan->name,
Linus Walleije8689e62010-09-28 15:57:37 +02001935 pl08x_state_str(chan->state));
1936 }
1937
1938 return 0;
1939}
1940
1941static int pl08x_debugfs_open(struct inode *inode, struct file *file)
1942{
1943 return single_open(file, pl08x_debugfs_show, inode->i_private);
1944}
1945
1946static const struct file_operations pl08x_debugfs_operations = {
1947 .open = pl08x_debugfs_open,
1948 .read = seq_read,
1949 .llseek = seq_lseek,
1950 .release = single_release,
1951};
1952
1953static void init_pl08x_debugfs(struct pl08x_driver_data *pl08x)
1954{
1955 /* Expose a simple debugfs interface to view all clocks */
Viresh Kumar3e27ee82011-08-05 15:32:27 +05301956 (void) debugfs_create_file(dev_name(&pl08x->adev->dev),
1957 S_IFREG | S_IRUGO, NULL, pl08x,
1958 &pl08x_debugfs_operations);
Linus Walleije8689e62010-09-28 15:57:37 +02001959}
1960
1961#else
1962static inline void init_pl08x_debugfs(struct pl08x_driver_data *pl08x)
1963{
1964}
1965#endif
1966
Russell Kingaa25afa2011-02-19 15:55:00 +00001967static int pl08x_probe(struct amba_device *adev, const struct amba_id *id)
Linus Walleije8689e62010-09-28 15:57:37 +02001968{
1969 struct pl08x_driver_data *pl08x;
Russell King - ARM Linuxf96ca9ec2011-01-03 22:35:08 +00001970 const struct vendor_data *vd = id->data;
Linus Walleije8689e62010-09-28 15:57:37 +02001971 int ret = 0;
1972 int i;
1973
1974 ret = amba_request_regions(adev, NULL);
1975 if (ret)
1976 return ret;
1977
1978 /* Create the driver state holder */
Viresh Kumarb201c112011-08-05 15:32:29 +05301979 pl08x = kzalloc(sizeof(*pl08x), GFP_KERNEL);
Linus Walleije8689e62010-09-28 15:57:37 +02001980 if (!pl08x) {
1981 ret = -ENOMEM;
1982 goto out_no_pl08x;
1983 }
1984
1985 /* Initialize memcpy engine */
1986 dma_cap_set(DMA_MEMCPY, pl08x->memcpy.cap_mask);
1987 pl08x->memcpy.dev = &adev->dev;
1988 pl08x->memcpy.device_alloc_chan_resources = pl08x_alloc_chan_resources;
1989 pl08x->memcpy.device_free_chan_resources = pl08x_free_chan_resources;
1990 pl08x->memcpy.device_prep_dma_memcpy = pl08x_prep_dma_memcpy;
1991 pl08x->memcpy.device_prep_dma_interrupt = pl08x_prep_dma_interrupt;
1992 pl08x->memcpy.device_tx_status = pl08x_dma_tx_status;
1993 pl08x->memcpy.device_issue_pending = pl08x_issue_pending;
1994 pl08x->memcpy.device_control = pl08x_control;
1995
1996 /* Initialize slave engine */
1997 dma_cap_set(DMA_SLAVE, pl08x->slave.cap_mask);
1998 pl08x->slave.dev = &adev->dev;
1999 pl08x->slave.device_alloc_chan_resources = pl08x_alloc_chan_resources;
2000 pl08x->slave.device_free_chan_resources = pl08x_free_chan_resources;
2001 pl08x->slave.device_prep_dma_interrupt = pl08x_prep_dma_interrupt;
2002 pl08x->slave.device_tx_status = pl08x_dma_tx_status;
2003 pl08x->slave.device_issue_pending = pl08x_issue_pending;
2004 pl08x->slave.device_prep_slave_sg = pl08x_prep_slave_sg;
2005 pl08x->slave.device_control = pl08x_control;
2006
2007 /* Get the platform data */
2008 pl08x->pd = dev_get_platdata(&adev->dev);
2009 if (!pl08x->pd) {
2010 dev_err(&adev->dev, "no platform data supplied\n");
2011 goto out_no_platdata;
2012 }
2013
2014 /* Assign useful pointers to the driver state */
2015 pl08x->adev = adev;
2016 pl08x->vd = vd;
2017
Russell King - ARM Linux30749cb2011-01-03 22:41:13 +00002018 /* By default, AHB1 only. If dualmaster, from platform */
2019 pl08x->lli_buses = PL08X_AHB1;
2020 pl08x->mem_buses = PL08X_AHB1;
2021 if (pl08x->vd->dualmaster) {
2022 pl08x->lli_buses = pl08x->pd->lli_buses;
2023 pl08x->mem_buses = pl08x->pd->mem_buses;
2024 }
2025
Linus Walleije8689e62010-09-28 15:57:37 +02002026 /* A DMA memory pool for LLIs, align on 1-byte boundary */
2027 pl08x->pool = dma_pool_create(DRIVER_NAME, &pl08x->adev->dev,
2028 PL08X_LLI_TSFR_SIZE, PL08X_ALIGN, 0);
2029 if (!pl08x->pool) {
2030 ret = -ENOMEM;
2031 goto out_no_lli_pool;
2032 }
2033
Linus Walleije8689e62010-09-28 15:57:37 +02002034 pl08x->base = ioremap(adev->res.start, resource_size(&adev->res));
2035 if (!pl08x->base) {
2036 ret = -ENOMEM;
2037 goto out_no_ioremap;
2038 }
2039
2040 /* Turn on the PL08x */
2041 pl08x_ensure_on(pl08x);
2042
Russell King - ARM Linux94ae8522011-01-16 20:18:05 +00002043 /* Attach the interrupt handler */
Linus Walleije8689e62010-09-28 15:57:37 +02002044 writel(0x000000FF, pl08x->base + PL080_ERR_CLEAR);
2045 writel(0x000000FF, pl08x->base + PL080_TC_CLEAR);
2046
2047 ret = request_irq(adev->irq[0], pl08x_irq, IRQF_DISABLED,
Russell King - ARM Linuxb05cd8f2011-01-03 22:33:26 +00002048 DRIVER_NAME, pl08x);
Linus Walleije8689e62010-09-28 15:57:37 +02002049 if (ret) {
2050 dev_err(&adev->dev, "%s failed to request interrupt %d\n",
2051 __func__, adev->irq[0]);
2052 goto out_no_irq;
2053 }
2054
2055 /* Initialize physical channels */
Linus Walleijaffa1152012-04-12 09:01:49 +02002056 pl08x->phy_chans = kzalloc((vd->channels * sizeof(*pl08x->phy_chans)),
Linus Walleije8689e62010-09-28 15:57:37 +02002057 GFP_KERNEL);
2058 if (!pl08x->phy_chans) {
2059 dev_err(&adev->dev, "%s failed to allocate "
2060 "physical channel holders\n",
2061 __func__);
2062 goto out_no_phychans;
2063 }
2064
2065 for (i = 0; i < vd->channels; i++) {
2066 struct pl08x_phy_chan *ch = &pl08x->phy_chans[i];
2067
2068 ch->id = i;
2069 ch->base = pl08x->base + PL080_Cx_BASE(i);
2070 spin_lock_init(&ch->lock);
Linus Walleije8689e62010-09-28 15:57:37 +02002071 ch->signal = -1;
Linus Walleijaffa1152012-04-12 09:01:49 +02002072
2073 /*
2074 * Nomadik variants can have channels that are locked
2075 * down for the secure world only. Lock up these channels
2076 * by perpetually serving a dummy virtual channel.
2077 */
2078 if (vd->nomadik) {
2079 u32 val;
2080
2081 val = readl(ch->base + PL080_CH_CONFIG);
2082 if (val & (PL080N_CONFIG_ITPROT | PL080N_CONFIG_SECPROT)) {
2083 dev_info(&adev->dev, "physical channel %d reserved for secure access only\n", i);
2084 ch->locked = true;
2085 }
2086 }
2087
Viresh Kumar175a5e62011-08-05 15:32:32 +05302088 dev_dbg(&adev->dev, "physical channel %d is %s\n",
2089 i, pl08x_phy_channel_busy(ch) ? "BUSY" : "FREE");
Linus Walleije8689e62010-09-28 15:57:37 +02002090 }
2091
2092 /* Register as many memcpy channels as there are physical channels */
2093 ret = pl08x_dma_init_virtual_channels(pl08x, &pl08x->memcpy,
2094 pl08x->vd->channels, false);
2095 if (ret <= 0) {
2096 dev_warn(&pl08x->adev->dev,
2097 "%s failed to enumerate memcpy channels - %d\n",
2098 __func__, ret);
2099 goto out_no_memcpy;
2100 }
2101 pl08x->memcpy.chancnt = ret;
2102
2103 /* Register slave channels */
2104 ret = pl08x_dma_init_virtual_channels(pl08x, &pl08x->slave,
Viresh Kumar3e27ee82011-08-05 15:32:27 +05302105 pl08x->pd->num_slave_channels, true);
Linus Walleije8689e62010-09-28 15:57:37 +02002106 if (ret <= 0) {
2107 dev_warn(&pl08x->adev->dev,
2108 "%s failed to enumerate slave channels - %d\n",
2109 __func__, ret);
2110 goto out_no_slave;
2111 }
2112 pl08x->slave.chancnt = ret;
2113
2114 ret = dma_async_device_register(&pl08x->memcpy);
2115 if (ret) {
2116 dev_warn(&pl08x->adev->dev,
2117 "%s failed to register memcpy as an async device - %d\n",
2118 __func__, ret);
2119 goto out_no_memcpy_reg;
2120 }
2121
2122 ret = dma_async_device_register(&pl08x->slave);
2123 if (ret) {
2124 dev_warn(&pl08x->adev->dev,
2125 "%s failed to register slave as an async device - %d\n",
2126 __func__, ret);
2127 goto out_no_slave_reg;
2128 }
2129
2130 amba_set_drvdata(adev, pl08x);
2131 init_pl08x_debugfs(pl08x);
Russell King - ARM Linuxb05cd8f2011-01-03 22:33:26 +00002132 dev_info(&pl08x->adev->dev, "DMA: PL%03x rev%u at 0x%08llx irq %d\n",
2133 amba_part(adev), amba_rev(adev),
2134 (unsigned long long)adev->res.start, adev->irq[0]);
Viresh Kumarb7b60182011-08-05 15:32:33 +05302135
Linus Walleije8689e62010-09-28 15:57:37 +02002136 return 0;
2137
2138out_no_slave_reg:
2139 dma_async_device_unregister(&pl08x->memcpy);
2140out_no_memcpy_reg:
2141 pl08x_free_virtual_channels(&pl08x->slave);
2142out_no_slave:
2143 pl08x_free_virtual_channels(&pl08x->memcpy);
2144out_no_memcpy:
2145 kfree(pl08x->phy_chans);
2146out_no_phychans:
2147 free_irq(adev->irq[0], pl08x);
2148out_no_irq:
2149 iounmap(pl08x->base);
2150out_no_ioremap:
2151 dma_pool_destroy(pl08x->pool);
2152out_no_lli_pool:
2153out_no_platdata:
2154 kfree(pl08x);
2155out_no_pl08x:
2156 amba_release_regions(adev);
2157 return ret;
2158}
2159
2160/* PL080 has 8 channels and the PL080 have just 2 */
2161static struct vendor_data vendor_pl080 = {
Linus Walleije8689e62010-09-28 15:57:37 +02002162 .channels = 8,
2163 .dualmaster = true,
2164};
2165
Linus Walleijaffa1152012-04-12 09:01:49 +02002166static struct vendor_data vendor_nomadik = {
2167 .channels = 8,
2168 .dualmaster = true,
2169 .nomadik = true,
2170};
2171
Linus Walleije8689e62010-09-28 15:57:37 +02002172static struct vendor_data vendor_pl081 = {
Linus Walleije8689e62010-09-28 15:57:37 +02002173 .channels = 2,
2174 .dualmaster = false,
2175};
2176
2177static struct amba_id pl08x_ids[] = {
2178 /* PL080 */
2179 {
2180 .id = 0x00041080,
2181 .mask = 0x000fffff,
2182 .data = &vendor_pl080,
2183 },
2184 /* PL081 */
2185 {
2186 .id = 0x00041081,
2187 .mask = 0x000fffff,
2188 .data = &vendor_pl081,
2189 },
2190 /* Nomadik 8815 PL080 variant */
2191 {
Linus Walleijaffa1152012-04-12 09:01:49 +02002192 .id = 0x00280080,
Linus Walleije8689e62010-09-28 15:57:37 +02002193 .mask = 0x00ffffff,
Linus Walleijaffa1152012-04-12 09:01:49 +02002194 .data = &vendor_nomadik,
Linus Walleije8689e62010-09-28 15:57:37 +02002195 },
2196 { 0, 0 },
2197};
2198
Dave Martin037566d2011-10-05 15:15:20 +01002199MODULE_DEVICE_TABLE(amba, pl08x_ids);
2200
Linus Walleije8689e62010-09-28 15:57:37 +02002201static struct amba_driver pl08x_amba_driver = {
2202 .drv.name = DRIVER_NAME,
2203 .id_table = pl08x_ids,
2204 .probe = pl08x_probe,
2205};
2206
2207static int __init pl08x_init(void)
2208{
2209 int retval;
2210 retval = amba_driver_register(&pl08x_amba_driver);
2211 if (retval)
2212 printk(KERN_WARNING DRIVER_NAME
Russell King - ARM Linuxe8b5e112011-01-03 22:30:24 +00002213 "failed to register as an AMBA device (%d)\n",
Linus Walleije8689e62010-09-28 15:57:37 +02002214 retval);
2215 return retval;
2216}
2217subsys_initcall(pl08x_init);