blob: 9a0642805b8232a102f46cf44cc2192a565bd2c5 [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"
Russell King01d8dc62012-05-26 14:04:29 +010089#include "virt-dma.h"
Russell King - ARM Linuxd2ebfb32012-03-06 22:34:26 +000090
Linus Walleije8689e62010-09-28 15:57:37 +020091#define DRIVER_NAME "pl08xdmac"
92
Russell King - ARM Linux7703eac2011-08-31 09:34:35 +010093static struct amba_driver pl08x_amba_driver;
Russell Kingb23f2042012-05-16 10:48:44 +010094struct pl08x_driver_data;
Russell King - ARM Linux7703eac2011-08-31 09:34:35 +010095
Linus Walleije8689e62010-09-28 15:57:37 +020096/**
Russell King - ARM Linux94ae8522011-01-16 20:18:05 +000097 * struct vendor_data - vendor-specific config parameters for PL08x derivatives
Linus Walleije8689e62010-09-28 15:57:37 +020098 * @channels: the number of channels available in this variant
Russell King - ARM Linux94ae8522011-01-16 20:18:05 +000099 * @dualmaster: whether this version supports dual AHB masters or not.
Linus Walleijaffa1152012-04-12 09:01:49 +0200100 * @nomadik: whether the channels have Nomadik security extension bits
101 * that need to be checked for permission before use and some registers are
102 * missing
Linus Walleije8689e62010-09-28 15:57:37 +0200103 */
104struct vendor_data {
Linus Walleije8689e62010-09-28 15:57:37 +0200105 u8 channels;
106 bool dualmaster;
Linus Walleijaffa1152012-04-12 09:01:49 +0200107 bool nomadik;
Linus Walleije8689e62010-09-28 15:57:37 +0200108};
109
110/*
111 * PL08X private data structures
Russell King - ARM Linuxe8b5e112011-01-03 22:30:24 +0000112 * 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 +0000113 * start & end do not - their bus bit info is in cctl. Also note that these
114 * are fixed 32-bit quantities.
Linus Walleije8689e62010-09-28 15:57:37 +0200115 */
Russell King - ARM Linux7cb72ad2011-01-03 22:35:28 +0000116struct pl08x_lli {
Russell King - ARM Linuxe25761d2011-01-03 22:37:52 +0000117 u32 src;
118 u32 dst;
Russell King - ARM Linuxbfddfb42011-01-03 22:38:12 +0000119 u32 lli;
Linus Walleije8689e62010-09-28 15:57:37 +0200120 u32 cctl;
121};
122
123/**
Russell Kingb23f2042012-05-16 10:48:44 +0100124 * struct pl08x_bus_data - information of source or destination
125 * busses for a transfer
126 * @addr: current address
127 * @maxwidth: the maximum width of a transfer on this bus
128 * @buswidth: the width of this bus in bytes: 1, 2 or 4
129 */
130struct pl08x_bus_data {
131 dma_addr_t addr;
132 u8 maxwidth;
133 u8 buswidth;
134};
135
136/**
137 * struct pl08x_phy_chan - holder for the physical channels
138 * @id: physical index to this channel
139 * @lock: a lock to use when altering an instance of this struct
Russell Kingb23f2042012-05-16 10:48:44 +0100140 * @serving: the virtual channel currently being served by this physical
141 * channel
Russell Kingad0de2a2012-05-25 11:15:15 +0100142 * @locked: channel unavailable for the system, e.g. dedicated to secure
143 * world
Russell Kingb23f2042012-05-16 10:48:44 +0100144 */
145struct pl08x_phy_chan {
146 unsigned int id;
147 void __iomem *base;
148 spinlock_t lock;
Russell Kingb23f2042012-05-16 10:48:44 +0100149 struct pl08x_dma_chan *serving;
Russell Kingad0de2a2012-05-25 11:15:15 +0100150 bool locked;
Russell Kingb23f2042012-05-16 10:48:44 +0100151};
152
153/**
154 * struct pl08x_sg - structure containing data per sg
155 * @src_addr: src address of sg
156 * @dst_addr: dst address of sg
157 * @len: transfer len in bytes
158 * @node: node for txd's dsg_list
159 */
160struct pl08x_sg {
161 dma_addr_t src_addr;
162 dma_addr_t dst_addr;
163 size_t len;
164 struct list_head node;
165};
166
167/**
168 * struct pl08x_txd - wrapper for struct dma_async_tx_descriptor
Russell King01d8dc62012-05-26 14:04:29 +0100169 * @vd: virtual DMA descriptor
Russell Kingb23f2042012-05-16 10:48:44 +0100170 * @node: node for txd list for channels
171 * @dsg_list: list of children sg's
Russell Kingb23f2042012-05-16 10:48:44 +0100172 * @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 {
Russell King01d8dc62012-05-26 14:04:29 +0100178 struct virt_dma_desc vd;
Russell Kingb23f2042012-05-16 10:48:44 +0100179 struct list_head node;
180 struct list_head dsg_list;
Russell Kingb23f2042012-05-16 10:48:44 +0100181 dma_addr_t llis_bus;
182 struct pl08x_lli *llis_va;
183 /* Default cctl value for LLIs */
184 u32 cctl;
185 /*
186 * Settings to be put into the physical channel when we
187 * trigger this txd. Other registers are in llis_va[0].
188 */
189 u32 ccfg;
190};
191
192/**
193 * struct pl08x_dma_chan_state - holds the PL08x specific virtual channel
194 * states
195 * @PL08X_CHAN_IDLE: the channel is idle
196 * @PL08X_CHAN_RUNNING: the channel has allocated a physical transport
197 * channel and is running a transfer on it
198 * @PL08X_CHAN_PAUSED: the channel has allocated a physical transport
199 * channel, but the transfer is currently paused
200 * @PL08X_CHAN_WAITING: the channel is waiting for a physical transport
201 * channel to become available (only pertains to memcpy channels)
202 */
203enum pl08x_dma_chan_state {
204 PL08X_CHAN_IDLE,
205 PL08X_CHAN_RUNNING,
206 PL08X_CHAN_PAUSED,
207 PL08X_CHAN_WAITING,
208};
209
210/**
211 * struct pl08x_dma_chan - this structure wraps a DMA ENGINE channel
Russell King01d8dc62012-05-26 14:04:29 +0100212 * @vc: wrappped virtual channel
Russell Kingb23f2042012-05-16 10:48:44 +0100213 * @phychan: the physical channel utilized by this channel, if there is one
Russell Kingb23f2042012-05-16 10:48:44 +0100214 * @tasklet: tasklet scheduled by the IRQ to handle actual work etc
215 * @name: name of channel
216 * @cd: channel platform data
217 * @runtime_addr: address for RX/TX according to the runtime config
Russell Kingb23f2042012-05-16 10:48:44 +0100218 * @pend_list: queued transactions pending on this channel
Russell Kingea160562012-05-25 13:10:36 +0100219 * @issued_list: issued transactions for this channel
Russell Kinga936e792012-05-25 10:51:19 +0100220 * @done_list: list of completed transactions
Russell Kingb23f2042012-05-16 10:48:44 +0100221 * @at: active transaction on this channel
222 * @lock: a lock for this channel data
223 * @host: a pointer to the host (internal use)
224 * @state: whether the channel is idle, paused, running etc
225 * @slave: whether this channel is a device (slave) or for memcpy
Russell Kingad0de2a2012-05-25 11:15:15 +0100226 * @signal: the physical DMA request signal which this channel is using
Russell King5e2479b2012-05-25 11:32:45 +0100227 * @mux_use: count of descriptors using this DMA request signal setting
Russell Kingb23f2042012-05-16 10:48:44 +0100228 */
229struct pl08x_dma_chan {
Russell King01d8dc62012-05-26 14:04:29 +0100230 struct virt_dma_chan vc;
Russell Kingb23f2042012-05-16 10:48:44 +0100231 struct pl08x_phy_chan *phychan;
Russell Kingb23f2042012-05-16 10:48:44 +0100232 struct tasklet_struct tasklet;
Russell King550ec362012-05-28 10:18:55 +0100233 const char *name;
Russell Kingb23f2042012-05-16 10:48:44 +0100234 const struct pl08x_channel_data *cd;
Russell Kinged91c132012-05-16 11:02:40 +0100235 struct dma_slave_config cfg;
Russell Kingb23f2042012-05-16 10:48:44 +0100236 struct list_head pend_list;
Russell Kingea160562012-05-25 13:10:36 +0100237 struct list_head issued_list;
Russell Kinga936e792012-05-25 10:51:19 +0100238 struct list_head done_list;
Russell Kingb23f2042012-05-16 10:48:44 +0100239 struct pl08x_txd *at;
240 spinlock_t lock;
241 struct pl08x_driver_data *host;
242 enum pl08x_dma_chan_state state;
243 bool slave;
Russell Kingad0de2a2012-05-25 11:15:15 +0100244 int signal;
Russell King5e2479b2012-05-25 11:32:45 +0100245 unsigned mux_use;
Russell Kingb23f2042012-05-16 10:48:44 +0100246};
247
248/**
Linus Walleije8689e62010-09-28 15:57:37 +0200249 * struct pl08x_driver_data - the local state holder for the PL08x
250 * @slave: slave engine for this instance
251 * @memcpy: memcpy engine for this instance
252 * @base: virtual memory base (remapped) for the PL08x
253 * @adev: the corresponding AMBA (PrimeCell) bus entry
254 * @vd: vendor data for this PL08x variant
255 * @pd: platform data passed in from the platform/machine
256 * @phy_chans: array of data for the physical channels
257 * @pool: a pool for the LLI descriptors
258 * @pool_ctr: counter of LLIs in the pool
Viresh Kumar3e27ee82011-08-05 15:32:27 +0530259 * @lli_buses: bitmask to or in to LLI pointer selecting AHB port for LLI
260 * fetches
Russell King - ARM Linux30749cb2011-01-03 22:41:13 +0000261 * @mem_buses: set to indicate memory transfers on AHB2.
Linus Walleije8689e62010-09-28 15:57:37 +0200262 * @lock: a spinlock for this struct
263 */
264struct pl08x_driver_data {
265 struct dma_device slave;
266 struct dma_device memcpy;
267 void __iomem *base;
268 struct amba_device *adev;
Russell King - ARM Linuxf96ca9ec2011-01-03 22:35:08 +0000269 const struct vendor_data *vd;
Linus Walleije8689e62010-09-28 15:57:37 +0200270 struct pl08x_platform_data *pd;
271 struct pl08x_phy_chan *phy_chans;
272 struct dma_pool *pool;
273 int pool_ctr;
Russell King - ARM Linux30749cb2011-01-03 22:41:13 +0000274 u8 lli_buses;
275 u8 mem_buses;
Linus Walleije8689e62010-09-28 15:57:37 +0200276};
277
278/*
279 * PL08X specific defines
280 */
281
Linus Walleije8689e62010-09-28 15:57:37 +0200282/* Size (bytes) of each LLI buffer allocated for one transfer */
283# define PL08X_LLI_TSFR_SIZE 0x2000
284
Russell King - ARM Linuxe8b5e112011-01-03 22:30:24 +0000285/* Maximum times we call dma_pool_alloc on this pool without freeing */
Russell King - ARM Linux7cb72ad2011-01-03 22:35:28 +0000286#define MAX_NUM_TSFR_LLIS (PL08X_LLI_TSFR_SIZE/sizeof(struct pl08x_lli))
Linus Walleije8689e62010-09-28 15:57:37 +0200287#define PL08X_ALIGN 8
288
289static inline struct pl08x_dma_chan *to_pl08x_chan(struct dma_chan *chan)
290{
Russell King01d8dc62012-05-26 14:04:29 +0100291 return container_of(chan, struct pl08x_dma_chan, vc.chan);
Linus Walleije8689e62010-09-28 15:57:37 +0200292}
293
Russell King - ARM Linux501e67e2011-01-03 22:44:57 +0000294static inline struct pl08x_txd *to_pl08x_txd(struct dma_async_tx_descriptor *tx)
295{
Russell King01d8dc62012-05-26 14:04:29 +0100296 return container_of(tx, struct pl08x_txd, vd.tx);
Russell King - ARM Linux501e67e2011-01-03 22:44:57 +0000297}
298
Linus Walleije8689e62010-09-28 15:57:37 +0200299/*
Russell King6b16c8b2012-05-25 11:10:58 +0100300 * Mux handling.
301 *
302 * This gives us the DMA request input to the PL08x primecell which the
303 * peripheral described by the channel data will be routed to, possibly
304 * via a board/SoC specific external MUX. One important point to note
305 * here is that this does not depend on the physical channel.
306 */
Russell Kingad0de2a2012-05-25 11:15:15 +0100307static int pl08x_request_mux(struct pl08x_dma_chan *plchan)
Russell King6b16c8b2012-05-25 11:10:58 +0100308{
309 const struct pl08x_platform_data *pd = plchan->host->pd;
310 int ret;
311
Russell King5e2479b2012-05-25 11:32:45 +0100312 if (plchan->mux_use++ == 0 && pd->get_signal) {
Russell King6b16c8b2012-05-25 11:10:58 +0100313 ret = pd->get_signal(plchan->cd);
Russell King5e2479b2012-05-25 11:32:45 +0100314 if (ret < 0) {
315 plchan->mux_use = 0;
Russell King6b16c8b2012-05-25 11:10:58 +0100316 return ret;
Russell King5e2479b2012-05-25 11:32:45 +0100317 }
Russell King6b16c8b2012-05-25 11:10:58 +0100318
Russell Kingad0de2a2012-05-25 11:15:15 +0100319 plchan->signal = ret;
Russell King6b16c8b2012-05-25 11:10:58 +0100320 }
321 return 0;
322}
323
324static void pl08x_release_mux(struct pl08x_dma_chan *plchan)
325{
326 const struct pl08x_platform_data *pd = plchan->host->pd;
327
Russell King5e2479b2012-05-25 11:32:45 +0100328 if (plchan->signal >= 0) {
329 WARN_ON(plchan->mux_use == 0);
330
331 if (--plchan->mux_use == 0 && pd->put_signal) {
332 pd->put_signal(plchan->cd, plchan->signal);
333 plchan->signal = -1;
334 }
Russell King6b16c8b2012-05-25 11:10:58 +0100335 }
336}
337
338/*
Linus Walleije8689e62010-09-28 15:57:37 +0200339 * Physical channel handling
340 */
341
342/* Whether a certain channel is busy or not */
343static int pl08x_phy_channel_busy(struct pl08x_phy_chan *ch)
344{
345 unsigned int val;
346
347 val = readl(ch->base + PL080_CH_CONFIG);
348 return val & PL080_CONFIG_ACTIVE;
349}
350
351/*
352 * Set the initial DMA register values i.e. those for the first LLI
Russell King - ARM Linuxe8b5e112011-01-03 22:30:24 +0000353 * The next LLI pointer and the configuration interrupt bit have
Russell King - ARM Linuxc885bee2011-01-03 22:38:52 +0000354 * been set when the LLIs were constructed. Poke them into the hardware
355 * and start the transfer.
Linus Walleije8689e62010-09-28 15:57:37 +0200356 */
Russell Kingeab82532012-05-25 12:32:00 +0100357static void pl08x_start_next_txd(struct pl08x_dma_chan *plchan)
Linus Walleije8689e62010-09-28 15:57:37 +0200358{
Russell King - ARM Linuxc885bee2011-01-03 22:38:52 +0000359 struct pl08x_driver_data *pl08x = plchan->host;
Linus Walleije8689e62010-09-28 15:57:37 +0200360 struct pl08x_phy_chan *phychan = plchan->phychan;
Russell Kingeab82532012-05-25 12:32:00 +0100361 struct pl08x_lli *lli;
362 struct pl08x_txd *txd;
Russell King - ARM Linux09b3c322011-01-03 22:39:53 +0000363 u32 val;
Russell King - ARM Linuxc885bee2011-01-03 22:38:52 +0000364
Russell Kingea160562012-05-25 13:10:36 +0100365 txd = list_first_entry(&plchan->issued_list, struct pl08x_txd, node);
Russell Kingeab82532012-05-25 12:32:00 +0100366 list_del(&txd->node);
367
Russell King - ARM Linuxc885bee2011-01-03 22:38:52 +0000368 plchan->at = txd;
Linus Walleije8689e62010-09-28 15:57:37 +0200369
Russell King - ARM Linuxc885bee2011-01-03 22:38:52 +0000370 /* Wait for channel inactive */
371 while (pl08x_phy_channel_busy(phychan))
Russell King - ARM Linux19386b322011-01-03 22:36:29 +0000372 cpu_relax();
Linus Walleije8689e62010-09-28 15:57:37 +0200373
Russell Kingeab82532012-05-25 12:32:00 +0100374 lli = &txd->llis_va[0];
375
Russell King - ARM Linuxc885bee2011-01-03 22:38:52 +0000376 dev_vdbg(&pl08x->adev->dev,
377 "WRITE channel %d: csrc=0x%08x, cdst=0x%08x, "
Russell King - ARM Linux19524d72011-01-03 22:39:13 +0000378 "clli=0x%08x, cctl=0x%08x, ccfg=0x%08x\n",
379 phychan->id, lli->src, lli->dst, lli->lli, lli->cctl,
Russell King - ARM Linux09b3c322011-01-03 22:39:53 +0000380 txd->ccfg);
Linus Walleije8689e62010-09-28 15:57:37 +0200381
Russell King - ARM Linux19524d72011-01-03 22:39:13 +0000382 writel(lli->src, phychan->base + PL080_CH_SRC_ADDR);
383 writel(lli->dst, phychan->base + PL080_CH_DST_ADDR);
384 writel(lli->lli, phychan->base + PL080_CH_LLI);
385 writel(lli->cctl, phychan->base + PL080_CH_CONTROL);
Russell King - ARM Linux09b3c322011-01-03 22:39:53 +0000386 writel(txd->ccfg, phychan->base + PL080_CH_CONFIG);
Russell King - ARM Linuxc885bee2011-01-03 22:38:52 +0000387
388 /* Enable the DMA channel */
389 /* Do not access config register until channel shows as disabled */
390 while (readl(pl08x->base + PL080_EN_CHAN) & (1 << phychan->id))
391 cpu_relax();
392
393 /* Do not access config register until channel shows as inactive */
394 val = readl(phychan->base + PL080_CH_CONFIG);
395 while ((val & PL080_CONFIG_ACTIVE) || (val & PL080_CONFIG_ENABLE))
396 val = readl(phychan->base + PL080_CH_CONFIG);
397
398 writel(val | PL080_CONFIG_ENABLE, phychan->base + PL080_CH_CONFIG);
Linus Walleije8689e62010-09-28 15:57:37 +0200399}
400
401/*
Russell King - ARM Linux81796612011-01-27 12:37:44 +0000402 * Pause the channel by setting the HALT bit.
Linus Walleije8689e62010-09-28 15:57:37 +0200403 *
Russell King - ARM Linux81796612011-01-27 12:37:44 +0000404 * For M->P transfers, pause the DMAC first and then stop the peripheral -
405 * the FIFO can only drain if the peripheral is still requesting data.
406 * (note: this can still timeout if the DMAC FIFO never drains of data.)
Linus Walleije8689e62010-09-28 15:57:37 +0200407 *
Russell King - ARM Linux81796612011-01-27 12:37:44 +0000408 * For P->M transfers, disable the peripheral first to stop it filling
409 * the DMAC FIFO, and then pause the DMAC.
Linus Walleije8689e62010-09-28 15:57:37 +0200410 */
411static void pl08x_pause_phy_chan(struct pl08x_phy_chan *ch)
412{
413 u32 val;
Russell King - ARM Linux81796612011-01-27 12:37:44 +0000414 int timeout;
Linus Walleije8689e62010-09-28 15:57:37 +0200415
416 /* Set the HALT bit and wait for the FIFO to drain */
417 val = readl(ch->base + PL080_CH_CONFIG);
418 val |= PL080_CONFIG_HALT;
419 writel(val, ch->base + PL080_CH_CONFIG);
420
421 /* Wait for channel inactive */
Russell King - ARM Linux81796612011-01-27 12:37:44 +0000422 for (timeout = 1000; timeout; timeout--) {
423 if (!pl08x_phy_channel_busy(ch))
424 break;
425 udelay(1);
426 }
427 if (pl08x_phy_channel_busy(ch))
428 pr_err("pl08x: channel%u timeout waiting for pause\n", ch->id);
Linus Walleije8689e62010-09-28 15:57:37 +0200429}
430
431static void pl08x_resume_phy_chan(struct pl08x_phy_chan *ch)
432{
433 u32 val;
434
435 /* Clear the HALT bit */
436 val = readl(ch->base + PL080_CH_CONFIG);
437 val &= ~PL080_CONFIG_HALT;
438 writel(val, ch->base + PL080_CH_CONFIG);
439}
440
Russell King - ARM Linuxfb526212011-01-27 12:32:53 +0000441/*
442 * pl08x_terminate_phy_chan() stops the channel, clears the FIFO and
443 * clears any pending interrupt status. This should not be used for
444 * an on-going transfer, but as a method of shutting down a channel
445 * (eg, when it's no longer used) or terminating a transfer.
446 */
447static void pl08x_terminate_phy_chan(struct pl08x_driver_data *pl08x,
448 struct pl08x_phy_chan *ch)
Linus Walleije8689e62010-09-28 15:57:37 +0200449{
Russell King - ARM Linuxfb526212011-01-27 12:32:53 +0000450 u32 val = readl(ch->base + PL080_CH_CONFIG);
Linus Walleije8689e62010-09-28 15:57:37 +0200451
Russell King - ARM Linuxfb526212011-01-27 12:32:53 +0000452 val &= ~(PL080_CONFIG_ENABLE | PL080_CONFIG_ERR_IRQ_MASK |
453 PL080_CONFIG_TC_IRQ_MASK);
Linus Walleije8689e62010-09-28 15:57:37 +0200454
Linus Walleije8689e62010-09-28 15:57:37 +0200455 writel(val, ch->base + PL080_CH_CONFIG);
Russell King - ARM Linuxfb526212011-01-27 12:32:53 +0000456
457 writel(1 << ch->id, pl08x->base + PL080_ERR_CLEAR);
458 writel(1 << ch->id, pl08x->base + PL080_TC_CLEAR);
Linus Walleije8689e62010-09-28 15:57:37 +0200459}
460
461static inline u32 get_bytes_in_cctl(u32 cctl)
462{
463 /* The source width defines the number of bytes */
464 u32 bytes = cctl & PL080_CONTROL_TRANSFER_SIZE_MASK;
465
466 switch (cctl >> PL080_CONTROL_SWIDTH_SHIFT) {
467 case PL080_WIDTH_8BIT:
468 break;
469 case PL080_WIDTH_16BIT:
470 bytes *= 2;
471 break;
472 case PL080_WIDTH_32BIT:
473 bytes *= 4;
474 break;
475 }
476 return bytes;
477}
478
479/* The channel should be paused when calling this */
480static u32 pl08x_getbytes_chan(struct pl08x_dma_chan *plchan)
481{
482 struct pl08x_phy_chan *ch;
Linus Walleije8689e62010-09-28 15:57:37 +0200483 struct pl08x_txd *txd;
484 unsigned long flags;
Russell King - ARM Linuxcace6582011-01-03 22:37:31 +0000485 size_t bytes = 0;
Linus Walleije8689e62010-09-28 15:57:37 +0200486
487 spin_lock_irqsave(&plchan->lock, flags);
Linus Walleije8689e62010-09-28 15:57:37 +0200488 ch = plchan->phychan;
489 txd = plchan->at;
490
491 /*
Russell King - ARM Linuxdb9f1362011-01-03 22:38:32 +0000492 * Follow the LLIs to get the number of remaining
493 * bytes in the currently active transaction.
Linus Walleije8689e62010-09-28 15:57:37 +0200494 */
495 if (ch && txd) {
Russell King - ARM Linux4c0df6a2011-01-03 22:36:50 +0000496 u32 clli = readl(ch->base + PL080_CH_LLI) & ~PL080_LLI_LM_AHB2;
Linus Walleije8689e62010-09-28 15:57:37 +0200497
Russell King - ARM Linuxdb9f1362011-01-03 22:38:32 +0000498 /* First get the remaining bytes in the active transfer */
Linus Walleije8689e62010-09-28 15:57:37 +0200499 bytes = get_bytes_in_cctl(readl(ch->base + PL080_CH_CONTROL));
500
501 if (clli) {
Russell King - ARM Linuxdb9f1362011-01-03 22:38:32 +0000502 struct pl08x_lli *llis_va = txd->llis_va;
503 dma_addr_t llis_bus = txd->llis_bus;
504 int index;
Linus Walleije8689e62010-09-28 15:57:37 +0200505
Russell King - ARM Linuxdb9f1362011-01-03 22:38:32 +0000506 BUG_ON(clli < llis_bus || clli >= llis_bus +
507 sizeof(struct pl08x_lli) * MAX_NUM_TSFR_LLIS);
Linus Walleije8689e62010-09-28 15:57:37 +0200508
Russell King - ARM Linuxdb9f1362011-01-03 22:38:32 +0000509 /*
510 * Locate the next LLI - as this is an array,
511 * it's simple maths to find.
512 */
513 index = (clli - llis_bus) / sizeof(struct pl08x_lli);
514
515 for (; index < MAX_NUM_TSFR_LLIS; index++) {
516 bytes += get_bytes_in_cctl(llis_va[index].cctl);
517
Linus Walleije8689e62010-09-28 15:57:37 +0200518 /*
Russell King - ARM Linuxe8b5e112011-01-03 22:30:24 +0000519 * A LLI pointer of 0 terminates the LLI list
Linus Walleije8689e62010-09-28 15:57:37 +0200520 */
Russell King - ARM Linuxdb9f1362011-01-03 22:38:32 +0000521 if (!llis_va[index].lli)
522 break;
Linus Walleije8689e62010-09-28 15:57:37 +0200523 }
524 }
525 }
526
527 /* Sum up all queued transactions */
Russell Kingea160562012-05-25 13:10:36 +0100528 if (!list_empty(&plchan->issued_list)) {
529 struct pl08x_txd *txdi;
530 list_for_each_entry(txdi, &plchan->issued_list, node) {
531 struct pl08x_sg *dsg;
532 list_for_each_entry(dsg, &txd->dsg_list, node)
533 bytes += dsg->len;
534 }
535 }
536
Russell King - ARM Linux15c17232011-01-03 22:44:36 +0000537 if (!list_empty(&plchan->pend_list)) {
Russell King - ARM Linuxdb9f1362011-01-03 22:38:32 +0000538 struct pl08x_txd *txdi;
Russell King - ARM Linux15c17232011-01-03 22:44:36 +0000539 list_for_each_entry(txdi, &plchan->pend_list, node) {
Viresh Kumarb7f69d92011-08-05 15:32:43 +0530540 struct pl08x_sg *dsg;
541 list_for_each_entry(dsg, &txd->dsg_list, node)
542 bytes += dsg->len;
Linus Walleije8689e62010-09-28 15:57:37 +0200543 }
Linus Walleije8689e62010-09-28 15:57:37 +0200544 }
545
546 spin_unlock_irqrestore(&plchan->lock, flags);
547
548 return bytes;
549}
550
551/*
552 * Allocate a physical channel for a virtual channel
Russell King - ARM Linux94ae8522011-01-16 20:18:05 +0000553 *
554 * Try to locate a physical channel to be used for this transfer. If all
555 * are taken return NULL and the requester will have to cope by using
556 * some fallback PIO mode or retrying later.
Linus Walleije8689e62010-09-28 15:57:37 +0200557 */
558static struct pl08x_phy_chan *
559pl08x_get_phy_channel(struct pl08x_driver_data *pl08x,
560 struct pl08x_dma_chan *virt_chan)
561{
562 struct pl08x_phy_chan *ch = NULL;
563 unsigned long flags;
564 int i;
565
Linus Walleije8689e62010-09-28 15:57:37 +0200566 for (i = 0; i < pl08x->vd->channels; i++) {
567 ch = &pl08x->phy_chans[i];
568
569 spin_lock_irqsave(&ch->lock, flags);
570
Linus Walleijaffa1152012-04-12 09:01:49 +0200571 if (!ch->locked && !ch->serving) {
Linus Walleije8689e62010-09-28 15:57:37 +0200572 ch->serving = virt_chan;
Linus Walleije8689e62010-09-28 15:57:37 +0200573 spin_unlock_irqrestore(&ch->lock, flags);
574 break;
575 }
576
577 spin_unlock_irqrestore(&ch->lock, flags);
578 }
579
580 if (i == pl08x->vd->channels) {
581 /* No physical channel available, cope with it */
582 return NULL;
583 }
584
585 return ch;
586}
587
Russell Kinga5a488d2012-05-26 13:54:15 +0100588/* Mark the physical channel as free. Note, this write is atomic. */
Linus Walleije8689e62010-09-28 15:57:37 +0200589static inline void pl08x_put_phy_channel(struct pl08x_driver_data *pl08x,
590 struct pl08x_phy_chan *ch)
591{
Linus Walleije8689e62010-09-28 15:57:37 +0200592 ch->serving = NULL;
Russell Kinga5a488d2012-05-26 13:54:15 +0100593}
594
595/*
596 * Try to allocate a physical channel. When successful, assign it to
597 * this virtual channel, and initiate the next descriptor. The
598 * virtual channel lock must be held at this point.
599 */
600static void pl08x_phy_alloc_and_start(struct pl08x_dma_chan *plchan)
601{
602 struct pl08x_driver_data *pl08x = plchan->host;
603 struct pl08x_phy_chan *ch;
604
605 ch = pl08x_get_phy_channel(pl08x, plchan);
606 if (!ch) {
607 dev_dbg(&pl08x->adev->dev, "no physical channel available for xfer on %s\n", plchan->name);
608 plchan->state = PL08X_CHAN_WAITING;
609 return;
610 }
611
612 dev_dbg(&pl08x->adev->dev, "allocated physical channel %d for xfer on %s\n",
613 ch->id, plchan->name);
614
615 plchan->phychan = ch;
616 plchan->state = PL08X_CHAN_RUNNING;
617 pl08x_start_next_txd(plchan);
618}
619
620static void pl08x_phy_reassign_start(struct pl08x_phy_chan *ch,
621 struct pl08x_dma_chan *plchan)
622{
623 struct pl08x_driver_data *pl08x = plchan->host;
624
625 dev_dbg(&pl08x->adev->dev, "reassigned physical channel %d for xfer on %s\n",
626 ch->id, plchan->name);
627
628 /*
629 * We do this without taking the lock; we're really only concerned
630 * about whether this pointer is NULL or not, and we're guaranteed
631 * that this will only be called when it _already_ is non-NULL.
632 */
633 ch->serving = plchan;
634 plchan->phychan = ch;
635 plchan->state = PL08X_CHAN_RUNNING;
636 pl08x_start_next_txd(plchan);
637}
638
639/*
640 * Free a physical DMA channel, potentially reallocating it to another
641 * virtual channel if we have any pending.
642 */
643static void pl08x_phy_free(struct pl08x_dma_chan *plchan)
644{
645 struct pl08x_driver_data *pl08x = plchan->host;
646 struct pl08x_dma_chan *p, *next;
647
648 retry:
649 next = NULL;
650
651 /* Find a waiting virtual channel for the next transfer. */
Russell King01d8dc62012-05-26 14:04:29 +0100652 list_for_each_entry(p, &pl08x->memcpy.channels, vc.chan.device_node)
Russell Kinga5a488d2012-05-26 13:54:15 +0100653 if (p->state == PL08X_CHAN_WAITING) {
654 next = p;
655 break;
656 }
657
658 if (!next) {
Russell King01d8dc62012-05-26 14:04:29 +0100659 list_for_each_entry(p, &pl08x->slave.channels, vc.chan.device_node)
Russell Kinga5a488d2012-05-26 13:54:15 +0100660 if (p->state == PL08X_CHAN_WAITING) {
661 next = p;
662 break;
663 }
664 }
665
666 /* Ensure that the physical channel is stopped */
667 pl08x_terminate_phy_chan(pl08x, plchan->phychan);
668
669 if (next) {
670 bool success;
671
672 /*
673 * Eww. We know this isn't going to deadlock
674 * but lockdep probably doesn't.
675 */
676 spin_lock(&next->lock);
677 /* Re-check the state now that we have the lock */
678 success = next->state == PL08X_CHAN_WAITING;
679 if (success)
680 pl08x_phy_reassign_start(plchan->phychan, next);
681 spin_unlock(&next->lock);
682
683 /* If the state changed, try to find another channel */
684 if (!success)
685 goto retry;
686 } else {
687 /* No more jobs, so free up the physical channel */
688 pl08x_put_phy_channel(pl08x, plchan->phychan);
689 }
690
691 plchan->phychan = NULL;
692 plchan->state = PL08X_CHAN_IDLE;
Linus Walleije8689e62010-09-28 15:57:37 +0200693}
694
695/*
696 * LLI handling
697 */
698
699static inline unsigned int pl08x_get_bytes_for_cctl(unsigned int coded)
700{
701 switch (coded) {
702 case PL080_WIDTH_8BIT:
703 return 1;
704 case PL080_WIDTH_16BIT:
705 return 2;
706 case PL080_WIDTH_32BIT:
707 return 4;
708 default:
709 break;
710 }
711 BUG();
712 return 0;
713}
714
715static inline u32 pl08x_cctl_bits(u32 cctl, u8 srcwidth, u8 dstwidth,
Russell King - ARM Linuxcace6582011-01-03 22:37:31 +0000716 size_t tsize)
Linus Walleije8689e62010-09-28 15:57:37 +0200717{
718 u32 retbits = cctl;
719
Russell King - ARM Linuxe8b5e112011-01-03 22:30:24 +0000720 /* Remove all src, dst and transfer size bits */
Linus Walleije8689e62010-09-28 15:57:37 +0200721 retbits &= ~PL080_CONTROL_DWIDTH_MASK;
722 retbits &= ~PL080_CONTROL_SWIDTH_MASK;
723 retbits &= ~PL080_CONTROL_TRANSFER_SIZE_MASK;
724
725 /* Then set the bits according to the parameters */
726 switch (srcwidth) {
727 case 1:
728 retbits |= PL080_WIDTH_8BIT << PL080_CONTROL_SWIDTH_SHIFT;
729 break;
730 case 2:
731 retbits |= PL080_WIDTH_16BIT << PL080_CONTROL_SWIDTH_SHIFT;
732 break;
733 case 4:
734 retbits |= PL080_WIDTH_32BIT << PL080_CONTROL_SWIDTH_SHIFT;
735 break;
736 default:
737 BUG();
738 break;
739 }
740
741 switch (dstwidth) {
742 case 1:
743 retbits |= PL080_WIDTH_8BIT << PL080_CONTROL_DWIDTH_SHIFT;
744 break;
745 case 2:
746 retbits |= PL080_WIDTH_16BIT << PL080_CONTROL_DWIDTH_SHIFT;
747 break;
748 case 4:
749 retbits |= PL080_WIDTH_32BIT << PL080_CONTROL_DWIDTH_SHIFT;
750 break;
751 default:
752 BUG();
753 break;
754 }
755
756 retbits |= tsize << PL080_CONTROL_TRANSFER_SIZE_SHIFT;
757 return retbits;
758}
759
Russell King - ARM Linux542361f2011-01-03 22:43:15 +0000760struct pl08x_lli_build_data {
761 struct pl08x_txd *txd;
Russell King - ARM Linux542361f2011-01-03 22:43:15 +0000762 struct pl08x_bus_data srcbus;
763 struct pl08x_bus_data dstbus;
764 size_t remainder;
Russell King - ARM Linux25c94f72011-07-21 17:11:46 +0100765 u32 lli_bus;
Russell King - ARM Linux542361f2011-01-03 22:43:15 +0000766};
767
Linus Walleije8689e62010-09-28 15:57:37 +0200768/*
Viresh Kumar0532e6f2011-08-05 15:32:31 +0530769 * Autoselect a master bus to use for the transfer. Slave will be the chosen as
770 * victim in case src & dest are not similarly aligned. i.e. If after aligning
771 * masters address with width requirements of transfer (by sending few byte by
772 * byte data), slave is still not aligned, then its width will be reduced to
773 * BYTE.
774 * - prefers the destination bus if both available
Viresh Kumar036f05f2011-08-05 15:32:41 +0530775 * - prefers bus with fixed address (i.e. peripheral)
Linus Walleije8689e62010-09-28 15:57:37 +0200776 */
Russell King - ARM Linux542361f2011-01-03 22:43:15 +0000777static void pl08x_choose_master_bus(struct pl08x_lli_build_data *bd,
778 struct pl08x_bus_data **mbus, struct pl08x_bus_data **sbus, u32 cctl)
Linus Walleije8689e62010-09-28 15:57:37 +0200779{
780 if (!(cctl & PL080_CONTROL_DST_INCR)) {
Russell King - ARM Linux542361f2011-01-03 22:43:15 +0000781 *mbus = &bd->dstbus;
782 *sbus = &bd->srcbus;
Viresh Kumar036f05f2011-08-05 15:32:41 +0530783 } else if (!(cctl & PL080_CONTROL_SRC_INCR)) {
784 *mbus = &bd->srcbus;
785 *sbus = &bd->dstbus;
Linus Walleije8689e62010-09-28 15:57:37 +0200786 } else {
Viresh Kumar036f05f2011-08-05 15:32:41 +0530787 if (bd->dstbus.buswidth >= bd->srcbus.buswidth) {
Russell King - ARM Linux542361f2011-01-03 22:43:15 +0000788 *mbus = &bd->dstbus;
789 *sbus = &bd->srcbus;
Linus Walleije8689e62010-09-28 15:57:37 +0200790 } else {
Viresh Kumar036f05f2011-08-05 15:32:41 +0530791 *mbus = &bd->srcbus;
792 *sbus = &bd->dstbus;
Linus Walleije8689e62010-09-28 15:57:37 +0200793 }
794 }
795}
796
797/*
Russell King - ARM Linux94ae8522011-01-16 20:18:05 +0000798 * Fills in one LLI for a certain transfer descriptor and advance the counter
Linus Walleije8689e62010-09-28 15:57:37 +0200799 */
Russell King - ARM Linux542361f2011-01-03 22:43:15 +0000800static void pl08x_fill_lli_for_desc(struct pl08x_lli_build_data *bd,
801 int num_llis, int len, u32 cctl)
Linus Walleije8689e62010-09-28 15:57:37 +0200802{
Russell King - ARM Linux542361f2011-01-03 22:43:15 +0000803 struct pl08x_lli *llis_va = bd->txd->llis_va;
804 dma_addr_t llis_bus = bd->txd->llis_bus;
Linus Walleije8689e62010-09-28 15:57:37 +0200805
806 BUG_ON(num_llis >= MAX_NUM_TSFR_LLIS);
807
Russell King - ARM Linux30749cb2011-01-03 22:41:13 +0000808 llis_va[num_llis].cctl = cctl;
Russell King - ARM Linux542361f2011-01-03 22:43:15 +0000809 llis_va[num_llis].src = bd->srcbus.addr;
810 llis_va[num_llis].dst = bd->dstbus.addr;
Viresh Kumar3e27ee82011-08-05 15:32:27 +0530811 llis_va[num_llis].lli = llis_bus + (num_llis + 1) *
812 sizeof(struct pl08x_lli);
Russell King - ARM Linux25c94f72011-07-21 17:11:46 +0100813 llis_va[num_llis].lli |= bd->lli_bus;
Linus Walleije8689e62010-09-28 15:57:37 +0200814
815 if (cctl & PL080_CONTROL_SRC_INCR)
Russell King - ARM Linux542361f2011-01-03 22:43:15 +0000816 bd->srcbus.addr += len;
Linus Walleije8689e62010-09-28 15:57:37 +0200817 if (cctl & PL080_CONTROL_DST_INCR)
Russell King - ARM Linux542361f2011-01-03 22:43:15 +0000818 bd->dstbus.addr += len;
Linus Walleije8689e62010-09-28 15:57:37 +0200819
Russell King - ARM Linux542361f2011-01-03 22:43:15 +0000820 BUG_ON(bd->remainder < len);
Russell King - ARM Linuxcace6582011-01-03 22:37:31 +0000821
Russell King - ARM Linux542361f2011-01-03 22:43:15 +0000822 bd->remainder -= len;
Linus Walleije8689e62010-09-28 15:57:37 +0200823}
824
Viresh Kumar03af5002011-08-05 15:32:39 +0530825static inline void prep_byte_width_lli(struct pl08x_lli_build_data *bd,
826 u32 *cctl, u32 len, int num_llis, size_t *total_bytes)
Linus Walleije8689e62010-09-28 15:57:37 +0200827{
Viresh Kumar03af5002011-08-05 15:32:39 +0530828 *cctl = pl08x_cctl_bits(*cctl, 1, 1, len);
829 pl08x_fill_lli_for_desc(bd, num_llis, len, *cctl);
830 (*total_bytes) += len;
Linus Walleije8689e62010-09-28 15:57:37 +0200831}
832
833/*
834 * This fills in the table of LLIs for the transfer descriptor
835 * Note that we assume we never have to change the burst sizes
836 * Return 0 for error
837 */
838static int pl08x_fill_llis_for_desc(struct pl08x_driver_data *pl08x,
839 struct pl08x_txd *txd)
840{
Linus Walleije8689e62010-09-28 15:57:37 +0200841 struct pl08x_bus_data *mbus, *sbus;
Russell King - ARM Linux542361f2011-01-03 22:43:15 +0000842 struct pl08x_lli_build_data bd;
Linus Walleije8689e62010-09-28 15:57:37 +0200843 int num_llis = 0;
Viresh Kumar03af5002011-08-05 15:32:39 +0530844 u32 cctl, early_bytes = 0;
Viresh Kumarb7f69d92011-08-05 15:32:43 +0530845 size_t max_bytes_per_lli, total_bytes;
Russell King - ARM Linux7cb72ad2011-01-03 22:35:28 +0000846 struct pl08x_lli *llis_va;
Viresh Kumarb7f69d92011-08-05 15:32:43 +0530847 struct pl08x_sg *dsg;
Linus Walleije8689e62010-09-28 15:57:37 +0200848
Viresh Kumar3e27ee82011-08-05 15:32:27 +0530849 txd->llis_va = dma_pool_alloc(pl08x->pool, GFP_NOWAIT, &txd->llis_bus);
Linus Walleije8689e62010-09-28 15:57:37 +0200850 if (!txd->llis_va) {
851 dev_err(&pl08x->adev->dev, "%s no memory for llis\n", __func__);
852 return 0;
853 }
854
855 pl08x->pool_ctr++;
856
Russell King - ARM Linux542361f2011-01-03 22:43:15 +0000857 bd.txd = txd;
Russell King - ARM Linux25c94f72011-07-21 17:11:46 +0100858 bd.lli_bus = (pl08x->lli_buses & PL08X_AHB2) ? PL080_LLI_LM_AHB2 : 0;
Viresh Kumarb7f69d92011-08-05 15:32:43 +0530859 cctl = txd->cctl;
Russell King - ARM Linux542361f2011-01-03 22:43:15 +0000860
Linus Walleije8689e62010-09-28 15:57:37 +0200861 /* Find maximum width of the source bus */
Russell King - ARM Linux542361f2011-01-03 22:43:15 +0000862 bd.srcbus.maxwidth =
Linus Walleije8689e62010-09-28 15:57:37 +0200863 pl08x_get_bytes_for_cctl((cctl & PL080_CONTROL_SWIDTH_MASK) >>
864 PL080_CONTROL_SWIDTH_SHIFT);
865
866 /* Find maximum width of the destination bus */
Russell King - ARM Linux542361f2011-01-03 22:43:15 +0000867 bd.dstbus.maxwidth =
Linus Walleije8689e62010-09-28 15:57:37 +0200868 pl08x_get_bytes_for_cctl((cctl & PL080_CONTROL_DWIDTH_MASK) >>
869 PL080_CONTROL_DWIDTH_SHIFT);
870
Viresh Kumarb7f69d92011-08-05 15:32:43 +0530871 list_for_each_entry(dsg, &txd->dsg_list, node) {
872 total_bytes = 0;
873 cctl = txd->cctl;
Linus Walleije8689e62010-09-28 15:57:37 +0200874
Viresh Kumarb7f69d92011-08-05 15:32:43 +0530875 bd.srcbus.addr = dsg->src_addr;
876 bd.dstbus.addr = dsg->dst_addr;
877 bd.remainder = dsg->len;
878 bd.srcbus.buswidth = bd.srcbus.maxwidth;
879 bd.dstbus.buswidth = bd.dstbus.maxwidth;
Linus Walleije8689e62010-09-28 15:57:37 +0200880
Viresh Kumarb7f69d92011-08-05 15:32:43 +0530881 pl08x_choose_master_bus(&bd, &mbus, &sbus, cctl);
Linus Walleije8689e62010-09-28 15:57:37 +0200882
Viresh Kumarb7f69d92011-08-05 15:32:43 +0530883 dev_vdbg(&pl08x->adev->dev, "src=0x%08x%s/%u dst=0x%08x%s/%u len=%zu\n",
884 bd.srcbus.addr, cctl & PL080_CONTROL_SRC_INCR ? "+" : "",
885 bd.srcbus.buswidth,
886 bd.dstbus.addr, cctl & PL080_CONTROL_DST_INCR ? "+" : "",
887 bd.dstbus.buswidth,
888 bd.remainder);
889 dev_vdbg(&pl08x->adev->dev, "mbus=%s sbus=%s\n",
890 mbus == &bd.srcbus ? "src" : "dst",
891 sbus == &bd.srcbus ? "src" : "dst");
Russell King - ARM Linuxfc74eb72011-07-21 17:12:06 +0100892
Viresh Kumarb7f69d92011-08-05 15:32:43 +0530893 /*
894 * Zero length is only allowed if all these requirements are
895 * met:
896 * - flow controller is peripheral.
897 * - src.addr is aligned to src.width
898 * - dst.addr is aligned to dst.width
899 *
900 * sg_len == 1 should be true, as there can be two cases here:
901 *
902 * - Memory addresses are contiguous and are not scattered.
903 * Here, Only one sg will be passed by user driver, with
904 * memory address and zero length. We pass this to controller
905 * and after the transfer it will receive the last burst
906 * request from peripheral and so transfer finishes.
907 *
908 * - Memory addresses are scattered and are not contiguous.
909 * Here, Obviously as DMA controller doesn't know when a lli's
910 * transfer gets over, it can't load next lli. So in this
911 * case, there has to be an assumption that only one lli is
912 * supported. Thus, we can't have scattered addresses.
913 */
914 if (!bd.remainder) {
915 u32 fc = (txd->ccfg & PL080_CONFIG_FLOW_CONTROL_MASK) >>
916 PL080_CONFIG_FLOW_CONTROL_SHIFT;
917 if (!((fc >= PL080_FLOW_SRC2DST_DST) &&
Viresh Kumar0a235652011-08-05 15:32:42 +0530918 (fc <= PL080_FLOW_SRC2DST_SRC))) {
Viresh Kumarb7f69d92011-08-05 15:32:43 +0530919 dev_err(&pl08x->adev->dev, "%s sg len can't be zero",
920 __func__);
921 return 0;
922 }
Linus Walleije8689e62010-09-28 15:57:37 +0200923
Viresh Kumarb7f69d92011-08-05 15:32:43 +0530924 if ((bd.srcbus.addr % bd.srcbus.buswidth) ||
Julia Lawall880db3f2012-01-12 22:49:29 +0100925 (bd.dstbus.addr % bd.dstbus.buswidth)) {
Viresh Kumarb7f69d92011-08-05 15:32:43 +0530926 dev_err(&pl08x->adev->dev,
927 "%s src & dst address must be aligned to src"
928 " & dst width if peripheral is flow controller",
929 __func__);
930 return 0;
931 }
Linus Walleije8689e62010-09-28 15:57:37 +0200932
Viresh Kumar16a2e7d2011-08-05 15:32:37 +0530933 cctl = pl08x_cctl_bits(cctl, bd.srcbus.buswidth,
Viresh Kumarb7f69d92011-08-05 15:32:43 +0530934 bd.dstbus.buswidth, 0);
935 pl08x_fill_lli_for_desc(&bd, num_llis++, 0, cctl);
936 break;
Linus Walleije8689e62010-09-28 15:57:37 +0200937 }
938
939 /*
Viresh Kumarb7f69d92011-08-05 15:32:43 +0530940 * Send byte by byte for following cases
941 * - Less than a bus width available
942 * - until master bus is aligned
Linus Walleije8689e62010-09-28 15:57:37 +0200943 */
Viresh Kumarb7f69d92011-08-05 15:32:43 +0530944 if (bd.remainder < mbus->buswidth)
945 early_bytes = bd.remainder;
946 else if ((mbus->addr) % (mbus->buswidth)) {
947 early_bytes = mbus->buswidth - (mbus->addr) %
948 (mbus->buswidth);
949 if ((bd.remainder - early_bytes) < mbus->buswidth)
950 early_bytes = bd.remainder;
Linus Walleije8689e62010-09-28 15:57:37 +0200951 }
Viresh Kumar16a2e7d2011-08-05 15:32:37 +0530952
Viresh Kumarb7f69d92011-08-05 15:32:43 +0530953 if (early_bytes) {
954 dev_vdbg(&pl08x->adev->dev,
955 "%s byte width LLIs (remain 0x%08x)\n",
956 __func__, bd.remainder);
957 prep_byte_width_lli(&bd, &cctl, early_bytes, num_llis++,
958 &total_bytes);
959 }
Linus Walleije8689e62010-09-28 15:57:37 +0200960
Viresh Kumarb7f69d92011-08-05 15:32:43 +0530961 if (bd.remainder) {
962 /*
963 * Master now aligned
964 * - if slave is not then we must set its width down
965 */
966 if (sbus->addr % sbus->buswidth) {
967 dev_dbg(&pl08x->adev->dev,
968 "%s set down bus width to one byte\n",
969 __func__);
970
971 sbus->buswidth = 1;
972 }
973
974 /*
975 * Bytes transferred = tsize * src width, not
976 * MIN(buswidths)
977 */
978 max_bytes_per_lli = bd.srcbus.buswidth *
979 PL080_CONTROL_TRANSFER_SIZE_MASK;
980 dev_vdbg(&pl08x->adev->dev,
981 "%s max bytes per lli = %zu\n",
982 __func__, max_bytes_per_lli);
983
984 /*
985 * Make largest possible LLIs until less than one bus
986 * width left
987 */
988 while (bd.remainder > (mbus->buswidth - 1)) {
989 size_t lli_len, tsize, width;
990
991 /*
992 * If enough left try to send max possible,
993 * otherwise try to send the remainder
994 */
995 lli_len = min(bd.remainder, max_bytes_per_lli);
996
997 /*
998 * Check against maximum bus alignment:
999 * Calculate actual transfer size in relation to
1000 * bus width an get a maximum remainder of the
1001 * highest bus width - 1
1002 */
1003 width = max(mbus->buswidth, sbus->buswidth);
1004 lli_len = (lli_len / width) * width;
1005 tsize = lli_len / bd.srcbus.buswidth;
1006
1007 dev_vdbg(&pl08x->adev->dev,
1008 "%s fill lli with single lli chunk of "
1009 "size 0x%08zx (remainder 0x%08zx)\n",
1010 __func__, lli_len, bd.remainder);
1011
1012 cctl = pl08x_cctl_bits(cctl, bd.srcbus.buswidth,
1013 bd.dstbus.buswidth, tsize);
1014 pl08x_fill_lli_for_desc(&bd, num_llis++,
1015 lli_len, cctl);
1016 total_bytes += lli_len;
1017 }
1018
1019 /*
1020 * Send any odd bytes
1021 */
1022 if (bd.remainder) {
1023 dev_vdbg(&pl08x->adev->dev,
1024 "%s align with boundary, send odd bytes (remain %zu)\n",
1025 __func__, bd.remainder);
1026 prep_byte_width_lli(&bd, &cctl, bd.remainder,
1027 num_llis++, &total_bytes);
1028 }
1029 }
1030
1031 if (total_bytes != dsg->len) {
1032 dev_err(&pl08x->adev->dev,
1033 "%s size of encoded lli:s don't match total txd, transferred 0x%08zx from size 0x%08zx\n",
1034 __func__, total_bytes, dsg->len);
1035 return 0;
1036 }
1037
1038 if (num_llis >= MAX_NUM_TSFR_LLIS) {
1039 dev_err(&pl08x->adev->dev,
1040 "%s need to increase MAX_NUM_TSFR_LLIS from 0x%08x\n",
1041 __func__, (u32) MAX_NUM_TSFR_LLIS);
1042 return 0;
1043 }
Linus Walleije8689e62010-09-28 15:57:37 +02001044 }
Linus Walleije8689e62010-09-28 15:57:37 +02001045
Russell King - ARM Linuxb58b6b52011-01-03 22:34:48 +00001046 llis_va = txd->llis_va;
Russell King - ARM Linux94ae8522011-01-16 20:18:05 +00001047 /* The final LLI terminates the LLI. */
Russell King - ARM Linuxbfddfb42011-01-03 22:38:12 +00001048 llis_va[num_llis - 1].lli = 0;
Russell King - ARM Linux94ae8522011-01-16 20:18:05 +00001049 /* The final LLI element shall also fire an interrupt. */
Russell King - ARM Linuxb58b6b52011-01-03 22:34:48 +00001050 llis_va[num_llis - 1].cctl |= PL080_CONTROL_TC_IRQ_EN;
Linus Walleije8689e62010-09-28 15:57:37 +02001051
Linus Walleije8689e62010-09-28 15:57:37 +02001052#ifdef VERBOSE_DEBUG
1053 {
1054 int i;
1055
Russell King - ARM Linuxfc74eb72011-07-21 17:12:06 +01001056 dev_vdbg(&pl08x->adev->dev,
1057 "%-3s %-9s %-10s %-10s %-10s %s\n",
1058 "lli", "", "csrc", "cdst", "clli", "cctl");
Linus Walleije8689e62010-09-28 15:57:37 +02001059 for (i = 0; i < num_llis; i++) {
1060 dev_vdbg(&pl08x->adev->dev,
Russell King - ARM Linuxfc74eb72011-07-21 17:12:06 +01001061 "%3d @%p: 0x%08x 0x%08x 0x%08x 0x%08x\n",
1062 i, &llis_va[i], llis_va[i].src,
1063 llis_va[i].dst, llis_va[i].lli, llis_va[i].cctl
Linus Walleije8689e62010-09-28 15:57:37 +02001064 );
1065 }
1066 }
1067#endif
1068
1069 return num_llis;
1070}
1071
1072/* You should call this with the struct pl08x lock held */
1073static void pl08x_free_txd(struct pl08x_driver_data *pl08x,
1074 struct pl08x_txd *txd)
1075{
Viresh Kumarb7f69d92011-08-05 15:32:43 +05301076 struct pl08x_sg *dsg, *_dsg;
1077
Linus Walleije8689e62010-09-28 15:57:37 +02001078 /* Free the LLI */
Viresh Kumarc1205642011-08-05 15:32:44 +05301079 if (txd->llis_va)
1080 dma_pool_free(pl08x->pool, txd->llis_va, txd->llis_bus);
Linus Walleije8689e62010-09-28 15:57:37 +02001081
1082 pl08x->pool_ctr--;
1083
Viresh Kumarb7f69d92011-08-05 15:32:43 +05301084 list_for_each_entry_safe(dsg, _dsg, &txd->dsg_list, node) {
1085 list_del(&dsg->node);
1086 kfree(dsg);
1087 }
1088
Linus Walleije8689e62010-09-28 15:57:37 +02001089 kfree(txd);
1090}
1091
1092static void pl08x_free_txd_list(struct pl08x_driver_data *pl08x,
1093 struct pl08x_dma_chan *plchan)
1094{
Russell Kingea160562012-05-25 13:10:36 +01001095 LIST_HEAD(head);
1096 struct pl08x_txd *txd;
Linus Walleije8689e62010-09-28 15:57:37 +02001097
Russell Kingea160562012-05-25 13:10:36 +01001098 list_splice_tail_init(&plchan->issued_list, &head);
1099 list_splice_tail_init(&plchan->pend_list, &head);
1100
1101 while (!list_empty(&head)) {
1102 txd = list_first_entry(&head, struct pl08x_txd, node);
1103 pl08x_release_mux(plchan);
1104 list_del(&txd->node);
1105 pl08x_free_txd(pl08x, txd);
Linus Walleije8689e62010-09-28 15:57:37 +02001106 }
1107}
1108
1109/*
1110 * The DMA ENGINE API
1111 */
1112static int pl08x_alloc_chan_resources(struct dma_chan *chan)
1113{
1114 return 0;
1115}
1116
1117static void pl08x_free_chan_resources(struct dma_chan *chan)
1118{
1119}
1120
Linus Walleije8689e62010-09-28 15:57:37 +02001121static dma_cookie_t pl08x_tx_submit(struct dma_async_tx_descriptor *tx)
1122{
1123 struct pl08x_dma_chan *plchan = to_pl08x_chan(tx->chan);
Russell King - ARM Linux501e67e2011-01-03 22:44:57 +00001124 struct pl08x_txd *txd = to_pl08x_txd(tx);
Russell King - ARM Linuxc370e592011-01-03 22:45:37 +00001125 unsigned long flags;
Russell King - ARM Linux884485e2012-03-06 22:34:46 +00001126 dma_cookie_t cookie;
Russell King - ARM Linuxc370e592011-01-03 22:45:37 +00001127
1128 spin_lock_irqsave(&plchan->lock, flags);
Russell King - ARM Linux884485e2012-03-06 22:34:46 +00001129 cookie = dma_cookie_assign(tx);
Russell King - ARM Linux501e67e2011-01-03 22:44:57 +00001130
1131 /* Put this onto the pending list */
1132 list_add_tail(&txd->node, &plchan->pend_list);
Russell King - ARM Linuxc370e592011-01-03 22:45:37 +00001133 spin_unlock_irqrestore(&plchan->lock, flags);
Linus Walleije8689e62010-09-28 15:57:37 +02001134
Russell King - ARM Linux884485e2012-03-06 22:34:46 +00001135 return cookie;
Linus Walleije8689e62010-09-28 15:57:37 +02001136}
1137
1138static struct dma_async_tx_descriptor *pl08x_prep_dma_interrupt(
1139 struct dma_chan *chan, unsigned long flags)
1140{
1141 struct dma_async_tx_descriptor *retval = NULL;
1142
1143 return retval;
1144}
1145
1146/*
Russell King - ARM Linux94ae8522011-01-16 20:18:05 +00001147 * Code accessing dma_async_is_complete() in a tight loop may give problems.
1148 * If slaves are relying on interrupts to signal completion this function
1149 * must not be called with interrupts disabled.
Linus Walleije8689e62010-09-28 15:57:37 +02001150 */
Viresh Kumar3e27ee82011-08-05 15:32:27 +05301151static enum dma_status pl08x_dma_tx_status(struct dma_chan *chan,
1152 dma_cookie_t cookie, struct dma_tx_state *txstate)
Linus Walleije8689e62010-09-28 15:57:37 +02001153{
1154 struct pl08x_dma_chan *plchan = to_pl08x_chan(chan);
Linus Walleije8689e62010-09-28 15:57:37 +02001155 enum dma_status ret;
Linus Walleije8689e62010-09-28 15:57:37 +02001156
Russell King - ARM Linux96a2af42012-03-06 22:35:27 +00001157 ret = dma_cookie_status(chan, cookie, txstate);
1158 if (ret == DMA_SUCCESS)
Linus Walleije8689e62010-09-28 15:57:37 +02001159 return ret;
Linus Walleije8689e62010-09-28 15:57:37 +02001160
1161 /*
Linus Walleije8689e62010-09-28 15:57:37 +02001162 * This cookie not complete yet
Russell King - ARM Linux96a2af42012-03-06 22:35:27 +00001163 * Get number of bytes left in the active transactions and queue
Linus Walleije8689e62010-09-28 15:57:37 +02001164 */
Russell King - ARM Linux96a2af42012-03-06 22:35:27 +00001165 dma_set_residue(txstate, pl08x_getbytes_chan(plchan));
Linus Walleije8689e62010-09-28 15:57:37 +02001166
1167 if (plchan->state == PL08X_CHAN_PAUSED)
1168 return DMA_PAUSED;
1169
1170 /* Whether waiting or running, we're in progress */
1171 return DMA_IN_PROGRESS;
1172}
1173
1174/* PrimeCell DMA extension */
1175struct burst_table {
Russell King - ARM Linux760596c62011-07-21 17:14:08 +01001176 u32 burstwords;
Linus Walleije8689e62010-09-28 15:57:37 +02001177 u32 reg;
1178};
1179
1180static const struct burst_table burst_sizes[] = {
1181 {
1182 .burstwords = 256,
Russell King - ARM Linux760596c62011-07-21 17:14:08 +01001183 .reg = PL080_BSIZE_256,
Linus Walleije8689e62010-09-28 15:57:37 +02001184 },
1185 {
1186 .burstwords = 128,
Russell King - ARM Linux760596c62011-07-21 17:14:08 +01001187 .reg = PL080_BSIZE_128,
Linus Walleije8689e62010-09-28 15:57:37 +02001188 },
1189 {
1190 .burstwords = 64,
Russell King - ARM Linux760596c62011-07-21 17:14:08 +01001191 .reg = PL080_BSIZE_64,
Linus Walleije8689e62010-09-28 15:57:37 +02001192 },
1193 {
1194 .burstwords = 32,
Russell King - ARM Linux760596c62011-07-21 17:14:08 +01001195 .reg = PL080_BSIZE_32,
Linus Walleije8689e62010-09-28 15:57:37 +02001196 },
1197 {
1198 .burstwords = 16,
Russell King - ARM Linux760596c62011-07-21 17:14:08 +01001199 .reg = PL080_BSIZE_16,
Linus Walleije8689e62010-09-28 15:57:37 +02001200 },
1201 {
1202 .burstwords = 8,
Russell King - ARM Linux760596c62011-07-21 17:14:08 +01001203 .reg = PL080_BSIZE_8,
Linus Walleije8689e62010-09-28 15:57:37 +02001204 },
1205 {
1206 .burstwords = 4,
Russell King - ARM Linux760596c62011-07-21 17:14:08 +01001207 .reg = PL080_BSIZE_4,
Linus Walleije8689e62010-09-28 15:57:37 +02001208 },
1209 {
Russell King - ARM Linux760596c62011-07-21 17:14:08 +01001210 .burstwords = 0,
1211 .reg = PL080_BSIZE_1,
Linus Walleije8689e62010-09-28 15:57:37 +02001212 },
1213};
1214
Russell King - ARM Linux121c8472011-07-21 17:13:48 +01001215/*
1216 * Given the source and destination available bus masks, select which
1217 * will be routed to each port. We try to have source and destination
1218 * on separate ports, but always respect the allowable settings.
1219 */
1220static u32 pl08x_select_bus(u8 src, u8 dst)
1221{
1222 u32 cctl = 0;
1223
1224 if (!(dst & PL08X_AHB1) || ((dst & PL08X_AHB2) && (src & PL08X_AHB1)))
1225 cctl |= PL080_CONTROL_DST_AHB2;
1226 if (!(src & PL08X_AHB1) || ((src & PL08X_AHB2) && !(dst & PL08X_AHB2)))
1227 cctl |= PL080_CONTROL_SRC_AHB2;
1228
1229 return cctl;
1230}
1231
Russell King - ARM Linuxf14c4262011-07-21 17:12:47 +01001232static u32 pl08x_cctl(u32 cctl)
1233{
1234 cctl &= ~(PL080_CONTROL_SRC_AHB2 | PL080_CONTROL_DST_AHB2 |
1235 PL080_CONTROL_SRC_INCR | PL080_CONTROL_DST_INCR |
1236 PL080_CONTROL_PROT_MASK);
1237
1238 /* Access the cell in privileged mode, non-bufferable, non-cacheable */
1239 return cctl | PL080_CONTROL_PROT_SYS;
1240}
1241
Russell King - ARM Linuxaa88cda2011-07-21 17:13:28 +01001242static u32 pl08x_width(enum dma_slave_buswidth width)
1243{
1244 switch (width) {
1245 case DMA_SLAVE_BUSWIDTH_1_BYTE:
1246 return PL080_WIDTH_8BIT;
1247 case DMA_SLAVE_BUSWIDTH_2_BYTES:
1248 return PL080_WIDTH_16BIT;
1249 case DMA_SLAVE_BUSWIDTH_4_BYTES:
1250 return PL080_WIDTH_32BIT;
Vinod Koulf32807f2011-07-25 19:22:01 +05301251 default:
1252 return ~0;
Russell King - ARM Linuxaa88cda2011-07-21 17:13:28 +01001253 }
Russell King - ARM Linuxaa88cda2011-07-21 17:13:28 +01001254}
1255
Russell King - ARM Linux760596c62011-07-21 17:14:08 +01001256static u32 pl08x_burst(u32 maxburst)
1257{
1258 int i;
1259
1260 for (i = 0; i < ARRAY_SIZE(burst_sizes); i++)
1261 if (burst_sizes[i].burstwords <= maxburst)
1262 break;
1263
1264 return burst_sizes[i].reg;
1265}
1266
Russell King9862ba12012-05-16 11:16:03 +01001267static u32 pl08x_get_cctl(struct pl08x_dma_chan *plchan,
1268 enum dma_slave_buswidth addr_width, u32 maxburst)
1269{
1270 u32 width, burst, cctl = 0;
1271
1272 width = pl08x_width(addr_width);
1273 if (width == ~0)
1274 return ~0;
1275
1276 cctl |= width << PL080_CONTROL_SWIDTH_SHIFT;
1277 cctl |= width << PL080_CONTROL_DWIDTH_SHIFT;
1278
1279 /*
1280 * If this channel will only request single transfers, set this
1281 * down to ONE element. Also select one element if no maxburst
1282 * is specified.
1283 */
1284 if (plchan->cd->single)
1285 maxburst = 1;
1286
1287 burst = pl08x_burst(maxburst);
1288 cctl |= burst << PL080_CONTROL_SB_SIZE_SHIFT;
1289 cctl |= burst << PL080_CONTROL_DB_SIZE_SHIFT;
1290
1291 return pl08x_cctl(cctl);
1292}
1293
Russell King - ARM Linuxf0fd9442011-01-03 22:45:57 +00001294static int dma_set_runtime_config(struct dma_chan *chan,
1295 struct dma_slave_config *config)
Linus Walleije8689e62010-09-28 15:57:37 +02001296{
1297 struct pl08x_dma_chan *plchan = to_pl08x_chan(chan);
Linus Walleije8689e62010-09-28 15:57:37 +02001298
Russell King - ARM Linuxb7f75862011-01-03 22:46:17 +00001299 if (!plchan->slave)
1300 return -EINVAL;
1301
Russell Kingdc8d5f82012-05-16 12:20:55 +01001302 /* Reject definitely invalid configurations */
1303 if (config->src_addr_width == DMA_SLAVE_BUSWIDTH_8_BYTES ||
1304 config->dst_addr_width == DMA_SLAVE_BUSWIDTH_8_BYTES)
Russell King - ARM Linuxf0fd9442011-01-03 22:45:57 +00001305 return -EINVAL;
Linus Walleije8689e62010-09-28 15:57:37 +02001306
Russell Kinged91c132012-05-16 11:02:40 +01001307 plchan->cfg = *config;
1308
Russell King - ARM Linuxf0fd9442011-01-03 22:45:57 +00001309 return 0;
Linus Walleije8689e62010-09-28 15:57:37 +02001310}
1311
1312/*
1313 * Slave transactions callback to the slave device to allow
1314 * synchronization of slave DMA signals with the DMAC enable
1315 */
1316static void pl08x_issue_pending(struct dma_chan *chan)
1317{
1318 struct pl08x_dma_chan *plchan = to_pl08x_chan(chan);
Linus Walleije8689e62010-09-28 15:57:37 +02001319 unsigned long flags;
1320
1321 spin_lock_irqsave(&plchan->lock, flags);
Russell Kingea160562012-05-25 13:10:36 +01001322 list_splice_tail_init(&plchan->pend_list, &plchan->issued_list);
Russell Kingea160562012-05-25 13:10:36 +01001323 if (!list_empty(&plchan->issued_list)) {
Russell Kinga5a488d2012-05-26 13:54:15 +01001324 if (!plchan->phychan && plchan->state != PL08X_CHAN_WAITING)
1325 pl08x_phy_alloc_and_start(plchan);
Linus Walleije8689e62010-09-28 15:57:37 +02001326 }
Linus Walleije8689e62010-09-28 15:57:37 +02001327 spin_unlock_irqrestore(&plchan->lock, flags);
1328}
1329
1330static int pl08x_prep_channel_resources(struct pl08x_dma_chan *plchan,
1331 struct pl08x_txd *txd)
1332{
Linus Walleije8689e62010-09-28 15:57:37 +02001333 struct pl08x_driver_data *pl08x = plchan->host;
Russell Kinga5a488d2012-05-26 13:54:15 +01001334 int num_llis;
Linus Walleije8689e62010-09-28 15:57:37 +02001335
1336 num_llis = pl08x_fill_llis_for_desc(pl08x, txd);
Russell King - ARM Linuxdafa7312011-01-03 22:31:45 +00001337 if (!num_llis) {
Russell Kinga5a488d2012-05-26 13:54:15 +01001338 unsigned long flags;
1339
Viresh Kumar57001a62011-08-05 15:32:45 +05301340 spin_lock_irqsave(&plchan->lock, flags);
1341 pl08x_free_txd(pl08x, txd);
1342 spin_unlock_irqrestore(&plchan->lock, flags);
Russell Kinga5a488d2012-05-26 13:54:15 +01001343
Linus Walleije8689e62010-09-28 15:57:37 +02001344 return -EINVAL;
Russell King - ARM Linuxdafa7312011-01-03 22:31:45 +00001345 }
Linus Walleije8689e62010-09-28 15:57:37 +02001346 return 0;
1347}
1348
Russell King - ARM Linuxc0428792011-01-03 22:43:56 +00001349static struct pl08x_txd *pl08x_get_txd(struct pl08x_dma_chan *plchan,
1350 unsigned long flags)
Russell King - ARM Linuxac3cd202011-01-03 22:35:49 +00001351{
Viresh Kumarb201c112011-08-05 15:32:29 +05301352 struct pl08x_txd *txd = kzalloc(sizeof(*txd), GFP_NOWAIT);
Russell King - ARM Linuxac3cd202011-01-03 22:35:49 +00001353
1354 if (txd) {
Russell King01d8dc62012-05-26 14:04:29 +01001355 dma_async_tx_descriptor_init(&txd->vd.tx, &plchan->vc.chan);
1356 txd->vd.tx.flags = flags;
1357 txd->vd.tx.tx_submit = pl08x_tx_submit;
Russell King - ARM Linuxac3cd202011-01-03 22:35:49 +00001358 INIT_LIST_HEAD(&txd->node);
Viresh Kumarb7f69d92011-08-05 15:32:43 +05301359 INIT_LIST_HEAD(&txd->dsg_list);
Russell King - ARM Linux4983a042011-01-03 22:39:33 +00001360
1361 /* Always enable error and terminal interrupts */
1362 txd->ccfg = PL080_CONFIG_ERR_IRQ_MASK |
1363 PL080_CONFIG_TC_IRQ_MASK;
Russell King - ARM Linuxac3cd202011-01-03 22:35:49 +00001364 }
1365 return txd;
1366}
1367
Linus Walleije8689e62010-09-28 15:57:37 +02001368/*
1369 * Initialize a descriptor to be used by memcpy submit
1370 */
1371static struct dma_async_tx_descriptor *pl08x_prep_dma_memcpy(
1372 struct dma_chan *chan, dma_addr_t dest, dma_addr_t src,
1373 size_t len, unsigned long flags)
1374{
1375 struct pl08x_dma_chan *plchan = to_pl08x_chan(chan);
1376 struct pl08x_driver_data *pl08x = plchan->host;
1377 struct pl08x_txd *txd;
Viresh Kumarb7f69d92011-08-05 15:32:43 +05301378 struct pl08x_sg *dsg;
Linus Walleije8689e62010-09-28 15:57:37 +02001379 int ret;
1380
Russell King - ARM Linuxc0428792011-01-03 22:43:56 +00001381 txd = pl08x_get_txd(plchan, flags);
Linus Walleije8689e62010-09-28 15:57:37 +02001382 if (!txd) {
1383 dev_err(&pl08x->adev->dev,
1384 "%s no memory for descriptor\n", __func__);
1385 return NULL;
1386 }
1387
Viresh Kumarb7f69d92011-08-05 15:32:43 +05301388 dsg = kzalloc(sizeof(struct pl08x_sg), GFP_NOWAIT);
1389 if (!dsg) {
1390 pl08x_free_txd(pl08x, txd);
1391 dev_err(&pl08x->adev->dev, "%s no memory for pl080 sg\n",
1392 __func__);
1393 return NULL;
1394 }
1395 list_add_tail(&dsg->node, &txd->dsg_list);
1396
Viresh Kumarb7f69d92011-08-05 15:32:43 +05301397 dsg->src_addr = src;
1398 dsg->dst_addr = dest;
1399 dsg->len = len;
Linus Walleije8689e62010-09-28 15:57:37 +02001400
1401 /* Set platform data for m2m */
Russell King - ARM Linux4983a042011-01-03 22:39:33 +00001402 txd->ccfg |= PL080_FLOW_MEM2MEM << PL080_CONFIG_FLOW_CONTROL_SHIFT;
Russell Kingdc8d5f82012-05-16 12:20:55 +01001403 txd->cctl = pl08x->pd->memcpy_channel.cctl_memcpy &
Russell King - ARM Linuxc7da9a52011-01-03 22:40:53 +00001404 ~(PL080_CONTROL_DST_AHB2 | PL080_CONTROL_SRC_AHB2);
Russell King - ARM Linux4983a042011-01-03 22:39:33 +00001405
Linus Walleije8689e62010-09-28 15:57:37 +02001406 /* Both to be incremented or the code will break */
Russell King - ARM Linux70b5ed62011-01-03 22:40:13 +00001407 txd->cctl |= PL080_CONTROL_SRC_INCR | PL080_CONTROL_DST_INCR;
Russell King - ARM Linuxc7da9a52011-01-03 22:40:53 +00001408
Russell King - ARM Linuxc7da9a52011-01-03 22:40:53 +00001409 if (pl08x->vd->dualmaster)
Russell King - ARM Linux121c8472011-07-21 17:13:48 +01001410 txd->cctl |= pl08x_select_bus(pl08x->mem_buses,
1411 pl08x->mem_buses);
Linus Walleije8689e62010-09-28 15:57:37 +02001412
Linus Walleije8689e62010-09-28 15:57:37 +02001413 ret = pl08x_prep_channel_resources(plchan, txd);
1414 if (ret)
1415 return NULL;
Linus Walleije8689e62010-09-28 15:57:37 +02001416
Russell King01d8dc62012-05-26 14:04:29 +01001417 return &txd->vd.tx;
Linus Walleije8689e62010-09-28 15:57:37 +02001418}
1419
Russell King - ARM Linux3e2a0372011-01-03 22:32:46 +00001420static struct dma_async_tx_descriptor *pl08x_prep_slave_sg(
Linus Walleije8689e62010-09-28 15:57:37 +02001421 struct dma_chan *chan, struct scatterlist *sgl,
Vinod Kouldb8196d2011-10-13 22:34:23 +05301422 unsigned int sg_len, enum dma_transfer_direction direction,
Alexandre Bounine185ecb52012-03-08 15:35:13 -05001423 unsigned long flags, void *context)
Linus Walleije8689e62010-09-28 15:57:37 +02001424{
1425 struct pl08x_dma_chan *plchan = to_pl08x_chan(chan);
1426 struct pl08x_driver_data *pl08x = plchan->host;
1427 struct pl08x_txd *txd;
Viresh Kumarb7f69d92011-08-05 15:32:43 +05301428 struct pl08x_sg *dsg;
1429 struct scatterlist *sg;
Russell Kingdc8d5f82012-05-16 12:20:55 +01001430 enum dma_slave_buswidth addr_width;
Viresh Kumarb7f69d92011-08-05 15:32:43 +05301431 dma_addr_t slave_addr;
Viresh Kumar0a235652011-08-05 15:32:42 +05301432 int ret, tmp;
Russell King409ec8d2012-05-16 11:08:43 +01001433 u8 src_buses, dst_buses;
Russell Kingdc8d5f82012-05-16 12:20:55 +01001434 u32 maxburst, cctl;
Linus Walleije8689e62010-09-28 15:57:37 +02001435
Linus Walleije8689e62010-09-28 15:57:37 +02001436 dev_dbg(&pl08x->adev->dev, "%s prepare transaction of %d bytes from %s\n",
Lars-Peter Clausenfdaf9c42012-04-25 20:50:52 +02001437 __func__, sg_dma_len(sgl), plchan->name);
Linus Walleije8689e62010-09-28 15:57:37 +02001438
Russell King - ARM Linuxc0428792011-01-03 22:43:56 +00001439 txd = pl08x_get_txd(plchan, flags);
Linus Walleije8689e62010-09-28 15:57:37 +02001440 if (!txd) {
1441 dev_err(&pl08x->adev->dev, "%s no txd\n", __func__);
1442 return NULL;
1443 }
1444
Linus Walleije8689e62010-09-28 15:57:37 +02001445 /*
1446 * Set up addresses, the PrimeCell configured address
1447 * will take precedence since this may configure the
1448 * channel target address dynamically at runtime.
1449 */
Vinod Kouldb8196d2011-10-13 22:34:23 +05301450 if (direction == DMA_MEM_TO_DEV) {
Russell Kingdc8d5f82012-05-16 12:20:55 +01001451 cctl = PL080_CONTROL_SRC_INCR;
Russell Kinged91c132012-05-16 11:02:40 +01001452 slave_addr = plchan->cfg.dst_addr;
Russell Kingdc8d5f82012-05-16 12:20:55 +01001453 addr_width = plchan->cfg.dst_addr_width;
1454 maxburst = plchan->cfg.dst_maxburst;
Russell King409ec8d2012-05-16 11:08:43 +01001455 src_buses = pl08x->mem_buses;
1456 dst_buses = plchan->cd->periph_buses;
Vinod Kouldb8196d2011-10-13 22:34:23 +05301457 } else if (direction == DMA_DEV_TO_MEM) {
Russell Kingdc8d5f82012-05-16 12:20:55 +01001458 cctl = PL080_CONTROL_DST_INCR;
Russell Kinged91c132012-05-16 11:02:40 +01001459 slave_addr = plchan->cfg.src_addr;
Russell Kingdc8d5f82012-05-16 12:20:55 +01001460 addr_width = plchan->cfg.src_addr_width;
1461 maxburst = plchan->cfg.src_maxburst;
Russell King409ec8d2012-05-16 11:08:43 +01001462 src_buses = plchan->cd->periph_buses;
1463 dst_buses = pl08x->mem_buses;
Linus Walleije8689e62010-09-28 15:57:37 +02001464 } else {
Viresh Kumarb7f69d92011-08-05 15:32:43 +05301465 pl08x_free_txd(pl08x, txd);
Linus Walleije8689e62010-09-28 15:57:37 +02001466 dev_err(&pl08x->adev->dev,
1467 "%s direction unsupported\n", __func__);
1468 return NULL;
1469 }
Linus Walleije8689e62010-09-28 15:57:37 +02001470
Russell Kingdc8d5f82012-05-16 12:20:55 +01001471 cctl |= pl08x_get_cctl(plchan, addr_width, maxburst);
Russell King800d6832012-05-16 11:33:31 +01001472 if (cctl == ~0) {
1473 pl08x_free_txd(pl08x, txd);
1474 dev_err(&pl08x->adev->dev,
1475 "DMA slave configuration botched?\n");
1476 return NULL;
1477 }
1478
Russell King409ec8d2012-05-16 11:08:43 +01001479 txd->cctl = cctl | pl08x_select_bus(src_buses, dst_buses);
1480
Russell King95442b22012-05-16 11:05:09 +01001481 if (plchan->cfg.device_fc)
Vinod Kouldb8196d2011-10-13 22:34:23 +05301482 tmp = (direction == DMA_MEM_TO_DEV) ? PL080_FLOW_MEM2PER_PER :
Viresh Kumar0a235652011-08-05 15:32:42 +05301483 PL080_FLOW_PER2MEM_PER;
1484 else
Vinod Kouldb8196d2011-10-13 22:34:23 +05301485 tmp = (direction == DMA_MEM_TO_DEV) ? PL080_FLOW_MEM2PER :
Viresh Kumar0a235652011-08-05 15:32:42 +05301486 PL080_FLOW_PER2MEM;
1487
1488 txd->ccfg |= tmp << PL080_CONFIG_FLOW_CONTROL_SHIFT;
1489
Russell Kingc48d4962012-05-25 11:48:51 +01001490 ret = pl08x_request_mux(plchan);
1491 if (ret < 0) {
1492 pl08x_free_txd(pl08x, txd);
1493 dev_dbg(&pl08x->adev->dev,
1494 "unable to mux for transfer on %s due to platform restrictions\n",
1495 plchan->name);
1496 return NULL;
1497 }
1498
1499 dev_dbg(&pl08x->adev->dev, "allocated DMA request signal %d for xfer on %s\n",
1500 plchan->signal, plchan->name);
1501
1502 /* Assign the flow control signal to this channel */
1503 if (direction == DMA_MEM_TO_DEV)
1504 txd->ccfg |= plchan->signal << PL080_CONFIG_DST_SEL_SHIFT;
1505 else
1506 txd->ccfg |= plchan->signal << PL080_CONFIG_SRC_SEL_SHIFT;
1507
Viresh Kumarb7f69d92011-08-05 15:32:43 +05301508 for_each_sg(sgl, sg, sg_len, tmp) {
1509 dsg = kzalloc(sizeof(struct pl08x_sg), GFP_NOWAIT);
1510 if (!dsg) {
Russell Kingc48d4962012-05-25 11:48:51 +01001511 pl08x_release_mux(plchan);
Viresh Kumarb7f69d92011-08-05 15:32:43 +05301512 pl08x_free_txd(pl08x, txd);
1513 dev_err(&pl08x->adev->dev, "%s no mem for pl080 sg\n",
1514 __func__);
1515 return NULL;
1516 }
1517 list_add_tail(&dsg->node, &txd->dsg_list);
1518
1519 dsg->len = sg_dma_len(sg);
Vinod Kouldb8196d2011-10-13 22:34:23 +05301520 if (direction == DMA_MEM_TO_DEV) {
Lars-Peter Clausencbb796c2012-04-25 20:50:51 +02001521 dsg->src_addr = sg_dma_address(sg);
Viresh Kumarb7f69d92011-08-05 15:32:43 +05301522 dsg->dst_addr = slave_addr;
1523 } else {
1524 dsg->src_addr = slave_addr;
Lars-Peter Clausencbb796c2012-04-25 20:50:51 +02001525 dsg->dst_addr = sg_dma_address(sg);
Viresh Kumarb7f69d92011-08-05 15:32:43 +05301526 }
1527 }
1528
Linus Walleije8689e62010-09-28 15:57:37 +02001529 ret = pl08x_prep_channel_resources(plchan, txd);
1530 if (ret)
1531 return NULL;
Linus Walleije8689e62010-09-28 15:57:37 +02001532
Russell King01d8dc62012-05-26 14:04:29 +01001533 return &txd->vd.tx;
Linus Walleije8689e62010-09-28 15:57:37 +02001534}
1535
1536static int pl08x_control(struct dma_chan *chan, enum dma_ctrl_cmd cmd,
1537 unsigned long arg)
1538{
1539 struct pl08x_dma_chan *plchan = to_pl08x_chan(chan);
1540 struct pl08x_driver_data *pl08x = plchan->host;
1541 unsigned long flags;
1542 int ret = 0;
1543
1544 /* Controls applicable to inactive channels */
1545 if (cmd == DMA_SLAVE_CONFIG) {
Russell King - ARM Linuxf0fd9442011-01-03 22:45:57 +00001546 return dma_set_runtime_config(chan,
1547 (struct dma_slave_config *)arg);
Linus Walleije8689e62010-09-28 15:57:37 +02001548 }
1549
1550 /*
1551 * Anything succeeds on channels with no physical allocation and
1552 * no queued transfers.
1553 */
1554 spin_lock_irqsave(&plchan->lock, flags);
1555 if (!plchan->phychan && !plchan->at) {
1556 spin_unlock_irqrestore(&plchan->lock, flags);
1557 return 0;
1558 }
1559
1560 switch (cmd) {
1561 case DMA_TERMINATE_ALL:
1562 plchan->state = PL08X_CHAN_IDLE;
1563
1564 if (plchan->phychan) {
Linus Walleije8689e62010-09-28 15:57:37 +02001565 /*
1566 * Mark physical channel as free and free any slave
1567 * signal
1568 */
Russell Kinga5a488d2012-05-26 13:54:15 +01001569 pl08x_phy_free(plchan);
Linus Walleije8689e62010-09-28 15:57:37 +02001570 }
Linus Walleije8689e62010-09-28 15:57:37 +02001571 /* Dequeue jobs and free LLIs */
1572 if (plchan->at) {
Russell Kingc48d4962012-05-25 11:48:51 +01001573 /* Killing this one off, release its mux */
1574 pl08x_release_mux(plchan);
Linus Walleije8689e62010-09-28 15:57:37 +02001575 pl08x_free_txd(pl08x, plchan->at);
1576 plchan->at = NULL;
1577 }
1578 /* Dequeue jobs not yet fired as well */
1579 pl08x_free_txd_list(pl08x, plchan);
1580 break;
1581 case DMA_PAUSE:
1582 pl08x_pause_phy_chan(plchan->phychan);
1583 plchan->state = PL08X_CHAN_PAUSED;
1584 break;
1585 case DMA_RESUME:
1586 pl08x_resume_phy_chan(plchan->phychan);
1587 plchan->state = PL08X_CHAN_RUNNING;
1588 break;
1589 default:
1590 /* Unknown command */
1591 ret = -ENXIO;
1592 break;
1593 }
1594
1595 spin_unlock_irqrestore(&plchan->lock, flags);
1596
1597 return ret;
1598}
1599
1600bool pl08x_filter_id(struct dma_chan *chan, void *chan_id)
1601{
Russell King - ARM Linux7703eac2011-08-31 09:34:35 +01001602 struct pl08x_dma_chan *plchan;
Linus Walleije8689e62010-09-28 15:57:37 +02001603 char *name = chan_id;
1604
Russell King - ARM Linux7703eac2011-08-31 09:34:35 +01001605 /* Reject channels for devices not bound to this driver */
1606 if (chan->device->dev->driver != &pl08x_amba_driver.drv)
1607 return false;
1608
1609 plchan = to_pl08x_chan(chan);
1610
Linus Walleije8689e62010-09-28 15:57:37 +02001611 /* Check that the channel is not taken! */
1612 if (!strcmp(plchan->name, name))
1613 return true;
1614
1615 return false;
1616}
1617
1618/*
1619 * Just check that the device is there and active
Russell King - ARM Linux94ae8522011-01-16 20:18:05 +00001620 * TODO: turn this bit on/off depending on the number of physical channels
1621 * actually used, if it is zero... well shut it off. That will save some
1622 * power. Cut the clock at the same time.
Linus Walleije8689e62010-09-28 15:57:37 +02001623 */
1624static void pl08x_ensure_on(struct pl08x_driver_data *pl08x)
1625{
Linus Walleijaffa1152012-04-12 09:01:49 +02001626 /* The Nomadik variant does not have the config register */
1627 if (pl08x->vd->nomadik)
1628 return;
Viresh Kumar48a59ef2011-08-05 15:32:34 +05301629 writel(PL080_CONFIG_ENABLE, pl08x->base + PL080_CONFIG);
Linus Walleije8689e62010-09-28 15:57:37 +02001630}
1631
Russell King - ARM Linux3d992e12011-01-03 22:44:16 +00001632static void pl08x_unmap_buffers(struct pl08x_txd *txd)
1633{
Russell King01d8dc62012-05-26 14:04:29 +01001634 struct device *dev = txd->vd.tx.chan->device->dev;
Viresh Kumarb7f69d92011-08-05 15:32:43 +05301635 struct pl08x_sg *dsg;
Russell King - ARM Linux3d992e12011-01-03 22:44:16 +00001636
Russell King01d8dc62012-05-26 14:04:29 +01001637 if (!(txd->vd.tx.flags & DMA_COMPL_SKIP_SRC_UNMAP)) {
1638 if (txd->vd.tx.flags & DMA_COMPL_SRC_UNMAP_SINGLE)
Viresh Kumarb7f69d92011-08-05 15:32:43 +05301639 list_for_each_entry(dsg, &txd->dsg_list, node)
1640 dma_unmap_single(dev, dsg->src_addr, dsg->len,
1641 DMA_TO_DEVICE);
1642 else {
1643 list_for_each_entry(dsg, &txd->dsg_list, node)
1644 dma_unmap_page(dev, dsg->src_addr, dsg->len,
1645 DMA_TO_DEVICE);
1646 }
Russell King - ARM Linux3d992e12011-01-03 22:44:16 +00001647 }
Russell King01d8dc62012-05-26 14:04:29 +01001648 if (!(txd->vd.tx.flags & DMA_COMPL_SKIP_DEST_UNMAP)) {
1649 if (txd->vd.tx.flags & DMA_COMPL_DEST_UNMAP_SINGLE)
Viresh Kumarb7f69d92011-08-05 15:32:43 +05301650 list_for_each_entry(dsg, &txd->dsg_list, node)
1651 dma_unmap_single(dev, dsg->dst_addr, dsg->len,
1652 DMA_FROM_DEVICE);
Russell King - ARM Linux3d992e12011-01-03 22:44:16 +00001653 else
Viresh Kumarb7f69d92011-08-05 15:32:43 +05301654 list_for_each_entry(dsg, &txd->dsg_list, node)
1655 dma_unmap_page(dev, dsg->dst_addr, dsg->len,
1656 DMA_FROM_DEVICE);
Russell King - ARM Linux3d992e12011-01-03 22:44:16 +00001657 }
1658}
1659
Linus Walleije8689e62010-09-28 15:57:37 +02001660static void pl08x_tasklet(unsigned long data)
1661{
1662 struct pl08x_dma_chan *plchan = (struct pl08x_dma_chan *) data;
Linus Walleije8689e62010-09-28 15:57:37 +02001663 struct pl08x_driver_data *pl08x = plchan->host;
Russell King - ARM Linuxbf072af2011-01-03 22:31:24 +00001664 unsigned long flags;
Russell Kinga936e792012-05-25 10:51:19 +01001665 LIST_HEAD(head);
Linus Walleije8689e62010-09-28 15:57:37 +02001666
Russell King - ARM Linuxbf072af2011-01-03 22:31:24 +00001667 spin_lock_irqsave(&plchan->lock, flags);
Russell Kinga936e792012-05-25 10:51:19 +01001668 list_splice_tail_init(&plchan->done_list, &head);
Russell King - ARM Linuxbf072af2011-01-03 22:31:24 +00001669 spin_unlock_irqrestore(&plchan->lock, flags);
Russell King - ARM Linux858c21c2011-01-03 22:41:34 +00001670
Russell Kinga936e792012-05-25 10:51:19 +01001671 while (!list_empty(&head)) {
1672 struct pl08x_txd *txd = list_first_entry(&head,
1673 struct pl08x_txd, node);
Russell King01d8dc62012-05-26 14:04:29 +01001674 dma_async_tx_callback callback = txd->vd.tx.callback;
1675 void *callback_param = txd->vd.tx.callback_param;
Russell King - ARM Linux3d992e12011-01-03 22:44:16 +00001676
Russell Kinga936e792012-05-25 10:51:19 +01001677 list_del(&txd->node);
1678
Russell King - ARM Linux3d992e12011-01-03 22:44:16 +00001679 /* Don't try to unmap buffers on slave channels */
1680 if (!plchan->slave)
1681 pl08x_unmap_buffers(txd);
1682
1683 /* Free the descriptor */
1684 spin_lock_irqsave(&plchan->lock, flags);
1685 pl08x_free_txd(pl08x, txd);
1686 spin_unlock_irqrestore(&plchan->lock, flags);
1687
1688 /* Callback to signal completion */
1689 if (callback)
1690 callback(callback_param);
1691 }
Linus Walleije8689e62010-09-28 15:57:37 +02001692}
1693
1694static irqreturn_t pl08x_irq(int irq, void *dev)
1695{
1696 struct pl08x_driver_data *pl08x = dev;
Viresh Kumar28da2832011-08-05 15:32:36 +05301697 u32 mask = 0, err, tc, i;
Linus Walleije8689e62010-09-28 15:57:37 +02001698
Viresh Kumar28da2832011-08-05 15:32:36 +05301699 /* check & clear - ERR & TC interrupts */
1700 err = readl(pl08x->base + PL080_ERR_STATUS);
1701 if (err) {
1702 dev_err(&pl08x->adev->dev, "%s error interrupt, register value 0x%08x\n",
1703 __func__, err);
1704 writel(err, pl08x->base + PL080_ERR_CLEAR);
Linus Walleije8689e62010-09-28 15:57:37 +02001705 }
Linus Walleijd29bf012012-04-09 22:53:21 +02001706 tc = readl(pl08x->base + PL080_TC_STATUS);
Viresh Kumar28da2832011-08-05 15:32:36 +05301707 if (tc)
1708 writel(tc, pl08x->base + PL080_TC_CLEAR);
1709
1710 if (!err && !tc)
1711 return IRQ_NONE;
1712
Linus Walleije8689e62010-09-28 15:57:37 +02001713 for (i = 0; i < pl08x->vd->channels; i++) {
Viresh Kumar28da2832011-08-05 15:32:36 +05301714 if (((1 << i) & err) || ((1 << i) & tc)) {
Linus Walleije8689e62010-09-28 15:57:37 +02001715 /* Locate physical channel */
1716 struct pl08x_phy_chan *phychan = &pl08x->phy_chans[i];
1717 struct pl08x_dma_chan *plchan = phychan->serving;
Russell Kinga936e792012-05-25 10:51:19 +01001718 struct pl08x_txd *tx;
Linus Walleije8689e62010-09-28 15:57:37 +02001719
Viresh Kumar28da2832011-08-05 15:32:36 +05301720 if (!plchan) {
1721 dev_err(&pl08x->adev->dev,
1722 "%s Error TC interrupt on unused channel: 0x%08x\n",
1723 __func__, i);
1724 continue;
1725 }
1726
Russell Kinga936e792012-05-25 10:51:19 +01001727 spin_lock(&plchan->lock);
1728 tx = plchan->at;
1729 if (tx) {
1730 plchan->at = NULL;
Russell Kingc48d4962012-05-25 11:48:51 +01001731 /*
1732 * This descriptor is done, release its mux
1733 * reservation.
1734 */
1735 pl08x_release_mux(plchan);
Russell King01d8dc62012-05-26 14:04:29 +01001736 dma_cookie_complete(&tx->vd.tx);
Russell Kinga936e792012-05-25 10:51:19 +01001737 list_add_tail(&tx->node, &plchan->done_list);
Russell Kingc33b6442012-05-25 15:41:13 +01001738
Russell Kinga5a488d2012-05-26 13:54:15 +01001739 /*
1740 * And start the next descriptor (if any),
1741 * otherwise free this channel.
1742 */
Russell Kingc33b6442012-05-25 15:41:13 +01001743 if (!list_empty(&plchan->issued_list))
1744 pl08x_start_next_txd(plchan);
Russell Kinga5a488d2012-05-26 13:54:15 +01001745 else
1746 pl08x_phy_free(plchan);
Russell Kinga936e792012-05-25 10:51:19 +01001747 }
1748 spin_unlock(&plchan->lock);
1749
Linus Walleije8689e62010-09-28 15:57:37 +02001750 /* Schedule tasklet on this channel */
1751 tasklet_schedule(&plchan->tasklet);
Linus Walleije8689e62010-09-28 15:57:37 +02001752 mask |= (1 << i);
1753 }
1754 }
Linus Walleije8689e62010-09-28 15:57:37 +02001755
1756 return mask ? IRQ_HANDLED : IRQ_NONE;
1757}
1758
Russell King - ARM Linux121c8472011-07-21 17:13:48 +01001759static void pl08x_dma_slave_init(struct pl08x_dma_chan *chan)
1760{
Russell King - ARM Linux121c8472011-07-21 17:13:48 +01001761 chan->slave = true;
1762 chan->name = chan->cd->bus_id;
Russell Kinged91c132012-05-16 11:02:40 +01001763 chan->cfg.src_addr = chan->cd->addr;
1764 chan->cfg.dst_addr = chan->cd->addr;
Russell King - ARM Linux121c8472011-07-21 17:13:48 +01001765}
1766
Linus Walleije8689e62010-09-28 15:57:37 +02001767/*
1768 * Initialise the DMAC memcpy/slave channels.
1769 * Make a local wrapper to hold required data
1770 */
1771static int pl08x_dma_init_virtual_channels(struct pl08x_driver_data *pl08x,
Viresh Kumar3e27ee82011-08-05 15:32:27 +05301772 struct dma_device *dmadev, unsigned int channels, bool slave)
Linus Walleije8689e62010-09-28 15:57:37 +02001773{
1774 struct pl08x_dma_chan *chan;
1775 int i;
1776
1777 INIT_LIST_HEAD(&dmadev->channels);
Russell King - ARM Linux94ae8522011-01-16 20:18:05 +00001778
Linus Walleije8689e62010-09-28 15:57:37 +02001779 /*
1780 * Register as many many memcpy as we have physical channels,
1781 * we won't always be able to use all but the code will have
1782 * to cope with that situation.
1783 */
1784 for (i = 0; i < channels; i++) {
Viresh Kumarb201c112011-08-05 15:32:29 +05301785 chan = kzalloc(sizeof(*chan), GFP_KERNEL);
Linus Walleije8689e62010-09-28 15:57:37 +02001786 if (!chan) {
1787 dev_err(&pl08x->adev->dev,
1788 "%s no memory for channel\n", __func__);
1789 return -ENOMEM;
1790 }
1791
1792 chan->host = pl08x;
1793 chan->state = PL08X_CHAN_IDLE;
Russell Kingad0de2a2012-05-25 11:15:15 +01001794 chan->signal = -1;
Linus Walleije8689e62010-09-28 15:57:37 +02001795
1796 if (slave) {
Linus Walleije8689e62010-09-28 15:57:37 +02001797 chan->cd = &pl08x->pd->slave_channels[i];
Russell King - ARM Linux121c8472011-07-21 17:13:48 +01001798 pl08x_dma_slave_init(chan);
Linus Walleije8689e62010-09-28 15:57:37 +02001799 } else {
1800 chan->cd = &pl08x->pd->memcpy_channel;
1801 chan->name = kasprintf(GFP_KERNEL, "memcpy%d", i);
1802 if (!chan->name) {
1803 kfree(chan);
1804 return -ENOMEM;
1805 }
1806 }
Viresh Kumar175a5e62011-08-05 15:32:32 +05301807 dev_dbg(&pl08x->adev->dev,
Linus Walleije8689e62010-09-28 15:57:37 +02001808 "initialize virtual channel \"%s\"\n",
1809 chan->name);
1810
Russell King01d8dc62012-05-26 14:04:29 +01001811 chan->vc.chan.device = dmadev;
1812 dma_cookie_init(&chan->vc.chan);
Linus Walleije8689e62010-09-28 15:57:37 +02001813
1814 spin_lock_init(&chan->lock);
Russell King - ARM Linux15c17232011-01-03 22:44:36 +00001815 INIT_LIST_HEAD(&chan->pend_list);
Russell Kingea160562012-05-25 13:10:36 +01001816 INIT_LIST_HEAD(&chan->issued_list);
Russell Kinga936e792012-05-25 10:51:19 +01001817 INIT_LIST_HEAD(&chan->done_list);
Linus Walleije8689e62010-09-28 15:57:37 +02001818 tasklet_init(&chan->tasklet, pl08x_tasklet,
1819 (unsigned long) chan);
1820
Russell King01d8dc62012-05-26 14:04:29 +01001821 list_add_tail(&chan->vc.chan.device_node, &dmadev->channels);
Linus Walleije8689e62010-09-28 15:57:37 +02001822 }
1823 dev_info(&pl08x->adev->dev, "initialized %d virtual %s channels\n",
1824 i, slave ? "slave" : "memcpy");
1825 return i;
1826}
1827
1828static void pl08x_free_virtual_channels(struct dma_device *dmadev)
1829{
1830 struct pl08x_dma_chan *chan = NULL;
1831 struct pl08x_dma_chan *next;
1832
1833 list_for_each_entry_safe(chan,
Russell King01d8dc62012-05-26 14:04:29 +01001834 next, &dmadev->channels, vc.chan.device_node) {
1835 list_del(&chan->vc.chan.device_node);
Linus Walleije8689e62010-09-28 15:57:37 +02001836 kfree(chan);
1837 }
1838}
1839
1840#ifdef CONFIG_DEBUG_FS
1841static const char *pl08x_state_str(enum pl08x_dma_chan_state state)
1842{
1843 switch (state) {
1844 case PL08X_CHAN_IDLE:
1845 return "idle";
1846 case PL08X_CHAN_RUNNING:
1847 return "running";
1848 case PL08X_CHAN_PAUSED:
1849 return "paused";
1850 case PL08X_CHAN_WAITING:
1851 return "waiting";
1852 default:
1853 break;
1854 }
1855 return "UNKNOWN STATE";
1856}
1857
1858static int pl08x_debugfs_show(struct seq_file *s, void *data)
1859{
1860 struct pl08x_driver_data *pl08x = s->private;
1861 struct pl08x_dma_chan *chan;
1862 struct pl08x_phy_chan *ch;
1863 unsigned long flags;
1864 int i;
1865
1866 seq_printf(s, "PL08x physical channels:\n");
1867 seq_printf(s, "CHANNEL:\tUSER:\n");
1868 seq_printf(s, "--------\t-----\n");
1869 for (i = 0; i < pl08x->vd->channels; i++) {
1870 struct pl08x_dma_chan *virt_chan;
1871
1872 ch = &pl08x->phy_chans[i];
1873
1874 spin_lock_irqsave(&ch->lock, flags);
1875 virt_chan = ch->serving;
1876
Linus Walleijaffa1152012-04-12 09:01:49 +02001877 seq_printf(s, "%d\t\t%s%s\n",
1878 ch->id,
1879 virt_chan ? virt_chan->name : "(none)",
1880 ch->locked ? " LOCKED" : "");
Linus Walleije8689e62010-09-28 15:57:37 +02001881
1882 spin_unlock_irqrestore(&ch->lock, flags);
1883 }
1884
1885 seq_printf(s, "\nPL08x virtual memcpy channels:\n");
1886 seq_printf(s, "CHANNEL:\tSTATE:\n");
1887 seq_printf(s, "--------\t------\n");
Russell King01d8dc62012-05-26 14:04:29 +01001888 list_for_each_entry(chan, &pl08x->memcpy.channels, vc.chan.device_node) {
Russell King - ARM Linux3e2a0372011-01-03 22:32:46 +00001889 seq_printf(s, "%s\t\t%s\n", chan->name,
Linus Walleije8689e62010-09-28 15:57:37 +02001890 pl08x_state_str(chan->state));
1891 }
1892
1893 seq_printf(s, "\nPL08x virtual slave channels:\n");
1894 seq_printf(s, "CHANNEL:\tSTATE:\n");
1895 seq_printf(s, "--------\t------\n");
Russell King01d8dc62012-05-26 14:04:29 +01001896 list_for_each_entry(chan, &pl08x->slave.channels, vc.chan.device_node) {
Russell King - ARM Linux3e2a0372011-01-03 22:32:46 +00001897 seq_printf(s, "%s\t\t%s\n", chan->name,
Linus Walleije8689e62010-09-28 15:57:37 +02001898 pl08x_state_str(chan->state));
1899 }
1900
1901 return 0;
1902}
1903
1904static int pl08x_debugfs_open(struct inode *inode, struct file *file)
1905{
1906 return single_open(file, pl08x_debugfs_show, inode->i_private);
1907}
1908
1909static const struct file_operations pl08x_debugfs_operations = {
1910 .open = pl08x_debugfs_open,
1911 .read = seq_read,
1912 .llseek = seq_lseek,
1913 .release = single_release,
1914};
1915
1916static void init_pl08x_debugfs(struct pl08x_driver_data *pl08x)
1917{
1918 /* Expose a simple debugfs interface to view all clocks */
Viresh Kumar3e27ee82011-08-05 15:32:27 +05301919 (void) debugfs_create_file(dev_name(&pl08x->adev->dev),
1920 S_IFREG | S_IRUGO, NULL, pl08x,
1921 &pl08x_debugfs_operations);
Linus Walleije8689e62010-09-28 15:57:37 +02001922}
1923
1924#else
1925static inline void init_pl08x_debugfs(struct pl08x_driver_data *pl08x)
1926{
1927}
1928#endif
1929
Russell Kingaa25afa2011-02-19 15:55:00 +00001930static int pl08x_probe(struct amba_device *adev, const struct amba_id *id)
Linus Walleije8689e62010-09-28 15:57:37 +02001931{
1932 struct pl08x_driver_data *pl08x;
Russell King - ARM Linuxf96ca9ec2011-01-03 22:35:08 +00001933 const struct vendor_data *vd = id->data;
Linus Walleije8689e62010-09-28 15:57:37 +02001934 int ret = 0;
1935 int i;
1936
1937 ret = amba_request_regions(adev, NULL);
1938 if (ret)
1939 return ret;
1940
1941 /* Create the driver state holder */
Viresh Kumarb201c112011-08-05 15:32:29 +05301942 pl08x = kzalloc(sizeof(*pl08x), GFP_KERNEL);
Linus Walleije8689e62010-09-28 15:57:37 +02001943 if (!pl08x) {
1944 ret = -ENOMEM;
1945 goto out_no_pl08x;
1946 }
1947
1948 /* Initialize memcpy engine */
1949 dma_cap_set(DMA_MEMCPY, pl08x->memcpy.cap_mask);
1950 pl08x->memcpy.dev = &adev->dev;
1951 pl08x->memcpy.device_alloc_chan_resources = pl08x_alloc_chan_resources;
1952 pl08x->memcpy.device_free_chan_resources = pl08x_free_chan_resources;
1953 pl08x->memcpy.device_prep_dma_memcpy = pl08x_prep_dma_memcpy;
1954 pl08x->memcpy.device_prep_dma_interrupt = pl08x_prep_dma_interrupt;
1955 pl08x->memcpy.device_tx_status = pl08x_dma_tx_status;
1956 pl08x->memcpy.device_issue_pending = pl08x_issue_pending;
1957 pl08x->memcpy.device_control = pl08x_control;
1958
1959 /* Initialize slave engine */
1960 dma_cap_set(DMA_SLAVE, pl08x->slave.cap_mask);
1961 pl08x->slave.dev = &adev->dev;
1962 pl08x->slave.device_alloc_chan_resources = pl08x_alloc_chan_resources;
1963 pl08x->slave.device_free_chan_resources = pl08x_free_chan_resources;
1964 pl08x->slave.device_prep_dma_interrupt = pl08x_prep_dma_interrupt;
1965 pl08x->slave.device_tx_status = pl08x_dma_tx_status;
1966 pl08x->slave.device_issue_pending = pl08x_issue_pending;
1967 pl08x->slave.device_prep_slave_sg = pl08x_prep_slave_sg;
1968 pl08x->slave.device_control = pl08x_control;
1969
1970 /* Get the platform data */
1971 pl08x->pd = dev_get_platdata(&adev->dev);
1972 if (!pl08x->pd) {
1973 dev_err(&adev->dev, "no platform data supplied\n");
1974 goto out_no_platdata;
1975 }
1976
1977 /* Assign useful pointers to the driver state */
1978 pl08x->adev = adev;
1979 pl08x->vd = vd;
1980
Russell King - ARM Linux30749cb2011-01-03 22:41:13 +00001981 /* By default, AHB1 only. If dualmaster, from platform */
1982 pl08x->lli_buses = PL08X_AHB1;
1983 pl08x->mem_buses = PL08X_AHB1;
1984 if (pl08x->vd->dualmaster) {
1985 pl08x->lli_buses = pl08x->pd->lli_buses;
1986 pl08x->mem_buses = pl08x->pd->mem_buses;
1987 }
1988
Linus Walleije8689e62010-09-28 15:57:37 +02001989 /* A DMA memory pool for LLIs, align on 1-byte boundary */
1990 pl08x->pool = dma_pool_create(DRIVER_NAME, &pl08x->adev->dev,
1991 PL08X_LLI_TSFR_SIZE, PL08X_ALIGN, 0);
1992 if (!pl08x->pool) {
1993 ret = -ENOMEM;
1994 goto out_no_lli_pool;
1995 }
1996
Linus Walleije8689e62010-09-28 15:57:37 +02001997 pl08x->base = ioremap(adev->res.start, resource_size(&adev->res));
1998 if (!pl08x->base) {
1999 ret = -ENOMEM;
2000 goto out_no_ioremap;
2001 }
2002
2003 /* Turn on the PL08x */
2004 pl08x_ensure_on(pl08x);
2005
Russell King - ARM Linux94ae8522011-01-16 20:18:05 +00002006 /* Attach the interrupt handler */
Linus Walleije8689e62010-09-28 15:57:37 +02002007 writel(0x000000FF, pl08x->base + PL080_ERR_CLEAR);
2008 writel(0x000000FF, pl08x->base + PL080_TC_CLEAR);
2009
2010 ret = request_irq(adev->irq[0], pl08x_irq, IRQF_DISABLED,
Russell King - ARM Linuxb05cd8f2011-01-03 22:33:26 +00002011 DRIVER_NAME, pl08x);
Linus Walleije8689e62010-09-28 15:57:37 +02002012 if (ret) {
2013 dev_err(&adev->dev, "%s failed to request interrupt %d\n",
2014 __func__, adev->irq[0]);
2015 goto out_no_irq;
2016 }
2017
2018 /* Initialize physical channels */
Linus Walleijaffa1152012-04-12 09:01:49 +02002019 pl08x->phy_chans = kzalloc((vd->channels * sizeof(*pl08x->phy_chans)),
Linus Walleije8689e62010-09-28 15:57:37 +02002020 GFP_KERNEL);
2021 if (!pl08x->phy_chans) {
2022 dev_err(&adev->dev, "%s failed to allocate "
2023 "physical channel holders\n",
2024 __func__);
2025 goto out_no_phychans;
2026 }
2027
2028 for (i = 0; i < vd->channels; i++) {
2029 struct pl08x_phy_chan *ch = &pl08x->phy_chans[i];
2030
2031 ch->id = i;
2032 ch->base = pl08x->base + PL080_Cx_BASE(i);
2033 spin_lock_init(&ch->lock);
Linus Walleijaffa1152012-04-12 09:01:49 +02002034
2035 /*
2036 * Nomadik variants can have channels that are locked
2037 * down for the secure world only. Lock up these channels
2038 * by perpetually serving a dummy virtual channel.
2039 */
2040 if (vd->nomadik) {
2041 u32 val;
2042
2043 val = readl(ch->base + PL080_CH_CONFIG);
2044 if (val & (PL080N_CONFIG_ITPROT | PL080N_CONFIG_SECPROT)) {
2045 dev_info(&adev->dev, "physical channel %d reserved for secure access only\n", i);
2046 ch->locked = true;
2047 }
2048 }
2049
Viresh Kumar175a5e62011-08-05 15:32:32 +05302050 dev_dbg(&adev->dev, "physical channel %d is %s\n",
2051 i, pl08x_phy_channel_busy(ch) ? "BUSY" : "FREE");
Linus Walleije8689e62010-09-28 15:57:37 +02002052 }
2053
2054 /* Register as many memcpy channels as there are physical channels */
2055 ret = pl08x_dma_init_virtual_channels(pl08x, &pl08x->memcpy,
2056 pl08x->vd->channels, false);
2057 if (ret <= 0) {
2058 dev_warn(&pl08x->adev->dev,
2059 "%s failed to enumerate memcpy channels - %d\n",
2060 __func__, ret);
2061 goto out_no_memcpy;
2062 }
2063 pl08x->memcpy.chancnt = ret;
2064
2065 /* Register slave channels */
2066 ret = pl08x_dma_init_virtual_channels(pl08x, &pl08x->slave,
Viresh Kumar3e27ee82011-08-05 15:32:27 +05302067 pl08x->pd->num_slave_channels, true);
Linus Walleije8689e62010-09-28 15:57:37 +02002068 if (ret <= 0) {
2069 dev_warn(&pl08x->adev->dev,
2070 "%s failed to enumerate slave channels - %d\n",
2071 __func__, ret);
2072 goto out_no_slave;
2073 }
2074 pl08x->slave.chancnt = ret;
2075
2076 ret = dma_async_device_register(&pl08x->memcpy);
2077 if (ret) {
2078 dev_warn(&pl08x->adev->dev,
2079 "%s failed to register memcpy as an async device - %d\n",
2080 __func__, ret);
2081 goto out_no_memcpy_reg;
2082 }
2083
2084 ret = dma_async_device_register(&pl08x->slave);
2085 if (ret) {
2086 dev_warn(&pl08x->adev->dev,
2087 "%s failed to register slave as an async device - %d\n",
2088 __func__, ret);
2089 goto out_no_slave_reg;
2090 }
2091
2092 amba_set_drvdata(adev, pl08x);
2093 init_pl08x_debugfs(pl08x);
Russell King - ARM Linuxb05cd8f2011-01-03 22:33:26 +00002094 dev_info(&pl08x->adev->dev, "DMA: PL%03x rev%u at 0x%08llx irq %d\n",
2095 amba_part(adev), amba_rev(adev),
2096 (unsigned long long)adev->res.start, adev->irq[0]);
Viresh Kumarb7b60182011-08-05 15:32:33 +05302097
Linus Walleije8689e62010-09-28 15:57:37 +02002098 return 0;
2099
2100out_no_slave_reg:
2101 dma_async_device_unregister(&pl08x->memcpy);
2102out_no_memcpy_reg:
2103 pl08x_free_virtual_channels(&pl08x->slave);
2104out_no_slave:
2105 pl08x_free_virtual_channels(&pl08x->memcpy);
2106out_no_memcpy:
2107 kfree(pl08x->phy_chans);
2108out_no_phychans:
2109 free_irq(adev->irq[0], pl08x);
2110out_no_irq:
2111 iounmap(pl08x->base);
2112out_no_ioremap:
2113 dma_pool_destroy(pl08x->pool);
2114out_no_lli_pool:
2115out_no_platdata:
2116 kfree(pl08x);
2117out_no_pl08x:
2118 amba_release_regions(adev);
2119 return ret;
2120}
2121
2122/* PL080 has 8 channels and the PL080 have just 2 */
2123static struct vendor_data vendor_pl080 = {
Linus Walleije8689e62010-09-28 15:57:37 +02002124 .channels = 8,
2125 .dualmaster = true,
2126};
2127
Linus Walleijaffa1152012-04-12 09:01:49 +02002128static struct vendor_data vendor_nomadik = {
2129 .channels = 8,
2130 .dualmaster = true,
2131 .nomadik = true,
2132};
2133
Linus Walleije8689e62010-09-28 15:57:37 +02002134static struct vendor_data vendor_pl081 = {
Linus Walleije8689e62010-09-28 15:57:37 +02002135 .channels = 2,
2136 .dualmaster = false,
2137};
2138
2139static struct amba_id pl08x_ids[] = {
2140 /* PL080 */
2141 {
2142 .id = 0x00041080,
2143 .mask = 0x000fffff,
2144 .data = &vendor_pl080,
2145 },
2146 /* PL081 */
2147 {
2148 .id = 0x00041081,
2149 .mask = 0x000fffff,
2150 .data = &vendor_pl081,
2151 },
2152 /* Nomadik 8815 PL080 variant */
2153 {
Linus Walleijaffa1152012-04-12 09:01:49 +02002154 .id = 0x00280080,
Linus Walleije8689e62010-09-28 15:57:37 +02002155 .mask = 0x00ffffff,
Linus Walleijaffa1152012-04-12 09:01:49 +02002156 .data = &vendor_nomadik,
Linus Walleije8689e62010-09-28 15:57:37 +02002157 },
2158 { 0, 0 },
2159};
2160
Dave Martin037566d2011-10-05 15:15:20 +01002161MODULE_DEVICE_TABLE(amba, pl08x_ids);
2162
Linus Walleije8689e62010-09-28 15:57:37 +02002163static struct amba_driver pl08x_amba_driver = {
2164 .drv.name = DRIVER_NAME,
2165 .id_table = pl08x_ids,
2166 .probe = pl08x_probe,
2167};
2168
2169static int __init pl08x_init(void)
2170{
2171 int retval;
2172 retval = amba_driver_register(&pl08x_amba_driver);
2173 if (retval)
2174 printk(KERN_WARNING DRIVER_NAME
Russell King - ARM Linuxe8b5e112011-01-03 22:30:24 +00002175 "failed to register as an AMBA device (%d)\n",
Linus Walleije8689e62010-09-28 15:57:37 +02002176 retval);
2177 return retval;
2178}
2179subsys_initcall(pl08x_init);