hc
2024-02-20 102a0743326a03cd1a1202ceda21e175b7d3575c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
// SPDX-License-Identifier: GPL-2.0-or-later
/*
 * Rockchip DLP (Digital Loopback) Driver
 *
 * Copyright (c) 2022 Rockchip Electronics Co. Ltd.
 * Author: Sugar Zhang <sugar.zhang@rock-chips.com>
 *
 */
 
#include <linux/module.h>
#include <linux/init.h>
#include <linux/dmaengine.h>
#include <linux/slab.h>
#include <sound/pcm.h>
#include <sound/pcm_params.h>
#include <sound/soc.h>
#include <linux/dma-mapping.h>
#include <linux/of.h>
 
#include <sound/dmaengine_pcm.h>
 
#include "rockchip_dlp.h"
 
#define SND_DMAENGINE_DLP_DRV_NAME    "snd_dmaengine_dlp"
 
static unsigned int prealloc_buffer_size_kbytes = 512;
module_param(prealloc_buffer_size_kbytes, uint, 0444);
MODULE_PARM_DESC(prealloc_buffer_size_kbytes, "Preallocate DMA buffer size (KB).");
 
struct dmaengine_dlp {
   struct dlp dlp;
   struct dma_chan *chan[SNDRV_PCM_STREAM_LAST + 1];
};
 
struct dmaengine_dlp_runtime_data {
   struct dlp_runtime_data drd;
   struct dma_chan *dma_chan;
   dma_cookie_t cookie;
};
 
static inline struct dmaengine_dlp *soc_component_to_ddlp(struct snd_soc_component *p)
{
   return container_of(soc_component_to_dlp(p), struct dmaengine_dlp, dlp);
}
 
static inline struct dmaengine_dlp_runtime_data *substream_to_ddrd(
   const struct snd_pcm_substream *substream)
{
   struct dlp_runtime_data *drd = substream_to_drd(substream);
 
   if (!drd)
       return NULL;
 
   return container_of(drd, struct dmaengine_dlp_runtime_data, drd);
}
 
static struct dma_chan *snd_dmaengine_dlp_get_chan(struct snd_pcm_substream *substream)
{
   struct dmaengine_dlp_runtime_data *ddrd = substream_to_ddrd(substream);
 
   return ddrd ? ddrd->dma_chan : NULL;
}
 
static struct device *dmaengine_dma_dev(struct dmaengine_dlp *ddlp,
                   struct snd_pcm_substream *substream)
{
   if (!ddlp->chan[substream->stream])
       return NULL;
 
   return ddlp->chan[substream->stream]->device->dev;
}
 
static int dmaengine_dlp_hw_params(struct snd_soc_component *component,
                  struct snd_pcm_substream *substream,
                  struct snd_pcm_hw_params *params)
{
   struct dma_chan *chan = snd_dmaengine_dlp_get_chan(substream);
   struct dma_slave_config slave_config;
   int ret;
 
   memset(&slave_config, 0, sizeof(slave_config));
 
   ret = snd_dmaengine_pcm_prepare_slave_config(substream, params, &slave_config);
   if (ret)
       return ret;
 
   ret = dmaengine_slave_config(chan, &slave_config);
   if (ret)
       return ret;
 
   ret = dlp_hw_params(component, substream, params);
 
   return ret;
}
 
static int
dmaengine_pcm_set_runtime_hwparams(struct snd_soc_component *component,
                  struct snd_pcm_substream *substream)
{
   struct snd_soc_pcm_runtime *rtd = asoc_substream_to_rtd(substream);
   struct dmaengine_dlp *ddlp = soc_component_to_ddlp(component);
   struct device *dma_dev = dmaengine_dma_dev(ddlp, substream);
   struct dma_chan *chan = ddlp->chan[substream->stream];
   struct snd_dmaengine_dai_dma_data *dma_data;
   struct snd_pcm_hardware hw;
 
   if (rtd->num_cpus > 1) {
       dev_err(rtd->dev,
           "%s doesn't support Multi CPU yet\n", __func__);
       return -EINVAL;
   }
 
   dma_data = snd_soc_dai_get_dma_data(asoc_rtd_to_cpu(rtd, 0), substream);
 
   memset(&hw, 0, sizeof(hw));
   hw.info = SNDRV_PCM_INFO_MMAP | SNDRV_PCM_INFO_MMAP_VALID |
         SNDRV_PCM_INFO_INTERLEAVED;
   hw.periods_min = 2;
   hw.periods_max = UINT_MAX;
   hw.period_bytes_min = 256;
   hw.period_bytes_max = dma_get_max_seg_size(dma_dev);
   hw.buffer_bytes_max = SIZE_MAX;
   hw.fifo_size = dma_data->fifo_size;
 
