blob: ff21dcbd82081da02da2563bd3764cf613a09ffc [file] [log] [blame]
Linus Walleij8d318a52010-03-30 15:33:42 +02001/*
Per Forlind49278e2010-12-20 18:31:38 +01002 * Copyright (C) Ericsson AB 2007-2008
3 * Copyright (C) ST-Ericsson SA 2008-2010
Per Forlin661385f2010-10-06 09:05:28 +00004 * Author: Per Forlin <per.forlin@stericsson.com> for ST-Ericsson
Jonas Aaberg767a9672010-08-09 12:08:34 +00005 * Author: Jonas Aaberg <jonas.aberg@stericsson.com> for ST-Ericsson
Linus Walleij8d318a52010-03-30 15:33:42 +02006 * License terms: GNU General Public License (GPL) version 2
Linus Walleij8d318a52010-03-30 15:33:42 +02007 */
8
Alexey Dobriyanb7f080c2011-06-16 11:01:34 +00009#include <linux/dma-mapping.h>
Linus Walleij8d318a52010-03-30 15:33:42 +020010#include <linux/kernel.h>
11#include <linux/slab.h>
Paul Gortmakerf492b212011-07-31 16:17:36 -040012#include <linux/export.h>
Linus Walleij8d318a52010-03-30 15:33:42 +020013#include <linux/dmaengine.h>
14#include <linux/platform_device.h>
15#include <linux/clk.h>
16#include <linux/delay.h>
Narayanan G7fb3e752011-11-17 17:26:41 +053017#include <linux/pm.h>
18#include <linux/pm_runtime.h>
Jonas Aaberg698e4732010-08-09 12:08:56 +000019#include <linux/err.h>
Linus Walleijf4b89762011-06-27 11:33:46 +020020#include <linux/amba/bus.h>
Linus Walleij15e4b782012-04-12 18:12:43 +020021#include <linux/regulator/consumer.h>
Linus Walleij865fab62012-10-18 14:20:16 +020022#include <linux/platform_data/dma-ste-dma40.h>
Linus Walleij8d318a52010-03-30 15:33:42 +020023
Russell King - ARM Linuxd2ebfb32012-03-06 22:34:26 +000024#include "dmaengine.h"
Linus Walleij8d318a52010-03-30 15:33:42 +020025#include "ste_dma40_ll.h"
26
27#define D40_NAME "dma40"
28
29#define D40_PHY_CHAN -1
30
31/* For masking out/in 2 bit channel positions */
32#define D40_CHAN_POS(chan) (2 * (chan / 2))
33#define D40_CHAN_POS_MASK(chan) (0x3 << D40_CHAN_POS(chan))
34
35/* Maximum iterations taken before giving up suspending a channel */
36#define D40_SUSPEND_MAX_IT 500
37
Narayanan G7fb3e752011-11-17 17:26:41 +053038/* Milliseconds */
39#define DMA40_AUTOSUSPEND_DELAY 100
40
Linus Walleij508849a2010-06-20 21:26:07 +000041/* Hardware requirement on LCLA alignment */
42#define LCLA_ALIGNMENT 0x40000
Jonas Aaberg698e4732010-08-09 12:08:56 +000043
44/* Max number of links per event group */
45#define D40_LCLA_LINK_PER_EVENT_GRP 128
46#define D40_LCLA_END D40_LCLA_LINK_PER_EVENT_GRP
47
Linus Walleij508849a2010-06-20 21:26:07 +000048/* Attempts before giving up to trying to get pages that are aligned */
49#define MAX_LCLA_ALLOC_ATTEMPTS 256
50
51/* Bit markings for allocation map */
Linus Walleij8d318a52010-03-30 15:33:42 +020052#define D40_ALLOC_FREE (1 << 31)
53#define D40_ALLOC_PHY (1 << 30)
54#define D40_ALLOC_LOG_FREE 0
55
Tong Liu3cb645d2012-09-26 10:07:30 +000056#define MAX(a, b) (((a) < (b)) ? (b) : (a))
57
Linus Walleij8d318a52010-03-30 15:33:42 +020058/**
59 * enum 40_command - The different commands and/or statuses.
60 *
61 * @D40_DMA_STOP: DMA channel command STOP or status STOPPED,
62 * @D40_DMA_RUN: The DMA channel is RUNNING of the command RUN.
63 * @D40_DMA_SUSPEND_REQ: Request the DMA to SUSPEND as soon as possible.
64 * @D40_DMA_SUSPENDED: The DMA channel is SUSPENDED.
65 */
66enum d40_command {
67 D40_DMA_STOP = 0,
68 D40_DMA_RUN = 1,
69 D40_DMA_SUSPEND_REQ = 2,
70 D40_DMA_SUSPENDED = 3
71};
72
Narayanan G7fb3e752011-11-17 17:26:41 +053073/*
Narayanan G1bdae6f2012-02-09 12:41:37 +053074 * enum d40_events - The different Event Enables for the event lines.
75 *
76 * @D40_DEACTIVATE_EVENTLINE: De-activate Event line, stopping the logical chan.
77 * @D40_ACTIVATE_EVENTLINE: Activate the Event line, to start a logical chan.
78 * @D40_SUSPEND_REQ_EVENTLINE: Requesting for suspending a event line.
79 * @D40_ROUND_EVENTLINE: Status check for event line.
80 */
81
82enum d40_events {
83 D40_DEACTIVATE_EVENTLINE = 0,
84 D40_ACTIVATE_EVENTLINE = 1,
85 D40_SUSPEND_REQ_EVENTLINE = 2,
86 D40_ROUND_EVENTLINE = 3
87};
88
89/*
Narayanan G7fb3e752011-11-17 17:26:41 +053090 * These are the registers that has to be saved and later restored
91 * when the DMA hw is powered off.
92 * TODO: Add save/restore of D40_DREG_GCC on dma40 v3 or later, if that works.
93 */
94static u32 d40_backup_regs[] = {
95 D40_DREG_LCPA,
96 D40_DREG_LCLA,
97 D40_DREG_PRMSE,
98 D40_DREG_PRMSO,
99 D40_DREG_PRMOE,
100 D40_DREG_PRMOO,
101};
102
103#define BACKUP_REGS_SZ ARRAY_SIZE(d40_backup_regs)
104
Tong Liu3cb645d2012-09-26 10:07:30 +0000105/*
106 * since 9540 and 8540 has the same HW revision
107 * use v4a for 9540 or ealier
108 * use v4b for 8540 or later
109 * HW revision:
110 * DB8500ed has revision 0
111 * DB8500v1 has revision 2
112 * DB8500v2 has revision 3
113 * AP9540v1 has revision 4
114 * DB8540v1 has revision 4
115 * TODO: Check if all these registers have to be saved/restored on dma40 v4a
116 */
117static u32 d40_backup_regs_v4a[] = {
Narayanan G7fb3e752011-11-17 17:26:41 +0530118 D40_DREG_PSEG1,
119 D40_DREG_PSEG2,
120 D40_DREG_PSEG3,
121 D40_DREG_PSEG4,
122 D40_DREG_PCEG1,
123 D40_DREG_PCEG2,
124 D40_DREG_PCEG3,
125 D40_DREG_PCEG4,
126 D40_DREG_RSEG1,
127 D40_DREG_RSEG2,
128 D40_DREG_RSEG3,
129 D40_DREG_RSEG4,
130 D40_DREG_RCEG1,
131 D40_DREG_RCEG2,
132 D40_DREG_RCEG3,
133 D40_DREG_RCEG4,
134};
135
Tong Liu3cb645d2012-09-26 10:07:30 +0000136#define BACKUP_REGS_SZ_V4A ARRAY_SIZE(d40_backup_regs_v4a)
137
138static u32 d40_backup_regs_v4b[] = {
139 D40_DREG_CPSEG1,
140 D40_DREG_CPSEG2,
141 D40_DREG_CPSEG3,
142 D40_DREG_CPSEG4,
143 D40_DREG_CPSEG5,
144 D40_DREG_CPCEG1,
145 D40_DREG_CPCEG2,
146 D40_DREG_CPCEG3,
147 D40_DREG_CPCEG4,
148 D40_DREG_CPCEG5,
149 D40_DREG_CRSEG1,
150 D40_DREG_CRSEG2,
151 D40_DREG_CRSEG3,
152 D40_DREG_CRSEG4,
153 D40_DREG_CRSEG5,
154 D40_DREG_CRCEG1,
155 D40_DREG_CRCEG2,
156 D40_DREG_CRCEG3,
157 D40_DREG_CRCEG4,
158 D40_DREG_CRCEG5,
159};
160
161#define BACKUP_REGS_SZ_V4B ARRAY_SIZE(d40_backup_regs_v4b)
Narayanan G7fb3e752011-11-17 17:26:41 +0530162
163static u32 d40_backup_regs_chan[] = {
164 D40_CHAN_REG_SSCFG,
165 D40_CHAN_REG_SSELT,
166 D40_CHAN_REG_SSPTR,
167 D40_CHAN_REG_SSLNK,
168 D40_CHAN_REG_SDCFG,
169 D40_CHAN_REG_SDELT,
170 D40_CHAN_REG_SDPTR,
171 D40_CHAN_REG_SDLNK,
172};
173
Linus Walleij8d318a52010-03-30 15:33:42 +0200174/**
Tong Liu3cb645d2012-09-26 10:07:30 +0000175 * struct d40_interrupt_lookup - lookup table for interrupt handler
176 *
177 * @src: Interrupt mask register.
178 * @clr: Interrupt clear register.
179 * @is_error: true if this is an error interrupt.
180 * @offset: start delta in the lookup_log_chans in d40_base. If equals to
181 * D40_PHY_CHAN, the lookup_phy_chans shall be used instead.
182 */
183struct d40_interrupt_lookup {
184 u32 src;
185 u32 clr;
186 bool is_error;
187 int offset;
188};
189
190
191static struct d40_interrupt_lookup il_v4a[] = {
192 {D40_DREG_LCTIS0, D40_DREG_LCICR0, false, 0},
193 {D40_DREG_LCTIS1, D40_DREG_LCICR1, false, 32},
194 {D40_DREG_LCTIS2, D40_DREG_LCICR2, false, 64},
195 {D40_DREG_LCTIS3, D40_DREG_LCICR3, false, 96},
196 {D40_DREG_LCEIS0, D40_DREG_LCICR0, true, 0},
197 {D40_DREG_LCEIS1, D40_DREG_LCICR1, true, 32},
198 {D40_DREG_LCEIS2, D40_DREG_LCICR2, true, 64},
199 {D40_DREG_LCEIS3, D40_DREG_LCICR3, true, 96},
200 {D40_DREG_PCTIS, D40_DREG_PCICR, false, D40_PHY_CHAN},
201 {D40_DREG_PCEIS, D40_DREG_PCICR, true, D40_PHY_CHAN},
202};
203
204static struct d40_interrupt_lookup il_v4b[] = {
205 {D40_DREG_CLCTIS1, D40_DREG_CLCICR1, false, 0},
206 {D40_DREG_CLCTIS2, D40_DREG_CLCICR2, false, 32},
207 {D40_DREG_CLCTIS3, D40_DREG_CLCICR3, false, 64},
208 {D40_DREG_CLCTIS4, D40_DREG_CLCICR4, false, 96},
209 {D40_DREG_CLCTIS5, D40_DREG_CLCICR5, false, 128},
210 {D40_DREG_CLCEIS1, D40_DREG_CLCICR1, true, 0},
211 {D40_DREG_CLCEIS2, D40_DREG_CLCICR2, true, 32},
212 {D40_DREG_CLCEIS3, D40_DREG_CLCICR3, true, 64},
213 {D40_DREG_CLCEIS4, D40_DREG_CLCICR4, true, 96},
214 {D40_DREG_CLCEIS5, D40_DREG_CLCICR5, true, 128},
215 {D40_DREG_CPCTIS, D40_DREG_CPCICR, false, D40_PHY_CHAN},
216 {D40_DREG_CPCEIS, D40_DREG_CPCICR, true, D40_PHY_CHAN},
217};
218
219/**
220 * struct d40_reg_val - simple lookup struct
221 *
222 * @reg: The register.
223 * @val: The value that belongs to the register in reg.
224 */
225struct d40_reg_val {
226 unsigned int reg;
227 unsigned int val;
228};
229
230static __initdata struct d40_reg_val dma_init_reg_v4a[] = {
231 /* Clock every part of the DMA block from start */
232 { .reg = D40_DREG_GCC, .val = D40_DREG_GCC_ENABLE_ALL},
233
234 /* Interrupts on all logical channels */
235 { .reg = D40_DREG_LCMIS0, .val = 0xFFFFFFFF},
236 { .reg = D40_DREG_LCMIS1, .val = 0xFFFFFFFF},
237 { .reg = D40_DREG_LCMIS2, .val = 0xFFFFFFFF},
238 { .reg = D40_DREG_LCMIS3, .val = 0xFFFFFFFF},
239 { .reg = D40_DREG_LCICR0, .val = 0xFFFFFFFF},
240 { .reg = D40_DREG_LCICR1, .val = 0xFFFFFFFF},
241 { .reg = D40_DREG_LCICR2, .val = 0xFFFFFFFF},
242 { .reg = D40_DREG_LCICR3, .val = 0xFFFFFFFF},
243 { .reg = D40_DREG_LCTIS0, .val = 0xFFFFFFFF},
244 { .reg = D40_DREG_LCTIS1, .val = 0xFFFFFFFF},
245 { .reg = D40_DREG_LCTIS2, .val = 0xFFFFFFFF},
246 { .reg = D40_DREG_LCTIS3, .val = 0xFFFFFFFF}
247};
248static __initdata struct d40_reg_val dma_init_reg_v4b[] = {
249 /* Clock every part of the DMA block from start */
250 { .reg = D40_DREG_GCC, .val = D40_DREG_GCC_ENABLE_ALL},
251
252 /* Interrupts on all logical channels */
253 { .reg = D40_DREG_CLCMIS1, .val = 0xFFFFFFFF},
254 { .reg = D40_DREG_CLCMIS2, .val = 0xFFFFFFFF},
255 { .reg = D40_DREG_CLCMIS3, .val = 0xFFFFFFFF},
256 { .reg = D40_DREG_CLCMIS4, .val = 0xFFFFFFFF},
257 { .reg = D40_DREG_CLCMIS5, .val = 0xFFFFFFFF},
258 { .reg = D40_DREG_CLCICR1, .val = 0xFFFFFFFF},
259 { .reg = D40_DREG_CLCICR2, .val = 0xFFFFFFFF},
260 { .reg = D40_DREG_CLCICR3, .val = 0xFFFFFFFF},
261 { .reg = D40_DREG_CLCICR4, .val = 0xFFFFFFFF},
262 { .reg = D40_DREG_CLCICR5, .val = 0xFFFFFFFF},
263 { .reg = D40_DREG_CLCTIS1, .val = 0xFFFFFFFF},
264 { .reg = D40_DREG_CLCTIS2, .val = 0xFFFFFFFF},
265 { .reg = D40_DREG_CLCTIS3, .val = 0xFFFFFFFF},
266 { .reg = D40_DREG_CLCTIS4, .val = 0xFFFFFFFF},
267 { .reg = D40_DREG_CLCTIS5, .val = 0xFFFFFFFF}
268};
269
270/**
Linus Walleij8d318a52010-03-30 15:33:42 +0200271 * struct d40_lli_pool - Structure for keeping LLIs in memory
272 *
273 * @base: Pointer to memory area when the pre_alloc_lli's are not large
274 * enough, IE bigger than the most common case, 1 dst and 1 src. NULL if
275 * pre_alloc_lli is used.
Rabin Vincentb00f9382011-01-25 11:18:15 +0100276 * @dma_addr: DMA address, if mapped
Linus Walleij8d318a52010-03-30 15:33:42 +0200277 * @size: The size in bytes of the memory at base or the size of pre_alloc_lli.
278 * @pre_alloc_lli: Pre allocated area for the most common case of transfers,
279 * one buffer to one buffer.
280 */
281struct d40_lli_pool {
282 void *base;
Linus Walleij508849a2010-06-20 21:26:07 +0000283 int size;
Rabin Vincentb00f9382011-01-25 11:18:15 +0100284 dma_addr_t dma_addr;
Linus Walleij8d318a52010-03-30 15:33:42 +0200285 /* Space for dst and src, plus an extra for padding */
Linus Walleij508849a2010-06-20 21:26:07 +0000286 u8 pre_alloc_lli[3 * sizeof(struct d40_phy_lli)];
Linus Walleij8d318a52010-03-30 15:33:42 +0200287};
288
289/**
290 * struct d40_desc - A descriptor is one DMA job.
291 *
292 * @lli_phy: LLI settings for physical channel. Both src and dst=
293 * points into the lli_pool, to base if lli_len > 1 or to pre_alloc_lli if
294 * lli_len equals one.
295 * @lli_log: Same as above but for logical channels.
296 * @lli_pool: The pool with two entries pre-allocated.
Per Friden941b77a2010-06-20 21:24:45 +0000297 * @lli_len: Number of llis of current descriptor.
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300298 * @lli_current: Number of transferred llis.
Jonas Aaberg698e4732010-08-09 12:08:56 +0000299 * @lcla_alloc: Number of LCLA entries allocated.
Linus Walleij8d318a52010-03-30 15:33:42 +0200300 * @txd: DMA engine struct. Used for among other things for communication
301 * during a transfer.
302 * @node: List entry.
Linus Walleij8d318a52010-03-30 15:33:42 +0200303 * @is_in_client_list: true if the client owns this descriptor.
Narayanan G7fb3e752011-11-17 17:26:41 +0530304 * @cyclic: true if this is a cyclic job
Linus Walleij8d318a52010-03-30 15:33:42 +0200305 *
306 * This descriptor is used for both logical and physical transfers.
307 */
Linus Walleij8d318a52010-03-30 15:33:42 +0200308struct d40_desc {
309 /* LLI physical */
310 struct d40_phy_lli_bidir lli_phy;
311 /* LLI logical */
312 struct d40_log_lli_bidir lli_log;
313
314 struct d40_lli_pool lli_pool;
Per Friden941b77a2010-06-20 21:24:45 +0000315 int lli_len;
Jonas Aaberg698e4732010-08-09 12:08:56 +0000316 int lli_current;
317 int lcla_alloc;
Linus Walleij8d318a52010-03-30 15:33:42 +0200318
319 struct dma_async_tx_descriptor txd;
320 struct list_head node;
321
Linus Walleij8d318a52010-03-30 15:33:42 +0200322 bool is_in_client_list;
Rabin Vincent0c842b52011-01-25 11:18:35 +0100323 bool cyclic;
Linus Walleij8d318a52010-03-30 15:33:42 +0200324};
325
326/**
327 * struct d40_lcla_pool - LCLA pool settings and data.
328 *
Linus Walleij508849a2010-06-20 21:26:07 +0000329 * @base: The virtual address of LCLA. 18 bit aligned.
330 * @base_unaligned: The orignal kmalloc pointer, if kmalloc is used.
331 * This pointer is only there for clean-up on error.
332 * @pages: The number of pages needed for all physical channels.
333 * Only used later for clean-up on error
Linus Walleij8d318a52010-03-30 15:33:42 +0200334 * @lock: Lock to protect the content in this struct.
Jonas Aaberg698e4732010-08-09 12:08:56 +0000335 * @alloc_map: big map over which LCLA entry is own by which job.
Linus Walleij8d318a52010-03-30 15:33:42 +0200336 */
337struct d40_lcla_pool {
338 void *base;
Rabin Vincent026cbc42011-01-25 11:18:14 +0100339 dma_addr_t dma_addr;
Linus Walleij508849a2010-06-20 21:26:07 +0000340 void *base_unaligned;
341 int pages;
Linus Walleij8d318a52010-03-30 15:33:42 +0200342 spinlock_t lock;
Jonas Aaberg698e4732010-08-09 12:08:56 +0000343 struct d40_desc **alloc_map;
Linus Walleij8d318a52010-03-30 15:33:42 +0200344};
345
346/**
347 * struct d40_phy_res - struct for handling eventlines mapped to physical
348 * channels.
349 *
350 * @lock: A lock protection this entity.
Narayanan G7fb3e752011-11-17 17:26:41 +0530351 * @reserved: True if used by secure world or otherwise.
Linus Walleij8d318a52010-03-30 15:33:42 +0200352 * @num: The physical channel number of this entity.
353 * @allocated_src: Bit mapped to show which src event line's are mapped to
354 * this physical channel. Can also be free or physically allocated.
355 * @allocated_dst: Same as for src but is dst.
356 * allocated_dst and allocated_src uses the D40_ALLOC* defines as well as
Jonas Aaberg767a9672010-08-09 12:08:34 +0000357 * event line number.
Linus Walleij8d318a52010-03-30 15:33:42 +0200358 */
359struct d40_phy_res {
360 spinlock_t lock;
Narayanan G7fb3e752011-11-17 17:26:41 +0530361 bool reserved;
Linus Walleij8d318a52010-03-30 15:33:42 +0200362 int num;
363 u32 allocated_src;
364 u32 allocated_dst;
365};
366
367struct d40_base;
368
369/**
370 * struct d40_chan - Struct that describes a channel.
371 *
372 * @lock: A spinlock to protect this struct.
373 * @log_num: The logical number, if any of this channel.
Linus Walleij8d318a52010-03-30 15:33:42 +0200374 * @pending_tx: The number of pending transfers. Used between interrupt handler
375 * and tasklet.
376 * @busy: Set to true when transfer is ongoing on this channel.
Jonas Aaberg2a614342010-06-20 21:25:24 +0000377 * @phy_chan: Pointer to physical channel which this instance runs on. If this
378 * point is NULL, then the channel is not allocated.
Linus Walleij8d318a52010-03-30 15:33:42 +0200379 * @chan: DMA engine handle.
380 * @tasklet: Tasklet that gets scheduled from interrupt context to complete a
381 * transfer and call client callback.
382 * @client: Cliented owned descriptor list.
Per Forlinda063d22011-08-29 13:33:32 +0200383 * @pending_queue: Submitted jobs, to be issued by issue_pending()
Linus Walleij8d318a52010-03-30 15:33:42 +0200384 * @active: Active descriptor.
Fabio Baltieri4226dd82012-12-13 13:46:16 +0100385 * @done: Completed jobs
Linus Walleij8d318a52010-03-30 15:33:42 +0200386 * @queue: Queued jobs.
Per Forlin82babbb362011-08-29 13:33:35 +0200387 * @prepare_queue: Prepared jobs.
Linus Walleij8d318a52010-03-30 15:33:42 +0200388 * @dma_cfg: The client configuration of this dma channel.
Rabin Vincentce2ca122010-10-12 13:00:49 +0000389 * @configured: whether the dma_cfg configuration is valid
Linus Walleij8d318a52010-03-30 15:33:42 +0200390 * @base: Pointer to the device instance struct.
391 * @src_def_cfg: Default cfg register setting for src.
392 * @dst_def_cfg: Default cfg register setting for dst.
393 * @log_def: Default logical channel settings.
Linus Walleij8d318a52010-03-30 15:33:42 +0200394 * @lcpa: Pointer to dst and src lcpa settings.
om prakashae752bf2011-06-27 11:33:31 +0200395 * @runtime_addr: runtime configured address.
396 * @runtime_direction: runtime configured direction.
Linus Walleij8d318a52010-03-30 15:33:42 +0200397 *
398 * This struct can either "be" a logical or a physical channel.
399 */
400struct d40_chan {
401 spinlock_t lock;
402 int log_num;
Linus Walleij8d318a52010-03-30 15:33:42 +0200403 int pending_tx;
404 bool busy;
405 struct d40_phy_res *phy_chan;
406 struct dma_chan chan;
407 struct tasklet_struct tasklet;
408 struct list_head client;
Per Forlina8f30672011-06-26 23:29:52 +0200409 struct list_head pending_queue;
Linus Walleij8d318a52010-03-30 15:33:42 +0200410 struct list_head active;
Fabio Baltieri4226dd82012-12-13 13:46:16 +0100411 struct list_head done;
Linus Walleij8d318a52010-03-30 15:33:42 +0200412 struct list_head queue;
Per Forlin82babbb362011-08-29 13:33:35 +0200413 struct list_head prepare_queue;
Linus Walleij8d318a52010-03-30 15:33:42 +0200414 struct stedma40_chan_cfg dma_cfg;
Rabin Vincentce2ca122010-10-12 13:00:49 +0000415 bool configured;
Linus Walleij8d318a52010-03-30 15:33:42 +0200416 struct d40_base *base;
417 /* Default register configurations */
418 u32 src_def_cfg;
419 u32 dst_def_cfg;
420 struct d40_def_lcsp log_def;
Linus Walleij8d318a52010-03-30 15:33:42 +0200421 struct d40_log_lli_full *lcpa;
Linus Walleij95e14002010-08-04 13:37:45 +0200422 /* Runtime reconfiguration */
423 dma_addr_t runtime_addr;
Vinod Kouldb8196d2011-10-13 22:34:23 +0530424 enum dma_transfer_direction runtime_direction;
Linus Walleij8d318a52010-03-30 15:33:42 +0200425};
426
427/**
Tong Liu3cb645d2012-09-26 10:07:30 +0000428 * struct d40_gen_dmac - generic values to represent u8500/u8540 DMA
429 * controller
430 *
431 * @backup: the pointer to the registers address array for backup
432 * @backup_size: the size of the registers address array for backup
433 * @realtime_en: the realtime enable register
434 * @realtime_clear: the realtime clear register
435 * @high_prio_en: the high priority enable register
436 * @high_prio_clear: the high priority clear register
437 * @interrupt_en: the interrupt enable register
438 * @interrupt_clear: the interrupt clear register
439 * @il: the pointer to struct d40_interrupt_lookup
440 * @il_size: the size of d40_interrupt_lookup array
441 * @init_reg: the pointer to the struct d40_reg_val
442 * @init_reg_size: the size of d40_reg_val array
443 */
444struct d40_gen_dmac {
445 u32 *backup;
446 u32 backup_size;
447 u32 realtime_en;
448 u32 realtime_clear;
449 u32 high_prio_en;
450 u32 high_prio_clear;
451 u32 interrupt_en;
452 u32 interrupt_clear;
453 struct d40_interrupt_lookup *il;
454 u32 il_size;
455 struct d40_reg_val *init_reg;
456 u32 init_reg_size;
457};
458
459/**
Linus Walleij8d318a52010-03-30 15:33:42 +0200460 * struct d40_base - The big global struct, one for each probe'd instance.
461 *
462 * @interrupt_lock: Lock used to make sure one interrupt is handle a time.
463 * @execmd_lock: Lock for execute command usage since several channels share
464 * the same physical register.
465 * @dev: The device structure.
466 * @virtbase: The virtual base address of the DMA's register.
Linus Walleijf4185592010-06-22 18:06:42 -0700467 * @rev: silicon revision detected.
Linus Walleij8d318a52010-03-30 15:33:42 +0200468 * @clk: Pointer to the DMA clock structure.
469 * @phy_start: Physical memory start of the DMA registers.
470 * @phy_size: Size of the DMA register map.
471 * @irq: The IRQ number.
472 * @num_phy_chans: The number of physical channels. Read from HW. This
473 * is the number of available channels for this driver, not counting "Secure
474 * mode" allocated physical channels.
475 * @num_log_chans: The number of logical channels. Calculated from
476 * num_phy_chans.
477 * @dma_both: dma_device channels that can do both memcpy and slave transfers.
478 * @dma_slave: dma_device channels that can do only do slave transfers.
479 * @dma_memcpy: dma_device channels that can do only do memcpy transfers.
Narayanan G7fb3e752011-11-17 17:26:41 +0530480 * @phy_chans: Room for all possible physical channels in system.
Linus Walleij8d318a52010-03-30 15:33:42 +0200481 * @log_chans: Room for all possible logical channels in system.
482 * @lookup_log_chans: Used to map interrupt number to logical channel. Points
483 * to log_chans entries.
484 * @lookup_phy_chans: Used to map interrupt number to physical channel. Points
485 * to phy_chans entries.
486 * @plat_data: Pointer to provided platform_data which is the driver
487 * configuration.
Narayanan G28c7a192011-11-22 13:56:55 +0530488 * @lcpa_regulator: Pointer to hold the regulator for the esram bank for lcla.
Linus Walleij8d318a52010-03-30 15:33:42 +0200489 * @phy_res: Vector containing all physical channels.
490 * @lcla_pool: lcla pool settings and data.
491 * @lcpa_base: The virtual mapped address of LCPA.
492 * @phy_lcpa: The physical address of the LCPA.
493 * @lcpa_size: The size of the LCPA area.
Jonas Aabergc675b1b2010-06-20 21:25:08 +0000494 * @desc_slab: cache for descriptors.
Narayanan G7fb3e752011-11-17 17:26:41 +0530495 * @reg_val_backup: Here the values of some hardware registers are stored
496 * before the DMA is powered off. They are restored when the power is back on.
Tong Liu3cb645d2012-09-26 10:07:30 +0000497 * @reg_val_backup_v4: Backup of registers that only exits on dma40 v3 and
498 * later
Narayanan G7fb3e752011-11-17 17:26:41 +0530499 * @reg_val_backup_chan: Backup data for standard channel parameter registers.
500 * @gcc_pwr_off_mask: Mask to maintain the channels that can be turned off.
501 * @initialized: true if the dma has been initialized
Tong Liu3cb645d2012-09-26 10:07:30 +0000502 * @gen_dmac: the struct for generic registers values to represent u8500/8540
503 * DMA controller
Linus Walleij8d318a52010-03-30 15:33:42 +0200504 */
505struct d40_base {
506 spinlock_t interrupt_lock;
507 spinlock_t execmd_lock;
508 struct device *dev;
509 void __iomem *virtbase;
Linus Walleijf4185592010-06-22 18:06:42 -0700510 u8 rev:4;
Linus Walleij8d318a52010-03-30 15:33:42 +0200511 struct clk *clk;
512 phys_addr_t phy_start;
513 resource_size_t phy_size;
514 int irq;
515 int num_phy_chans;
516 int num_log_chans;
Per Forlinb96710e2011-10-18 18:39:47 +0200517 struct device_dma_parameters dma_parms;
Linus Walleij8d318a52010-03-30 15:33:42 +0200518 struct dma_device dma_both;
519 struct dma_device dma_slave;
520 struct dma_device dma_memcpy;
521 struct d40_chan *phy_chans;
522 struct d40_chan *log_chans;
523 struct d40_chan **lookup_log_chans;
524 struct d40_chan **lookup_phy_chans;
525 struct stedma40_platform_data *plat_data;
Narayanan G28c7a192011-11-22 13:56:55 +0530526 struct regulator *lcpa_regulator;
Linus Walleij8d318a52010-03-30 15:33:42 +0200527 /* Physical half channels */
528 struct d40_phy_res *phy_res;
529 struct d40_lcla_pool lcla_pool;
530 void *lcpa_base;
531 dma_addr_t phy_lcpa;
532 resource_size_t lcpa_size;
Jonas Aabergc675b1b2010-06-20 21:25:08 +0000533 struct kmem_cache *desc_slab;
Narayanan G7fb3e752011-11-17 17:26:41 +0530534 u32 reg_val_backup[BACKUP_REGS_SZ];
Tong Liu3cb645d2012-09-26 10:07:30 +0000535 u32 reg_val_backup_v4[MAX(BACKUP_REGS_SZ_V4A, BACKUP_REGS_SZ_V4B)];
Narayanan G7fb3e752011-11-17 17:26:41 +0530536 u32 *reg_val_backup_chan;
537 u16 gcc_pwr_off_mask;
538 bool initialized;
Tong Liu3cb645d2012-09-26 10:07:30 +0000539 struct d40_gen_dmac gen_dmac;
Linus Walleij8d318a52010-03-30 15:33:42 +0200540};
541
Rabin Vincent262d2912011-01-25 11:18:05 +0100542static struct device *chan2dev(struct d40_chan *d40c)
543{
544 return &d40c->chan.dev->device;
545}
546
Rabin Vincent724a8572011-01-25 11:18:08 +0100547static bool chan_is_physical(struct d40_chan *chan)
548{
549 return chan->log_num == D40_PHY_CHAN;
550}
551
552static bool chan_is_logical(struct d40_chan *chan)
553{
554 return !chan_is_physical(chan);
555}
556
Rabin Vincent8ca84682011-01-25 11:18:07 +0100557static void __iomem *chan_base(struct d40_chan *chan)
558{
559 return chan->base->virtbase + D40_DREG_PCBASE +
560 chan->phy_chan->num * D40_DREG_PCDELTA;
561}
562
Rabin Vincent6db5a8b2011-01-25 11:18:09 +0100563#define d40_err(dev, format, arg...) \
564 dev_err(dev, "[%s] " format, __func__, ## arg)
565
566#define chan_err(d40c, format, arg...) \
567 d40_err(chan2dev(d40c), format, ## arg)
568
Rabin Vincentb00f9382011-01-25 11:18:15 +0100569static int d40_pool_lli_alloc(struct d40_chan *d40c, struct d40_desc *d40d,
Rabin Vincentdbd88782011-01-25 11:18:19 +0100570 int lli_len)
Linus Walleij8d318a52010-03-30 15:33:42 +0200571{
Rabin Vincentdbd88782011-01-25 11:18:19 +0100572 bool is_log = chan_is_logical(d40c);
Linus Walleij8d318a52010-03-30 15:33:42 +0200573 u32 align;
574 void *base;
575
576 if (is_log)
577 align = sizeof(struct d40_log_lli);
578 else
579 align = sizeof(struct d40_phy_lli);
580
581 if (lli_len == 1) {
582 base = d40d->lli_pool.pre_alloc_lli;
583 d40d->lli_pool.size = sizeof(d40d->lli_pool.pre_alloc_lli);
584 d40d->lli_pool.base = NULL;
585 } else {
Rabin Vincent594ece42011-01-25 11:18:12 +0100586 d40d->lli_pool.size = lli_len * 2 * align;
Linus Walleij8d318a52010-03-30 15:33:42 +0200587
588 base = kmalloc(d40d->lli_pool.size + align, GFP_NOWAIT);
589 d40d->lli_pool.base = base;
590
591 if (d40d->lli_pool.base == NULL)
592 return -ENOMEM;
593 }
594
595 if (is_log) {
Rabin Vincentd924aba2011-01-25 11:18:16 +0100596 d40d->lli_log.src = PTR_ALIGN(base, align);
Rabin Vincent594ece42011-01-25 11:18:12 +0100597 d40d->lli_log.dst = d40d->lli_log.src + lli_len;
Rabin Vincentb00f9382011-01-25 11:18:15 +0100598
599 d40d->lli_pool.dma_addr = 0;
Linus Walleij8d318a52010-03-30 15:33:42 +0200600 } else {
Rabin Vincentd924aba2011-01-25 11:18:16 +0100601 d40d->lli_phy.src = PTR_ALIGN(base, align);
Rabin Vincent594ece42011-01-25 11:18:12 +0100602 d40d->lli_phy.dst = d40d->lli_phy.src + lli_len;
Rabin Vincentb00f9382011-01-25 11:18:15 +0100603
604 d40d->lli_pool.dma_addr = dma_map_single(d40c->base->dev,
605 d40d->lli_phy.src,
606 d40d->lli_pool.size,
607 DMA_TO_DEVICE);
608
609 if (dma_mapping_error(d40c->base->dev,
610 d40d->lli_pool.dma_addr)) {
611 kfree(d40d->lli_pool.base);
612 d40d->lli_pool.base = NULL;
613 d40d->lli_pool.dma_addr = 0;
614 return -ENOMEM;
615 }
Linus Walleij8d318a52010-03-30 15:33:42 +0200616 }
617
618 return 0;
619}
620
Rabin Vincentb00f9382011-01-25 11:18:15 +0100621static void d40_pool_lli_free(struct d40_chan *d40c, struct d40_desc *d40d)
Linus Walleij8d318a52010-03-30 15:33:42 +0200622{
Rabin Vincentb00f9382011-01-25 11:18:15 +0100623 if (d40d->lli_pool.dma_addr)
624 dma_unmap_single(d40c->base->dev, d40d->lli_pool.dma_addr,
625 d40d->lli_pool.size, DMA_TO_DEVICE);
626
Linus Walleij8d318a52010-03-30 15:33:42 +0200627 kfree(d40d->lli_pool.base);
628 d40d->lli_pool.base = NULL;
629 d40d->lli_pool.size = 0;
630 d40d->lli_log.src = NULL;
631 d40d->lli_log.dst = NULL;
632 d40d->lli_phy.src = NULL;
633 d40d->lli_phy.dst = NULL;
Linus Walleij8d318a52010-03-30 15:33:42 +0200634}
635
Jonas Aaberg698e4732010-08-09 12:08:56 +0000636static int d40_lcla_alloc_one(struct d40_chan *d40c,
637 struct d40_desc *d40d)
638{
639 unsigned long flags;
640 int i;
641 int ret = -EINVAL;
642 int p;
643
644 spin_lock_irqsave(&d40c->base->lcla_pool.lock, flags);
645
646 p = d40c->phy_chan->num * D40_LCLA_LINK_PER_EVENT_GRP;
647
648 /*
649 * Allocate both src and dst at the same time, therefore the half
650 * start on 1 since 0 can't be used since zero is used as end marker.
651 */
652 for (i = 1 ; i < D40_LCLA_LINK_PER_EVENT_GRP / 2; i++) {
653 if (!d40c->base->lcla_pool.alloc_map[p + i]) {
654 d40c->base->lcla_pool.alloc_map[p + i] = d40d;
655 d40d->lcla_alloc++;
656 ret = i;
657 break;
658 }
659 }
660
661 spin_unlock_irqrestore(&d40c->base->lcla_pool.lock, flags);
662
663 return ret;
664}
665
666static int d40_lcla_free_all(struct d40_chan *d40c,
667 struct d40_desc *d40d)
668{
669 unsigned long flags;
670 int i;
671 int ret = -EINVAL;
672
Rabin Vincent724a8572011-01-25 11:18:08 +0100673 if (chan_is_physical(d40c))
Jonas Aaberg698e4732010-08-09 12:08:56 +0000674 return 0;
675
676 spin_lock_irqsave(&d40c->base->lcla_pool.lock, flags);
677
678 for (i = 1 ; i < D40_LCLA_LINK_PER_EVENT_GRP / 2; i++) {
679 if (d40c->base->lcla_pool.alloc_map[d40c->phy_chan->num *
680 D40_LCLA_LINK_PER_EVENT_GRP + i] == d40d) {
681 d40c->base->lcla_pool.alloc_map[d40c->phy_chan->num *
682 D40_LCLA_LINK_PER_EVENT_GRP + i] = NULL;
683 d40d->lcla_alloc--;
684 if (d40d->lcla_alloc == 0) {
685 ret = 0;
686 break;
687 }
688 }
689 }
690
691 spin_unlock_irqrestore(&d40c->base->lcla_pool.lock, flags);
692
693 return ret;
694
695}
696
Linus Walleij8d318a52010-03-30 15:33:42 +0200697static void d40_desc_remove(struct d40_desc *d40d)
698{
699 list_del(&d40d->node);
700}
701
702static struct d40_desc *d40_desc_get(struct d40_chan *d40c)
703{
Rabin Vincenta2c15fa2010-10-06 08:20:37 +0000704 struct d40_desc *desc = NULL;
Linus Walleij8d318a52010-03-30 15:33:42 +0200705
706 if (!list_empty(&d40c->client)) {
Rabin Vincenta2c15fa2010-10-06 08:20:37 +0000707 struct d40_desc *d;
708 struct d40_desc *_d;
709
Narayanan G7fb3e752011-11-17 17:26:41 +0530710 list_for_each_entry_safe(d, _d, &d40c->client, node) {
Linus Walleij8d318a52010-03-30 15:33:42 +0200711 if (async_tx_test_ack(&d->txd)) {
Linus Walleij8d318a52010-03-30 15:33:42 +0200712 d40_desc_remove(d);
Rabin Vincenta2c15fa2010-10-06 08:20:37 +0000713 desc = d;
714 memset(desc, 0, sizeof(*desc));
Jonas Aabergc675b1b2010-06-20 21:25:08 +0000715 break;
Linus Walleij8d318a52010-03-30 15:33:42 +0200716 }
Narayanan G7fb3e752011-11-17 17:26:41 +0530717 }
Linus Walleij8d318a52010-03-30 15:33:42 +0200718 }
Rabin Vincenta2c15fa2010-10-06 08:20:37 +0000719
720 if (!desc)
721 desc = kmem_cache_zalloc(d40c->base->desc_slab, GFP_NOWAIT);
722
723 if (desc)
724 INIT_LIST_HEAD(&desc->node);
725
726 return desc;
Linus Walleij8d318a52010-03-30 15:33:42 +0200727}
728
729static void d40_desc_free(struct d40_chan *d40c, struct d40_desc *d40d)
730{
Jonas Aaberg698e4732010-08-09 12:08:56 +0000731
Rabin Vincentb00f9382011-01-25 11:18:15 +0100732 d40_pool_lli_free(d40c, d40d);
Jonas Aaberg698e4732010-08-09 12:08:56 +0000733 d40_lcla_free_all(d40c, d40d);
Jonas Aabergc675b1b2010-06-20 21:25:08 +0000734 kmem_cache_free(d40c->base->desc_slab, d40d);
Linus Walleij8d318a52010-03-30 15:33:42 +0200735}
736
737static void d40_desc_submit(struct d40_chan *d40c, struct d40_desc *desc)
738{
739 list_add_tail(&desc->node, &d40c->active);
740}
741
Rabin Vincent1c4b0922011-01-25 11:18:24 +0100742static void d40_phy_lli_load(struct d40_chan *chan, struct d40_desc *desc)
743{
744 struct d40_phy_lli *lli_dst = desc->lli_phy.dst;
745 struct d40_phy_lli *lli_src = desc->lli_phy.src;
746 void __iomem *base = chan_base(chan);
747
748 writel(lli_src->reg_cfg, base + D40_CHAN_REG_SSCFG);
749 writel(lli_src->reg_elt, base + D40_CHAN_REG_SSELT);
750 writel(lli_src->reg_ptr, base + D40_CHAN_REG_SSPTR);
751 writel(lli_src->reg_lnk, base + D40_CHAN_REG_SSLNK);
752
753 writel(lli_dst->reg_cfg, base + D40_CHAN_REG_SDCFG);
754 writel(lli_dst->reg_elt, base + D40_CHAN_REG_SDELT);
755 writel(lli_dst->reg_ptr, base + D40_CHAN_REG_SDPTR);
756 writel(lli_dst->reg_lnk, base + D40_CHAN_REG_SDLNK);
757}
758
Fabio Baltieri4226dd82012-12-13 13:46:16 +0100759static void d40_desc_done(struct d40_chan *d40c, struct d40_desc *desc)
760{
761 list_add_tail(&desc->node, &d40c->done);
762}
763
Rabin Vincente65889c2011-01-25 11:18:31 +0100764static void d40_log_lli_to_lcxa(struct d40_chan *chan, struct d40_desc *desc)
765{
766 struct d40_lcla_pool *pool = &chan->base->lcla_pool;
767 struct d40_log_lli_bidir *lli = &desc->lli_log;
768 int lli_current = desc->lli_current;
769 int lli_len = desc->lli_len;
Rabin Vincent0c842b52011-01-25 11:18:35 +0100770 bool cyclic = desc->cyclic;
Rabin Vincente65889c2011-01-25 11:18:31 +0100771 int curr_lcla = -EINVAL;
Rabin Vincent0c842b52011-01-25 11:18:35 +0100772 int first_lcla = 0;
Narayanan G28c7a192011-11-22 13:56:55 +0530773 bool use_esram_lcla = chan->base->plat_data->use_esram_lcla;
Rabin Vincent0c842b52011-01-25 11:18:35 +0100774 bool linkback;
Rabin Vincente65889c2011-01-25 11:18:31 +0100775
Rabin Vincent0c842b52011-01-25 11:18:35 +0100776 /*
777 * We may have partially running cyclic transfers, in case we did't get
778 * enough LCLA entries.
779 */
780 linkback = cyclic && lli_current == 0;
781
782 /*
783 * For linkback, we need one LCLA even with only one link, because we
784 * can't link back to the one in LCPA space
785 */
786 if (linkback || (lli_len - lli_current > 1)) {
Rabin Vincente65889c2011-01-25 11:18:31 +0100787 curr_lcla = d40_lcla_alloc_one(chan, desc);
Rabin Vincent0c842b52011-01-25 11:18:35 +0100788 first_lcla = curr_lcla;
789 }
Rabin Vincente65889c2011-01-25 11:18:31 +0100790
Rabin Vincent0c842b52011-01-25 11:18:35 +0100791 /*
792 * For linkback, we normally load the LCPA in the loop since we need to
793 * link it to the second LCLA and not the first. However, if we
794 * couldn't even get a first LCLA, then we have to run in LCPA and
795 * reload manually.
796 */
797 if (!linkback || curr_lcla == -EINVAL) {
798 unsigned int flags = 0;
Rabin Vincente65889c2011-01-25 11:18:31 +0100799
Rabin Vincent0c842b52011-01-25 11:18:35 +0100800 if (curr_lcla == -EINVAL)
801 flags |= LLI_TERM_INT;
802
803 d40_log_lli_lcpa_write(chan->lcpa,
804 &lli->dst[lli_current],
805 &lli->src[lli_current],
806 curr_lcla,
807 flags);
808 lli_current++;
809 }
Rabin Vincent6045f0b2011-01-25 11:18:32 +0100810
811 if (curr_lcla < 0)
812 goto out;
813
Rabin Vincente65889c2011-01-25 11:18:31 +0100814 for (; lli_current < lli_len; lli_current++) {
815 unsigned int lcla_offset = chan->phy_chan->num * 1024 +
816 8 * curr_lcla * 2;
817 struct d40_log_lli *lcla = pool->base + lcla_offset;
Rabin Vincent0c842b52011-01-25 11:18:35 +0100818 unsigned int flags = 0;
Rabin Vincente65889c2011-01-25 11:18:31 +0100819 int next_lcla;
820
821 if (lli_current + 1 < lli_len)
822 next_lcla = d40_lcla_alloc_one(chan, desc);
823 else
Rabin Vincent0c842b52011-01-25 11:18:35 +0100824 next_lcla = linkback ? first_lcla : -EINVAL;
Rabin Vincente65889c2011-01-25 11:18:31 +0100825
Rabin Vincent0c842b52011-01-25 11:18:35 +0100826 if (cyclic || next_lcla == -EINVAL)
827 flags |= LLI_TERM_INT;
828
829 if (linkback && curr_lcla == first_lcla) {
830 /* First link goes in both LCPA and LCLA */
831 d40_log_lli_lcpa_write(chan->lcpa,
832 &lli->dst[lli_current],
833 &lli->src[lli_current],
834 next_lcla, flags);
835 }
836
837 /*
838 * One unused LCLA in the cyclic case if the very first
839 * next_lcla fails...
840 */
Rabin Vincente65889c2011-01-25 11:18:31 +0100841 d40_log_lli_lcla_write(lcla,
842 &lli->dst[lli_current],
843 &lli->src[lli_current],
Rabin Vincent0c842b52011-01-25 11:18:35 +0100844 next_lcla, flags);
Rabin Vincente65889c2011-01-25 11:18:31 +0100845
Narayanan G28c7a192011-11-22 13:56:55 +0530846 /*
847 * Cache maintenance is not needed if lcla is
848 * mapped in esram
849 */
850 if (!use_esram_lcla) {
851 dma_sync_single_range_for_device(chan->base->dev,
852 pool->dma_addr, lcla_offset,
853 2 * sizeof(struct d40_log_lli),
854 DMA_TO_DEVICE);
855 }
Rabin Vincente65889c2011-01-25 11:18:31 +0100856 curr_lcla = next_lcla;
857
Rabin Vincent0c842b52011-01-25 11:18:35 +0100858 if (curr_lcla == -EINVAL || curr_lcla == first_lcla) {
Rabin Vincente65889c2011-01-25 11:18:31 +0100859 lli_current++;
860 break;
861 }
862 }
863
Rabin Vincent6045f0b2011-01-25 11:18:32 +0100864out:
Rabin Vincente65889c2011-01-25 11:18:31 +0100865 desc->lli_current = lli_current;
866}
867
Jonas Aaberg698e4732010-08-09 12:08:56 +0000868static void d40_desc_load(struct d40_chan *d40c, struct d40_desc *d40d)
869{
Rabin Vincent724a8572011-01-25 11:18:08 +0100870 if (chan_is_physical(d40c)) {
Rabin Vincent1c4b0922011-01-25 11:18:24 +0100871 d40_phy_lli_load(d40c, d40d);
Jonas Aaberg698e4732010-08-09 12:08:56 +0000872 d40d->lli_current = d40d->lli_len;
Rabin Vincente65889c2011-01-25 11:18:31 +0100873 } else
874 d40_log_lli_to_lcxa(d40c, d40d);
Jonas Aaberg698e4732010-08-09 12:08:56 +0000875}
876
Linus Walleij8d318a52010-03-30 15:33:42 +0200877static struct d40_desc *d40_first_active_get(struct d40_chan *d40c)
878{
879 struct d40_desc *d;
880
881 if (list_empty(&d40c->active))
882 return NULL;
883
884 d = list_first_entry(&d40c->active,
885 struct d40_desc,
886 node);
887 return d;
888}
889
Per Forlin74043682011-08-29 13:33:34 +0200890/* remove desc from current queue and add it to the pending_queue */
Linus Walleij8d318a52010-03-30 15:33:42 +0200891static void d40_desc_queue(struct d40_chan *d40c, struct d40_desc *desc)
892{
Per Forlin74043682011-08-29 13:33:34 +0200893 d40_desc_remove(desc);
894 desc->is_in_client_list = false;
Per Forlina8f30672011-06-26 23:29:52 +0200895 list_add_tail(&desc->node, &d40c->pending_queue);
896}
897
898static struct d40_desc *d40_first_pending(struct d40_chan *d40c)
899{
900 struct d40_desc *d;
901
902 if (list_empty(&d40c->pending_queue))
903 return NULL;
904
905 d = list_first_entry(&d40c->pending_queue,
906 struct d40_desc,
907 node);
908 return d;
Linus Walleij8d318a52010-03-30 15:33:42 +0200909}
910
911static struct d40_desc *d40_first_queued(struct d40_chan *d40c)
912{
913 struct d40_desc *d;
914
915 if (list_empty(&d40c->queue))
916 return NULL;
917
918 d = list_first_entry(&d40c->queue,
919 struct d40_desc,
920 node);
921 return d;
922}
923
Fabio Baltieri4226dd82012-12-13 13:46:16 +0100924static struct d40_desc *d40_first_done(struct d40_chan *d40c)
925{
926 if (list_empty(&d40c->done))
927 return NULL;
928
929 return list_first_entry(&d40c->done, struct d40_desc, node);
930}
931
Per Forlind49278e2010-12-20 18:31:38 +0100932static int d40_psize_2_burst_size(bool is_log, int psize)
933{
934 if (is_log) {
935 if (psize == STEDMA40_PSIZE_LOG_1)
936 return 1;
937 } else {
938 if (psize == STEDMA40_PSIZE_PHY_1)
939 return 1;
940 }
Linus Walleij8d318a52010-03-30 15:33:42 +0200941
Per Forlind49278e2010-12-20 18:31:38 +0100942 return 2 << psize;
943}
944
945/*
946 * The dma only supports transmitting packages up to
947 * STEDMA40_MAX_SEG_SIZE << data_width. Calculate the total number of
948 * dma elements required to send the entire sg list
949 */
950static int d40_size_2_dmalen(int size, u32 data_width1, u32 data_width2)
951{
952 int dmalen;
953 u32 max_w = max(data_width1, data_width2);
954 u32 min_w = min(data_width1, data_width2);
955 u32 seg_max = ALIGN(STEDMA40_MAX_SEG_SIZE << min_w, 1 << max_w);
956
957 if (seg_max > STEDMA40_MAX_SEG_SIZE)
958 seg_max -= (1 << max_w);
959
960 if (!IS_ALIGNED(size, 1 << max_w))
961 return -EINVAL;
962
963 if (size <= seg_max)
964 dmalen = 1;
965 else {
966 dmalen = size / seg_max;
967 if (dmalen * seg_max < size)
968 dmalen++;
969 }
970 return dmalen;
971}
972
973static int d40_sg_2_dmalen(struct scatterlist *sgl, int sg_len,
974 u32 data_width1, u32 data_width2)
975{
976 struct scatterlist *sg;
977 int i;
978 int len = 0;
979 int ret;
980
981 for_each_sg(sgl, sg, sg_len, i) {
982 ret = d40_size_2_dmalen(sg_dma_len(sg),
983 data_width1, data_width2);
984 if (ret < 0)
985 return ret;
986 len += ret;
987 }
988 return len;
989}
990
Narayanan G7fb3e752011-11-17 17:26:41 +0530991
992#ifdef CONFIG_PM
993static void dma40_backup(void __iomem *baseaddr, u32 *backup,
994 u32 *regaddr, int num, bool save)
995{
996 int i;
997
998 for (i = 0; i < num; i++) {
999 void __iomem *addr = baseaddr + regaddr[i];
1000
1001 if (save)
1002 backup[i] = readl_relaxed(addr);
1003 else
1004 writel_relaxed(backup[i], addr);
1005 }
1006}
1007
1008static void d40_save_restore_registers(struct d40_base *base, bool save)
1009{
1010 int i;
1011
1012 /* Save/Restore channel specific registers */
1013 for (i = 0; i < base->num_phy_chans; i++) {
1014 void __iomem *addr;
1015 int idx;
1016
1017 if (base->phy_res[i].reserved)
1018 continue;
1019
1020 addr = base->virtbase + D40_DREG_PCBASE + i * D40_DREG_PCDELTA;
1021 idx = i * ARRAY_SIZE(d40_backup_regs_chan);
1022
1023 dma40_backup(addr, &base->reg_val_backup_chan[idx],
1024 d40_backup_regs_chan,
1025 ARRAY_SIZE(d40_backup_regs_chan),
1026 save);
1027 }
1028
1029 /* Save/Restore global registers */
1030 dma40_backup(base->virtbase, base->reg_val_backup,
1031 d40_backup_regs, ARRAY_SIZE(d40_backup_regs),
1032 save);
1033
1034 /* Save/Restore registers only existing on dma40 v3 and later */
Tong Liu3cb645d2012-09-26 10:07:30 +00001035 if (base->gen_dmac.backup)
1036 dma40_backup(base->virtbase, base->reg_val_backup_v4,
1037 base->gen_dmac.backup,
1038 base->gen_dmac.backup_size,
1039 save);
Narayanan G7fb3e752011-11-17 17:26:41 +05301040}
1041#else
1042static void d40_save_restore_registers(struct d40_base *base, bool save)
1043{
1044}
1045#endif
Linus Walleij8d318a52010-03-30 15:33:42 +02001046
Narayanan G1bdae6f2012-02-09 12:41:37 +05301047static int __d40_execute_command_phy(struct d40_chan *d40c,
1048 enum d40_command command)
Linus Walleij8d318a52010-03-30 15:33:42 +02001049{
Jonas Aaberg767a9672010-08-09 12:08:34 +00001050 u32 status;
1051 int i;
Linus Walleij8d318a52010-03-30 15:33:42 +02001052 void __iomem *active_reg;
1053 int ret = 0;
1054 unsigned long flags;
Jonas Aaberg1d392a72010-06-20 21:26:01 +00001055 u32 wmask;
Linus Walleij8d318a52010-03-30 15:33:42 +02001056
Narayanan G1bdae6f2012-02-09 12:41:37 +05301057 if (command == D40_DMA_STOP) {
1058 ret = __d40_execute_command_phy(d40c, D40_DMA_SUSPEND_REQ);
1059 if (ret)
1060 return ret;
1061 }
1062
Linus Walleij8d318a52010-03-30 15:33:42 +02001063 spin_lock_irqsave(&d40c->base->execmd_lock, flags);
1064
1065 if (d40c->phy_chan->num % 2 == 0)
1066 active_reg = d40c->base->virtbase + D40_DREG_ACTIVE;
1067 else
1068 active_reg = d40c->base->virtbase + D40_DREG_ACTIVO;
1069
1070 if (command == D40_DMA_SUSPEND_REQ) {
1071 status = (readl(active_reg) &
1072 D40_CHAN_POS_MASK(d40c->phy_chan->num)) >>
1073 D40_CHAN_POS(d40c->phy_chan->num);
1074
1075 if (status == D40_DMA_SUSPENDED || status == D40_DMA_STOP)
1076 goto done;
1077 }
1078
Jonas Aaberg1d392a72010-06-20 21:26:01 +00001079 wmask = 0xffffffff & ~(D40_CHAN_POS_MASK(d40c->phy_chan->num));
1080 writel(wmask | (command << D40_CHAN_POS(d40c->phy_chan->num)),
1081 active_reg);
Linus Walleij8d318a52010-03-30 15:33:42 +02001082
1083 if (command == D40_DMA_SUSPEND_REQ) {
1084
1085 for (i = 0 ; i < D40_SUSPEND_MAX_IT; i++) {
1086 status = (readl(active_reg) &
1087 D40_CHAN_POS_MASK(d40c->phy_chan->num)) >>
1088 D40_CHAN_POS(d40c->phy_chan->num);
1089
1090 cpu_relax();
1091 /*
1092 * Reduce the number of bus accesses while
1093 * waiting for the DMA to suspend.
1094 */
1095 udelay(3);
1096
1097 if (status == D40_DMA_STOP ||
1098 status == D40_DMA_SUSPENDED)
1099 break;
1100 }
1101
1102 if (i == D40_SUSPEND_MAX_IT) {
Rabin Vincent6db5a8b2011-01-25 11:18:09 +01001103 chan_err(d40c,
1104 "unable to suspend the chl %d (log: %d) status %x\n",
1105 d40c->phy_chan->num, d40c->log_num,
Linus Walleij8d318a52010-03-30 15:33:42 +02001106 status);
1107 dump_stack();
1108 ret = -EBUSY;
1109 }
1110
1111 }
1112done:
1113 spin_unlock_irqrestore(&d40c->base->execmd_lock, flags);
1114 return ret;
1115}
1116
1117static void d40_term_all(struct d40_chan *d40c)
1118{
1119 struct d40_desc *d40d;
Per Forlin74043682011-08-29 13:33:34 +02001120 struct d40_desc *_d;
Linus Walleij8d318a52010-03-30 15:33:42 +02001121
Fabio Baltieri4226dd82012-12-13 13:46:16 +01001122 /* Release completed descriptors */
1123 while ((d40d = d40_first_done(d40c))) {
1124 d40_desc_remove(d40d);
1125 d40_desc_free(d40c, d40d);
1126 }
1127
Linus Walleij8d318a52010-03-30 15:33:42 +02001128 /* Release active descriptors */
1129 while ((d40d = d40_first_active_get(d40c))) {
1130 d40_desc_remove(d40d);
Linus Walleij8d318a52010-03-30 15:33:42 +02001131 d40_desc_free(d40c, d40d);
1132 }
1133
1134 /* Release queued descriptors waiting for transfer */
1135 while ((d40d = d40_first_queued(d40c))) {
1136 d40_desc_remove(d40d);
Linus Walleij8d318a52010-03-30 15:33:42 +02001137 d40_desc_free(d40c, d40d);
1138 }
1139
Per Forlina8f30672011-06-26 23:29:52 +02001140 /* Release pending descriptors */
1141 while ((d40d = d40_first_pending(d40c))) {
1142 d40_desc_remove(d40d);
1143 d40_desc_free(d40c, d40d);
1144 }
Linus Walleij8d318a52010-03-30 15:33:42 +02001145
Per Forlin74043682011-08-29 13:33:34 +02001146 /* Release client owned descriptors */
1147 if (!list_empty(&d40c->client))
1148 list_for_each_entry_safe(d40d, _d, &d40c->client, node) {
1149 d40_desc_remove(d40d);
1150 d40_desc_free(d40c, d40d);
1151 }
1152
Per Forlin82babbb362011-08-29 13:33:35 +02001153 /* Release descriptors in prepare queue */
1154 if (!list_empty(&d40c->prepare_queue))
1155 list_for_each_entry_safe(d40d, _d,
1156 &d40c->prepare_queue, node) {
1157 d40_desc_remove(d40d);
1158 d40_desc_free(d40c, d40d);
1159 }
Per Forlin74043682011-08-29 13:33:34 +02001160
Linus Walleij8d318a52010-03-30 15:33:42 +02001161 d40c->pending_tx = 0;
Linus Walleij8d318a52010-03-30 15:33:42 +02001162}
1163
Narayanan G1bdae6f2012-02-09 12:41:37 +05301164static void __d40_config_set_event(struct d40_chan *d40c,
1165 enum d40_events event_type, u32 event,
1166 int reg)
Rabin Vincent262d2912011-01-25 11:18:05 +01001167{
Rabin Vincent8ca84682011-01-25 11:18:07 +01001168 void __iomem *addr = chan_base(d40c) + reg;
Rabin Vincent262d2912011-01-25 11:18:05 +01001169 int tries;
Narayanan G1bdae6f2012-02-09 12:41:37 +05301170 u32 status;
Rabin Vincent262d2912011-01-25 11:18:05 +01001171
Narayanan G1bdae6f2012-02-09 12:41:37 +05301172 switch (event_type) {
1173
1174 case D40_DEACTIVATE_EVENTLINE:
1175
Rabin Vincent262d2912011-01-25 11:18:05 +01001176 writel((D40_DEACTIVATE_EVENTLINE << D40_EVENTLINE_POS(event))
1177 | ~D40_EVENTLINE_MASK(event), addr);
Narayanan G1bdae6f2012-02-09 12:41:37 +05301178 break;
Rabin Vincent262d2912011-01-25 11:18:05 +01001179
Narayanan G1bdae6f2012-02-09 12:41:37 +05301180 case D40_SUSPEND_REQ_EVENTLINE:
1181 status = (readl(addr) & D40_EVENTLINE_MASK(event)) >>
1182 D40_EVENTLINE_POS(event);
1183
1184 if (status == D40_DEACTIVATE_EVENTLINE ||
1185 status == D40_SUSPEND_REQ_EVENTLINE)
1186 break;
1187
1188 writel((D40_SUSPEND_REQ_EVENTLINE << D40_EVENTLINE_POS(event))
1189 | ~D40_EVENTLINE_MASK(event), addr);
1190
1191 for (tries = 0 ; tries < D40_SUSPEND_MAX_IT; tries++) {
1192
1193 status = (readl(addr) & D40_EVENTLINE_MASK(event)) >>
1194 D40_EVENTLINE_POS(event);
1195
1196 cpu_relax();
1197 /*
1198 * Reduce the number of bus accesses while
1199 * waiting for the DMA to suspend.
1200 */
1201 udelay(3);
1202
1203 if (status == D40_DEACTIVATE_EVENTLINE)
1204 break;
1205 }
1206
1207 if (tries == D40_SUSPEND_MAX_IT) {
1208 chan_err(d40c,
1209 "unable to stop the event_line chl %d (log: %d)"
1210 "status %x\n", d40c->phy_chan->num,
1211 d40c->log_num, status);
1212 }
1213 break;
1214
1215 case D40_ACTIVATE_EVENTLINE:
Rabin Vincent262d2912011-01-25 11:18:05 +01001216 /*
1217 * The hardware sometimes doesn't register the enable when src and dst
1218 * event lines are active on the same logical channel. Retry to ensure
1219 * it does. Usually only one retry is sufficient.
1220 */
Narayanan G1bdae6f2012-02-09 12:41:37 +05301221 tries = 100;
1222 while (--tries) {
1223 writel((D40_ACTIVATE_EVENTLINE <<
1224 D40_EVENTLINE_POS(event)) |
1225 ~D40_EVENTLINE_MASK(event), addr);
Rabin Vincent262d2912011-01-25 11:18:05 +01001226
Narayanan G1bdae6f2012-02-09 12:41:37 +05301227 if (readl(addr) & D40_EVENTLINE_MASK(event))
1228 break;
1229 }
1230
1231 if (tries != 99)
1232 dev_dbg(chan2dev(d40c),
1233 "[%s] workaround enable S%cLNK (%d tries)\n",
1234 __func__, reg == D40_CHAN_REG_SSLNK ? 'S' : 'D',
1235 100 - tries);
1236
1237 WARN_ON(!tries);
1238 break;
1239
1240 case D40_ROUND_EVENTLINE:
1241 BUG();
1242 break;
1243
Rabin Vincent262d2912011-01-25 11:18:05 +01001244 }
Rabin Vincent262d2912011-01-25 11:18:05 +01001245}
1246
Narayanan G1bdae6f2012-02-09 12:41:37 +05301247static void d40_config_set_event(struct d40_chan *d40c,
1248 enum d40_events event_type)
Linus Walleij8d318a52010-03-30 15:33:42 +02001249{
Linus Walleij8d318a52010-03-30 15:33:42 +02001250 /* Enable event line connected to device (or memcpy) */
1251 if ((d40c->dma_cfg.dir == STEDMA40_PERIPH_TO_MEM) ||
1252 (d40c->dma_cfg.dir == STEDMA40_PERIPH_TO_PERIPH)) {
1253 u32 event = D40_TYPE_TO_EVENT(d40c->dma_cfg.src_dev_type);
1254
Narayanan G1bdae6f2012-02-09 12:41:37 +05301255 __d40_config_set_event(d40c, event_type, event,
Rabin Vincent262d2912011-01-25 11:18:05 +01001256 D40_CHAN_REG_SSLNK);
Linus Walleij8d318a52010-03-30 15:33:42 +02001257 }
Rabin Vincent262d2912011-01-25 11:18:05 +01001258
Linus Walleij8d318a52010-03-30 15:33:42 +02001259 if (d40c->dma_cfg.dir != STEDMA40_PERIPH_TO_MEM) {
1260 u32 event = D40_TYPE_TO_EVENT(d40c->dma_cfg.dst_dev_type);
1261
Narayanan G1bdae6f2012-02-09 12:41:37 +05301262 __d40_config_set_event(d40c, event_type, event,
Rabin Vincent262d2912011-01-25 11:18:05 +01001263 D40_CHAN_REG_SDLNK);
Linus Walleij8d318a52010-03-30 15:33:42 +02001264 }
Linus Walleij8d318a52010-03-30 15:33:42 +02001265}
1266
Jonas Aaberga5ebca42010-05-18 00:41:09 +02001267static u32 d40_chan_has_events(struct d40_chan *d40c)
Linus Walleij8d318a52010-03-30 15:33:42 +02001268{
Rabin Vincent8ca84682011-01-25 11:18:07 +01001269 void __iomem *chanbase = chan_base(d40c);
Jonas Aabergbe8cb7d2010-08-09 12:07:44 +00001270 u32 val;
Linus Walleij8d318a52010-03-30 15:33:42 +02001271
Rabin Vincent8ca84682011-01-25 11:18:07 +01001272 val = readl(chanbase + D40_CHAN_REG_SSLNK);
1273 val |= readl(chanbase + D40_CHAN_REG_SDLNK);
Linus Walleij8d318a52010-03-30 15:33:42 +02001274
Jonas Aaberga5ebca42010-05-18 00:41:09 +02001275 return val;
Linus Walleij8d318a52010-03-30 15:33:42 +02001276}
1277
Narayanan G1bdae6f2012-02-09 12:41:37 +05301278static int
1279__d40_execute_command_log(struct d40_chan *d40c, enum d40_command command)
1280{
1281 unsigned long flags;
1282 int ret = 0;
1283 u32 active_status;
1284 void __iomem *active_reg;
1285
1286 if (d40c->phy_chan->num % 2 == 0)
1287 active_reg = d40c->base->virtbase + D40_DREG_ACTIVE;
1288 else
1289 active_reg = d40c->base->virtbase + D40_DREG_ACTIVO;
1290
1291
1292 spin_lock_irqsave(&d40c->phy_chan->lock, flags);
1293
1294 switch (command) {
1295 case D40_DMA_STOP:
1296 case D40_DMA_SUSPEND_REQ:
1297
1298 active_status = (readl(active_reg) &
1299 D40_CHAN_POS_MASK(d40c->phy_chan->num)) >>
1300 D40_CHAN_POS(d40c->phy_chan->num);
1301
1302 if (active_status == D40_DMA_RUN)
1303 d40_config_set_event(d40c, D40_SUSPEND_REQ_EVENTLINE);
1304 else
1305 d40_config_set_event(d40c, D40_DEACTIVATE_EVENTLINE);
1306
1307 if (!d40_chan_has_events(d40c) && (command == D40_DMA_STOP))
1308 ret = __d40_execute_command_phy(d40c, command);
1309
1310 break;
1311
1312 case D40_DMA_RUN:
1313
1314 d40_config_set_event(d40c, D40_ACTIVATE_EVENTLINE);
1315 ret = __d40_execute_command_phy(d40c, command);
1316 break;
1317
1318 case D40_DMA_SUSPENDED:
1319 BUG();
1320 break;
1321 }
1322
1323 spin_unlock_irqrestore(&d40c->phy_chan->lock, flags);
1324 return ret;
1325}
1326
1327static int d40_channel_execute_command(struct d40_chan *d40c,
1328 enum d40_command command)
1329{
1330 if (chan_is_logical(d40c))
1331 return __d40_execute_command_log(d40c, command);
1332 else
1333 return __d40_execute_command_phy(d40c, command);
1334}
1335
Rabin Vincent20a5b6d2010-10-12 13:00:52 +00001336static u32 d40_get_prmo(struct d40_chan *d40c)
1337{
1338 static const unsigned int phy_map[] = {
1339 [STEDMA40_PCHAN_BASIC_MODE]
1340 = D40_DREG_PRMO_PCHAN_BASIC,
1341 [STEDMA40_PCHAN_MODULO_MODE]
1342 = D40_DREG_PRMO_PCHAN_MODULO,
1343 [STEDMA40_PCHAN_DOUBLE_DST_MODE]
1344 = D40_DREG_PRMO_PCHAN_DOUBLE_DST,
1345 };
1346 static const unsigned int log_map[] = {
1347 [STEDMA40_LCHAN_SRC_PHY_DST_LOG]
1348 = D40_DREG_PRMO_LCHAN_SRC_PHY_DST_LOG,
1349 [STEDMA40_LCHAN_SRC_LOG_DST_PHY]
1350 = D40_DREG_PRMO_LCHAN_SRC_LOG_DST_PHY,
1351 [STEDMA40_LCHAN_SRC_LOG_DST_LOG]
1352 = D40_DREG_PRMO_LCHAN_SRC_LOG_DST_LOG,
1353 };
1354
Rabin Vincent724a8572011-01-25 11:18:08 +01001355 if (chan_is_physical(d40c))
Rabin Vincent20a5b6d2010-10-12 13:00:52 +00001356 return phy_map[d40c->dma_cfg.mode_opt];
1357 else
1358 return log_map[d40c->dma_cfg.mode_opt];
1359}
1360
Jonas Aabergb55912c2010-08-09 12:08:02 +00001361static void d40_config_write(struct d40_chan *d40c)
Linus Walleij8d318a52010-03-30 15:33:42 +02001362{
1363 u32 addr_base;
1364 u32 var;
Linus Walleij8d318a52010-03-30 15:33:42 +02001365
1366 /* Odd addresses are even addresses + 4 */
1367 addr_base = (d40c->phy_chan->num % 2) * 4;
1368 /* Setup channel mode to logical or physical */
Rabin Vincent724a8572011-01-25 11:18:08 +01001369 var = ((u32)(chan_is_logical(d40c)) + 1) <<
Linus Walleij8d318a52010-03-30 15:33:42 +02001370 D40_CHAN_POS(d40c->phy_chan->num);
1371 writel(var, d40c->base->virtbase + D40_DREG_PRMSE + addr_base);
1372
1373 /* Setup operational mode option register */
Rabin Vincent20a5b6d2010-10-12 13:00:52 +00001374 var = d40_get_prmo(d40c) << D40_CHAN_POS(d40c->phy_chan->num);
Linus Walleij8d318a52010-03-30 15:33:42 +02001375
1376 writel(var, d40c->base->virtbase + D40_DREG_PRMOE + addr_base);
1377
Rabin Vincent724a8572011-01-25 11:18:08 +01001378 if (chan_is_logical(d40c)) {
Rabin Vincent8ca84682011-01-25 11:18:07 +01001379 int lidx = (d40c->phy_chan->num << D40_SREG_ELEM_LOG_LIDX_POS)
1380 & D40_SREG_ELEM_LOG_LIDX_MASK;
1381 void __iomem *chanbase = chan_base(d40c);
1382
Linus Walleij8d318a52010-03-30 15:33:42 +02001383 /* Set default config for CFG reg */
Rabin Vincent8ca84682011-01-25 11:18:07 +01001384 writel(d40c->src_def_cfg, chanbase + D40_CHAN_REG_SSCFG);
1385 writel(d40c->dst_def_cfg, chanbase + D40_CHAN_REG_SDCFG);
Linus Walleij8d318a52010-03-30 15:33:42 +02001386
Jonas Aabergb55912c2010-08-09 12:08:02 +00001387 /* Set LIDX for lcla */
Rabin Vincent8ca84682011-01-25 11:18:07 +01001388 writel(lidx, chanbase + D40_CHAN_REG_SSELT);
1389 writel(lidx, chanbase + D40_CHAN_REG_SDELT);
Rabin Vincente9f3a492011-12-28 11:27:40 +05301390
1391 /* Clear LNK which will be used by d40_chan_has_events() */
1392 writel(0, chanbase + D40_CHAN_REG_SSLNK);
1393 writel(0, chanbase + D40_CHAN_REG_SDLNK);
Linus Walleij8d318a52010-03-30 15:33:42 +02001394 }
Linus Walleij8d318a52010-03-30 15:33:42 +02001395}
1396
Jonas Aabergaa182ae2010-08-09 12:08:26 +00001397static u32 d40_residue(struct d40_chan *d40c)
1398{
1399 u32 num_elt;
1400
Rabin Vincent724a8572011-01-25 11:18:08 +01001401 if (chan_is_logical(d40c))
Jonas Aabergaa182ae2010-08-09 12:08:26 +00001402 num_elt = (readl(&d40c->lcpa->lcsp2) & D40_MEM_LCSP2_ECNT_MASK)
1403 >> D40_MEM_LCSP2_ECNT_POS;
Rabin Vincent8ca84682011-01-25 11:18:07 +01001404 else {
1405 u32 val = readl(chan_base(d40c) + D40_CHAN_REG_SDELT);
1406 num_elt = (val & D40_SREG_ELEM_PHY_ECNT_MASK)
1407 >> D40_SREG_ELEM_PHY_ECNT_POS;
1408 }
1409
Jonas Aabergaa182ae2010-08-09 12:08:26 +00001410 return num_elt * (1 << d40c->dma_cfg.dst_info.data_width);
1411}
1412
1413static bool d40_tx_is_linked(struct d40_chan *d40c)
1414{
1415 bool is_link;
1416
Rabin Vincent724a8572011-01-25 11:18:08 +01001417 if (chan_is_logical(d40c))
Jonas Aabergaa182ae2010-08-09 12:08:26 +00001418 is_link = readl(&d40c->lcpa->lcsp3) & D40_MEM_LCSP3_DLOS_MASK;
1419 else
Rabin Vincent8ca84682011-01-25 11:18:07 +01001420 is_link = readl(chan_base(d40c) + D40_CHAN_REG_SDLNK)
1421 & D40_SREG_LNK_PHYS_LNK_MASK;
1422
Jonas Aabergaa182ae2010-08-09 12:08:26 +00001423 return is_link;
1424}
1425
Rabin Vincent86eb5fb2011-01-25 11:18:34 +01001426static int d40_pause(struct d40_chan *d40c)
Jonas Aabergaa182ae2010-08-09 12:08:26 +00001427{
Jonas Aabergaa182ae2010-08-09 12:08:26 +00001428 int res = 0;
1429 unsigned long flags;
1430
Jonas Aaberg3ac012a2010-08-09 12:09:12 +00001431 if (!d40c->busy)
1432 return 0;
1433
Narayanan G7fb3e752011-11-17 17:26:41 +05301434 pm_runtime_get_sync(d40c->base->dev);
Jonas Aabergaa182ae2010-08-09 12:08:26 +00001435 spin_lock_irqsave(&d40c->lock, flags);
1436
1437 res = d40_channel_execute_command(d40c, D40_DMA_SUSPEND_REQ);
Narayanan G1bdae6f2012-02-09 12:41:37 +05301438
Narayanan G7fb3e752011-11-17 17:26:41 +05301439 pm_runtime_mark_last_busy(d40c->base->dev);
1440 pm_runtime_put_autosuspend(d40c->base->dev);
Jonas Aabergaa182ae2010-08-09 12:08:26 +00001441 spin_unlock_irqrestore(&d40c->lock, flags);
1442 return res;
1443}
1444
Rabin Vincent86eb5fb2011-01-25 11:18:34 +01001445static int d40_resume(struct d40_chan *d40c)
Jonas Aabergaa182ae2010-08-09 12:08:26 +00001446{
Jonas Aabergaa182ae2010-08-09 12:08:26 +00001447 int res = 0;
1448 unsigned long flags;
1449
Jonas Aaberg3ac012a2010-08-09 12:09:12 +00001450 if (!d40c->busy)
1451 return 0;
1452
Jonas Aabergaa182ae2010-08-09 12:08:26 +00001453 spin_lock_irqsave(&d40c->lock, flags);
Narayanan G7fb3e752011-11-17 17:26:41 +05301454 pm_runtime_get_sync(d40c->base->dev);
Jonas Aabergaa182ae2010-08-09 12:08:26 +00001455
1456 /* If bytes left to transfer or linked tx resume job */
Narayanan G1bdae6f2012-02-09 12:41:37 +05301457 if (d40_residue(d40c) || d40_tx_is_linked(d40c))
Jonas Aabergaa182ae2010-08-09 12:08:26 +00001458 res = d40_channel_execute_command(d40c, D40_DMA_RUN);
Jonas Aabergaa182ae2010-08-09 12:08:26 +00001459
Narayanan G7fb3e752011-11-17 17:26:41 +05301460 pm_runtime_mark_last_busy(d40c->base->dev);
1461 pm_runtime_put_autosuspend(d40c->base->dev);
Jonas Aabergaa182ae2010-08-09 12:08:26 +00001462 spin_unlock_irqrestore(&d40c->lock, flags);
1463 return res;
1464}
1465
Linus Walleij8d318a52010-03-30 15:33:42 +02001466static dma_cookie_t d40_tx_submit(struct dma_async_tx_descriptor *tx)
1467{
1468 struct d40_chan *d40c = container_of(tx->chan,
1469 struct d40_chan,
1470 chan);
1471 struct d40_desc *d40d = container_of(tx, struct d40_desc, txd);
1472 unsigned long flags;
Russell King - ARM Linux884485e2012-03-06 22:34:46 +00001473 dma_cookie_t cookie;
Linus Walleij8d318a52010-03-30 15:33:42 +02001474
1475 spin_lock_irqsave(&d40c->lock, flags);
Russell King - ARM Linux884485e2012-03-06 22:34:46 +00001476 cookie = dma_cookie_assign(tx);
Linus Walleij8d318a52010-03-30 15:33:42 +02001477 d40_desc_queue(d40c, d40d);
Linus Walleij8d318a52010-03-30 15:33:42 +02001478 spin_unlock_irqrestore(&d40c->lock, flags);
1479
Russell King - ARM Linux884485e2012-03-06 22:34:46 +00001480 return cookie;
Linus Walleij8d318a52010-03-30 15:33:42 +02001481}
1482
1483static int d40_start(struct d40_chan *d40c)
1484{
Jonas Aaberg0c322692010-06-20 21:25:46 +00001485 return d40_channel_execute_command(d40c, D40_DMA_RUN);
Linus Walleij8d318a52010-03-30 15:33:42 +02001486}
1487
1488static struct d40_desc *d40_queue_start(struct d40_chan *d40c)
1489{
1490 struct d40_desc *d40d;
1491 int err;
1492
1493 /* Start queued jobs, if any */
1494 d40d = d40_first_queued(d40c);
1495
1496 if (d40d != NULL) {
Narayanan G1bdae6f2012-02-09 12:41:37 +05301497 if (!d40c->busy) {
Narayanan G7fb3e752011-11-17 17:26:41 +05301498 d40c->busy = true;
Narayanan G1bdae6f2012-02-09 12:41:37 +05301499 pm_runtime_get_sync(d40c->base->dev);
1500 }
Linus Walleij8d318a52010-03-30 15:33:42 +02001501
1502 /* Remove from queue */
1503 d40_desc_remove(d40d);
1504
1505 /* Add to active queue */
1506 d40_desc_submit(d40c, d40d);
1507
Rabin Vincent7d83a852011-01-25 11:18:06 +01001508 /* Initiate DMA job */
1509 d40_desc_load(d40c, d40d);
Jonas Aaberg698e4732010-08-09 12:08:56 +00001510
Rabin Vincent7d83a852011-01-25 11:18:06 +01001511 /* Start dma job */
1512 err = d40_start(d40c);
Linus Walleij8d318a52010-03-30 15:33:42 +02001513
Rabin Vincent7d83a852011-01-25 11:18:06 +01001514 if (err)
1515 return NULL;
Linus Walleij8d318a52010-03-30 15:33:42 +02001516 }
1517
1518 return d40d;
1519}
1520
1521/* called from interrupt context */
1522static void dma_tc_handle(struct d40_chan *d40c)
1523{
1524 struct d40_desc *d40d;
1525
Linus Walleij8d318a52010-03-30 15:33:42 +02001526 /* Get first active entry from list */
1527 d40d = d40_first_active_get(d40c);
1528
1529 if (d40d == NULL)
1530 return;
1531
Rabin Vincent0c842b52011-01-25 11:18:35 +01001532 if (d40d->cyclic) {
1533 /*
1534 * If this was a paritially loaded list, we need to reloaded
1535 * it, and only when the list is completed. We need to check
1536 * for done because the interrupt will hit for every link, and
1537 * not just the last one.
1538 */
1539 if (d40d->lli_current < d40d->lli_len
1540 && !d40_tx_is_linked(d40c)
1541 && !d40_residue(d40c)) {
1542 d40_lcla_free_all(d40c, d40d);
1543 d40_desc_load(d40c, d40d);
1544 (void) d40_start(d40c);
Linus Walleij8d318a52010-03-30 15:33:42 +02001545
Rabin Vincent0c842b52011-01-25 11:18:35 +01001546 if (d40d->lli_current == d40d->lli_len)
1547 d40d->lli_current = 0;
1548 }
1549 } else {
1550 d40_lcla_free_all(d40c, d40d);
1551
1552 if (d40d->lli_current < d40d->lli_len) {
1553 d40_desc_load(d40c, d40d);
1554 /* Start dma job */
1555 (void) d40_start(d40c);
1556 return;
1557 }
1558
1559 if (d40_queue_start(d40c) == NULL)
1560 d40c->busy = false;
Narayanan G7fb3e752011-11-17 17:26:41 +05301561 pm_runtime_mark_last_busy(d40c->base->dev);
1562 pm_runtime_put_autosuspend(d40c->base->dev);
Linus Walleij8d318a52010-03-30 15:33:42 +02001563 }
1564
Fabio Baltieri4226dd82012-12-13 13:46:16 +01001565 d40_desc_remove(d40d);
1566 d40_desc_done(d40c, d40d);
1567
Linus Walleij8d318a52010-03-30 15:33:42 +02001568 d40c->pending_tx++;
1569 tasklet_schedule(&d40c->tasklet);
1570
1571}
1572
1573static void dma_tasklet(unsigned long data)
1574{
1575 struct d40_chan *d40c = (struct d40_chan *) data;
Jonas Aaberg767a9672010-08-09 12:08:34 +00001576 struct d40_desc *d40d;
Linus Walleij8d318a52010-03-30 15:33:42 +02001577 unsigned long flags;
1578 dma_async_tx_callback callback;
1579 void *callback_param;
1580
1581 spin_lock_irqsave(&d40c->lock, flags);
1582
Fabio Baltieri4226dd82012-12-13 13:46:16 +01001583 /* Get first entry from the done list */
1584 d40d = d40_first_done(d40c);
1585 if (d40d == NULL) {
1586 /* Check if we have reached here for cyclic job */
1587 d40d = d40_first_active_get(d40c);
1588 if (d40d == NULL || !d40d->cyclic)
1589 goto err;
1590 }
Linus Walleij8d318a52010-03-30 15:33:42 +02001591
Rabin Vincent0c842b52011-01-25 11:18:35 +01001592 if (!d40d->cyclic)
Russell King - ARM Linuxf7fbce02012-03-06 22:35:07 +00001593 dma_cookie_complete(&d40d->txd);
Linus Walleij8d318a52010-03-30 15:33:42 +02001594
1595 /*
1596 * If terminating a channel pending_tx is set to zero.
1597 * This prevents any finished active jobs to return to the client.
1598 */
1599 if (d40c->pending_tx == 0) {
1600 spin_unlock_irqrestore(&d40c->lock, flags);
1601 return;
1602 }
1603
1604 /* Callback to client */
Jonas Aaberg767a9672010-08-09 12:08:34 +00001605 callback = d40d->txd.callback;
1606 callback_param = d40d->txd.callback_param;
Linus Walleij8d318a52010-03-30 15:33:42 +02001607
Rabin Vincent0c842b52011-01-25 11:18:35 +01001608 if (!d40d->cyclic) {
1609 if (async_tx_test_ack(&d40d->txd)) {
Jonas Aaberg767a9672010-08-09 12:08:34 +00001610 d40_desc_remove(d40d);
Rabin Vincent0c842b52011-01-25 11:18:35 +01001611 d40_desc_free(d40c, d40d);
1612 } else {
1613 if (!d40d->is_in_client_list) {
1614 d40_desc_remove(d40d);
1615 d40_lcla_free_all(d40c, d40d);
1616 list_add_tail(&d40d->node, &d40c->client);
1617 d40d->is_in_client_list = true;
1618 }
Linus Walleij8d318a52010-03-30 15:33:42 +02001619 }
1620 }
1621
1622 d40c->pending_tx--;
1623
1624 if (d40c->pending_tx)
1625 tasklet_schedule(&d40c->tasklet);
1626
1627 spin_unlock_irqrestore(&d40c->lock, flags);
1628
Jonas Aaberg767a9672010-08-09 12:08:34 +00001629 if (callback && (d40d->txd.flags & DMA_PREP_INTERRUPT))
Linus Walleij8d318a52010-03-30 15:33:42 +02001630 callback(callback_param);
1631
1632 return;
1633
Narayanan G1bdae6f2012-02-09 12:41:37 +05301634err:
1635 /* Rescue manouver if receiving double interrupts */
Linus Walleij8d318a52010-03-30 15:33:42 +02001636 if (d40c->pending_tx > 0)
1637 d40c->pending_tx--;
1638 spin_unlock_irqrestore(&d40c->lock, flags);
1639}
1640
1641static irqreturn_t d40_handle_interrupt(int irq, void *data)
1642{
Linus Walleij8d318a52010-03-30 15:33:42 +02001643 int i;
Linus Walleij8d318a52010-03-30 15:33:42 +02001644 u32 idx;
1645 u32 row;
1646 long chan = -1;
1647 struct d40_chan *d40c;
1648 unsigned long flags;
1649 struct d40_base *base = data;
Tong Liu3cb645d2012-09-26 10:07:30 +00001650 u32 regs[base->gen_dmac.il_size];
1651 struct d40_interrupt_lookup *il = base->gen_dmac.il;
1652 u32 il_size = base->gen_dmac.il_size;
Linus Walleij8d318a52010-03-30 15:33:42 +02001653
1654 spin_lock_irqsave(&base->interrupt_lock, flags);
1655
1656 /* Read interrupt status of both logical and physical channels */
Tong Liu3cb645d2012-09-26 10:07:30 +00001657 for (i = 0; i < il_size; i++)
Linus Walleij8d318a52010-03-30 15:33:42 +02001658 regs[i] = readl(base->virtbase + il[i].src);
1659
1660 for (;;) {
1661
1662 chan = find_next_bit((unsigned long *)regs,
Tong Liu3cb645d2012-09-26 10:07:30 +00001663 BITS_PER_LONG * il_size, chan + 1);
Linus Walleij8d318a52010-03-30 15:33:42 +02001664
1665 /* No more set bits found? */
Tong Liu3cb645d2012-09-26 10:07:30 +00001666 if (chan == BITS_PER_LONG * il_size)
Linus Walleij8d318a52010-03-30 15:33:42 +02001667 break;
1668
1669 row = chan / BITS_PER_LONG;
1670 idx = chan & (BITS_PER_LONG - 1);
1671
1672 /* ACK interrupt */
Jonas Aaberg1b003482010-08-09 12:07:54 +00001673 writel(1 << idx, base->virtbase + il[row].clr);
Linus Walleij8d318a52010-03-30 15:33:42 +02001674
1675 if (il[row].offset == D40_PHY_CHAN)
1676 d40c = base->lookup_phy_chans[idx];
1677 else
1678 d40c = base->lookup_log_chans[il[row].offset + idx];
1679 spin_lock(&d40c->lock);
1680
1681 if (!il[row].is_error)
1682 dma_tc_handle(d40c);
1683 else
Rabin Vincent6db5a8b2011-01-25 11:18:09 +01001684 d40_err(base->dev, "IRQ chan: %ld offset %d idx %d\n",
1685 chan, il[row].offset, idx);
Linus Walleij8d318a52010-03-30 15:33:42 +02001686
1687 spin_unlock(&d40c->lock);
1688 }
1689
1690 spin_unlock_irqrestore(&base->interrupt_lock, flags);
1691
1692 return IRQ_HANDLED;
1693}
1694
Linus Walleij8d318a52010-03-30 15:33:42 +02001695static int d40_validate_conf(struct d40_chan *d40c,
1696 struct stedma40_chan_cfg *conf)
1697{
1698 int res = 0;
1699 u32 dst_event_group = D40_TYPE_TO_GROUP(conf->dst_dev_type);
1700 u32 src_event_group = D40_TYPE_TO_GROUP(conf->src_dev_type);
Rabin Vincent38bdbf02010-10-12 13:00:51 +00001701 bool is_log = conf->mode == STEDMA40_MODE_LOGICAL;
Linus Walleij8d318a52010-03-30 15:33:42 +02001702
Linus Walleij0747c7ba2010-08-09 12:07:36 +00001703 if (!conf->dir) {
Rabin Vincent6db5a8b2011-01-25 11:18:09 +01001704 chan_err(d40c, "Invalid direction.\n");
Linus Walleij0747c7ba2010-08-09 12:07:36 +00001705 res = -EINVAL;
1706 }
1707
1708 if (conf->dst_dev_type != STEDMA40_DEV_DST_MEMORY &&
1709 d40c->base->plat_data->dev_tx[conf->dst_dev_type] == 0 &&
1710 d40c->runtime_addr == 0) {
1711
Rabin Vincent6db5a8b2011-01-25 11:18:09 +01001712 chan_err(d40c, "Invalid TX channel address (%d)\n",
1713 conf->dst_dev_type);
Linus Walleij0747c7ba2010-08-09 12:07:36 +00001714 res = -EINVAL;
1715 }
1716
1717 if (conf->src_dev_type != STEDMA40_DEV_SRC_MEMORY &&
1718 d40c->base->plat_data->dev_rx[conf->src_dev_type] == 0 &&
1719 d40c->runtime_addr == 0) {
Rabin Vincent6db5a8b2011-01-25 11:18:09 +01001720 chan_err(d40c, "Invalid RX channel address (%d)\n",
1721 conf->src_dev_type);
Linus Walleij0747c7ba2010-08-09 12:07:36 +00001722 res = -EINVAL;
1723 }
1724
1725 if (conf->dir == STEDMA40_MEM_TO_PERIPH &&
Linus Walleij8d318a52010-03-30 15:33:42 +02001726 dst_event_group == STEDMA40_DEV_DST_MEMORY) {
Rabin Vincent6db5a8b2011-01-25 11:18:09 +01001727 chan_err(d40c, "Invalid dst\n");
Linus Walleij8d318a52010-03-30 15:33:42 +02001728 res = -EINVAL;
1729 }
1730
Linus Walleij0747c7ba2010-08-09 12:07:36 +00001731 if (conf->dir == STEDMA40_PERIPH_TO_MEM &&
Linus Walleij8d318a52010-03-30 15:33:42 +02001732 src_event_group == STEDMA40_DEV_SRC_MEMORY) {
Rabin Vincent6db5a8b2011-01-25 11:18:09 +01001733 chan_err(d40c, "Invalid src\n");
Linus Walleij8d318a52010-03-30 15:33:42 +02001734 res = -EINVAL;
1735 }
1736
1737 if (src_event_group == STEDMA40_DEV_SRC_MEMORY &&
1738 dst_event_group == STEDMA40_DEV_DST_MEMORY && is_log) {
Rabin Vincent6db5a8b2011-01-25 11:18:09 +01001739 chan_err(d40c, "No event line\n");
Linus Walleij8d318a52010-03-30 15:33:42 +02001740 res = -EINVAL;
1741 }
1742
1743 if (conf->dir == STEDMA40_PERIPH_TO_PERIPH &&
1744 (src_event_group != dst_event_group)) {
Rabin Vincent6db5a8b2011-01-25 11:18:09 +01001745 chan_err(d40c, "Invalid event group\n");
Linus Walleij8d318a52010-03-30 15:33:42 +02001746 res = -EINVAL;
1747 }
1748
1749 if (conf->dir == STEDMA40_PERIPH_TO_PERIPH) {
1750 /*
1751 * DMAC HW supports it. Will be added to this driver,
1752 * in case any dma client requires it.
1753 */
Rabin Vincent6db5a8b2011-01-25 11:18:09 +01001754 chan_err(d40c, "periph to periph not supported\n");
Linus Walleij8d318a52010-03-30 15:33:42 +02001755 res = -EINVAL;
1756 }
1757
Per Forlind49278e2010-12-20 18:31:38 +01001758 if (d40_psize_2_burst_size(is_log, conf->src_info.psize) *
1759 (1 << conf->src_info.data_width) !=
1760 d40_psize_2_burst_size(is_log, conf->dst_info.psize) *
1761 (1 << conf->dst_info.data_width)) {
1762 /*
1763 * The DMAC hardware only supports
1764 * src (burst x width) == dst (burst x width)
1765 */
1766
Rabin Vincent6db5a8b2011-01-25 11:18:09 +01001767 chan_err(d40c, "src (burst x width) != dst (burst x width)\n");
Per Forlind49278e2010-12-20 18:31:38 +01001768 res = -EINVAL;
1769 }
1770
Linus Walleij8d318a52010-03-30 15:33:42 +02001771 return res;
1772}
1773
Narayanan G5cd326f2011-11-30 19:20:42 +05301774static bool d40_alloc_mask_set(struct d40_phy_res *phy,
1775 bool is_src, int log_event_line, bool is_log,
1776 bool *first_user)
Linus Walleij8d318a52010-03-30 15:33:42 +02001777{
1778 unsigned long flags;
1779 spin_lock_irqsave(&phy->lock, flags);
Narayanan G5cd326f2011-11-30 19:20:42 +05301780
1781 *first_user = ((phy->allocated_src | phy->allocated_dst)
1782 == D40_ALLOC_FREE);
1783
Marcin Mielczarczyk4aed79b2010-05-18 00:41:21 +02001784 if (!is_log) {
Linus Walleij8d318a52010-03-30 15:33:42 +02001785 /* Physical interrupts are masked per physical full channel */
1786 if (phy->allocated_src == D40_ALLOC_FREE &&
1787 phy->allocated_dst == D40_ALLOC_FREE) {
1788 phy->allocated_dst = D40_ALLOC_PHY;
1789 phy->allocated_src = D40_ALLOC_PHY;
1790 goto found;
1791 } else
1792 goto not_found;
1793 }
1794
1795 /* Logical channel */
1796 if (is_src) {
1797 if (phy->allocated_src == D40_ALLOC_PHY)
1798 goto not_found;
1799
1800 if (phy->allocated_src == D40_ALLOC_FREE)
1801 phy->allocated_src = D40_ALLOC_LOG_FREE;
1802
1803 if (!(phy->allocated_src & (1 << log_event_line))) {
1804 phy->allocated_src |= 1 << log_event_line;
1805 goto found;
1806 } else
1807 goto not_found;
1808 } else {
1809 if (phy->allocated_dst == D40_ALLOC_PHY)
1810 goto not_found;
1811
1812 if (phy->allocated_dst == D40_ALLOC_FREE)
1813 phy->allocated_dst = D40_ALLOC_LOG_FREE;
1814
1815 if (!(phy->allocated_dst & (1 << log_event_line))) {
1816 phy->allocated_dst |= 1 << log_event_line;
1817 goto found;
1818 } else
1819 goto not_found;
1820 }
1821
1822not_found:
1823 spin_unlock_irqrestore(&phy->lock, flags);
1824 return false;
1825found:
1826 spin_unlock_irqrestore(&phy->lock, flags);
1827 return true;
1828}
1829
1830static bool d40_alloc_mask_free(struct d40_phy_res *phy, bool is_src,
1831 int log_event_line)
1832{
1833 unsigned long flags;
1834 bool is_free = false;
1835
1836 spin_lock_irqsave(&phy->lock, flags);
1837 if (!log_event_line) {
Linus Walleij8d318a52010-03-30 15:33:42 +02001838 phy->allocated_dst = D40_ALLOC_FREE;
1839 phy->allocated_src = D40_ALLOC_FREE;
1840 is_free = true;
1841 goto out;
1842 }
1843
1844 /* Logical channel */
1845 if (is_src) {
1846 phy->allocated_src &= ~(1 << log_event_line);
1847 if (phy->allocated_src == D40_ALLOC_LOG_FREE)
1848 phy->allocated_src = D40_ALLOC_FREE;
1849 } else {
1850 phy->allocated_dst &= ~(1 << log_event_line);
1851 if (phy->allocated_dst == D40_ALLOC_LOG_FREE)
1852 phy->allocated_dst = D40_ALLOC_FREE;
1853 }
1854
1855 is_free = ((phy->allocated_src | phy->allocated_dst) ==
1856 D40_ALLOC_FREE);
1857
1858out:
1859 spin_unlock_irqrestore(&phy->lock, flags);
1860
1861 return is_free;
1862}
1863
Narayanan G5cd326f2011-11-30 19:20:42 +05301864static int d40_allocate_channel(struct d40_chan *d40c, bool *first_phy_user)
Linus Walleij8d318a52010-03-30 15:33:42 +02001865{
1866 int dev_type;
1867 int event_group;
1868 int event_line;
1869 struct d40_phy_res *phys;
1870 int i;
1871 int j;
1872 int log_num;
Gerald Baezaf000df82012-11-08 14:39:07 +01001873 int num_phy_chans;
Linus Walleij8d318a52010-03-30 15:33:42 +02001874 bool is_src;
Rabin Vincent38bdbf02010-10-12 13:00:51 +00001875 bool is_log = d40c->dma_cfg.mode == STEDMA40_MODE_LOGICAL;
Linus Walleij8d318a52010-03-30 15:33:42 +02001876
1877 phys = d40c->base->phy_res;
Gerald Baezaf000df82012-11-08 14:39:07 +01001878 num_phy_chans = d40c->base->num_phy_chans;
Linus Walleij8d318a52010-03-30 15:33:42 +02001879
1880 if (d40c->dma_cfg.dir == STEDMA40_PERIPH_TO_MEM) {
1881 dev_type = d40c->dma_cfg.src_dev_type;
1882 log_num = 2 * dev_type;
1883 is_src = true;
1884 } else if (d40c->dma_cfg.dir == STEDMA40_MEM_TO_PERIPH ||
1885 d40c->dma_cfg.dir == STEDMA40_MEM_TO_MEM) {
1886 /* dst event lines are used for logical memcpy */
1887 dev_type = d40c->dma_cfg.dst_dev_type;
1888 log_num = 2 * dev_type + 1;
1889 is_src = false;
1890 } else
1891 return -EINVAL;
1892
1893 event_group = D40_TYPE_TO_GROUP(dev_type);
1894 event_line = D40_TYPE_TO_EVENT(dev_type);
1895
1896 if (!is_log) {
1897 if (d40c->dma_cfg.dir == STEDMA40_MEM_TO_MEM) {
1898 /* Find physical half channel */
Gerald Baezaf000df82012-11-08 14:39:07 +01001899 if (d40c->dma_cfg.use_fixed_channel) {
1900 i = d40c->dma_cfg.phy_channel;
Marcin Mielczarczyk4aed79b2010-05-18 00:41:21 +02001901 if (d40_alloc_mask_set(&phys[i], is_src,
Narayanan G5cd326f2011-11-30 19:20:42 +05301902 0, is_log,
1903 first_phy_user))
Linus Walleij8d318a52010-03-30 15:33:42 +02001904 goto found_phy;
Gerald Baezaf000df82012-11-08 14:39:07 +01001905 } else {
1906 for (i = 0; i < num_phy_chans; i++) {
1907 if (d40_alloc_mask_set(&phys[i], is_src,
1908 0, is_log,
1909 first_phy_user))
1910 goto found_phy;
1911 }
Linus Walleij8d318a52010-03-30 15:33:42 +02001912 }
1913 } else
1914 for (j = 0; j < d40c->base->num_phy_chans; j += 8) {
1915 int phy_num = j + event_group * 2;
1916 for (i = phy_num; i < phy_num + 2; i++) {
Linus Walleij508849a2010-06-20 21:26:07 +00001917 if (d40_alloc_mask_set(&phys[i],
1918 is_src,
1919 0,
Narayanan G5cd326f2011-11-30 19:20:42 +05301920 is_log,
1921 first_phy_user))
Linus Walleij8d318a52010-03-30 15:33:42 +02001922 goto found_phy;
1923 }
1924 }
1925 return -EINVAL;
1926found_phy:
1927 d40c->phy_chan = &phys[i];
1928 d40c->log_num = D40_PHY_CHAN;
1929 goto out;
1930 }
1931 if (dev_type == -1)
1932 return -EINVAL;
1933
1934 /* Find logical channel */
1935 for (j = 0; j < d40c->base->num_phy_chans; j += 8) {
1936 int phy_num = j + event_group * 2;
Narayanan G5cd326f2011-11-30 19:20:42 +05301937
1938 if (d40c->dma_cfg.use_fixed_channel) {
1939 i = d40c->dma_cfg.phy_channel;
1940
1941 if ((i != phy_num) && (i != phy_num + 1)) {
1942 dev_err(chan2dev(d40c),
1943 "invalid fixed phy channel %d\n", i);
1944 return -EINVAL;
1945 }
1946
1947 if (d40_alloc_mask_set(&phys[i], is_src, event_line,
1948 is_log, first_phy_user))
1949 goto found_log;
1950
1951 dev_err(chan2dev(d40c),
1952 "could not allocate fixed phy channel %d\n", i);
1953 return -EINVAL;
1954 }
1955
Linus Walleij8d318a52010-03-30 15:33:42 +02001956 /*
1957 * Spread logical channels across all available physical rather
1958 * than pack every logical channel at the first available phy
1959 * channels.
1960 */
1961 if (is_src) {
1962 for (i = phy_num; i < phy_num + 2; i++) {
1963 if (d40_alloc_mask_set(&phys[i], is_src,
Narayanan G5cd326f2011-11-30 19:20:42 +05301964 event_line, is_log,
1965 first_phy_user))
Linus Walleij8d318a52010-03-30 15:33:42 +02001966 goto found_log;
1967 }
1968 } else {
1969 for (i = phy_num + 1; i >= phy_num; i--) {
1970 if (d40_alloc_mask_set(&phys[i], is_src,
Narayanan G5cd326f2011-11-30 19:20:42 +05301971 event_line, is_log,
1972 first_phy_user))
Linus Walleij8d318a52010-03-30 15:33:42 +02001973 goto found_log;
1974 }
1975 }
1976 }
1977 return -EINVAL;
1978
1979found_log:
1980 d40c->phy_chan = &phys[i];
1981 d40c->log_num = log_num;
1982out:
1983
1984 if (is_log)
1985 d40c->base->lookup_log_chans[d40c->log_num] = d40c;
1986 else
1987 d40c->base->lookup_phy_chans[d40c->phy_chan->num] = d40c;
1988
1989 return 0;
1990
1991}
1992
Linus Walleij8d318a52010-03-30 15:33:42 +02001993static int d40_config_memcpy(struct d40_chan *d40c)
1994{
1995 dma_cap_mask_t cap = d40c->chan.device->cap_mask;
1996
1997 if (dma_has_cap(DMA_MEMCPY, cap) && !dma_has_cap(DMA_SLAVE, cap)) {
1998 d40c->dma_cfg = *d40c->base->plat_data->memcpy_conf_log;
1999 d40c->dma_cfg.src_dev_type = STEDMA40_DEV_SRC_MEMORY;
2000 d40c->dma_cfg.dst_dev_type = d40c->base->plat_data->
2001 memcpy[d40c->chan.chan_id];
2002
2003 } else if (dma_has_cap(DMA_MEMCPY, cap) &&
2004 dma_has_cap(DMA_SLAVE, cap)) {
2005 d40c->dma_cfg = *d40c->base->plat_data->memcpy_conf_phy;
2006 } else {
Rabin Vincent6db5a8b2011-01-25 11:18:09 +01002007 chan_err(d40c, "No memcpy\n");
Linus Walleij8d318a52010-03-30 15:33:42 +02002008 return -EINVAL;
2009 }
2010
2011 return 0;
2012}
2013
Linus Walleij8d318a52010-03-30 15:33:42 +02002014static int d40_free_dma(struct d40_chan *d40c)
2015{
2016
2017 int res = 0;
Jonas Aabergd181b3a2010-06-20 21:26:38 +00002018 u32 event;
Linus Walleij8d318a52010-03-30 15:33:42 +02002019 struct d40_phy_res *phy = d40c->phy_chan;
2020 bool is_src;
2021
2022 /* Terminate all queued and active transfers */
2023 d40_term_all(d40c);
2024
2025 if (phy == NULL) {
Rabin Vincent6db5a8b2011-01-25 11:18:09 +01002026 chan_err(d40c, "phy == null\n");
Linus Walleij8d318a52010-03-30 15:33:42 +02002027 return -EINVAL;
2028 }
2029
2030 if (phy->allocated_src == D40_ALLOC_FREE &&
2031 phy->allocated_dst == D40_ALLOC_FREE) {
Rabin Vincent6db5a8b2011-01-25 11:18:09 +01002032 chan_err(d40c, "channel already free\n");
Linus Walleij8d318a52010-03-30 15:33:42 +02002033 return -EINVAL;
2034 }
2035
Linus Walleij8d318a52010-03-30 15:33:42 +02002036 if (d40c->dma_cfg.dir == STEDMA40_MEM_TO_PERIPH ||
2037 d40c->dma_cfg.dir == STEDMA40_MEM_TO_MEM) {
2038 event = D40_TYPE_TO_EVENT(d40c->dma_cfg.dst_dev_type);
Linus Walleij8d318a52010-03-30 15:33:42 +02002039 is_src = false;
2040 } else if (d40c->dma_cfg.dir == STEDMA40_PERIPH_TO_MEM) {
2041 event = D40_TYPE_TO_EVENT(d40c->dma_cfg.src_dev_type);
Linus Walleij8d318a52010-03-30 15:33:42 +02002042 is_src = true;
2043 } else {
Rabin Vincent6db5a8b2011-01-25 11:18:09 +01002044 chan_err(d40c, "Unknown direction\n");
Linus Walleij8d318a52010-03-30 15:33:42 +02002045 return -EINVAL;
2046 }
2047
Narayanan G7fb3e752011-11-17 17:26:41 +05302048 pm_runtime_get_sync(d40c->base->dev);
Linus Walleij8d318a52010-03-30 15:33:42 +02002049 res = d40_channel_execute_command(d40c, D40_DMA_STOP);
2050 if (res) {
Narayanan G1bdae6f2012-02-09 12:41:37 +05302051 chan_err(d40c, "stop failed\n");
Narayanan G7fb3e752011-11-17 17:26:41 +05302052 goto out;
Linus Walleij8d318a52010-03-30 15:33:42 +02002053 }
Narayanan G7fb3e752011-11-17 17:26:41 +05302054
Narayanan G1bdae6f2012-02-09 12:41:37 +05302055 d40_alloc_mask_free(phy, is_src, chan_is_logical(d40c) ? event : 0);
2056
2057 if (chan_is_logical(d40c))
2058 d40c->base->lookup_log_chans[d40c->log_num] = NULL;
2059 else
2060 d40c->base->lookup_phy_chans[phy->num] = NULL;
2061
Narayanan G7fb3e752011-11-17 17:26:41 +05302062 if (d40c->busy) {
2063 pm_runtime_mark_last_busy(d40c->base->dev);
2064 pm_runtime_put_autosuspend(d40c->base->dev);
2065 }
2066
2067 d40c->busy = false;
Linus Walleij8d318a52010-03-30 15:33:42 +02002068 d40c->phy_chan = NULL;
Rabin Vincentce2ca122010-10-12 13:00:49 +00002069 d40c->configured = false;
Narayanan G7fb3e752011-11-17 17:26:41 +05302070out:
Linus Walleij8d318a52010-03-30 15:33:42 +02002071
Narayanan G7fb3e752011-11-17 17:26:41 +05302072 pm_runtime_mark_last_busy(d40c->base->dev);
2073 pm_runtime_put_autosuspend(d40c->base->dev);
2074 return res;
Linus Walleij8d318a52010-03-30 15:33:42 +02002075}
2076
Jonas Aaberga5ebca42010-05-18 00:41:09 +02002077static bool d40_is_paused(struct d40_chan *d40c)
2078{
Rabin Vincent8ca84682011-01-25 11:18:07 +01002079 void __iomem *chanbase = chan_base(d40c);
Jonas Aaberga5ebca42010-05-18 00:41:09 +02002080 bool is_paused = false;
2081 unsigned long flags;
2082 void __iomem *active_reg;
2083 u32 status;
2084 u32 event;
Jonas Aaberga5ebca42010-05-18 00:41:09 +02002085
2086 spin_lock_irqsave(&d40c->lock, flags);
2087
Rabin Vincent724a8572011-01-25 11:18:08 +01002088 if (chan_is_physical(d40c)) {
Jonas Aaberga5ebca42010-05-18 00:41:09 +02002089 if (d40c->phy_chan->num % 2 == 0)
2090 active_reg = d40c->base->virtbase + D40_DREG_ACTIVE;
2091 else
2092 active_reg = d40c->base->virtbase + D40_DREG_ACTIVO;
2093
2094 status = (readl(active_reg) &
2095 D40_CHAN_POS_MASK(d40c->phy_chan->num)) >>
2096 D40_CHAN_POS(d40c->phy_chan->num);
2097 if (status == D40_DMA_SUSPENDED || status == D40_DMA_STOP)
2098 is_paused = true;
2099
2100 goto _exit;
2101 }
2102
Jonas Aaberga5ebca42010-05-18 00:41:09 +02002103 if (d40c->dma_cfg.dir == STEDMA40_MEM_TO_PERIPH ||
Jonas Aaberg9dbfbd35c2010-08-09 12:08:41 +00002104 d40c->dma_cfg.dir == STEDMA40_MEM_TO_MEM) {
Jonas Aaberga5ebca42010-05-18 00:41:09 +02002105 event = D40_TYPE_TO_EVENT(d40c->dma_cfg.dst_dev_type);
Rabin Vincent8ca84682011-01-25 11:18:07 +01002106 status = readl(chanbase + D40_CHAN_REG_SDLNK);
Jonas Aaberg9dbfbd35c2010-08-09 12:08:41 +00002107 } else if (d40c->dma_cfg.dir == STEDMA40_PERIPH_TO_MEM) {
Jonas Aaberga5ebca42010-05-18 00:41:09 +02002108 event = D40_TYPE_TO_EVENT(d40c->dma_cfg.src_dev_type);
Rabin Vincent8ca84682011-01-25 11:18:07 +01002109 status = readl(chanbase + D40_CHAN_REG_SSLNK);
Jonas Aaberg9dbfbd35c2010-08-09 12:08:41 +00002110 } else {
Rabin Vincent6db5a8b2011-01-25 11:18:09 +01002111 chan_err(d40c, "Unknown direction\n");
Jonas Aaberga5ebca42010-05-18 00:41:09 +02002112 goto _exit;
2113 }
Jonas Aaberg9dbfbd35c2010-08-09 12:08:41 +00002114
Jonas Aaberga5ebca42010-05-18 00:41:09 +02002115 status = (status & D40_EVENTLINE_MASK(event)) >>
2116 D40_EVENTLINE_POS(event);
2117
2118 if (status != D40_DMA_RUN)
2119 is_paused = true;
Jonas Aaberga5ebca42010-05-18 00:41:09 +02002120_exit:
2121 spin_unlock_irqrestore(&d40c->lock, flags);
2122 return is_paused;
2123
2124}
2125
2126
Linus Walleij8d318a52010-03-30 15:33:42 +02002127static u32 stedma40_residue(struct dma_chan *chan)
2128{
2129 struct d40_chan *d40c =
2130 container_of(chan, struct d40_chan, chan);
2131 u32 bytes_left;
2132 unsigned long flags;
2133
2134 spin_lock_irqsave(&d40c->lock, flags);
2135 bytes_left = d40_residue(d40c);
2136 spin_unlock_irqrestore(&d40c->lock, flags);
2137
2138 return bytes_left;
2139}
2140
Rabin Vincent3e3a0762011-01-25 11:18:21 +01002141static int
2142d40_prep_sg_log(struct d40_chan *chan, struct d40_desc *desc,
2143 struct scatterlist *sg_src, struct scatterlist *sg_dst,
Rabin Vincent822c5672011-01-25 11:18:28 +01002144 unsigned int sg_len, dma_addr_t src_dev_addr,
2145 dma_addr_t dst_dev_addr)
Rabin Vincent3e3a0762011-01-25 11:18:21 +01002146{
2147 struct stedma40_chan_cfg *cfg = &chan->dma_cfg;
2148 struct stedma40_half_channel_info *src_info = &cfg->src_info;
2149 struct stedma40_half_channel_info *dst_info = &cfg->dst_info;
Rabin Vincent5ed04b82011-01-25 11:18:26 +01002150 int ret;
Rabin Vincent3e3a0762011-01-25 11:18:21 +01002151
Rabin Vincent5ed04b82011-01-25 11:18:26 +01002152 ret = d40_log_sg_to_lli(sg_src, sg_len,
2153 src_dev_addr,
2154 desc->lli_log.src,
2155 chan->log_def.lcsp1,
2156 src_info->data_width,
2157 dst_info->data_width);
Rabin Vincent3e3a0762011-01-25 11:18:21 +01002158
Rabin Vincent5ed04b82011-01-25 11:18:26 +01002159 ret = d40_log_sg_to_lli(sg_dst, sg_len,
2160 dst_dev_addr,
2161 desc->lli_log.dst,
2162 chan->log_def.lcsp3,
2163 dst_info->data_width,
2164 src_info->data_width);
Rabin Vincent3e3a0762011-01-25 11:18:21 +01002165
Rabin Vincent5ed04b82011-01-25 11:18:26 +01002166 return ret < 0 ? ret : 0;
Rabin Vincent3e3a0762011-01-25 11:18:21 +01002167}
2168
2169static int
2170d40_prep_sg_phy(struct d40_chan *chan, struct d40_desc *desc,
2171 struct scatterlist *sg_src, struct scatterlist *sg_dst,
Rabin Vincent822c5672011-01-25 11:18:28 +01002172 unsigned int sg_len, dma_addr_t src_dev_addr,
2173 dma_addr_t dst_dev_addr)
Rabin Vincent3e3a0762011-01-25 11:18:21 +01002174{
Rabin Vincent3e3a0762011-01-25 11:18:21 +01002175 struct stedma40_chan_cfg *cfg = &chan->dma_cfg;
2176 struct stedma40_half_channel_info *src_info = &cfg->src_info;
2177 struct stedma40_half_channel_info *dst_info = &cfg->dst_info;
Rabin Vincent0c842b52011-01-25 11:18:35 +01002178 unsigned long flags = 0;
Rabin Vincent3e3a0762011-01-25 11:18:21 +01002179 int ret;
2180
Rabin Vincent0c842b52011-01-25 11:18:35 +01002181 if (desc->cyclic)
2182 flags |= LLI_CYCLIC | LLI_TERM_INT;
2183
Rabin Vincent3e3a0762011-01-25 11:18:21 +01002184 ret = d40_phy_sg_to_lli(sg_src, sg_len, src_dev_addr,
2185 desc->lli_phy.src,
2186 virt_to_phys(desc->lli_phy.src),
2187 chan->src_def_cfg,
Rabin Vincent0c842b52011-01-25 11:18:35 +01002188 src_info, dst_info, flags);
Rabin Vincent3e3a0762011-01-25 11:18:21 +01002189
2190 ret = d40_phy_sg_to_lli(sg_dst, sg_len, dst_dev_addr,
2191 desc->lli_phy.dst,
2192 virt_to_phys(desc->lli_phy.dst),
2193 chan->dst_def_cfg,
Rabin Vincent0c842b52011-01-25 11:18:35 +01002194 dst_info, src_info, flags);
Rabin Vincent3e3a0762011-01-25 11:18:21 +01002195
2196 dma_sync_single_for_device(chan->base->dev, desc->lli_pool.dma_addr,
2197 desc->lli_pool.size, DMA_TO_DEVICE);
2198
2199 return ret < 0 ? ret : 0;
2200}
2201
2202
Rabin Vincent5f811582011-01-25 11:18:18 +01002203static struct d40_desc *
2204d40_prep_desc(struct d40_chan *chan, struct scatterlist *sg,
2205 unsigned int sg_len, unsigned long dma_flags)
2206{
2207 struct stedma40_chan_cfg *cfg = &chan->dma_cfg;
2208 struct d40_desc *desc;
Rabin Vincentdbd88782011-01-25 11:18:19 +01002209 int ret;
Rabin Vincent5f811582011-01-25 11:18:18 +01002210
2211 desc = d40_desc_get(chan);
2212 if (!desc)
2213 return NULL;
2214
2215 desc->lli_len = d40_sg_2_dmalen(sg, sg_len, cfg->src_info.data_width,
2216 cfg->dst_info.data_width);
2217 if (desc->lli_len < 0) {
2218 chan_err(chan, "Unaligned size\n");
Rabin Vincentdbd88782011-01-25 11:18:19 +01002219 goto err;
Rabin Vincent5f811582011-01-25 11:18:18 +01002220 }
2221
Rabin Vincentdbd88782011-01-25 11:18:19 +01002222 ret = d40_pool_lli_alloc(chan, desc, desc->lli_len);
2223 if (ret < 0) {
2224 chan_err(chan, "Could not allocate lli\n");
2225 goto err;
2226 }
2227
2228
Rabin Vincent5f811582011-01-25 11:18:18 +01002229 desc->lli_current = 0;
2230 desc->txd.flags = dma_flags;
2231 desc->txd.tx_submit = d40_tx_submit;
2232
2233 dma_async_tx_descriptor_init(&desc->txd, &chan->chan);
2234
2235 return desc;
Rabin Vincentdbd88782011-01-25 11:18:19 +01002236
2237err:
2238 d40_desc_free(chan, desc);
2239 return NULL;
Rabin Vincent5f811582011-01-25 11:18:18 +01002240}
2241
Rabin Vincentcade1d32011-01-25 11:18:23 +01002242static dma_addr_t
Vinod Kouldb8196d2011-10-13 22:34:23 +05302243d40_get_dev_addr(struct d40_chan *chan, enum dma_transfer_direction direction)
Linus Walleij8d318a52010-03-30 15:33:42 +02002244{
Rabin Vincentcade1d32011-01-25 11:18:23 +01002245 struct stedma40_platform_data *plat = chan->base->plat_data;
2246 struct stedma40_chan_cfg *cfg = &chan->dma_cfg;
Philippe Langlais711b9ce2011-05-07 17:09:43 +02002247 dma_addr_t addr = 0;
Linus Walleij8d318a52010-03-30 15:33:42 +02002248
Rabin Vincentcade1d32011-01-25 11:18:23 +01002249 if (chan->runtime_addr)
2250 return chan->runtime_addr;
2251
Vinod Kouldb8196d2011-10-13 22:34:23 +05302252 if (direction == DMA_DEV_TO_MEM)
Rabin Vincentcade1d32011-01-25 11:18:23 +01002253 addr = plat->dev_rx[cfg->src_dev_type];
Vinod Kouldb8196d2011-10-13 22:34:23 +05302254 else if (direction == DMA_MEM_TO_DEV)
Rabin Vincentcade1d32011-01-25 11:18:23 +01002255 addr = plat->dev_tx[cfg->dst_dev_type];
2256
2257 return addr;
2258}
2259
2260static struct dma_async_tx_descriptor *
2261d40_prep_sg(struct dma_chan *dchan, struct scatterlist *sg_src,
2262 struct scatterlist *sg_dst, unsigned int sg_len,
Vinod Kouldb8196d2011-10-13 22:34:23 +05302263 enum dma_transfer_direction direction, unsigned long dma_flags)
Rabin Vincentcade1d32011-01-25 11:18:23 +01002264{
2265 struct d40_chan *chan = container_of(dchan, struct d40_chan, chan);
Rabin Vincent822c5672011-01-25 11:18:28 +01002266 dma_addr_t src_dev_addr = 0;
2267 dma_addr_t dst_dev_addr = 0;
Rabin Vincentcade1d32011-01-25 11:18:23 +01002268 struct d40_desc *desc;
2269 unsigned long flags;
2270 int ret;
2271
2272 if (!chan->phy_chan) {
2273 chan_err(chan, "Cannot prepare unallocated channel\n");
2274 return NULL;
Jonas Aaberg0d0f6b82010-06-20 21:25:31 +00002275 }
2276
Rabin Vincent0c842b52011-01-25 11:18:35 +01002277
Rabin Vincentcade1d32011-01-25 11:18:23 +01002278 spin_lock_irqsave(&chan->lock, flags);
Linus Walleij8d318a52010-03-30 15:33:42 +02002279
Rabin Vincentcade1d32011-01-25 11:18:23 +01002280 desc = d40_prep_desc(chan, sg_src, sg_len, dma_flags);
2281 if (desc == NULL)
Linus Walleij8d318a52010-03-30 15:33:42 +02002282 goto err;
2283
Rabin Vincent0c842b52011-01-25 11:18:35 +01002284 if (sg_next(&sg_src[sg_len - 1]) == sg_src)
2285 desc->cyclic = true;
2286
Linus Walleij7e426da2012-04-12 18:12:52 +02002287 if (direction != DMA_TRANS_NONE) {
Rabin Vincent822c5672011-01-25 11:18:28 +01002288 dma_addr_t dev_addr = d40_get_dev_addr(chan, direction);
2289
Vinod Kouldb8196d2011-10-13 22:34:23 +05302290 if (direction == DMA_DEV_TO_MEM)
Rabin Vincent822c5672011-01-25 11:18:28 +01002291 src_dev_addr = dev_addr;
Vinod Kouldb8196d2011-10-13 22:34:23 +05302292 else if (direction == DMA_MEM_TO_DEV)
Rabin Vincent822c5672011-01-25 11:18:28 +01002293 dst_dev_addr = dev_addr;
2294 }
Rabin Vincentcade1d32011-01-25 11:18:23 +01002295
2296 if (chan_is_logical(chan))
2297 ret = d40_prep_sg_log(chan, desc, sg_src, sg_dst,
Rabin Vincent822c5672011-01-25 11:18:28 +01002298 sg_len, src_dev_addr, dst_dev_addr);
Rabin Vincentcade1d32011-01-25 11:18:23 +01002299 else
2300 ret = d40_prep_sg_phy(chan, desc, sg_src, sg_dst,
Rabin Vincent822c5672011-01-25 11:18:28 +01002301 sg_len, src_dev_addr, dst_dev_addr);
Rabin Vincentcade1d32011-01-25 11:18:23 +01002302
2303 if (ret) {
2304 chan_err(chan, "Failed to prepare %s sg job: %d\n",
2305 chan_is_logical(chan) ? "log" : "phy", ret);
2306 goto err;
Linus Walleij8d318a52010-03-30 15:33:42 +02002307 }
2308
Per Forlin82babbb362011-08-29 13:33:35 +02002309 /*
2310 * add descriptor to the prepare queue in order to be able
2311 * to free them later in terminate_all
2312 */
2313 list_add_tail(&desc->node, &chan->prepare_queue);
2314
Rabin Vincentcade1d32011-01-25 11:18:23 +01002315 spin_unlock_irqrestore(&chan->lock, flags);
Linus Walleij8d318a52010-03-30 15:33:42 +02002316
Rabin Vincentcade1d32011-01-25 11:18:23 +01002317 return &desc->txd;
2318
Linus Walleij8d318a52010-03-30 15:33:42 +02002319err:
Rabin Vincentcade1d32011-01-25 11:18:23 +01002320 if (desc)
2321 d40_desc_free(chan, desc);
2322 spin_unlock_irqrestore(&chan->lock, flags);
Linus Walleij8d318a52010-03-30 15:33:42 +02002323 return NULL;
2324}
Linus Walleij8d318a52010-03-30 15:33:42 +02002325
2326bool stedma40_filter(struct dma_chan *chan, void *data)
2327{
2328 struct stedma40_chan_cfg *info = data;
2329 struct d40_chan *d40c =
2330 container_of(chan, struct d40_chan, chan);
2331 int err;
2332
2333 if (data) {
2334 err = d40_validate_conf(d40c, info);
2335 if (!err)
2336 d40c->dma_cfg = *info;
2337 } else
2338 err = d40_config_memcpy(d40c);
2339
Rabin Vincentce2ca122010-10-12 13:00:49 +00002340 if (!err)
2341 d40c->configured = true;
2342
Linus Walleij8d318a52010-03-30 15:33:42 +02002343 return err == 0;
2344}
2345EXPORT_SYMBOL(stedma40_filter);
2346
Rabin Vincentac2c0a32011-01-25 11:18:11 +01002347static void __d40_set_prio_rt(struct d40_chan *d40c, int dev_type, bool src)
2348{
2349 bool realtime = d40c->dma_cfg.realtime;
2350 bool highprio = d40c->dma_cfg.high_priority;
Tong Liu3cb645d2012-09-26 10:07:30 +00002351 u32 rtreg;
Rabin Vincentac2c0a32011-01-25 11:18:11 +01002352 u32 event = D40_TYPE_TO_EVENT(dev_type);
2353 u32 group = D40_TYPE_TO_GROUP(dev_type);
2354 u32 bit = 1 << event;
Rabin Vincentccc3d692012-05-17 13:47:38 +05302355 u32 prioreg;
Tong Liu3cb645d2012-09-26 10:07:30 +00002356 struct d40_gen_dmac *dmac = &d40c->base->gen_dmac;
Rabin Vincentccc3d692012-05-17 13:47:38 +05302357
Tong Liu3cb645d2012-09-26 10:07:30 +00002358 rtreg = realtime ? dmac->realtime_en : dmac->realtime_clear;
Rabin Vincentccc3d692012-05-17 13:47:38 +05302359 /*
2360 * Due to a hardware bug, in some cases a logical channel triggered by
2361 * a high priority destination event line can generate extra packet
2362 * transactions.
2363 *
2364 * The workaround is to not set the high priority level for the
2365 * destination event lines that trigger logical channels.
2366 */
2367 if (!src && chan_is_logical(d40c))
2368 highprio = false;
2369
Tong Liu3cb645d2012-09-26 10:07:30 +00002370 prioreg = highprio ? dmac->high_prio_en : dmac->high_prio_clear;
Rabin Vincentac2c0a32011-01-25 11:18:11 +01002371
2372 /* Destination event lines are stored in the upper halfword */
2373 if (!src)
2374 bit <<= 16;
2375
2376 writel(bit, d40c->base->virtbase + prioreg + group * 4);
2377 writel(bit, d40c->base->virtbase + rtreg + group * 4);
2378}
2379
2380static void d40_set_prio_realtime(struct d40_chan *d40c)
2381{
2382 if (d40c->base->rev < 3)
2383 return;
2384
2385 if ((d40c->dma_cfg.dir == STEDMA40_PERIPH_TO_MEM) ||
2386 (d40c->dma_cfg.dir == STEDMA40_PERIPH_TO_PERIPH))
2387 __d40_set_prio_rt(d40c, d40c->dma_cfg.src_dev_type, true);
2388
2389 if ((d40c->dma_cfg.dir == STEDMA40_MEM_TO_PERIPH) ||
2390 (d40c->dma_cfg.dir == STEDMA40_PERIPH_TO_PERIPH))
2391 __d40_set_prio_rt(d40c, d40c->dma_cfg.dst_dev_type, false);
2392}
2393
Linus Walleij8d318a52010-03-30 15:33:42 +02002394/* DMA ENGINE functions */
2395static int d40_alloc_chan_resources(struct dma_chan *chan)
2396{
2397 int err;
2398 unsigned long flags;
2399 struct d40_chan *d40c =
2400 container_of(chan, struct d40_chan, chan);
Linus Walleijef1872e2010-06-20 21:24:52 +00002401 bool is_free_phy;
Linus Walleij8d318a52010-03-30 15:33:42 +02002402 spin_lock_irqsave(&d40c->lock, flags);
2403
Russell King - ARM Linuxd3ee98cdc2012-03-06 22:35:47 +00002404 dma_cookie_init(chan);
Linus Walleij8d318a52010-03-30 15:33:42 +02002405
Rabin Vincentce2ca122010-10-12 13:00:49 +00002406 /* If no dma configuration is set use default configuration (memcpy) */
2407 if (!d40c->configured) {
Linus Walleij8d318a52010-03-30 15:33:42 +02002408 err = d40_config_memcpy(d40c);
Jonas Aabergff0b12b2010-06-20 21:25:15 +00002409 if (err) {
Rabin Vincent6db5a8b2011-01-25 11:18:09 +01002410 chan_err(d40c, "Failed to configure memcpy channel\n");
Jonas Aabergff0b12b2010-06-20 21:25:15 +00002411 goto fail;
2412 }
Linus Walleij8d318a52010-03-30 15:33:42 +02002413 }
2414
Narayanan G5cd326f2011-11-30 19:20:42 +05302415 err = d40_allocate_channel(d40c, &is_free_phy);
Linus Walleij8d318a52010-03-30 15:33:42 +02002416 if (err) {
Rabin Vincent6db5a8b2011-01-25 11:18:09 +01002417 chan_err(d40c, "Failed to allocate channel\n");
Narayanan G7fb3e752011-11-17 17:26:41 +05302418 d40c->configured = false;
Jonas Aabergff0b12b2010-06-20 21:25:15 +00002419 goto fail;
Linus Walleij8d318a52010-03-30 15:33:42 +02002420 }
2421
Narayanan G7fb3e752011-11-17 17:26:41 +05302422 pm_runtime_get_sync(d40c->base->dev);
Linus Walleijef1872e2010-06-20 21:24:52 +00002423 /* Fill in basic CFG register values */
2424 d40_phy_cfg(&d40c->dma_cfg, &d40c->src_def_cfg,
Rabin Vincent724a8572011-01-25 11:18:08 +01002425 &d40c->dst_def_cfg, chan_is_logical(d40c));
Linus Walleijef1872e2010-06-20 21:24:52 +00002426
Rabin Vincentac2c0a32011-01-25 11:18:11 +01002427 d40_set_prio_realtime(d40c);
2428
Rabin Vincent724a8572011-01-25 11:18:08 +01002429 if (chan_is_logical(d40c)) {
Linus Walleijef1872e2010-06-20 21:24:52 +00002430 d40_log_cfg(&d40c->dma_cfg,
2431 &d40c->log_def.lcsp1, &d40c->log_def.lcsp3);
2432
2433 if (d40c->dma_cfg.dir == STEDMA40_PERIPH_TO_MEM)
2434 d40c->lcpa = d40c->base->lcpa_base +
2435 d40c->dma_cfg.src_dev_type * D40_LCPA_CHAN_SIZE;
2436 else
2437 d40c->lcpa = d40c->base->lcpa_base +
2438 d40c->dma_cfg.dst_dev_type *
2439 D40_LCPA_CHAN_SIZE + D40_LCPA_CHAN_DST_DELTA;
2440 }
2441
Narayanan G5cd326f2011-11-30 19:20:42 +05302442 dev_dbg(chan2dev(d40c), "allocated %s channel (phy %d%s)\n",
2443 chan_is_logical(d40c) ? "logical" : "physical",
2444 d40c->phy_chan->num,
2445 d40c->dma_cfg.use_fixed_channel ? ", fixed" : "");
2446
2447
Linus Walleijef1872e2010-06-20 21:24:52 +00002448 /*
2449 * Only write channel configuration to the DMA if the physical
2450 * resource is free. In case of multiple logical channels
2451 * on the same physical resource, only the first write is necessary.
2452 */
Jonas Aabergb55912c2010-08-09 12:08:02 +00002453 if (is_free_phy)
2454 d40_config_write(d40c);
Jonas Aabergff0b12b2010-06-20 21:25:15 +00002455fail:
Narayanan G7fb3e752011-11-17 17:26:41 +05302456 pm_runtime_mark_last_busy(d40c->base->dev);
2457 pm_runtime_put_autosuspend(d40c->base->dev);
Linus Walleij8d318a52010-03-30 15:33:42 +02002458 spin_unlock_irqrestore(&d40c->lock, flags);
Jonas Aabergff0b12b2010-06-20 21:25:15 +00002459 return err;
Linus Walleij8d318a52010-03-30 15:33:42 +02002460}
2461
2462static void d40_free_chan_resources(struct dma_chan *chan)
2463{
2464 struct d40_chan *d40c =
2465 container_of(chan, struct d40_chan, chan);
2466 int err;
2467 unsigned long flags;
2468
Jonas Aaberg0d0f6b82010-06-20 21:25:31 +00002469 if (d40c->phy_chan == NULL) {
Rabin Vincent6db5a8b2011-01-25 11:18:09 +01002470 chan_err(d40c, "Cannot free unallocated channel\n");
Jonas Aaberg0d0f6b82010-06-20 21:25:31 +00002471 return;
2472 }
2473
2474
Linus Walleij8d318a52010-03-30 15:33:42 +02002475 spin_lock_irqsave(&d40c->lock, flags);
2476
2477 err = d40_free_dma(d40c);
2478
2479 if (err)
Rabin Vincent6db5a8b2011-01-25 11:18:09 +01002480 chan_err(d40c, "Failed to free channel\n");
Linus Walleij8d318a52010-03-30 15:33:42 +02002481 spin_unlock_irqrestore(&d40c->lock, flags);
2482}
2483
2484static struct dma_async_tx_descriptor *d40_prep_memcpy(struct dma_chan *chan,
2485 dma_addr_t dst,
2486 dma_addr_t src,
2487 size_t size,
Jonas Aaberg2a614342010-06-20 21:25:24 +00002488 unsigned long dma_flags)
Linus Walleij8d318a52010-03-30 15:33:42 +02002489{
Rabin Vincent95944c62011-01-25 11:18:17 +01002490 struct scatterlist dst_sg;
2491 struct scatterlist src_sg;
Linus Walleij8d318a52010-03-30 15:33:42 +02002492
Rabin Vincent95944c62011-01-25 11:18:17 +01002493 sg_init_table(&dst_sg, 1);
2494 sg_init_table(&src_sg, 1);
Jonas Aaberg0d0f6b82010-06-20 21:25:31 +00002495
Rabin Vincent95944c62011-01-25 11:18:17 +01002496 sg_dma_address(&dst_sg) = dst;
2497 sg_dma_address(&src_sg) = src;
Linus Walleij8d318a52010-03-30 15:33:42 +02002498
Rabin Vincent95944c62011-01-25 11:18:17 +01002499 sg_dma_len(&dst_sg) = size;
2500 sg_dma_len(&src_sg) = size;
Linus Walleij8d318a52010-03-30 15:33:42 +02002501
Rabin Vincentcade1d32011-01-25 11:18:23 +01002502 return d40_prep_sg(chan, &src_sg, &dst_sg, 1, DMA_NONE, dma_flags);
Linus Walleij8d318a52010-03-30 15:33:42 +02002503}
2504
Ira Snyder0d688662010-09-30 11:46:47 +00002505static struct dma_async_tx_descriptor *
Rabin Vincentcade1d32011-01-25 11:18:23 +01002506d40_prep_memcpy_sg(struct dma_chan *chan,
2507 struct scatterlist *dst_sg, unsigned int dst_nents,
2508 struct scatterlist *src_sg, unsigned int src_nents,
2509 unsigned long dma_flags)
Ira Snyder0d688662010-09-30 11:46:47 +00002510{
2511 if (dst_nents != src_nents)
2512 return NULL;
2513
Rabin Vincentcade1d32011-01-25 11:18:23 +01002514 return d40_prep_sg(chan, src_sg, dst_sg, src_nents, DMA_NONE, dma_flags);
Rabin Vincent00ac0342011-01-25 11:18:20 +01002515}
2516
Linus Walleij8d318a52010-03-30 15:33:42 +02002517static struct dma_async_tx_descriptor *d40_prep_slave_sg(struct dma_chan *chan,
2518 struct scatterlist *sgl,
2519 unsigned int sg_len,
Vinod Kouldb8196d2011-10-13 22:34:23 +05302520 enum dma_transfer_direction direction,
Alexandre Bounine185ecb52012-03-08 15:35:13 -05002521 unsigned long dma_flags,
2522 void *context)
Linus Walleij8d318a52010-03-30 15:33:42 +02002523{
Vinod Kouldb8196d2011-10-13 22:34:23 +05302524 if (direction != DMA_DEV_TO_MEM && direction != DMA_MEM_TO_DEV)
Rabin Vincent00ac0342011-01-25 11:18:20 +01002525 return NULL;
2526
Rabin Vincentcade1d32011-01-25 11:18:23 +01002527 return d40_prep_sg(chan, sgl, sgl, sg_len, direction, dma_flags);
Linus Walleij8d318a52010-03-30 15:33:42 +02002528}
2529
Rabin Vincent0c842b52011-01-25 11:18:35 +01002530static struct dma_async_tx_descriptor *
2531dma40_prep_dma_cyclic(struct dma_chan *chan, dma_addr_t dma_addr,
2532 size_t buf_len, size_t period_len,
Peter Ujfalusiec8b5e42012-09-14 15:05:47 +03002533 enum dma_transfer_direction direction, unsigned long flags,
2534 void *context)
Rabin Vincent0c842b52011-01-25 11:18:35 +01002535{
2536 unsigned int periods = buf_len / period_len;
2537 struct dma_async_tx_descriptor *txd;
2538 struct scatterlist *sg;
2539 int i;
2540
Robert Marklund79ca7ec2011-06-27 11:33:24 +02002541 sg = kcalloc(periods + 1, sizeof(struct scatterlist), GFP_NOWAIT);
Rabin Vincent0c842b52011-01-25 11:18:35 +01002542 for (i = 0; i < periods; i++) {
2543 sg_dma_address(&sg[i]) = dma_addr;
2544 sg_dma_len(&sg[i]) = period_len;
2545 dma_addr += period_len;
2546 }
2547
2548 sg[periods].offset = 0;
Lars-Peter Clausenfdaf9c42012-04-25 20:50:52 +02002549 sg_dma_len(&sg[periods]) = 0;
Rabin Vincent0c842b52011-01-25 11:18:35 +01002550 sg[periods].page_link =
2551 ((unsigned long)sg | 0x01) & ~0x02;
2552
2553 txd = d40_prep_sg(chan, sg, sg, periods, direction,
2554 DMA_PREP_INTERRUPT);
2555
2556 kfree(sg);
2557
2558 return txd;
2559}
2560
Linus Walleij8d318a52010-03-30 15:33:42 +02002561static enum dma_status d40_tx_status(struct dma_chan *chan,
2562 dma_cookie_t cookie,
2563 struct dma_tx_state *txstate)
2564{
2565 struct d40_chan *d40c = container_of(chan, struct d40_chan, chan);
Russell King - ARM Linux96a2af42012-03-06 22:35:27 +00002566 enum dma_status ret;
Linus Walleij8d318a52010-03-30 15:33:42 +02002567
Jonas Aaberg0d0f6b82010-06-20 21:25:31 +00002568 if (d40c->phy_chan == NULL) {
Rabin Vincent6db5a8b2011-01-25 11:18:09 +01002569 chan_err(d40c, "Cannot read status of unallocated channel\n");
Jonas Aaberg0d0f6b82010-06-20 21:25:31 +00002570 return -EINVAL;
2571 }
2572
Russell King - ARM Linux96a2af42012-03-06 22:35:27 +00002573 ret = dma_cookie_status(chan, cookie, txstate);
2574 if (ret != DMA_SUCCESS)
2575 dma_set_residue(txstate, stedma40_residue(chan));
Linus Walleij8d318a52010-03-30 15:33:42 +02002576
Jonas Aaberga5ebca42010-05-18 00:41:09 +02002577 if (d40_is_paused(d40c))
2578 ret = DMA_PAUSED;
Linus Walleij8d318a52010-03-30 15:33:42 +02002579
2580 return ret;
2581}
2582
2583static void d40_issue_pending(struct dma_chan *chan)
2584{
2585 struct d40_chan *d40c = container_of(chan, struct d40_chan, chan);
2586 unsigned long flags;
2587
Jonas Aaberg0d0f6b82010-06-20 21:25:31 +00002588 if (d40c->phy_chan == NULL) {
Rabin Vincent6db5a8b2011-01-25 11:18:09 +01002589 chan_err(d40c, "Channel is not allocated!\n");
Jonas Aaberg0d0f6b82010-06-20 21:25:31 +00002590 return;
2591 }
2592
Linus Walleij8d318a52010-03-30 15:33:42 +02002593 spin_lock_irqsave(&d40c->lock, flags);
2594
Per Forlina8f30672011-06-26 23:29:52 +02002595 list_splice_tail_init(&d40c->pending_queue, &d40c->queue);
2596
2597 /* Busy means that queued jobs are already being processed */
Linus Walleij8d318a52010-03-30 15:33:42 +02002598 if (!d40c->busy)
2599 (void) d40_queue_start(d40c);
2600
2601 spin_unlock_irqrestore(&d40c->lock, flags);
2602}
2603
Narayanan G1bdae6f2012-02-09 12:41:37 +05302604static void d40_terminate_all(struct dma_chan *chan)
2605{
2606 unsigned long flags;
2607 struct d40_chan *d40c = container_of(chan, struct d40_chan, chan);
2608 int ret;
2609
2610 spin_lock_irqsave(&d40c->lock, flags);
2611
2612 pm_runtime_get_sync(d40c->base->dev);
2613 ret = d40_channel_execute_command(d40c, D40_DMA_STOP);
2614 if (ret)
2615 chan_err(d40c, "Failed to stop channel\n");
2616
2617 d40_term_all(d40c);
2618 pm_runtime_mark_last_busy(d40c->base->dev);
2619 pm_runtime_put_autosuspend(d40c->base->dev);
2620 if (d40c->busy) {
2621 pm_runtime_mark_last_busy(d40c->base->dev);
2622 pm_runtime_put_autosuspend(d40c->base->dev);
2623 }
2624 d40c->busy = false;
2625
2626 spin_unlock_irqrestore(&d40c->lock, flags);
2627}
2628
Rabin Vincent98ca5282011-06-27 11:33:38 +02002629static int
2630dma40_config_to_halfchannel(struct d40_chan *d40c,
2631 struct stedma40_half_channel_info *info,
2632 enum dma_slave_buswidth width,
2633 u32 maxburst)
2634{
2635 enum stedma40_periph_data_width addr_width;
2636 int psize;
2637
2638 switch (width) {
2639 case DMA_SLAVE_BUSWIDTH_1_BYTE:
2640 addr_width = STEDMA40_BYTE_WIDTH;
2641 break;
2642 case DMA_SLAVE_BUSWIDTH_2_BYTES:
2643 addr_width = STEDMA40_HALFWORD_WIDTH;
2644 break;
2645 case DMA_SLAVE_BUSWIDTH_4_BYTES:
2646 addr_width = STEDMA40_WORD_WIDTH;
2647 break;
2648 case DMA_SLAVE_BUSWIDTH_8_BYTES:
2649 addr_width = STEDMA40_DOUBLEWORD_WIDTH;
2650 break;
2651 default:
2652 dev_err(d40c->base->dev,
2653 "illegal peripheral address width "
2654 "requested (%d)\n",
2655 width);
2656 return -EINVAL;
2657 }
2658
2659 if (chan_is_logical(d40c)) {
2660 if (maxburst >= 16)
2661 psize = STEDMA40_PSIZE_LOG_16;
2662 else if (maxburst >= 8)
2663 psize = STEDMA40_PSIZE_LOG_8;
2664 else if (maxburst >= 4)
2665 psize = STEDMA40_PSIZE_LOG_4;
2666 else
2667 psize = STEDMA40_PSIZE_LOG_1;
2668 } else {
2669 if (maxburst >= 16)
2670 psize = STEDMA40_PSIZE_PHY_16;
2671 else if (maxburst >= 8)
2672 psize = STEDMA40_PSIZE_PHY_8;
2673 else if (maxburst >= 4)
2674 psize = STEDMA40_PSIZE_PHY_4;
2675 else
2676 psize = STEDMA40_PSIZE_PHY_1;
2677 }
2678
2679 info->data_width = addr_width;
2680 info->psize = psize;
2681 info->flow_ctrl = STEDMA40_NO_FLOW_CTRL;
2682
2683 return 0;
2684}
2685
Linus Walleij95e14002010-08-04 13:37:45 +02002686/* Runtime reconfiguration extension */
Rabin Vincent98ca5282011-06-27 11:33:38 +02002687static int d40_set_runtime_config(struct dma_chan *chan,
2688 struct dma_slave_config *config)
Linus Walleij95e14002010-08-04 13:37:45 +02002689{
2690 struct d40_chan *d40c = container_of(chan, struct d40_chan, chan);
2691 struct stedma40_chan_cfg *cfg = &d40c->dma_cfg;
Rabin Vincent98ca5282011-06-27 11:33:38 +02002692 enum dma_slave_buswidth src_addr_width, dst_addr_width;
Linus Walleij95e14002010-08-04 13:37:45 +02002693 dma_addr_t config_addr;
Rabin Vincent98ca5282011-06-27 11:33:38 +02002694 u32 src_maxburst, dst_maxburst;
2695 int ret;
2696
2697 src_addr_width = config->src_addr_width;
2698 src_maxburst = config->src_maxburst;
2699 dst_addr_width = config->dst_addr_width;
2700 dst_maxburst = config->dst_maxburst;
Linus Walleij95e14002010-08-04 13:37:45 +02002701
Vinod Kouldb8196d2011-10-13 22:34:23 +05302702 if (config->direction == DMA_DEV_TO_MEM) {
Linus Walleij95e14002010-08-04 13:37:45 +02002703 dma_addr_t dev_addr_rx =
2704 d40c->base->plat_data->dev_rx[cfg->src_dev_type];
2705
2706 config_addr = config->src_addr;
2707 if (dev_addr_rx)
2708 dev_dbg(d40c->base->dev,
2709 "channel has a pre-wired RX address %08x "
2710 "overriding with %08x\n",
2711 dev_addr_rx, config_addr);
2712 if (cfg->dir != STEDMA40_PERIPH_TO_MEM)
2713 dev_dbg(d40c->base->dev,
2714 "channel was not configured for peripheral "
2715 "to memory transfer (%d) overriding\n",
2716 cfg->dir);
2717 cfg->dir = STEDMA40_PERIPH_TO_MEM;
2718
Rabin Vincent98ca5282011-06-27 11:33:38 +02002719 /* Configure the memory side */
2720 if (dst_addr_width == DMA_SLAVE_BUSWIDTH_UNDEFINED)
2721 dst_addr_width = src_addr_width;
2722 if (dst_maxburst == 0)
2723 dst_maxburst = src_maxburst;
Linus Walleij95e14002010-08-04 13:37:45 +02002724
Vinod Kouldb8196d2011-10-13 22:34:23 +05302725 } else if (config->direction == DMA_MEM_TO_DEV) {
Linus Walleij95e14002010-08-04 13:37:45 +02002726 dma_addr_t dev_addr_tx =
2727 d40c->base->plat_data->dev_tx[cfg->dst_dev_type];
2728
2729 config_addr = config->dst_addr;
2730 if (dev_addr_tx)
2731 dev_dbg(d40c->base->dev,
2732 "channel has a pre-wired TX address %08x "
2733 "overriding with %08x\n",
2734 dev_addr_tx, config_addr);
2735 if (cfg->dir != STEDMA40_MEM_TO_PERIPH)
2736 dev_dbg(d40c->base->dev,
2737 "channel was not configured for memory "
2738 "to peripheral transfer (%d) overriding\n",
2739 cfg->dir);
2740 cfg->dir = STEDMA40_MEM_TO_PERIPH;
2741
Rabin Vincent98ca5282011-06-27 11:33:38 +02002742 /* Configure the memory side */
2743 if (src_addr_width == DMA_SLAVE_BUSWIDTH_UNDEFINED)
2744 src_addr_width = dst_addr_width;
2745 if (src_maxburst == 0)
2746 src_maxburst = dst_maxburst;
Linus Walleij95e14002010-08-04 13:37:45 +02002747 } else {
2748 dev_err(d40c->base->dev,
2749 "unrecognized channel direction %d\n",
2750 config->direction);
Rabin Vincent98ca5282011-06-27 11:33:38 +02002751 return -EINVAL;
Linus Walleij95e14002010-08-04 13:37:45 +02002752 }
2753
Rabin Vincent98ca5282011-06-27 11:33:38 +02002754 if (src_maxburst * src_addr_width != dst_maxburst * dst_addr_width) {
Linus Walleij95e14002010-08-04 13:37:45 +02002755 dev_err(d40c->base->dev,
Rabin Vincent98ca5282011-06-27 11:33:38 +02002756 "src/dst width/maxburst mismatch: %d*%d != %d*%d\n",
2757 src_maxburst,
2758 src_addr_width,
2759 dst_maxburst,
2760 dst_addr_width);
2761 return -EINVAL;
Linus Walleij95e14002010-08-04 13:37:45 +02002762 }
2763
Per Forlin92bb6cd2011-10-13 12:11:36 +02002764 if (src_maxburst > 16) {
2765 src_maxburst = 16;
2766 dst_maxburst = src_maxburst * src_addr_width / dst_addr_width;
2767 } else if (dst_maxburst > 16) {
2768 dst_maxburst = 16;
2769 src_maxburst = dst_maxburst * dst_addr_width / src_addr_width;
2770 }
2771
Rabin Vincent98ca5282011-06-27 11:33:38 +02002772 ret = dma40_config_to_halfchannel(d40c, &cfg->src_info,
2773 src_addr_width,
2774 src_maxburst);
2775 if (ret)
2776 return ret;
Linus Walleij95e14002010-08-04 13:37:45 +02002777
Rabin Vincent98ca5282011-06-27 11:33:38 +02002778 ret = dma40_config_to_halfchannel(d40c, &cfg->dst_info,
2779 dst_addr_width,
2780 dst_maxburst);
2781 if (ret)
2782 return ret;
Linus Walleij95e14002010-08-04 13:37:45 +02002783
Per Forlina59670a2010-10-06 09:05:27 +00002784 /* Fill in register values */
Rabin Vincent724a8572011-01-25 11:18:08 +01002785 if (chan_is_logical(d40c))
Per Forlina59670a2010-10-06 09:05:27 +00002786 d40_log_cfg(cfg, &d40c->log_def.lcsp1, &d40c->log_def.lcsp3);
2787 else
2788 d40_phy_cfg(cfg, &d40c->src_def_cfg,
2789 &d40c->dst_def_cfg, false);
2790
Linus Walleij95e14002010-08-04 13:37:45 +02002791 /* These settings will take precedence later */
2792 d40c->runtime_addr = config_addr;
2793 d40c->runtime_direction = config->direction;
2794 dev_dbg(d40c->base->dev,
Rabin Vincent98ca5282011-06-27 11:33:38 +02002795 "configured channel %s for %s, data width %d/%d, "
2796 "maxburst %d/%d elements, LE, no flow control\n",
Linus Walleij95e14002010-08-04 13:37:45 +02002797 dma_chan_name(chan),
Vinod Kouldb8196d2011-10-13 22:34:23 +05302798 (config->direction == DMA_DEV_TO_MEM) ? "RX" : "TX",
Rabin Vincent98ca5282011-06-27 11:33:38 +02002799 src_addr_width, dst_addr_width,
2800 src_maxburst, dst_maxburst);
2801
2802 return 0;
Linus Walleij95e14002010-08-04 13:37:45 +02002803}
2804
Linus Walleij05827632010-05-17 16:30:42 -07002805static int d40_control(struct dma_chan *chan, enum dma_ctrl_cmd cmd,
2806 unsigned long arg)
Linus Walleij8d318a52010-03-30 15:33:42 +02002807{
Linus Walleij8d318a52010-03-30 15:33:42 +02002808 struct d40_chan *d40c = container_of(chan, struct d40_chan, chan);
2809
Jonas Aaberg0d0f6b82010-06-20 21:25:31 +00002810 if (d40c->phy_chan == NULL) {
Rabin Vincent6db5a8b2011-01-25 11:18:09 +01002811 chan_err(d40c, "Channel is not allocated!\n");
Jonas Aaberg0d0f6b82010-06-20 21:25:31 +00002812 return -EINVAL;
2813 }
2814
Linus Walleij8d318a52010-03-30 15:33:42 +02002815 switch (cmd) {
2816 case DMA_TERMINATE_ALL:
Narayanan G1bdae6f2012-02-09 12:41:37 +05302817 d40_terminate_all(chan);
2818 return 0;
Linus Walleij8d318a52010-03-30 15:33:42 +02002819 case DMA_PAUSE:
Rabin Vincent86eb5fb2011-01-25 11:18:34 +01002820 return d40_pause(d40c);
Linus Walleij8d318a52010-03-30 15:33:42 +02002821 case DMA_RESUME:
Rabin Vincent86eb5fb2011-01-25 11:18:34 +01002822 return d40_resume(d40c);
Linus Walleij95e14002010-08-04 13:37:45 +02002823 case DMA_SLAVE_CONFIG:
Rabin Vincent98ca5282011-06-27 11:33:38 +02002824 return d40_set_runtime_config(chan,
Linus Walleij95e14002010-08-04 13:37:45 +02002825 (struct dma_slave_config *) arg);
Linus Walleij95e14002010-08-04 13:37:45 +02002826 default:
2827 break;
Linus Walleij8d318a52010-03-30 15:33:42 +02002828 }
2829
2830 /* Other commands are unimplemented */
2831 return -ENXIO;
2832}
2833
2834/* Initialization functions */
2835
2836static void __init d40_chan_init(struct d40_base *base, struct dma_device *dma,
2837 struct d40_chan *chans, int offset,
2838 int num_chans)
2839{
2840 int i = 0;
2841 struct d40_chan *d40c;
2842
2843 INIT_LIST_HEAD(&dma->channels);
2844
2845 for (i = offset; i < offset + num_chans; i++) {
2846 d40c = &chans[i];
2847 d40c->base = base;
2848 d40c->chan.device = dma;
2849
Linus Walleij8d318a52010-03-30 15:33:42 +02002850 spin_lock_init(&d40c->lock);
2851
2852 d40c->log_num = D40_PHY_CHAN;
2853
Fabio Baltieri4226dd82012-12-13 13:46:16 +01002854 INIT_LIST_HEAD(&d40c->done);
Linus Walleij8d318a52010-03-30 15:33:42 +02002855 INIT_LIST_HEAD(&d40c->active);
2856 INIT_LIST_HEAD(&d40c->queue);
Per Forlina8f30672011-06-26 23:29:52 +02002857 INIT_LIST_HEAD(&d40c->pending_queue);
Linus Walleij8d318a52010-03-30 15:33:42 +02002858 INIT_LIST_HEAD(&d40c->client);
Per Forlin82babbb362011-08-29 13:33:35 +02002859 INIT_LIST_HEAD(&d40c->prepare_queue);
Linus Walleij8d318a52010-03-30 15:33:42 +02002860
Linus Walleij8d318a52010-03-30 15:33:42 +02002861 tasklet_init(&d40c->tasklet, dma_tasklet,
2862 (unsigned long) d40c);
2863
2864 list_add_tail(&d40c->chan.device_node,
2865 &dma->channels);
2866 }
2867}
2868
Rabin Vincent7ad74a72011-01-25 11:18:33 +01002869static void d40_ops_init(struct d40_base *base, struct dma_device *dev)
2870{
2871 if (dma_has_cap(DMA_SLAVE, dev->cap_mask))
2872 dev->device_prep_slave_sg = d40_prep_slave_sg;
2873
2874 if (dma_has_cap(DMA_MEMCPY, dev->cap_mask)) {
2875 dev->device_prep_dma_memcpy = d40_prep_memcpy;
2876
2877 /*
2878 * This controller can only access address at even
2879 * 32bit boundaries, i.e. 2^2
2880 */
2881 dev->copy_align = 2;
2882 }
2883
2884 if (dma_has_cap(DMA_SG, dev->cap_mask))
2885 dev->device_prep_dma_sg = d40_prep_memcpy_sg;
2886
Rabin Vincent0c842b52011-01-25 11:18:35 +01002887 if (dma_has_cap(DMA_CYCLIC, dev->cap_mask))
2888 dev->device_prep_dma_cyclic = dma40_prep_dma_cyclic;
2889
Rabin Vincent7ad74a72011-01-25 11:18:33 +01002890 dev->device_alloc_chan_resources = d40_alloc_chan_resources;
2891 dev->device_free_chan_resources = d40_free_chan_resources;
2892 dev->device_issue_pending = d40_issue_pending;
2893 dev->device_tx_status = d40_tx_status;
2894 dev->device_control = d40_control;
2895 dev->dev = base->dev;
2896}
2897
Linus Walleij8d318a52010-03-30 15:33:42 +02002898static int __init d40_dmaengine_init(struct d40_base *base,
2899 int num_reserved_chans)
2900{
2901 int err ;
2902
2903 d40_chan_init(base, &base->dma_slave, base->log_chans,
2904 0, base->num_log_chans);
2905
2906 dma_cap_zero(base->dma_slave.cap_mask);
2907 dma_cap_set(DMA_SLAVE, base->dma_slave.cap_mask);
Rabin Vincent0c842b52011-01-25 11:18:35 +01002908 dma_cap_set(DMA_CYCLIC, base->dma_slave.cap_mask);
Linus Walleij8d318a52010-03-30 15:33:42 +02002909
Rabin Vincent7ad74a72011-01-25 11:18:33 +01002910 d40_ops_init(base, &base->dma_slave);
Linus Walleij8d318a52010-03-30 15:33:42 +02002911
2912 err = dma_async_device_register(&base->dma_slave);
2913
2914 if (err) {
Rabin Vincent6db5a8b2011-01-25 11:18:09 +01002915 d40_err(base->dev, "Failed to register slave channels\n");
Linus Walleij8d318a52010-03-30 15:33:42 +02002916 goto failure1;
2917 }
2918
2919 d40_chan_init(base, &base->dma_memcpy, base->log_chans,
2920 base->num_log_chans, base->plat_data->memcpy_len);
2921
2922 dma_cap_zero(base->dma_memcpy.cap_mask);
2923 dma_cap_set(DMA_MEMCPY, base->dma_memcpy.cap_mask);
Rabin Vincent7ad74a72011-01-25 11:18:33 +01002924 dma_cap_set(DMA_SG, base->dma_memcpy.cap_mask);
Linus Walleij8d318a52010-03-30 15:33:42 +02002925
Rabin Vincent7ad74a72011-01-25 11:18:33 +01002926 d40_ops_init(base, &base->dma_memcpy);
Linus Walleij8d318a52010-03-30 15:33:42 +02002927
2928 err = dma_async_device_register(&base->dma_memcpy);
2929
2930 if (err) {
Rabin Vincent6db5a8b2011-01-25 11:18:09 +01002931 d40_err(base->dev,
2932 "Failed to regsiter memcpy only channels\n");
Linus Walleij8d318a52010-03-30 15:33:42 +02002933 goto failure2;
2934 }
2935
2936 d40_chan_init(base, &base->dma_both, base->phy_chans,
2937 0, num_reserved_chans);
2938
2939 dma_cap_zero(base->dma_both.cap_mask);
2940 dma_cap_set(DMA_SLAVE, base->dma_both.cap_mask);
2941 dma_cap_set(DMA_MEMCPY, base->dma_both.cap_mask);
Rabin Vincent7ad74a72011-01-25 11:18:33 +01002942 dma_cap_set(DMA_SG, base->dma_both.cap_mask);
Rabin Vincent0c842b52011-01-25 11:18:35 +01002943 dma_cap_set(DMA_CYCLIC, base->dma_slave.cap_mask);
Linus Walleij8d318a52010-03-30 15:33:42 +02002944
Rabin Vincent7ad74a72011-01-25 11:18:33 +01002945 d40_ops_init(base, &base->dma_both);
Linus Walleij8d318a52010-03-30 15:33:42 +02002946 err = dma_async_device_register(&base->dma_both);
2947
2948 if (err) {
Rabin Vincent6db5a8b2011-01-25 11:18:09 +01002949 d40_err(base->dev,
2950 "Failed to register logical and physical capable channels\n");
Linus Walleij8d318a52010-03-30 15:33:42 +02002951 goto failure3;
2952 }
2953 return 0;
2954failure3:
2955 dma_async_device_unregister(&base->dma_memcpy);
2956failure2:
2957 dma_async_device_unregister(&base->dma_slave);
2958failure1:
2959 return err;
2960}
2961
Narayanan G7fb3e752011-11-17 17:26:41 +05302962/* Suspend resume functionality */
2963#ifdef CONFIG_PM
2964static int dma40_pm_suspend(struct device *dev)
2965{
Narayanan G28c7a192011-11-22 13:56:55 +05302966 struct platform_device *pdev = to_platform_device(dev);
2967 struct d40_base *base = platform_get_drvdata(pdev);
2968 int ret = 0;
Narayanan G7fb3e752011-11-17 17:26:41 +05302969
Narayanan G28c7a192011-11-22 13:56:55 +05302970 if (base->lcpa_regulator)
2971 ret = regulator_disable(base->lcpa_regulator);
2972 return ret;
Narayanan G7fb3e752011-11-17 17:26:41 +05302973}
2974
2975static int dma40_runtime_suspend(struct device *dev)
2976{
2977 struct platform_device *pdev = to_platform_device(dev);
2978 struct d40_base *base = platform_get_drvdata(pdev);
2979
2980 d40_save_restore_registers(base, true);
2981
2982 /* Don't disable/enable clocks for v1 due to HW bugs */
2983 if (base->rev != 1)
2984 writel_relaxed(base->gcc_pwr_off_mask,
2985 base->virtbase + D40_DREG_GCC);
2986
2987 return 0;
2988}
2989
2990static int dma40_runtime_resume(struct device *dev)
2991{
2992 struct platform_device *pdev = to_platform_device(dev);
2993 struct d40_base *base = platform_get_drvdata(pdev);
2994
2995 if (base->initialized)
2996 d40_save_restore_registers(base, false);
2997
2998 writel_relaxed(D40_DREG_GCC_ENABLE_ALL,
2999 base->virtbase + D40_DREG_GCC);
3000 return 0;
3001}
3002
Narayanan G28c7a192011-11-22 13:56:55 +05303003static int dma40_resume(struct device *dev)
3004{
3005 struct platform_device *pdev = to_platform_device(dev);
3006 struct d40_base *base = platform_get_drvdata(pdev);
3007 int ret = 0;
3008
3009 if (base->lcpa_regulator)
3010 ret = regulator_enable(base->lcpa_regulator);
3011
3012 return ret;
3013}
Narayanan G7fb3e752011-11-17 17:26:41 +05303014
3015static const struct dev_pm_ops dma40_pm_ops = {
3016 .suspend = dma40_pm_suspend,
3017 .runtime_suspend = dma40_runtime_suspend,
3018 .runtime_resume = dma40_runtime_resume,
Narayanan G28c7a192011-11-22 13:56:55 +05303019 .resume = dma40_resume,
Narayanan G7fb3e752011-11-17 17:26:41 +05303020};
3021#define DMA40_PM_OPS (&dma40_pm_ops)
3022#else
3023#define DMA40_PM_OPS NULL
3024#endif
3025
Linus Walleij8d318a52010-03-30 15:33:42 +02003026/* Initialization functions. */
3027
3028static int __init d40_phy_res_init(struct d40_base *base)
3029{
3030 int i;
3031 int num_phy_chans_avail = 0;
3032 u32 val[2];
3033 int odd_even_bit = -2;
Narayanan G7fb3e752011-11-17 17:26:41 +05303034 int gcc = D40_DREG_GCC_ENA;
Linus Walleij8d318a52010-03-30 15:33:42 +02003035
3036 val[0] = readl(base->virtbase + D40_DREG_PRSME);
3037 val[1] = readl(base->virtbase + D40_DREG_PRSMO);
3038
3039 for (i = 0; i < base->num_phy_chans; i++) {
3040 base->phy_res[i].num = i;
3041 odd_even_bit += 2 * ((i % 2) == 0);
3042 if (((val[i % 2] >> odd_even_bit) & 3) == 1) {
3043 /* Mark security only channels as occupied */
3044 base->phy_res[i].allocated_src = D40_ALLOC_PHY;
3045 base->phy_res[i].allocated_dst = D40_ALLOC_PHY;
Narayanan G7fb3e752011-11-17 17:26:41 +05303046 base->phy_res[i].reserved = true;
3047 gcc |= D40_DREG_GCC_EVTGRP_ENA(D40_PHYS_TO_GROUP(i),
3048 D40_DREG_GCC_SRC);
3049 gcc |= D40_DREG_GCC_EVTGRP_ENA(D40_PHYS_TO_GROUP(i),
3050 D40_DREG_GCC_DST);
3051
3052
Linus Walleij8d318a52010-03-30 15:33:42 +02003053 } else {
3054 base->phy_res[i].allocated_src = D40_ALLOC_FREE;
3055 base->phy_res[i].allocated_dst = D40_ALLOC_FREE;
Narayanan G7fb3e752011-11-17 17:26:41 +05303056 base->phy_res[i].reserved = false;
Linus Walleij8d318a52010-03-30 15:33:42 +02003057 num_phy_chans_avail++;
3058 }
3059 spin_lock_init(&base->phy_res[i].lock);
3060 }
Jonas Aaberg6b7acd82010-06-20 21:26:59 +00003061
3062 /* Mark disabled channels as occupied */
3063 for (i = 0; base->plat_data->disabled_channels[i] != -1; i++) {
Rabin Vincentf57b4072010-10-06 08:20:35 +00003064 int chan = base->plat_data->disabled_channels[i];
3065
3066 base->phy_res[chan].allocated_src = D40_ALLOC_PHY;
3067 base->phy_res[chan].allocated_dst = D40_ALLOC_PHY;
Narayanan G7fb3e752011-11-17 17:26:41 +05303068 base->phy_res[chan].reserved = true;
3069 gcc |= D40_DREG_GCC_EVTGRP_ENA(D40_PHYS_TO_GROUP(chan),
3070 D40_DREG_GCC_SRC);
3071 gcc |= D40_DREG_GCC_EVTGRP_ENA(D40_PHYS_TO_GROUP(chan),
3072 D40_DREG_GCC_DST);
Rabin Vincentf57b4072010-10-06 08:20:35 +00003073 num_phy_chans_avail--;
Jonas Aaberg6b7acd82010-06-20 21:26:59 +00003074 }
3075
Linus Walleij8d318a52010-03-30 15:33:42 +02003076 dev_info(base->dev, "%d of %d physical DMA channels available\n",
3077 num_phy_chans_avail, base->num_phy_chans);
3078
3079 /* Verify settings extended vs standard */
3080 val[0] = readl(base->virtbase + D40_DREG_PRTYP);
3081
3082 for (i = 0; i < base->num_phy_chans; i++) {
3083
3084 if (base->phy_res[i].allocated_src == D40_ALLOC_FREE &&
3085 (val[0] & 0x3) != 1)
3086 dev_info(base->dev,
3087 "[%s] INFO: channel %d is misconfigured (%d)\n",
3088 __func__, i, val[0] & 0x3);
3089
3090 val[0] = val[0] >> 2;
3091 }
3092
Narayanan G7fb3e752011-11-17 17:26:41 +05303093 /*
3094 * To keep things simple, Enable all clocks initially.
3095 * The clocks will get managed later post channel allocation.
3096 * The clocks for the event lines on which reserved channels exists
3097 * are not managed here.
3098 */
3099 writel(D40_DREG_GCC_ENABLE_ALL, base->virtbase + D40_DREG_GCC);
3100 base->gcc_pwr_off_mask = gcc;
3101
Linus Walleij8d318a52010-03-30 15:33:42 +02003102 return num_phy_chans_avail;
3103}
3104
3105static struct d40_base * __init d40_hw_detect_init(struct platform_device *pdev)
3106{
Linus Walleij8d318a52010-03-30 15:33:42 +02003107 struct stedma40_platform_data *plat_data;
3108 struct clk *clk = NULL;
3109 void __iomem *virtbase = NULL;
3110 struct resource *res = NULL;
3111 struct d40_base *base = NULL;
3112 int num_log_chans = 0;
3113 int num_phy_chans;
Ulf Hanssonb707c6582012-08-23 13:41:58 +02003114 int clk_ret = -EINVAL;
Linus Walleij8d318a52010-03-30 15:33:42 +02003115 int i;
Linus Walleijf4b89762011-06-27 11:33:46 +02003116 u32 pid;
3117 u32 cid;
3118 u8 rev;
Linus Walleij8d318a52010-03-30 15:33:42 +02003119
3120 clk = clk_get(&pdev->dev, NULL);
Linus Walleij8d318a52010-03-30 15:33:42 +02003121 if (IS_ERR(clk)) {
Rabin Vincent6db5a8b2011-01-25 11:18:09 +01003122 d40_err(&pdev->dev, "No matching clock found\n");
Linus Walleij8d318a52010-03-30 15:33:42 +02003123 goto failure;
3124 }
3125
Ulf Hanssonb707c6582012-08-23 13:41:58 +02003126 clk_ret = clk_prepare_enable(clk);
3127 if (clk_ret) {
3128 d40_err(&pdev->dev, "Failed to prepare/enable clock\n");
3129 goto failure;
3130 }
Linus Walleij8d318a52010-03-30 15:33:42 +02003131
3132 /* Get IO for DMAC base address */
3133 res = platform_get_resource_byname(pdev, IORESOURCE_MEM, "base");
3134 if (!res)
3135 goto failure;
3136
3137 if (request_mem_region(res->start, resource_size(res),
3138 D40_NAME " I/O base") == NULL)
3139 goto failure;
3140
3141 virtbase = ioremap(res->start, resource_size(res));
3142 if (!virtbase)
3143 goto failure;
3144
Linus Walleijf4b89762011-06-27 11:33:46 +02003145 /* This is just a regular AMBA PrimeCell ID actually */
3146 for (pid = 0, i = 0; i < 4; i++)
3147 pid |= (readl(virtbase + resource_size(res) - 0x20 + 4 * i)
3148 & 255) << (i * 8);
3149 for (cid = 0, i = 0; i < 4; i++)
3150 cid |= (readl(virtbase + resource_size(res) - 0x10 + 4 * i)
3151 & 255) << (i * 8);
Linus Walleij8d318a52010-03-30 15:33:42 +02003152
Linus Walleijf4b89762011-06-27 11:33:46 +02003153 if (cid != AMBA_CID) {
3154 d40_err(&pdev->dev, "Unknown hardware! No PrimeCell ID\n");
Linus Walleij8d318a52010-03-30 15:33:42 +02003155 goto failure;
3156 }
Linus Walleijf4b89762011-06-27 11:33:46 +02003157 if (AMBA_MANF_BITS(pid) != AMBA_VENDOR_ST) {
3158 d40_err(&pdev->dev, "Unknown designer! Got %x wanted %x\n",
3159 AMBA_MANF_BITS(pid),
3160 AMBA_VENDOR_ST);
3161 goto failure;
3162 }
3163 /*
3164 * HW revision:
3165 * DB8500ed has revision 0
3166 * ? has revision 1
3167 * DB8500v1 has revision 2
3168 * DB8500v2 has revision 3
Gerald Baeza47db92f2012-09-21 21:21:37 +02003169 * AP9540v1 has revision 4
3170 * DB8540v1 has revision 4
Linus Walleijf4b89762011-06-27 11:33:46 +02003171 */
3172 rev = AMBA_REV_BITS(pid);
Jonas Aaberg3ae02672010-08-09 12:08:18 +00003173
Gerald Baeza47db92f2012-09-21 21:21:37 +02003174 plat_data = pdev->dev.platform_data;
Linus Walleij8d318a52010-03-30 15:33:42 +02003175
Gerald Baeza47db92f2012-09-21 21:21:37 +02003176 /* The number of physical channels on this HW */
3177 if (plat_data->num_of_phy_chans)
3178 num_phy_chans = plat_data->num_of_phy_chans;
3179 else
3180 num_phy_chans = 4 * (readl(virtbase + D40_DREG_ICFG) & 0x7) + 4;
3181
3182 dev_info(&pdev->dev, "hardware revision: %d @ 0x%x with %d physical channels\n",
3183 rev, res->start, num_phy_chans);
Linus Walleij8d318a52010-03-30 15:33:42 +02003184
Narayanan G1bdae6f2012-02-09 12:41:37 +05303185 if (rev < 2) {
3186 d40_err(&pdev->dev, "hardware revision: %d is not supported",
3187 rev);
3188 goto failure;
3189 }
3190
Linus Walleij8d318a52010-03-30 15:33:42 +02003191 /* Count the number of logical channels in use */
3192 for (i = 0; i < plat_data->dev_len; i++)
3193 if (plat_data->dev_rx[i] != 0)
3194 num_log_chans++;
3195
3196 for (i = 0; i < plat_data->dev_len; i++)
3197 if (plat_data->dev_tx[i] != 0)
3198 num_log_chans++;
3199
3200 base = kzalloc(ALIGN(sizeof(struct d40_base), 4) +
3201 (num_phy_chans + num_log_chans + plat_data->memcpy_len) *
3202 sizeof(struct d40_chan), GFP_KERNEL);
3203
3204 if (base == NULL) {
Rabin Vincent6db5a8b2011-01-25 11:18:09 +01003205 d40_err(&pdev->dev, "Out of memory\n");
Linus Walleij8d318a52010-03-30 15:33:42 +02003206 goto failure;
3207 }
3208
Jonas Aaberg3ae02672010-08-09 12:08:18 +00003209 base->rev = rev;
Linus Walleij8d318a52010-03-30 15:33:42 +02003210 base->clk = clk;
3211 base->num_phy_chans = num_phy_chans;
3212 base->num_log_chans = num_log_chans;
3213 base->phy_start = res->start;
3214 base->phy_size = resource_size(res);
3215 base->virtbase = virtbase;
3216 base->plat_data = plat_data;
3217 base->dev = &pdev->dev;
3218 base->phy_chans = ((void *)base) + ALIGN(sizeof(struct d40_base), 4);
3219 base->log_chans = &base->phy_chans[num_phy_chans];
3220
Tong Liu3cb645d2012-09-26 10:07:30 +00003221 if (base->plat_data->num_of_phy_chans == 14) {
3222 base->gen_dmac.backup = d40_backup_regs_v4b;
3223 base->gen_dmac.backup_size = BACKUP_REGS_SZ_V4B;
3224 base->gen_dmac.interrupt_en = D40_DREG_CPCMIS;
3225 base->gen_dmac.interrupt_clear = D40_DREG_CPCICR;
3226 base->gen_dmac.realtime_en = D40_DREG_CRSEG1;
3227 base->gen_dmac.realtime_clear = D40_DREG_CRCEG1;
3228 base->gen_dmac.high_prio_en = D40_DREG_CPSEG1;
3229 base->gen_dmac.high_prio_clear = D40_DREG_CPCEG1;
3230 base->gen_dmac.il = il_v4b;
3231 base->gen_dmac.il_size = ARRAY_SIZE(il_v4b);
3232 base->gen_dmac.init_reg = dma_init_reg_v4b;
3233 base->gen_dmac.init_reg_size = ARRAY_SIZE(dma_init_reg_v4b);
3234 } else {
3235 if (base->rev >= 3) {
3236 base->gen_dmac.backup = d40_backup_regs_v4a;
3237 base->gen_dmac.backup_size = BACKUP_REGS_SZ_V4A;
3238 }
3239 base->gen_dmac.interrupt_en = D40_DREG_PCMIS;
3240 base->gen_dmac.interrupt_clear = D40_DREG_PCICR;
3241 base->gen_dmac.realtime_en = D40_DREG_RSEG1;
3242 base->gen_dmac.realtime_clear = D40_DREG_RCEG1;
3243 base->gen_dmac.high_prio_en = D40_DREG_PSEG1;
3244 base->gen_dmac.high_prio_clear = D40_DREG_PCEG1;
3245 base->gen_dmac.il = il_v4a;
3246 base->gen_dmac.il_size = ARRAY_SIZE(il_v4a);
3247 base->gen_dmac.init_reg = dma_init_reg_v4a;
3248 base->gen_dmac.init_reg_size = ARRAY_SIZE(dma_init_reg_v4a);
3249 }
3250
Linus Walleij8d318a52010-03-30 15:33:42 +02003251 base->phy_res = kzalloc(num_phy_chans * sizeof(struct d40_phy_res),
3252 GFP_KERNEL);
3253 if (!base->phy_res)
3254 goto failure;
3255
3256 base->lookup_phy_chans = kzalloc(num_phy_chans *
3257 sizeof(struct d40_chan *),
3258 GFP_KERNEL);
3259 if (!base->lookup_phy_chans)
3260 goto failure;
3261
3262 if (num_log_chans + plat_data->memcpy_len) {
3263 /*
3264 * The max number of logical channels are event lines for all
3265 * src devices and dst devices
3266 */
3267 base->lookup_log_chans = kzalloc(plat_data->dev_len * 2 *
3268 sizeof(struct d40_chan *),
3269 GFP_KERNEL);
3270 if (!base->lookup_log_chans)
3271 goto failure;
3272 }
Jonas Aaberg698e4732010-08-09 12:08:56 +00003273
Narayanan G7fb3e752011-11-17 17:26:41 +05303274 base->reg_val_backup_chan = kmalloc(base->num_phy_chans *
3275 sizeof(d40_backup_regs_chan),
Linus Walleij8d318a52010-03-30 15:33:42 +02003276 GFP_KERNEL);
Narayanan G7fb3e752011-11-17 17:26:41 +05303277 if (!base->reg_val_backup_chan)
3278 goto failure;
3279
3280 base->lcla_pool.alloc_map =
3281 kzalloc(num_phy_chans * sizeof(struct d40_desc *)
3282 * D40_LCLA_LINK_PER_EVENT_GRP, GFP_KERNEL);
Linus Walleij8d318a52010-03-30 15:33:42 +02003283 if (!base->lcla_pool.alloc_map)
3284 goto failure;
3285
Jonas Aabergc675b1b2010-06-20 21:25:08 +00003286 base->desc_slab = kmem_cache_create(D40_NAME, sizeof(struct d40_desc),
3287 0, SLAB_HWCACHE_ALIGN,
3288 NULL);
3289 if (base->desc_slab == NULL)
3290 goto failure;
3291
Linus Walleij8d318a52010-03-30 15:33:42 +02003292 return base;
3293
3294failure:
Ulf Hanssonb707c6582012-08-23 13:41:58 +02003295 if (!clk_ret)
3296 clk_disable_unprepare(clk);
3297 if (!IS_ERR(clk))
Linus Walleij8d318a52010-03-30 15:33:42 +02003298 clk_put(clk);
Linus Walleij8d318a52010-03-30 15:33:42 +02003299 if (virtbase)
3300 iounmap(virtbase);
3301 if (res)
3302 release_mem_region(res->start,
3303 resource_size(res));
3304 if (virtbase)
3305 iounmap(virtbase);
3306
3307 if (base) {
3308 kfree(base->lcla_pool.alloc_map);
Narayanan G1bdae6f2012-02-09 12:41:37 +05303309 kfree(base->reg_val_backup_chan);
Linus Walleij8d318a52010-03-30 15:33:42 +02003310 kfree(base->lookup_log_chans);
3311 kfree(base->lookup_phy_chans);
3312 kfree(base->phy_res);
3313 kfree(base);
3314 }
3315
3316 return NULL;
3317}
3318
3319static void __init d40_hw_init(struct d40_base *base)
3320{
3321
Linus Walleij8d318a52010-03-30 15:33:42 +02003322 int i;
3323 u32 prmseo[2] = {0, 0};
3324 u32 activeo[2] = {0xFFFFFFFF, 0xFFFFFFFF};
3325 u32 pcmis = 0;
3326 u32 pcicr = 0;
Tong Liu3cb645d2012-09-26 10:07:30 +00003327 struct d40_reg_val *dma_init_reg = base->gen_dmac.init_reg;
3328 u32 reg_size = base->gen_dmac.init_reg_size;
Linus Walleij8d318a52010-03-30 15:33:42 +02003329
Tong Liu3cb645d2012-09-26 10:07:30 +00003330 for (i = 0; i < reg_size; i++)
Linus Walleij8d318a52010-03-30 15:33:42 +02003331 writel(dma_init_reg[i].val,
3332 base->virtbase + dma_init_reg[i].reg);
3333
3334 /* Configure all our dma channels to default settings */
3335 for (i = 0; i < base->num_phy_chans; i++) {
3336
3337 activeo[i % 2] = activeo[i % 2] << 2;
3338
3339 if (base->phy_res[base->num_phy_chans - i - 1].allocated_src
3340 == D40_ALLOC_PHY) {
3341 activeo[i % 2] |= 3;
3342 continue;
3343 }
3344
3345 /* Enable interrupt # */
3346 pcmis = (pcmis << 1) | 1;
3347
3348 /* Clear interrupt # */
3349 pcicr = (pcicr << 1) | 1;
3350
3351 /* Set channel to physical mode */
3352 prmseo[i % 2] = prmseo[i % 2] << 2;
3353 prmseo[i % 2] |= 1;
3354
3355 }
3356
3357 writel(prmseo[1], base->virtbase + D40_DREG_PRMSE);
3358 writel(prmseo[0], base->virtbase + D40_DREG_PRMSO);
3359 writel(activeo[1], base->virtbase + D40_DREG_ACTIVE);
3360 writel(activeo[0], base->virtbase + D40_DREG_ACTIVO);
3361
3362 /* Write which interrupt to enable */
Tong Liu3cb645d2012-09-26 10:07:30 +00003363 writel(pcmis, base->virtbase + base->gen_dmac.interrupt_en);
Linus Walleij8d318a52010-03-30 15:33:42 +02003364
3365 /* Write which interrupt to clear */
Tong Liu3cb645d2012-09-26 10:07:30 +00003366 writel(pcicr, base->virtbase + base->gen_dmac.interrupt_clear);
Linus Walleij8d318a52010-03-30 15:33:42 +02003367
Tong Liu3cb645d2012-09-26 10:07:30 +00003368 /* These are __initdata and cannot be accessed after init */
3369 base->gen_dmac.init_reg = NULL;
3370 base->gen_dmac.init_reg_size = 0;
Linus Walleij8d318a52010-03-30 15:33:42 +02003371}
3372
Linus Walleij508849a2010-06-20 21:26:07 +00003373static int __init d40_lcla_allocate(struct d40_base *base)
3374{
Rabin Vincent026cbc42011-01-25 11:18:14 +01003375 struct d40_lcla_pool *pool = &base->lcla_pool;
Linus Walleij508849a2010-06-20 21:26:07 +00003376 unsigned long *page_list;
3377 int i, j;
3378 int ret = 0;
3379
3380 /*
3381 * This is somewhat ugly. We need 8192 bytes that are 18 bit aligned,
3382 * To full fill this hardware requirement without wasting 256 kb
3383 * we allocate pages until we get an aligned one.
3384 */
3385 page_list = kmalloc(sizeof(unsigned long) * MAX_LCLA_ALLOC_ATTEMPTS,
3386 GFP_KERNEL);
3387
3388 if (!page_list) {
3389 ret = -ENOMEM;
3390 goto failure;
3391 }
3392
3393 /* Calculating how many pages that are required */
3394 base->lcla_pool.pages = SZ_1K * base->num_phy_chans / PAGE_SIZE;
3395
3396 for (i = 0; i < MAX_LCLA_ALLOC_ATTEMPTS; i++) {
3397 page_list[i] = __get_free_pages(GFP_KERNEL,
3398 base->lcla_pool.pages);
3399 if (!page_list[i]) {
3400
Rabin Vincent6db5a8b2011-01-25 11:18:09 +01003401 d40_err(base->dev, "Failed to allocate %d pages.\n",
3402 base->lcla_pool.pages);
Linus Walleij508849a2010-06-20 21:26:07 +00003403
3404 for (j = 0; j < i; j++)
3405 free_pages(page_list[j], base->lcla_pool.pages);
3406 goto failure;
3407 }
3408
3409 if ((virt_to_phys((void *)page_list[i]) &
3410 (LCLA_ALIGNMENT - 1)) == 0)
3411 break;
3412 }
3413
3414 for (j = 0; j < i; j++)
3415 free_pages(page_list[j], base->lcla_pool.pages);
3416
3417 if (i < MAX_LCLA_ALLOC_ATTEMPTS) {
3418 base->lcla_pool.base = (void *)page_list[i];
3419 } else {
Jonas Aaberg767a9672010-08-09 12:08:34 +00003420 /*
3421 * After many attempts and no succees with finding the correct
3422 * alignment, try with allocating a big buffer.
3423 */
Linus Walleij508849a2010-06-20 21:26:07 +00003424 dev_warn(base->dev,
3425 "[%s] Failed to get %d pages @ 18 bit align.\n",
3426 __func__, base->lcla_pool.pages);
3427 base->lcla_pool.base_unaligned = kmalloc(SZ_1K *
3428 base->num_phy_chans +
3429 LCLA_ALIGNMENT,
3430 GFP_KERNEL);
3431 if (!base->lcla_pool.base_unaligned) {
3432 ret = -ENOMEM;
3433 goto failure;
3434 }
3435
3436 base->lcla_pool.base = PTR_ALIGN(base->lcla_pool.base_unaligned,
3437 LCLA_ALIGNMENT);
3438 }
3439
Rabin Vincent026cbc42011-01-25 11:18:14 +01003440 pool->dma_addr = dma_map_single(base->dev, pool->base,
3441 SZ_1K * base->num_phy_chans,
3442 DMA_TO_DEVICE);
3443 if (dma_mapping_error(base->dev, pool->dma_addr)) {
3444 pool->dma_addr = 0;
3445 ret = -ENOMEM;
3446 goto failure;
3447 }
3448
Linus Walleij508849a2010-06-20 21:26:07 +00003449 writel(virt_to_phys(base->lcla_pool.base),
3450 base->virtbase + D40_DREG_LCLA);
3451failure:
3452 kfree(page_list);
3453 return ret;
3454}
3455
Linus Walleij8d318a52010-03-30 15:33:42 +02003456static int __init d40_probe(struct platform_device *pdev)
3457{
3458 int err;
3459 int ret = -ENOENT;
3460 struct d40_base *base;
3461 struct resource *res = NULL;
3462 int num_reserved_chans;
3463 u32 val;
3464
3465 base = d40_hw_detect_init(pdev);
3466
3467 if (!base)
3468 goto failure;
3469
3470 num_reserved_chans = d40_phy_res_init(base);
3471
3472 platform_set_drvdata(pdev, base);
3473
3474 spin_lock_init(&base->interrupt_lock);
3475 spin_lock_init(&base->execmd_lock);
3476
3477 /* Get IO for logical channel parameter address */
3478 res = platform_get_resource_byname(pdev, IORESOURCE_MEM, "lcpa");
3479 if (!res) {
3480 ret = -ENOENT;
Rabin Vincent6db5a8b2011-01-25 11:18:09 +01003481 d40_err(&pdev->dev, "No \"lcpa\" memory resource\n");
Linus Walleij8d318a52010-03-30 15:33:42 +02003482 goto failure;
3483 }
3484 base->lcpa_size = resource_size(res);
3485 base->phy_lcpa = res->start;
3486
3487 if (request_mem_region(res->start, resource_size(res),
3488 D40_NAME " I/O lcpa") == NULL) {
3489 ret = -EBUSY;
Rabin Vincent6db5a8b2011-01-25 11:18:09 +01003490 d40_err(&pdev->dev,
3491 "Failed to request LCPA region 0x%x-0x%x\n",
3492 res->start, res->end);
Linus Walleij8d318a52010-03-30 15:33:42 +02003493 goto failure;
3494 }
3495
3496 /* We make use of ESRAM memory for this. */
3497 val = readl(base->virtbase + D40_DREG_LCPA);
3498 if (res->start != val && val != 0) {
3499 dev_warn(&pdev->dev,
3500 "[%s] Mismatch LCPA dma 0x%x, def 0x%x\n",
3501 __func__, val, res->start);
3502 } else
3503 writel(res->start, base->virtbase + D40_DREG_LCPA);
3504
3505 base->lcpa_base = ioremap(res->start, resource_size(res));
3506 if (!base->lcpa_base) {
3507 ret = -ENOMEM;
Rabin Vincent6db5a8b2011-01-25 11:18:09 +01003508 d40_err(&pdev->dev, "Failed to ioremap LCPA region\n");
Linus Walleij8d318a52010-03-30 15:33:42 +02003509 goto failure;
3510 }
Narayanan G28c7a192011-11-22 13:56:55 +05303511 /* If lcla has to be located in ESRAM we don't need to allocate */
3512 if (base->plat_data->use_esram_lcla) {
3513 res = platform_get_resource_byname(pdev, IORESOURCE_MEM,
3514 "lcla_esram");
3515 if (!res) {
3516 ret = -ENOENT;
3517 d40_err(&pdev->dev,
3518 "No \"lcla_esram\" memory resource\n");
3519 goto failure;
3520 }
3521 base->lcla_pool.base = ioremap(res->start,
3522 resource_size(res));
3523 if (!base->lcla_pool.base) {
3524 ret = -ENOMEM;
3525 d40_err(&pdev->dev, "Failed to ioremap LCLA region\n");
3526 goto failure;
3527 }
3528 writel(res->start, base->virtbase + D40_DREG_LCLA);
Linus Walleij508849a2010-06-20 21:26:07 +00003529
Narayanan G28c7a192011-11-22 13:56:55 +05303530 } else {
3531 ret = d40_lcla_allocate(base);
3532 if (ret) {
3533 d40_err(&pdev->dev, "Failed to allocate LCLA area\n");
3534 goto failure;
3535 }
Linus Walleij8d318a52010-03-30 15:33:42 +02003536 }
3537
Linus Walleij8d318a52010-03-30 15:33:42 +02003538 spin_lock_init(&base->lcla_pool.lock);
3539
Linus Walleij8d318a52010-03-30 15:33:42 +02003540 base->irq = platform_get_irq(pdev, 0);
3541
3542 ret = request_irq(base->irq, d40_handle_interrupt, 0, D40_NAME, base);
Linus Walleij8d318a52010-03-30 15:33:42 +02003543 if (ret) {
Rabin Vincent6db5a8b2011-01-25 11:18:09 +01003544 d40_err(&pdev->dev, "No IRQ defined\n");
Linus Walleij8d318a52010-03-30 15:33:42 +02003545 goto failure;
3546 }
3547
Narayanan G7fb3e752011-11-17 17:26:41 +05303548 pm_runtime_irq_safe(base->dev);
3549 pm_runtime_set_autosuspend_delay(base->dev, DMA40_AUTOSUSPEND_DELAY);
3550 pm_runtime_use_autosuspend(base->dev);
3551 pm_runtime_enable(base->dev);
3552 pm_runtime_resume(base->dev);
Narayanan G28c7a192011-11-22 13:56:55 +05303553
3554 if (base->plat_data->use_esram_lcla) {
3555
3556 base->lcpa_regulator = regulator_get(base->dev, "lcla_esram");
3557 if (IS_ERR(base->lcpa_regulator)) {
3558 d40_err(&pdev->dev, "Failed to get lcpa_regulator\n");
3559 base->lcpa_regulator = NULL;
3560 goto failure;
3561 }
3562
3563 ret = regulator_enable(base->lcpa_regulator);
3564 if (ret) {
3565 d40_err(&pdev->dev,
3566 "Failed to enable lcpa_regulator\n");
3567 regulator_put(base->lcpa_regulator);
3568 base->lcpa_regulator = NULL;
3569 goto failure;
3570 }
3571 }
3572
Narayanan G7fb3e752011-11-17 17:26:41 +05303573 base->initialized = true;
Linus Walleij8d318a52010-03-30 15:33:42 +02003574 err = d40_dmaengine_init(base, num_reserved_chans);
3575 if (err)
3576 goto failure;
3577
Per Forlinb96710e2011-10-18 18:39:47 +02003578 base->dev->dma_parms = &base->dma_parms;
3579 err = dma_set_max_seg_size(base->dev, STEDMA40_MAX_SEG_SIZE);
3580 if (err) {
3581 d40_err(&pdev->dev, "Failed to set dma max seg size\n");
3582 goto failure;
3583 }
3584
Linus Walleij8d318a52010-03-30 15:33:42 +02003585 d40_hw_init(base);
3586
3587 dev_info(base->dev, "initialized\n");
3588 return 0;
3589
3590failure:
3591 if (base) {
Jonas Aabergc675b1b2010-06-20 21:25:08 +00003592 if (base->desc_slab)
3593 kmem_cache_destroy(base->desc_slab);
Linus Walleij8d318a52010-03-30 15:33:42 +02003594 if (base->virtbase)
3595 iounmap(base->virtbase);
Rabin Vincent026cbc42011-01-25 11:18:14 +01003596
Narayanan G28c7a192011-11-22 13:56:55 +05303597 if (base->lcla_pool.base && base->plat_data->use_esram_lcla) {
3598 iounmap(base->lcla_pool.base);
3599 base->lcla_pool.base = NULL;
3600 }
3601
Rabin Vincent026cbc42011-01-25 11:18:14 +01003602 if (base->lcla_pool.dma_addr)
3603 dma_unmap_single(base->dev, base->lcla_pool.dma_addr,
3604 SZ_1K * base->num_phy_chans,
3605 DMA_TO_DEVICE);
3606
Linus Walleij508849a2010-06-20 21:26:07 +00003607 if (!base->lcla_pool.base_unaligned && base->lcla_pool.base)
3608 free_pages((unsigned long)base->lcla_pool.base,
3609 base->lcla_pool.pages);
Jonas Aaberg767a9672010-08-09 12:08:34 +00003610
3611 kfree(base->lcla_pool.base_unaligned);
3612
Linus Walleij8d318a52010-03-30 15:33:42 +02003613 if (base->phy_lcpa)
3614 release_mem_region(base->phy_lcpa,
3615 base->lcpa_size);
3616 if (base->phy_start)
3617 release_mem_region(base->phy_start,
3618 base->phy_size);
3619 if (base->clk) {
3620 clk_disable(base->clk);
3621 clk_put(base->clk);
3622 }
3623
Narayanan G28c7a192011-11-22 13:56:55 +05303624 if (base->lcpa_regulator) {
3625 regulator_disable(base->lcpa_regulator);
3626 regulator_put(base->lcpa_regulator);
3627 }
3628
Linus Walleij8d318a52010-03-30 15:33:42 +02003629 kfree(base->lcla_pool.alloc_map);
3630 kfree(base->lookup_log_chans);
3631 kfree(base->lookup_phy_chans);
3632 kfree(base->phy_res);
3633 kfree(base);
3634 }
3635
Rabin Vincent6db5a8b2011-01-25 11:18:09 +01003636 d40_err(&pdev->dev, "probe failed\n");
Linus Walleij8d318a52010-03-30 15:33:42 +02003637 return ret;
3638}
3639
3640static struct platform_driver d40_driver = {
3641 .driver = {
3642 .owner = THIS_MODULE,
3643 .name = D40_NAME,
Narayanan G7fb3e752011-11-17 17:26:41 +05303644 .pm = DMA40_PM_OPS,
Linus Walleij8d318a52010-03-30 15:33:42 +02003645 },
3646};
3647
Rabin Vincentcb9ab2d2011-01-25 11:18:04 +01003648static int __init stedma40_init(void)
Linus Walleij8d318a52010-03-30 15:33:42 +02003649{
3650 return platform_driver_probe(&d40_driver, d40_probe);
3651}
Linus Walleija0eb2212011-05-18 14:18:57 +02003652subsys_initcall(stedma40_init);