blob: 452b9eaca815b72da837a164b8a75bc1bb8f26ea [file] [log] [blame]
David Brazdil0f672f62019-12-10 10:32:29 +00001// SPDX-License-Identifier: GPL-2.0-or-later
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00002/*
3 * Loopback soundcard
4 *
5 * Original code:
6 * Copyright (c) by Jaroslav Kysela <perex@perex.cz>
7 *
8 * More accurate positioning and full-duplex support:
9 * Copyright (c) Ahmet İnan <ainan at mathematik.uni-freiburg.de>
10 *
11 * Major (almost complete) rewrite:
12 * Copyright (c) by Takashi Iwai <tiwai@suse.de>
13 *
14 * A next major update in 2010 (separate timers for playback and capture):
15 * Copyright (c) Jaroslav Kysela <perex@perex.cz>
Andrew Scullb4b6d4a2019-01-02 15:54:55 +000016 */
17
18#include <linux/init.h>
19#include <linux/jiffies.h>
20#include <linux/slab.h>
21#include <linux/time.h>
22#include <linux/wait.h>
23#include <linux/module.h>
24#include <linux/platform_device.h>
25#include <sound/core.h>
26#include <sound/control.h>
27#include <sound/pcm.h>
28#include <sound/pcm_params.h>
29#include <sound/info.h>
30#include <sound/initval.h>
31
32MODULE_AUTHOR("Jaroslav Kysela <perex@perex.cz>");
33MODULE_DESCRIPTION("A loopback soundcard");
34MODULE_LICENSE("GPL");
35MODULE_SUPPORTED_DEVICE("{{ALSA,Loopback soundcard}}");
36
37#define MAX_PCM_SUBSTREAMS 8
38
39static int index[SNDRV_CARDS] = SNDRV_DEFAULT_IDX; /* Index 0-MAX */
40static char *id[SNDRV_CARDS] = SNDRV_DEFAULT_STR; /* ID for this card */
41static bool enable[SNDRV_CARDS] = {1, [1 ... (SNDRV_CARDS - 1)] = 0};
42static int pcm_substreams[SNDRV_CARDS] = {[0 ... (SNDRV_CARDS - 1)] = 8};
43static int pcm_notify[SNDRV_CARDS];
44
45module_param_array(index, int, NULL, 0444);
46MODULE_PARM_DESC(index, "Index value for loopback soundcard.");
47module_param_array(id, charp, NULL, 0444);
48MODULE_PARM_DESC(id, "ID string for loopback soundcard.");
49module_param_array(enable, bool, NULL, 0444);
50MODULE_PARM_DESC(enable, "Enable this loopback soundcard.");
51module_param_array(pcm_substreams, int, NULL, 0444);
52MODULE_PARM_DESC(pcm_substreams, "PCM substreams # (1-8) for loopback driver.");
53module_param_array(pcm_notify, int, NULL, 0444);
54MODULE_PARM_DESC(pcm_notify, "Break capture when PCM format/rate/channels changes.");
55
56#define NO_PITCH 100000
57
58struct loopback_pcm;
59
60struct loopback_cable {
61 spinlock_t lock;
62 struct loopback_pcm *streams[2];
63 struct snd_pcm_hardware hw;
64 /* flags */
65 unsigned int valid;
66 unsigned int running;
67 unsigned int pause;
68};
69
70struct loopback_setup {
71 unsigned int notify: 1;
72 unsigned int rate_shift;
73 unsigned int format;
74 unsigned int rate;
75 unsigned int channels;
76 struct snd_ctl_elem_id active_id;
77 struct snd_ctl_elem_id format_id;
78 struct snd_ctl_elem_id rate_id;
79 struct snd_ctl_elem_id channels_id;
80};
81
82struct loopback {
83 struct snd_card *card;
84 struct mutex cable_lock;
85 struct loopback_cable *cables[MAX_PCM_SUBSTREAMS][2];
86 struct snd_pcm *pcm[2];
87 struct loopback_setup setup[MAX_PCM_SUBSTREAMS][2];
88};
89
90struct loopback_pcm {
91 struct loopback *loopback;
92 struct snd_pcm_substream *substream;
93 struct loopback_cable *cable;
94 unsigned int pcm_buffer_size;
95 unsigned int buf_pos; /* position in buffer */
96 unsigned int silent_size;
97 /* PCM parameters */
98 unsigned int pcm_period_size;
99 unsigned int pcm_bps; /* bytes per second */
100 unsigned int pcm_salign; /* bytes per sample * channels */
101 unsigned int pcm_rate_shift; /* rate shift value */
102 /* flags */
103 unsigned int period_update_pending :1;
104 /* timer stuff */
105 unsigned int irq_pos; /* fractional IRQ position */
106 unsigned int period_size_frac;
107 unsigned int last_drift;
108 unsigned long last_jiffies;
109 struct timer_list timer;
110};
111
112static struct platform_device *devices[SNDRV_CARDS];
113
114static inline unsigned int byte_pos(struct loopback_pcm *dpcm, unsigned int x)
115{
116 if (dpcm->pcm_rate_shift == NO_PITCH) {
117 x /= HZ;
118 } else {
119 x = div_u64(NO_PITCH * (unsigned long long)x,
120 HZ * (unsigned long long)dpcm->pcm_rate_shift);
121 }
122 return x - (x % dpcm->pcm_salign);
123}
124
125static inline unsigned int frac_pos(struct loopback_pcm *dpcm, unsigned int x)
126{
127 if (dpcm->pcm_rate_shift == NO_PITCH) { /* no pitch */
128 return x * HZ;
129 } else {
130 x = div_u64(dpcm->pcm_rate_shift * (unsigned long long)x * HZ,
131 NO_PITCH);
132 }
133 return x;
134}
135
136static inline struct loopback_setup *get_setup(struct loopback_pcm *dpcm)
137{
138 int device = dpcm->substream->pstr->pcm->device;
139
140 if (dpcm->substream->stream == SNDRV_PCM_STREAM_PLAYBACK)
141 device ^= 1;
142 return &dpcm->loopback->setup[dpcm->substream->number][device];
143}
144
145static inline unsigned int get_notify(struct loopback_pcm *dpcm)
146{
147 return get_setup(dpcm)->notify;
148}
149
150static inline unsigned int get_rate_shift(struct loopback_pcm *dpcm)
151{
152 return get_setup(dpcm)->rate_shift;
153}
154
155/* call in cable->lock */
156static void loopback_timer_start(struct loopback_pcm *dpcm)
157{
158 unsigned long tick;
159 unsigned int rate_shift = get_rate_shift(dpcm);
160
161 if (rate_shift != dpcm->pcm_rate_shift) {
162 dpcm->pcm_rate_shift = rate_shift;
163 dpcm->period_size_frac = frac_pos(dpcm, dpcm->pcm_period_size);
164 }
165 if (dpcm->period_size_frac <= dpcm->irq_pos) {
166 dpcm->irq_pos %= dpcm->period_size_frac;
167 dpcm->period_update_pending = 1;
168 }
169 tick = dpcm->period_size_frac - dpcm->irq_pos;
170 tick = (tick + dpcm->pcm_bps - 1) / dpcm->pcm_bps;
171 mod_timer(&dpcm->timer, jiffies + tick);
172}
173
174/* call in cable->lock */
175static inline void loopback_timer_stop(struct loopback_pcm *dpcm)
176{
177 del_timer(&dpcm->timer);
178 dpcm->timer.expires = 0;
179}
180
181static inline void loopback_timer_stop_sync(struct loopback_pcm *dpcm)
182{
183 del_timer_sync(&dpcm->timer);
184}
185
186#define CABLE_VALID_PLAYBACK (1 << SNDRV_PCM_STREAM_PLAYBACK)
187#define CABLE_VALID_CAPTURE (1 << SNDRV_PCM_STREAM_CAPTURE)
188#define CABLE_VALID_BOTH (CABLE_VALID_PLAYBACK|CABLE_VALID_CAPTURE)
189
190static int loopback_check_format(struct loopback_cable *cable, int stream)
191{
192 struct snd_pcm_runtime *runtime, *cruntime;
193 struct loopback_setup *setup;
194 struct snd_card *card;
195 int check;
196
197 if (cable->valid != CABLE_VALID_BOTH) {
198 if (stream == SNDRV_PCM_STREAM_PLAYBACK)
199 goto __notify;
200 return 0;
201 }
202 runtime = cable->streams[SNDRV_PCM_STREAM_PLAYBACK]->
203 substream->runtime;
204 cruntime = cable->streams[SNDRV_PCM_STREAM_CAPTURE]->
205 substream->runtime;
206 check = runtime->format != cruntime->format ||
207 runtime->rate != cruntime->rate ||
208 runtime->channels != cruntime->channels;
209 if (!check)
210 return 0;
211 if (stream == SNDRV_PCM_STREAM_CAPTURE) {
212 return -EIO;
213 } else {
214 snd_pcm_stop(cable->streams[SNDRV_PCM_STREAM_CAPTURE]->
215 substream, SNDRV_PCM_STATE_DRAINING);
216 __notify:
217 runtime = cable->streams[SNDRV_PCM_STREAM_PLAYBACK]->
218 substream->runtime;
219 setup = get_setup(cable->streams[SNDRV_PCM_STREAM_PLAYBACK]);
220 card = cable->streams[SNDRV_PCM_STREAM_PLAYBACK]->loopback->card;
221 if (setup->format != runtime->format) {
222 snd_ctl_notify(card, SNDRV_CTL_EVENT_MASK_VALUE,
223 &setup->format_id);
224 setup->format = runtime->format;
225 }
226 if (setup->rate != runtime->rate) {
227 snd_ctl_notify(card, SNDRV_CTL_EVENT_MASK_VALUE,
228 &setup->rate_id);
229 setup->rate = runtime->rate;
230 }
231 if (setup->channels != runtime->channels) {
232 snd_ctl_notify(card, SNDRV_CTL_EVENT_MASK_VALUE,
233 &setup->channels_id);
234 setup->channels = runtime->channels;
235 }
236 }
237 return 0;
238}
239
240static void loopback_active_notify(struct loopback_pcm *dpcm)
241{
242 snd_ctl_notify(dpcm->loopback->card,
243 SNDRV_CTL_EVENT_MASK_VALUE,
244 &get_setup(dpcm)->active_id);
245}
246
247static int loopback_trigger(struct snd_pcm_substream *substream, int cmd)
248{
249 struct snd_pcm_runtime *runtime = substream->runtime;
250 struct loopback_pcm *dpcm = runtime->private_data;
251 struct loopback_cable *cable = dpcm->cable;
252 int err, stream = 1 << substream->stream;
253
254 switch (cmd) {
255 case SNDRV_PCM_TRIGGER_START:
256 err = loopback_check_format(cable, substream->stream);
257 if (err < 0)
258 return err;
259 dpcm->last_jiffies = jiffies;
260 dpcm->pcm_rate_shift = 0;
261 dpcm->last_drift = 0;
262 spin_lock(&cable->lock);
263 cable->running |= stream;
264 cable->pause &= ~stream;
265 loopback_timer_start(dpcm);
266 spin_unlock(&cable->lock);
267 if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK)
268 loopback_active_notify(dpcm);
269 break;
270 case SNDRV_PCM_TRIGGER_STOP:
271 spin_lock(&cable->lock);
272 cable->running &= ~stream;
273 cable->pause &= ~stream;
274 loopback_timer_stop(dpcm);
275 spin_unlock(&cable->lock);
276 if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK)
277 loopback_active_notify(dpcm);
278 break;
279 case SNDRV_PCM_TRIGGER_PAUSE_PUSH:
280 case SNDRV_PCM_TRIGGER_SUSPEND:
281 spin_lock(&cable->lock);
282 cable->pause |= stream;
283 loopback_timer_stop(dpcm);
284 spin_unlock(&cable->lock);
285 if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK)
286 loopback_active_notify(dpcm);
287 break;
288 case SNDRV_PCM_TRIGGER_PAUSE_RELEASE:
289 case SNDRV_PCM_TRIGGER_RESUME:
290 spin_lock(&cable->lock);
291 dpcm->last_jiffies = jiffies;
292 cable->pause &= ~stream;
293 loopback_timer_start(dpcm);
294 spin_unlock(&cable->lock);
295 if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK)
296 loopback_active_notify(dpcm);
297 break;
298 default:
299 return -EINVAL;
300 }
301 return 0;
302}
303
304static void params_change(struct snd_pcm_substream *substream)
305{
306 struct snd_pcm_runtime *runtime = substream->runtime;
307 struct loopback_pcm *dpcm = runtime->private_data;
308 struct loopback_cable *cable = dpcm->cable;
309
310 cable->hw.formats = pcm_format_to_bits(runtime->format);
311 cable->hw.rate_min = runtime->rate;
312 cable->hw.rate_max = runtime->rate;
313 cable->hw.channels_min = runtime->channels;
314 cable->hw.channels_max = runtime->channels;
315}
316
317static int loopback_prepare(struct snd_pcm_substream *substream)
318{
319 struct snd_pcm_runtime *runtime = substream->runtime;
320 struct loopback_pcm *dpcm = runtime->private_data;
321 struct loopback_cable *cable = dpcm->cable;
322 int bps, salign;
323
324 loopback_timer_stop_sync(dpcm);
325
David Brazdil0f672f62019-12-10 10:32:29 +0000326 salign = (snd_pcm_format_physical_width(runtime->format) *
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000327 runtime->channels) / 8;
328 bps = salign * runtime->rate;
329 if (bps <= 0 || salign <= 0)
330 return -EINVAL;
331
332 dpcm->buf_pos = 0;
333 dpcm->pcm_buffer_size = frames_to_bytes(runtime, runtime->buffer_size);
334 if (substream->stream == SNDRV_PCM_STREAM_CAPTURE) {
335 /* clear capture buffer */
336 dpcm->silent_size = dpcm->pcm_buffer_size;
337 snd_pcm_format_set_silence(runtime->format, runtime->dma_area,
338 runtime->buffer_size * runtime->channels);
339 }
340
341 dpcm->irq_pos = 0;
342 dpcm->period_update_pending = 0;
343 dpcm->pcm_bps = bps;
344 dpcm->pcm_salign = salign;
345 dpcm->pcm_period_size = frames_to_bytes(runtime, runtime->period_size);
346
347 mutex_lock(&dpcm->loopback->cable_lock);
348 if (!(cable->valid & ~(1 << substream->stream)) ||
349 (get_setup(dpcm)->notify &&
350 substream->stream == SNDRV_PCM_STREAM_PLAYBACK))
351 params_change(substream);
352 cable->valid |= 1 << substream->stream;
353 mutex_unlock(&dpcm->loopback->cable_lock);
354
355 return 0;
356}
357
358static void clear_capture_buf(struct loopback_pcm *dpcm, unsigned int bytes)
359{
360 struct snd_pcm_runtime *runtime = dpcm->substream->runtime;
361 char *dst = runtime->dma_area;
362 unsigned int dst_off = dpcm->buf_pos;
363
364 if (dpcm->silent_size >= dpcm->pcm_buffer_size)
365 return;
366 if (dpcm->silent_size + bytes > dpcm->pcm_buffer_size)
367 bytes = dpcm->pcm_buffer_size - dpcm->silent_size;
368
369 for (;;) {
370 unsigned int size = bytes;
371 if (dst_off + size > dpcm->pcm_buffer_size)
372 size = dpcm->pcm_buffer_size - dst_off;
373 snd_pcm_format_set_silence(runtime->format, dst + dst_off,
374 bytes_to_frames(runtime, size) *
375 runtime->channels);
376 dpcm->silent_size += size;
377 bytes -= size;
378 if (!bytes)
379 break;
380 dst_off = 0;
381 }
382}
383
384static void copy_play_buf(struct loopback_pcm *play,
385 struct loopback_pcm *capt,
386 unsigned int bytes)
387{
388 struct snd_pcm_runtime *runtime = play->substream->runtime;
389 char *src = runtime->dma_area;
390 char *dst = capt->substream->runtime->dma_area;
391 unsigned int src_off = play->buf_pos;
392 unsigned int dst_off = capt->buf_pos;
393 unsigned int clear_bytes = 0;
394
395 /* check if playback is draining, trim the capture copy size
396 * when our pointer is at the end of playback ring buffer */
397 if (runtime->status->state == SNDRV_PCM_STATE_DRAINING &&
398 snd_pcm_playback_hw_avail(runtime) < runtime->buffer_size) {
399 snd_pcm_uframes_t appl_ptr, appl_ptr1, diff;
400 appl_ptr = appl_ptr1 = runtime->control->appl_ptr;
401 appl_ptr1 -= appl_ptr1 % runtime->buffer_size;
402 appl_ptr1 += play->buf_pos / play->pcm_salign;
403 if (appl_ptr < appl_ptr1)
404 appl_ptr1 -= runtime->buffer_size;
405 diff = (appl_ptr - appl_ptr1) * play->pcm_salign;
406 if (diff < bytes) {
407 clear_bytes = bytes - diff;
408 bytes = diff;
409 }
410 }
411
412 for (;;) {
413 unsigned int size = bytes;
414 if (src_off + size > play->pcm_buffer_size)
415 size = play->pcm_buffer_size - src_off;
416 if (dst_off + size > capt->pcm_buffer_size)
417 size = capt->pcm_buffer_size - dst_off;
418 memcpy(dst + dst_off, src + src_off, size);
419 capt->silent_size = 0;
420 bytes -= size;
421 if (!bytes)
422 break;
423 src_off = (src_off + size) % play->pcm_buffer_size;
424 dst_off = (dst_off + size) % capt->pcm_buffer_size;
425 }
426
427 if (clear_bytes > 0) {
428 clear_capture_buf(capt, clear_bytes);
429 capt->silent_size = 0;
430 }
431}
432
433static inline unsigned int bytepos_delta(struct loopback_pcm *dpcm,
434 unsigned int jiffies_delta)
435{
436 unsigned long last_pos;
437 unsigned int delta;
438
439 last_pos = byte_pos(dpcm, dpcm->irq_pos);
440 dpcm->irq_pos += jiffies_delta * dpcm->pcm_bps;
441 delta = byte_pos(dpcm, dpcm->irq_pos) - last_pos;
442 if (delta >= dpcm->last_drift)
443 delta -= dpcm->last_drift;
444 dpcm->last_drift = 0;
445 if (dpcm->irq_pos >= dpcm->period_size_frac) {
446 dpcm->irq_pos %= dpcm->period_size_frac;
447 dpcm->period_update_pending = 1;
448 }
449 return delta;
450}
451
452static inline void bytepos_finish(struct loopback_pcm *dpcm,
453 unsigned int delta)
454{
455 dpcm->buf_pos += delta;
456 dpcm->buf_pos %= dpcm->pcm_buffer_size;
457}
458
459/* call in cable->lock */
460static unsigned int loopback_pos_update(struct loopback_cable *cable)
461{
462 struct loopback_pcm *dpcm_play =
463 cable->streams[SNDRV_PCM_STREAM_PLAYBACK];
464 struct loopback_pcm *dpcm_capt =
465 cable->streams[SNDRV_PCM_STREAM_CAPTURE];
466 unsigned long delta_play = 0, delta_capt = 0;
467 unsigned int running, count1, count2;
468
469 running = cable->running ^ cable->pause;
470 if (running & (1 << SNDRV_PCM_STREAM_PLAYBACK)) {
471 delta_play = jiffies - dpcm_play->last_jiffies;
472 dpcm_play->last_jiffies += delta_play;
473 }
474
475 if (running & (1 << SNDRV_PCM_STREAM_CAPTURE)) {
476 delta_capt = jiffies - dpcm_capt->last_jiffies;
477 dpcm_capt->last_jiffies += delta_capt;
478 }
479
480 if (delta_play == 0 && delta_capt == 0)
481 goto unlock;
482
483 if (delta_play > delta_capt) {
484 count1 = bytepos_delta(dpcm_play, delta_play - delta_capt);
485 bytepos_finish(dpcm_play, count1);
486 delta_play = delta_capt;
487 } else if (delta_play < delta_capt) {
488 count1 = bytepos_delta(dpcm_capt, delta_capt - delta_play);
489 clear_capture_buf(dpcm_capt, count1);
490 bytepos_finish(dpcm_capt, count1);
491 delta_capt = delta_play;
492 }
493
494 if (delta_play == 0 && delta_capt == 0)
495 goto unlock;
496
497 /* note delta_capt == delta_play at this moment */
498 count1 = bytepos_delta(dpcm_play, delta_play);
499 count2 = bytepos_delta(dpcm_capt, delta_capt);
500 if (count1 < count2) {
501 dpcm_capt->last_drift = count2 - count1;
502 count1 = count2;
503 } else if (count1 > count2) {
504 dpcm_play->last_drift = count1 - count2;
505 }
506 copy_play_buf(dpcm_play, dpcm_capt, count1);
507 bytepos_finish(dpcm_play, count1);
508 bytepos_finish(dpcm_capt, count1);
509 unlock:
510 return running;
511}
512
513static void loopback_timer_function(struct timer_list *t)
514{
515 struct loopback_pcm *dpcm = from_timer(dpcm, t, timer);
516 unsigned long flags;
517
518 spin_lock_irqsave(&dpcm->cable->lock, flags);
519 if (loopback_pos_update(dpcm->cable) & (1 << dpcm->substream->stream)) {
520 loopback_timer_start(dpcm);
521 if (dpcm->period_update_pending) {
522 dpcm->period_update_pending = 0;
523 spin_unlock_irqrestore(&dpcm->cable->lock, flags);
524 /* need to unlock before calling below */
525 snd_pcm_period_elapsed(dpcm->substream);
526 return;
527 }
528 }
529 spin_unlock_irqrestore(&dpcm->cable->lock, flags);
530}
531
532static snd_pcm_uframes_t loopback_pointer(struct snd_pcm_substream *substream)
533{
534 struct snd_pcm_runtime *runtime = substream->runtime;
535 struct loopback_pcm *dpcm = runtime->private_data;
536 snd_pcm_uframes_t pos;
537
538 spin_lock(&dpcm->cable->lock);
539 loopback_pos_update(dpcm->cable);
540 pos = dpcm->buf_pos;
541 spin_unlock(&dpcm->cable->lock);
542 return bytes_to_frames(runtime, pos);
543}
544
545static const struct snd_pcm_hardware loopback_pcm_hardware =
546{
547 .info = (SNDRV_PCM_INFO_INTERLEAVED | SNDRV_PCM_INFO_MMAP |
548 SNDRV_PCM_INFO_MMAP_VALID | SNDRV_PCM_INFO_PAUSE |
549 SNDRV_PCM_INFO_RESUME),
550 .formats = (SNDRV_PCM_FMTBIT_S16_LE | SNDRV_PCM_FMTBIT_S16_BE |
David Brazdil0f672f62019-12-10 10:32:29 +0000551 SNDRV_PCM_FMTBIT_S24_LE | SNDRV_PCM_FMTBIT_S24_BE |
552 SNDRV_PCM_FMTBIT_S24_3LE | SNDRV_PCM_FMTBIT_S24_3BE |
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000553 SNDRV_PCM_FMTBIT_S32_LE | SNDRV_PCM_FMTBIT_S32_BE |
554 SNDRV_PCM_FMTBIT_FLOAT_LE | SNDRV_PCM_FMTBIT_FLOAT_BE),
555 .rates = SNDRV_PCM_RATE_CONTINUOUS | SNDRV_PCM_RATE_8000_192000,
556 .rate_min = 8000,
557 .rate_max = 192000,
558 .channels_min = 1,
559 .channels_max = 32,
560 .buffer_bytes_max = 2 * 1024 * 1024,
561 .period_bytes_min = 64,
562 /* note check overflow in frac_pos() using pcm_rate_shift before
563 changing period_bytes_max value */
564 .period_bytes_max = 1024 * 1024,
565 .periods_min = 1,
566 .periods_max = 1024,
567 .fifo_size = 0,
568};
569
570static void loopback_runtime_free(struct snd_pcm_runtime *runtime)
571{
572 struct loopback_pcm *dpcm = runtime->private_data;
573 kfree(dpcm);
574}
575
576static int loopback_hw_params(struct snd_pcm_substream *substream,
577 struct snd_pcm_hw_params *params)
578{
579 return snd_pcm_lib_alloc_vmalloc_buffer(substream,
580 params_buffer_bytes(params));
581}
582
583static int loopback_hw_free(struct snd_pcm_substream *substream)
584{
585 struct snd_pcm_runtime *runtime = substream->runtime;
586 struct loopback_pcm *dpcm = runtime->private_data;
587 struct loopback_cable *cable = dpcm->cable;
588
589 mutex_lock(&dpcm->loopback->cable_lock);
590 cable->valid &= ~(1 << substream->stream);
591 mutex_unlock(&dpcm->loopback->cable_lock);
592 return snd_pcm_lib_free_vmalloc_buffer(substream);
593}
594
595static unsigned int get_cable_index(struct snd_pcm_substream *substream)
596{
597 if (!substream->pcm->device)
598 return substream->stream;
599 else
600 return !substream->stream;
601}
602
603static int rule_format(struct snd_pcm_hw_params *params,
604 struct snd_pcm_hw_rule *rule)
605{
606 struct loopback_pcm *dpcm = rule->private;
607 struct loopback_cable *cable = dpcm->cable;
608 struct snd_mask m;
609
610 snd_mask_none(&m);
611 mutex_lock(&dpcm->loopback->cable_lock);
612 m.bits[0] = (u_int32_t)cable->hw.formats;
613 m.bits[1] = (u_int32_t)(cable->hw.formats >> 32);
614 mutex_unlock(&dpcm->loopback->cable_lock);
615 return snd_mask_refine(hw_param_mask(params, rule->var), &m);
616}
617
618static int rule_rate(struct snd_pcm_hw_params *params,
619 struct snd_pcm_hw_rule *rule)
620{
621 struct loopback_pcm *dpcm = rule->private;
622 struct loopback_cable *cable = dpcm->cable;
623 struct snd_interval t;
624
625 mutex_lock(&dpcm->loopback->cable_lock);
626 t.min = cable->hw.rate_min;
627 t.max = cable->hw.rate_max;
628 mutex_unlock(&dpcm->loopback->cable_lock);
629 t.openmin = t.openmax = 0;
630 t.integer = 0;
631 return snd_interval_refine(hw_param_interval(params, rule->var), &t);
632}
633
634static int rule_channels(struct snd_pcm_hw_params *params,
635 struct snd_pcm_hw_rule *rule)
636{
637 struct loopback_pcm *dpcm = rule->private;
638 struct loopback_cable *cable = dpcm->cable;
639 struct snd_interval t;
640
641 mutex_lock(&dpcm->loopback->cable_lock);
642 t.min = cable->hw.channels_min;
643 t.max = cable->hw.channels_max;
644 mutex_unlock(&dpcm->loopback->cable_lock);
645 t.openmin = t.openmax = 0;
646 t.integer = 0;
647 return snd_interval_refine(hw_param_interval(params, rule->var), &t);
648}
649
650static void free_cable(struct snd_pcm_substream *substream)
651{
652 struct loopback *loopback = substream->private_data;
653 int dev = get_cable_index(substream);
654 struct loopback_cable *cable;
655
656 cable = loopback->cables[substream->number][dev];
657 if (!cable)
658 return;
659 if (cable->streams[!substream->stream]) {
660 /* other stream is still alive */
661 spin_lock_irq(&cable->lock);
662 cable->streams[substream->stream] = NULL;
663 spin_unlock_irq(&cable->lock);
664 } else {
665 /* free the cable */
666 loopback->cables[substream->number][dev] = NULL;
667 kfree(cable);
668 }
669}
670
671static int loopback_open(struct snd_pcm_substream *substream)
672{
673 struct snd_pcm_runtime *runtime = substream->runtime;
674 struct loopback *loopback = substream->private_data;
675 struct loopback_pcm *dpcm;
676 struct loopback_cable *cable = NULL;
677 int err = 0;
678 int dev = get_cable_index(substream);
679
680 mutex_lock(&loopback->cable_lock);
681 dpcm = kzalloc(sizeof(*dpcm), GFP_KERNEL);
682 if (!dpcm) {
683 err = -ENOMEM;
684 goto unlock;
685 }
686 dpcm->loopback = loopback;
687 dpcm->substream = substream;
688 timer_setup(&dpcm->timer, loopback_timer_function, 0);
689
690 cable = loopback->cables[substream->number][dev];
691 if (!cable) {
692 cable = kzalloc(sizeof(*cable), GFP_KERNEL);
693 if (!cable) {
694 err = -ENOMEM;
695 goto unlock;
696 }
697 spin_lock_init(&cable->lock);
698 cable->hw = loopback_pcm_hardware;
699 loopback->cables[substream->number][dev] = cable;
700 }
701 dpcm->cable = cable;
702
703 snd_pcm_hw_constraint_integer(runtime, SNDRV_PCM_HW_PARAM_PERIODS);
704
705 /* use dynamic rules based on actual runtime->hw values */
706 /* note that the default rules created in the PCM midlevel code */
707 /* are cached -> they do not reflect the actual state */
708 err = snd_pcm_hw_rule_add(runtime, 0,
709 SNDRV_PCM_HW_PARAM_FORMAT,
710 rule_format, dpcm,
711 SNDRV_PCM_HW_PARAM_FORMAT, -1);
712 if (err < 0)
713 goto unlock;
714 err = snd_pcm_hw_rule_add(runtime, 0,
715 SNDRV_PCM_HW_PARAM_RATE,
716 rule_rate, dpcm,
717 SNDRV_PCM_HW_PARAM_RATE, -1);
718 if (err < 0)
719 goto unlock;
720 err = snd_pcm_hw_rule_add(runtime, 0,
721 SNDRV_PCM_HW_PARAM_CHANNELS,
722 rule_channels, dpcm,
723 SNDRV_PCM_HW_PARAM_CHANNELS, -1);
724 if (err < 0)
725 goto unlock;
726
727 runtime->private_data = dpcm;
728 runtime->private_free = loopback_runtime_free;
729 if (get_notify(dpcm))
730 runtime->hw = loopback_pcm_hardware;
731 else
732 runtime->hw = cable->hw;
733
734 spin_lock_irq(&cable->lock);
735 cable->streams[substream->stream] = dpcm;
736 spin_unlock_irq(&cable->lock);
737
738 unlock:
739 if (err < 0) {
740 free_cable(substream);
741 kfree(dpcm);
742 }
743 mutex_unlock(&loopback->cable_lock);
744 return err;
745}
746
747static int loopback_close(struct snd_pcm_substream *substream)
748{
749 struct loopback *loopback = substream->private_data;
750 struct loopback_pcm *dpcm = substream->runtime->private_data;
751
752 loopback_timer_stop_sync(dpcm);
753 mutex_lock(&loopback->cable_lock);
754 free_cable(substream);
755 mutex_unlock(&loopback->cable_lock);
756 return 0;
757}
758
759static const struct snd_pcm_ops loopback_pcm_ops = {
760 .open = loopback_open,
761 .close = loopback_close,
762 .ioctl = snd_pcm_lib_ioctl,
763 .hw_params = loopback_hw_params,
764 .hw_free = loopback_hw_free,
765 .prepare = loopback_prepare,
766 .trigger = loopback_trigger,
767 .pointer = loopback_pointer,
768 .page = snd_pcm_lib_get_vmalloc_page,
769};
770
771static int loopback_pcm_new(struct loopback *loopback,
772 int device, int substreams)
773{
774 struct snd_pcm *pcm;
775 int err;
776
777 err = snd_pcm_new(loopback->card, "Loopback PCM", device,
778 substreams, substreams, &pcm);
779 if (err < 0)
780 return err;
781 snd_pcm_set_ops(pcm, SNDRV_PCM_STREAM_PLAYBACK, &loopback_pcm_ops);
782 snd_pcm_set_ops(pcm, SNDRV_PCM_STREAM_CAPTURE, &loopback_pcm_ops);
783
784 pcm->private_data = loopback;
785 pcm->info_flags = 0;
786 strcpy(pcm->name, "Loopback PCM");
787
788 loopback->pcm[device] = pcm;
789 return 0;
790}
791
792static int loopback_rate_shift_info(struct snd_kcontrol *kcontrol,
793 struct snd_ctl_elem_info *uinfo)
794{
795 uinfo->type = SNDRV_CTL_ELEM_TYPE_INTEGER;
796 uinfo->count = 1;
797 uinfo->value.integer.min = 80000;
798 uinfo->value.integer.max = 120000;
799 uinfo->value.integer.step = 1;
800 return 0;
801}
802
803static int loopback_rate_shift_get(struct snd_kcontrol *kcontrol,
804 struct snd_ctl_elem_value *ucontrol)
805{
806 struct loopback *loopback = snd_kcontrol_chip(kcontrol);
807
808 mutex_lock(&loopback->cable_lock);
809 ucontrol->value.integer.value[0] =
810 loopback->setup[kcontrol->id.subdevice]
811 [kcontrol->id.device].rate_shift;
812 mutex_unlock(&loopback->cable_lock);
813 return 0;
814}
815
816static int loopback_rate_shift_put(struct snd_kcontrol *kcontrol,
817 struct snd_ctl_elem_value *ucontrol)
818{
819 struct loopback *loopback = snd_kcontrol_chip(kcontrol);
820 unsigned int val;
821 int change = 0;
822
823 val = ucontrol->value.integer.value[0];
824 if (val < 80000)
825 val = 80000;
826 if (val > 120000)
827 val = 120000;
828 mutex_lock(&loopback->cable_lock);
829 if (val != loopback->setup[kcontrol->id.subdevice]
830 [kcontrol->id.device].rate_shift) {
831 loopback->setup[kcontrol->id.subdevice]
832 [kcontrol->id.device].rate_shift = val;
833 change = 1;
834 }
835 mutex_unlock(&loopback->cable_lock);
836 return change;
837}
838
839static int loopback_notify_get(struct snd_kcontrol *kcontrol,
840 struct snd_ctl_elem_value *ucontrol)
841{
842 struct loopback *loopback = snd_kcontrol_chip(kcontrol);
843
844 mutex_lock(&loopback->cable_lock);
845 ucontrol->value.integer.value[0] =
846 loopback->setup[kcontrol->id.subdevice]
847 [kcontrol->id.device].notify;
848 mutex_unlock(&loopback->cable_lock);
849 return 0;
850}
851
852static int loopback_notify_put(struct snd_kcontrol *kcontrol,
853 struct snd_ctl_elem_value *ucontrol)
854{
855 struct loopback *loopback = snd_kcontrol_chip(kcontrol);
856 unsigned int val;
857 int change = 0;
858
859 val = ucontrol->value.integer.value[0] ? 1 : 0;
860 mutex_lock(&loopback->cable_lock);
861 if (val != loopback->setup[kcontrol->id.subdevice]
862 [kcontrol->id.device].notify) {
863 loopback->setup[kcontrol->id.subdevice]
864 [kcontrol->id.device].notify = val;
865 change = 1;
866 }
867 mutex_unlock(&loopback->cable_lock);
868 return change;
869}
870
871static int loopback_active_get(struct snd_kcontrol *kcontrol,
872 struct snd_ctl_elem_value *ucontrol)
873{
874 struct loopback *loopback = snd_kcontrol_chip(kcontrol);
875 struct loopback_cable *cable;
876
877 unsigned int val = 0;
878
879 mutex_lock(&loopback->cable_lock);
880 cable = loopback->cables[kcontrol->id.subdevice][kcontrol->id.device ^ 1];
881 if (cable != NULL) {
882 unsigned int running = cable->running ^ cable->pause;
883
884 val = (running & (1 << SNDRV_PCM_STREAM_PLAYBACK)) ? 1 : 0;
885 }
886 mutex_unlock(&loopback->cable_lock);
887 ucontrol->value.integer.value[0] = val;
888 return 0;
889}
890
891static int loopback_format_info(struct snd_kcontrol *kcontrol,
892 struct snd_ctl_elem_info *uinfo)
893{
894 uinfo->type = SNDRV_CTL_ELEM_TYPE_INTEGER;
895 uinfo->count = 1;
896 uinfo->value.integer.min = 0;
897 uinfo->value.integer.max = SNDRV_PCM_FORMAT_LAST;
898 uinfo->value.integer.step = 1;
899 return 0;
900}
901
902static int loopback_format_get(struct snd_kcontrol *kcontrol,
903 struct snd_ctl_elem_value *ucontrol)
904{
905 struct loopback *loopback = snd_kcontrol_chip(kcontrol);
906
907 ucontrol->value.integer.value[0] =
908 loopback->setup[kcontrol->id.subdevice]
909 [kcontrol->id.device].format;
910 return 0;
911}
912
913static int loopback_rate_info(struct snd_kcontrol *kcontrol,
914 struct snd_ctl_elem_info *uinfo)
915{
916 uinfo->type = SNDRV_CTL_ELEM_TYPE_INTEGER;
917 uinfo->count = 1;
918 uinfo->value.integer.min = 0;
919 uinfo->value.integer.max = 192000;
920 uinfo->value.integer.step = 1;
921 return 0;
922}
923
924static int loopback_rate_get(struct snd_kcontrol *kcontrol,
925 struct snd_ctl_elem_value *ucontrol)
926{
927 struct loopback *loopback = snd_kcontrol_chip(kcontrol);
928
929 mutex_lock(&loopback->cable_lock);
930 ucontrol->value.integer.value[0] =
931 loopback->setup[kcontrol->id.subdevice]
932 [kcontrol->id.device].rate;
933 mutex_unlock(&loopback->cable_lock);
934 return 0;
935}
936
937static int loopback_channels_info(struct snd_kcontrol *kcontrol,
938 struct snd_ctl_elem_info *uinfo)
939{
940 uinfo->type = SNDRV_CTL_ELEM_TYPE_INTEGER;
941 uinfo->count = 1;
942 uinfo->value.integer.min = 1;
943 uinfo->value.integer.max = 1024;
944 uinfo->value.integer.step = 1;
945 return 0;
946}
947
948static int loopback_channels_get(struct snd_kcontrol *kcontrol,
949 struct snd_ctl_elem_value *ucontrol)
950{
951 struct loopback *loopback = snd_kcontrol_chip(kcontrol);
952
953 mutex_lock(&loopback->cable_lock);
954 ucontrol->value.integer.value[0] =
955 loopback->setup[kcontrol->id.subdevice]
956 [kcontrol->id.device].channels;
957 mutex_unlock(&loopback->cable_lock);
958 return 0;
959}
960
961static struct snd_kcontrol_new loopback_controls[] = {
962{
963 .iface = SNDRV_CTL_ELEM_IFACE_PCM,
964 .name = "PCM Rate Shift 100000",
965 .info = loopback_rate_shift_info,
966 .get = loopback_rate_shift_get,
967 .put = loopback_rate_shift_put,
968},
969{
970 .iface = SNDRV_CTL_ELEM_IFACE_PCM,
971 .name = "PCM Notify",
972 .info = snd_ctl_boolean_mono_info,
973 .get = loopback_notify_get,
974 .put = loopback_notify_put,
975},
976#define ACTIVE_IDX 2
977{
978 .access = SNDRV_CTL_ELEM_ACCESS_READ,
979 .iface = SNDRV_CTL_ELEM_IFACE_PCM,
980 .name = "PCM Slave Active",
981 .info = snd_ctl_boolean_mono_info,
982 .get = loopback_active_get,
983},
984#define FORMAT_IDX 3
985{
986 .access = SNDRV_CTL_ELEM_ACCESS_READ,
987 .iface = SNDRV_CTL_ELEM_IFACE_PCM,
988 .name = "PCM Slave Format",
989 .info = loopback_format_info,
990 .get = loopback_format_get
991},
992#define RATE_IDX 4
993{
994 .access = SNDRV_CTL_ELEM_ACCESS_READ,
995 .iface = SNDRV_CTL_ELEM_IFACE_PCM,
996 .name = "PCM Slave Rate",
997 .info = loopback_rate_info,
998 .get = loopback_rate_get
999},
1000#define CHANNELS_IDX 5
1001{
1002 .access = SNDRV_CTL_ELEM_ACCESS_READ,
1003 .iface = SNDRV_CTL_ELEM_IFACE_PCM,
1004 .name = "PCM Slave Channels",
1005 .info = loopback_channels_info,
1006 .get = loopback_channels_get
1007}
1008};
1009
1010static int loopback_mixer_new(struct loopback *loopback, int notify)
1011{
1012 struct snd_card *card = loopback->card;
1013 struct snd_pcm *pcm;
1014 struct snd_kcontrol *kctl;
1015 struct loopback_setup *setup;
1016 int err, dev, substr, substr_count, idx;
1017
1018 strcpy(card->mixername, "Loopback Mixer");
1019 for (dev = 0; dev < 2; dev++) {
1020 pcm = loopback->pcm[dev];
1021 substr_count =
1022 pcm->streams[SNDRV_PCM_STREAM_CAPTURE].substream_count;
1023 for (substr = 0; substr < substr_count; substr++) {
1024 setup = &loopback->setup[substr][dev];
1025 setup->notify = notify;
1026 setup->rate_shift = NO_PITCH;
1027 setup->format = SNDRV_PCM_FORMAT_S16_LE;
1028 setup->rate = 48000;
1029 setup->channels = 2;
1030 for (idx = 0; idx < ARRAY_SIZE(loopback_controls);
1031 idx++) {
1032 kctl = snd_ctl_new1(&loopback_controls[idx],
1033 loopback);
1034 if (!kctl)
1035 return -ENOMEM;
1036 kctl->id.device = dev;
1037 kctl->id.subdevice = substr;
Olivier Deprez0e641232021-09-23 10:07:05 +02001038
1039 /* Add the control before copying the id so that
1040 * the numid field of the id is set in the copy.
1041 */
1042 err = snd_ctl_add(card, kctl);
1043 if (err < 0)
1044 return err;
1045
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001046 switch (idx) {
1047 case ACTIVE_IDX:
1048 setup->active_id = kctl->id;
1049 break;
1050 case FORMAT_IDX:
1051 setup->format_id = kctl->id;
1052 break;
1053 case RATE_IDX:
1054 setup->rate_id = kctl->id;
1055 break;
1056 case CHANNELS_IDX:
1057 setup->channels_id = kctl->id;
1058 break;
1059 default:
1060 break;
1061 }
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001062 }
1063 }
1064 }
1065 return 0;
1066}
1067
1068static void print_dpcm_info(struct snd_info_buffer *buffer,
1069 struct loopback_pcm *dpcm,
1070 const char *id)
1071{
1072 snd_iprintf(buffer, " %s\n", id);
1073 if (dpcm == NULL) {
1074 snd_iprintf(buffer, " inactive\n");
1075 return;
1076 }
1077 snd_iprintf(buffer, " buffer_size:\t%u\n", dpcm->pcm_buffer_size);
1078 snd_iprintf(buffer, " buffer_pos:\t\t%u\n", dpcm->buf_pos);
1079 snd_iprintf(buffer, " silent_size:\t%u\n", dpcm->silent_size);
1080 snd_iprintf(buffer, " period_size:\t%u\n", dpcm->pcm_period_size);
1081 snd_iprintf(buffer, " bytes_per_sec:\t%u\n", dpcm->pcm_bps);
1082 snd_iprintf(buffer, " sample_align:\t%u\n", dpcm->pcm_salign);
1083 snd_iprintf(buffer, " rate_shift:\t\t%u\n", dpcm->pcm_rate_shift);
1084 snd_iprintf(buffer, " update_pending:\t%u\n",
1085 dpcm->period_update_pending);
1086 snd_iprintf(buffer, " irq_pos:\t\t%u\n", dpcm->irq_pos);
1087 snd_iprintf(buffer, " period_frac:\t%u\n", dpcm->period_size_frac);
1088 snd_iprintf(buffer, " last_jiffies:\t%lu (%lu)\n",
1089 dpcm->last_jiffies, jiffies);
1090 snd_iprintf(buffer, " timer_expires:\t%lu\n", dpcm->timer.expires);
1091}
1092
1093static void print_substream_info(struct snd_info_buffer *buffer,
1094 struct loopback *loopback,
1095 int sub,
1096 int num)
1097{
1098 struct loopback_cable *cable = loopback->cables[sub][num];
1099
1100 snd_iprintf(buffer, "Cable %i substream %i:\n", num, sub);
1101 if (cable == NULL) {
1102 snd_iprintf(buffer, " inactive\n");
1103 return;
1104 }
1105 snd_iprintf(buffer, " valid: %u\n", cable->valid);
1106 snd_iprintf(buffer, " running: %u\n", cable->running);
1107 snd_iprintf(buffer, " pause: %u\n", cable->pause);
1108 print_dpcm_info(buffer, cable->streams[0], "Playback");
1109 print_dpcm_info(buffer, cable->streams[1], "Capture");
1110}
1111
1112static void print_cable_info(struct snd_info_entry *entry,
1113 struct snd_info_buffer *buffer)
1114{
1115 struct loopback *loopback = entry->private_data;
1116 int sub, num;
1117
1118 mutex_lock(&loopback->cable_lock);
1119 num = entry->name[strlen(entry->name)-1];
1120 num = num == '0' ? 0 : 1;
1121 for (sub = 0; sub < MAX_PCM_SUBSTREAMS; sub++)
1122 print_substream_info(buffer, loopback, sub, num);
1123 mutex_unlock(&loopback->cable_lock);
1124}
1125
1126static int loopback_proc_new(struct loopback *loopback, int cidx)
1127{
1128 char name[32];
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001129
1130 snprintf(name, sizeof(name), "cable#%d", cidx);
David Brazdil0f672f62019-12-10 10:32:29 +00001131 return snd_card_ro_proc_new(loopback->card, name, loopback,
1132 print_cable_info);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001133}
1134
1135static int loopback_probe(struct platform_device *devptr)
1136{
1137 struct snd_card *card;
1138 struct loopback *loopback;
1139 int dev = devptr->id;
1140 int err;
1141
1142 err = snd_card_new(&devptr->dev, index[dev], id[dev], THIS_MODULE,
1143 sizeof(struct loopback), &card);
1144 if (err < 0)
1145 return err;
1146 loopback = card->private_data;
1147
1148 if (pcm_substreams[dev] < 1)
1149 pcm_substreams[dev] = 1;
1150 if (pcm_substreams[dev] > MAX_PCM_SUBSTREAMS)
1151 pcm_substreams[dev] = MAX_PCM_SUBSTREAMS;
1152
1153 loopback->card = card;
1154 mutex_init(&loopback->cable_lock);
1155
1156 err = loopback_pcm_new(loopback, 0, pcm_substreams[dev]);
1157 if (err < 0)
1158 goto __nodev;
1159 err = loopback_pcm_new(loopback, 1, pcm_substreams[dev]);
1160 if (err < 0)
1161 goto __nodev;
1162 err = loopback_mixer_new(loopback, pcm_notify[dev] ? 1 : 0);
1163 if (err < 0)
1164 goto __nodev;
1165 loopback_proc_new(loopback, 0);
1166 loopback_proc_new(loopback, 1);
1167 strcpy(card->driver, "Loopback");
1168 strcpy(card->shortname, "Loopback");
1169 sprintf(card->longname, "Loopback %i", dev + 1);
1170 err = snd_card_register(card);
1171 if (!err) {
1172 platform_set_drvdata(devptr, card);
1173 return 0;
1174 }
1175 __nodev:
1176 snd_card_free(card);
1177 return err;
1178}
1179
1180static int loopback_remove(struct platform_device *devptr)
1181{
1182 snd_card_free(platform_get_drvdata(devptr));
1183 return 0;
1184}
1185
1186#ifdef CONFIG_PM_SLEEP
1187static int loopback_suspend(struct device *pdev)
1188{
1189 struct snd_card *card = dev_get_drvdata(pdev);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001190
1191 snd_power_change_state(card, SNDRV_CTL_POWER_D3hot);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001192 return 0;
1193}
1194
1195static int loopback_resume(struct device *pdev)
1196{
1197 struct snd_card *card = dev_get_drvdata(pdev);
1198
1199 snd_power_change_state(card, SNDRV_CTL_POWER_D0);
1200 return 0;
1201}
1202
1203static SIMPLE_DEV_PM_OPS(loopback_pm, loopback_suspend, loopback_resume);
1204#define LOOPBACK_PM_OPS &loopback_pm
1205#else
1206#define LOOPBACK_PM_OPS NULL
1207#endif
1208
1209#define SND_LOOPBACK_DRIVER "snd_aloop"
1210
1211static struct platform_driver loopback_driver = {
1212 .probe = loopback_probe,
1213 .remove = loopback_remove,
1214 .driver = {
1215 .name = SND_LOOPBACK_DRIVER,
1216 .pm = LOOPBACK_PM_OPS,
1217 },
1218};
1219
1220static void loopback_unregister_all(void)
1221{
1222 int i;
1223
1224 for (i = 0; i < ARRAY_SIZE(devices); ++i)
1225 platform_device_unregister(devices[i]);
1226 platform_driver_unregister(&loopback_driver);
1227}
1228
1229static int __init alsa_card_loopback_init(void)
1230{
1231 int i, err, cards;
1232
1233 err = platform_driver_register(&loopback_driver);
1234 if (err < 0)
1235 return err;
1236
1237
1238 cards = 0;
1239 for (i = 0; i < SNDRV_CARDS; i++) {
1240 struct platform_device *device;
1241 if (!enable[i])
1242 continue;
1243 device = platform_device_register_simple(SND_LOOPBACK_DRIVER,
1244 i, NULL, 0);
1245 if (IS_ERR(device))
1246 continue;
1247 if (!platform_get_drvdata(device)) {
1248 platform_device_unregister(device);
1249 continue;
1250 }
1251 devices[i] = device;
1252 cards++;
1253 }
1254 if (!cards) {
1255#ifdef MODULE
1256 printk(KERN_ERR "aloop: No loopback enabled\n");
1257#endif
1258 loopback_unregister_all();
1259 return -ENODEV;
1260 }
1261 return 0;
1262}
1263
1264static void __exit alsa_card_loopback_exit(void)
1265{
1266 loopback_unregister_all();
1267}
1268
1269module_init(alsa_card_loopback_init)
1270module_exit(alsa_card_loopback_exit)