blob: 50b9a839e9c34cf1b245815ddf84118812e71b00 [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
Russell Kingb23f2042012-05-16 10:48:44 +0100221 * @pend_list: queued transactions pending on this channel
222 * @at: active transaction on this channel
223 * @lock: a lock for this channel data
224 * @host: a pointer to the host (internal use)
225 * @state: whether the channel is idle, paused, running etc
226 * @slave: whether this channel is a device (slave) or for memcpy
Russell Kingb23f2042012-05-16 10:48:44 +0100227 * @waiting: a TX descriptor on this channel which is waiting for a physical
228 * channel to become available
229 */
230struct pl08x_dma_chan {
231 struct dma_chan chan;
232 struct pl08x_phy_chan *phychan;
233 int phychan_hold;
234 struct tasklet_struct tasklet;
Russell King550ec362012-05-28 10:18:55 +0100235 const char *name;
Russell Kingb23f2042012-05-16 10:48:44 +0100236 const struct pl08x_channel_data *cd;
Russell Kinged91c132012-05-16 11:02:40 +0100237 struct dma_slave_config cfg;
Russell Kingb23f2042012-05-16 10:48:44 +0100238 u32 src_cctl;
239 u32 dst_cctl;
Russell Kingb23f2042012-05-16 10:48:44 +0100240 struct list_head pend_list;
241 struct pl08x_txd *at;
242 spinlock_t lock;
243 struct pl08x_driver_data *host;
244 enum pl08x_dma_chan_state state;
245 bool slave;
Russell Kingb23f2042012-05-16 10:48:44 +0100246 struct pl08x_txd *waiting;
247};
248
249/**
Linus Walleije8689e62010-09-28 15:57:37 +0200250 * struct pl08x_driver_data - the local state holder for the PL08x
251 * @slave: slave engine for this instance
252 * @memcpy: memcpy engine for this instance
253 * @base: virtual memory base (remapped) for the PL08x
254 * @adev: the corresponding AMBA (PrimeCell) bus entry
255 * @vd: vendor data for this PL08x variant
256 * @pd: platform data passed in from the platform/machine
257 * @phy_chans: array of data for the physical channels
258 * @pool: a pool for the LLI descriptors
259 * @pool_ctr: counter of LLIs in the pool
Viresh Kumar3e27ee82011-08-05 15:32:27 +0530260 * @lli_buses: bitmask to or in to LLI pointer selecting AHB port for LLI
261 * fetches
Russell King - ARM Linux30749cb2011-01-03 22:41:13 +0000262 * @mem_buses: set to indicate memory transfers on AHB2.
Linus Walleije8689e62010-09-28 15:57:37 +0200263 * @lock: a spinlock for this struct
264 */
265struct pl08x_driver_data {
266 struct dma_device slave;
267 struct dma_device memcpy;
268 void __iomem *base;
269 struct amba_device *adev;
Russell King - ARM Linuxf96ca9ec2011-01-03 22:35:08 +0000270 const struct vendor_data *vd;
Linus Walleije8689e62010-09-28 15:57:37 +0200271 struct pl08x_platform_data *pd;
272 struct pl08x_phy_chan *phy_chans;
273 struct dma_pool *pool;
274 int pool_ctr;
Russell King - ARM Linux30749cb2011-01-03 22:41:13 +0000275 u8 lli_buses;
276 u8 mem_buses;
Linus Walleije8689e62010-09-28 15:57:37 +0200277};
278
279/*
280 * PL08X specific defines
281 */
282
Linus Walleije8689e62010-09-28 15:57:37 +0200283/* Size (bytes) of each LLI buffer allocated for one transfer */
284# define PL08X_LLI_TSFR_SIZE 0x2000
285
Russell King - ARM Linuxe8b5e112011-01-03 22:30:24 +0000286/* Maximum times we call dma_pool_alloc on this pool without freeing */
Russell King - ARM Linux7cb72ad2011-01-03 22:35:28 +0000287#define MAX_NUM_TSFR_LLIS (PL08X_LLI_TSFR_SIZE/sizeof(struct pl08x_lli))
Linus Walleije8689e62010-09-28 15:57:37 +0200288#define PL08X_ALIGN 8
289
290static inline struct pl08x_dma_chan *to_pl08x_chan(struct dma_chan *chan)
291{
292 return container_of(chan, struct pl08x_dma_chan, chan);
293}
294
Russell King - ARM Linux501e67e2011-01-03 22:44:57 +0000295static inline struct pl08x_txd *to_pl08x_txd(struct dma_async_tx_descriptor *tx)
296{
297 return container_of(tx, struct pl08x_txd, tx);
298}
299
Linus Walleije8689e62010-09-28 15:57:37 +0200300/*
301 * Physical channel handling
302 */
303
304/* Whether a certain channel is busy or not */
305static int pl08x_phy_channel_busy(struct pl08x_phy_chan *ch)
306{
307 unsigned int val;
308
309 val = readl(ch->base + PL080_CH_CONFIG);
310 return val & PL080_CONFIG_ACTIVE;
311}
312
313/*
314 * Set the initial DMA register values i.e. those for the first LLI
Russell King - ARM Linuxe8b5e112011-01-03 22:30:24 +0000315 * The next LLI pointer and the configuration interrupt bit have
Russell King - ARM Linuxc885bee2011-01-03 22:38:52 +0000316 * been set when the LLIs were constructed. Poke them into the hardware
317 * and start the transfer.
Linus Walleije8689e62010-09-28 15:57:37 +0200318 */
Russell King - ARM Linuxc885bee2011-01-03 22:38:52 +0000319static void pl08x_start_txd(struct pl08x_dma_chan *plchan,
320 struct pl08x_txd *txd)
Linus Walleije8689e62010-09-28 15:57:37 +0200321{
Russell King - ARM Linuxc885bee2011-01-03 22:38:52 +0000322 struct pl08x_driver_data *pl08x = plchan->host;
Linus Walleije8689e62010-09-28 15:57:37 +0200323 struct pl08x_phy_chan *phychan = plchan->phychan;
Russell King - ARM Linux19524d72011-01-03 22:39:13 +0000324 struct pl08x_lli *lli = &txd->llis_va[0];
Russell King - ARM Linux09b3c322011-01-03 22:39:53 +0000325 u32 val;
Russell King - ARM Linuxc885bee2011-01-03 22:38:52 +0000326
327 plchan->at = txd;
Linus Walleije8689e62010-09-28 15:57:37 +0200328
Russell King - ARM Linuxc885bee2011-01-03 22:38:52 +0000329 /* Wait for channel inactive */
330 while (pl08x_phy_channel_busy(phychan))
Russell King - ARM Linux19386b322011-01-03 22:36:29 +0000331 cpu_relax();
Linus Walleije8689e62010-09-28 15:57:37 +0200332
Russell King - ARM Linuxc885bee2011-01-03 22:38:52 +0000333 dev_vdbg(&pl08x->adev->dev,
334 "WRITE channel %d: csrc=0x%08x, cdst=0x%08x, "
Russell King - ARM Linux19524d72011-01-03 22:39:13 +0000335 "clli=0x%08x, cctl=0x%08x, ccfg=0x%08x\n",
336 phychan->id, lli->src, lli->dst, lli->lli, lli->cctl,
Russell King - ARM Linux09b3c322011-01-03 22:39:53 +0000337 txd->ccfg);
Linus Walleije8689e62010-09-28 15:57:37 +0200338
Russell King - ARM Linux19524d72011-01-03 22:39:13 +0000339 writel(lli->src, phychan->base + PL080_CH_SRC_ADDR);
340 writel(lli->dst, phychan->base + PL080_CH_DST_ADDR);
341 writel(lli->lli, phychan->base + PL080_CH_LLI);
342 writel(lli->cctl, phychan->base + PL080_CH_CONTROL);
Russell King - ARM Linux09b3c322011-01-03 22:39:53 +0000343 writel(txd->ccfg, phychan->base + PL080_CH_CONFIG);
Russell King - ARM Linuxc885bee2011-01-03 22:38:52 +0000344
345 /* Enable the DMA channel */
346 /* Do not access config register until channel shows as disabled */
347 while (readl(pl08x->base + PL080_EN_CHAN) & (1 << phychan->id))
348 cpu_relax();
349
350 /* Do not access config register until channel shows as inactive */
351 val = readl(phychan->base + PL080_CH_CONFIG);
352 while ((val & PL080_CONFIG_ACTIVE) || (val & PL080_CONFIG_ENABLE))
353 val = readl(phychan->base + PL080_CH_CONFIG);
354
355 writel(val | PL080_CONFIG_ENABLE, phychan->base + PL080_CH_CONFIG);
Linus Walleije8689e62010-09-28 15:57:37 +0200356}
357
358/*
Russell King - ARM Linux81796612011-01-27 12:37:44 +0000359 * Pause the channel by setting the HALT bit.
Linus Walleije8689e62010-09-28 15:57:37 +0200360 *
Russell King - ARM Linux81796612011-01-27 12:37:44 +0000361 * For M->P transfers, pause the DMAC first and then stop the peripheral -
362 * the FIFO can only drain if the peripheral is still requesting data.
363 * (note: this can still timeout if the DMAC FIFO never drains of data.)
Linus Walleije8689e62010-09-28 15:57:37 +0200364 *
Russell King - ARM Linux81796612011-01-27 12:37:44 +0000365 * For P->M transfers, disable the peripheral first to stop it filling
366 * the DMAC FIFO, and then pause the DMAC.
Linus Walleije8689e62010-09-28 15:57:37 +0200367 */
368static void pl08x_pause_phy_chan(struct pl08x_phy_chan *ch)
369{
370 u32 val;
Russell King - ARM Linux81796612011-01-27 12:37:44 +0000371 int timeout;
Linus Walleije8689e62010-09-28 15:57:37 +0200372
373 /* Set the HALT bit and wait for the FIFO to drain */
374 val = readl(ch->base + PL080_CH_CONFIG);
375 val |= PL080_CONFIG_HALT;
376 writel(val, ch->base + PL080_CH_CONFIG);
377
378 /* Wait for channel inactive */
Russell King - ARM Linux81796612011-01-27 12:37:44 +0000379 for (timeout = 1000; timeout; timeout--) {
380 if (!pl08x_phy_channel_busy(ch))
381 break;
382 udelay(1);
383 }
384 if (pl08x_phy_channel_busy(ch))
385 pr_err("pl08x: channel%u timeout waiting for pause\n", ch->id);
Linus Walleije8689e62010-09-28 15:57:37 +0200386}
387
388static void pl08x_resume_phy_chan(struct pl08x_phy_chan *ch)
389{
390 u32 val;
391
392 /* Clear the HALT bit */
393 val = readl(ch->base + PL080_CH_CONFIG);
394 val &= ~PL080_CONFIG_HALT;
395 writel(val, ch->base + PL080_CH_CONFIG);
396}
397
Russell King - ARM Linuxfb526212011-01-27 12:32:53 +0000398/*
399 * pl08x_terminate_phy_chan() stops the channel, clears the FIFO and
400 * clears any pending interrupt status. This should not be used for
401 * an on-going transfer, but as a method of shutting down a channel
402 * (eg, when it's no longer used) or terminating a transfer.
403 */
404static void pl08x_terminate_phy_chan(struct pl08x_driver_data *pl08x,
405 struct pl08x_phy_chan *ch)
Linus Walleije8689e62010-09-28 15:57:37 +0200406{
Russell King - ARM Linuxfb526212011-01-27 12:32:53 +0000407 u32 val = readl(ch->base + PL080_CH_CONFIG);
Linus Walleije8689e62010-09-28 15:57:37 +0200408
Russell King - ARM Linuxfb526212011-01-27 12:32:53 +0000409 val &= ~(PL080_CONFIG_ENABLE | PL080_CONFIG_ERR_IRQ_MASK |
410 PL080_CONFIG_TC_IRQ_MASK);
Linus Walleije8689e62010-09-28 15:57:37 +0200411
Linus Walleije8689e62010-09-28 15:57:37 +0200412 writel(val, ch->base + PL080_CH_CONFIG);
Russell King - ARM Linuxfb526212011-01-27 12:32:53 +0000413
414 writel(1 << ch->id, pl08x->base + PL080_ERR_CLEAR);
415 writel(1 << ch->id, pl08x->base + PL080_TC_CLEAR);
Linus Walleije8689e62010-09-28 15:57:37 +0200416}
417
418static inline u32 get_bytes_in_cctl(u32 cctl)
419{
420 /* The source width defines the number of bytes */
421 u32 bytes = cctl & PL080_CONTROL_TRANSFER_SIZE_MASK;
422
423 switch (cctl >> PL080_CONTROL_SWIDTH_SHIFT) {
424 case PL080_WIDTH_8BIT:
425 break;
426 case PL080_WIDTH_16BIT:
427 bytes *= 2;
428 break;
429 case PL080_WIDTH_32BIT:
430 bytes *= 4;
431 break;
432 }
433 return bytes;
434}
435
436/* The channel should be paused when calling this */
437static u32 pl08x_getbytes_chan(struct pl08x_dma_chan *plchan)
438{
439 struct pl08x_phy_chan *ch;
Linus Walleije8689e62010-09-28 15:57:37 +0200440 struct pl08x_txd *txd;
441 unsigned long flags;
Russell King - ARM Linuxcace6582011-01-03 22:37:31 +0000442 size_t bytes = 0;
Linus Walleije8689e62010-09-28 15:57:37 +0200443
444 spin_lock_irqsave(&plchan->lock, flags);
Linus Walleije8689e62010-09-28 15:57:37 +0200445 ch = plchan->phychan;
446 txd = plchan->at;
447
448 /*
Russell King - ARM Linuxdb9f1362011-01-03 22:38:32 +0000449 * Follow the LLIs to get the number of remaining
450 * bytes in the currently active transaction.
Linus Walleije8689e62010-09-28 15:57:37 +0200451 */
452 if (ch && txd) {
Russell King - ARM Linux4c0df6a2011-01-03 22:36:50 +0000453 u32 clli = readl(ch->base + PL080_CH_LLI) & ~PL080_LLI_LM_AHB2;
Linus Walleije8689e62010-09-28 15:57:37 +0200454
Russell King - ARM Linuxdb9f1362011-01-03 22:38:32 +0000455 /* First get the remaining bytes in the active transfer */
Linus Walleije8689e62010-09-28 15:57:37 +0200456 bytes = get_bytes_in_cctl(readl(ch->base + PL080_CH_CONTROL));
457
458 if (clli) {
Russell King - ARM Linuxdb9f1362011-01-03 22:38:32 +0000459 struct pl08x_lli *llis_va = txd->llis_va;
460 dma_addr_t llis_bus = txd->llis_bus;
461 int index;
Linus Walleije8689e62010-09-28 15:57:37 +0200462
Russell King - ARM Linuxdb9f1362011-01-03 22:38:32 +0000463 BUG_ON(clli < llis_bus || clli >= llis_bus +
464 sizeof(struct pl08x_lli) * MAX_NUM_TSFR_LLIS);
Linus Walleije8689e62010-09-28 15:57:37 +0200465
Russell King - ARM Linuxdb9f1362011-01-03 22:38:32 +0000466 /*
467 * Locate the next LLI - as this is an array,
468 * it's simple maths to find.
469 */
470 index = (clli - llis_bus) / sizeof(struct pl08x_lli);
471
472 for (; index < MAX_NUM_TSFR_LLIS; index++) {
473 bytes += get_bytes_in_cctl(llis_va[index].cctl);
474
Linus Walleije8689e62010-09-28 15:57:37 +0200475 /*
Russell King - ARM Linuxe8b5e112011-01-03 22:30:24 +0000476 * A LLI pointer of 0 terminates the LLI list
Linus Walleije8689e62010-09-28 15:57:37 +0200477 */
Russell King - ARM Linuxdb9f1362011-01-03 22:38:32 +0000478 if (!llis_va[index].lli)
479 break;
Linus Walleije8689e62010-09-28 15:57:37 +0200480 }
481 }
482 }
483
484 /* Sum up all queued transactions */
Russell King - ARM Linux15c17232011-01-03 22:44:36 +0000485 if (!list_empty(&plchan->pend_list)) {
Russell King - ARM Linuxdb9f1362011-01-03 22:38:32 +0000486 struct pl08x_txd *txdi;
Russell King - ARM Linux15c17232011-01-03 22:44:36 +0000487 list_for_each_entry(txdi, &plchan->pend_list, node) {
Viresh Kumarb7f69d92011-08-05 15:32:43 +0530488 struct pl08x_sg *dsg;
489 list_for_each_entry(dsg, &txd->dsg_list, node)
490 bytes += dsg->len;
Linus Walleije8689e62010-09-28 15:57:37 +0200491 }
Linus Walleije8689e62010-09-28 15:57:37 +0200492 }
493
494 spin_unlock_irqrestore(&plchan->lock, flags);
495
496 return bytes;
497}
498
499/*
500 * Allocate a physical channel for a virtual channel
Russell King - ARM Linux94ae8522011-01-16 20:18:05 +0000501 *
502 * Try to locate a physical channel to be used for this transfer. If all
503 * are taken return NULL and the requester will have to cope by using
504 * some fallback PIO mode or retrying later.
Linus Walleije8689e62010-09-28 15:57:37 +0200505 */
506static struct pl08x_phy_chan *
507pl08x_get_phy_channel(struct pl08x_driver_data *pl08x,
508 struct pl08x_dma_chan *virt_chan)
509{
510 struct pl08x_phy_chan *ch = NULL;
511 unsigned long flags;
512 int i;
513
Linus Walleije8689e62010-09-28 15:57:37 +0200514 for (i = 0; i < pl08x->vd->channels; i++) {
515 ch = &pl08x->phy_chans[i];
516
517 spin_lock_irqsave(&ch->lock, flags);
518
Linus Walleijaffa1152012-04-12 09:01:49 +0200519 if (!ch->locked && !ch->serving) {
Linus Walleije8689e62010-09-28 15:57:37 +0200520 ch->serving = virt_chan;
521 ch->signal = -1;
522 spin_unlock_irqrestore(&ch->lock, flags);
523 break;
524 }
525
526 spin_unlock_irqrestore(&ch->lock, flags);
527 }
528
529 if (i == pl08x->vd->channels) {
530 /* No physical channel available, cope with it */
531 return NULL;
532 }
533
534 return ch;
535}
536
537static inline void pl08x_put_phy_channel(struct pl08x_driver_data *pl08x,
538 struct pl08x_phy_chan *ch)
539{
540 unsigned long flags;
541
Russell King - ARM Linuxfb526212011-01-27 12:32:53 +0000542 spin_lock_irqsave(&ch->lock, flags);
543
Linus Walleije8689e62010-09-28 15:57:37 +0200544 /* Stop the channel and clear its interrupts */
Russell King - ARM Linuxfb526212011-01-27 12:32:53 +0000545 pl08x_terminate_phy_chan(pl08x, ch);
Linus Walleije8689e62010-09-28 15:57:37 +0200546
547 /* Mark it as free */
Linus Walleije8689e62010-09-28 15:57:37 +0200548 ch->serving = NULL;
549 spin_unlock_irqrestore(&ch->lock, flags);
550}
551
552/*
553 * LLI handling
554 */
555
556static inline unsigned int pl08x_get_bytes_for_cctl(unsigned int coded)
557{
558 switch (coded) {
559 case PL080_WIDTH_8BIT:
560 return 1;
561 case PL080_WIDTH_16BIT:
562 return 2;
563 case PL080_WIDTH_32BIT:
564 return 4;
565 default:
566 break;
567 }
568 BUG();
569 return 0;
570}
571
572static inline u32 pl08x_cctl_bits(u32 cctl, u8 srcwidth, u8 dstwidth,
Russell King - ARM Linuxcace6582011-01-03 22:37:31 +0000573 size_t tsize)
Linus Walleije8689e62010-09-28 15:57:37 +0200574{
575 u32 retbits = cctl;
576
Russell King - ARM Linuxe8b5e112011-01-03 22:30:24 +0000577 /* Remove all src, dst and transfer size bits */
Linus Walleije8689e62010-09-28 15:57:37 +0200578 retbits &= ~PL080_CONTROL_DWIDTH_MASK;
579 retbits &= ~PL080_CONTROL_SWIDTH_MASK;
580 retbits &= ~PL080_CONTROL_TRANSFER_SIZE_MASK;
581
582 /* Then set the bits according to the parameters */
583 switch (srcwidth) {
584 case 1:
585 retbits |= PL080_WIDTH_8BIT << PL080_CONTROL_SWIDTH_SHIFT;
586 break;
587 case 2:
588 retbits |= PL080_WIDTH_16BIT << PL080_CONTROL_SWIDTH_SHIFT;
589 break;
590 case 4:
591 retbits |= PL080_WIDTH_32BIT << PL080_CONTROL_SWIDTH_SHIFT;
592 break;
593 default:
594 BUG();
595 break;
596 }
597
598 switch (dstwidth) {
599 case 1:
600 retbits |= PL080_WIDTH_8BIT << PL080_CONTROL_DWIDTH_SHIFT;
601 break;
602 case 2:
603 retbits |= PL080_WIDTH_16BIT << PL080_CONTROL_DWIDTH_SHIFT;
604 break;
605 case 4:
606 retbits |= PL080_WIDTH_32BIT << PL080_CONTROL_DWIDTH_SHIFT;
607 break;
608 default:
609 BUG();
610 break;
611 }
612
613 retbits |= tsize << PL080_CONTROL_TRANSFER_SIZE_SHIFT;
614 return retbits;
615}
616
Russell King - ARM Linux542361f2011-01-03 22:43:15 +0000617struct pl08x_lli_build_data {
618 struct pl08x_txd *txd;
Russell King - ARM Linux542361f2011-01-03 22:43:15 +0000619 struct pl08x_bus_data srcbus;
620 struct pl08x_bus_data dstbus;
621 size_t remainder;
Russell King - ARM Linux25c94f72011-07-21 17:11:46 +0100622 u32 lli_bus;
Russell King - ARM Linux542361f2011-01-03 22:43:15 +0000623};
624
Linus Walleije8689e62010-09-28 15:57:37 +0200625/*
Viresh Kumar0532e6f2011-08-05 15:32:31 +0530626 * Autoselect a master bus to use for the transfer. Slave will be the chosen as
627 * victim in case src & dest are not similarly aligned. i.e. If after aligning
628 * masters address with width requirements of transfer (by sending few byte by
629 * byte data), slave is still not aligned, then its width will be reduced to
630 * BYTE.
631 * - prefers the destination bus if both available
Viresh Kumar036f05f2011-08-05 15:32:41 +0530632 * - prefers bus with fixed address (i.e. peripheral)
Linus Walleije8689e62010-09-28 15:57:37 +0200633 */
Russell King - ARM Linux542361f2011-01-03 22:43:15 +0000634static void pl08x_choose_master_bus(struct pl08x_lli_build_data *bd,
635 struct pl08x_bus_data **mbus, struct pl08x_bus_data **sbus, u32 cctl)
Linus Walleije8689e62010-09-28 15:57:37 +0200636{
637 if (!(cctl & PL080_CONTROL_DST_INCR)) {
Russell King - ARM Linux542361f2011-01-03 22:43:15 +0000638 *mbus = &bd->dstbus;
639 *sbus = &bd->srcbus;
Viresh Kumar036f05f2011-08-05 15:32:41 +0530640 } else if (!(cctl & PL080_CONTROL_SRC_INCR)) {
641 *mbus = &bd->srcbus;
642 *sbus = &bd->dstbus;
Linus Walleije8689e62010-09-28 15:57:37 +0200643 } else {
Viresh Kumar036f05f2011-08-05 15:32:41 +0530644 if (bd->dstbus.buswidth >= bd->srcbus.buswidth) {
Russell King - ARM Linux542361f2011-01-03 22:43:15 +0000645 *mbus = &bd->dstbus;
646 *sbus = &bd->srcbus;
Linus Walleije8689e62010-09-28 15:57:37 +0200647 } else {
Viresh Kumar036f05f2011-08-05 15:32:41 +0530648 *mbus = &bd->srcbus;
649 *sbus = &bd->dstbus;
Linus Walleije8689e62010-09-28 15:57:37 +0200650 }
651 }
652}
653
654/*
Russell King - ARM Linux94ae8522011-01-16 20:18:05 +0000655 * Fills in one LLI for a certain transfer descriptor and advance the counter
Linus Walleije8689e62010-09-28 15:57:37 +0200656 */
Russell King - ARM Linux542361f2011-01-03 22:43:15 +0000657static void pl08x_fill_lli_for_desc(struct pl08x_lli_build_data *bd,
658 int num_llis, int len, u32 cctl)
Linus Walleije8689e62010-09-28 15:57:37 +0200659{
Russell King - ARM Linux542361f2011-01-03 22:43:15 +0000660 struct pl08x_lli *llis_va = bd->txd->llis_va;
661 dma_addr_t llis_bus = bd->txd->llis_bus;
Linus Walleije8689e62010-09-28 15:57:37 +0200662
663 BUG_ON(num_llis >= MAX_NUM_TSFR_LLIS);
664
Russell King - ARM Linux30749cb2011-01-03 22:41:13 +0000665 llis_va[num_llis].cctl = cctl;
Russell King - ARM Linux542361f2011-01-03 22:43:15 +0000666 llis_va[num_llis].src = bd->srcbus.addr;
667 llis_va[num_llis].dst = bd->dstbus.addr;
Viresh Kumar3e27ee82011-08-05 15:32:27 +0530668 llis_va[num_llis].lli = llis_bus + (num_llis + 1) *
669 sizeof(struct pl08x_lli);
Russell King - ARM Linux25c94f72011-07-21 17:11:46 +0100670 llis_va[num_llis].lli |= bd->lli_bus;
Linus Walleije8689e62010-09-28 15:57:37 +0200671
672 if (cctl & PL080_CONTROL_SRC_INCR)
Russell King - ARM Linux542361f2011-01-03 22:43:15 +0000673 bd->srcbus.addr += len;
Linus Walleije8689e62010-09-28 15:57:37 +0200674 if (cctl & PL080_CONTROL_DST_INCR)
Russell King - ARM Linux542361f2011-01-03 22:43:15 +0000675 bd->dstbus.addr += len;
Linus Walleije8689e62010-09-28 15:57:37 +0200676
Russell King - ARM Linux542361f2011-01-03 22:43:15 +0000677 BUG_ON(bd->remainder < len);
Russell King - ARM Linuxcace6582011-01-03 22:37:31 +0000678
Russell King - ARM Linux542361f2011-01-03 22:43:15 +0000679 bd->remainder -= len;
Linus Walleije8689e62010-09-28 15:57:37 +0200680}
681
Viresh Kumar03af5002011-08-05 15:32:39 +0530682static inline void prep_byte_width_lli(struct pl08x_lli_build_data *bd,
683 u32 *cctl, u32 len, int num_llis, size_t *total_bytes)
Linus Walleije8689e62010-09-28 15:57:37 +0200684{
Viresh Kumar03af5002011-08-05 15:32:39 +0530685 *cctl = pl08x_cctl_bits(*cctl, 1, 1, len);
686 pl08x_fill_lli_for_desc(bd, num_llis, len, *cctl);
687 (*total_bytes) += len;
Linus Walleije8689e62010-09-28 15:57:37 +0200688}
689
690/*
691 * This fills in the table of LLIs for the transfer descriptor
692 * Note that we assume we never have to change the burst sizes
693 * Return 0 for error
694 */
695static int pl08x_fill_llis_for_desc(struct pl08x_driver_data *pl08x,
696 struct pl08x_txd *txd)
697{
Linus Walleije8689e62010-09-28 15:57:37 +0200698 struct pl08x_bus_data *mbus, *sbus;
Russell King - ARM Linux542361f2011-01-03 22:43:15 +0000699 struct pl08x_lli_build_data bd;
Linus Walleije8689e62010-09-28 15:57:37 +0200700 int num_llis = 0;
Viresh Kumar03af5002011-08-05 15:32:39 +0530701 u32 cctl, early_bytes = 0;
Viresh Kumarb7f69d92011-08-05 15:32:43 +0530702 size_t max_bytes_per_lli, total_bytes;
Russell King - ARM Linux7cb72ad2011-01-03 22:35:28 +0000703 struct pl08x_lli *llis_va;
Viresh Kumarb7f69d92011-08-05 15:32:43 +0530704 struct pl08x_sg *dsg;
Linus Walleije8689e62010-09-28 15:57:37 +0200705
Viresh Kumar3e27ee82011-08-05 15:32:27 +0530706 txd->llis_va = dma_pool_alloc(pl08x->pool, GFP_NOWAIT, &txd->llis_bus);
Linus Walleije8689e62010-09-28 15:57:37 +0200707 if (!txd->llis_va) {
708 dev_err(&pl08x->adev->dev, "%s no memory for llis\n", __func__);
709 return 0;
710 }
711
712 pl08x->pool_ctr++;
713
Russell King - ARM Linux542361f2011-01-03 22:43:15 +0000714 bd.txd = txd;
Russell King - ARM Linux25c94f72011-07-21 17:11:46 +0100715 bd.lli_bus = (pl08x->lli_buses & PL08X_AHB2) ? PL080_LLI_LM_AHB2 : 0;
Viresh Kumarb7f69d92011-08-05 15:32:43 +0530716 cctl = txd->cctl;
Russell King - ARM Linux542361f2011-01-03 22:43:15 +0000717
Linus Walleije8689e62010-09-28 15:57:37 +0200718 /* Find maximum width of the source bus */
Russell King - ARM Linux542361f2011-01-03 22:43:15 +0000719 bd.srcbus.maxwidth =
Linus Walleije8689e62010-09-28 15:57:37 +0200720 pl08x_get_bytes_for_cctl((cctl & PL080_CONTROL_SWIDTH_MASK) >>
721 PL080_CONTROL_SWIDTH_SHIFT);
722
723 /* Find maximum width of the destination bus */
Russell King - ARM Linux542361f2011-01-03 22:43:15 +0000724 bd.dstbus.maxwidth =
Linus Walleije8689e62010-09-28 15:57:37 +0200725 pl08x_get_bytes_for_cctl((cctl & PL080_CONTROL_DWIDTH_MASK) >>
726 PL080_CONTROL_DWIDTH_SHIFT);
727
Viresh Kumarb7f69d92011-08-05 15:32:43 +0530728 list_for_each_entry(dsg, &txd->dsg_list, node) {
729 total_bytes = 0;
730 cctl = txd->cctl;
Linus Walleije8689e62010-09-28 15:57:37 +0200731
Viresh Kumarb7f69d92011-08-05 15:32:43 +0530732 bd.srcbus.addr = dsg->src_addr;
733 bd.dstbus.addr = dsg->dst_addr;
734 bd.remainder = dsg->len;
735 bd.srcbus.buswidth = bd.srcbus.maxwidth;
736 bd.dstbus.buswidth = bd.dstbus.maxwidth;
Linus Walleije8689e62010-09-28 15:57:37 +0200737
Viresh Kumarb7f69d92011-08-05 15:32:43 +0530738 pl08x_choose_master_bus(&bd, &mbus, &sbus, cctl);
Linus Walleije8689e62010-09-28 15:57:37 +0200739
Viresh Kumarb7f69d92011-08-05 15:32:43 +0530740 dev_vdbg(&pl08x->adev->dev, "src=0x%08x%s/%u dst=0x%08x%s/%u len=%zu\n",
741 bd.srcbus.addr, cctl & PL080_CONTROL_SRC_INCR ? "+" : "",
742 bd.srcbus.buswidth,
743 bd.dstbus.addr, cctl & PL080_CONTROL_DST_INCR ? "+" : "",
744 bd.dstbus.buswidth,
745 bd.remainder);
746 dev_vdbg(&pl08x->adev->dev, "mbus=%s sbus=%s\n",
747 mbus == &bd.srcbus ? "src" : "dst",
748 sbus == &bd.srcbus ? "src" : "dst");
Russell King - ARM Linuxfc74eb72011-07-21 17:12:06 +0100749
Viresh Kumarb7f69d92011-08-05 15:32:43 +0530750 /*
751 * Zero length is only allowed if all these requirements are
752 * met:
753 * - flow controller is peripheral.
754 * - src.addr is aligned to src.width
755 * - dst.addr is aligned to dst.width
756 *
757 * sg_len == 1 should be true, as there can be two cases here:
758 *
759 * - Memory addresses are contiguous and are not scattered.
760 * Here, Only one sg will be passed by user driver, with
761 * memory address and zero length. We pass this to controller
762 * and after the transfer it will receive the last burst
763 * request from peripheral and so transfer finishes.
764 *
765 * - Memory addresses are scattered and are not contiguous.
766 * Here, Obviously as DMA controller doesn't know when a lli's
767 * transfer gets over, it can't load next lli. So in this
768 * case, there has to be an assumption that only one lli is
769 * supported. Thus, we can't have scattered addresses.
770 */
771 if (!bd.remainder) {
772 u32 fc = (txd->ccfg & PL080_CONFIG_FLOW_CONTROL_MASK) >>
773 PL080_CONFIG_FLOW_CONTROL_SHIFT;
774 if (!((fc >= PL080_FLOW_SRC2DST_DST) &&
Viresh Kumar0a235652011-08-05 15:32:42 +0530775 (fc <= PL080_FLOW_SRC2DST_SRC))) {
Viresh Kumarb7f69d92011-08-05 15:32:43 +0530776 dev_err(&pl08x->adev->dev, "%s sg len can't be zero",
777 __func__);
778 return 0;
779 }
Linus Walleije8689e62010-09-28 15:57:37 +0200780
Viresh Kumarb7f69d92011-08-05 15:32:43 +0530781 if ((bd.srcbus.addr % bd.srcbus.buswidth) ||
Julia Lawall880db3f2012-01-12 22:49:29 +0100782 (bd.dstbus.addr % bd.dstbus.buswidth)) {
Viresh Kumarb7f69d92011-08-05 15:32:43 +0530783 dev_err(&pl08x->adev->dev,
784 "%s src & dst address must be aligned to src"
785 " & dst width if peripheral is flow controller",
786 __func__);
787 return 0;
788 }
Linus Walleije8689e62010-09-28 15:57:37 +0200789
Viresh Kumar16a2e7d2011-08-05 15:32:37 +0530790 cctl = pl08x_cctl_bits(cctl, bd.srcbus.buswidth,
Viresh Kumarb7f69d92011-08-05 15:32:43 +0530791 bd.dstbus.buswidth, 0);
792 pl08x_fill_lli_for_desc(&bd, num_llis++, 0, cctl);
793 break;
Linus Walleije8689e62010-09-28 15:57:37 +0200794 }
795
796 /*
Viresh Kumarb7f69d92011-08-05 15:32:43 +0530797 * Send byte by byte for following cases
798 * - Less than a bus width available
799 * - until master bus is aligned
Linus Walleije8689e62010-09-28 15:57:37 +0200800 */
Viresh Kumarb7f69d92011-08-05 15:32:43 +0530801 if (bd.remainder < mbus->buswidth)
802 early_bytes = bd.remainder;
803 else if ((mbus->addr) % (mbus->buswidth)) {
804 early_bytes = mbus->buswidth - (mbus->addr) %
805 (mbus->buswidth);
806 if ((bd.remainder - early_bytes) < mbus->buswidth)
807 early_bytes = bd.remainder;
Linus Walleije8689e62010-09-28 15:57:37 +0200808 }
Viresh Kumar16a2e7d2011-08-05 15:32:37 +0530809
Viresh Kumarb7f69d92011-08-05 15:32:43 +0530810 if (early_bytes) {
811 dev_vdbg(&pl08x->adev->dev,
812 "%s byte width LLIs (remain 0x%08x)\n",
813 __func__, bd.remainder);
814 prep_byte_width_lli(&bd, &cctl, early_bytes, num_llis++,
815 &total_bytes);
816 }
Linus Walleije8689e62010-09-28 15:57:37 +0200817
Viresh Kumarb7f69d92011-08-05 15:32:43 +0530818 if (bd.remainder) {
819 /*
820 * Master now aligned
821 * - if slave is not then we must set its width down
822 */
823 if (sbus->addr % sbus->buswidth) {
824 dev_dbg(&pl08x->adev->dev,
825 "%s set down bus width to one byte\n",
826 __func__);
827
828 sbus->buswidth = 1;
829 }
830
831 /*
832 * Bytes transferred = tsize * src width, not
833 * MIN(buswidths)
834 */
835 max_bytes_per_lli = bd.srcbus.buswidth *
836 PL080_CONTROL_TRANSFER_SIZE_MASK;
837 dev_vdbg(&pl08x->adev->dev,
838 "%s max bytes per lli = %zu\n",
839 __func__, max_bytes_per_lli);
840
841 /*
842 * Make largest possible LLIs until less than one bus
843 * width left
844 */
845 while (bd.remainder > (mbus->buswidth - 1)) {
846 size_t lli_len, tsize, width;
847
848 /*
849 * If enough left try to send max possible,
850 * otherwise try to send the remainder
851 */
852 lli_len = min(bd.remainder, max_bytes_per_lli);
853
854 /*
855 * Check against maximum bus alignment:
856 * Calculate actual transfer size in relation to
857 * bus width an get a maximum remainder of the
858 * highest bus width - 1
859 */
860 width = max(mbus->buswidth, sbus->buswidth);
861 lli_len = (lli_len / width) * width;
862 tsize = lli_len / bd.srcbus.buswidth;
863
864 dev_vdbg(&pl08x->adev->dev,
865 "%s fill lli with single lli chunk of "
866 "size 0x%08zx (remainder 0x%08zx)\n",
867 __func__, lli_len, bd.remainder);
868
869 cctl = pl08x_cctl_bits(cctl, bd.srcbus.buswidth,
870 bd.dstbus.buswidth, tsize);
871 pl08x_fill_lli_for_desc(&bd, num_llis++,
872 lli_len, cctl);
873 total_bytes += lli_len;
874 }
875
876 /*
877 * Send any odd bytes
878 */
879 if (bd.remainder) {
880 dev_vdbg(&pl08x->adev->dev,
881 "%s align with boundary, send odd bytes (remain %zu)\n",
882 __func__, bd.remainder);
883 prep_byte_width_lli(&bd, &cctl, bd.remainder,
884 num_llis++, &total_bytes);
885 }
886 }
887
888 if (total_bytes != dsg->len) {
889 dev_err(&pl08x->adev->dev,
890 "%s size of encoded lli:s don't match total txd, transferred 0x%08zx from size 0x%08zx\n",
891 __func__, total_bytes, dsg->len);
892 return 0;
893 }
894
895 if (num_llis >= MAX_NUM_TSFR_LLIS) {
896 dev_err(&pl08x->adev->dev,
897 "%s need to increase MAX_NUM_TSFR_LLIS from 0x%08x\n",
898 __func__, (u32) MAX_NUM_TSFR_LLIS);
899 return 0;
900 }
Linus Walleije8689e62010-09-28 15:57:37 +0200901 }
Linus Walleije8689e62010-09-28 15:57:37 +0200902
Russell King - ARM Linuxb58b6b52011-01-03 22:34:48 +0000903 llis_va = txd->llis_va;
Russell King - ARM Linux94ae8522011-01-16 20:18:05 +0000904 /* The final LLI terminates the LLI. */
Russell King - ARM Linuxbfddfb42011-01-03 22:38:12 +0000905 llis_va[num_llis - 1].lli = 0;
Russell King - ARM Linux94ae8522011-01-16 20:18:05 +0000906 /* The final LLI element shall also fire an interrupt. */
Russell King - ARM Linuxb58b6b52011-01-03 22:34:48 +0000907 llis_va[num_llis - 1].cctl |= PL080_CONTROL_TC_IRQ_EN;
Linus Walleije8689e62010-09-28 15:57:37 +0200908
Linus Walleije8689e62010-09-28 15:57:37 +0200909#ifdef VERBOSE_DEBUG
910 {
911 int i;
912
Russell King - ARM Linuxfc74eb72011-07-21 17:12:06 +0100913 dev_vdbg(&pl08x->adev->dev,
914 "%-3s %-9s %-10s %-10s %-10s %s\n",
915 "lli", "", "csrc", "cdst", "clli", "cctl");
Linus Walleije8689e62010-09-28 15:57:37 +0200916 for (i = 0; i < num_llis; i++) {
917 dev_vdbg(&pl08x->adev->dev,
Russell King - ARM Linuxfc74eb72011-07-21 17:12:06 +0100918 "%3d @%p: 0x%08x 0x%08x 0x%08x 0x%08x\n",
919 i, &llis_va[i], llis_va[i].src,
920 llis_va[i].dst, llis_va[i].lli, llis_va[i].cctl
Linus Walleije8689e62010-09-28 15:57:37 +0200921 );
922 }
923 }
924#endif
925
926 return num_llis;
927}
928
929/* You should call this with the struct pl08x lock held */
930static void pl08x_free_txd(struct pl08x_driver_data *pl08x,
931 struct pl08x_txd *txd)
932{
Viresh Kumarb7f69d92011-08-05 15:32:43 +0530933 struct pl08x_sg *dsg, *_dsg;
934
Linus Walleije8689e62010-09-28 15:57:37 +0200935 /* Free the LLI */
Viresh Kumarc1205642011-08-05 15:32:44 +0530936 if (txd->llis_va)
937 dma_pool_free(pl08x->pool, txd->llis_va, txd->llis_bus);
Linus Walleije8689e62010-09-28 15:57:37 +0200938
939 pl08x->pool_ctr--;
940
Viresh Kumarb7f69d92011-08-05 15:32:43 +0530941 list_for_each_entry_safe(dsg, _dsg, &txd->dsg_list, node) {
942 list_del(&dsg->node);
943 kfree(dsg);
944 }
945
Linus Walleije8689e62010-09-28 15:57:37 +0200946 kfree(txd);
947}
948
949static void pl08x_free_txd_list(struct pl08x_driver_data *pl08x,
950 struct pl08x_dma_chan *plchan)
951{
952 struct pl08x_txd *txdi = NULL;
953 struct pl08x_txd *next;
954
Russell King - ARM Linux15c17232011-01-03 22:44:36 +0000955 if (!list_empty(&plchan->pend_list)) {
Linus Walleije8689e62010-09-28 15:57:37 +0200956 list_for_each_entry_safe(txdi,
Russell King - ARM Linux15c17232011-01-03 22:44:36 +0000957 next, &plchan->pend_list, node) {
Linus Walleije8689e62010-09-28 15:57:37 +0200958 list_del(&txdi->node);
959 pl08x_free_txd(pl08x, txdi);
960 }
Linus Walleije8689e62010-09-28 15:57:37 +0200961 }
962}
963
964/*
965 * The DMA ENGINE API
966 */
967static int pl08x_alloc_chan_resources(struct dma_chan *chan)
968{
969 return 0;
970}
971
972static void pl08x_free_chan_resources(struct dma_chan *chan)
973{
974}
975
976/*
977 * This should be called with the channel plchan->lock held
978 */
979static int prep_phy_channel(struct pl08x_dma_chan *plchan,
980 struct pl08x_txd *txd)
981{
982 struct pl08x_driver_data *pl08x = plchan->host;
983 struct pl08x_phy_chan *ch;
984 int ret;
985
986 /* Check if we already have a channel */
Viresh Kumar8f0d30f2011-11-29 12:56:50 +0530987 if (plchan->phychan) {
988 ch = plchan->phychan;
989 goto got_channel;
990 }
Linus Walleije8689e62010-09-28 15:57:37 +0200991
992 ch = pl08x_get_phy_channel(pl08x, plchan);
993 if (!ch) {
994 /* No physical channel available, cope with it */
995 dev_dbg(&pl08x->adev->dev, "no physical channel available for xfer on %s\n", plchan->name);
996 return -EBUSY;
997 }
998
999 /*
1000 * OK we have a physical channel: for memcpy() this is all we
1001 * need, but for slaves the physical signals may be muxed!
1002 * Can the platform allow us to use this channel?
1003 */
Viresh Kumar16ca8102011-08-05 15:32:35 +05301004 if (plchan->slave && pl08x->pd->get_signal) {
Russell Kingaeea1802012-05-17 15:01:28 +01001005 ret = pl08x->pd->get_signal(plchan->cd);
Linus Walleije8689e62010-09-28 15:57:37 +02001006 if (ret < 0) {
1007 dev_dbg(&pl08x->adev->dev,
1008 "unable to use physical channel %d for transfer on %s due to platform restrictions\n",
1009 ch->id, plchan->name);
1010 /* Release physical channel & return */
1011 pl08x_put_phy_channel(pl08x, ch);
1012 return -EBUSY;
1013 }
1014 ch->signal = ret;
1015 }
1016
Viresh Kumar8f0d30f2011-11-29 12:56:50 +05301017 plchan->phychan = ch;
Linus Walleije8689e62010-09-28 15:57:37 +02001018 dev_dbg(&pl08x->adev->dev, "allocated physical channel %d and signal %d for xfer on %s\n",
1019 ch->id,
1020 ch->signal,
1021 plchan->name);
1022
Viresh Kumar8f0d30f2011-11-29 12:56:50 +05301023got_channel:
1024 /* Assign the flow control signal to this channel */
1025 if (txd->direction == DMA_MEM_TO_DEV)
1026 txd->ccfg |= ch->signal << PL080_CONFIG_DST_SEL_SHIFT;
1027 else if (txd->direction == DMA_DEV_TO_MEM)
1028 txd->ccfg |= ch->signal << PL080_CONFIG_SRC_SEL_SHIFT;
1029
Russell King - ARM Linux8087aac2011-01-03 22:45:17 +00001030 plchan->phychan_hold++;
Linus Walleije8689e62010-09-28 15:57:37 +02001031
1032 return 0;
1033}
1034
Russell King - ARM Linux8c8cc2b2011-01-03 22:36:09 +00001035static void release_phy_channel(struct pl08x_dma_chan *plchan)
1036{
1037 struct pl08x_driver_data *pl08x = plchan->host;
1038
1039 if ((plchan->phychan->signal >= 0) && pl08x->pd->put_signal) {
Russell Kingaeea1802012-05-17 15:01:28 +01001040 pl08x->pd->put_signal(plchan->cd, plchan->phychan->signal);
Russell King - ARM Linux8c8cc2b2011-01-03 22:36:09 +00001041 plchan->phychan->signal = -1;
1042 }
1043 pl08x_put_phy_channel(pl08x, plchan->phychan);
1044 plchan->phychan = NULL;
1045}
1046
Linus Walleije8689e62010-09-28 15:57:37 +02001047static dma_cookie_t pl08x_tx_submit(struct dma_async_tx_descriptor *tx)
1048{
1049 struct pl08x_dma_chan *plchan = to_pl08x_chan(tx->chan);
Russell King - ARM Linux501e67e2011-01-03 22:44:57 +00001050 struct pl08x_txd *txd = to_pl08x_txd(tx);
Russell King - ARM Linuxc370e592011-01-03 22:45:37 +00001051 unsigned long flags;
Russell King - ARM Linux884485e2012-03-06 22:34:46 +00001052 dma_cookie_t cookie;
Russell King - ARM Linuxc370e592011-01-03 22:45:37 +00001053
1054 spin_lock_irqsave(&plchan->lock, flags);
Russell King - ARM Linux884485e2012-03-06 22:34:46 +00001055 cookie = dma_cookie_assign(tx);
Russell King - ARM Linux501e67e2011-01-03 22:44:57 +00001056
1057 /* Put this onto the pending list */
1058 list_add_tail(&txd->node, &plchan->pend_list);
1059
1060 /*
1061 * If there was no physical channel available for this memcpy,
1062 * stack the request up and indicate that the channel is waiting
1063 * for a free physical channel.
1064 */
1065 if (!plchan->slave && !plchan->phychan) {
1066 /* Do this memcpy whenever there is a channel ready */
1067 plchan->state = PL08X_CHAN_WAITING;
1068 plchan->waiting = txd;
Russell King - ARM Linux8087aac2011-01-03 22:45:17 +00001069 } else {
1070 plchan->phychan_hold--;
Russell King - ARM Linux501e67e2011-01-03 22:44:57 +00001071 }
1072
Russell King - ARM Linuxc370e592011-01-03 22:45:37 +00001073 spin_unlock_irqrestore(&plchan->lock, flags);
Linus Walleije8689e62010-09-28 15:57:37 +02001074
Russell King - ARM Linux884485e2012-03-06 22:34:46 +00001075 return cookie;
Linus Walleije8689e62010-09-28 15:57:37 +02001076}
1077
1078static struct dma_async_tx_descriptor *pl08x_prep_dma_interrupt(
1079 struct dma_chan *chan, unsigned long flags)
1080{
1081 struct dma_async_tx_descriptor *retval = NULL;
1082
1083 return retval;
1084}
1085
1086/*
Russell King - ARM Linux94ae8522011-01-16 20:18:05 +00001087 * Code accessing dma_async_is_complete() in a tight loop may give problems.
1088 * If slaves are relying on interrupts to signal completion this function
1089 * must not be called with interrupts disabled.
Linus Walleije8689e62010-09-28 15:57:37 +02001090 */
Viresh Kumar3e27ee82011-08-05 15:32:27 +05301091static enum dma_status pl08x_dma_tx_status(struct dma_chan *chan,
1092 dma_cookie_t cookie, struct dma_tx_state *txstate)
Linus Walleije8689e62010-09-28 15:57:37 +02001093{
1094 struct pl08x_dma_chan *plchan = to_pl08x_chan(chan);
Linus Walleije8689e62010-09-28 15:57:37 +02001095 enum dma_status ret;
Linus Walleije8689e62010-09-28 15:57:37 +02001096
Russell King - ARM Linux96a2af42012-03-06 22:35:27 +00001097 ret = dma_cookie_status(chan, cookie, txstate);
1098 if (ret == DMA_SUCCESS)
Linus Walleije8689e62010-09-28 15:57:37 +02001099 return ret;
Linus Walleije8689e62010-09-28 15:57:37 +02001100
1101 /*
Linus Walleije8689e62010-09-28 15:57:37 +02001102 * This cookie not complete yet
Russell King - ARM Linux96a2af42012-03-06 22:35:27 +00001103 * Get number of bytes left in the active transactions and queue
Linus Walleije8689e62010-09-28 15:57:37 +02001104 */
Russell King - ARM Linux96a2af42012-03-06 22:35:27 +00001105 dma_set_residue(txstate, pl08x_getbytes_chan(plchan));
Linus Walleije8689e62010-09-28 15:57:37 +02001106
1107 if (plchan->state == PL08X_CHAN_PAUSED)
1108 return DMA_PAUSED;
1109
1110 /* Whether waiting or running, we're in progress */
1111 return DMA_IN_PROGRESS;
1112}
1113
1114/* PrimeCell DMA extension */
1115struct burst_table {
Russell King - ARM Linux760596c62011-07-21 17:14:08 +01001116 u32 burstwords;
Linus Walleije8689e62010-09-28 15:57:37 +02001117 u32 reg;
1118};
1119
1120static const struct burst_table burst_sizes[] = {
1121 {
1122 .burstwords = 256,
Russell King - ARM Linux760596c62011-07-21 17:14:08 +01001123 .reg = PL080_BSIZE_256,
Linus Walleije8689e62010-09-28 15:57:37 +02001124 },
1125 {
1126 .burstwords = 128,
Russell King - ARM Linux760596c62011-07-21 17:14:08 +01001127 .reg = PL080_BSIZE_128,
Linus Walleije8689e62010-09-28 15:57:37 +02001128 },
1129 {
1130 .burstwords = 64,
Russell King - ARM Linux760596c62011-07-21 17:14:08 +01001131 .reg = PL080_BSIZE_64,
Linus Walleije8689e62010-09-28 15:57:37 +02001132 },
1133 {
1134 .burstwords = 32,
Russell King - ARM Linux760596c62011-07-21 17:14:08 +01001135 .reg = PL080_BSIZE_32,
Linus Walleije8689e62010-09-28 15:57:37 +02001136 },
1137 {
1138 .burstwords = 16,
Russell King - ARM Linux760596c62011-07-21 17:14:08 +01001139 .reg = PL080_BSIZE_16,
Linus Walleije8689e62010-09-28 15:57:37 +02001140 },
1141 {
1142 .burstwords = 8,
Russell King - ARM Linux760596c62011-07-21 17:14:08 +01001143 .reg = PL080_BSIZE_8,
Linus Walleije8689e62010-09-28 15:57:37 +02001144 },
1145 {
1146 .burstwords = 4,
Russell King - ARM Linux760596c62011-07-21 17:14:08 +01001147 .reg = PL080_BSIZE_4,
Linus Walleije8689e62010-09-28 15:57:37 +02001148 },
1149 {
Russell King - ARM Linux760596c62011-07-21 17:14:08 +01001150 .burstwords = 0,
1151 .reg = PL080_BSIZE_1,
Linus Walleije8689e62010-09-28 15:57:37 +02001152 },
1153};
1154
Russell King - ARM Linux121c8472011-07-21 17:13:48 +01001155/*
1156 * Given the source and destination available bus masks, select which
1157 * will be routed to each port. We try to have source and destination
1158 * on separate ports, but always respect the allowable settings.
1159 */
1160static u32 pl08x_select_bus(u8 src, u8 dst)
1161{
1162 u32 cctl = 0;
1163
1164 if (!(dst & PL08X_AHB1) || ((dst & PL08X_AHB2) && (src & PL08X_AHB1)))
1165 cctl |= PL080_CONTROL_DST_AHB2;
1166 if (!(src & PL08X_AHB1) || ((src & PL08X_AHB2) && !(dst & PL08X_AHB2)))
1167 cctl |= PL080_CONTROL_SRC_AHB2;
1168
1169 return cctl;
1170}
1171
Russell King - ARM Linuxf14c4262011-07-21 17:12:47 +01001172static u32 pl08x_cctl(u32 cctl)
1173{
1174 cctl &= ~(PL080_CONTROL_SRC_AHB2 | PL080_CONTROL_DST_AHB2 |
1175 PL080_CONTROL_SRC_INCR | PL080_CONTROL_DST_INCR |
1176 PL080_CONTROL_PROT_MASK);
1177
1178 /* Access the cell in privileged mode, non-bufferable, non-cacheable */
1179 return cctl | PL080_CONTROL_PROT_SYS;
1180}
1181
Russell King - ARM Linuxaa88cda2011-07-21 17:13:28 +01001182static u32 pl08x_width(enum dma_slave_buswidth width)
1183{
1184 switch (width) {
1185 case DMA_SLAVE_BUSWIDTH_1_BYTE:
1186 return PL080_WIDTH_8BIT;
1187 case DMA_SLAVE_BUSWIDTH_2_BYTES:
1188 return PL080_WIDTH_16BIT;
1189 case DMA_SLAVE_BUSWIDTH_4_BYTES:
1190 return PL080_WIDTH_32BIT;
Vinod Koulf32807f2011-07-25 19:22:01 +05301191 default:
1192 return ~0;
Russell King - ARM Linuxaa88cda2011-07-21 17:13:28 +01001193 }
Russell King - ARM Linuxaa88cda2011-07-21 17:13:28 +01001194}
1195
Russell King - ARM Linux760596c62011-07-21 17:14:08 +01001196static u32 pl08x_burst(u32 maxburst)
1197{
1198 int i;
1199
1200 for (i = 0; i < ARRAY_SIZE(burst_sizes); i++)
1201 if (burst_sizes[i].burstwords <= maxburst)
1202 break;
1203
1204 return burst_sizes[i].reg;
1205}
1206
Russell King9862ba12012-05-16 11:16:03 +01001207static u32 pl08x_get_cctl(struct pl08x_dma_chan *plchan,
1208 enum dma_slave_buswidth addr_width, u32 maxburst)
1209{
1210 u32 width, burst, cctl = 0;
1211
1212 width = pl08x_width(addr_width);
1213 if (width == ~0)
1214 return ~0;
1215
1216 cctl |= width << PL080_CONTROL_SWIDTH_SHIFT;
1217 cctl |= width << PL080_CONTROL_DWIDTH_SHIFT;
1218
1219 /*
1220 * If this channel will only request single transfers, set this
1221 * down to ONE element. Also select one element if no maxburst
1222 * is specified.
1223 */
1224 if (plchan->cd->single)
1225 maxburst = 1;
1226
1227 burst = pl08x_burst(maxburst);
1228 cctl |= burst << PL080_CONTROL_SB_SIZE_SHIFT;
1229 cctl |= burst << PL080_CONTROL_DB_SIZE_SHIFT;
1230
1231 return pl08x_cctl(cctl);
1232}
1233
Russell King - ARM Linuxf0fd9442011-01-03 22:45:57 +00001234static int dma_set_runtime_config(struct dma_chan *chan,
1235 struct dma_slave_config *config)
Linus Walleije8689e62010-09-28 15:57:37 +02001236{
1237 struct pl08x_dma_chan *plchan = to_pl08x_chan(chan);
1238 struct pl08x_driver_data *pl08x = plchan->host;
Russell King800d6832012-05-16 11:33:31 +01001239 u32 src_cctl, dst_cctl;
Linus Walleije8689e62010-09-28 15:57:37 +02001240
Russell King - ARM Linuxb7f758652011-01-03 22:46:17 +00001241 if (!plchan->slave)
1242 return -EINVAL;
1243
Russell King800d6832012-05-16 11:33:31 +01001244 dst_cctl = pl08x_get_cctl(plchan, config->dst_addr_width,
1245 config->dst_maxburst);
1246 if (dst_cctl == ~0 && config->direction == DMA_MEM_TO_DEV) {
Linus Walleije8689e62010-09-28 15:57:37 +02001247 dev_err(&pl08x->adev->dev,
Russell King800d6832012-05-16 11:33:31 +01001248 "bad runtime_config: alien address width (M2D)\n");
Russell King - ARM Linuxf0fd9442011-01-03 22:45:57 +00001249 return -EINVAL;
Linus Walleije8689e62010-09-28 15:57:37 +02001250 }
1251
Russell King800d6832012-05-16 11:33:31 +01001252 src_cctl = pl08x_get_cctl(plchan, config->src_addr_width,
1253 config->src_maxburst);
1254 if (src_cctl == ~0 && config->direction == DMA_DEV_TO_MEM) {
Linus Walleije8689e62010-09-28 15:57:37 +02001255 dev_err(&pl08x->adev->dev,
Russell King800d6832012-05-16 11:33:31 +01001256 "bad runtime_config: alien address width (D2M)\n");
Russell King - ARM Linuxf0fd9442011-01-03 22:45:57 +00001257 return -EINVAL;
Linus Walleije8689e62010-09-28 15:57:37 +02001258 }
1259
Russell King800d6832012-05-16 11:33:31 +01001260 plchan->dst_cctl = dst_cctl;
1261 plchan->src_cctl = src_cctl;
Russell Kinged91c132012-05-16 11:02:40 +01001262 plchan->cfg = *config;
1263
Russell King - ARM Linuxf0fd9442011-01-03 22:45:57 +00001264 return 0;
Linus Walleije8689e62010-09-28 15:57:37 +02001265}
1266
1267/*
1268 * Slave transactions callback to the slave device to allow
1269 * synchronization of slave DMA signals with the DMAC enable
1270 */
1271static void pl08x_issue_pending(struct dma_chan *chan)
1272{
1273 struct pl08x_dma_chan *plchan = to_pl08x_chan(chan);
Linus Walleije8689e62010-09-28 15:57:37 +02001274 unsigned long flags;
1275
1276 spin_lock_irqsave(&plchan->lock, flags);
Russell King - ARM Linux9c0bb432011-01-03 22:32:05 +00001277 /* Something is already active, or we're waiting for a channel... */
1278 if (plchan->at || plchan->state == PL08X_CHAN_WAITING) {
1279 spin_unlock_irqrestore(&plchan->lock, flags);
Linus Walleije8689e62010-09-28 15:57:37 +02001280 return;
Russell King - ARM Linux9c0bb432011-01-03 22:32:05 +00001281 }
Linus Walleije8689e62010-09-28 15:57:37 +02001282
1283 /* Take the first element in the queue and execute it */
Russell King - ARM Linux15c17232011-01-03 22:44:36 +00001284 if (!list_empty(&plchan->pend_list)) {
Linus Walleije8689e62010-09-28 15:57:37 +02001285 struct pl08x_txd *next;
1286
Russell King - ARM Linux15c17232011-01-03 22:44:36 +00001287 next = list_first_entry(&plchan->pend_list,
Linus Walleije8689e62010-09-28 15:57:37 +02001288 struct pl08x_txd,
1289 node);
1290 list_del(&next->node);
Linus Walleije8689e62010-09-28 15:57:37 +02001291 plchan->state = PL08X_CHAN_RUNNING;
1292
Russell King - ARM Linuxc885bee2011-01-03 22:38:52 +00001293 pl08x_start_txd(plchan, next);
Linus Walleije8689e62010-09-28 15:57:37 +02001294 }
1295
1296 spin_unlock_irqrestore(&plchan->lock, flags);
1297}
1298
1299static int pl08x_prep_channel_resources(struct pl08x_dma_chan *plchan,
1300 struct pl08x_txd *txd)
1301{
Linus Walleije8689e62010-09-28 15:57:37 +02001302 struct pl08x_driver_data *pl08x = plchan->host;
Russell King - ARM Linuxc370e592011-01-03 22:45:37 +00001303 unsigned long flags;
1304 int num_llis, ret;
Linus Walleije8689e62010-09-28 15:57:37 +02001305
1306 num_llis = pl08x_fill_llis_for_desc(pl08x, txd);
Russell King - ARM Linuxdafa7312011-01-03 22:31:45 +00001307 if (!num_llis) {
Viresh Kumar57001a62011-08-05 15:32:45 +05301308 spin_lock_irqsave(&plchan->lock, flags);
1309 pl08x_free_txd(pl08x, txd);
1310 spin_unlock_irqrestore(&plchan->lock, flags);
Linus Walleije8689e62010-09-28 15:57:37 +02001311 return -EINVAL;
Russell King - ARM Linuxdafa7312011-01-03 22:31:45 +00001312 }
Linus Walleije8689e62010-09-28 15:57:37 +02001313
Russell King - ARM Linuxc370e592011-01-03 22:45:37 +00001314 spin_lock_irqsave(&plchan->lock, flags);
Linus Walleije8689e62010-09-28 15:57:37 +02001315
Linus Walleije8689e62010-09-28 15:57:37 +02001316 /*
1317 * See if we already have a physical channel allocated,
1318 * else this is the time to try to get one.
1319 */
1320 ret = prep_phy_channel(plchan, txd);
1321 if (ret) {
1322 /*
Russell King - ARM Linux501e67e2011-01-03 22:44:57 +00001323 * No physical channel was available.
1324 *
1325 * memcpy transfers can be sorted out at submission time.
1326 *
1327 * Slave transfers may have been denied due to platform
1328 * channel muxing restrictions. Since there is no guarantee
1329 * that this will ever be resolved, and the signal must be
1330 * acquired AFTER acquiring the physical channel, we will let
1331 * them be NACK:ed with -EBUSY here. The drivers can retry
1332 * the prep() call if they are eager on doing this using DMA.
Linus Walleije8689e62010-09-28 15:57:37 +02001333 */
1334 if (plchan->slave) {
1335 pl08x_free_txd_list(pl08x, plchan);
Russell King - ARM Linux501e67e2011-01-03 22:44:57 +00001336 pl08x_free_txd(pl08x, txd);
Russell King - ARM Linuxc370e592011-01-03 22:45:37 +00001337 spin_unlock_irqrestore(&plchan->lock, flags);
Linus Walleije8689e62010-09-28 15:57:37 +02001338 return -EBUSY;
1339 }
Linus Walleije8689e62010-09-28 15:57:37 +02001340 } else
1341 /*
Russell King - ARM Linux94ae8522011-01-16 20:18:05 +00001342 * Else we're all set, paused and ready to roll, status
1343 * will switch to PL08X_CHAN_RUNNING when we call
1344 * issue_pending(). If there is something running on the
1345 * channel already we don't change its state.
Linus Walleije8689e62010-09-28 15:57:37 +02001346 */
1347 if (plchan->state == PL08X_CHAN_IDLE)
1348 plchan->state = PL08X_CHAN_PAUSED;
1349
Russell King - ARM Linuxc370e592011-01-03 22:45:37 +00001350 spin_unlock_irqrestore(&plchan->lock, flags);
Linus Walleije8689e62010-09-28 15:57:37 +02001351
1352 return 0;
1353}
1354
Russell King - ARM Linuxc0428792011-01-03 22:43:56 +00001355static struct pl08x_txd *pl08x_get_txd(struct pl08x_dma_chan *plchan,
1356 unsigned long flags)
Russell King - ARM Linuxac3cd202011-01-03 22:35:49 +00001357{
Viresh Kumarb201c112011-08-05 15:32:29 +05301358 struct pl08x_txd *txd = kzalloc(sizeof(*txd), GFP_NOWAIT);
Russell King - ARM Linuxac3cd202011-01-03 22:35:49 +00001359
1360 if (txd) {
1361 dma_async_tx_descriptor_init(&txd->tx, &plchan->chan);
Russell King - ARM Linuxc0428792011-01-03 22:43:56 +00001362 txd->tx.flags = flags;
Russell King - ARM Linuxac3cd202011-01-03 22:35:49 +00001363 txd->tx.tx_submit = pl08x_tx_submit;
1364 INIT_LIST_HEAD(&txd->node);
Viresh Kumarb7f69d92011-08-05 15:32:43 +05301365 INIT_LIST_HEAD(&txd->dsg_list);
Russell King - ARM Linux4983a042011-01-03 22:39:33 +00001366
1367 /* Always enable error and terminal interrupts */
1368 txd->ccfg = PL080_CONFIG_ERR_IRQ_MASK |
1369 PL080_CONFIG_TC_IRQ_MASK;
Russell King - ARM Linuxac3cd202011-01-03 22:35:49 +00001370 }
1371 return txd;
1372}
1373
Linus Walleije8689e62010-09-28 15:57:37 +02001374/*
1375 * Initialize a descriptor to be used by memcpy submit
1376 */
1377static struct dma_async_tx_descriptor *pl08x_prep_dma_memcpy(
1378 struct dma_chan *chan, dma_addr_t dest, dma_addr_t src,
1379 size_t len, unsigned long flags)
1380{
1381 struct pl08x_dma_chan *plchan = to_pl08x_chan(chan);
1382 struct pl08x_driver_data *pl08x = plchan->host;
1383 struct pl08x_txd *txd;
Viresh Kumarb7f69d92011-08-05 15:32:43 +05301384 struct pl08x_sg *dsg;
Linus Walleije8689e62010-09-28 15:57:37 +02001385 int ret;
1386
Russell King - ARM Linuxc0428792011-01-03 22:43:56 +00001387 txd = pl08x_get_txd(plchan, flags);
Linus Walleije8689e62010-09-28 15:57:37 +02001388 if (!txd) {
1389 dev_err(&pl08x->adev->dev,
1390 "%s no memory for descriptor\n", __func__);
1391 return NULL;
1392 }
1393
Viresh Kumarb7f69d92011-08-05 15:32:43 +05301394 dsg = kzalloc(sizeof(struct pl08x_sg), GFP_NOWAIT);
1395 if (!dsg) {
1396 pl08x_free_txd(pl08x, txd);
1397 dev_err(&pl08x->adev->dev, "%s no memory for pl080 sg\n",
1398 __func__);
1399 return NULL;
1400 }
1401 list_add_tail(&dsg->node, &txd->dsg_list);
1402
Russell King92d2fd62012-05-25 14:37:56 +01001403 txd->direction = DMA_MEM_TO_MEM;
Viresh Kumarb7f69d92011-08-05 15:32:43 +05301404 dsg->src_addr = src;
1405 dsg->dst_addr = dest;
1406 dsg->len = len;
Linus Walleije8689e62010-09-28 15:57:37 +02001407
1408 /* Set platform data for m2m */
Russell King - ARM Linux4983a042011-01-03 22:39:33 +00001409 txd->ccfg |= PL080_FLOW_MEM2MEM << PL080_CONFIG_FLOW_CONTROL_SHIFT;
Russell King - ARM Linuxc7da9a52011-01-03 22:40:53 +00001410 txd->cctl = pl08x->pd->memcpy_channel.cctl &
1411 ~(PL080_CONTROL_DST_AHB2 | PL080_CONTROL_SRC_AHB2);
Russell King - ARM Linux4983a042011-01-03 22:39:33 +00001412
Linus Walleije8689e62010-09-28 15:57:37 +02001413 /* Both to be incremented or the code will break */
Russell King - ARM Linux70b5ed62011-01-03 22:40:13 +00001414 txd->cctl |= PL080_CONTROL_SRC_INCR | PL080_CONTROL_DST_INCR;
Russell King - ARM Linuxc7da9a52011-01-03 22:40:53 +00001415
Russell King - ARM Linuxc7da9a52011-01-03 22:40:53 +00001416 if (pl08x->vd->dualmaster)
Russell King - ARM Linux121c8472011-07-21 17:13:48 +01001417 txd->cctl |= pl08x_select_bus(pl08x->mem_buses,
1418 pl08x->mem_buses);
Linus Walleije8689e62010-09-28 15:57:37 +02001419
Linus Walleije8689e62010-09-28 15:57:37 +02001420 ret = pl08x_prep_channel_resources(plchan, txd);
1421 if (ret)
1422 return NULL;
Linus Walleije8689e62010-09-28 15:57:37 +02001423
1424 return &txd->tx;
1425}
1426
Russell King - ARM Linux3e2a0372011-01-03 22:32:46 +00001427static struct dma_async_tx_descriptor *pl08x_prep_slave_sg(
Linus Walleije8689e62010-09-28 15:57:37 +02001428 struct dma_chan *chan, struct scatterlist *sgl,
Vinod Kouldb8196d2011-10-13 22:34:23 +05301429 unsigned int sg_len, enum dma_transfer_direction direction,
Alexandre Bounine185ecb52012-03-08 15:35:13 -05001430 unsigned long flags, void *context)
Linus Walleije8689e62010-09-28 15:57:37 +02001431{
1432 struct pl08x_dma_chan *plchan = to_pl08x_chan(chan);
1433 struct pl08x_driver_data *pl08x = plchan->host;
1434 struct pl08x_txd *txd;
Viresh Kumarb7f69d92011-08-05 15:32:43 +05301435 struct pl08x_sg *dsg;
1436 struct scatterlist *sg;
1437 dma_addr_t slave_addr;
Viresh Kumar0a235652011-08-05 15:32:42 +05301438 int ret, tmp;
Russell King409ec8d2012-05-16 11:08:43 +01001439 u8 src_buses, dst_buses;
1440 u32 cctl;
Linus Walleije8689e62010-09-28 15:57:37 +02001441
Linus Walleije8689e62010-09-28 15:57:37 +02001442 dev_dbg(&pl08x->adev->dev, "%s prepare transaction of %d bytes from %s\n",
Lars-Peter Clausenfdaf9c42012-04-25 20:50:52 +02001443 __func__, sg_dma_len(sgl), plchan->name);
Linus Walleije8689e62010-09-28 15:57:37 +02001444
Russell King - ARM Linuxc0428792011-01-03 22:43:56 +00001445 txd = pl08x_get_txd(plchan, flags);
Linus Walleije8689e62010-09-28 15:57:37 +02001446 if (!txd) {
1447 dev_err(&pl08x->adev->dev, "%s no txd\n", __func__);
1448 return NULL;
1449 }
1450
Linus Walleije8689e62010-09-28 15:57:37 +02001451 /*
1452 * Set up addresses, the PrimeCell configured address
1453 * will take precedence since this may configure the
1454 * channel target address dynamically at runtime.
1455 */
1456 txd->direction = direction;
Russell King - ARM Linuxc7da9a52011-01-03 22:40:53 +00001457
Vinod Kouldb8196d2011-10-13 22:34:23 +05301458 if (direction == DMA_MEM_TO_DEV) {
Russell King409ec8d2012-05-16 11:08:43 +01001459 cctl = plchan->dst_cctl | PL080_CONTROL_SRC_INCR;
Russell Kinged91c132012-05-16 11:02:40 +01001460 slave_addr = plchan->cfg.dst_addr;
Russell King409ec8d2012-05-16 11:08:43 +01001461 src_buses = pl08x->mem_buses;
1462 dst_buses = plchan->cd->periph_buses;
Vinod Kouldb8196d2011-10-13 22:34:23 +05301463 } else if (direction == DMA_DEV_TO_MEM) {
Russell King409ec8d2012-05-16 11:08:43 +01001464 cctl = plchan->src_cctl | PL080_CONTROL_DST_INCR;
Russell Kinged91c132012-05-16 11:02:40 +01001465 slave_addr = plchan->cfg.src_addr;
Russell King409ec8d2012-05-16 11:08:43 +01001466 src_buses = plchan->cd->periph_buses;
1467 dst_buses = pl08x->mem_buses;
Linus Walleije8689e62010-09-28 15:57:37 +02001468 } else {
Viresh Kumarb7f69d92011-08-05 15:32:43 +05301469 pl08x_free_txd(pl08x, txd);
Linus Walleije8689e62010-09-28 15:57:37 +02001470 dev_err(&pl08x->adev->dev,
1471 "%s direction unsupported\n", __func__);
1472 return NULL;
1473 }
Linus Walleije8689e62010-09-28 15:57:37 +02001474
Russell King800d6832012-05-16 11:33:31 +01001475 if (cctl == ~0) {
1476 pl08x_free_txd(pl08x, txd);
1477 dev_err(&pl08x->adev->dev,
1478 "DMA slave configuration botched?\n");
1479 return NULL;
1480 }
1481
Russell King409ec8d2012-05-16 11:08:43 +01001482 txd->cctl = cctl | pl08x_select_bus(src_buses, dst_buses);
1483
Russell King95442b22012-05-16 11:05:09 +01001484 if (plchan->cfg.device_fc)
Vinod Kouldb8196d2011-10-13 22:34:23 +05301485 tmp = (direction == DMA_MEM_TO_DEV) ? PL080_FLOW_MEM2PER_PER :
Viresh Kumar0a235652011-08-05 15:32:42 +05301486 PL080_FLOW_PER2MEM_PER;
1487 else
Vinod Kouldb8196d2011-10-13 22:34:23 +05301488 tmp = (direction == DMA_MEM_TO_DEV) ? PL080_FLOW_MEM2PER :
Viresh Kumar0a235652011-08-05 15:32:42 +05301489 PL080_FLOW_PER2MEM;
1490
1491 txd->ccfg |= tmp << PL080_CONFIG_FLOW_CONTROL_SHIFT;
1492
Viresh Kumarb7f69d92011-08-05 15:32:43 +05301493 for_each_sg(sgl, sg, sg_len, tmp) {
1494 dsg = kzalloc(sizeof(struct pl08x_sg), GFP_NOWAIT);
1495 if (!dsg) {
1496 pl08x_free_txd(pl08x, txd);
1497 dev_err(&pl08x->adev->dev, "%s no mem for pl080 sg\n",
1498 __func__);
1499 return NULL;
1500 }
1501 list_add_tail(&dsg->node, &txd->dsg_list);
1502
1503 dsg->len = sg_dma_len(sg);
Vinod Kouldb8196d2011-10-13 22:34:23 +05301504 if (direction == DMA_MEM_TO_DEV) {
Lars-Peter Clausencbb796c2012-04-25 20:50:51 +02001505 dsg->src_addr = sg_dma_address(sg);
Viresh Kumarb7f69d92011-08-05 15:32:43 +05301506 dsg->dst_addr = slave_addr;
1507 } else {
1508 dsg->src_addr = slave_addr;
Lars-Peter Clausencbb796c2012-04-25 20:50:51 +02001509 dsg->dst_addr = sg_dma_address(sg);
Viresh Kumarb7f69d92011-08-05 15:32:43 +05301510 }
1511 }
1512
Linus Walleije8689e62010-09-28 15:57:37 +02001513 ret = pl08x_prep_channel_resources(plchan, txd);
1514 if (ret)
1515 return NULL;
Linus Walleije8689e62010-09-28 15:57:37 +02001516
1517 return &txd->tx;
1518}
1519
1520static int pl08x_control(struct dma_chan *chan, enum dma_ctrl_cmd cmd,
1521 unsigned long arg)
1522{
1523 struct pl08x_dma_chan *plchan = to_pl08x_chan(chan);
1524 struct pl08x_driver_data *pl08x = plchan->host;
1525 unsigned long flags;
1526 int ret = 0;
1527
1528 /* Controls applicable to inactive channels */
1529 if (cmd == DMA_SLAVE_CONFIG) {
Russell King - ARM Linuxf0fd9442011-01-03 22:45:57 +00001530 return dma_set_runtime_config(chan,
1531 (struct dma_slave_config *)arg);
Linus Walleije8689e62010-09-28 15:57:37 +02001532 }
1533
1534 /*
1535 * Anything succeeds on channels with no physical allocation and
1536 * no queued transfers.
1537 */
1538 spin_lock_irqsave(&plchan->lock, flags);
1539 if (!plchan->phychan && !plchan->at) {
1540 spin_unlock_irqrestore(&plchan->lock, flags);
1541 return 0;
1542 }
1543
1544 switch (cmd) {
1545 case DMA_TERMINATE_ALL:
1546 plchan->state = PL08X_CHAN_IDLE;
1547
1548 if (plchan->phychan) {
Russell King - ARM Linuxfb526212011-01-27 12:32:53 +00001549 pl08x_terminate_phy_chan(pl08x, plchan->phychan);
Linus Walleije8689e62010-09-28 15:57:37 +02001550
1551 /*
1552 * Mark physical channel as free and free any slave
1553 * signal
1554 */
Russell King - ARM Linux8c8cc2b2011-01-03 22:36:09 +00001555 release_phy_channel(plchan);
Davide Ciminaghi88c08a32012-04-19 12:20:24 +02001556 plchan->phychan_hold = 0;
Linus Walleije8689e62010-09-28 15:57:37 +02001557 }
Linus Walleije8689e62010-09-28 15:57:37 +02001558 /* Dequeue jobs and free LLIs */
1559 if (plchan->at) {
1560 pl08x_free_txd(pl08x, plchan->at);
1561 plchan->at = NULL;
1562 }
1563 /* Dequeue jobs not yet fired as well */
1564 pl08x_free_txd_list(pl08x, plchan);
1565 break;
1566 case DMA_PAUSE:
1567 pl08x_pause_phy_chan(plchan->phychan);
1568 plchan->state = PL08X_CHAN_PAUSED;
1569 break;
1570 case DMA_RESUME:
1571 pl08x_resume_phy_chan(plchan->phychan);
1572 plchan->state = PL08X_CHAN_RUNNING;
1573 break;
1574 default:
1575 /* Unknown command */
1576 ret = -ENXIO;
1577 break;
1578 }
1579
1580 spin_unlock_irqrestore(&plchan->lock, flags);
1581
1582 return ret;
1583}
1584
1585bool pl08x_filter_id(struct dma_chan *chan, void *chan_id)
1586{
Russell King - ARM Linux7703eac2011-08-31 09:34:35 +01001587 struct pl08x_dma_chan *plchan;
Linus Walleije8689e62010-09-28 15:57:37 +02001588 char *name = chan_id;
1589
Russell King - ARM Linux7703eac2011-08-31 09:34:35 +01001590 /* Reject channels for devices not bound to this driver */
1591 if (chan->device->dev->driver != &pl08x_amba_driver.drv)
1592 return false;
1593
1594 plchan = to_pl08x_chan(chan);
1595
Linus Walleije8689e62010-09-28 15:57:37 +02001596 /* Check that the channel is not taken! */
1597 if (!strcmp(plchan->name, name))
1598 return true;
1599
1600 return false;
1601}
1602
1603/*
1604 * Just check that the device is there and active
Russell King - ARM Linux94ae8522011-01-16 20:18:05 +00001605 * TODO: turn this bit on/off depending on the number of physical channels
1606 * actually used, if it is zero... well shut it off. That will save some
1607 * power. Cut the clock at the same time.
Linus Walleije8689e62010-09-28 15:57:37 +02001608 */
1609static void pl08x_ensure_on(struct pl08x_driver_data *pl08x)
1610{
Linus Walleijaffa1152012-04-12 09:01:49 +02001611 /* The Nomadik variant does not have the config register */
1612 if (pl08x->vd->nomadik)
1613 return;
Viresh Kumar48a59ef2011-08-05 15:32:34 +05301614 writel(PL080_CONFIG_ENABLE, pl08x->base + PL080_CONFIG);
Linus Walleije8689e62010-09-28 15:57:37 +02001615}
1616
Russell King - ARM Linux3d992e12011-01-03 22:44:16 +00001617static void pl08x_unmap_buffers(struct pl08x_txd *txd)
1618{
1619 struct device *dev = txd->tx.chan->device->dev;
Viresh Kumarb7f69d92011-08-05 15:32:43 +05301620 struct pl08x_sg *dsg;
Russell King - ARM Linux3d992e12011-01-03 22:44:16 +00001621
1622 if (!(txd->tx.flags & DMA_COMPL_SKIP_SRC_UNMAP)) {
1623 if (txd->tx.flags & DMA_COMPL_SRC_UNMAP_SINGLE)
Viresh Kumarb7f69d92011-08-05 15:32:43 +05301624 list_for_each_entry(dsg, &txd->dsg_list, node)
1625 dma_unmap_single(dev, dsg->src_addr, dsg->len,
1626 DMA_TO_DEVICE);
1627 else {
1628 list_for_each_entry(dsg, &txd->dsg_list, node)
1629 dma_unmap_page(dev, dsg->src_addr, dsg->len,
1630 DMA_TO_DEVICE);
1631 }
Russell King - ARM Linux3d992e12011-01-03 22:44:16 +00001632 }
1633 if (!(txd->tx.flags & DMA_COMPL_SKIP_DEST_UNMAP)) {
1634 if (txd->tx.flags & DMA_COMPL_DEST_UNMAP_SINGLE)
Viresh Kumarb7f69d92011-08-05 15:32:43 +05301635 list_for_each_entry(dsg, &txd->dsg_list, node)
1636 dma_unmap_single(dev, dsg->dst_addr, dsg->len,
1637 DMA_FROM_DEVICE);
Russell King - ARM Linux3d992e12011-01-03 22:44:16 +00001638 else
Viresh Kumarb7f69d92011-08-05 15:32:43 +05301639 list_for_each_entry(dsg, &txd->dsg_list, node)
1640 dma_unmap_page(dev, dsg->dst_addr, dsg->len,
1641 DMA_FROM_DEVICE);
Russell King - ARM Linux3d992e12011-01-03 22:44:16 +00001642 }
1643}
1644
Linus Walleije8689e62010-09-28 15:57:37 +02001645static void pl08x_tasklet(unsigned long data)
1646{
1647 struct pl08x_dma_chan *plchan = (struct pl08x_dma_chan *) data;
Linus Walleije8689e62010-09-28 15:57:37 +02001648 struct pl08x_driver_data *pl08x = plchan->host;
Russell King - ARM Linux858c21c2011-01-03 22:41:34 +00001649 struct pl08x_txd *txd;
Russell King - ARM Linuxbf072af2011-01-03 22:31:24 +00001650 unsigned long flags;
Linus Walleije8689e62010-09-28 15:57:37 +02001651
Russell King - ARM Linuxbf072af2011-01-03 22:31:24 +00001652 spin_lock_irqsave(&plchan->lock, flags);
Linus Walleije8689e62010-09-28 15:57:37 +02001653
Russell King - ARM Linux858c21c2011-01-03 22:41:34 +00001654 txd = plchan->at;
1655 plchan->at = NULL;
1656
1657 if (txd) {
Russell King - ARM Linux94ae8522011-01-16 20:18:05 +00001658 /* Update last completed */
Russell King - ARM Linuxf7fbce02012-03-06 22:35:07 +00001659 dma_cookie_complete(&txd->tx);
Linus Walleije8689e62010-09-28 15:57:37 +02001660 }
Russell King - ARM Linux8087aac2011-01-03 22:45:17 +00001661
Russell King - ARM Linux94ae8522011-01-16 20:18:05 +00001662 /* If a new descriptor is queued, set it up plchan->at is NULL here */
Russell King - ARM Linux15c17232011-01-03 22:44:36 +00001663 if (!list_empty(&plchan->pend_list)) {
Linus Walleije8689e62010-09-28 15:57:37 +02001664 struct pl08x_txd *next;
1665
Russell King - ARM Linux15c17232011-01-03 22:44:36 +00001666 next = list_first_entry(&plchan->pend_list,
Linus Walleije8689e62010-09-28 15:57:37 +02001667 struct pl08x_txd,
1668 node);
1669 list_del(&next->node);
Russell King - ARM Linuxc885bee2011-01-03 22:38:52 +00001670
1671 pl08x_start_txd(plchan, next);
Russell King - ARM Linux8087aac2011-01-03 22:45:17 +00001672 } else if (plchan->phychan_hold) {
1673 /*
1674 * This channel is still in use - we have a new txd being
1675 * prepared and will soon be queued. Don't give up the
1676 * physical channel.
1677 */
Linus Walleije8689e62010-09-28 15:57:37 +02001678 } else {
1679 struct pl08x_dma_chan *waiting = NULL;
1680
1681 /*
1682 * No more jobs, so free up the physical channel
1683 * Free any allocated signal on slave transfers too
1684 */
Russell King - ARM Linux8c8cc2b2011-01-03 22:36:09 +00001685 release_phy_channel(plchan);
Linus Walleije8689e62010-09-28 15:57:37 +02001686 plchan->state = PL08X_CHAN_IDLE;
1687
1688 /*
Russell King - ARM Linux94ae8522011-01-16 20:18:05 +00001689 * And NOW before anyone else can grab that free:d up
1690 * physical channel, see if there is some memcpy pending
1691 * that seriously needs to start because of being stacked
1692 * up while we were choking the physical channels with data.
Linus Walleije8689e62010-09-28 15:57:37 +02001693 */
1694 list_for_each_entry(waiting, &pl08x->memcpy.channels,
1695 chan.device_node) {
Viresh Kumar3e27ee82011-08-05 15:32:27 +05301696 if (waiting->state == PL08X_CHAN_WAITING &&
1697 waiting->waiting != NULL) {
Linus Walleije8689e62010-09-28 15:57:37 +02001698 int ret;
1699
1700 /* This should REALLY not fail now */
1701 ret = prep_phy_channel(waiting,
1702 waiting->waiting);
1703 BUG_ON(ret);
Russell King - ARM Linux8087aac2011-01-03 22:45:17 +00001704 waiting->phychan_hold--;
Linus Walleije8689e62010-09-28 15:57:37 +02001705 waiting->state = PL08X_CHAN_RUNNING;
1706 waiting->waiting = NULL;
1707 pl08x_issue_pending(&waiting->chan);
1708 break;
1709 }
1710 }
1711 }
1712
Russell King - ARM Linuxbf072af2011-01-03 22:31:24 +00001713 spin_unlock_irqrestore(&plchan->lock, flags);
Russell King - ARM Linux858c21c2011-01-03 22:41:34 +00001714
Russell King - ARM Linux3d992e12011-01-03 22:44:16 +00001715 if (txd) {
1716 dma_async_tx_callback callback = txd->tx.callback;
1717 void *callback_param = txd->tx.callback_param;
1718
1719 /* Don't try to unmap buffers on slave channels */
1720 if (!plchan->slave)
1721 pl08x_unmap_buffers(txd);
1722
1723 /* Free the descriptor */
1724 spin_lock_irqsave(&plchan->lock, flags);
1725 pl08x_free_txd(pl08x, txd);
1726 spin_unlock_irqrestore(&plchan->lock, flags);
1727
1728 /* Callback to signal completion */
1729 if (callback)
1730 callback(callback_param);
1731 }
Linus Walleije8689e62010-09-28 15:57:37 +02001732}
1733
1734static irqreturn_t pl08x_irq(int irq, void *dev)
1735{
1736 struct pl08x_driver_data *pl08x = dev;
Viresh Kumar28da2832011-08-05 15:32:36 +05301737 u32 mask = 0, err, tc, i;
Linus Walleije8689e62010-09-28 15:57:37 +02001738
Viresh Kumar28da2832011-08-05 15:32:36 +05301739 /* check & clear - ERR & TC interrupts */
1740 err = readl(pl08x->base + PL080_ERR_STATUS);
1741 if (err) {
1742 dev_err(&pl08x->adev->dev, "%s error interrupt, register value 0x%08x\n",
1743 __func__, err);
1744 writel(err, pl08x->base + PL080_ERR_CLEAR);
Linus Walleije8689e62010-09-28 15:57:37 +02001745 }
Linus Walleijd29bf012012-04-09 22:53:21 +02001746 tc = readl(pl08x->base + PL080_TC_STATUS);
Viresh Kumar28da2832011-08-05 15:32:36 +05301747 if (tc)
1748 writel(tc, pl08x->base + PL080_TC_CLEAR);
1749
1750 if (!err && !tc)
1751 return IRQ_NONE;
1752
Linus Walleije8689e62010-09-28 15:57:37 +02001753 for (i = 0; i < pl08x->vd->channels; i++) {
Viresh Kumar28da2832011-08-05 15:32:36 +05301754 if (((1 << i) & err) || ((1 << i) & tc)) {
Linus Walleije8689e62010-09-28 15:57:37 +02001755 /* Locate physical channel */
1756 struct pl08x_phy_chan *phychan = &pl08x->phy_chans[i];
1757 struct pl08x_dma_chan *plchan = phychan->serving;
1758
Viresh Kumar28da2832011-08-05 15:32:36 +05301759 if (!plchan) {
1760 dev_err(&pl08x->adev->dev,
1761 "%s Error TC interrupt on unused channel: 0x%08x\n",
1762 __func__, i);
1763 continue;
1764 }
1765
Linus Walleije8689e62010-09-28 15:57:37 +02001766 /* Schedule tasklet on this channel */
1767 tasklet_schedule(&plchan->tasklet);
Linus Walleije8689e62010-09-28 15:57:37 +02001768 mask |= (1 << i);
1769 }
1770 }
Linus Walleije8689e62010-09-28 15:57:37 +02001771
1772 return mask ? IRQ_HANDLED : IRQ_NONE;
1773}
1774
Russell King - ARM Linux121c8472011-07-21 17:13:48 +01001775static void pl08x_dma_slave_init(struct pl08x_dma_chan *chan)
1776{
1777 u32 cctl = pl08x_cctl(chan->cd->cctl);
1778
1779 chan->slave = true;
1780 chan->name = chan->cd->bus_id;
Russell Kinged91c132012-05-16 11:02:40 +01001781 chan->cfg.src_addr = chan->cd->addr;
1782 chan->cfg.dst_addr = chan->cd->addr;
Russell King409ec8d2012-05-16 11:08:43 +01001783 chan->src_cctl = cctl;
1784 chan->dst_cctl = cctl;
Russell King - ARM Linux121c8472011-07-21 17:13:48 +01001785}
1786
Linus Walleije8689e62010-09-28 15:57:37 +02001787/*
1788 * Initialise the DMAC memcpy/slave channels.
1789 * Make a local wrapper to hold required data
1790 */
1791static int pl08x_dma_init_virtual_channels(struct pl08x_driver_data *pl08x,
Viresh Kumar3e27ee82011-08-05 15:32:27 +05301792 struct dma_device *dmadev, unsigned int channels, bool slave)
Linus Walleije8689e62010-09-28 15:57:37 +02001793{
1794 struct pl08x_dma_chan *chan;
1795 int i;
1796
1797 INIT_LIST_HEAD(&dmadev->channels);
Russell King - ARM Linux94ae8522011-01-16 20:18:05 +00001798
Linus Walleije8689e62010-09-28 15:57:37 +02001799 /*
1800 * Register as many many memcpy as we have physical channels,
1801 * we won't always be able to use all but the code will have
1802 * to cope with that situation.
1803 */
1804 for (i = 0; i < channels; i++) {
Viresh Kumarb201c112011-08-05 15:32:29 +05301805 chan = kzalloc(sizeof(*chan), GFP_KERNEL);
Linus Walleije8689e62010-09-28 15:57:37 +02001806 if (!chan) {
1807 dev_err(&pl08x->adev->dev,
1808 "%s no memory for channel\n", __func__);
1809 return -ENOMEM;
1810 }
1811
1812 chan->host = pl08x;
1813 chan->state = PL08X_CHAN_IDLE;
1814
1815 if (slave) {
Linus Walleije8689e62010-09-28 15:57:37 +02001816 chan->cd = &pl08x->pd->slave_channels[i];
Russell King - ARM Linux121c8472011-07-21 17:13:48 +01001817 pl08x_dma_slave_init(chan);
Linus Walleije8689e62010-09-28 15:57:37 +02001818 } else {
1819 chan->cd = &pl08x->pd->memcpy_channel;
1820 chan->name = kasprintf(GFP_KERNEL, "memcpy%d", i);
1821 if (!chan->name) {
1822 kfree(chan);
1823 return -ENOMEM;
1824 }
1825 }
Viresh Kumar175a5e62011-08-05 15:32:32 +05301826 dev_dbg(&pl08x->adev->dev,
Linus Walleije8689e62010-09-28 15:57:37 +02001827 "initialize virtual channel \"%s\"\n",
1828 chan->name);
1829
1830 chan->chan.device = dmadev;
Russell King - ARM Linuxd3ee98cdc2012-03-06 22:35:47 +00001831 dma_cookie_init(&chan->chan);
Linus Walleije8689e62010-09-28 15:57:37 +02001832
1833 spin_lock_init(&chan->lock);
Russell King - ARM Linux15c17232011-01-03 22:44:36 +00001834 INIT_LIST_HEAD(&chan->pend_list);
Linus Walleije8689e62010-09-28 15:57:37 +02001835 tasklet_init(&chan->tasklet, pl08x_tasklet,
1836 (unsigned long) chan);
1837
1838 list_add_tail(&chan->chan.device_node, &dmadev->channels);
1839 }
1840 dev_info(&pl08x->adev->dev, "initialized %d virtual %s channels\n",
1841 i, slave ? "slave" : "memcpy");
1842 return i;
1843}
1844
1845static void pl08x_free_virtual_channels(struct dma_device *dmadev)
1846{
1847 struct pl08x_dma_chan *chan = NULL;
1848 struct pl08x_dma_chan *next;
1849
1850 list_for_each_entry_safe(chan,
1851 next, &dmadev->channels, chan.device_node) {
1852 list_del(&chan->chan.device_node);
1853 kfree(chan);
1854 }
1855}
1856
1857#ifdef CONFIG_DEBUG_FS
1858static const char *pl08x_state_str(enum pl08x_dma_chan_state state)
1859{
1860 switch (state) {
1861 case PL08X_CHAN_IDLE:
1862 return "idle";
1863 case PL08X_CHAN_RUNNING:
1864 return "running";
1865 case PL08X_CHAN_PAUSED:
1866 return "paused";
1867 case PL08X_CHAN_WAITING:
1868 return "waiting";
1869 default:
1870 break;
1871 }
1872 return "UNKNOWN STATE";
1873}
1874
1875static int pl08x_debugfs_show(struct seq_file *s, void *data)
1876{
1877 struct pl08x_driver_data *pl08x = s->private;
1878 struct pl08x_dma_chan *chan;
1879 struct pl08x_phy_chan *ch;
1880 unsigned long flags;
1881 int i;
1882
1883 seq_printf(s, "PL08x physical channels:\n");
1884 seq_printf(s, "CHANNEL:\tUSER:\n");
1885 seq_printf(s, "--------\t-----\n");
1886 for (i = 0; i < pl08x->vd->channels; i++) {
1887 struct pl08x_dma_chan *virt_chan;
1888
1889 ch = &pl08x->phy_chans[i];
1890
1891 spin_lock_irqsave(&ch->lock, flags);
1892 virt_chan = ch->serving;
1893
Linus Walleijaffa1152012-04-12 09:01:49 +02001894 seq_printf(s, "%d\t\t%s%s\n",
1895 ch->id,
1896 virt_chan ? virt_chan->name : "(none)",
1897 ch->locked ? " LOCKED" : "");
Linus Walleije8689e62010-09-28 15:57:37 +02001898
1899 spin_unlock_irqrestore(&ch->lock, flags);
1900 }
1901
1902 seq_printf(s, "\nPL08x virtual memcpy channels:\n");
1903 seq_printf(s, "CHANNEL:\tSTATE:\n");
1904 seq_printf(s, "--------\t------\n");
1905 list_for_each_entry(chan, &pl08x->memcpy.channels, chan.device_node) {
Russell King - ARM Linux3e2a0372011-01-03 22:32:46 +00001906 seq_printf(s, "%s\t\t%s\n", chan->name,
Linus Walleije8689e62010-09-28 15:57:37 +02001907 pl08x_state_str(chan->state));
1908 }
1909
1910 seq_printf(s, "\nPL08x virtual slave channels:\n");
1911 seq_printf(s, "CHANNEL:\tSTATE:\n");
1912 seq_printf(s, "--------\t------\n");
1913 list_for_each_entry(chan, &pl08x->slave.channels, chan.device_node) {
Russell King - ARM Linux3e2a0372011-01-03 22:32:46 +00001914 seq_printf(s, "%s\t\t%s\n", chan->name,
Linus Walleije8689e62010-09-28 15:57:37 +02001915 pl08x_state_str(chan->state));
1916 }
1917
1918 return 0;
1919}
1920
1921static int pl08x_debugfs_open(struct inode *inode, struct file *file)
1922{
1923 return single_open(file, pl08x_debugfs_show, inode->i_private);
1924}
1925
1926static const struct file_operations pl08x_debugfs_operations = {
1927 .open = pl08x_debugfs_open,
1928 .read = seq_read,
1929 .llseek = seq_lseek,
1930 .release = single_release,
1931};
1932
1933static void init_pl08x_debugfs(struct pl08x_driver_data *pl08x)
1934{
1935 /* Expose a simple debugfs interface to view all clocks */
Viresh Kumar3e27ee82011-08-05 15:32:27 +05301936 (void) debugfs_create_file(dev_name(&pl08x->adev->dev),
1937 S_IFREG | S_IRUGO, NULL, pl08x,
1938 &pl08x_debugfs_operations);
Linus Walleije8689e62010-09-28 15:57:37 +02001939}
1940
1941#else
1942static inline void init_pl08x_debugfs(struct pl08x_driver_data *pl08x)
1943{
1944}
1945#endif
1946
Russell Kingaa25afa2011-02-19 15:55:00 +00001947static int pl08x_probe(struct amba_device *adev, const struct amba_id *id)
Linus Walleije8689e62010-09-28 15:57:37 +02001948{
1949 struct pl08x_driver_data *pl08x;
Russell King - ARM Linuxf96ca9ec2011-01-03 22:35:08 +00001950 const struct vendor_data *vd = id->data;
Linus Walleije8689e62010-09-28 15:57:37 +02001951 int ret = 0;
1952 int i;
1953
1954 ret = amba_request_regions(adev, NULL);
1955 if (ret)
1956 return ret;
1957
1958 /* Create the driver state holder */
Viresh Kumarb201c112011-08-05 15:32:29 +05301959 pl08x = kzalloc(sizeof(*pl08x), GFP_KERNEL);
Linus Walleije8689e62010-09-28 15:57:37 +02001960 if (!pl08x) {
1961 ret = -ENOMEM;
1962 goto out_no_pl08x;
1963 }
1964
1965 /* Initialize memcpy engine */
1966 dma_cap_set(DMA_MEMCPY, pl08x->memcpy.cap_mask);
1967 pl08x->memcpy.dev = &adev->dev;
1968 pl08x->memcpy.device_alloc_chan_resources = pl08x_alloc_chan_resources;
1969 pl08x->memcpy.device_free_chan_resources = pl08x_free_chan_resources;
1970 pl08x->memcpy.device_prep_dma_memcpy = pl08x_prep_dma_memcpy;
1971 pl08x->memcpy.device_prep_dma_interrupt = pl08x_prep_dma_interrupt;
1972 pl08x->memcpy.device_tx_status = pl08x_dma_tx_status;
1973 pl08x->memcpy.device_issue_pending = pl08x_issue_pending;
1974 pl08x->memcpy.device_control = pl08x_control;
1975
1976 /* Initialize slave engine */
1977 dma_cap_set(DMA_SLAVE, pl08x->slave.cap_mask);
1978 pl08x->slave.dev = &adev->dev;
1979 pl08x->slave.device_alloc_chan_resources = pl08x_alloc_chan_resources;
1980 pl08x->slave.device_free_chan_resources = pl08x_free_chan_resources;
1981 pl08x->slave.device_prep_dma_interrupt = pl08x_prep_dma_interrupt;
1982 pl08x->slave.device_tx_status = pl08x_dma_tx_status;
1983 pl08x->slave.device_issue_pending = pl08x_issue_pending;
1984 pl08x->slave.device_prep_slave_sg = pl08x_prep_slave_sg;
1985 pl08x->slave.device_control = pl08x_control;
1986
1987 /* Get the platform data */
1988 pl08x->pd = dev_get_platdata(&adev->dev);
1989 if (!pl08x->pd) {
1990 dev_err(&adev->dev, "no platform data supplied\n");
1991 goto out_no_platdata;
1992 }
1993
1994 /* Assign useful pointers to the driver state */
1995 pl08x->adev = adev;
1996 pl08x->vd = vd;
1997
Russell King - ARM Linux30749cb2011-01-03 22:41:13 +00001998 /* By default, AHB1 only. If dualmaster, from platform */
1999 pl08x->lli_buses = PL08X_AHB1;
2000 pl08x->mem_buses = PL08X_AHB1;
2001 if (pl08x->vd->dualmaster) {
2002 pl08x->lli_buses = pl08x->pd->lli_buses;
2003 pl08x->mem_buses = pl08x->pd->mem_buses;
2004 }
2005
Linus Walleije8689e62010-09-28 15:57:37 +02002006 /* A DMA memory pool for LLIs, align on 1-byte boundary */
2007 pl08x->pool = dma_pool_create(DRIVER_NAME, &pl08x->adev->dev,
2008 PL08X_LLI_TSFR_SIZE, PL08X_ALIGN, 0);
2009 if (!pl08x->pool) {
2010 ret = -ENOMEM;
2011 goto out_no_lli_pool;
2012 }
2013
Linus Walleije8689e62010-09-28 15:57:37 +02002014 pl08x->base = ioremap(adev->res.start, resource_size(&adev->res));
2015 if (!pl08x->base) {
2016 ret = -ENOMEM;
2017 goto out_no_ioremap;
2018 }
2019
2020 /* Turn on the PL08x */
2021 pl08x_ensure_on(pl08x);
2022
Russell King - ARM Linux94ae8522011-01-16 20:18:05 +00002023 /* Attach the interrupt handler */
Linus Walleije8689e62010-09-28 15:57:37 +02002024 writel(0x000000FF, pl08x->base + PL080_ERR_CLEAR);
2025 writel(0x000000FF, pl08x->base + PL080_TC_CLEAR);
2026
2027 ret = request_irq(adev->irq[0], pl08x_irq, IRQF_DISABLED,
Russell King - ARM Linuxb05cd8f2011-01-03 22:33:26 +00002028 DRIVER_NAME, pl08x);
Linus Walleije8689e62010-09-28 15:57:37 +02002029 if (ret) {
2030 dev_err(&adev->dev, "%s failed to request interrupt %d\n",
2031 __func__, adev->irq[0]);
2032 goto out_no_irq;
2033 }
2034
2035 /* Initialize physical channels */
Linus Walleijaffa1152012-04-12 09:01:49 +02002036 pl08x->phy_chans = kzalloc((vd->channels * sizeof(*pl08x->phy_chans)),
Linus Walleije8689e62010-09-28 15:57:37 +02002037 GFP_KERNEL);
2038 if (!pl08x->phy_chans) {
2039 dev_err(&adev->dev, "%s failed to allocate "
2040 "physical channel holders\n",
2041 __func__);
2042 goto out_no_phychans;
2043 }
2044
2045 for (i = 0; i < vd->channels; i++) {
2046 struct pl08x_phy_chan *ch = &pl08x->phy_chans[i];
2047
2048 ch->id = i;
2049 ch->base = pl08x->base + PL080_Cx_BASE(i);
2050 spin_lock_init(&ch->lock);
Linus Walleije8689e62010-09-28 15:57:37 +02002051 ch->signal = -1;
Linus Walleijaffa1152012-04-12 09:01:49 +02002052
2053 /*
2054 * Nomadik variants can have channels that are locked
2055 * down for the secure world only. Lock up these channels
2056 * by perpetually serving a dummy virtual channel.
2057 */
2058 if (vd->nomadik) {
2059 u32 val;
2060
2061 val = readl(ch->base + PL080_CH_CONFIG);
2062 if (val & (PL080N_CONFIG_ITPROT | PL080N_CONFIG_SECPROT)) {
2063 dev_info(&adev->dev, "physical channel %d reserved for secure access only\n", i);
2064 ch->locked = true;
2065 }
2066 }
2067
Viresh Kumar175a5e62011-08-05 15:32:32 +05302068 dev_dbg(&adev->dev, "physical channel %d is %s\n",
2069 i, pl08x_phy_channel_busy(ch) ? "BUSY" : "FREE");
Linus Walleije8689e62010-09-28 15:57:37 +02002070 }
2071
2072 /* Register as many memcpy channels as there are physical channels */
2073 ret = pl08x_dma_init_virtual_channels(pl08x, &pl08x->memcpy,
2074 pl08x->vd->channels, false);
2075 if (ret <= 0) {
2076 dev_warn(&pl08x->adev->dev,
2077 "%s failed to enumerate memcpy channels - %d\n",
2078 __func__, ret);
2079 goto out_no_memcpy;
2080 }
2081 pl08x->memcpy.chancnt = ret;
2082
2083 /* Register slave channels */
2084 ret = pl08x_dma_init_virtual_channels(pl08x, &pl08x->slave,
Viresh Kumar3e27ee82011-08-05 15:32:27 +05302085 pl08x->pd->num_slave_channels, true);
Linus Walleije8689e62010-09-28 15:57:37 +02002086 if (ret <= 0) {
2087 dev_warn(&pl08x->adev->dev,
2088 "%s failed to enumerate slave channels - %d\n",
2089 __func__, ret);
2090 goto out_no_slave;
2091 }
2092 pl08x->slave.chancnt = ret;
2093
2094 ret = dma_async_device_register(&pl08x->memcpy);
2095 if (ret) {
2096 dev_warn(&pl08x->adev->dev,
2097 "%s failed to register memcpy as an async device - %d\n",
2098 __func__, ret);
2099 goto out_no_memcpy_reg;
2100 }
2101
2102 ret = dma_async_device_register(&pl08x->slave);
2103 if (ret) {
2104 dev_warn(&pl08x->adev->dev,
2105 "%s failed to register slave as an async device - %d\n",
2106 __func__, ret);
2107 goto out_no_slave_reg;
2108 }
2109
2110 amba_set_drvdata(adev, pl08x);
2111 init_pl08x_debugfs(pl08x);
Russell King - ARM Linuxb05cd8f2011-01-03 22:33:26 +00002112 dev_info(&pl08x->adev->dev, "DMA: PL%03x rev%u at 0x%08llx irq %d\n",
2113 amba_part(adev), amba_rev(adev),
2114 (unsigned long long)adev->res.start, adev->irq[0]);
Viresh Kumarb7b60182011-08-05 15:32:33 +05302115
Linus Walleije8689e62010-09-28 15:57:37 +02002116 return 0;
2117
2118out_no_slave_reg:
2119 dma_async_device_unregister(&pl08x->memcpy);
2120out_no_memcpy_reg:
2121 pl08x_free_virtual_channels(&pl08x->slave);
2122out_no_slave:
2123 pl08x_free_virtual_channels(&pl08x->memcpy);
2124out_no_memcpy:
2125 kfree(pl08x->phy_chans);
2126out_no_phychans:
2127 free_irq(adev->irq[0], pl08x);
2128out_no_irq:
2129 iounmap(pl08x->base);
2130out_no_ioremap:
2131 dma_pool_destroy(pl08x->pool);
2132out_no_lli_pool:
2133out_no_platdata:
2134 kfree(pl08x);
2135out_no_pl08x:
2136 amba_release_regions(adev);
2137 return ret;
2138}
2139
2140/* PL080 has 8 channels and the PL080 have just 2 */
2141static struct vendor_data vendor_pl080 = {
Linus Walleije8689e62010-09-28 15:57:37 +02002142 .channels = 8,
2143 .dualmaster = true,
2144};
2145
Linus Walleijaffa1152012-04-12 09:01:49 +02002146static struct vendor_data vendor_nomadik = {
2147 .channels = 8,
2148 .dualmaster = true,
2149 .nomadik = true,
2150};
2151
Linus Walleije8689e62010-09-28 15:57:37 +02002152static struct vendor_data vendor_pl081 = {
Linus Walleije8689e62010-09-28 15:57:37 +02002153 .channels = 2,
2154 .dualmaster = false,
2155};
2156
2157static struct amba_id pl08x_ids[] = {
2158 /* PL080 */
2159 {
2160 .id = 0x00041080,
2161 .mask = 0x000fffff,
2162 .data = &vendor_pl080,
2163 },
2164 /* PL081 */
2165 {
2166 .id = 0x00041081,
2167 .mask = 0x000fffff,
2168 .data = &vendor_pl081,
2169 },
2170 /* Nomadik 8815 PL080 variant */
2171 {
Linus Walleijaffa1152012-04-12 09:01:49 +02002172 .id = 0x00280080,
Linus Walleije8689e62010-09-28 15:57:37 +02002173 .mask = 0x00ffffff,
Linus Walleijaffa1152012-04-12 09:01:49 +02002174 .data = &vendor_nomadik,
Linus Walleije8689e62010-09-28 15:57:37 +02002175 },
2176 { 0, 0 },
2177};
2178
Dave Martin037566d2011-10-05 15:15:20 +01002179MODULE_DEVICE_TABLE(amba, pl08x_ids);
2180
Linus Walleije8689e62010-09-28 15:57:37 +02002181static struct amba_driver pl08x_amba_driver = {
2182 .drv.name = DRIVER_NAME,
2183 .id_table = pl08x_ids,
2184 .probe = pl08x_probe,
2185};
2186
2187static int __init pl08x_init(void)
2188{
2189 int retval;
2190 retval = amba_driver_register(&pl08x_amba_driver);
2191 if (retval)
2192 printk(KERN_WARNING DRIVER_NAME
Russell King - ARM Linuxe8b5e112011-01-03 22:30:24 +00002193 "failed to register as an AMBA device (%d)\n",
Linus Walleije8689e62010-09-28 15:57:37 +02002194 retval);
2195 return retval;
2196}
2197subsys_initcall(pl08x_init);