blob: 7bc535ee0a0851c4b17b80a1db649e574f024691 [file] [log] [blame]
Linus Walleij8d318a52010-03-30 15:33:42 +02001/*
Jonas Aaberg767a9672010-08-09 12:08:34 +00002 * Copyright (C) ST-Ericsson SA 2007-2010
Per Forlin661385f2010-10-06 09:05:28 +00003 * Author: Per Forlin <per.forlin@stericsson.com> for ST-Ericsson
Jonas Aaberg767a9672010-08-09 12:08:34 +00004 * Author: Jonas Aaberg <jonas.aberg@stericsson.com> for ST-Ericsson
Linus Walleij8d318a52010-03-30 15:33:42 +02005 * License terms: GNU General Public License (GPL) version 2
Linus Walleij8d318a52010-03-30 15:33:42 +02006 */
7
8#include <linux/kernel.h>
9#include <linux/slab.h>
10#include <linux/dmaengine.h>
11#include <linux/platform_device.h>
12#include <linux/clk.h>
13#include <linux/delay.h>
Jonas Aaberg698e4732010-08-09 12:08:56 +000014#include <linux/err.h>
Linus Walleij8d318a52010-03-30 15:33:42 +020015
16#include <plat/ste_dma40.h>
17
18#include "ste_dma40_ll.h"
19
20#define D40_NAME "dma40"
21
22#define D40_PHY_CHAN -1
23
24/* For masking out/in 2 bit channel positions */
25#define D40_CHAN_POS(chan) (2 * (chan / 2))
26#define D40_CHAN_POS_MASK(chan) (0x3 << D40_CHAN_POS(chan))
27
28/* Maximum iterations taken before giving up suspending a channel */
29#define D40_SUSPEND_MAX_IT 500
30
Linus Walleij508849a2010-06-20 21:26:07 +000031/* Hardware requirement on LCLA alignment */
32#define LCLA_ALIGNMENT 0x40000
Jonas Aaberg698e4732010-08-09 12:08:56 +000033
34/* Max number of links per event group */
35#define D40_LCLA_LINK_PER_EVENT_GRP 128
36#define D40_LCLA_END D40_LCLA_LINK_PER_EVENT_GRP
37
Linus Walleij508849a2010-06-20 21:26:07 +000038/* Attempts before giving up to trying to get pages that are aligned */
39#define MAX_LCLA_ALLOC_ATTEMPTS 256
40
41/* Bit markings for allocation map */
Linus Walleij8d318a52010-03-30 15:33:42 +020042#define D40_ALLOC_FREE (1 << 31)
43#define D40_ALLOC_PHY (1 << 30)
44#define D40_ALLOC_LOG_FREE 0
45
Linus Walleij8d318a52010-03-30 15:33:42 +020046/* Hardware designer of the block */
Jonas Aaberg3ae02672010-08-09 12:08:18 +000047#define D40_HW_DESIGNER 0x8
Linus Walleij8d318a52010-03-30 15:33:42 +020048
49/**
50 * enum 40_command - The different commands and/or statuses.
51 *
52 * @D40_DMA_STOP: DMA channel command STOP or status STOPPED,
53 * @D40_DMA_RUN: The DMA channel is RUNNING of the command RUN.
54 * @D40_DMA_SUSPEND_REQ: Request the DMA to SUSPEND as soon as possible.
55 * @D40_DMA_SUSPENDED: The DMA channel is SUSPENDED.
56 */
57enum d40_command {
58 D40_DMA_STOP = 0,
59 D40_DMA_RUN = 1,
60 D40_DMA_SUSPEND_REQ = 2,
61 D40_DMA_SUSPENDED = 3
62};
63
64/**
65 * struct d40_lli_pool - Structure for keeping LLIs in memory
66 *
67 * @base: Pointer to memory area when the pre_alloc_lli's are not large
68 * enough, IE bigger than the most common case, 1 dst and 1 src. NULL if
69 * pre_alloc_lli is used.
70 * @size: The size in bytes of the memory at base or the size of pre_alloc_lli.
71 * @pre_alloc_lli: Pre allocated area for the most common case of transfers,
72 * one buffer to one buffer.
73 */
74struct d40_lli_pool {
75 void *base;
Linus Walleij508849a2010-06-20 21:26:07 +000076 int size;
Linus Walleij8d318a52010-03-30 15:33:42 +020077 /* Space for dst and src, plus an extra for padding */
Linus Walleij508849a2010-06-20 21:26:07 +000078 u8 pre_alloc_lli[3 * sizeof(struct d40_phy_lli)];
Linus Walleij8d318a52010-03-30 15:33:42 +020079};
80
81/**
82 * struct d40_desc - A descriptor is one DMA job.
83 *
84 * @lli_phy: LLI settings for physical channel. Both src and dst=
85 * points into the lli_pool, to base if lli_len > 1 or to pre_alloc_lli if
86 * lli_len equals one.
87 * @lli_log: Same as above but for logical channels.
88 * @lli_pool: The pool with two entries pre-allocated.
Per Friden941b77a2010-06-20 21:24:45 +000089 * @lli_len: Number of llis of current descriptor.
Jonas Aaberg698e4732010-08-09 12:08:56 +000090 * @lli_current: Number of transfered llis.
91 * @lcla_alloc: Number of LCLA entries allocated.
Linus Walleij8d318a52010-03-30 15:33:42 +020092 * @txd: DMA engine struct. Used for among other things for communication
93 * during a transfer.
94 * @node: List entry.
Linus Walleij8d318a52010-03-30 15:33:42 +020095 * @is_in_client_list: true if the client owns this descriptor.
Jonas Aabergaa182ae2010-08-09 12:08:26 +000096 * @is_hw_linked: true if this job will automatically be continued for
97 * the previous one.
Linus Walleij8d318a52010-03-30 15:33:42 +020098 *
99 * This descriptor is used for both logical and physical transfers.
100 */
Linus Walleij8d318a52010-03-30 15:33:42 +0200101struct d40_desc {
102 /* LLI physical */
103 struct d40_phy_lli_bidir lli_phy;
104 /* LLI logical */
105 struct d40_log_lli_bidir lli_log;
106
107 struct d40_lli_pool lli_pool;
Per Friden941b77a2010-06-20 21:24:45 +0000108 int lli_len;
Jonas Aaberg698e4732010-08-09 12:08:56 +0000109 int lli_current;
110 int lcla_alloc;
Linus Walleij8d318a52010-03-30 15:33:42 +0200111
112 struct dma_async_tx_descriptor txd;
113 struct list_head node;
114
Linus Walleij8d318a52010-03-30 15:33:42 +0200115 bool is_in_client_list;
Jonas Aabergaa182ae2010-08-09 12:08:26 +0000116 bool is_hw_linked;
Linus Walleij8d318a52010-03-30 15:33:42 +0200117};
118
119/**
120 * struct d40_lcla_pool - LCLA pool settings and data.
121 *
Linus Walleij508849a2010-06-20 21:26:07 +0000122 * @base: The virtual address of LCLA. 18 bit aligned.
123 * @base_unaligned: The orignal kmalloc pointer, if kmalloc is used.
124 * This pointer is only there for clean-up on error.
125 * @pages: The number of pages needed for all physical channels.
126 * Only used later for clean-up on error
Linus Walleij8d318a52010-03-30 15:33:42 +0200127 * @lock: Lock to protect the content in this struct.
Jonas Aaberg698e4732010-08-09 12:08:56 +0000128 * @alloc_map: big map over which LCLA entry is own by which job.
Linus Walleij8d318a52010-03-30 15:33:42 +0200129 */
130struct d40_lcla_pool {
131 void *base;
Linus Walleij508849a2010-06-20 21:26:07 +0000132 void *base_unaligned;
133 int pages;
Linus Walleij8d318a52010-03-30 15:33:42 +0200134 spinlock_t lock;
Jonas Aaberg698e4732010-08-09 12:08:56 +0000135 struct d40_desc **alloc_map;
Linus Walleij8d318a52010-03-30 15:33:42 +0200136};
137
138/**
139 * struct d40_phy_res - struct for handling eventlines mapped to physical
140 * channels.
141 *
142 * @lock: A lock protection this entity.
143 * @num: The physical channel number of this entity.
144 * @allocated_src: Bit mapped to show which src event line's are mapped to
145 * this physical channel. Can also be free or physically allocated.
146 * @allocated_dst: Same as for src but is dst.
147 * allocated_dst and allocated_src uses the D40_ALLOC* defines as well as
Jonas Aaberg767a9672010-08-09 12:08:34 +0000148 * event line number.
Linus Walleij8d318a52010-03-30 15:33:42 +0200149 */
150struct d40_phy_res {
151 spinlock_t lock;
152 int num;
153 u32 allocated_src;
154 u32 allocated_dst;
155};
156
157struct d40_base;
158
159/**
160 * struct d40_chan - Struct that describes a channel.
161 *
162 * @lock: A spinlock to protect this struct.
163 * @log_num: The logical number, if any of this channel.
164 * @completed: Starts with 1, after first interrupt it is set to dma engine's
165 * current cookie.
166 * @pending_tx: The number of pending transfers. Used between interrupt handler
167 * and tasklet.
168 * @busy: Set to true when transfer is ongoing on this channel.
Jonas Aaberg2a614342010-06-20 21:25:24 +0000169 * @phy_chan: Pointer to physical channel which this instance runs on. If this
170 * point is NULL, then the channel is not allocated.
Linus Walleij8d318a52010-03-30 15:33:42 +0200171 * @chan: DMA engine handle.
172 * @tasklet: Tasklet that gets scheduled from interrupt context to complete a
173 * transfer and call client callback.
174 * @client: Cliented owned descriptor list.
175 * @active: Active descriptor.
176 * @queue: Queued jobs.
Linus Walleij8d318a52010-03-30 15:33:42 +0200177 * @dma_cfg: The client configuration of this dma channel.
Rabin Vincentce2ca122010-10-12 13:00:49 +0000178 * @configured: whether the dma_cfg configuration is valid
Linus Walleij8d318a52010-03-30 15:33:42 +0200179 * @base: Pointer to the device instance struct.
180 * @src_def_cfg: Default cfg register setting for src.
181 * @dst_def_cfg: Default cfg register setting for dst.
182 * @log_def: Default logical channel settings.
183 * @lcla: Space for one dst src pair for logical channel transfers.
184 * @lcpa: Pointer to dst and src lcpa settings.
185 *
186 * This struct can either "be" a logical or a physical channel.
187 */
188struct d40_chan {
189 spinlock_t lock;
190 int log_num;
191 /* ID of the most recent completed transfer */
192 int completed;
193 int pending_tx;
194 bool busy;
195 struct d40_phy_res *phy_chan;
196 struct dma_chan chan;
197 struct tasklet_struct tasklet;
198 struct list_head client;
199 struct list_head active;
200 struct list_head queue;
Linus Walleij8d318a52010-03-30 15:33:42 +0200201 struct stedma40_chan_cfg dma_cfg;
Rabin Vincentce2ca122010-10-12 13:00:49 +0000202 bool configured;
Linus Walleij8d318a52010-03-30 15:33:42 +0200203 struct d40_base *base;
204 /* Default register configurations */
205 u32 src_def_cfg;
206 u32 dst_def_cfg;
207 struct d40_def_lcsp log_def;
Linus Walleij8d318a52010-03-30 15:33:42 +0200208 struct d40_log_lli_full *lcpa;
Linus Walleij95e14002010-08-04 13:37:45 +0200209 /* Runtime reconfiguration */
210 dma_addr_t runtime_addr;
211 enum dma_data_direction runtime_direction;
Linus Walleij8d318a52010-03-30 15:33:42 +0200212};
213
214/**
215 * struct d40_base - The big global struct, one for each probe'd instance.
216 *
217 * @interrupt_lock: Lock used to make sure one interrupt is handle a time.
218 * @execmd_lock: Lock for execute command usage since several channels share
219 * the same physical register.
220 * @dev: The device structure.
221 * @virtbase: The virtual base address of the DMA's register.
Linus Walleijf4185592010-06-22 18:06:42 -0700222 * @rev: silicon revision detected.
Linus Walleij8d318a52010-03-30 15:33:42 +0200223 * @clk: Pointer to the DMA clock structure.
224 * @phy_start: Physical memory start of the DMA registers.
225 * @phy_size: Size of the DMA register map.
226 * @irq: The IRQ number.
227 * @num_phy_chans: The number of physical channels. Read from HW. This
228 * is the number of available channels for this driver, not counting "Secure
229 * mode" allocated physical channels.
230 * @num_log_chans: The number of logical channels. Calculated from
231 * num_phy_chans.
232 * @dma_both: dma_device channels that can do both memcpy and slave transfers.
233 * @dma_slave: dma_device channels that can do only do slave transfers.
234 * @dma_memcpy: dma_device channels that can do only do memcpy transfers.
Linus Walleij8d318a52010-03-30 15:33:42 +0200235 * @log_chans: Room for all possible logical channels in system.
236 * @lookup_log_chans: Used to map interrupt number to logical channel. Points
237 * to log_chans entries.
238 * @lookup_phy_chans: Used to map interrupt number to physical channel. Points
239 * to phy_chans entries.
240 * @plat_data: Pointer to provided platform_data which is the driver
241 * configuration.
242 * @phy_res: Vector containing all physical channels.
243 * @lcla_pool: lcla pool settings and data.
244 * @lcpa_base: The virtual mapped address of LCPA.
245 * @phy_lcpa: The physical address of the LCPA.
246 * @lcpa_size: The size of the LCPA area.
Jonas Aabergc675b1b2010-06-20 21:25:08 +0000247 * @desc_slab: cache for descriptors.
Linus Walleij8d318a52010-03-30 15:33:42 +0200248 */
249struct d40_base {
250 spinlock_t interrupt_lock;
251 spinlock_t execmd_lock;
252 struct device *dev;
253 void __iomem *virtbase;
Linus Walleijf4185592010-06-22 18:06:42 -0700254 u8 rev:4;
Linus Walleij8d318a52010-03-30 15:33:42 +0200255 struct clk *clk;
256 phys_addr_t phy_start;
257 resource_size_t phy_size;
258 int irq;
259 int num_phy_chans;
260 int num_log_chans;
261 struct dma_device dma_both;
262 struct dma_device dma_slave;
263 struct dma_device dma_memcpy;
264 struct d40_chan *phy_chans;
265 struct d40_chan *log_chans;
266 struct d40_chan **lookup_log_chans;
267 struct d40_chan **lookup_phy_chans;
268 struct stedma40_platform_data *plat_data;
269 /* Physical half channels */
270 struct d40_phy_res *phy_res;
271 struct d40_lcla_pool lcla_pool;
272 void *lcpa_base;
273 dma_addr_t phy_lcpa;
274 resource_size_t lcpa_size;
Jonas Aabergc675b1b2010-06-20 21:25:08 +0000275 struct kmem_cache *desc_slab;
Linus Walleij8d318a52010-03-30 15:33:42 +0200276};
277
278/**
279 * struct d40_interrupt_lookup - lookup table for interrupt handler
280 *
281 * @src: Interrupt mask register.
282 * @clr: Interrupt clear register.
283 * @is_error: true if this is an error interrupt.
284 * @offset: start delta in the lookup_log_chans in d40_base. If equals to
285 * D40_PHY_CHAN, the lookup_phy_chans shall be used instead.
286 */
287struct d40_interrupt_lookup {
288 u32 src;
289 u32 clr;
290 bool is_error;
291 int offset;
292};
293
294/**
295 * struct d40_reg_val - simple lookup struct
296 *
297 * @reg: The register.
298 * @val: The value that belongs to the register in reg.
299 */
300struct d40_reg_val {
301 unsigned int reg;
302 unsigned int val;
303};
304
305static int d40_pool_lli_alloc(struct d40_desc *d40d,
306 int lli_len, bool is_log)
307{
308 u32 align;
309 void *base;
310
311 if (is_log)
312 align = sizeof(struct d40_log_lli);
313 else
314 align = sizeof(struct d40_phy_lli);
315
316 if (lli_len == 1) {
317 base = d40d->lli_pool.pre_alloc_lli;
318 d40d->lli_pool.size = sizeof(d40d->lli_pool.pre_alloc_lli);
319 d40d->lli_pool.base = NULL;
320 } else {
321 d40d->lli_pool.size = ALIGN(lli_len * 2 * align, align);
322
323 base = kmalloc(d40d->lli_pool.size + align, GFP_NOWAIT);
324 d40d->lli_pool.base = base;
325
326 if (d40d->lli_pool.base == NULL)
327 return -ENOMEM;
328 }
329
330 if (is_log) {
331 d40d->lli_log.src = PTR_ALIGN((struct d40_log_lli *) base,
332 align);
333 d40d->lli_log.dst = PTR_ALIGN(d40d->lli_log.src + lli_len,
334 align);
335 } else {
336 d40d->lli_phy.src = PTR_ALIGN((struct d40_phy_lli *)base,
337 align);
338 d40d->lli_phy.dst = PTR_ALIGN(d40d->lli_phy.src + lli_len,
339 align);
Linus Walleij8d318a52010-03-30 15:33:42 +0200340 }
341
342 return 0;
343}
344
345static void d40_pool_lli_free(struct d40_desc *d40d)
346{
347 kfree(d40d->lli_pool.base);
348 d40d->lli_pool.base = NULL;
349 d40d->lli_pool.size = 0;
350 d40d->lli_log.src = NULL;
351 d40d->lli_log.dst = NULL;
352 d40d->lli_phy.src = NULL;
353 d40d->lli_phy.dst = NULL;
Linus Walleij8d318a52010-03-30 15:33:42 +0200354}
355
Jonas Aaberg698e4732010-08-09 12:08:56 +0000356static int d40_lcla_alloc_one(struct d40_chan *d40c,
357 struct d40_desc *d40d)
358{
359 unsigned long flags;
360 int i;
361 int ret = -EINVAL;
362 int p;
363
364 spin_lock_irqsave(&d40c->base->lcla_pool.lock, flags);
365
366 p = d40c->phy_chan->num * D40_LCLA_LINK_PER_EVENT_GRP;
367
368 /*
369 * Allocate both src and dst at the same time, therefore the half
370 * start on 1 since 0 can't be used since zero is used as end marker.
371 */
372 for (i = 1 ; i < D40_LCLA_LINK_PER_EVENT_GRP / 2; i++) {
373 if (!d40c->base->lcla_pool.alloc_map[p + i]) {
374 d40c->base->lcla_pool.alloc_map[p + i] = d40d;
375 d40d->lcla_alloc++;
376 ret = i;
377 break;
378 }
379 }
380
381 spin_unlock_irqrestore(&d40c->base->lcla_pool.lock, flags);
382
383 return ret;
384}
385
386static int d40_lcla_free_all(struct d40_chan *d40c,
387 struct d40_desc *d40d)
388{
389 unsigned long flags;
390 int i;
391 int ret = -EINVAL;
392
393 if (d40c->log_num == D40_PHY_CHAN)
394 return 0;
395
396 spin_lock_irqsave(&d40c->base->lcla_pool.lock, flags);
397
398 for (i = 1 ; i < D40_LCLA_LINK_PER_EVENT_GRP / 2; i++) {
399 if (d40c->base->lcla_pool.alloc_map[d40c->phy_chan->num *
400 D40_LCLA_LINK_PER_EVENT_GRP + i] == d40d) {
401 d40c->base->lcla_pool.alloc_map[d40c->phy_chan->num *
402 D40_LCLA_LINK_PER_EVENT_GRP + i] = NULL;
403 d40d->lcla_alloc--;
404 if (d40d->lcla_alloc == 0) {
405 ret = 0;
406 break;
407 }
408 }
409 }
410
411 spin_unlock_irqrestore(&d40c->base->lcla_pool.lock, flags);
412
413 return ret;
414
415}
416
Linus Walleij8d318a52010-03-30 15:33:42 +0200417static void d40_desc_remove(struct d40_desc *d40d)
418{
419 list_del(&d40d->node);
420}
421
422static struct d40_desc *d40_desc_get(struct d40_chan *d40c)
423{
Rabin Vincenta2c15fa2010-10-06 08:20:37 +0000424 struct d40_desc *desc = NULL;
Linus Walleij8d318a52010-03-30 15:33:42 +0200425
426 if (!list_empty(&d40c->client)) {
Rabin Vincenta2c15fa2010-10-06 08:20:37 +0000427 struct d40_desc *d;
428 struct d40_desc *_d;
429
Linus Walleij8d318a52010-03-30 15:33:42 +0200430 list_for_each_entry_safe(d, _d, &d40c->client, node)
431 if (async_tx_test_ack(&d->txd)) {
432 d40_pool_lli_free(d);
433 d40_desc_remove(d);
Rabin Vincenta2c15fa2010-10-06 08:20:37 +0000434 desc = d;
435 memset(desc, 0, sizeof(*desc));
Jonas Aabergc675b1b2010-06-20 21:25:08 +0000436 break;
Linus Walleij8d318a52010-03-30 15:33:42 +0200437 }
Linus Walleij8d318a52010-03-30 15:33:42 +0200438 }
Rabin Vincenta2c15fa2010-10-06 08:20:37 +0000439
440 if (!desc)
441 desc = kmem_cache_zalloc(d40c->base->desc_slab, GFP_NOWAIT);
442
443 if (desc)
444 INIT_LIST_HEAD(&desc->node);
445
446 return desc;
Linus Walleij8d318a52010-03-30 15:33:42 +0200447}
448
449static void d40_desc_free(struct d40_chan *d40c, struct d40_desc *d40d)
450{
Jonas Aaberg698e4732010-08-09 12:08:56 +0000451
452 d40_lcla_free_all(d40c, d40d);
Jonas Aabergc675b1b2010-06-20 21:25:08 +0000453 kmem_cache_free(d40c->base->desc_slab, d40d);
Linus Walleij8d318a52010-03-30 15:33:42 +0200454}
455
456static void d40_desc_submit(struct d40_chan *d40c, struct d40_desc *desc)
457{
458 list_add_tail(&desc->node, &d40c->active);
459}
460
Jonas Aaberg698e4732010-08-09 12:08:56 +0000461static void d40_desc_load(struct d40_chan *d40c, struct d40_desc *d40d)
462{
463 int curr_lcla = -EINVAL, next_lcla;
464
465 if (d40c->log_num == D40_PHY_CHAN) {
466 d40_phy_lli_write(d40c->base->virtbase,
467 d40c->phy_chan->num,
468 d40d->lli_phy.dst,
469 d40d->lli_phy.src);
470 d40d->lli_current = d40d->lli_len;
471 } else {
472
473 if ((d40d->lli_len - d40d->lli_current) > 1)
474 curr_lcla = d40_lcla_alloc_one(d40c, d40d);
475
476 d40_log_lli_lcpa_write(d40c->lcpa,
477 &d40d->lli_log.dst[d40d->lli_current],
478 &d40d->lli_log.src[d40d->lli_current],
479 curr_lcla);
480
481 d40d->lli_current++;
482 for (; d40d->lli_current < d40d->lli_len; d40d->lli_current++) {
483 struct d40_log_lli *lcla;
484
485 if (d40d->lli_current + 1 < d40d->lli_len)
486 next_lcla = d40_lcla_alloc_one(d40c, d40d);
487 else
488 next_lcla = -EINVAL;
489
490 lcla = d40c->base->lcla_pool.base +
491 d40c->phy_chan->num * 1024 +
492 8 * curr_lcla * 2;
493
494 d40_log_lli_lcla_write(lcla,
495 &d40d->lli_log.dst[d40d->lli_current],
496 &d40d->lli_log.src[d40d->lli_current],
497 next_lcla);
498
499 (void) dma_map_single(d40c->base->dev, lcla,
500 2 * sizeof(struct d40_log_lli),
501 DMA_TO_DEVICE);
502
503 curr_lcla = next_lcla;
504
505 if (curr_lcla == -EINVAL) {
506 d40d->lli_current++;
507 break;
508 }
509
510 }
511 }
512}
513
Linus Walleij8d318a52010-03-30 15:33:42 +0200514static struct d40_desc *d40_first_active_get(struct d40_chan *d40c)
515{
516 struct d40_desc *d;
517
518 if (list_empty(&d40c->active))
519 return NULL;
520
521 d = list_first_entry(&d40c->active,
522 struct d40_desc,
523 node);
524 return d;
525}
526
527static void d40_desc_queue(struct d40_chan *d40c, struct d40_desc *desc)
528{
529 list_add_tail(&desc->node, &d40c->queue);
530}
531
532static struct d40_desc *d40_first_queued(struct d40_chan *d40c)
533{
534 struct d40_desc *d;
535
536 if (list_empty(&d40c->queue))
537 return NULL;
538
539 d = list_first_entry(&d40c->queue,
540 struct d40_desc,
541 node);
542 return d;
543}
544
Jonas Aabergaa182ae2010-08-09 12:08:26 +0000545static struct d40_desc *d40_last_queued(struct d40_chan *d40c)
546{
547 struct d40_desc *d;
548
549 if (list_empty(&d40c->queue))
550 return NULL;
551 list_for_each_entry(d, &d40c->queue, node)
552 if (list_is_last(&d->node, &d40c->queue))
553 break;
554 return d;
555}
556
Linus Walleij8d318a52010-03-30 15:33:42 +0200557/* Support functions for logical channels */
558
Linus Walleij8d318a52010-03-30 15:33:42 +0200559
560static int d40_channel_execute_command(struct d40_chan *d40c,
561 enum d40_command command)
562{
Jonas Aaberg767a9672010-08-09 12:08:34 +0000563 u32 status;
564 int i;
Linus Walleij8d318a52010-03-30 15:33:42 +0200565 void __iomem *active_reg;
566 int ret = 0;
567 unsigned long flags;
Jonas Aaberg1d392a72010-06-20 21:26:01 +0000568 u32 wmask;
Linus Walleij8d318a52010-03-30 15:33:42 +0200569
570 spin_lock_irqsave(&d40c->base->execmd_lock, flags);
571
572 if (d40c->phy_chan->num % 2 == 0)
573 active_reg = d40c->base->virtbase + D40_DREG_ACTIVE;
574 else
575 active_reg = d40c->base->virtbase + D40_DREG_ACTIVO;
576
577 if (command == D40_DMA_SUSPEND_REQ) {
578 status = (readl(active_reg) &
579 D40_CHAN_POS_MASK(d40c->phy_chan->num)) >>
580 D40_CHAN_POS(d40c->phy_chan->num);
581
582 if (status == D40_DMA_SUSPENDED || status == D40_DMA_STOP)
583 goto done;
584 }
585
Jonas Aaberg1d392a72010-06-20 21:26:01 +0000586 wmask = 0xffffffff & ~(D40_CHAN_POS_MASK(d40c->phy_chan->num));
587 writel(wmask | (command << D40_CHAN_POS(d40c->phy_chan->num)),
588 active_reg);
Linus Walleij8d318a52010-03-30 15:33:42 +0200589
590 if (command == D40_DMA_SUSPEND_REQ) {
591
592 for (i = 0 ; i < D40_SUSPEND_MAX_IT; i++) {
593 status = (readl(active_reg) &
594 D40_CHAN_POS_MASK(d40c->phy_chan->num)) >>
595 D40_CHAN_POS(d40c->phy_chan->num);
596
597 cpu_relax();
598 /*
599 * Reduce the number of bus accesses while
600 * waiting for the DMA to suspend.
601 */
602 udelay(3);
603
604 if (status == D40_DMA_STOP ||
605 status == D40_DMA_SUSPENDED)
606 break;
607 }
608
609 if (i == D40_SUSPEND_MAX_IT) {
610 dev_err(&d40c->chan.dev->device,
611 "[%s]: unable to suspend the chl %d (log: %d) status %x\n",
612 __func__, d40c->phy_chan->num, d40c->log_num,
613 status);
614 dump_stack();
615 ret = -EBUSY;
616 }
617
618 }
619done:
620 spin_unlock_irqrestore(&d40c->base->execmd_lock, flags);
621 return ret;
622}
623
624static void d40_term_all(struct d40_chan *d40c)
625{
626 struct d40_desc *d40d;
Linus Walleij8d318a52010-03-30 15:33:42 +0200627
628 /* Release active descriptors */
629 while ((d40d = d40_first_active_get(d40c))) {
630 d40_desc_remove(d40d);
Linus Walleij8d318a52010-03-30 15:33:42 +0200631 d40_desc_free(d40c, d40d);
632 }
633
634 /* Release queued descriptors waiting for transfer */
635 while ((d40d = d40_first_queued(d40c))) {
636 d40_desc_remove(d40d);
Linus Walleij8d318a52010-03-30 15:33:42 +0200637 d40_desc_free(d40c, d40d);
638 }
639
Linus Walleij8d318a52010-03-30 15:33:42 +0200640
641 d40c->pending_tx = 0;
642 d40c->busy = false;
643}
644
645static void d40_config_set_event(struct d40_chan *d40c, bool do_enable)
646{
647 u32 val;
648 unsigned long flags;
649
Jonas Aaberg0c322692010-06-20 21:25:46 +0000650 /* Notice, that disable requires the physical channel to be stopped */
Linus Walleij8d318a52010-03-30 15:33:42 +0200651 if (do_enable)
652 val = D40_ACTIVATE_EVENTLINE;
653 else
654 val = D40_DEACTIVATE_EVENTLINE;
655
656 spin_lock_irqsave(&d40c->phy_chan->lock, flags);
657
658 /* Enable event line connected to device (or memcpy) */
659 if ((d40c->dma_cfg.dir == STEDMA40_PERIPH_TO_MEM) ||
660 (d40c->dma_cfg.dir == STEDMA40_PERIPH_TO_PERIPH)) {
661 u32 event = D40_TYPE_TO_EVENT(d40c->dma_cfg.src_dev_type);
662
663 writel((val << D40_EVENTLINE_POS(event)) |
664 ~D40_EVENTLINE_MASK(event),
665 d40c->base->virtbase + D40_DREG_PCBASE +
666 d40c->phy_chan->num * D40_DREG_PCDELTA +
667 D40_CHAN_REG_SSLNK);
668 }
669 if (d40c->dma_cfg.dir != STEDMA40_PERIPH_TO_MEM) {
670 u32 event = D40_TYPE_TO_EVENT(d40c->dma_cfg.dst_dev_type);
671
672 writel((val << D40_EVENTLINE_POS(event)) |
673 ~D40_EVENTLINE_MASK(event),
674 d40c->base->virtbase + D40_DREG_PCBASE +
675 d40c->phy_chan->num * D40_DREG_PCDELTA +
676 D40_CHAN_REG_SDLNK);
677 }
678
679 spin_unlock_irqrestore(&d40c->phy_chan->lock, flags);
680}
681
Jonas Aaberga5ebca42010-05-18 00:41:09 +0200682static u32 d40_chan_has_events(struct d40_chan *d40c)
Linus Walleij8d318a52010-03-30 15:33:42 +0200683{
Jonas Aabergbe8cb7d2010-08-09 12:07:44 +0000684 u32 val;
Linus Walleij8d318a52010-03-30 15:33:42 +0200685
Jonas Aabergbe8cb7d2010-08-09 12:07:44 +0000686 val = readl(d40c->base->virtbase + D40_DREG_PCBASE +
687 d40c->phy_chan->num * D40_DREG_PCDELTA +
688 D40_CHAN_REG_SSLNK);
Linus Walleij8d318a52010-03-30 15:33:42 +0200689
Jonas Aabergbe8cb7d2010-08-09 12:07:44 +0000690 val |= readl(d40c->base->virtbase + D40_DREG_PCBASE +
691 d40c->phy_chan->num * D40_DREG_PCDELTA +
692 D40_CHAN_REG_SDLNK);
Jonas Aaberga5ebca42010-05-18 00:41:09 +0200693 return val;
Linus Walleij8d318a52010-03-30 15:33:42 +0200694}
695
Jonas Aabergb55912c2010-08-09 12:08:02 +0000696static void d40_config_write(struct d40_chan *d40c)
Linus Walleij8d318a52010-03-30 15:33:42 +0200697{
698 u32 addr_base;
699 u32 var;
Linus Walleij8d318a52010-03-30 15:33:42 +0200700
701 /* Odd addresses are even addresses + 4 */
702 addr_base = (d40c->phy_chan->num % 2) * 4;
703 /* Setup channel mode to logical or physical */
704 var = ((u32)(d40c->log_num != D40_PHY_CHAN) + 1) <<
705 D40_CHAN_POS(d40c->phy_chan->num);
706 writel(var, d40c->base->virtbase + D40_DREG_PRMSE + addr_base);
707
708 /* Setup operational mode option register */
709 var = ((d40c->dma_cfg.channel_type >> STEDMA40_INFO_CH_MODE_OPT_POS) &
710 0x3) << D40_CHAN_POS(d40c->phy_chan->num);
711
712 writel(var, d40c->base->virtbase + D40_DREG_PRMOE + addr_base);
713
714 if (d40c->log_num != D40_PHY_CHAN) {
715 /* Set default config for CFG reg */
716 writel(d40c->src_def_cfg,
717 d40c->base->virtbase + D40_DREG_PCBASE +
718 d40c->phy_chan->num * D40_DREG_PCDELTA +
719 D40_CHAN_REG_SSCFG);
720 writel(d40c->dst_def_cfg,
721 d40c->base->virtbase + D40_DREG_PCBASE +
722 d40c->phy_chan->num * D40_DREG_PCDELTA +
723 D40_CHAN_REG_SDCFG);
724
Jonas Aabergb55912c2010-08-09 12:08:02 +0000725 /* Set LIDX for lcla */
726 writel((d40c->phy_chan->num << D40_SREG_ELEM_LOG_LIDX_POS) &
727 D40_SREG_ELEM_LOG_LIDX_MASK,
728 d40c->base->virtbase + D40_DREG_PCBASE +
729 d40c->phy_chan->num * D40_DREG_PCDELTA +
730 D40_CHAN_REG_SDELT);
731
732 writel((d40c->phy_chan->num << D40_SREG_ELEM_LOG_LIDX_POS) &
733 D40_SREG_ELEM_LOG_LIDX_MASK,
734 d40c->base->virtbase + D40_DREG_PCBASE +
735 d40c->phy_chan->num * D40_DREG_PCDELTA +
736 D40_CHAN_REG_SSELT);
737
Linus Walleij8d318a52010-03-30 15:33:42 +0200738 }
Linus Walleij8d318a52010-03-30 15:33:42 +0200739}
740
Jonas Aabergaa182ae2010-08-09 12:08:26 +0000741static u32 d40_residue(struct d40_chan *d40c)
742{
743 u32 num_elt;
744
745 if (d40c->log_num != D40_PHY_CHAN)
746 num_elt = (readl(&d40c->lcpa->lcsp2) & D40_MEM_LCSP2_ECNT_MASK)
747 >> D40_MEM_LCSP2_ECNT_POS;
748 else
749 num_elt = (readl(d40c->base->virtbase + D40_DREG_PCBASE +
750 d40c->phy_chan->num * D40_DREG_PCDELTA +
751 D40_CHAN_REG_SDELT) &
752 D40_SREG_ELEM_PHY_ECNT_MASK) >>
753 D40_SREG_ELEM_PHY_ECNT_POS;
754 return num_elt * (1 << d40c->dma_cfg.dst_info.data_width);
755}
756
757static bool d40_tx_is_linked(struct d40_chan *d40c)
758{
759 bool is_link;
760
761 if (d40c->log_num != D40_PHY_CHAN)
762 is_link = readl(&d40c->lcpa->lcsp3) & D40_MEM_LCSP3_DLOS_MASK;
763 else
764 is_link = readl(d40c->base->virtbase + D40_DREG_PCBASE +
765 d40c->phy_chan->num * D40_DREG_PCDELTA +
766 D40_CHAN_REG_SDLNK) &
767 D40_SREG_LNK_PHYS_LNK_MASK;
768 return is_link;
769}
770
771static int d40_pause(struct dma_chan *chan)
772{
773 struct d40_chan *d40c =
774 container_of(chan, struct d40_chan, chan);
775 int res = 0;
776 unsigned long flags;
777
Jonas Aaberg3ac012a2010-08-09 12:09:12 +0000778 if (!d40c->busy)
779 return 0;
780
Jonas Aabergaa182ae2010-08-09 12:08:26 +0000781 spin_lock_irqsave(&d40c->lock, flags);
782
783 res = d40_channel_execute_command(d40c, D40_DMA_SUSPEND_REQ);
784 if (res == 0) {
785 if (d40c->log_num != D40_PHY_CHAN) {
786 d40_config_set_event(d40c, false);
787 /* Resume the other logical channels if any */
788 if (d40_chan_has_events(d40c))
789 res = d40_channel_execute_command(d40c,
790 D40_DMA_RUN);
791 }
792 }
793
794 spin_unlock_irqrestore(&d40c->lock, flags);
795 return res;
796}
797
798static int d40_resume(struct dma_chan *chan)
799{
800 struct d40_chan *d40c =
801 container_of(chan, struct d40_chan, chan);
802 int res = 0;
803 unsigned long flags;
804
Jonas Aaberg3ac012a2010-08-09 12:09:12 +0000805 if (!d40c->busy)
806 return 0;
807
Jonas Aabergaa182ae2010-08-09 12:08:26 +0000808 spin_lock_irqsave(&d40c->lock, flags);
809
810 if (d40c->base->rev == 0)
811 if (d40c->log_num != D40_PHY_CHAN) {
812 res = d40_channel_execute_command(d40c,
813 D40_DMA_SUSPEND_REQ);
814 goto no_suspend;
815 }
816
817 /* If bytes left to transfer or linked tx resume job */
818 if (d40_residue(d40c) || d40_tx_is_linked(d40c)) {
819
820 if (d40c->log_num != D40_PHY_CHAN)
821 d40_config_set_event(d40c, true);
822
823 res = d40_channel_execute_command(d40c, D40_DMA_RUN);
824 }
825
826no_suspend:
827 spin_unlock_irqrestore(&d40c->lock, flags);
828 return res;
829}
830
831static void d40_tx_submit_log(struct d40_chan *d40c, struct d40_desc *d40d)
832{
833 /* TODO: Write */
834}
835
836static void d40_tx_submit_phy(struct d40_chan *d40c, struct d40_desc *d40d)
837{
838 struct d40_desc *d40d_prev = NULL;
839 int i;
840 u32 val;
841
842 if (!list_empty(&d40c->queue))
843 d40d_prev = d40_last_queued(d40c);
844 else if (!list_empty(&d40c->active))
845 d40d_prev = d40_first_active_get(d40c);
846
847 if (!d40d_prev)
848 return;
849
850 /* Here we try to join this job with previous jobs */
851 val = readl(d40c->base->virtbase + D40_DREG_PCBASE +
852 d40c->phy_chan->num * D40_DREG_PCDELTA +
853 D40_CHAN_REG_SSLNK);
854
855 /* Figure out which link we're currently transmitting */
856 for (i = 0; i < d40d_prev->lli_len; i++)
857 if (val == d40d_prev->lli_phy.src[i].reg_lnk)
858 break;
859
860 val = readl(d40c->base->virtbase + D40_DREG_PCBASE +
861 d40c->phy_chan->num * D40_DREG_PCDELTA +
862 D40_CHAN_REG_SSELT) >> D40_SREG_ELEM_LOG_ECNT_POS;
863
864 if (i == (d40d_prev->lli_len - 1) && val > 0) {
865 /* Change the current one */
866 writel(virt_to_phys(d40d->lli_phy.src),
867 d40c->base->virtbase + D40_DREG_PCBASE +
868 d40c->phy_chan->num * D40_DREG_PCDELTA +
869 D40_CHAN_REG_SSLNK);
870 writel(virt_to_phys(d40d->lli_phy.dst),
871 d40c->base->virtbase + D40_DREG_PCBASE +
872 d40c->phy_chan->num * D40_DREG_PCDELTA +
873 D40_CHAN_REG_SDLNK);
874
875 d40d->is_hw_linked = true;
876
877 } else if (i < d40d_prev->lli_len) {
878 (void) dma_unmap_single(d40c->base->dev,
879 virt_to_phys(d40d_prev->lli_phy.src),
880 d40d_prev->lli_pool.size,
881 DMA_TO_DEVICE);
882
883 /* Keep the settings */
884 val = d40d_prev->lli_phy.src[d40d_prev->lli_len - 1].reg_lnk &
885 ~D40_SREG_LNK_PHYS_LNK_MASK;
886 d40d_prev->lli_phy.src[d40d_prev->lli_len - 1].reg_lnk =
887 val | virt_to_phys(d40d->lli_phy.src);
888
889 val = d40d_prev->lli_phy.dst[d40d_prev->lli_len - 1].reg_lnk &
890 ~D40_SREG_LNK_PHYS_LNK_MASK;
891 d40d_prev->lli_phy.dst[d40d_prev->lli_len - 1].reg_lnk =
892 val | virt_to_phys(d40d->lli_phy.dst);
893
894 (void) dma_map_single(d40c->base->dev,
895 d40d_prev->lli_phy.src,
896 d40d_prev->lli_pool.size,
897 DMA_TO_DEVICE);
898 d40d->is_hw_linked = true;
899 }
900}
901
Linus Walleij8d318a52010-03-30 15:33:42 +0200902static dma_cookie_t d40_tx_submit(struct dma_async_tx_descriptor *tx)
903{
904 struct d40_chan *d40c = container_of(tx->chan,
905 struct d40_chan,
906 chan);
907 struct d40_desc *d40d = container_of(tx, struct d40_desc, txd);
908 unsigned long flags;
909
Jonas Aabergaa182ae2010-08-09 12:08:26 +0000910 (void) d40_pause(&d40c->chan);
911
Linus Walleij8d318a52010-03-30 15:33:42 +0200912 spin_lock_irqsave(&d40c->lock, flags);
913
Jonas Aabergaa182ae2010-08-09 12:08:26 +0000914 d40c->chan.cookie++;
915
916 if (d40c->chan.cookie < 0)
917 d40c->chan.cookie = 1;
918
919 d40d->txd.cookie = d40c->chan.cookie;
920
921 if (d40c->log_num == D40_PHY_CHAN)
922 d40_tx_submit_phy(d40c, d40d);
923 else
924 d40_tx_submit_log(d40c, d40d);
Linus Walleij8d318a52010-03-30 15:33:42 +0200925
926 d40_desc_queue(d40c, d40d);
927
928 spin_unlock_irqrestore(&d40c->lock, flags);
929
Jonas Aabergaa182ae2010-08-09 12:08:26 +0000930 (void) d40_resume(&d40c->chan);
931
Linus Walleij8d318a52010-03-30 15:33:42 +0200932 return tx->cookie;
933}
934
935static int d40_start(struct d40_chan *d40c)
936{
Linus Walleijf4185592010-06-22 18:06:42 -0700937 if (d40c->base->rev == 0) {
938 int err;
939
940 if (d40c->log_num != D40_PHY_CHAN) {
941 err = d40_channel_execute_command(d40c,
942 D40_DMA_SUSPEND_REQ);
943 if (err)
944 return err;
945 }
946 }
947
Jonas Aaberg0c322692010-06-20 21:25:46 +0000948 if (d40c->log_num != D40_PHY_CHAN)
Linus Walleij8d318a52010-03-30 15:33:42 +0200949 d40_config_set_event(d40c, true);
Linus Walleij8d318a52010-03-30 15:33:42 +0200950
Jonas Aaberg0c322692010-06-20 21:25:46 +0000951 return d40_channel_execute_command(d40c, D40_DMA_RUN);
Linus Walleij8d318a52010-03-30 15:33:42 +0200952}
953
954static struct d40_desc *d40_queue_start(struct d40_chan *d40c)
955{
956 struct d40_desc *d40d;
957 int err;
958
959 /* Start queued jobs, if any */
960 d40d = d40_first_queued(d40c);
961
962 if (d40d != NULL) {
963 d40c->busy = true;
964
965 /* Remove from queue */
966 d40_desc_remove(d40d);
967
968 /* Add to active queue */
969 d40_desc_submit(d40c, d40d);
970
Jonas Aabergaa182ae2010-08-09 12:08:26 +0000971 /*
972 * If this job is already linked in hw,
973 * do not submit it.
974 */
Jonas Aaberg698e4732010-08-09 12:08:56 +0000975
Jonas Aabergaa182ae2010-08-09 12:08:26 +0000976 if (!d40d->is_hw_linked) {
977 /* Initiate DMA job */
978 d40_desc_load(d40c, d40d);
Linus Walleij8d318a52010-03-30 15:33:42 +0200979
Jonas Aabergaa182ae2010-08-09 12:08:26 +0000980 /* Start dma job */
981 err = d40_start(d40c);
Linus Walleij8d318a52010-03-30 15:33:42 +0200982
Jonas Aabergaa182ae2010-08-09 12:08:26 +0000983 if (err)
984 return NULL;
985 }
Linus Walleij8d318a52010-03-30 15:33:42 +0200986 }
987
988 return d40d;
989}
990
991/* called from interrupt context */
992static void dma_tc_handle(struct d40_chan *d40c)
993{
994 struct d40_desc *d40d;
995
Linus Walleij8d318a52010-03-30 15:33:42 +0200996 /* Get first active entry from list */
997 d40d = d40_first_active_get(d40c);
998
999 if (d40d == NULL)
1000 return;
1001
Jonas Aaberg698e4732010-08-09 12:08:56 +00001002 d40_lcla_free_all(d40c, d40d);
Linus Walleij8d318a52010-03-30 15:33:42 +02001003
Jonas Aaberg698e4732010-08-09 12:08:56 +00001004 if (d40d->lli_current < d40d->lli_len) {
Linus Walleij8d318a52010-03-30 15:33:42 +02001005 d40_desc_load(d40c, d40d);
1006 /* Start dma job */
1007 (void) d40_start(d40c);
1008 return;
1009 }
1010
1011 if (d40_queue_start(d40c) == NULL)
1012 d40c->busy = false;
1013
1014 d40c->pending_tx++;
1015 tasklet_schedule(&d40c->tasklet);
1016
1017}
1018
1019static void dma_tasklet(unsigned long data)
1020{
1021 struct d40_chan *d40c = (struct d40_chan *) data;
Jonas Aaberg767a9672010-08-09 12:08:34 +00001022 struct d40_desc *d40d;
Linus Walleij8d318a52010-03-30 15:33:42 +02001023 unsigned long flags;
1024 dma_async_tx_callback callback;
1025 void *callback_param;
1026
1027 spin_lock_irqsave(&d40c->lock, flags);
1028
1029 /* Get first active entry from list */
Jonas Aaberg767a9672010-08-09 12:08:34 +00001030 d40d = d40_first_active_get(d40c);
Linus Walleij8d318a52010-03-30 15:33:42 +02001031
Jonas Aaberg767a9672010-08-09 12:08:34 +00001032 if (d40d == NULL)
Linus Walleij8d318a52010-03-30 15:33:42 +02001033 goto err;
1034
Jonas Aaberg767a9672010-08-09 12:08:34 +00001035 d40c->completed = d40d->txd.cookie;
Linus Walleij8d318a52010-03-30 15:33:42 +02001036
1037 /*
1038 * If terminating a channel pending_tx is set to zero.
1039 * This prevents any finished active jobs to return to the client.
1040 */
1041 if (d40c->pending_tx == 0) {
1042 spin_unlock_irqrestore(&d40c->lock, flags);
1043 return;
1044 }
1045
1046 /* Callback to client */
Jonas Aaberg767a9672010-08-09 12:08:34 +00001047 callback = d40d->txd.callback;
1048 callback_param = d40d->txd.callback_param;
Linus Walleij8d318a52010-03-30 15:33:42 +02001049
Jonas Aaberg767a9672010-08-09 12:08:34 +00001050 if (async_tx_test_ack(&d40d->txd)) {
1051 d40_pool_lli_free(d40d);
1052 d40_desc_remove(d40d);
1053 d40_desc_free(d40c, d40d);
Linus Walleij8d318a52010-03-30 15:33:42 +02001054 } else {
Jonas Aaberg767a9672010-08-09 12:08:34 +00001055 if (!d40d->is_in_client_list) {
1056 d40_desc_remove(d40d);
Jonas Aaberg698e4732010-08-09 12:08:56 +00001057 d40_lcla_free_all(d40c, d40d);
Jonas Aaberg767a9672010-08-09 12:08:34 +00001058 list_add_tail(&d40d->node, &d40c->client);
1059 d40d->is_in_client_list = true;
Linus Walleij8d318a52010-03-30 15:33:42 +02001060 }
1061 }
1062
1063 d40c->pending_tx--;
1064
1065 if (d40c->pending_tx)
1066 tasklet_schedule(&d40c->tasklet);
1067
1068 spin_unlock_irqrestore(&d40c->lock, flags);
1069
Jonas Aaberg767a9672010-08-09 12:08:34 +00001070 if (callback && (d40d->txd.flags & DMA_PREP_INTERRUPT))
Linus Walleij8d318a52010-03-30 15:33:42 +02001071 callback(callback_param);
1072
1073 return;
1074
1075 err:
1076 /* Rescue manouver if receiving double interrupts */
1077 if (d40c->pending_tx > 0)
1078 d40c->pending_tx--;
1079 spin_unlock_irqrestore(&d40c->lock, flags);
1080}
1081
1082static irqreturn_t d40_handle_interrupt(int irq, void *data)
1083{
1084 static const struct d40_interrupt_lookup il[] = {
1085 {D40_DREG_LCTIS0, D40_DREG_LCICR0, false, 0},
1086 {D40_DREG_LCTIS1, D40_DREG_LCICR1, false, 32},
1087 {D40_DREG_LCTIS2, D40_DREG_LCICR2, false, 64},
1088 {D40_DREG_LCTIS3, D40_DREG_LCICR3, false, 96},
1089 {D40_DREG_LCEIS0, D40_DREG_LCICR0, true, 0},
1090 {D40_DREG_LCEIS1, D40_DREG_LCICR1, true, 32},
1091 {D40_DREG_LCEIS2, D40_DREG_LCICR2, true, 64},
1092 {D40_DREG_LCEIS3, D40_DREG_LCICR3, true, 96},
1093 {D40_DREG_PCTIS, D40_DREG_PCICR, false, D40_PHY_CHAN},
1094 {D40_DREG_PCEIS, D40_DREG_PCICR, true, D40_PHY_CHAN},
1095 };
1096
1097 int i;
1098 u32 regs[ARRAY_SIZE(il)];
Linus Walleij8d318a52010-03-30 15:33:42 +02001099 u32 idx;
1100 u32 row;
1101 long chan = -1;
1102 struct d40_chan *d40c;
1103 unsigned long flags;
1104 struct d40_base *base = data;
1105
1106 spin_lock_irqsave(&base->interrupt_lock, flags);
1107
1108 /* Read interrupt status of both logical and physical channels */
1109 for (i = 0; i < ARRAY_SIZE(il); i++)
1110 regs[i] = readl(base->virtbase + il[i].src);
1111
1112 for (;;) {
1113
1114 chan = find_next_bit((unsigned long *)regs,
1115 BITS_PER_LONG * ARRAY_SIZE(il), chan + 1);
1116
1117 /* No more set bits found? */
1118 if (chan == BITS_PER_LONG * ARRAY_SIZE(il))
1119 break;
1120
1121 row = chan / BITS_PER_LONG;
1122 idx = chan & (BITS_PER_LONG - 1);
1123
1124 /* ACK interrupt */
Jonas Aaberg1b003482010-08-09 12:07:54 +00001125 writel(1 << idx, base->virtbase + il[row].clr);
Linus Walleij8d318a52010-03-30 15:33:42 +02001126
1127 if (il[row].offset == D40_PHY_CHAN)
1128 d40c = base->lookup_phy_chans[idx];
1129 else
1130 d40c = base->lookup_log_chans[il[row].offset + idx];
1131 spin_lock(&d40c->lock);
1132
1133 if (!il[row].is_error)
1134 dma_tc_handle(d40c);
1135 else
Linus Walleij508849a2010-06-20 21:26:07 +00001136 dev_err(base->dev,
1137 "[%s] IRQ chan: %ld offset %d idx %d\n",
Linus Walleij8d318a52010-03-30 15:33:42 +02001138 __func__, chan, il[row].offset, idx);
1139
1140 spin_unlock(&d40c->lock);
1141 }
1142
1143 spin_unlock_irqrestore(&base->interrupt_lock, flags);
1144
1145 return IRQ_HANDLED;
1146}
1147
Linus Walleij8d318a52010-03-30 15:33:42 +02001148static int d40_validate_conf(struct d40_chan *d40c,
1149 struct stedma40_chan_cfg *conf)
1150{
1151 int res = 0;
1152 u32 dst_event_group = D40_TYPE_TO_GROUP(conf->dst_dev_type);
1153 u32 src_event_group = D40_TYPE_TO_GROUP(conf->src_dev_type);
1154 bool is_log = (conf->channel_type & STEDMA40_CHANNEL_IN_OPER_MODE)
1155 == STEDMA40_CHANNEL_IN_LOG_MODE;
1156
Linus Walleij0747c7ba2010-08-09 12:07:36 +00001157 if (!conf->dir) {
1158 dev_err(&d40c->chan.dev->device, "[%s] Invalid direction.\n",
1159 __func__);
1160 res = -EINVAL;
1161 }
1162
1163 if (conf->dst_dev_type != STEDMA40_DEV_DST_MEMORY &&
1164 d40c->base->plat_data->dev_tx[conf->dst_dev_type] == 0 &&
1165 d40c->runtime_addr == 0) {
1166
1167 dev_err(&d40c->chan.dev->device,
1168 "[%s] Invalid TX channel address (%d)\n",
1169 __func__, conf->dst_dev_type);
1170 res = -EINVAL;
1171 }
1172
1173 if (conf->src_dev_type != STEDMA40_DEV_SRC_MEMORY &&
1174 d40c->base->plat_data->dev_rx[conf->src_dev_type] == 0 &&
1175 d40c->runtime_addr == 0) {
1176 dev_err(&d40c->chan.dev->device,
1177 "[%s] Invalid RX channel address (%d)\n",
1178 __func__, conf->src_dev_type);
1179 res = -EINVAL;
1180 }
1181
1182 if (conf->dir == STEDMA40_MEM_TO_PERIPH &&
Linus Walleij8d318a52010-03-30 15:33:42 +02001183 dst_event_group == STEDMA40_DEV_DST_MEMORY) {
1184 dev_err(&d40c->chan.dev->device, "[%s] Invalid dst\n",
1185 __func__);
1186 res = -EINVAL;
1187 }
1188
Linus Walleij0747c7ba2010-08-09 12:07:36 +00001189 if (conf->dir == STEDMA40_PERIPH_TO_MEM &&
Linus Walleij8d318a52010-03-30 15:33:42 +02001190 src_event_group == STEDMA40_DEV_SRC_MEMORY) {
1191 dev_err(&d40c->chan.dev->device, "[%s] Invalid src\n",
1192 __func__);
1193 res = -EINVAL;
1194 }
1195
1196 if (src_event_group == STEDMA40_DEV_SRC_MEMORY &&
1197 dst_event_group == STEDMA40_DEV_DST_MEMORY && is_log) {
1198 dev_err(&d40c->chan.dev->device,
1199 "[%s] No event line\n", __func__);
1200 res = -EINVAL;
1201 }
1202
1203 if (conf->dir == STEDMA40_PERIPH_TO_PERIPH &&
1204 (src_event_group != dst_event_group)) {
1205 dev_err(&d40c->chan.dev->device,
1206 "[%s] Invalid event group\n", __func__);
1207 res = -EINVAL;
1208 }
1209
1210 if (conf->dir == STEDMA40_PERIPH_TO_PERIPH) {
1211 /*
1212 * DMAC HW supports it. Will be added to this driver,
1213 * in case any dma client requires it.
1214 */
1215 dev_err(&d40c->chan.dev->device,
1216 "[%s] periph to periph not supported\n",
1217 __func__);
1218 res = -EINVAL;
1219 }
1220
1221 return res;
1222}
1223
1224static bool d40_alloc_mask_set(struct d40_phy_res *phy, bool is_src,
Marcin Mielczarczyk4aed79b2010-05-18 00:41:21 +02001225 int log_event_line, bool is_log)
Linus Walleij8d318a52010-03-30 15:33:42 +02001226{
1227 unsigned long flags;
1228 spin_lock_irqsave(&phy->lock, flags);
Marcin Mielczarczyk4aed79b2010-05-18 00:41:21 +02001229 if (!is_log) {
Linus Walleij8d318a52010-03-30 15:33:42 +02001230 /* Physical interrupts are masked per physical full channel */
1231 if (phy->allocated_src == D40_ALLOC_FREE &&
1232 phy->allocated_dst == D40_ALLOC_FREE) {
1233 phy->allocated_dst = D40_ALLOC_PHY;
1234 phy->allocated_src = D40_ALLOC_PHY;
1235 goto found;
1236 } else
1237 goto not_found;
1238 }
1239
1240 /* Logical channel */
1241 if (is_src) {
1242 if (phy->allocated_src == D40_ALLOC_PHY)
1243 goto not_found;
1244
1245 if (phy->allocated_src == D40_ALLOC_FREE)
1246 phy->allocated_src = D40_ALLOC_LOG_FREE;
1247
1248 if (!(phy->allocated_src & (1 << log_event_line))) {
1249 phy->allocated_src |= 1 << log_event_line;
1250 goto found;
1251 } else
1252 goto not_found;
1253 } else {
1254 if (phy->allocated_dst == D40_ALLOC_PHY)
1255 goto not_found;
1256
1257 if (phy->allocated_dst == D40_ALLOC_FREE)
1258 phy->allocated_dst = D40_ALLOC_LOG_FREE;
1259
1260 if (!(phy->allocated_dst & (1 << log_event_line))) {
1261 phy->allocated_dst |= 1 << log_event_line;
1262 goto found;
1263 } else
1264 goto not_found;
1265 }
1266
1267not_found:
1268 spin_unlock_irqrestore(&phy->lock, flags);
1269 return false;
1270found:
1271 spin_unlock_irqrestore(&phy->lock, flags);
1272 return true;
1273}
1274
1275static bool d40_alloc_mask_free(struct d40_phy_res *phy, bool is_src,
1276 int log_event_line)
1277{
1278 unsigned long flags;
1279 bool is_free = false;
1280
1281 spin_lock_irqsave(&phy->lock, flags);
1282 if (!log_event_line) {
Linus Walleij8d318a52010-03-30 15:33:42 +02001283 phy->allocated_dst = D40_ALLOC_FREE;
1284 phy->allocated_src = D40_ALLOC_FREE;
1285 is_free = true;
1286 goto out;
1287 }
1288
1289 /* Logical channel */
1290 if (is_src) {
1291 phy->allocated_src &= ~(1 << log_event_line);
1292 if (phy->allocated_src == D40_ALLOC_LOG_FREE)
1293 phy->allocated_src = D40_ALLOC_FREE;
1294 } else {
1295 phy->allocated_dst &= ~(1 << log_event_line);
1296 if (phy->allocated_dst == D40_ALLOC_LOG_FREE)
1297 phy->allocated_dst = D40_ALLOC_FREE;
1298 }
1299
1300 is_free = ((phy->allocated_src | phy->allocated_dst) ==
1301 D40_ALLOC_FREE);
1302
1303out:
1304 spin_unlock_irqrestore(&phy->lock, flags);
1305
1306 return is_free;
1307}
1308
1309static int d40_allocate_channel(struct d40_chan *d40c)
1310{
1311 int dev_type;
1312 int event_group;
1313 int event_line;
1314 struct d40_phy_res *phys;
1315 int i;
1316 int j;
1317 int log_num;
1318 bool is_src;
Linus Walleij508849a2010-06-20 21:26:07 +00001319 bool is_log = (d40c->dma_cfg.channel_type &
1320 STEDMA40_CHANNEL_IN_OPER_MODE)
Linus Walleij8d318a52010-03-30 15:33:42 +02001321 == STEDMA40_CHANNEL_IN_LOG_MODE;
1322
1323
1324 phys = d40c->base->phy_res;
1325
1326 if (d40c->dma_cfg.dir == STEDMA40_PERIPH_TO_MEM) {
1327 dev_type = d40c->dma_cfg.src_dev_type;
1328 log_num = 2 * dev_type;
1329 is_src = true;
1330 } else if (d40c->dma_cfg.dir == STEDMA40_MEM_TO_PERIPH ||
1331 d40c->dma_cfg.dir == STEDMA40_MEM_TO_MEM) {
1332 /* dst event lines are used for logical memcpy */
1333 dev_type = d40c->dma_cfg.dst_dev_type;
1334 log_num = 2 * dev_type + 1;
1335 is_src = false;
1336 } else
1337 return -EINVAL;
1338
1339 event_group = D40_TYPE_TO_GROUP(dev_type);
1340 event_line = D40_TYPE_TO_EVENT(dev_type);
1341
1342 if (!is_log) {
1343 if (d40c->dma_cfg.dir == STEDMA40_MEM_TO_MEM) {
1344 /* Find physical half channel */
1345 for (i = 0; i < d40c->base->num_phy_chans; i++) {
1346
Marcin Mielczarczyk4aed79b2010-05-18 00:41:21 +02001347 if (d40_alloc_mask_set(&phys[i], is_src,
1348 0, is_log))
Linus Walleij8d318a52010-03-30 15:33:42 +02001349 goto found_phy;
1350 }
1351 } else
1352 for (j = 0; j < d40c->base->num_phy_chans; j += 8) {
1353 int phy_num = j + event_group * 2;
1354 for (i = phy_num; i < phy_num + 2; i++) {
Linus Walleij508849a2010-06-20 21:26:07 +00001355 if (d40_alloc_mask_set(&phys[i],
1356 is_src,
1357 0,
1358 is_log))
Linus Walleij8d318a52010-03-30 15:33:42 +02001359 goto found_phy;
1360 }
1361 }
1362 return -EINVAL;
1363found_phy:
1364 d40c->phy_chan = &phys[i];
1365 d40c->log_num = D40_PHY_CHAN;
1366 goto out;
1367 }
1368 if (dev_type == -1)
1369 return -EINVAL;
1370
1371 /* Find logical channel */
1372 for (j = 0; j < d40c->base->num_phy_chans; j += 8) {
1373 int phy_num = j + event_group * 2;
1374 /*
1375 * Spread logical channels across all available physical rather
1376 * than pack every logical channel at the first available phy
1377 * channels.
1378 */
1379 if (is_src) {
1380 for (i = phy_num; i < phy_num + 2; i++) {
1381 if (d40_alloc_mask_set(&phys[i], is_src,
Marcin Mielczarczyk4aed79b2010-05-18 00:41:21 +02001382 event_line, is_log))
Linus Walleij8d318a52010-03-30 15:33:42 +02001383 goto found_log;
1384 }
1385 } else {
1386 for (i = phy_num + 1; i >= phy_num; i--) {
1387 if (d40_alloc_mask_set(&phys[i], is_src,
Marcin Mielczarczyk4aed79b2010-05-18 00:41:21 +02001388 event_line, is_log))
Linus Walleij8d318a52010-03-30 15:33:42 +02001389 goto found_log;
1390 }
1391 }
1392 }
1393 return -EINVAL;
1394
1395found_log:
1396 d40c->phy_chan = &phys[i];
1397 d40c->log_num = log_num;
1398out:
1399
1400 if (is_log)
1401 d40c->base->lookup_log_chans[d40c->log_num] = d40c;
1402 else
1403 d40c->base->lookup_phy_chans[d40c->phy_chan->num] = d40c;
1404
1405 return 0;
1406
1407}
1408
Linus Walleij8d318a52010-03-30 15:33:42 +02001409static int d40_config_memcpy(struct d40_chan *d40c)
1410{
1411 dma_cap_mask_t cap = d40c->chan.device->cap_mask;
1412
1413 if (dma_has_cap(DMA_MEMCPY, cap) && !dma_has_cap(DMA_SLAVE, cap)) {
1414 d40c->dma_cfg = *d40c->base->plat_data->memcpy_conf_log;
1415 d40c->dma_cfg.src_dev_type = STEDMA40_DEV_SRC_MEMORY;
1416 d40c->dma_cfg.dst_dev_type = d40c->base->plat_data->
1417 memcpy[d40c->chan.chan_id];
1418
1419 } else if (dma_has_cap(DMA_MEMCPY, cap) &&
1420 dma_has_cap(DMA_SLAVE, cap)) {
1421 d40c->dma_cfg = *d40c->base->plat_data->memcpy_conf_phy;
1422 } else {
1423 dev_err(&d40c->chan.dev->device, "[%s] No memcpy\n",
1424 __func__);
1425 return -EINVAL;
1426 }
1427
1428 return 0;
1429}
1430
1431
1432static int d40_free_dma(struct d40_chan *d40c)
1433{
1434
1435 int res = 0;
Jonas Aabergd181b3a2010-06-20 21:26:38 +00001436 u32 event;
Linus Walleij8d318a52010-03-30 15:33:42 +02001437 struct d40_phy_res *phy = d40c->phy_chan;
1438 bool is_src;
Per Fridena8be8622010-06-20 21:24:59 +00001439 struct d40_desc *d;
1440 struct d40_desc *_d;
1441
Linus Walleij8d318a52010-03-30 15:33:42 +02001442
1443 /* Terminate all queued and active transfers */
1444 d40_term_all(d40c);
1445
Per Fridena8be8622010-06-20 21:24:59 +00001446 /* Release client owned descriptors */
1447 if (!list_empty(&d40c->client))
1448 list_for_each_entry_safe(d, _d, &d40c->client, node) {
1449 d40_pool_lli_free(d);
1450 d40_desc_remove(d);
Per Fridena8be8622010-06-20 21:24:59 +00001451 d40_desc_free(d40c, d);
1452 }
1453
Linus Walleij8d318a52010-03-30 15:33:42 +02001454 if (phy == NULL) {
1455 dev_err(&d40c->chan.dev->device, "[%s] phy == null\n",
1456 __func__);
1457 return -EINVAL;
1458 }
1459
1460 if (phy->allocated_src == D40_ALLOC_FREE &&
1461 phy->allocated_dst == D40_ALLOC_FREE) {
1462 dev_err(&d40c->chan.dev->device, "[%s] channel already free\n",
1463 __func__);
1464 return -EINVAL;
1465 }
1466
Linus Walleij8d318a52010-03-30 15:33:42 +02001467 if (d40c->dma_cfg.dir == STEDMA40_MEM_TO_PERIPH ||
1468 d40c->dma_cfg.dir == STEDMA40_MEM_TO_MEM) {
1469 event = D40_TYPE_TO_EVENT(d40c->dma_cfg.dst_dev_type);
Linus Walleij8d318a52010-03-30 15:33:42 +02001470 is_src = false;
1471 } else if (d40c->dma_cfg.dir == STEDMA40_PERIPH_TO_MEM) {
1472 event = D40_TYPE_TO_EVENT(d40c->dma_cfg.src_dev_type);
Linus Walleij8d318a52010-03-30 15:33:42 +02001473 is_src = true;
1474 } else {
1475 dev_err(&d40c->chan.dev->device,
1476 "[%s] Unknown direction\n", __func__);
1477 return -EINVAL;
1478 }
1479
Jonas Aabergd181b3a2010-06-20 21:26:38 +00001480 res = d40_channel_execute_command(d40c, D40_DMA_SUSPEND_REQ);
1481 if (res) {
1482 dev_err(&d40c->chan.dev->device, "[%s] suspend failed\n",
1483 __func__);
1484 return res;
1485 }
Linus Walleij8d318a52010-03-30 15:33:42 +02001486
Jonas Aabergd181b3a2010-06-20 21:26:38 +00001487 if (d40c->log_num != D40_PHY_CHAN) {
1488 /* Release logical channel, deactivate the event line */
1489
1490 d40_config_set_event(d40c, false);
Linus Walleij8d318a52010-03-30 15:33:42 +02001491 d40c->base->lookup_log_chans[d40c->log_num] = NULL;
1492
1493 /*
1494 * Check if there are more logical allocation
1495 * on this phy channel.
1496 */
1497 if (!d40_alloc_mask_free(phy, is_src, event)) {
1498 /* Resume the other logical channels if any */
1499 if (d40_chan_has_events(d40c)) {
1500 res = d40_channel_execute_command(d40c,
1501 D40_DMA_RUN);
1502 if (res) {
1503 dev_err(&d40c->chan.dev->device,
1504 "[%s] Executing RUN command\n",
1505 __func__);
1506 return res;
1507 }
1508 }
1509 return 0;
1510 }
Jonas Aabergd181b3a2010-06-20 21:26:38 +00001511 } else {
1512 (void) d40_alloc_mask_free(phy, is_src, 0);
1513 }
Linus Walleij8d318a52010-03-30 15:33:42 +02001514
1515 /* Release physical channel */
1516 res = d40_channel_execute_command(d40c, D40_DMA_STOP);
1517 if (res) {
1518 dev_err(&d40c->chan.dev->device,
1519 "[%s] Failed to stop channel\n", __func__);
1520 return res;
1521 }
1522 d40c->phy_chan = NULL;
Rabin Vincentce2ca122010-10-12 13:00:49 +00001523 d40c->configured = false;
Linus Walleij8d318a52010-03-30 15:33:42 +02001524 d40c->base->lookup_phy_chans[phy->num] = NULL;
1525
1526 return 0;
Linus Walleij8d318a52010-03-30 15:33:42 +02001527}
1528
Jonas Aaberga5ebca42010-05-18 00:41:09 +02001529static bool d40_is_paused(struct d40_chan *d40c)
1530{
1531 bool is_paused = false;
1532 unsigned long flags;
1533 void __iomem *active_reg;
1534 u32 status;
1535 u32 event;
Jonas Aaberga5ebca42010-05-18 00:41:09 +02001536
1537 spin_lock_irqsave(&d40c->lock, flags);
1538
1539 if (d40c->log_num == D40_PHY_CHAN) {
1540 if (d40c->phy_chan->num % 2 == 0)
1541 active_reg = d40c->base->virtbase + D40_DREG_ACTIVE;
1542 else
1543 active_reg = d40c->base->virtbase + D40_DREG_ACTIVO;
1544
1545 status = (readl(active_reg) &
1546 D40_CHAN_POS_MASK(d40c->phy_chan->num)) >>
1547 D40_CHAN_POS(d40c->phy_chan->num);
1548 if (status == D40_DMA_SUSPENDED || status == D40_DMA_STOP)
1549 is_paused = true;
1550
1551 goto _exit;
1552 }
1553
Jonas Aaberga5ebca42010-05-18 00:41:09 +02001554 if (d40c->dma_cfg.dir == STEDMA40_MEM_TO_PERIPH ||
Jonas Aaberg9dbfbd35c2010-08-09 12:08:41 +00001555 d40c->dma_cfg.dir == STEDMA40_MEM_TO_MEM) {
Jonas Aaberga5ebca42010-05-18 00:41:09 +02001556 event = D40_TYPE_TO_EVENT(d40c->dma_cfg.dst_dev_type);
Jonas Aaberg9dbfbd35c2010-08-09 12:08:41 +00001557 status = readl(d40c->base->virtbase + D40_DREG_PCBASE +
1558 d40c->phy_chan->num * D40_DREG_PCDELTA +
1559 D40_CHAN_REG_SDLNK);
1560 } else if (d40c->dma_cfg.dir == STEDMA40_PERIPH_TO_MEM) {
Jonas Aaberga5ebca42010-05-18 00:41:09 +02001561 event = D40_TYPE_TO_EVENT(d40c->dma_cfg.src_dev_type);
Jonas Aaberg9dbfbd35c2010-08-09 12:08:41 +00001562 status = readl(d40c->base->virtbase + D40_DREG_PCBASE +
1563 d40c->phy_chan->num * D40_DREG_PCDELTA +
1564 D40_CHAN_REG_SSLNK);
1565 } else {
Jonas Aaberga5ebca42010-05-18 00:41:09 +02001566 dev_err(&d40c->chan.dev->device,
1567 "[%s] Unknown direction\n", __func__);
1568 goto _exit;
1569 }
Jonas Aaberg9dbfbd35c2010-08-09 12:08:41 +00001570
Jonas Aaberga5ebca42010-05-18 00:41:09 +02001571 status = (status & D40_EVENTLINE_MASK(event)) >>
1572 D40_EVENTLINE_POS(event);
1573
1574 if (status != D40_DMA_RUN)
1575 is_paused = true;
Jonas Aaberga5ebca42010-05-18 00:41:09 +02001576_exit:
1577 spin_unlock_irqrestore(&d40c->lock, flags);
1578 return is_paused;
1579
1580}
1581
1582
Linus Walleij8d318a52010-03-30 15:33:42 +02001583static u32 stedma40_residue(struct dma_chan *chan)
1584{
1585 struct d40_chan *d40c =
1586 container_of(chan, struct d40_chan, chan);
1587 u32 bytes_left;
1588 unsigned long flags;
1589
1590 spin_lock_irqsave(&d40c->lock, flags);
1591 bytes_left = d40_residue(d40c);
1592 spin_unlock_irqrestore(&d40c->lock, flags);
1593
1594 return bytes_left;
1595}
1596
Linus Walleij8d318a52010-03-30 15:33:42 +02001597struct dma_async_tx_descriptor *stedma40_memcpy_sg(struct dma_chan *chan,
1598 struct scatterlist *sgl_dst,
1599 struct scatterlist *sgl_src,
1600 unsigned int sgl_len,
Jonas Aaberg2a614342010-06-20 21:25:24 +00001601 unsigned long dma_flags)
Linus Walleij8d318a52010-03-30 15:33:42 +02001602{
1603 int res;
1604 struct d40_desc *d40d;
1605 struct d40_chan *d40c = container_of(chan, struct d40_chan,
1606 chan);
Jonas Aaberg2a614342010-06-20 21:25:24 +00001607 unsigned long flags;
Linus Walleij8d318a52010-03-30 15:33:42 +02001608
Jonas Aaberg0d0f6b82010-06-20 21:25:31 +00001609 if (d40c->phy_chan == NULL) {
1610 dev_err(&d40c->chan.dev->device,
1611 "[%s] Unallocated channel.\n", __func__);
1612 return ERR_PTR(-EINVAL);
1613 }
1614
Jonas Aaberg2a614342010-06-20 21:25:24 +00001615 spin_lock_irqsave(&d40c->lock, flags);
Linus Walleij8d318a52010-03-30 15:33:42 +02001616 d40d = d40_desc_get(d40c);
1617
1618 if (d40d == NULL)
1619 goto err;
1620
Linus Walleij8d318a52010-03-30 15:33:42 +02001621 d40d->lli_len = sgl_len;
Jonas Aaberg698e4732010-08-09 12:08:56 +00001622 d40d->lli_current = 0;
Jonas Aaberg2a614342010-06-20 21:25:24 +00001623 d40d->txd.flags = dma_flags;
Linus Walleij8d318a52010-03-30 15:33:42 +02001624
1625 if (d40c->log_num != D40_PHY_CHAN) {
Linus Walleij8d318a52010-03-30 15:33:42 +02001626
1627 if (d40_pool_lli_alloc(d40d, sgl_len, true) < 0) {
1628 dev_err(&d40c->chan.dev->device,
1629 "[%s] Out of memory\n", __func__);
1630 goto err;
1631 }
1632
Jonas Aaberg698e4732010-08-09 12:08:56 +00001633 (void) d40_log_sg_to_lli(sgl_src,
Linus Walleij8d318a52010-03-30 15:33:42 +02001634 sgl_len,
1635 d40d->lli_log.src,
1636 d40c->log_def.lcsp1,
Jonas Aaberg698e4732010-08-09 12:08:56 +00001637 d40c->dma_cfg.src_info.data_width);
Linus Walleij8d318a52010-03-30 15:33:42 +02001638
Jonas Aaberg698e4732010-08-09 12:08:56 +00001639 (void) d40_log_sg_to_lli(sgl_dst,
Linus Walleij8d318a52010-03-30 15:33:42 +02001640 sgl_len,
1641 d40d->lli_log.dst,
1642 d40c->log_def.lcsp3,
Jonas Aaberg698e4732010-08-09 12:08:56 +00001643 d40c->dma_cfg.dst_info.data_width);
Linus Walleij8d318a52010-03-30 15:33:42 +02001644 } else {
1645 if (d40_pool_lli_alloc(d40d, sgl_len, false) < 0) {
1646 dev_err(&d40c->chan.dev->device,
1647 "[%s] Out of memory\n", __func__);
1648 goto err;
1649 }
1650
1651 res = d40_phy_sg_to_lli(sgl_src,
1652 sgl_len,
1653 0,
1654 d40d->lli_phy.src,
Jonas Aabergaa182ae2010-08-09 12:08:26 +00001655 virt_to_phys(d40d->lli_phy.src),
Linus Walleij8d318a52010-03-30 15:33:42 +02001656 d40c->src_def_cfg,
1657 d40c->dma_cfg.src_info.data_width,
Jonas Aaberg0246e772010-08-09 12:08:10 +00001658 d40c->dma_cfg.src_info.psize);
Linus Walleij8d318a52010-03-30 15:33:42 +02001659
1660 if (res < 0)
1661 goto err;
1662
1663 res = d40_phy_sg_to_lli(sgl_dst,
1664 sgl_len,
1665 0,
1666 d40d->lli_phy.dst,
Jonas Aabergaa182ae2010-08-09 12:08:26 +00001667 virt_to_phys(d40d->lli_phy.dst),
Linus Walleij8d318a52010-03-30 15:33:42 +02001668 d40c->dst_def_cfg,
1669 d40c->dma_cfg.dst_info.data_width,
Jonas Aaberg0246e772010-08-09 12:08:10 +00001670 d40c->dma_cfg.dst_info.psize);
Linus Walleij8d318a52010-03-30 15:33:42 +02001671
1672 if (res < 0)
1673 goto err;
1674
1675 (void) dma_map_single(d40c->base->dev, d40d->lli_phy.src,
1676 d40d->lli_pool.size, DMA_TO_DEVICE);
1677 }
1678
1679 dma_async_tx_descriptor_init(&d40d->txd, chan);
1680
1681 d40d->txd.tx_submit = d40_tx_submit;
1682
Jonas Aaberg2a614342010-06-20 21:25:24 +00001683 spin_unlock_irqrestore(&d40c->lock, flags);
Linus Walleij8d318a52010-03-30 15:33:42 +02001684
1685 return &d40d->txd;
1686err:
Rabin Vincent819504f2010-10-06 08:20:38 +00001687 if (d40d)
1688 d40_desc_free(d40c, d40d);
Jonas Aaberg2a614342010-06-20 21:25:24 +00001689 spin_unlock_irqrestore(&d40c->lock, flags);
Linus Walleij8d318a52010-03-30 15:33:42 +02001690 return NULL;
1691}
1692EXPORT_SYMBOL(stedma40_memcpy_sg);
1693
1694bool stedma40_filter(struct dma_chan *chan, void *data)
1695{
1696 struct stedma40_chan_cfg *info = data;
1697 struct d40_chan *d40c =
1698 container_of(chan, struct d40_chan, chan);
1699 int err;
1700
1701 if (data) {
1702 err = d40_validate_conf(d40c, info);
1703 if (!err)
1704 d40c->dma_cfg = *info;
1705 } else
1706 err = d40_config_memcpy(d40c);
1707
Rabin Vincentce2ca122010-10-12 13:00:49 +00001708 if (!err)
1709 d40c->configured = true;
1710
Linus Walleij8d318a52010-03-30 15:33:42 +02001711 return err == 0;
1712}
1713EXPORT_SYMBOL(stedma40_filter);
1714
1715/* DMA ENGINE functions */
1716static int d40_alloc_chan_resources(struct dma_chan *chan)
1717{
1718 int err;
1719 unsigned long flags;
1720 struct d40_chan *d40c =
1721 container_of(chan, struct d40_chan, chan);
Linus Walleijef1872e2010-06-20 21:24:52 +00001722 bool is_free_phy;
Linus Walleij8d318a52010-03-30 15:33:42 +02001723 spin_lock_irqsave(&d40c->lock, flags);
1724
1725 d40c->completed = chan->cookie = 1;
1726
Rabin Vincentce2ca122010-10-12 13:00:49 +00001727 /* If no dma configuration is set use default configuration (memcpy) */
1728 if (!d40c->configured) {
Linus Walleij8d318a52010-03-30 15:33:42 +02001729 err = d40_config_memcpy(d40c);
Jonas Aabergff0b12b2010-06-20 21:25:15 +00001730 if (err) {
1731 dev_err(&d40c->chan.dev->device,
1732 "[%s] Failed to configure memcpy channel\n",
1733 __func__);
1734 goto fail;
1735 }
Linus Walleij8d318a52010-03-30 15:33:42 +02001736 }
Linus Walleijef1872e2010-06-20 21:24:52 +00001737 is_free_phy = (d40c->phy_chan == NULL);
Linus Walleij8d318a52010-03-30 15:33:42 +02001738
1739 err = d40_allocate_channel(d40c);
1740 if (err) {
1741 dev_err(&d40c->chan.dev->device,
1742 "[%s] Failed to allocate channel\n", __func__);
Jonas Aabergff0b12b2010-06-20 21:25:15 +00001743 goto fail;
Linus Walleij8d318a52010-03-30 15:33:42 +02001744 }
1745
Linus Walleijef1872e2010-06-20 21:24:52 +00001746 /* Fill in basic CFG register values */
1747 d40_phy_cfg(&d40c->dma_cfg, &d40c->src_def_cfg,
1748 &d40c->dst_def_cfg, d40c->log_num != D40_PHY_CHAN);
1749
1750 if (d40c->log_num != D40_PHY_CHAN) {
1751 d40_log_cfg(&d40c->dma_cfg,
1752 &d40c->log_def.lcsp1, &d40c->log_def.lcsp3);
1753
1754 if (d40c->dma_cfg.dir == STEDMA40_PERIPH_TO_MEM)
1755 d40c->lcpa = d40c->base->lcpa_base +
1756 d40c->dma_cfg.src_dev_type * D40_LCPA_CHAN_SIZE;
1757 else
1758 d40c->lcpa = d40c->base->lcpa_base +
1759 d40c->dma_cfg.dst_dev_type *
1760 D40_LCPA_CHAN_SIZE + D40_LCPA_CHAN_DST_DELTA;
1761 }
1762
1763 /*
1764 * Only write channel configuration to the DMA if the physical
1765 * resource is free. In case of multiple logical channels
1766 * on the same physical resource, only the first write is necessary.
1767 */
Jonas Aabergb55912c2010-08-09 12:08:02 +00001768 if (is_free_phy)
1769 d40_config_write(d40c);
Jonas Aabergff0b12b2010-06-20 21:25:15 +00001770fail:
Linus Walleij8d318a52010-03-30 15:33:42 +02001771 spin_unlock_irqrestore(&d40c->lock, flags);
Jonas Aabergff0b12b2010-06-20 21:25:15 +00001772 return err;
Linus Walleij8d318a52010-03-30 15:33:42 +02001773}
1774
1775static void d40_free_chan_resources(struct dma_chan *chan)
1776{
1777 struct d40_chan *d40c =
1778 container_of(chan, struct d40_chan, chan);
1779 int err;
1780 unsigned long flags;
1781
Jonas Aaberg0d0f6b82010-06-20 21:25:31 +00001782 if (d40c->phy_chan == NULL) {
1783 dev_err(&d40c->chan.dev->device,
1784 "[%s] Cannot free unallocated channel\n", __func__);
1785 return;
1786 }
1787
1788
Linus Walleij8d318a52010-03-30 15:33:42 +02001789 spin_lock_irqsave(&d40c->lock, flags);
1790
1791 err = d40_free_dma(d40c);
1792
1793 if (err)
1794 dev_err(&d40c->chan.dev->device,
1795 "[%s] Failed to free channel\n", __func__);
1796 spin_unlock_irqrestore(&d40c->lock, flags);
1797}
1798
1799static struct dma_async_tx_descriptor *d40_prep_memcpy(struct dma_chan *chan,
1800 dma_addr_t dst,
1801 dma_addr_t src,
1802 size_t size,
Jonas Aaberg2a614342010-06-20 21:25:24 +00001803 unsigned long dma_flags)
Linus Walleij8d318a52010-03-30 15:33:42 +02001804{
1805 struct d40_desc *d40d;
1806 struct d40_chan *d40c = container_of(chan, struct d40_chan,
1807 chan);
Jonas Aaberg2a614342010-06-20 21:25:24 +00001808 unsigned long flags;
Linus Walleij8d318a52010-03-30 15:33:42 +02001809 int err = 0;
1810
Jonas Aaberg0d0f6b82010-06-20 21:25:31 +00001811 if (d40c->phy_chan == NULL) {
1812 dev_err(&d40c->chan.dev->device,
1813 "[%s] Channel is not allocated.\n", __func__);
1814 return ERR_PTR(-EINVAL);
1815 }
1816
Jonas Aaberg2a614342010-06-20 21:25:24 +00001817 spin_lock_irqsave(&d40c->lock, flags);
Linus Walleij8d318a52010-03-30 15:33:42 +02001818 d40d = d40_desc_get(d40c);
1819
1820 if (d40d == NULL) {
1821 dev_err(&d40c->chan.dev->device,
1822 "[%s] Descriptor is NULL\n", __func__);
1823 goto err;
1824 }
1825
Jonas Aaberg2a614342010-06-20 21:25:24 +00001826 d40d->txd.flags = dma_flags;
Linus Walleij8d318a52010-03-30 15:33:42 +02001827
1828 dma_async_tx_descriptor_init(&d40d->txd, chan);
1829
1830 d40d->txd.tx_submit = d40_tx_submit;
1831
1832 if (d40c->log_num != D40_PHY_CHAN) {
1833
1834 if (d40_pool_lli_alloc(d40d, 1, true) < 0) {
1835 dev_err(&d40c->chan.dev->device,
1836 "[%s] Out of memory\n", __func__);
1837 goto err;
1838 }
1839 d40d->lli_len = 1;
Jonas Aaberg698e4732010-08-09 12:08:56 +00001840 d40d->lli_current = 0;
Linus Walleij8d318a52010-03-30 15:33:42 +02001841
1842 d40_log_fill_lli(d40d->lli_log.src,
1843 src,
1844 size,
Linus Walleij8d318a52010-03-30 15:33:42 +02001845 d40c->log_def.lcsp1,
1846 d40c->dma_cfg.src_info.data_width,
Jonas Aaberg698e4732010-08-09 12:08:56 +00001847 true);
Linus Walleij8d318a52010-03-30 15:33:42 +02001848
1849 d40_log_fill_lli(d40d->lli_log.dst,
1850 dst,
1851 size,
Linus Walleij8d318a52010-03-30 15:33:42 +02001852 d40c->log_def.lcsp3,
1853 d40c->dma_cfg.dst_info.data_width,
Jonas Aaberg698e4732010-08-09 12:08:56 +00001854 true);
Linus Walleij8d318a52010-03-30 15:33:42 +02001855
1856 } else {
1857
1858 if (d40_pool_lli_alloc(d40d, 1, false) < 0) {
1859 dev_err(&d40c->chan.dev->device,
1860 "[%s] Out of memory\n", __func__);
1861 goto err;
1862 }
1863
1864 err = d40_phy_fill_lli(d40d->lli_phy.src,
1865 src,
1866 size,
1867 d40c->dma_cfg.src_info.psize,
1868 0,
1869 d40c->src_def_cfg,
1870 true,
1871 d40c->dma_cfg.src_info.data_width,
1872 false);
1873 if (err)
1874 goto err_fill_lli;
1875
1876 err = d40_phy_fill_lli(d40d->lli_phy.dst,
1877 dst,
1878 size,
1879 d40c->dma_cfg.dst_info.psize,
1880 0,
1881 d40c->dst_def_cfg,
1882 true,
1883 d40c->dma_cfg.dst_info.data_width,
1884 false);
1885
1886 if (err)
1887 goto err_fill_lli;
1888
1889 (void) dma_map_single(d40c->base->dev, d40d->lli_phy.src,
1890 d40d->lli_pool.size, DMA_TO_DEVICE);
1891 }
1892
Jonas Aaberg2a614342010-06-20 21:25:24 +00001893 spin_unlock_irqrestore(&d40c->lock, flags);
Linus Walleij8d318a52010-03-30 15:33:42 +02001894 return &d40d->txd;
1895
1896err_fill_lli:
1897 dev_err(&d40c->chan.dev->device,
1898 "[%s] Failed filling in PHY LLI\n", __func__);
Linus Walleij8d318a52010-03-30 15:33:42 +02001899err:
Rabin Vincent819504f2010-10-06 08:20:38 +00001900 if (d40d)
1901 d40_desc_free(d40c, d40d);
Jonas Aaberg2a614342010-06-20 21:25:24 +00001902 spin_unlock_irqrestore(&d40c->lock, flags);
Linus Walleij8d318a52010-03-30 15:33:42 +02001903 return NULL;
1904}
1905
1906static int d40_prep_slave_sg_log(struct d40_desc *d40d,
1907 struct d40_chan *d40c,
1908 struct scatterlist *sgl,
1909 unsigned int sg_len,
1910 enum dma_data_direction direction,
Jonas Aaberg2a614342010-06-20 21:25:24 +00001911 unsigned long dma_flags)
Linus Walleij8d318a52010-03-30 15:33:42 +02001912{
1913 dma_addr_t dev_addr = 0;
1914 int total_size;
Linus Walleij8d318a52010-03-30 15:33:42 +02001915
1916 if (d40_pool_lli_alloc(d40d, sg_len, true) < 0) {
1917 dev_err(&d40c->chan.dev->device,
1918 "[%s] Out of memory\n", __func__);
1919 return -ENOMEM;
1920 }
1921
1922 d40d->lli_len = sg_len;
Jonas Aaberg698e4732010-08-09 12:08:56 +00001923 d40d->lli_current = 0;
Linus Walleij8d318a52010-03-30 15:33:42 +02001924
Jonas Aaberg2a614342010-06-20 21:25:24 +00001925 if (direction == DMA_FROM_DEVICE)
Linus Walleij95e14002010-08-04 13:37:45 +02001926 if (d40c->runtime_addr)
1927 dev_addr = d40c->runtime_addr;
1928 else
1929 dev_addr = d40c->base->plat_data->dev_rx[d40c->dma_cfg.src_dev_type];
Jonas Aaberg2a614342010-06-20 21:25:24 +00001930 else if (direction == DMA_TO_DEVICE)
Linus Walleij95e14002010-08-04 13:37:45 +02001931 if (d40c->runtime_addr)
1932 dev_addr = d40c->runtime_addr;
1933 else
1934 dev_addr = d40c->base->plat_data->dev_tx[d40c->dma_cfg.dst_dev_type];
1935
Jonas Aaberg2a614342010-06-20 21:25:24 +00001936 else
Linus Walleij8d318a52010-03-30 15:33:42 +02001937 return -EINVAL;
Jonas Aaberg2a614342010-06-20 21:25:24 +00001938
Jonas Aaberg698e4732010-08-09 12:08:56 +00001939 total_size = d40_log_sg_to_dev(sgl, sg_len,
Jonas Aaberg2a614342010-06-20 21:25:24 +00001940 &d40d->lli_log,
1941 &d40c->log_def,
1942 d40c->dma_cfg.src_info.data_width,
1943 d40c->dma_cfg.dst_info.data_width,
1944 direction,
Jonas Aaberg698e4732010-08-09 12:08:56 +00001945 dev_addr);
Jonas Aaberg2a614342010-06-20 21:25:24 +00001946
Linus Walleij8d318a52010-03-30 15:33:42 +02001947 if (total_size < 0)
1948 return -EINVAL;
1949
1950 return 0;
1951}
1952
1953static int d40_prep_slave_sg_phy(struct d40_desc *d40d,
1954 struct d40_chan *d40c,
1955 struct scatterlist *sgl,
1956 unsigned int sgl_len,
1957 enum dma_data_direction direction,
Jonas Aaberg2a614342010-06-20 21:25:24 +00001958 unsigned long dma_flags)
Linus Walleij8d318a52010-03-30 15:33:42 +02001959{
1960 dma_addr_t src_dev_addr;
1961 dma_addr_t dst_dev_addr;
1962 int res;
1963
1964 if (d40_pool_lli_alloc(d40d, sgl_len, false) < 0) {
1965 dev_err(&d40c->chan.dev->device,
1966 "[%s] Out of memory\n", __func__);
1967 return -ENOMEM;
1968 }
1969
1970 d40d->lli_len = sgl_len;
Jonas Aaberg698e4732010-08-09 12:08:56 +00001971 d40d->lli_current = 0;
Linus Walleij8d318a52010-03-30 15:33:42 +02001972
1973 if (direction == DMA_FROM_DEVICE) {
1974 dst_dev_addr = 0;
Linus Walleij95e14002010-08-04 13:37:45 +02001975 if (d40c->runtime_addr)
1976 src_dev_addr = d40c->runtime_addr;
1977 else
1978 src_dev_addr = d40c->base->plat_data->dev_rx[d40c->dma_cfg.src_dev_type];
Linus Walleij8d318a52010-03-30 15:33:42 +02001979 } else if (direction == DMA_TO_DEVICE) {
Linus Walleij95e14002010-08-04 13:37:45 +02001980 if (d40c->runtime_addr)
1981 dst_dev_addr = d40c->runtime_addr;
1982 else
1983 dst_dev_addr = d40c->base->plat_data->dev_tx[d40c->dma_cfg.dst_dev_type];
Linus Walleij8d318a52010-03-30 15:33:42 +02001984 src_dev_addr = 0;
1985 } else
1986 return -EINVAL;
1987
1988 res = d40_phy_sg_to_lli(sgl,
1989 sgl_len,
1990 src_dev_addr,
1991 d40d->lli_phy.src,
Jonas Aabergaa182ae2010-08-09 12:08:26 +00001992 virt_to_phys(d40d->lli_phy.src),
Linus Walleij8d318a52010-03-30 15:33:42 +02001993 d40c->src_def_cfg,
1994 d40c->dma_cfg.src_info.data_width,
Jonas Aaberg0246e772010-08-09 12:08:10 +00001995 d40c->dma_cfg.src_info.psize);
Linus Walleij8d318a52010-03-30 15:33:42 +02001996 if (res < 0)
1997 return res;
1998
1999 res = d40_phy_sg_to_lli(sgl,
2000 sgl_len,
2001 dst_dev_addr,
2002 d40d->lli_phy.dst,
Jonas Aabergaa182ae2010-08-09 12:08:26 +00002003 virt_to_phys(d40d->lli_phy.dst),
Linus Walleij8d318a52010-03-30 15:33:42 +02002004 d40c->dst_def_cfg,
2005 d40c->dma_cfg.dst_info.data_width,
Jonas Aaberg0246e772010-08-09 12:08:10 +00002006 d40c->dma_cfg.dst_info.psize);
Linus Walleij8d318a52010-03-30 15:33:42 +02002007 if (res < 0)
2008 return res;
2009
2010 (void) dma_map_single(d40c->base->dev, d40d->lli_phy.src,
2011 d40d->lli_pool.size, DMA_TO_DEVICE);
2012 return 0;
2013}
2014
2015static struct dma_async_tx_descriptor *d40_prep_slave_sg(struct dma_chan *chan,
2016 struct scatterlist *sgl,
2017 unsigned int sg_len,
2018 enum dma_data_direction direction,
Jonas Aaberg2a614342010-06-20 21:25:24 +00002019 unsigned long dma_flags)
Linus Walleij8d318a52010-03-30 15:33:42 +02002020{
2021 struct d40_desc *d40d;
2022 struct d40_chan *d40c = container_of(chan, struct d40_chan,
2023 chan);
Jonas Aaberg2a614342010-06-20 21:25:24 +00002024 unsigned long flags;
Linus Walleij8d318a52010-03-30 15:33:42 +02002025 int err;
2026
Jonas Aaberg0d0f6b82010-06-20 21:25:31 +00002027 if (d40c->phy_chan == NULL) {
2028 dev_err(&d40c->chan.dev->device,
2029 "[%s] Cannot prepare unallocated channel\n", __func__);
2030 return ERR_PTR(-EINVAL);
2031 }
2032
Jonas Aaberg2a614342010-06-20 21:25:24 +00002033 spin_lock_irqsave(&d40c->lock, flags);
Linus Walleij8d318a52010-03-30 15:33:42 +02002034 d40d = d40_desc_get(d40c);
Linus Walleij8d318a52010-03-30 15:33:42 +02002035
2036 if (d40d == NULL)
Rabin Vincent819504f2010-10-06 08:20:38 +00002037 goto err;
Linus Walleij8d318a52010-03-30 15:33:42 +02002038
Linus Walleij8d318a52010-03-30 15:33:42 +02002039 if (d40c->log_num != D40_PHY_CHAN)
2040 err = d40_prep_slave_sg_log(d40d, d40c, sgl, sg_len,
Jonas Aaberg2a614342010-06-20 21:25:24 +00002041 direction, dma_flags);
Linus Walleij8d318a52010-03-30 15:33:42 +02002042 else
2043 err = d40_prep_slave_sg_phy(d40d, d40c, sgl, sg_len,
Jonas Aaberg2a614342010-06-20 21:25:24 +00002044 direction, dma_flags);
Linus Walleij8d318a52010-03-30 15:33:42 +02002045 if (err) {
2046 dev_err(&d40c->chan.dev->device,
2047 "[%s] Failed to prepare %s slave sg job: %d\n",
2048 __func__,
2049 d40c->log_num != D40_PHY_CHAN ? "log" : "phy", err);
Rabin Vincent819504f2010-10-06 08:20:38 +00002050 goto err;
Linus Walleij8d318a52010-03-30 15:33:42 +02002051 }
2052
Jonas Aaberg2a614342010-06-20 21:25:24 +00002053 d40d->txd.flags = dma_flags;
Linus Walleij8d318a52010-03-30 15:33:42 +02002054
2055 dma_async_tx_descriptor_init(&d40d->txd, chan);
2056
2057 d40d->txd.tx_submit = d40_tx_submit;
2058
Rabin Vincent819504f2010-10-06 08:20:38 +00002059 spin_unlock_irqrestore(&d40c->lock, flags);
Linus Walleij8d318a52010-03-30 15:33:42 +02002060 return &d40d->txd;
Rabin Vincent819504f2010-10-06 08:20:38 +00002061
2062err:
2063 if (d40d)
2064 d40_desc_free(d40c, d40d);
2065 spin_unlock_irqrestore(&d40c->lock, flags);
2066 return NULL;
Linus Walleij8d318a52010-03-30 15:33:42 +02002067}
2068
2069static enum dma_status d40_tx_status(struct dma_chan *chan,
2070 dma_cookie_t cookie,
2071 struct dma_tx_state *txstate)
2072{
2073 struct d40_chan *d40c = container_of(chan, struct d40_chan, chan);
2074 dma_cookie_t last_used;
2075 dma_cookie_t last_complete;
2076 int ret;
2077
Jonas Aaberg0d0f6b82010-06-20 21:25:31 +00002078 if (d40c->phy_chan == NULL) {
2079 dev_err(&d40c->chan.dev->device,
2080 "[%s] Cannot read status of unallocated channel\n",
2081 __func__);
2082 return -EINVAL;
2083 }
2084
Linus Walleij8d318a52010-03-30 15:33:42 +02002085 last_complete = d40c->completed;
2086 last_used = chan->cookie;
2087
Jonas Aaberga5ebca42010-05-18 00:41:09 +02002088 if (d40_is_paused(d40c))
2089 ret = DMA_PAUSED;
2090 else
2091 ret = dma_async_is_complete(cookie, last_complete, last_used);
Linus Walleij8d318a52010-03-30 15:33:42 +02002092
Jonas Aaberga5ebca42010-05-18 00:41:09 +02002093 dma_set_tx_state(txstate, last_complete, last_used,
2094 stedma40_residue(chan));
Linus Walleij8d318a52010-03-30 15:33:42 +02002095
2096 return ret;
2097}
2098
2099static void d40_issue_pending(struct dma_chan *chan)
2100{
2101 struct d40_chan *d40c = container_of(chan, struct d40_chan, chan);
2102 unsigned long flags;
2103
Jonas Aaberg0d0f6b82010-06-20 21:25:31 +00002104 if (d40c->phy_chan == NULL) {
2105 dev_err(&d40c->chan.dev->device,
2106 "[%s] Channel is not allocated!\n", __func__);
2107 return;
2108 }
2109
Linus Walleij8d318a52010-03-30 15:33:42 +02002110 spin_lock_irqsave(&d40c->lock, flags);
2111
2112 /* Busy means that pending jobs are already being processed */
2113 if (!d40c->busy)
2114 (void) d40_queue_start(d40c);
2115
2116 spin_unlock_irqrestore(&d40c->lock, flags);
2117}
2118
Linus Walleij95e14002010-08-04 13:37:45 +02002119/* Runtime reconfiguration extension */
2120static void d40_set_runtime_config(struct dma_chan *chan,
2121 struct dma_slave_config *config)
2122{
2123 struct d40_chan *d40c = container_of(chan, struct d40_chan, chan);
2124 struct stedma40_chan_cfg *cfg = &d40c->dma_cfg;
2125 enum dma_slave_buswidth config_addr_width;
2126 dma_addr_t config_addr;
2127 u32 config_maxburst;
2128 enum stedma40_periph_data_width addr_width;
2129 int psize;
2130
2131 if (config->direction == DMA_FROM_DEVICE) {
2132 dma_addr_t dev_addr_rx =
2133 d40c->base->plat_data->dev_rx[cfg->src_dev_type];
2134
2135 config_addr = config->src_addr;
2136 if (dev_addr_rx)
2137 dev_dbg(d40c->base->dev,
2138 "channel has a pre-wired RX address %08x "
2139 "overriding with %08x\n",
2140 dev_addr_rx, config_addr);
2141 if (cfg->dir != STEDMA40_PERIPH_TO_MEM)
2142 dev_dbg(d40c->base->dev,
2143 "channel was not configured for peripheral "
2144 "to memory transfer (%d) overriding\n",
2145 cfg->dir);
2146 cfg->dir = STEDMA40_PERIPH_TO_MEM;
2147
2148 config_addr_width = config->src_addr_width;
2149 config_maxburst = config->src_maxburst;
2150
2151 } else if (config->direction == DMA_TO_DEVICE) {
2152 dma_addr_t dev_addr_tx =
2153 d40c->base->plat_data->dev_tx[cfg->dst_dev_type];
2154
2155 config_addr = config->dst_addr;
2156 if (dev_addr_tx)
2157 dev_dbg(d40c->base->dev,
2158 "channel has a pre-wired TX address %08x "
2159 "overriding with %08x\n",
2160 dev_addr_tx, config_addr);
2161 if (cfg->dir != STEDMA40_MEM_TO_PERIPH)
2162 dev_dbg(d40c->base->dev,
2163 "channel was not configured for memory "
2164 "to peripheral transfer (%d) overriding\n",
2165 cfg->dir);
2166 cfg->dir = STEDMA40_MEM_TO_PERIPH;
2167
2168 config_addr_width = config->dst_addr_width;
2169 config_maxburst = config->dst_maxburst;
2170
2171 } else {
2172 dev_err(d40c->base->dev,
2173 "unrecognized channel direction %d\n",
2174 config->direction);
2175 return;
2176 }
2177
2178 switch (config_addr_width) {
2179 case DMA_SLAVE_BUSWIDTH_1_BYTE:
2180 addr_width = STEDMA40_BYTE_WIDTH;
2181 break;
2182 case DMA_SLAVE_BUSWIDTH_2_BYTES:
2183 addr_width = STEDMA40_HALFWORD_WIDTH;
2184 break;
2185 case DMA_SLAVE_BUSWIDTH_4_BYTES:
2186 addr_width = STEDMA40_WORD_WIDTH;
2187 break;
2188 case DMA_SLAVE_BUSWIDTH_8_BYTES:
2189 addr_width = STEDMA40_DOUBLEWORD_WIDTH;
2190 break;
2191 default:
2192 dev_err(d40c->base->dev,
2193 "illegal peripheral address width "
2194 "requested (%d)\n",
2195 config->src_addr_width);
2196 return;
2197 }
2198
Per Forlina59670a2010-10-06 09:05:27 +00002199 if (d40c->log_num != D40_PHY_CHAN) {
2200 if (config_maxburst >= 16)
2201 psize = STEDMA40_PSIZE_LOG_16;
2202 else if (config_maxburst >= 8)
2203 psize = STEDMA40_PSIZE_LOG_8;
2204 else if (config_maxburst >= 4)
2205 psize = STEDMA40_PSIZE_LOG_4;
2206 else
2207 psize = STEDMA40_PSIZE_LOG_1;
2208 } else {
2209 if (config_maxburst >= 16)
2210 psize = STEDMA40_PSIZE_PHY_16;
2211 else if (config_maxburst >= 8)
2212 psize = STEDMA40_PSIZE_PHY_8;
2213 else if (config_maxburst >= 4)
2214 psize = STEDMA40_PSIZE_PHY_4;
2215 else
2216 psize = STEDMA40_PSIZE_PHY_1;
2217 }
Linus Walleij95e14002010-08-04 13:37:45 +02002218
2219 /* Set up all the endpoint configs */
2220 cfg->src_info.data_width = addr_width;
2221 cfg->src_info.psize = psize;
2222 cfg->src_info.endianess = STEDMA40_LITTLE_ENDIAN;
2223 cfg->src_info.flow_ctrl = STEDMA40_NO_FLOW_CTRL;
2224 cfg->dst_info.data_width = addr_width;
2225 cfg->dst_info.psize = psize;
2226 cfg->dst_info.endianess = STEDMA40_LITTLE_ENDIAN;
2227 cfg->dst_info.flow_ctrl = STEDMA40_NO_FLOW_CTRL;
2228
Per Forlina59670a2010-10-06 09:05:27 +00002229 /* Fill in register values */
2230 if (d40c->log_num != D40_PHY_CHAN)
2231 d40_log_cfg(cfg, &d40c->log_def.lcsp1, &d40c->log_def.lcsp3);
2232 else
2233 d40_phy_cfg(cfg, &d40c->src_def_cfg,
2234 &d40c->dst_def_cfg, false);
2235
Linus Walleij95e14002010-08-04 13:37:45 +02002236 /* These settings will take precedence later */
2237 d40c->runtime_addr = config_addr;
2238 d40c->runtime_direction = config->direction;
2239 dev_dbg(d40c->base->dev,
2240 "configured channel %s for %s, data width %d, "
2241 "maxburst %d bytes, LE, no flow control\n",
2242 dma_chan_name(chan),
2243 (config->direction == DMA_FROM_DEVICE) ? "RX" : "TX",
2244 config_addr_width,
2245 config_maxburst);
2246}
2247
Linus Walleij05827632010-05-17 16:30:42 -07002248static int d40_control(struct dma_chan *chan, enum dma_ctrl_cmd cmd,
2249 unsigned long arg)
Linus Walleij8d318a52010-03-30 15:33:42 +02002250{
2251 unsigned long flags;
2252 struct d40_chan *d40c = container_of(chan, struct d40_chan, chan);
2253
Jonas Aaberg0d0f6b82010-06-20 21:25:31 +00002254 if (d40c->phy_chan == NULL) {
2255 dev_err(&d40c->chan.dev->device,
2256 "[%s] Channel is not allocated!\n", __func__);
2257 return -EINVAL;
2258 }
2259
Linus Walleij8d318a52010-03-30 15:33:42 +02002260 switch (cmd) {
2261 case DMA_TERMINATE_ALL:
2262 spin_lock_irqsave(&d40c->lock, flags);
2263 d40_term_all(d40c);
2264 spin_unlock_irqrestore(&d40c->lock, flags);
2265 return 0;
2266 case DMA_PAUSE:
2267 return d40_pause(chan);
2268 case DMA_RESUME:
2269 return d40_resume(chan);
Linus Walleij95e14002010-08-04 13:37:45 +02002270 case DMA_SLAVE_CONFIG:
2271 d40_set_runtime_config(chan,
2272 (struct dma_slave_config *) arg);
2273 return 0;
2274 default:
2275 break;
Linus Walleij8d318a52010-03-30 15:33:42 +02002276 }
2277
2278 /* Other commands are unimplemented */
2279 return -ENXIO;
2280}
2281
2282/* Initialization functions */
2283
2284static void __init d40_chan_init(struct d40_base *base, struct dma_device *dma,
2285 struct d40_chan *chans, int offset,
2286 int num_chans)
2287{
2288 int i = 0;
2289 struct d40_chan *d40c;
2290
2291 INIT_LIST_HEAD(&dma->channels);
2292
2293 for (i = offset; i < offset + num_chans; i++) {
2294 d40c = &chans[i];
2295 d40c->base = base;
2296 d40c->chan.device = dma;
2297
Linus Walleij8d318a52010-03-30 15:33:42 +02002298 spin_lock_init(&d40c->lock);
2299
2300 d40c->log_num = D40_PHY_CHAN;
2301
Linus Walleij8d318a52010-03-30 15:33:42 +02002302 INIT_LIST_HEAD(&d40c->active);
2303 INIT_LIST_HEAD(&d40c->queue);
2304 INIT_LIST_HEAD(&d40c->client);
2305
Linus Walleij8d318a52010-03-30 15:33:42 +02002306 tasklet_init(&d40c->tasklet, dma_tasklet,
2307 (unsigned long) d40c);
2308
2309 list_add_tail(&d40c->chan.device_node,
2310 &dma->channels);
2311 }
2312}
2313
2314static int __init d40_dmaengine_init(struct d40_base *base,
2315 int num_reserved_chans)
2316{
2317 int err ;
2318
2319 d40_chan_init(base, &base->dma_slave, base->log_chans,
2320 0, base->num_log_chans);
2321
2322 dma_cap_zero(base->dma_slave.cap_mask);
2323 dma_cap_set(DMA_SLAVE, base->dma_slave.cap_mask);
2324
2325 base->dma_slave.device_alloc_chan_resources = d40_alloc_chan_resources;
2326 base->dma_slave.device_free_chan_resources = d40_free_chan_resources;
2327 base->dma_slave.device_prep_dma_memcpy = d40_prep_memcpy;
2328 base->dma_slave.device_prep_slave_sg = d40_prep_slave_sg;
2329 base->dma_slave.device_tx_status = d40_tx_status;
2330 base->dma_slave.device_issue_pending = d40_issue_pending;
2331 base->dma_slave.device_control = d40_control;
2332 base->dma_slave.dev = base->dev;
2333
2334 err = dma_async_device_register(&base->dma_slave);
2335
2336 if (err) {
2337 dev_err(base->dev,
2338 "[%s] Failed to register slave channels\n",
2339 __func__);
2340 goto failure1;
2341 }
2342
2343 d40_chan_init(base, &base->dma_memcpy, base->log_chans,
2344 base->num_log_chans, base->plat_data->memcpy_len);
2345
2346 dma_cap_zero(base->dma_memcpy.cap_mask);
2347 dma_cap_set(DMA_MEMCPY, base->dma_memcpy.cap_mask);
2348
2349 base->dma_memcpy.device_alloc_chan_resources = d40_alloc_chan_resources;
2350 base->dma_memcpy.device_free_chan_resources = d40_free_chan_resources;
2351 base->dma_memcpy.device_prep_dma_memcpy = d40_prep_memcpy;
2352 base->dma_memcpy.device_prep_slave_sg = d40_prep_slave_sg;
2353 base->dma_memcpy.device_tx_status = d40_tx_status;
2354 base->dma_memcpy.device_issue_pending = d40_issue_pending;
2355 base->dma_memcpy.device_control = d40_control;
2356 base->dma_memcpy.dev = base->dev;
2357 /*
2358 * This controller can only access address at even
2359 * 32bit boundaries, i.e. 2^2
2360 */
2361 base->dma_memcpy.copy_align = 2;
2362
2363 err = dma_async_device_register(&base->dma_memcpy);
2364
2365 if (err) {
2366 dev_err(base->dev,
2367 "[%s] Failed to regsiter memcpy only channels\n",
2368 __func__);
2369 goto failure2;
2370 }
2371
2372 d40_chan_init(base, &base->dma_both, base->phy_chans,
2373 0, num_reserved_chans);
2374
2375 dma_cap_zero(base->dma_both.cap_mask);
2376 dma_cap_set(DMA_SLAVE, base->dma_both.cap_mask);
2377 dma_cap_set(DMA_MEMCPY, base->dma_both.cap_mask);
2378
2379 base->dma_both.device_alloc_chan_resources = d40_alloc_chan_resources;
2380 base->dma_both.device_free_chan_resources = d40_free_chan_resources;
2381 base->dma_both.device_prep_dma_memcpy = d40_prep_memcpy;
2382 base->dma_both.device_prep_slave_sg = d40_prep_slave_sg;
2383 base->dma_both.device_tx_status = d40_tx_status;
2384 base->dma_both.device_issue_pending = d40_issue_pending;
2385 base->dma_both.device_control = d40_control;
2386 base->dma_both.dev = base->dev;
2387 base->dma_both.copy_align = 2;
2388 err = dma_async_device_register(&base->dma_both);
2389
2390 if (err) {
2391 dev_err(base->dev,
2392 "[%s] Failed to register logical and physical capable channels\n",
2393 __func__);
2394 goto failure3;
2395 }
2396 return 0;
2397failure3:
2398 dma_async_device_unregister(&base->dma_memcpy);
2399failure2:
2400 dma_async_device_unregister(&base->dma_slave);
2401failure1:
2402 return err;
2403}
2404
2405/* Initialization functions. */
2406
2407static int __init d40_phy_res_init(struct d40_base *base)
2408{
2409 int i;
2410 int num_phy_chans_avail = 0;
2411 u32 val[2];
2412 int odd_even_bit = -2;
2413
2414 val[0] = readl(base->virtbase + D40_DREG_PRSME);
2415 val[1] = readl(base->virtbase + D40_DREG_PRSMO);
2416
2417 for (i = 0; i < base->num_phy_chans; i++) {
2418 base->phy_res[i].num = i;
2419 odd_even_bit += 2 * ((i % 2) == 0);
2420 if (((val[i % 2] >> odd_even_bit) & 3) == 1) {
2421 /* Mark security only channels as occupied */
2422 base->phy_res[i].allocated_src = D40_ALLOC_PHY;
2423 base->phy_res[i].allocated_dst = D40_ALLOC_PHY;
2424 } else {
2425 base->phy_res[i].allocated_src = D40_ALLOC_FREE;
2426 base->phy_res[i].allocated_dst = D40_ALLOC_FREE;
2427 num_phy_chans_avail++;
2428 }
2429 spin_lock_init(&base->phy_res[i].lock);
2430 }
Jonas Aaberg6b7acd82010-06-20 21:26:59 +00002431
2432 /* Mark disabled channels as occupied */
2433 for (i = 0; base->plat_data->disabled_channels[i] != -1; i++) {
Rabin Vincentf57b4072010-10-06 08:20:35 +00002434 int chan = base->plat_data->disabled_channels[i];
2435
2436 base->phy_res[chan].allocated_src = D40_ALLOC_PHY;
2437 base->phy_res[chan].allocated_dst = D40_ALLOC_PHY;
2438 num_phy_chans_avail--;
Jonas Aaberg6b7acd82010-06-20 21:26:59 +00002439 }
2440
Linus Walleij8d318a52010-03-30 15:33:42 +02002441 dev_info(base->dev, "%d of %d physical DMA channels available\n",
2442 num_phy_chans_avail, base->num_phy_chans);
2443
2444 /* Verify settings extended vs standard */
2445 val[0] = readl(base->virtbase + D40_DREG_PRTYP);
2446
2447 for (i = 0; i < base->num_phy_chans; i++) {
2448
2449 if (base->phy_res[i].allocated_src == D40_ALLOC_FREE &&
2450 (val[0] & 0x3) != 1)
2451 dev_info(base->dev,
2452 "[%s] INFO: channel %d is misconfigured (%d)\n",
2453 __func__, i, val[0] & 0x3);
2454
2455 val[0] = val[0] >> 2;
2456 }
2457
2458 return num_phy_chans_avail;
2459}
2460
2461static struct d40_base * __init d40_hw_detect_init(struct platform_device *pdev)
2462{
2463 static const struct d40_reg_val dma_id_regs[] = {
2464 /* Peripheral Id */
2465 { .reg = D40_DREG_PERIPHID0, .val = 0x0040},
2466 { .reg = D40_DREG_PERIPHID1, .val = 0x0000},
2467 /*
2468 * D40_DREG_PERIPHID2 Depends on HW revision:
2469 * MOP500/HREF ED has 0x0008,
2470 * ? has 0x0018,
2471 * HREF V1 has 0x0028
2472 */
2473 { .reg = D40_DREG_PERIPHID3, .val = 0x0000},
2474
2475 /* PCell Id */
2476 { .reg = D40_DREG_CELLID0, .val = 0x000d},
2477 { .reg = D40_DREG_CELLID1, .val = 0x00f0},
2478 { .reg = D40_DREG_CELLID2, .val = 0x0005},
2479 { .reg = D40_DREG_CELLID3, .val = 0x00b1}
2480 };
2481 struct stedma40_platform_data *plat_data;
2482 struct clk *clk = NULL;
2483 void __iomem *virtbase = NULL;
2484 struct resource *res = NULL;
2485 struct d40_base *base = NULL;
2486 int num_log_chans = 0;
2487 int num_phy_chans;
2488 int i;
Linus Walleijf4185592010-06-22 18:06:42 -07002489 u32 val;
Jonas Aaberg3ae02672010-08-09 12:08:18 +00002490 u32 rev;
Linus Walleij8d318a52010-03-30 15:33:42 +02002491
2492 clk = clk_get(&pdev->dev, NULL);
2493
2494 if (IS_ERR(clk)) {
2495 dev_err(&pdev->dev, "[%s] No matching clock found\n",
2496 __func__);
2497 goto failure;
2498 }
2499
2500 clk_enable(clk);
2501
2502 /* Get IO for DMAC base address */
2503 res = platform_get_resource_byname(pdev, IORESOURCE_MEM, "base");
2504 if (!res)
2505 goto failure;
2506
2507 if (request_mem_region(res->start, resource_size(res),
2508 D40_NAME " I/O base") == NULL)
2509 goto failure;
2510
2511 virtbase = ioremap(res->start, resource_size(res));
2512 if (!virtbase)
2513 goto failure;
2514
2515 /* HW version check */
2516 for (i = 0; i < ARRAY_SIZE(dma_id_regs); i++) {
2517 if (dma_id_regs[i].val !=
2518 readl(virtbase + dma_id_regs[i].reg)) {
2519 dev_err(&pdev->dev,
2520 "[%s] Unknown hardware! Expected 0x%x at 0x%x but got 0x%x\n",
2521 __func__,
2522 dma_id_regs[i].val,
2523 dma_id_regs[i].reg,
2524 readl(virtbase + dma_id_regs[i].reg));
2525 goto failure;
2526 }
2527 }
2528
Jonas Aaberg3ae02672010-08-09 12:08:18 +00002529 /* Get silicon revision and designer */
Linus Walleijf4185592010-06-22 18:06:42 -07002530 val = readl(virtbase + D40_DREG_PERIPHID2);
Linus Walleij8d318a52010-03-30 15:33:42 +02002531
Jonas Aaberg3ae02672010-08-09 12:08:18 +00002532 if ((val & D40_DREG_PERIPHID2_DESIGNER_MASK) !=
2533 D40_HW_DESIGNER) {
Linus Walleij8d318a52010-03-30 15:33:42 +02002534 dev_err(&pdev->dev,
2535 "[%s] Unknown designer! Got %x wanted %x\n",
Jonas Aaberg3ae02672010-08-09 12:08:18 +00002536 __func__, val & D40_DREG_PERIPHID2_DESIGNER_MASK,
2537 D40_HW_DESIGNER);
Linus Walleij8d318a52010-03-30 15:33:42 +02002538 goto failure;
2539 }
2540
Jonas Aaberg3ae02672010-08-09 12:08:18 +00002541 rev = (val & D40_DREG_PERIPHID2_REV_MASK) >>
2542 D40_DREG_PERIPHID2_REV_POS;
2543
Linus Walleij8d318a52010-03-30 15:33:42 +02002544 /* The number of physical channels on this HW */
2545 num_phy_chans = 4 * (readl(virtbase + D40_DREG_ICFG) & 0x7) + 4;
2546
2547 dev_info(&pdev->dev, "hardware revision: %d @ 0x%x\n",
Jonas Aaberg3ae02672010-08-09 12:08:18 +00002548 rev, res->start);
Linus Walleij8d318a52010-03-30 15:33:42 +02002549
2550 plat_data = pdev->dev.platform_data;
2551
2552 /* Count the number of logical channels in use */
2553 for (i = 0; i < plat_data->dev_len; i++)
2554 if (plat_data->dev_rx[i] != 0)
2555 num_log_chans++;
2556
2557 for (i = 0; i < plat_data->dev_len; i++)
2558 if (plat_data->dev_tx[i] != 0)
2559 num_log_chans++;
2560
2561 base = kzalloc(ALIGN(sizeof(struct d40_base), 4) +
2562 (num_phy_chans + num_log_chans + plat_data->memcpy_len) *
2563 sizeof(struct d40_chan), GFP_KERNEL);
2564
2565 if (base == NULL) {
2566 dev_err(&pdev->dev, "[%s] Out of memory\n", __func__);
2567 goto failure;
2568 }
2569
Jonas Aaberg3ae02672010-08-09 12:08:18 +00002570 base->rev = rev;
Linus Walleij8d318a52010-03-30 15:33:42 +02002571 base->clk = clk;
2572 base->num_phy_chans = num_phy_chans;
2573 base->num_log_chans = num_log_chans;
2574 base->phy_start = res->start;
2575 base->phy_size = resource_size(res);
2576 base->virtbase = virtbase;
2577 base->plat_data = plat_data;
2578 base->dev = &pdev->dev;
2579 base->phy_chans = ((void *)base) + ALIGN(sizeof(struct d40_base), 4);
2580 base->log_chans = &base->phy_chans[num_phy_chans];
2581
2582 base->phy_res = kzalloc(num_phy_chans * sizeof(struct d40_phy_res),
2583 GFP_KERNEL);
2584 if (!base->phy_res)
2585 goto failure;
2586
2587 base->lookup_phy_chans = kzalloc(num_phy_chans *
2588 sizeof(struct d40_chan *),
2589 GFP_KERNEL);
2590 if (!base->lookup_phy_chans)
2591 goto failure;
2592
2593 if (num_log_chans + plat_data->memcpy_len) {
2594 /*
2595 * The max number of logical channels are event lines for all
2596 * src devices and dst devices
2597 */
2598 base->lookup_log_chans = kzalloc(plat_data->dev_len * 2 *
2599 sizeof(struct d40_chan *),
2600 GFP_KERNEL);
2601 if (!base->lookup_log_chans)
2602 goto failure;
2603 }
Jonas Aaberg698e4732010-08-09 12:08:56 +00002604
2605 base->lcla_pool.alloc_map = kzalloc(num_phy_chans *
2606 sizeof(struct d40_desc *) *
2607 D40_LCLA_LINK_PER_EVENT_GRP,
Linus Walleij8d318a52010-03-30 15:33:42 +02002608 GFP_KERNEL);
2609 if (!base->lcla_pool.alloc_map)
2610 goto failure;
2611
Jonas Aabergc675b1b2010-06-20 21:25:08 +00002612 base->desc_slab = kmem_cache_create(D40_NAME, sizeof(struct d40_desc),
2613 0, SLAB_HWCACHE_ALIGN,
2614 NULL);
2615 if (base->desc_slab == NULL)
2616 goto failure;
2617
Linus Walleij8d318a52010-03-30 15:33:42 +02002618 return base;
2619
2620failure:
Rabin Vincentc6134c92010-10-06 08:20:36 +00002621 if (!IS_ERR(clk)) {
Linus Walleij8d318a52010-03-30 15:33:42 +02002622 clk_disable(clk);
2623 clk_put(clk);
2624 }
2625 if (virtbase)
2626 iounmap(virtbase);
2627 if (res)
2628 release_mem_region(res->start,
2629 resource_size(res));
2630 if (virtbase)
2631 iounmap(virtbase);
2632
2633 if (base) {
2634 kfree(base->lcla_pool.alloc_map);
2635 kfree(base->lookup_log_chans);
2636 kfree(base->lookup_phy_chans);
2637 kfree(base->phy_res);
2638 kfree(base);
2639 }
2640
2641 return NULL;
2642}
2643
2644static void __init d40_hw_init(struct d40_base *base)
2645{
2646
2647 static const struct d40_reg_val dma_init_reg[] = {
2648 /* Clock every part of the DMA block from start */
2649 { .reg = D40_DREG_GCC, .val = 0x0000ff01},
2650
2651 /* Interrupts on all logical channels */
2652 { .reg = D40_DREG_LCMIS0, .val = 0xFFFFFFFF},
2653 { .reg = D40_DREG_LCMIS1, .val = 0xFFFFFFFF},
2654 { .reg = D40_DREG_LCMIS2, .val = 0xFFFFFFFF},
2655 { .reg = D40_DREG_LCMIS3, .val = 0xFFFFFFFF},
2656 { .reg = D40_DREG_LCICR0, .val = 0xFFFFFFFF},
2657 { .reg = D40_DREG_LCICR1, .val = 0xFFFFFFFF},
2658 { .reg = D40_DREG_LCICR2, .val = 0xFFFFFFFF},
2659 { .reg = D40_DREG_LCICR3, .val = 0xFFFFFFFF},
2660 { .reg = D40_DREG_LCTIS0, .val = 0xFFFFFFFF},
2661 { .reg = D40_DREG_LCTIS1, .val = 0xFFFFFFFF},
2662 { .reg = D40_DREG_LCTIS2, .val = 0xFFFFFFFF},
2663 { .reg = D40_DREG_LCTIS3, .val = 0xFFFFFFFF}
2664 };
2665 int i;
2666 u32 prmseo[2] = {0, 0};
2667 u32 activeo[2] = {0xFFFFFFFF, 0xFFFFFFFF};
2668 u32 pcmis = 0;
2669 u32 pcicr = 0;
2670
2671 for (i = 0; i < ARRAY_SIZE(dma_init_reg); i++)
2672 writel(dma_init_reg[i].val,
2673 base->virtbase + dma_init_reg[i].reg);
2674
2675 /* Configure all our dma channels to default settings */
2676 for (i = 0; i < base->num_phy_chans; i++) {
2677
2678 activeo[i % 2] = activeo[i % 2] << 2;
2679
2680 if (base->phy_res[base->num_phy_chans - i - 1].allocated_src
2681 == D40_ALLOC_PHY) {
2682 activeo[i % 2] |= 3;
2683 continue;
2684 }
2685
2686 /* Enable interrupt # */
2687 pcmis = (pcmis << 1) | 1;
2688
2689 /* Clear interrupt # */
2690 pcicr = (pcicr << 1) | 1;
2691
2692 /* Set channel to physical mode */
2693 prmseo[i % 2] = prmseo[i % 2] << 2;
2694 prmseo[i % 2] |= 1;
2695
2696 }
2697
2698 writel(prmseo[1], base->virtbase + D40_DREG_PRMSE);
2699 writel(prmseo[0], base->virtbase + D40_DREG_PRMSO);
2700 writel(activeo[1], base->virtbase + D40_DREG_ACTIVE);
2701 writel(activeo[0], base->virtbase + D40_DREG_ACTIVO);
2702
2703 /* Write which interrupt to enable */
2704 writel(pcmis, base->virtbase + D40_DREG_PCMIS);
2705
2706 /* Write which interrupt to clear */
2707 writel(pcicr, base->virtbase + D40_DREG_PCICR);
2708
2709}
2710
Linus Walleij508849a2010-06-20 21:26:07 +00002711static int __init d40_lcla_allocate(struct d40_base *base)
2712{
2713 unsigned long *page_list;
2714 int i, j;
2715 int ret = 0;
2716
2717 /*
2718 * This is somewhat ugly. We need 8192 bytes that are 18 bit aligned,
2719 * To full fill this hardware requirement without wasting 256 kb
2720 * we allocate pages until we get an aligned one.
2721 */
2722 page_list = kmalloc(sizeof(unsigned long) * MAX_LCLA_ALLOC_ATTEMPTS,
2723 GFP_KERNEL);
2724
2725 if (!page_list) {
2726 ret = -ENOMEM;
2727 goto failure;
2728 }
2729
2730 /* Calculating how many pages that are required */
2731 base->lcla_pool.pages = SZ_1K * base->num_phy_chans / PAGE_SIZE;
2732
2733 for (i = 0; i < MAX_LCLA_ALLOC_ATTEMPTS; i++) {
2734 page_list[i] = __get_free_pages(GFP_KERNEL,
2735 base->lcla_pool.pages);
2736 if (!page_list[i]) {
2737
2738 dev_err(base->dev,
2739 "[%s] Failed to allocate %d pages.\n",
2740 __func__, base->lcla_pool.pages);
2741
2742 for (j = 0; j < i; j++)
2743 free_pages(page_list[j], base->lcla_pool.pages);
2744 goto failure;
2745 }
2746
2747 if ((virt_to_phys((void *)page_list[i]) &
2748 (LCLA_ALIGNMENT - 1)) == 0)
2749 break;
2750 }
2751
2752 for (j = 0; j < i; j++)
2753 free_pages(page_list[j], base->lcla_pool.pages);
2754
2755 if (i < MAX_LCLA_ALLOC_ATTEMPTS) {
2756 base->lcla_pool.base = (void *)page_list[i];
2757 } else {
Jonas Aaberg767a9672010-08-09 12:08:34 +00002758 /*
2759 * After many attempts and no succees with finding the correct
2760 * alignment, try with allocating a big buffer.
2761 */
Linus Walleij508849a2010-06-20 21:26:07 +00002762 dev_warn(base->dev,
2763 "[%s] Failed to get %d pages @ 18 bit align.\n",
2764 __func__, base->lcla_pool.pages);
2765 base->lcla_pool.base_unaligned = kmalloc(SZ_1K *
2766 base->num_phy_chans +
2767 LCLA_ALIGNMENT,
2768 GFP_KERNEL);
2769 if (!base->lcla_pool.base_unaligned) {
2770 ret = -ENOMEM;
2771 goto failure;
2772 }
2773
2774 base->lcla_pool.base = PTR_ALIGN(base->lcla_pool.base_unaligned,
2775 LCLA_ALIGNMENT);
2776 }
2777
2778 writel(virt_to_phys(base->lcla_pool.base),
2779 base->virtbase + D40_DREG_LCLA);
2780failure:
2781 kfree(page_list);
2782 return ret;
2783}
2784
Linus Walleij8d318a52010-03-30 15:33:42 +02002785static int __init d40_probe(struct platform_device *pdev)
2786{
2787 int err;
2788 int ret = -ENOENT;
2789 struct d40_base *base;
2790 struct resource *res = NULL;
2791 int num_reserved_chans;
2792 u32 val;
2793
2794 base = d40_hw_detect_init(pdev);
2795
2796 if (!base)
2797 goto failure;
2798
2799 num_reserved_chans = d40_phy_res_init(base);
2800
2801 platform_set_drvdata(pdev, base);
2802
2803 spin_lock_init(&base->interrupt_lock);
2804 spin_lock_init(&base->execmd_lock);
2805
2806 /* Get IO for logical channel parameter address */
2807 res = platform_get_resource_byname(pdev, IORESOURCE_MEM, "lcpa");
2808 if (!res) {
2809 ret = -ENOENT;
2810 dev_err(&pdev->dev,
2811 "[%s] No \"lcpa\" memory resource\n",
2812 __func__);
2813 goto failure;
2814 }
2815 base->lcpa_size = resource_size(res);
2816 base->phy_lcpa = res->start;
2817
2818 if (request_mem_region(res->start, resource_size(res),
2819 D40_NAME " I/O lcpa") == NULL) {
2820 ret = -EBUSY;
2821 dev_err(&pdev->dev,
2822 "[%s] Failed to request LCPA region 0x%x-0x%x\n",
2823 __func__, res->start, res->end);
2824 goto failure;
2825 }
2826
2827 /* We make use of ESRAM memory for this. */
2828 val = readl(base->virtbase + D40_DREG_LCPA);
2829 if (res->start != val && val != 0) {
2830 dev_warn(&pdev->dev,
2831 "[%s] Mismatch LCPA dma 0x%x, def 0x%x\n",
2832 __func__, val, res->start);
2833 } else
2834 writel(res->start, base->virtbase + D40_DREG_LCPA);
2835
2836 base->lcpa_base = ioremap(res->start, resource_size(res));
2837 if (!base->lcpa_base) {
2838 ret = -ENOMEM;
2839 dev_err(&pdev->dev,
2840 "[%s] Failed to ioremap LCPA region\n",
2841 __func__);
2842 goto failure;
2843 }
Linus Walleij508849a2010-06-20 21:26:07 +00002844
2845 ret = d40_lcla_allocate(base);
2846 if (ret) {
2847 dev_err(&pdev->dev, "[%s] Failed to allocate LCLA area\n",
Linus Walleij8d318a52010-03-30 15:33:42 +02002848 __func__);
2849 goto failure;
2850 }
2851
Linus Walleij8d318a52010-03-30 15:33:42 +02002852 spin_lock_init(&base->lcla_pool.lock);
2853
Linus Walleij8d318a52010-03-30 15:33:42 +02002854 base->irq = platform_get_irq(pdev, 0);
2855
2856 ret = request_irq(base->irq, d40_handle_interrupt, 0, D40_NAME, base);
2857
2858 if (ret) {
2859 dev_err(&pdev->dev, "[%s] No IRQ defined\n", __func__);
2860 goto failure;
2861 }
2862
2863 err = d40_dmaengine_init(base, num_reserved_chans);
2864 if (err)
2865 goto failure;
2866
2867 d40_hw_init(base);
2868
2869 dev_info(base->dev, "initialized\n");
2870 return 0;
2871
2872failure:
2873 if (base) {
Jonas Aabergc675b1b2010-06-20 21:25:08 +00002874 if (base->desc_slab)
2875 kmem_cache_destroy(base->desc_slab);
Linus Walleij8d318a52010-03-30 15:33:42 +02002876 if (base->virtbase)
2877 iounmap(base->virtbase);
Linus Walleij508849a2010-06-20 21:26:07 +00002878 if (!base->lcla_pool.base_unaligned && base->lcla_pool.base)
2879 free_pages((unsigned long)base->lcla_pool.base,
2880 base->lcla_pool.pages);
Jonas Aaberg767a9672010-08-09 12:08:34 +00002881
2882 kfree(base->lcla_pool.base_unaligned);
2883
Linus Walleij8d318a52010-03-30 15:33:42 +02002884 if (base->phy_lcpa)
2885 release_mem_region(base->phy_lcpa,
2886 base->lcpa_size);
2887 if (base->phy_start)
2888 release_mem_region(base->phy_start,
2889 base->phy_size);
2890 if (base->clk) {
2891 clk_disable(base->clk);
2892 clk_put(base->clk);
2893 }
2894
2895 kfree(base->lcla_pool.alloc_map);
2896 kfree(base->lookup_log_chans);
2897 kfree(base->lookup_phy_chans);
2898 kfree(base->phy_res);
2899 kfree(base);
2900 }
2901
2902 dev_err(&pdev->dev, "[%s] probe failed\n", __func__);
2903 return ret;
2904}
2905
2906static struct platform_driver d40_driver = {
2907 .driver = {
2908 .owner = THIS_MODULE,
2909 .name = D40_NAME,
2910 },
2911};
2912
2913int __init stedma40_init(void)
2914{
2915 return platform_driver_probe(&d40_driver, d40_probe);
2916}
2917arch_initcall(stedma40_init);