blob: 88661fa4542c825c9a91cf65adeca2676c2c6cc7 [file] [log] [blame]
Linus Walleije8689e62010-09-28 15:57:37 +02001/*
2 * Copyright (c) 2006 ARM Ltd.
3 * Copyright (c) 2010 ST-Ericsson SA
4 *
5 * Author: Peter Pearse <peter.pearse@arm.com>
6 * Author: Linus Walleij <linus.walleij@stericsson.com>
7 *
8 * This program is free software; you can redistribute it and/or modify it
9 * under the terms of the GNU General Public License as published by the Free
10 * Software Foundation; either version 2 of the License, or (at your option)
11 * any later version.
12 *
13 * This program is distributed in the hope that it will be useful, but WITHOUT
14 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
15 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
16 * more details.
17 *
18 * You should have received a copy of the GNU General Public License along with
19 * this program; if not, write to the Free Software Foundation, Inc., 59
20 * Temple Place - Suite 330, Boston, MA 02111-1307, USA.
21 *
Russell King - ARM Linux94ae8522011-01-16 20:18:05 +000022 * The full GNU General Public License is in this distribution in the file
23 * called COPYING.
Linus Walleije8689e62010-09-28 15:57:37 +020024 *
25 * Documentation: ARM DDI 0196G == PL080
Russell King - ARM Linux94ae8522011-01-16 20:18:05 +000026 * Documentation: ARM DDI 0218E == PL081
Linus Walleije8689e62010-09-28 15:57:37 +020027 *
Russell King - ARM Linux94ae8522011-01-16 20:18:05 +000028 * PL080 & PL081 both have 16 sets of DMA signals that can be routed to any
29 * channel.
Linus Walleije8689e62010-09-28 15:57:37 +020030 *
31 * The PL080 has 8 channels available for simultaneous use, and the PL081
32 * has only two channels. So on these DMA controllers the number of channels
33 * and the number of incoming DMA signals are two totally different things.
34 * It is usually not possible to theoretically handle all physical signals,
35 * so a multiplexing scheme with possible denial of use is necessary.
36 *
37 * The PL080 has a dual bus master, PL081 has a single master.
38 *
39 * Memory to peripheral transfer may be visualized as
40 * Get data from memory to DMAC
41 * Until no data left
42 * On burst request from peripheral
43 * Destination burst from DMAC to peripheral
44 * Clear burst request
45 * Raise terminal count interrupt
46 *
47 * For peripherals with a FIFO:
48 * Source burst size == half the depth of the peripheral FIFO
49 * Destination burst size == the depth of the peripheral FIFO
50 *
51 * (Bursts are irrelevant for mem to mem transfers - there are no burst
52 * signals, the DMA controller will simply facilitate its AHB master.)
53 *
54 * ASSUMES default (little) endianness for DMA transfers
55 *
Russell King - ARM Linux9dc2c202011-01-03 22:33:06 +000056 * The PL08x has two flow control settings:
57 * - DMAC flow control: the transfer size defines the number of transfers
58 * which occur for the current LLI entry, and the DMAC raises TC at the
59 * end of every LLI entry. Observed behaviour shows the DMAC listening
60 * to both the BREQ and SREQ signals (contrary to documented),
61 * transferring data if either is active. The LBREQ and LSREQ signals
62 * are ignored.
63 *
64 * - Peripheral flow control: the transfer size is ignored (and should be
65 * zero). The data is transferred from the current LLI entry, until
66 * after the final transfer signalled by LBREQ or LSREQ. The DMAC
67 * will then move to the next LLI entry.
68 *
Linus Walleije8689e62010-09-28 15:57:37 +020069 * Global TODO:
70 * - Break out common code from arch/arm/mach-s3c64xx and share
71 */
Russell King - ARM Linux730404a2011-01-03 22:34:07 +000072#include <linux/amba/bus.h>
Linus Walleije8689e62010-09-28 15:57:37 +020073#include <linux/amba/pl08x.h>
74#include <linux/debugfs.h>
Viresh Kumar0c38d702011-08-05 15:32:28 +053075#include <linux/delay.h>
76#include <linux/device.h>
77#include <linux/dmaengine.h>
78#include <linux/dmapool.h>
Vinod Koul8516f522011-09-02 16:43:44 +053079#include <linux/dma-mapping.h>
Viresh Kumar0c38d702011-08-05 15:32:28 +053080#include <linux/init.h>
81#include <linux/interrupt.h>
82#include <linux/module.h>
Viresh Kumarb7b60182011-08-05 15:32:33 +053083#include <linux/pm_runtime.h>
Linus Walleije8689e62010-09-28 15:57:37 +020084#include <linux/seq_file.h>
Viresh Kumar0c38d702011-08-05 15:32:28 +053085#include <linux/slab.h>
Linus Walleije8689e62010-09-28 15:57:37 +020086#include <asm/hardware/pl080.h>
Linus Walleije8689e62010-09-28 15:57:37 +020087
Russell King - ARM Linuxd2ebfb32012-03-06 22:34:26 +000088#include "dmaengine.h"
89
Linus Walleije8689e62010-09-28 15:57:37 +020090#define DRIVER_NAME "pl08xdmac"
91
Russell King - ARM Linux7703eac2011-08-31 09:34:35 +010092static struct amba_driver pl08x_amba_driver;
Russell Kingb23f2042012-05-16 10:48:44 +010093struct pl08x_driver_data;
Russell King - ARM Linux7703eac2011-08-31 09:34:35 +010094
Linus Walleije8689e62010-09-28 15:57:37 +020095/**
Russell King - ARM Linux94ae8522011-01-16 20:18:05 +000096 * struct vendor_data - vendor-specific config parameters for PL08x derivatives
Linus Walleije8689e62010-09-28 15:57:37 +020097 * @channels: the number of channels available in this variant
Russell King - ARM Linux94ae8522011-01-16 20:18:05 +000098 * @dualmaster: whether this version supports dual AHB masters or not.
Linus Walleijaffa1152012-04-12 09:01:49 +020099 * @nomadik: whether the channels have Nomadik security extension bits
100 * that need to be checked for permission before use and some registers are
101 * missing
Linus Walleije8689e62010-09-28 15:57:37 +0200102 */
103struct vendor_data {
Linus Walleije8689e62010-09-28 15:57:37 +0200104 u8 channels;
105 bool dualmaster;
Linus Walleijaffa1152012-04-12 09:01:49 +0200106 bool nomadik;
Linus Walleije8689e62010-09-28 15:57:37 +0200107};
108
109/*
110 * PL08X private data structures
Russell King - ARM Linuxe8b5e112011-01-03 22:30:24 +0000111 * An LLI struct - see PL08x TRM. Note that next uses bit[0] as a bus bit,
Russell King - ARM Linuxe25761d2011-01-03 22:37:52 +0000112 * start & end do not - their bus bit info is in cctl. Also note that these
113 * are fixed 32-bit quantities.
Linus Walleije8689e62010-09-28 15:57:37 +0200114 */
Russell King - ARM Linux7cb72ad2011-01-03 22:35:28 +0000115struct pl08x_lli {
Russell King - ARM Linuxe25761d2011-01-03 22:37:52 +0000116 u32 src;
117 u32 dst;
Russell King - ARM Linuxbfddfb42011-01-03 22:38:12 +0000118 u32 lli;
Linus Walleije8689e62010-09-28 15:57:37 +0200119 u32 cctl;
120};
121
122/**
Russell Kingb23f2042012-05-16 10:48:44 +0100123 * struct pl08x_bus_data - information of source or destination
124 * busses for a transfer
125 * @addr: current address
126 * @maxwidth: the maximum width of a transfer on this bus
127 * @buswidth: the width of this bus in bytes: 1, 2 or 4
128 */
129struct pl08x_bus_data {
130 dma_addr_t addr;
131 u8 maxwidth;
132 u8 buswidth;
133};
134
135/**
136 * struct pl08x_phy_chan - holder for the physical channels
137 * @id: physical index to this channel
138 * @lock: a lock to use when altering an instance of this struct
Russell Kingb23f2042012-05-16 10:48:44 +0100139 * @serving: the virtual channel currently being served by this physical
140 * channel
Russell Kingad0de2a2012-05-25 11:15:15 +0100141 * @locked: channel unavailable for the system, e.g. dedicated to secure
142 * world
Russell Kingb23f2042012-05-16 10:48:44 +0100143 */
144struct pl08x_phy_chan {
145 unsigned int id;
146 void __iomem *base;
147 spinlock_t lock;
Russell Kingb23f2042012-05-16 10:48:44 +0100148 struct pl08x_dma_chan *serving;
Russell Kingad0de2a2012-05-25 11:15:15 +0100149 bool locked;
Russell Kingb23f2042012-05-16 10:48:44 +0100150};
151
152/**
153 * struct pl08x_sg - structure containing data per sg
154 * @src_addr: src address of sg
155 * @dst_addr: dst address of sg
156 * @len: transfer len in bytes
157 * @node: node for txd's dsg_list
158 */
159struct pl08x_sg {
160 dma_addr_t src_addr;
161 dma_addr_t dst_addr;
162 size_t len;
163 struct list_head node;
164};
165
166/**
167 * struct pl08x_txd - wrapper for struct dma_async_tx_descriptor
168 * @tx: async tx descriptor
169 * @node: node for txd list for channels
170 * @dsg_list: list of children sg's
Russell Kingb23f2042012-05-16 10:48:44 +0100171 * @llis_bus: DMA memory address (physical) start for the LLIs
172 * @llis_va: virtual memory address start for the LLIs
173 * @cctl: control reg values for current txd
174 * @ccfg: config reg values for current txd
175 */
176struct pl08x_txd {
177 struct dma_async_tx_descriptor tx;
178 struct list_head node;
179 struct list_head dsg_list;
Russell Kingb23f2042012-05-16 10:48:44 +0100180 dma_addr_t llis_bus;
181 struct pl08x_lli *llis_va;
182 /* Default cctl value for LLIs */
183 u32 cctl;
184 /*
185 * Settings to be put into the physical channel when we
186 * trigger this txd. Other registers are in llis_va[0].
187 */
188 u32 ccfg;
189};
190
191/**
192 * struct pl08x_dma_chan_state - holds the PL08x specific virtual channel
193 * states
194 * @PL08X_CHAN_IDLE: the channel is idle
195 * @PL08X_CHAN_RUNNING: the channel has allocated a physical transport
196 * channel and is running a transfer on it
197 * @PL08X_CHAN_PAUSED: the channel has allocated a physical transport
198 * channel, but the transfer is currently paused
199 * @PL08X_CHAN_WAITING: the channel is waiting for a physical transport
200 * channel to become available (only pertains to memcpy channels)
201 */
202enum pl08x_dma_chan_state {
203 PL08X_CHAN_IDLE,
204 PL08X_CHAN_RUNNING,
205 PL08X_CHAN_PAUSED,
206 PL08X_CHAN_WAITING,
207};
208
209/**
210 * struct pl08x_dma_chan - this structure wraps a DMA ENGINE channel
211 * @chan: wrappped abstract channel
212 * @phychan: the physical channel utilized by this channel, if there is one
213 * @phychan_hold: if non-zero, hold on to the physical channel even if we
214 * have no pending entries
215 * @tasklet: tasklet scheduled by the IRQ to handle actual work etc
216 * @name: name of channel
217 * @cd: channel platform data
218 * @runtime_addr: address for RX/TX according to the runtime config
Russell Kingb23f2042012-05-16 10:48:44 +0100219 * @pend_list: queued transactions pending on 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 {
230 struct dma_chan chan;
231 struct pl08x_phy_chan *phychan;
232 int phychan_hold;
233 struct tasklet_struct tasklet;
Russell King550ec362012-05-28 10:18:55 +0100234 const char *name;
Russell Kingb23f2042012-05-16 10:48:44 +0100235 const struct pl08x_channel_data *cd;
Russell Kinged91c132012-05-16 11:02:40 +0100236 struct dma_slave_config cfg;
Russell Kingb23f2042012-05-16 10:48:44 +0100237 struct list_head pend_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{
291 return container_of(chan, struct pl08x_dma_chan, chan);
292}
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{
296 return container_of(tx, struct pl08x_txd, tx);
297}
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 King - ARM Linuxc885bee2011-01-03 22:38:52 +0000357static void pl08x_start_txd(struct pl08x_dma_chan *plchan,
358 struct pl08x_txd *txd)
Linus Walleije8689e62010-09-28 15:57:37 +0200359{
Russell King - ARM Linuxc885bee2011-01-03 22:38:52 +0000360 struct pl08x_driver_data *pl08x = plchan->host;
Linus Walleije8689e62010-09-28 15:57:37 +0200361 struct pl08x_phy_chan *phychan = plchan->phychan;
Russell King - ARM Linux19524d72011-01-03 22:39:13 +0000362 struct pl08x_lli *lli = &txd->llis_va[0];
Russell King - ARM Linux09b3c322011-01-03 22:39:53 +0000363 u32 val;
Russell King - ARM Linuxc885bee2011-01-03 22:38:52 +0000364
365 plchan->at = txd;
Linus Walleije8689e62010-09-28 15:57:37 +0200366
Russell King - ARM Linuxc885bee2011-01-03 22:38:52 +0000367 /* Wait for channel inactive */
368 while (pl08x_phy_channel_busy(phychan))
Russell King - ARM Linux19386b322011-01-03 22:36:29 +0000369 cpu_relax();
Linus Walleije8689e62010-09-28 15:57:37 +0200370
Russell King - ARM Linuxc885bee2011-01-03 22:38:52 +0000371 dev_vdbg(&pl08x->adev->dev,
372 "WRITE channel %d: csrc=0x%08x, cdst=0x%08x, "
Russell King - ARM Linux19524d72011-01-03 22:39:13 +0000373 "clli=0x%08x, cctl=0x%08x, ccfg=0x%08x\n",
374 phychan->id, lli->src, lli->dst, lli->lli, lli->cctl,
Russell King - ARM Linux09b3c322011-01-03 22:39:53 +0000375 txd->ccfg);
Linus Walleije8689e62010-09-28 15:57:37 +0200376
Russell King - ARM Linux19524d72011-01-03 22:39:13 +0000377 writel(lli->src, phychan->base + PL080_CH_SRC_ADDR);
378 writel(lli->dst, phychan->base + PL080_CH_DST_ADDR);
379 writel(lli->lli, phychan->base + PL080_CH_LLI);
380 writel(lli->cctl, phychan->base + PL080_CH_CONTROL);
Russell King - ARM Linux09b3c322011-01-03 22:39:53 +0000381 writel(txd->ccfg, phychan->base + PL080_CH_CONFIG);
Russell King - ARM Linuxc885bee2011-01-03 22:38:52 +0000382
383 /* Enable the DMA channel */
384 /* Do not access config register until channel shows as disabled */
385 while (readl(pl08x->base + PL080_EN_CHAN) & (1 << phychan->id))
386 cpu_relax();
387
388 /* Do not access config register until channel shows as inactive */
389 val = readl(phychan->base + PL080_CH_CONFIG);
390 while ((val & PL080_CONFIG_ACTIVE) || (val & PL080_CONFIG_ENABLE))
391 val = readl(phychan->base + PL080_CH_CONFIG);
392
393 writel(val | PL080_CONFIG_ENABLE, phychan->base + PL080_CH_CONFIG);
Linus Walleije8689e62010-09-28 15:57:37 +0200394}
395
396/*
Russell King - ARM Linux81796612011-01-27 12:37:44 +0000397 * Pause the channel by setting the HALT bit.
Linus Walleije8689e62010-09-28 15:57:37 +0200398 *
Russell King - ARM Linux81796612011-01-27 12:37:44 +0000399 * For M->P transfers, pause the DMAC first and then stop the peripheral -
400 * the FIFO can only drain if the peripheral is still requesting data.
401 * (note: this can still timeout if the DMAC FIFO never drains of data.)
Linus Walleije8689e62010-09-28 15:57:37 +0200402 *
Russell King - ARM Linux81796612011-01-27 12:37:44 +0000403 * For P->M transfers, disable the peripheral first to stop it filling
404 * the DMAC FIFO, and then pause the DMAC.
Linus Walleije8689e62010-09-28 15:57:37 +0200405 */
406static void pl08x_pause_phy_chan(struct pl08x_phy_chan *ch)
407{
408 u32 val;
Russell King - ARM Linux81796612011-01-27 12:37:44 +0000409 int timeout;
Linus Walleije8689e62010-09-28 15:57:37 +0200410
411 /* Set the HALT bit and wait for the FIFO to drain */
412 val = readl(ch->base + PL080_CH_CONFIG);
413 val |= PL080_CONFIG_HALT;
414 writel(val, ch->base + PL080_CH_CONFIG);
415
416 /* Wait for channel inactive */
Russell King - ARM Linux81796612011-01-27 12:37:44 +0000417 for (timeout = 1000; timeout; timeout--) {
418 if (!pl08x_phy_channel_busy(ch))
419 break;
420 udelay(1);
421 }
422 if (pl08x_phy_channel_busy(ch))
423 pr_err("pl08x: channel%u timeout waiting for pause\n", ch->id);
Linus Walleije8689e62010-09-28 15:57:37 +0200424}
425
426static void pl08x_resume_phy_chan(struct pl08x_phy_chan *ch)
427{
428 u32 val;
429
430 /* Clear the HALT bit */
431 val = readl(ch->base + PL080_CH_CONFIG);
432 val &= ~PL080_CONFIG_HALT;
433 writel(val, ch->base + PL080_CH_CONFIG);
434}
435
Russell King - ARM Linuxfb526212011-01-27 12:32:53 +0000436/*
437 * pl08x_terminate_phy_chan() stops the channel, clears the FIFO and
438 * clears any pending interrupt status. This should not be used for
439 * an on-going transfer, but as a method of shutting down a channel
440 * (eg, when it's no longer used) or terminating a transfer.
441 */
442static void pl08x_terminate_phy_chan(struct pl08x_driver_data *pl08x,
443 struct pl08x_phy_chan *ch)
Linus Walleije8689e62010-09-28 15:57:37 +0200444{
Russell King - ARM Linuxfb526212011-01-27 12:32:53 +0000445 u32 val = readl(ch->base + PL080_CH_CONFIG);
Linus Walleije8689e62010-09-28 15:57:37 +0200446
Russell King - ARM Linuxfb526212011-01-27 12:32:53 +0000447 val &= ~(PL080_CONFIG_ENABLE | PL080_CONFIG_ERR_IRQ_MASK |
448 PL080_CONFIG_TC_IRQ_MASK);
Linus Walleije8689e62010-09-28 15:57:37 +0200449
Linus Walleije8689e62010-09-28 15:57:37 +0200450 writel(val, ch->base + PL080_CH_CONFIG);
Russell King - ARM Linuxfb526212011-01-27 12:32:53 +0000451
452 writel(1 << ch->id, pl08x->base + PL080_ERR_CLEAR);
453 writel(1 << ch->id, pl08x->base + PL080_TC_CLEAR);
Linus Walleije8689e62010-09-28 15:57:37 +0200454}
455
456static inline u32 get_bytes_in_cctl(u32 cctl)
457{
458 /* The source width defines the number of bytes */
459 u32 bytes = cctl & PL080_CONTROL_TRANSFER_SIZE_MASK;
460
461 switch (cctl >> PL080_CONTROL_SWIDTH_SHIFT) {
462 case PL080_WIDTH_8BIT:
463 break;
464 case PL080_WIDTH_16BIT:
465 bytes *= 2;
466 break;
467 case PL080_WIDTH_32BIT:
468 bytes *= 4;
469 break;
470 }
471 return bytes;
472}
473
474/* The channel should be paused when calling this */
475static u32 pl08x_getbytes_chan(struct pl08x_dma_chan *plchan)
476{
477 struct pl08x_phy_chan *ch;
Linus Walleije8689e62010-09-28 15:57:37 +0200478 struct pl08x_txd *txd;
479 unsigned long flags;
Russell King - ARM Linuxcace6582011-01-03 22:37:31 +0000480 size_t bytes = 0;
Linus Walleije8689e62010-09-28 15:57:37 +0200481
482 spin_lock_irqsave(&plchan->lock, flags);
Linus Walleije8689e62010-09-28 15:57:37 +0200483 ch = plchan->phychan;
484 txd = plchan->at;
485
486 /*
Russell King - ARM Linuxdb9f1362011-01-03 22:38:32 +0000487 * Follow the LLIs to get the number of remaining
488 * bytes in the currently active transaction.
Linus Walleije8689e62010-09-28 15:57:37 +0200489 */
490 if (ch && txd) {
Russell King - ARM Linux4c0df6a2011-01-03 22:36:50 +0000491 u32 clli = readl(ch->base + PL080_CH_LLI) & ~PL080_LLI_LM_AHB2;
Linus Walleije8689e62010-09-28 15:57:37 +0200492
Russell King - ARM Linuxdb9f1362011-01-03 22:38:32 +0000493 /* First get the remaining bytes in the active transfer */
Linus Walleije8689e62010-09-28 15:57:37 +0200494 bytes = get_bytes_in_cctl(readl(ch->base + PL080_CH_CONTROL));
495
496 if (clli) {
Russell King - ARM Linuxdb9f1362011-01-03 22:38:32 +0000497 struct pl08x_lli *llis_va = txd->llis_va;
498 dma_addr_t llis_bus = txd->llis_bus;
499 int index;
Linus Walleije8689e62010-09-28 15:57:37 +0200500
Russell King - ARM Linuxdb9f1362011-01-03 22:38:32 +0000501 BUG_ON(clli < llis_bus || clli >= llis_bus +
502 sizeof(struct pl08x_lli) * MAX_NUM_TSFR_LLIS);
Linus Walleije8689e62010-09-28 15:57:37 +0200503
Russell King - ARM Linuxdb9f1362011-01-03 22:38:32 +0000504 /*
505 * Locate the next LLI - as this is an array,
506 * it's simple maths to find.
507 */
508 index = (clli - llis_bus) / sizeof(struct pl08x_lli);
509
510 for (; index < MAX_NUM_TSFR_LLIS; index++) {
511 bytes += get_bytes_in_cctl(llis_va[index].cctl);
512
Linus Walleije8689e62010-09-28 15:57:37 +0200513 /*
Russell King - ARM Linuxe8b5e112011-01-03 22:30:24 +0000514 * A LLI pointer of 0 terminates the LLI list
Linus Walleije8689e62010-09-28 15:57:37 +0200515 */
Russell King - ARM Linuxdb9f1362011-01-03 22:38:32 +0000516 if (!llis_va[index].lli)
517 break;
Linus Walleije8689e62010-09-28 15:57:37 +0200518 }
519 }
520 }
521
522 /* Sum up all queued transactions */
Russell King - ARM Linux15c17232011-01-03 22:44:36 +0000523 if (!list_empty(&plchan->pend_list)) {
Russell King - ARM Linuxdb9f1362011-01-03 22:38:32 +0000524 struct pl08x_txd *txdi;
Russell King - ARM Linux15c17232011-01-03 22:44:36 +0000525 list_for_each_entry(txdi, &plchan->pend_list, node) {
Viresh Kumarb7f69d92011-08-05 15:32:43 +0530526 struct pl08x_sg *dsg;
527 list_for_each_entry(dsg, &txd->dsg_list, node)
528 bytes += dsg->len;
Linus Walleije8689e62010-09-28 15:57:37 +0200529 }
Linus Walleije8689e62010-09-28 15:57:37 +0200530 }
531
532 spin_unlock_irqrestore(&plchan->lock, flags);
533
534 return bytes;
535}
536
537/*
538 * Allocate a physical channel for a virtual channel
Russell King - ARM Linux94ae8522011-01-16 20:18:05 +0000539 *
540 * Try to locate a physical channel to be used for this transfer. If all
541 * are taken return NULL and the requester will have to cope by using
542 * some fallback PIO mode or retrying later.
Linus Walleije8689e62010-09-28 15:57:37 +0200543 */
544static struct pl08x_phy_chan *
545pl08x_get_phy_channel(struct pl08x_driver_data *pl08x,
546 struct pl08x_dma_chan *virt_chan)
547{
548 struct pl08x_phy_chan *ch = NULL;
549 unsigned long flags;
550 int i;
551
Linus Walleije8689e62010-09-28 15:57:37 +0200552 for (i = 0; i < pl08x->vd->channels; i++) {
553 ch = &pl08x->phy_chans[i];
554
555 spin_lock_irqsave(&ch->lock, flags);
556
Linus Walleijaffa1152012-04-12 09:01:49 +0200557 if (!ch->locked && !ch->serving) {
Linus Walleije8689e62010-09-28 15:57:37 +0200558 ch->serving = virt_chan;
Linus Walleije8689e62010-09-28 15:57:37 +0200559 spin_unlock_irqrestore(&ch->lock, flags);
560 break;
561 }
562
563 spin_unlock_irqrestore(&ch->lock, flags);
564 }
565
566 if (i == pl08x->vd->channels) {
567 /* No physical channel available, cope with it */
568 return NULL;
569 }
570
571 return ch;
572}
573
574static inline void pl08x_put_phy_channel(struct pl08x_driver_data *pl08x,
575 struct pl08x_phy_chan *ch)
576{
577 unsigned long flags;
578
Russell King - ARM Linuxfb526212011-01-27 12:32:53 +0000579 spin_lock_irqsave(&ch->lock, flags);
580
Linus Walleije8689e62010-09-28 15:57:37 +0200581 /* Stop the channel and clear its interrupts */
Russell King - ARM Linuxfb526212011-01-27 12:32:53 +0000582 pl08x_terminate_phy_chan(pl08x, ch);
Linus Walleije8689e62010-09-28 15:57:37 +0200583
584 /* Mark it as free */
Linus Walleije8689e62010-09-28 15:57:37 +0200585 ch->serving = NULL;
586 spin_unlock_irqrestore(&ch->lock, flags);
587}
588
589/*
590 * LLI handling
591 */
592
593static inline unsigned int pl08x_get_bytes_for_cctl(unsigned int coded)
594{
595 switch (coded) {
596 case PL080_WIDTH_8BIT:
597 return 1;
598 case PL080_WIDTH_16BIT:
599 return 2;
600 case PL080_WIDTH_32BIT:
601 return 4;
602 default:
603 break;
604 }
605 BUG();
606 return 0;
607}
608
609static inline u32 pl08x_cctl_bits(u32 cctl, u8 srcwidth, u8 dstwidth,
Russell King - ARM Linuxcace6582011-01-03 22:37:31 +0000610 size_t tsize)
Linus Walleije8689e62010-09-28 15:57:37 +0200611{
612 u32 retbits = cctl;
613
Russell King - ARM Linuxe8b5e112011-01-03 22:30:24 +0000614 /* Remove all src, dst and transfer size bits */
Linus Walleije8689e62010-09-28 15:57:37 +0200615 retbits &= ~PL080_CONTROL_DWIDTH_MASK;
616 retbits &= ~PL080_CONTROL_SWIDTH_MASK;
617 retbits &= ~PL080_CONTROL_TRANSFER_SIZE_MASK;
618
619 /* Then set the bits according to the parameters */
620 switch (srcwidth) {
621 case 1:
622 retbits |= PL080_WIDTH_8BIT << PL080_CONTROL_SWIDTH_SHIFT;
623 break;
624 case 2:
625 retbits |= PL080_WIDTH_16BIT << PL080_CONTROL_SWIDTH_SHIFT;
626 break;
627 case 4:
628 retbits |= PL080_WIDTH_32BIT << PL080_CONTROL_SWIDTH_SHIFT;
629 break;
630 default:
631 BUG();
632 break;
633 }
634
635 switch (dstwidth) {
636 case 1:
637 retbits |= PL080_WIDTH_8BIT << PL080_CONTROL_DWIDTH_SHIFT;
638 break;
639 case 2:
640 retbits |= PL080_WIDTH_16BIT << PL080_CONTROL_DWIDTH_SHIFT;
641 break;
642 case 4:
643 retbits |= PL080_WIDTH_32BIT << PL080_CONTROL_DWIDTH_SHIFT;
644 break;
645 default:
646 BUG();
647 break;
648 }
649
650 retbits |= tsize << PL080_CONTROL_TRANSFER_SIZE_SHIFT;
651 return retbits;
652}
653
Russell King - ARM Linux542361f2011-01-03 22:43:15 +0000654struct pl08x_lli_build_data {
655 struct pl08x_txd *txd;
Russell King - ARM Linux542361f2011-01-03 22:43:15 +0000656 struct pl08x_bus_data srcbus;
657 struct pl08x_bus_data dstbus;
658 size_t remainder;
Russell King - ARM Linux25c94f72011-07-21 17:11:46 +0100659 u32 lli_bus;
Russell King - ARM Linux542361f2011-01-03 22:43:15 +0000660};
661
Linus Walleije8689e62010-09-28 15:57:37 +0200662/*
Viresh Kumar0532e6f2011-08-05 15:32:31 +0530663 * Autoselect a master bus to use for the transfer. Slave will be the chosen as
664 * victim in case src & dest are not similarly aligned. i.e. If after aligning
665 * masters address with width requirements of transfer (by sending few byte by
666 * byte data), slave is still not aligned, then its width will be reduced to
667 * BYTE.
668 * - prefers the destination bus if both available
Viresh Kumar036f05f2011-08-05 15:32:41 +0530669 * - prefers bus with fixed address (i.e. peripheral)
Linus Walleije8689e62010-09-28 15:57:37 +0200670 */
Russell King - ARM Linux542361f2011-01-03 22:43:15 +0000671static void pl08x_choose_master_bus(struct pl08x_lli_build_data *bd,
672 struct pl08x_bus_data **mbus, struct pl08x_bus_data **sbus, u32 cctl)
Linus Walleije8689e62010-09-28 15:57:37 +0200673{
674 if (!(cctl & PL080_CONTROL_DST_INCR)) {
Russell King - ARM Linux542361f2011-01-03 22:43:15 +0000675 *mbus = &bd->dstbus;
676 *sbus = &bd->srcbus;
Viresh Kumar036f05f2011-08-05 15:32:41 +0530677 } else if (!(cctl & PL080_CONTROL_SRC_INCR)) {
678 *mbus = &bd->srcbus;
679 *sbus = &bd->dstbus;
Linus Walleije8689e62010-09-28 15:57:37 +0200680 } else {
Viresh Kumar036f05f2011-08-05 15:32:41 +0530681 if (bd->dstbus.buswidth >= bd->srcbus.buswidth) {
Russell King - ARM Linux542361f2011-01-03 22:43:15 +0000682 *mbus = &bd->dstbus;
683 *sbus = &bd->srcbus;
Linus Walleije8689e62010-09-28 15:57:37 +0200684 } else {
Viresh Kumar036f05f2011-08-05 15:32:41 +0530685 *mbus = &bd->srcbus;
686 *sbus = &bd->dstbus;
Linus Walleije8689e62010-09-28 15:57:37 +0200687 }
688 }
689}
690
691/*
Russell King - ARM Linux94ae8522011-01-16 20:18:05 +0000692 * Fills in one LLI for a certain transfer descriptor and advance the counter
Linus Walleije8689e62010-09-28 15:57:37 +0200693 */
Russell King - ARM Linux542361f2011-01-03 22:43:15 +0000694static void pl08x_fill_lli_for_desc(struct pl08x_lli_build_data *bd,
695 int num_llis, int len, u32 cctl)
Linus Walleije8689e62010-09-28 15:57:37 +0200696{
Russell King - ARM Linux542361f2011-01-03 22:43:15 +0000697 struct pl08x_lli *llis_va = bd->txd->llis_va;
698 dma_addr_t llis_bus = bd->txd->llis_bus;
Linus Walleije8689e62010-09-28 15:57:37 +0200699
700 BUG_ON(num_llis >= MAX_NUM_TSFR_LLIS);
701
Russell King - ARM Linux30749cb2011-01-03 22:41:13 +0000702 llis_va[num_llis].cctl = cctl;
Russell King - ARM Linux542361f2011-01-03 22:43:15 +0000703 llis_va[num_llis].src = bd->srcbus.addr;
704 llis_va[num_llis].dst = bd->dstbus.addr;
Viresh Kumar3e27ee82011-08-05 15:32:27 +0530705 llis_va[num_llis].lli = llis_bus + (num_llis + 1) *
706 sizeof(struct pl08x_lli);
Russell King - ARM Linux25c94f72011-07-21 17:11:46 +0100707 llis_va[num_llis].lli |= bd->lli_bus;
Linus Walleije8689e62010-09-28 15:57:37 +0200708
709 if (cctl & PL080_CONTROL_SRC_INCR)
Russell King - ARM Linux542361f2011-01-03 22:43:15 +0000710 bd->srcbus.addr += len;
Linus Walleije8689e62010-09-28 15:57:37 +0200711 if (cctl & PL080_CONTROL_DST_INCR)
Russell King - ARM Linux542361f2011-01-03 22:43:15 +0000712 bd->dstbus.addr += len;
Linus Walleije8689e62010-09-28 15:57:37 +0200713
Russell King - ARM Linux542361f2011-01-03 22:43:15 +0000714 BUG_ON(bd->remainder < len);
Russell King - ARM Linuxcace6582011-01-03 22:37:31 +0000715
Russell King - ARM Linux542361f2011-01-03 22:43:15 +0000716 bd->remainder -= len;
Linus Walleije8689e62010-09-28 15:57:37 +0200717}
718
Viresh Kumar03af5002011-08-05 15:32:39 +0530719static inline void prep_byte_width_lli(struct pl08x_lli_build_data *bd,
720 u32 *cctl, u32 len, int num_llis, size_t *total_bytes)
Linus Walleije8689e62010-09-28 15:57:37 +0200721{
Viresh Kumar03af5002011-08-05 15:32:39 +0530722 *cctl = pl08x_cctl_bits(*cctl, 1, 1, len);
723 pl08x_fill_lli_for_desc(bd, num_llis, len, *cctl);
724 (*total_bytes) += len;
Linus Walleije8689e62010-09-28 15:57:37 +0200725}
726
727/*
728 * This fills in the table of LLIs for the transfer descriptor
729 * Note that we assume we never have to change the burst sizes
730 * Return 0 for error
731 */
732static int pl08x_fill_llis_for_desc(struct pl08x_driver_data *pl08x,
733 struct pl08x_txd *txd)
734{
Linus Walleije8689e62010-09-28 15:57:37 +0200735 struct pl08x_bus_data *mbus, *sbus;
Russell King - ARM Linux542361f2011-01-03 22:43:15 +0000736 struct pl08x_lli_build_data bd;
Linus Walleije8689e62010-09-28 15:57:37 +0200737 int num_llis = 0;
Viresh Kumar03af5002011-08-05 15:32:39 +0530738 u32 cctl, early_bytes = 0;
Viresh Kumarb7f69d92011-08-05 15:32:43 +0530739 size_t max_bytes_per_lli, total_bytes;
Russell King - ARM Linux7cb72ad2011-01-03 22:35:28 +0000740 struct pl08x_lli *llis_va;
Viresh Kumarb7f69d92011-08-05 15:32:43 +0530741 struct pl08x_sg *dsg;
Linus Walleije8689e62010-09-28 15:57:37 +0200742
Viresh Kumar3e27ee82011-08-05 15:32:27 +0530743 txd->llis_va = dma_pool_alloc(pl08x->pool, GFP_NOWAIT, &txd->llis_bus);
Linus Walleije8689e62010-09-28 15:57:37 +0200744 if (!txd->llis_va) {
745 dev_err(&pl08x->adev->dev, "%s no memory for llis\n", __func__);
746 return 0;
747 }
748
749 pl08x->pool_ctr++;
750
Russell King - ARM Linux542361f2011-01-03 22:43:15 +0000751 bd.txd = txd;
Russell King - ARM Linux25c94f72011-07-21 17:11:46 +0100752 bd.lli_bus = (pl08x->lli_buses & PL08X_AHB2) ? PL080_LLI_LM_AHB2 : 0;
Viresh Kumarb7f69d92011-08-05 15:32:43 +0530753 cctl = txd->cctl;
Russell King - ARM Linux542361f2011-01-03 22:43:15 +0000754
Linus Walleije8689e62010-09-28 15:57:37 +0200755 /* Find maximum width of the source bus */
Russell King - ARM Linux542361f2011-01-03 22:43:15 +0000756 bd.srcbus.maxwidth =
Linus Walleije8689e62010-09-28 15:57:37 +0200757 pl08x_get_bytes_for_cctl((cctl & PL080_CONTROL_SWIDTH_MASK) >>
758 PL080_CONTROL_SWIDTH_SHIFT);
759
760 /* Find maximum width of the destination bus */
Russell King - ARM Linux542361f2011-01-03 22:43:15 +0000761 bd.dstbus.maxwidth =
Linus Walleije8689e62010-09-28 15:57:37 +0200762 pl08x_get_bytes_for_cctl((cctl & PL080_CONTROL_DWIDTH_MASK) >>
763 PL080_CONTROL_DWIDTH_SHIFT);
764
Viresh Kumarb7f69d92011-08-05 15:32:43 +0530765 list_for_each_entry(dsg, &txd->dsg_list, node) {
766 total_bytes = 0;
767 cctl = txd->cctl;
Linus Walleije8689e62010-09-28 15:57:37 +0200768
Viresh Kumarb7f69d92011-08-05 15:32:43 +0530769 bd.srcbus.addr = dsg->src_addr;
770 bd.dstbus.addr = dsg->dst_addr;
771 bd.remainder = dsg->len;
772 bd.srcbus.buswidth = bd.srcbus.maxwidth;
773 bd.dstbus.buswidth = bd.dstbus.maxwidth;
Linus Walleije8689e62010-09-28 15:57:37 +0200774
Viresh Kumarb7f69d92011-08-05 15:32:43 +0530775 pl08x_choose_master_bus(&bd, &mbus, &sbus, cctl);
Linus Walleije8689e62010-09-28 15:57:37 +0200776
Viresh Kumarb7f69d92011-08-05 15:32:43 +0530777 dev_vdbg(&pl08x->adev->dev, "src=0x%08x%s/%u dst=0x%08x%s/%u len=%zu\n",
778 bd.srcbus.addr, cctl & PL080_CONTROL_SRC_INCR ? "+" : "",
779 bd.srcbus.buswidth,
780 bd.dstbus.addr, cctl & PL080_CONTROL_DST_INCR ? "+" : "",
781 bd.dstbus.buswidth,
782 bd.remainder);
783 dev_vdbg(&pl08x->adev->dev, "mbus=%s sbus=%s\n",
784 mbus == &bd.srcbus ? "src" : "dst",
785 sbus == &bd.srcbus ? "src" : "dst");
Russell King - ARM Linuxfc74eb72011-07-21 17:12:06 +0100786
Viresh Kumarb7f69d92011-08-05 15:32:43 +0530787 /*
788 * Zero length is only allowed if all these requirements are
789 * met:
790 * - flow controller is peripheral.
791 * - src.addr is aligned to src.width
792 * - dst.addr is aligned to dst.width
793 *
794 * sg_len == 1 should be true, as there can be two cases here:
795 *
796 * - Memory addresses are contiguous and are not scattered.
797 * Here, Only one sg will be passed by user driver, with
798 * memory address and zero length. We pass this to controller
799 * and after the transfer it will receive the last burst
800 * request from peripheral and so transfer finishes.
801 *
802 * - Memory addresses are scattered and are not contiguous.
803 * Here, Obviously as DMA controller doesn't know when a lli's
804 * transfer gets over, it can't load next lli. So in this
805 * case, there has to be an assumption that only one lli is
806 * supported. Thus, we can't have scattered addresses.
807 */
808 if (!bd.remainder) {
809 u32 fc = (txd->ccfg & PL080_CONFIG_FLOW_CONTROL_MASK) >>
810 PL080_CONFIG_FLOW_CONTROL_SHIFT;
811 if (!((fc >= PL080_FLOW_SRC2DST_DST) &&
Viresh Kumar0a235652011-08-05 15:32:42 +0530812 (fc <= PL080_FLOW_SRC2DST_SRC))) {
Viresh Kumarb7f69d92011-08-05 15:32:43 +0530813 dev_err(&pl08x->adev->dev, "%s sg len can't be zero",
814 __func__);
815 return 0;
816 }
Linus Walleije8689e62010-09-28 15:57:37 +0200817
Viresh Kumarb7f69d92011-08-05 15:32:43 +0530818 if ((bd.srcbus.addr % bd.srcbus.buswidth) ||
Julia Lawall880db3f2012-01-12 22:49:29 +0100819 (bd.dstbus.addr % bd.dstbus.buswidth)) {
Viresh Kumarb7f69d92011-08-05 15:32:43 +0530820 dev_err(&pl08x->adev->dev,
821 "%s src & dst address must be aligned to src"
822 " & dst width if peripheral is flow controller",
823 __func__);
824 return 0;
825 }
Linus Walleije8689e62010-09-28 15:57:37 +0200826
Viresh Kumar16a2e7d2011-08-05 15:32:37 +0530827 cctl = pl08x_cctl_bits(cctl, bd.srcbus.buswidth,
Viresh Kumarb7f69d92011-08-05 15:32:43 +0530828 bd.dstbus.buswidth, 0);
829 pl08x_fill_lli_for_desc(&bd, num_llis++, 0, cctl);
830 break;
Linus Walleije8689e62010-09-28 15:57:37 +0200831 }
832
833 /*
Viresh Kumarb7f69d92011-08-05 15:32:43 +0530834 * Send byte by byte for following cases
835 * - Less than a bus width available
836 * - until master bus is aligned
Linus Walleije8689e62010-09-28 15:57:37 +0200837 */
Viresh Kumarb7f69d92011-08-05 15:32:43 +0530838 if (bd.remainder < mbus->buswidth)
839 early_bytes = bd.remainder;
840 else if ((mbus->addr) % (mbus->buswidth)) {
841 early_bytes = mbus->buswidth - (mbus->addr) %
842 (mbus->buswidth);
843 if ((bd.remainder - early_bytes) < mbus->buswidth)
844 early_bytes = bd.remainder;
Linus Walleije8689e62010-09-28 15:57:37 +0200845 }
Viresh Kumar16a2e7d2011-08-05 15:32:37 +0530846
Viresh Kumarb7f69d92011-08-05 15:32:43 +0530847 if (early_bytes) {
848 dev_vdbg(&pl08x->adev->dev,
849 "%s byte width LLIs (remain 0x%08x)\n",
850 __func__, bd.remainder);
851 prep_byte_width_lli(&bd, &cctl, early_bytes, num_llis++,
852 &total_bytes);
853 }
Linus Walleije8689e62010-09-28 15:57:37 +0200854
Viresh Kumarb7f69d92011-08-05 15:32:43 +0530855 if (bd.remainder) {
856 /*
857 * Master now aligned
858 * - if slave is not then we must set its width down
859 */
860 if (sbus->addr % sbus->buswidth) {
861 dev_dbg(&pl08x->adev->dev,
862 "%s set down bus width to one byte\n",
863 __func__);
864
865 sbus->buswidth = 1;
866 }
867
868 /*
869 * Bytes transferred = tsize * src width, not
870 * MIN(buswidths)
871 */
872 max_bytes_per_lli = bd.srcbus.buswidth *
873 PL080_CONTROL_TRANSFER_SIZE_MASK;
874 dev_vdbg(&pl08x->adev->dev,
875 "%s max bytes per lli = %zu\n",
876 __func__, max_bytes_per_lli);
877
878 /*
879 * Make largest possible LLIs until less than one bus
880 * width left
881 */
882 while (bd.remainder > (mbus->buswidth - 1)) {
883 size_t lli_len, tsize, width;
884
885 /*
886 * If enough left try to send max possible,
887 * otherwise try to send the remainder
888 */
889 lli_len = min(bd.remainder, max_bytes_per_lli);
890
891 /*
892 * Check against maximum bus alignment:
893 * Calculate actual transfer size in relation to
894 * bus width an get a maximum remainder of the
895 * highest bus width - 1
896 */
897 width = max(mbus->buswidth, sbus->buswidth);
898 lli_len = (lli_len / width) * width;
899 tsize = lli_len / bd.srcbus.buswidth;
900
901 dev_vdbg(&pl08x->adev->dev,
902 "%s fill lli with single lli chunk of "
903 "size 0x%08zx (remainder 0x%08zx)\n",
904 __func__, lli_len, bd.remainder);
905
906 cctl = pl08x_cctl_bits(cctl, bd.srcbus.buswidth,
907 bd.dstbus.buswidth, tsize);
908 pl08x_fill_lli_for_desc(&bd, num_llis++,
909 lli_len, cctl);
910 total_bytes += lli_len;
911 }
912
913 /*
914 * Send any odd bytes
915 */
916 if (bd.remainder) {
917 dev_vdbg(&pl08x->adev->dev,
918 "%s align with boundary, send odd bytes (remain %zu)\n",
919 __func__, bd.remainder);
920 prep_byte_width_lli(&bd, &cctl, bd.remainder,
921 num_llis++, &total_bytes);
922 }
923 }
924
925 if (total_bytes != dsg->len) {
926 dev_err(&pl08x->adev->dev,
927 "%s size of encoded lli:s don't match total txd, transferred 0x%08zx from size 0x%08zx\n",
928 __func__, total_bytes, dsg->len);
929 return 0;
930 }
931
932 if (num_llis >= MAX_NUM_TSFR_LLIS) {
933 dev_err(&pl08x->adev->dev,
934 "%s need to increase MAX_NUM_TSFR_LLIS from 0x%08x\n",
935 __func__, (u32) MAX_NUM_TSFR_LLIS);
936 return 0;
937 }
Linus Walleije8689e62010-09-28 15:57:37 +0200938 }
Linus Walleije8689e62010-09-28 15:57:37 +0200939
Russell King - ARM Linuxb58b6b52011-01-03 22:34:48 +0000940 llis_va = txd->llis_va;
Russell King - ARM Linux94ae8522011-01-16 20:18:05 +0000941 /* The final LLI terminates the LLI. */
Russell King - ARM Linuxbfddfb42011-01-03 22:38:12 +0000942 llis_va[num_llis - 1].lli = 0;
Russell King - ARM Linux94ae8522011-01-16 20:18:05 +0000943 /* The final LLI element shall also fire an interrupt. */
Russell King - ARM Linuxb58b6b52011-01-03 22:34:48 +0000944 llis_va[num_llis - 1].cctl |= PL080_CONTROL_TC_IRQ_EN;
Linus Walleije8689e62010-09-28 15:57:37 +0200945
Linus Walleije8689e62010-09-28 15:57:37 +0200946#ifdef VERBOSE_DEBUG
947 {
948 int i;
949
Russell King - ARM Linuxfc74eb72011-07-21 17:12:06 +0100950 dev_vdbg(&pl08x->adev->dev,
951 "%-3s %-9s %-10s %-10s %-10s %s\n",
952 "lli", "", "csrc", "cdst", "clli", "cctl");
Linus Walleije8689e62010-09-28 15:57:37 +0200953 for (i = 0; i < num_llis; i++) {
954 dev_vdbg(&pl08x->adev->dev,
Russell King - ARM Linuxfc74eb72011-07-21 17:12:06 +0100955 "%3d @%p: 0x%08x 0x%08x 0x%08x 0x%08x\n",
956 i, &llis_va[i], llis_va[i].src,
957 llis_va[i].dst, llis_va[i].lli, llis_va[i].cctl
Linus Walleije8689e62010-09-28 15:57:37 +0200958 );
959 }
960 }
961#endif
962
963 return num_llis;
964}
965
966/* You should call this with the struct pl08x lock held */
967static void pl08x_free_txd(struct pl08x_driver_data *pl08x,
968 struct pl08x_txd *txd)
969{
Viresh Kumarb7f69d92011-08-05 15:32:43 +0530970 struct pl08x_sg *dsg, *_dsg;
971
Linus Walleije8689e62010-09-28 15:57:37 +0200972 /* Free the LLI */
Viresh Kumarc1205642011-08-05 15:32:44 +0530973 if (txd->llis_va)
974 dma_pool_free(pl08x->pool, txd->llis_va, txd->llis_bus);
Linus Walleije8689e62010-09-28 15:57:37 +0200975
976 pl08x->pool_ctr--;
977
Viresh Kumarb7f69d92011-08-05 15:32:43 +0530978 list_for_each_entry_safe(dsg, _dsg, &txd->dsg_list, node) {
979 list_del(&dsg->node);
980 kfree(dsg);
981 }
982
Linus Walleije8689e62010-09-28 15:57:37 +0200983 kfree(txd);
984}
985
986static void pl08x_free_txd_list(struct pl08x_driver_data *pl08x,
987 struct pl08x_dma_chan *plchan)
988{
989 struct pl08x_txd *txdi = NULL;
990 struct pl08x_txd *next;
991
Russell King - ARM Linux15c17232011-01-03 22:44:36 +0000992 if (!list_empty(&plchan->pend_list)) {
Linus Walleije8689e62010-09-28 15:57:37 +0200993 list_for_each_entry_safe(txdi,
Russell King - ARM Linux15c17232011-01-03 22:44:36 +0000994 next, &plchan->pend_list, node) {
Russell Kingc48d4962012-05-25 11:48:51 +0100995 pl08x_release_mux(plchan);
Linus Walleije8689e62010-09-28 15:57:37 +0200996 list_del(&txdi->node);
997 pl08x_free_txd(pl08x, txdi);
998 }
Linus Walleije8689e62010-09-28 15:57:37 +0200999 }
1000}
1001
1002/*
1003 * The DMA ENGINE API
1004 */
1005static int pl08x_alloc_chan_resources(struct dma_chan *chan)
1006{
1007 return 0;
1008}
1009
1010static void pl08x_free_chan_resources(struct dma_chan *chan)
1011{
1012}
1013
1014/*
1015 * This should be called with the channel plchan->lock held
1016 */
Russell Kingc48d4962012-05-25 11:48:51 +01001017static int prep_phy_channel(struct pl08x_dma_chan *plchan)
Linus Walleije8689e62010-09-28 15:57:37 +02001018{
1019 struct pl08x_driver_data *pl08x = plchan->host;
1020 struct pl08x_phy_chan *ch;
Linus Walleije8689e62010-09-28 15:57:37 +02001021
1022 /* Check if we already have a channel */
Viresh Kumar8f0d30f2011-11-29 12:56:50 +05301023 if (plchan->phychan) {
1024 ch = plchan->phychan;
1025 goto got_channel;
1026 }
Linus Walleije8689e62010-09-28 15:57:37 +02001027
1028 ch = pl08x_get_phy_channel(pl08x, plchan);
1029 if (!ch) {
1030 /* No physical channel available, cope with it */
1031 dev_dbg(&pl08x->adev->dev, "no physical channel available for xfer on %s\n", plchan->name);
1032 return -EBUSY;
1033 }
1034
Viresh Kumar8f0d30f2011-11-29 12:56:50 +05301035 plchan->phychan = ch;
Russell Kingc48d4962012-05-25 11:48:51 +01001036 dev_dbg(&pl08x->adev->dev, "allocated physical channel %d for xfer on %s\n",
1037 ch->id, plchan->name);
Linus Walleije8689e62010-09-28 15:57:37 +02001038
Viresh Kumar8f0d30f2011-11-29 12:56:50 +05301039got_channel:
Russell King - ARM Linux8087aac2011-01-03 22:45:17 +00001040 plchan->phychan_hold++;
Linus Walleije8689e62010-09-28 15:57:37 +02001041
1042 return 0;
1043}
1044
Russell King - ARM Linux8c8cc2b2011-01-03 22:36:09 +00001045static void release_phy_channel(struct pl08x_dma_chan *plchan)
1046{
1047 struct pl08x_driver_data *pl08x = plchan->host;
1048
Russell King - ARM Linux8c8cc2b2011-01-03 22:36:09 +00001049 pl08x_put_phy_channel(pl08x, plchan->phychan);
1050 plchan->phychan = NULL;
1051}
1052
Linus Walleije8689e62010-09-28 15:57:37 +02001053static dma_cookie_t pl08x_tx_submit(struct dma_async_tx_descriptor *tx)
1054{
1055 struct pl08x_dma_chan *plchan = to_pl08x_chan(tx->chan);
Russell King - ARM Linux501e67e2011-01-03 22:44:57 +00001056 struct pl08x_txd *txd = to_pl08x_txd(tx);
Russell King - ARM Linuxc370e592011-01-03 22:45:37 +00001057 unsigned long flags;
Russell King - ARM Linux884485e2012-03-06 22:34:46 +00001058 dma_cookie_t cookie;
Russell King - ARM Linuxc370e592011-01-03 22:45:37 +00001059
1060 spin_lock_irqsave(&plchan->lock, flags);
Russell King - ARM Linux884485e2012-03-06 22:34:46 +00001061 cookie = dma_cookie_assign(tx);
Russell King - ARM Linux501e67e2011-01-03 22:44:57 +00001062
1063 /* Put this onto the pending list */
1064 list_add_tail(&txd->node, &plchan->pend_list);
1065
1066 /*
1067 * If there was no physical channel available for this memcpy,
1068 * stack the request up and indicate that the channel is waiting
1069 * for a free physical channel.
1070 */
1071 if (!plchan->slave && !plchan->phychan) {
1072 /* Do this memcpy whenever there is a channel ready */
1073 plchan->state = PL08X_CHAN_WAITING;
Russell King - ARM Linux8087aac2011-01-03 22:45:17 +00001074 } else {
1075 plchan->phychan_hold--;
Russell King - ARM Linux501e67e2011-01-03 22:44:57 +00001076 }
1077
Russell King - ARM Linuxc370e592011-01-03 22:45:37 +00001078 spin_unlock_irqrestore(&plchan->lock, flags);
Linus Walleije8689e62010-09-28 15:57:37 +02001079
Russell King - ARM Linux884485e2012-03-06 22:34:46 +00001080 return cookie;
Linus Walleije8689e62010-09-28 15:57:37 +02001081}
1082
1083static struct dma_async_tx_descriptor *pl08x_prep_dma_interrupt(
1084 struct dma_chan *chan, unsigned long flags)
1085{
1086 struct dma_async_tx_descriptor *retval = NULL;
1087
1088 return retval;
1089}
1090
1091/*
Russell King - ARM Linux94ae8522011-01-16 20:18:05 +00001092 * Code accessing dma_async_is_complete() in a tight loop may give problems.
1093 * If slaves are relying on interrupts to signal completion this function
1094 * must not be called with interrupts disabled.
Linus Walleije8689e62010-09-28 15:57:37 +02001095 */
Viresh Kumar3e27ee82011-08-05 15:32:27 +05301096static enum dma_status pl08x_dma_tx_status(struct dma_chan *chan,
1097 dma_cookie_t cookie, struct dma_tx_state *txstate)
Linus Walleije8689e62010-09-28 15:57:37 +02001098{
1099 struct pl08x_dma_chan *plchan = to_pl08x_chan(chan);
Linus Walleije8689e62010-09-28 15:57:37 +02001100 enum dma_status ret;
Linus Walleije8689e62010-09-28 15:57:37 +02001101
Russell King - ARM Linux96a2af42012-03-06 22:35:27 +00001102 ret = dma_cookie_status(chan, cookie, txstate);
1103 if (ret == DMA_SUCCESS)
Linus Walleije8689e62010-09-28 15:57:37 +02001104 return ret;
Linus Walleije8689e62010-09-28 15:57:37 +02001105
1106 /*
Linus Walleije8689e62010-09-28 15:57:37 +02001107 * This cookie not complete yet
Russell King - ARM Linux96a2af42012-03-06 22:35:27 +00001108 * Get number of bytes left in the active transactions and queue
Linus Walleije8689e62010-09-28 15:57:37 +02001109 */
Russell King - ARM Linux96a2af42012-03-06 22:35:27 +00001110 dma_set_residue(txstate, pl08x_getbytes_chan(plchan));
Linus Walleije8689e62010-09-28 15:57:37 +02001111
1112 if (plchan->state == PL08X_CHAN_PAUSED)
1113 return DMA_PAUSED;
1114
1115 /* Whether waiting or running, we're in progress */
1116 return DMA_IN_PROGRESS;
1117}
1118
1119/* PrimeCell DMA extension */
1120struct burst_table {
Russell King - ARM Linux760596c62011-07-21 17:14:08 +01001121 u32 burstwords;
Linus Walleije8689e62010-09-28 15:57:37 +02001122 u32 reg;
1123};
1124
1125static const struct burst_table burst_sizes[] = {
1126 {
1127 .burstwords = 256,
Russell King - ARM Linux760596c62011-07-21 17:14:08 +01001128 .reg = PL080_BSIZE_256,
Linus Walleije8689e62010-09-28 15:57:37 +02001129 },
1130 {
1131 .burstwords = 128,
Russell King - ARM Linux760596c62011-07-21 17:14:08 +01001132 .reg = PL080_BSIZE_128,
Linus Walleije8689e62010-09-28 15:57:37 +02001133 },
1134 {
1135 .burstwords = 64,
Russell King - ARM Linux760596c62011-07-21 17:14:08 +01001136 .reg = PL080_BSIZE_64,
Linus Walleije8689e62010-09-28 15:57:37 +02001137 },
1138 {
1139 .burstwords = 32,
Russell King - ARM Linux760596c62011-07-21 17:14:08 +01001140 .reg = PL080_BSIZE_32,
Linus Walleije8689e62010-09-28 15:57:37 +02001141 },
1142 {
1143 .burstwords = 16,
Russell King - ARM Linux760596c62011-07-21 17:14:08 +01001144 .reg = PL080_BSIZE_16,
Linus Walleije8689e62010-09-28 15:57:37 +02001145 },
1146 {
1147 .burstwords = 8,
Russell King - ARM Linux760596c62011-07-21 17:14:08 +01001148 .reg = PL080_BSIZE_8,
Linus Walleije8689e62010-09-28 15:57:37 +02001149 },
1150 {
1151 .burstwords = 4,
Russell King - ARM Linux760596c62011-07-21 17:14:08 +01001152 .reg = PL080_BSIZE_4,
Linus Walleije8689e62010-09-28 15:57:37 +02001153 },
1154 {
Russell King - ARM Linux760596c62011-07-21 17:14:08 +01001155 .burstwords = 0,
1156 .reg = PL080_BSIZE_1,
Linus Walleije8689e62010-09-28 15:57:37 +02001157 },
1158};
1159
Russell King - ARM Linux121c8472011-07-21 17:13:48 +01001160/*
1161 * Given the source and destination available bus masks, select which
1162 * will be routed to each port. We try to have source and destination
1163 * on separate ports, but always respect the allowable settings.
1164 */
1165static u32 pl08x_select_bus(u8 src, u8 dst)
1166{
1167 u32 cctl = 0;
1168
1169 if (!(dst & PL08X_AHB1) || ((dst & PL08X_AHB2) && (src & PL08X_AHB1)))
1170 cctl |= PL080_CONTROL_DST_AHB2;
1171 if (!(src & PL08X_AHB1) || ((src & PL08X_AHB2) && !(dst & PL08X_AHB2)))
1172 cctl |= PL080_CONTROL_SRC_AHB2;
1173
1174 return cctl;
1175}
1176
Russell King - ARM Linuxf14c4262011-07-21 17:12:47 +01001177static u32 pl08x_cctl(u32 cctl)
1178{
1179 cctl &= ~(PL080_CONTROL_SRC_AHB2 | PL080_CONTROL_DST_AHB2 |
1180 PL080_CONTROL_SRC_INCR | PL080_CONTROL_DST_INCR |
1181 PL080_CONTROL_PROT_MASK);
1182
1183 /* Access the cell in privileged mode, non-bufferable, non-cacheable */
1184 return cctl | PL080_CONTROL_PROT_SYS;
1185}
1186
Russell King - ARM Linuxaa88cda2011-07-21 17:13:28 +01001187static u32 pl08x_width(enum dma_slave_buswidth width)
1188{
1189 switch (width) {
1190 case DMA_SLAVE_BUSWIDTH_1_BYTE:
1191 return PL080_WIDTH_8BIT;
1192 case DMA_SLAVE_BUSWIDTH_2_BYTES:
1193 return PL080_WIDTH_16BIT;
1194 case DMA_SLAVE_BUSWIDTH_4_BYTES:
1195 return PL080_WIDTH_32BIT;
Vinod Koulf32807f2011-07-25 19:22:01 +05301196 default:
1197 return ~0;
Russell King - ARM Linuxaa88cda2011-07-21 17:13:28 +01001198 }
Russell King - ARM Linuxaa88cda2011-07-21 17:13:28 +01001199}
1200
Russell King - ARM Linux760596c62011-07-21 17:14:08 +01001201static u32 pl08x_burst(u32 maxburst)
1202{
1203 int i;
1204
1205 for (i = 0; i < ARRAY_SIZE(burst_sizes); i++)
1206 if (burst_sizes[i].burstwords <= maxburst)
1207 break;
1208
1209 return burst_sizes[i].reg;
1210}
1211
Russell King9862ba12012-05-16 11:16:03 +01001212static u32 pl08x_get_cctl(struct pl08x_dma_chan *plchan,
1213 enum dma_slave_buswidth addr_width, u32 maxburst)
1214{
1215 u32 width, burst, cctl = 0;
1216
1217 width = pl08x_width(addr_width);
1218 if (width == ~0)
1219 return ~0;
1220
1221 cctl |= width << PL080_CONTROL_SWIDTH_SHIFT;
1222 cctl |= width << PL080_CONTROL_DWIDTH_SHIFT;
1223
1224 /*
1225 * If this channel will only request single transfers, set this
1226 * down to ONE element. Also select one element if no maxburst
1227 * is specified.
1228 */
1229 if (plchan->cd->single)
1230 maxburst = 1;
1231
1232 burst = pl08x_burst(maxburst);
1233 cctl |= burst << PL080_CONTROL_SB_SIZE_SHIFT;
1234 cctl |= burst << PL080_CONTROL_DB_SIZE_SHIFT;
1235
1236 return pl08x_cctl(cctl);
1237}
1238
Russell King - ARM Linuxf0fd9442011-01-03 22:45:57 +00001239static int dma_set_runtime_config(struct dma_chan *chan,
1240 struct dma_slave_config *config)
Linus Walleije8689e62010-09-28 15:57:37 +02001241{
1242 struct pl08x_dma_chan *plchan = to_pl08x_chan(chan);
Linus Walleije8689e62010-09-28 15:57:37 +02001243
Russell King - ARM Linuxb7f75862011-01-03 22:46:17 +00001244 if (!plchan->slave)
1245 return -EINVAL;
1246
Russell Kingdc8d5f82012-05-16 12:20:55 +01001247 /* Reject definitely invalid configurations */
1248 if (config->src_addr_width == DMA_SLAVE_BUSWIDTH_8_BYTES ||
1249 config->dst_addr_width == DMA_SLAVE_BUSWIDTH_8_BYTES)
Russell King - ARM Linuxf0fd9442011-01-03 22:45:57 +00001250 return -EINVAL;
Linus Walleije8689e62010-09-28 15:57:37 +02001251
Russell Kinged91c132012-05-16 11:02:40 +01001252 plchan->cfg = *config;
1253
Russell King - ARM Linuxf0fd9442011-01-03 22:45:57 +00001254 return 0;
Linus Walleije8689e62010-09-28 15:57:37 +02001255}
1256
1257/*
1258 * Slave transactions callback to the slave device to allow
1259 * synchronization of slave DMA signals with the DMAC enable
1260 */
1261static void pl08x_issue_pending(struct dma_chan *chan)
1262{
1263 struct pl08x_dma_chan *plchan = to_pl08x_chan(chan);
Linus Walleije8689e62010-09-28 15:57:37 +02001264 unsigned long flags;
1265
1266 spin_lock_irqsave(&plchan->lock, flags);
Russell King - ARM Linux9c0bb432011-01-03 22:32:05 +00001267 /* Something is already active, or we're waiting for a channel... */
1268 if (plchan->at || plchan->state == PL08X_CHAN_WAITING) {
1269 spin_unlock_irqrestore(&plchan->lock, flags);
Linus Walleije8689e62010-09-28 15:57:37 +02001270 return;
Russell King - ARM Linux9c0bb432011-01-03 22:32:05 +00001271 }
Linus Walleije8689e62010-09-28 15:57:37 +02001272
1273 /* Take the first element in the queue and execute it */
Russell King - ARM Linux15c17232011-01-03 22:44:36 +00001274 if (!list_empty(&plchan->pend_list)) {
Linus Walleije8689e62010-09-28 15:57:37 +02001275 struct pl08x_txd *next;
1276
Russell King - ARM Linux15c17232011-01-03 22:44:36 +00001277 next = list_first_entry(&plchan->pend_list,
Linus Walleije8689e62010-09-28 15:57:37 +02001278 struct pl08x_txd,
1279 node);
1280 list_del(&next->node);
Linus Walleije8689e62010-09-28 15:57:37 +02001281 plchan->state = PL08X_CHAN_RUNNING;
1282
Russell King - ARM Linuxc885bee2011-01-03 22:38:52 +00001283 pl08x_start_txd(plchan, next);
Linus Walleije8689e62010-09-28 15:57:37 +02001284 }
1285
1286 spin_unlock_irqrestore(&plchan->lock, flags);
1287}
1288
1289static int pl08x_prep_channel_resources(struct pl08x_dma_chan *plchan,
1290 struct pl08x_txd *txd)
1291{
Linus Walleije8689e62010-09-28 15:57:37 +02001292 struct pl08x_driver_data *pl08x = plchan->host;
Russell King - ARM Linuxc370e592011-01-03 22:45:37 +00001293 unsigned long flags;
1294 int num_llis, ret;
Linus Walleije8689e62010-09-28 15:57:37 +02001295
1296 num_llis = pl08x_fill_llis_for_desc(pl08x, txd);
Russell King - ARM Linuxdafa7312011-01-03 22:31:45 +00001297 if (!num_llis) {
Viresh Kumar57001a62011-08-05 15:32:45 +05301298 spin_lock_irqsave(&plchan->lock, flags);
1299 pl08x_free_txd(pl08x, txd);
1300 spin_unlock_irqrestore(&plchan->lock, flags);
Linus Walleije8689e62010-09-28 15:57:37 +02001301 return -EINVAL;
Russell King - ARM Linuxdafa7312011-01-03 22:31:45 +00001302 }
Linus Walleije8689e62010-09-28 15:57:37 +02001303
Russell King - ARM Linuxc370e592011-01-03 22:45:37 +00001304 spin_lock_irqsave(&plchan->lock, flags);
Linus Walleije8689e62010-09-28 15:57:37 +02001305
Linus Walleije8689e62010-09-28 15:57:37 +02001306 /*
1307 * See if we already have a physical channel allocated,
1308 * else this is the time to try to get one.
1309 */
Russell Kingc48d4962012-05-25 11:48:51 +01001310 ret = prep_phy_channel(plchan);
Linus Walleije8689e62010-09-28 15:57:37 +02001311 if (ret) {
1312 /*
Russell King - ARM Linux501e67e2011-01-03 22:44:57 +00001313 * No physical channel was available.
1314 *
1315 * memcpy transfers can be sorted out at submission time.
Linus Walleije8689e62010-09-28 15:57:37 +02001316 */
1317 if (plchan->slave) {
1318 pl08x_free_txd_list(pl08x, plchan);
Russell King - ARM Linux501e67e2011-01-03 22:44:57 +00001319 pl08x_free_txd(pl08x, txd);
Russell King - ARM Linuxc370e592011-01-03 22:45:37 +00001320 spin_unlock_irqrestore(&plchan->lock, flags);
Linus Walleije8689e62010-09-28 15:57:37 +02001321 return -EBUSY;
1322 }
Linus Walleije8689e62010-09-28 15:57:37 +02001323 } else
1324 /*
Russell King - ARM Linux94ae8522011-01-16 20:18:05 +00001325 * Else we're all set, paused and ready to roll, status
1326 * will switch to PL08X_CHAN_RUNNING when we call
1327 * issue_pending(). If there is something running on the
1328 * channel already we don't change its state.
Linus Walleije8689e62010-09-28 15:57:37 +02001329 */
1330 if (plchan->state == PL08X_CHAN_IDLE)
1331 plchan->state = PL08X_CHAN_PAUSED;
1332
Russell King - ARM Linuxc370e592011-01-03 22:45:37 +00001333 spin_unlock_irqrestore(&plchan->lock, flags);
Linus Walleije8689e62010-09-28 15:57:37 +02001334
1335 return 0;
1336}
1337
Russell King - ARM Linuxc0428792011-01-03 22:43:56 +00001338static struct pl08x_txd *pl08x_get_txd(struct pl08x_dma_chan *plchan,
1339 unsigned long flags)
Russell King - ARM Linuxac3cd202011-01-03 22:35:49 +00001340{
Viresh Kumarb201c112011-08-05 15:32:29 +05301341 struct pl08x_txd *txd = kzalloc(sizeof(*txd), GFP_NOWAIT);
Russell King - ARM Linuxac3cd202011-01-03 22:35:49 +00001342
1343 if (txd) {
1344 dma_async_tx_descriptor_init(&txd->tx, &plchan->chan);
Russell King - ARM Linuxc0428792011-01-03 22:43:56 +00001345 txd->tx.flags = flags;
Russell King - ARM Linuxac3cd202011-01-03 22:35:49 +00001346 txd->tx.tx_submit = pl08x_tx_submit;
1347 INIT_LIST_HEAD(&txd->node);
Viresh Kumarb7f69d92011-08-05 15:32:43 +05301348 INIT_LIST_HEAD(&txd->dsg_list);
Russell King - ARM Linux4983a042011-01-03 22:39:33 +00001349
1350 /* Always enable error and terminal interrupts */
1351 txd->ccfg = PL080_CONFIG_ERR_IRQ_MASK |
1352 PL080_CONFIG_TC_IRQ_MASK;
Russell King - ARM Linuxac3cd202011-01-03 22:35:49 +00001353 }
1354 return txd;
1355}
1356
Linus Walleije8689e62010-09-28 15:57:37 +02001357/*
1358 * Initialize a descriptor to be used by memcpy submit
1359 */
1360static struct dma_async_tx_descriptor *pl08x_prep_dma_memcpy(
1361 struct dma_chan *chan, dma_addr_t dest, dma_addr_t src,
1362 size_t len, unsigned long flags)
1363{
1364 struct pl08x_dma_chan *plchan = to_pl08x_chan(chan);
1365 struct pl08x_driver_data *pl08x = plchan->host;
1366 struct pl08x_txd *txd;
Viresh Kumarb7f69d92011-08-05 15:32:43 +05301367 struct pl08x_sg *dsg;
Linus Walleije8689e62010-09-28 15:57:37 +02001368 int ret;
1369
Russell King - ARM Linuxc0428792011-01-03 22:43:56 +00001370 txd = pl08x_get_txd(plchan, flags);
Linus Walleije8689e62010-09-28 15:57:37 +02001371 if (!txd) {
1372 dev_err(&pl08x->adev->dev,
1373 "%s no memory for descriptor\n", __func__);
1374 return NULL;
1375 }
1376
Viresh Kumarb7f69d92011-08-05 15:32:43 +05301377 dsg = kzalloc(sizeof(struct pl08x_sg), GFP_NOWAIT);
1378 if (!dsg) {
1379 pl08x_free_txd(pl08x, txd);
1380 dev_err(&pl08x->adev->dev, "%s no memory for pl080 sg\n",
1381 __func__);
1382 return NULL;
1383 }
1384 list_add_tail(&dsg->node, &txd->dsg_list);
1385
Viresh Kumarb7f69d92011-08-05 15:32:43 +05301386 dsg->src_addr = src;
1387 dsg->dst_addr = dest;
1388 dsg->len = len;
Linus Walleije8689e62010-09-28 15:57:37 +02001389
1390 /* Set platform data for m2m */
Russell King - ARM Linux4983a042011-01-03 22:39:33 +00001391 txd->ccfg |= PL080_FLOW_MEM2MEM << PL080_CONFIG_FLOW_CONTROL_SHIFT;
Russell Kingdc8d5f82012-05-16 12:20:55 +01001392 txd->cctl = pl08x->pd->memcpy_channel.cctl_memcpy &
Russell King - ARM Linuxc7da9a52011-01-03 22:40:53 +00001393 ~(PL080_CONTROL_DST_AHB2 | PL080_CONTROL_SRC_AHB2);
Russell King - ARM Linux4983a042011-01-03 22:39:33 +00001394
Linus Walleije8689e62010-09-28 15:57:37 +02001395 /* Both to be incremented or the code will break */
Russell King - ARM Linux70b5ed62011-01-03 22:40:13 +00001396 txd->cctl |= PL080_CONTROL_SRC_INCR | PL080_CONTROL_DST_INCR;
Russell King - ARM Linuxc7da9a52011-01-03 22:40:53 +00001397
Russell King - ARM Linuxc7da9a52011-01-03 22:40:53 +00001398 if (pl08x->vd->dualmaster)
Russell King - ARM Linux121c8472011-07-21 17:13:48 +01001399 txd->cctl |= pl08x_select_bus(pl08x->mem_buses,
1400 pl08x->mem_buses);
Linus Walleije8689e62010-09-28 15:57:37 +02001401
Linus Walleije8689e62010-09-28 15:57:37 +02001402 ret = pl08x_prep_channel_resources(plchan, txd);
1403 if (ret)
1404 return NULL;
Linus Walleije8689e62010-09-28 15:57:37 +02001405
1406 return &txd->tx;
1407}
1408
Russell King - ARM Linux3e2a0372011-01-03 22:32:46 +00001409static struct dma_async_tx_descriptor *pl08x_prep_slave_sg(
Linus Walleije8689e62010-09-28 15:57:37 +02001410 struct dma_chan *chan, struct scatterlist *sgl,
Vinod Kouldb8196d2011-10-13 22:34:23 +05301411 unsigned int sg_len, enum dma_transfer_direction direction,
Alexandre Bounine185ecb52012-03-08 15:35:13 -05001412 unsigned long flags, void *context)
Linus Walleije8689e62010-09-28 15:57:37 +02001413{
1414 struct pl08x_dma_chan *plchan = to_pl08x_chan(chan);
1415 struct pl08x_driver_data *pl08x = plchan->host;
1416 struct pl08x_txd *txd;
Viresh Kumarb7f69d92011-08-05 15:32:43 +05301417 struct pl08x_sg *dsg;
1418 struct scatterlist *sg;
Russell Kingdc8d5f82012-05-16 12:20:55 +01001419 enum dma_slave_buswidth addr_width;
Viresh Kumarb7f69d92011-08-05 15:32:43 +05301420 dma_addr_t slave_addr;
Viresh Kumar0a235652011-08-05 15:32:42 +05301421 int ret, tmp;
Russell King409ec8d2012-05-16 11:08:43 +01001422 u8 src_buses, dst_buses;
Russell Kingdc8d5f82012-05-16 12:20:55 +01001423 u32 maxburst, cctl;
Linus Walleije8689e62010-09-28 15:57:37 +02001424
Linus Walleije8689e62010-09-28 15:57:37 +02001425 dev_dbg(&pl08x->adev->dev, "%s prepare transaction of %d bytes from %s\n",
Lars-Peter Clausenfdaf9c42012-04-25 20:50:52 +02001426 __func__, sg_dma_len(sgl), plchan->name);
Linus Walleije8689e62010-09-28 15:57:37 +02001427
Russell King - ARM Linuxc0428792011-01-03 22:43:56 +00001428 txd = pl08x_get_txd(plchan, flags);
Linus Walleije8689e62010-09-28 15:57:37 +02001429 if (!txd) {
1430 dev_err(&pl08x->adev->dev, "%s no txd\n", __func__);
1431 return NULL;
1432 }
1433
Linus Walleije8689e62010-09-28 15:57:37 +02001434 /*
1435 * Set up addresses, the PrimeCell configured address
1436 * will take precedence since this may configure the
1437 * channel target address dynamically at runtime.
1438 */
Vinod Kouldb8196d2011-10-13 22:34:23 +05301439 if (direction == DMA_MEM_TO_DEV) {
Russell Kingdc8d5f82012-05-16 12:20:55 +01001440 cctl = PL080_CONTROL_SRC_INCR;
Russell Kinged91c132012-05-16 11:02:40 +01001441 slave_addr = plchan->cfg.dst_addr;
Russell Kingdc8d5f82012-05-16 12:20:55 +01001442 addr_width = plchan->cfg.dst_addr_width;
1443 maxburst = plchan->cfg.dst_maxburst;
Russell King409ec8d2012-05-16 11:08:43 +01001444 src_buses = pl08x->mem_buses;
1445 dst_buses = plchan->cd->periph_buses;
Vinod Kouldb8196d2011-10-13 22:34:23 +05301446 } else if (direction == DMA_DEV_TO_MEM) {
Russell Kingdc8d5f82012-05-16 12:20:55 +01001447 cctl = PL080_CONTROL_DST_INCR;
Russell Kinged91c132012-05-16 11:02:40 +01001448 slave_addr = plchan->cfg.src_addr;
Russell Kingdc8d5f82012-05-16 12:20:55 +01001449 addr_width = plchan->cfg.src_addr_width;
1450 maxburst = plchan->cfg.src_maxburst;
Russell King409ec8d2012-05-16 11:08:43 +01001451 src_buses = plchan->cd->periph_buses;
1452 dst_buses = pl08x->mem_buses;
Linus Walleije8689e62010-09-28 15:57:37 +02001453 } else {
Viresh Kumarb7f69d92011-08-05 15:32:43 +05301454 pl08x_free_txd(pl08x, txd);
Linus Walleije8689e62010-09-28 15:57:37 +02001455 dev_err(&pl08x->adev->dev,
1456 "%s direction unsupported\n", __func__);
1457 return NULL;
1458 }
Linus Walleije8689e62010-09-28 15:57:37 +02001459
Russell Kingdc8d5f82012-05-16 12:20:55 +01001460 cctl |= pl08x_get_cctl(plchan, addr_width, maxburst);
Russell King800d6832012-05-16 11:33:31 +01001461 if (cctl == ~0) {
1462 pl08x_free_txd(pl08x, txd);
1463 dev_err(&pl08x->adev->dev,
1464 "DMA slave configuration botched?\n");
1465 return NULL;
1466 }
1467
Russell King409ec8d2012-05-16 11:08:43 +01001468 txd->cctl = cctl | pl08x_select_bus(src_buses, dst_buses);
1469
Russell King95442b22012-05-16 11:05:09 +01001470 if (plchan->cfg.device_fc)
Vinod Kouldb8196d2011-10-13 22:34:23 +05301471 tmp = (direction == DMA_MEM_TO_DEV) ? PL080_FLOW_MEM2PER_PER :
Viresh Kumar0a235652011-08-05 15:32:42 +05301472 PL080_FLOW_PER2MEM_PER;
1473 else
Vinod Kouldb8196d2011-10-13 22:34:23 +05301474 tmp = (direction == DMA_MEM_TO_DEV) ? PL080_FLOW_MEM2PER :
Viresh Kumar0a235652011-08-05 15:32:42 +05301475 PL080_FLOW_PER2MEM;
1476
1477 txd->ccfg |= tmp << PL080_CONFIG_FLOW_CONTROL_SHIFT;
1478
Russell Kingc48d4962012-05-25 11:48:51 +01001479 ret = pl08x_request_mux(plchan);
1480 if (ret < 0) {
1481 pl08x_free_txd(pl08x, txd);
1482 dev_dbg(&pl08x->adev->dev,
1483 "unable to mux for transfer on %s due to platform restrictions\n",
1484 plchan->name);
1485 return NULL;
1486 }
1487
1488 dev_dbg(&pl08x->adev->dev, "allocated DMA request signal %d for xfer on %s\n",
1489 plchan->signal, plchan->name);
1490
1491 /* Assign the flow control signal to this channel */
1492 if (direction == DMA_MEM_TO_DEV)
1493 txd->ccfg |= plchan->signal << PL080_CONFIG_DST_SEL_SHIFT;
1494 else
1495 txd->ccfg |= plchan->signal << PL080_CONFIG_SRC_SEL_SHIFT;
1496
Viresh Kumarb7f69d92011-08-05 15:32:43 +05301497 for_each_sg(sgl, sg, sg_len, tmp) {
1498 dsg = kzalloc(sizeof(struct pl08x_sg), GFP_NOWAIT);
1499 if (!dsg) {
Russell Kingc48d4962012-05-25 11:48:51 +01001500 pl08x_release_mux(plchan);
Viresh Kumarb7f69d92011-08-05 15:32:43 +05301501 pl08x_free_txd(pl08x, txd);
1502 dev_err(&pl08x->adev->dev, "%s no mem for pl080 sg\n",
1503 __func__);
1504 return NULL;
1505 }
1506 list_add_tail(&dsg->node, &txd->dsg_list);
1507
1508 dsg->len = sg_dma_len(sg);
Vinod Kouldb8196d2011-10-13 22:34:23 +05301509 if (direction == DMA_MEM_TO_DEV) {
Lars-Peter Clausencbb796c2012-04-25 20:50:51 +02001510 dsg->src_addr = sg_dma_address(sg);
Viresh Kumarb7f69d92011-08-05 15:32:43 +05301511 dsg->dst_addr = slave_addr;
1512 } else {
1513 dsg->src_addr = slave_addr;
Lars-Peter Clausencbb796c2012-04-25 20:50:51 +02001514 dsg->dst_addr = sg_dma_address(sg);
Viresh Kumarb7f69d92011-08-05 15:32:43 +05301515 }
1516 }
1517
Linus Walleije8689e62010-09-28 15:57:37 +02001518 ret = pl08x_prep_channel_resources(plchan, txd);
1519 if (ret)
1520 return NULL;
Linus Walleije8689e62010-09-28 15:57:37 +02001521
1522 return &txd->tx;
1523}
1524
1525static int pl08x_control(struct dma_chan *chan, enum dma_ctrl_cmd cmd,
1526 unsigned long arg)
1527{
1528 struct pl08x_dma_chan *plchan = to_pl08x_chan(chan);
1529 struct pl08x_driver_data *pl08x = plchan->host;
1530 unsigned long flags;
1531 int ret = 0;
1532
1533 /* Controls applicable to inactive channels */
1534 if (cmd == DMA_SLAVE_CONFIG) {
Russell King - ARM Linuxf0fd9442011-01-03 22:45:57 +00001535 return dma_set_runtime_config(chan,
1536 (struct dma_slave_config *)arg);
Linus Walleije8689e62010-09-28 15:57:37 +02001537 }
1538
1539 /*
1540 * Anything succeeds on channels with no physical allocation and
1541 * no queued transfers.
1542 */
1543 spin_lock_irqsave(&plchan->lock, flags);
1544 if (!plchan->phychan && !plchan->at) {
1545 spin_unlock_irqrestore(&plchan->lock, flags);
1546 return 0;
1547 }
1548
1549 switch (cmd) {
1550 case DMA_TERMINATE_ALL:
1551 plchan->state = PL08X_CHAN_IDLE;
1552
1553 if (plchan->phychan) {
Russell King - ARM Linuxfb526212011-01-27 12:32:53 +00001554 pl08x_terminate_phy_chan(pl08x, plchan->phychan);
Linus Walleije8689e62010-09-28 15:57:37 +02001555
1556 /*
1557 * Mark physical channel as free and free any slave
1558 * signal
1559 */
Russell King - ARM Linux8c8cc2b2011-01-03 22:36:09 +00001560 release_phy_channel(plchan);
Davide Ciminaghi88c08a32012-04-19 12:20:24 +02001561 plchan->phychan_hold = 0;
Linus Walleije8689e62010-09-28 15:57:37 +02001562 }
Linus Walleije8689e62010-09-28 15:57:37 +02001563 /* Dequeue jobs and free LLIs */
1564 if (plchan->at) {
Russell Kingc48d4962012-05-25 11:48:51 +01001565 /* Killing this one off, release its mux */
1566 pl08x_release_mux(plchan);
Linus Walleije8689e62010-09-28 15:57:37 +02001567 pl08x_free_txd(pl08x, plchan->at);
1568 plchan->at = NULL;
1569 }
1570 /* Dequeue jobs not yet fired as well */
1571 pl08x_free_txd_list(pl08x, plchan);
1572 break;
1573 case DMA_PAUSE:
1574 pl08x_pause_phy_chan(plchan->phychan);
1575 plchan->state = PL08X_CHAN_PAUSED;
1576 break;
1577 case DMA_RESUME:
1578 pl08x_resume_phy_chan(plchan->phychan);
1579 plchan->state = PL08X_CHAN_RUNNING;
1580 break;
1581 default:
1582 /* Unknown command */
1583 ret = -ENXIO;
1584 break;
1585 }
1586
1587 spin_unlock_irqrestore(&plchan->lock, flags);
1588
1589 return ret;
1590}
1591
1592bool pl08x_filter_id(struct dma_chan *chan, void *chan_id)
1593{
Russell King - ARM Linux7703eac2011-08-31 09:34:35 +01001594 struct pl08x_dma_chan *plchan;
Linus Walleije8689e62010-09-28 15:57:37 +02001595 char *name = chan_id;
1596
Russell King - ARM Linux7703eac2011-08-31 09:34:35 +01001597 /* Reject channels for devices not bound to this driver */
1598 if (chan->device->dev->driver != &pl08x_amba_driver.drv)
1599 return false;
1600
1601 plchan = to_pl08x_chan(chan);
1602
Linus Walleije8689e62010-09-28 15:57:37 +02001603 /* Check that the channel is not taken! */
1604 if (!strcmp(plchan->name, name))
1605 return true;
1606
1607 return false;
1608}
1609
1610/*
1611 * Just check that the device is there and active
Russell King - ARM Linux94ae8522011-01-16 20:18:05 +00001612 * TODO: turn this bit on/off depending on the number of physical channels
1613 * actually used, if it is zero... well shut it off. That will save some
1614 * power. Cut the clock at the same time.
Linus Walleije8689e62010-09-28 15:57:37 +02001615 */
1616static void pl08x_ensure_on(struct pl08x_driver_data *pl08x)
1617{
Linus Walleijaffa1152012-04-12 09:01:49 +02001618 /* The Nomadik variant does not have the config register */
1619 if (pl08x->vd->nomadik)
1620 return;
Viresh Kumar48a59ef2011-08-05 15:32:34 +05301621 writel(PL080_CONFIG_ENABLE, pl08x->base + PL080_CONFIG);
Linus Walleije8689e62010-09-28 15:57:37 +02001622}
1623
Russell King - ARM Linux3d992e12011-01-03 22:44:16 +00001624static void pl08x_unmap_buffers(struct pl08x_txd *txd)
1625{
1626 struct device *dev = txd->tx.chan->device->dev;
Viresh Kumarb7f69d92011-08-05 15:32:43 +05301627 struct pl08x_sg *dsg;
Russell King - ARM Linux3d992e12011-01-03 22:44:16 +00001628
1629 if (!(txd->tx.flags & DMA_COMPL_SKIP_SRC_UNMAP)) {
1630 if (txd->tx.flags & DMA_COMPL_SRC_UNMAP_SINGLE)
Viresh Kumarb7f69d92011-08-05 15:32:43 +05301631 list_for_each_entry(dsg, &txd->dsg_list, node)
1632 dma_unmap_single(dev, dsg->src_addr, dsg->len,
1633 DMA_TO_DEVICE);
1634 else {
1635 list_for_each_entry(dsg, &txd->dsg_list, node)
1636 dma_unmap_page(dev, dsg->src_addr, dsg->len,
1637 DMA_TO_DEVICE);
1638 }
Russell King - ARM Linux3d992e12011-01-03 22:44:16 +00001639 }
1640 if (!(txd->tx.flags & DMA_COMPL_SKIP_DEST_UNMAP)) {
1641 if (txd->tx.flags & DMA_COMPL_DEST_UNMAP_SINGLE)
Viresh Kumarb7f69d92011-08-05 15:32:43 +05301642 list_for_each_entry(dsg, &txd->dsg_list, node)
1643 dma_unmap_single(dev, dsg->dst_addr, dsg->len,
1644 DMA_FROM_DEVICE);
Russell King - ARM Linux3d992e12011-01-03 22:44:16 +00001645 else
Viresh Kumarb7f69d92011-08-05 15:32:43 +05301646 list_for_each_entry(dsg, &txd->dsg_list, node)
1647 dma_unmap_page(dev, dsg->dst_addr, dsg->len,
1648 DMA_FROM_DEVICE);
Russell King - ARM Linux3d992e12011-01-03 22:44:16 +00001649 }
1650}
1651
Linus Walleije8689e62010-09-28 15:57:37 +02001652static void pl08x_tasklet(unsigned long data)
1653{
1654 struct pl08x_dma_chan *plchan = (struct pl08x_dma_chan *) data;
Linus Walleije8689e62010-09-28 15:57:37 +02001655 struct pl08x_driver_data *pl08x = plchan->host;
Russell King - ARM Linuxbf072af2011-01-03 22:31:24 +00001656 unsigned long flags;
Russell Kinga936e792012-05-25 10:51:19 +01001657 LIST_HEAD(head);
Linus Walleije8689e62010-09-28 15:57:37 +02001658
Russell King - ARM Linuxbf072af2011-01-03 22:31:24 +00001659 spin_lock_irqsave(&plchan->lock, flags);
Russell Kinga936e792012-05-25 10:51:19 +01001660 list_splice_tail_init(&plchan->done_list, &head);
Russell King - ARM Linux8087aac2011-01-03 22:45:17 +00001661
Russell King - ARM Linux94ae8522011-01-16 20:18:05 +00001662 /* If a new descriptor is queued, set it up plchan->at is NULL here */
Russell King - ARM Linux15c17232011-01-03 22:44:36 +00001663 if (!list_empty(&plchan->pend_list)) {
Linus Walleije8689e62010-09-28 15:57:37 +02001664 struct pl08x_txd *next;
1665
Russell King - ARM Linux15c17232011-01-03 22:44:36 +00001666 next = list_first_entry(&plchan->pend_list,
Linus Walleije8689e62010-09-28 15:57:37 +02001667 struct pl08x_txd,
1668 node);
1669 list_del(&next->node);
Russell King - ARM Linuxc885bee2011-01-03 22:38:52 +00001670
1671 pl08x_start_txd(plchan, next);
Russell King - ARM Linux8087aac2011-01-03 22:45:17 +00001672 } else if (plchan->phychan_hold) {
1673 /*
1674 * This channel is still in use - we have a new txd being
1675 * prepared and will soon be queued. Don't give up the
1676 * physical channel.
1677 */
Linus Walleije8689e62010-09-28 15:57:37 +02001678 } else {
1679 struct pl08x_dma_chan *waiting = NULL;
1680
1681 /*
1682 * No more jobs, so free up the physical channel
Linus Walleije8689e62010-09-28 15:57:37 +02001683 */
Russell King - ARM Linux8c8cc2b2011-01-03 22:36:09 +00001684 release_phy_channel(plchan);
Linus Walleije8689e62010-09-28 15:57:37 +02001685 plchan->state = PL08X_CHAN_IDLE;
1686
1687 /*
Russell King - ARM Linux94ae8522011-01-16 20:18:05 +00001688 * And NOW before anyone else can grab that free:d up
1689 * physical channel, see if there is some memcpy pending
1690 * that seriously needs to start because of being stacked
1691 * up while we were choking the physical channels with data.
Linus Walleije8689e62010-09-28 15:57:37 +02001692 */
1693 list_for_each_entry(waiting, &pl08x->memcpy.channels,
1694 chan.device_node) {
Russell King7847f6b2012-05-25 12:08:13 +01001695 if (waiting->state == PL08X_CHAN_WAITING) {
Linus Walleije8689e62010-09-28 15:57:37 +02001696 int ret;
1697
1698 /* This should REALLY not fail now */
Russell Kingc48d4962012-05-25 11:48:51 +01001699 ret = prep_phy_channel(waiting);
Linus Walleije8689e62010-09-28 15:57:37 +02001700 BUG_ON(ret);
Russell King - ARM Linux8087aac2011-01-03 22:45:17 +00001701 waiting->phychan_hold--;
Linus Walleije8689e62010-09-28 15:57:37 +02001702 waiting->state = PL08X_CHAN_RUNNING;
Linus Walleije8689e62010-09-28 15:57:37 +02001703 pl08x_issue_pending(&waiting->chan);
1704 break;
1705 }
1706 }
1707 }
1708
Russell King - ARM Linuxbf072af2011-01-03 22:31:24 +00001709 spin_unlock_irqrestore(&plchan->lock, flags);
Russell King - ARM Linux858c21c2011-01-03 22:41:34 +00001710
Russell Kinga936e792012-05-25 10:51:19 +01001711 while (!list_empty(&head)) {
1712 struct pl08x_txd *txd = list_first_entry(&head,
1713 struct pl08x_txd, node);
Russell King - ARM Linux3d992e12011-01-03 22:44:16 +00001714 dma_async_tx_callback callback = txd->tx.callback;
1715 void *callback_param = txd->tx.callback_param;
1716
Russell Kinga936e792012-05-25 10:51:19 +01001717 list_del(&txd->node);
1718
Russell King - ARM Linux3d992e12011-01-03 22:44:16 +00001719 /* Don't try to unmap buffers on slave channels */
1720 if (!plchan->slave)
1721 pl08x_unmap_buffers(txd);
1722
1723 /* Free the descriptor */
1724 spin_lock_irqsave(&plchan->lock, flags);
1725 pl08x_free_txd(pl08x, txd);
1726 spin_unlock_irqrestore(&plchan->lock, flags);
1727
1728 /* Callback to signal completion */
1729 if (callback)
1730 callback(callback_param);
1731 }
Linus Walleije8689e62010-09-28 15:57:37 +02001732}
1733
1734static irqreturn_t pl08x_irq(int irq, void *dev)
1735{
1736 struct pl08x_driver_data *pl08x = dev;
Viresh Kumar28da2832011-08-05 15:32:36 +05301737 u32 mask = 0, err, tc, i;
Linus Walleije8689e62010-09-28 15:57:37 +02001738
Viresh Kumar28da2832011-08-05 15:32:36 +05301739 /* check & clear - ERR & TC interrupts */
1740 err = readl(pl08x->base + PL080_ERR_STATUS);
1741 if (err) {
1742 dev_err(&pl08x->adev->dev, "%s error interrupt, register value 0x%08x\n",
1743 __func__, err);
1744 writel(err, pl08x->base + PL080_ERR_CLEAR);
Linus Walleije8689e62010-09-28 15:57:37 +02001745 }
Linus Walleijd29bf012012-04-09 22:53:21 +02001746 tc = readl(pl08x->base + PL080_TC_STATUS);
Viresh Kumar28da2832011-08-05 15:32:36 +05301747 if (tc)
1748 writel(tc, pl08x->base + PL080_TC_CLEAR);
1749
1750 if (!err && !tc)
1751 return IRQ_NONE;
1752
Linus Walleije8689e62010-09-28 15:57:37 +02001753 for (i = 0; i < pl08x->vd->channels; i++) {
Viresh Kumar28da2832011-08-05 15:32:36 +05301754 if (((1 << i) & err) || ((1 << i) & tc)) {
Linus Walleije8689e62010-09-28 15:57:37 +02001755 /* Locate physical channel */
1756 struct pl08x_phy_chan *phychan = &pl08x->phy_chans[i];
1757 struct pl08x_dma_chan *plchan = phychan->serving;
Russell Kinga936e792012-05-25 10:51:19 +01001758 struct pl08x_txd *tx;
Linus Walleije8689e62010-09-28 15:57:37 +02001759
Viresh Kumar28da2832011-08-05 15:32:36 +05301760 if (!plchan) {
1761 dev_err(&pl08x->adev->dev,
1762 "%s Error TC interrupt on unused channel: 0x%08x\n",
1763 __func__, i);
1764 continue;
1765 }
1766
Russell Kinga936e792012-05-25 10:51:19 +01001767 spin_lock(&plchan->lock);
1768 tx = plchan->at;
1769 if (tx) {
1770 plchan->at = NULL;
Russell Kingc48d4962012-05-25 11:48:51 +01001771 /*
1772 * This descriptor is done, release its mux
1773 * reservation.
1774 */
1775 pl08x_release_mux(plchan);
Russell Kinga936e792012-05-25 10:51:19 +01001776 dma_cookie_complete(&tx->tx);
1777 list_add_tail(&tx->node, &plchan->done_list);
1778 }
1779 spin_unlock(&plchan->lock);
1780
Linus Walleije8689e62010-09-28 15:57:37 +02001781 /* Schedule tasklet on this channel */
1782 tasklet_schedule(&plchan->tasklet);
Linus Walleije8689e62010-09-28 15:57:37 +02001783 mask |= (1 << i);
1784 }
1785 }
Linus Walleije8689e62010-09-28 15:57:37 +02001786
1787 return mask ? IRQ_HANDLED : IRQ_NONE;
1788}
1789
Russell King - ARM Linux121c8472011-07-21 17:13:48 +01001790static void pl08x_dma_slave_init(struct pl08x_dma_chan *chan)
1791{
Russell King - ARM Linux121c8472011-07-21 17:13:48 +01001792 chan->slave = true;
1793 chan->name = chan->cd->bus_id;
Russell Kinged91c132012-05-16 11:02:40 +01001794 chan->cfg.src_addr = chan->cd->addr;
1795 chan->cfg.dst_addr = chan->cd->addr;
Russell King - ARM Linux121c8472011-07-21 17:13:48 +01001796}
1797
Linus Walleije8689e62010-09-28 15:57:37 +02001798/*
1799 * Initialise the DMAC memcpy/slave channels.
1800 * Make a local wrapper to hold required data
1801 */
1802static int pl08x_dma_init_virtual_channels(struct pl08x_driver_data *pl08x,
Viresh Kumar3e27ee82011-08-05 15:32:27 +05301803 struct dma_device *dmadev, unsigned int channels, bool slave)
Linus Walleije8689e62010-09-28 15:57:37 +02001804{
1805 struct pl08x_dma_chan *chan;
1806 int i;
1807
1808 INIT_LIST_HEAD(&dmadev->channels);
Russell King - ARM Linux94ae8522011-01-16 20:18:05 +00001809
Linus Walleije8689e62010-09-28 15:57:37 +02001810 /*
1811 * Register as many many memcpy as we have physical channels,
1812 * we won't always be able to use all but the code will have
1813 * to cope with that situation.
1814 */
1815 for (i = 0; i < channels; i++) {
Viresh Kumarb201c112011-08-05 15:32:29 +05301816 chan = kzalloc(sizeof(*chan), GFP_KERNEL);
Linus Walleije8689e62010-09-28 15:57:37 +02001817 if (!chan) {
1818 dev_err(&pl08x->adev->dev,
1819 "%s no memory for channel\n", __func__);
1820 return -ENOMEM;
1821 }
1822
1823 chan->host = pl08x;
1824 chan->state = PL08X_CHAN_IDLE;
Russell Kingad0de2a2012-05-25 11:15:15 +01001825 chan->signal = -1;
Linus Walleije8689e62010-09-28 15:57:37 +02001826
1827 if (slave) {
Linus Walleije8689e62010-09-28 15:57:37 +02001828 chan->cd = &pl08x->pd->slave_channels[i];
Russell King - ARM Linux121c8472011-07-21 17:13:48 +01001829 pl08x_dma_slave_init(chan);
Linus Walleije8689e62010-09-28 15:57:37 +02001830 } else {
1831 chan->cd = &pl08x->pd->memcpy_channel;
1832 chan->name = kasprintf(GFP_KERNEL, "memcpy%d", i);
1833 if (!chan->name) {
1834 kfree(chan);
1835 return -ENOMEM;
1836 }
1837 }
Viresh Kumar175a5e62011-08-05 15:32:32 +05301838 dev_dbg(&pl08x->adev->dev,
Linus Walleije8689e62010-09-28 15:57:37 +02001839 "initialize virtual channel \"%s\"\n",
1840 chan->name);
1841
1842 chan->chan.device = dmadev;
Russell King - ARM Linuxd3ee98cdc2012-03-06 22:35:47 +00001843 dma_cookie_init(&chan->chan);
Linus Walleije8689e62010-09-28 15:57:37 +02001844
1845 spin_lock_init(&chan->lock);
Russell King - ARM Linux15c17232011-01-03 22:44:36 +00001846 INIT_LIST_HEAD(&chan->pend_list);
Russell Kinga936e792012-05-25 10:51:19 +01001847 INIT_LIST_HEAD(&chan->done_list);
Linus Walleije8689e62010-09-28 15:57:37 +02001848 tasklet_init(&chan->tasklet, pl08x_tasklet,
1849 (unsigned long) chan);
1850
1851 list_add_tail(&chan->chan.device_node, &dmadev->channels);
1852 }
1853 dev_info(&pl08x->adev->dev, "initialized %d virtual %s channels\n",
1854 i, slave ? "slave" : "memcpy");
1855 return i;
1856}
1857
1858static void pl08x_free_virtual_channels(struct dma_device *dmadev)
1859{
1860 struct pl08x_dma_chan *chan = NULL;
1861 struct pl08x_dma_chan *next;
1862
1863 list_for_each_entry_safe(chan,
1864 next, &dmadev->channels, chan.device_node) {
1865 list_del(&chan->chan.device_node);
1866 kfree(chan);
1867 }
1868}
1869
1870#ifdef CONFIG_DEBUG_FS
1871static const char *pl08x_state_str(enum pl08x_dma_chan_state state)
1872{
1873 switch (state) {
1874 case PL08X_CHAN_IDLE:
1875 return "idle";
1876 case PL08X_CHAN_RUNNING:
1877 return "running";
1878 case PL08X_CHAN_PAUSED:
1879 return "paused";
1880 case PL08X_CHAN_WAITING:
1881 return "waiting";
1882 default:
1883 break;
1884 }
1885 return "UNKNOWN STATE";
1886}
1887
1888static int pl08x_debugfs_show(struct seq_file *s, void *data)
1889{
1890 struct pl08x_driver_data *pl08x = s->private;
1891 struct pl08x_dma_chan *chan;
1892 struct pl08x_phy_chan *ch;
1893 unsigned long flags;
1894 int i;
1895
1896 seq_printf(s, "PL08x physical channels:\n");
1897 seq_printf(s, "CHANNEL:\tUSER:\n");
1898 seq_printf(s, "--------\t-----\n");
1899 for (i = 0; i < pl08x->vd->channels; i++) {
1900 struct pl08x_dma_chan *virt_chan;
1901
1902 ch = &pl08x->phy_chans[i];
1903
1904 spin_lock_irqsave(&ch->lock, flags);
1905 virt_chan = ch->serving;
1906
Linus Walleijaffa1152012-04-12 09:01:49 +02001907 seq_printf(s, "%d\t\t%s%s\n",
1908 ch->id,
1909 virt_chan ? virt_chan->name : "(none)",
1910 ch->locked ? " LOCKED" : "");
Linus Walleije8689e62010-09-28 15:57:37 +02001911
1912 spin_unlock_irqrestore(&ch->lock, flags);
1913 }
1914
1915 seq_printf(s, "\nPL08x virtual memcpy channels:\n");
1916 seq_printf(s, "CHANNEL:\tSTATE:\n");
1917 seq_printf(s, "--------\t------\n");
1918 list_for_each_entry(chan, &pl08x->memcpy.channels, chan.device_node) {
Russell King - ARM Linux3e2a0372011-01-03 22:32:46 +00001919 seq_printf(s, "%s\t\t%s\n", chan->name,
Linus Walleije8689e62010-09-28 15:57:37 +02001920 pl08x_state_str(chan->state));
1921 }
1922
1923 seq_printf(s, "\nPL08x virtual slave channels:\n");
1924 seq_printf(s, "CHANNEL:\tSTATE:\n");
1925 seq_printf(s, "--------\t------\n");
1926 list_for_each_entry(chan, &pl08x->slave.channels, chan.device_node) {
Russell King - ARM Linux3e2a0372011-01-03 22:32:46 +00001927 seq_printf(s, "%s\t\t%s\n", chan->name,
Linus Walleije8689e62010-09-28 15:57:37 +02001928 pl08x_state_str(chan->state));
1929 }
1930
1931 return 0;
1932}
1933
1934static int pl08x_debugfs_open(struct inode *inode, struct file *file)
1935{
1936 return single_open(file, pl08x_debugfs_show, inode->i_private);
1937}
1938
1939static const struct file_operations pl08x_debugfs_operations = {
1940 .open = pl08x_debugfs_open,
1941 .read = seq_read,
1942 .llseek = seq_lseek,
1943 .release = single_release,
1944};
1945
1946static void init_pl08x_debugfs(struct pl08x_driver_data *pl08x)
1947{
1948 /* Expose a simple debugfs interface to view all clocks */
Viresh Kumar3e27ee82011-08-05 15:32:27 +05301949 (void) debugfs_create_file(dev_name(&pl08x->adev->dev),
1950 S_IFREG | S_IRUGO, NULL, pl08x,
1951 &pl08x_debugfs_operations);
Linus Walleije8689e62010-09-28 15:57:37 +02001952}
1953
1954#else
1955static inline void init_pl08x_debugfs(struct pl08x_driver_data *pl08x)
1956{
1957}
1958#endif
1959
Russell Kingaa25afa2011-02-19 15:55:00 +00001960static int pl08x_probe(struct amba_device *adev, const struct amba_id *id)
Linus Walleije8689e62010-09-28 15:57:37 +02001961{
1962 struct pl08x_driver_data *pl08x;
Russell King - ARM Linuxf96ca9ec2011-01-03 22:35:08 +00001963 const struct vendor_data *vd = id->data;
Linus Walleije8689e62010-09-28 15:57:37 +02001964 int ret = 0;
1965 int i;
1966
1967 ret = amba_request_regions(adev, NULL);
1968 if (ret)
1969 return ret;
1970
1971 /* Create the driver state holder */
Viresh Kumarb201c112011-08-05 15:32:29 +05301972 pl08x = kzalloc(sizeof(*pl08x), GFP_KERNEL);
Linus Walleije8689e62010-09-28 15:57:37 +02001973 if (!pl08x) {
1974 ret = -ENOMEM;
1975 goto out_no_pl08x;
1976 }
1977
1978 /* Initialize memcpy engine */
1979 dma_cap_set(DMA_MEMCPY, pl08x->memcpy.cap_mask);
1980 pl08x->memcpy.dev = &adev->dev;
1981 pl08x->memcpy.device_alloc_chan_resources = pl08x_alloc_chan_resources;
1982 pl08x->memcpy.device_free_chan_resources = pl08x_free_chan_resources;
1983 pl08x->memcpy.device_prep_dma_memcpy = pl08x_prep_dma_memcpy;
1984 pl08x->memcpy.device_prep_dma_interrupt = pl08x_prep_dma_interrupt;
1985 pl08x->memcpy.device_tx_status = pl08x_dma_tx_status;
1986 pl08x->memcpy.device_issue_pending = pl08x_issue_pending;
1987 pl08x->memcpy.device_control = pl08x_control;
1988
1989 /* Initialize slave engine */
1990 dma_cap_set(DMA_SLAVE, pl08x->slave.cap_mask);
1991 pl08x->slave.dev = &adev->dev;
1992 pl08x->slave.device_alloc_chan_resources = pl08x_alloc_chan_resources;
1993 pl08x->slave.device_free_chan_resources = pl08x_free_chan_resources;
1994 pl08x->slave.device_prep_dma_interrupt = pl08x_prep_dma_interrupt;
1995 pl08x->slave.device_tx_status = pl08x_dma_tx_status;
1996 pl08x->slave.device_issue_pending = pl08x_issue_pending;
1997 pl08x->slave.device_prep_slave_sg = pl08x_prep_slave_sg;
1998 pl08x->slave.device_control = pl08x_control;
1999
2000 /* Get the platform data */
2001 pl08x->pd = dev_get_platdata(&adev->dev);
2002 if (!pl08x->pd) {
2003 dev_err(&adev->dev, "no platform data supplied\n");
2004 goto out_no_platdata;
2005 }
2006
2007 /* Assign useful pointers to the driver state */
2008 pl08x->adev = adev;
2009 pl08x->vd = vd;
2010
Russell King - ARM Linux30749cb2011-01-03 22:41:13 +00002011 /* By default, AHB1 only. If dualmaster, from platform */
2012 pl08x->lli_buses = PL08X_AHB1;
2013 pl08x->mem_buses = PL08X_AHB1;
2014 if (pl08x->vd->dualmaster) {
2015 pl08x->lli_buses = pl08x->pd->lli_buses;
2016 pl08x->mem_buses = pl08x->pd->mem_buses;
2017 }
2018
Linus Walleije8689e62010-09-28 15:57:37 +02002019 /* A DMA memory pool for LLIs, align on 1-byte boundary */
2020 pl08x->pool = dma_pool_create(DRIVER_NAME, &pl08x->adev->dev,
2021 PL08X_LLI_TSFR_SIZE, PL08X_ALIGN, 0);
2022 if (!pl08x->pool) {
2023 ret = -ENOMEM;
2024 goto out_no_lli_pool;
2025 }
2026
Linus Walleije8689e62010-09-28 15:57:37 +02002027 pl08x->base = ioremap(adev->res.start, resource_size(&adev->res));
2028 if (!pl08x->base) {
2029 ret = -ENOMEM;
2030 goto out_no_ioremap;
2031 }
2032
2033 /* Turn on the PL08x */
2034 pl08x_ensure_on(pl08x);
2035
Russell King - ARM Linux94ae8522011-01-16 20:18:05 +00002036 /* Attach the interrupt handler */
Linus Walleije8689e62010-09-28 15:57:37 +02002037 writel(0x000000FF, pl08x->base + PL080_ERR_CLEAR);
2038 writel(0x000000FF, pl08x->base + PL080_TC_CLEAR);
2039
2040 ret = request_irq(adev->irq[0], pl08x_irq, IRQF_DISABLED,
Russell King - ARM Linuxb05cd8f2011-01-03 22:33:26 +00002041 DRIVER_NAME, pl08x);
Linus Walleije8689e62010-09-28 15:57:37 +02002042 if (ret) {
2043 dev_err(&adev->dev, "%s failed to request interrupt %d\n",
2044 __func__, adev->irq[0]);
2045 goto out_no_irq;
2046 }
2047
2048 /* Initialize physical channels */
Linus Walleijaffa1152012-04-12 09:01:49 +02002049 pl08x->phy_chans = kzalloc((vd->channels * sizeof(*pl08x->phy_chans)),
Linus Walleije8689e62010-09-28 15:57:37 +02002050 GFP_KERNEL);
2051 if (!pl08x->phy_chans) {
2052 dev_err(&adev->dev, "%s failed to allocate "
2053 "physical channel holders\n",
2054 __func__);
2055 goto out_no_phychans;
2056 }
2057
2058 for (i = 0; i < vd->channels; i++) {
2059 struct pl08x_phy_chan *ch = &pl08x->phy_chans[i];
2060
2061 ch->id = i;
2062 ch->base = pl08x->base + PL080_Cx_BASE(i);
2063 spin_lock_init(&ch->lock);
Linus Walleijaffa1152012-04-12 09:01:49 +02002064
2065 /*
2066 * Nomadik variants can have channels that are locked
2067 * down for the secure world only. Lock up these channels
2068 * by perpetually serving a dummy virtual channel.
2069 */
2070 if (vd->nomadik) {
2071 u32 val;
2072
2073 val = readl(ch->base + PL080_CH_CONFIG);
2074 if (val & (PL080N_CONFIG_ITPROT | PL080N_CONFIG_SECPROT)) {
2075 dev_info(&adev->dev, "physical channel %d reserved for secure access only\n", i);
2076 ch->locked = true;
2077 }
2078 }
2079
Viresh Kumar175a5e62011-08-05 15:32:32 +05302080 dev_dbg(&adev->dev, "physical channel %d is %s\n",
2081 i, pl08x_phy_channel_busy(ch) ? "BUSY" : "FREE");
Linus Walleije8689e62010-09-28 15:57:37 +02002082 }
2083
2084 /* Register as many memcpy channels as there are physical channels */
2085 ret = pl08x_dma_init_virtual_channels(pl08x, &pl08x->memcpy,
2086 pl08x->vd->channels, false);
2087 if (ret <= 0) {
2088 dev_warn(&pl08x->adev->dev,
2089 "%s failed to enumerate memcpy channels - %d\n",
2090 __func__, ret);
2091 goto out_no_memcpy;
2092 }
2093 pl08x->memcpy.chancnt = ret;
2094
2095 /* Register slave channels */
2096 ret = pl08x_dma_init_virtual_channels(pl08x, &pl08x->slave,
Viresh Kumar3e27ee82011-08-05 15:32:27 +05302097 pl08x->pd->num_slave_channels, true);
Linus Walleije8689e62010-09-28 15:57:37 +02002098 if (ret <= 0) {
2099 dev_warn(&pl08x->adev->dev,
2100 "%s failed to enumerate slave channels - %d\n",
2101 __func__, ret);
2102 goto out_no_slave;
2103 }
2104 pl08x->slave.chancnt = ret;
2105
2106 ret = dma_async_device_register(&pl08x->memcpy);
2107 if (ret) {
2108 dev_warn(&pl08x->adev->dev,
2109 "%s failed to register memcpy as an async device - %d\n",
2110 __func__, ret);
2111 goto out_no_memcpy_reg;
2112 }
2113
2114 ret = dma_async_device_register(&pl08x->slave);
2115 if (ret) {
2116 dev_warn(&pl08x->adev->dev,
2117 "%s failed to register slave as an async device - %d\n",
2118 __func__, ret);
2119 goto out_no_slave_reg;
2120 }
2121
2122 amba_set_drvdata(adev, pl08x);
2123 init_pl08x_debugfs(pl08x);
Russell King - ARM Linuxb05cd8f2011-01-03 22:33:26 +00002124 dev_info(&pl08x->adev->dev, "DMA: PL%03x rev%u at 0x%08llx irq %d\n",
2125 amba_part(adev), amba_rev(adev),
2126 (unsigned long long)adev->res.start, adev->irq[0]);
Viresh Kumarb7b60182011-08-05 15:32:33 +05302127
Linus Walleije8689e62010-09-28 15:57:37 +02002128 return 0;
2129
2130out_no_slave_reg:
2131 dma_async_device_unregister(&pl08x->memcpy);
2132out_no_memcpy_reg:
2133 pl08x_free_virtual_channels(&pl08x->slave);
2134out_no_slave:
2135 pl08x_free_virtual_channels(&pl08x->memcpy);
2136out_no_memcpy:
2137 kfree(pl08x->phy_chans);
2138out_no_phychans:
2139 free_irq(adev->irq[0], pl08x);
2140out_no_irq:
2141 iounmap(pl08x->base);
2142out_no_ioremap:
2143 dma_pool_destroy(pl08x->pool);
2144out_no_lli_pool:
2145out_no_platdata:
2146 kfree(pl08x);
2147out_no_pl08x:
2148 amba_release_regions(adev);
2149 return ret;
2150}
2151
2152/* PL080 has 8 channels and the PL080 have just 2 */
2153static struct vendor_data vendor_pl080 = {
Linus Walleije8689e62010-09-28 15:57:37 +02002154 .channels = 8,
2155 .dualmaster = true,
2156};
2157
Linus Walleijaffa1152012-04-12 09:01:49 +02002158static struct vendor_data vendor_nomadik = {
2159 .channels = 8,
2160 .dualmaster = true,
2161 .nomadik = true,
2162};
2163
Linus Walleije8689e62010-09-28 15:57:37 +02002164static struct vendor_data vendor_pl081 = {
Linus Walleije8689e62010-09-28 15:57:37 +02002165 .channels = 2,
2166 .dualmaster = false,
2167};
2168
2169static struct amba_id pl08x_ids[] = {
2170 /* PL080 */
2171 {
2172 .id = 0x00041080,
2173 .mask = 0x000fffff,
2174 .data = &vendor_pl080,
2175 },
2176 /* PL081 */
2177 {
2178 .id = 0x00041081,
2179 .mask = 0x000fffff,
2180 .data = &vendor_pl081,
2181 },
2182 /* Nomadik 8815 PL080 variant */
2183 {
Linus Walleijaffa1152012-04-12 09:01:49 +02002184 .id = 0x00280080,
Linus Walleije8689e62010-09-28 15:57:37 +02002185 .mask = 0x00ffffff,
Linus Walleijaffa1152012-04-12 09:01:49 +02002186 .data = &vendor_nomadik,
Linus Walleije8689e62010-09-28 15:57:37 +02002187 },
2188 { 0, 0 },
2189};
2190
Dave Martin037566d2011-10-05 15:15:20 +01002191MODULE_DEVICE_TABLE(amba, pl08x_ids);
2192
Linus Walleije8689e62010-09-28 15:57:37 +02002193static struct amba_driver pl08x_amba_driver = {
2194 .drv.name = DRIVER_NAME,
2195 .id_table = pl08x_ids,
2196 .probe = pl08x_probe,
2197};
2198
2199static int __init pl08x_init(void)
2200{
2201 int retval;
2202 retval = amba_driver_register(&pl08x_amba_driver);
2203 if (retval)
2204 printk(KERN_WARNING DRIVER_NAME
Russell King - ARM Linuxe8b5e112011-01-03 22:30:24 +00002205 "failed to register as an AMBA device (%d)\n",
Linus Walleije8689e62010-09-28 15:57:37 +02002206 retval);
2207 return retval;
2208}
2209subsys_initcall(pl08x_init);