blob: c203d2f22bcad8ae7221164935a5ebed96d6a040 [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
Russell Kingb23f2042012-05-16 10:48:44 +0100139 * @serving: the virtual channel currently being served by this physical
140 * channel
Russell Kingad0de2a2012-05-25 11:15:15 +0100141 * @locked: channel unavailable for the system, e.g. dedicated to secure
142 * world
Russell Kingb23f2042012-05-16 10:48:44 +0100143 */
144struct pl08x_phy_chan {
145 unsigned int id;
146 void __iomem *base;
147 spinlock_t lock;
Russell Kingb23f2042012-05-16 10:48:44 +0100148 struct pl08x_dma_chan *serving;
Russell Kingad0de2a2012-05-25 11:15:15 +0100149 bool locked;
Russell Kingb23f2042012-05-16 10:48:44 +0100150};
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
Russell Kingad0de2a2012-05-25 11:15:15 +0100229 * @signal: the physical DMA request signal which this channel is using
Russell Kingb23f2042012-05-16 10:48:44 +0100230 */
231struct pl08x_dma_chan {
232 struct dma_chan chan;
233 struct pl08x_phy_chan *phychan;
234 int phychan_hold;
235 struct tasklet_struct tasklet;
Russell King550ec362012-05-28 10:18:55 +0100236 const char *name;
Russell Kingb23f2042012-05-16 10:48:44 +0100237 const struct pl08x_channel_data *cd;
Russell Kinged91c132012-05-16 11:02:40 +0100238 struct dma_slave_config cfg;
Russell Kingb23f2042012-05-16 10:48:44 +0100239 struct list_head pend_list;
240 struct pl08x_txd *at;
241 spinlock_t lock;
242 struct pl08x_driver_data *host;
243 enum pl08x_dma_chan_state state;
244 bool slave;
Russell Kingb23f2042012-05-16 10:48:44 +0100245 struct pl08x_txd *waiting;
Russell Kingad0de2a2012-05-25 11:15:15 +0100246 int signal;
Russell Kingb23f2042012-05-16 10:48:44 +0100247};
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/*
Russell King6b16c8b2012-05-25 11:10:58 +0100301 * Mux handling.
302 *
303 * This gives us the DMA request input to the PL08x primecell which the
304 * peripheral described by the channel data will be routed to, possibly
305 * via a board/SoC specific external MUX. One important point to note
306 * here is that this does not depend on the physical channel.
307 */
Russell Kingad0de2a2012-05-25 11:15:15 +0100308static int pl08x_request_mux(struct pl08x_dma_chan *plchan)
Russell King6b16c8b2012-05-25 11:10:58 +0100309{
310 const struct pl08x_platform_data *pd = plchan->host->pd;
311 int ret;
312
313 if (pd->get_signal) {
314 ret = pd->get_signal(plchan->cd);
315 if (ret < 0)
316 return ret;
317
Russell Kingad0de2a2012-05-25 11:15:15 +0100318 plchan->signal = ret;
Russell King6b16c8b2012-05-25 11:10:58 +0100319 }
320 return 0;
321}
322
323static void pl08x_release_mux(struct pl08x_dma_chan *plchan)
324{
325 const struct pl08x_platform_data *pd = plchan->host->pd;
326
Russell Kingad0de2a2012-05-25 11:15:15 +0100327 if (plchan->signal >= 0 && pd->put_signal) {
328 pd->put_signal(plchan->cd, plchan->signal);
329 plchan->signal = -1;
Russell King6b16c8b2012-05-25 11:10:58 +0100330 }
331}
332
333/*
Linus Walleije8689e62010-09-28 15:57:37 +0200334 * Physical channel handling
335 */
336
337/* Whether a certain channel is busy or not */
338static int pl08x_phy_channel_busy(struct pl08x_phy_chan *ch)
339{
340 unsigned int val;
341
342 val = readl(ch->base + PL080_CH_CONFIG);
343 return val & PL080_CONFIG_ACTIVE;
344}
345
346/*
347 * Set the initial DMA register values i.e. those for the first LLI
Russell King - ARM Linuxe8b5e112011-01-03 22:30:24 +0000348 * The next LLI pointer and the configuration interrupt bit have
Russell King - ARM Linuxc885bee2011-01-03 22:38:52 +0000349 * been set when the LLIs were constructed. Poke them into the hardware
350 * and start the transfer.
Linus Walleije8689e62010-09-28 15:57:37 +0200351 */
Russell King - ARM Linuxc885bee2011-01-03 22:38:52 +0000352static void pl08x_start_txd(struct pl08x_dma_chan *plchan,
353 struct pl08x_txd *txd)
Linus Walleije8689e62010-09-28 15:57:37 +0200354{
Russell King - ARM Linuxc885bee2011-01-03 22:38:52 +0000355 struct pl08x_driver_data *pl08x = plchan->host;
Linus Walleije8689e62010-09-28 15:57:37 +0200356 struct pl08x_phy_chan *phychan = plchan->phychan;
Russell King - ARM Linux19524d72011-01-03 22:39:13 +0000357 struct pl08x_lli *lli = &txd->llis_va[0];
Russell King - ARM Linux09b3c322011-01-03 22:39:53 +0000358 u32 val;
Russell King - ARM Linuxc885bee2011-01-03 22:38:52 +0000359
360 plchan->at = txd;
Linus Walleije8689e62010-09-28 15:57:37 +0200361
Russell King - ARM Linuxc885bee2011-01-03 22:38:52 +0000362 /* Wait for channel inactive */
363 while (pl08x_phy_channel_busy(phychan))
Russell King - ARM Linux19386b322011-01-03 22:36:29 +0000364 cpu_relax();
Linus Walleije8689e62010-09-28 15:57:37 +0200365
Russell King - ARM Linuxc885bee2011-01-03 22:38:52 +0000366 dev_vdbg(&pl08x->adev->dev,
367 "WRITE channel %d: csrc=0x%08x, cdst=0x%08x, "
Russell King - ARM Linux19524d72011-01-03 22:39:13 +0000368 "clli=0x%08x, cctl=0x%08x, ccfg=0x%08x\n",
369 phychan->id, lli->src, lli->dst, lli->lli, lli->cctl,
Russell King - ARM Linux09b3c322011-01-03 22:39:53 +0000370 txd->ccfg);
Linus Walleije8689e62010-09-28 15:57:37 +0200371
Russell King - ARM Linux19524d72011-01-03 22:39:13 +0000372 writel(lli->src, phychan->base + PL080_CH_SRC_ADDR);
373 writel(lli->dst, phychan->base + PL080_CH_DST_ADDR);
374 writel(lli->lli, phychan->base + PL080_CH_LLI);
375 writel(lli->cctl, phychan->base + PL080_CH_CONTROL);
Russell King - ARM Linux09b3c322011-01-03 22:39:53 +0000376 writel(txd->ccfg, phychan->base + PL080_CH_CONFIG);
Russell King - ARM Linuxc885bee2011-01-03 22:38:52 +0000377
378 /* Enable the DMA channel */
379 /* Do not access config register until channel shows as disabled */
380 while (readl(pl08x->base + PL080_EN_CHAN) & (1 << phychan->id))
381 cpu_relax();
382
383 /* Do not access config register until channel shows as inactive */
384 val = readl(phychan->base + PL080_CH_CONFIG);
385 while ((val & PL080_CONFIG_ACTIVE) || (val & PL080_CONFIG_ENABLE))
386 val = readl(phychan->base + PL080_CH_CONFIG);
387
388 writel(val | PL080_CONFIG_ENABLE, phychan->base + PL080_CH_CONFIG);
Linus Walleije8689e62010-09-28 15:57:37 +0200389}
390
391/*
Russell King - ARM Linux81796612011-01-27 12:37:44 +0000392 * Pause the channel by setting the HALT bit.
Linus Walleije8689e62010-09-28 15:57:37 +0200393 *
Russell King - ARM Linux81796612011-01-27 12:37:44 +0000394 * For M->P transfers, pause the DMAC first and then stop the peripheral -
395 * the FIFO can only drain if the peripheral is still requesting data.
396 * (note: this can still timeout if the DMAC FIFO never drains of data.)
Linus Walleije8689e62010-09-28 15:57:37 +0200397 *
Russell King - ARM Linux81796612011-01-27 12:37:44 +0000398 * For P->M transfers, disable the peripheral first to stop it filling
399 * the DMAC FIFO, and then pause the DMAC.
Linus Walleije8689e62010-09-28 15:57:37 +0200400 */
401static void pl08x_pause_phy_chan(struct pl08x_phy_chan *ch)
402{
403 u32 val;
Russell King - ARM Linux81796612011-01-27 12:37:44 +0000404 int timeout;
Linus Walleije8689e62010-09-28 15:57:37 +0200405
406 /* Set the HALT bit and wait for the FIFO to drain */
407 val = readl(ch->base + PL080_CH_CONFIG);
408 val |= PL080_CONFIG_HALT;
409 writel(val, ch->base + PL080_CH_CONFIG);
410
411 /* Wait for channel inactive */
Russell King - ARM Linux81796612011-01-27 12:37:44 +0000412 for (timeout = 1000; timeout; timeout--) {
413 if (!pl08x_phy_channel_busy(ch))
414 break;
415 udelay(1);
416 }
417 if (pl08x_phy_channel_busy(ch))
418 pr_err("pl08x: channel%u timeout waiting for pause\n", ch->id);
Linus Walleije8689e62010-09-28 15:57:37 +0200419}
420
421static void pl08x_resume_phy_chan(struct pl08x_phy_chan *ch)
422{
423 u32 val;
424
425 /* Clear the HALT bit */
426 val = readl(ch->base + PL080_CH_CONFIG);
427 val &= ~PL080_CONFIG_HALT;
428 writel(val, ch->base + PL080_CH_CONFIG);
429}
430
Russell King - ARM Linuxfb526212011-01-27 12:32:53 +0000431/*
432 * pl08x_terminate_phy_chan() stops the channel, clears the FIFO and
433 * clears any pending interrupt status. This should not be used for
434 * an on-going transfer, but as a method of shutting down a channel
435 * (eg, when it's no longer used) or terminating a transfer.
436 */
437static void pl08x_terminate_phy_chan(struct pl08x_driver_data *pl08x,
438 struct pl08x_phy_chan *ch)
Linus Walleije8689e62010-09-28 15:57:37 +0200439{
Russell King - ARM Linuxfb526212011-01-27 12:32:53 +0000440 u32 val = readl(ch->base + PL080_CH_CONFIG);
Linus Walleije8689e62010-09-28 15:57:37 +0200441
Russell King - ARM Linuxfb526212011-01-27 12:32:53 +0000442 val &= ~(PL080_CONFIG_ENABLE | PL080_CONFIG_ERR_IRQ_MASK |
443 PL080_CONFIG_TC_IRQ_MASK);
Linus Walleije8689e62010-09-28 15:57:37 +0200444
Linus Walleije8689e62010-09-28 15:57:37 +0200445 writel(val, ch->base + PL080_CH_CONFIG);
Russell King - ARM Linuxfb526212011-01-27 12:32:53 +0000446
447 writel(1 << ch->id, pl08x->base + PL080_ERR_CLEAR);
448 writel(1 << ch->id, pl08x->base + PL080_TC_CLEAR);
Linus Walleije8689e62010-09-28 15:57:37 +0200449}
450
451static inline u32 get_bytes_in_cctl(u32 cctl)
452{
453 /* The source width defines the number of bytes */
454 u32 bytes = cctl & PL080_CONTROL_TRANSFER_SIZE_MASK;
455
456 switch (cctl >> PL080_CONTROL_SWIDTH_SHIFT) {
457 case PL080_WIDTH_8BIT:
458 break;
459 case PL080_WIDTH_16BIT:
460 bytes *= 2;
461 break;
462 case PL080_WIDTH_32BIT:
463 bytes *= 4;
464 break;
465 }
466 return bytes;
467}
468
469/* The channel should be paused when calling this */
470static u32 pl08x_getbytes_chan(struct pl08x_dma_chan *plchan)
471{
472 struct pl08x_phy_chan *ch;
Linus Walleije8689e62010-09-28 15:57:37 +0200473 struct pl08x_txd *txd;
474 unsigned long flags;
Russell King - ARM Linuxcace6582011-01-03 22:37:31 +0000475 size_t bytes = 0;
Linus Walleije8689e62010-09-28 15:57:37 +0200476
477 spin_lock_irqsave(&plchan->lock, flags);
Linus Walleije8689e62010-09-28 15:57:37 +0200478 ch = plchan->phychan;
479 txd = plchan->at;
480
481 /*
Russell King - ARM Linuxdb9f1362011-01-03 22:38:32 +0000482 * Follow the LLIs to get the number of remaining
483 * bytes in the currently active transaction.
Linus Walleije8689e62010-09-28 15:57:37 +0200484 */
485 if (ch && txd) {
Russell King - ARM Linux4c0df6a2011-01-03 22:36:50 +0000486 u32 clli = readl(ch->base + PL080_CH_LLI) & ~PL080_LLI_LM_AHB2;
Linus Walleije8689e62010-09-28 15:57:37 +0200487
Russell King - ARM Linuxdb9f1362011-01-03 22:38:32 +0000488 /* First get the remaining bytes in the active transfer */
Linus Walleije8689e62010-09-28 15:57:37 +0200489 bytes = get_bytes_in_cctl(readl(ch->base + PL080_CH_CONTROL));
490
491 if (clli) {
Russell King - ARM Linuxdb9f1362011-01-03 22:38:32 +0000492 struct pl08x_lli *llis_va = txd->llis_va;
493 dma_addr_t llis_bus = txd->llis_bus;
494 int index;
Linus Walleije8689e62010-09-28 15:57:37 +0200495
Russell King - ARM Linuxdb9f1362011-01-03 22:38:32 +0000496 BUG_ON(clli < llis_bus || clli >= llis_bus +
497 sizeof(struct pl08x_lli) * MAX_NUM_TSFR_LLIS);
Linus Walleije8689e62010-09-28 15:57:37 +0200498
Russell King - ARM Linuxdb9f1362011-01-03 22:38:32 +0000499 /*
500 * Locate the next LLI - as this is an array,
501 * it's simple maths to find.
502 */
503 index = (clli - llis_bus) / sizeof(struct pl08x_lli);
504
505 for (; index < MAX_NUM_TSFR_LLIS; index++) {
506 bytes += get_bytes_in_cctl(llis_va[index].cctl);
507
Linus Walleije8689e62010-09-28 15:57:37 +0200508 /*
Russell King - ARM Linuxe8b5e112011-01-03 22:30:24 +0000509 * A LLI pointer of 0 terminates the LLI list
Linus Walleije8689e62010-09-28 15:57:37 +0200510 */
Russell King - ARM Linuxdb9f1362011-01-03 22:38:32 +0000511 if (!llis_va[index].lli)
512 break;
Linus Walleije8689e62010-09-28 15:57:37 +0200513 }
514 }
515 }
516
517 /* Sum up all queued transactions */
Russell King - ARM Linux15c17232011-01-03 22:44:36 +0000518 if (!list_empty(&plchan->pend_list)) {
Russell King - ARM Linuxdb9f1362011-01-03 22:38:32 +0000519 struct pl08x_txd *txdi;
Russell King - ARM Linux15c17232011-01-03 22:44:36 +0000520 list_for_each_entry(txdi, &plchan->pend_list, node) {
Viresh Kumarb7f69d92011-08-05 15:32:43 +0530521 struct pl08x_sg *dsg;
522 list_for_each_entry(dsg, &txd->dsg_list, node)
523 bytes += dsg->len;
Linus Walleije8689e62010-09-28 15:57:37 +0200524 }
Linus Walleije8689e62010-09-28 15:57:37 +0200525 }
526
527 spin_unlock_irqrestore(&plchan->lock, flags);
528
529 return bytes;
530}
531
532/*
533 * Allocate a physical channel for a virtual channel
Russell King - ARM Linux94ae8522011-01-16 20:18:05 +0000534 *
535 * Try to locate a physical channel to be used for this transfer. If all
536 * are taken return NULL and the requester will have to cope by using
537 * some fallback PIO mode or retrying later.
Linus Walleije8689e62010-09-28 15:57:37 +0200538 */
539static struct pl08x_phy_chan *
540pl08x_get_phy_channel(struct pl08x_driver_data *pl08x,
541 struct pl08x_dma_chan *virt_chan)
542{
543 struct pl08x_phy_chan *ch = NULL;
544 unsigned long flags;
545 int i;
546
Linus Walleije8689e62010-09-28 15:57:37 +0200547 for (i = 0; i < pl08x->vd->channels; i++) {
548 ch = &pl08x->phy_chans[i];
549
550 spin_lock_irqsave(&ch->lock, flags);
551
Linus Walleijaffa1152012-04-12 09:01:49 +0200552 if (!ch->locked && !ch->serving) {
Linus Walleije8689e62010-09-28 15:57:37 +0200553 ch->serving = virt_chan;
Linus Walleije8689e62010-09-28 15:57:37 +0200554 spin_unlock_irqrestore(&ch->lock, flags);
555 break;
556 }
557
558 spin_unlock_irqrestore(&ch->lock, flags);
559 }
560
561 if (i == pl08x->vd->channels) {
562 /* No physical channel available, cope with it */
563 return NULL;
564 }
565
566 return ch;
567}
568
569static inline void pl08x_put_phy_channel(struct pl08x_driver_data *pl08x,
570 struct pl08x_phy_chan *ch)
571{
572 unsigned long flags;
573
Russell King - ARM Linuxfb526212011-01-27 12:32:53 +0000574 spin_lock_irqsave(&ch->lock, flags);
575
Linus Walleije8689e62010-09-28 15:57:37 +0200576 /* Stop the channel and clear its interrupts */
Russell King - ARM Linuxfb526212011-01-27 12:32:53 +0000577 pl08x_terminate_phy_chan(pl08x, ch);
Linus Walleije8689e62010-09-28 15:57:37 +0200578
579 /* Mark it as free */
Linus Walleije8689e62010-09-28 15:57:37 +0200580 ch->serving = NULL;
581 spin_unlock_irqrestore(&ch->lock, flags);
582}
583
584/*
585 * LLI handling
586 */
587
588static inline unsigned int pl08x_get_bytes_for_cctl(unsigned int coded)
589{
590 switch (coded) {
591 case PL080_WIDTH_8BIT:
592 return 1;
593 case PL080_WIDTH_16BIT:
594 return 2;
595 case PL080_WIDTH_32BIT:
596 return 4;
597 default:
598 break;
599 }
600 BUG();
601 return 0;
602}
603
604static inline u32 pl08x_cctl_bits(u32 cctl, u8 srcwidth, u8 dstwidth,
Russell King - ARM Linuxcace6582011-01-03 22:37:31 +0000605 size_t tsize)
Linus Walleije8689e62010-09-28 15:57:37 +0200606{
607 u32 retbits = cctl;
608
Russell King - ARM Linuxe8b5e112011-01-03 22:30:24 +0000609 /* Remove all src, dst and transfer size bits */
Linus Walleije8689e62010-09-28 15:57:37 +0200610 retbits &= ~PL080_CONTROL_DWIDTH_MASK;
611 retbits &= ~PL080_CONTROL_SWIDTH_MASK;
612 retbits &= ~PL080_CONTROL_TRANSFER_SIZE_MASK;
613
614 /* Then set the bits according to the parameters */
615 switch (srcwidth) {
616 case 1:
617 retbits |= PL080_WIDTH_8BIT << PL080_CONTROL_SWIDTH_SHIFT;
618 break;
619 case 2:
620 retbits |= PL080_WIDTH_16BIT << PL080_CONTROL_SWIDTH_SHIFT;
621 break;
622 case 4:
623 retbits |= PL080_WIDTH_32BIT << PL080_CONTROL_SWIDTH_SHIFT;
624 break;
625 default:
626 BUG();
627 break;
628 }
629
630 switch (dstwidth) {
631 case 1:
632 retbits |= PL080_WIDTH_8BIT << PL080_CONTROL_DWIDTH_SHIFT;
633 break;
634 case 2:
635 retbits |= PL080_WIDTH_16BIT << PL080_CONTROL_DWIDTH_SHIFT;
636 break;
637 case 4:
638 retbits |= PL080_WIDTH_32BIT << PL080_CONTROL_DWIDTH_SHIFT;
639 break;
640 default:
641 BUG();
642 break;
643 }
644
645 retbits |= tsize << PL080_CONTROL_TRANSFER_SIZE_SHIFT;
646 return retbits;
647}
648
Russell King - ARM Linux542361f2011-01-03 22:43:15 +0000649struct pl08x_lli_build_data {
650 struct pl08x_txd *txd;
Russell King - ARM Linux542361f2011-01-03 22:43:15 +0000651 struct pl08x_bus_data srcbus;
652 struct pl08x_bus_data dstbus;
653 size_t remainder;
Russell King - ARM Linux25c94f72011-07-21 17:11:46 +0100654 u32 lli_bus;
Russell King - ARM Linux542361f2011-01-03 22:43:15 +0000655};
656
Linus Walleije8689e62010-09-28 15:57:37 +0200657/*
Viresh Kumar0532e6f2011-08-05 15:32:31 +0530658 * Autoselect a master bus to use for the transfer. Slave will be the chosen as
659 * victim in case src & dest are not similarly aligned. i.e. If after aligning
660 * masters address with width requirements of transfer (by sending few byte by
661 * byte data), slave is still not aligned, then its width will be reduced to
662 * BYTE.
663 * - prefers the destination bus if both available
Viresh Kumar036f05f2011-08-05 15:32:41 +0530664 * - prefers bus with fixed address (i.e. peripheral)
Linus Walleije8689e62010-09-28 15:57:37 +0200665 */
Russell King - ARM Linux542361f2011-01-03 22:43:15 +0000666static void pl08x_choose_master_bus(struct pl08x_lli_build_data *bd,
667 struct pl08x_bus_data **mbus, struct pl08x_bus_data **sbus, u32 cctl)
Linus Walleije8689e62010-09-28 15:57:37 +0200668{
669 if (!(cctl & PL080_CONTROL_DST_INCR)) {
Russell King - ARM Linux542361f2011-01-03 22:43:15 +0000670 *mbus = &bd->dstbus;
671 *sbus = &bd->srcbus;
Viresh Kumar036f05f2011-08-05 15:32:41 +0530672 } else if (!(cctl & PL080_CONTROL_SRC_INCR)) {
673 *mbus = &bd->srcbus;
674 *sbus = &bd->dstbus;
Linus Walleije8689e62010-09-28 15:57:37 +0200675 } else {
Viresh Kumar036f05f2011-08-05 15:32:41 +0530676 if (bd->dstbus.buswidth >= bd->srcbus.buswidth) {
Russell King - ARM Linux542361f2011-01-03 22:43:15 +0000677 *mbus = &bd->dstbus;
678 *sbus = &bd->srcbus;
Linus Walleije8689e62010-09-28 15:57:37 +0200679 } else {
Viresh Kumar036f05f2011-08-05 15:32:41 +0530680 *mbus = &bd->srcbus;
681 *sbus = &bd->dstbus;
Linus Walleije8689e62010-09-28 15:57:37 +0200682 }
683 }
684}
685
686/*
Russell King - ARM Linux94ae8522011-01-16 20:18:05 +0000687 * Fills in one LLI for a certain transfer descriptor and advance the counter
Linus Walleije8689e62010-09-28 15:57:37 +0200688 */
Russell King - ARM Linux542361f2011-01-03 22:43:15 +0000689static void pl08x_fill_lli_for_desc(struct pl08x_lli_build_data *bd,
690 int num_llis, int len, u32 cctl)
Linus Walleije8689e62010-09-28 15:57:37 +0200691{
Russell King - ARM Linux542361f2011-01-03 22:43:15 +0000692 struct pl08x_lli *llis_va = bd->txd->llis_va;
693 dma_addr_t llis_bus = bd->txd->llis_bus;
Linus Walleije8689e62010-09-28 15:57:37 +0200694
695 BUG_ON(num_llis >= MAX_NUM_TSFR_LLIS);
696
Russell King - ARM Linux30749cb2011-01-03 22:41:13 +0000697 llis_va[num_llis].cctl = cctl;
Russell King - ARM Linux542361f2011-01-03 22:43:15 +0000698 llis_va[num_llis].src = bd->srcbus.addr;
699 llis_va[num_llis].dst = bd->dstbus.addr;
Viresh Kumar3e27ee82011-08-05 15:32:27 +0530700 llis_va[num_llis].lli = llis_bus + (num_llis + 1) *
701 sizeof(struct pl08x_lli);
Russell King - ARM Linux25c94f72011-07-21 17:11:46 +0100702 llis_va[num_llis].lli |= bd->lli_bus;
Linus Walleije8689e62010-09-28 15:57:37 +0200703
704 if (cctl & PL080_CONTROL_SRC_INCR)
Russell King - ARM Linux542361f2011-01-03 22:43:15 +0000705 bd->srcbus.addr += len;
Linus Walleije8689e62010-09-28 15:57:37 +0200706 if (cctl & PL080_CONTROL_DST_INCR)
Russell King - ARM Linux542361f2011-01-03 22:43:15 +0000707 bd->dstbus.addr += len;
Linus Walleije8689e62010-09-28 15:57:37 +0200708
Russell King - ARM Linux542361f2011-01-03 22:43:15 +0000709 BUG_ON(bd->remainder < len);
Russell King - ARM Linuxcace6582011-01-03 22:37:31 +0000710
Russell King - ARM Linux542361f2011-01-03 22:43:15 +0000711 bd->remainder -= len;
Linus Walleije8689e62010-09-28 15:57:37 +0200712}
713
Viresh Kumar03af5002011-08-05 15:32:39 +0530714static inline void prep_byte_width_lli(struct pl08x_lli_build_data *bd,
715 u32 *cctl, u32 len, int num_llis, size_t *total_bytes)
Linus Walleije8689e62010-09-28 15:57:37 +0200716{
Viresh Kumar03af5002011-08-05 15:32:39 +0530717 *cctl = pl08x_cctl_bits(*cctl, 1, 1, len);
718 pl08x_fill_lli_for_desc(bd, num_llis, len, *cctl);
719 (*total_bytes) += len;
Linus Walleije8689e62010-09-28 15:57:37 +0200720}
721
722/*
723 * This fills in the table of LLIs for the transfer descriptor
724 * Note that we assume we never have to change the burst sizes
725 * Return 0 for error
726 */
727static int pl08x_fill_llis_for_desc(struct pl08x_driver_data *pl08x,
728 struct pl08x_txd *txd)
729{
Linus Walleije8689e62010-09-28 15:57:37 +0200730 struct pl08x_bus_data *mbus, *sbus;
Russell King - ARM Linux542361f2011-01-03 22:43:15 +0000731 struct pl08x_lli_build_data bd;
Linus Walleije8689e62010-09-28 15:57:37 +0200732 int num_llis = 0;
Viresh Kumar03af5002011-08-05 15:32:39 +0530733 u32 cctl, early_bytes = 0;
Viresh Kumarb7f69d92011-08-05 15:32:43 +0530734 size_t max_bytes_per_lli, total_bytes;
Russell King - ARM Linux7cb72ad2011-01-03 22:35:28 +0000735 struct pl08x_lli *llis_va;
Viresh Kumarb7f69d92011-08-05 15:32:43 +0530736 struct pl08x_sg *dsg;
Linus Walleije8689e62010-09-28 15:57:37 +0200737
Viresh Kumar3e27ee82011-08-05 15:32:27 +0530738 txd->llis_va = dma_pool_alloc(pl08x->pool, GFP_NOWAIT, &txd->llis_bus);
Linus Walleije8689e62010-09-28 15:57:37 +0200739 if (!txd->llis_va) {
740 dev_err(&pl08x->adev->dev, "%s no memory for llis\n", __func__);
741 return 0;
742 }
743
744 pl08x->pool_ctr++;
745
Russell King - ARM Linux542361f2011-01-03 22:43:15 +0000746 bd.txd = txd;
Russell King - ARM Linux25c94f72011-07-21 17:11:46 +0100747 bd.lli_bus = (pl08x->lli_buses & PL08X_AHB2) ? PL080_LLI_LM_AHB2 : 0;
Viresh Kumarb7f69d92011-08-05 15:32:43 +0530748 cctl = txd->cctl;
Russell King - ARM Linux542361f2011-01-03 22:43:15 +0000749
Linus Walleije8689e62010-09-28 15:57:37 +0200750 /* Find maximum width of the source bus */
Russell King - ARM Linux542361f2011-01-03 22:43:15 +0000751 bd.srcbus.maxwidth =
Linus Walleije8689e62010-09-28 15:57:37 +0200752 pl08x_get_bytes_for_cctl((cctl & PL080_CONTROL_SWIDTH_MASK) >>
753 PL080_CONTROL_SWIDTH_SHIFT);
754
755 /* Find maximum width of the destination bus */
Russell King - ARM Linux542361f2011-01-03 22:43:15 +0000756 bd.dstbus.maxwidth =
Linus Walleije8689e62010-09-28 15:57:37 +0200757 pl08x_get_bytes_for_cctl((cctl & PL080_CONTROL_DWIDTH_MASK) >>
758 PL080_CONTROL_DWIDTH_SHIFT);
759
Viresh Kumarb7f69d92011-08-05 15:32:43 +0530760 list_for_each_entry(dsg, &txd->dsg_list, node) {
761 total_bytes = 0;
762 cctl = txd->cctl;
Linus Walleije8689e62010-09-28 15:57:37 +0200763
Viresh Kumarb7f69d92011-08-05 15:32:43 +0530764 bd.srcbus.addr = dsg->src_addr;
765 bd.dstbus.addr = dsg->dst_addr;
766 bd.remainder = dsg->len;
767 bd.srcbus.buswidth = bd.srcbus.maxwidth;
768 bd.dstbus.buswidth = bd.dstbus.maxwidth;
Linus Walleije8689e62010-09-28 15:57:37 +0200769
Viresh Kumarb7f69d92011-08-05 15:32:43 +0530770 pl08x_choose_master_bus(&bd, &mbus, &sbus, cctl);
Linus Walleije8689e62010-09-28 15:57:37 +0200771
Viresh Kumarb7f69d92011-08-05 15:32:43 +0530772 dev_vdbg(&pl08x->adev->dev, "src=0x%08x%s/%u dst=0x%08x%s/%u len=%zu\n",
773 bd.srcbus.addr, cctl & PL080_CONTROL_SRC_INCR ? "+" : "",
774 bd.srcbus.buswidth,
775 bd.dstbus.addr, cctl & PL080_CONTROL_DST_INCR ? "+" : "",
776 bd.dstbus.buswidth,
777 bd.remainder);
778 dev_vdbg(&pl08x->adev->dev, "mbus=%s sbus=%s\n",
779 mbus == &bd.srcbus ? "src" : "dst",
780 sbus == &bd.srcbus ? "src" : "dst");
Russell King - ARM Linuxfc74eb72011-07-21 17:12:06 +0100781
Viresh Kumarb7f69d92011-08-05 15:32:43 +0530782 /*
783 * Zero length is only allowed if all these requirements are
784 * met:
785 * - flow controller is peripheral.
786 * - src.addr is aligned to src.width
787 * - dst.addr is aligned to dst.width
788 *
789 * sg_len == 1 should be true, as there can be two cases here:
790 *
791 * - Memory addresses are contiguous and are not scattered.
792 * Here, Only one sg will be passed by user driver, with
793 * memory address and zero length. We pass this to controller
794 * and after the transfer it will receive the last burst
795 * request from peripheral and so transfer finishes.
796 *
797 * - Memory addresses are scattered and are not contiguous.
798 * Here, Obviously as DMA controller doesn't know when a lli's
799 * transfer gets over, it can't load next lli. So in this
800 * case, there has to be an assumption that only one lli is
801 * supported. Thus, we can't have scattered addresses.
802 */
803 if (!bd.remainder) {
804 u32 fc = (txd->ccfg & PL080_CONFIG_FLOW_CONTROL_MASK) >>
805 PL080_CONFIG_FLOW_CONTROL_SHIFT;
806 if (!((fc >= PL080_FLOW_SRC2DST_DST) &&
Viresh Kumar0a235652011-08-05 15:32:42 +0530807 (fc <= PL080_FLOW_SRC2DST_SRC))) {
Viresh Kumarb7f69d92011-08-05 15:32:43 +0530808 dev_err(&pl08x->adev->dev, "%s sg len can't be zero",
809 __func__);
810 return 0;
811 }
Linus Walleije8689e62010-09-28 15:57:37 +0200812
Viresh Kumarb7f69d92011-08-05 15:32:43 +0530813 if ((bd.srcbus.addr % bd.srcbus.buswidth) ||
Julia Lawall880db3f2012-01-12 22:49:29 +0100814 (bd.dstbus.addr % bd.dstbus.buswidth)) {
Viresh Kumarb7f69d92011-08-05 15:32:43 +0530815 dev_err(&pl08x->adev->dev,
816 "%s src & dst address must be aligned to src"
817 " & dst width if peripheral is flow controller",
818 __func__);
819 return 0;
820 }
Linus Walleije8689e62010-09-28 15:57:37 +0200821
Viresh Kumar16a2e7d2011-08-05 15:32:37 +0530822 cctl = pl08x_cctl_bits(cctl, bd.srcbus.buswidth,
Viresh Kumarb7f69d92011-08-05 15:32:43 +0530823 bd.dstbus.buswidth, 0);
824 pl08x_fill_lli_for_desc(&bd, num_llis++, 0, cctl);
825 break;
Linus Walleije8689e62010-09-28 15:57:37 +0200826 }
827
828 /*
Viresh Kumarb7f69d92011-08-05 15:32:43 +0530829 * Send byte by byte for following cases
830 * - Less than a bus width available
831 * - until master bus is aligned
Linus Walleije8689e62010-09-28 15:57:37 +0200832 */
Viresh Kumarb7f69d92011-08-05 15:32:43 +0530833 if (bd.remainder < mbus->buswidth)
834 early_bytes = bd.remainder;
835 else if ((mbus->addr) % (mbus->buswidth)) {
836 early_bytes = mbus->buswidth - (mbus->addr) %
837 (mbus->buswidth);
838 if ((bd.remainder - early_bytes) < mbus->buswidth)
839 early_bytes = bd.remainder;
Linus Walleije8689e62010-09-28 15:57:37 +0200840 }
Viresh Kumar16a2e7d2011-08-05 15:32:37 +0530841
Viresh Kumarb7f69d92011-08-05 15:32:43 +0530842 if (early_bytes) {
843 dev_vdbg(&pl08x->adev->dev,
844 "%s byte width LLIs (remain 0x%08x)\n",
845 __func__, bd.remainder);
846 prep_byte_width_lli(&bd, &cctl, early_bytes, num_llis++,
847 &total_bytes);
848 }
Linus Walleije8689e62010-09-28 15:57:37 +0200849
Viresh Kumarb7f69d92011-08-05 15:32:43 +0530850 if (bd.remainder) {
851 /*
852 * Master now aligned
853 * - if slave is not then we must set its width down
854 */
855 if (sbus->addr % sbus->buswidth) {
856 dev_dbg(&pl08x->adev->dev,
857 "%s set down bus width to one byte\n",
858 __func__);
859
860 sbus->buswidth = 1;
861 }
862
863 /*
864 * Bytes transferred = tsize * src width, not
865 * MIN(buswidths)
866 */
867 max_bytes_per_lli = bd.srcbus.buswidth *
868 PL080_CONTROL_TRANSFER_SIZE_MASK;
869 dev_vdbg(&pl08x->adev->dev,
870 "%s max bytes per lli = %zu\n",
871 __func__, max_bytes_per_lli);
872
873 /*
874 * Make largest possible LLIs until less than one bus
875 * width left
876 */
877 while (bd.remainder > (mbus->buswidth - 1)) {
878 size_t lli_len, tsize, width;
879
880 /*
881 * If enough left try to send max possible,
882 * otherwise try to send the remainder
883 */
884 lli_len = min(bd.remainder, max_bytes_per_lli);
885
886 /*
887 * Check against maximum bus alignment:
888 * Calculate actual transfer size in relation to
889 * bus width an get a maximum remainder of the
890 * highest bus width - 1
891 */
892 width = max(mbus->buswidth, sbus->buswidth);
893 lli_len = (lli_len / width) * width;
894 tsize = lli_len / bd.srcbus.buswidth;
895
896 dev_vdbg(&pl08x->adev->dev,
897 "%s fill lli with single lli chunk of "
898 "size 0x%08zx (remainder 0x%08zx)\n",
899 __func__, lli_len, bd.remainder);
900
901 cctl = pl08x_cctl_bits(cctl, bd.srcbus.buswidth,
902 bd.dstbus.buswidth, tsize);
903 pl08x_fill_lli_for_desc(&bd, num_llis++,
904 lli_len, cctl);
905 total_bytes += lli_len;
906 }
907
908 /*
909 * Send any odd bytes
910 */
911 if (bd.remainder) {
912 dev_vdbg(&pl08x->adev->dev,
913 "%s align with boundary, send odd bytes (remain %zu)\n",
914 __func__, bd.remainder);
915 prep_byte_width_lli(&bd, &cctl, bd.remainder,
916 num_llis++, &total_bytes);
917 }
918 }
919
920 if (total_bytes != dsg->len) {
921 dev_err(&pl08x->adev->dev,
922 "%s size of encoded lli:s don't match total txd, transferred 0x%08zx from size 0x%08zx\n",
923 __func__, total_bytes, dsg->len);
924 return 0;
925 }
926
927 if (num_llis >= MAX_NUM_TSFR_LLIS) {
928 dev_err(&pl08x->adev->dev,
929 "%s need to increase MAX_NUM_TSFR_LLIS from 0x%08x\n",
930 __func__, (u32) MAX_NUM_TSFR_LLIS);
931 return 0;
932 }
Linus Walleije8689e62010-09-28 15:57:37 +0200933 }
Linus Walleije8689e62010-09-28 15:57:37 +0200934
Russell King - ARM Linuxb58b6b52011-01-03 22:34:48 +0000935 llis_va = txd->llis_va;
Russell King - ARM Linux94ae8522011-01-16 20:18:05 +0000936 /* The final LLI terminates the LLI. */
Russell King - ARM Linuxbfddfb42011-01-03 22:38:12 +0000937 llis_va[num_llis - 1].lli = 0;
Russell King - ARM Linux94ae8522011-01-16 20:18:05 +0000938 /* The final LLI element shall also fire an interrupt. */
Russell King - ARM Linuxb58b6b52011-01-03 22:34:48 +0000939 llis_va[num_llis - 1].cctl |= PL080_CONTROL_TC_IRQ_EN;
Linus Walleije8689e62010-09-28 15:57:37 +0200940
Linus Walleije8689e62010-09-28 15:57:37 +0200941#ifdef VERBOSE_DEBUG
942 {
943 int i;
944
Russell King - ARM Linuxfc74eb72011-07-21 17:12:06 +0100945 dev_vdbg(&pl08x->adev->dev,
946 "%-3s %-9s %-10s %-10s %-10s %s\n",
947 "lli", "", "csrc", "cdst", "clli", "cctl");
Linus Walleije8689e62010-09-28 15:57:37 +0200948 for (i = 0; i < num_llis; i++) {
949 dev_vdbg(&pl08x->adev->dev,
Russell King - ARM Linuxfc74eb72011-07-21 17:12:06 +0100950 "%3d @%p: 0x%08x 0x%08x 0x%08x 0x%08x\n",
951 i, &llis_va[i], llis_va[i].src,
952 llis_va[i].dst, llis_va[i].lli, llis_va[i].cctl
Linus Walleije8689e62010-09-28 15:57:37 +0200953 );
954 }
955 }
956#endif
957
958 return num_llis;
959}
960
961/* You should call this with the struct pl08x lock held */
962static void pl08x_free_txd(struct pl08x_driver_data *pl08x,
963 struct pl08x_txd *txd)
964{
Viresh Kumarb7f69d92011-08-05 15:32:43 +0530965 struct pl08x_sg *dsg, *_dsg;
966
Linus Walleije8689e62010-09-28 15:57:37 +0200967 /* Free the LLI */
Viresh Kumarc1205642011-08-05 15:32:44 +0530968 if (txd->llis_va)
969 dma_pool_free(pl08x->pool, txd->llis_va, txd->llis_bus);
Linus Walleije8689e62010-09-28 15:57:37 +0200970
971 pl08x->pool_ctr--;
972
Viresh Kumarb7f69d92011-08-05 15:32:43 +0530973 list_for_each_entry_safe(dsg, _dsg, &txd->dsg_list, node) {
974 list_del(&dsg->node);
975 kfree(dsg);
976 }
977
Linus Walleije8689e62010-09-28 15:57:37 +0200978 kfree(txd);
979}
980
981static void pl08x_free_txd_list(struct pl08x_driver_data *pl08x,
982 struct pl08x_dma_chan *plchan)
983{
984 struct pl08x_txd *txdi = NULL;
985 struct pl08x_txd *next;
986
Russell King - ARM Linux15c17232011-01-03 22:44:36 +0000987 if (!list_empty(&plchan->pend_list)) {
Linus Walleije8689e62010-09-28 15:57:37 +0200988 list_for_each_entry_safe(txdi,
Russell King - ARM Linux15c17232011-01-03 22:44:36 +0000989 next, &plchan->pend_list, node) {
Linus Walleije8689e62010-09-28 15:57:37 +0200990 list_del(&txdi->node);
991 pl08x_free_txd(pl08x, txdi);
992 }
Linus Walleije8689e62010-09-28 15:57:37 +0200993 }
994}
995
996/*
997 * The DMA ENGINE API
998 */
999static int pl08x_alloc_chan_resources(struct dma_chan *chan)
1000{
1001 return 0;
1002}
1003
1004static void pl08x_free_chan_resources(struct dma_chan *chan)
1005{
1006}
1007
1008/*
1009 * This should be called with the channel plchan->lock held
1010 */
1011static int prep_phy_channel(struct pl08x_dma_chan *plchan,
1012 struct pl08x_txd *txd)
1013{
1014 struct pl08x_driver_data *pl08x = plchan->host;
1015 struct pl08x_phy_chan *ch;
1016 int ret;
1017
1018 /* Check if we already have a channel */
Viresh Kumar8f0d30f2011-11-29 12:56:50 +05301019 if (plchan->phychan) {
1020 ch = plchan->phychan;
1021 goto got_channel;
1022 }
Linus Walleije8689e62010-09-28 15:57:37 +02001023
1024 ch = pl08x_get_phy_channel(pl08x, plchan);
1025 if (!ch) {
1026 /* No physical channel available, cope with it */
1027 dev_dbg(&pl08x->adev->dev, "no physical channel available for xfer on %s\n", plchan->name);
1028 return -EBUSY;
1029 }
1030
1031 /*
1032 * OK we have a physical channel: for memcpy() this is all we
1033 * need, but for slaves the physical signals may be muxed!
1034 * Can the platform allow us to use this channel?
1035 */
Russell King6b16c8b2012-05-25 11:10:58 +01001036 if (plchan->slave) {
Russell Kingad0de2a2012-05-25 11:15:15 +01001037 ret = pl08x_request_mux(plchan);
Linus Walleije8689e62010-09-28 15:57:37 +02001038 if (ret < 0) {
1039 dev_dbg(&pl08x->adev->dev,
1040 "unable to use physical channel %d for transfer on %s due to platform restrictions\n",
1041 ch->id, plchan->name);
1042 /* Release physical channel & return */
1043 pl08x_put_phy_channel(pl08x, ch);
1044 return -EBUSY;
1045 }
Linus Walleije8689e62010-09-28 15:57:37 +02001046 }
1047
Viresh Kumar8f0d30f2011-11-29 12:56:50 +05301048 plchan->phychan = ch;
Linus Walleije8689e62010-09-28 15:57:37 +02001049 dev_dbg(&pl08x->adev->dev, "allocated physical channel %d and signal %d for xfer on %s\n",
1050 ch->id,
Russell Kingad0de2a2012-05-25 11:15:15 +01001051 plchan->signal,
Linus Walleije8689e62010-09-28 15:57:37 +02001052 plchan->name);
1053
Viresh Kumar8f0d30f2011-11-29 12:56:50 +05301054got_channel:
1055 /* Assign the flow control signal to this channel */
1056 if (txd->direction == DMA_MEM_TO_DEV)
Russell Kingad0de2a2012-05-25 11:15:15 +01001057 txd->ccfg |= plchan->signal << PL080_CONFIG_DST_SEL_SHIFT;
Viresh Kumar8f0d30f2011-11-29 12:56:50 +05301058 else if (txd->direction == DMA_DEV_TO_MEM)
Russell Kingad0de2a2012-05-25 11:15:15 +01001059 txd->ccfg |= plchan->signal << PL080_CONFIG_SRC_SEL_SHIFT;
Viresh Kumar8f0d30f2011-11-29 12:56:50 +05301060
Russell King - ARM Linux8087aac2011-01-03 22:45:17 +00001061 plchan->phychan_hold++;
Linus Walleije8689e62010-09-28 15:57:37 +02001062
1063 return 0;
1064}
1065
Russell King - ARM Linux8c8cc2b2011-01-03 22:36:09 +00001066static void release_phy_channel(struct pl08x_dma_chan *plchan)
1067{
1068 struct pl08x_driver_data *pl08x = plchan->host;
1069
Russell King6b16c8b2012-05-25 11:10:58 +01001070 pl08x_release_mux(plchan);
Russell King - ARM Linux8c8cc2b2011-01-03 22:36:09 +00001071 pl08x_put_phy_channel(pl08x, plchan->phychan);
1072 plchan->phychan = NULL;
1073}
1074
Linus Walleije8689e62010-09-28 15:57:37 +02001075static dma_cookie_t pl08x_tx_submit(struct dma_async_tx_descriptor *tx)
1076{
1077 struct pl08x_dma_chan *plchan = to_pl08x_chan(tx->chan);
Russell King - ARM Linux501e67e2011-01-03 22:44:57 +00001078 struct pl08x_txd *txd = to_pl08x_txd(tx);
Russell King - ARM Linuxc370e592011-01-03 22:45:37 +00001079 unsigned long flags;
Russell King - ARM Linux884485e2012-03-06 22:34:46 +00001080 dma_cookie_t cookie;
Russell King - ARM Linuxc370e592011-01-03 22:45:37 +00001081
1082 spin_lock_irqsave(&plchan->lock, flags);
Russell King - ARM Linux884485e2012-03-06 22:34:46 +00001083 cookie = dma_cookie_assign(tx);
Russell King - ARM Linux501e67e2011-01-03 22:44:57 +00001084
1085 /* Put this onto the pending list */
1086 list_add_tail(&txd->node, &plchan->pend_list);
1087
1088 /*
1089 * If there was no physical channel available for this memcpy,
1090 * stack the request up and indicate that the channel is waiting
1091 * for a free physical channel.
1092 */
1093 if (!plchan->slave && !plchan->phychan) {
1094 /* Do this memcpy whenever there is a channel ready */
1095 plchan->state = PL08X_CHAN_WAITING;
1096 plchan->waiting = txd;
Russell King - ARM Linux8087aac2011-01-03 22:45:17 +00001097 } else {
1098 plchan->phychan_hold--;
Russell King - ARM Linux501e67e2011-01-03 22:44:57 +00001099 }
1100
Russell King - ARM Linuxc370e592011-01-03 22:45:37 +00001101 spin_unlock_irqrestore(&plchan->lock, flags);
Linus Walleije8689e62010-09-28 15:57:37 +02001102
Russell King - ARM Linux884485e2012-03-06 22:34:46 +00001103 return cookie;
Linus Walleije8689e62010-09-28 15:57:37 +02001104}
1105
1106static struct dma_async_tx_descriptor *pl08x_prep_dma_interrupt(
1107 struct dma_chan *chan, unsigned long flags)
1108{
1109 struct dma_async_tx_descriptor *retval = NULL;
1110
1111 return retval;
1112}
1113
1114/*
Russell King - ARM Linux94ae8522011-01-16 20:18:05 +00001115 * Code accessing dma_async_is_complete() in a tight loop may give problems.
1116 * If slaves are relying on interrupts to signal completion this function
1117 * must not be called with interrupts disabled.
Linus Walleije8689e62010-09-28 15:57:37 +02001118 */
Viresh Kumar3e27ee82011-08-05 15:32:27 +05301119static enum dma_status pl08x_dma_tx_status(struct dma_chan *chan,
1120 dma_cookie_t cookie, struct dma_tx_state *txstate)
Linus Walleije8689e62010-09-28 15:57:37 +02001121{
1122 struct pl08x_dma_chan *plchan = to_pl08x_chan(chan);
Linus Walleije8689e62010-09-28 15:57:37 +02001123 enum dma_status ret;
Linus Walleije8689e62010-09-28 15:57:37 +02001124
Russell King - ARM Linux96a2af42012-03-06 22:35:27 +00001125 ret = dma_cookie_status(chan, cookie, txstate);
1126 if (ret == DMA_SUCCESS)
Linus Walleije8689e62010-09-28 15:57:37 +02001127 return ret;
Linus Walleije8689e62010-09-28 15:57:37 +02001128
1129 /*
Linus Walleije8689e62010-09-28 15:57:37 +02001130 * This cookie not complete yet
Russell King - ARM Linux96a2af42012-03-06 22:35:27 +00001131 * Get number of bytes left in the active transactions and queue
Linus Walleije8689e62010-09-28 15:57:37 +02001132 */
Russell King - ARM Linux96a2af42012-03-06 22:35:27 +00001133 dma_set_residue(txstate, pl08x_getbytes_chan(plchan));
Linus Walleije8689e62010-09-28 15:57:37 +02001134
1135 if (plchan->state == PL08X_CHAN_PAUSED)
1136 return DMA_PAUSED;
1137
1138 /* Whether waiting or running, we're in progress */
1139 return DMA_IN_PROGRESS;
1140}
1141
1142/* PrimeCell DMA extension */
1143struct burst_table {
Russell King - ARM Linux760596c62011-07-21 17:14:08 +01001144 u32 burstwords;
Linus Walleije8689e62010-09-28 15:57:37 +02001145 u32 reg;
1146};
1147
1148static const struct burst_table burst_sizes[] = {
1149 {
1150 .burstwords = 256,
Russell King - ARM Linux760596c62011-07-21 17:14:08 +01001151 .reg = PL080_BSIZE_256,
Linus Walleije8689e62010-09-28 15:57:37 +02001152 },
1153 {
1154 .burstwords = 128,
Russell King - ARM Linux760596c62011-07-21 17:14:08 +01001155 .reg = PL080_BSIZE_128,
Linus Walleije8689e62010-09-28 15:57:37 +02001156 },
1157 {
1158 .burstwords = 64,
Russell King - ARM Linux760596c62011-07-21 17:14:08 +01001159 .reg = PL080_BSIZE_64,
Linus Walleije8689e62010-09-28 15:57:37 +02001160 },
1161 {
1162 .burstwords = 32,
Russell King - ARM Linux760596c62011-07-21 17:14:08 +01001163 .reg = PL080_BSIZE_32,
Linus Walleije8689e62010-09-28 15:57:37 +02001164 },
1165 {
1166 .burstwords = 16,
Russell King - ARM Linux760596c62011-07-21 17:14:08 +01001167 .reg = PL080_BSIZE_16,
Linus Walleije8689e62010-09-28 15:57:37 +02001168 },
1169 {
1170 .burstwords = 8,
Russell King - ARM Linux760596c62011-07-21 17:14:08 +01001171 .reg = PL080_BSIZE_8,
Linus Walleije8689e62010-09-28 15:57:37 +02001172 },
1173 {
1174 .burstwords = 4,
Russell King - ARM Linux760596c62011-07-21 17:14:08 +01001175 .reg = PL080_BSIZE_4,
Linus Walleije8689e62010-09-28 15:57:37 +02001176 },
1177 {
Russell King - ARM Linux760596c62011-07-21 17:14:08 +01001178 .burstwords = 0,
1179 .reg = PL080_BSIZE_1,
Linus Walleije8689e62010-09-28 15:57:37 +02001180 },
1181};
1182
Russell King - ARM Linux121c8472011-07-21 17:13:48 +01001183/*
1184 * Given the source and destination available bus masks, select which
1185 * will be routed to each port. We try to have source and destination
1186 * on separate ports, but always respect the allowable settings.
1187 */
1188static u32 pl08x_select_bus(u8 src, u8 dst)
1189{
1190 u32 cctl = 0;
1191
1192 if (!(dst & PL08X_AHB1) || ((dst & PL08X_AHB2) && (src & PL08X_AHB1)))
1193 cctl |= PL080_CONTROL_DST_AHB2;
1194 if (!(src & PL08X_AHB1) || ((src & PL08X_AHB2) && !(dst & PL08X_AHB2)))
1195 cctl |= PL080_CONTROL_SRC_AHB2;
1196
1197 return cctl;
1198}
1199
Russell King - ARM Linuxf14c4262011-07-21 17:12:47 +01001200static u32 pl08x_cctl(u32 cctl)
1201{
1202 cctl &= ~(PL080_CONTROL_SRC_AHB2 | PL080_CONTROL_DST_AHB2 |
1203 PL080_CONTROL_SRC_INCR | PL080_CONTROL_DST_INCR |
1204 PL080_CONTROL_PROT_MASK);
1205
1206 /* Access the cell in privileged mode, non-bufferable, non-cacheable */
1207 return cctl | PL080_CONTROL_PROT_SYS;
1208}
1209
Russell King - ARM Linuxaa88cda2011-07-21 17:13:28 +01001210static u32 pl08x_width(enum dma_slave_buswidth width)
1211{
1212 switch (width) {
1213 case DMA_SLAVE_BUSWIDTH_1_BYTE:
1214 return PL080_WIDTH_8BIT;
1215 case DMA_SLAVE_BUSWIDTH_2_BYTES:
1216 return PL080_WIDTH_16BIT;
1217 case DMA_SLAVE_BUSWIDTH_4_BYTES:
1218 return PL080_WIDTH_32BIT;
Vinod Koulf32807f2011-07-25 19:22:01 +05301219 default:
1220 return ~0;
Russell King - ARM Linuxaa88cda2011-07-21 17:13:28 +01001221 }
Russell King - ARM Linuxaa88cda2011-07-21 17:13:28 +01001222}
1223
Russell King - ARM Linux760596c62011-07-21 17:14:08 +01001224static u32 pl08x_burst(u32 maxburst)
1225{
1226 int i;
1227
1228 for (i = 0; i < ARRAY_SIZE(burst_sizes); i++)
1229 if (burst_sizes[i].burstwords <= maxburst)
1230 break;
1231
1232 return burst_sizes[i].reg;
1233}
1234
Russell King9862ba12012-05-16 11:16:03 +01001235static u32 pl08x_get_cctl(struct pl08x_dma_chan *plchan,
1236 enum dma_slave_buswidth addr_width, u32 maxburst)
1237{
1238 u32 width, burst, cctl = 0;
1239
1240 width = pl08x_width(addr_width);
1241 if (width == ~0)
1242 return ~0;
1243
1244 cctl |= width << PL080_CONTROL_SWIDTH_SHIFT;
1245 cctl |= width << PL080_CONTROL_DWIDTH_SHIFT;
1246
1247 /*
1248 * If this channel will only request single transfers, set this
1249 * down to ONE element. Also select one element if no maxburst
1250 * is specified.
1251 */
1252 if (plchan->cd->single)
1253 maxburst = 1;
1254
1255 burst = pl08x_burst(maxburst);
1256 cctl |= burst << PL080_CONTROL_SB_SIZE_SHIFT;
1257 cctl |= burst << PL080_CONTROL_DB_SIZE_SHIFT;
1258
1259 return pl08x_cctl(cctl);
1260}
1261
Russell King - ARM Linuxf0fd9442011-01-03 22:45:57 +00001262static int dma_set_runtime_config(struct dma_chan *chan,
1263 struct dma_slave_config *config)
Linus Walleije8689e62010-09-28 15:57:37 +02001264{
1265 struct pl08x_dma_chan *plchan = to_pl08x_chan(chan);
Linus Walleije8689e62010-09-28 15:57:37 +02001266
Russell King - ARM Linuxb7f75862011-01-03 22:46:17 +00001267 if (!plchan->slave)
1268 return -EINVAL;
1269
Russell Kingdc8d5f82012-05-16 12:20:55 +01001270 /* Reject definitely invalid configurations */
1271 if (config->src_addr_width == DMA_SLAVE_BUSWIDTH_8_BYTES ||
1272 config->dst_addr_width == DMA_SLAVE_BUSWIDTH_8_BYTES)
Russell King - ARM Linuxf0fd9442011-01-03 22:45:57 +00001273 return -EINVAL;
Linus Walleije8689e62010-09-28 15:57:37 +02001274
Russell Kinged91c132012-05-16 11:02:40 +01001275 plchan->cfg = *config;
1276
Russell King - ARM Linuxf0fd9442011-01-03 22:45:57 +00001277 return 0;
Linus Walleije8689e62010-09-28 15:57:37 +02001278}
1279
1280/*
1281 * Slave transactions callback to the slave device to allow
1282 * synchronization of slave DMA signals with the DMAC enable
1283 */
1284static void pl08x_issue_pending(struct dma_chan *chan)
1285{
1286 struct pl08x_dma_chan *plchan = to_pl08x_chan(chan);
Linus Walleije8689e62010-09-28 15:57:37 +02001287 unsigned long flags;
1288
1289 spin_lock_irqsave(&plchan->lock, flags);
Russell King - ARM Linux9c0bb432011-01-03 22:32:05 +00001290 /* Something is already active, or we're waiting for a channel... */
1291 if (plchan->at || plchan->state == PL08X_CHAN_WAITING) {
1292 spin_unlock_irqrestore(&plchan->lock, flags);
Linus Walleije8689e62010-09-28 15:57:37 +02001293 return;
Russell King - ARM Linux9c0bb432011-01-03 22:32:05 +00001294 }
Linus Walleije8689e62010-09-28 15:57:37 +02001295
1296 /* Take the first element in the queue and execute it */
Russell King - ARM Linux15c17232011-01-03 22:44:36 +00001297 if (!list_empty(&plchan->pend_list)) {
Linus Walleije8689e62010-09-28 15:57:37 +02001298 struct pl08x_txd *next;
1299
Russell King - ARM Linux15c17232011-01-03 22:44:36 +00001300 next = list_first_entry(&plchan->pend_list,
Linus Walleije8689e62010-09-28 15:57:37 +02001301 struct pl08x_txd,
1302 node);
1303 list_del(&next->node);
Linus Walleije8689e62010-09-28 15:57:37 +02001304 plchan->state = PL08X_CHAN_RUNNING;
1305
Russell King - ARM Linuxc885bee2011-01-03 22:38:52 +00001306 pl08x_start_txd(plchan, next);
Linus Walleije8689e62010-09-28 15:57:37 +02001307 }
1308
1309 spin_unlock_irqrestore(&plchan->lock, flags);
1310}
1311
1312static int pl08x_prep_channel_resources(struct pl08x_dma_chan *plchan,
1313 struct pl08x_txd *txd)
1314{
Linus Walleije8689e62010-09-28 15:57:37 +02001315 struct pl08x_driver_data *pl08x = plchan->host;
Russell King - ARM Linuxc370e592011-01-03 22:45:37 +00001316 unsigned long flags;
1317 int num_llis, ret;
Linus Walleije8689e62010-09-28 15:57:37 +02001318
1319 num_llis = pl08x_fill_llis_for_desc(pl08x, txd);
Russell King - ARM Linuxdafa7312011-01-03 22:31:45 +00001320 if (!num_llis) {
Viresh Kumar57001a62011-08-05 15:32:45 +05301321 spin_lock_irqsave(&plchan->lock, flags);
1322 pl08x_free_txd(pl08x, txd);
1323 spin_unlock_irqrestore(&plchan->lock, flags);
Linus Walleije8689e62010-09-28 15:57:37 +02001324 return -EINVAL;
Russell King - ARM Linuxdafa7312011-01-03 22:31:45 +00001325 }
Linus Walleije8689e62010-09-28 15:57:37 +02001326
Russell King - ARM Linuxc370e592011-01-03 22:45:37 +00001327 spin_lock_irqsave(&plchan->lock, flags);
Linus Walleije8689e62010-09-28 15:57:37 +02001328
Linus Walleije8689e62010-09-28 15:57:37 +02001329 /*
1330 * See if we already have a physical channel allocated,
1331 * else this is the time to try to get one.
1332 */
1333 ret = prep_phy_channel(plchan, txd);
1334 if (ret) {
1335 /*
Russell King - ARM Linux501e67e2011-01-03 22:44:57 +00001336 * No physical channel was available.
1337 *
1338 * memcpy transfers can be sorted out at submission time.
1339 *
1340 * Slave transfers may have been denied due to platform
1341 * channel muxing restrictions. Since there is no guarantee
1342 * that this will ever be resolved, and the signal must be
1343 * acquired AFTER acquiring the physical channel, we will let
1344 * them be NACK:ed with -EBUSY here. The drivers can retry
1345 * the prep() call if they are eager on doing this using DMA.
Linus Walleije8689e62010-09-28 15:57:37 +02001346 */
1347 if (plchan->slave) {
1348 pl08x_free_txd_list(pl08x, plchan);
Russell King - ARM Linux501e67e2011-01-03 22:44:57 +00001349 pl08x_free_txd(pl08x, txd);
Russell King - ARM Linuxc370e592011-01-03 22:45:37 +00001350 spin_unlock_irqrestore(&plchan->lock, flags);
Linus Walleije8689e62010-09-28 15:57:37 +02001351 return -EBUSY;
1352 }
Linus Walleije8689e62010-09-28 15:57:37 +02001353 } else
1354 /*
Russell King - ARM Linux94ae8522011-01-16 20:18:05 +00001355 * Else we're all set, paused and ready to roll, status
1356 * will switch to PL08X_CHAN_RUNNING when we call
1357 * issue_pending(). If there is something running on the
1358 * channel already we don't change its state.
Linus Walleije8689e62010-09-28 15:57:37 +02001359 */
1360 if (plchan->state == PL08X_CHAN_IDLE)
1361 plchan->state = PL08X_CHAN_PAUSED;
1362
Russell King - ARM Linuxc370e592011-01-03 22:45:37 +00001363 spin_unlock_irqrestore(&plchan->lock, flags);
Linus Walleije8689e62010-09-28 15:57:37 +02001364
1365 return 0;
1366}
1367
Russell King - ARM Linuxc0428792011-01-03 22:43:56 +00001368static struct pl08x_txd *pl08x_get_txd(struct pl08x_dma_chan *plchan,
1369 unsigned long flags)
Russell King - ARM Linuxac3cd202011-01-03 22:35:49 +00001370{
Viresh Kumarb201c112011-08-05 15:32:29 +05301371 struct pl08x_txd *txd = kzalloc(sizeof(*txd), GFP_NOWAIT);
Russell King - ARM Linuxac3cd202011-01-03 22:35:49 +00001372
1373 if (txd) {
1374 dma_async_tx_descriptor_init(&txd->tx, &plchan->chan);
Russell King - ARM Linuxc0428792011-01-03 22:43:56 +00001375 txd->tx.flags = flags;
Russell King - ARM Linuxac3cd202011-01-03 22:35:49 +00001376 txd->tx.tx_submit = pl08x_tx_submit;
1377 INIT_LIST_HEAD(&txd->node);
Viresh Kumarb7f69d92011-08-05 15:32:43 +05301378 INIT_LIST_HEAD(&txd->dsg_list);
Russell King - ARM Linux4983a042011-01-03 22:39:33 +00001379
1380 /* Always enable error and terminal interrupts */
1381 txd->ccfg = PL080_CONFIG_ERR_IRQ_MASK |
1382 PL080_CONFIG_TC_IRQ_MASK;
Russell King - ARM Linuxac3cd202011-01-03 22:35:49 +00001383 }
1384 return txd;
1385}
1386
Linus Walleije8689e62010-09-28 15:57:37 +02001387/*
1388 * Initialize a descriptor to be used by memcpy submit
1389 */
1390static struct dma_async_tx_descriptor *pl08x_prep_dma_memcpy(
1391 struct dma_chan *chan, dma_addr_t dest, dma_addr_t src,
1392 size_t len, unsigned long flags)
1393{
1394 struct pl08x_dma_chan *plchan = to_pl08x_chan(chan);
1395 struct pl08x_driver_data *pl08x = plchan->host;
1396 struct pl08x_txd *txd;
Viresh Kumarb7f69d92011-08-05 15:32:43 +05301397 struct pl08x_sg *dsg;
Linus Walleije8689e62010-09-28 15:57:37 +02001398 int ret;
1399
Russell King - ARM Linuxc0428792011-01-03 22:43:56 +00001400 txd = pl08x_get_txd(plchan, flags);
Linus Walleije8689e62010-09-28 15:57:37 +02001401 if (!txd) {
1402 dev_err(&pl08x->adev->dev,
1403 "%s no memory for descriptor\n", __func__);
1404 return NULL;
1405 }
1406
Viresh Kumarb7f69d92011-08-05 15:32:43 +05301407 dsg = kzalloc(sizeof(struct pl08x_sg), GFP_NOWAIT);
1408 if (!dsg) {
1409 pl08x_free_txd(pl08x, txd);
1410 dev_err(&pl08x->adev->dev, "%s no memory for pl080 sg\n",
1411 __func__);
1412 return NULL;
1413 }
1414 list_add_tail(&dsg->node, &txd->dsg_list);
1415
Russell King92d2fd62012-05-25 14:37:56 +01001416 txd->direction = DMA_MEM_TO_MEM;
Viresh Kumarb7f69d92011-08-05 15:32:43 +05301417 dsg->src_addr = src;
1418 dsg->dst_addr = dest;
1419 dsg->len = len;
Linus Walleije8689e62010-09-28 15:57:37 +02001420
1421 /* Set platform data for m2m */
Russell King - ARM Linux4983a042011-01-03 22:39:33 +00001422 txd->ccfg |= PL080_FLOW_MEM2MEM << PL080_CONFIG_FLOW_CONTROL_SHIFT;
Russell Kingdc8d5f82012-05-16 12:20:55 +01001423 txd->cctl = pl08x->pd->memcpy_channel.cctl_memcpy &
Russell King - ARM Linuxc7da9a52011-01-03 22:40:53 +00001424 ~(PL080_CONTROL_DST_AHB2 | PL080_CONTROL_SRC_AHB2);
Russell King - ARM Linux4983a042011-01-03 22:39:33 +00001425
Linus Walleije8689e62010-09-28 15:57:37 +02001426 /* Both to be incremented or the code will break */
Russell King - ARM Linux70b5ed62011-01-03 22:40:13 +00001427 txd->cctl |= PL080_CONTROL_SRC_INCR | PL080_CONTROL_DST_INCR;
Russell King - ARM Linuxc7da9a52011-01-03 22:40:53 +00001428
Russell King - ARM Linuxc7da9a52011-01-03 22:40:53 +00001429 if (pl08x->vd->dualmaster)
Russell King - ARM Linux121c8472011-07-21 17:13:48 +01001430 txd->cctl |= pl08x_select_bus(pl08x->mem_buses,
1431 pl08x->mem_buses);
Linus Walleije8689e62010-09-28 15:57:37 +02001432
Linus Walleije8689e62010-09-28 15:57:37 +02001433 ret = pl08x_prep_channel_resources(plchan, txd);
1434 if (ret)
1435 return NULL;
Linus Walleije8689e62010-09-28 15:57:37 +02001436
1437 return &txd->tx;
1438}
1439
Russell King - ARM Linux3e2a0372011-01-03 22:32:46 +00001440static struct dma_async_tx_descriptor *pl08x_prep_slave_sg(
Linus Walleije8689e62010-09-28 15:57:37 +02001441 struct dma_chan *chan, struct scatterlist *sgl,
Vinod Kouldb8196d2011-10-13 22:34:23 +05301442 unsigned int sg_len, enum dma_transfer_direction direction,
Alexandre Bounine185ecb52012-03-08 15:35:13 -05001443 unsigned long flags, void *context)
Linus Walleije8689e62010-09-28 15:57:37 +02001444{
1445 struct pl08x_dma_chan *plchan = to_pl08x_chan(chan);
1446 struct pl08x_driver_data *pl08x = plchan->host;
1447 struct pl08x_txd *txd;
Viresh Kumarb7f69d92011-08-05 15:32:43 +05301448 struct pl08x_sg *dsg;
1449 struct scatterlist *sg;
Russell Kingdc8d5f82012-05-16 12:20:55 +01001450 enum dma_slave_buswidth addr_width;
Viresh Kumarb7f69d92011-08-05 15:32:43 +05301451 dma_addr_t slave_addr;
Viresh Kumar0a235652011-08-05 15:32:42 +05301452 int ret, tmp;
Russell King409ec8d2012-05-16 11:08:43 +01001453 u8 src_buses, dst_buses;
Russell Kingdc8d5f82012-05-16 12:20:55 +01001454 u32 maxburst, cctl;
Linus Walleije8689e62010-09-28 15:57:37 +02001455
Linus Walleije8689e62010-09-28 15:57:37 +02001456 dev_dbg(&pl08x->adev->dev, "%s prepare transaction of %d bytes from %s\n",
Lars-Peter Clausenfdaf9c42012-04-25 20:50:52 +02001457 __func__, sg_dma_len(sgl), plchan->name);
Linus Walleije8689e62010-09-28 15:57:37 +02001458
Russell King - ARM Linuxc0428792011-01-03 22:43:56 +00001459 txd = pl08x_get_txd(plchan, flags);
Linus Walleije8689e62010-09-28 15:57:37 +02001460 if (!txd) {
1461 dev_err(&pl08x->adev->dev, "%s no txd\n", __func__);
1462 return NULL;
1463 }
1464
Linus Walleije8689e62010-09-28 15:57:37 +02001465 /*
1466 * Set up addresses, the PrimeCell configured address
1467 * will take precedence since this may configure the
1468 * channel target address dynamically at runtime.
1469 */
1470 txd->direction = direction;
Russell King - ARM Linuxc7da9a52011-01-03 22:40:53 +00001471
Vinod Kouldb8196d2011-10-13 22:34:23 +05301472 if (direction == DMA_MEM_TO_DEV) {
Russell Kingdc8d5f82012-05-16 12:20:55 +01001473 cctl = PL080_CONTROL_SRC_INCR;
Russell Kinged91c132012-05-16 11:02:40 +01001474 slave_addr = plchan->cfg.dst_addr;
Russell Kingdc8d5f82012-05-16 12:20:55 +01001475 addr_width = plchan->cfg.dst_addr_width;
1476 maxburst = plchan->cfg.dst_maxburst;
Russell King409ec8d2012-05-16 11:08:43 +01001477 src_buses = pl08x->mem_buses;
1478 dst_buses = plchan->cd->periph_buses;
Vinod Kouldb8196d2011-10-13 22:34:23 +05301479 } else if (direction == DMA_DEV_TO_MEM) {
Russell Kingdc8d5f82012-05-16 12:20:55 +01001480 cctl = PL080_CONTROL_DST_INCR;
Russell Kinged91c132012-05-16 11:02:40 +01001481 slave_addr = plchan->cfg.src_addr;
Russell Kingdc8d5f82012-05-16 12:20:55 +01001482 addr_width = plchan->cfg.src_addr_width;
1483 maxburst = plchan->cfg.src_maxburst;
Russell King409ec8d2012-05-16 11:08:43 +01001484 src_buses = plchan->cd->periph_buses;
1485 dst_buses = pl08x->mem_buses;
Linus Walleije8689e62010-09-28 15:57:37 +02001486 } else {
Viresh Kumarb7f69d92011-08-05 15:32:43 +05301487 pl08x_free_txd(pl08x, txd);
Linus Walleije8689e62010-09-28 15:57:37 +02001488 dev_err(&pl08x->adev->dev,
1489 "%s direction unsupported\n", __func__);
1490 return NULL;
1491 }
Linus Walleije8689e62010-09-28 15:57:37 +02001492
Russell Kingdc8d5f82012-05-16 12:20:55 +01001493 cctl |= pl08x_get_cctl(plchan, addr_width, maxburst);
Russell King800d6832012-05-16 11:33:31 +01001494 if (cctl == ~0) {
1495 pl08x_free_txd(pl08x, txd);
1496 dev_err(&pl08x->adev->dev,
1497 "DMA slave configuration botched?\n");
1498 return NULL;
1499 }
1500
Russell King409ec8d2012-05-16 11:08:43 +01001501 txd->cctl = cctl | pl08x_select_bus(src_buses, dst_buses);
1502
Russell King95442b22012-05-16 11:05:09 +01001503 if (plchan->cfg.device_fc)
Vinod Kouldb8196d2011-10-13 22:34:23 +05301504 tmp = (direction == DMA_MEM_TO_DEV) ? PL080_FLOW_MEM2PER_PER :
Viresh Kumar0a235652011-08-05 15:32:42 +05301505 PL080_FLOW_PER2MEM_PER;
1506 else
Vinod Kouldb8196d2011-10-13 22:34:23 +05301507 tmp = (direction == DMA_MEM_TO_DEV) ? PL080_FLOW_MEM2PER :
Viresh Kumar0a235652011-08-05 15:32:42 +05301508 PL080_FLOW_PER2MEM;
1509
1510 txd->ccfg |= tmp << PL080_CONFIG_FLOW_CONTROL_SHIFT;
1511
Viresh Kumarb7f69d92011-08-05 15:32:43 +05301512 for_each_sg(sgl, sg, sg_len, tmp) {
1513 dsg = kzalloc(sizeof(struct pl08x_sg), GFP_NOWAIT);
1514 if (!dsg) {
1515 pl08x_free_txd(pl08x, txd);
1516 dev_err(&pl08x->adev->dev, "%s no mem for pl080 sg\n",
1517 __func__);
1518 return NULL;
1519 }
1520 list_add_tail(&dsg->node, &txd->dsg_list);
1521
1522 dsg->len = sg_dma_len(sg);
Vinod Kouldb8196d2011-10-13 22:34:23 +05301523 if (direction == DMA_MEM_TO_DEV) {
Lars-Peter Clausencbb796c2012-04-25 20:50:51 +02001524 dsg->src_addr = sg_dma_address(sg);
Viresh Kumarb7f69d92011-08-05 15:32:43 +05301525 dsg->dst_addr = slave_addr;
1526 } else {
1527 dsg->src_addr = slave_addr;
Lars-Peter Clausencbb796c2012-04-25 20:50:51 +02001528 dsg->dst_addr = sg_dma_address(sg);
Viresh Kumarb7f69d92011-08-05 15:32:43 +05301529 }
1530 }
1531
Linus Walleije8689e62010-09-28 15:57:37 +02001532 ret = pl08x_prep_channel_resources(plchan, txd);
1533 if (ret)
1534 return NULL;
Linus Walleije8689e62010-09-28 15:57:37 +02001535
1536 return &txd->tx;
1537}
1538
1539static int pl08x_control(struct dma_chan *chan, enum dma_ctrl_cmd cmd,
1540 unsigned long arg)
1541{
1542 struct pl08x_dma_chan *plchan = to_pl08x_chan(chan);
1543 struct pl08x_driver_data *pl08x = plchan->host;
1544 unsigned long flags;
1545 int ret = 0;
1546
1547 /* Controls applicable to inactive channels */
1548 if (cmd == DMA_SLAVE_CONFIG) {
Russell King - ARM Linuxf0fd9442011-01-03 22:45:57 +00001549 return dma_set_runtime_config(chan,
1550 (struct dma_slave_config *)arg);
Linus Walleije8689e62010-09-28 15:57:37 +02001551 }
1552
1553 /*
1554 * Anything succeeds on channels with no physical allocation and
1555 * no queued transfers.
1556 */
1557 spin_lock_irqsave(&plchan->lock, flags);
1558 if (!plchan->phychan && !plchan->at) {
1559 spin_unlock_irqrestore(&plchan->lock, flags);
1560 return 0;
1561 }
1562
1563 switch (cmd) {
1564 case DMA_TERMINATE_ALL:
1565 plchan->state = PL08X_CHAN_IDLE;
1566
1567 if (plchan->phychan) {
Russell King - ARM Linuxfb526212011-01-27 12:32:53 +00001568 pl08x_terminate_phy_chan(pl08x, plchan->phychan);
Linus Walleije8689e62010-09-28 15:57:37 +02001569
1570 /*
1571 * Mark physical channel as free and free any slave
1572 * signal
1573 */
Russell King - ARM Linux8c8cc2b2011-01-03 22:36:09 +00001574 release_phy_channel(plchan);
Davide Ciminaghi88c08a32012-04-19 12:20:24 +02001575 plchan->phychan_hold = 0;
Linus Walleije8689e62010-09-28 15:57:37 +02001576 }
Linus Walleije8689e62010-09-28 15:57:37 +02001577 /* Dequeue jobs and free LLIs */
1578 if (plchan->at) {
1579 pl08x_free_txd(pl08x, plchan->at);
1580 plchan->at = NULL;
1581 }
1582 /* Dequeue jobs not yet fired as well */
1583 pl08x_free_txd_list(pl08x, plchan);
1584 break;
1585 case DMA_PAUSE:
1586 pl08x_pause_phy_chan(plchan->phychan);
1587 plchan->state = PL08X_CHAN_PAUSED;
1588 break;
1589 case DMA_RESUME:
1590 pl08x_resume_phy_chan(plchan->phychan);
1591 plchan->state = PL08X_CHAN_RUNNING;
1592 break;
1593 default:
1594 /* Unknown command */
1595 ret = -ENXIO;
1596 break;
1597 }
1598
1599 spin_unlock_irqrestore(&plchan->lock, flags);
1600
1601 return ret;
1602}
1603
1604bool pl08x_filter_id(struct dma_chan *chan, void *chan_id)
1605{
Russell King - ARM Linux7703eac2011-08-31 09:34:35 +01001606 struct pl08x_dma_chan *plchan;
Linus Walleije8689e62010-09-28 15:57:37 +02001607 char *name = chan_id;
1608
Russell King - ARM Linux7703eac2011-08-31 09:34:35 +01001609 /* Reject channels for devices not bound to this driver */
1610 if (chan->device->dev->driver != &pl08x_amba_driver.drv)
1611 return false;
1612
1613 plchan = to_pl08x_chan(chan);
1614
Linus Walleije8689e62010-09-28 15:57:37 +02001615 /* Check that the channel is not taken! */
1616 if (!strcmp(plchan->name, name))
1617 return true;
1618
1619 return false;
1620}
1621
1622/*
1623 * Just check that the device is there and active
Russell King - ARM Linux94ae8522011-01-16 20:18:05 +00001624 * TODO: turn this bit on/off depending on the number of physical channels
1625 * actually used, if it is zero... well shut it off. That will save some
1626 * power. Cut the clock at the same time.
Linus Walleije8689e62010-09-28 15:57:37 +02001627 */
1628static void pl08x_ensure_on(struct pl08x_driver_data *pl08x)
1629{
Linus Walleijaffa1152012-04-12 09:01:49 +02001630 /* The Nomadik variant does not have the config register */
1631 if (pl08x->vd->nomadik)
1632 return;
Viresh Kumar48a59ef2011-08-05 15:32:34 +05301633 writel(PL080_CONFIG_ENABLE, pl08x->base + PL080_CONFIG);
Linus Walleije8689e62010-09-28 15:57:37 +02001634}
1635
Russell King - ARM Linux3d992e12011-01-03 22:44:16 +00001636static void pl08x_unmap_buffers(struct pl08x_txd *txd)
1637{
1638 struct device *dev = txd->tx.chan->device->dev;
Viresh Kumarb7f69d92011-08-05 15:32:43 +05301639 struct pl08x_sg *dsg;
Russell King - ARM Linux3d992e12011-01-03 22:44:16 +00001640
1641 if (!(txd->tx.flags & DMA_COMPL_SKIP_SRC_UNMAP)) {
1642 if (txd->tx.flags & DMA_COMPL_SRC_UNMAP_SINGLE)
Viresh Kumarb7f69d92011-08-05 15:32:43 +05301643 list_for_each_entry(dsg, &txd->dsg_list, node)
1644 dma_unmap_single(dev, dsg->src_addr, dsg->len,
1645 DMA_TO_DEVICE);
1646 else {
1647 list_for_each_entry(dsg, &txd->dsg_list, node)
1648 dma_unmap_page(dev, dsg->src_addr, dsg->len,
1649 DMA_TO_DEVICE);
1650 }
Russell King - ARM Linux3d992e12011-01-03 22:44:16 +00001651 }
1652 if (!(txd->tx.flags & DMA_COMPL_SKIP_DEST_UNMAP)) {
1653 if (txd->tx.flags & DMA_COMPL_DEST_UNMAP_SINGLE)
Viresh Kumarb7f69d92011-08-05 15:32:43 +05301654 list_for_each_entry(dsg, &txd->dsg_list, node)
1655 dma_unmap_single(dev, dsg->dst_addr, dsg->len,
1656 DMA_FROM_DEVICE);
Russell King - ARM Linux3d992e12011-01-03 22:44:16 +00001657 else
Viresh Kumarb7f69d92011-08-05 15:32:43 +05301658 list_for_each_entry(dsg, &txd->dsg_list, node)
1659 dma_unmap_page(dev, dsg->dst_addr, dsg->len,
1660 DMA_FROM_DEVICE);
Russell King - ARM Linux3d992e12011-01-03 22:44:16 +00001661 }
1662}
1663
Linus Walleije8689e62010-09-28 15:57:37 +02001664static void pl08x_tasklet(unsigned long data)
1665{
1666 struct pl08x_dma_chan *plchan = (struct pl08x_dma_chan *) data;
Linus Walleije8689e62010-09-28 15:57:37 +02001667 struct pl08x_driver_data *pl08x = plchan->host;
Russell King - ARM Linux858c21c2011-01-03 22:41:34 +00001668 struct pl08x_txd *txd;
Russell King - ARM Linuxbf072af2011-01-03 22:31:24 +00001669 unsigned long flags;
Linus Walleije8689e62010-09-28 15:57:37 +02001670
Russell King - ARM Linuxbf072af2011-01-03 22:31:24 +00001671 spin_lock_irqsave(&plchan->lock, flags);
Linus Walleije8689e62010-09-28 15:57:37 +02001672
Russell King - ARM Linux858c21c2011-01-03 22:41:34 +00001673 txd = plchan->at;
1674 plchan->at = NULL;
1675
1676 if (txd) {
Russell King - ARM Linux94ae8522011-01-16 20:18:05 +00001677 /* Update last completed */
Russell King - ARM Linuxf7fbce02012-03-06 22:35:07 +00001678 dma_cookie_complete(&txd->tx);
Linus Walleije8689e62010-09-28 15:57:37 +02001679 }
Russell King - ARM Linux8087aac2011-01-03 22:45:17 +00001680
Russell King - ARM Linux94ae8522011-01-16 20:18:05 +00001681 /* If a new descriptor is queued, set it up plchan->at is NULL here */
Russell King - ARM Linux15c17232011-01-03 22:44:36 +00001682 if (!list_empty(&plchan->pend_list)) {
Linus Walleije8689e62010-09-28 15:57:37 +02001683 struct pl08x_txd *next;
1684
Russell King - ARM Linux15c17232011-01-03 22:44:36 +00001685 next = list_first_entry(&plchan->pend_list,
Linus Walleije8689e62010-09-28 15:57:37 +02001686 struct pl08x_txd,
1687 node);
1688 list_del(&next->node);
Russell King - ARM Linuxc885bee2011-01-03 22:38:52 +00001689
1690 pl08x_start_txd(plchan, next);
Russell King - ARM Linux8087aac2011-01-03 22:45:17 +00001691 } else if (plchan->phychan_hold) {
1692 /*
1693 * This channel is still in use - we have a new txd being
1694 * prepared and will soon be queued. Don't give up the
1695 * physical channel.
1696 */
Linus Walleije8689e62010-09-28 15:57:37 +02001697 } else {
1698 struct pl08x_dma_chan *waiting = NULL;
1699
1700 /*
1701 * No more jobs, so free up the physical channel
1702 * Free any allocated signal on slave transfers too
1703 */
Russell King - ARM Linux8c8cc2b2011-01-03 22:36:09 +00001704 release_phy_channel(plchan);
Linus Walleije8689e62010-09-28 15:57:37 +02001705 plchan->state = PL08X_CHAN_IDLE;
1706
1707 /*
Russell King - ARM Linux94ae8522011-01-16 20:18:05 +00001708 * And NOW before anyone else can grab that free:d up
1709 * physical channel, see if there is some memcpy pending
1710 * that seriously needs to start because of being stacked
1711 * up while we were choking the physical channels with data.
Linus Walleije8689e62010-09-28 15:57:37 +02001712 */
1713 list_for_each_entry(waiting, &pl08x->memcpy.channels,
1714 chan.device_node) {
Viresh Kumar3e27ee82011-08-05 15:32:27 +05301715 if (waiting->state == PL08X_CHAN_WAITING &&
1716 waiting->waiting != NULL) {
Linus Walleije8689e62010-09-28 15:57:37 +02001717 int ret;
1718
1719 /* This should REALLY not fail now */
1720 ret = prep_phy_channel(waiting,
1721 waiting->waiting);
1722 BUG_ON(ret);
Russell King - ARM Linux8087aac2011-01-03 22:45:17 +00001723 waiting->phychan_hold--;
Linus Walleije8689e62010-09-28 15:57:37 +02001724 waiting->state = PL08X_CHAN_RUNNING;
1725 waiting->waiting = NULL;
1726 pl08x_issue_pending(&waiting->chan);
1727 break;
1728 }
1729 }
1730 }
1731
Russell King - ARM Linuxbf072af2011-01-03 22:31:24 +00001732 spin_unlock_irqrestore(&plchan->lock, flags);
Russell King - ARM Linux858c21c2011-01-03 22:41:34 +00001733
Russell King - ARM Linux3d992e12011-01-03 22:44:16 +00001734 if (txd) {
1735 dma_async_tx_callback callback = txd->tx.callback;
1736 void *callback_param = txd->tx.callback_param;
1737
1738 /* Don't try to unmap buffers on slave channels */
1739 if (!plchan->slave)
1740 pl08x_unmap_buffers(txd);
1741
1742 /* Free the descriptor */
1743 spin_lock_irqsave(&plchan->lock, flags);
1744 pl08x_free_txd(pl08x, txd);
1745 spin_unlock_irqrestore(&plchan->lock, flags);
1746
1747 /* Callback to signal completion */
1748 if (callback)
1749 callback(callback_param);
1750 }
Linus Walleije8689e62010-09-28 15:57:37 +02001751}
1752
1753static irqreturn_t pl08x_irq(int irq, void *dev)
1754{
1755 struct pl08x_driver_data *pl08x = dev;
Viresh Kumar28da2832011-08-05 15:32:36 +05301756 u32 mask = 0, err, tc, i;
Linus Walleije8689e62010-09-28 15:57:37 +02001757
Viresh Kumar28da2832011-08-05 15:32:36 +05301758 /* check & clear - ERR & TC interrupts */
1759 err = readl(pl08x->base + PL080_ERR_STATUS);
1760 if (err) {
1761 dev_err(&pl08x->adev->dev, "%s error interrupt, register value 0x%08x\n",
1762 __func__, err);
1763 writel(err, pl08x->base + PL080_ERR_CLEAR);
Linus Walleije8689e62010-09-28 15:57:37 +02001764 }
Linus Walleijd29bf012012-04-09 22:53:21 +02001765 tc = readl(pl08x->base + PL080_TC_STATUS);
Viresh Kumar28da2832011-08-05 15:32:36 +05301766 if (tc)
1767 writel(tc, pl08x->base + PL080_TC_CLEAR);
1768
1769 if (!err && !tc)
1770 return IRQ_NONE;
1771
Linus Walleije8689e62010-09-28 15:57:37 +02001772 for (i = 0; i < pl08x->vd->channels; i++) {
Viresh Kumar28da2832011-08-05 15:32:36 +05301773 if (((1 << i) & err) || ((1 << i) & tc)) {
Linus Walleije8689e62010-09-28 15:57:37 +02001774 /* Locate physical channel */
1775 struct pl08x_phy_chan *phychan = &pl08x->phy_chans[i];
1776 struct pl08x_dma_chan *plchan = phychan->serving;
1777
Viresh Kumar28da2832011-08-05 15:32:36 +05301778 if (!plchan) {
1779 dev_err(&pl08x->adev->dev,
1780 "%s Error TC interrupt on unused channel: 0x%08x\n",
1781 __func__, i);
1782 continue;
1783 }
1784
Linus Walleije8689e62010-09-28 15:57:37 +02001785 /* Schedule tasklet on this channel */
1786 tasklet_schedule(&plchan->tasklet);
Linus Walleije8689e62010-09-28 15:57:37 +02001787 mask |= (1 << i);
1788 }
1789 }
Linus Walleije8689e62010-09-28 15:57:37 +02001790
1791 return mask ? IRQ_HANDLED : IRQ_NONE;
1792}
1793
Russell King - ARM Linux121c8472011-07-21 17:13:48 +01001794static void pl08x_dma_slave_init(struct pl08x_dma_chan *chan)
1795{
Russell King - ARM Linux121c8472011-07-21 17:13:48 +01001796 chan->slave = true;
1797 chan->name = chan->cd->bus_id;
Russell Kinged91c132012-05-16 11:02:40 +01001798 chan->cfg.src_addr = chan->cd->addr;
1799 chan->cfg.dst_addr = chan->cd->addr;
Russell King - ARM Linux121c8472011-07-21 17:13:48 +01001800}
1801
Linus Walleije8689e62010-09-28 15:57:37 +02001802/*
1803 * Initialise the DMAC memcpy/slave channels.
1804 * Make a local wrapper to hold required data
1805 */
1806static int pl08x_dma_init_virtual_channels(struct pl08x_driver_data *pl08x,
Viresh Kumar3e27ee82011-08-05 15:32:27 +05301807 struct dma_device *dmadev, unsigned int channels, bool slave)
Linus Walleije8689e62010-09-28 15:57:37 +02001808{
1809 struct pl08x_dma_chan *chan;
1810 int i;
1811
1812 INIT_LIST_HEAD(&dmadev->channels);
Russell King - ARM Linux94ae8522011-01-16 20:18:05 +00001813
Linus Walleije8689e62010-09-28 15:57:37 +02001814 /*
1815 * Register as many many memcpy as we have physical channels,
1816 * we won't always be able to use all but the code will have
1817 * to cope with that situation.
1818 */
1819 for (i = 0; i < channels; i++) {
Viresh Kumarb201c112011-08-05 15:32:29 +05301820 chan = kzalloc(sizeof(*chan), GFP_KERNEL);
Linus Walleije8689e62010-09-28 15:57:37 +02001821 if (!chan) {
1822 dev_err(&pl08x->adev->dev,
1823 "%s no memory for channel\n", __func__);
1824 return -ENOMEM;
1825 }
1826
1827 chan->host = pl08x;
1828 chan->state = PL08X_CHAN_IDLE;
Russell Kingad0de2a2012-05-25 11:15:15 +01001829 chan->signal = -1;
Linus Walleije8689e62010-09-28 15:57:37 +02001830
1831 if (slave) {
Linus Walleije8689e62010-09-28 15:57:37 +02001832 chan->cd = &pl08x->pd->slave_channels[i];
Russell King - ARM Linux121c8472011-07-21 17:13:48 +01001833 pl08x_dma_slave_init(chan);
Linus Walleije8689e62010-09-28 15:57:37 +02001834 } else {
1835 chan->cd = &pl08x->pd->memcpy_channel;
1836 chan->name = kasprintf(GFP_KERNEL, "memcpy%d", i);
1837 if (!chan->name) {
1838 kfree(chan);
1839 return -ENOMEM;
1840 }
1841 }
Viresh Kumar175a5e62011-08-05 15:32:32 +05301842 dev_dbg(&pl08x->adev->dev,
Linus Walleije8689e62010-09-28 15:57:37 +02001843 "initialize virtual channel \"%s\"\n",
1844 chan->name);
1845
1846 chan->chan.device = dmadev;
Russell King - ARM Linuxd3ee98cdc2012-03-06 22:35:47 +00001847 dma_cookie_init(&chan->chan);
Linus Walleije8689e62010-09-28 15:57:37 +02001848
1849 spin_lock_init(&chan->lock);
Russell King - ARM Linux15c17232011-01-03 22:44:36 +00001850 INIT_LIST_HEAD(&chan->pend_list);
Linus Walleije8689e62010-09-28 15:57:37 +02001851 tasklet_init(&chan->tasklet, pl08x_tasklet,
1852 (unsigned long) chan);
1853
1854 list_add_tail(&chan->chan.device_node, &dmadev->channels);
1855 }
1856 dev_info(&pl08x->adev->dev, "initialized %d virtual %s channels\n",
1857 i, slave ? "slave" : "memcpy");
1858 return i;
1859}
1860
1861static void pl08x_free_virtual_channels(struct dma_device *dmadev)
1862{
1863 struct pl08x_dma_chan *chan = NULL;
1864 struct pl08x_dma_chan *next;
1865
1866 list_for_each_entry_safe(chan,
1867 next, &dmadev->channels, chan.device_node) {
1868 list_del(&chan->chan.device_node);
1869 kfree(chan);
1870 }
1871}
1872
1873#ifdef CONFIG_DEBUG_FS
1874static const char *pl08x_state_str(enum pl08x_dma_chan_state state)
1875{
1876 switch (state) {
1877 case PL08X_CHAN_IDLE:
1878 return "idle";
1879 case PL08X_CHAN_RUNNING:
1880 return "running";
1881 case PL08X_CHAN_PAUSED:
1882 return "paused";
1883 case PL08X_CHAN_WAITING:
1884 return "waiting";
1885 default:
1886 break;
1887 }
1888 return "UNKNOWN STATE";
1889}
1890
1891static int pl08x_debugfs_show(struct seq_file *s, void *data)
1892{
1893 struct pl08x_driver_data *pl08x = s->private;
1894 struct pl08x_dma_chan *chan;
1895 struct pl08x_phy_chan *ch;
1896 unsigned long flags;
1897 int i;
1898
1899 seq_printf(s, "PL08x physical channels:\n");
1900 seq_printf(s, "CHANNEL:\tUSER:\n");
1901 seq_printf(s, "--------\t-----\n");
1902 for (i = 0; i < pl08x->vd->channels; i++) {
1903 struct pl08x_dma_chan *virt_chan;
1904
1905 ch = &pl08x->phy_chans[i];
1906
1907 spin_lock_irqsave(&ch->lock, flags);
1908 virt_chan = ch->serving;
1909
Linus Walleijaffa1152012-04-12 09:01:49 +02001910 seq_printf(s, "%d\t\t%s%s\n",
1911 ch->id,
1912 virt_chan ? virt_chan->name : "(none)",
1913 ch->locked ? " LOCKED" : "");
Linus Walleije8689e62010-09-28 15:57:37 +02001914
1915 spin_unlock_irqrestore(&ch->lock, flags);
1916 }
1917
1918 seq_printf(s, "\nPL08x virtual memcpy channels:\n");
1919 seq_printf(s, "CHANNEL:\tSTATE:\n");
1920 seq_printf(s, "--------\t------\n");
1921 list_for_each_entry(chan, &pl08x->memcpy.channels, chan.device_node) {
Russell King - ARM Linux3e2a0372011-01-03 22:32:46 +00001922 seq_printf(s, "%s\t\t%s\n", chan->name,
Linus Walleije8689e62010-09-28 15:57:37 +02001923 pl08x_state_str(chan->state));
1924 }
1925
1926 seq_printf(s, "\nPL08x virtual slave channels:\n");
1927 seq_printf(s, "CHANNEL:\tSTATE:\n");
1928 seq_printf(s, "--------\t------\n");
1929 list_for_each_entry(chan, &pl08x->slave.channels, chan.device_node) {
Russell King - ARM Linux3e2a0372011-01-03 22:32:46 +00001930 seq_printf(s, "%s\t\t%s\n", chan->name,
Linus Walleije8689e62010-09-28 15:57:37 +02001931 pl08x_state_str(chan->state));
1932 }
1933
1934 return 0;
1935}
1936
1937static int pl08x_debugfs_open(struct inode *inode, struct file *file)
1938{
1939 return single_open(file, pl08x_debugfs_show, inode->i_private);
1940}
1941
1942static const struct file_operations pl08x_debugfs_operations = {
1943 .open = pl08x_debugfs_open,
1944 .read = seq_read,
1945 .llseek = seq_lseek,
1946 .release = single_release,
1947};
1948
1949static void init_pl08x_debugfs(struct pl08x_driver_data *pl08x)
1950{
1951 /* Expose a simple debugfs interface to view all clocks */
Viresh Kumar3e27ee82011-08-05 15:32:27 +05301952 (void) debugfs_create_file(dev_name(&pl08x->adev->dev),
1953 S_IFREG | S_IRUGO, NULL, pl08x,
1954 &pl08x_debugfs_operations);
Linus Walleije8689e62010-09-28 15:57:37 +02001955}
1956
1957#else
1958static inline void init_pl08x_debugfs(struct pl08x_driver_data *pl08x)
1959{
1960}
1961#endif
1962
Russell Kingaa25afa2011-02-19 15:55:00 +00001963static int pl08x_probe(struct amba_device *adev, const struct amba_id *id)
Linus Walleije8689e62010-09-28 15:57:37 +02001964{
1965 struct pl08x_driver_data *pl08x;
Russell King - ARM Linuxf96ca9ec2011-01-03 22:35:08 +00001966 const struct vendor_data *vd = id->data;
Linus Walleije8689e62010-09-28 15:57:37 +02001967 int ret = 0;
1968 int i;
1969
1970 ret = amba_request_regions(adev, NULL);
1971 if (ret)
1972 return ret;
1973
1974 /* Create the driver state holder */
Viresh Kumarb201c112011-08-05 15:32:29 +05301975 pl08x = kzalloc(sizeof(*pl08x), GFP_KERNEL);
Linus Walleije8689e62010-09-28 15:57:37 +02001976 if (!pl08x) {
1977 ret = -ENOMEM;
1978 goto out_no_pl08x;
1979 }
1980
1981 /* Initialize memcpy engine */
1982 dma_cap_set(DMA_MEMCPY, pl08x->memcpy.cap_mask);
1983 pl08x->memcpy.dev = &adev->dev;
1984 pl08x->memcpy.device_alloc_chan_resources = pl08x_alloc_chan_resources;
1985 pl08x->memcpy.device_free_chan_resources = pl08x_free_chan_resources;
1986 pl08x->memcpy.device_prep_dma_memcpy = pl08x_prep_dma_memcpy;
1987 pl08x->memcpy.device_prep_dma_interrupt = pl08x_prep_dma_interrupt;
1988 pl08x->memcpy.device_tx_status = pl08x_dma_tx_status;
1989 pl08x->memcpy.device_issue_pending = pl08x_issue_pending;
1990 pl08x->memcpy.device_control = pl08x_control;
1991
1992 /* Initialize slave engine */
1993 dma_cap_set(DMA_SLAVE, pl08x->slave.cap_mask);
1994 pl08x->slave.dev = &adev->dev;
1995 pl08x->slave.device_alloc_chan_resources = pl08x_alloc_chan_resources;
1996 pl08x->slave.device_free_chan_resources = pl08x_free_chan_resources;
1997 pl08x->slave.device_prep_dma_interrupt = pl08x_prep_dma_interrupt;
1998 pl08x->slave.device_tx_status = pl08x_dma_tx_status;
1999 pl08x->slave.device_issue_pending = pl08x_issue_pending;
2000 pl08x->slave.device_prep_slave_sg = pl08x_prep_slave_sg;
2001 pl08x->slave.device_control = pl08x_control;
2002
2003 /* Get the platform data */
2004 pl08x->pd = dev_get_platdata(&adev->dev);
2005 if (!pl08x->pd) {
2006 dev_err(&adev->dev, "no platform data supplied\n");
2007 goto out_no_platdata;
2008 }
2009
2010 /* Assign useful pointers to the driver state */
2011 pl08x->adev = adev;
2012 pl08x->vd = vd;
2013
Russell King - ARM Linux30749cb2011-01-03 22:41:13 +00002014 /* By default, AHB1 only. If dualmaster, from platform */
2015 pl08x->lli_buses = PL08X_AHB1;
2016 pl08x->mem_buses = PL08X_AHB1;
2017 if (pl08x->vd->dualmaster) {
2018 pl08x->lli_buses = pl08x->pd->lli_buses;
2019 pl08x->mem_buses = pl08x->pd->mem_buses;
2020 }
2021
Linus Walleije8689e62010-09-28 15:57:37 +02002022 /* A DMA memory pool for LLIs, align on 1-byte boundary */
2023 pl08x->pool = dma_pool_create(DRIVER_NAME, &pl08x->adev->dev,
2024 PL08X_LLI_TSFR_SIZE, PL08X_ALIGN, 0);
2025 if (!pl08x->pool) {
2026 ret = -ENOMEM;
2027 goto out_no_lli_pool;
2028 }
2029
Linus Walleije8689e62010-09-28 15:57:37 +02002030 pl08x->base = ioremap(adev->res.start, resource_size(&adev->res));
2031 if (!pl08x->base) {
2032 ret = -ENOMEM;
2033 goto out_no_ioremap;
2034 }
2035
2036 /* Turn on the PL08x */
2037 pl08x_ensure_on(pl08x);
2038
Russell King - ARM Linux94ae8522011-01-16 20:18:05 +00002039 /* Attach the interrupt handler */
Linus Walleije8689e62010-09-28 15:57:37 +02002040 writel(0x000000FF, pl08x->base + PL080_ERR_CLEAR);
2041 writel(0x000000FF, pl08x->base + PL080_TC_CLEAR);
2042
2043 ret = request_irq(adev->irq[0], pl08x_irq, IRQF_DISABLED,
Russell King - ARM Linuxb05cd8f2011-01-03 22:33:26 +00002044 DRIVER_NAME, pl08x);
Linus Walleije8689e62010-09-28 15:57:37 +02002045 if (ret) {
2046 dev_err(&adev->dev, "%s failed to request interrupt %d\n",
2047 __func__, adev->irq[0]);
2048 goto out_no_irq;
2049 }
2050
2051 /* Initialize physical channels */
Linus Walleijaffa1152012-04-12 09:01:49 +02002052 pl08x->phy_chans = kzalloc((vd->channels * sizeof(*pl08x->phy_chans)),
Linus Walleije8689e62010-09-28 15:57:37 +02002053 GFP_KERNEL);
2054 if (!pl08x->phy_chans) {
2055 dev_err(&adev->dev, "%s failed to allocate "
2056 "physical channel holders\n",
2057 __func__);
2058 goto out_no_phychans;
2059 }
2060
2061 for (i = 0; i < vd->channels; i++) {
2062 struct pl08x_phy_chan *ch = &pl08x->phy_chans[i];
2063
2064 ch->id = i;
2065 ch->base = pl08x->base + PL080_Cx_BASE(i);
2066 spin_lock_init(&ch->lock);
Linus Walleijaffa1152012-04-12 09:01:49 +02002067
2068 /*
2069 * Nomadik variants can have channels that are locked
2070 * down for the secure world only. Lock up these channels
2071 * by perpetually serving a dummy virtual channel.
2072 */
2073 if (vd->nomadik) {
2074 u32 val;
2075
2076 val = readl(ch->base + PL080_CH_CONFIG);
2077 if (val & (PL080N_CONFIG_ITPROT | PL080N_CONFIG_SECPROT)) {
2078 dev_info(&adev->dev, "physical channel %d reserved for secure access only\n", i);
2079 ch->locked = true;
2080 }
2081 }
2082
Viresh Kumar175a5e62011-08-05 15:32:32 +05302083 dev_dbg(&adev->dev, "physical channel %d is %s\n",
2084 i, pl08x_phy_channel_busy(ch) ? "BUSY" : "FREE");
Linus Walleije8689e62010-09-28 15:57:37 +02002085 }
2086
2087 /* Register as many memcpy channels as there are physical channels */
2088 ret = pl08x_dma_init_virtual_channels(pl08x, &pl08x->memcpy,
2089 pl08x->vd->channels, false);
2090 if (ret <= 0) {
2091 dev_warn(&pl08x->adev->dev,
2092 "%s failed to enumerate memcpy channels - %d\n",
2093 __func__, ret);
2094 goto out_no_memcpy;
2095 }
2096 pl08x->memcpy.chancnt = ret;
2097
2098 /* Register slave channels */
2099 ret = pl08x_dma_init_virtual_channels(pl08x, &pl08x->slave,
Viresh Kumar3e27ee82011-08-05 15:32:27 +05302100 pl08x->pd->num_slave_channels, true);
Linus Walleije8689e62010-09-28 15:57:37 +02002101 if (ret <= 0) {
2102 dev_warn(&pl08x->adev->dev,
2103 "%s failed to enumerate slave channels - %d\n",
2104 __func__, ret);
2105 goto out_no_slave;
2106 }
2107 pl08x->slave.chancnt = ret;
2108
2109 ret = dma_async_device_register(&pl08x->memcpy);
2110 if (ret) {
2111 dev_warn(&pl08x->adev->dev,
2112 "%s failed to register memcpy as an async device - %d\n",
2113 __func__, ret);
2114 goto out_no_memcpy_reg;
2115 }
2116
2117 ret = dma_async_device_register(&pl08x->slave);
2118 if (ret) {
2119 dev_warn(&pl08x->adev->dev,
2120 "%s failed to register slave as an async device - %d\n",
2121 __func__, ret);
2122 goto out_no_slave_reg;
2123 }
2124
2125 amba_set_drvdata(adev, pl08x);
2126 init_pl08x_debugfs(pl08x);
Russell King - ARM Linuxb05cd8f2011-01-03 22:33:26 +00002127 dev_info(&pl08x->adev->dev, "DMA: PL%03x rev%u at 0x%08llx irq %d\n",
2128 amba_part(adev), amba_rev(adev),
2129 (unsigned long long)adev->res.start, adev->irq[0]);
Viresh Kumarb7b60182011-08-05 15:32:33 +05302130
Linus Walleije8689e62010-09-28 15:57:37 +02002131 return 0;
2132
2133out_no_slave_reg:
2134 dma_async_device_unregister(&pl08x->memcpy);
2135out_no_memcpy_reg:
2136 pl08x_free_virtual_channels(&pl08x->slave);
2137out_no_slave:
2138 pl08x_free_virtual_channels(&pl08x->memcpy);
2139out_no_memcpy:
2140 kfree(pl08x->phy_chans);
2141out_no_phychans:
2142 free_irq(adev->irq[0], pl08x);
2143out_no_irq:
2144 iounmap(pl08x->base);
2145out_no_ioremap:
2146 dma_pool_destroy(pl08x->pool);
2147out_no_lli_pool:
2148out_no_platdata:
2149 kfree(pl08x);
2150out_no_pl08x:
2151 amba_release_regions(adev);
2152 return ret;
2153}
2154
2155/* PL080 has 8 channels and the PL080 have just 2 */
2156static struct vendor_data vendor_pl080 = {
Linus Walleije8689e62010-09-28 15:57:37 +02002157 .channels = 8,
2158 .dualmaster = true,
2159};
2160
Linus Walleijaffa1152012-04-12 09:01:49 +02002161static struct vendor_data vendor_nomadik = {
2162 .channels = 8,
2163 .dualmaster = true,
2164 .nomadik = true,
2165};
2166
Linus Walleije8689e62010-09-28 15:57:37 +02002167static struct vendor_data vendor_pl081 = {
Linus Walleije8689e62010-09-28 15:57:37 +02002168 .channels = 2,
2169 .dualmaster = false,
2170};
2171
2172static struct amba_id pl08x_ids[] = {
2173 /* PL080 */
2174 {
2175 .id = 0x00041080,
2176 .mask = 0x000fffff,
2177 .data = &vendor_pl080,
2178 },
2179 /* PL081 */
2180 {
2181 .id = 0x00041081,
2182 .mask = 0x000fffff,
2183 .data = &vendor_pl081,
2184 },
2185 /* Nomadik 8815 PL080 variant */
2186 {
Linus Walleijaffa1152012-04-12 09:01:49 +02002187 .id = 0x00280080,
Linus Walleije8689e62010-09-28 15:57:37 +02002188 .mask = 0x00ffffff,
Linus Walleijaffa1152012-04-12 09:01:49 +02002189 .data = &vendor_nomadik,
Linus Walleije8689e62010-09-28 15:57:37 +02002190 },
2191 { 0, 0 },
2192};
2193
Dave Martin037566d2011-10-05 15:15:20 +01002194MODULE_DEVICE_TABLE(amba, pl08x_ids);
2195
Linus Walleije8689e62010-09-28 15:57:37 +02002196static struct amba_driver pl08x_amba_driver = {
2197 .drv.name = DRIVER_NAME,
2198 .id_table = pl08x_ids,
2199 .probe = pl08x_probe,
2200};
2201
2202static int __init pl08x_init(void)
2203{
2204 int retval;
2205 retval = amba_driver_register(&pl08x_amba_driver);
2206 if (retval)
2207 printk(KERN_WARNING DRIVER_NAME
Russell King - ARM Linuxe8b5e112011-01-03 22:30:24 +00002208 "failed to register as an AMBA device (%d)\n",
Linus Walleije8689e62010-09-28 15:57:37 +02002209 retval);
2210 return retval;
2211}
2212subsys_initcall(pl08x_init);