Linus Walleij | 8d318a5 | 2010-03-30 15:33:42 +0200 | [diff] [blame] | 1 | /* |
Jonas Aaberg | 767a967 | 2010-08-09 12:08:34 +0000 | [diff] [blame] | 2 | * Copyright (C) ST-Ericsson SA 2007-2010 |
Per Forlin | d49278e | 2010-12-20 18:31:38 +0100 | [diff] [blame] | 3 | * Author: Per Forlin <per.forlin@stericsson.com> for ST-Ericsson |
Jonas Aaberg | 767a967 | 2010-08-09 12:08:34 +0000 | [diff] [blame] | 4 | * Author: Jonas Aaberg <jonas.aberg@stericsson.com> for ST-Ericsson |
Linus Walleij | 8d318a5 | 2010-03-30 15:33:42 +0200 | [diff] [blame] | 5 | * License terms: GNU General Public License (GPL) version 2 |
Linus Walleij | 8d318a5 | 2010-03-30 15:33:42 +0200 | [diff] [blame] | 6 | */ |
| 7 | |
| 8 | #include <linux/kernel.h> |
Linus Walleij | 865fab6 | 2012-10-18 14:20:16 +0200 | [diff] [blame] | 9 | #include <linux/platform_data/dma-ste-dma40.h> |
Linus Walleij | 8d318a5 | 2010-03-30 15:33:42 +0200 | [diff] [blame] | 10 | |
| 11 | #include "ste_dma40_ll.h" |
| 12 | |
| 13 | /* Sets up proper LCSP1 and LCSP3 register for a logical channel */ |
| 14 | void 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 */ |
Lee Jones | 2c2b62d | 2013-05-15 10:51:54 +0100 | [diff] [blame] | 21 | if (cfg->dir == DMA_MEM_TO_DEV || |
| 22 | cfg->dir == DMA_MEM_TO_MEM) |
Lee Jones | 16db341 | 2013-05-15 10:51:56 +0100 | [diff] [blame^] | 23 | l1 |= BIT(D40_MEM_LCSP1_SCFG_INCR_POS); |
Linus Walleij | 8d318a5 | 2010-03-30 15:33:42 +0200 | [diff] [blame] | 24 | |
| 25 | /* dst is mem? -> increase address pos */ |
Lee Jones | 2c2b62d | 2013-05-15 10:51:54 +0100 | [diff] [blame] | 26 | if (cfg->dir == DMA_DEV_TO_MEM || |
| 27 | cfg->dir == DMA_MEM_TO_MEM) |
Lee Jones | 16db341 | 2013-05-15 10:51:56 +0100 | [diff] [blame^] | 28 | l3 |= BIT(D40_MEM_LCSP3_DCFG_INCR_POS); |
Linus Walleij | 8d318a5 | 2010-03-30 15:33:42 +0200 | [diff] [blame] | 29 | |
| 30 | /* src is hw? -> master port 1 */ |
Lee Jones | 2c2b62d | 2013-05-15 10:51:54 +0100 | [diff] [blame] | 31 | if (cfg->dir == DMA_DEV_TO_MEM || |
| 32 | cfg->dir == DMA_DEV_TO_DEV) |
Lee Jones | 16db341 | 2013-05-15 10:51:56 +0100 | [diff] [blame^] | 33 | l1 |= BIT(D40_MEM_LCSP1_SCFG_MST_POS); |
Linus Walleij | 8d318a5 | 2010-03-30 15:33:42 +0200 | [diff] [blame] | 34 | |
| 35 | /* dst is hw? -> master port 1 */ |
Lee Jones | 2c2b62d | 2013-05-15 10:51:54 +0100 | [diff] [blame] | 36 | if (cfg->dir == DMA_MEM_TO_DEV || |
| 37 | cfg->dir == DMA_DEV_TO_DEV) |
Lee Jones | 16db341 | 2013-05-15 10:51:56 +0100 | [diff] [blame^] | 38 | l3 |= BIT(D40_MEM_LCSP3_DCFG_MST_POS); |
Linus Walleij | 8d318a5 | 2010-03-30 15:33:42 +0200 | [diff] [blame] | 39 | |
Lee Jones | 16db341 | 2013-05-15 10:51:56 +0100 | [diff] [blame^] | 40 | l3 |= BIT(D40_MEM_LCSP3_DCFG_EIM_POS); |
Linus Walleij | 8d318a5 | 2010-03-30 15:33:42 +0200 | [diff] [blame] | 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; |
Linus Walleij | 8d318a5 | 2010-03-30 15:33:42 +0200 | [diff] [blame] | 43 | |
Lee Jones | 16db341 | 2013-05-15 10:51:56 +0100 | [diff] [blame^] | 44 | l1 |= BIT(D40_MEM_LCSP1_SCFG_EIM_POS); |
Linus Walleij | 8d318a5 | 2010-03-30 15:33:42 +0200 | [diff] [blame] | 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; |
Linus Walleij | 8d318a5 | 2010-03-30 15:33:42 +0200 | [diff] [blame] | 47 | |
| 48 | *lcsp1 = l1; |
| 49 | *lcsp3 = l3; |
| 50 | |
| 51 | } |
| 52 | |
Lee Jones | 57e65ad | 2013-05-15 10:51:25 +0100 | [diff] [blame] | 53 | void d40_phy_cfg(struct stedma40_chan_cfg *cfg, u32 *src_cfg, u32 *dst_cfg) |
Linus Walleij | 8d318a5 | 2010-03-30 15:33:42 +0200 | [diff] [blame] | 54 | { |
| 55 | u32 src = 0; |
| 56 | u32 dst = 0; |
| 57 | |
Lee Jones | 2c2b62d | 2013-05-15 10:51:54 +0100 | [diff] [blame] | 58 | if ((cfg->dir == DMA_DEV_TO_MEM) || |
| 59 | (cfg->dir == DMA_DEV_TO_DEV)) { |
Lee Jones | 57e65ad | 2013-05-15 10:51:25 +0100 | [diff] [blame] | 60 | /* Set master port to 1 */ |
Lee Jones | 16db341 | 2013-05-15 10:51:56 +0100 | [diff] [blame^] | 61 | src |= BIT(D40_SREG_CFG_MST_POS); |
Lee Jones | 57e65ad | 2013-05-15 10:51:25 +0100 | [diff] [blame] | 62 | src |= D40_TYPE_TO_EVENT(cfg->dev_type); |
Linus Walleij | 8d318a5 | 2010-03-30 15:33:42 +0200 | [diff] [blame] | 63 | |
Lee Jones | 57e65ad | 2013-05-15 10:51:25 +0100 | [diff] [blame] | 64 | if (cfg->src_info.flow_ctrl == STEDMA40_NO_FLOW_CTRL) |
Lee Jones | 16db341 | 2013-05-15 10:51:56 +0100 | [diff] [blame^] | 65 | src |= BIT(D40_SREG_CFG_PHY_TM_POS); |
Lee Jones | 57e65ad | 2013-05-15 10:51:25 +0100 | [diff] [blame] | 66 | else |
| 67 | src |= 3 << D40_SREG_CFG_PHY_TM_POS; |
| 68 | } |
Lee Jones | 2c2b62d | 2013-05-15 10:51:54 +0100 | [diff] [blame] | 69 | if ((cfg->dir == DMA_MEM_TO_DEV) || |
| 70 | (cfg->dir == DMA_DEV_TO_DEV)) { |
Lee Jones | 57e65ad | 2013-05-15 10:51:25 +0100 | [diff] [blame] | 71 | /* Set master port to 1 */ |
Lee Jones | 16db341 | 2013-05-15 10:51:56 +0100 | [diff] [blame^] | 72 | dst |= BIT(D40_SREG_CFG_MST_POS); |
Lee Jones | 57e65ad | 2013-05-15 10:51:25 +0100 | [diff] [blame] | 73 | dst |= D40_TYPE_TO_EVENT(cfg->dev_type); |
Linus Walleij | 8d318a5 | 2010-03-30 15:33:42 +0200 | [diff] [blame] | 74 | |
Lee Jones | 57e65ad | 2013-05-15 10:51:25 +0100 | [diff] [blame] | 75 | if (cfg->dst_info.flow_ctrl == STEDMA40_NO_FLOW_CTRL) |
Lee Jones | 16db341 | 2013-05-15 10:51:56 +0100 | [diff] [blame^] | 76 | dst |= BIT(D40_SREG_CFG_PHY_TM_POS); |
Lee Jones | 57e65ad | 2013-05-15 10:51:25 +0100 | [diff] [blame] | 77 | else |
| 78 | dst |= 3 << D40_SREG_CFG_PHY_TM_POS; |
| 79 | } |
| 80 | /* Interrupt on end of transfer for destination */ |
Lee Jones | 16db341 | 2013-05-15 10:51:56 +0100 | [diff] [blame^] | 81 | dst |= BIT(D40_SREG_CFG_TIM_POS); |
Linus Walleij | 8d318a5 | 2010-03-30 15:33:42 +0200 | [diff] [blame] | 82 | |
Lee Jones | 57e65ad | 2013-05-15 10:51:25 +0100 | [diff] [blame] | 83 | /* Generate interrupt on error */ |
Lee Jones | 16db341 | 2013-05-15 10:51:56 +0100 | [diff] [blame^] | 84 | src |= BIT(D40_SREG_CFG_EIM_POS); |
| 85 | dst |= BIT(D40_SREG_CFG_EIM_POS); |
Linus Walleij | 8d318a5 | 2010-03-30 15:33:42 +0200 | [diff] [blame] | 86 | |
Lee Jones | 57e65ad | 2013-05-15 10:51:25 +0100 | [diff] [blame] | 87 | /* PSIZE */ |
| 88 | if (cfg->src_info.psize != STEDMA40_PSIZE_PHY_1) { |
Lee Jones | 16db341 | 2013-05-15 10:51:56 +0100 | [diff] [blame^] | 89 | src |= BIT(D40_SREG_CFG_PHY_PEN_POS); |
Lee Jones | 57e65ad | 2013-05-15 10:51:25 +0100 | [diff] [blame] | 90 | src |= cfg->src_info.psize << D40_SREG_CFG_PSIZE_POS; |
| 91 | } |
| 92 | if (cfg->dst_info.psize != STEDMA40_PSIZE_PHY_1) { |
Lee Jones | 16db341 | 2013-05-15 10:51:56 +0100 | [diff] [blame^] | 93 | dst |= BIT(D40_SREG_CFG_PHY_PEN_POS); |
Lee Jones | 57e65ad | 2013-05-15 10:51:25 +0100 | [diff] [blame] | 94 | dst |= cfg->dst_info.psize << D40_SREG_CFG_PSIZE_POS; |
| 95 | } |
Linus Walleij | 8d318a5 | 2010-03-30 15:33:42 +0200 | [diff] [blame] | 96 | |
Lee Jones | 57e65ad | 2013-05-15 10:51:25 +0100 | [diff] [blame] | 97 | /* Element size */ |
| 98 | src |= cfg->src_info.data_width << D40_SREG_CFG_ESIZE_POS; |
| 99 | dst |= cfg->dst_info.data_width << D40_SREG_CFG_ESIZE_POS; |
Linus Walleij | 8d318a5 | 2010-03-30 15:33:42 +0200 | [diff] [blame] | 100 | |
Lee Jones | 57e65ad | 2013-05-15 10:51:25 +0100 | [diff] [blame] | 101 | /* Set the priority bit to high for the physical channel */ |
| 102 | if (cfg->high_priority) { |
Lee Jones | 16db341 | 2013-05-15 10:51:56 +0100 | [diff] [blame^] | 103 | src |= BIT(D40_SREG_CFG_PRI_POS); |
| 104 | dst |= BIT(D40_SREG_CFG_PRI_POS); |
Linus Walleij | 8d318a5 | 2010-03-30 15:33:42 +0200 | [diff] [blame] | 105 | } |
| 106 | |
Rabin Vincent | 51f5d74 | 2010-10-12 13:00:54 +0000 | [diff] [blame] | 107 | if (cfg->src_info.big_endian) |
Lee Jones | 16db341 | 2013-05-15 10:51:56 +0100 | [diff] [blame^] | 108 | src |= BIT(D40_SREG_CFG_LBE_POS); |
Rabin Vincent | 51f5d74 | 2010-10-12 13:00:54 +0000 | [diff] [blame] | 109 | if (cfg->dst_info.big_endian) |
Lee Jones | 16db341 | 2013-05-15 10:51:56 +0100 | [diff] [blame^] | 110 | dst |= BIT(D40_SREG_CFG_LBE_POS); |
Linus Walleij | 8d318a5 | 2010-03-30 15:33:42 +0200 | [diff] [blame] | 111 | |
| 112 | *src_cfg = src; |
| 113 | *dst_cfg = dst; |
| 114 | } |
| 115 | |
Per Forlin | d49278e | 2010-12-20 18:31:38 +0100 | [diff] [blame] | 116 | static int d40_phy_fill_lli(struct d40_phy_lli *lli, |
| 117 | dma_addr_t data, |
| 118 | u32 data_size, |
Per Forlin | d49278e | 2010-12-20 18:31:38 +0100 | [diff] [blame] | 119 | dma_addr_t next_lli, |
| 120 | u32 reg_cfg, |
Rabin Vincent | 7f933be | 2011-01-25 11:18:30 +0100 | [diff] [blame] | 121 | struct stedma40_half_channel_info *info, |
| 122 | unsigned int flags) |
Linus Walleij | 8d318a5 | 2010-03-30 15:33:42 +0200 | [diff] [blame] | 123 | { |
Rabin Vincent | 7f933be | 2011-01-25 11:18:30 +0100 | [diff] [blame] | 124 | bool addr_inc = flags & LLI_ADDR_INC; |
| 125 | bool term_int = flags & LLI_TERM_INT; |
Rabin Vincent | cc31b6f | 2011-01-25 11:18:27 +0100 | [diff] [blame] | 126 | unsigned int data_width = info->data_width; |
| 127 | int psize = info->psize; |
Linus Walleij | 8d318a5 | 2010-03-30 15:33:42 +0200 | [diff] [blame] | 128 | int num_elems; |
| 129 | |
| 130 | if (psize == STEDMA40_PSIZE_PHY_1) |
| 131 | num_elems = 1; |
| 132 | else |
| 133 | num_elems = 2 << psize; |
| 134 | |
Linus Walleij | 8d318a5 | 2010-03-30 15:33:42 +0200 | [diff] [blame] | 135 | /* Must be aligned */ |
| 136 | if (!IS_ALIGNED(data, 0x1 << data_width)) |
| 137 | return -EINVAL; |
| 138 | |
| 139 | /* Transfer size can't be smaller than (num_elms * elem_size) */ |
| 140 | if (data_size < num_elems * (0x1 << data_width)) |
| 141 | return -EINVAL; |
| 142 | |
| 143 | /* The number of elements. IE now many chunks */ |
| 144 | lli->reg_elt = (data_size >> data_width) << D40_SREG_ELEM_PHY_ECNT_POS; |
| 145 | |
| 146 | /* |
| 147 | * Distance to next element sized entry. |
| 148 | * Usually the size of the element unless you want gaps. |
| 149 | */ |
Rabin Vincent | 7f933be | 2011-01-25 11:18:30 +0100 | [diff] [blame] | 150 | if (addr_inc) |
Linus Walleij | 8d318a5 | 2010-03-30 15:33:42 +0200 | [diff] [blame] | 151 | lli->reg_elt |= (0x1 << data_width) << |
| 152 | D40_SREG_ELEM_PHY_EIDX_POS; |
| 153 | |
| 154 | /* Where the data is */ |
| 155 | lli->reg_ptr = data; |
| 156 | lli->reg_cfg = reg_cfg; |
| 157 | |
| 158 | /* If this scatter list entry is the last one, no next link */ |
| 159 | if (next_lli == 0) |
Lee Jones | 16db341 | 2013-05-15 10:51:56 +0100 | [diff] [blame^] | 160 | lli->reg_lnk = BIT(D40_SREG_LNK_PHY_TCP_POS); |
Linus Walleij | 8d318a5 | 2010-03-30 15:33:42 +0200 | [diff] [blame] | 161 | else |
| 162 | lli->reg_lnk = next_lli; |
| 163 | |
| 164 | /* Set/clear interrupt generation on this link item.*/ |
| 165 | if (term_int) |
Lee Jones | 16db341 | 2013-05-15 10:51:56 +0100 | [diff] [blame^] | 166 | lli->reg_cfg |= BIT(D40_SREG_CFG_TIM_POS); |
Linus Walleij | 8d318a5 | 2010-03-30 15:33:42 +0200 | [diff] [blame] | 167 | else |
Lee Jones | 16db341 | 2013-05-15 10:51:56 +0100 | [diff] [blame^] | 168 | lli->reg_cfg &= ~BIT(D40_SREG_CFG_TIM_POS); |
Linus Walleij | 8d318a5 | 2010-03-30 15:33:42 +0200 | [diff] [blame] | 169 | |
| 170 | /* Post link */ |
| 171 | lli->reg_lnk |= 0 << D40_SREG_LNK_PHY_PRE_POS; |
| 172 | |
| 173 | return 0; |
| 174 | } |
| 175 | |
Per Forlin | d49278e | 2010-12-20 18:31:38 +0100 | [diff] [blame] | 176 | static int d40_seg_size(int size, int data_width1, int data_width2) |
| 177 | { |
| 178 | u32 max_w = max(data_width1, data_width2); |
| 179 | u32 min_w = min(data_width1, data_width2); |
| 180 | u32 seg_max = ALIGN(STEDMA40_MAX_SEG_SIZE << min_w, 1 << max_w); |
| 181 | |
| 182 | if (seg_max > STEDMA40_MAX_SEG_SIZE) |
| 183 | seg_max -= (1 << max_w); |
| 184 | |
| 185 | if (size <= seg_max) |
| 186 | return size; |
| 187 | |
| 188 | if (size <= 2 * seg_max) |
| 189 | return ALIGN(size / 2, 1 << max_w); |
| 190 | |
| 191 | return seg_max; |
| 192 | } |
| 193 | |
Rabin Vincent | cc31b6f | 2011-01-25 11:18:27 +0100 | [diff] [blame] | 194 | static struct d40_phy_lli * |
| 195 | d40_phy_buf_to_lli(struct d40_phy_lli *lli, dma_addr_t addr, u32 size, |
Rabin Vincent | 0c842b5 | 2011-01-25 11:18:35 +0100 | [diff] [blame] | 196 | dma_addr_t lli_phys, dma_addr_t first_phys, u32 reg_cfg, |
Rabin Vincent | 7f933be | 2011-01-25 11:18:30 +0100 | [diff] [blame] | 197 | struct stedma40_half_channel_info *info, |
| 198 | struct stedma40_half_channel_info *otherinfo, |
| 199 | unsigned long flags) |
Per Forlin | d49278e | 2010-12-20 18:31:38 +0100 | [diff] [blame] | 200 | { |
Rabin Vincent | 0c842b5 | 2011-01-25 11:18:35 +0100 | [diff] [blame] | 201 | bool lastlink = flags & LLI_LAST_LINK; |
Rabin Vincent | 7f933be | 2011-01-25 11:18:30 +0100 | [diff] [blame] | 202 | bool addr_inc = flags & LLI_ADDR_INC; |
| 203 | bool term_int = flags & LLI_TERM_INT; |
Rabin Vincent | 0c842b5 | 2011-01-25 11:18:35 +0100 | [diff] [blame] | 204 | bool cyclic = flags & LLI_CYCLIC; |
Per Forlin | d49278e | 2010-12-20 18:31:38 +0100 | [diff] [blame] | 205 | int err; |
| 206 | dma_addr_t next = lli_phys; |
| 207 | int size_rest = size; |
| 208 | int size_seg = 0; |
| 209 | |
Rabin Vincent | 7f933be | 2011-01-25 11:18:30 +0100 | [diff] [blame] | 210 | /* |
| 211 | * This piece may be split up based on d40_seg_size(); we only want the |
| 212 | * term int on the last part. |
| 213 | */ |
| 214 | if (term_int) |
| 215 | flags &= ~LLI_TERM_INT; |
| 216 | |
Per Forlin | d49278e | 2010-12-20 18:31:38 +0100 | [diff] [blame] | 217 | do { |
Rabin Vincent | cc31b6f | 2011-01-25 11:18:27 +0100 | [diff] [blame] | 218 | size_seg = d40_seg_size(size_rest, info->data_width, |
| 219 | otherinfo->data_width); |
Per Forlin | d49278e | 2010-12-20 18:31:38 +0100 | [diff] [blame] | 220 | size_rest -= size_seg; |
| 221 | |
Rabin Vincent | 0c842b5 | 2011-01-25 11:18:35 +0100 | [diff] [blame] | 222 | if (size_rest == 0 && term_int) |
Rabin Vincent | 7f933be | 2011-01-25 11:18:30 +0100 | [diff] [blame] | 223 | flags |= LLI_TERM_INT; |
Rabin Vincent | 0c842b5 | 2011-01-25 11:18:35 +0100 | [diff] [blame] | 224 | |
| 225 | if (size_rest == 0 && lastlink) |
| 226 | next = cyclic ? first_phys : 0; |
| 227 | else |
Per Forlin | d49278e | 2010-12-20 18:31:38 +0100 | [diff] [blame] | 228 | next = ALIGN(next + sizeof(struct d40_phy_lli), |
| 229 | D40_LLI_ALIGN); |
| 230 | |
Rabin Vincent | 7f933be | 2011-01-25 11:18:30 +0100 | [diff] [blame] | 231 | err = d40_phy_fill_lli(lli, addr, size_seg, next, |
| 232 | reg_cfg, info, flags); |
Per Forlin | d49278e | 2010-12-20 18:31:38 +0100 | [diff] [blame] | 233 | |
| 234 | if (err) |
| 235 | goto err; |
| 236 | |
| 237 | lli++; |
Rabin Vincent | 7f933be | 2011-01-25 11:18:30 +0100 | [diff] [blame] | 238 | if (addr_inc) |
Per Forlin | d49278e | 2010-12-20 18:31:38 +0100 | [diff] [blame] | 239 | addr += size_seg; |
| 240 | } while (size_rest); |
| 241 | |
| 242 | return lli; |
| 243 | |
Fabio Baltieri | f26e03a | 2012-12-13 17:12:37 +0100 | [diff] [blame] | 244 | err: |
Per Forlin | d49278e | 2010-12-20 18:31:38 +0100 | [diff] [blame] | 245 | return NULL; |
| 246 | } |
| 247 | |
Linus Walleij | 8d318a5 | 2010-03-30 15:33:42 +0200 | [diff] [blame] | 248 | int d40_phy_sg_to_lli(struct scatterlist *sg, |
| 249 | int sg_len, |
| 250 | dma_addr_t target, |
Per Forlin | d49278e | 2010-12-20 18:31:38 +0100 | [diff] [blame] | 251 | struct d40_phy_lli *lli_sg, |
Linus Walleij | 8d318a5 | 2010-03-30 15:33:42 +0200 | [diff] [blame] | 252 | dma_addr_t lli_phys, |
| 253 | u32 reg_cfg, |
Rabin Vincent | cc31b6f | 2011-01-25 11:18:27 +0100 | [diff] [blame] | 254 | struct stedma40_half_channel_info *info, |
Rabin Vincent | 0c842b5 | 2011-01-25 11:18:35 +0100 | [diff] [blame] | 255 | struct stedma40_half_channel_info *otherinfo, |
| 256 | unsigned long flags) |
Linus Walleij | 8d318a5 | 2010-03-30 15:33:42 +0200 | [diff] [blame] | 257 | { |
| 258 | int total_size = 0; |
| 259 | int i; |
| 260 | struct scatterlist *current_sg = sg; |
Per Forlin | d49278e | 2010-12-20 18:31:38 +0100 | [diff] [blame] | 261 | struct d40_phy_lli *lli = lli_sg; |
| 262 | dma_addr_t l_phys = lli_phys; |
Rabin Vincent | 7f933be | 2011-01-25 11:18:30 +0100 | [diff] [blame] | 263 | |
| 264 | if (!target) |
| 265 | flags |= LLI_ADDR_INC; |
Linus Walleij | 8d318a5 | 2010-03-30 15:33:42 +0200 | [diff] [blame] | 266 | |
| 267 | for_each_sg(sg, current_sg, sg_len, i) { |
Rabin Vincent | 7f933be | 2011-01-25 11:18:30 +0100 | [diff] [blame] | 268 | dma_addr_t sg_addr = sg_dma_address(current_sg); |
| 269 | unsigned int len = sg_dma_len(current_sg); |
| 270 | dma_addr_t dst = target ?: sg_addr; |
Linus Walleij | 8d318a5 | 2010-03-30 15:33:42 +0200 | [diff] [blame] | 271 | |
| 272 | total_size += sg_dma_len(current_sg); |
| 273 | |
Rabin Vincent | 7f933be | 2011-01-25 11:18:30 +0100 | [diff] [blame] | 274 | if (i == sg_len - 1) |
Rabin Vincent | 0c842b5 | 2011-01-25 11:18:35 +0100 | [diff] [blame] | 275 | flags |= LLI_TERM_INT | LLI_LAST_LINK; |
Linus Walleij | 8d318a5 | 2010-03-30 15:33:42 +0200 | [diff] [blame] | 276 | |
Per Forlin | d49278e | 2010-12-20 18:31:38 +0100 | [diff] [blame] | 277 | l_phys = ALIGN(lli_phys + (lli - lli_sg) * |
| 278 | sizeof(struct d40_phy_lli), D40_LLI_ALIGN); |
| 279 | |
Rabin Vincent | 0c842b5 | 2011-01-25 11:18:35 +0100 | [diff] [blame] | 280 | lli = d40_phy_buf_to_lli(lli, dst, len, l_phys, lli_phys, |
Rabin Vincent | 7f933be | 2011-01-25 11:18:30 +0100 | [diff] [blame] | 281 | reg_cfg, info, otherinfo, flags); |
| 282 | |
Per Forlin | d49278e | 2010-12-20 18:31:38 +0100 | [diff] [blame] | 283 | if (lli == NULL) |
| 284 | return -EINVAL; |
Linus Walleij | 8d318a5 | 2010-03-30 15:33:42 +0200 | [diff] [blame] | 285 | } |
| 286 | |
| 287 | return total_size; |
Linus Walleij | 8d318a5 | 2010-03-30 15:33:42 +0200 | [diff] [blame] | 288 | } |
| 289 | |
| 290 | |
Linus Walleij | 8d318a5 | 2010-03-30 15:33:42 +0200 | [diff] [blame] | 291 | /* DMA logical lli operations */ |
| 292 | |
Jonas Aaberg | 698e473 | 2010-08-09 12:08:56 +0000 | [diff] [blame] | 293 | static void d40_log_lli_link(struct d40_log_lli *lli_dst, |
| 294 | struct d40_log_lli *lli_src, |
Rabin Vincent | 0c842b5 | 2011-01-25 11:18:35 +0100 | [diff] [blame] | 295 | int next, unsigned int flags) |
Jonas Aaberg | 698e473 | 2010-08-09 12:08:56 +0000 | [diff] [blame] | 296 | { |
Rabin Vincent | 0c842b5 | 2011-01-25 11:18:35 +0100 | [diff] [blame] | 297 | bool interrupt = flags & LLI_TERM_INT; |
Jonas Aaberg | 698e473 | 2010-08-09 12:08:56 +0000 | [diff] [blame] | 298 | u32 slos = 0; |
| 299 | u32 dlos = 0; |
| 300 | |
| 301 | if (next != -EINVAL) { |
| 302 | slos = next * 2; |
| 303 | dlos = next * 2 + 1; |
Rabin Vincent | 0c842b5 | 2011-01-25 11:18:35 +0100 | [diff] [blame] | 304 | } |
| 305 | |
| 306 | if (interrupt) { |
Jonas Aaberg | 698e473 | 2010-08-09 12:08:56 +0000 | [diff] [blame] | 307 | lli_dst->lcsp13 |= D40_MEM_LCSP1_SCFG_TIM_MASK; |
| 308 | lli_dst->lcsp13 |= D40_MEM_LCSP3_DTCP_MASK; |
| 309 | } |
| 310 | |
| 311 | lli_src->lcsp13 = (lli_src->lcsp13 & ~D40_MEM_LCSP1_SLOS_MASK) | |
| 312 | (slos << D40_MEM_LCSP1_SLOS_POS); |
| 313 | |
| 314 | lli_dst->lcsp13 = (lli_dst->lcsp13 & ~D40_MEM_LCSP1_SLOS_MASK) | |
| 315 | (dlos << D40_MEM_LCSP1_SLOS_POS); |
| 316 | } |
| 317 | |
| 318 | void d40_log_lli_lcpa_write(struct d40_log_lli_full *lcpa, |
| 319 | struct d40_log_lli *lli_dst, |
| 320 | struct d40_log_lli *lli_src, |
Rabin Vincent | 0c842b5 | 2011-01-25 11:18:35 +0100 | [diff] [blame] | 321 | int next, unsigned int flags) |
Jonas Aaberg | 698e473 | 2010-08-09 12:08:56 +0000 | [diff] [blame] | 322 | { |
Rabin Vincent | 0c842b5 | 2011-01-25 11:18:35 +0100 | [diff] [blame] | 323 | d40_log_lli_link(lli_dst, lli_src, next, flags); |
Jonas Aaberg | 698e473 | 2010-08-09 12:08:56 +0000 | [diff] [blame] | 324 | |
Per Forlin | 8a5d203 | 2011-09-28 09:32:20 +0200 | [diff] [blame] | 325 | writel_relaxed(lli_src->lcsp02, &lcpa[0].lcsp0); |
| 326 | writel_relaxed(lli_src->lcsp13, &lcpa[0].lcsp1); |
| 327 | writel_relaxed(lli_dst->lcsp02, &lcpa[0].lcsp2); |
| 328 | writel_relaxed(lli_dst->lcsp13, &lcpa[0].lcsp3); |
Jonas Aaberg | 698e473 | 2010-08-09 12:08:56 +0000 | [diff] [blame] | 329 | } |
| 330 | |
| 331 | void d40_log_lli_lcla_write(struct d40_log_lli *lcla, |
| 332 | struct d40_log_lli *lli_dst, |
| 333 | struct d40_log_lli *lli_src, |
Rabin Vincent | 0c842b5 | 2011-01-25 11:18:35 +0100 | [diff] [blame] | 334 | int next, unsigned int flags) |
Jonas Aaberg | 698e473 | 2010-08-09 12:08:56 +0000 | [diff] [blame] | 335 | { |
Rabin Vincent | 0c842b5 | 2011-01-25 11:18:35 +0100 | [diff] [blame] | 336 | d40_log_lli_link(lli_dst, lli_src, next, flags); |
Jonas Aaberg | 698e473 | 2010-08-09 12:08:56 +0000 | [diff] [blame] | 337 | |
Per Forlin | 8a5d203 | 2011-09-28 09:32:20 +0200 | [diff] [blame] | 338 | writel_relaxed(lli_src->lcsp02, &lcla[0].lcsp02); |
| 339 | writel_relaxed(lli_src->lcsp13, &lcla[0].lcsp13); |
| 340 | writel_relaxed(lli_dst->lcsp02, &lcla[1].lcsp02); |
| 341 | writel_relaxed(lli_dst->lcsp13, &lcla[1].lcsp13); |
Jonas Aaberg | 698e473 | 2010-08-09 12:08:56 +0000 | [diff] [blame] | 342 | } |
| 343 | |
Per Forlin | d49278e | 2010-12-20 18:31:38 +0100 | [diff] [blame] | 344 | static void d40_log_fill_lli(struct d40_log_lli *lli, |
| 345 | dma_addr_t data, u32 data_size, |
| 346 | u32 reg_cfg, |
| 347 | u32 data_width, |
Rabin Vincent | 7f933be | 2011-01-25 11:18:30 +0100 | [diff] [blame] | 348 | unsigned int flags) |
Linus Walleij | 8d318a5 | 2010-03-30 15:33:42 +0200 | [diff] [blame] | 349 | { |
Rabin Vincent | 7f933be | 2011-01-25 11:18:30 +0100 | [diff] [blame] | 350 | bool addr_inc = flags & LLI_ADDR_INC; |
| 351 | |
Linus Walleij | 8d318a5 | 2010-03-30 15:33:42 +0200 | [diff] [blame] | 352 | lli->lcsp13 = reg_cfg; |
| 353 | |
| 354 | /* The number of elements to transfer */ |
| 355 | lli->lcsp02 = ((data_size >> data_width) << |
| 356 | D40_MEM_LCSP0_ECNT_POS) & D40_MEM_LCSP0_ECNT_MASK; |
Per Forlin | d49278e | 2010-12-20 18:31:38 +0100 | [diff] [blame] | 357 | |
| 358 | BUG_ON((data_size >> data_width) > STEDMA40_MAX_SEG_SIZE); |
| 359 | |
Linus Walleij | 8d318a5 | 2010-03-30 15:33:42 +0200 | [diff] [blame] | 360 | /* 16 LSBs address of the current element */ |
| 361 | lli->lcsp02 |= data & D40_MEM_LCSP0_SPTR_MASK; |
| 362 | /* 16 MSBs address of the current element */ |
| 363 | lli->lcsp13 |= data & D40_MEM_LCSP1_SPTR_MASK; |
| 364 | |
| 365 | if (addr_inc) |
| 366 | lli->lcsp13 |= D40_MEM_LCSP1_SCFG_INCR_MASK; |
| 367 | |
Linus Walleij | 8d318a5 | 2010-03-30 15:33:42 +0200 | [diff] [blame] | 368 | } |
| 369 | |
Rabin Vincent | 1f7622c | 2011-01-25 11:18:29 +0100 | [diff] [blame] | 370 | static struct d40_log_lli *d40_log_buf_to_lli(struct d40_log_lli *lli_sg, |
Per Forlin | d49278e | 2010-12-20 18:31:38 +0100 | [diff] [blame] | 371 | dma_addr_t addr, |
| 372 | int size, |
| 373 | u32 lcsp13, /* src or dst*/ |
| 374 | u32 data_width1, |
| 375 | u32 data_width2, |
Rabin Vincent | 7f933be | 2011-01-25 11:18:30 +0100 | [diff] [blame] | 376 | unsigned int flags) |
Per Forlin | d49278e | 2010-12-20 18:31:38 +0100 | [diff] [blame] | 377 | { |
Rabin Vincent | 7f933be | 2011-01-25 11:18:30 +0100 | [diff] [blame] | 378 | bool addr_inc = flags & LLI_ADDR_INC; |
Per Forlin | d49278e | 2010-12-20 18:31:38 +0100 | [diff] [blame] | 379 | struct d40_log_lli *lli = lli_sg; |
| 380 | int size_rest = size; |
| 381 | int size_seg = 0; |
| 382 | |
| 383 | do { |
| 384 | size_seg = d40_seg_size(size_rest, data_width1, data_width2); |
| 385 | size_rest -= size_seg; |
| 386 | |
| 387 | d40_log_fill_lli(lli, |
| 388 | addr, |
| 389 | size_seg, |
| 390 | lcsp13, data_width1, |
Rabin Vincent | 7f933be | 2011-01-25 11:18:30 +0100 | [diff] [blame] | 391 | flags); |
Per Forlin | d49278e | 2010-12-20 18:31:38 +0100 | [diff] [blame] | 392 | if (addr_inc) |
| 393 | addr += size_seg; |
| 394 | lli++; |
| 395 | } while (size_rest); |
| 396 | |
| 397 | return lli; |
| 398 | } |
| 399 | |
Jonas Aaberg | 698e473 | 2010-08-09 12:08:56 +0000 | [diff] [blame] | 400 | int d40_log_sg_to_lli(struct scatterlist *sg, |
Linus Walleij | 8d318a5 | 2010-03-30 15:33:42 +0200 | [diff] [blame] | 401 | int sg_len, |
Rabin Vincent | 5ed04b8 | 2011-01-25 11:18:26 +0100 | [diff] [blame] | 402 | dma_addr_t dev_addr, |
Linus Walleij | 8d318a5 | 2010-03-30 15:33:42 +0200 | [diff] [blame] | 403 | struct d40_log_lli *lli_sg, |
| 404 | u32 lcsp13, /* src or dst*/ |
Per Forlin | d49278e | 2010-12-20 18:31:38 +0100 | [diff] [blame] | 405 | u32 data_width1, u32 data_width2) |
Linus Walleij | 8d318a5 | 2010-03-30 15:33:42 +0200 | [diff] [blame] | 406 | { |
| 407 | int total_size = 0; |
| 408 | struct scatterlist *current_sg = sg; |
| 409 | int i; |
Per Forlin | d49278e | 2010-12-20 18:31:38 +0100 | [diff] [blame] | 410 | struct d40_log_lli *lli = lli_sg; |
Rabin Vincent | 7f933be | 2011-01-25 11:18:30 +0100 | [diff] [blame] | 411 | unsigned long flags = 0; |
| 412 | |
| 413 | if (!dev_addr) |
| 414 | flags |= LLI_ADDR_INC; |
Linus Walleij | 8d318a5 | 2010-03-30 15:33:42 +0200 | [diff] [blame] | 415 | |
| 416 | for_each_sg(sg, current_sg, sg_len, i) { |
Rabin Vincent | 5ed04b8 | 2011-01-25 11:18:26 +0100 | [diff] [blame] | 417 | dma_addr_t sg_addr = sg_dma_address(current_sg); |
| 418 | unsigned int len = sg_dma_len(current_sg); |
| 419 | dma_addr_t addr = dev_addr ?: sg_addr; |
| 420 | |
Linus Walleij | 8d318a5 | 2010-03-30 15:33:42 +0200 | [diff] [blame] | 421 | total_size += sg_dma_len(current_sg); |
Rabin Vincent | 5ed04b8 | 2011-01-25 11:18:26 +0100 | [diff] [blame] | 422 | |
| 423 | lli = d40_log_buf_to_lli(lli, addr, len, |
Per Forlin | d49278e | 2010-12-20 18:31:38 +0100 | [diff] [blame] | 424 | lcsp13, |
Rabin Vincent | 5ed04b8 | 2011-01-25 11:18:26 +0100 | [diff] [blame] | 425 | data_width1, |
| 426 | data_width2, |
Rabin Vincent | 7f933be | 2011-01-25 11:18:30 +0100 | [diff] [blame] | 427 | flags); |
Linus Walleij | 8d318a5 | 2010-03-30 15:33:42 +0200 | [diff] [blame] | 428 | } |
Rabin Vincent | 5ed04b8 | 2011-01-25 11:18:26 +0100 | [diff] [blame] | 429 | |
Linus Walleij | 8d318a5 | 2010-03-30 15:33:42 +0200 | [diff] [blame] | 430 | return total_size; |
| 431 | } |