blob: 59e4a88757b1d77de78146802c3869a5d310c864 [file] [log] [blame]
Jaroslav Kysela597603d2010-08-09 14:21:11 +02001/*
2 * Loopback soundcard
3 *
4 * Original code:
5 * Copyright (c) by Jaroslav Kysela <perex@perex.cz>
6 *
7 * More accurate positioning and full-duplex support:
8 * Copyright (c) Ahmet İnan <ainan at mathematik.uni-freiburg.de>
9 *
10 * Major (almost complete) rewrite:
11 * Copyright (c) by Takashi Iwai <tiwai@suse.de>
12 *
13 * A next major update in 2010 (separate timers for playback and capture):
14 * Copyright (c) Jaroslav Kysela <perex@perex.cz>
15 *
16 * This program is free software; you can redistribute it and/or modify
17 * it under the terms of the GNU General Public License as published by
18 * the Free Software Foundation; either version 2 of the License, or
19 * (at your option) any later version.
20 *
21 * This program is distributed in the hope that it will be useful,
22 * but WITHOUT ANY WARRANTY; without even the implied warranty of
23 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
24 * GNU General Public License for more details.
25 *
26 * You should have received a copy of the GNU General Public License
27 * along with this program; if not, write to the Free Software
28 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
29 *
30 */
31
32#include <linux/init.h>
33#include <linux/jiffies.h>
34#include <linux/slab.h>
35#include <linux/time.h>
36#include <linux/wait.h>
Paul Gortmaker65a77212011-07-15 13:13:37 -040037#include <linux/module.h>
Jaroslav Kysela597603d2010-08-09 14:21:11 +020038#include <linux/platform_device.h>
39#include <sound/core.h>
40#include <sound/control.h>
41#include <sound/pcm.h>
Takashi Iwai5af666d2018-01-05 16:15:33 +010042#include <sound/pcm_params.h>
Jaroslav Kyselae74670b2010-10-18 09:43:10 +020043#include <sound/info.h>
Jaroslav Kysela597603d2010-08-09 14:21:11 +020044#include <sound/initval.h>
45
46MODULE_AUTHOR("Jaroslav Kysela <perex@perex.cz>");
47MODULE_DESCRIPTION("A loopback soundcard");
48MODULE_LICENSE("GPL");
49MODULE_SUPPORTED_DEVICE("{{ALSA,Loopback soundcard}}");
50
51#define MAX_PCM_SUBSTREAMS 8
52
53static int index[SNDRV_CARDS] = SNDRV_DEFAULT_IDX; /* Index 0-MAX */
54static char *id[SNDRV_CARDS] = SNDRV_DEFAULT_STR; /* ID for this card */
Rusty Russella67ff6a2011-12-15 13:49:36 +103055static bool enable[SNDRV_CARDS] = {1, [1 ... (SNDRV_CARDS - 1)] = 0};
Jaroslav Kysela597603d2010-08-09 14:21:11 +020056static int pcm_substreams[SNDRV_CARDS] = {[0 ... (SNDRV_CARDS - 1)] = 8};
57static int pcm_notify[SNDRV_CARDS];
58
59module_param_array(index, int, NULL, 0444);
60MODULE_PARM_DESC(index, "Index value for loopback soundcard.");
61module_param_array(id, charp, NULL, 0444);
62MODULE_PARM_DESC(id, "ID string for loopback soundcard.");
63module_param_array(enable, bool, NULL, 0444);
64MODULE_PARM_DESC(enable, "Enable this loopback soundcard.");
65module_param_array(pcm_substreams, int, NULL, 0444);
66MODULE_PARM_DESC(pcm_substreams, "PCM substreams # (1-8) for loopback driver.");
67module_param_array(pcm_notify, int, NULL, 0444);
68MODULE_PARM_DESC(pcm_notify, "Break capture when PCM format/rate/channels changes.");
69
70#define NO_PITCH 100000
71
72struct loopback_pcm;
73
74struct loopback_cable {
75 spinlock_t lock;
76 struct loopback_pcm *streams[2];
77 struct snd_pcm_hardware hw;
78 /* flags */
79 unsigned int valid;
80 unsigned int running;
Jaroslav Kysela5de9e452010-10-20 09:33:03 +020081 unsigned int pause;
Jaroslav Kysela597603d2010-08-09 14:21:11 +020082};
83
84struct loopback_setup {
85 unsigned int notify: 1;
86 unsigned int rate_shift;
87 unsigned int format;
88 unsigned int rate;
89 unsigned int channels;
90 struct snd_ctl_elem_id active_id;
91 struct snd_ctl_elem_id format_id;
92 struct snd_ctl_elem_id rate_id;
93 struct snd_ctl_elem_id channels_id;
94};
95
96struct loopback {
97 struct snd_card *card;
98 struct mutex cable_lock;
99 struct loopback_cable *cables[MAX_PCM_SUBSTREAMS][2];
100 struct snd_pcm *pcm[2];
101 struct loopback_setup setup[MAX_PCM_SUBSTREAMS][2];
102};
103
104struct loopback_pcm {
105 struct loopback *loopback;
106 struct snd_pcm_substream *substream;
107 struct loopback_cable *cable;
108 unsigned int pcm_buffer_size;
109 unsigned int buf_pos; /* position in buffer */
110 unsigned int silent_size;
111 /* PCM parameters */
112 unsigned int pcm_period_size;
113 unsigned int pcm_bps; /* bytes per second */
114 unsigned int pcm_salign; /* bytes per sample * channels */
115 unsigned int pcm_rate_shift; /* rate shift value */
116 /* flags */
117 unsigned int period_update_pending :1;
118 /* timer stuff */
119 unsigned int irq_pos; /* fractional IRQ position */
120 unsigned int period_size_frac;
Jaroslav Kyselab0125132012-05-13 13:39:45 +0200121 unsigned int last_drift;
Jaroslav Kysela597603d2010-08-09 14:21:11 +0200122 unsigned long last_jiffies;
123 struct timer_list timer;
124};
125
126static struct platform_device *devices[SNDRV_CARDS];
127
128static inline unsigned int byte_pos(struct loopback_pcm *dpcm, unsigned int x)
129{
130 if (dpcm->pcm_rate_shift == NO_PITCH) {
131 x /= HZ;
132 } else {
133 x = div_u64(NO_PITCH * (unsigned long long)x,
134 HZ * (unsigned long long)dpcm->pcm_rate_shift);
135 }
136 return x - (x % dpcm->pcm_salign);
137}
138
139static inline unsigned int frac_pos(struct loopback_pcm *dpcm, unsigned int x)
140{
141 if (dpcm->pcm_rate_shift == NO_PITCH) { /* no pitch */
142 return x * HZ;
143 } else {
144 x = div_u64(dpcm->pcm_rate_shift * (unsigned long long)x * HZ,
145 NO_PITCH);
146 }
147 return x;
148}
149
150static inline struct loopback_setup *get_setup(struct loopback_pcm *dpcm)
151{
152 int device = dpcm->substream->pstr->pcm->device;
153
154 if (dpcm->substream->stream == SNDRV_PCM_STREAM_PLAYBACK)
155 device ^= 1;
156 return &dpcm->loopback->setup[dpcm->substream->number][device];
157}
158
159static inline unsigned int get_notify(struct loopback_pcm *dpcm)
160{
161 return get_setup(dpcm)->notify;
162}
163
164static inline unsigned int get_rate_shift(struct loopback_pcm *dpcm)
165{
166 return get_setup(dpcm)->rate_shift;
167}
168
Takashi Iwai999fc9f2012-10-21 10:53:14 +0200169/* call in cable->lock */
Jaroslav Kysela597603d2010-08-09 14:21:11 +0200170static void loopback_timer_start(struct loopback_pcm *dpcm)
171{
172 unsigned long tick;
173 unsigned int rate_shift = get_rate_shift(dpcm);
174
175 if (rate_shift != dpcm->pcm_rate_shift) {
176 dpcm->pcm_rate_shift = rate_shift;
177 dpcm->period_size_frac = frac_pos(dpcm, dpcm->pcm_period_size);
178 }
Jaroslav Kysela0db71022010-10-14 21:46:12 +0200179 if (dpcm->period_size_frac <= dpcm->irq_pos) {
180 dpcm->irq_pos %= dpcm->period_size_frac;
181 dpcm->period_update_pending = 1;
182 }
Jaroslav Kysela597603d2010-08-09 14:21:11 +0200183 tick = dpcm->period_size_frac - dpcm->irq_pos;
184 tick = (tick + dpcm->pcm_bps - 1) / dpcm->pcm_bps;
Takashi Iwaidb974552015-01-19 11:27:31 +0100185 mod_timer(&dpcm->timer, jiffies + tick);
Jaroslav Kysela597603d2010-08-09 14:21:11 +0200186}
187
Takashi Iwai999fc9f2012-10-21 10:53:14 +0200188/* call in cable->lock */
Jaroslav Kysela597603d2010-08-09 14:21:11 +0200189static inline void loopback_timer_stop(struct loopback_pcm *dpcm)
190{
191 del_timer(&dpcm->timer);
Jaroslav Kyselae74670b2010-10-18 09:43:10 +0200192 dpcm->timer.expires = 0;
Jaroslav Kysela597603d2010-08-09 14:21:11 +0200193}
194
195#define CABLE_VALID_PLAYBACK (1 << SNDRV_PCM_STREAM_PLAYBACK)
196#define CABLE_VALID_CAPTURE (1 << SNDRV_PCM_STREAM_CAPTURE)
197#define CABLE_VALID_BOTH (CABLE_VALID_PLAYBACK|CABLE_VALID_CAPTURE)
198
199static int loopback_check_format(struct loopback_cable *cable, int stream)
200{
Jaroslav Kyselab1c73fc2010-10-11 10:45:00 +0200201 struct snd_pcm_runtime *runtime, *cruntime;
Jaroslav Kysela597603d2010-08-09 14:21:11 +0200202 struct loopback_setup *setup;
203 struct snd_card *card;
204 int check;
205
206 if (cable->valid != CABLE_VALID_BOTH) {
207 if (stream == SNDRV_PCM_STREAM_PLAYBACK)
208 goto __notify;
209 return 0;
210 }
211 runtime = cable->streams[SNDRV_PCM_STREAM_PLAYBACK]->
212 substream->runtime;
Jaroslav Kyselab1c73fc2010-10-11 10:45:00 +0200213 cruntime = cable->streams[SNDRV_PCM_STREAM_CAPTURE]->
214 substream->runtime;
215 check = runtime->format != cruntime->format ||
216 runtime->rate != cruntime->rate ||
217 runtime->channels != cruntime->channels;
Jaroslav Kysela597603d2010-08-09 14:21:11 +0200218 if (!check)
219 return 0;
220 if (stream == SNDRV_PCM_STREAM_CAPTURE) {
221 return -EIO;
222 } else {
223 snd_pcm_stop(cable->streams[SNDRV_PCM_STREAM_CAPTURE]->
224 substream, SNDRV_PCM_STATE_DRAINING);
225 __notify:
226 runtime = cable->streams[SNDRV_PCM_STREAM_PLAYBACK]->
227 substream->runtime;
228 setup = get_setup(cable->streams[SNDRV_PCM_STREAM_PLAYBACK]);
229 card = cable->streams[SNDRV_PCM_STREAM_PLAYBACK]->loopback->card;
230 if (setup->format != runtime->format) {
231 snd_ctl_notify(card, SNDRV_CTL_EVENT_MASK_VALUE,
232 &setup->format_id);
233 setup->format = runtime->format;
234 }
235 if (setup->rate != runtime->rate) {
236 snd_ctl_notify(card, SNDRV_CTL_EVENT_MASK_VALUE,
237 &setup->rate_id);
238 setup->rate = runtime->rate;
239 }
240 if (setup->channels != runtime->channels) {
241 snd_ctl_notify(card, SNDRV_CTL_EVENT_MASK_VALUE,
242 &setup->channels_id);
243 setup->channels = runtime->channels;
244 }
245 }
246 return 0;
247}
248
249static void loopback_active_notify(struct loopback_pcm *dpcm)
250{
251 snd_ctl_notify(dpcm->loopback->card,
252 SNDRV_CTL_EVENT_MASK_VALUE,
253 &get_setup(dpcm)->active_id);
254}
255
256static int loopback_trigger(struct snd_pcm_substream *substream, int cmd)
257{
258 struct snd_pcm_runtime *runtime = substream->runtime;
259 struct loopback_pcm *dpcm = runtime->private_data;
260 struct loopback_cable *cable = dpcm->cable;
Jaroslav Kysela5de9e452010-10-20 09:33:03 +0200261 int err, stream = 1 << substream->stream;
Jaroslav Kysela597603d2010-08-09 14:21:11 +0200262
263 switch (cmd) {
264 case SNDRV_PCM_TRIGGER_START:
265 err = loopback_check_format(cable, substream->stream);
266 if (err < 0)
267 return err;
268 dpcm->last_jiffies = jiffies;
269 dpcm->pcm_rate_shift = 0;
Jaroslav Kyselab0125132012-05-13 13:39:45 +0200270 dpcm->last_drift = 0;
Jaroslav Kyseladd04bb12010-10-20 08:27:02 +0200271 spin_lock(&cable->lock);
Jaroslav Kysela5de9e452010-10-20 09:33:03 +0200272 cable->running |= stream;
273 cable->pause &= ~stream;
Jaroslav Kyseladd04bb12010-10-20 08:27:02 +0200274 loopback_timer_start(dpcm);
Takashi Iwai999fc9f2012-10-21 10:53:14 +0200275 spin_unlock(&cable->lock);
Jaroslav Kysela597603d2010-08-09 14:21:11 +0200276 if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK)
277 loopback_active_notify(dpcm);
278 break;
279 case SNDRV_PCM_TRIGGER_STOP:
Jaroslav Kyseladd04bb12010-10-20 08:27:02 +0200280 spin_lock(&cable->lock);
Jaroslav Kysela5de9e452010-10-20 09:33:03 +0200281 cable->running &= ~stream;
282 cable->pause &= ~stream;
Jaroslav Kysela597603d2010-08-09 14:21:11 +0200283 loopback_timer_stop(dpcm);
Takashi Iwai999fc9f2012-10-21 10:53:14 +0200284 spin_unlock(&cable->lock);
Jaroslav Kysela597603d2010-08-09 14:21:11 +0200285 if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK)
286 loopback_active_notify(dpcm);
287 break;
Jaroslav Kysela5de9e452010-10-20 09:33:03 +0200288 case SNDRV_PCM_TRIGGER_PAUSE_PUSH:
Takashi Iwaiedac8942013-02-04 10:28:15 +0100289 case SNDRV_PCM_TRIGGER_SUSPEND:
Jaroslav Kysela5de9e452010-10-20 09:33:03 +0200290 spin_lock(&cable->lock);
291 cable->pause |= stream;
Jaroslav Kysela5de9e452010-10-20 09:33:03 +0200292 loopback_timer_stop(dpcm);
Takashi Iwai999fc9f2012-10-21 10:53:14 +0200293 spin_unlock(&cable->lock);
Jaroslav Kysela5de9e452010-10-20 09:33:03 +0200294 break;
295 case SNDRV_PCM_TRIGGER_PAUSE_RELEASE:
Takashi Iwaiedac8942013-02-04 10:28:15 +0100296 case SNDRV_PCM_TRIGGER_RESUME:
Jaroslav Kysela5de9e452010-10-20 09:33:03 +0200297 spin_lock(&cable->lock);
298 dpcm->last_jiffies = jiffies;
299 cable->pause &= ~stream;
Jaroslav Kysela5de9e452010-10-20 09:33:03 +0200300 loopback_timer_start(dpcm);
Takashi Iwai999fc9f2012-10-21 10:53:14 +0200301 spin_unlock(&cable->lock);
Jaroslav Kysela5de9e452010-10-20 09:33:03 +0200302 break;
Jaroslav Kysela597603d2010-08-09 14:21:11 +0200303 default:
304 return -EINVAL;
305 }
306 return 0;
307}
308
Jaroslav Kyselab1c73fc2010-10-11 10:45:00 +0200309static void params_change_substream(struct loopback_pcm *dpcm,
310 struct snd_pcm_runtime *runtime)
311{
312 struct snd_pcm_runtime *dst_runtime;
313
314 if (dpcm == NULL || dpcm->substream == NULL)
315 return;
316 dst_runtime = dpcm->substream->runtime;
317 if (dst_runtime == NULL)
318 return;
319 dst_runtime->hw = dpcm->cable->hw;
320}
321
322static void params_change(struct snd_pcm_substream *substream)
323{
324 struct snd_pcm_runtime *runtime = substream->runtime;
325 struct loopback_pcm *dpcm = runtime->private_data;
326 struct loopback_cable *cable = dpcm->cable;
327
Eldad Zack74c34ca2013-04-23 01:00:41 +0200328 cable->hw.formats = pcm_format_to_bits(runtime->format);
Jaroslav Kyselab1c73fc2010-10-11 10:45:00 +0200329 cable->hw.rate_min = runtime->rate;
330 cable->hw.rate_max = runtime->rate;
331 cable->hw.channels_min = runtime->channels;
332 cable->hw.channels_max = runtime->channels;
333 params_change_substream(cable->streams[SNDRV_PCM_STREAM_PLAYBACK],
334 runtime);
335 params_change_substream(cable->streams[SNDRV_PCM_STREAM_CAPTURE],
336 runtime);
337}
338
Jaroslav Kysela597603d2010-08-09 14:21:11 +0200339static int loopback_prepare(struct snd_pcm_substream *substream)
340{
341 struct snd_pcm_runtime *runtime = substream->runtime;
342 struct loopback_pcm *dpcm = runtime->private_data;
343 struct loopback_cable *cable = dpcm->cable;
Jaroslav Kyselab1c73fc2010-10-11 10:45:00 +0200344 int bps, salign;
Jaroslav Kysela597603d2010-08-09 14:21:11 +0200345
346 salign = (snd_pcm_format_width(runtime->format) *
347 runtime->channels) / 8;
348 bps = salign * runtime->rate;
349 if (bps <= 0 || salign <= 0)
350 return -EINVAL;
351
352 dpcm->buf_pos = 0;
353 dpcm->pcm_buffer_size = frames_to_bytes(runtime, runtime->buffer_size);
354 if (substream->stream == SNDRV_PCM_STREAM_CAPTURE) {
355 /* clear capture buffer */
356 dpcm->silent_size = dpcm->pcm_buffer_size;
357 snd_pcm_format_set_silence(runtime->format, runtime->dma_area,
358 runtime->buffer_size * runtime->channels);
359 }
360
361 dpcm->irq_pos = 0;
362 dpcm->period_update_pending = 0;
363 dpcm->pcm_bps = bps;
364 dpcm->pcm_salign = salign;
365 dpcm->pcm_period_size = frames_to_bytes(runtime, runtime->period_size);
366
367 mutex_lock(&dpcm->loopback->cable_lock);
Jaroslav Kyselab1c73fc2010-10-11 10:45:00 +0200368 if (!(cable->valid & ~(1 << substream->stream)) ||
369 (get_setup(dpcm)->notify &&
370 substream->stream == SNDRV_PCM_STREAM_PLAYBACK))
371 params_change(substream);
Jaroslav Kysela597603d2010-08-09 14:21:11 +0200372 cable->valid |= 1 << substream->stream;
373 mutex_unlock(&dpcm->loopback->cable_lock);
374
375 return 0;
376}
377
378static void clear_capture_buf(struct loopback_pcm *dpcm, unsigned int bytes)
379{
380 struct snd_pcm_runtime *runtime = dpcm->substream->runtime;
381 char *dst = runtime->dma_area;
382 unsigned int dst_off = dpcm->buf_pos;
383
384 if (dpcm->silent_size >= dpcm->pcm_buffer_size)
385 return;
386 if (dpcm->silent_size + bytes > dpcm->pcm_buffer_size)
387 bytes = dpcm->pcm_buffer_size - dpcm->silent_size;
388
389 for (;;) {
390 unsigned int size = bytes;
391 if (dst_off + size > dpcm->pcm_buffer_size)
392 size = dpcm->pcm_buffer_size - dst_off;
393 snd_pcm_format_set_silence(runtime->format, dst + dst_off,
394 bytes_to_frames(runtime, size) *
395 runtime->channels);
396 dpcm->silent_size += size;
397 bytes -= size;
398 if (!bytes)
399 break;
400 dst_off = 0;
401 }
402}
403
404static void copy_play_buf(struct loopback_pcm *play,
405 struct loopback_pcm *capt,
406 unsigned int bytes)
407{
408 struct snd_pcm_runtime *runtime = play->substream->runtime;
Jaroslav Kysela20d9a262010-09-30 00:16:50 +0200409 char *src = runtime->dma_area;
Jaroslav Kysela597603d2010-08-09 14:21:11 +0200410 char *dst = capt->substream->runtime->dma_area;
411 unsigned int src_off = play->buf_pos;
412 unsigned int dst_off = capt->buf_pos;
413 unsigned int clear_bytes = 0;
414
415 /* check if playback is draining, trim the capture copy size
416 * when our pointer is at the end of playback ring buffer */
417 if (runtime->status->state == SNDRV_PCM_STATE_DRAINING &&
418 snd_pcm_playback_hw_avail(runtime) < runtime->buffer_size) {
419 snd_pcm_uframes_t appl_ptr, appl_ptr1, diff;
420 appl_ptr = appl_ptr1 = runtime->control->appl_ptr;
421 appl_ptr1 -= appl_ptr1 % runtime->buffer_size;
422 appl_ptr1 += play->buf_pos / play->pcm_salign;
423 if (appl_ptr < appl_ptr1)
424 appl_ptr1 -= runtime->buffer_size;
425 diff = (appl_ptr - appl_ptr1) * play->pcm_salign;
426 if (diff < bytes) {
427 clear_bytes = bytes - diff;
428 bytes = diff;
429 }
430 }
431
432 for (;;) {
433 unsigned int size = bytes;
434 if (src_off + size > play->pcm_buffer_size)
435 size = play->pcm_buffer_size - src_off;
436 if (dst_off + size > capt->pcm_buffer_size)
437 size = capt->pcm_buffer_size - dst_off;
438 memcpy(dst + dst_off, src + src_off, size);
439 capt->silent_size = 0;
440 bytes -= size;
441 if (!bytes)
442 break;
443 src_off = (src_off + size) % play->pcm_buffer_size;
444 dst_off = (dst_off + size) % capt->pcm_buffer_size;
445 }
446
Jaroslav Kysela20d9a262010-09-30 00:16:50 +0200447 if (clear_bytes > 0) {
Jaroslav Kysela597603d2010-08-09 14:21:11 +0200448 clear_capture_buf(capt, clear_bytes);
Jaroslav Kysela20d9a262010-09-30 00:16:50 +0200449 capt->silent_size = 0;
450 }
Jaroslav Kysela597603d2010-08-09 14:21:11 +0200451}
452
Jaroslav Kyselab0125132012-05-13 13:39:45 +0200453static inline unsigned int bytepos_delta(struct loopback_pcm *dpcm,
454 unsigned int jiffies_delta)
Jaroslav Kysela597603d2010-08-09 14:21:11 +0200455{
Jaroslav Kysela597603d2010-08-09 14:21:11 +0200456 unsigned long last_pos;
Jaroslav Kyselab0125132012-05-13 13:39:45 +0200457 unsigned int delta;
Jaroslav Kysela597603d2010-08-09 14:21:11 +0200458
459 last_pos = byte_pos(dpcm, dpcm->irq_pos);
Jaroslav Kyselab0125132012-05-13 13:39:45 +0200460 dpcm->irq_pos += jiffies_delta * dpcm->pcm_bps;
461 delta = byte_pos(dpcm, dpcm->irq_pos) - last_pos;
462 if (delta >= dpcm->last_drift)
463 delta -= dpcm->last_drift;
464 dpcm->last_drift = 0;
Jaroslav Kysela597603d2010-08-09 14:21:11 +0200465 if (dpcm->irq_pos >= dpcm->period_size_frac) {
466 dpcm->irq_pos %= dpcm->period_size_frac;
467 dpcm->period_update_pending = 1;
468 }
Jaroslav Kyselab0125132012-05-13 13:39:45 +0200469 return delta;
470}
471
472static inline void bytepos_finish(struct loopback_pcm *dpcm,
473 unsigned int delta)
474{
475 dpcm->buf_pos += delta;
476 dpcm->buf_pos %= dpcm->pcm_buffer_size;
Jaroslav Kysela597603d2010-08-09 14:21:11 +0200477}
478
Takashi Iwai999fc9f2012-10-21 10:53:14 +0200479/* call in cable->lock */
Jaroslav Kyseladd04bb12010-10-20 08:27:02 +0200480static unsigned int loopback_pos_update(struct loopback_cable *cable)
Jaroslav Kysela597603d2010-08-09 14:21:11 +0200481{
482 struct loopback_pcm *dpcm_play =
483 cable->streams[SNDRV_PCM_STREAM_PLAYBACK];
484 struct loopback_pcm *dpcm_capt =
485 cable->streams[SNDRV_PCM_STREAM_CAPTURE];
486 unsigned long delta_play = 0, delta_capt = 0;
Jaroslav Kyselab0125132012-05-13 13:39:45 +0200487 unsigned int running, count1, count2;
Jaroslav Kysela597603d2010-08-09 14:21:11 +0200488
Jaroslav Kysela5de9e452010-10-20 09:33:03 +0200489 running = cable->running ^ cable->pause;
Jaroslav Kyseladd04bb12010-10-20 08:27:02 +0200490 if (running & (1 << SNDRV_PCM_STREAM_PLAYBACK)) {
Jaroslav Kysela597603d2010-08-09 14:21:11 +0200491 delta_play = jiffies - dpcm_play->last_jiffies;
492 dpcm_play->last_jiffies += delta_play;
493 }
494
Jaroslav Kyseladd04bb12010-10-20 08:27:02 +0200495 if (running & (1 << SNDRV_PCM_STREAM_CAPTURE)) {
Jaroslav Kysela597603d2010-08-09 14:21:11 +0200496 delta_capt = jiffies - dpcm_capt->last_jiffies;
497 dpcm_capt->last_jiffies += delta_capt;
498 }
499
Takashi Iwai98d21df2011-03-18 07:31:53 +0100500 if (delta_play == 0 && delta_capt == 0)
501 goto unlock;
Jaroslav Kysela597603d2010-08-09 14:21:11 +0200502
503 if (delta_play > delta_capt) {
Jaroslav Kyselab0125132012-05-13 13:39:45 +0200504 count1 = bytepos_delta(dpcm_play, delta_play - delta_capt);
505 bytepos_finish(dpcm_play, count1);
Jaroslav Kysela597603d2010-08-09 14:21:11 +0200506 delta_play = delta_capt;
507 } else if (delta_play < delta_capt) {
Jaroslav Kyselab0125132012-05-13 13:39:45 +0200508 count1 = bytepos_delta(dpcm_capt, delta_capt - delta_play);
509 clear_capture_buf(dpcm_capt, count1);
510 bytepos_finish(dpcm_capt, count1);
Jaroslav Kysela597603d2010-08-09 14:21:11 +0200511 delta_capt = delta_play;
512 }
513
Takashi Iwai98d21df2011-03-18 07:31:53 +0100514 if (delta_play == 0 && delta_capt == 0)
515 goto unlock;
516
Jaroslav Kysela597603d2010-08-09 14:21:11 +0200517 /* note delta_capt == delta_play at this moment */
Jaroslav Kyselab0125132012-05-13 13:39:45 +0200518 count1 = bytepos_delta(dpcm_play, delta_play);
519 count2 = bytepos_delta(dpcm_capt, delta_capt);
520 if (count1 < count2) {
521 dpcm_capt->last_drift = count2 - count1;
522 count1 = count2;
523 } else if (count1 > count2) {
524 dpcm_play->last_drift = count1 - count2;
525 }
526 copy_play_buf(dpcm_play, dpcm_capt, count1);
527 bytepos_finish(dpcm_play, count1);
528 bytepos_finish(dpcm_capt, count1);
Takashi Iwai98d21df2011-03-18 07:31:53 +0100529 unlock:
Jaroslav Kyseladd04bb12010-10-20 08:27:02 +0200530 return running;
Jaroslav Kysela597603d2010-08-09 14:21:11 +0200531}
532
533static void loopback_timer_function(unsigned long data)
534{
535 struct loopback_pcm *dpcm = (struct loopback_pcm *)data;
Takashi Iwai999fc9f2012-10-21 10:53:14 +0200536 unsigned long flags;
Jaroslav Kysela597603d2010-08-09 14:21:11 +0200537
Takashi Iwai999fc9f2012-10-21 10:53:14 +0200538 spin_lock_irqsave(&dpcm->cable->lock, flags);
539 if (loopback_pos_update(dpcm->cable) & (1 << dpcm->substream->stream)) {
Jaroslav Kysela597603d2010-08-09 14:21:11 +0200540 loopback_timer_start(dpcm);
Jaroslav Kyseladd04bb12010-10-20 08:27:02 +0200541 if (dpcm->period_update_pending) {
542 dpcm->period_update_pending = 0;
Takashi Iwai999fc9f2012-10-21 10:53:14 +0200543 spin_unlock_irqrestore(&dpcm->cable->lock, flags);
544 /* need to unlock before calling below */
Jaroslav Kysela597603d2010-08-09 14:21:11 +0200545 snd_pcm_period_elapsed(dpcm->substream);
Takashi Iwai999fc9f2012-10-21 10:53:14 +0200546 return;
Jaroslav Kyseladd04bb12010-10-20 08:27:02 +0200547 }
Jaroslav Kysela597603d2010-08-09 14:21:11 +0200548 }
Takashi Iwai999fc9f2012-10-21 10:53:14 +0200549 spin_unlock_irqrestore(&dpcm->cable->lock, flags);
Jaroslav Kysela597603d2010-08-09 14:21:11 +0200550}
551
552static snd_pcm_uframes_t loopback_pointer(struct snd_pcm_substream *substream)
553{
554 struct snd_pcm_runtime *runtime = substream->runtime;
555 struct loopback_pcm *dpcm = runtime->private_data;
Takashi Iwai999fc9f2012-10-21 10:53:14 +0200556 snd_pcm_uframes_t pos;
Jaroslav Kysela597603d2010-08-09 14:21:11 +0200557
Takashi Iwai999fc9f2012-10-21 10:53:14 +0200558 spin_lock(&dpcm->cable->lock);
Jaroslav Kysela597603d2010-08-09 14:21:11 +0200559 loopback_pos_update(dpcm->cable);
Takashi Iwai999fc9f2012-10-21 10:53:14 +0200560 pos = dpcm->buf_pos;
561 spin_unlock(&dpcm->cable->lock);
562 return bytes_to_frames(runtime, pos);
Jaroslav Kysela597603d2010-08-09 14:21:11 +0200563}
564
565static struct snd_pcm_hardware loopback_pcm_hardware =
566{
567 .info = (SNDRV_PCM_INFO_INTERLEAVED | SNDRV_PCM_INFO_MMAP |
Takashi Iwaiedac8942013-02-04 10:28:15 +0100568 SNDRV_PCM_INFO_MMAP_VALID | SNDRV_PCM_INFO_PAUSE |
569 SNDRV_PCM_INFO_RESUME),
Jaroslav Kysela597603d2010-08-09 14:21:11 +0200570 .formats = (SNDRV_PCM_FMTBIT_S16_LE | SNDRV_PCM_FMTBIT_S16_BE |
571 SNDRV_PCM_FMTBIT_S32_LE | SNDRV_PCM_FMTBIT_S32_BE |
572 SNDRV_PCM_FMTBIT_FLOAT_LE | SNDRV_PCM_FMTBIT_FLOAT_BE),
573 .rates = SNDRV_PCM_RATE_CONTINUOUS | SNDRV_PCM_RATE_8000_192000,
574 .rate_min = 8000,
575 .rate_max = 192000,
576 .channels_min = 1,
577 .channels_max = 32,
578 .buffer_bytes_max = 2 * 1024 * 1024,
579 .period_bytes_min = 64,
Jaroslav Kysela0db71022010-10-14 21:46:12 +0200580 /* note check overflow in frac_pos() using pcm_rate_shift before
581 changing period_bytes_max value */
582 .period_bytes_max = 1024 * 1024,
Jaroslav Kysela597603d2010-08-09 14:21:11 +0200583 .periods_min = 1,
584 .periods_max = 1024,
585 .fifo_size = 0,
586};
587
588static void loopback_runtime_free(struct snd_pcm_runtime *runtime)
589{
590 struct loopback_pcm *dpcm = runtime->private_data;
591 kfree(dpcm);
592}
593
594static int loopback_hw_params(struct snd_pcm_substream *substream,
595 struct snd_pcm_hw_params *params)
596{
Takashi Iwai6b69a0e2011-09-24 12:16:29 +0200597 return snd_pcm_lib_alloc_vmalloc_buffer(substream,
598 params_buffer_bytes(params));
Jaroslav Kysela597603d2010-08-09 14:21:11 +0200599}
600
601static int loopback_hw_free(struct snd_pcm_substream *substream)
602{
603 struct snd_pcm_runtime *runtime = substream->runtime;
604 struct loopback_pcm *dpcm = runtime->private_data;
605 struct loopback_cable *cable = dpcm->cable;
606
607 mutex_lock(&dpcm->loopback->cable_lock);
608 cable->valid &= ~(1 << substream->stream);
609 mutex_unlock(&dpcm->loopback->cable_lock);
Takashi Iwai6b69a0e2011-09-24 12:16:29 +0200610 return snd_pcm_lib_free_vmalloc_buffer(substream);
Jaroslav Kysela597603d2010-08-09 14:21:11 +0200611}
612
613static unsigned int get_cable_index(struct snd_pcm_substream *substream)
614{
615 if (!substream->pcm->device)
616 return substream->stream;
617 else
618 return !substream->stream;
619}
620
Jaroslav Kyselab1c73fc2010-10-11 10:45:00 +0200621static int rule_format(struct snd_pcm_hw_params *params,
622 struct snd_pcm_hw_rule *rule)
623{
624
625 struct snd_pcm_hardware *hw = rule->private;
Takashi Iwai5af666d2018-01-05 16:15:33 +0100626 struct snd_mask m;
Jaroslav Kyselab1c73fc2010-10-11 10:45:00 +0200627
Takashi Iwai5af666d2018-01-05 16:15:33 +0100628 snd_mask_none(&m);
629 m.bits[0] = (u_int32_t)hw->formats;
630 m.bits[1] = (u_int32_t)(hw->formats >> 32);
631 return snd_mask_refine(hw_param_mask(params, rule->var), &m);
Jaroslav Kyselab1c73fc2010-10-11 10:45:00 +0200632}
633
634static int rule_rate(struct snd_pcm_hw_params *params,
635 struct snd_pcm_hw_rule *rule)
636{
637 struct snd_pcm_hardware *hw = rule->private;
638 struct snd_interval t;
639
640 t.min = hw->rate_min;
641 t.max = hw->rate_max;
642 t.openmin = t.openmax = 0;
643 t.integer = 0;
644 return snd_interval_refine(hw_param_interval(params, rule->var), &t);
645}
646
647static int rule_channels(struct snd_pcm_hw_params *params,
648 struct snd_pcm_hw_rule *rule)
649{
650 struct snd_pcm_hardware *hw = rule->private;
651 struct snd_interval t;
652
653 t.min = hw->channels_min;
654 t.max = hw->channels_max;
655 t.openmin = t.openmax = 0;
656 t.integer = 0;
657 return snd_interval_refine(hw_param_interval(params, rule->var), &t);
658}
659
Takashi Iwai01046dd2018-01-05 16:09:47 +0100660static void free_cable(struct snd_pcm_substream *substream)
661{
662 struct loopback *loopback = substream->private_data;
663 int dev = get_cable_index(substream);
664 struct loopback_cable *cable;
665
666 cable = loopback->cables[substream->number][dev];
667 if (!cable)
668 return;
669 if (cable->streams[!substream->stream]) {
670 /* other stream is still alive */
671 cable->streams[substream->stream] = NULL;
672 } else {
673 /* free the cable */
674 loopback->cables[substream->number][dev] = NULL;
675 kfree(cable);
676 }
677}
678
Jaroslav Kysela597603d2010-08-09 14:21:11 +0200679static int loopback_open(struct snd_pcm_substream *substream)
680{
681 struct snd_pcm_runtime *runtime = substream->runtime;
682 struct loopback *loopback = substream->private_data;
683 struct loopback_pcm *dpcm;
Takashi Iwai01046dd2018-01-05 16:09:47 +0100684 struct loopback_cable *cable = NULL;
Jaroslav Kysela597603d2010-08-09 14:21:11 +0200685 int err = 0;
686 int dev = get_cable_index(substream);
687
688 mutex_lock(&loopback->cable_lock);
689 dpcm = kzalloc(sizeof(*dpcm), GFP_KERNEL);
690 if (!dpcm) {
691 err = -ENOMEM;
692 goto unlock;
693 }
694 dpcm->loopback = loopback;
695 dpcm->substream = substream;
696 setup_timer(&dpcm->timer, loopback_timer_function,
697 (unsigned long)dpcm);
698
699 cable = loopback->cables[substream->number][dev];
700 if (!cable) {
701 cable = kzalloc(sizeof(*cable), GFP_KERNEL);
702 if (!cable) {
Jaroslav Kysela597603d2010-08-09 14:21:11 +0200703 err = -ENOMEM;
704 goto unlock;
705 }
706 spin_lock_init(&cable->lock);
707 cable->hw = loopback_pcm_hardware;
708 loopback->cables[substream->number][dev] = cable;
709 }
710 dpcm->cable = cable;
711 cable->streams[substream->stream] = dpcm;
712
713 snd_pcm_hw_constraint_integer(runtime, SNDRV_PCM_HW_PARAM_PERIODS);
714
Jaroslav Kyselab1c73fc2010-10-11 10:45:00 +0200715 /* use dynamic rules based on actual runtime->hw values */
716 /* note that the default rules created in the PCM midlevel code */
717 /* are cached -> they do not reflect the actual state */
718 err = snd_pcm_hw_rule_add(runtime, 0,
719 SNDRV_PCM_HW_PARAM_FORMAT,
720 rule_format, &runtime->hw,
721 SNDRV_PCM_HW_PARAM_FORMAT, -1);
722 if (err < 0)
723 goto unlock;
724 err = snd_pcm_hw_rule_add(runtime, 0,
725 SNDRV_PCM_HW_PARAM_RATE,
726 rule_rate, &runtime->hw,
727 SNDRV_PCM_HW_PARAM_RATE, -1);
728 if (err < 0)
729 goto unlock;
730 err = snd_pcm_hw_rule_add(runtime, 0,
731 SNDRV_PCM_HW_PARAM_CHANNELS,
732 rule_channels, &runtime->hw,
733 SNDRV_PCM_HW_PARAM_CHANNELS, -1);
734 if (err < 0)
735 goto unlock;
736
Jaroslav Kysela597603d2010-08-09 14:21:11 +0200737 runtime->private_data = dpcm;
738 runtime->private_free = loopback_runtime_free;
Jaroslav Kyselab1c73fc2010-10-11 10:45:00 +0200739 if (get_notify(dpcm))
Jaroslav Kysela597603d2010-08-09 14:21:11 +0200740 runtime->hw = loopback_pcm_hardware;
Jaroslav Kyselab1c73fc2010-10-11 10:45:00 +0200741 else
Jaroslav Kysela597603d2010-08-09 14:21:11 +0200742 runtime->hw = cable->hw;
Jaroslav Kysela597603d2010-08-09 14:21:11 +0200743 unlock:
Takashi Iwai01046dd2018-01-05 16:09:47 +0100744 if (err < 0) {
745 free_cable(substream);
746 kfree(dpcm);
747 }
Jaroslav Kysela597603d2010-08-09 14:21:11 +0200748 mutex_unlock(&loopback->cable_lock);
749 return err;
750}
751
752static int loopback_close(struct snd_pcm_substream *substream)
753{
754 struct loopback *loopback = substream->private_data;
755 struct loopback_pcm *dpcm = substream->runtime->private_data;
Jaroslav Kysela597603d2010-08-09 14:21:11 +0200756
757 loopback_timer_stop(dpcm);
758 mutex_lock(&loopback->cable_lock);
Takashi Iwai01046dd2018-01-05 16:09:47 +0100759 free_cable(substream);
Jaroslav Kysela597603d2010-08-09 14:21:11 +0200760 mutex_unlock(&loopback->cable_lock);
761 return 0;
762}
763
764static struct snd_pcm_ops loopback_playback_ops = {
765 .open = loopback_open,
766 .close = loopback_close,
767 .ioctl = snd_pcm_lib_ioctl,
768 .hw_params = loopback_hw_params,
769 .hw_free = loopback_hw_free,
770 .prepare = loopback_prepare,
771 .trigger = loopback_trigger,
772 .pointer = loopback_pointer,
Takashi Iwai6b69a0e2011-09-24 12:16:29 +0200773 .page = snd_pcm_lib_get_vmalloc_page,
774 .mmap = snd_pcm_lib_mmap_vmalloc,
Jaroslav Kysela597603d2010-08-09 14:21:11 +0200775};
776
777static struct snd_pcm_ops loopback_capture_ops = {
778 .open = loopback_open,
779 .close = loopback_close,
780 .ioctl = snd_pcm_lib_ioctl,
781 .hw_params = loopback_hw_params,
782 .hw_free = loopback_hw_free,
783 .prepare = loopback_prepare,
784 .trigger = loopback_trigger,
785 .pointer = loopback_pointer,
Takashi Iwai6b69a0e2011-09-24 12:16:29 +0200786 .page = snd_pcm_lib_get_vmalloc_page,
787 .mmap = snd_pcm_lib_mmap_vmalloc,
Jaroslav Kysela597603d2010-08-09 14:21:11 +0200788};
789
Bill Pembertonfbbb01a2012-12-06 12:35:27 -0500790static int loopback_pcm_new(struct loopback *loopback,
791 int device, int substreams)
Jaroslav Kysela597603d2010-08-09 14:21:11 +0200792{
793 struct snd_pcm *pcm;
794 int err;
795
796 err = snd_pcm_new(loopback->card, "Loopback PCM", device,
797 substreams, substreams, &pcm);
798 if (err < 0)
799 return err;
800 snd_pcm_set_ops(pcm, SNDRV_PCM_STREAM_PLAYBACK, &loopback_playback_ops);
801 snd_pcm_set_ops(pcm, SNDRV_PCM_STREAM_CAPTURE, &loopback_capture_ops);
802
803 pcm->private_data = loopback;
804 pcm->info_flags = 0;
805 strcpy(pcm->name, "Loopback PCM");
806
807 loopback->pcm[device] = pcm;
Jaroslav Kysela597603d2010-08-09 14:21:11 +0200808 return 0;
809}
810
811static int loopback_rate_shift_info(struct snd_kcontrol *kcontrol,
812 struct snd_ctl_elem_info *uinfo)
813{
814 uinfo->type = SNDRV_CTL_ELEM_TYPE_INTEGER;
815 uinfo->count = 1;
816 uinfo->value.integer.min = 80000;
817 uinfo->value.integer.max = 120000;
818 uinfo->value.integer.step = 1;
819 return 0;
820}
821
822static int loopback_rate_shift_get(struct snd_kcontrol *kcontrol,
823 struct snd_ctl_elem_value *ucontrol)
824{
825 struct loopback *loopback = snd_kcontrol_chip(kcontrol);
826
827 ucontrol->value.integer.value[0] =
828 loopback->setup[kcontrol->id.subdevice]
829 [kcontrol->id.device].rate_shift;
830 return 0;
831}
832
833static int loopback_rate_shift_put(struct snd_kcontrol *kcontrol,
834 struct snd_ctl_elem_value *ucontrol)
835{
836 struct loopback *loopback = snd_kcontrol_chip(kcontrol);
837 unsigned int val;
838 int change = 0;
839
840 val = ucontrol->value.integer.value[0];
841 if (val < 80000)
842 val = 80000;
843 if (val > 120000)
844 val = 120000;
845 mutex_lock(&loopback->cable_lock);
846 if (val != loopback->setup[kcontrol->id.subdevice]
847 [kcontrol->id.device].rate_shift) {
848 loopback->setup[kcontrol->id.subdevice]
849 [kcontrol->id.device].rate_shift = val;
850 change = 1;
851 }
852 mutex_unlock(&loopback->cable_lock);
853 return change;
854}
855
856static int loopback_notify_get(struct snd_kcontrol *kcontrol,
857 struct snd_ctl_elem_value *ucontrol)
858{
859 struct loopback *loopback = snd_kcontrol_chip(kcontrol);
860
861 ucontrol->value.integer.value[0] =
862 loopback->setup[kcontrol->id.subdevice]
863 [kcontrol->id.device].notify;
864 return 0;
865}
866
867static int loopback_notify_put(struct snd_kcontrol *kcontrol,
868 struct snd_ctl_elem_value *ucontrol)
869{
870 struct loopback *loopback = snd_kcontrol_chip(kcontrol);
871 unsigned int val;
872 int change = 0;
873
874 val = ucontrol->value.integer.value[0] ? 1 : 0;
875 if (val != loopback->setup[kcontrol->id.subdevice]
876 [kcontrol->id.device].notify) {
877 loopback->setup[kcontrol->id.subdevice]
878 [kcontrol->id.device].notify = val;
879 change = 1;
880 }
881 return change;
882}
883
884static int loopback_active_get(struct snd_kcontrol *kcontrol,
885 struct snd_ctl_elem_value *ucontrol)
886{
887 struct loopback *loopback = snd_kcontrol_chip(kcontrol);
888 struct loopback_cable *cable = loopback->cables
Jaroslav Kyselaac446fb2010-10-02 16:00:53 +0200889 [kcontrol->id.subdevice][kcontrol->id.device ^ 1];
Jaroslav Kysela597603d2010-08-09 14:21:11 +0200890 unsigned int val = 0;
891
892 if (cable != NULL)
893 val = (cable->running & (1 << SNDRV_PCM_STREAM_PLAYBACK)) ?
894 1 : 0;
895 ucontrol->value.integer.value[0] = val;
896 return 0;
897}
898
899static int loopback_format_info(struct snd_kcontrol *kcontrol,
900 struct snd_ctl_elem_info *uinfo)
901{
902 uinfo->type = SNDRV_CTL_ELEM_TYPE_INTEGER;
903 uinfo->count = 1;
904 uinfo->value.integer.min = 0;
905 uinfo->value.integer.max = SNDRV_PCM_FORMAT_LAST;
906 uinfo->value.integer.step = 1;
907 return 0;
908}
909
910static int loopback_format_get(struct snd_kcontrol *kcontrol,
911 struct snd_ctl_elem_value *ucontrol)
912{
913 struct loopback *loopback = snd_kcontrol_chip(kcontrol);
914
915 ucontrol->value.integer.value[0] =
916 loopback->setup[kcontrol->id.subdevice]
917 [kcontrol->id.device].format;
918 return 0;
919}
920
921static int loopback_rate_info(struct snd_kcontrol *kcontrol,
922 struct snd_ctl_elem_info *uinfo)
923{
924 uinfo->type = SNDRV_CTL_ELEM_TYPE_INTEGER;
925 uinfo->count = 1;
926 uinfo->value.integer.min = 0;
927 uinfo->value.integer.max = 192000;
928 uinfo->value.integer.step = 1;
929 return 0;
930}
931
932static int loopback_rate_get(struct snd_kcontrol *kcontrol,
933 struct snd_ctl_elem_value *ucontrol)
934{
935 struct loopback *loopback = snd_kcontrol_chip(kcontrol);
936
937 ucontrol->value.integer.value[0] =
938 loopback->setup[kcontrol->id.subdevice]
939 [kcontrol->id.device].rate;
940 return 0;
941}
942
943static int loopback_channels_info(struct snd_kcontrol *kcontrol,
944 struct snd_ctl_elem_info *uinfo)
945{
946 uinfo->type = SNDRV_CTL_ELEM_TYPE_INTEGER;
947 uinfo->count = 1;
948 uinfo->value.integer.min = 1;
949 uinfo->value.integer.max = 1024;
950 uinfo->value.integer.step = 1;
951 return 0;
952}
953
954static int loopback_channels_get(struct snd_kcontrol *kcontrol,
955 struct snd_ctl_elem_value *ucontrol)
956{
957 struct loopback *loopback = snd_kcontrol_chip(kcontrol);
958
959 ucontrol->value.integer.value[0] =
960 loopback->setup[kcontrol->id.subdevice]
Jaroslav Kysela1446c5f2010-09-15 08:01:57 +0200961 [kcontrol->id.device].channels;
Jaroslav Kysela597603d2010-08-09 14:21:11 +0200962 return 0;
963}
964
Bill Pembertonfbbb01a2012-12-06 12:35:27 -0500965static struct snd_kcontrol_new loopback_controls[] = {
Jaroslav Kysela597603d2010-08-09 14:21:11 +0200966{
967 .iface = SNDRV_CTL_ELEM_IFACE_PCM,
968 .name = "PCM Rate Shift 100000",
969 .info = loopback_rate_shift_info,
970 .get = loopback_rate_shift_get,
971 .put = loopback_rate_shift_put,
972},
973{
974 .iface = SNDRV_CTL_ELEM_IFACE_PCM,
975 .name = "PCM Notify",
976 .info = snd_ctl_boolean_mono_info,
977 .get = loopback_notify_get,
978 .put = loopback_notify_put,
979},
980#define ACTIVE_IDX 2
981{
982 .access = SNDRV_CTL_ELEM_ACCESS_READ,
983 .iface = SNDRV_CTL_ELEM_IFACE_PCM,
984 .name = "PCM Slave Active",
985 .info = snd_ctl_boolean_mono_info,
986 .get = loopback_active_get,
987},
988#define FORMAT_IDX 3
989{
990 .access = SNDRV_CTL_ELEM_ACCESS_READ,
991 .iface = SNDRV_CTL_ELEM_IFACE_PCM,
992 .name = "PCM Slave Format",
993 .info = loopback_format_info,
994 .get = loopback_format_get
995},
996#define RATE_IDX 4
997{
998 .access = SNDRV_CTL_ELEM_ACCESS_READ,
999 .iface = SNDRV_CTL_ELEM_IFACE_PCM,
1000 .name = "PCM Slave Rate",
1001 .info = loopback_rate_info,
1002 .get = loopback_rate_get
1003},
1004#define CHANNELS_IDX 5
1005{
1006 .access = SNDRV_CTL_ELEM_ACCESS_READ,
1007 .iface = SNDRV_CTL_ELEM_IFACE_PCM,
1008 .name = "PCM Slave Channels",
1009 .info = loopback_channels_info,
1010 .get = loopback_channels_get
1011}
1012};
1013
Bill Pembertonfbbb01a2012-12-06 12:35:27 -05001014static int loopback_mixer_new(struct loopback *loopback, int notify)
Jaroslav Kysela597603d2010-08-09 14:21:11 +02001015{
1016 struct snd_card *card = loopback->card;
1017 struct snd_pcm *pcm;
1018 struct snd_kcontrol *kctl;
1019 struct loopback_setup *setup;
1020 int err, dev, substr, substr_count, idx;
1021
1022 strcpy(card->mixername, "Loopback Mixer");
1023 for (dev = 0; dev < 2; dev++) {
1024 pcm = loopback->pcm[dev];
1025 substr_count =
1026 pcm->streams[SNDRV_PCM_STREAM_CAPTURE].substream_count;
1027 for (substr = 0; substr < substr_count; substr++) {
1028 setup = &loopback->setup[substr][dev];
1029 setup->notify = notify;
1030 setup->rate_shift = NO_PITCH;
1031 setup->format = SNDRV_PCM_FORMAT_S16_LE;
1032 setup->rate = 48000;
1033 setup->channels = 2;
1034 for (idx = 0; idx < ARRAY_SIZE(loopback_controls);
1035 idx++) {
1036 kctl = snd_ctl_new1(&loopback_controls[idx],
1037 loopback);
1038 if (!kctl)
1039 return -ENOMEM;
1040 kctl->id.device = dev;
1041 kctl->id.subdevice = substr;
1042 switch (idx) {
1043 case ACTIVE_IDX:
1044 setup->active_id = kctl->id;
1045 break;
1046 case FORMAT_IDX:
1047 setup->format_id = kctl->id;
1048 break;
1049 case RATE_IDX:
1050 setup->rate_id = kctl->id;
1051 break;
1052 case CHANNELS_IDX:
1053 setup->channels_id = kctl->id;
1054 break;
1055 default:
1056 break;
1057 }
1058 err = snd_ctl_add(card, kctl);
1059 if (err < 0)
1060 return err;
1061 }
1062 }
1063 }
1064 return 0;
1065}
1066
Jaroslav Kyselae74670b2010-10-18 09:43:10 +02001067static void print_dpcm_info(struct snd_info_buffer *buffer,
1068 struct loopback_pcm *dpcm,
1069 const char *id)
1070{
1071 snd_iprintf(buffer, " %s\n", id);
1072 if (dpcm == NULL) {
1073 snd_iprintf(buffer, " inactive\n");
1074 return;
1075 }
1076 snd_iprintf(buffer, " buffer_size:\t%u\n", dpcm->pcm_buffer_size);
1077 snd_iprintf(buffer, " buffer_pos:\t\t%u\n", dpcm->buf_pos);
1078 snd_iprintf(buffer, " silent_size:\t%u\n", dpcm->silent_size);
1079 snd_iprintf(buffer, " period_size:\t%u\n", dpcm->pcm_period_size);
1080 snd_iprintf(buffer, " bytes_per_sec:\t%u\n", dpcm->pcm_bps);
1081 snd_iprintf(buffer, " sample_align:\t%u\n", dpcm->pcm_salign);
1082 snd_iprintf(buffer, " rate_shift:\t\t%u\n", dpcm->pcm_rate_shift);
1083 snd_iprintf(buffer, " update_pending:\t%u\n",
1084 dpcm->period_update_pending);
1085 snd_iprintf(buffer, " irq_pos:\t\t%u\n", dpcm->irq_pos);
1086 snd_iprintf(buffer, " period_frac:\t%u\n", dpcm->period_size_frac);
1087 snd_iprintf(buffer, " last_jiffies:\t%lu (%lu)\n",
1088 dpcm->last_jiffies, jiffies);
1089 snd_iprintf(buffer, " timer_expires:\t%lu\n", dpcm->timer.expires);
1090}
1091
1092static void print_substream_info(struct snd_info_buffer *buffer,
1093 struct loopback *loopback,
1094 int sub,
1095 int num)
1096{
1097 struct loopback_cable *cable = loopback->cables[sub][num];
1098
1099 snd_iprintf(buffer, "Cable %i substream %i:\n", num, sub);
1100 if (cable == NULL) {
1101 snd_iprintf(buffer, " inactive\n");
1102 return;
1103 }
1104 snd_iprintf(buffer, " valid: %u\n", cable->valid);
1105 snd_iprintf(buffer, " running: %u\n", cable->running);
Jaroslav Kysela5de9e452010-10-20 09:33:03 +02001106 snd_iprintf(buffer, " pause: %u\n", cable->pause);
Jaroslav Kyselae74670b2010-10-18 09:43:10 +02001107 print_dpcm_info(buffer, cable->streams[0], "Playback");
1108 print_dpcm_info(buffer, cable->streams[1], "Capture");
1109}
1110
1111static void print_cable_info(struct snd_info_entry *entry,
1112 struct snd_info_buffer *buffer)
1113{
1114 struct loopback *loopback = entry->private_data;
1115 int sub, num;
1116
1117 mutex_lock(&loopback->cable_lock);
1118 num = entry->name[strlen(entry->name)-1];
1119 num = num == '0' ? 0 : 1;
1120 for (sub = 0; sub < MAX_PCM_SUBSTREAMS; sub++)
1121 print_substream_info(buffer, loopback, sub, num);
1122 mutex_unlock(&loopback->cable_lock);
1123}
1124
Bill Pembertonfbbb01a2012-12-06 12:35:27 -05001125static int loopback_proc_new(struct loopback *loopback, int cidx)
Jaroslav Kyselae74670b2010-10-18 09:43:10 +02001126{
1127 char name[32];
1128 struct snd_info_entry *entry;
1129 int err;
1130
1131 snprintf(name, sizeof(name), "cable#%d", cidx);
1132 err = snd_card_proc_new(loopback->card, name, &entry);
1133 if (err < 0)
1134 return err;
1135
1136 snd_info_set_text_ops(entry, loopback, print_cable_info);
1137 return 0;
1138}
1139
Bill Pembertonfbbb01a2012-12-06 12:35:27 -05001140static int loopback_probe(struct platform_device *devptr)
Jaroslav Kysela597603d2010-08-09 14:21:11 +02001141{
1142 struct snd_card *card;
1143 struct loopback *loopback;
1144 int dev = devptr->id;
1145 int err;
1146
Takashi Iwai5872f3f2014-01-29 12:59:08 +01001147 err = snd_card_new(&devptr->dev, index[dev], id[dev], THIS_MODULE,
1148 sizeof(struct loopback), &card);
Jaroslav Kysela597603d2010-08-09 14:21:11 +02001149 if (err < 0)
1150 return err;
1151 loopback = card->private_data;
1152
1153 if (pcm_substreams[dev] < 1)
1154 pcm_substreams[dev] = 1;
1155 if (pcm_substreams[dev] > MAX_PCM_SUBSTREAMS)
1156 pcm_substreams[dev] = MAX_PCM_SUBSTREAMS;
1157
1158 loopback->card = card;
1159 mutex_init(&loopback->cable_lock);
1160
1161 err = loopback_pcm_new(loopback, 0, pcm_substreams[dev]);
1162 if (err < 0)
1163 goto __nodev;
1164 err = loopback_pcm_new(loopback, 1, pcm_substreams[dev]);
1165 if (err < 0)
1166 goto __nodev;
1167 err = loopback_mixer_new(loopback, pcm_notify[dev] ? 1 : 0);
1168 if (err < 0)
1169 goto __nodev;
Jaroslav Kyselae74670b2010-10-18 09:43:10 +02001170 loopback_proc_new(loopback, 0);
1171 loopback_proc_new(loopback, 1);
Jaroslav Kysela597603d2010-08-09 14:21:11 +02001172 strcpy(card->driver, "Loopback");
1173 strcpy(card->shortname, "Loopback");
1174 sprintf(card->longname, "Loopback %i", dev + 1);
1175 err = snd_card_register(card);
1176 if (!err) {
1177 platform_set_drvdata(devptr, card);
1178 return 0;
1179 }
1180 __nodev:
1181 snd_card_free(card);
1182 return err;
1183}
1184
Bill Pembertonfbbb01a2012-12-06 12:35:27 -05001185static int loopback_remove(struct platform_device *devptr)
Jaroslav Kysela597603d2010-08-09 14:21:11 +02001186{
1187 snd_card_free(platform_get_drvdata(devptr));
Jaroslav Kysela597603d2010-08-09 14:21:11 +02001188 return 0;
1189}
1190
Takashi Iwaid34e4e02012-08-09 15:47:15 +02001191#ifdef CONFIG_PM_SLEEP
Takashi Iwai284e7ca2012-07-02 11:22:40 +02001192static int loopback_suspend(struct device *pdev)
Jaroslav Kysela597603d2010-08-09 14:21:11 +02001193{
Takashi Iwai284e7ca2012-07-02 11:22:40 +02001194 struct snd_card *card = dev_get_drvdata(pdev);
Jaroslav Kysela597603d2010-08-09 14:21:11 +02001195 struct loopback *loopback = card->private_data;
1196
1197 snd_power_change_state(card, SNDRV_CTL_POWER_D3hot);
1198
1199 snd_pcm_suspend_all(loopback->pcm[0]);
1200 snd_pcm_suspend_all(loopback->pcm[1]);
1201 return 0;
1202}
1203
Takashi Iwai284e7ca2012-07-02 11:22:40 +02001204static int loopback_resume(struct device *pdev)
Jaroslav Kysela597603d2010-08-09 14:21:11 +02001205{
Takashi Iwai284e7ca2012-07-02 11:22:40 +02001206 struct snd_card *card = dev_get_drvdata(pdev);
Jaroslav Kysela597603d2010-08-09 14:21:11 +02001207
1208 snd_power_change_state(card, SNDRV_CTL_POWER_D0);
1209 return 0;
1210}
Takashi Iwai284e7ca2012-07-02 11:22:40 +02001211
1212static SIMPLE_DEV_PM_OPS(loopback_pm, loopback_suspend, loopback_resume);
1213#define LOOPBACK_PM_OPS &loopback_pm
1214#else
1215#define LOOPBACK_PM_OPS NULL
Jaroslav Kysela597603d2010-08-09 14:21:11 +02001216#endif
1217
1218#define SND_LOOPBACK_DRIVER "snd_aloop"
1219
1220static struct platform_driver loopback_driver = {
1221 .probe = loopback_probe,
Bill Pembertonfbbb01a2012-12-06 12:35:27 -05001222 .remove = loopback_remove,
Jaroslav Kysela597603d2010-08-09 14:21:11 +02001223 .driver = {
Takashi Iwai8bf01d82012-07-02 10:50:24 +02001224 .name = SND_LOOPBACK_DRIVER,
Takashi Iwai284e7ca2012-07-02 11:22:40 +02001225 .pm = LOOPBACK_PM_OPS,
Jaroslav Kysela597603d2010-08-09 14:21:11 +02001226 },
1227};
1228
1229static void loopback_unregister_all(void)
1230{
1231 int i;
1232
1233 for (i = 0; i < ARRAY_SIZE(devices); ++i)
1234 platform_device_unregister(devices[i]);
1235 platform_driver_unregister(&loopback_driver);
1236}
1237
1238static int __init alsa_card_loopback_init(void)
1239{
1240 int i, err, cards;
1241
1242 err = platform_driver_register(&loopback_driver);
1243 if (err < 0)
1244 return err;
1245
1246
1247 cards = 0;
1248 for (i = 0; i < SNDRV_CARDS; i++) {
1249 struct platform_device *device;
1250 if (!enable[i])
1251 continue;
1252 device = platform_device_register_simple(SND_LOOPBACK_DRIVER,
1253 i, NULL, 0);
1254 if (IS_ERR(device))
1255 continue;
1256 if (!platform_get_drvdata(device)) {
1257 platform_device_unregister(device);
1258 continue;
1259 }
1260 devices[i] = device;
1261 cards++;
1262 }
1263 if (!cards) {
1264#ifdef MODULE
1265 printk(KERN_ERR "aloop: No loopback enabled\n");
1266#endif
1267 loopback_unregister_all();
1268 return -ENODEV;
1269 }
1270 return 0;
1271}
1272
1273static void __exit alsa_card_loopback_exit(void)
1274{
1275 loopback_unregister_all();
1276}
1277
1278module_init(alsa_card_loopback_init)
1279module_exit(alsa_card_loopback_exit)