   snd_dmaengine_pcm_refine_runtime_hwparams(substream, dma_data,
                         &hw, chan);
 
   return snd_soc_set_runtime_hwparams(substream, &hw);
}
 
static int dmaengine_dlp_open(struct snd_soc_component *component,
                 struct snd_pcm_substream *substream)
{
   struct dmaengine_dlp *ddlp = soc_component_to_ddlp(component);
   struct dma_chan *chan = ddlp->chan[substream->stream];
   struct dmaengine_dlp_runtime_data *ddrd;
   int ret;
 
   if (!chan)
       return -ENXIO;
 
   ret = dmaengine_pcm_set_runtime_hwparams(component, substream);
   if (ret)
       return ret;
 
   ret = snd_pcm_hw_constraint_integer(substream->runtime,
                       SNDRV_PCM_HW_PARAM_PERIODS);
   if (ret < 0)
       return ret;
 
   ddrd = kzalloc(sizeof(*ddrd), GFP_KERNEL);
   if (!ddrd)
       return -ENOMEM;
 
   ddrd->dma_chan = chan;
 
   dlp_open(&ddlp->dlp, &ddrd->drd, substream);
 
   return 0;
}
 
static int dmaengine_dlp_close(struct snd_soc_component *component,
                  struct snd_pcm_substream *substream)
{
   struct dmaengine_dlp *ddlp = soc_component_to_ddlp(component);
   struct dmaengine_dlp_runtime_data *ddrd = substream_to_ddrd(substream);
 
   if (unlikely(!ddlp || !ddrd))
       return -EINVAL;
 
   dmaengine_synchronize(ddrd->dma_chan);
 
   dlp_close(&ddlp->dlp, &ddrd->drd, substream);
 
   kfree(ddrd);
 
   return 0;
}
 
static snd_pcm_uframes_t dmaengine_dlp_pointer(struct snd_soc_component *component,
                          struct snd_pcm_substream *substream)
{
   struct dmaengine_dlp_runtime_data *ddrd = substream_to_ddrd(substream);
   struct dma_tx_state state;
   unsigned int buf_size;
   unsigned int pos = 0;
 
   if (unlikely(!ddrd))
       return 0;
 
   dmaengine_tx_status(ddrd->dma_chan, ddrd->cookie, &state);
   buf_size = snd_pcm_lib_buffer_bytes(substream);
   if (state.residue > 0 && state.residue <= buf_size)
       pos = buf_size - state.residue;
 
   return dlp_bytes_to_frames(&ddrd->drd, pos);
}
 
static void dmaengine_dlp_dma_complete(void *arg)
{
   struct snd_pcm_substream *substream = arg;
   struct dlp_runtime_data *drd;
   struct dlp *dlp;
 
   snd_pcm_stream_lock_irq(substream);
   if (!substream->runtime) {
       snd_pcm_stream_unlock_irq(substream);
       return;
   }
 
   drd = substream_to_drd(substream);
   dlp = drd->parent;
 
   dlp_dma_complete(dlp, drd);
   snd_pcm_stream_unlock_irq(substream);
 
   snd_pcm_period_elapsed(substream);
}
 
static int dmaengine_dlp_prepare_and_submit(struct snd_pcm_substream *substream)
{
   struct dmaengine_dlp_runtime_data *ddrd = substream_to_ddrd(substream);
   struct dma_chan *chan;
   struct dma_async_tx_descriptor *desc;
   enum dma_transfer_direction direction;
   unsigned long flags = DMA_CTRL_ACK;
 
   if (unlikely(!ddrd))
       return -EINVAL;
 
   chan = ddrd->dma_chan;
   direction = snd_pcm_substream_to_dma_direction(substream);
 
   if (!substream->runtime->no_period_wakeup)
       flags |= DMA_PREP_INTERRUPT;
 
   desc = dmaengine_prep_dma_cyclic(chan, substream->runtime->dma_addr,
                    snd_pcm_lib_buffer_bytes(substream),
                    snd_pcm_lib_period_bytes(substream),
                    direction, flags);
 
   if (!desc)
       return -ENOMEM;
 
   desc->callback = dmaengine_dlp_dma_complete;
   desc->callback_param = substream;
   ddrd->cookie = dmaengine_submit(desc);
 
   return 0;
}
 
