dma40: combine duplicated code in log_sg_to_dev
[deliverable/linux.git] / drivers / dma / ste_dma40_ll.c
CommitLineData
8d318a50 1/*
767a9675 2 * Copyright (C) ST-Ericsson SA 2007-2010
d49278e3 3 * Author: Per Forlin <per.forlin@stericsson.com> for ST-Ericsson
767a9675 4 * Author: Jonas Aaberg <jonas.aberg@stericsson.com> for ST-Ericsson
8d318a50 5 * License terms: GNU General Public License (GPL) version 2
8d318a50
LW
6 */
7
8#include <linux/kernel.h>
9#include <plat/ste_dma40.h>
10
11#include "ste_dma40_ll.h"
12
13/* Sets up proper LCSP1 and LCSP3 register for a logical channel */
14void d40_log_cfg(struct stedma40_chan_cfg *cfg,
15 u32 *lcsp1, u32 *lcsp3)
16{
17 u32 l3 = 0; /* dst */
18 u32 l1 = 0; /* src */
19
20 /* src is mem? -> increase address pos */
21 if (cfg->dir == STEDMA40_MEM_TO_PERIPH ||
22 cfg->dir == STEDMA40_MEM_TO_MEM)
23 l1 |= 1 << D40_MEM_LCSP1_SCFG_INCR_POS;
24
25 /* dst is mem? -> increase address pos */
26 if (cfg->dir == STEDMA40_PERIPH_TO_MEM ||
27 cfg->dir == STEDMA40_MEM_TO_MEM)
28 l3 |= 1 << D40_MEM_LCSP3_DCFG_INCR_POS;
29
30 /* src is hw? -> master port 1 */
31 if (cfg->dir == STEDMA40_PERIPH_TO_MEM ||
32 cfg->dir == STEDMA40_PERIPH_TO_PERIPH)
33 l1 |= 1 << D40_MEM_LCSP1_SCFG_MST_POS;
34
35 /* dst is hw? -> master port 1 */
36 if (cfg->dir == STEDMA40_MEM_TO_PERIPH ||
37 cfg->dir == STEDMA40_PERIPH_TO_PERIPH)
38 l3 |= 1 << D40_MEM_LCSP3_DCFG_MST_POS;
39
8d318a50
LW
40 l3 |= 1 << D40_MEM_LCSP3_DCFG_EIM_POS;
41 l3 |= cfg->dst_info.psize << D40_MEM_LCSP3_DCFG_PSIZE_POS;
42 l3 |= cfg->dst_info.data_width << D40_MEM_LCSP3_DCFG_ESIZE_POS;
8d318a50
LW
43
44 l1 |= 1 << D40_MEM_LCSP1_SCFG_EIM_POS;
45 l1 |= cfg->src_info.psize << D40_MEM_LCSP1_SCFG_PSIZE_POS;
46 l1 |= cfg->src_info.data_width << D40_MEM_LCSP1_SCFG_ESIZE_POS;
8d318a50
LW
47
48 *lcsp1 = l1;
49 *lcsp3 = l3;
50
51}
52
53/* Sets up SRC and DST CFG register for both logical and physical channels */
54void d40_phy_cfg(struct stedma40_chan_cfg *cfg,
55 u32 *src_cfg, u32 *dst_cfg, bool is_log)
56{
57 u32 src = 0;
58 u32 dst = 0;
59
60 if (!is_log) {
61 /* Physical channel */
62 if ((cfg->dir == STEDMA40_PERIPH_TO_MEM) ||
63 (cfg->dir == STEDMA40_PERIPH_TO_PERIPH)) {
64 /* Set master port to 1 */
65 src |= 1 << D40_SREG_CFG_MST_POS;
66 src |= D40_TYPE_TO_EVENT(cfg->src_dev_type);
67
68 if (cfg->src_info.flow_ctrl == STEDMA40_NO_FLOW_CTRL)
69 src |= 1 << D40_SREG_CFG_PHY_TM_POS;
70 else
71 src |= 3 << D40_SREG_CFG_PHY_TM_POS;
72 }
73 if ((cfg->dir == STEDMA40_MEM_TO_PERIPH) ||
74 (cfg->dir == STEDMA40_PERIPH_TO_PERIPH)) {
75 /* Set master port to 1 */
76 dst |= 1 << D40_SREG_CFG_MST_POS;
77 dst |= D40_TYPE_TO_EVENT(cfg->dst_dev_type);
78
79 if (cfg->dst_info.flow_ctrl == STEDMA40_NO_FLOW_CTRL)
80 dst |= 1 << D40_SREG_CFG_PHY_TM_POS;
81 else
82 dst |= 3 << D40_SREG_CFG_PHY_TM_POS;
83 }
84 /* Interrupt on end of transfer for destination */
85 dst |= 1 << D40_SREG_CFG_TIM_POS;
86
87 /* Generate interrupt on error */
88 src |= 1 << D40_SREG_CFG_EIM_POS;
89 dst |= 1 << D40_SREG_CFG_EIM_POS;
90
91 /* PSIZE */
92 if (cfg->src_info.psize != STEDMA40_PSIZE_PHY_1) {
93 src |= 1 << D40_SREG_CFG_PHY_PEN_POS;
94 src |= cfg->src_info.psize << D40_SREG_CFG_PSIZE_POS;
95 }
96 if (cfg->dst_info.psize != STEDMA40_PSIZE_PHY_1) {
97 dst |= 1 << D40_SREG_CFG_PHY_PEN_POS;
98 dst |= cfg->dst_info.psize << D40_SREG_CFG_PSIZE_POS;
99 }
100
101 /* Element size */
102 src |= cfg->src_info.data_width << D40_SREG_CFG_ESIZE_POS;
103 dst |= cfg->dst_info.data_width << D40_SREG_CFG_ESIZE_POS;
104
105 } else {
106 /* Logical channel */
107 dst |= 1 << D40_SREG_CFG_LOG_GIM_POS;
108 src |= 1 << D40_SREG_CFG_LOG_GIM_POS;
109 }
110
730c1871 111 if (cfg->high_priority) {
8d318a50
LW
112 src |= 1 << D40_SREG_CFG_PRI_POS;
113 dst |= 1 << D40_SREG_CFG_PRI_POS;
114 }
115
51f5d744
RV
116 if (cfg->src_info.big_endian)
117 src |= 1 << D40_SREG_CFG_LBE_POS;
118 if (cfg->dst_info.big_endian)
119 dst |= 1 << D40_SREG_CFG_LBE_POS;
8d318a50
LW
120
121 *src_cfg = src;
122 *dst_cfg = dst;
123}
124
d49278e3
PF
125static int d40_phy_fill_lli(struct d40_phy_lli *lli,
126 dma_addr_t data,
127 u32 data_size,
128 int psize,
129 dma_addr_t next_lli,
130 u32 reg_cfg,
131 bool term_int,
132 u32 data_width,
133 bool is_device)
8d318a50
LW
134{
135 int num_elems;
136
137 if (psize == STEDMA40_PSIZE_PHY_1)
138 num_elems = 1;
139 else
140 num_elems = 2 << psize;
141
8d318a50
LW
142 /* Must be aligned */
143 if (!IS_ALIGNED(data, 0x1 << data_width))
144 return -EINVAL;
145
146 /* Transfer size can't be smaller than (num_elms * elem_size) */
147 if (data_size < num_elems * (0x1 << data_width))
148 return -EINVAL;
149
150 /* The number of elements. IE now many chunks */
151 lli->reg_elt = (data_size >> data_width) << D40_SREG_ELEM_PHY_ECNT_POS;
152
153 /*
154 * Distance to next element sized entry.
155 * Usually the size of the element unless you want gaps.
156 */
157 if (!is_device)
158 lli->reg_elt |= (0x1 << data_width) <<
159 D40_SREG_ELEM_PHY_EIDX_POS;
160
161 /* Where the data is */
162 lli->reg_ptr = data;
163 lli->reg_cfg = reg_cfg;
164
165 /* If this scatter list entry is the last one, no next link */
166 if (next_lli == 0)
167 lli->reg_lnk = 0x1 << D40_SREG_LNK_PHY_TCP_POS;
168 else
169 lli->reg_lnk = next_lli;
170
171 /* Set/clear interrupt generation on this link item.*/
172 if (term_int)
173 lli->reg_cfg |= 0x1 << D40_SREG_CFG_TIM_POS;
174 else
175 lli->reg_cfg &= ~(0x1 << D40_SREG_CFG_TIM_POS);
176
177 /* Post link */
178 lli->reg_lnk |= 0 << D40_SREG_LNK_PHY_PRE_POS;
179
180 return 0;
181}
182
d49278e3
PF
183static int d40_seg_size(int size, int data_width1, int data_width2)
184{
185 u32 max_w = max(data_width1, data_width2);
186 u32 min_w = min(data_width1, data_width2);
187 u32 seg_max = ALIGN(STEDMA40_MAX_SEG_SIZE << min_w, 1 << max_w);
188
189 if (seg_max > STEDMA40_MAX_SEG_SIZE)
190 seg_max -= (1 << max_w);
191
192 if (size <= seg_max)
193 return size;
194
195 if (size <= 2 * seg_max)
196 return ALIGN(size / 2, 1 << max_w);
197
198 return seg_max;
199}
200
95944c6e 201static struct d40_phy_lli *d40_phy_buf_to_lli(struct d40_phy_lli *lli,
d49278e3
PF
202 dma_addr_t addr,
203 u32 size,
204 int psize,
205 dma_addr_t lli_phys,
206 u32 reg_cfg,
207 bool term_int,
208 u32 data_width1,
209 u32 data_width2,
210 bool is_device)
211{
212 int err;
213 dma_addr_t next = lli_phys;
214 int size_rest = size;
215 int size_seg = 0;
216
217 do {
218 size_seg = d40_seg_size(size_rest, data_width1, data_width2);
219 size_rest -= size_seg;
220
221 if (term_int && size_rest == 0)
222 next = 0;
223 else
224 next = ALIGN(next + sizeof(struct d40_phy_lli),
225 D40_LLI_ALIGN);
226
227 err = d40_phy_fill_lli(lli,
228 addr,
229 size_seg,
230 psize,
231 next,
232 reg_cfg,
233 !next,
234 data_width1,
235 is_device);
236
237 if (err)
238 goto err;
239
240 lli++;
241 if (!is_device)
242 addr += size_seg;
243 } while (size_rest);
244
245 return lli;
246
247 err:
248 return NULL;
249}
250
8d318a50
LW
251int d40_phy_sg_to_lli(struct scatterlist *sg,
252 int sg_len,
253 dma_addr_t target,
d49278e3 254 struct d40_phy_lli *lli_sg,
8d318a50
LW
255 dma_addr_t lli_phys,
256 u32 reg_cfg,
d49278e3
PF
257 u32 data_width1,
258 u32 data_width2,
0246e77b 259 int psize)
8d318a50
LW
260{
261 int total_size = 0;
262 int i;
263 struct scatterlist *current_sg = sg;
8d318a50 264 dma_addr_t dst;
d49278e3
PF
265 struct d40_phy_lli *lli = lli_sg;
266 dma_addr_t l_phys = lli_phys;
8d318a50
LW
267
268 for_each_sg(sg, current_sg, sg_len, i) {
269
270 total_size += sg_dma_len(current_sg);
271
8d318a50
LW
272 if (target)
273 dst = target;
274 else
7fe8be5a 275 dst = sg_dma_address(current_sg);
8d318a50 276
d49278e3
PF
277 l_phys = ALIGN(lli_phys + (lli - lli_sg) *
278 sizeof(struct d40_phy_lli), D40_LLI_ALIGN);
279
280 lli = d40_phy_buf_to_lli(lli,
281 dst,
282 sg_dma_len(current_sg),
283 psize,
284 l_phys,
285 reg_cfg,
286 sg_len - 1 == i,
287 data_width1,
288 data_width2,
289 target == dst);
290 if (lli == NULL)
291 return -EINVAL;
8d318a50
LW
292 }
293
294 return total_size;
8d318a50
LW
295}
296
297
8d318a50
LW
298/* DMA logical lli operations */
299
698e4732
JA
300static void d40_log_lli_link(struct d40_log_lli *lli_dst,
301 struct d40_log_lli *lli_src,
302 int next)
303{
304 u32 slos = 0;
305 u32 dlos = 0;
306
307 if (next != -EINVAL) {
308 slos = next * 2;
309 dlos = next * 2 + 1;
310 } else {
311 lli_dst->lcsp13 |= D40_MEM_LCSP1_SCFG_TIM_MASK;
312 lli_dst->lcsp13 |= D40_MEM_LCSP3_DTCP_MASK;
313 }
314
315 lli_src->lcsp13 = (lli_src->lcsp13 & ~D40_MEM_LCSP1_SLOS_MASK) |
316 (slos << D40_MEM_LCSP1_SLOS_POS);
317
318 lli_dst->lcsp13 = (lli_dst->lcsp13 & ~D40_MEM_LCSP1_SLOS_MASK) |
319 (dlos << D40_MEM_LCSP1_SLOS_POS);
320}
321
322void d40_log_lli_lcpa_write(struct d40_log_lli_full *lcpa,
323 struct d40_log_lli *lli_dst,
324 struct d40_log_lli *lli_src,
325 int next)
326{
327 d40_log_lli_link(lli_dst, lli_src, next);
328
329 writel(lli_src->lcsp02, &lcpa[0].lcsp0);
330 writel(lli_src->lcsp13, &lcpa[0].lcsp1);
331 writel(lli_dst->lcsp02, &lcpa[0].lcsp2);
332 writel(lli_dst->lcsp13, &lcpa[0].lcsp3);
333}
334
335void d40_log_lli_lcla_write(struct d40_log_lli *lcla,
336 struct d40_log_lli *lli_dst,
337 struct d40_log_lli *lli_src,
338 int next)
339{
340 d40_log_lli_link(lli_dst, lli_src, next);
341
342 writel(lli_src->lcsp02, &lcla[0].lcsp02);
343 writel(lli_src->lcsp13, &lcla[0].lcsp13);
344 writel(lli_dst->lcsp02, &lcla[1].lcsp02);
345 writel(lli_dst->lcsp13, &lcla[1].lcsp13);
346}
347
d49278e3
PF
348static void d40_log_fill_lli(struct d40_log_lli *lli,
349 dma_addr_t data, u32 data_size,
350 u32 reg_cfg,
351 u32 data_width,
352 bool addr_inc)
8d318a50
LW
353{
354 lli->lcsp13 = reg_cfg;
355
356 /* The number of elements to transfer */
357 lli->lcsp02 = ((data_size >> data_width) <<
358 D40_MEM_LCSP0_ECNT_POS) & D40_MEM_LCSP0_ECNT_MASK;
d49278e3
PF
359
360 BUG_ON((data_size >> data_width) > STEDMA40_MAX_SEG_SIZE);
361
8d318a50
LW
362 /* 16 LSBs address of the current element */
363 lli->lcsp02 |= data & D40_MEM_LCSP0_SPTR_MASK;
364 /* 16 MSBs address of the current element */
365 lli->lcsp13 |= data & D40_MEM_LCSP1_SPTR_MASK;
366
367 if (addr_inc)
368 lli->lcsp13 |= D40_MEM_LCSP1_SCFG_INCR_MASK;
369
8d318a50
LW
370}
371
698e4732 372int d40_log_sg_to_dev(struct scatterlist *sg,
8d318a50
LW
373 int sg_len,
374 struct d40_log_lli_bidir *lli,
375 struct d40_def_lcsp *lcsp,
376 u32 src_data_width,
377 u32 dst_data_width,
378 enum dma_data_direction direction,
698e4732 379 dma_addr_t dev_addr)
8d318a50
LW
380{
381 int total_size = 0;
382 struct scatterlist *current_sg = sg;
383 int i;
d49278e3
PF
384 struct d40_log_lli *lli_src = lli->src;
385 struct d40_log_lli *lli_dst = lli->dst;
8d318a50
LW
386
387 for_each_sg(sg, current_sg, sg_len, i) {
e24b36bd
RV
388 dma_addr_t sg_addr = sg_dma_address(current_sg);
389 unsigned int len = sg_dma_len(current_sg);
390 dma_addr_t src;
391 dma_addr_t dst;
392
393 total_size += len;
8d318a50 394
8d318a50 395 if (direction == DMA_TO_DEVICE) {
e24b36bd
RV
396 src = sg_addr;
397 dst = dev_addr;
8d318a50 398 } else {
e24b36bd
RV
399 src = dev_addr;
400 dst = sg_addr;
8d318a50 401 }
e24b36bd
RV
402
403 lli_src = d40_log_buf_to_lli(lli_src, src, len,
404 lcsp->lcsp1,
405 src_data_width,
406 dst_data_width,
407 src == sg_addr);
408
409 lli_dst = d40_log_buf_to_lli(lli_dst, dst, len,
410 lcsp->lcsp3,
411 dst_data_width,
412 src_data_width,
413 dst == sg_addr);
8d318a50 414 }
e24b36bd 415
8d318a50
LW
416 return total_size;
417}
418
d49278e3
PF
419struct d40_log_lli *d40_log_buf_to_lli(struct d40_log_lli *lli_sg,
420 dma_addr_t addr,
421 int size,
422 u32 lcsp13, /* src or dst*/
423 u32 data_width1,
424 u32 data_width2,
425 bool addr_inc)
426{
427 struct d40_log_lli *lli = lli_sg;
428 int size_rest = size;
429 int size_seg = 0;
430
431 do {
432 size_seg = d40_seg_size(size_rest, data_width1, data_width2);
433 size_rest -= size_seg;
434
435 d40_log_fill_lli(lli,
436 addr,
437 size_seg,
438 lcsp13, data_width1,
439 addr_inc);
440 if (addr_inc)
441 addr += size_seg;
442 lli++;
443 } while (size_rest);
444
445 return lli;
446}
447
698e4732 448int d40_log_sg_to_lli(struct scatterlist *sg,
8d318a50
LW
449 int sg_len,
450 struct d40_log_lli *lli_sg,
451 u32 lcsp13, /* src or dst*/
d49278e3 452 u32 data_width1, u32 data_width2)
8d318a50
LW
453{
454 int total_size = 0;
455 struct scatterlist *current_sg = sg;
456 int i;
d49278e3 457 struct d40_log_lli *lli = lli_sg;
8d318a50
LW
458
459 for_each_sg(sg, current_sg, sg_len, i) {
460 total_size += sg_dma_len(current_sg);
d49278e3 461 lli = d40_log_buf_to_lli(lli,
7fe8be5a 462 sg_dma_address(current_sg),
d49278e3
PF
463 sg_dma_len(current_sg),
464 lcsp13,
465 data_width1, data_width2, true);
8d318a50
LW
466 }
467 return total_size;
468}
This page took 0.085056 seconds and 5 git commands to generate.