Merge branch 'asoc-4.19' into asoc-4.20 Cirrus conflict
[linux-block.git] / sound / soc / sh / rcar / dma.c
1 // SPDX-License-Identifier: GPL-2.0
2 //
3 // Renesas R-Car Audio DMAC support
4 //
5 // Copyright (C) 2015 Renesas Electronics Corp.
6 // Copyright (c) 2015 Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>
7
8 #include <linux/delay.h>
9 #include <linux/of_dma.h>
10 #include "rsnd.h"
11
12 /*
13  * Audio DMAC peri peri register
14  */
15 #define PDMASAR         0x00
16 #define PDMADAR         0x04
17 #define PDMACHCR        0x0c
18
19 /* PDMACHCR */
20 #define PDMACHCR_DE             (1 << 0)
21
22
23 struct rsnd_dmaen {
24         struct dma_chan         *chan;
25         dma_cookie_t            cookie;
26         unsigned int            dma_len;
27 };
28
29 struct rsnd_dmapp {
30         int                     dmapp_id;
31         u32                     chcr;
32 };
33
34 struct rsnd_dma {
35         struct rsnd_mod         mod;
36         struct rsnd_mod         *mod_from;
37         struct rsnd_mod         *mod_to;
38         dma_addr_t              src_addr;
39         dma_addr_t              dst_addr;
40         union {
41                 struct rsnd_dmaen en;
42                 struct rsnd_dmapp pp;
43         } dma;
44 };
45
46 struct rsnd_dma_ctrl {
47         void __iomem *base;
48         int dmaen_num;
49         int dmapp_num;
50 };
51
52 #define rsnd_priv_to_dmac(p)    ((struct rsnd_dma_ctrl *)(p)->dma)
53 #define rsnd_mod_to_dma(_mod) container_of((_mod), struct rsnd_dma, mod)
54 #define rsnd_dma_to_dmaen(dma)  (&(dma)->dma.en)
55 #define rsnd_dma_to_dmapp(dma)  (&(dma)->dma.pp)
56
57 /* for DEBUG */
58 static struct rsnd_mod_ops mem_ops = {
59         .name = "mem",
60 };
61
62 static struct rsnd_mod mem = {
63 };
64
65 /*
66  *              Audio DMAC
67  */
68 static void __rsnd_dmaen_complete(struct rsnd_mod *mod,
69                                   struct rsnd_dai_stream *io)
70 {
71         if (rsnd_io_is_working(io))
72                 rsnd_dai_period_elapsed(io);
73 }
74
75 static void rsnd_dmaen_complete(void *data)
76 {
77         struct rsnd_mod *mod = data;
78
79         rsnd_mod_interrupt(mod, __rsnd_dmaen_complete);
80 }
81
82 static struct dma_chan *rsnd_dmaen_request_channel(struct rsnd_dai_stream *io,
83                                                    struct rsnd_mod *mod_from,
84                                                    struct rsnd_mod *mod_to)
85 {
86         if ((!mod_from && !mod_to) ||
87             (mod_from && mod_to))
88                 return NULL;
89
90         if (mod_from)
91                 return rsnd_mod_dma_req(io, mod_from);
92         else
93                 return rsnd_mod_dma_req(io, mod_to);
94 }
95
96 static int rsnd_dmaen_stop(struct rsnd_mod *mod,
97                            struct rsnd_dai_stream *io,
98                            struct rsnd_priv *priv)
99 {
100         struct rsnd_dma *dma = rsnd_mod_to_dma(mod);
101         struct rsnd_dmaen *dmaen = rsnd_dma_to_dmaen(dma);
102
103         if (dmaen->chan)
104                 dmaengine_terminate_all(dmaen->chan);
105
106         return 0;
107 }
108
109 static int rsnd_dmaen_cleanup(struct rsnd_mod *mod,
110                               struct rsnd_dai_stream *io,
111                               struct rsnd_priv *priv)
112 {
113         struct rsnd_dma *dma = rsnd_mod_to_dma(mod);
114         struct rsnd_dmaen *dmaen = rsnd_dma_to_dmaen(dma);
115
116         /*
117          * DMAEngine release uses mutex lock.
118          * Thus, it shouldn't be called under spinlock.
119          * Let's call it under prepare
120          */
121         if (dmaen->chan)
122                 dma_release_channel(dmaen->chan);
123
124         dmaen->chan = NULL;
125
126         return 0;
127 }
128
129 static int rsnd_dmaen_prepare(struct rsnd_mod *mod,
130                               struct rsnd_dai_stream *io,
131                               struct rsnd_priv *priv)
132 {
133         struct rsnd_dma *dma = rsnd_mod_to_dma(mod);
134         struct rsnd_dmaen *dmaen = rsnd_dma_to_dmaen(dma);
135         struct device *dev = rsnd_priv_to_dev(priv);
136
137         if (dmaen->chan) {
138                 dev_err(dev, "it already has dma channel\n");
139                 return -EIO;
140         }
141
142         /*
143          * DMAEngine request uses mutex lock.
144          * Thus, it shouldn't be called under spinlock.
145          * Let's call it under prepare
146          */
147         dmaen->chan = rsnd_dmaen_request_channel(io,
148                                                  dma->mod_from,
149                                                  dma->mod_to);
150         if (IS_ERR_OR_NULL(dmaen->chan)) {
151                 dmaen->chan = NULL;
152                 dev_err(dev, "can't get dma channel\n");
153                 return -EIO;
154         }
155
156         return 0;
157 }
158
159 static int rsnd_dmaen_start(struct rsnd_mod *mod,
160                             struct rsnd_dai_stream *io,
161                             struct rsnd_priv *priv)
162 {
163         struct rsnd_dma *dma = rsnd_mod_to_dma(mod);
164         struct rsnd_dmaen *dmaen = rsnd_dma_to_dmaen(dma);
165         struct snd_pcm_substream *substream = io->substream;
166         struct device *dev = rsnd_priv_to_dev(priv);
167         struct dma_async_tx_descriptor *desc;
168         struct dma_slave_config cfg = {};
169         int is_play = rsnd_io_is_play(io);
170         int ret;
171
172         cfg.direction   = is_play ? DMA_MEM_TO_DEV : DMA_DEV_TO_MEM;
173         cfg.src_addr    = dma->src_addr;
174         cfg.dst_addr    = dma->dst_addr;
175         cfg.src_addr_width = DMA_SLAVE_BUSWIDTH_4_BYTES;
176         cfg.dst_addr_width = DMA_SLAVE_BUSWIDTH_4_BYTES;
177
178         dev_dbg(dev, "%s[%d] %pad -> %pad\n",
179                 rsnd_mod_name(mod), rsnd_mod_id(mod),
180                 &cfg.src_addr, &cfg.dst_addr);
181
182         ret = dmaengine_slave_config(dmaen->chan, &cfg);
183         if (ret < 0)
184                 return ret;
185
186         desc = dmaengine_prep_dma_cyclic(dmaen->chan,
187                                          substream->runtime->dma_addr,
188                                          snd_pcm_lib_buffer_bytes(substream),
189                                          snd_pcm_lib_period_bytes(substream),
190                                          is_play ? DMA_MEM_TO_DEV : DMA_DEV_TO_MEM,
191                                          DMA_PREP_INTERRUPT | DMA_CTRL_ACK);
192
193         if (!desc) {
194                 dev_err(dev, "dmaengine_prep_slave_sg() fail\n");
195                 return -EIO;
196         }
197
198         desc->callback          = rsnd_dmaen_complete;
199         desc->callback_param    = rsnd_mod_get(dma);
200
201         dmaen->dma_len          = snd_pcm_lib_buffer_bytes(substream);
202
203         dmaen->cookie = dmaengine_submit(desc);
204         if (dmaen->cookie < 0) {
205                 dev_err(dev, "dmaengine_submit() fail\n");
206                 return -EIO;
207         }
208
209         dma_async_issue_pending(dmaen->chan);
210
211         return 0;
212 }
213
214 struct dma_chan *rsnd_dma_request_channel(struct device_node *of_node,
215                                           struct rsnd_mod *mod, char *name)
216 {
217         struct dma_chan *chan = NULL;
218         struct device_node *np;
219         int i = 0;
220
221         for_each_child_of_node(of_node, np) {
222                 if (i == rsnd_mod_id(mod) && (!chan))
223                         chan = of_dma_request_slave_channel(np, name);
224                 i++;
225         }
226
227         /* It should call of_node_put(), since, it is rsnd_xxx_of_node() */
228         of_node_put(of_node);
229
230         return chan;
231 }
232
233 static int rsnd_dmaen_attach(struct rsnd_dai_stream *io,
234                            struct rsnd_dma *dma,
235                            struct rsnd_mod *mod_from, struct rsnd_mod *mod_to)
236 {
237         struct rsnd_priv *priv = rsnd_io_to_priv(io);
238         struct rsnd_dma_ctrl *dmac = rsnd_priv_to_dmac(priv);
239         struct dma_chan *chan;
240
241         /* try to get DMAEngine channel */
242         chan = rsnd_dmaen_request_channel(io, mod_from, mod_to);
243         if (IS_ERR_OR_NULL(chan)) {
244                 /* Let's follow when -EPROBE_DEFER case */
245                 if (PTR_ERR(chan) == -EPROBE_DEFER)
246                         return PTR_ERR(chan);
247
248                 /*
249                  * DMA failed. try to PIO mode
250                  * see
251                  *      rsnd_ssi_fallback()
252                  *      rsnd_rdai_continuance_probe()
253                  */
254                 return -EAGAIN;
255         }
256
257         /*
258          * use it for IPMMU if needed
259          * see
260          *      rsnd_preallocate_pages()
261          */
262         io->dmac_dev = chan->device->dev;
263
264         dma_release_channel(chan);
265
266         dmac->dmaen_num++;
267
268         return 0;
269 }
270
271 static int rsnd_dmaen_pointer(struct rsnd_mod *mod,
272                               struct rsnd_dai_stream *io,
273                               snd_pcm_uframes_t *pointer)
274 {
275         struct snd_pcm_runtime *runtime = rsnd_io_to_runtime(io);
276         struct rsnd_dma *dma = rsnd_mod_to_dma(mod);
277         struct rsnd_dmaen *dmaen = rsnd_dma_to_dmaen(dma);
278         struct dma_tx_state state;
279         enum dma_status status;
280         unsigned int pos = 0;
281
282         status = dmaengine_tx_status(dmaen->chan, dmaen->cookie, &state);
283         if (status == DMA_IN_PROGRESS || status == DMA_PAUSED) {
284                 if (state.residue > 0 && state.residue <= dmaen->dma_len)
285                         pos = dmaen->dma_len - state.residue;
286         }
287         *pointer = bytes_to_frames(runtime, pos);
288
289         return 0;
290 }
291
292 static struct rsnd_mod_ops rsnd_dmaen_ops = {
293         .name   = "audmac",
294         .prepare = rsnd_dmaen_prepare,
295         .cleanup = rsnd_dmaen_cleanup,
296         .start  = rsnd_dmaen_start,
297         .stop   = rsnd_dmaen_stop,
298         .pointer= rsnd_dmaen_pointer,
299 };
300
301 /*
302  *              Audio DMAC peri peri
303  */
304 static const u8 gen2_id_table_ssiu[] = {
305         /* SSI00 ~ SSI07 */
306         0x00, 0x01, 0x02, 0x03, 0x39, 0x3a, 0x3b, 0x3c,
307         /* SSI10 ~ SSI17 */
308         0x04, 0x05, 0x06, 0x07, 0x3d, 0x3e, 0x3f, 0x40,
309         /* SSI20 ~ SSI27 */
310         0x08, 0x09, 0x0a, 0x0b, 0x41, 0x42, 0x43, 0x44,
311         /* SSI30 ~ SSI37 */
312         0x0c, 0x45, 0x46, 0x47, 0x48, 0x49, 0x4a, 0x4b,
313         /* SSI40 ~ SSI47 */
314         0x0d, 0x4c, 0x4d, 0x4e, 0x4f, 0x50, 0x51, 0x52,
315         /* SSI5 */
316         0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
317         /* SSI6 */
318         0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
319         /* SSI7 */
320         0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
321         /* SSI8 */
322         0x11, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
323         /* SSI90 ~ SSI97 */
324         0x12, 0x13, 0x14, 0x15, 0x53, 0x54, 0x55, 0x56,
325 };
326 static const u8 gen2_id_table_scu[] = {
327         0x2d, /* SCU_SRCI0 */
328         0x2e, /* SCU_SRCI1 */
329         0x2f, /* SCU_SRCI2 */
330         0x30, /* SCU_SRCI3 */
331         0x31, /* SCU_SRCI4 */
332         0x32, /* SCU_SRCI5 */
333         0x33, /* SCU_SRCI6 */
334         0x34, /* SCU_SRCI7 */
335         0x35, /* SCU_SRCI8 */
336         0x36, /* SCU_SRCI9 */
337 };
338 static const u8 gen2_id_table_cmd[] = {
339         0x37, /* SCU_CMD0 */
340         0x38, /* SCU_CMD1 */
341 };
342
343 static u32 rsnd_dmapp_get_id(struct rsnd_dai_stream *io,
344                              struct rsnd_mod *mod)
345 {
346         struct rsnd_mod *ssi = rsnd_io_to_mod_ssi(io);
347         struct rsnd_mod *src = rsnd_io_to_mod_src(io);
348         struct rsnd_mod *dvc = rsnd_io_to_mod_dvc(io);
349         const u8 *entry = NULL;
350         int id = 255;
351         int size = 0;
352
353         if (mod == ssi) {
354                 int busif = rsnd_ssi_get_busif(io);
355
356                 entry = gen2_id_table_ssiu;
357                 size = ARRAY_SIZE(gen2_id_table_ssiu);
358                 id = (rsnd_mod_id(mod) * 8) + busif;
359         } else if (mod == src) {
360                 entry = gen2_id_table_scu;
361                 size = ARRAY_SIZE(gen2_id_table_scu);
362                 id = rsnd_mod_id(mod);
363         } else if (mod == dvc) {
364                 entry = gen2_id_table_cmd;
365                 size = ARRAY_SIZE(gen2_id_table_cmd);
366                 id = rsnd_mod_id(mod);
367         }
368
369         if ((!entry) || (size <= id)) {
370                 struct device *dev = rsnd_priv_to_dev(rsnd_io_to_priv(io));
371
372                 dev_err(dev, "unknown connection (%s[%d])\n",
373                         rsnd_mod_name(mod), rsnd_mod_id(mod));
374
375                 /* use non-prohibited SRS number as error */
376                 return 0x00; /* SSI00 */
377         }
378
379         return entry[id];
380 }
381
382 static u32 rsnd_dmapp_get_chcr(struct rsnd_dai_stream *io,
383                                struct rsnd_mod *mod_from,
384                                struct rsnd_mod *mod_to)
385 {
386         return  (rsnd_dmapp_get_id(io, mod_from) << 24) +
387                 (rsnd_dmapp_get_id(io, mod_to) << 16);
388 }
389
390 #define rsnd_dmapp_addr(dmac, dma, reg) \
391         (dmac->base + 0x20 + reg + \
392          (0x10 * rsnd_dma_to_dmapp(dma)->dmapp_id))
393 static void rsnd_dmapp_write(struct rsnd_dma *dma, u32 data, u32 reg)
394 {
395         struct rsnd_mod *mod = rsnd_mod_get(dma);
396         struct rsnd_priv *priv = rsnd_mod_to_priv(mod);
397         struct rsnd_dma_ctrl *dmac = rsnd_priv_to_dmac(priv);
398         struct device *dev = rsnd_priv_to_dev(priv);
399
400         dev_dbg(dev, "w 0x%px : %08x\n", rsnd_dmapp_addr(dmac, dma, reg), data);
401
402         iowrite32(data, rsnd_dmapp_addr(dmac, dma, reg));
403 }
404
405 static u32 rsnd_dmapp_read(struct rsnd_dma *dma, u32 reg)
406 {
407         struct rsnd_mod *mod = rsnd_mod_get(dma);
408         struct rsnd_priv *priv = rsnd_mod_to_priv(mod);
409         struct rsnd_dma_ctrl *dmac = rsnd_priv_to_dmac(priv);
410
411         return ioread32(rsnd_dmapp_addr(dmac, dma, reg));
412 }
413
414 static void rsnd_dmapp_bset(struct rsnd_dma *dma, u32 data, u32 mask, u32 reg)
415 {
416         struct rsnd_mod *mod = rsnd_mod_get(dma);
417         struct rsnd_priv *priv = rsnd_mod_to_priv(mod);
418         struct rsnd_dma_ctrl *dmac = rsnd_priv_to_dmac(priv);
419         void __iomem *addr = rsnd_dmapp_addr(dmac, dma, reg);
420         u32 val = ioread32(addr);
421
422         val &= ~mask;
423         val |= (data & mask);
424
425         iowrite32(val, addr);
426 }
427
428 static int rsnd_dmapp_stop(struct rsnd_mod *mod,
429                            struct rsnd_dai_stream *io,
430                            struct rsnd_priv *priv)
431 {
432         struct rsnd_dma *dma = rsnd_mod_to_dma(mod);
433         int i;
434
435         rsnd_dmapp_bset(dma, 0,  PDMACHCR_DE, PDMACHCR);
436
437         for (i = 0; i < 1024; i++) {
438                 if (0 == (rsnd_dmapp_read(dma, PDMACHCR) & PDMACHCR_DE))
439                         return 0;
440                 udelay(1);
441         }
442
443         return -EIO;
444 }
445
446 static int rsnd_dmapp_start(struct rsnd_mod *mod,
447                             struct rsnd_dai_stream *io,
448                             struct rsnd_priv *priv)
449 {
450         struct rsnd_dma *dma = rsnd_mod_to_dma(mod);
451         struct rsnd_dmapp *dmapp = rsnd_dma_to_dmapp(dma);
452
453         rsnd_dmapp_write(dma, dma->src_addr,    PDMASAR);
454         rsnd_dmapp_write(dma, dma->dst_addr,    PDMADAR);
455         rsnd_dmapp_write(dma, dmapp->chcr,      PDMACHCR);
456
457         return 0;
458 }
459
460 static int rsnd_dmapp_attach(struct rsnd_dai_stream *io,
461                              struct rsnd_dma *dma,
462                              struct rsnd_mod *mod_from, struct rsnd_mod *mod_to)
463 {
464         struct rsnd_dmapp *dmapp = rsnd_dma_to_dmapp(dma);
465         struct rsnd_priv *priv = rsnd_io_to_priv(io);
466         struct rsnd_dma_ctrl *dmac = rsnd_priv_to_dmac(priv);
467         struct device *dev = rsnd_priv_to_dev(priv);
468
469         dmapp->dmapp_id = dmac->dmapp_num;
470         dmapp->chcr = rsnd_dmapp_get_chcr(io, mod_from, mod_to) | PDMACHCR_DE;
471
472         dmac->dmapp_num++;
473
474         dev_dbg(dev, "id/src/dst/chcr = %d/%pad/%pad/%08x\n",
475                 dmapp->dmapp_id, &dma->src_addr, &dma->dst_addr, dmapp->chcr);
476
477         return 0;
478 }
479
480 static struct rsnd_mod_ops rsnd_dmapp_ops = {
481         .name   = "audmac-pp",
482         .start  = rsnd_dmapp_start,
483         .stop   = rsnd_dmapp_stop,
484         .quit   = rsnd_dmapp_stop,
485 };
486
487 /*
488  *              Common DMAC Interface
489  */
490
491 /*
492  *      DMA read/write register offset
493  *
494  *      RSND_xxx_I_N    for Audio DMAC input
495  *      RSND_xxx_O_N    for Audio DMAC output
496  *      RSND_xxx_I_P    for Audio DMAC peri peri input
497  *      RSND_xxx_O_P    for Audio DMAC peri peri output
498  *
499  *      ex) R-Car H2 case
500  *            mod        / DMAC in    / DMAC out   / DMAC PP in / DMAC pp out
501  *      SSI : 0xec541000 / 0xec241008 / 0xec24100c
502  *      SSIU: 0xec541000 / 0xec100000 / 0xec100000 / 0xec400000 / 0xec400000
503  *      SCU : 0xec500000 / 0xec000000 / 0xec004000 / 0xec300000 / 0xec304000
504  *      CMD : 0xec500000 /            / 0xec008000                0xec308000
505  */
506 #define RDMA_SSI_I_N(addr, i)   (addr ##_reg - 0x00300000 + (0x40 * i) + 0x8)
507 #define RDMA_SSI_O_N(addr, i)   (addr ##_reg - 0x00300000 + (0x40 * i) + 0xc)
508
509 #define RDMA_SSIU_I_N(addr, i, j) (addr ##_reg - 0x00441000 + (0x1000 * (i)) + (((j) / 4) * 0xA000) + (((j) % 4) * 0x400))
510 #define RDMA_SSIU_O_N(addr, i, j) RDMA_SSIU_I_N(addr, i, j)
511
512 #define RDMA_SSIU_I_P(addr, i, j) (addr ##_reg - 0x00141000 + (0x1000 * (i)) + (((j) / 4) * 0xA000) + (((j) % 4) * 0x400))
513 #define RDMA_SSIU_O_P(addr, i, j) RDMA_SSIU_I_P(addr, i, j)
514
515 #define RDMA_SRC_I_N(addr, i)   (addr ##_reg - 0x00500000 + (0x400 * i))
516 #define RDMA_SRC_O_N(addr, i)   (addr ##_reg - 0x004fc000 + (0x400 * i))
517
518 #define RDMA_SRC_I_P(addr, i)   (addr ##_reg - 0x00200000 + (0x400 * i))
519 #define RDMA_SRC_O_P(addr, i)   (addr ##_reg - 0x001fc000 + (0x400 * i))
520
521 #define RDMA_CMD_O_N(addr, i)   (addr ##_reg - 0x004f8000 + (0x400 * i))
522 #define RDMA_CMD_O_P(addr, i)   (addr ##_reg - 0x001f8000 + (0x400 * i))
523
524 static dma_addr_t
525 rsnd_gen2_dma_addr(struct rsnd_dai_stream *io,
526                    struct rsnd_mod *mod,
527                    int is_play, int is_from)
528 {
529         struct rsnd_priv *priv = rsnd_io_to_priv(io);
530         struct device *dev = rsnd_priv_to_dev(priv);
531         phys_addr_t ssi_reg = rsnd_gen_get_phy_addr(priv, RSND_GEN2_SSI);
532         phys_addr_t src_reg = rsnd_gen_get_phy_addr(priv, RSND_GEN2_SCU);
533         int is_ssi = !!(rsnd_io_to_mod_ssi(io) == mod);
534         int use_src = !!rsnd_io_to_mod_src(io);
535         int use_cmd = !!rsnd_io_to_mod_dvc(io) ||
536                       !!rsnd_io_to_mod_mix(io) ||
537                       !!rsnd_io_to_mod_ctu(io);
538         int id = rsnd_mod_id(mod);
539         int busif = rsnd_ssi_get_busif(io);
540         struct dma_addr {
541                 dma_addr_t out_addr;
542                 dma_addr_t in_addr;
543         } dma_addrs[3][2][3] = {
544                 /* SRC */
545                 /* Capture */
546                 {{{ 0,                          0 },
547                   { RDMA_SRC_O_N(src, id),      RDMA_SRC_I_P(src, id) },
548                   { RDMA_CMD_O_N(src, id),      RDMA_SRC_I_P(src, id) } },
549                  /* Playback */
550                  {{ 0,                          0, },
551                   { RDMA_SRC_O_P(src, id),      RDMA_SRC_I_N(src, id) },
552                   { RDMA_CMD_O_P(src, id),      RDMA_SRC_I_N(src, id) } }
553                 },
554                 /* SSI */
555                 /* Capture */
556                 {{{ RDMA_SSI_O_N(ssi, id),              0 },
557                   { RDMA_SSIU_O_P(ssi, id, busif),      0 },
558                   { RDMA_SSIU_O_P(ssi, id, busif),      0 } },
559                  /* Playback */
560                  {{ 0,                  RDMA_SSI_I_N(ssi, id) },
561                   { 0,                  RDMA_SSIU_I_P(ssi, id, busif) },
562                   { 0,                  RDMA_SSIU_I_P(ssi, id, busif) } }
563                 },
564                 /* SSIU */
565                 /* Capture */
566                 {{{ RDMA_SSIU_O_N(ssi, id, busif),      0 },
567                   { RDMA_SSIU_O_P(ssi, id, busif),      0 },
568                   { RDMA_SSIU_O_P(ssi, id, busif),      0 } },
569                  /* Playback */
570                  {{ 0,                  RDMA_SSIU_I_N(ssi, id, busif) },
571                   { 0,                  RDMA_SSIU_I_P(ssi, id, busif) },
572                   { 0,                  RDMA_SSIU_I_P(ssi, id, busif) } } },
573         };
574
575         /*
576          * FIXME
577          *
578          * We can't support SSI9-4/5/6/7, because its address is
579          * out of calculation rule
580          */
581         if ((id == 9) && (busif >= 4))
582                 dev_err(dev, "This driver doesn't support SSI%d-%d, so far",
583                         id, busif);
584
585         /* it shouldn't happen */
586         if (use_cmd && !use_src)
587                 dev_err(dev, "DVC is selected without SRC\n");
588
589         /* use SSIU or SSI ? */
590         if (is_ssi && rsnd_ssi_use_busif(io))
591                 is_ssi++;
592
593         return (is_from) ?
594                 dma_addrs[is_ssi][is_play][use_src + use_cmd].out_addr :
595                 dma_addrs[is_ssi][is_play][use_src + use_cmd].in_addr;
596 }
597
598 static dma_addr_t rsnd_dma_addr(struct rsnd_dai_stream *io,
599                                 struct rsnd_mod *mod,
600                                 int is_play, int is_from)
601 {
602         struct rsnd_priv *priv = rsnd_io_to_priv(io);
603
604         /*
605          * gen1 uses default DMA addr
606          */
607         if (rsnd_is_gen1(priv))
608                 return 0;
609
610         if (!mod)
611                 return 0;
612
613         return rsnd_gen2_dma_addr(io, mod, is_play, is_from);
614 }
615
616 #define MOD_MAX (RSND_MOD_MAX + 1) /* +Memory */
617 static void rsnd_dma_of_path(struct rsnd_mod *this,
618                              struct rsnd_dai_stream *io,
619                              int is_play,
620                              struct rsnd_mod **mod_from,
621                              struct rsnd_mod **mod_to)
622 {
623         struct rsnd_mod *ssi = rsnd_io_to_mod_ssi(io);
624         struct rsnd_mod *src = rsnd_io_to_mod_src(io);
625         struct rsnd_mod *ctu = rsnd_io_to_mod_ctu(io);
626         struct rsnd_mod *mix = rsnd_io_to_mod_mix(io);
627         struct rsnd_mod *dvc = rsnd_io_to_mod_dvc(io);
628         struct rsnd_mod *mod[MOD_MAX];
629         struct rsnd_mod *mod_start, *mod_end;
630         struct rsnd_priv *priv = rsnd_mod_to_priv(this);
631         struct device *dev = rsnd_priv_to_dev(priv);
632         int nr, i, idx;
633
634         if (!ssi)
635                 return;
636
637         nr = 0;
638         for (i = 0; i < MOD_MAX; i++) {
639                 mod[i] = NULL;
640                 nr += !!rsnd_io_to_mod(io, i);
641         }
642
643         /*
644          * [S] -*-> [E]
645          * [S] -*-> SRC -o-> [E]
646          * [S] -*-> SRC -> DVC -o-> [E]
647          * [S] -*-> SRC -> CTU -> MIX -> DVC -o-> [E]
648          *
649          * playback     [S] = mem
650          *              [E] = SSI
651          *
652          * capture      [S] = SSI
653          *              [E] = mem
654          *
655          * -*->         Audio DMAC
656          * -o->         Audio DMAC peri peri
657          */
658         mod_start       = (is_play) ? NULL : ssi;
659         mod_end         = (is_play) ? ssi  : NULL;
660
661         idx = 0;
662         mod[idx++] = mod_start;
663         for (i = 1; i < nr; i++) {
664                 if (src) {
665                         mod[idx++] = src;
666                         src = NULL;
667                 } else if (ctu) {
668                         mod[idx++] = ctu;
669                         ctu = NULL;
670                 } else if (mix) {
671                         mod[idx++] = mix;
672                         mix = NULL;
673                 } else if (dvc) {
674                         mod[idx++] = dvc;
675                         dvc = NULL;
676                 }
677         }
678         mod[idx] = mod_end;
679
680         /*
681          *              | SSI | SRC |
682          * -------------+-----+-----+
683          *  is_play     |  o  |  *  |
684          * !is_play     |  *  |  o  |
685          */
686         if ((this == ssi) == (is_play)) {
687                 *mod_from       = mod[idx - 1];
688                 *mod_to         = mod[idx];
689         } else {
690                 *mod_from       = mod[0];
691                 *mod_to         = mod[1];
692         }
693
694         dev_dbg(dev, "module connection (this is %s[%d])\n",
695                 rsnd_mod_name(this), rsnd_mod_id(this));
696         for (i = 0; i <= idx; i++) {
697                 dev_dbg(dev, "  %s[%d]%s\n",
698                         rsnd_mod_name(mod[i] ? mod[i] : &mem),
699                         rsnd_mod_id  (mod[i] ? mod[i] : &mem),
700                         (mod[i] == *mod_from) ? " from" :
701                         (mod[i] == *mod_to)   ? " to" : "");
702         }
703 }
704
705 static int rsnd_dma_alloc(struct rsnd_dai_stream *io, struct rsnd_mod *mod,
706                           struct rsnd_mod **dma_mod)
707 {
708         struct rsnd_mod *mod_from = NULL;
709         struct rsnd_mod *mod_to = NULL;
710         struct rsnd_priv *priv = rsnd_io_to_priv(io);
711         struct rsnd_dma_ctrl *dmac = rsnd_priv_to_dmac(priv);
712         struct device *dev = rsnd_priv_to_dev(priv);
713         struct rsnd_dma *dma;
714         struct rsnd_mod_ops *ops;
715         enum rsnd_mod_type type;
716         int (*attach)(struct rsnd_dai_stream *io, struct rsnd_dma *dma,
717                       struct rsnd_mod *mod_from, struct rsnd_mod *mod_to);
718         int is_play = rsnd_io_is_play(io);
719         int ret, dma_id;
720
721         /*
722          * DMA failed. try to PIO mode
723          * see
724          *      rsnd_ssi_fallback()
725          *      rsnd_rdai_continuance_probe()
726          */
727         if (!dmac)
728                 return -EAGAIN;
729
730         rsnd_dma_of_path(mod, io, is_play, &mod_from, &mod_to);
731
732         /* for Gen2 or later */
733         if (mod_from && mod_to) {
734                 ops     = &rsnd_dmapp_ops;
735                 attach  = rsnd_dmapp_attach;
736                 dma_id  = dmac->dmapp_num;
737                 type    = RSND_MOD_AUDMAPP;
738         } else {
739                 ops     = &rsnd_dmaen_ops;
740                 attach  = rsnd_dmaen_attach;
741                 dma_id  = dmac->dmaen_num;
742                 type    = RSND_MOD_AUDMA;
743         }
744
745         /* for Gen1, overwrite */
746         if (rsnd_is_gen1(priv)) {
747                 ops     = &rsnd_dmaen_ops;
748                 attach  = rsnd_dmaen_attach;
749                 dma_id  = dmac->dmaen_num;
750                 type    = RSND_MOD_AUDMA;
751         }
752
753         dma = devm_kzalloc(dev, sizeof(*dma), GFP_KERNEL);
754         if (!dma)
755                 return -ENOMEM;
756
757         *dma_mod = rsnd_mod_get(dma);
758
759         ret = rsnd_mod_init(priv, *dma_mod, ops, NULL,
760                             rsnd_mod_get_status, type, dma_id);
761         if (ret < 0)
762                 return ret;
763
764         dev_dbg(dev, "%s[%d] %s[%d] -> %s[%d]\n",
765                 rsnd_mod_name(*dma_mod), rsnd_mod_id(*dma_mod),
766                 rsnd_mod_name(mod_from ? mod_from : &mem),
767                 rsnd_mod_id  (mod_from ? mod_from : &mem),
768                 rsnd_mod_name(mod_to   ? mod_to   : &mem),
769                 rsnd_mod_id  (mod_to   ? mod_to   : &mem));
770
771         ret = attach(io, dma, mod_from, mod_to);
772         if (ret < 0)
773                 return ret;
774
775         dma->src_addr = rsnd_dma_addr(io, mod_from, is_play, 1);
776         dma->dst_addr = rsnd_dma_addr(io, mod_to,   is_play, 0);
777         dma->mod_from = mod_from;
778         dma->mod_to   = mod_to;
779
780         return 0;
781 }
782
783 int rsnd_dma_attach(struct rsnd_dai_stream *io, struct rsnd_mod *mod,
784                     struct rsnd_mod **dma_mod)
785 {
786         if (!(*dma_mod)) {
787                 int ret = rsnd_dma_alloc(io, mod, dma_mod);
788
789                 if (ret < 0)
790                         return ret;
791         }
792
793         return rsnd_dai_connect(*dma_mod, io, (*dma_mod)->type);
794 }
795
796 int rsnd_dma_probe(struct rsnd_priv *priv)
797 {
798         struct platform_device *pdev = rsnd_priv_to_pdev(priv);
799         struct device *dev = rsnd_priv_to_dev(priv);
800         struct rsnd_dma_ctrl *dmac;
801         struct resource *res;
802
803         /*
804          * for Gen1
805          */
806         if (rsnd_is_gen1(priv))
807                 return 0;
808
809         /*
810          * for Gen2 or later
811          */
812         res = platform_get_resource_byname(pdev, IORESOURCE_MEM, "audmapp");
813         dmac = devm_kzalloc(dev, sizeof(*dmac), GFP_KERNEL);
814         if (!dmac || !res) {
815                 dev_err(dev, "dma allocate failed\n");
816                 return 0; /* it will be PIO mode */
817         }
818
819         dmac->dmapp_num = 0;
820         dmac->base = devm_ioremap_resource(dev, res);
821         if (IS_ERR(dmac->base))
822                 return PTR_ERR(dmac->base);
823
824         priv->dma = dmac;
825
826         /* dummy mem mod for debug */
827         return rsnd_mod_init(NULL, &mem, &mem_ops, NULL, NULL, 0, 0);
828 }