static int dmaengine_dlp_start(struct snd_soc_component *component,
                  struct snd_pcm_substream *substream)
{
   struct dlp *dlp = soc_component_to_dlp(component);
 
   return dlp_start(component, substream, dlp->dev, dmaengine_dlp_pointer);
}
 
static void dmaengine_dlp_stop(struct snd_soc_component *component,
                 struct snd_pcm_substream *substream)
{
   dlp_stop(component, substream, dmaengine_dlp_pointer);
}
 
static int dmaengine_dlp_trigger(struct snd_soc_component *component,
                struct snd_pcm_substream *substream, int cmd)
{
   struct dmaengine_dlp_runtime_data *ddrd = substream_to_ddrd(substream);
   struct snd_pcm_runtime *runtime = substream->runtime;
   int ret;
 
   if (unlikely(!ddrd))
       return -EINVAL;
 
   switch (cmd) {
   case SNDRV_PCM_TRIGGER_START:
       ret = dmaengine_dlp_prepare_and_submit(substream);
       if (ret)
           return ret;
       dma_async_issue_pending(ddrd->dma_chan);
       dmaengine_dlp_start(component, substream);
       break;
   case SNDRV_PCM_TRIGGER_RESUME:
   case SNDRV_PCM_TRIGGER_PAUSE_RELEASE:
       dmaengine_resume(ddrd->dma_chan);
       break;
   case SNDRV_PCM_TRIGGER_SUSPEND:
       if (runtime->info & SNDRV_PCM_INFO_PAUSE) {
           dmaengine_pause(ddrd->dma_chan);
       } else {
           dmaengine_dlp_stop(component, substream);
           dmaengine_terminate_async(ddrd->dma_chan);
       }
       break;
   case SNDRV_PCM_TRIGGER_PAUSE_PUSH:
       dmaengine_pause(ddrd->dma_chan);
       break;
   case SNDRV_PCM_TRIGGER_STOP:
       dmaengine_dlp_stop(component, substream);
       dmaengine_terminate_async(ddrd->dma_chan);
       break;
   default:
       return -EINVAL;
   }
 
   return 0;
}
 
static int dmaengine_dlp_new(struct snd_soc_component *component,
                struct snd_soc_pcm_runtime *rtd)
{
   struct dmaengine_dlp *ddlp = soc_component_to_ddlp(component);
   struct snd_pcm_substream *substream;
   size_t prealloc_buffer_size;
   size_t max_buffer_size;
   unsigned int i;
 
   prealloc_buffer_size = prealloc_buffer_size_kbytes * 1024;
   max_buffer_size = SIZE_MAX;
 
   for_each_pcm_streams(i) {
       substream = rtd->pcm->streams[i].substream;
       if (!substream)
           continue;
 
       if (!ddlp->chan[i]) {
           dev_err(component->dev,
               "Missing dma channel for stream: %d\n", i);
           return -EINVAL;
       }
 
       snd_pcm_set_managed_buffer(substream, SNDRV_DMA_TYPE_DEV_IRAM,
                      dmaengine_dma_dev(ddlp, substream),
                      prealloc_buffer_size,
                      max_buffer_size);
 
       if (rtd->pcm->streams[i].pcm->name[0] == '\0') {
           strscpy_pad(rtd->pcm->streams[i].pcm->name,
                   rtd->pcm->streams[i].pcm->id,
                   sizeof(rtd->pcm->streams[i].pcm->name));
       }
   }
 
   return 0;
}
 
static int dmaengine_dlp_copy_user(struct snd_soc_component *component,
                  struct snd_pcm_substream *substream,
                  int channel, unsigned long hwoff,
                  void __user *buf, unsigned long bytes)
{
   return dlp_copy_user(component, substream, channel, hwoff, buf, bytes);
}
 
static int dmaengine_dlp_prepare(struct snd_soc_component *component,
                struct snd_pcm_substream *substream)
{
   return dlp_prepare(component, substream);
}
 
static int dmaengine_dlp_probe(struct snd_soc_component *component)
{
   return dlp_probe(component);
}
 
static const struct snd_soc_component_driver dmaengine_dlp_component = {
   .name        = SND_DMAENGINE_DLP_DRV_NAME,
   .probe_order    = SND_SOC_COMP_ORDER_LATE,
   .probe        = dmaengine_dlp_probe,
   .open        = dmaengine_dlp_open,
   .close        = dmaengine_dlp_close,
   .hw_params    = dmaengine_dlp_hw_params,
   .prepare    = dmaengine_dlp_prepare,
   .trigger    = dmaengine_dlp_trigger,
   .pointer    = dmaengine_dlp_pointer,
   .copy_user    = dmaengine_dlp_copy_user,
   .pcm_construct    = dmaengine_dlp_new,
};
 
