blob: 867f23f6e0986c316983906a06ec9aaea3e9ea7b [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
3 * Author: Per Friden <per.friden@stericsson.com> for ST-Ericsson SA
4 * Author: Jonas Aaberg <jonas.aberg@stericsson.com> for ST-Ericsson SA
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#ifndef STE_DMA40_LL_H
8#define STE_DMA40_LL_H
9
10#define D40_DREG_PCBASE 0x400
11#define D40_DREG_PCDELTA (8 * 4)
12#define D40_LLI_ALIGN 16 /* LLI alignment must be 16 bytes. */
13
Linus Walleijef1872e2010-06-20 21:24:52 +000014#define D40_LCPA_CHAN_SIZE 32
15#define D40_LCPA_CHAN_DST_DELTA 16
16
Linus Walleij8d318a52010-03-30 15:33:42 +020017#define D40_TYPE_TO_GROUP(type) (type / 16)
18#define D40_TYPE_TO_EVENT(type) (type % 16)
19
20/* Most bits of the CFG register are the same in log as in phy mode */
21#define D40_SREG_CFG_MST_POS 15
22#define D40_SREG_CFG_TIM_POS 14
23#define D40_SREG_CFG_EIM_POS 13
24#define D40_SREG_CFG_LOG_INCR_POS 12
25#define D40_SREG_CFG_PHY_PEN_POS 12
26#define D40_SREG_CFG_PSIZE_POS 10
27#define D40_SREG_CFG_ESIZE_POS 8
28#define D40_SREG_CFG_PRI_POS 7
29#define D40_SREG_CFG_LBE_POS 6
30#define D40_SREG_CFG_LOG_GIM_POS 5
31#define D40_SREG_CFG_LOG_MFU_POS 4
32#define D40_SREG_CFG_PHY_TM_POS 4
33#define D40_SREG_CFG_PHY_EVTL_POS 0
34
35
36/* Standard channel parameters - basic mode (element register) */
37#define D40_SREG_ELEM_PHY_ECNT_POS 16
38#define D40_SREG_ELEM_PHY_EIDX_POS 0
39
40#define D40_SREG_ELEM_PHY_ECNT_MASK (0xFFFF << D40_SREG_ELEM_PHY_ECNT_POS)
41
42/* Standard channel parameters - basic mode (Link register) */
43#define D40_SREG_LNK_PHY_TCP_POS 0
44#define D40_SREG_LNK_PHY_LMP_POS 1
45#define D40_SREG_LNK_PHY_PRE_POS 2
46/*
47 * Source destination link address. Contains the
48 * 29-bit byte word aligned address of the reload area.
49 */
50#define D40_SREG_LNK_PHYS_LNK_MASK 0xFFFFFFF8UL
51
52/* Standard basic channel logical mode */
53
54/* Element register */
55#define D40_SREG_ELEM_LOG_ECNT_POS 16
56#define D40_SREG_ELEM_LOG_LIDX_POS 8
57#define D40_SREG_ELEM_LOG_LOS_POS 1
58#define D40_SREG_ELEM_LOG_TCP_POS 0
59
60#define D40_SREG_ELEM_LOG_LIDX_MASK (0xFF << D40_SREG_ELEM_LOG_LIDX_POS)
61
62/* Link register */
63#define D40_DEACTIVATE_EVENTLINE 0x0
64#define D40_ACTIVATE_EVENTLINE 0x1
65#define D40_EVENTLINE_POS(i) (2 * i)
66#define D40_EVENTLINE_MASK(i) (0x3 << D40_EVENTLINE_POS(i))
67
68/* Standard basic channel logical params in memory */
69
70/* LCSP0 */
71#define D40_MEM_LCSP0_ECNT_POS 16
72#define D40_MEM_LCSP0_SPTR_POS 0
73
74#define D40_MEM_LCSP0_ECNT_MASK (0xFFFF << D40_MEM_LCSP0_ECNT_POS)
75#define D40_MEM_LCSP0_SPTR_MASK (0xFFFF << D40_MEM_LCSP0_SPTR_POS)
76
77/* LCSP1 */
78#define D40_MEM_LCSP1_SPTR_POS 16
79#define D40_MEM_LCSP1_SCFG_MST_POS 15
80#define D40_MEM_LCSP1_SCFG_TIM_POS 14
81#define D40_MEM_LCSP1_SCFG_EIM_POS 13
82#define D40_MEM_LCSP1_SCFG_INCR_POS 12
83#define D40_MEM_LCSP1_SCFG_PSIZE_POS 10
84#define D40_MEM_LCSP1_SCFG_ESIZE_POS 8
85#define D40_MEM_LCSP1_SLOS_POS 1
86#define D40_MEM_LCSP1_STCP_POS 0
87
88#define D40_MEM_LCSP1_SPTR_MASK (0xFFFF << D40_MEM_LCSP1_SPTR_POS)
89#define D40_MEM_LCSP1_SCFG_TIM_MASK (0x1 << D40_MEM_LCSP1_SCFG_TIM_POS)
90#define D40_MEM_LCSP1_SCFG_INCR_MASK (0x1 << D40_MEM_LCSP1_SCFG_INCR_POS)
91#define D40_MEM_LCSP1_SCFG_PSIZE_MASK (0x3 << D40_MEM_LCSP1_SCFG_PSIZE_POS)
92#define D40_MEM_LCSP1_SLOS_MASK (0x7F << D40_MEM_LCSP1_SLOS_POS)
93#define D40_MEM_LCSP1_STCP_MASK (0x1 << D40_MEM_LCSP1_STCP_POS)
94
95/* LCSP2 */
96#define D40_MEM_LCSP2_ECNT_POS 16
97
98#define D40_MEM_LCSP2_ECNT_MASK (0xFFFF << D40_MEM_LCSP2_ECNT_POS)
99
100/* LCSP3 */
101#define D40_MEM_LCSP3_DCFG_MST_POS 15
102#define D40_MEM_LCSP3_DCFG_TIM_POS 14
103#define D40_MEM_LCSP3_DCFG_EIM_POS 13
104#define D40_MEM_LCSP3_DCFG_INCR_POS 12
105#define D40_MEM_LCSP3_DCFG_PSIZE_POS 10
106#define D40_MEM_LCSP3_DCFG_ESIZE_POS 8
107#define D40_MEM_LCSP3_DLOS_POS 1
108#define D40_MEM_LCSP3_DTCP_POS 0
109
110#define D40_MEM_LCSP3_DLOS_MASK (0x7F << D40_MEM_LCSP3_DLOS_POS)
111#define D40_MEM_LCSP3_DTCP_MASK (0x1 << D40_MEM_LCSP3_DTCP_POS)
112
113
114/* Standard channel parameter register offsets */
115#define D40_CHAN_REG_SSCFG 0x00
116#define D40_CHAN_REG_SSELT 0x04
117#define D40_CHAN_REG_SSPTR 0x08
118#define D40_CHAN_REG_SSLNK 0x0C
119#define D40_CHAN_REG_SDCFG 0x10
120#define D40_CHAN_REG_SDELT 0x14
121#define D40_CHAN_REG_SDPTR 0x18
122#define D40_CHAN_REG_SDLNK 0x1C
123
124/* DMA Register Offsets */
125#define D40_DREG_GCC 0x000
126#define D40_DREG_PRTYP 0x004
127#define D40_DREG_PRSME 0x008
128#define D40_DREG_PRSMO 0x00C
129#define D40_DREG_PRMSE 0x010
130#define D40_DREG_PRMSO 0x014
131#define D40_DREG_PRMOE 0x018
132#define D40_DREG_PRMOO 0x01C
Rabin Vincent20a5b6d2010-10-12 13:00:52 +0000133#define D40_DREG_PRMO_PCHAN_BASIC 0x1
134#define D40_DREG_PRMO_PCHAN_MODULO 0x2
135#define D40_DREG_PRMO_PCHAN_DOUBLE_DST 0x3
136#define D40_DREG_PRMO_LCHAN_SRC_PHY_DST_LOG 0x1
137#define D40_DREG_PRMO_LCHAN_SRC_LOG_DST_PHY 0x2
138#define D40_DREG_PRMO_LCHAN_SRC_LOG_DST_LOG 0x3
139
Linus Walleij8d318a52010-03-30 15:33:42 +0200140#define D40_DREG_LCPA 0x020
141#define D40_DREG_LCLA 0x024
142#define D40_DREG_ACTIVE 0x050
143#define D40_DREG_ACTIVO 0x054
144#define D40_DREG_FSEB1 0x058
145#define D40_DREG_FSEB2 0x05C
146#define D40_DREG_PCMIS 0x060
147#define D40_DREG_PCICR 0x064
148#define D40_DREG_PCTIS 0x068
149#define D40_DREG_PCEIS 0x06C
150#define D40_DREG_LCMIS0 0x080
151#define D40_DREG_LCMIS1 0x084
152#define D40_DREG_LCMIS2 0x088
153#define D40_DREG_LCMIS3 0x08C
154#define D40_DREG_LCICR0 0x090
155#define D40_DREG_LCICR1 0x094
156#define D40_DREG_LCICR2 0x098
157#define D40_DREG_LCICR3 0x09C
158#define D40_DREG_LCTIS0 0x0A0
159#define D40_DREG_LCTIS1 0x0A4
160#define D40_DREG_LCTIS2 0x0A8
161#define D40_DREG_LCTIS3 0x0AC
162#define D40_DREG_LCEIS0 0x0B0
163#define D40_DREG_LCEIS1 0x0B4
164#define D40_DREG_LCEIS2 0x0B8
165#define D40_DREG_LCEIS3 0x0BC
Rabin Vincentac2c0a32011-01-25 11:18:11 +0100166#define D40_DREG_PSEG1 0x110
167#define D40_DREG_PSEG2 0x114
168#define D40_DREG_PSEG3 0x118
169#define D40_DREG_PSEG4 0x11C
170#define D40_DREG_PCEG1 0x120
171#define D40_DREG_PCEG2 0x124
172#define D40_DREG_PCEG3 0x128
173#define D40_DREG_PCEG4 0x12C
174#define D40_DREG_RSEG1 0x130
175#define D40_DREG_RSEG2 0x134
176#define D40_DREG_RSEG3 0x138
177#define D40_DREG_RSEG4 0x13C
178#define D40_DREG_RCEG1 0x140
179#define D40_DREG_RCEG2 0x144
180#define D40_DREG_RCEG3 0x148
181#define D40_DREG_RCEG4 0x14C
Linus Walleij8d318a52010-03-30 15:33:42 +0200182#define D40_DREG_STFU 0xFC8
183#define D40_DREG_ICFG 0xFCC
184#define D40_DREG_PERIPHID0 0xFE0
185#define D40_DREG_PERIPHID1 0xFE4
186#define D40_DREG_PERIPHID2 0xFE8
Jonas Aaberg3ae02672010-08-09 12:08:18 +0000187#define D40_DREG_PERIPHID2_REV_POS 4
188#define D40_DREG_PERIPHID2_REV_MASK (0xf << D40_DREG_PERIPHID2_REV_POS)
189#define D40_DREG_PERIPHID2_DESIGNER_MASK 0xf
Linus Walleij8d318a52010-03-30 15:33:42 +0200190#define D40_DREG_PERIPHID3 0xFEC
191#define D40_DREG_CELLID0 0xFF0
192#define D40_DREG_CELLID1 0xFF4
193#define D40_DREG_CELLID2 0xFF8
194#define D40_DREG_CELLID3 0xFFC
195
196/* LLI related structures */
197
198/**
199 * struct d40_phy_lli - The basic configration register for each physical
200 * channel.
201 *
202 * @reg_cfg: The configuration register.
203 * @reg_elt: The element register.
204 * @reg_ptr: The pointer register.
205 * @reg_lnk: The link register.
206 *
207 * These registers are set up for both physical and logical transfers
208 * Note that the bit in each register means differently in logical and
209 * physical(standard) mode.
210 *
211 * This struct must be 16 bytes aligned, and only contain physical registers
212 * since it will be directly accessed by the DMA.
213 */
214struct d40_phy_lli {
215 u32 reg_cfg;
216 u32 reg_elt;
217 u32 reg_ptr;
218 u32 reg_lnk;
219};
220
221/**
222 * struct d40_phy_lli_bidir - struct for a transfer.
223 *
224 * @src: Register settings for src channel.
225 * @dst: Register settings for dst channel.
Linus Walleij8d318a52010-03-30 15:33:42 +0200226 *
227 * All DMA transfers have a source and a destination.
228 */
229
230struct d40_phy_lli_bidir {
231 struct d40_phy_lli *src;
232 struct d40_phy_lli *dst;
Linus Walleij8d318a52010-03-30 15:33:42 +0200233};
234
235
236/**
237 * struct d40_log_lli - logical lli configuration
238 *
239 * @lcsp02: Either maps to register lcsp0 if src or lcsp2 if dst.
240 * @lcsp13: Either maps to register lcsp1 if src or lcsp3 if dst.
241 *
242 * This struct must be 8 bytes aligned since it will be accessed directy by
243 * the DMA. Never add any none hw mapped registers to this struct.
244 */
245
246struct d40_log_lli {
247 u32 lcsp02;
248 u32 lcsp13;
249};
250
251/**
252 * struct d40_log_lli_bidir - For both src and dst
253 *
254 * @src: pointer to src lli configuration.
255 * @dst: pointer to dst lli configuration.
256 *
257 * You always have a src and a dst when doing DMA transfers.
258 */
259
260struct d40_log_lli_bidir {
261 struct d40_log_lli *src;
262 struct d40_log_lli *dst;
263};
264
265/**
266 * struct d40_log_lli_full - LCPA layout
267 *
268 * @lcsp0: Logical Channel Standard Param 0 - Src.
269 * @lcsp1: Logical Channel Standard Param 1 - Src.
270 * @lcsp2: Logical Channel Standard Param 2 - Dst.
271 * @lcsp3: Logical Channel Standard Param 3 - Dst.
272 *
273 * This struct maps to LCPA physical memory layout. Must map to
274 * the hw.
275 */
276struct d40_log_lli_full {
277 u32 lcsp0;
278 u32 lcsp1;
279 u32 lcsp2;
280 u32 lcsp3;
281};
282
283/**
284 * struct d40_def_lcsp - Default LCSP1 and LCSP3 settings
285 *
286 * @lcsp3: The default configuration for dst.
287 * @lcsp1: The default configuration for src.
288 */
289struct d40_def_lcsp {
290 u32 lcsp3;
291 u32 lcsp1;
292};
293
Linus Walleij8d318a52010-03-30 15:33:42 +0200294/* Physical channels */
295
296void d40_phy_cfg(struct stedma40_chan_cfg *cfg,
Jonas Aaberg767a9672010-08-09 12:08:34 +0000297 u32 *src_cfg,
298 u32 *dst_cfg,
299 bool is_log);
Linus Walleij8d318a52010-03-30 15:33:42 +0200300
301void d40_log_cfg(struct stedma40_chan_cfg *cfg,
Jonas Aaberg767a9672010-08-09 12:08:34 +0000302 u32 *lcsp1,
303 u32 *lcsp2);
Linus Walleij8d318a52010-03-30 15:33:42 +0200304
305int d40_phy_sg_to_lli(struct scatterlist *sg,
306 int sg_len,
307 dma_addr_t target,
308 struct d40_phy_lli *lli,
309 dma_addr_t lli_phys,
310 u32 reg_cfg,
Per Forlind49278e2010-12-20 18:31:38 +0100311 u32 data_width1,
312 u32 data_width2,
Jonas Aaberg0246e772010-08-09 12:08:10 +0000313 int psize);
Linus Walleij8d318a52010-03-30 15:33:42 +0200314
Linus Walleij8d318a52010-03-30 15:33:42 +0200315/* Logical channels */
316
Per Forlind49278e2010-12-20 18:31:38 +0100317struct d40_log_lli *d40_log_buf_to_lli(struct d40_log_lli *lli_sg,
318 dma_addr_t addr,
319 int size,
320 u32 lcsp13, /* src or dst*/
321 u32 data_width1, u32 data_width2,
322 bool addr_inc);
Linus Walleij8d318a52010-03-30 15:33:42 +0200323
Jonas Aaberg698e4732010-08-09 12:08:56 +0000324int d40_log_sg_to_lli(struct scatterlist *sg,
Linus Walleij8d318a52010-03-30 15:33:42 +0200325 int sg_len,
Rabin Vincent5ed04b82011-01-25 11:18:26 +0100326 dma_addr_t dev_addr,
Linus Walleij8d318a52010-03-30 15:33:42 +0200327 struct d40_log_lli *lli_sg,
328 u32 lcsp13, /* src or dst*/
Per Forlind49278e2010-12-20 18:31:38 +0100329 u32 data_width1, u32 data_width2);
Jonas Aaberg698e4732010-08-09 12:08:56 +0000330
331void d40_log_lli_lcpa_write(struct d40_log_lli_full *lcpa,
332 struct d40_log_lli *lli_dst,
333 struct d40_log_lli *lli_src,
334 int next);
335
336void d40_log_lli_lcla_write(struct d40_log_lli *lcla,
337 struct d40_log_lli *lli_dst,
338 struct d40_log_lli *lli_src,
339 int next);
Linus Walleij8d318a52010-03-30 15:33:42 +0200340
341#endif /* STE_DMA40_LLI_H */