blob: edeb74a13c0f6bf766988884c2c2ae5b05bdb717 [file] [log] [blame]
Kuninori Morimotobfe834b2015-02-20 10:25:55 +00001/*
2 * Renesas R-Car Audio DMAC support
3 *
4 * Copyright (C) 2015 Renesas Electronics Corp.
5 * Copyright (c) 2015 Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>
6 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License version 2 as
9 * published by the Free Software Foundation.
10 */
Kuninori Morimoto288f3922015-02-20 10:27:42 +000011#include <linux/delay.h>
Kuninori Morimoto72adc612015-02-20 10:31:23 +000012#include <linux/of_dma.h>
Kuninori Morimotobfe834b2015-02-20 10:25:55 +000013#include "rsnd.h"
14
Kuninori Morimoto288f3922015-02-20 10:27:42 +000015/*
16 * Audio DMAC peri peri register
17 */
18#define PDMASAR 0x00
19#define PDMADAR 0x04
20#define PDMACHCR 0x0c
21
22/* PDMACHCR */
23#define PDMACHCR_DE (1 << 0)
24
Kuninori Morimoto3e5afa72015-10-26 08:38:58 +000025
26struct rsnd_dmaen {
27 struct dma_chan *chan;
28};
29
30struct rsnd_dmapp {
31 int dmapp_id;
32 u32 chcr;
33};
34
35struct rsnd_dma {
Kuninori Morimoto940e9472015-10-26 08:42:25 +000036 struct rsnd_mod mod;
Kuninori Morimoto3e5afa72015-10-26 08:38:58 +000037 dma_addr_t src_addr;
38 dma_addr_t dst_addr;
39 union {
40 struct rsnd_dmaen en;
41 struct rsnd_dmapp pp;
42 } dma;
43};
44
Kuninori Morimoto288f3922015-02-20 10:27:42 +000045struct rsnd_dma_ctrl {
46 void __iomem *base;
Kuninori Morimoto940e9472015-10-26 08:42:25 +000047 int dmaen_num;
Kuninori Morimoto288f3922015-02-20 10:27:42 +000048 int dmapp_num;
49};
50
51#define rsnd_priv_to_dmac(p) ((struct rsnd_dma_ctrl *)(p)->dma)
Kuninori Morimoto940e9472015-10-26 08:42:25 +000052#define rsnd_mod_to_dma(_mod) container_of((_mod), struct rsnd_dma, mod)
Kuninori Morimoto3e5afa72015-10-26 08:38:58 +000053#define rsnd_dma_to_dmaen(dma) (&(dma)->dma.en)
54#define rsnd_dma_to_dmapp(dma) (&(dma)->dma.pp)
Kuninori Morimoto288f3922015-02-20 10:27:42 +000055
56/*
57 * Audio DMAC
58 */
Kuninori Morimoto9b99e9a2015-06-15 06:26:25 +000059static void __rsnd_dmaen_complete(struct rsnd_mod *mod,
60 struct rsnd_dai_stream *io)
Kuninori Morimotobfe834b2015-02-20 10:25:55 +000061{
Kuninori Morimoto75defee2015-06-15 06:21:15 +000062 struct rsnd_priv *priv = rsnd_mod_to_priv(mod);
Kuninori Morimoto75defee2015-06-15 06:21:15 +000063 bool elapsed = false;
64 unsigned long flags;
Kuninori Morimotobfe834b2015-02-20 10:25:55 +000065
66 /*
67 * Renesas sound Gen1 needs 1 DMAC,
68 * Gen2 needs 2 DMAC.
69 * In Gen2 case, it are Audio-DMAC, and Audio-DMAC-peri-peri.
70 * But, Audio-DMAC-peri-peri doesn't have interrupt,
71 * and this driver is assuming that here.
72 *
73 * If Audio-DMAC-peri-peri has interrpt,
74 * rsnd_dai_pointer_update() will be called twice,
75 * ant it will breaks io->byte_pos
76 */
Kuninori Morimoto75defee2015-06-15 06:21:15 +000077 spin_lock_irqsave(&priv->lock, flags);
Kuninori Morimotobfe834b2015-02-20 10:25:55 +000078
Kuninori Morimotod5bbe7d2015-06-15 06:27:47 +000079 if (rsnd_io_is_working(io))
Kuninori Morimoto9b99e9a2015-06-15 06:26:25 +000080 elapsed = rsnd_dai_pointer_update(io, io->byte_per_period);
Kuninori Morimoto75defee2015-06-15 06:21:15 +000081
82 spin_unlock_irqrestore(&priv->lock, flags);
83
84 if (elapsed)
85 rsnd_dai_period_elapsed(io);
Kuninori Morimotobfe834b2015-02-20 10:25:55 +000086}
87
Kuninori Morimoto9b99e9a2015-06-15 06:26:25 +000088static void rsnd_dmaen_complete(void *data)
89{
90 struct rsnd_mod *mod = data;
91
92 rsnd_mod_interrupt(mod, __rsnd_dmaen_complete);
93}
94
Kuninori Morimoto497deba2015-10-26 08:43:01 +000095static int rsnd_dmaen_stop(struct rsnd_mod *mod,
96 struct rsnd_dai_stream *io,
97 struct rsnd_priv *priv)
Kuninori Morimotobfe834b2015-02-20 10:25:55 +000098{
Kuninori Morimoto76c80b52015-10-26 08:42:46 +000099 struct rsnd_dma *dma = rsnd_mod_to_dma(mod);
Kuninori Morimoto0d00a522015-02-20 10:29:13 +0000100 struct rsnd_dmaen *dmaen = rsnd_dma_to_dmaen(dma);
101
102 dmaengine_terminate_all(dmaen->chan);
Kuninori Morimoto497deba2015-10-26 08:43:01 +0000103
104 return 0;
Kuninori Morimotobfe834b2015-02-20 10:25:55 +0000105}
106
Kuninori Morimoto497deba2015-10-26 08:43:01 +0000107static int rsnd_dmaen_start(struct rsnd_mod *mod,
108 struct rsnd_dai_stream *io,
109 struct rsnd_priv *priv)
Kuninori Morimotobfe834b2015-02-20 10:25:55 +0000110{
Kuninori Morimoto76c80b52015-10-26 08:42:46 +0000111 struct rsnd_dma *dma = rsnd_mod_to_dma(mod);
Kuninori Morimoto0d00a522015-02-20 10:29:13 +0000112 struct rsnd_dmaen *dmaen = rsnd_dma_to_dmaen(dma);
Kuninori Morimotobfe834b2015-02-20 10:25:55 +0000113 struct snd_pcm_substream *substream = io->substream;
114 struct device *dev = rsnd_priv_to_dev(priv);
115 struct dma_async_tx_descriptor *desc;
Kuninori Morimotoaaf4fce2015-02-20 10:28:32 +0000116 int is_play = rsnd_io_is_play(io);
Kuninori Morimotobfe834b2015-02-20 10:25:55 +0000117
Kuninori Morimoto0d00a522015-02-20 10:29:13 +0000118 desc = dmaengine_prep_dma_cyclic(dmaen->chan,
Kuninori Morimotobfe834b2015-02-20 10:25:55 +0000119 substream->runtime->dma_addr,
120 snd_pcm_lib_buffer_bytes(substream),
121 snd_pcm_lib_period_bytes(substream),
Kuninori Morimotoaaf4fce2015-02-20 10:28:32 +0000122 is_play ? DMA_MEM_TO_DEV : DMA_DEV_TO_MEM,
Kuninori Morimotobfe834b2015-02-20 10:25:55 +0000123 DMA_PREP_INTERRUPT | DMA_CTRL_ACK);
124
125 if (!desc) {
126 dev_err(dev, "dmaengine_prep_slave_sg() fail\n");
Kuninori Morimoto497deba2015-10-26 08:43:01 +0000127 return -EIO;
Kuninori Morimotobfe834b2015-02-20 10:25:55 +0000128 }
129
Kuninori Morimoto3c685652015-02-20 10:27:12 +0000130 desc->callback = rsnd_dmaen_complete;
Kuninori Morimoto497deba2015-10-26 08:43:01 +0000131 desc->callback_param = rsnd_mod_get(dma);
Kuninori Morimotobfe834b2015-02-20 10:25:55 +0000132
133 if (dmaengine_submit(desc) < 0) {
134 dev_err(dev, "dmaengine_submit() fail\n");
Kuninori Morimoto497deba2015-10-26 08:43:01 +0000135 return -EIO;
Kuninori Morimotobfe834b2015-02-20 10:25:55 +0000136 }
137
Kuninori Morimoto0d00a522015-02-20 10:29:13 +0000138 dma_async_issue_pending(dmaen->chan);
Kuninori Morimoto497deba2015-10-26 08:43:01 +0000139
140 return 0;
Kuninori Morimotobfe834b2015-02-20 10:25:55 +0000141}
142
Kuninori Morimoto72adc612015-02-20 10:31:23 +0000143struct dma_chan *rsnd_dma_request_channel(struct device_node *of_node,
144 struct rsnd_mod *mod, char *name)
145{
146 struct dma_chan *chan;
147 struct device_node *np;
148 int i = 0;
149
150 for_each_child_of_node(of_node, np) {
151 if (i == rsnd_mod_id(mod))
152 break;
153 i++;
154 }
155
156 chan = of_dma_request_slave_channel(np, name);
157
158 of_node_put(np);
159 of_node_put(of_node);
160
161 return chan;
162}
163
Kuninori Morimoto9b99e9a2015-06-15 06:26:25 +0000164static struct dma_chan *rsnd_dmaen_request_channel(struct rsnd_dai_stream *io,
165 struct rsnd_mod *mod_from,
Kuninori Morimoto72adc612015-02-20 10:31:23 +0000166 struct rsnd_mod *mod_to)
167{
168 if ((!mod_from && !mod_to) ||
169 (mod_from && mod_to))
170 return NULL;
171
172 if (mod_from)
Kuninori Morimoto9b99e9a2015-06-15 06:26:25 +0000173 return rsnd_mod_dma_req(io, mod_from);
Kuninori Morimoto72adc612015-02-20 10:31:23 +0000174 else
Kuninori Morimoto9b99e9a2015-06-15 06:26:25 +0000175 return rsnd_mod_dma_req(io, mod_to);
Kuninori Morimoto72adc612015-02-20 10:31:23 +0000176}
177
Kuninori Morimoto497deba2015-10-26 08:43:01 +0000178static int rsnd_dmaen_remove(struct rsnd_mod *mod,
179 struct rsnd_dai_stream *io,
180 struct rsnd_priv *priv)
181{
182 struct rsnd_dma *dma = rsnd_mod_to_dma(mod);
183 struct rsnd_dmaen *dmaen = rsnd_dma_to_dmaen(dma);
184
185 if (dmaen->chan)
186 dma_release_channel(dmaen->chan);
187
188 dmaen->chan = NULL;
189
190 return 0;
191}
192
Kuninori Morimoto81ecbb62015-10-26 08:39:20 +0000193static int rsnd_dmaen_attach(struct rsnd_dai_stream *io,
Kuninori Morimoto9b99e9a2015-06-15 06:26:25 +0000194 struct rsnd_dma *dma, int id,
Kuninori Morimoto3c685652015-02-20 10:27:12 +0000195 struct rsnd_mod *mod_from, struct rsnd_mod *mod_to)
Kuninori Morimotobfe834b2015-02-20 10:25:55 +0000196{
Kuninori Morimoto497deba2015-10-26 08:43:01 +0000197 struct rsnd_mod *mod = rsnd_mod_get(dma);
Kuninori Morimoto0d00a522015-02-20 10:29:13 +0000198 struct rsnd_dmaen *dmaen = rsnd_dma_to_dmaen(dma);
Kuninori Morimoto9b99e9a2015-06-15 06:26:25 +0000199 struct rsnd_priv *priv = rsnd_io_to_priv(io);
Kuninori Morimoto940e9472015-10-26 08:42:25 +0000200 struct rsnd_dma_ctrl *dmac = rsnd_priv_to_dmac(priv);
Kuninori Morimotobfe834b2015-02-20 10:25:55 +0000201 struct device *dev = rsnd_priv_to_dev(priv);
202 struct dma_slave_config cfg = {};
Kuninori Morimotobfe834b2015-02-20 10:25:55 +0000203 int is_play = rsnd_io_is_play(io);
Kuninori Morimotobfe834b2015-02-20 10:25:55 +0000204 int ret;
205
Kuninori Morimoto0d00a522015-02-20 10:29:13 +0000206 if (dmaen->chan) {
Kuninori Morimotobfe834b2015-02-20 10:25:55 +0000207 dev_err(dev, "it already has dma channel\n");
208 return -EIO;
209 }
210
Kuninori Morimoto72adc612015-02-20 10:31:23 +0000211 if (dev->of_node) {
Kuninori Morimoto9b99e9a2015-06-15 06:26:25 +0000212 dmaen->chan = rsnd_dmaen_request_channel(io, mod_from, mod_to);
Kuninori Morimoto72adc612015-02-20 10:31:23 +0000213 } else {
214 dma_cap_mask_t mask;
Kuninori Morimotobfe834b2015-02-20 10:25:55 +0000215
Kuninori Morimoto72adc612015-02-20 10:31:23 +0000216 dma_cap_zero(mask);
217 dma_cap_set(DMA_SLAVE, mask);
218
219 dmaen->chan = dma_request_channel(mask, shdma_chan_filter,
Geert Uytterhoeven1af2cc62015-08-11 14:47:18 +0200220 (void *)(uintptr_t)id);
Kuninori Morimoto72adc612015-02-20 10:31:23 +0000221 }
222 if (IS_ERR_OR_NULL(dmaen->chan)) {
Kuninori Morimotod1acba22015-04-13 06:00:45 +0000223 dmaen->chan = NULL;
Kuninori Morimoto72adc612015-02-20 10:31:23 +0000224 dev_err(dev, "can't get dma channel\n");
225 goto rsnd_dma_channel_err;
226 }
Kuninori Morimotobfe834b2015-02-20 10:25:55 +0000227
228 cfg.direction = is_play ? DMA_MEM_TO_DEV : DMA_DEV_TO_MEM;
Kuninori Morimoto3c685652015-02-20 10:27:12 +0000229 cfg.src_addr = dma->src_addr;
230 cfg.dst_addr = dma->dst_addr;
Kuninori Morimotobfe834b2015-02-20 10:25:55 +0000231 cfg.src_addr_width = DMA_SLAVE_BUSWIDTH_4_BYTES;
232 cfg.dst_addr_width = DMA_SLAVE_BUSWIDTH_4_BYTES;
233
Kuninori Morimoto497deba2015-10-26 08:43:01 +0000234 dev_dbg(dev, "%s[%d] %pad -> %pad\n",
235 rsnd_mod_name(mod), rsnd_mod_id(mod),
Kuninori Morimoto72adc612015-02-20 10:31:23 +0000236 &cfg.src_addr, &cfg.dst_addr);
Kuninori Morimotobfe834b2015-02-20 10:25:55 +0000237
Kuninori Morimoto0d00a522015-02-20 10:29:13 +0000238 ret = dmaengine_slave_config(dmaen->chan, &cfg);
Kuninori Morimotobfe834b2015-02-20 10:25:55 +0000239 if (ret < 0)
Kuninori Morimoto81ecbb62015-10-26 08:39:20 +0000240 goto rsnd_dma_attach_err;
Kuninori Morimotobfe834b2015-02-20 10:25:55 +0000241
Kuninori Morimoto940e9472015-10-26 08:42:25 +0000242 dmac->dmaen_num++;
243
Kuninori Morimotobfe834b2015-02-20 10:25:55 +0000244 return 0;
245
Kuninori Morimoto81ecbb62015-10-26 08:39:20 +0000246rsnd_dma_attach_err:
Kuninori Morimoto497deba2015-10-26 08:43:01 +0000247 rsnd_dmaen_remove(mod, io, priv);
Kuninori Morimotobfe834b2015-02-20 10:25:55 +0000248rsnd_dma_channel_err:
249
250 /*
251 * DMA failed. try to PIO mode
252 * see
253 * rsnd_ssi_fallback()
254 * rsnd_rdai_continuance_probe()
255 */
256 return -EAGAIN;
257}
258
Kuninori Morimoto497deba2015-10-26 08:43:01 +0000259static struct rsnd_mod_ops rsnd_dmaen_ops = {
Kuninori Morimotoddea1b22015-07-15 07:16:03 +0000260 .name = "audmac",
Kuninori Morimoto3c685652015-02-20 10:27:12 +0000261 .start = rsnd_dmaen_start,
262 .stop = rsnd_dmaen_stop,
Kuninori Morimoto497deba2015-10-26 08:43:01 +0000263 .remove = rsnd_dmaen_remove,
Kuninori Morimoto3c685652015-02-20 10:27:12 +0000264};
265
Kuninori Morimoto747c71b2015-02-20 10:26:29 +0000266/*
Kuninori Morimoto288f3922015-02-20 10:27:42 +0000267 * Audio DMAC peri peri
268 */
269static const u8 gen2_id_table_ssiu[] = {
270 0x00, /* SSI00 */
271 0x04, /* SSI10 */
272 0x08, /* SSI20 */
273 0x0c, /* SSI3 */
274 0x0d, /* SSI4 */
275 0x0e, /* SSI5 */
276 0x0f, /* SSI6 */
277 0x10, /* SSI7 */
278 0x11, /* SSI8 */
279 0x12, /* SSI90 */
280};
281static const u8 gen2_id_table_scu[] = {
282 0x2d, /* SCU_SRCI0 */
283 0x2e, /* SCU_SRCI1 */
284 0x2f, /* SCU_SRCI2 */
285 0x30, /* SCU_SRCI3 */
286 0x31, /* SCU_SRCI4 */
287 0x32, /* SCU_SRCI5 */
288 0x33, /* SCU_SRCI6 */
289 0x34, /* SCU_SRCI7 */
290 0x35, /* SCU_SRCI8 */
291 0x36, /* SCU_SRCI9 */
292};
293static const u8 gen2_id_table_cmd[] = {
294 0x37, /* SCU_CMD0 */
295 0x38, /* SCU_CMD1 */
296};
297
Kuninori Morimoto9b99e9a2015-06-15 06:26:25 +0000298static u32 rsnd_dmapp_get_id(struct rsnd_dai_stream *io,
299 struct rsnd_mod *mod)
Kuninori Morimoto288f3922015-02-20 10:27:42 +0000300{
Kuninori Morimoto288f3922015-02-20 10:27:42 +0000301 struct rsnd_mod *ssi = rsnd_io_to_mod_ssi(io);
302 struct rsnd_mod *src = rsnd_io_to_mod_src(io);
303 struct rsnd_mod *dvc = rsnd_io_to_mod_dvc(io);
304 const u8 *entry = NULL;
305 int id = rsnd_mod_id(mod);
306 int size = 0;
307
308 if (mod == ssi) {
309 entry = gen2_id_table_ssiu;
310 size = ARRAY_SIZE(gen2_id_table_ssiu);
311 } else if (mod == src) {
312 entry = gen2_id_table_scu;
313 size = ARRAY_SIZE(gen2_id_table_scu);
314 } else if (mod == dvc) {
315 entry = gen2_id_table_cmd;
316 size = ARRAY_SIZE(gen2_id_table_cmd);
317 }
318
Kuninori Morimotoee057d22016-05-10 02:22:37 +0000319 if ((!entry) || (size <= id)) {
320 struct device *dev = rsnd_priv_to_dev(rsnd_io_to_priv(io));
Kuninori Morimoto288f3922015-02-20 10:27:42 +0000321
Kuninori Morimotoee057d22016-05-10 02:22:37 +0000322 dev_err(dev, "unknown connection (%s[%d])\n",
323 rsnd_mod_name(mod), rsnd_mod_id(mod));
324
325 /* use non-prohibited SRS number as error */
326 return 0x00; /* SSI00 */
327 }
Kuninori Morimoto288f3922015-02-20 10:27:42 +0000328
329 return entry[id];
330}
331
Kuninori Morimoto9b99e9a2015-06-15 06:26:25 +0000332static u32 rsnd_dmapp_get_chcr(struct rsnd_dai_stream *io,
333 struct rsnd_mod *mod_from,
Kuninori Morimoto288f3922015-02-20 10:27:42 +0000334 struct rsnd_mod *mod_to)
335{
Kuninori Morimoto9b99e9a2015-06-15 06:26:25 +0000336 return (rsnd_dmapp_get_id(io, mod_from) << 24) +
337 (rsnd_dmapp_get_id(io, mod_to) << 16);
Kuninori Morimoto288f3922015-02-20 10:27:42 +0000338}
339
340#define rsnd_dmapp_addr(dmac, dma, reg) \
Kuninori Morimoto0d00a522015-02-20 10:29:13 +0000341 (dmac->base + 0x20 + reg + \
342 (0x10 * rsnd_dma_to_dmapp(dma)->dmapp_id))
Kuninori Morimoto288f3922015-02-20 10:27:42 +0000343static void rsnd_dmapp_write(struct rsnd_dma *dma, u32 data, u32 reg)
344{
Kuninori Morimoto940e9472015-10-26 08:42:25 +0000345 struct rsnd_mod *mod = rsnd_mod_get(dma);
Kuninori Morimoto288f3922015-02-20 10:27:42 +0000346 struct rsnd_priv *priv = rsnd_mod_to_priv(mod);
347 struct rsnd_dma_ctrl *dmac = rsnd_priv_to_dmac(priv);
348 struct device *dev = rsnd_priv_to_dev(priv);
349
350 dev_dbg(dev, "w %p : %08x\n", rsnd_dmapp_addr(dmac, dma, reg), data);
351
352 iowrite32(data, rsnd_dmapp_addr(dmac, dma, reg));
353}
354
355static u32 rsnd_dmapp_read(struct rsnd_dma *dma, u32 reg)
356{
Kuninori Morimoto940e9472015-10-26 08:42:25 +0000357 struct rsnd_mod *mod = rsnd_mod_get(dma);
Kuninori Morimoto288f3922015-02-20 10:27:42 +0000358 struct rsnd_priv *priv = rsnd_mod_to_priv(mod);
359 struct rsnd_dma_ctrl *dmac = rsnd_priv_to_dmac(priv);
360
361 return ioread32(rsnd_dmapp_addr(dmac, dma, reg));
362}
363
Kuninori Morimoto8652baa2017-03-14 09:34:49 +0900364static void rsnd_dmapp_bset(struct rsnd_dma *dma, u32 data, u32 mask, u32 reg)
365{
366 struct rsnd_mod *mod = rsnd_mod_get(dma);
367 struct rsnd_priv *priv = rsnd_mod_to_priv(mod);
368 struct rsnd_dma_ctrl *dmac = rsnd_priv_to_dmac(priv);
369 volatile void __iomem *addr = rsnd_dmapp_addr(dmac, dma, reg);
370 u32 val = ioread32(addr);
371
372 val &= ~mask;
373 val |= (data & mask);
374
375 iowrite32(val, addr);
376}
377
Kuninori Morimoto497deba2015-10-26 08:43:01 +0000378static int rsnd_dmapp_stop(struct rsnd_mod *mod,
379 struct rsnd_dai_stream *io,
380 struct rsnd_priv *priv)
Kuninori Morimoto288f3922015-02-20 10:27:42 +0000381{
Kuninori Morimoto76c80b52015-10-26 08:42:46 +0000382 struct rsnd_dma *dma = rsnd_mod_to_dma(mod);
Kuninori Morimoto288f3922015-02-20 10:27:42 +0000383 int i;
384
Kuninori Morimoto8652baa2017-03-14 09:34:49 +0900385 rsnd_dmapp_bset(dma, 0, PDMACHCR_DE, PDMACHCR);
Kuninori Morimoto288f3922015-02-20 10:27:42 +0000386
387 for (i = 0; i < 1024; i++) {
Kuninori Morimoto8652baa2017-03-14 09:34:49 +0900388 if (0 == (rsnd_dmapp_read(dma, PDMACHCR) & PDMACHCR_DE))
Kuninori Morimoto9c66eed2015-10-28 04:31:03 +0000389 return 0;
Kuninori Morimoto288f3922015-02-20 10:27:42 +0000390 udelay(1);
391 }
Kuninori Morimoto497deba2015-10-26 08:43:01 +0000392
Kuninori Morimoto9c66eed2015-10-28 04:31:03 +0000393 return -EIO;
Kuninori Morimoto288f3922015-02-20 10:27:42 +0000394}
395
Kuninori Morimoto497deba2015-10-26 08:43:01 +0000396static int rsnd_dmapp_start(struct rsnd_mod *mod,
397 struct rsnd_dai_stream *io,
398 struct rsnd_priv *priv)
Kuninori Morimoto288f3922015-02-20 10:27:42 +0000399{
Kuninori Morimoto76c80b52015-10-26 08:42:46 +0000400 struct rsnd_dma *dma = rsnd_mod_to_dma(mod);
Kuninori Morimoto0d00a522015-02-20 10:29:13 +0000401 struct rsnd_dmapp *dmapp = rsnd_dma_to_dmapp(dma);
402
Kuninori Morimoto288f3922015-02-20 10:27:42 +0000403 rsnd_dmapp_write(dma, dma->src_addr, PDMASAR);
404 rsnd_dmapp_write(dma, dma->dst_addr, PDMADAR);
Kuninori Morimoto0d00a522015-02-20 10:29:13 +0000405 rsnd_dmapp_write(dma, dmapp->chcr, PDMACHCR);
Kuninori Morimoto497deba2015-10-26 08:43:01 +0000406
407 return 0;
Kuninori Morimoto288f3922015-02-20 10:27:42 +0000408}
409
Kuninori Morimoto81ecbb62015-10-26 08:39:20 +0000410static int rsnd_dmapp_attach(struct rsnd_dai_stream *io,
411 struct rsnd_dma *dma, int id,
412 struct rsnd_mod *mod_from, struct rsnd_mod *mod_to)
Kuninori Morimoto288f3922015-02-20 10:27:42 +0000413{
Kuninori Morimoto0d00a522015-02-20 10:29:13 +0000414 struct rsnd_dmapp *dmapp = rsnd_dma_to_dmapp(dma);
Kuninori Morimoto9b99e9a2015-06-15 06:26:25 +0000415 struct rsnd_priv *priv = rsnd_io_to_priv(io);
Kuninori Morimoto288f3922015-02-20 10:27:42 +0000416 struct rsnd_dma_ctrl *dmac = rsnd_priv_to_dmac(priv);
417 struct device *dev = rsnd_priv_to_dev(priv);
418
Kuninori Morimoto0d00a522015-02-20 10:29:13 +0000419 dmapp->dmapp_id = dmac->dmapp_num;
Kuninori Morimoto9b99e9a2015-06-15 06:26:25 +0000420 dmapp->chcr = rsnd_dmapp_get_chcr(io, mod_from, mod_to) | PDMACHCR_DE;
Kuninori Morimoto288f3922015-02-20 10:27:42 +0000421
422 dmac->dmapp_num++;
423
Geert Uytterhoeven6ec6fb62015-03-10 11:48:05 +0100424 dev_dbg(dev, "id/src/dst/chcr = %d/%pad/%pad/%08x\n",
425 dmapp->dmapp_id, &dma->src_addr, &dma->dst_addr, dmapp->chcr);
Kuninori Morimoto288f3922015-02-20 10:27:42 +0000426
427 return 0;
428}
429
Kuninori Morimoto497deba2015-10-26 08:43:01 +0000430static struct rsnd_mod_ops rsnd_dmapp_ops = {
Kuninori Morimotoddea1b22015-07-15 07:16:03 +0000431 .name = "audmac-pp",
Kuninori Morimoto288f3922015-02-20 10:27:42 +0000432 .start = rsnd_dmapp_start,
433 .stop = rsnd_dmapp_stop,
Kuninori Morimoto288f3922015-02-20 10:27:42 +0000434 .quit = rsnd_dmapp_stop,
435};
436
437/*
438 * Common DMAC Interface
439 */
440
441/*
Kuninori Morimoto747c71b2015-02-20 10:26:29 +0000442 * DMA read/write register offset
443 *
444 * RSND_xxx_I_N for Audio DMAC input
445 * RSND_xxx_O_N for Audio DMAC output
446 * RSND_xxx_I_P for Audio DMAC peri peri input
447 * RSND_xxx_O_P for Audio DMAC peri peri output
448 *
449 * ex) R-Car H2 case
450 * mod / DMAC in / DMAC out / DMAC PP in / DMAC pp out
451 * SSI : 0xec541000 / 0xec241008 / 0xec24100c
452 * SSIU: 0xec541000 / 0xec100000 / 0xec100000 / 0xec400000 / 0xec400000
453 * SCU : 0xec500000 / 0xec000000 / 0xec004000 / 0xec300000 / 0xec304000
454 * CMD : 0xec500000 / / 0xec008000 0xec308000
455 */
456#define RDMA_SSI_I_N(addr, i) (addr ##_reg - 0x00300000 + (0x40 * i) + 0x8)
457#define RDMA_SSI_O_N(addr, i) (addr ##_reg - 0x00300000 + (0x40 * i) + 0xc)
458
459#define RDMA_SSIU_I_N(addr, i) (addr ##_reg - 0x00441000 + (0x1000 * i))
460#define RDMA_SSIU_O_N(addr, i) (addr ##_reg - 0x00441000 + (0x1000 * i))
461
462#define RDMA_SSIU_I_P(addr, i) (addr ##_reg - 0x00141000 + (0x1000 * i))
463#define RDMA_SSIU_O_P(addr, i) (addr ##_reg - 0x00141000 + (0x1000 * i))
464
465#define RDMA_SRC_I_N(addr, i) (addr ##_reg - 0x00500000 + (0x400 * i))
466#define RDMA_SRC_O_N(addr, i) (addr ##_reg - 0x004fc000 + (0x400 * i))
467
468#define RDMA_SRC_I_P(addr, i) (addr ##_reg - 0x00200000 + (0x400 * i))
469#define RDMA_SRC_O_P(addr, i) (addr ##_reg - 0x001fc000 + (0x400 * i))
470
471#define RDMA_CMD_O_N(addr, i) (addr ##_reg - 0x004f8000 + (0x400 * i))
472#define RDMA_CMD_O_P(addr, i) (addr ##_reg - 0x001f8000 + (0x400 * i))
473
474static dma_addr_t
Kuninori Morimoto9b99e9a2015-06-15 06:26:25 +0000475rsnd_gen2_dma_addr(struct rsnd_dai_stream *io,
Kuninori Morimoto747c71b2015-02-20 10:26:29 +0000476 struct rsnd_mod *mod,
477 int is_play, int is_from)
478{
Kuninori Morimoto9b99e9a2015-06-15 06:26:25 +0000479 struct rsnd_priv *priv = rsnd_io_to_priv(io);
Kuninori Morimoto747c71b2015-02-20 10:26:29 +0000480 struct device *dev = rsnd_priv_to_dev(priv);
Kuninori Morimoto747c71b2015-02-20 10:26:29 +0000481 phys_addr_t ssi_reg = rsnd_gen_get_phy_addr(priv, RSND_GEN2_SSI);
482 phys_addr_t src_reg = rsnd_gen_get_phy_addr(priv, RSND_GEN2_SCU);
483 int is_ssi = !!(rsnd_io_to_mod_ssi(io) == mod);
484 int use_src = !!rsnd_io_to_mod_src(io);
Kuninori Morimoto9269e3c2015-07-15 07:17:17 +0000485 int use_cmd = !!rsnd_io_to_mod_dvc(io) ||
Kuninori Morimoto70fb1052015-07-15 07:17:36 +0000486 !!rsnd_io_to_mod_mix(io) ||
Kuninori Morimoto9269e3c2015-07-15 07:17:17 +0000487 !!rsnd_io_to_mod_ctu(io);
Kuninori Morimoto747c71b2015-02-20 10:26:29 +0000488 int id = rsnd_mod_id(mod);
489 struct dma_addr {
490 dma_addr_t out_addr;
491 dma_addr_t in_addr;
492 } dma_addrs[3][2][3] = {
493 /* SRC */
494 {{{ 0, 0 },
495 /* Capture */
496 { RDMA_SRC_O_N(src, id), RDMA_SRC_I_P(src, id) },
497 { RDMA_CMD_O_N(src, id), RDMA_SRC_I_P(src, id) } },
498 /* Playback */
499 {{ 0, 0, },
500 { RDMA_SRC_O_P(src, id), RDMA_SRC_I_N(src, id) },
501 { RDMA_CMD_O_P(src, id), RDMA_SRC_I_N(src, id) } }
502 },
503 /* SSI */
504 /* Capture */
505 {{{ RDMA_SSI_O_N(ssi, id), 0 },
506 { RDMA_SSIU_O_P(ssi, id), 0 },
507 { RDMA_SSIU_O_P(ssi, id), 0 } },
508 /* Playback */
509 {{ 0, RDMA_SSI_I_N(ssi, id) },
510 { 0, RDMA_SSIU_I_P(ssi, id) },
511 { 0, RDMA_SSIU_I_P(ssi, id) } }
512 },
513 /* SSIU */
514 /* Capture */
515 {{{ RDMA_SSIU_O_N(ssi, id), 0 },
516 { RDMA_SSIU_O_P(ssi, id), 0 },
517 { RDMA_SSIU_O_P(ssi, id), 0 } },
518 /* Playback */
519 {{ 0, RDMA_SSIU_I_N(ssi, id) },
520 { 0, RDMA_SSIU_I_P(ssi, id) },
521 { 0, RDMA_SSIU_I_P(ssi, id) } } },
522 };
523
524 /* it shouldn't happen */
Kuninori Morimoto9269e3c2015-07-15 07:17:17 +0000525 if (use_cmd && !use_src)
Kuninori Morimoto747c71b2015-02-20 10:26:29 +0000526 dev_err(dev, "DVC is selected without SRC\n");
527
528 /* use SSIU or SSI ? */
Kuninori Morimotob415b4d2015-10-22 03:15:46 +0000529 if (is_ssi && rsnd_ssi_use_busif(io))
Kuninori Morimoto747c71b2015-02-20 10:26:29 +0000530 is_ssi++;
531
532 return (is_from) ?
Kuninori Morimoto9269e3c2015-07-15 07:17:17 +0000533 dma_addrs[is_ssi][is_play][use_src + use_cmd].out_addr :
534 dma_addrs[is_ssi][is_play][use_src + use_cmd].in_addr;
Kuninori Morimoto747c71b2015-02-20 10:26:29 +0000535}
536
Kuninori Morimoto9b99e9a2015-06-15 06:26:25 +0000537static dma_addr_t rsnd_dma_addr(struct rsnd_dai_stream *io,
Kuninori Morimoto747c71b2015-02-20 10:26:29 +0000538 struct rsnd_mod *mod,
539 int is_play, int is_from)
540{
Kuninori Morimoto9b99e9a2015-06-15 06:26:25 +0000541 struct rsnd_priv *priv = rsnd_io_to_priv(io);
542
Kuninori Morimoto747c71b2015-02-20 10:26:29 +0000543 /*
544 * gen1 uses default DMA addr
545 */
546 if (rsnd_is_gen1(priv))
547 return 0;
548
549 if (!mod)
550 return 0;
551
Kuninori Morimoto9b99e9a2015-06-15 06:26:25 +0000552 return rsnd_gen2_dma_addr(io, mod, is_play, is_from);
Kuninori Morimoto747c71b2015-02-20 10:26:29 +0000553}
554
Kuninori Morimoto7dfb4912015-07-15 07:16:56 +0000555#define MOD_MAX (RSND_MOD_MAX + 1) /* +Memory */
Kuninori Morimoto940e9472015-10-26 08:42:25 +0000556static void rsnd_dma_of_path(struct rsnd_mod *this,
Kuninori Morimoto9b99e9a2015-06-15 06:26:25 +0000557 struct rsnd_dai_stream *io,
Kuninori Morimotobfe834b2015-02-20 10:25:55 +0000558 int is_play,
559 struct rsnd_mod **mod_from,
560 struct rsnd_mod **mod_to)
561{
Kuninori Morimotobfe834b2015-02-20 10:25:55 +0000562 struct rsnd_mod *ssi = rsnd_io_to_mod_ssi(io);
563 struct rsnd_mod *src = rsnd_io_to_mod_src(io);
Kuninori Morimoto9269e3c2015-07-15 07:17:17 +0000564 struct rsnd_mod *ctu = rsnd_io_to_mod_ctu(io);
Kuninori Morimoto70fb1052015-07-15 07:17:36 +0000565 struct rsnd_mod *mix = rsnd_io_to_mod_mix(io);
Kuninori Morimotobfe834b2015-02-20 10:25:55 +0000566 struct rsnd_mod *dvc = rsnd_io_to_mod_dvc(io);
567 struct rsnd_mod *mod[MOD_MAX];
Kuninori Morimoto7dfb4912015-07-15 07:16:56 +0000568 struct rsnd_mod *mod_start, *mod_end;
569 struct rsnd_priv *priv = rsnd_mod_to_priv(this);
570 struct device *dev = rsnd_priv_to_dev(priv);
Kuninori Morimoto40854c62015-10-26 08:40:19 +0000571 int nr, i, idx;
Kuninori Morimotobfe834b2015-02-20 10:25:55 +0000572
Kuninori Morimoto7dfb4912015-07-15 07:16:56 +0000573 if (!ssi)
574 return;
Kuninori Morimotobfe834b2015-02-20 10:25:55 +0000575
Kuninori Morimoto7dfb4912015-07-15 07:16:56 +0000576 nr = 0;
577 for (i = 0; i < MOD_MAX; i++) {
Kuninori Morimotobfe834b2015-02-20 10:25:55 +0000578 mod[i] = NULL;
Kuninori Morimoto7dfb4912015-07-15 07:16:56 +0000579 nr += !!rsnd_io_to_mod(io, i);
Kuninori Morimotobfe834b2015-02-20 10:25:55 +0000580 }
581
Kuninori Morimoto7dfb4912015-07-15 07:16:56 +0000582 /*
583 * [S] -*-> [E]
584 * [S] -*-> SRC -o-> [E]
585 * [S] -*-> SRC -> DVC -o-> [E]
586 * [S] -*-> SRC -> CTU -> MIX -> DVC -o-> [E]
587 *
588 * playback [S] = mem
589 * [E] = SSI
590 *
591 * capture [S] = SSI
592 * [E] = mem
593 *
594 * -*-> Audio DMAC
595 * -o-> Audio DMAC peri peri
596 */
597 mod_start = (is_play) ? NULL : ssi;
598 mod_end = (is_play) ? ssi : NULL;
599
Kuninori Morimoto40854c62015-10-26 08:40:19 +0000600 idx = 0;
601 mod[idx++] = mod_start;
Kuninori Morimoto7dfb4912015-07-15 07:16:56 +0000602 for (i = 1; i < nr; i++) {
603 if (src) {
Kuninori Morimoto40854c62015-10-26 08:40:19 +0000604 mod[idx++] = src;
Kuninori Morimoto7dfb4912015-07-15 07:16:56 +0000605 src = NULL;
Kuninori Morimoto9269e3c2015-07-15 07:17:17 +0000606 } else if (ctu) {
Kuninori Morimoto40854c62015-10-26 08:40:19 +0000607 mod[idx++] = ctu;
Kuninori Morimoto9269e3c2015-07-15 07:17:17 +0000608 ctu = NULL;
Kuninori Morimoto70fb1052015-07-15 07:17:36 +0000609 } else if (mix) {
Kuninori Morimoto40854c62015-10-26 08:40:19 +0000610 mod[idx++] = mix;
Kuninori Morimoto70fb1052015-07-15 07:17:36 +0000611 mix = NULL;
Kuninori Morimoto7dfb4912015-07-15 07:16:56 +0000612 } else if (dvc) {
Kuninori Morimoto40854c62015-10-26 08:40:19 +0000613 mod[idx++] = dvc;
Kuninori Morimoto7dfb4912015-07-15 07:16:56 +0000614 dvc = NULL;
615 }
616 }
Kuninori Morimoto40854c62015-10-26 08:40:19 +0000617 mod[idx] = mod_end;
Kuninori Morimoto7dfb4912015-07-15 07:16:56 +0000618
619 /*
620 * | SSI | SRC |
621 * -------------+-----+-----+
622 * is_play | o | * |
623 * !is_play | * | o |
624 */
625 if ((this == ssi) == (is_play)) {
Kuninori Morimoto40854c62015-10-26 08:40:19 +0000626 *mod_from = mod[idx - 1];
627 *mod_to = mod[idx];
Kuninori Morimotobfe834b2015-02-20 10:25:55 +0000628 } else {
Kuninori Morimoto7dfb4912015-07-15 07:16:56 +0000629 *mod_from = mod[0];
630 *mod_to = mod[1];
631 }
632
633 dev_dbg(dev, "module connection (this is %s[%d])\n",
634 rsnd_mod_name(this), rsnd_mod_id(this));
Kuninori Morimoto40854c62015-10-26 08:40:19 +0000635 for (i = 0; i <= idx; i++) {
Kuninori Morimoto7dfb4912015-07-15 07:16:56 +0000636 dev_dbg(dev, " %s[%d]%s\n",
637 rsnd_mod_name(mod[i]), rsnd_mod_id(mod[i]),
638 (mod[i] == *mod_from) ? " from" :
639 (mod[i] == *mod_to) ? " to" : "");
Kuninori Morimotobfe834b2015-02-20 10:25:55 +0000640 }
641}
642
Kuninori Morimoto355cb84fb2016-01-21 01:58:33 +0000643int rsnd_dma_attach(struct rsnd_dai_stream *io, struct rsnd_mod *mod,
644 struct rsnd_mod **dma_mod, int id)
Kuninori Morimoto3c685652015-02-20 10:27:12 +0000645{
Kuninori Morimoto7dfb4912015-07-15 07:16:56 +0000646 struct rsnd_mod *mod_from = NULL;
647 struct rsnd_mod *mod_to = NULL;
Kuninori Morimoto9b99e9a2015-06-15 06:26:25 +0000648 struct rsnd_priv *priv = rsnd_io_to_priv(io);
Kuninori Morimoto85374832015-03-10 01:25:01 +0000649 struct rsnd_dma_ctrl *dmac = rsnd_priv_to_dmac(priv);
Kuninori Morimotoddea1b22015-07-15 07:16:03 +0000650 struct device *dev = rsnd_priv_to_dev(priv);
Kuninori Morimoto497deba2015-10-26 08:43:01 +0000651 struct rsnd_mod_ops *ops;
652 enum rsnd_mod_type type;
Kuninori Morimoto81ecbb62015-10-26 08:39:20 +0000653 int (*attach)(struct rsnd_dai_stream *io, struct rsnd_dma *dma, int id,
654 struct rsnd_mod *mod_from, struct rsnd_mod *mod_to);
Kuninori Morimoto3c685652015-02-20 10:27:12 +0000655 int is_play = rsnd_io_is_play(io);
Kuninori Morimoto940e9472015-10-26 08:42:25 +0000656 int ret, dma_id;
Kuninori Morimoto3c685652015-02-20 10:27:12 +0000657
Kuninori Morimoto85374832015-03-10 01:25:01 +0000658 /*
659 * DMA failed. try to PIO mode
660 * see
661 * rsnd_ssi_fallback()
662 * rsnd_rdai_continuance_probe()
663 */
664 if (!dmac)
Kuninori Morimoto355cb84fb2016-01-21 01:58:33 +0000665 return -EAGAIN;
Kuninori Morimoto232c00b2015-10-26 08:38:26 +0000666
Kuninori Morimoto940e9472015-10-26 08:42:25 +0000667 rsnd_dma_of_path(mod, io, is_play, &mod_from, &mod_to);
Kuninori Morimoto85374832015-03-10 01:25:01 +0000668
Kuninori Morimoto288f3922015-02-20 10:27:42 +0000669 /* for Gen2 */
Kuninori Morimoto81ecbb62015-10-26 08:39:20 +0000670 if (mod_from && mod_to) {
Kuninori Morimoto497deba2015-10-26 08:43:01 +0000671 ops = &rsnd_dmapp_ops;
Kuninori Morimoto81ecbb62015-10-26 08:39:20 +0000672 attach = rsnd_dmapp_attach;
Kuninori Morimoto940e9472015-10-26 08:42:25 +0000673 dma_id = dmac->dmapp_num;
Kuninori Morimoto497deba2015-10-26 08:43:01 +0000674 type = RSND_MOD_AUDMAPP;
Kuninori Morimoto81ecbb62015-10-26 08:39:20 +0000675 } else {
Kuninori Morimoto497deba2015-10-26 08:43:01 +0000676 ops = &rsnd_dmaen_ops;
Kuninori Morimoto81ecbb62015-10-26 08:39:20 +0000677 attach = rsnd_dmaen_attach;
Kuninori Morimoto940e9472015-10-26 08:42:25 +0000678 dma_id = dmac->dmaen_num;
Kuninori Morimoto497deba2015-10-26 08:43:01 +0000679 type = RSND_MOD_AUDMA;
Kuninori Morimoto81ecbb62015-10-26 08:39:20 +0000680 }
Kuninori Morimoto288f3922015-02-20 10:27:42 +0000681
682 /* for Gen1, overwrite */
Kuninori Morimoto81ecbb62015-10-26 08:39:20 +0000683 if (rsnd_is_gen1(priv)) {
Kuninori Morimoto497deba2015-10-26 08:43:01 +0000684 ops = &rsnd_dmaen_ops;
Kuninori Morimoto81ecbb62015-10-26 08:39:20 +0000685 attach = rsnd_dmaen_attach;
Kuninori Morimoto940e9472015-10-26 08:42:25 +0000686 dma_id = dmac->dmaen_num;
Kuninori Morimoto497deba2015-10-26 08:43:01 +0000687 type = RSND_MOD_AUDMA;
Kuninori Morimoto81ecbb62015-10-26 08:39:20 +0000688 }
Kuninori Morimoto3c685652015-02-20 10:27:12 +0000689
Kuninori Morimoto355cb84fb2016-01-21 01:58:33 +0000690 if (!(*dma_mod)) {
691 struct rsnd_dma *dma;
Kuninori Morimoto940e9472015-10-26 08:42:25 +0000692
Kuninori Morimoto355cb84fb2016-01-21 01:58:33 +0000693 dma = devm_kzalloc(dev, sizeof(*dma), GFP_KERNEL);
694 if (!dma)
695 return -ENOMEM;
696
697 *dma_mod = rsnd_mod_get(dma);
698
699 dma->src_addr = rsnd_dma_addr(io, mod_from, is_play, 1);
700 dma->dst_addr = rsnd_dma_addr(io, mod_to, is_play, 0);
701
702 ret = rsnd_mod_init(priv, *dma_mod, ops, NULL,
703 rsnd_mod_get_status, type, dma_id);
704 if (ret < 0)
705 return ret;
706
707 dev_dbg(dev, "%s[%d] %s[%d] -> %s[%d]\n",
708 rsnd_mod_name(*dma_mod), rsnd_mod_id(*dma_mod),
709 rsnd_mod_name(mod_from), rsnd_mod_id(mod_from),
710 rsnd_mod_name(mod_to), rsnd_mod_id(mod_to));
711
712 ret = attach(io, dma, id, mod_from, mod_to);
713 if (ret < 0)
714 return ret;
715 }
716
717 ret = rsnd_dai_connect(*dma_mod, io, type);
Kuninori Morimoto940e9472015-10-26 08:42:25 +0000718 if (ret < 0)
Kuninori Morimoto355cb84fb2016-01-21 01:58:33 +0000719 return ret;
Kuninori Morimoto940e9472015-10-26 08:42:25 +0000720
Kuninori Morimoto355cb84fb2016-01-21 01:58:33 +0000721 return 0;
Kuninori Morimoto3c685652015-02-20 10:27:12 +0000722}
Kuninori Morimoto288f3922015-02-20 10:27:42 +0000723
Kuninori Morimoto2ea6b072015-11-10 05:14:12 +0000724int rsnd_dma_probe(struct rsnd_priv *priv)
Kuninori Morimoto288f3922015-02-20 10:27:42 +0000725{
Kuninori Morimoto2ea6b072015-11-10 05:14:12 +0000726 struct platform_device *pdev = rsnd_priv_to_pdev(priv);
Kuninori Morimoto288f3922015-02-20 10:27:42 +0000727 struct device *dev = rsnd_priv_to_dev(priv);
728 struct rsnd_dma_ctrl *dmac;
729 struct resource *res;
730
731 /*
732 * for Gen1
733 */
734 if (rsnd_is_gen1(priv))
735 return 0;
736
737 /*
738 * for Gen2
739 */
740 res = platform_get_resource_byname(pdev, IORESOURCE_MEM, "audmapp");
741 dmac = devm_kzalloc(dev, sizeof(*dmac), GFP_KERNEL);
742 if (!dmac || !res) {
743 dev_err(dev, "dma allocate failed\n");
Kuninori Morimoto85374832015-03-10 01:25:01 +0000744 return 0; /* it will be PIO mode */
Kuninori Morimoto288f3922015-02-20 10:27:42 +0000745 }
746
747 dmac->dmapp_num = 0;
748 dmac->base = devm_ioremap_resource(dev, res);
749 if (IS_ERR(dmac->base))
750 return PTR_ERR(dmac->base);
751
752 priv->dma = dmac;
753
754 return 0;
755}