static const char * const dmaengine_pcm_dma_channel_names[] = {
   [SNDRV_PCM_STREAM_PLAYBACK] = "tx",
   [SNDRV_PCM_STREAM_CAPTURE] = "rx",
};
 
static int dmaengine_pcm_request_chan_of(struct dmaengine_dlp *ddlp,
   struct device *dev, const struct snd_dmaengine_pcm_config *config)
{
   unsigned int i;
   const char *name;
   struct dma_chan *chan;
 
   for_each_pcm_streams(i) {
       name = dmaengine_pcm_dma_channel_names[i];
       chan = dma_request_chan(dev, name);
       if (IS_ERR(chan)) {
           /*
            * Only report probe deferral errors, channels
            * might not be present for devices that
            * support only TX or only RX.
            */
           if (PTR_ERR(chan) == -EPROBE_DEFER)
               return -EPROBE_DEFER;
           ddlp->chan[i] = NULL;
       } else {
           ddlp->chan[i] = chan;
       }
   }
 
   return 0;
}
 
static void dmaengine_pcm_release_chan(struct dmaengine_dlp *ddlp)
{
   unsigned int i;
 
   for_each_pcm_streams(i) {
       if (!ddlp->chan[i])
           continue;
       dma_release_channel(ddlp->chan[i]);
   }
}
 
/**
 * snd_dmaengine_dlp_register - Register a dmaengine based DLP device
 * @dev: The parent device for the DLP device
 * @config: Platform specific DLP configuration
 */
static int snd_dmaengine_dlp_register(struct device *dev,
                     const struct snd_dlp_config *config)
{
   struct dmaengine_dlp *ddlp;
   int ret;
 
   ddlp = kzalloc(sizeof(*ddlp), GFP_KERNEL);
   if (!ddlp)
       return -ENOMEM;
 
   ret = dmaengine_pcm_request_chan_of(ddlp, dev, NULL);
   if (ret)
       goto err_free_dma;
 
   ret = dlp_register(&ddlp->dlp, dev, &dmaengine_dlp_component, config);
   if (ret)
       goto err_free_dma;
 
   return 0;
 
err_free_dma:
   dmaengine_pcm_release_chan(ddlp);
   kfree(ddlp);
   return ret;
}
 
/**
 * snd_dmaengine_dlp_unregister - Removes a dmaengine based DLP device
 * @dev: Parent device the DLP was register with
 *
 * Removes a dmaengine based DLP device previously registered with
 * snd_dmaengine_dlp_register.
 */
static void snd_dmaengine_dlp_unregister(struct device *dev)
{
   struct snd_soc_component *component;
   struct dmaengine_dlp *ddlp;
 
   component = snd_soc_lookup_component(dev, SND_DMAENGINE_DLP_DRV_NAME);
   if (!component)
       return;
 
   ddlp = soc_component_to_ddlp(component);
 
   snd_soc_unregister_component_by_driver(dev, component->driver);
   dmaengine_pcm_release_chan(ddlp);
 
   kfree(ddlp);
}
 
static void devm_dmaengine_dlp_stop(struct device *dev, void *res)
{
   snd_dmaengine_dlp_unregister(*(struct device **)res);
}
 
/**
 * devm_snd_dmaengine_dlp_register - resource managed dmaengine DLP registration
 * @dev: The parent device for the DLP device
 * @config: Platform specific DLP configuration
 *
 * Register a dmaengine based DLP device with automatic unregistration when the
 * device is unregistered.
 */
int devm_snd_dmaengine_dlp_register(struct device *dev,
                   const struct snd_dlp_config *config)
{
   struct device **ptr;
   int ret;
 
   ptr = devres_alloc(devm_dmaengine_dlp_stop, sizeof(*ptr), GFP_KERNEL);
   if (!ptr)
       return -ENOMEM;
 
   ret = snd_dmaengine_dlp_register(dev, config);
   if (ret == 0) {
       *ptr = dev;
       devres_add(dev, ptr);
   } else {
       devres_free(ptr);
   }
 
   return ret;
}
EXPORT_SYMBOL_GPL(devm_snd_dmaengine_dlp_register);
 
MODULE_DESCRIPTION("Rockchip Digital Loopback PCM Driver");
MODULE_AUTHOR("Sugar Zhang <sugar.zhang@rock-chips.com>");
MODULE_LICENSE("GPL");