blob: a035dfeab6cbe4ac8c094a35c978c60bd276ec38 [file] [log] [blame]
Linus Walleij8d318a52010-03-30 15:33:42 +02001/*
Jonas Aaberg767a9672010-08-09 12:08:34 +00002 * Copyright (C) ST-Ericsson SA 2007-2010
Per Forlind49278e2010-12-20 18:31:38 +01003 * Author: Per Forlin <per.forlin@stericsson.com> for ST-Ericsson
Jonas Aaberg767a9672010-08-09 12:08:34 +00004 * Author: Jonas Aaberg <jonas.aberg@stericsson.com> for ST-Ericsson
Linus Walleij8d318a52010-03-30 15:33:42 +02005 * License terms: GNU General Public License (GPL) version 2
Linus Walleij8d318a52010-03-30 15:33:42 +02006 */
7
8#include <linux/kernel.h>
Linus Walleij865fab62012-10-18 14:20:16 +02009#include <linux/platform_data/dma-ste-dma40.h>
Linus Walleij8d318a52010-03-30 15:33:42 +020010
11#include "ste_dma40_ll.h"
12
Lee Jones43f2e1a2013-05-15 11:51:57 +020013u8 d40_width_to_bits(enum dma_slave_buswidth width)
14{
15 if (width == DMA_SLAVE_BUSWIDTH_1_BYTE)
16 return STEDMA40_ESIZE_8_BIT;
17 else if (width == DMA_SLAVE_BUSWIDTH_2_BYTES)
18 return STEDMA40_ESIZE_16_BIT;
19 else if (width == DMA_SLAVE_BUSWIDTH_8_BYTES)
20 return STEDMA40_ESIZE_64_BIT;
21 else
22 return STEDMA40_ESIZE_32_BIT;
23}
24
Linus Walleij8d318a52010-03-30 15:33:42 +020025/* Sets up proper LCSP1 and LCSP3 register for a logical channel */
26void d40_log_cfg(struct stedma40_chan_cfg *cfg,
27 u32 *lcsp1, u32 *lcsp3)
28{
29 u32 l3 = 0; /* dst */
30 u32 l1 = 0; /* src */
31
32 /* src is mem? -> increase address pos */
Lee Jones2c2b62d2013-05-15 10:51:54 +010033 if (cfg->dir == DMA_MEM_TO_DEV ||
34 cfg->dir == DMA_MEM_TO_MEM)
Lee Jones16db3412013-05-15 10:51:56 +010035 l1 |= BIT(D40_MEM_LCSP1_SCFG_INCR_POS);
Linus Walleij8d318a52010-03-30 15:33:42 +020036
37 /* dst is mem? -> increase address pos */
Lee Jones2c2b62d2013-05-15 10:51:54 +010038 if (cfg->dir == DMA_DEV_TO_MEM ||
39 cfg->dir == DMA_MEM_TO_MEM)
Lee Jones16db3412013-05-15 10:51:56 +010040 l3 |= BIT(D40_MEM_LCSP3_DCFG_INCR_POS);
Linus Walleij8d318a52010-03-30 15:33:42 +020041
42 /* src is hw? -> master port 1 */
Lee Jones2c2b62d2013-05-15 10:51:54 +010043 if (cfg->dir == DMA_DEV_TO_MEM ||
44 cfg->dir == DMA_DEV_TO_DEV)
Lee Jones16db3412013-05-15 10:51:56 +010045 l1 |= BIT(D40_MEM_LCSP1_SCFG_MST_POS);
Linus Walleij8d318a52010-03-30 15:33:42 +020046
47 /* dst is hw? -> master port 1 */
Lee Jones2c2b62d2013-05-15 10:51:54 +010048 if (cfg->dir == DMA_MEM_TO_DEV ||
49 cfg->dir == DMA_DEV_TO_DEV)
Lee Jones16db3412013-05-15 10:51:56 +010050 l3 |= BIT(D40_MEM_LCSP3_DCFG_MST_POS);
Linus Walleij8d318a52010-03-30 15:33:42 +020051
Lee Jones16db3412013-05-15 10:51:56 +010052 l3 |= BIT(D40_MEM_LCSP3_DCFG_EIM_POS);
Linus Walleij8d318a52010-03-30 15:33:42 +020053 l3 |= cfg->dst_info.psize << D40_MEM_LCSP3_DCFG_PSIZE_POS;
Lee Jones43f2e1a2013-05-15 11:51:57 +020054 l3 |= d40_width_to_bits(cfg->dst_info.data_width)
55 << D40_MEM_LCSP3_DCFG_ESIZE_POS;
Linus Walleij8d318a52010-03-30 15:33:42 +020056
Lee Jones16db3412013-05-15 10:51:56 +010057 l1 |= BIT(D40_MEM_LCSP1_SCFG_EIM_POS);
Linus Walleij8d318a52010-03-30 15:33:42 +020058 l1 |= cfg->src_info.psize << D40_MEM_LCSP1_SCFG_PSIZE_POS;
Lee Jones43f2e1a2013-05-15 11:51:57 +020059 l1 |= d40_width_to_bits(cfg->src_info.data_width)
60 << D40_MEM_LCSP1_SCFG_ESIZE_POS;
Linus Walleij8d318a52010-03-30 15:33:42 +020061
62 *lcsp1 = l1;
63 *lcsp3 = l3;
64
65}
66
Lee Jones57e65ad2013-05-15 10:51:25 +010067void d40_phy_cfg(struct stedma40_chan_cfg *cfg, u32 *src_cfg, u32 *dst_cfg)
Linus Walleij8d318a52010-03-30 15:33:42 +020068{
69 u32 src = 0;
70 u32 dst = 0;
71
Lee Jones2c2b62d2013-05-15 10:51:54 +010072 if ((cfg->dir == DMA_DEV_TO_MEM) ||
73 (cfg->dir == DMA_DEV_TO_DEV)) {
Lee Jones57e65ad2013-05-15 10:51:25 +010074 /* Set master port to 1 */
Lee Jones16db3412013-05-15 10:51:56 +010075 src |= BIT(D40_SREG_CFG_MST_POS);
Lee Jones57e65ad2013-05-15 10:51:25 +010076 src |= D40_TYPE_TO_EVENT(cfg->dev_type);
Linus Walleij8d318a52010-03-30 15:33:42 +020077
Lee Jones57e65ad2013-05-15 10:51:25 +010078 if (cfg->src_info.flow_ctrl == STEDMA40_NO_FLOW_CTRL)
Lee Jones16db3412013-05-15 10:51:56 +010079 src |= BIT(D40_SREG_CFG_PHY_TM_POS);
Lee Jones57e65ad2013-05-15 10:51:25 +010080 else
81 src |= 3 << D40_SREG_CFG_PHY_TM_POS;
82 }
Lee Jones2c2b62d2013-05-15 10:51:54 +010083 if ((cfg->dir == DMA_MEM_TO_DEV) ||
84 (cfg->dir == DMA_DEV_TO_DEV)) {
Lee Jones57e65ad2013-05-15 10:51:25 +010085 /* Set master port to 1 */
Lee Jones16db3412013-05-15 10:51:56 +010086 dst |= BIT(D40_SREG_CFG_MST_POS);
Lee Jones57e65ad2013-05-15 10:51:25 +010087 dst |= D40_TYPE_TO_EVENT(cfg->dev_type);
Linus Walleij8d318a52010-03-30 15:33:42 +020088
Lee Jones57e65ad2013-05-15 10:51:25 +010089 if (cfg->dst_info.flow_ctrl == STEDMA40_NO_FLOW_CTRL)
Lee Jones16db3412013-05-15 10:51:56 +010090 dst |= BIT(D40_SREG_CFG_PHY_TM_POS);
Lee Jones57e65ad2013-05-15 10:51:25 +010091 else
92 dst |= 3 << D40_SREG_CFG_PHY_TM_POS;
93 }
94 /* Interrupt on end of transfer for destination */
Lee Jones16db3412013-05-15 10:51:56 +010095 dst |= BIT(D40_SREG_CFG_TIM_POS);
Linus Walleij8d318a52010-03-30 15:33:42 +020096
Lee Jones57e65ad2013-05-15 10:51:25 +010097 /* Generate interrupt on error */
Lee Jones16db3412013-05-15 10:51:56 +010098 src |= BIT(D40_SREG_CFG_EIM_POS);
99 dst |= BIT(D40_SREG_CFG_EIM_POS);
Linus Walleij8d318a52010-03-30 15:33:42 +0200100
Lee Jones57e65ad2013-05-15 10:51:25 +0100101 /* PSIZE */
102 if (cfg->src_info.psize != STEDMA40_PSIZE_PHY_1) {
Lee Jones16db3412013-05-15 10:51:56 +0100103 src |= BIT(D40_SREG_CFG_PHY_PEN_POS);
Lee Jones57e65ad2013-05-15 10:51:25 +0100104 src |= cfg->src_info.psize << D40_SREG_CFG_PSIZE_POS;
105 }
106 if (cfg->dst_info.psize != STEDMA40_PSIZE_PHY_1) {
Lee Jones16db3412013-05-15 10:51:56 +0100107 dst |= BIT(D40_SREG_CFG_PHY_PEN_POS);
Lee Jones57e65ad2013-05-15 10:51:25 +0100108 dst |= cfg->dst_info.psize << D40_SREG_CFG_PSIZE_POS;
109 }
Linus Walleij8d318a52010-03-30 15:33:42 +0200110
Lee Jones57e65ad2013-05-15 10:51:25 +0100111 /* Element size */
Lee Jones43f2e1a2013-05-15 11:51:57 +0200112 src |= d40_width_to_bits(cfg->src_info.data_width)
113 << D40_SREG_CFG_ESIZE_POS;
114 dst |= d40_width_to_bits(cfg->dst_info.data_width)
115 << D40_SREG_CFG_ESIZE_POS;
Linus Walleij8d318a52010-03-30 15:33:42 +0200116
Lee Jones57e65ad2013-05-15 10:51:25 +0100117 /* Set the priority bit to high for the physical channel */
118 if (cfg->high_priority) {
Lee Jones16db3412013-05-15 10:51:56 +0100119 src |= BIT(D40_SREG_CFG_PRI_POS);
120 dst |= BIT(D40_SREG_CFG_PRI_POS);
Linus Walleij8d318a52010-03-30 15:33:42 +0200121 }
122
Rabin Vincent51f5d742010-10-12 13:00:54 +0000123 if (cfg->src_info.big_endian)
Lee Jones16db3412013-05-15 10:51:56 +0100124 src |= BIT(D40_SREG_CFG_LBE_POS);
Rabin Vincent51f5d742010-10-12 13:00:54 +0000125 if (cfg->dst_info.big_endian)
Lee Jones16db3412013-05-15 10:51:56 +0100126 dst |= BIT(D40_SREG_CFG_LBE_POS);
Linus Walleij8d318a52010-03-30 15:33:42 +0200127
128 *src_cfg = src;
129 *dst_cfg = dst;
130}
131
Per Forlind49278e2010-12-20 18:31:38 +0100132static int d40_phy_fill_lli(struct d40_phy_lli *lli,
133 dma_addr_t data,
134 u32 data_size,
Per Forlind49278e2010-12-20 18:31:38 +0100135 dma_addr_t next_lli,
136 u32 reg_cfg,
Rabin Vincent7f933be2011-01-25 11:18:30 +0100137 struct stedma40_half_channel_info *info,
138 unsigned int flags)
Linus Walleij8d318a52010-03-30 15:33:42 +0200139{
Rabin Vincent7f933be2011-01-25 11:18:30 +0100140 bool addr_inc = flags & LLI_ADDR_INC;
141 bool term_int = flags & LLI_TERM_INT;
Rabin Vincentcc31b6f2011-01-25 11:18:27 +0100142 unsigned int data_width = info->data_width;
143 int psize = info->psize;
Linus Walleij8d318a52010-03-30 15:33:42 +0200144 int num_elems;
145
146 if (psize == STEDMA40_PSIZE_PHY_1)
147 num_elems = 1;
148 else
149 num_elems = 2 << psize;
150
Linus Walleij8d318a52010-03-30 15:33:42 +0200151 /* Must be aligned */
Lee Jones43f2e1a2013-05-15 11:51:57 +0200152 if (!IS_ALIGNED(data, data_width))
Linus Walleij8d318a52010-03-30 15:33:42 +0200153 return -EINVAL;
154
155 /* Transfer size can't be smaller than (num_elms * elem_size) */
Lee Jones43f2e1a2013-05-15 11:51:57 +0200156 if (data_size < num_elems * data_width)
Linus Walleij8d318a52010-03-30 15:33:42 +0200157 return -EINVAL;
158
159 /* The number of elements. IE now many chunks */
Lee Jones43f2e1a2013-05-15 11:51:57 +0200160 lli->reg_elt = (data_size / data_width) << D40_SREG_ELEM_PHY_ECNT_POS;
Linus Walleij8d318a52010-03-30 15:33:42 +0200161
162 /*
163 * Distance to next element sized entry.
164 * Usually the size of the element unless you want gaps.
165 */
Rabin Vincent7f933be2011-01-25 11:18:30 +0100166 if (addr_inc)
Lee Jones43f2e1a2013-05-15 11:51:57 +0200167 lli->reg_elt |= data_width << D40_SREG_ELEM_PHY_EIDX_POS;
Linus Walleij8d318a52010-03-30 15:33:42 +0200168
169 /* Where the data is */
170 lli->reg_ptr = data;
171 lli->reg_cfg = reg_cfg;
172
173 /* If this scatter list entry is the last one, no next link */
174 if (next_lli == 0)
Lee Jones16db3412013-05-15 10:51:56 +0100175 lli->reg_lnk = BIT(D40_SREG_LNK_PHY_TCP_POS);
Linus Walleij8d318a52010-03-30 15:33:42 +0200176 else
177 lli->reg_lnk = next_lli;
178
179 /* Set/clear interrupt generation on this link item.*/
180 if (term_int)
Lee Jones16db3412013-05-15 10:51:56 +0100181 lli->reg_cfg |= BIT(D40_SREG_CFG_TIM_POS);
Linus Walleij8d318a52010-03-30 15:33:42 +0200182 else
Lee Jones16db3412013-05-15 10:51:56 +0100183 lli->reg_cfg &= ~BIT(D40_SREG_CFG_TIM_POS);
Linus Walleij8d318a52010-03-30 15:33:42 +0200184
185 /* Post link */
186 lli->reg_lnk |= 0 << D40_SREG_LNK_PHY_PRE_POS;
187
188 return 0;
189}
190
Per Forlind49278e2010-12-20 18:31:38 +0100191static int d40_seg_size(int size, int data_width1, int data_width2)
192{
193 u32 max_w = max(data_width1, data_width2);
194 u32 min_w = min(data_width1, data_width2);
Lee Jones43f2e1a2013-05-15 11:51:57 +0200195 u32 seg_max = ALIGN(STEDMA40_MAX_SEG_SIZE * min_w, max_w);
Per Forlind49278e2010-12-20 18:31:38 +0100196
197 if (seg_max > STEDMA40_MAX_SEG_SIZE)
Lee Jones43f2e1a2013-05-15 11:51:57 +0200198 seg_max -= max_w;
Per Forlind49278e2010-12-20 18:31:38 +0100199
200 if (size <= seg_max)
201 return size;
202
203 if (size <= 2 * seg_max)
Lee Jones43f2e1a2013-05-15 11:51:57 +0200204 return ALIGN(size / 2, max_w);
Per Forlind49278e2010-12-20 18:31:38 +0100205
206 return seg_max;
207}
208
Rabin Vincentcc31b6f2011-01-25 11:18:27 +0100209static struct d40_phy_lli *
210d40_phy_buf_to_lli(struct d40_phy_lli *lli, dma_addr_t addr, u32 size,
Rabin Vincent0c842b52011-01-25 11:18:35 +0100211 dma_addr_t lli_phys, dma_addr_t first_phys, u32 reg_cfg,
Rabin Vincent7f933be2011-01-25 11:18:30 +0100212 struct stedma40_half_channel_info *info,
213 struct stedma40_half_channel_info *otherinfo,
214 unsigned long flags)
Per Forlind49278e2010-12-20 18:31:38 +0100215{
Rabin Vincent0c842b52011-01-25 11:18:35 +0100216 bool lastlink = flags & LLI_LAST_LINK;
Rabin Vincent7f933be2011-01-25 11:18:30 +0100217 bool addr_inc = flags & LLI_ADDR_INC;
218 bool term_int = flags & LLI_TERM_INT;
Rabin Vincent0c842b52011-01-25 11:18:35 +0100219 bool cyclic = flags & LLI_CYCLIC;
Per Forlind49278e2010-12-20 18:31:38 +0100220 int err;
221 dma_addr_t next = lli_phys;
222 int size_rest = size;
223 int size_seg = 0;
224
Rabin Vincent7f933be2011-01-25 11:18:30 +0100225 /*
226 * This piece may be split up based on d40_seg_size(); we only want the
227 * term int on the last part.
228 */
229 if (term_int)
230 flags &= ~LLI_TERM_INT;
231
Per Forlind49278e2010-12-20 18:31:38 +0100232 do {
Rabin Vincentcc31b6f2011-01-25 11:18:27 +0100233 size_seg = d40_seg_size(size_rest, info->data_width,
234 otherinfo->data_width);
Per Forlind49278e2010-12-20 18:31:38 +0100235 size_rest -= size_seg;
236
Rabin Vincent0c842b52011-01-25 11:18:35 +0100237 if (size_rest == 0 && term_int)
Rabin Vincent7f933be2011-01-25 11:18:30 +0100238 flags |= LLI_TERM_INT;
Rabin Vincent0c842b52011-01-25 11:18:35 +0100239
240 if (size_rest == 0 && lastlink)
241 next = cyclic ? first_phys : 0;
242 else
Per Forlind49278e2010-12-20 18:31:38 +0100243 next = ALIGN(next + sizeof(struct d40_phy_lli),
244 D40_LLI_ALIGN);
245
Rabin Vincent7f933be2011-01-25 11:18:30 +0100246 err = d40_phy_fill_lli(lli, addr, size_seg, next,
247 reg_cfg, info, flags);
Per Forlind49278e2010-12-20 18:31:38 +0100248
249 if (err)
250 goto err;
251
252 lli++;
Rabin Vincent7f933be2011-01-25 11:18:30 +0100253 if (addr_inc)
Per Forlind49278e2010-12-20 18:31:38 +0100254 addr += size_seg;
255 } while (size_rest);
256
257 return lli;
258
Fabio Baltierif26e03a2012-12-13 17:12:37 +0100259err:
Per Forlind49278e2010-12-20 18:31:38 +0100260 return NULL;
261}
262
Linus Walleij8d318a52010-03-30 15:33:42 +0200263int d40_phy_sg_to_lli(struct scatterlist *sg,
264 int sg_len,
265 dma_addr_t target,
Per Forlind49278e2010-12-20 18:31:38 +0100266 struct d40_phy_lli *lli_sg,
Linus Walleij8d318a52010-03-30 15:33:42 +0200267 dma_addr_t lli_phys,
268 u32 reg_cfg,
Rabin Vincentcc31b6f2011-01-25 11:18:27 +0100269 struct stedma40_half_channel_info *info,
Rabin Vincent0c842b52011-01-25 11:18:35 +0100270 struct stedma40_half_channel_info *otherinfo,
271 unsigned long flags)
Linus Walleij8d318a52010-03-30 15:33:42 +0200272{
273 int total_size = 0;
274 int i;
275 struct scatterlist *current_sg = sg;
Per Forlind49278e2010-12-20 18:31:38 +0100276 struct d40_phy_lli *lli = lli_sg;
277 dma_addr_t l_phys = lli_phys;
Rabin Vincent7f933be2011-01-25 11:18:30 +0100278
279 if (!target)
280 flags |= LLI_ADDR_INC;
Linus Walleij8d318a52010-03-30 15:33:42 +0200281
282 for_each_sg(sg, current_sg, sg_len, i) {
Rabin Vincent7f933be2011-01-25 11:18:30 +0100283 dma_addr_t sg_addr = sg_dma_address(current_sg);
284 unsigned int len = sg_dma_len(current_sg);
285 dma_addr_t dst = target ?: sg_addr;
Linus Walleij8d318a52010-03-30 15:33:42 +0200286
287 total_size += sg_dma_len(current_sg);
288
Rabin Vincent7f933be2011-01-25 11:18:30 +0100289 if (i == sg_len - 1)
Rabin Vincent0c842b52011-01-25 11:18:35 +0100290 flags |= LLI_TERM_INT | LLI_LAST_LINK;
Linus Walleij8d318a52010-03-30 15:33:42 +0200291
Per Forlind49278e2010-12-20 18:31:38 +0100292 l_phys = ALIGN(lli_phys + (lli - lli_sg) *
293 sizeof(struct d40_phy_lli), D40_LLI_ALIGN);
294
Rabin Vincent0c842b52011-01-25 11:18:35 +0100295 lli = d40_phy_buf_to_lli(lli, dst, len, l_phys, lli_phys,
Rabin Vincent7f933be2011-01-25 11:18:30 +0100296 reg_cfg, info, otherinfo, flags);
297
Per Forlind49278e2010-12-20 18:31:38 +0100298 if (lli == NULL)
299 return -EINVAL;
Linus Walleij8d318a52010-03-30 15:33:42 +0200300 }
301
302 return total_size;
Linus Walleij8d318a52010-03-30 15:33:42 +0200303}
304
305
Linus Walleij8d318a52010-03-30 15:33:42 +0200306/* DMA logical lli operations */
307
Jonas Aaberg698e4732010-08-09 12:08:56 +0000308static void d40_log_lli_link(struct d40_log_lli *lli_dst,
309 struct d40_log_lli *lli_src,
Rabin Vincent0c842b52011-01-25 11:18:35 +0100310 int next, unsigned int flags)
Jonas Aaberg698e4732010-08-09 12:08:56 +0000311{
Rabin Vincent0c842b52011-01-25 11:18:35 +0100312 bool interrupt = flags & LLI_TERM_INT;
Jonas Aaberg698e4732010-08-09 12:08:56 +0000313 u32 slos = 0;
314 u32 dlos = 0;
315
316 if (next != -EINVAL) {
317 slos = next * 2;
318 dlos = next * 2 + 1;
Rabin Vincent0c842b52011-01-25 11:18:35 +0100319 }
320
321 if (interrupt) {
Jonas Aaberg698e4732010-08-09 12:08:56 +0000322 lli_dst->lcsp13 |= D40_MEM_LCSP1_SCFG_TIM_MASK;
323 lli_dst->lcsp13 |= D40_MEM_LCSP3_DTCP_MASK;
324 }
325
326 lli_src->lcsp13 = (lli_src->lcsp13 & ~D40_MEM_LCSP1_SLOS_MASK) |
327 (slos << D40_MEM_LCSP1_SLOS_POS);
328
329 lli_dst->lcsp13 = (lli_dst->lcsp13 & ~D40_MEM_LCSP1_SLOS_MASK) |
330 (dlos << D40_MEM_LCSP1_SLOS_POS);
331}
332
333void d40_log_lli_lcpa_write(struct d40_log_lli_full *lcpa,
334 struct d40_log_lli *lli_dst,
335 struct d40_log_lli *lli_src,
Rabin Vincent0c842b52011-01-25 11:18:35 +0100336 int next, unsigned int flags)
Jonas Aaberg698e4732010-08-09 12:08:56 +0000337{
Rabin Vincent0c842b52011-01-25 11:18:35 +0100338 d40_log_lli_link(lli_dst, lli_src, next, flags);
Jonas Aaberg698e4732010-08-09 12:08:56 +0000339
Per Forlin8a5d2032011-09-28 09:32:20 +0200340 writel_relaxed(lli_src->lcsp02, &lcpa[0].lcsp0);
341 writel_relaxed(lli_src->lcsp13, &lcpa[0].lcsp1);
342 writel_relaxed(lli_dst->lcsp02, &lcpa[0].lcsp2);
343 writel_relaxed(lli_dst->lcsp13, &lcpa[0].lcsp3);
Jonas Aaberg698e4732010-08-09 12:08:56 +0000344}
345
346void d40_log_lli_lcla_write(struct d40_log_lli *lcla,
347 struct d40_log_lli *lli_dst,
348 struct d40_log_lli *lli_src,
Rabin Vincent0c842b52011-01-25 11:18:35 +0100349 int next, unsigned int flags)
Jonas Aaberg698e4732010-08-09 12:08:56 +0000350{
Rabin Vincent0c842b52011-01-25 11:18:35 +0100351 d40_log_lli_link(lli_dst, lli_src, next, flags);
Jonas Aaberg698e4732010-08-09 12:08:56 +0000352
Per Forlin8a5d2032011-09-28 09:32:20 +0200353 writel_relaxed(lli_src->lcsp02, &lcla[0].lcsp02);
354 writel_relaxed(lli_src->lcsp13, &lcla[0].lcsp13);
355 writel_relaxed(lli_dst->lcsp02, &lcla[1].lcsp02);
356 writel_relaxed(lli_dst->lcsp13, &lcla[1].lcsp13);
Jonas Aaberg698e4732010-08-09 12:08:56 +0000357}
358
Per Forlind49278e2010-12-20 18:31:38 +0100359static void d40_log_fill_lli(struct d40_log_lli *lli,
360 dma_addr_t data, u32 data_size,
361 u32 reg_cfg,
362 u32 data_width,
Rabin Vincent7f933be2011-01-25 11:18:30 +0100363 unsigned int flags)
Linus Walleij8d318a52010-03-30 15:33:42 +0200364{
Rabin Vincent7f933be2011-01-25 11:18:30 +0100365 bool addr_inc = flags & LLI_ADDR_INC;
366
Linus Walleij8d318a52010-03-30 15:33:42 +0200367 lli->lcsp13 = reg_cfg;
368
369 /* The number of elements to transfer */
Lee Jones43f2e1a2013-05-15 11:51:57 +0200370 lli->lcsp02 = ((data_size / data_width) <<
Linus Walleij8d318a52010-03-30 15:33:42 +0200371 D40_MEM_LCSP0_ECNT_POS) & D40_MEM_LCSP0_ECNT_MASK;
Per Forlind49278e2010-12-20 18:31:38 +0100372
Lee Jones43f2e1a2013-05-15 11:51:57 +0200373 BUG_ON((data_size / data_width) > STEDMA40_MAX_SEG_SIZE);
Per Forlind49278e2010-12-20 18:31:38 +0100374
Linus Walleij8d318a52010-03-30 15:33:42 +0200375 /* 16 LSBs address of the current element */
376 lli->lcsp02 |= data & D40_MEM_LCSP0_SPTR_MASK;
377 /* 16 MSBs address of the current element */
378 lli->lcsp13 |= data & D40_MEM_LCSP1_SPTR_MASK;
379
380 if (addr_inc)
381 lli->lcsp13 |= D40_MEM_LCSP1_SCFG_INCR_MASK;
382
Linus Walleij8d318a52010-03-30 15:33:42 +0200383}
384
Rabin Vincent1f7622c2011-01-25 11:18:29 +0100385static struct d40_log_lli *d40_log_buf_to_lli(struct d40_log_lli *lli_sg,
Per Forlind49278e2010-12-20 18:31:38 +0100386 dma_addr_t addr,
387 int size,
388 u32 lcsp13, /* src or dst*/
389 u32 data_width1,
390 u32 data_width2,
Rabin Vincent7f933be2011-01-25 11:18:30 +0100391 unsigned int flags)
Per Forlind49278e2010-12-20 18:31:38 +0100392{
Rabin Vincent7f933be2011-01-25 11:18:30 +0100393 bool addr_inc = flags & LLI_ADDR_INC;
Per Forlind49278e2010-12-20 18:31:38 +0100394 struct d40_log_lli *lli = lli_sg;
395 int size_rest = size;
396 int size_seg = 0;
397
398 do {
399 size_seg = d40_seg_size(size_rest, data_width1, data_width2);
400 size_rest -= size_seg;
401
402 d40_log_fill_lli(lli,
403 addr,
404 size_seg,
405 lcsp13, data_width1,
Rabin Vincent7f933be2011-01-25 11:18:30 +0100406 flags);
Per Forlind49278e2010-12-20 18:31:38 +0100407 if (addr_inc)
408 addr += size_seg;
409 lli++;
410 } while (size_rest);
411
412 return lli;
413}
414
Jonas Aaberg698e4732010-08-09 12:08:56 +0000415int d40_log_sg_to_lli(struct scatterlist *sg,
Linus Walleij8d318a52010-03-30 15:33:42 +0200416 int sg_len,
Rabin Vincent5ed04b82011-01-25 11:18:26 +0100417 dma_addr_t dev_addr,
Linus Walleij8d318a52010-03-30 15:33:42 +0200418 struct d40_log_lli *lli_sg,
419 u32 lcsp13, /* src or dst*/
Per Forlind49278e2010-12-20 18:31:38 +0100420 u32 data_width1, u32 data_width2)
Linus Walleij8d318a52010-03-30 15:33:42 +0200421{
422 int total_size = 0;
423 struct scatterlist *current_sg = sg;
424 int i;
Per Forlind49278e2010-12-20 18:31:38 +0100425 struct d40_log_lli *lli = lli_sg;
Rabin Vincent7f933be2011-01-25 11:18:30 +0100426 unsigned long flags = 0;
427
428 if (!dev_addr)
429 flags |= LLI_ADDR_INC;
Linus Walleij8d318a52010-03-30 15:33:42 +0200430
431 for_each_sg(sg, current_sg, sg_len, i) {
Rabin Vincent5ed04b82011-01-25 11:18:26 +0100432 dma_addr_t sg_addr = sg_dma_address(current_sg);
433 unsigned int len = sg_dma_len(current_sg);
434 dma_addr_t addr = dev_addr ?: sg_addr;
435
Linus Walleij8d318a52010-03-30 15:33:42 +0200436 total_size += sg_dma_len(current_sg);
Rabin Vincent5ed04b82011-01-25 11:18:26 +0100437
438 lli = d40_log_buf_to_lli(lli, addr, len,
Per Forlind49278e2010-12-20 18:31:38 +0100439 lcsp13,
Rabin Vincent5ed04b82011-01-25 11:18:26 +0100440 data_width1,
441 data_width2,
Rabin Vincent7f933be2011-01-25 11:18:30 +0100442 flags);
Linus Walleij8d318a52010-03-30 15:33:42 +0200443 }
Rabin Vincent5ed04b82011-01-25 11:18:26 +0100444
Linus Walleij8d318a52010-03-30 15:33:42 +0200445 return total_size;
446}