blob: e317debdbe5a86a5989882fb18cd163a6ac4df00 [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;
Jonas Aaberg698e4732010-08-09 12:08:56 +0000642
643 spin_lock_irqsave(&d40c->base->lcla_pool.lock, flags);
644
Jonas Aaberg698e4732010-08-09 12:08:56 +0000645 /*
646 * Allocate both src and dst at the same time, therefore the half
647 * start on 1 since 0 can't be used since zero is used as end marker.
648 */
649 for (i = 1 ; i < D40_LCLA_LINK_PER_EVENT_GRP / 2; i++) {
Fabio Baltieri7ce529e2012-12-18 16:59:09 +0100650 int idx = d40c->phy_chan->num * D40_LCLA_LINK_PER_EVENT_GRP + i;
651
652 if (!d40c->base->lcla_pool.alloc_map[idx]) {
653 d40c->base->lcla_pool.alloc_map[idx] = d40d;
Jonas Aaberg698e4732010-08-09 12:08:56 +0000654 d40d->lcla_alloc++;
655 ret = i;
656 break;
657 }
658 }
659
660 spin_unlock_irqrestore(&d40c->base->lcla_pool.lock, flags);
661
662 return ret;
663}
664
665static int d40_lcla_free_all(struct d40_chan *d40c,
666 struct d40_desc *d40d)
667{
668 unsigned long flags;
669 int i;
670 int ret = -EINVAL;
671
Rabin Vincent724a8572011-01-25 11:18:08 +0100672 if (chan_is_physical(d40c))
Jonas Aaberg698e4732010-08-09 12:08:56 +0000673 return 0;
674
675 spin_lock_irqsave(&d40c->base->lcla_pool.lock, flags);
676
677 for (i = 1 ; i < D40_LCLA_LINK_PER_EVENT_GRP / 2; i++) {
Fabio Baltieri7ce529e2012-12-18 16:59:09 +0100678 int idx = d40c->phy_chan->num * D40_LCLA_LINK_PER_EVENT_GRP + i;
679
680 if (d40c->base->lcla_pool.alloc_map[idx] == d40d) {
681 d40c->base->lcla_pool.alloc_map[idx] = NULL;
Jonas Aaberg698e4732010-08-09 12:08:56 +0000682 d40d->lcla_alloc--;
683 if (d40d->lcla_alloc == 0) {
684 ret = 0;
685 break;
686 }
687 }
688 }
689
690 spin_unlock_irqrestore(&d40c->base->lcla_pool.lock, flags);
691
692 return ret;
693
694}
695
Linus Walleij8d318a52010-03-30 15:33:42 +0200696static void d40_desc_remove(struct d40_desc *d40d)
697{
698 list_del(&d40d->node);
699}
700
701static struct d40_desc *d40_desc_get(struct d40_chan *d40c)
702{
Rabin Vincenta2c15fa2010-10-06 08:20:37 +0000703 struct d40_desc *desc = NULL;
Linus Walleij8d318a52010-03-30 15:33:42 +0200704
705 if (!list_empty(&d40c->client)) {
Rabin Vincenta2c15fa2010-10-06 08:20:37 +0000706 struct d40_desc *d;
707 struct d40_desc *_d;
708
Narayanan G7fb3e752011-11-17 17:26:41 +0530709 list_for_each_entry_safe(d, _d, &d40c->client, node) {
Linus Walleij8d318a52010-03-30 15:33:42 +0200710 if (async_tx_test_ack(&d->txd)) {
Linus Walleij8d318a52010-03-30 15:33:42 +0200711 d40_desc_remove(d);
Rabin Vincenta2c15fa2010-10-06 08:20:37 +0000712 desc = d;
713 memset(desc, 0, sizeof(*desc));
Jonas Aabergc675b1b2010-06-20 21:25:08 +0000714 break;
Linus Walleij8d318a52010-03-30 15:33:42 +0200715 }
Narayanan G7fb3e752011-11-17 17:26:41 +0530716 }
Linus Walleij8d318a52010-03-30 15:33:42 +0200717 }
Rabin Vincenta2c15fa2010-10-06 08:20:37 +0000718
719 if (!desc)
720 desc = kmem_cache_zalloc(d40c->base->desc_slab, GFP_NOWAIT);
721
722 if (desc)
723 INIT_LIST_HEAD(&desc->node);
724
725 return desc;
Linus Walleij8d318a52010-03-30 15:33:42 +0200726}
727
728static void d40_desc_free(struct d40_chan *d40c, struct d40_desc *d40d)
729{
Jonas Aaberg698e4732010-08-09 12:08:56 +0000730
Rabin Vincentb00f9382011-01-25 11:18:15 +0100731 d40_pool_lli_free(d40c, d40d);
Jonas Aaberg698e4732010-08-09 12:08:56 +0000732 d40_lcla_free_all(d40c, d40d);
Jonas Aabergc675b1b2010-06-20 21:25:08 +0000733 kmem_cache_free(d40c->base->desc_slab, d40d);
Linus Walleij8d318a52010-03-30 15:33:42 +0200734}
735
736static void d40_desc_submit(struct d40_chan *d40c, struct d40_desc *desc)
737{
738 list_add_tail(&desc->node, &d40c->active);
739}
740
Rabin Vincent1c4b0922011-01-25 11:18:24 +0100741static void d40_phy_lli_load(struct d40_chan *chan, struct d40_desc *desc)
742{
743 struct d40_phy_lli *lli_dst = desc->lli_phy.dst;
744 struct d40_phy_lli *lli_src = desc->lli_phy.src;
745 void __iomem *base = chan_base(chan);
746
747 writel(lli_src->reg_cfg, base + D40_CHAN_REG_SSCFG);
748 writel(lli_src->reg_elt, base + D40_CHAN_REG_SSELT);
749 writel(lli_src->reg_ptr, base + D40_CHAN_REG_SSPTR);
750 writel(lli_src->reg_lnk, base + D40_CHAN_REG_SSLNK);
751
752 writel(lli_dst->reg_cfg, base + D40_CHAN_REG_SDCFG);
753 writel(lli_dst->reg_elt, base + D40_CHAN_REG_SDELT);
754 writel(lli_dst->reg_ptr, base + D40_CHAN_REG_SDPTR);
755 writel(lli_dst->reg_lnk, base + D40_CHAN_REG_SDLNK);
756}
757
Fabio Baltieri4226dd82012-12-13 13:46:16 +0100758static void d40_desc_done(struct d40_chan *d40c, struct d40_desc *desc)
759{
760 list_add_tail(&desc->node, &d40c->done);
761}
762
Rabin Vincente65889c2011-01-25 11:18:31 +0100763static void d40_log_lli_to_lcxa(struct d40_chan *chan, struct d40_desc *desc)
764{
765 struct d40_lcla_pool *pool = &chan->base->lcla_pool;
766 struct d40_log_lli_bidir *lli = &desc->lli_log;
767 int lli_current = desc->lli_current;
768 int lli_len = desc->lli_len;
Rabin Vincent0c842b52011-01-25 11:18:35 +0100769 bool cyclic = desc->cyclic;
Rabin Vincente65889c2011-01-25 11:18:31 +0100770 int curr_lcla = -EINVAL;
Rabin Vincent0c842b52011-01-25 11:18:35 +0100771 int first_lcla = 0;
Narayanan G28c7a192011-11-22 13:56:55 +0530772 bool use_esram_lcla = chan->base->plat_data->use_esram_lcla;
Rabin Vincent0c842b52011-01-25 11:18:35 +0100773 bool linkback;
Rabin Vincente65889c2011-01-25 11:18:31 +0100774
Rabin Vincent0c842b52011-01-25 11:18:35 +0100775 /*
776 * We may have partially running cyclic transfers, in case we did't get
777 * enough LCLA entries.
778 */
779 linkback = cyclic && lli_current == 0;
780
781 /*
782 * For linkback, we need one LCLA even with only one link, because we
783 * can't link back to the one in LCPA space
784 */
785 if (linkback || (lli_len - lli_current > 1)) {
Rabin Vincente65889c2011-01-25 11:18:31 +0100786 curr_lcla = d40_lcla_alloc_one(chan, desc);
Rabin Vincent0c842b52011-01-25 11:18:35 +0100787 first_lcla = curr_lcla;
788 }
Rabin Vincente65889c2011-01-25 11:18:31 +0100789
Rabin Vincent0c842b52011-01-25 11:18:35 +0100790 /*
791 * For linkback, we normally load the LCPA in the loop since we need to
792 * link it to the second LCLA and not the first. However, if we
793 * couldn't even get a first LCLA, then we have to run in LCPA and
794 * reload manually.
795 */
796 if (!linkback || curr_lcla == -EINVAL) {
797 unsigned int flags = 0;
Rabin Vincente65889c2011-01-25 11:18:31 +0100798
Rabin Vincent0c842b52011-01-25 11:18:35 +0100799 if (curr_lcla == -EINVAL)
800 flags |= LLI_TERM_INT;
801
802 d40_log_lli_lcpa_write(chan->lcpa,
803 &lli->dst[lli_current],
804 &lli->src[lli_current],
805 curr_lcla,
806 flags);
807 lli_current++;
808 }
Rabin Vincent6045f0b2011-01-25 11:18:32 +0100809
810 if (curr_lcla < 0)
811 goto out;
812
Rabin Vincente65889c2011-01-25 11:18:31 +0100813 for (; lli_current < lli_len; lli_current++) {
814 unsigned int lcla_offset = chan->phy_chan->num * 1024 +
815 8 * curr_lcla * 2;
816 struct d40_log_lli *lcla = pool->base + lcla_offset;
Rabin Vincent0c842b52011-01-25 11:18:35 +0100817 unsigned int flags = 0;
Rabin Vincente65889c2011-01-25 11:18:31 +0100818 int next_lcla;
819
820 if (lli_current + 1 < lli_len)
821 next_lcla = d40_lcla_alloc_one(chan, desc);
822 else
Rabin Vincent0c842b52011-01-25 11:18:35 +0100823 next_lcla = linkback ? first_lcla : -EINVAL;
Rabin Vincente65889c2011-01-25 11:18:31 +0100824
Rabin Vincent0c842b52011-01-25 11:18:35 +0100825 if (cyclic || next_lcla == -EINVAL)
826 flags |= LLI_TERM_INT;
827
828 if (linkback && curr_lcla == first_lcla) {
829 /* First link goes in both LCPA and LCLA */
830 d40_log_lli_lcpa_write(chan->lcpa,
831 &lli->dst[lli_current],
832 &lli->src[lli_current],
833 next_lcla, flags);
834 }
835
836 /*
837 * One unused LCLA in the cyclic case if the very first
838 * next_lcla fails...
839 */
Rabin Vincente65889c2011-01-25 11:18:31 +0100840 d40_log_lli_lcla_write(lcla,
841 &lli->dst[lli_current],
842 &lli->src[lli_current],
Rabin Vincent0c842b52011-01-25 11:18:35 +0100843 next_lcla, flags);
Rabin Vincente65889c2011-01-25 11:18:31 +0100844
Narayanan G28c7a192011-11-22 13:56:55 +0530845 /*
846 * Cache maintenance is not needed if lcla is
847 * mapped in esram
848 */
849 if (!use_esram_lcla) {
850 dma_sync_single_range_for_device(chan->base->dev,
851 pool->dma_addr, lcla_offset,
852 2 * sizeof(struct d40_log_lli),
853 DMA_TO_DEVICE);
854 }
Rabin Vincente65889c2011-01-25 11:18:31 +0100855 curr_lcla = next_lcla;
856
Rabin Vincent0c842b52011-01-25 11:18:35 +0100857 if (curr_lcla == -EINVAL || curr_lcla == first_lcla) {
Rabin Vincente65889c2011-01-25 11:18:31 +0100858 lli_current++;
859 break;
860 }
861 }
862
Rabin Vincent6045f0b2011-01-25 11:18:32 +0100863out:
Rabin Vincente65889c2011-01-25 11:18:31 +0100864 desc->lli_current = lli_current;
865}
866
Jonas Aaberg698e4732010-08-09 12:08:56 +0000867static void d40_desc_load(struct d40_chan *d40c, struct d40_desc *d40d)
868{
Rabin Vincent724a8572011-01-25 11:18:08 +0100869 if (chan_is_physical(d40c)) {
Rabin Vincent1c4b0922011-01-25 11:18:24 +0100870 d40_phy_lli_load(d40c, d40d);
Jonas Aaberg698e4732010-08-09 12:08:56 +0000871 d40d->lli_current = d40d->lli_len;
Rabin Vincente65889c2011-01-25 11:18:31 +0100872 } else
873 d40_log_lli_to_lcxa(d40c, d40d);
Jonas Aaberg698e4732010-08-09 12:08:56 +0000874}
875
Linus Walleij8d318a52010-03-30 15:33:42 +0200876static struct d40_desc *d40_first_active_get(struct d40_chan *d40c)
877{
878 struct d40_desc *d;
879
880 if (list_empty(&d40c->active))
881 return NULL;
882
883 d = list_first_entry(&d40c->active,
884 struct d40_desc,
885 node);
886 return d;
887}
888
Per Forlin74043682011-08-29 13:33:34 +0200889/* remove desc from current queue and add it to the pending_queue */
Linus Walleij8d318a52010-03-30 15:33:42 +0200890static void d40_desc_queue(struct d40_chan *d40c, struct d40_desc *desc)
891{
Per Forlin74043682011-08-29 13:33:34 +0200892 d40_desc_remove(desc);
893 desc->is_in_client_list = false;
Per Forlina8f30672011-06-26 23:29:52 +0200894 list_add_tail(&desc->node, &d40c->pending_queue);
895}
896
897static struct d40_desc *d40_first_pending(struct d40_chan *d40c)
898{
899 struct d40_desc *d;
900
901 if (list_empty(&d40c->pending_queue))
902 return NULL;
903
904 d = list_first_entry(&d40c->pending_queue,
905 struct d40_desc,
906 node);
907 return d;
Linus Walleij8d318a52010-03-30 15:33:42 +0200908}
909
910static struct d40_desc *d40_first_queued(struct d40_chan *d40c)
911{
912 struct d40_desc *d;
913
914 if (list_empty(&d40c->queue))
915 return NULL;
916
917 d = list_first_entry(&d40c->queue,
918 struct d40_desc,
919 node);
920 return d;
921}
922
Fabio Baltieri4226dd82012-12-13 13:46:16 +0100923static struct d40_desc *d40_first_done(struct d40_chan *d40c)
924{
925 if (list_empty(&d40c->done))
926 return NULL;
927
928 return list_first_entry(&d40c->done, struct d40_desc, node);
929}
930
Per Forlind49278e2010-12-20 18:31:38 +0100931static int d40_psize_2_burst_size(bool is_log, int psize)
932{
933 if (is_log) {
934 if (psize == STEDMA40_PSIZE_LOG_1)
935 return 1;
936 } else {
937 if (psize == STEDMA40_PSIZE_PHY_1)
938 return 1;
939 }
Linus Walleij8d318a52010-03-30 15:33:42 +0200940
Per Forlind49278e2010-12-20 18:31:38 +0100941 return 2 << psize;
942}
943
944/*
945 * The dma only supports transmitting packages up to
946 * STEDMA40_MAX_SEG_SIZE << data_width. Calculate the total number of
947 * dma elements required to send the entire sg list
948 */
949static int d40_size_2_dmalen(int size, u32 data_width1, u32 data_width2)
950{
951 int dmalen;
952 u32 max_w = max(data_width1, data_width2);
953 u32 min_w = min(data_width1, data_width2);
954 u32 seg_max = ALIGN(STEDMA40_MAX_SEG_SIZE << min_w, 1 << max_w);
955
956 if (seg_max > STEDMA40_MAX_SEG_SIZE)
957 seg_max -= (1 << max_w);
958
959 if (!IS_ALIGNED(size, 1 << max_w))
960 return -EINVAL;
961
962 if (size <= seg_max)
963 dmalen = 1;
964 else {
965 dmalen = size / seg_max;
966 if (dmalen * seg_max < size)
967 dmalen++;
968 }
969 return dmalen;
970}
971
972static int d40_sg_2_dmalen(struct scatterlist *sgl, int sg_len,
973 u32 data_width1, u32 data_width2)
974{
975 struct scatterlist *sg;
976 int i;
977 int len = 0;
978 int ret;
979
980 for_each_sg(sgl, sg, sg_len, i) {
981 ret = d40_size_2_dmalen(sg_dma_len(sg),
982 data_width1, data_width2);
983 if (ret < 0)
984 return ret;
985 len += ret;
986 }
987 return len;
988}
989
Narayanan G7fb3e752011-11-17 17:26:41 +0530990
991#ifdef CONFIG_PM
992static void dma40_backup(void __iomem *baseaddr, u32 *backup,
993 u32 *regaddr, int num, bool save)
994{
995 int i;
996
997 for (i = 0; i < num; i++) {
998 void __iomem *addr = baseaddr + regaddr[i];
999
1000 if (save)
1001 backup[i] = readl_relaxed(addr);
1002 else
1003 writel_relaxed(backup[i], addr);
1004 }
1005}
1006
1007static void d40_save_restore_registers(struct d40_base *base, bool save)
1008{
1009 int i;
1010
1011 /* Save/Restore channel specific registers */
1012 for (i = 0; i < base->num_phy_chans; i++) {
1013 void __iomem *addr;
1014 int idx;
1015
1016 if (base->phy_res[i].reserved)
1017 continue;
1018
1019 addr = base->virtbase + D40_DREG_PCBASE + i * D40_DREG_PCDELTA;
1020 idx = i * ARRAY_SIZE(d40_backup_regs_chan);
1021
1022 dma40_backup(addr, &base->reg_val_backup_chan[idx],
1023 d40_backup_regs_chan,
1024 ARRAY_SIZE(d40_backup_regs_chan),
1025 save);
1026 }
1027
1028 /* Save/Restore global registers */
1029 dma40_backup(base->virtbase, base->reg_val_backup,
1030 d40_backup_regs, ARRAY_SIZE(d40_backup_regs),
1031 save);
1032
1033 /* Save/Restore registers only existing on dma40 v3 and later */
Tong Liu3cb645d2012-09-26 10:07:30 +00001034 if (base->gen_dmac.backup)
1035 dma40_backup(base->virtbase, base->reg_val_backup_v4,
1036 base->gen_dmac.backup,
1037 base->gen_dmac.backup_size,
1038 save);
Narayanan G7fb3e752011-11-17 17:26:41 +05301039}
1040#else
1041static void d40_save_restore_registers(struct d40_base *base, bool save)
1042{
1043}
1044#endif
Linus Walleij8d318a52010-03-30 15:33:42 +02001045
Narayanan G1bdae6f2012-02-09 12:41:37 +05301046static int __d40_execute_command_phy(struct d40_chan *d40c,
1047 enum d40_command command)
Linus Walleij8d318a52010-03-30 15:33:42 +02001048{
Jonas Aaberg767a9672010-08-09 12:08:34 +00001049 u32 status;
1050 int i;
Linus Walleij8d318a52010-03-30 15:33:42 +02001051 void __iomem *active_reg;
1052 int ret = 0;
1053 unsigned long flags;
Jonas Aaberg1d392a72010-06-20 21:26:01 +00001054 u32 wmask;
Linus Walleij8d318a52010-03-30 15:33:42 +02001055
Narayanan G1bdae6f2012-02-09 12:41:37 +05301056 if (command == D40_DMA_STOP) {
1057 ret = __d40_execute_command_phy(d40c, D40_DMA_SUSPEND_REQ);
1058 if (ret)
1059 return ret;
1060 }
1061
Linus Walleij8d318a52010-03-30 15:33:42 +02001062 spin_lock_irqsave(&d40c->base->execmd_lock, flags);
1063
1064 if (d40c->phy_chan->num % 2 == 0)
1065 active_reg = d40c->base->virtbase + D40_DREG_ACTIVE;
1066 else
1067 active_reg = d40c->base->virtbase + D40_DREG_ACTIVO;
1068
1069 if (command == D40_DMA_SUSPEND_REQ) {
1070 status = (readl(active_reg) &
1071 D40_CHAN_POS_MASK(d40c->phy_chan->num)) >>
1072 D40_CHAN_POS(d40c->phy_chan->num);
1073
1074 if (status == D40_DMA_SUSPENDED || status == D40_DMA_STOP)
1075 goto done;
1076 }
1077
Jonas Aaberg1d392a72010-06-20 21:26:01 +00001078 wmask = 0xffffffff & ~(D40_CHAN_POS_MASK(d40c->phy_chan->num));
1079 writel(wmask | (command << D40_CHAN_POS(d40c->phy_chan->num)),
1080 active_reg);
Linus Walleij8d318a52010-03-30 15:33:42 +02001081
1082 if (command == D40_DMA_SUSPEND_REQ) {
1083
1084 for (i = 0 ; i < D40_SUSPEND_MAX_IT; i++) {
1085 status = (readl(active_reg) &
1086 D40_CHAN_POS_MASK(d40c->phy_chan->num)) >>
1087 D40_CHAN_POS(d40c->phy_chan->num);
1088
1089 cpu_relax();
1090 /*
1091 * Reduce the number of bus accesses while
1092 * waiting for the DMA to suspend.
1093 */
1094 udelay(3);
1095
1096 if (status == D40_DMA_STOP ||
1097 status == D40_DMA_SUSPENDED)
1098 break;
1099 }
1100
1101 if (i == D40_SUSPEND_MAX_IT) {
Rabin Vincent6db5a8b2011-01-25 11:18:09 +01001102 chan_err(d40c,
1103 "unable to suspend the chl %d (log: %d) status %x\n",
1104 d40c->phy_chan->num, d40c->log_num,
Linus Walleij8d318a52010-03-30 15:33:42 +02001105 status);
1106 dump_stack();
1107 ret = -EBUSY;
1108 }
1109
1110 }
1111done:
1112 spin_unlock_irqrestore(&d40c->base->execmd_lock, flags);
1113 return ret;
1114}
1115
1116static void d40_term_all(struct d40_chan *d40c)
1117{
1118 struct d40_desc *d40d;
Per Forlin74043682011-08-29 13:33:34 +02001119 struct d40_desc *_d;
Linus Walleij8d318a52010-03-30 15:33:42 +02001120
Fabio Baltieri4226dd82012-12-13 13:46:16 +01001121 /* Release completed descriptors */
1122 while ((d40d = d40_first_done(d40c))) {
1123 d40_desc_remove(d40d);
1124 d40_desc_free(d40c, d40d);
1125 }
1126
Linus Walleij8d318a52010-03-30 15:33:42 +02001127 /* Release active descriptors */
1128 while ((d40d = d40_first_active_get(d40c))) {
1129 d40_desc_remove(d40d);
Linus Walleij8d318a52010-03-30 15:33:42 +02001130 d40_desc_free(d40c, d40d);
1131 }
1132
1133 /* Release queued descriptors waiting for transfer */
1134 while ((d40d = d40_first_queued(d40c))) {
1135 d40_desc_remove(d40d);
Linus Walleij8d318a52010-03-30 15:33:42 +02001136 d40_desc_free(d40c, d40d);
1137 }
1138
Per Forlina8f30672011-06-26 23:29:52 +02001139 /* Release pending descriptors */
1140 while ((d40d = d40_first_pending(d40c))) {
1141 d40_desc_remove(d40d);
1142 d40_desc_free(d40c, d40d);
1143 }
Linus Walleij8d318a52010-03-30 15:33:42 +02001144
Per Forlin74043682011-08-29 13:33:34 +02001145 /* Release client owned descriptors */
1146 if (!list_empty(&d40c->client))
1147 list_for_each_entry_safe(d40d, _d, &d40c->client, node) {
1148 d40_desc_remove(d40d);
1149 d40_desc_free(d40c, d40d);
1150 }
1151
Per Forlin82babbb362011-08-29 13:33:35 +02001152 /* Release descriptors in prepare queue */
1153 if (!list_empty(&d40c->prepare_queue))
1154 list_for_each_entry_safe(d40d, _d,
1155 &d40c->prepare_queue, node) {
1156 d40_desc_remove(d40d);
1157 d40_desc_free(d40c, d40d);
1158 }
Per Forlin74043682011-08-29 13:33:34 +02001159
Linus Walleij8d318a52010-03-30 15:33:42 +02001160 d40c->pending_tx = 0;
Linus Walleij8d318a52010-03-30 15:33:42 +02001161}
1162
Narayanan G1bdae6f2012-02-09 12:41:37 +05301163static void __d40_config_set_event(struct d40_chan *d40c,
1164 enum d40_events event_type, u32 event,
1165 int reg)
Rabin Vincent262d2912011-01-25 11:18:05 +01001166{
Rabin Vincent8ca84682011-01-25 11:18:07 +01001167 void __iomem *addr = chan_base(d40c) + reg;
Rabin Vincent262d2912011-01-25 11:18:05 +01001168 int tries;
Narayanan G1bdae6f2012-02-09 12:41:37 +05301169 u32 status;
Rabin Vincent262d2912011-01-25 11:18:05 +01001170
Narayanan G1bdae6f2012-02-09 12:41:37 +05301171 switch (event_type) {
1172
1173 case D40_DEACTIVATE_EVENTLINE:
1174
Rabin Vincent262d2912011-01-25 11:18:05 +01001175 writel((D40_DEACTIVATE_EVENTLINE << D40_EVENTLINE_POS(event))
1176 | ~D40_EVENTLINE_MASK(event), addr);
Narayanan G1bdae6f2012-02-09 12:41:37 +05301177 break;
Rabin Vincent262d2912011-01-25 11:18:05 +01001178
Narayanan G1bdae6f2012-02-09 12:41:37 +05301179 case D40_SUSPEND_REQ_EVENTLINE:
1180 status = (readl(addr) & D40_EVENTLINE_MASK(event)) >>
1181 D40_EVENTLINE_POS(event);
1182
1183 if (status == D40_DEACTIVATE_EVENTLINE ||
1184 status == D40_SUSPEND_REQ_EVENTLINE)
1185 break;
1186
1187 writel((D40_SUSPEND_REQ_EVENTLINE << D40_EVENTLINE_POS(event))
1188 | ~D40_EVENTLINE_MASK(event), addr);
1189
1190 for (tries = 0 ; tries < D40_SUSPEND_MAX_IT; tries++) {
1191
1192 status = (readl(addr) & D40_EVENTLINE_MASK(event)) >>
1193 D40_EVENTLINE_POS(event);
1194
1195 cpu_relax();
1196 /*
1197 * Reduce the number of bus accesses while
1198 * waiting for the DMA to suspend.
1199 */
1200 udelay(3);
1201
1202 if (status == D40_DEACTIVATE_EVENTLINE)
1203 break;
1204 }
1205
1206 if (tries == D40_SUSPEND_MAX_IT) {
1207 chan_err(d40c,
1208 "unable to stop the event_line chl %d (log: %d)"
1209 "status %x\n", d40c->phy_chan->num,
1210 d40c->log_num, status);
1211 }
1212 break;
1213
1214 case D40_ACTIVATE_EVENTLINE:
Rabin Vincent262d2912011-01-25 11:18:05 +01001215 /*
1216 * The hardware sometimes doesn't register the enable when src and dst
1217 * event lines are active on the same logical channel. Retry to ensure
1218 * it does. Usually only one retry is sufficient.
1219 */
Narayanan G1bdae6f2012-02-09 12:41:37 +05301220 tries = 100;
1221 while (--tries) {
1222 writel((D40_ACTIVATE_EVENTLINE <<
1223 D40_EVENTLINE_POS(event)) |
1224 ~D40_EVENTLINE_MASK(event), addr);
Rabin Vincent262d2912011-01-25 11:18:05 +01001225
Narayanan G1bdae6f2012-02-09 12:41:37 +05301226 if (readl(addr) & D40_EVENTLINE_MASK(event))
1227 break;
1228 }
1229
1230 if (tries != 99)
1231 dev_dbg(chan2dev(d40c),
1232 "[%s] workaround enable S%cLNK (%d tries)\n",
1233 __func__, reg == D40_CHAN_REG_SSLNK ? 'S' : 'D',
1234 100 - tries);
1235
1236 WARN_ON(!tries);
1237 break;
1238
1239 case D40_ROUND_EVENTLINE:
1240 BUG();
1241 break;
1242
Rabin Vincent262d2912011-01-25 11:18:05 +01001243 }
Rabin Vincent262d2912011-01-25 11:18:05 +01001244}
1245
Narayanan G1bdae6f2012-02-09 12:41:37 +05301246static void d40_config_set_event(struct d40_chan *d40c,
1247 enum d40_events event_type)
Linus Walleij8d318a52010-03-30 15:33:42 +02001248{
Linus Walleij8d318a52010-03-30 15:33:42 +02001249 /* Enable event line connected to device (or memcpy) */
1250 if ((d40c->dma_cfg.dir == STEDMA40_PERIPH_TO_MEM) ||
1251 (d40c->dma_cfg.dir == STEDMA40_PERIPH_TO_PERIPH)) {
1252 u32 event = D40_TYPE_TO_EVENT(d40c->dma_cfg.src_dev_type);
1253
Narayanan G1bdae6f2012-02-09 12:41:37 +05301254 __d40_config_set_event(d40c, event_type, event,
Rabin Vincent262d2912011-01-25 11:18:05 +01001255 D40_CHAN_REG_SSLNK);
Linus Walleij8d318a52010-03-30 15:33:42 +02001256 }
Rabin Vincent262d2912011-01-25 11:18:05 +01001257
Linus Walleij8d318a52010-03-30 15:33:42 +02001258 if (d40c->dma_cfg.dir != STEDMA40_PERIPH_TO_MEM) {
1259 u32 event = D40_TYPE_TO_EVENT(d40c->dma_cfg.dst_dev_type);
1260
Narayanan G1bdae6f2012-02-09 12:41:37 +05301261 __d40_config_set_event(d40c, event_type, event,
Rabin Vincent262d2912011-01-25 11:18:05 +01001262 D40_CHAN_REG_SDLNK);
Linus Walleij8d318a52010-03-30 15:33:42 +02001263 }
Linus Walleij8d318a52010-03-30 15:33:42 +02001264}
1265
Jonas Aaberga5ebca42010-05-18 00:41:09 +02001266static u32 d40_chan_has_events(struct d40_chan *d40c)
Linus Walleij8d318a52010-03-30 15:33:42 +02001267{
Rabin Vincent8ca84682011-01-25 11:18:07 +01001268 void __iomem *chanbase = chan_base(d40c);
Jonas Aabergbe8cb7d2010-08-09 12:07:44 +00001269 u32 val;
Linus Walleij8d318a52010-03-30 15:33:42 +02001270
Rabin Vincent8ca84682011-01-25 11:18:07 +01001271 val = readl(chanbase + D40_CHAN_REG_SSLNK);
1272 val |= readl(chanbase + D40_CHAN_REG_SDLNK);
Linus Walleij8d318a52010-03-30 15:33:42 +02001273
Jonas Aaberga5ebca42010-05-18 00:41:09 +02001274 return val;
Linus Walleij8d318a52010-03-30 15:33:42 +02001275}
1276
Narayanan G1bdae6f2012-02-09 12:41:37 +05301277static int
1278__d40_execute_command_log(struct d40_chan *d40c, enum d40_command command)
1279{
1280 unsigned long flags;
1281 int ret = 0;
1282 u32 active_status;
1283 void __iomem *active_reg;
1284
1285 if (d40c->phy_chan->num % 2 == 0)
1286 active_reg = d40c->base->virtbase + D40_DREG_ACTIVE;
1287 else
1288 active_reg = d40c->base->virtbase + D40_DREG_ACTIVO;
1289
1290
1291 spin_lock_irqsave(&d40c->phy_chan->lock, flags);
1292
1293 switch (command) {
1294 case D40_DMA_STOP:
1295 case D40_DMA_SUSPEND_REQ:
1296
1297 active_status = (readl(active_reg) &
1298 D40_CHAN_POS_MASK(d40c->phy_chan->num)) >>
1299 D40_CHAN_POS(d40c->phy_chan->num);
1300
1301 if (active_status == D40_DMA_RUN)
1302 d40_config_set_event(d40c, D40_SUSPEND_REQ_EVENTLINE);
1303 else
1304 d40_config_set_event(d40c, D40_DEACTIVATE_EVENTLINE);
1305
1306 if (!d40_chan_has_events(d40c) && (command == D40_DMA_STOP))
1307 ret = __d40_execute_command_phy(d40c, command);
1308
1309 break;
1310
1311 case D40_DMA_RUN:
1312
1313 d40_config_set_event(d40c, D40_ACTIVATE_EVENTLINE);
1314 ret = __d40_execute_command_phy(d40c, command);
1315 break;
1316
1317 case D40_DMA_SUSPENDED:
1318 BUG();
1319 break;
1320 }
1321
1322 spin_unlock_irqrestore(&d40c->phy_chan->lock, flags);
1323 return ret;
1324}
1325
1326static int d40_channel_execute_command(struct d40_chan *d40c,
1327 enum d40_command command)
1328{
1329 if (chan_is_logical(d40c))
1330 return __d40_execute_command_log(d40c, command);
1331 else
1332 return __d40_execute_command_phy(d40c, command);
1333}
1334
Rabin Vincent20a5b6d2010-10-12 13:00:52 +00001335static u32 d40_get_prmo(struct d40_chan *d40c)
1336{
1337 static const unsigned int phy_map[] = {
1338 [STEDMA40_PCHAN_BASIC_MODE]
1339 = D40_DREG_PRMO_PCHAN_BASIC,
1340 [STEDMA40_PCHAN_MODULO_MODE]
1341 = D40_DREG_PRMO_PCHAN_MODULO,
1342 [STEDMA40_PCHAN_DOUBLE_DST_MODE]
1343 = D40_DREG_PRMO_PCHAN_DOUBLE_DST,
1344 };
1345 static const unsigned int log_map[] = {
1346 [STEDMA40_LCHAN_SRC_PHY_DST_LOG]
1347 = D40_DREG_PRMO_LCHAN_SRC_PHY_DST_LOG,
1348 [STEDMA40_LCHAN_SRC_LOG_DST_PHY]
1349 = D40_DREG_PRMO_LCHAN_SRC_LOG_DST_PHY,
1350 [STEDMA40_LCHAN_SRC_LOG_DST_LOG]
1351 = D40_DREG_PRMO_LCHAN_SRC_LOG_DST_LOG,
1352 };
1353
Rabin Vincent724a8572011-01-25 11:18:08 +01001354 if (chan_is_physical(d40c))
Rabin Vincent20a5b6d2010-10-12 13:00:52 +00001355 return phy_map[d40c->dma_cfg.mode_opt];
1356 else
1357 return log_map[d40c->dma_cfg.mode_opt];
1358}
1359
Jonas Aabergb55912c2010-08-09 12:08:02 +00001360static void d40_config_write(struct d40_chan *d40c)
Linus Walleij8d318a52010-03-30 15:33:42 +02001361{
1362 u32 addr_base;
1363 u32 var;
Linus Walleij8d318a52010-03-30 15:33:42 +02001364
1365 /* Odd addresses are even addresses + 4 */
1366 addr_base = (d40c->phy_chan->num % 2) * 4;
1367 /* Setup channel mode to logical or physical */
Rabin Vincent724a8572011-01-25 11:18:08 +01001368 var = ((u32)(chan_is_logical(d40c)) + 1) <<
Linus Walleij8d318a52010-03-30 15:33:42 +02001369 D40_CHAN_POS(d40c->phy_chan->num);
1370 writel(var, d40c->base->virtbase + D40_DREG_PRMSE + addr_base);
1371
1372 /* Setup operational mode option register */
Rabin Vincent20a5b6d2010-10-12 13:00:52 +00001373 var = d40_get_prmo(d40c) << D40_CHAN_POS(d40c->phy_chan->num);
Linus Walleij8d318a52010-03-30 15:33:42 +02001374
1375 writel(var, d40c->base->virtbase + D40_DREG_PRMOE + addr_base);
1376
Rabin Vincent724a8572011-01-25 11:18:08 +01001377 if (chan_is_logical(d40c)) {
Rabin Vincent8ca84682011-01-25 11:18:07 +01001378 int lidx = (d40c->phy_chan->num << D40_SREG_ELEM_LOG_LIDX_POS)
1379 & D40_SREG_ELEM_LOG_LIDX_MASK;
1380 void __iomem *chanbase = chan_base(d40c);
1381
Linus Walleij8d318a52010-03-30 15:33:42 +02001382 /* Set default config for CFG reg */
Rabin Vincent8ca84682011-01-25 11:18:07 +01001383 writel(d40c->src_def_cfg, chanbase + D40_CHAN_REG_SSCFG);
1384 writel(d40c->dst_def_cfg, chanbase + D40_CHAN_REG_SDCFG);
Linus Walleij8d318a52010-03-30 15:33:42 +02001385
Jonas Aabergb55912c2010-08-09 12:08:02 +00001386 /* Set LIDX for lcla */
Rabin Vincent8ca84682011-01-25 11:18:07 +01001387 writel(lidx, chanbase + D40_CHAN_REG_SSELT);
1388 writel(lidx, chanbase + D40_CHAN_REG_SDELT);
Rabin Vincente9f3a492011-12-28 11:27:40 +05301389
1390 /* Clear LNK which will be used by d40_chan_has_events() */
1391 writel(0, chanbase + D40_CHAN_REG_SSLNK);
1392 writel(0, chanbase + D40_CHAN_REG_SDLNK);
Linus Walleij8d318a52010-03-30 15:33:42 +02001393 }
Linus Walleij8d318a52010-03-30 15:33:42 +02001394}
1395
Jonas Aabergaa182ae2010-08-09 12:08:26 +00001396static u32 d40_residue(struct d40_chan *d40c)
1397{
1398 u32 num_elt;
1399
Rabin Vincent724a8572011-01-25 11:18:08 +01001400 if (chan_is_logical(d40c))
Jonas Aabergaa182ae2010-08-09 12:08:26 +00001401 num_elt = (readl(&d40c->lcpa->lcsp2) & D40_MEM_LCSP2_ECNT_MASK)
1402 >> D40_MEM_LCSP2_ECNT_POS;
Rabin Vincent8ca84682011-01-25 11:18:07 +01001403 else {
1404 u32 val = readl(chan_base(d40c) + D40_CHAN_REG_SDELT);
1405 num_elt = (val & D40_SREG_ELEM_PHY_ECNT_MASK)
1406 >> D40_SREG_ELEM_PHY_ECNT_POS;
1407 }
1408
Jonas Aabergaa182ae2010-08-09 12:08:26 +00001409 return num_elt * (1 << d40c->dma_cfg.dst_info.data_width);
1410}
1411
1412static bool d40_tx_is_linked(struct d40_chan *d40c)
1413{
1414 bool is_link;
1415
Rabin Vincent724a8572011-01-25 11:18:08 +01001416 if (chan_is_logical(d40c))
Jonas Aabergaa182ae2010-08-09 12:08:26 +00001417 is_link = readl(&d40c->lcpa->lcsp3) & D40_MEM_LCSP3_DLOS_MASK;
1418 else
Rabin Vincent8ca84682011-01-25 11:18:07 +01001419 is_link = readl(chan_base(d40c) + D40_CHAN_REG_SDLNK)
1420 & D40_SREG_LNK_PHYS_LNK_MASK;
1421
Jonas Aabergaa182ae2010-08-09 12:08:26 +00001422 return is_link;
1423}
1424
Rabin Vincent86eb5fb2011-01-25 11:18:34 +01001425static int d40_pause(struct d40_chan *d40c)
Jonas Aabergaa182ae2010-08-09 12:08:26 +00001426{
Jonas Aabergaa182ae2010-08-09 12:08:26 +00001427 int res = 0;
1428 unsigned long flags;
1429
Jonas Aaberg3ac012a2010-08-09 12:09:12 +00001430 if (!d40c->busy)
1431 return 0;
1432
Narayanan G7fb3e752011-11-17 17:26:41 +05301433 pm_runtime_get_sync(d40c->base->dev);
Jonas Aabergaa182ae2010-08-09 12:08:26 +00001434 spin_lock_irqsave(&d40c->lock, flags);
1435
1436 res = d40_channel_execute_command(d40c, D40_DMA_SUSPEND_REQ);
Narayanan G1bdae6f2012-02-09 12:41:37 +05301437
Narayanan G7fb3e752011-11-17 17:26:41 +05301438 pm_runtime_mark_last_busy(d40c->base->dev);
1439 pm_runtime_put_autosuspend(d40c->base->dev);
Jonas Aabergaa182ae2010-08-09 12:08:26 +00001440 spin_unlock_irqrestore(&d40c->lock, flags);
1441 return res;
1442}
1443
Rabin Vincent86eb5fb2011-01-25 11:18:34 +01001444static int d40_resume(struct d40_chan *d40c)
Jonas Aabergaa182ae2010-08-09 12:08:26 +00001445{
Jonas Aabergaa182ae2010-08-09 12:08:26 +00001446 int res = 0;
1447 unsigned long flags;
1448
Jonas Aaberg3ac012a2010-08-09 12:09:12 +00001449 if (!d40c->busy)
1450 return 0;
1451
Jonas Aabergaa182ae2010-08-09 12:08:26 +00001452 spin_lock_irqsave(&d40c->lock, flags);
Narayanan G7fb3e752011-11-17 17:26:41 +05301453 pm_runtime_get_sync(d40c->base->dev);
Jonas Aabergaa182ae2010-08-09 12:08:26 +00001454
1455 /* If bytes left to transfer or linked tx resume job */
Narayanan G1bdae6f2012-02-09 12:41:37 +05301456 if (d40_residue(d40c) || d40_tx_is_linked(d40c))
Jonas Aabergaa182ae2010-08-09 12:08:26 +00001457 res = d40_channel_execute_command(d40c, D40_DMA_RUN);
Jonas Aabergaa182ae2010-08-09 12:08:26 +00001458
Narayanan G7fb3e752011-11-17 17:26:41 +05301459 pm_runtime_mark_last_busy(d40c->base->dev);
1460 pm_runtime_put_autosuspend(d40c->base->dev);
Jonas Aabergaa182ae2010-08-09 12:08:26 +00001461 spin_unlock_irqrestore(&d40c->lock, flags);
1462 return res;
1463}
1464
Linus Walleij8d318a52010-03-30 15:33:42 +02001465static dma_cookie_t d40_tx_submit(struct dma_async_tx_descriptor *tx)
1466{
1467 struct d40_chan *d40c = container_of(tx->chan,
1468 struct d40_chan,
1469 chan);
1470 struct d40_desc *d40d = container_of(tx, struct d40_desc, txd);
1471 unsigned long flags;
Russell King - ARM Linux884485e2012-03-06 22:34:46 +00001472 dma_cookie_t cookie;
Linus Walleij8d318a52010-03-30 15:33:42 +02001473
1474 spin_lock_irqsave(&d40c->lock, flags);
Russell King - ARM Linux884485e2012-03-06 22:34:46 +00001475 cookie = dma_cookie_assign(tx);
Linus Walleij8d318a52010-03-30 15:33:42 +02001476 d40_desc_queue(d40c, d40d);
Linus Walleij8d318a52010-03-30 15:33:42 +02001477 spin_unlock_irqrestore(&d40c->lock, flags);
1478
Russell King - ARM Linux884485e2012-03-06 22:34:46 +00001479 return cookie;
Linus Walleij8d318a52010-03-30 15:33:42 +02001480}
1481
1482static int d40_start(struct d40_chan *d40c)
1483{
Jonas Aaberg0c322692010-06-20 21:25:46 +00001484 return d40_channel_execute_command(d40c, D40_DMA_RUN);
Linus Walleij8d318a52010-03-30 15:33:42 +02001485}
1486
1487static struct d40_desc *d40_queue_start(struct d40_chan *d40c)
1488{
1489 struct d40_desc *d40d;
1490 int err;
1491
1492 /* Start queued jobs, if any */
1493 d40d = d40_first_queued(d40c);
1494
1495 if (d40d != NULL) {
Narayanan G1bdae6f2012-02-09 12:41:37 +05301496 if (!d40c->busy) {
Narayanan G7fb3e752011-11-17 17:26:41 +05301497 d40c->busy = true;
Narayanan G1bdae6f2012-02-09 12:41:37 +05301498 pm_runtime_get_sync(d40c->base->dev);
1499 }
Linus Walleij8d318a52010-03-30 15:33:42 +02001500
1501 /* Remove from queue */
1502 d40_desc_remove(d40d);
1503
1504 /* Add to active queue */
1505 d40_desc_submit(d40c, d40d);
1506
Rabin Vincent7d83a852011-01-25 11:18:06 +01001507 /* Initiate DMA job */
1508 d40_desc_load(d40c, d40d);
Jonas Aaberg698e4732010-08-09 12:08:56 +00001509
Rabin Vincent7d83a852011-01-25 11:18:06 +01001510 /* Start dma job */
1511 err = d40_start(d40c);
Linus Walleij8d318a52010-03-30 15:33:42 +02001512
Rabin Vincent7d83a852011-01-25 11:18:06 +01001513 if (err)
1514 return NULL;
Linus Walleij8d318a52010-03-30 15:33:42 +02001515 }
1516
1517 return d40d;
1518}
1519
1520/* called from interrupt context */
1521static void dma_tc_handle(struct d40_chan *d40c)
1522{
1523 struct d40_desc *d40d;
1524
Linus Walleij8d318a52010-03-30 15:33:42 +02001525 /* Get first active entry from list */
1526 d40d = d40_first_active_get(d40c);
1527
1528 if (d40d == NULL)
1529 return;
1530
Rabin Vincent0c842b52011-01-25 11:18:35 +01001531 if (d40d->cyclic) {
1532 /*
1533 * If this was a paritially loaded list, we need to reloaded
1534 * it, and only when the list is completed. We need to check
1535 * for done because the interrupt will hit for every link, and
1536 * not just the last one.
1537 */
1538 if (d40d->lli_current < d40d->lli_len
1539 && !d40_tx_is_linked(d40c)
1540 && !d40_residue(d40c)) {
1541 d40_lcla_free_all(d40c, d40d);
1542 d40_desc_load(d40c, d40d);
1543 (void) d40_start(d40c);
Linus Walleij8d318a52010-03-30 15:33:42 +02001544
Rabin Vincent0c842b52011-01-25 11:18:35 +01001545 if (d40d->lli_current == d40d->lli_len)
1546 d40d->lli_current = 0;
1547 }
1548 } else {
1549 d40_lcla_free_all(d40c, d40d);
1550
1551 if (d40d->lli_current < d40d->lli_len) {
1552 d40_desc_load(d40c, d40d);
1553 /* Start dma job */
1554 (void) d40_start(d40c);
1555 return;
1556 }
1557
1558 if (d40_queue_start(d40c) == NULL)
1559 d40c->busy = false;
Narayanan G7fb3e752011-11-17 17:26:41 +05301560 pm_runtime_mark_last_busy(d40c->base->dev);
1561 pm_runtime_put_autosuspend(d40c->base->dev);
Linus Walleij8d318a52010-03-30 15:33:42 +02001562 }
1563
Fabio Baltieri4226dd82012-12-13 13:46:16 +01001564 d40_desc_remove(d40d);
1565 d40_desc_done(d40c, d40d);
1566
Linus Walleij8d318a52010-03-30 15:33:42 +02001567 d40c->pending_tx++;
1568 tasklet_schedule(&d40c->tasklet);
1569
1570}
1571
1572static void dma_tasklet(unsigned long data)
1573{
1574 struct d40_chan *d40c = (struct d40_chan *) data;
Jonas Aaberg767a9672010-08-09 12:08:34 +00001575 struct d40_desc *d40d;
Linus Walleij8d318a52010-03-30 15:33:42 +02001576 unsigned long flags;
1577 dma_async_tx_callback callback;
1578 void *callback_param;
1579
1580 spin_lock_irqsave(&d40c->lock, flags);
1581
Fabio Baltieri4226dd82012-12-13 13:46:16 +01001582 /* Get first entry from the done list */
1583 d40d = d40_first_done(d40c);
1584 if (d40d == NULL) {
1585 /* Check if we have reached here for cyclic job */
1586 d40d = d40_first_active_get(d40c);
1587 if (d40d == NULL || !d40d->cyclic)
1588 goto err;
1589 }
Linus Walleij8d318a52010-03-30 15:33:42 +02001590
Rabin Vincent0c842b52011-01-25 11:18:35 +01001591 if (!d40d->cyclic)
Russell King - ARM Linuxf7fbce02012-03-06 22:35:07 +00001592 dma_cookie_complete(&d40d->txd);
Linus Walleij8d318a52010-03-30 15:33:42 +02001593
1594 /*
1595 * If terminating a channel pending_tx is set to zero.
1596 * This prevents any finished active jobs to return to the client.
1597 */
1598 if (d40c->pending_tx == 0) {
1599 spin_unlock_irqrestore(&d40c->lock, flags);
1600 return;
1601 }
1602
1603 /* Callback to client */
Jonas Aaberg767a9672010-08-09 12:08:34 +00001604 callback = d40d->txd.callback;
1605 callback_param = d40d->txd.callback_param;
Linus Walleij8d318a52010-03-30 15:33:42 +02001606
Rabin Vincent0c842b52011-01-25 11:18:35 +01001607 if (!d40d->cyclic) {
1608 if (async_tx_test_ack(&d40d->txd)) {
Jonas Aaberg767a9672010-08-09 12:08:34 +00001609 d40_desc_remove(d40d);
Rabin Vincent0c842b52011-01-25 11:18:35 +01001610 d40_desc_free(d40c, d40d);
Fabio Baltierif26e03a2012-12-13 17:12:37 +01001611 } else if (!d40d->is_in_client_list) {
1612 d40_desc_remove(d40d);
1613 d40_lcla_free_all(d40c, d40d);
1614 list_add_tail(&d40d->node, &d40c->client);
1615 d40d->is_in_client_list = true;
Linus Walleij8d318a52010-03-30 15:33:42 +02001616 }
1617 }
1618
1619 d40c->pending_tx--;
1620
1621 if (d40c->pending_tx)
1622 tasklet_schedule(&d40c->tasklet);
1623
1624 spin_unlock_irqrestore(&d40c->lock, flags);
1625
Jonas Aaberg767a9672010-08-09 12:08:34 +00001626 if (callback && (d40d->txd.flags & DMA_PREP_INTERRUPT))
Linus Walleij8d318a52010-03-30 15:33:42 +02001627 callback(callback_param);
1628
1629 return;
1630
Narayanan G1bdae6f2012-02-09 12:41:37 +05301631err:
1632 /* Rescue manouver if receiving double interrupts */
Linus Walleij8d318a52010-03-30 15:33:42 +02001633 if (d40c->pending_tx > 0)
1634 d40c->pending_tx--;
1635 spin_unlock_irqrestore(&d40c->lock, flags);
1636}
1637
1638static irqreturn_t d40_handle_interrupt(int irq, void *data)
1639{
Linus Walleij8d318a52010-03-30 15:33:42 +02001640 int i;
Linus Walleij8d318a52010-03-30 15:33:42 +02001641 u32 idx;
1642 u32 row;
1643 long chan = -1;
1644 struct d40_chan *d40c;
1645 unsigned long flags;
1646 struct d40_base *base = data;
Tong Liu3cb645d2012-09-26 10:07:30 +00001647 u32 regs[base->gen_dmac.il_size];
1648 struct d40_interrupt_lookup *il = base->gen_dmac.il;
1649 u32 il_size = base->gen_dmac.il_size;
Linus Walleij8d318a52010-03-30 15:33:42 +02001650
1651 spin_lock_irqsave(&base->interrupt_lock, flags);
1652
1653 /* Read interrupt status of both logical and physical channels */
Tong Liu3cb645d2012-09-26 10:07:30 +00001654 for (i = 0; i < il_size; i++)
Linus Walleij8d318a52010-03-30 15:33:42 +02001655 regs[i] = readl(base->virtbase + il[i].src);
1656
1657 for (;;) {
1658
1659 chan = find_next_bit((unsigned long *)regs,
Tong Liu3cb645d2012-09-26 10:07:30 +00001660 BITS_PER_LONG * il_size, chan + 1);
Linus Walleij8d318a52010-03-30 15:33:42 +02001661
1662 /* No more set bits found? */
Tong Liu3cb645d2012-09-26 10:07:30 +00001663 if (chan == BITS_PER_LONG * il_size)
Linus Walleij8d318a52010-03-30 15:33:42 +02001664 break;
1665
1666 row = chan / BITS_PER_LONG;
1667 idx = chan & (BITS_PER_LONG - 1);
1668
1669 /* ACK interrupt */
Jonas Aaberg1b003482010-08-09 12:07:54 +00001670 writel(1 << idx, base->virtbase + il[row].clr);
Linus Walleij8d318a52010-03-30 15:33:42 +02001671
1672 if (il[row].offset == D40_PHY_CHAN)
1673 d40c = base->lookup_phy_chans[idx];
1674 else
1675 d40c = base->lookup_log_chans[il[row].offset + idx];
1676 spin_lock(&d40c->lock);
1677
1678 if (!il[row].is_error)
1679 dma_tc_handle(d40c);
1680 else
Rabin Vincent6db5a8b2011-01-25 11:18:09 +01001681 d40_err(base->dev, "IRQ chan: %ld offset %d idx %d\n",
1682 chan, il[row].offset, idx);
Linus Walleij8d318a52010-03-30 15:33:42 +02001683
1684 spin_unlock(&d40c->lock);
1685 }
1686
1687 spin_unlock_irqrestore(&base->interrupt_lock, flags);
1688
1689 return IRQ_HANDLED;
1690}
1691
Linus Walleij8d318a52010-03-30 15:33:42 +02001692static int d40_validate_conf(struct d40_chan *d40c,
1693 struct stedma40_chan_cfg *conf)
1694{
1695 int res = 0;
1696 u32 dst_event_group = D40_TYPE_TO_GROUP(conf->dst_dev_type);
1697 u32 src_event_group = D40_TYPE_TO_GROUP(conf->src_dev_type);
Rabin Vincent38bdbf02010-10-12 13:00:51 +00001698 bool is_log = conf->mode == STEDMA40_MODE_LOGICAL;
Linus Walleij8d318a52010-03-30 15:33:42 +02001699
Linus Walleij0747c7ba2010-08-09 12:07:36 +00001700 if (!conf->dir) {
Rabin Vincent6db5a8b2011-01-25 11:18:09 +01001701 chan_err(d40c, "Invalid direction.\n");
Linus Walleij0747c7ba2010-08-09 12:07:36 +00001702 res = -EINVAL;
1703 }
1704
1705 if (conf->dst_dev_type != STEDMA40_DEV_DST_MEMORY &&
1706 d40c->base->plat_data->dev_tx[conf->dst_dev_type] == 0 &&
1707 d40c->runtime_addr == 0) {
1708
Rabin Vincent6db5a8b2011-01-25 11:18:09 +01001709 chan_err(d40c, "Invalid TX channel address (%d)\n",
1710 conf->dst_dev_type);
Linus Walleij0747c7ba2010-08-09 12:07:36 +00001711 res = -EINVAL;
1712 }
1713
1714 if (conf->src_dev_type != STEDMA40_DEV_SRC_MEMORY &&
1715 d40c->base->plat_data->dev_rx[conf->src_dev_type] == 0 &&
1716 d40c->runtime_addr == 0) {
Rabin Vincent6db5a8b2011-01-25 11:18:09 +01001717 chan_err(d40c, "Invalid RX channel address (%d)\n",
1718 conf->src_dev_type);
Linus Walleij0747c7ba2010-08-09 12:07:36 +00001719 res = -EINVAL;
1720 }
1721
1722 if (conf->dir == STEDMA40_MEM_TO_PERIPH &&
Linus Walleij8d318a52010-03-30 15:33:42 +02001723 dst_event_group == STEDMA40_DEV_DST_MEMORY) {
Rabin Vincent6db5a8b2011-01-25 11:18:09 +01001724 chan_err(d40c, "Invalid dst\n");
Linus Walleij8d318a52010-03-30 15:33:42 +02001725 res = -EINVAL;
1726 }
1727
Linus Walleij0747c7ba2010-08-09 12:07:36 +00001728 if (conf->dir == STEDMA40_PERIPH_TO_MEM &&
Linus Walleij8d318a52010-03-30 15:33:42 +02001729 src_event_group == STEDMA40_DEV_SRC_MEMORY) {
Rabin Vincent6db5a8b2011-01-25 11:18:09 +01001730 chan_err(d40c, "Invalid src\n");
Linus Walleij8d318a52010-03-30 15:33:42 +02001731 res = -EINVAL;
1732 }
1733
1734 if (src_event_group == STEDMA40_DEV_SRC_MEMORY &&
1735 dst_event_group == STEDMA40_DEV_DST_MEMORY && is_log) {
Rabin Vincent6db5a8b2011-01-25 11:18:09 +01001736 chan_err(d40c, "No event line\n");
Linus Walleij8d318a52010-03-30 15:33:42 +02001737 res = -EINVAL;
1738 }
1739
1740 if (conf->dir == STEDMA40_PERIPH_TO_PERIPH &&
1741 (src_event_group != dst_event_group)) {
Rabin Vincent6db5a8b2011-01-25 11:18:09 +01001742 chan_err(d40c, "Invalid event group\n");
Linus Walleij8d318a52010-03-30 15:33:42 +02001743 res = -EINVAL;
1744 }
1745
1746 if (conf->dir == STEDMA40_PERIPH_TO_PERIPH) {
1747 /*
1748 * DMAC HW supports it. Will be added to this driver,
1749 * in case any dma client requires it.
1750 */
Rabin Vincent6db5a8b2011-01-25 11:18:09 +01001751 chan_err(d40c, "periph to periph not supported\n");
Linus Walleij8d318a52010-03-30 15:33:42 +02001752 res = -EINVAL;
1753 }
1754
Per Forlind49278e2010-12-20 18:31:38 +01001755 if (d40_psize_2_burst_size(is_log, conf->src_info.psize) *
1756 (1 << conf->src_info.data_width) !=
1757 d40_psize_2_burst_size(is_log, conf->dst_info.psize) *
1758 (1 << conf->dst_info.data_width)) {
1759 /*
1760 * The DMAC hardware only supports
1761 * src (burst x width) == dst (burst x width)
1762 */
1763
Rabin Vincent6db5a8b2011-01-25 11:18:09 +01001764 chan_err(d40c, "src (burst x width) != dst (burst x width)\n");
Per Forlind49278e2010-12-20 18:31:38 +01001765 res = -EINVAL;
1766 }
1767
Linus Walleij8d318a52010-03-30 15:33:42 +02001768 return res;
1769}
1770
Narayanan G5cd326f2011-11-30 19:20:42 +05301771static bool d40_alloc_mask_set(struct d40_phy_res *phy,
1772 bool is_src, int log_event_line, bool is_log,
1773 bool *first_user)
Linus Walleij8d318a52010-03-30 15:33:42 +02001774{
1775 unsigned long flags;
1776 spin_lock_irqsave(&phy->lock, flags);
Narayanan G5cd326f2011-11-30 19:20:42 +05301777
1778 *first_user = ((phy->allocated_src | phy->allocated_dst)
1779 == D40_ALLOC_FREE);
1780
Marcin Mielczarczyk4aed79b2010-05-18 00:41:21 +02001781 if (!is_log) {
Linus Walleij8d318a52010-03-30 15:33:42 +02001782 /* Physical interrupts are masked per physical full channel */
1783 if (phy->allocated_src == D40_ALLOC_FREE &&
1784 phy->allocated_dst == D40_ALLOC_FREE) {
1785 phy->allocated_dst = D40_ALLOC_PHY;
1786 phy->allocated_src = D40_ALLOC_PHY;
1787 goto found;
1788 } else
1789 goto not_found;
1790 }
1791
1792 /* Logical channel */
1793 if (is_src) {
1794 if (phy->allocated_src == D40_ALLOC_PHY)
1795 goto not_found;
1796
1797 if (phy->allocated_src == D40_ALLOC_FREE)
1798 phy->allocated_src = D40_ALLOC_LOG_FREE;
1799
1800 if (!(phy->allocated_src & (1 << log_event_line))) {
1801 phy->allocated_src |= 1 << log_event_line;
1802 goto found;
1803 } else
1804 goto not_found;
1805 } else {
1806 if (phy->allocated_dst == D40_ALLOC_PHY)
1807 goto not_found;
1808
1809 if (phy->allocated_dst == D40_ALLOC_FREE)
1810 phy->allocated_dst = D40_ALLOC_LOG_FREE;
1811
1812 if (!(phy->allocated_dst & (1 << log_event_line))) {
1813 phy->allocated_dst |= 1 << log_event_line;
1814 goto found;
1815 } else
1816 goto not_found;
1817 }
1818
1819not_found:
1820 spin_unlock_irqrestore(&phy->lock, flags);
1821 return false;
1822found:
1823 spin_unlock_irqrestore(&phy->lock, flags);
1824 return true;
1825}
1826
1827static bool d40_alloc_mask_free(struct d40_phy_res *phy, bool is_src,
1828 int log_event_line)
1829{
1830 unsigned long flags;
1831 bool is_free = false;
1832
1833 spin_lock_irqsave(&phy->lock, flags);
1834 if (!log_event_line) {
Linus Walleij8d318a52010-03-30 15:33:42 +02001835 phy->allocated_dst = D40_ALLOC_FREE;
1836 phy->allocated_src = D40_ALLOC_FREE;
1837 is_free = true;
1838 goto out;
1839 }
1840
1841 /* Logical channel */
1842 if (is_src) {
1843 phy->allocated_src &= ~(1 << log_event_line);
1844 if (phy->allocated_src == D40_ALLOC_LOG_FREE)
1845 phy->allocated_src = D40_ALLOC_FREE;
1846 } else {
1847 phy->allocated_dst &= ~(1 << log_event_line);
1848 if (phy->allocated_dst == D40_ALLOC_LOG_FREE)
1849 phy->allocated_dst = D40_ALLOC_FREE;
1850 }
1851
1852 is_free = ((phy->allocated_src | phy->allocated_dst) ==
1853 D40_ALLOC_FREE);
1854
1855out:
1856 spin_unlock_irqrestore(&phy->lock, flags);
1857
1858 return is_free;
1859}
1860
Narayanan G5cd326f2011-11-30 19:20:42 +05301861static int d40_allocate_channel(struct d40_chan *d40c, bool *first_phy_user)
Linus Walleij8d318a52010-03-30 15:33:42 +02001862{
1863 int dev_type;
1864 int event_group;
1865 int event_line;
1866 struct d40_phy_res *phys;
1867 int i;
1868 int j;
1869 int log_num;
Gerald Baezaf000df82012-11-08 14:39:07 +01001870 int num_phy_chans;
Linus Walleij8d318a52010-03-30 15:33:42 +02001871 bool is_src;
Rabin Vincent38bdbf02010-10-12 13:00:51 +00001872 bool is_log = d40c->dma_cfg.mode == STEDMA40_MODE_LOGICAL;
Linus Walleij8d318a52010-03-30 15:33:42 +02001873
1874 phys = d40c->base->phy_res;
Gerald Baezaf000df82012-11-08 14:39:07 +01001875 num_phy_chans = d40c->base->num_phy_chans;
Linus Walleij8d318a52010-03-30 15:33:42 +02001876
1877 if (d40c->dma_cfg.dir == STEDMA40_PERIPH_TO_MEM) {
1878 dev_type = d40c->dma_cfg.src_dev_type;
1879 log_num = 2 * dev_type;
1880 is_src = true;
1881 } else if (d40c->dma_cfg.dir == STEDMA40_MEM_TO_PERIPH ||
1882 d40c->dma_cfg.dir == STEDMA40_MEM_TO_MEM) {
1883 /* dst event lines are used for logical memcpy */
1884 dev_type = d40c->dma_cfg.dst_dev_type;
1885 log_num = 2 * dev_type + 1;
1886 is_src = false;
1887 } else
1888 return -EINVAL;
1889
1890 event_group = D40_TYPE_TO_GROUP(dev_type);
1891 event_line = D40_TYPE_TO_EVENT(dev_type);
1892
1893 if (!is_log) {
1894 if (d40c->dma_cfg.dir == STEDMA40_MEM_TO_MEM) {
1895 /* Find physical half channel */
Gerald Baezaf000df82012-11-08 14:39:07 +01001896 if (d40c->dma_cfg.use_fixed_channel) {
1897 i = d40c->dma_cfg.phy_channel;
Marcin Mielczarczyk4aed79b2010-05-18 00:41:21 +02001898 if (d40_alloc_mask_set(&phys[i], is_src,
Narayanan G5cd326f2011-11-30 19:20:42 +05301899 0, is_log,
1900 first_phy_user))
Linus Walleij8d318a52010-03-30 15:33:42 +02001901 goto found_phy;
Gerald Baezaf000df82012-11-08 14:39:07 +01001902 } else {
1903 for (i = 0; i < num_phy_chans; i++) {
1904 if (d40_alloc_mask_set(&phys[i], is_src,
1905 0, is_log,
1906 first_phy_user))
1907 goto found_phy;
1908 }
Linus Walleij8d318a52010-03-30 15:33:42 +02001909 }
1910 } else
1911 for (j = 0; j < d40c->base->num_phy_chans; j += 8) {
1912 int phy_num = j + event_group * 2;
1913 for (i = phy_num; i < phy_num + 2; i++) {
Linus Walleij508849a2010-06-20 21:26:07 +00001914 if (d40_alloc_mask_set(&phys[i],
1915 is_src,
1916 0,
Narayanan G5cd326f2011-11-30 19:20:42 +05301917 is_log,
1918 first_phy_user))
Linus Walleij8d318a52010-03-30 15:33:42 +02001919 goto found_phy;
1920 }
1921 }
1922 return -EINVAL;
1923found_phy:
1924 d40c->phy_chan = &phys[i];
1925 d40c->log_num = D40_PHY_CHAN;
1926 goto out;
1927 }
1928 if (dev_type == -1)
1929 return -EINVAL;
1930
1931 /* Find logical channel */
1932 for (j = 0; j < d40c->base->num_phy_chans; j += 8) {
1933 int phy_num = j + event_group * 2;
Narayanan G5cd326f2011-11-30 19:20:42 +05301934
1935 if (d40c->dma_cfg.use_fixed_channel) {
1936 i = d40c->dma_cfg.phy_channel;
1937
1938 if ((i != phy_num) && (i != phy_num + 1)) {
1939 dev_err(chan2dev(d40c),
1940 "invalid fixed phy channel %d\n", i);
1941 return -EINVAL;
1942 }
1943
1944 if (d40_alloc_mask_set(&phys[i], is_src, event_line,
1945 is_log, first_phy_user))
1946 goto found_log;
1947
1948 dev_err(chan2dev(d40c),
1949 "could not allocate fixed phy channel %d\n", i);
1950 return -EINVAL;
1951 }
1952
Linus Walleij8d318a52010-03-30 15:33:42 +02001953 /*
1954 * Spread logical channels across all available physical rather
1955 * than pack every logical channel at the first available phy
1956 * channels.
1957 */
1958 if (is_src) {
1959 for (i = phy_num; i < phy_num + 2; i++) {
1960 if (d40_alloc_mask_set(&phys[i], is_src,
Narayanan G5cd326f2011-11-30 19:20:42 +05301961 event_line, is_log,
1962 first_phy_user))
Linus Walleij8d318a52010-03-30 15:33:42 +02001963 goto found_log;
1964 }
1965 } else {
1966 for (i = phy_num + 1; i >= phy_num; i--) {
1967 if (d40_alloc_mask_set(&phys[i], is_src,
Narayanan G5cd326f2011-11-30 19:20:42 +05301968 event_line, is_log,
1969 first_phy_user))
Linus Walleij8d318a52010-03-30 15:33:42 +02001970 goto found_log;
1971 }
1972 }
1973 }
1974 return -EINVAL;
1975
1976found_log:
1977 d40c->phy_chan = &phys[i];
1978 d40c->log_num = log_num;
1979out:
1980
1981 if (is_log)
1982 d40c->base->lookup_log_chans[d40c->log_num] = d40c;
1983 else
1984 d40c->base->lookup_phy_chans[d40c->phy_chan->num] = d40c;
1985
1986 return 0;
1987
1988}
1989
Linus Walleij8d318a52010-03-30 15:33:42 +02001990static int d40_config_memcpy(struct d40_chan *d40c)
1991{
1992 dma_cap_mask_t cap = d40c->chan.device->cap_mask;
1993
1994 if (dma_has_cap(DMA_MEMCPY, cap) && !dma_has_cap(DMA_SLAVE, cap)) {
1995 d40c->dma_cfg = *d40c->base->plat_data->memcpy_conf_log;
1996 d40c->dma_cfg.src_dev_type = STEDMA40_DEV_SRC_MEMORY;
1997 d40c->dma_cfg.dst_dev_type = d40c->base->plat_data->
1998 memcpy[d40c->chan.chan_id];
1999
2000 } else if (dma_has_cap(DMA_MEMCPY, cap) &&
2001 dma_has_cap(DMA_SLAVE, cap)) {
2002 d40c->dma_cfg = *d40c->base->plat_data->memcpy_conf_phy;
2003 } else {
Rabin Vincent6db5a8b2011-01-25 11:18:09 +01002004 chan_err(d40c, "No memcpy\n");
Linus Walleij8d318a52010-03-30 15:33:42 +02002005 return -EINVAL;
2006 }
2007
2008 return 0;
2009}
2010
Linus Walleij8d318a52010-03-30 15:33:42 +02002011static int d40_free_dma(struct d40_chan *d40c)
2012{
2013
2014 int res = 0;
Jonas Aabergd181b3a2010-06-20 21:26:38 +00002015 u32 event;
Linus Walleij8d318a52010-03-30 15:33:42 +02002016 struct d40_phy_res *phy = d40c->phy_chan;
2017 bool is_src;
2018
2019 /* Terminate all queued and active transfers */
2020 d40_term_all(d40c);
2021
2022 if (phy == NULL) {
Rabin Vincent6db5a8b2011-01-25 11:18:09 +01002023 chan_err(d40c, "phy == null\n");
Linus Walleij8d318a52010-03-30 15:33:42 +02002024 return -EINVAL;
2025 }
2026
2027 if (phy->allocated_src == D40_ALLOC_FREE &&
2028 phy->allocated_dst == D40_ALLOC_FREE) {
Rabin Vincent6db5a8b2011-01-25 11:18:09 +01002029 chan_err(d40c, "channel already free\n");
Linus Walleij8d318a52010-03-30 15:33:42 +02002030 return -EINVAL;
2031 }
2032
Linus Walleij8d318a52010-03-30 15:33:42 +02002033 if (d40c->dma_cfg.dir == STEDMA40_MEM_TO_PERIPH ||
2034 d40c->dma_cfg.dir == STEDMA40_MEM_TO_MEM) {
2035 event = D40_TYPE_TO_EVENT(d40c->dma_cfg.dst_dev_type);
Linus Walleij8d318a52010-03-30 15:33:42 +02002036 is_src = false;
2037 } else if (d40c->dma_cfg.dir == STEDMA40_PERIPH_TO_MEM) {
2038 event = D40_TYPE_TO_EVENT(d40c->dma_cfg.src_dev_type);
Linus Walleij8d318a52010-03-30 15:33:42 +02002039 is_src = true;
2040 } else {
Rabin Vincent6db5a8b2011-01-25 11:18:09 +01002041 chan_err(d40c, "Unknown direction\n");
Linus Walleij8d318a52010-03-30 15:33:42 +02002042 return -EINVAL;
2043 }
2044
Narayanan G7fb3e752011-11-17 17:26:41 +05302045 pm_runtime_get_sync(d40c->base->dev);
Linus Walleij8d318a52010-03-30 15:33:42 +02002046 res = d40_channel_execute_command(d40c, D40_DMA_STOP);
2047 if (res) {
Narayanan G1bdae6f2012-02-09 12:41:37 +05302048 chan_err(d40c, "stop failed\n");
Narayanan G7fb3e752011-11-17 17:26:41 +05302049 goto out;
Linus Walleij8d318a52010-03-30 15:33:42 +02002050 }
Narayanan G7fb3e752011-11-17 17:26:41 +05302051
Narayanan G1bdae6f2012-02-09 12:41:37 +05302052 d40_alloc_mask_free(phy, is_src, chan_is_logical(d40c) ? event : 0);
2053
2054 if (chan_is_logical(d40c))
2055 d40c->base->lookup_log_chans[d40c->log_num] = NULL;
2056 else
2057 d40c->base->lookup_phy_chans[phy->num] = NULL;
2058
Narayanan G7fb3e752011-11-17 17:26:41 +05302059 if (d40c->busy) {
2060 pm_runtime_mark_last_busy(d40c->base->dev);
2061 pm_runtime_put_autosuspend(d40c->base->dev);
2062 }
2063
2064 d40c->busy = false;
Linus Walleij8d318a52010-03-30 15:33:42 +02002065 d40c->phy_chan = NULL;
Rabin Vincentce2ca122010-10-12 13:00:49 +00002066 d40c->configured = false;
Narayanan G7fb3e752011-11-17 17:26:41 +05302067out:
Linus Walleij8d318a52010-03-30 15:33:42 +02002068
Narayanan G7fb3e752011-11-17 17:26:41 +05302069 pm_runtime_mark_last_busy(d40c->base->dev);
2070 pm_runtime_put_autosuspend(d40c->base->dev);
2071 return res;
Linus Walleij8d318a52010-03-30 15:33:42 +02002072}
2073
Jonas Aaberga5ebca42010-05-18 00:41:09 +02002074static bool d40_is_paused(struct d40_chan *d40c)
2075{
Rabin Vincent8ca84682011-01-25 11:18:07 +01002076 void __iomem *chanbase = chan_base(d40c);
Jonas Aaberga5ebca42010-05-18 00:41:09 +02002077 bool is_paused = false;
2078 unsigned long flags;
2079 void __iomem *active_reg;
2080 u32 status;
2081 u32 event;
Jonas Aaberga5ebca42010-05-18 00:41:09 +02002082
2083 spin_lock_irqsave(&d40c->lock, flags);
2084
Rabin Vincent724a8572011-01-25 11:18:08 +01002085 if (chan_is_physical(d40c)) {
Jonas Aaberga5ebca42010-05-18 00:41:09 +02002086 if (d40c->phy_chan->num % 2 == 0)
2087 active_reg = d40c->base->virtbase + D40_DREG_ACTIVE;
2088 else
2089 active_reg = d40c->base->virtbase + D40_DREG_ACTIVO;
2090
2091 status = (readl(active_reg) &
2092 D40_CHAN_POS_MASK(d40c->phy_chan->num)) >>
2093 D40_CHAN_POS(d40c->phy_chan->num);
2094 if (status == D40_DMA_SUSPENDED || status == D40_DMA_STOP)
2095 is_paused = true;
2096
2097 goto _exit;
2098 }
2099
Jonas Aaberga5ebca42010-05-18 00:41:09 +02002100 if (d40c->dma_cfg.dir == STEDMA40_MEM_TO_PERIPH ||
Jonas Aaberg9dbfbd35c2010-08-09 12:08:41 +00002101 d40c->dma_cfg.dir == STEDMA40_MEM_TO_MEM) {
Jonas Aaberga5ebca42010-05-18 00:41:09 +02002102 event = D40_TYPE_TO_EVENT(d40c->dma_cfg.dst_dev_type);
Rabin Vincent8ca84682011-01-25 11:18:07 +01002103 status = readl(chanbase + D40_CHAN_REG_SDLNK);
Jonas Aaberg9dbfbd35c2010-08-09 12:08:41 +00002104 } else if (d40c->dma_cfg.dir == STEDMA40_PERIPH_TO_MEM) {
Jonas Aaberga5ebca42010-05-18 00:41:09 +02002105 event = D40_TYPE_TO_EVENT(d40c->dma_cfg.src_dev_type);
Rabin Vincent8ca84682011-01-25 11:18:07 +01002106 status = readl(chanbase + D40_CHAN_REG_SSLNK);
Jonas Aaberg9dbfbd35c2010-08-09 12:08:41 +00002107 } else {
Rabin Vincent6db5a8b2011-01-25 11:18:09 +01002108 chan_err(d40c, "Unknown direction\n");
Jonas Aaberga5ebca42010-05-18 00:41:09 +02002109 goto _exit;
2110 }
Jonas Aaberg9dbfbd35c2010-08-09 12:08:41 +00002111
Jonas Aaberga5ebca42010-05-18 00:41:09 +02002112 status = (status & D40_EVENTLINE_MASK(event)) >>
2113 D40_EVENTLINE_POS(event);
2114
2115 if (status != D40_DMA_RUN)
2116 is_paused = true;
Jonas Aaberga5ebca42010-05-18 00:41:09 +02002117_exit:
2118 spin_unlock_irqrestore(&d40c->lock, flags);
2119 return is_paused;
2120
2121}
2122
Linus Walleij8d318a52010-03-30 15:33:42 +02002123static u32 stedma40_residue(struct dma_chan *chan)
2124{
2125 struct d40_chan *d40c =
2126 container_of(chan, struct d40_chan, chan);
2127 u32 bytes_left;
2128 unsigned long flags;
2129
2130 spin_lock_irqsave(&d40c->lock, flags);
2131 bytes_left = d40_residue(d40c);
2132 spin_unlock_irqrestore(&d40c->lock, flags);
2133
2134 return bytes_left;
2135}
2136
Rabin Vincent3e3a0762011-01-25 11:18:21 +01002137static int
2138d40_prep_sg_log(struct d40_chan *chan, struct d40_desc *desc,
2139 struct scatterlist *sg_src, struct scatterlist *sg_dst,
Rabin Vincent822c5672011-01-25 11:18:28 +01002140 unsigned int sg_len, dma_addr_t src_dev_addr,
2141 dma_addr_t dst_dev_addr)
Rabin Vincent3e3a0762011-01-25 11:18:21 +01002142{
2143 struct stedma40_chan_cfg *cfg = &chan->dma_cfg;
2144 struct stedma40_half_channel_info *src_info = &cfg->src_info;
2145 struct stedma40_half_channel_info *dst_info = &cfg->dst_info;
Rabin Vincent5ed04b82011-01-25 11:18:26 +01002146 int ret;
Rabin Vincent3e3a0762011-01-25 11:18:21 +01002147
Rabin Vincent5ed04b82011-01-25 11:18:26 +01002148 ret = d40_log_sg_to_lli(sg_src, sg_len,
2149 src_dev_addr,
2150 desc->lli_log.src,
2151 chan->log_def.lcsp1,
2152 src_info->data_width,
2153 dst_info->data_width);
Rabin Vincent3e3a0762011-01-25 11:18:21 +01002154
Rabin Vincent5ed04b82011-01-25 11:18:26 +01002155 ret = d40_log_sg_to_lli(sg_dst, sg_len,
2156 dst_dev_addr,
2157 desc->lli_log.dst,
2158 chan->log_def.lcsp3,
2159 dst_info->data_width,
2160 src_info->data_width);
Rabin Vincent3e3a0762011-01-25 11:18:21 +01002161
Rabin Vincent5ed04b82011-01-25 11:18:26 +01002162 return ret < 0 ? ret : 0;
Rabin Vincent3e3a0762011-01-25 11:18:21 +01002163}
2164
2165static int
2166d40_prep_sg_phy(struct d40_chan *chan, struct d40_desc *desc,
2167 struct scatterlist *sg_src, struct scatterlist *sg_dst,
Rabin Vincent822c5672011-01-25 11:18:28 +01002168 unsigned int sg_len, dma_addr_t src_dev_addr,
2169 dma_addr_t dst_dev_addr)
Rabin Vincent3e3a0762011-01-25 11:18:21 +01002170{
Rabin Vincent3e3a0762011-01-25 11:18:21 +01002171 struct stedma40_chan_cfg *cfg = &chan->dma_cfg;
2172 struct stedma40_half_channel_info *src_info = &cfg->src_info;
2173 struct stedma40_half_channel_info *dst_info = &cfg->dst_info;
Rabin Vincent0c842b52011-01-25 11:18:35 +01002174 unsigned long flags = 0;
Rabin Vincent3e3a0762011-01-25 11:18:21 +01002175 int ret;
2176
Rabin Vincent0c842b52011-01-25 11:18:35 +01002177 if (desc->cyclic)
2178 flags |= LLI_CYCLIC | LLI_TERM_INT;
2179
Rabin Vincent3e3a0762011-01-25 11:18:21 +01002180 ret = d40_phy_sg_to_lli(sg_src, sg_len, src_dev_addr,
2181 desc->lli_phy.src,
2182 virt_to_phys(desc->lli_phy.src),
2183 chan->src_def_cfg,
Rabin Vincent0c842b52011-01-25 11:18:35 +01002184 src_info, dst_info, flags);
Rabin Vincent3e3a0762011-01-25 11:18:21 +01002185
2186 ret = d40_phy_sg_to_lli(sg_dst, sg_len, dst_dev_addr,
2187 desc->lli_phy.dst,
2188 virt_to_phys(desc->lli_phy.dst),
2189 chan->dst_def_cfg,
Rabin Vincent0c842b52011-01-25 11:18:35 +01002190 dst_info, src_info, flags);
Rabin Vincent3e3a0762011-01-25 11:18:21 +01002191
2192 dma_sync_single_for_device(chan->base->dev, desc->lli_pool.dma_addr,
2193 desc->lli_pool.size, DMA_TO_DEVICE);
2194
2195 return ret < 0 ? ret : 0;
2196}
2197
Rabin Vincent5f811582011-01-25 11:18:18 +01002198static struct d40_desc *
2199d40_prep_desc(struct d40_chan *chan, struct scatterlist *sg,
2200 unsigned int sg_len, unsigned long dma_flags)
2201{
2202 struct stedma40_chan_cfg *cfg = &chan->dma_cfg;
2203 struct d40_desc *desc;
Rabin Vincentdbd88782011-01-25 11:18:19 +01002204 int ret;
Rabin Vincent5f811582011-01-25 11:18:18 +01002205
2206 desc = d40_desc_get(chan);
2207 if (!desc)
2208 return NULL;
2209
2210 desc->lli_len = d40_sg_2_dmalen(sg, sg_len, cfg->src_info.data_width,
2211 cfg->dst_info.data_width);
2212 if (desc->lli_len < 0) {
2213 chan_err(chan, "Unaligned size\n");
Rabin Vincentdbd88782011-01-25 11:18:19 +01002214 goto err;
Rabin Vincent5f811582011-01-25 11:18:18 +01002215 }
2216
Rabin Vincentdbd88782011-01-25 11:18:19 +01002217 ret = d40_pool_lli_alloc(chan, desc, desc->lli_len);
2218 if (ret < 0) {
2219 chan_err(chan, "Could not allocate lli\n");
2220 goto err;
2221 }
2222
Rabin Vincent5f811582011-01-25 11:18:18 +01002223 desc->lli_current = 0;
2224 desc->txd.flags = dma_flags;
2225 desc->txd.tx_submit = d40_tx_submit;
2226
2227 dma_async_tx_descriptor_init(&desc->txd, &chan->chan);
2228
2229 return desc;
Rabin Vincentdbd88782011-01-25 11:18:19 +01002230
2231err:
2232 d40_desc_free(chan, desc);
2233 return NULL;
Rabin Vincent5f811582011-01-25 11:18:18 +01002234}
2235
Rabin Vincentcade1d32011-01-25 11:18:23 +01002236static dma_addr_t
Vinod Kouldb8196d2011-10-13 22:34:23 +05302237d40_get_dev_addr(struct d40_chan *chan, enum dma_transfer_direction direction)
Linus Walleij8d318a52010-03-30 15:33:42 +02002238{
Rabin Vincentcade1d32011-01-25 11:18:23 +01002239 struct stedma40_platform_data *plat = chan->base->plat_data;
2240 struct stedma40_chan_cfg *cfg = &chan->dma_cfg;
Philippe Langlais711b9ce2011-05-07 17:09:43 +02002241 dma_addr_t addr = 0;
Linus Walleij8d318a52010-03-30 15:33:42 +02002242
Rabin Vincentcade1d32011-01-25 11:18:23 +01002243 if (chan->runtime_addr)
2244 return chan->runtime_addr;
2245
Vinod Kouldb8196d2011-10-13 22:34:23 +05302246 if (direction == DMA_DEV_TO_MEM)
Rabin Vincentcade1d32011-01-25 11:18:23 +01002247 addr = plat->dev_rx[cfg->src_dev_type];
Vinod Kouldb8196d2011-10-13 22:34:23 +05302248 else if (direction == DMA_MEM_TO_DEV)
Rabin Vincentcade1d32011-01-25 11:18:23 +01002249 addr = plat->dev_tx[cfg->dst_dev_type];
2250
2251 return addr;
2252}
2253
2254static struct dma_async_tx_descriptor *
2255d40_prep_sg(struct dma_chan *dchan, struct scatterlist *sg_src,
2256 struct scatterlist *sg_dst, unsigned int sg_len,
Vinod Kouldb8196d2011-10-13 22:34:23 +05302257 enum dma_transfer_direction direction, unsigned long dma_flags)
Rabin Vincentcade1d32011-01-25 11:18:23 +01002258{
2259 struct d40_chan *chan = container_of(dchan, struct d40_chan, chan);
Rabin Vincent822c5672011-01-25 11:18:28 +01002260 dma_addr_t src_dev_addr = 0;
2261 dma_addr_t dst_dev_addr = 0;
Rabin Vincentcade1d32011-01-25 11:18:23 +01002262 struct d40_desc *desc;
2263 unsigned long flags;
2264 int ret;
2265
2266 if (!chan->phy_chan) {
2267 chan_err(chan, "Cannot prepare unallocated channel\n");
2268 return NULL;
Jonas Aaberg0d0f6b82010-06-20 21:25:31 +00002269 }
2270
Rabin Vincentcade1d32011-01-25 11:18:23 +01002271 spin_lock_irqsave(&chan->lock, flags);
Linus Walleij8d318a52010-03-30 15:33:42 +02002272
Rabin Vincentcade1d32011-01-25 11:18:23 +01002273 desc = d40_prep_desc(chan, sg_src, sg_len, dma_flags);
2274 if (desc == NULL)
Linus Walleij8d318a52010-03-30 15:33:42 +02002275 goto err;
2276
Rabin Vincent0c842b52011-01-25 11:18:35 +01002277 if (sg_next(&sg_src[sg_len - 1]) == sg_src)
2278 desc->cyclic = true;
2279
Linus Walleij7e426da2012-04-12 18:12:52 +02002280 if (direction != DMA_TRANS_NONE) {
Rabin Vincent822c5672011-01-25 11:18:28 +01002281 dma_addr_t dev_addr = d40_get_dev_addr(chan, direction);
2282
Vinod Kouldb8196d2011-10-13 22:34:23 +05302283 if (direction == DMA_DEV_TO_MEM)
Rabin Vincent822c5672011-01-25 11:18:28 +01002284 src_dev_addr = dev_addr;
Vinod Kouldb8196d2011-10-13 22:34:23 +05302285 else if (direction == DMA_MEM_TO_DEV)
Rabin Vincent822c5672011-01-25 11:18:28 +01002286 dst_dev_addr = dev_addr;
2287 }
Rabin Vincentcade1d32011-01-25 11:18:23 +01002288
2289 if (chan_is_logical(chan))
2290 ret = d40_prep_sg_log(chan, desc, sg_src, sg_dst,
Rabin Vincent822c5672011-01-25 11:18:28 +01002291 sg_len, src_dev_addr, dst_dev_addr);
Rabin Vincentcade1d32011-01-25 11:18:23 +01002292 else
2293 ret = d40_prep_sg_phy(chan, desc, sg_src, sg_dst,
Rabin Vincent822c5672011-01-25 11:18:28 +01002294 sg_len, src_dev_addr, dst_dev_addr);
Rabin Vincentcade1d32011-01-25 11:18:23 +01002295
2296 if (ret) {
2297 chan_err(chan, "Failed to prepare %s sg job: %d\n",
2298 chan_is_logical(chan) ? "log" : "phy", ret);
2299 goto err;
Linus Walleij8d318a52010-03-30 15:33:42 +02002300 }
2301
Per Forlin82babbb362011-08-29 13:33:35 +02002302 /*
2303 * add descriptor to the prepare queue in order to be able
2304 * to free them later in terminate_all
2305 */
2306 list_add_tail(&desc->node, &chan->prepare_queue);
2307
Rabin Vincentcade1d32011-01-25 11:18:23 +01002308 spin_unlock_irqrestore(&chan->lock, flags);
Linus Walleij8d318a52010-03-30 15:33:42 +02002309
Rabin Vincentcade1d32011-01-25 11:18:23 +01002310 return &desc->txd;
2311
Linus Walleij8d318a52010-03-30 15:33:42 +02002312err:
Rabin Vincentcade1d32011-01-25 11:18:23 +01002313 if (desc)
2314 d40_desc_free(chan, desc);
2315 spin_unlock_irqrestore(&chan->lock, flags);
Linus Walleij8d318a52010-03-30 15:33:42 +02002316 return NULL;
2317}
Linus Walleij8d318a52010-03-30 15:33:42 +02002318
2319bool stedma40_filter(struct dma_chan *chan, void *data)
2320{
2321 struct stedma40_chan_cfg *info = data;
2322 struct d40_chan *d40c =
2323 container_of(chan, struct d40_chan, chan);
2324 int err;
2325
2326 if (data) {
2327 err = d40_validate_conf(d40c, info);
2328 if (!err)
2329 d40c->dma_cfg = *info;
2330 } else
2331 err = d40_config_memcpy(d40c);
2332
Rabin Vincentce2ca122010-10-12 13:00:49 +00002333 if (!err)
2334 d40c->configured = true;
2335
Linus Walleij8d318a52010-03-30 15:33:42 +02002336 return err == 0;
2337}
2338EXPORT_SYMBOL(stedma40_filter);
2339
Rabin Vincentac2c0a32011-01-25 11:18:11 +01002340static void __d40_set_prio_rt(struct d40_chan *d40c, int dev_type, bool src)
2341{
2342 bool realtime = d40c->dma_cfg.realtime;
2343 bool highprio = d40c->dma_cfg.high_priority;
Tong Liu3cb645d2012-09-26 10:07:30 +00002344 u32 rtreg;
Rabin Vincentac2c0a32011-01-25 11:18:11 +01002345 u32 event = D40_TYPE_TO_EVENT(dev_type);
2346 u32 group = D40_TYPE_TO_GROUP(dev_type);
2347 u32 bit = 1 << event;
Rabin Vincentccc3d692012-05-17 13:47:38 +05302348 u32 prioreg;
Tong Liu3cb645d2012-09-26 10:07:30 +00002349 struct d40_gen_dmac *dmac = &d40c->base->gen_dmac;
Rabin Vincentccc3d692012-05-17 13:47:38 +05302350
Tong Liu3cb645d2012-09-26 10:07:30 +00002351 rtreg = realtime ? dmac->realtime_en : dmac->realtime_clear;
Rabin Vincentccc3d692012-05-17 13:47:38 +05302352 /*
2353 * Due to a hardware bug, in some cases a logical channel triggered by
2354 * a high priority destination event line can generate extra packet
2355 * transactions.
2356 *
2357 * The workaround is to not set the high priority level for the
2358 * destination event lines that trigger logical channels.
2359 */
2360 if (!src && chan_is_logical(d40c))
2361 highprio = false;
2362
Tong Liu3cb645d2012-09-26 10:07:30 +00002363 prioreg = highprio ? dmac->high_prio_en : dmac->high_prio_clear;
Rabin Vincentac2c0a32011-01-25 11:18:11 +01002364
2365 /* Destination event lines are stored in the upper halfword */
2366 if (!src)
2367 bit <<= 16;
2368
2369 writel(bit, d40c->base->virtbase + prioreg + group * 4);
2370 writel(bit, d40c->base->virtbase + rtreg + group * 4);
2371}
2372
2373static void d40_set_prio_realtime(struct d40_chan *d40c)
2374{
2375 if (d40c->base->rev < 3)
2376 return;
2377
2378 if ((d40c->dma_cfg.dir == STEDMA40_PERIPH_TO_MEM) ||
2379 (d40c->dma_cfg.dir == STEDMA40_PERIPH_TO_PERIPH))
2380 __d40_set_prio_rt(d40c, d40c->dma_cfg.src_dev_type, true);
2381
2382 if ((d40c->dma_cfg.dir == STEDMA40_MEM_TO_PERIPH) ||
2383 (d40c->dma_cfg.dir == STEDMA40_PERIPH_TO_PERIPH))
2384 __d40_set_prio_rt(d40c, d40c->dma_cfg.dst_dev_type, false);
2385}
2386
Linus Walleij8d318a52010-03-30 15:33:42 +02002387/* DMA ENGINE functions */
2388static int d40_alloc_chan_resources(struct dma_chan *chan)
2389{
2390 int err;
2391 unsigned long flags;
2392 struct d40_chan *d40c =
2393 container_of(chan, struct d40_chan, chan);
Linus Walleijef1872e2010-06-20 21:24:52 +00002394 bool is_free_phy;
Linus Walleij8d318a52010-03-30 15:33:42 +02002395 spin_lock_irqsave(&d40c->lock, flags);
2396
Russell King - ARM Linuxd3ee98cdc2012-03-06 22:35:47 +00002397 dma_cookie_init(chan);
Linus Walleij8d318a52010-03-30 15:33:42 +02002398
Rabin Vincentce2ca122010-10-12 13:00:49 +00002399 /* If no dma configuration is set use default configuration (memcpy) */
2400 if (!d40c->configured) {
Linus Walleij8d318a52010-03-30 15:33:42 +02002401 err = d40_config_memcpy(d40c);
Jonas Aabergff0b12b2010-06-20 21:25:15 +00002402 if (err) {
Rabin Vincent6db5a8b2011-01-25 11:18:09 +01002403 chan_err(d40c, "Failed to configure memcpy channel\n");
Jonas Aabergff0b12b2010-06-20 21:25:15 +00002404 goto fail;
2405 }
Linus Walleij8d318a52010-03-30 15:33:42 +02002406 }
2407
Narayanan G5cd326f2011-11-30 19:20:42 +05302408 err = d40_allocate_channel(d40c, &is_free_phy);
Linus Walleij8d318a52010-03-30 15:33:42 +02002409 if (err) {
Rabin Vincent6db5a8b2011-01-25 11:18:09 +01002410 chan_err(d40c, "Failed to allocate channel\n");
Narayanan G7fb3e752011-11-17 17:26:41 +05302411 d40c->configured = false;
Jonas Aabergff0b12b2010-06-20 21:25:15 +00002412 goto fail;
Linus Walleij8d318a52010-03-30 15:33:42 +02002413 }
2414
Narayanan G7fb3e752011-11-17 17:26:41 +05302415 pm_runtime_get_sync(d40c->base->dev);
Linus Walleijef1872e2010-06-20 21:24:52 +00002416 /* Fill in basic CFG register values */
2417 d40_phy_cfg(&d40c->dma_cfg, &d40c->src_def_cfg,
Rabin Vincent724a8572011-01-25 11:18:08 +01002418 &d40c->dst_def_cfg, chan_is_logical(d40c));
Linus Walleijef1872e2010-06-20 21:24:52 +00002419
Rabin Vincentac2c0a32011-01-25 11:18:11 +01002420 d40_set_prio_realtime(d40c);
2421
Rabin Vincent724a8572011-01-25 11:18:08 +01002422 if (chan_is_logical(d40c)) {
Linus Walleijef1872e2010-06-20 21:24:52 +00002423 d40_log_cfg(&d40c->dma_cfg,
2424 &d40c->log_def.lcsp1, &d40c->log_def.lcsp3);
2425
2426 if (d40c->dma_cfg.dir == STEDMA40_PERIPH_TO_MEM)
2427 d40c->lcpa = d40c->base->lcpa_base +
Fabio Baltierif26e03a2012-12-13 17:12:37 +01002428 d40c->dma_cfg.src_dev_type * D40_LCPA_CHAN_SIZE;
Linus Walleijef1872e2010-06-20 21:24:52 +00002429 else
2430 d40c->lcpa = d40c->base->lcpa_base +
Fabio Baltierif26e03a2012-12-13 17:12:37 +01002431 d40c->dma_cfg.dst_dev_type *
2432 D40_LCPA_CHAN_SIZE + D40_LCPA_CHAN_DST_DELTA;
Linus Walleijef1872e2010-06-20 21:24:52 +00002433 }
2434
Narayanan G5cd326f2011-11-30 19:20:42 +05302435 dev_dbg(chan2dev(d40c), "allocated %s channel (phy %d%s)\n",
2436 chan_is_logical(d40c) ? "logical" : "physical",
2437 d40c->phy_chan->num,
2438 d40c->dma_cfg.use_fixed_channel ? ", fixed" : "");
2439
2440
Linus Walleijef1872e2010-06-20 21:24:52 +00002441 /*
2442 * Only write channel configuration to the DMA if the physical
2443 * resource is free. In case of multiple logical channels
2444 * on the same physical resource, only the first write is necessary.
2445 */
Jonas Aabergb55912c2010-08-09 12:08:02 +00002446 if (is_free_phy)
2447 d40_config_write(d40c);
Jonas Aabergff0b12b2010-06-20 21:25:15 +00002448fail:
Narayanan G7fb3e752011-11-17 17:26:41 +05302449 pm_runtime_mark_last_busy(d40c->base->dev);
2450 pm_runtime_put_autosuspend(d40c->base->dev);
Linus Walleij8d318a52010-03-30 15:33:42 +02002451 spin_unlock_irqrestore(&d40c->lock, flags);
Jonas Aabergff0b12b2010-06-20 21:25:15 +00002452 return err;
Linus Walleij8d318a52010-03-30 15:33:42 +02002453}
2454
2455static void d40_free_chan_resources(struct dma_chan *chan)
2456{
2457 struct d40_chan *d40c =
2458 container_of(chan, struct d40_chan, chan);
2459 int err;
2460 unsigned long flags;
2461
Jonas Aaberg0d0f6b82010-06-20 21:25:31 +00002462 if (d40c->phy_chan == NULL) {
Rabin Vincent6db5a8b2011-01-25 11:18:09 +01002463 chan_err(d40c, "Cannot free unallocated channel\n");
Jonas Aaberg0d0f6b82010-06-20 21:25:31 +00002464 return;
2465 }
2466
Linus Walleij8d318a52010-03-30 15:33:42 +02002467 spin_lock_irqsave(&d40c->lock, flags);
2468
2469 err = d40_free_dma(d40c);
2470
2471 if (err)
Rabin Vincent6db5a8b2011-01-25 11:18:09 +01002472 chan_err(d40c, "Failed to free channel\n");
Linus Walleij8d318a52010-03-30 15:33:42 +02002473 spin_unlock_irqrestore(&d40c->lock, flags);
2474}
2475
2476static struct dma_async_tx_descriptor *d40_prep_memcpy(struct dma_chan *chan,
2477 dma_addr_t dst,
2478 dma_addr_t src,
2479 size_t size,
Jonas Aaberg2a614342010-06-20 21:25:24 +00002480 unsigned long dma_flags)
Linus Walleij8d318a52010-03-30 15:33:42 +02002481{
Rabin Vincent95944c62011-01-25 11:18:17 +01002482 struct scatterlist dst_sg;
2483 struct scatterlist src_sg;
Linus Walleij8d318a52010-03-30 15:33:42 +02002484
Rabin Vincent95944c62011-01-25 11:18:17 +01002485 sg_init_table(&dst_sg, 1);
2486 sg_init_table(&src_sg, 1);
Jonas Aaberg0d0f6b82010-06-20 21:25:31 +00002487
Rabin Vincent95944c62011-01-25 11:18:17 +01002488 sg_dma_address(&dst_sg) = dst;
2489 sg_dma_address(&src_sg) = src;
Linus Walleij8d318a52010-03-30 15:33:42 +02002490
Rabin Vincent95944c62011-01-25 11:18:17 +01002491 sg_dma_len(&dst_sg) = size;
2492 sg_dma_len(&src_sg) = size;
Linus Walleij8d318a52010-03-30 15:33:42 +02002493
Rabin Vincentcade1d32011-01-25 11:18:23 +01002494 return d40_prep_sg(chan, &src_sg, &dst_sg, 1, DMA_NONE, dma_flags);
Linus Walleij8d318a52010-03-30 15:33:42 +02002495}
2496
Ira Snyder0d688662010-09-30 11:46:47 +00002497static struct dma_async_tx_descriptor *
Rabin Vincentcade1d32011-01-25 11:18:23 +01002498d40_prep_memcpy_sg(struct dma_chan *chan,
2499 struct scatterlist *dst_sg, unsigned int dst_nents,
2500 struct scatterlist *src_sg, unsigned int src_nents,
2501 unsigned long dma_flags)
Ira Snyder0d688662010-09-30 11:46:47 +00002502{
2503 if (dst_nents != src_nents)
2504 return NULL;
2505
Rabin Vincentcade1d32011-01-25 11:18:23 +01002506 return d40_prep_sg(chan, src_sg, dst_sg, src_nents, DMA_NONE, dma_flags);
Rabin Vincent00ac0342011-01-25 11:18:20 +01002507}
2508
Fabio Baltierif26e03a2012-12-13 17:12:37 +01002509static struct dma_async_tx_descriptor *
2510d40_prep_slave_sg(struct dma_chan *chan, struct scatterlist *sgl,
2511 unsigned int sg_len, enum dma_transfer_direction direction,
2512 unsigned long dma_flags, void *context)
Linus Walleij8d318a52010-03-30 15:33:42 +02002513{
Vinod Kouldb8196d2011-10-13 22:34:23 +05302514 if (direction != DMA_DEV_TO_MEM && direction != DMA_MEM_TO_DEV)
Rabin Vincent00ac0342011-01-25 11:18:20 +01002515 return NULL;
2516
Rabin Vincentcade1d32011-01-25 11:18:23 +01002517 return d40_prep_sg(chan, sgl, sgl, sg_len, direction, dma_flags);
Linus Walleij8d318a52010-03-30 15:33:42 +02002518}
2519
Rabin Vincent0c842b52011-01-25 11:18:35 +01002520static struct dma_async_tx_descriptor *
2521dma40_prep_dma_cyclic(struct dma_chan *chan, dma_addr_t dma_addr,
2522 size_t buf_len, size_t period_len,
Peter Ujfalusiec8b5e42012-09-14 15:05:47 +03002523 enum dma_transfer_direction direction, unsigned long flags,
2524 void *context)
Rabin Vincent0c842b52011-01-25 11:18:35 +01002525{
2526 unsigned int periods = buf_len / period_len;
2527 struct dma_async_tx_descriptor *txd;
2528 struct scatterlist *sg;
2529 int i;
2530
Robert Marklund79ca7ec2011-06-27 11:33:24 +02002531 sg = kcalloc(periods + 1, sizeof(struct scatterlist), GFP_NOWAIT);
Rabin Vincent0c842b52011-01-25 11:18:35 +01002532 for (i = 0; i < periods; i++) {
2533 sg_dma_address(&sg[i]) = dma_addr;
2534 sg_dma_len(&sg[i]) = period_len;
2535 dma_addr += period_len;
2536 }
2537
2538 sg[periods].offset = 0;
Lars-Peter Clausenfdaf9c42012-04-25 20:50:52 +02002539 sg_dma_len(&sg[periods]) = 0;
Rabin Vincent0c842b52011-01-25 11:18:35 +01002540 sg[periods].page_link =
2541 ((unsigned long)sg | 0x01) & ~0x02;
2542
2543 txd = d40_prep_sg(chan, sg, sg, periods, direction,
2544 DMA_PREP_INTERRUPT);
2545
2546 kfree(sg);
2547
2548 return txd;
2549}
2550
Linus Walleij8d318a52010-03-30 15:33:42 +02002551static enum dma_status d40_tx_status(struct dma_chan *chan,
2552 dma_cookie_t cookie,
2553 struct dma_tx_state *txstate)
2554{
2555 struct d40_chan *d40c = container_of(chan, struct d40_chan, chan);
Russell King - ARM Linux96a2af42012-03-06 22:35:27 +00002556 enum dma_status ret;
Linus Walleij8d318a52010-03-30 15:33:42 +02002557
Jonas Aaberg0d0f6b82010-06-20 21:25:31 +00002558 if (d40c->phy_chan == NULL) {
Rabin Vincent6db5a8b2011-01-25 11:18:09 +01002559 chan_err(d40c, "Cannot read status of unallocated channel\n");
Jonas Aaberg0d0f6b82010-06-20 21:25:31 +00002560 return -EINVAL;
2561 }
2562
Russell King - ARM Linux96a2af42012-03-06 22:35:27 +00002563 ret = dma_cookie_status(chan, cookie, txstate);
2564 if (ret != DMA_SUCCESS)
2565 dma_set_residue(txstate, stedma40_residue(chan));
Linus Walleij8d318a52010-03-30 15:33:42 +02002566
Jonas Aaberga5ebca42010-05-18 00:41:09 +02002567 if (d40_is_paused(d40c))
2568 ret = DMA_PAUSED;
Linus Walleij8d318a52010-03-30 15:33:42 +02002569
2570 return ret;
2571}
2572
2573static void d40_issue_pending(struct dma_chan *chan)
2574{
2575 struct d40_chan *d40c = container_of(chan, struct d40_chan, chan);
2576 unsigned long flags;
2577
Jonas Aaberg0d0f6b82010-06-20 21:25:31 +00002578 if (d40c->phy_chan == NULL) {
Rabin Vincent6db5a8b2011-01-25 11:18:09 +01002579 chan_err(d40c, "Channel is not allocated!\n");
Jonas Aaberg0d0f6b82010-06-20 21:25:31 +00002580 return;
2581 }
2582
Linus Walleij8d318a52010-03-30 15:33:42 +02002583 spin_lock_irqsave(&d40c->lock, flags);
2584
Per Forlina8f30672011-06-26 23:29:52 +02002585 list_splice_tail_init(&d40c->pending_queue, &d40c->queue);
2586
2587 /* Busy means that queued jobs are already being processed */
Linus Walleij8d318a52010-03-30 15:33:42 +02002588 if (!d40c->busy)
2589 (void) d40_queue_start(d40c);
2590
2591 spin_unlock_irqrestore(&d40c->lock, flags);
2592}
2593
Narayanan G1bdae6f2012-02-09 12:41:37 +05302594static void d40_terminate_all(struct dma_chan *chan)
2595{
2596 unsigned long flags;
2597 struct d40_chan *d40c = container_of(chan, struct d40_chan, chan);
2598 int ret;
2599
2600 spin_lock_irqsave(&d40c->lock, flags);
2601
2602 pm_runtime_get_sync(d40c->base->dev);
2603 ret = d40_channel_execute_command(d40c, D40_DMA_STOP);
2604 if (ret)
2605 chan_err(d40c, "Failed to stop channel\n");
2606
2607 d40_term_all(d40c);
2608 pm_runtime_mark_last_busy(d40c->base->dev);
2609 pm_runtime_put_autosuspend(d40c->base->dev);
2610 if (d40c->busy) {
2611 pm_runtime_mark_last_busy(d40c->base->dev);
2612 pm_runtime_put_autosuspend(d40c->base->dev);
2613 }
2614 d40c->busy = false;
2615
2616 spin_unlock_irqrestore(&d40c->lock, flags);
2617}
2618
Rabin Vincent98ca5282011-06-27 11:33:38 +02002619static int
2620dma40_config_to_halfchannel(struct d40_chan *d40c,
2621 struct stedma40_half_channel_info *info,
2622 enum dma_slave_buswidth width,
2623 u32 maxburst)
2624{
2625 enum stedma40_periph_data_width addr_width;
2626 int psize;
2627
2628 switch (width) {
2629 case DMA_SLAVE_BUSWIDTH_1_BYTE:
2630 addr_width = STEDMA40_BYTE_WIDTH;
2631 break;
2632 case DMA_SLAVE_BUSWIDTH_2_BYTES:
2633 addr_width = STEDMA40_HALFWORD_WIDTH;
2634 break;
2635 case DMA_SLAVE_BUSWIDTH_4_BYTES:
2636 addr_width = STEDMA40_WORD_WIDTH;
2637 break;
2638 case DMA_SLAVE_BUSWIDTH_8_BYTES:
2639 addr_width = STEDMA40_DOUBLEWORD_WIDTH;
2640 break;
2641 default:
2642 dev_err(d40c->base->dev,
2643 "illegal peripheral address width "
2644 "requested (%d)\n",
2645 width);
2646 return -EINVAL;
2647 }
2648
2649 if (chan_is_logical(d40c)) {
2650 if (maxburst >= 16)
2651 psize = STEDMA40_PSIZE_LOG_16;
2652 else if (maxburst >= 8)
2653 psize = STEDMA40_PSIZE_LOG_8;
2654 else if (maxburst >= 4)
2655 psize = STEDMA40_PSIZE_LOG_4;
2656 else
2657 psize = STEDMA40_PSIZE_LOG_1;
2658 } else {
2659 if (maxburst >= 16)
2660 psize = STEDMA40_PSIZE_PHY_16;
2661 else if (maxburst >= 8)
2662 psize = STEDMA40_PSIZE_PHY_8;
2663 else if (maxburst >= 4)
2664 psize = STEDMA40_PSIZE_PHY_4;
2665 else
2666 psize = STEDMA40_PSIZE_PHY_1;
2667 }
2668
2669 info->data_width = addr_width;
2670 info->psize = psize;
2671 info->flow_ctrl = STEDMA40_NO_FLOW_CTRL;
2672
2673 return 0;
2674}
2675
Linus Walleij95e14002010-08-04 13:37:45 +02002676/* Runtime reconfiguration extension */
Rabin Vincent98ca5282011-06-27 11:33:38 +02002677static int d40_set_runtime_config(struct dma_chan *chan,
2678 struct dma_slave_config *config)
Linus Walleij95e14002010-08-04 13:37:45 +02002679{
2680 struct d40_chan *d40c = container_of(chan, struct d40_chan, chan);
2681 struct stedma40_chan_cfg *cfg = &d40c->dma_cfg;
Rabin Vincent98ca5282011-06-27 11:33:38 +02002682 enum dma_slave_buswidth src_addr_width, dst_addr_width;
Linus Walleij95e14002010-08-04 13:37:45 +02002683 dma_addr_t config_addr;
Rabin Vincent98ca5282011-06-27 11:33:38 +02002684 u32 src_maxburst, dst_maxburst;
2685 int ret;
2686
2687 src_addr_width = config->src_addr_width;
2688 src_maxburst = config->src_maxburst;
2689 dst_addr_width = config->dst_addr_width;
2690 dst_maxburst = config->dst_maxburst;
Linus Walleij95e14002010-08-04 13:37:45 +02002691
Vinod Kouldb8196d2011-10-13 22:34:23 +05302692 if (config->direction == DMA_DEV_TO_MEM) {
Linus Walleij95e14002010-08-04 13:37:45 +02002693 dma_addr_t dev_addr_rx =
2694 d40c->base->plat_data->dev_rx[cfg->src_dev_type];
2695
2696 config_addr = config->src_addr;
2697 if (dev_addr_rx)
2698 dev_dbg(d40c->base->dev,
2699 "channel has a pre-wired RX address %08x "
2700 "overriding with %08x\n",
2701 dev_addr_rx, config_addr);
2702 if (cfg->dir != STEDMA40_PERIPH_TO_MEM)
2703 dev_dbg(d40c->base->dev,
2704 "channel was not configured for peripheral "
2705 "to memory transfer (%d) overriding\n",
2706 cfg->dir);
2707 cfg->dir = STEDMA40_PERIPH_TO_MEM;
2708
Rabin Vincent98ca5282011-06-27 11:33:38 +02002709 /* Configure the memory side */
2710 if (dst_addr_width == DMA_SLAVE_BUSWIDTH_UNDEFINED)
2711 dst_addr_width = src_addr_width;
2712 if (dst_maxburst == 0)
2713 dst_maxburst = src_maxburst;
Linus Walleij95e14002010-08-04 13:37:45 +02002714
Vinod Kouldb8196d2011-10-13 22:34:23 +05302715 } else if (config->direction == DMA_MEM_TO_DEV) {
Linus Walleij95e14002010-08-04 13:37:45 +02002716 dma_addr_t dev_addr_tx =
2717 d40c->base->plat_data->dev_tx[cfg->dst_dev_type];
2718
2719 config_addr = config->dst_addr;
2720 if (dev_addr_tx)
2721 dev_dbg(d40c->base->dev,
2722 "channel has a pre-wired TX address %08x "
2723 "overriding with %08x\n",
2724 dev_addr_tx, config_addr);
2725 if (cfg->dir != STEDMA40_MEM_TO_PERIPH)
2726 dev_dbg(d40c->base->dev,
2727 "channel was not configured for memory "
2728 "to peripheral transfer (%d) overriding\n",
2729 cfg->dir);
2730 cfg->dir = STEDMA40_MEM_TO_PERIPH;
2731
Rabin Vincent98ca5282011-06-27 11:33:38 +02002732 /* Configure the memory side */
2733 if (src_addr_width == DMA_SLAVE_BUSWIDTH_UNDEFINED)
2734 src_addr_width = dst_addr_width;
2735 if (src_maxburst == 0)
2736 src_maxburst = dst_maxburst;
Linus Walleij95e14002010-08-04 13:37:45 +02002737 } else {
2738 dev_err(d40c->base->dev,
2739 "unrecognized channel direction %d\n",
2740 config->direction);
Rabin Vincent98ca5282011-06-27 11:33:38 +02002741 return -EINVAL;
Linus Walleij95e14002010-08-04 13:37:45 +02002742 }
2743
Rabin Vincent98ca5282011-06-27 11:33:38 +02002744 if (src_maxburst * src_addr_width != dst_maxburst * dst_addr_width) {
Linus Walleij95e14002010-08-04 13:37:45 +02002745 dev_err(d40c->base->dev,
Rabin Vincent98ca5282011-06-27 11:33:38 +02002746 "src/dst width/maxburst mismatch: %d*%d != %d*%d\n",
2747 src_maxburst,
2748 src_addr_width,
2749 dst_maxburst,
2750 dst_addr_width);
2751 return -EINVAL;
Linus Walleij95e14002010-08-04 13:37:45 +02002752 }
2753
Per Forlin92bb6cd2011-10-13 12:11:36 +02002754 if (src_maxburst > 16) {
2755 src_maxburst = 16;
2756 dst_maxburst = src_maxburst * src_addr_width / dst_addr_width;
2757 } else if (dst_maxburst > 16) {
2758 dst_maxburst = 16;
2759 src_maxburst = dst_maxburst * dst_addr_width / src_addr_width;
2760 }
2761
Rabin Vincent98ca5282011-06-27 11:33:38 +02002762 ret = dma40_config_to_halfchannel(d40c, &cfg->src_info,
2763 src_addr_width,
2764 src_maxburst);
2765 if (ret)
2766 return ret;
Linus Walleij95e14002010-08-04 13:37:45 +02002767
Rabin Vincent98ca5282011-06-27 11:33:38 +02002768 ret = dma40_config_to_halfchannel(d40c, &cfg->dst_info,
2769 dst_addr_width,
2770 dst_maxburst);
2771 if (ret)
2772 return ret;
Linus Walleij95e14002010-08-04 13:37:45 +02002773
Per Forlina59670a2010-10-06 09:05:27 +00002774 /* Fill in register values */
Rabin Vincent724a8572011-01-25 11:18:08 +01002775 if (chan_is_logical(d40c))
Per Forlina59670a2010-10-06 09:05:27 +00002776 d40_log_cfg(cfg, &d40c->log_def.lcsp1, &d40c->log_def.lcsp3);
2777 else
2778 d40_phy_cfg(cfg, &d40c->src_def_cfg,
2779 &d40c->dst_def_cfg, false);
2780
Linus Walleij95e14002010-08-04 13:37:45 +02002781 /* These settings will take precedence later */
2782 d40c->runtime_addr = config_addr;
2783 d40c->runtime_direction = config->direction;
2784 dev_dbg(d40c->base->dev,
Rabin Vincent98ca5282011-06-27 11:33:38 +02002785 "configured channel %s for %s, data width %d/%d, "
2786 "maxburst %d/%d elements, LE, no flow control\n",
Linus Walleij95e14002010-08-04 13:37:45 +02002787 dma_chan_name(chan),
Vinod Kouldb8196d2011-10-13 22:34:23 +05302788 (config->direction == DMA_DEV_TO_MEM) ? "RX" : "TX",
Rabin Vincent98ca5282011-06-27 11:33:38 +02002789 src_addr_width, dst_addr_width,
2790 src_maxburst, dst_maxburst);
2791
2792 return 0;
Linus Walleij95e14002010-08-04 13:37:45 +02002793}
2794
Linus Walleij05827632010-05-17 16:30:42 -07002795static int d40_control(struct dma_chan *chan, enum dma_ctrl_cmd cmd,
2796 unsigned long arg)
Linus Walleij8d318a52010-03-30 15:33:42 +02002797{
Linus Walleij8d318a52010-03-30 15:33:42 +02002798 struct d40_chan *d40c = container_of(chan, struct d40_chan, chan);
2799
Jonas Aaberg0d0f6b82010-06-20 21:25:31 +00002800 if (d40c->phy_chan == NULL) {
Rabin Vincent6db5a8b2011-01-25 11:18:09 +01002801 chan_err(d40c, "Channel is not allocated!\n");
Jonas Aaberg0d0f6b82010-06-20 21:25:31 +00002802 return -EINVAL;
2803 }
2804
Linus Walleij8d318a52010-03-30 15:33:42 +02002805 switch (cmd) {
2806 case DMA_TERMINATE_ALL:
Narayanan G1bdae6f2012-02-09 12:41:37 +05302807 d40_terminate_all(chan);
2808 return 0;
Linus Walleij8d318a52010-03-30 15:33:42 +02002809 case DMA_PAUSE:
Rabin Vincent86eb5fb2011-01-25 11:18:34 +01002810 return d40_pause(d40c);
Linus Walleij8d318a52010-03-30 15:33:42 +02002811 case DMA_RESUME:
Rabin Vincent86eb5fb2011-01-25 11:18:34 +01002812 return d40_resume(d40c);
Linus Walleij95e14002010-08-04 13:37:45 +02002813 case DMA_SLAVE_CONFIG:
Rabin Vincent98ca5282011-06-27 11:33:38 +02002814 return d40_set_runtime_config(chan,
Linus Walleij95e14002010-08-04 13:37:45 +02002815 (struct dma_slave_config *) arg);
Linus Walleij95e14002010-08-04 13:37:45 +02002816 default:
2817 break;
Linus Walleij8d318a52010-03-30 15:33:42 +02002818 }
2819
2820 /* Other commands are unimplemented */
2821 return -ENXIO;
2822}
2823
2824/* Initialization functions */
2825
2826static void __init d40_chan_init(struct d40_base *base, struct dma_device *dma,
2827 struct d40_chan *chans, int offset,
2828 int num_chans)
2829{
2830 int i = 0;
2831 struct d40_chan *d40c;
2832
2833 INIT_LIST_HEAD(&dma->channels);
2834
2835 for (i = offset; i < offset + num_chans; i++) {
2836 d40c = &chans[i];
2837 d40c->base = base;
2838 d40c->chan.device = dma;
2839
Linus Walleij8d318a52010-03-30 15:33:42 +02002840 spin_lock_init(&d40c->lock);
2841
2842 d40c->log_num = D40_PHY_CHAN;
2843
Fabio Baltieri4226dd82012-12-13 13:46:16 +01002844 INIT_LIST_HEAD(&d40c->done);
Linus Walleij8d318a52010-03-30 15:33:42 +02002845 INIT_LIST_HEAD(&d40c->active);
2846 INIT_LIST_HEAD(&d40c->queue);
Per Forlina8f30672011-06-26 23:29:52 +02002847 INIT_LIST_HEAD(&d40c->pending_queue);
Linus Walleij8d318a52010-03-30 15:33:42 +02002848 INIT_LIST_HEAD(&d40c->client);
Per Forlin82babbb362011-08-29 13:33:35 +02002849 INIT_LIST_HEAD(&d40c->prepare_queue);
Linus Walleij8d318a52010-03-30 15:33:42 +02002850
Linus Walleij8d318a52010-03-30 15:33:42 +02002851 tasklet_init(&d40c->tasklet, dma_tasklet,
2852 (unsigned long) d40c);
2853
2854 list_add_tail(&d40c->chan.device_node,
2855 &dma->channels);
2856 }
2857}
2858
Rabin Vincent7ad74a72011-01-25 11:18:33 +01002859static void d40_ops_init(struct d40_base *base, struct dma_device *dev)
2860{
2861 if (dma_has_cap(DMA_SLAVE, dev->cap_mask))
2862 dev->device_prep_slave_sg = d40_prep_slave_sg;
2863
2864 if (dma_has_cap(DMA_MEMCPY, dev->cap_mask)) {
2865 dev->device_prep_dma_memcpy = d40_prep_memcpy;
2866
2867 /*
2868 * This controller can only access address at even
2869 * 32bit boundaries, i.e. 2^2
2870 */
2871 dev->copy_align = 2;
2872 }
2873
2874 if (dma_has_cap(DMA_SG, dev->cap_mask))
2875 dev->device_prep_dma_sg = d40_prep_memcpy_sg;
2876
Rabin Vincent0c842b52011-01-25 11:18:35 +01002877 if (dma_has_cap(DMA_CYCLIC, dev->cap_mask))
2878 dev->device_prep_dma_cyclic = dma40_prep_dma_cyclic;
2879
Rabin Vincent7ad74a72011-01-25 11:18:33 +01002880 dev->device_alloc_chan_resources = d40_alloc_chan_resources;
2881 dev->device_free_chan_resources = d40_free_chan_resources;
2882 dev->device_issue_pending = d40_issue_pending;
2883 dev->device_tx_status = d40_tx_status;
2884 dev->device_control = d40_control;
2885 dev->dev = base->dev;
2886}
2887
Linus Walleij8d318a52010-03-30 15:33:42 +02002888static int __init d40_dmaengine_init(struct d40_base *base,
2889 int num_reserved_chans)
2890{
2891 int err ;
2892
2893 d40_chan_init(base, &base->dma_slave, base->log_chans,
2894 0, base->num_log_chans);
2895
2896 dma_cap_zero(base->dma_slave.cap_mask);
2897 dma_cap_set(DMA_SLAVE, base->dma_slave.cap_mask);
Rabin Vincent0c842b52011-01-25 11:18:35 +01002898 dma_cap_set(DMA_CYCLIC, base->dma_slave.cap_mask);
Linus Walleij8d318a52010-03-30 15:33:42 +02002899
Rabin Vincent7ad74a72011-01-25 11:18:33 +01002900 d40_ops_init(base, &base->dma_slave);
Linus Walleij8d318a52010-03-30 15:33:42 +02002901
2902 err = dma_async_device_register(&base->dma_slave);
2903
2904 if (err) {
Rabin Vincent6db5a8b2011-01-25 11:18:09 +01002905 d40_err(base->dev, "Failed to register slave channels\n");
Linus Walleij8d318a52010-03-30 15:33:42 +02002906 goto failure1;
2907 }
2908
2909 d40_chan_init(base, &base->dma_memcpy, base->log_chans,
2910 base->num_log_chans, base->plat_data->memcpy_len);
2911
2912 dma_cap_zero(base->dma_memcpy.cap_mask);
2913 dma_cap_set(DMA_MEMCPY, base->dma_memcpy.cap_mask);
Rabin Vincent7ad74a72011-01-25 11:18:33 +01002914 dma_cap_set(DMA_SG, base->dma_memcpy.cap_mask);
Linus Walleij8d318a52010-03-30 15:33:42 +02002915
Rabin Vincent7ad74a72011-01-25 11:18:33 +01002916 d40_ops_init(base, &base->dma_memcpy);
Linus Walleij8d318a52010-03-30 15:33:42 +02002917
2918 err = dma_async_device_register(&base->dma_memcpy);
2919
2920 if (err) {
Rabin Vincent6db5a8b2011-01-25 11:18:09 +01002921 d40_err(base->dev,
2922 "Failed to regsiter memcpy only channels\n");
Linus Walleij8d318a52010-03-30 15:33:42 +02002923 goto failure2;
2924 }
2925
2926 d40_chan_init(base, &base->dma_both, base->phy_chans,
2927 0, num_reserved_chans);
2928
2929 dma_cap_zero(base->dma_both.cap_mask);
2930 dma_cap_set(DMA_SLAVE, base->dma_both.cap_mask);
2931 dma_cap_set(DMA_MEMCPY, base->dma_both.cap_mask);
Rabin Vincent7ad74a72011-01-25 11:18:33 +01002932 dma_cap_set(DMA_SG, base->dma_both.cap_mask);
Rabin Vincent0c842b52011-01-25 11:18:35 +01002933 dma_cap_set(DMA_CYCLIC, base->dma_slave.cap_mask);
Linus Walleij8d318a52010-03-30 15:33:42 +02002934
Rabin Vincent7ad74a72011-01-25 11:18:33 +01002935 d40_ops_init(base, &base->dma_both);
Linus Walleij8d318a52010-03-30 15:33:42 +02002936 err = dma_async_device_register(&base->dma_both);
2937
2938 if (err) {
Rabin Vincent6db5a8b2011-01-25 11:18:09 +01002939 d40_err(base->dev,
2940 "Failed to register logical and physical capable channels\n");
Linus Walleij8d318a52010-03-30 15:33:42 +02002941 goto failure3;
2942 }
2943 return 0;
2944failure3:
2945 dma_async_device_unregister(&base->dma_memcpy);
2946failure2:
2947 dma_async_device_unregister(&base->dma_slave);
2948failure1:
2949 return err;
2950}
2951
Narayanan G7fb3e752011-11-17 17:26:41 +05302952/* Suspend resume functionality */
2953#ifdef CONFIG_PM
2954static int dma40_pm_suspend(struct device *dev)
2955{
Narayanan G28c7a192011-11-22 13:56:55 +05302956 struct platform_device *pdev = to_platform_device(dev);
2957 struct d40_base *base = platform_get_drvdata(pdev);
2958 int ret = 0;
Narayanan G7fb3e752011-11-17 17:26:41 +05302959
Narayanan G28c7a192011-11-22 13:56:55 +05302960 if (base->lcpa_regulator)
2961 ret = regulator_disable(base->lcpa_regulator);
2962 return ret;
Narayanan G7fb3e752011-11-17 17:26:41 +05302963}
2964
2965static int dma40_runtime_suspend(struct device *dev)
2966{
2967 struct platform_device *pdev = to_platform_device(dev);
2968 struct d40_base *base = platform_get_drvdata(pdev);
2969
2970 d40_save_restore_registers(base, true);
2971
2972 /* Don't disable/enable clocks for v1 due to HW bugs */
2973 if (base->rev != 1)
2974 writel_relaxed(base->gcc_pwr_off_mask,
2975 base->virtbase + D40_DREG_GCC);
2976
2977 return 0;
2978}
2979
2980static int dma40_runtime_resume(struct device *dev)
2981{
2982 struct platform_device *pdev = to_platform_device(dev);
2983 struct d40_base *base = platform_get_drvdata(pdev);
2984
2985 if (base->initialized)
2986 d40_save_restore_registers(base, false);
2987
2988 writel_relaxed(D40_DREG_GCC_ENABLE_ALL,
2989 base->virtbase + D40_DREG_GCC);
2990 return 0;
2991}
2992
Narayanan G28c7a192011-11-22 13:56:55 +05302993static int dma40_resume(struct device *dev)
2994{
2995 struct platform_device *pdev = to_platform_device(dev);
2996 struct d40_base *base = platform_get_drvdata(pdev);
2997 int ret = 0;
2998
2999 if (base->lcpa_regulator)
3000 ret = regulator_enable(base->lcpa_regulator);
3001
3002 return ret;
3003}
Narayanan G7fb3e752011-11-17 17:26:41 +05303004
3005static const struct dev_pm_ops dma40_pm_ops = {
3006 .suspend = dma40_pm_suspend,
3007 .runtime_suspend = dma40_runtime_suspend,
3008 .runtime_resume = dma40_runtime_resume,
Narayanan G28c7a192011-11-22 13:56:55 +05303009 .resume = dma40_resume,
Narayanan G7fb3e752011-11-17 17:26:41 +05303010};
3011#define DMA40_PM_OPS (&dma40_pm_ops)
3012#else
3013#define DMA40_PM_OPS NULL
3014#endif
3015
Linus Walleij8d318a52010-03-30 15:33:42 +02003016/* Initialization functions. */
3017
3018static int __init d40_phy_res_init(struct d40_base *base)
3019{
3020 int i;
3021 int num_phy_chans_avail = 0;
3022 u32 val[2];
3023 int odd_even_bit = -2;
Narayanan G7fb3e752011-11-17 17:26:41 +05303024 int gcc = D40_DREG_GCC_ENA;
Linus Walleij8d318a52010-03-30 15:33:42 +02003025
3026 val[0] = readl(base->virtbase + D40_DREG_PRSME);
3027 val[1] = readl(base->virtbase + D40_DREG_PRSMO);
3028
3029 for (i = 0; i < base->num_phy_chans; i++) {
3030 base->phy_res[i].num = i;
3031 odd_even_bit += 2 * ((i % 2) == 0);
3032 if (((val[i % 2] >> odd_even_bit) & 3) == 1) {
3033 /* Mark security only channels as occupied */
3034 base->phy_res[i].allocated_src = D40_ALLOC_PHY;
3035 base->phy_res[i].allocated_dst = D40_ALLOC_PHY;
Narayanan G7fb3e752011-11-17 17:26:41 +05303036 base->phy_res[i].reserved = true;
3037 gcc |= D40_DREG_GCC_EVTGRP_ENA(D40_PHYS_TO_GROUP(i),
3038 D40_DREG_GCC_SRC);
3039 gcc |= D40_DREG_GCC_EVTGRP_ENA(D40_PHYS_TO_GROUP(i),
3040 D40_DREG_GCC_DST);
3041
3042
Linus Walleij8d318a52010-03-30 15:33:42 +02003043 } else {
3044 base->phy_res[i].allocated_src = D40_ALLOC_FREE;
3045 base->phy_res[i].allocated_dst = D40_ALLOC_FREE;
Narayanan G7fb3e752011-11-17 17:26:41 +05303046 base->phy_res[i].reserved = false;
Linus Walleij8d318a52010-03-30 15:33:42 +02003047 num_phy_chans_avail++;
3048 }
3049 spin_lock_init(&base->phy_res[i].lock);
3050 }
Jonas Aaberg6b7acd82010-06-20 21:26:59 +00003051
3052 /* Mark disabled channels as occupied */
3053 for (i = 0; base->plat_data->disabled_channels[i] != -1; i++) {
Rabin Vincentf57b4072010-10-06 08:20:35 +00003054 int chan = base->plat_data->disabled_channels[i];
3055
3056 base->phy_res[chan].allocated_src = D40_ALLOC_PHY;
3057 base->phy_res[chan].allocated_dst = D40_ALLOC_PHY;
Narayanan G7fb3e752011-11-17 17:26:41 +05303058 base->phy_res[chan].reserved = true;
3059 gcc |= D40_DREG_GCC_EVTGRP_ENA(D40_PHYS_TO_GROUP(chan),
3060 D40_DREG_GCC_SRC);
3061 gcc |= D40_DREG_GCC_EVTGRP_ENA(D40_PHYS_TO_GROUP(chan),
3062 D40_DREG_GCC_DST);
Rabin Vincentf57b4072010-10-06 08:20:35 +00003063 num_phy_chans_avail--;
Jonas Aaberg6b7acd82010-06-20 21:26:59 +00003064 }
3065
Linus Walleij8d318a52010-03-30 15:33:42 +02003066 dev_info(base->dev, "%d of %d physical DMA channels available\n",
3067 num_phy_chans_avail, base->num_phy_chans);
3068
3069 /* Verify settings extended vs standard */
3070 val[0] = readl(base->virtbase + D40_DREG_PRTYP);
3071
3072 for (i = 0; i < base->num_phy_chans; i++) {
3073
3074 if (base->phy_res[i].allocated_src == D40_ALLOC_FREE &&
3075 (val[0] & 0x3) != 1)
3076 dev_info(base->dev,
3077 "[%s] INFO: channel %d is misconfigured (%d)\n",
3078 __func__, i, val[0] & 0x3);
3079
3080 val[0] = val[0] >> 2;
3081 }
3082
Narayanan G7fb3e752011-11-17 17:26:41 +05303083 /*
3084 * To keep things simple, Enable all clocks initially.
3085 * The clocks will get managed later post channel allocation.
3086 * The clocks for the event lines on which reserved channels exists
3087 * are not managed here.
3088 */
3089 writel(D40_DREG_GCC_ENABLE_ALL, base->virtbase + D40_DREG_GCC);
3090 base->gcc_pwr_off_mask = gcc;
3091
Linus Walleij8d318a52010-03-30 15:33:42 +02003092 return num_phy_chans_avail;
3093}
3094
3095static struct d40_base * __init d40_hw_detect_init(struct platform_device *pdev)
3096{
Linus Walleij8d318a52010-03-30 15:33:42 +02003097 struct stedma40_platform_data *plat_data;
3098 struct clk *clk = NULL;
3099 void __iomem *virtbase = NULL;
3100 struct resource *res = NULL;
3101 struct d40_base *base = NULL;
3102 int num_log_chans = 0;
3103 int num_phy_chans;
Ulf Hanssonb707c6582012-08-23 13:41:58 +02003104 int clk_ret = -EINVAL;
Linus Walleij8d318a52010-03-30 15:33:42 +02003105 int i;
Linus Walleijf4b89762011-06-27 11:33:46 +02003106 u32 pid;
3107 u32 cid;
3108 u8 rev;
Linus Walleij8d318a52010-03-30 15:33:42 +02003109
3110 clk = clk_get(&pdev->dev, NULL);
Linus Walleij8d318a52010-03-30 15:33:42 +02003111 if (IS_ERR(clk)) {
Rabin Vincent6db5a8b2011-01-25 11:18:09 +01003112 d40_err(&pdev->dev, "No matching clock found\n");
Linus Walleij8d318a52010-03-30 15:33:42 +02003113 goto failure;
3114 }
3115
Ulf Hanssonb707c6582012-08-23 13:41:58 +02003116 clk_ret = clk_prepare_enable(clk);
3117 if (clk_ret) {
3118 d40_err(&pdev->dev, "Failed to prepare/enable clock\n");
3119 goto failure;
3120 }
Linus Walleij8d318a52010-03-30 15:33:42 +02003121
3122 /* Get IO for DMAC base address */
3123 res = platform_get_resource_byname(pdev, IORESOURCE_MEM, "base");
3124 if (!res)
3125 goto failure;
3126
3127 if (request_mem_region(res->start, resource_size(res),
3128 D40_NAME " I/O base") == NULL)
3129 goto failure;
3130
3131 virtbase = ioremap(res->start, resource_size(res));
3132 if (!virtbase)
3133 goto failure;
3134
Linus Walleijf4b89762011-06-27 11:33:46 +02003135 /* This is just a regular AMBA PrimeCell ID actually */
3136 for (pid = 0, i = 0; i < 4; i++)
3137 pid |= (readl(virtbase + resource_size(res) - 0x20 + 4 * i)
3138 & 255) << (i * 8);
3139 for (cid = 0, i = 0; i < 4; i++)
3140 cid |= (readl(virtbase + resource_size(res) - 0x10 + 4 * i)
3141 & 255) << (i * 8);
Linus Walleij8d318a52010-03-30 15:33:42 +02003142
Linus Walleijf4b89762011-06-27 11:33:46 +02003143 if (cid != AMBA_CID) {
3144 d40_err(&pdev->dev, "Unknown hardware! No PrimeCell ID\n");
Linus Walleij8d318a52010-03-30 15:33:42 +02003145 goto failure;
3146 }
Linus Walleijf4b89762011-06-27 11:33:46 +02003147 if (AMBA_MANF_BITS(pid) != AMBA_VENDOR_ST) {
3148 d40_err(&pdev->dev, "Unknown designer! Got %x wanted %x\n",
3149 AMBA_MANF_BITS(pid),
3150 AMBA_VENDOR_ST);
3151 goto failure;
3152 }
3153 /*
3154 * HW revision:
3155 * DB8500ed has revision 0
3156 * ? has revision 1
3157 * DB8500v1 has revision 2
3158 * DB8500v2 has revision 3
Gerald Baeza47db92f2012-09-21 21:21:37 +02003159 * AP9540v1 has revision 4
3160 * DB8540v1 has revision 4
Linus Walleijf4b89762011-06-27 11:33:46 +02003161 */
3162 rev = AMBA_REV_BITS(pid);
Jonas Aaberg3ae02672010-08-09 12:08:18 +00003163
Gerald Baeza47db92f2012-09-21 21:21:37 +02003164 plat_data = pdev->dev.platform_data;
Linus Walleij8d318a52010-03-30 15:33:42 +02003165
Gerald Baeza47db92f2012-09-21 21:21:37 +02003166 /* The number of physical channels on this HW */
3167 if (plat_data->num_of_phy_chans)
3168 num_phy_chans = plat_data->num_of_phy_chans;
3169 else
3170 num_phy_chans = 4 * (readl(virtbase + D40_DREG_ICFG) & 0x7) + 4;
3171
3172 dev_info(&pdev->dev, "hardware revision: %d @ 0x%x with %d physical channels\n",
3173 rev, res->start, num_phy_chans);
Linus Walleij8d318a52010-03-30 15:33:42 +02003174
Narayanan G1bdae6f2012-02-09 12:41:37 +05303175 if (rev < 2) {
3176 d40_err(&pdev->dev, "hardware revision: %d is not supported",
3177 rev);
3178 goto failure;
3179 }
3180
Linus Walleij8d318a52010-03-30 15:33:42 +02003181 /* Count the number of logical channels in use */
3182 for (i = 0; i < plat_data->dev_len; i++)
3183 if (plat_data->dev_rx[i] != 0)
3184 num_log_chans++;
3185
3186 for (i = 0; i < plat_data->dev_len; i++)
3187 if (plat_data->dev_tx[i] != 0)
3188 num_log_chans++;
3189
3190 base = kzalloc(ALIGN(sizeof(struct d40_base), 4) +
3191 (num_phy_chans + num_log_chans + plat_data->memcpy_len) *
3192 sizeof(struct d40_chan), GFP_KERNEL);
3193
3194 if (base == NULL) {
Rabin Vincent6db5a8b2011-01-25 11:18:09 +01003195 d40_err(&pdev->dev, "Out of memory\n");
Linus Walleij8d318a52010-03-30 15:33:42 +02003196 goto failure;
3197 }
3198
Jonas Aaberg3ae02672010-08-09 12:08:18 +00003199 base->rev = rev;
Linus Walleij8d318a52010-03-30 15:33:42 +02003200 base->clk = clk;
3201 base->num_phy_chans = num_phy_chans;
3202 base->num_log_chans = num_log_chans;
3203 base->phy_start = res->start;
3204 base->phy_size = resource_size(res);
3205 base->virtbase = virtbase;
3206 base->plat_data = plat_data;
3207 base->dev = &pdev->dev;
3208 base->phy_chans = ((void *)base) + ALIGN(sizeof(struct d40_base), 4);
3209 base->log_chans = &base->phy_chans[num_phy_chans];
3210
Tong Liu3cb645d2012-09-26 10:07:30 +00003211 if (base->plat_data->num_of_phy_chans == 14) {
3212 base->gen_dmac.backup = d40_backup_regs_v4b;
3213 base->gen_dmac.backup_size = BACKUP_REGS_SZ_V4B;
3214 base->gen_dmac.interrupt_en = D40_DREG_CPCMIS;
3215 base->gen_dmac.interrupt_clear = D40_DREG_CPCICR;
3216 base->gen_dmac.realtime_en = D40_DREG_CRSEG1;
3217 base->gen_dmac.realtime_clear = D40_DREG_CRCEG1;
3218 base->gen_dmac.high_prio_en = D40_DREG_CPSEG1;
3219 base->gen_dmac.high_prio_clear = D40_DREG_CPCEG1;
3220 base->gen_dmac.il = il_v4b;
3221 base->gen_dmac.il_size = ARRAY_SIZE(il_v4b);
3222 base->gen_dmac.init_reg = dma_init_reg_v4b;
3223 base->gen_dmac.init_reg_size = ARRAY_SIZE(dma_init_reg_v4b);
3224 } else {
3225 if (base->rev >= 3) {
3226 base->gen_dmac.backup = d40_backup_regs_v4a;
3227 base->gen_dmac.backup_size = BACKUP_REGS_SZ_V4A;
3228 }
3229 base->gen_dmac.interrupt_en = D40_DREG_PCMIS;
3230 base->gen_dmac.interrupt_clear = D40_DREG_PCICR;
3231 base->gen_dmac.realtime_en = D40_DREG_RSEG1;
3232 base->gen_dmac.realtime_clear = D40_DREG_RCEG1;
3233 base->gen_dmac.high_prio_en = D40_DREG_PSEG1;
3234 base->gen_dmac.high_prio_clear = D40_DREG_PCEG1;
3235 base->gen_dmac.il = il_v4a;
3236 base->gen_dmac.il_size = ARRAY_SIZE(il_v4a);
3237 base->gen_dmac.init_reg = dma_init_reg_v4a;
3238 base->gen_dmac.init_reg_size = ARRAY_SIZE(dma_init_reg_v4a);
3239 }
3240
Linus Walleij8d318a52010-03-30 15:33:42 +02003241 base->phy_res = kzalloc(num_phy_chans * sizeof(struct d40_phy_res),
3242 GFP_KERNEL);
3243 if (!base->phy_res)
3244 goto failure;
3245
3246 base->lookup_phy_chans = kzalloc(num_phy_chans *
3247 sizeof(struct d40_chan *),
3248 GFP_KERNEL);
3249 if (!base->lookup_phy_chans)
3250 goto failure;
3251
3252 if (num_log_chans + plat_data->memcpy_len) {
3253 /*
3254 * The max number of logical channels are event lines for all
3255 * src devices and dst devices
3256 */
3257 base->lookup_log_chans = kzalloc(plat_data->dev_len * 2 *
3258 sizeof(struct d40_chan *),
3259 GFP_KERNEL);
3260 if (!base->lookup_log_chans)
3261 goto failure;
3262 }
Jonas Aaberg698e4732010-08-09 12:08:56 +00003263
Narayanan G7fb3e752011-11-17 17:26:41 +05303264 base->reg_val_backup_chan = kmalloc(base->num_phy_chans *
3265 sizeof(d40_backup_regs_chan),
Linus Walleij8d318a52010-03-30 15:33:42 +02003266 GFP_KERNEL);
Narayanan G7fb3e752011-11-17 17:26:41 +05303267 if (!base->reg_val_backup_chan)
3268 goto failure;
3269
3270 base->lcla_pool.alloc_map =
3271 kzalloc(num_phy_chans * sizeof(struct d40_desc *)
3272 * D40_LCLA_LINK_PER_EVENT_GRP, GFP_KERNEL);
Linus Walleij8d318a52010-03-30 15:33:42 +02003273 if (!base->lcla_pool.alloc_map)
3274 goto failure;
3275
Jonas Aabergc675b1b2010-06-20 21:25:08 +00003276 base->desc_slab = kmem_cache_create(D40_NAME, sizeof(struct d40_desc),
3277 0, SLAB_HWCACHE_ALIGN,
3278 NULL);
3279 if (base->desc_slab == NULL)
3280 goto failure;
3281
Linus Walleij8d318a52010-03-30 15:33:42 +02003282 return base;
3283
3284failure:
Ulf Hanssonb707c6582012-08-23 13:41:58 +02003285 if (!clk_ret)
3286 clk_disable_unprepare(clk);
3287 if (!IS_ERR(clk))
Linus Walleij8d318a52010-03-30 15:33:42 +02003288 clk_put(clk);
Linus Walleij8d318a52010-03-30 15:33:42 +02003289 if (virtbase)
3290 iounmap(virtbase);
3291 if (res)
3292 release_mem_region(res->start,
3293 resource_size(res));
3294 if (virtbase)
3295 iounmap(virtbase);
3296
3297 if (base) {
3298 kfree(base->lcla_pool.alloc_map);
Narayanan G1bdae6f2012-02-09 12:41:37 +05303299 kfree(base->reg_val_backup_chan);
Linus Walleij8d318a52010-03-30 15:33:42 +02003300 kfree(base->lookup_log_chans);
3301 kfree(base->lookup_phy_chans);
3302 kfree(base->phy_res);
3303 kfree(base);
3304 }
3305
3306 return NULL;
3307}
3308
3309static void __init d40_hw_init(struct d40_base *base)
3310{
3311
Linus Walleij8d318a52010-03-30 15:33:42 +02003312 int i;
3313 u32 prmseo[2] = {0, 0};
3314 u32 activeo[2] = {0xFFFFFFFF, 0xFFFFFFFF};
3315 u32 pcmis = 0;
3316 u32 pcicr = 0;
Tong Liu3cb645d2012-09-26 10:07:30 +00003317 struct d40_reg_val *dma_init_reg = base->gen_dmac.init_reg;
3318 u32 reg_size = base->gen_dmac.init_reg_size;
Linus Walleij8d318a52010-03-30 15:33:42 +02003319
Tong Liu3cb645d2012-09-26 10:07:30 +00003320 for (i = 0; i < reg_size; i++)
Linus Walleij8d318a52010-03-30 15:33:42 +02003321 writel(dma_init_reg[i].val,
3322 base->virtbase + dma_init_reg[i].reg);
3323
3324 /* Configure all our dma channels to default settings */
3325 for (i = 0; i < base->num_phy_chans; i++) {
3326
3327 activeo[i % 2] = activeo[i % 2] << 2;
3328
3329 if (base->phy_res[base->num_phy_chans - i - 1].allocated_src
3330 == D40_ALLOC_PHY) {
3331 activeo[i % 2] |= 3;
3332 continue;
3333 }
3334
3335 /* Enable interrupt # */
3336 pcmis = (pcmis << 1) | 1;
3337
3338 /* Clear interrupt # */
3339 pcicr = (pcicr << 1) | 1;
3340
3341 /* Set channel to physical mode */
3342 prmseo[i % 2] = prmseo[i % 2] << 2;
3343 prmseo[i % 2] |= 1;
3344
3345 }
3346
3347 writel(prmseo[1], base->virtbase + D40_DREG_PRMSE);
3348 writel(prmseo[0], base->virtbase + D40_DREG_PRMSO);
3349 writel(activeo[1], base->virtbase + D40_DREG_ACTIVE);
3350 writel(activeo[0], base->virtbase + D40_DREG_ACTIVO);
3351
3352 /* Write which interrupt to enable */
Tong Liu3cb645d2012-09-26 10:07:30 +00003353 writel(pcmis, base->virtbase + base->gen_dmac.interrupt_en);
Linus Walleij8d318a52010-03-30 15:33:42 +02003354
3355 /* Write which interrupt to clear */
Tong Liu3cb645d2012-09-26 10:07:30 +00003356 writel(pcicr, base->virtbase + base->gen_dmac.interrupt_clear);
Linus Walleij8d318a52010-03-30 15:33:42 +02003357
Tong Liu3cb645d2012-09-26 10:07:30 +00003358 /* These are __initdata and cannot be accessed after init */
3359 base->gen_dmac.init_reg = NULL;
3360 base->gen_dmac.init_reg_size = 0;
Linus Walleij8d318a52010-03-30 15:33:42 +02003361}
3362
Linus Walleij508849a2010-06-20 21:26:07 +00003363static int __init d40_lcla_allocate(struct d40_base *base)
3364{
Rabin Vincent026cbc42011-01-25 11:18:14 +01003365 struct d40_lcla_pool *pool = &base->lcla_pool;
Linus Walleij508849a2010-06-20 21:26:07 +00003366 unsigned long *page_list;
3367 int i, j;
3368 int ret = 0;
3369
3370 /*
3371 * This is somewhat ugly. We need 8192 bytes that are 18 bit aligned,
3372 * To full fill this hardware requirement without wasting 256 kb
3373 * we allocate pages until we get an aligned one.
3374 */
3375 page_list = kmalloc(sizeof(unsigned long) * MAX_LCLA_ALLOC_ATTEMPTS,
3376 GFP_KERNEL);
3377
3378 if (!page_list) {
3379 ret = -ENOMEM;
3380 goto failure;
3381 }
3382
3383 /* Calculating how many pages that are required */
3384 base->lcla_pool.pages = SZ_1K * base->num_phy_chans / PAGE_SIZE;
3385
3386 for (i = 0; i < MAX_LCLA_ALLOC_ATTEMPTS; i++) {
3387 page_list[i] = __get_free_pages(GFP_KERNEL,
3388 base->lcla_pool.pages);
3389 if (!page_list[i]) {
3390
Rabin Vincent6db5a8b2011-01-25 11:18:09 +01003391 d40_err(base->dev, "Failed to allocate %d pages.\n",
3392 base->lcla_pool.pages);
Linus Walleij508849a2010-06-20 21:26:07 +00003393
3394 for (j = 0; j < i; j++)
3395 free_pages(page_list[j], base->lcla_pool.pages);
3396 goto failure;
3397 }
3398
3399 if ((virt_to_phys((void *)page_list[i]) &
3400 (LCLA_ALIGNMENT - 1)) == 0)
3401 break;
3402 }
3403
3404 for (j = 0; j < i; j++)
3405 free_pages(page_list[j], base->lcla_pool.pages);
3406
3407 if (i < MAX_LCLA_ALLOC_ATTEMPTS) {
3408 base->lcla_pool.base = (void *)page_list[i];
3409 } else {
Jonas Aaberg767a9672010-08-09 12:08:34 +00003410 /*
3411 * After many attempts and no succees with finding the correct
3412 * alignment, try with allocating a big buffer.
3413 */
Linus Walleij508849a2010-06-20 21:26:07 +00003414 dev_warn(base->dev,
3415 "[%s] Failed to get %d pages @ 18 bit align.\n",
3416 __func__, base->lcla_pool.pages);
3417 base->lcla_pool.base_unaligned = kmalloc(SZ_1K *
3418 base->num_phy_chans +
3419 LCLA_ALIGNMENT,
3420 GFP_KERNEL);
3421 if (!base->lcla_pool.base_unaligned) {
3422 ret = -ENOMEM;
3423 goto failure;
3424 }
3425
3426 base->lcla_pool.base = PTR_ALIGN(base->lcla_pool.base_unaligned,
3427 LCLA_ALIGNMENT);
3428 }
3429
Rabin Vincent026cbc42011-01-25 11:18:14 +01003430 pool->dma_addr = dma_map_single(base->dev, pool->base,
3431 SZ_1K * base->num_phy_chans,
3432 DMA_TO_DEVICE);
3433 if (dma_mapping_error(base->dev, pool->dma_addr)) {
3434 pool->dma_addr = 0;
3435 ret = -ENOMEM;
3436 goto failure;
3437 }
3438
Linus Walleij508849a2010-06-20 21:26:07 +00003439 writel(virt_to_phys(base->lcla_pool.base),
3440 base->virtbase + D40_DREG_LCLA);
3441failure:
3442 kfree(page_list);
3443 return ret;
3444}
3445
Linus Walleij8d318a52010-03-30 15:33:42 +02003446static int __init d40_probe(struct platform_device *pdev)
3447{
3448 int err;
3449 int ret = -ENOENT;
3450 struct d40_base *base;
3451 struct resource *res = NULL;
3452 int num_reserved_chans;
3453 u32 val;
3454
3455 base = d40_hw_detect_init(pdev);
3456
3457 if (!base)
3458 goto failure;
3459
3460 num_reserved_chans = d40_phy_res_init(base);
3461
3462 platform_set_drvdata(pdev, base);
3463
3464 spin_lock_init(&base->interrupt_lock);
3465 spin_lock_init(&base->execmd_lock);
3466
3467 /* Get IO for logical channel parameter address */
3468 res = platform_get_resource_byname(pdev, IORESOURCE_MEM, "lcpa");
3469 if (!res) {
3470 ret = -ENOENT;
Rabin Vincent6db5a8b2011-01-25 11:18:09 +01003471 d40_err(&pdev->dev, "No \"lcpa\" memory resource\n");
Linus Walleij8d318a52010-03-30 15:33:42 +02003472 goto failure;
3473 }
3474 base->lcpa_size = resource_size(res);
3475 base->phy_lcpa = res->start;
3476
3477 if (request_mem_region(res->start, resource_size(res),
3478 D40_NAME " I/O lcpa") == NULL) {
3479 ret = -EBUSY;
Rabin Vincent6db5a8b2011-01-25 11:18:09 +01003480 d40_err(&pdev->dev,
3481 "Failed to request LCPA region 0x%x-0x%x\n",
3482 res->start, res->end);
Linus Walleij8d318a52010-03-30 15:33:42 +02003483 goto failure;
3484 }
3485
3486 /* We make use of ESRAM memory for this. */
3487 val = readl(base->virtbase + D40_DREG_LCPA);
3488 if (res->start != val && val != 0) {
3489 dev_warn(&pdev->dev,
3490 "[%s] Mismatch LCPA dma 0x%x, def 0x%x\n",
3491 __func__, val, res->start);
3492 } else
3493 writel(res->start, base->virtbase + D40_DREG_LCPA);
3494
3495 base->lcpa_base = ioremap(res->start, resource_size(res));
3496 if (!base->lcpa_base) {
3497 ret = -ENOMEM;
Rabin Vincent6db5a8b2011-01-25 11:18:09 +01003498 d40_err(&pdev->dev, "Failed to ioremap LCPA region\n");
Linus Walleij8d318a52010-03-30 15:33:42 +02003499 goto failure;
3500 }
Narayanan G28c7a192011-11-22 13:56:55 +05303501 /* If lcla has to be located in ESRAM we don't need to allocate */
3502 if (base->plat_data->use_esram_lcla) {
3503 res = platform_get_resource_byname(pdev, IORESOURCE_MEM,
3504 "lcla_esram");
3505 if (!res) {
3506 ret = -ENOENT;
3507 d40_err(&pdev->dev,
3508 "No \"lcla_esram\" memory resource\n");
3509 goto failure;
3510 }
3511 base->lcla_pool.base = ioremap(res->start,
3512 resource_size(res));
3513 if (!base->lcla_pool.base) {
3514 ret = -ENOMEM;
3515 d40_err(&pdev->dev, "Failed to ioremap LCLA region\n");
3516 goto failure;
3517 }
3518 writel(res->start, base->virtbase + D40_DREG_LCLA);
Linus Walleij508849a2010-06-20 21:26:07 +00003519
Narayanan G28c7a192011-11-22 13:56:55 +05303520 } else {
3521 ret = d40_lcla_allocate(base);
3522 if (ret) {
3523 d40_err(&pdev->dev, "Failed to allocate LCLA area\n");
3524 goto failure;
3525 }
Linus Walleij8d318a52010-03-30 15:33:42 +02003526 }
3527
Linus Walleij8d318a52010-03-30 15:33:42 +02003528 spin_lock_init(&base->lcla_pool.lock);
3529
Linus Walleij8d318a52010-03-30 15:33:42 +02003530 base->irq = platform_get_irq(pdev, 0);
3531
3532 ret = request_irq(base->irq, d40_handle_interrupt, 0, D40_NAME, base);
Linus Walleij8d318a52010-03-30 15:33:42 +02003533 if (ret) {
Rabin Vincent6db5a8b2011-01-25 11:18:09 +01003534 d40_err(&pdev->dev, "No IRQ defined\n");
Linus Walleij8d318a52010-03-30 15:33:42 +02003535 goto failure;
3536 }
3537
Narayanan G7fb3e752011-11-17 17:26:41 +05303538 pm_runtime_irq_safe(base->dev);
3539 pm_runtime_set_autosuspend_delay(base->dev, DMA40_AUTOSUSPEND_DELAY);
3540 pm_runtime_use_autosuspend(base->dev);
3541 pm_runtime_enable(base->dev);
3542 pm_runtime_resume(base->dev);
Narayanan G28c7a192011-11-22 13:56:55 +05303543
3544 if (base->plat_data->use_esram_lcla) {
3545
3546 base->lcpa_regulator = regulator_get(base->dev, "lcla_esram");
3547 if (IS_ERR(base->lcpa_regulator)) {
3548 d40_err(&pdev->dev, "Failed to get lcpa_regulator\n");
3549 base->lcpa_regulator = NULL;
3550 goto failure;
3551 }
3552
3553 ret = regulator_enable(base->lcpa_regulator);
3554 if (ret) {
3555 d40_err(&pdev->dev,
3556 "Failed to enable lcpa_regulator\n");
3557 regulator_put(base->lcpa_regulator);
3558 base->lcpa_regulator = NULL;
3559 goto failure;
3560 }
3561 }
3562
Narayanan G7fb3e752011-11-17 17:26:41 +05303563 base->initialized = true;
Linus Walleij8d318a52010-03-30 15:33:42 +02003564 err = d40_dmaengine_init(base, num_reserved_chans);
3565 if (err)
3566 goto failure;
3567
Per Forlinb96710e2011-10-18 18:39:47 +02003568 base->dev->dma_parms = &base->dma_parms;
3569 err = dma_set_max_seg_size(base->dev, STEDMA40_MAX_SEG_SIZE);
3570 if (err) {
3571 d40_err(&pdev->dev, "Failed to set dma max seg size\n");
3572 goto failure;
3573 }
3574
Linus Walleij8d318a52010-03-30 15:33:42 +02003575 d40_hw_init(base);
3576
3577 dev_info(base->dev, "initialized\n");
3578 return 0;
3579
3580failure:
3581 if (base) {
Jonas Aabergc675b1b2010-06-20 21:25:08 +00003582 if (base->desc_slab)
3583 kmem_cache_destroy(base->desc_slab);
Linus Walleij8d318a52010-03-30 15:33:42 +02003584 if (base->virtbase)
3585 iounmap(base->virtbase);
Rabin Vincent026cbc42011-01-25 11:18:14 +01003586
Narayanan G28c7a192011-11-22 13:56:55 +05303587 if (base->lcla_pool.base && base->plat_data->use_esram_lcla) {
3588 iounmap(base->lcla_pool.base);
3589 base->lcla_pool.base = NULL;
3590 }
3591
Rabin Vincent026cbc42011-01-25 11:18:14 +01003592 if (base->lcla_pool.dma_addr)
3593 dma_unmap_single(base->dev, base->lcla_pool.dma_addr,
3594 SZ_1K * base->num_phy_chans,
3595 DMA_TO_DEVICE);
3596
Linus Walleij508849a2010-06-20 21:26:07 +00003597 if (!base->lcla_pool.base_unaligned && base->lcla_pool.base)
3598 free_pages((unsigned long)base->lcla_pool.base,
3599 base->lcla_pool.pages);
Jonas Aaberg767a9672010-08-09 12:08:34 +00003600
3601 kfree(base->lcla_pool.base_unaligned);
3602
Linus Walleij8d318a52010-03-30 15:33:42 +02003603 if (base->phy_lcpa)
3604 release_mem_region(base->phy_lcpa,
3605 base->lcpa_size);
3606 if (base->phy_start)
3607 release_mem_region(base->phy_start,
3608 base->phy_size);
3609 if (base->clk) {
3610 clk_disable(base->clk);
3611 clk_put(base->clk);
3612 }
3613
Narayanan G28c7a192011-11-22 13:56:55 +05303614 if (base->lcpa_regulator) {
3615 regulator_disable(base->lcpa_regulator);
3616 regulator_put(base->lcpa_regulator);
3617 }
3618
Linus Walleij8d318a52010-03-30 15:33:42 +02003619 kfree(base->lcla_pool.alloc_map);
3620 kfree(base->lookup_log_chans);
3621 kfree(base->lookup_phy_chans);
3622 kfree(base->phy_res);
3623 kfree(base);
3624 }
3625
Rabin Vincent6db5a8b2011-01-25 11:18:09 +01003626 d40_err(&pdev->dev, "probe failed\n");
Linus Walleij8d318a52010-03-30 15:33:42 +02003627 return ret;
3628}
3629
3630static struct platform_driver d40_driver = {
3631 .driver = {
3632 .owner = THIS_MODULE,
3633 .name = D40_NAME,
Narayanan G7fb3e752011-11-17 17:26:41 +05303634 .pm = DMA40_PM_OPS,
Linus Walleij8d318a52010-03-30 15:33:42 +02003635 },
3636};
3637
Rabin Vincentcb9ab2d2011-01-25 11:18:04 +01003638static int __init stedma40_init(void)
Linus Walleij8d318a52010-03-30 15:33:42 +02003639{
3640 return platform_driver_probe(&d40_driver, d40_probe);
3641}
Linus Walleija0eb2212011-05-18 14:18:57 +02003642subsys_initcall(stedma40_init);