blob: d65ea7bc4dac2d2608cbcfbe3d3a4ebd915ad242 [file] [log] [blame]
Kuninori Morimoto1e0edd42018-06-12 05:58:38 +00001// 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
Kuninori Morimoto288f3922015-02-20 10:27:42 +00008#include <linux/delay.h>
Kuninori Morimoto72adc612015-02-20 10:31:23 +00009#include <linux/of_dma.h>
Kuninori Morimotobfe834b2015-02-20 10:25:55 +000010#include "rsnd.h"
11
Kuninori Morimoto288f3922015-02-20 10:27:42 +000012/*
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
Kuninori Morimoto3e5afa72015-10-26 08:38:58 +000022
23struct rsnd_dmaen {
24 struct dma_chan *chan;
Kuninori Morimoto07b7acb2017-06-07 00:20:01 +000025 dma_cookie_t cookie;
Kuninori Morimoto4821d912016-11-14 04:20:56 +000026 unsigned int dma_len;
Kuninori Morimoto3e5afa72015-10-26 08:38:58 +000027};
28
29struct rsnd_dmapp {
30 int dmapp_id;
31 u32 chcr;
32};
33
34struct rsnd_dma {
Kuninori Morimoto940e9472015-10-26 08:42:25 +000035 struct rsnd_mod mod;
Kuninori Morimotoedce5c42016-11-14 04:20:40 +000036 struct rsnd_mod *mod_from;
37 struct rsnd_mod *mod_to;
Kuninori Morimoto3e5afa72015-10-26 08:38:58 +000038 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
Kuninori Morimoto288f3922015-02-20 10:27:42 +000046struct rsnd_dma_ctrl {
47 void __iomem *base;
Kuninori Morimoto940e9472015-10-26 08:42:25 +000048 int dmaen_num;
Kuninori Morimoto288f3922015-02-20 10:27:42 +000049 int dmapp_num;
50};
51
52#define rsnd_priv_to_dmac(p) ((struct rsnd_dma_ctrl *)(p)->dma)
Kuninori Morimoto940e9472015-10-26 08:42:25 +000053#define rsnd_mod_to_dma(_mod) container_of((_mod), struct rsnd_dma, mod)
Kuninori Morimoto3e5afa72015-10-26 08:38:58 +000054#define rsnd_dma_to_dmaen(dma) (&(dma)->dma.en)
55#define rsnd_dma_to_dmapp(dma) (&(dma)->dma.pp)
Kuninori Morimoto288f3922015-02-20 10:27:42 +000056
Kuninori Morimoto9b6ea252017-11-01 07:17:34 +000057/* for DEBUG */
58static struct rsnd_mod_ops mem_ops = {
59 .name = "mem",
60};
61
62static struct rsnd_mod mem = {
63};
64
Kuninori Morimoto288f3922015-02-20 10:27:42 +000065/*
66 * Audio DMAC
67 */
Kuninori Morimoto9b99e9a2015-06-15 06:26:25 +000068static void __rsnd_dmaen_complete(struct rsnd_mod *mod,
69 struct rsnd_dai_stream *io)
Kuninori Morimotobfe834b2015-02-20 10:25:55 +000070{
Kuninori Morimotoc20c6702017-11-16 04:36:51 +000071 if (rsnd_io_is_working(io))
Kuninori Morimoto75defee2015-06-15 06:21:15 +000072 rsnd_dai_period_elapsed(io);
Kuninori Morimotobfe834b2015-02-20 10:25:55 +000073}
74
Kuninori Morimoto9b99e9a2015-06-15 06:26:25 +000075static void rsnd_dmaen_complete(void *data)
76{
77 struct rsnd_mod *mod = data;
78
79 rsnd_mod_interrupt(mod, __rsnd_dmaen_complete);
80}
81
Kuninori Morimotoedce5c42016-11-14 04:20:40 +000082static 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
Kuninori Morimoto497deba2015-10-26 08:43:01 +000096static int rsnd_dmaen_stop(struct rsnd_mod *mod,
97 struct rsnd_dai_stream *io,
98 struct rsnd_priv *priv)
Kuninori Morimotobfe834b2015-02-20 10:25:55 +000099{
Kuninori Morimoto76c80b52015-10-26 08:42:46 +0000100 struct rsnd_dma *dma = rsnd_mod_to_dma(mod);
Kuninori Morimoto0d00a522015-02-20 10:29:13 +0000101 struct rsnd_dmaen *dmaen = rsnd_dma_to_dmaen(dma);
102
Kuninori Morimotoc20c6702017-11-16 04:36:51 +0000103 if (dmaen->chan)
Kuninori Morimotoedce5c42016-11-14 04:20:40 +0000104 dmaengine_terminate_all(dmaen->chan);
Kuninori Morimotoedce5c42016-11-14 04:20:40 +0000105
106 return 0;
107}
108
109static int rsnd_dmaen_nolock_stop(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 nolock_start
120 */
121 if (dmaen->chan)
122 dma_release_channel(dmaen->chan);
123
124 dmaen->chan = NULL;
125
126 return 0;
127}
128
129static int rsnd_dmaen_nolock_start(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 nolock_start
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)) {
Kuninori Morimotoedce5c42016-11-14 04:20:40 +0000151 dmaen->chan = NULL;
152 dev_err(dev, "can't get dma channel\n");
Kuninori Morimotoc409c2a2017-11-06 01:07:27 +0000153 return -EIO;
Kuninori Morimotoedce5c42016-11-14 04:20:40 +0000154 }
Kuninori Morimoto497deba2015-10-26 08:43:01 +0000155
156 return 0;
Kuninori Morimotobfe834b2015-02-20 10:25:55 +0000157}
158
Kuninori Morimoto497deba2015-10-26 08:43:01 +0000159static int rsnd_dmaen_start(struct rsnd_mod *mod,
160 struct rsnd_dai_stream *io,
161 struct rsnd_priv *priv)
Kuninori Morimotobfe834b2015-02-20 10:25:55 +0000162{
Kuninori Morimoto76c80b52015-10-26 08:42:46 +0000163 struct rsnd_dma *dma = rsnd_mod_to_dma(mod);
Kuninori Morimoto0d00a522015-02-20 10:29:13 +0000164 struct rsnd_dmaen *dmaen = rsnd_dma_to_dmaen(dma);
Kuninori Morimotobfe834b2015-02-20 10:25:55 +0000165 struct snd_pcm_substream *substream = io->substream;
166 struct device *dev = rsnd_priv_to_dev(priv);
167 struct dma_async_tx_descriptor *desc;
Kuninori Morimotoedce5c42016-11-14 04:20:40 +0000168 struct dma_slave_config cfg = {};
Kuninori Morimotoaaf4fce2015-02-20 10:28:32 +0000169 int is_play = rsnd_io_is_play(io);
Kuninori Morimotoedce5c42016-11-14 04:20:40 +0000170 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;
Kuninori Morimotobfe834b2015-02-20 10:25:55 +0000185
Kuninori Morimoto0d00a522015-02-20 10:29:13 +0000186 desc = dmaengine_prep_dma_cyclic(dmaen->chan,
Kuninori Morimotoc20c6702017-11-16 04:36:51 +0000187 substream->runtime->dma_addr,
188 snd_pcm_lib_buffer_bytes(substream),
189 snd_pcm_lib_period_bytes(substream),
Kuninori Morimotoaaf4fce2015-02-20 10:28:32 +0000190 is_play ? DMA_MEM_TO_DEV : DMA_DEV_TO_MEM,
Kuninori Morimotobfe834b2015-02-20 10:25:55 +0000191 DMA_PREP_INTERRUPT | DMA_CTRL_ACK);
192
193 if (!desc) {
194 dev_err(dev, "dmaengine_prep_slave_sg() fail\n");
Kuninori Morimoto497deba2015-10-26 08:43:01 +0000195 return -EIO;
Kuninori Morimotobfe834b2015-02-20 10:25:55 +0000196 }
197
Kuninori Morimoto3c685652015-02-20 10:27:12 +0000198 desc->callback = rsnd_dmaen_complete;
Kuninori Morimoto497deba2015-10-26 08:43:01 +0000199 desc->callback_param = rsnd_mod_get(dma);
Kuninori Morimotobfe834b2015-02-20 10:25:55 +0000200
Kuninori Morimotoc20c6702017-11-16 04:36:51 +0000201 dmaen->dma_len = snd_pcm_lib_buffer_bytes(substream);
Kuninori Morimoto4821d912016-11-14 04:20:56 +0000202
Kuninori Morimoto07b7acb2017-06-07 00:20:01 +0000203 dmaen->cookie = dmaengine_submit(desc);
204 if (dmaen->cookie < 0) {
Kuninori Morimotobfe834b2015-02-20 10:25:55 +0000205 dev_err(dev, "dmaengine_submit() fail\n");
Kuninori Morimoto497deba2015-10-26 08:43:01 +0000206 return -EIO;
Kuninori Morimotobfe834b2015-02-20 10:25:55 +0000207 }
208
Kuninori Morimoto0d00a522015-02-20 10:29:13 +0000209 dma_async_issue_pending(dmaen->chan);
Kuninori Morimoto497deba2015-10-26 08:43:01 +0000210
211 return 0;
Kuninori Morimotobfe834b2015-02-20 10:25:55 +0000212}
213
Kuninori Morimoto72adc612015-02-20 10:31:23 +0000214struct dma_chan *rsnd_dma_request_channel(struct device_node *of_node,
215 struct rsnd_mod *mod, char *name)
216{
Kuninori Morimoto161ba1f2016-10-25 00:37:18 +0000217 struct dma_chan *chan = NULL;
Kuninori Morimoto72adc612015-02-20 10:31:23 +0000218 struct device_node *np;
219 int i = 0;
220
221 for_each_child_of_node(of_node, np) {
Kuninori Morimoto161ba1f2016-10-25 00:37:18 +0000222 if (i == rsnd_mod_id(mod) && (!chan))
223 chan = of_dma_request_slave_channel(np, name);
Kuninori Morimoto72adc612015-02-20 10:31:23 +0000224 i++;
225 }
226
Kuninori Morimoto161ba1f2016-10-25 00:37:18 +0000227 /* It should call of_node_put(), since, it is rsnd_xxx_of_node() */
Kuninori Morimoto72adc612015-02-20 10:31:23 +0000228 of_node_put(of_node);
229
230 return chan;
231}
232
Kuninori Morimoto81ecbb62015-10-26 08:39:20 +0000233static int rsnd_dmaen_attach(struct rsnd_dai_stream *io,
Kuninori Morimotob99305d2016-10-25 00:36:13 +0000234 struct rsnd_dma *dma,
Kuninori Morimoto3c685652015-02-20 10:27:12 +0000235 struct rsnd_mod *mod_from, struct rsnd_mod *mod_to)
Kuninori Morimotobfe834b2015-02-20 10:25:55 +0000236{
Kuninori Morimoto9b99e9a2015-06-15 06:26:25 +0000237 struct rsnd_priv *priv = rsnd_io_to_priv(io);
Kuninori Morimoto940e9472015-10-26 08:42:25 +0000238 struct rsnd_dma_ctrl *dmac = rsnd_priv_to_dmac(priv);
Kuninori Morimotoedce5c42016-11-14 04:20:40 +0000239 struct dma_chan *chan;
Kuninori Morimotobfe834b2015-02-20 10:25:55 +0000240
Kuninori Morimotoedce5c42016-11-14 04:20:40 +0000241 /* try to get DMAEngine channel */
242 chan = rsnd_dmaen_request_channel(io, mod_from, mod_to);
243 if (IS_ERR_OR_NULL(chan)) {
Kuninori Morimoto6c92d5a2018-09-06 03:21:47 +0000244 /* Let's follow when -EPROBE_DEFER case */
245 if (PTR_ERR(chan) == -EPROBE_DEFER)
246 return PTR_ERR(chan);
247
Kuninori Morimotoedce5c42016-11-14 04:20:40 +0000248 /*
249 * DMA failed. try to PIO mode
250 * see
251 * rsnd_ssi_fallback()
252 * rsnd_rdai_continuance_probe()
253 */
254 return -EAGAIN;
Kuninori Morimotobfe834b2015-02-20 10:25:55 +0000255 }
256
Kuninori Morimoto5423d772018-04-16 05:14:01 +0000257 /*
258 * use it for IPMMU if needed
259 * see
260 * rsnd_preallocate_pages()
261 */
262 io->dmac_dev = chan->device->dev;
263
Kuninori Morimotoedce5c42016-11-14 04:20:40 +0000264 dma_release_channel(chan);
Kuninori Morimotobfe834b2015-02-20 10:25:55 +0000265
Kuninori Morimoto940e9472015-10-26 08:42:25 +0000266 dmac->dmaen_num++;
267
Kuninori Morimotobfe834b2015-02-20 10:25:55 +0000268 return 0;
Kuninori Morimotobfe834b2015-02-20 10:25:55 +0000269}
270
Kuninori Morimoto07b7acb2017-06-07 00:20:01 +0000271static 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
Kuninori Morimoto497deba2015-10-26 08:43:01 +0000292static struct rsnd_mod_ops rsnd_dmaen_ops = {
Kuninori Morimotoddea1b22015-07-15 07:16:03 +0000293 .name = "audmac",
Kuninori Morimotoedce5c42016-11-14 04:20:40 +0000294 .nolock_start = rsnd_dmaen_nolock_start,
295 .nolock_stop = rsnd_dmaen_nolock_stop,
Kuninori Morimoto3c685652015-02-20 10:27:12 +0000296 .start = rsnd_dmaen_start,
297 .stop = rsnd_dmaen_stop,
Kuninori Morimoto07b7acb2017-06-07 00:20:01 +0000298 .pointer= rsnd_dmaen_pointer,
Kuninori Morimoto3c685652015-02-20 10:27:12 +0000299};
300
Kuninori Morimoto747c71b2015-02-20 10:26:29 +0000301/*
Kuninori Morimoto288f3922015-02-20 10:27:42 +0000302 * Audio DMAC peri peri
303 */
304static const u8 gen2_id_table_ssiu[] = {
305 0x00, /* SSI00 */
306 0x04, /* SSI10 */
307 0x08, /* SSI20 */
308 0x0c, /* SSI3 */
309 0x0d, /* SSI4 */
310 0x0e, /* SSI5 */
311 0x0f, /* SSI6 */
312 0x10, /* SSI7 */
313 0x11, /* SSI8 */
314 0x12, /* SSI90 */
315};
316static const u8 gen2_id_table_scu[] = {
317 0x2d, /* SCU_SRCI0 */
318 0x2e, /* SCU_SRCI1 */
319 0x2f, /* SCU_SRCI2 */
320 0x30, /* SCU_SRCI3 */
321 0x31, /* SCU_SRCI4 */
322 0x32, /* SCU_SRCI5 */
323 0x33, /* SCU_SRCI6 */
324 0x34, /* SCU_SRCI7 */
325 0x35, /* SCU_SRCI8 */
326 0x36, /* SCU_SRCI9 */
327};
328static const u8 gen2_id_table_cmd[] = {
329 0x37, /* SCU_CMD0 */
330 0x38, /* SCU_CMD1 */
331};
332
Kuninori Morimoto9b99e9a2015-06-15 06:26:25 +0000333static u32 rsnd_dmapp_get_id(struct rsnd_dai_stream *io,
334 struct rsnd_mod *mod)
Kuninori Morimoto288f3922015-02-20 10:27:42 +0000335{
Kuninori Morimoto288f3922015-02-20 10:27:42 +0000336 struct rsnd_mod *ssi = rsnd_io_to_mod_ssi(io);
337 struct rsnd_mod *src = rsnd_io_to_mod_src(io);
338 struct rsnd_mod *dvc = rsnd_io_to_mod_dvc(io);
339 const u8 *entry = NULL;
340 int id = rsnd_mod_id(mod);
341 int size = 0;
342
343 if (mod == ssi) {
344 entry = gen2_id_table_ssiu;
345 size = ARRAY_SIZE(gen2_id_table_ssiu);
346 } else if (mod == src) {
347 entry = gen2_id_table_scu;
348 size = ARRAY_SIZE(gen2_id_table_scu);
349 } else if (mod == dvc) {
350 entry = gen2_id_table_cmd;
351 size = ARRAY_SIZE(gen2_id_table_cmd);
352 }
353
Kuninori Morimotoee057d22016-05-10 02:22:37 +0000354 if ((!entry) || (size <= id)) {
355 struct device *dev = rsnd_priv_to_dev(rsnd_io_to_priv(io));
Kuninori Morimoto288f3922015-02-20 10:27:42 +0000356
Kuninori Morimotoee057d22016-05-10 02:22:37 +0000357 dev_err(dev, "unknown connection (%s[%d])\n",
358 rsnd_mod_name(mod), rsnd_mod_id(mod));
359
360 /* use non-prohibited SRS number as error */
361 return 0x00; /* SSI00 */
362 }
Kuninori Morimoto288f3922015-02-20 10:27:42 +0000363
364 return entry[id];
365}
366
Kuninori Morimoto9b99e9a2015-06-15 06:26:25 +0000367static u32 rsnd_dmapp_get_chcr(struct rsnd_dai_stream *io,
368 struct rsnd_mod *mod_from,
Kuninori Morimoto288f3922015-02-20 10:27:42 +0000369 struct rsnd_mod *mod_to)
370{
Kuninori Morimoto9b99e9a2015-06-15 06:26:25 +0000371 return (rsnd_dmapp_get_id(io, mod_from) << 24) +
372 (rsnd_dmapp_get_id(io, mod_to) << 16);
Kuninori Morimoto288f3922015-02-20 10:27:42 +0000373}
374
375#define rsnd_dmapp_addr(dmac, dma, reg) \
Kuninori Morimoto0d00a522015-02-20 10:29:13 +0000376 (dmac->base + 0x20 + reg + \
377 (0x10 * rsnd_dma_to_dmapp(dma)->dmapp_id))
Kuninori Morimoto288f3922015-02-20 10:27:42 +0000378static void rsnd_dmapp_write(struct rsnd_dma *dma, u32 data, u32 reg)
379{
Kuninori Morimoto940e9472015-10-26 08:42:25 +0000380 struct rsnd_mod *mod = rsnd_mod_get(dma);
Kuninori Morimoto288f3922015-02-20 10:27:42 +0000381 struct rsnd_priv *priv = rsnd_mod_to_priv(mod);
382 struct rsnd_dma_ctrl *dmac = rsnd_priv_to_dmac(priv);
383 struct device *dev = rsnd_priv_to_dev(priv);
384
385 dev_dbg(dev, "w %p : %08x\n", rsnd_dmapp_addr(dmac, dma, reg), data);
386
387 iowrite32(data, rsnd_dmapp_addr(dmac, dma, reg));
388}
389
390static u32 rsnd_dmapp_read(struct rsnd_dma *dma, u32 reg)
391{
Kuninori Morimoto940e9472015-10-26 08:42:25 +0000392 struct rsnd_mod *mod = rsnd_mod_get(dma);
Kuninori Morimoto288f3922015-02-20 10:27:42 +0000393 struct rsnd_priv *priv = rsnd_mod_to_priv(mod);
394 struct rsnd_dma_ctrl *dmac = rsnd_priv_to_dmac(priv);
395
396 return ioread32(rsnd_dmapp_addr(dmac, dma, reg));
397}
398
Kuninori Morimoto62a10492017-03-14 09:34:49 +0900399static void rsnd_dmapp_bset(struct rsnd_dma *dma, u32 data, u32 mask, u32 reg)
400{
401 struct rsnd_mod *mod = rsnd_mod_get(dma);
402 struct rsnd_priv *priv = rsnd_mod_to_priv(mod);
403 struct rsnd_dma_ctrl *dmac = rsnd_priv_to_dmac(priv);
Kuninori Morimoto99869432017-03-16 04:22:09 +0000404 void __iomem *addr = rsnd_dmapp_addr(dmac, dma, reg);
Kuninori Morimoto62a10492017-03-14 09:34:49 +0900405 u32 val = ioread32(addr);
406
407 val &= ~mask;
408 val |= (data & mask);
409
410 iowrite32(val, addr);
411}
412
Kuninori Morimoto497deba2015-10-26 08:43:01 +0000413static int rsnd_dmapp_stop(struct rsnd_mod *mod,
414 struct rsnd_dai_stream *io,
415 struct rsnd_priv *priv)
Kuninori Morimoto288f3922015-02-20 10:27:42 +0000416{
Kuninori Morimoto76c80b52015-10-26 08:42:46 +0000417 struct rsnd_dma *dma = rsnd_mod_to_dma(mod);
Kuninori Morimoto288f3922015-02-20 10:27:42 +0000418 int i;
419
Kuninori Morimoto62a10492017-03-14 09:34:49 +0900420 rsnd_dmapp_bset(dma, 0, PDMACHCR_DE, PDMACHCR);
Kuninori Morimoto288f3922015-02-20 10:27:42 +0000421
422 for (i = 0; i < 1024; i++) {
Kuninori Morimoto62a10492017-03-14 09:34:49 +0900423 if (0 == (rsnd_dmapp_read(dma, PDMACHCR) & PDMACHCR_DE))
Kuninori Morimoto9c66eed2015-10-28 04:31:03 +0000424 return 0;
Kuninori Morimoto288f3922015-02-20 10:27:42 +0000425 udelay(1);
426 }
Kuninori Morimoto497deba2015-10-26 08:43:01 +0000427
Kuninori Morimoto9c66eed2015-10-28 04:31:03 +0000428 return -EIO;
Kuninori Morimoto288f3922015-02-20 10:27:42 +0000429}
430
Kuninori Morimoto497deba2015-10-26 08:43:01 +0000431static int rsnd_dmapp_start(struct rsnd_mod *mod,
432 struct rsnd_dai_stream *io,
433 struct rsnd_priv *priv)
Kuninori Morimoto288f3922015-02-20 10:27:42 +0000434{
Kuninori Morimoto76c80b52015-10-26 08:42:46 +0000435 struct rsnd_dma *dma = rsnd_mod_to_dma(mod);
Kuninori Morimoto0d00a522015-02-20 10:29:13 +0000436 struct rsnd_dmapp *dmapp = rsnd_dma_to_dmapp(dma);
437
Kuninori Morimoto288f3922015-02-20 10:27:42 +0000438 rsnd_dmapp_write(dma, dma->src_addr, PDMASAR);
439 rsnd_dmapp_write(dma, dma->dst_addr, PDMADAR);
Kuninori Morimoto0d00a522015-02-20 10:29:13 +0000440 rsnd_dmapp_write(dma, dmapp->chcr, PDMACHCR);
Kuninori Morimoto497deba2015-10-26 08:43:01 +0000441
442 return 0;
Kuninori Morimoto288f3922015-02-20 10:27:42 +0000443}
444
Kuninori Morimoto81ecbb62015-10-26 08:39:20 +0000445static int rsnd_dmapp_attach(struct rsnd_dai_stream *io,
Kuninori Morimotob99305d2016-10-25 00:36:13 +0000446 struct rsnd_dma *dma,
Kuninori Morimoto81ecbb62015-10-26 08:39:20 +0000447 struct rsnd_mod *mod_from, struct rsnd_mod *mod_to)
Kuninori Morimoto288f3922015-02-20 10:27:42 +0000448{
Kuninori Morimoto0d00a522015-02-20 10:29:13 +0000449 struct rsnd_dmapp *dmapp = rsnd_dma_to_dmapp(dma);
Kuninori Morimoto9b99e9a2015-06-15 06:26:25 +0000450 struct rsnd_priv *priv = rsnd_io_to_priv(io);
Kuninori Morimoto288f3922015-02-20 10:27:42 +0000451 struct rsnd_dma_ctrl *dmac = rsnd_priv_to_dmac(priv);
452 struct device *dev = rsnd_priv_to_dev(priv);
453
Kuninori Morimoto0d00a522015-02-20 10:29:13 +0000454 dmapp->dmapp_id = dmac->dmapp_num;
Kuninori Morimoto9b99e9a2015-06-15 06:26:25 +0000455 dmapp->chcr = rsnd_dmapp_get_chcr(io, mod_from, mod_to) | PDMACHCR_DE;
Kuninori Morimoto288f3922015-02-20 10:27:42 +0000456
457 dmac->dmapp_num++;
458
Geert Uytterhoeven6ec6fb62015-03-10 11:48:05 +0100459 dev_dbg(dev, "id/src/dst/chcr = %d/%pad/%pad/%08x\n",
460 dmapp->dmapp_id, &dma->src_addr, &dma->dst_addr, dmapp->chcr);
Kuninori Morimoto288f3922015-02-20 10:27:42 +0000461
462 return 0;
463}
464
Kuninori Morimoto497deba2015-10-26 08:43:01 +0000465static struct rsnd_mod_ops rsnd_dmapp_ops = {
Kuninori Morimotoddea1b22015-07-15 07:16:03 +0000466 .name = "audmac-pp",
Kuninori Morimoto288f3922015-02-20 10:27:42 +0000467 .start = rsnd_dmapp_start,
468 .stop = rsnd_dmapp_stop,
Kuninori Morimoto288f3922015-02-20 10:27:42 +0000469 .quit = rsnd_dmapp_stop,
470};
471
472/*
473 * Common DMAC Interface
474 */
475
476/*
Kuninori Morimoto747c71b2015-02-20 10:26:29 +0000477 * DMA read/write register offset
478 *
479 * RSND_xxx_I_N for Audio DMAC input
480 * RSND_xxx_O_N for Audio DMAC output
481 * RSND_xxx_I_P for Audio DMAC peri peri input
482 * RSND_xxx_O_P for Audio DMAC peri peri output
483 *
484 * ex) R-Car H2 case
485 * mod / DMAC in / DMAC out / DMAC PP in / DMAC pp out
486 * SSI : 0xec541000 / 0xec241008 / 0xec24100c
487 * SSIU: 0xec541000 / 0xec100000 / 0xec100000 / 0xec400000 / 0xec400000
488 * SCU : 0xec500000 / 0xec000000 / 0xec004000 / 0xec300000 / 0xec304000
489 * CMD : 0xec500000 / / 0xec008000 0xec308000
490 */
491#define RDMA_SSI_I_N(addr, i) (addr ##_reg - 0x00300000 + (0x40 * i) + 0x8)
492#define RDMA_SSI_O_N(addr, i) (addr ##_reg - 0x00300000 + (0x40 * i) + 0xc)
493
494#define RDMA_SSIU_I_N(addr, i) (addr ##_reg - 0x00441000 + (0x1000 * i))
495#define RDMA_SSIU_O_N(addr, i) (addr ##_reg - 0x00441000 + (0x1000 * i))
496
497#define RDMA_SSIU_I_P(addr, i) (addr ##_reg - 0x00141000 + (0x1000 * i))
498#define RDMA_SSIU_O_P(addr, i) (addr ##_reg - 0x00141000 + (0x1000 * i))
499
500#define RDMA_SRC_I_N(addr, i) (addr ##_reg - 0x00500000 + (0x400 * i))
501#define RDMA_SRC_O_N(addr, i) (addr ##_reg - 0x004fc000 + (0x400 * i))
502
503#define RDMA_SRC_I_P(addr, i) (addr ##_reg - 0x00200000 + (0x400 * i))
504#define RDMA_SRC_O_P(addr, i) (addr ##_reg - 0x001fc000 + (0x400 * i))
505
506#define RDMA_CMD_O_N(addr, i) (addr ##_reg - 0x004f8000 + (0x400 * i))
507#define RDMA_CMD_O_P(addr, i) (addr ##_reg - 0x001f8000 + (0x400 * i))
508
509static dma_addr_t
Kuninori Morimoto9b99e9a2015-06-15 06:26:25 +0000510rsnd_gen2_dma_addr(struct rsnd_dai_stream *io,
Kuninori Morimoto747c71b2015-02-20 10:26:29 +0000511 struct rsnd_mod *mod,
512 int is_play, int is_from)
513{
Kuninori Morimoto9b99e9a2015-06-15 06:26:25 +0000514 struct rsnd_priv *priv = rsnd_io_to_priv(io);
Kuninori Morimoto747c71b2015-02-20 10:26:29 +0000515 struct device *dev = rsnd_priv_to_dev(priv);
Kuninori Morimoto747c71b2015-02-20 10:26:29 +0000516 phys_addr_t ssi_reg = rsnd_gen_get_phy_addr(priv, RSND_GEN2_SSI);
517 phys_addr_t src_reg = rsnd_gen_get_phy_addr(priv, RSND_GEN2_SCU);
518 int is_ssi = !!(rsnd_io_to_mod_ssi(io) == mod);
519 int use_src = !!rsnd_io_to_mod_src(io);
Kuninori Morimoto9269e3c2015-07-15 07:17:17 +0000520 int use_cmd = !!rsnd_io_to_mod_dvc(io) ||
Kuninori Morimoto70fb1052015-07-15 07:17:36 +0000521 !!rsnd_io_to_mod_mix(io) ||
Kuninori Morimoto9269e3c2015-07-15 07:17:17 +0000522 !!rsnd_io_to_mod_ctu(io);
Kuninori Morimoto747c71b2015-02-20 10:26:29 +0000523 int id = rsnd_mod_id(mod);
524 struct dma_addr {
525 dma_addr_t out_addr;
526 dma_addr_t in_addr;
527 } dma_addrs[3][2][3] = {
528 /* SRC */
Kuninori Morimotob65cb7a2017-08-21 07:03:01 +0000529 /* Capture */
Kuninori Morimoto747c71b2015-02-20 10:26:29 +0000530 {{{ 0, 0 },
Kuninori Morimoto747c71b2015-02-20 10:26:29 +0000531 { RDMA_SRC_O_N(src, id), RDMA_SRC_I_P(src, id) },
532 { RDMA_CMD_O_N(src, id), RDMA_SRC_I_P(src, id) } },
533 /* Playback */
534 {{ 0, 0, },
535 { RDMA_SRC_O_P(src, id), RDMA_SRC_I_N(src, id) },
536 { RDMA_CMD_O_P(src, id), RDMA_SRC_I_N(src, id) } }
537 },
538 /* SSI */
539 /* Capture */
540 {{{ RDMA_SSI_O_N(ssi, id), 0 },
541 { RDMA_SSIU_O_P(ssi, id), 0 },
542 { RDMA_SSIU_O_P(ssi, id), 0 } },
543 /* Playback */
544 {{ 0, RDMA_SSI_I_N(ssi, id) },
545 { 0, RDMA_SSIU_I_P(ssi, id) },
546 { 0, RDMA_SSIU_I_P(ssi, id) } }
547 },
548 /* SSIU */
549 /* Capture */
550 {{{ RDMA_SSIU_O_N(ssi, id), 0 },
551 { RDMA_SSIU_O_P(ssi, id), 0 },
552 { RDMA_SSIU_O_P(ssi, id), 0 } },
553 /* Playback */
554 {{ 0, RDMA_SSIU_I_N(ssi, id) },
555 { 0, RDMA_SSIU_I_P(ssi, id) },
556 { 0, RDMA_SSIU_I_P(ssi, id) } } },
557 };
558
559 /* it shouldn't happen */
Kuninori Morimoto9269e3c2015-07-15 07:17:17 +0000560 if (use_cmd && !use_src)
Kuninori Morimoto747c71b2015-02-20 10:26:29 +0000561 dev_err(dev, "DVC is selected without SRC\n");
562
563 /* use SSIU or SSI ? */
Kuninori Morimotob415b4d2015-10-22 03:15:46 +0000564 if (is_ssi && rsnd_ssi_use_busif(io))
Kuninori Morimoto747c71b2015-02-20 10:26:29 +0000565 is_ssi++;
566
567 return (is_from) ?
Kuninori Morimoto9269e3c2015-07-15 07:17:17 +0000568 dma_addrs[is_ssi][is_play][use_src + use_cmd].out_addr :
569 dma_addrs[is_ssi][is_play][use_src + use_cmd].in_addr;
Kuninori Morimoto747c71b2015-02-20 10:26:29 +0000570}
571
Kuninori Morimoto9b99e9a2015-06-15 06:26:25 +0000572static dma_addr_t rsnd_dma_addr(struct rsnd_dai_stream *io,
Kuninori Morimoto747c71b2015-02-20 10:26:29 +0000573 struct rsnd_mod *mod,
574 int is_play, int is_from)
575{
Kuninori Morimoto9b99e9a2015-06-15 06:26:25 +0000576 struct rsnd_priv *priv = rsnd_io_to_priv(io);
577
Kuninori Morimoto747c71b2015-02-20 10:26:29 +0000578 /*
579 * gen1 uses default DMA addr
580 */
581 if (rsnd_is_gen1(priv))
582 return 0;
583
584 if (!mod)
585 return 0;
586
Kuninori Morimoto9b99e9a2015-06-15 06:26:25 +0000587 return rsnd_gen2_dma_addr(io, mod, is_play, is_from);
Kuninori Morimoto747c71b2015-02-20 10:26:29 +0000588}
589
Kuninori Morimoto7dfb4912015-07-15 07:16:56 +0000590#define MOD_MAX (RSND_MOD_MAX + 1) /* +Memory */
Kuninori Morimoto940e9472015-10-26 08:42:25 +0000591static void rsnd_dma_of_path(struct rsnd_mod *this,
Kuninori Morimoto9b99e9a2015-06-15 06:26:25 +0000592 struct rsnd_dai_stream *io,
Kuninori Morimotobfe834b2015-02-20 10:25:55 +0000593 int is_play,
594 struct rsnd_mod **mod_from,
595 struct rsnd_mod **mod_to)
596{
Kuninori Morimotobfe834b2015-02-20 10:25:55 +0000597 struct rsnd_mod *ssi = rsnd_io_to_mod_ssi(io);
598 struct rsnd_mod *src = rsnd_io_to_mod_src(io);
Kuninori Morimoto9269e3c2015-07-15 07:17:17 +0000599 struct rsnd_mod *ctu = rsnd_io_to_mod_ctu(io);
Kuninori Morimoto70fb1052015-07-15 07:17:36 +0000600 struct rsnd_mod *mix = rsnd_io_to_mod_mix(io);
Kuninori Morimotobfe834b2015-02-20 10:25:55 +0000601 struct rsnd_mod *dvc = rsnd_io_to_mod_dvc(io);
602 struct rsnd_mod *mod[MOD_MAX];
Kuninori Morimoto7dfb4912015-07-15 07:16:56 +0000603 struct rsnd_mod *mod_start, *mod_end;
604 struct rsnd_priv *priv = rsnd_mod_to_priv(this);
605 struct device *dev = rsnd_priv_to_dev(priv);
Kuninori Morimoto40854c62015-10-26 08:40:19 +0000606 int nr, i, idx;
Kuninori Morimotobfe834b2015-02-20 10:25:55 +0000607
Kuninori Morimoto7dfb4912015-07-15 07:16:56 +0000608 if (!ssi)
609 return;
Kuninori Morimotobfe834b2015-02-20 10:25:55 +0000610
Kuninori Morimoto7dfb4912015-07-15 07:16:56 +0000611 nr = 0;
612 for (i = 0; i < MOD_MAX; i++) {
Kuninori Morimotobfe834b2015-02-20 10:25:55 +0000613 mod[i] = NULL;
Kuninori Morimoto7dfb4912015-07-15 07:16:56 +0000614 nr += !!rsnd_io_to_mod(io, i);
Kuninori Morimotobfe834b2015-02-20 10:25:55 +0000615 }
616
Kuninori Morimoto7dfb4912015-07-15 07:16:56 +0000617 /*
618 * [S] -*-> [E]
619 * [S] -*-> SRC -o-> [E]
620 * [S] -*-> SRC -> DVC -o-> [E]
621 * [S] -*-> SRC -> CTU -> MIX -> DVC -o-> [E]
622 *
623 * playback [S] = mem
624 * [E] = SSI
625 *
626 * capture [S] = SSI
627 * [E] = mem
628 *
629 * -*-> Audio DMAC
630 * -o-> Audio DMAC peri peri
631 */
632 mod_start = (is_play) ? NULL : ssi;
633 mod_end = (is_play) ? ssi : NULL;
634
Kuninori Morimoto40854c62015-10-26 08:40:19 +0000635 idx = 0;
636 mod[idx++] = mod_start;
Kuninori Morimoto7dfb4912015-07-15 07:16:56 +0000637 for (i = 1; i < nr; i++) {
638 if (src) {
Kuninori Morimoto40854c62015-10-26 08:40:19 +0000639 mod[idx++] = src;
Kuninori Morimoto7dfb4912015-07-15 07:16:56 +0000640 src = NULL;
Kuninori Morimoto9269e3c2015-07-15 07:17:17 +0000641 } else if (ctu) {
Kuninori Morimoto40854c62015-10-26 08:40:19 +0000642 mod[idx++] = ctu;
Kuninori Morimoto9269e3c2015-07-15 07:17:17 +0000643 ctu = NULL;
Kuninori Morimoto70fb1052015-07-15 07:17:36 +0000644 } else if (mix) {
Kuninori Morimoto40854c62015-10-26 08:40:19 +0000645 mod[idx++] = mix;
Kuninori Morimoto70fb1052015-07-15 07:17:36 +0000646 mix = NULL;
Kuninori Morimoto7dfb4912015-07-15 07:16:56 +0000647 } else if (dvc) {
Kuninori Morimoto40854c62015-10-26 08:40:19 +0000648 mod[idx++] = dvc;
Kuninori Morimoto7dfb4912015-07-15 07:16:56 +0000649 dvc = NULL;
650 }
651 }
Kuninori Morimoto40854c62015-10-26 08:40:19 +0000652 mod[idx] = mod_end;
Kuninori Morimoto7dfb4912015-07-15 07:16:56 +0000653
654 /*
655 * | SSI | SRC |
656 * -------------+-----+-----+
657 * is_play | o | * |
658 * !is_play | * | o |
659 */
660 if ((this == ssi) == (is_play)) {
Kuninori Morimoto40854c62015-10-26 08:40:19 +0000661 *mod_from = mod[idx - 1];
662 *mod_to = mod[idx];
Kuninori Morimotobfe834b2015-02-20 10:25:55 +0000663 } else {
Kuninori Morimoto7dfb4912015-07-15 07:16:56 +0000664 *mod_from = mod[0];
665 *mod_to = mod[1];
666 }
667
668 dev_dbg(dev, "module connection (this is %s[%d])\n",
669 rsnd_mod_name(this), rsnd_mod_id(this));
Kuninori Morimoto40854c62015-10-26 08:40:19 +0000670 for (i = 0; i <= idx; i++) {
Kuninori Morimoto7dfb4912015-07-15 07:16:56 +0000671 dev_dbg(dev, " %s[%d]%s\n",
Kuninori Morimoto9b6ea252017-11-01 07:17:34 +0000672 rsnd_mod_name(mod[i] ? mod[i] : &mem),
673 rsnd_mod_id (mod[i] ? mod[i] : &mem),
674 (mod[i] == *mod_from) ? " from" :
675 (mod[i] == *mod_to) ? " to" : "");
Kuninori Morimotobfe834b2015-02-20 10:25:55 +0000676 }
677}
678
Kuninori Morimoto81cb7122017-09-20 06:28:44 +0000679static int rsnd_dma_alloc(struct rsnd_dai_stream *io, struct rsnd_mod *mod,
680 struct rsnd_mod **dma_mod)
Kuninori Morimoto3c685652015-02-20 10:27:12 +0000681{
Kuninori Morimoto7dfb4912015-07-15 07:16:56 +0000682 struct rsnd_mod *mod_from = NULL;
683 struct rsnd_mod *mod_to = NULL;
Kuninori Morimoto9b99e9a2015-06-15 06:26:25 +0000684 struct rsnd_priv *priv = rsnd_io_to_priv(io);
Kuninori Morimoto85374832015-03-10 01:25:01 +0000685 struct rsnd_dma_ctrl *dmac = rsnd_priv_to_dmac(priv);
Kuninori Morimotoddea1b22015-07-15 07:16:03 +0000686 struct device *dev = rsnd_priv_to_dev(priv);
Kuninori Morimoto81cb7122017-09-20 06:28:44 +0000687 struct rsnd_dma *dma;
Kuninori Morimoto497deba2015-10-26 08:43:01 +0000688 struct rsnd_mod_ops *ops;
689 enum rsnd_mod_type type;
Kuninori Morimotob99305d2016-10-25 00:36:13 +0000690 int (*attach)(struct rsnd_dai_stream *io, struct rsnd_dma *dma,
Kuninori Morimoto81ecbb62015-10-26 08:39:20 +0000691 struct rsnd_mod *mod_from, struct rsnd_mod *mod_to);
Kuninori Morimoto3c685652015-02-20 10:27:12 +0000692 int is_play = rsnd_io_is_play(io);
Kuninori Morimoto940e9472015-10-26 08:42:25 +0000693 int ret, dma_id;
Kuninori Morimoto3c685652015-02-20 10:27:12 +0000694
Kuninori Morimoto85374832015-03-10 01:25:01 +0000695 /*
696 * DMA failed. try to PIO mode
697 * see
698 * rsnd_ssi_fallback()
699 * rsnd_rdai_continuance_probe()
700 */
701 if (!dmac)
Kuninori Morimoto355cb84fb2016-01-21 01:58:33 +0000702 return -EAGAIN;
Kuninori Morimoto232c00b2015-10-26 08:38:26 +0000703
Kuninori Morimoto940e9472015-10-26 08:42:25 +0000704 rsnd_dma_of_path(mod, io, is_play, &mod_from, &mod_to);
Kuninori Morimoto85374832015-03-10 01:25:01 +0000705
Kuninori Morimotod188e142018-04-11 02:10:29 +0000706 /* for Gen2 or later */
Kuninori Morimoto81ecbb62015-10-26 08:39:20 +0000707 if (mod_from && mod_to) {
Kuninori Morimoto497deba2015-10-26 08:43:01 +0000708 ops = &rsnd_dmapp_ops;
Kuninori Morimoto81ecbb62015-10-26 08:39:20 +0000709 attach = rsnd_dmapp_attach;
Kuninori Morimoto940e9472015-10-26 08:42:25 +0000710 dma_id = dmac->dmapp_num;
Kuninori Morimoto497deba2015-10-26 08:43:01 +0000711 type = RSND_MOD_AUDMAPP;
Kuninori Morimoto81ecbb62015-10-26 08:39:20 +0000712 } else {
Kuninori Morimoto497deba2015-10-26 08:43:01 +0000713 ops = &rsnd_dmaen_ops;
Kuninori Morimoto81ecbb62015-10-26 08:39:20 +0000714 attach = rsnd_dmaen_attach;
Kuninori Morimoto940e9472015-10-26 08:42:25 +0000715 dma_id = dmac->dmaen_num;
Kuninori Morimoto497deba2015-10-26 08:43:01 +0000716 type = RSND_MOD_AUDMA;
Kuninori Morimoto81ecbb62015-10-26 08:39:20 +0000717 }
Kuninori Morimoto288f3922015-02-20 10:27:42 +0000718
719 /* for Gen1, overwrite */
Kuninori Morimoto81ecbb62015-10-26 08:39:20 +0000720 if (rsnd_is_gen1(priv)) {
Kuninori Morimoto497deba2015-10-26 08:43:01 +0000721 ops = &rsnd_dmaen_ops;
Kuninori Morimoto81ecbb62015-10-26 08:39:20 +0000722 attach = rsnd_dmaen_attach;
Kuninori Morimoto940e9472015-10-26 08:42:25 +0000723 dma_id = dmac->dmaen_num;
Kuninori Morimoto497deba2015-10-26 08:43:01 +0000724 type = RSND_MOD_AUDMA;
Kuninori Morimoto81ecbb62015-10-26 08:39:20 +0000725 }
Kuninori Morimoto3c685652015-02-20 10:27:12 +0000726
Kuninori Morimoto81cb7122017-09-20 06:28:44 +0000727 dma = devm_kzalloc(dev, sizeof(*dma), GFP_KERNEL);
728 if (!dma)
729 return -ENOMEM;
Kuninori Morimoto940e9472015-10-26 08:42:25 +0000730
Kuninori Morimoto81cb7122017-09-20 06:28:44 +0000731 *dma_mod = rsnd_mod_get(dma);
Kuninori Morimoto355cb84fb2016-01-21 01:58:33 +0000732
Kuninori Morimoto81cb7122017-09-20 06:28:44 +0000733 ret = rsnd_mod_init(priv, *dma_mod, ops, NULL,
734 rsnd_mod_get_status, type, dma_id);
Kuninori Morimoto940e9472015-10-26 08:42:25 +0000735 if (ret < 0)
Kuninori Morimoto355cb84fb2016-01-21 01:58:33 +0000736 return ret;
Kuninori Morimoto940e9472015-10-26 08:42:25 +0000737
Kuninori Morimoto81cb7122017-09-20 06:28:44 +0000738 dev_dbg(dev, "%s[%d] %s[%d] -> %s[%d]\n",
739 rsnd_mod_name(*dma_mod), rsnd_mod_id(*dma_mod),
Kuninori Morimoto9b6ea252017-11-01 07:17:34 +0000740 rsnd_mod_name(mod_from ? mod_from : &mem),
741 rsnd_mod_id (mod_from ? mod_from : &mem),
742 rsnd_mod_name(mod_to ? mod_to : &mem),
743 rsnd_mod_id (mod_to ? mod_to : &mem));
Kuninori Morimoto81cb7122017-09-20 06:28:44 +0000744
745 ret = attach(io, dma, mod_from, mod_to);
746 if (ret < 0)
747 return ret;
748
749 dma->src_addr = rsnd_dma_addr(io, mod_from, is_play, 1);
750 dma->dst_addr = rsnd_dma_addr(io, mod_to, is_play, 0);
751 dma->mod_from = mod_from;
752 dma->mod_to = mod_to;
753
Kuninori Morimoto355cb84fb2016-01-21 01:58:33 +0000754 return 0;
Kuninori Morimoto3c685652015-02-20 10:27:12 +0000755}
Kuninori Morimoto288f3922015-02-20 10:27:42 +0000756
Kuninori Morimoto81cb7122017-09-20 06:28:44 +0000757int rsnd_dma_attach(struct rsnd_dai_stream *io, struct rsnd_mod *mod,
758 struct rsnd_mod **dma_mod)
759{
760 if (!(*dma_mod)) {
761 int ret = rsnd_dma_alloc(io, mod, dma_mod);
762
763 if (ret < 0)
764 return ret;
765 }
766
767 return rsnd_dai_connect(*dma_mod, io, (*dma_mod)->type);
768}
769
Kuninori Morimoto2ea6b072015-11-10 05:14:12 +0000770int rsnd_dma_probe(struct rsnd_priv *priv)
Kuninori Morimoto288f3922015-02-20 10:27:42 +0000771{
Kuninori Morimoto2ea6b072015-11-10 05:14:12 +0000772 struct platform_device *pdev = rsnd_priv_to_pdev(priv);
Kuninori Morimoto288f3922015-02-20 10:27:42 +0000773 struct device *dev = rsnd_priv_to_dev(priv);
774 struct rsnd_dma_ctrl *dmac;
775 struct resource *res;
776
777 /*
778 * for Gen1
779 */
780 if (rsnd_is_gen1(priv))
781 return 0;
782
783 /*
Kuninori Morimotod188e142018-04-11 02:10:29 +0000784 * for Gen2 or later
Kuninori Morimoto288f3922015-02-20 10:27:42 +0000785 */
786 res = platform_get_resource_byname(pdev, IORESOURCE_MEM, "audmapp");
787 dmac = devm_kzalloc(dev, sizeof(*dmac), GFP_KERNEL);
788 if (!dmac || !res) {
789 dev_err(dev, "dma allocate failed\n");
Kuninori Morimoto85374832015-03-10 01:25:01 +0000790 return 0; /* it will be PIO mode */
Kuninori Morimoto288f3922015-02-20 10:27:42 +0000791 }
792
793 dmac->dmapp_num = 0;
794 dmac->base = devm_ioremap_resource(dev, res);
795 if (IS_ERR(dmac->base))
796 return PTR_ERR(dmac->base);
797
798 priv->dma = dmac;
799
Kuninori Morimoto9b6ea252017-11-01 07:17:34 +0000800 /* dummy mem mod for debug */
801 return rsnd_mod_init(NULL, &mem, &mem_ops, NULL, NULL, 0, 0);
Kuninori Morimoto288f3922015-02-20 10:27:42 +0000802}