5 * Copyright (c) by Jaroslav Kysela <perex@perex.cz>
7 * More accurate positioning and full-duplex support:
8 * Copyright (c) Ahmet İnan <ainan at mathematik.uni-freiburg.de>
10 * Major (almost complete) rewrite:
11 * Copyright (c) by Takashi Iwai <tiwai@suse.de>
13 * A next major update in 2010 (separate timers for playback and capture):
14 * Copyright (c) Jaroslav Kysela <perex@perex.cz>
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.
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.
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
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>
37 #include <linux/moduleparam.h>
38 #include <linux/platform_device.h>
39 #include <sound/core.h>
40 #include <sound/control.h>
41 #include <sound/pcm.h>
42 #include <sound/info.h>
43 #include <sound/initval.h>
45 MODULE_AUTHOR("Jaroslav Kysela <perex@perex.cz>");
46 MODULE_DESCRIPTION("A loopback soundcard");
47 MODULE_LICENSE("GPL");
48 MODULE_SUPPORTED_DEVICE("{{ALSA,Loopback soundcard}}");
50 #define MAX_PCM_SUBSTREAMS 8
52 static int index
[SNDRV_CARDS
] = SNDRV_DEFAULT_IDX
; /* Index 0-MAX */
53 static char *id
[SNDRV_CARDS
] = SNDRV_DEFAULT_STR
; /* ID for this card */
54 static int enable
[SNDRV_CARDS
] = {1, [1 ... (SNDRV_CARDS
- 1)] = 0};
55 static int pcm_substreams
[SNDRV_CARDS
] = {[0 ... (SNDRV_CARDS
- 1)] = 8};
56 static int pcm_notify
[SNDRV_CARDS
];
58 module_param_array(index
, int, NULL
, 0444);
59 MODULE_PARM_DESC(index
, "Index value for loopback soundcard.");
60 module_param_array(id
, charp
, NULL
, 0444);
61 MODULE_PARM_DESC(id
, "ID string for loopback soundcard.");
62 module_param_array(enable
, bool, NULL
, 0444);
63 MODULE_PARM_DESC(enable
, "Enable this loopback soundcard.");
64 module_param_array(pcm_substreams
, int, NULL
, 0444);
65 MODULE_PARM_DESC(pcm_substreams
, "PCM substreams # (1-8) for loopback driver.");
66 module_param_array(pcm_notify
, int, NULL
, 0444);
67 MODULE_PARM_DESC(pcm_notify
, "Break capture when PCM format/rate/channels changes.");
69 #define NO_PITCH 100000
73 struct loopback_cable
{
75 struct loopback_pcm
*streams
[2];
76 struct snd_pcm_hardware hw
;
83 struct loopback_setup
{
84 unsigned int notify
: 1;
85 unsigned int rate_shift
;
88 unsigned int channels
;
89 struct snd_ctl_elem_id active_id
;
90 struct snd_ctl_elem_id format_id
;
91 struct snd_ctl_elem_id rate_id
;
92 struct snd_ctl_elem_id channels_id
;
96 struct snd_card
*card
;
97 struct mutex cable_lock
;
98 struct loopback_cable
*cables
[MAX_PCM_SUBSTREAMS
][2];
99 struct snd_pcm
*pcm
[2];
100 struct loopback_setup setup
[MAX_PCM_SUBSTREAMS
][2];
103 struct loopback_pcm
{
104 struct loopback
*loopback
;
105 struct snd_pcm_substream
*substream
;
106 struct loopback_cable
*cable
;
107 unsigned int pcm_buffer_size
;
108 unsigned int buf_pos
; /* position in buffer */
109 unsigned int silent_size
;
111 unsigned int pcm_period_size
;
112 unsigned int pcm_bps
; /* bytes per second */
113 unsigned int pcm_salign
; /* bytes per sample * channels */
114 unsigned int pcm_rate_shift
; /* rate shift value */
116 unsigned int period_update_pending
:1;
118 unsigned int irq_pos
; /* fractional IRQ position */
119 unsigned int period_size_frac
;
120 unsigned long last_jiffies
;
121 struct timer_list timer
;
124 static struct platform_device
*devices
[SNDRV_CARDS
];
126 static inline unsigned int byte_pos(struct loopback_pcm
*dpcm
, unsigned int x
)
128 if (dpcm
->pcm_rate_shift
== NO_PITCH
) {
131 x
= div_u64(NO_PITCH
* (unsigned long long)x
,
132 HZ
* (unsigned long long)dpcm
->pcm_rate_shift
);
134 return x
- (x
% dpcm
->pcm_salign
);
137 static inline unsigned int frac_pos(struct loopback_pcm
*dpcm
, unsigned int x
)
139 if (dpcm
->pcm_rate_shift
== NO_PITCH
) { /* no pitch */
142 x
= div_u64(dpcm
->pcm_rate_shift
* (unsigned long long)x
* HZ
,
148 static inline struct loopback_setup
*get_setup(struct loopback_pcm
*dpcm
)
150 int device
= dpcm
->substream
->pstr
->pcm
->device
;
152 if (dpcm
->substream
->stream
== SNDRV_PCM_STREAM_PLAYBACK
)
154 return &dpcm
->loopback
->setup
[dpcm
->substream
->number
][device
];
157 static inline unsigned int get_notify(struct loopback_pcm
*dpcm
)
159 return get_setup(dpcm
)->notify
;
162 static inline unsigned int get_rate_shift(struct loopback_pcm
*dpcm
)
164 return get_setup(dpcm
)->rate_shift
;
167 static void loopback_timer_start(struct loopback_pcm
*dpcm
)
170 unsigned int rate_shift
= get_rate_shift(dpcm
);
172 if (rate_shift
!= dpcm
->pcm_rate_shift
) {
173 dpcm
->pcm_rate_shift
= rate_shift
;
174 dpcm
->period_size_frac
= frac_pos(dpcm
, dpcm
->pcm_period_size
);
176 if (dpcm
->period_size_frac
<= dpcm
->irq_pos
) {
177 dpcm
->irq_pos
%= dpcm
->period_size_frac
;
178 dpcm
->period_update_pending
= 1;
180 tick
= dpcm
->period_size_frac
- dpcm
->irq_pos
;
181 tick
= (tick
+ dpcm
->pcm_bps
- 1) / dpcm
->pcm_bps
;
182 dpcm
->timer
.expires
= jiffies
+ tick
;
183 add_timer(&dpcm
->timer
);
186 static inline void loopback_timer_stop(struct loopback_pcm
*dpcm
)
188 del_timer(&dpcm
->timer
);
189 dpcm
->timer
.expires
= 0;
192 #define CABLE_VALID_PLAYBACK (1 << SNDRV_PCM_STREAM_PLAYBACK)
193 #define CABLE_VALID_CAPTURE (1 << SNDRV_PCM_STREAM_CAPTURE)
194 #define CABLE_VALID_BOTH (CABLE_VALID_PLAYBACK|CABLE_VALID_CAPTURE)
196 static int loopback_check_format(struct loopback_cable
*cable
, int stream
)
198 struct snd_pcm_runtime
*runtime
, *cruntime
;
199 struct loopback_setup
*setup
;
200 struct snd_card
*card
;
203 if (cable
->valid
!= CABLE_VALID_BOTH
) {
204 if (stream
== SNDRV_PCM_STREAM_PLAYBACK
)
208 runtime
= cable
->streams
[SNDRV_PCM_STREAM_PLAYBACK
]->
210 cruntime
= cable
->streams
[SNDRV_PCM_STREAM_CAPTURE
]->
212 check
= runtime
->format
!= cruntime
->format
||
213 runtime
->rate
!= cruntime
->rate
||
214 runtime
->channels
!= cruntime
->channels
;
217 if (stream
== SNDRV_PCM_STREAM_CAPTURE
) {
220 snd_pcm_stop(cable
->streams
[SNDRV_PCM_STREAM_CAPTURE
]->
221 substream
, SNDRV_PCM_STATE_DRAINING
);
223 runtime
= cable
->streams
[SNDRV_PCM_STREAM_PLAYBACK
]->
225 setup
= get_setup(cable
->streams
[SNDRV_PCM_STREAM_PLAYBACK
]);
226 card
= cable
->streams
[SNDRV_PCM_STREAM_PLAYBACK
]->loopback
->card
;
227 if (setup
->format
!= runtime
->format
) {
228 snd_ctl_notify(card
, SNDRV_CTL_EVENT_MASK_VALUE
,
230 setup
->format
= runtime
->format
;
232 if (setup
->rate
!= runtime
->rate
) {
233 snd_ctl_notify(card
, SNDRV_CTL_EVENT_MASK_VALUE
,
235 setup
->rate
= runtime
->rate
;
237 if (setup
->channels
!= runtime
->channels
) {
238 snd_ctl_notify(card
, SNDRV_CTL_EVENT_MASK_VALUE
,
239 &setup
->channels_id
);
240 setup
->channels
= runtime
->channels
;
246 static void loopback_active_notify(struct loopback_pcm
*dpcm
)
248 snd_ctl_notify(dpcm
->loopback
->card
,
249 SNDRV_CTL_EVENT_MASK_VALUE
,
250 &get_setup(dpcm
)->active_id
);
253 static int loopback_trigger(struct snd_pcm_substream
*substream
, int cmd
)
255 struct snd_pcm_runtime
*runtime
= substream
->runtime
;
256 struct loopback_pcm
*dpcm
= runtime
->private_data
;
257 struct loopback_cable
*cable
= dpcm
->cable
;
258 int err
, stream
= 1 << substream
->stream
;
261 case SNDRV_PCM_TRIGGER_START
:
262 err
= loopback_check_format(cable
, substream
->stream
);
265 dpcm
->last_jiffies
= jiffies
;
266 dpcm
->pcm_rate_shift
= 0;
267 spin_lock(&cable
->lock
);
268 cable
->running
|= stream
;
269 cable
->pause
&= ~stream
;
270 spin_unlock(&cable
->lock
);
271 loopback_timer_start(dpcm
);
272 if (substream
->stream
== SNDRV_PCM_STREAM_PLAYBACK
)
273 loopback_active_notify(dpcm
);
275 case SNDRV_PCM_TRIGGER_STOP
:
276 spin_lock(&cable
->lock
);
277 cable
->running
&= ~stream
;
278 cable
->pause
&= ~stream
;
279 spin_unlock(&cable
->lock
);
280 loopback_timer_stop(dpcm
);
281 if (substream
->stream
== SNDRV_PCM_STREAM_PLAYBACK
)
282 loopback_active_notify(dpcm
);
284 case SNDRV_PCM_TRIGGER_PAUSE_PUSH
:
285 spin_lock(&cable
->lock
);
286 cable
->pause
|= stream
;
287 spin_unlock(&cable
->lock
);
288 loopback_timer_stop(dpcm
);
290 case SNDRV_PCM_TRIGGER_PAUSE_RELEASE
:
291 spin_lock(&cable
->lock
);
292 dpcm
->last_jiffies
= jiffies
;
293 cable
->pause
&= ~stream
;
294 spin_unlock(&cable
->lock
);
295 loopback_timer_start(dpcm
);
303 static void params_change_substream(struct loopback_pcm
*dpcm
,
304 struct snd_pcm_runtime
*runtime
)
306 struct snd_pcm_runtime
*dst_runtime
;
308 if (dpcm
== NULL
|| dpcm
->substream
== NULL
)
310 dst_runtime
= dpcm
->substream
->runtime
;
311 if (dst_runtime
== NULL
)
313 dst_runtime
->hw
= dpcm
->cable
->hw
;
316 static void params_change(struct snd_pcm_substream
*substream
)
318 struct snd_pcm_runtime
*runtime
= substream
->runtime
;
319 struct loopback_pcm
*dpcm
= runtime
->private_data
;
320 struct loopback_cable
*cable
= dpcm
->cable
;
322 cable
->hw
.formats
= (1ULL << runtime
->format
);
323 cable
->hw
.rate_min
= runtime
->rate
;
324 cable
->hw
.rate_max
= runtime
->rate
;
325 cable
->hw
.channels_min
= runtime
->channels
;
326 cable
->hw
.channels_max
= runtime
->channels
;
327 params_change_substream(cable
->streams
[SNDRV_PCM_STREAM_PLAYBACK
],
329 params_change_substream(cable
->streams
[SNDRV_PCM_STREAM_CAPTURE
],
333 static int loopback_prepare(struct snd_pcm_substream
*substream
)
335 struct snd_pcm_runtime
*runtime
= substream
->runtime
;
336 struct loopback_pcm
*dpcm
= runtime
->private_data
;
337 struct loopback_cable
*cable
= dpcm
->cable
;
340 salign
= (snd_pcm_format_width(runtime
->format
) *
341 runtime
->channels
) / 8;
342 bps
= salign
* runtime
->rate
;
343 if (bps
<= 0 || salign
<= 0)
347 dpcm
->pcm_buffer_size
= frames_to_bytes(runtime
, runtime
->buffer_size
);
348 if (substream
->stream
== SNDRV_PCM_STREAM_CAPTURE
) {
349 /* clear capture buffer */
350 dpcm
->silent_size
= dpcm
->pcm_buffer_size
;
351 snd_pcm_format_set_silence(runtime
->format
, runtime
->dma_area
,
352 runtime
->buffer_size
* runtime
->channels
);
356 dpcm
->period_update_pending
= 0;
358 dpcm
->pcm_salign
= salign
;
359 dpcm
->pcm_period_size
= frames_to_bytes(runtime
, runtime
->period_size
);
361 mutex_lock(&dpcm
->loopback
->cable_lock
);
362 if (!(cable
->valid
& ~(1 << substream
->stream
)) ||
363 (get_setup(dpcm
)->notify
&&
364 substream
->stream
== SNDRV_PCM_STREAM_PLAYBACK
))
365 params_change(substream
);
366 cable
->valid
|= 1 << substream
->stream
;
367 mutex_unlock(&dpcm
->loopback
->cable_lock
);
372 static void clear_capture_buf(struct loopback_pcm
*dpcm
, unsigned int bytes
)
374 struct snd_pcm_runtime
*runtime
= dpcm
->substream
->runtime
;
375 char *dst
= runtime
->dma_area
;
376 unsigned int dst_off
= dpcm
->buf_pos
;
378 if (dpcm
->silent_size
>= dpcm
->pcm_buffer_size
)
380 if (dpcm
->silent_size
+ bytes
> dpcm
->pcm_buffer_size
)
381 bytes
= dpcm
->pcm_buffer_size
- dpcm
->silent_size
;
384 unsigned int size
= bytes
;
385 if (dst_off
+ size
> dpcm
->pcm_buffer_size
)
386 size
= dpcm
->pcm_buffer_size
- dst_off
;
387 snd_pcm_format_set_silence(runtime
->format
, dst
+ dst_off
,
388 bytes_to_frames(runtime
, size
) *
390 dpcm
->silent_size
+= size
;
398 static void copy_play_buf(struct loopback_pcm
*play
,
399 struct loopback_pcm
*capt
,
402 struct snd_pcm_runtime
*runtime
= play
->substream
->runtime
;
403 char *src
= runtime
->dma_area
;
404 char *dst
= capt
->substream
->runtime
->dma_area
;
405 unsigned int src_off
= play
->buf_pos
;
406 unsigned int dst_off
= capt
->buf_pos
;
407 unsigned int clear_bytes
= 0;
409 /* check if playback is draining, trim the capture copy size
410 * when our pointer is at the end of playback ring buffer */
411 if (runtime
->status
->state
== SNDRV_PCM_STATE_DRAINING
&&
412 snd_pcm_playback_hw_avail(runtime
) < runtime
->buffer_size
) {
413 snd_pcm_uframes_t appl_ptr
, appl_ptr1
, diff
;
414 appl_ptr
= appl_ptr1
= runtime
->control
->appl_ptr
;
415 appl_ptr1
-= appl_ptr1
% runtime
->buffer_size
;
416 appl_ptr1
+= play
->buf_pos
/ play
->pcm_salign
;
417 if (appl_ptr
< appl_ptr1
)
418 appl_ptr1
-= runtime
->buffer_size
;
419 diff
= (appl_ptr
- appl_ptr1
) * play
->pcm_salign
;
421 clear_bytes
= bytes
- diff
;
427 unsigned int size
= bytes
;
428 if (src_off
+ size
> play
->pcm_buffer_size
)
429 size
= play
->pcm_buffer_size
- src_off
;
430 if (dst_off
+ size
> capt
->pcm_buffer_size
)
431 size
= capt
->pcm_buffer_size
- dst_off
;
432 memcpy(dst
+ dst_off
, src
+ src_off
, size
);
433 capt
->silent_size
= 0;
437 src_off
= (src_off
+ size
) % play
->pcm_buffer_size
;
438 dst_off
= (dst_off
+ size
) % capt
->pcm_buffer_size
;
441 if (clear_bytes
> 0) {
442 clear_capture_buf(capt
, clear_bytes
);
443 capt
->silent_size
= 0;
447 #define BYTEPOS_UPDATE_POSONLY 0
448 #define BYTEPOS_UPDATE_CLEAR 1
449 #define BYTEPOS_UPDATE_COPY 2
451 static void loopback_bytepos_update(struct loopback_pcm
*dpcm
,
456 unsigned long last_pos
;
458 last_pos
= byte_pos(dpcm
, dpcm
->irq_pos
);
459 dpcm
->irq_pos
+= delta
* dpcm
->pcm_bps
;
460 count
= byte_pos(dpcm
, dpcm
->irq_pos
) - last_pos
;
463 if (cmd
== BYTEPOS_UPDATE_CLEAR
)
464 clear_capture_buf(dpcm
, count
);
465 else if (cmd
== BYTEPOS_UPDATE_COPY
)
466 copy_play_buf(dpcm
->cable
->streams
[SNDRV_PCM_STREAM_PLAYBACK
],
467 dpcm
->cable
->streams
[SNDRV_PCM_STREAM_CAPTURE
],
469 dpcm
->buf_pos
+= count
;
470 dpcm
->buf_pos
%= dpcm
->pcm_buffer_size
;
471 if (dpcm
->irq_pos
>= dpcm
->period_size_frac
) {
472 dpcm
->irq_pos
%= dpcm
->period_size_frac
;
473 dpcm
->period_update_pending
= 1;
477 static unsigned int loopback_pos_update(struct loopback_cable
*cable
)
479 struct loopback_pcm
*dpcm_play
=
480 cable
->streams
[SNDRV_PCM_STREAM_PLAYBACK
];
481 struct loopback_pcm
*dpcm_capt
=
482 cable
->streams
[SNDRV_PCM_STREAM_CAPTURE
];
483 unsigned long delta_play
= 0, delta_capt
= 0;
484 unsigned int running
;
486 spin_lock(&cable
->lock
);
487 running
= cable
->running
^ cable
->pause
;
488 if (running
& (1 << SNDRV_PCM_STREAM_PLAYBACK
)) {
489 delta_play
= jiffies
- dpcm_play
->last_jiffies
;
490 dpcm_play
->last_jiffies
+= delta_play
;
493 if (running
& (1 << SNDRV_PCM_STREAM_CAPTURE
)) {
494 delta_capt
= jiffies
- dpcm_capt
->last_jiffies
;
495 dpcm_capt
->last_jiffies
+= delta_capt
;
498 if (delta_play
== 0 && delta_capt
== 0) {
499 spin_unlock(&cable
->lock
);
503 if (delta_play
> delta_capt
) {
504 loopback_bytepos_update(dpcm_play
, delta_play
- delta_capt
,
505 BYTEPOS_UPDATE_POSONLY
);
506 delta_play
= delta_capt
;
507 } else if (delta_play
< delta_capt
) {
508 loopback_bytepos_update(dpcm_capt
, delta_capt
- delta_play
,
509 BYTEPOS_UPDATE_CLEAR
);
510 delta_capt
= delta_play
;
513 if (delta_play
== 0 && delta_capt
== 0) {
514 spin_unlock(&cable
->lock
);
517 /* note delta_capt == delta_play at this moment */
518 loopback_bytepos_update(dpcm_capt
, delta_capt
, BYTEPOS_UPDATE_COPY
);
519 loopback_bytepos_update(dpcm_play
, delta_play
, BYTEPOS_UPDATE_POSONLY
);
520 spin_unlock(&cable
->lock
);
524 static void loopback_timer_function(unsigned long data
)
526 struct loopback_pcm
*dpcm
= (struct loopback_pcm
*)data
;
527 unsigned int running
;
529 running
= loopback_pos_update(dpcm
->cable
);
530 if (running
& (1 << dpcm
->substream
->stream
)) {
531 loopback_timer_start(dpcm
);
532 if (dpcm
->period_update_pending
) {
533 dpcm
->period_update_pending
= 0;
534 snd_pcm_period_elapsed(dpcm
->substream
);
539 static snd_pcm_uframes_t
loopback_pointer(struct snd_pcm_substream
*substream
)
541 struct snd_pcm_runtime
*runtime
= substream
->runtime
;
542 struct loopback_pcm
*dpcm
= runtime
->private_data
;
544 loopback_pos_update(dpcm
->cable
);
545 return bytes_to_frames(runtime
, dpcm
->buf_pos
);
548 static struct snd_pcm_hardware loopback_pcm_hardware
=
550 .info
= (SNDRV_PCM_INFO_INTERLEAVED
| SNDRV_PCM_INFO_MMAP
|
551 SNDRV_PCM_INFO_MMAP_VALID
| SNDRV_PCM_INFO_PAUSE
),
552 .formats
= (SNDRV_PCM_FMTBIT_S16_LE
| SNDRV_PCM_FMTBIT_S16_BE
|
553 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
,
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,
570 static void loopback_runtime_free(struct snd_pcm_runtime
*runtime
)
572 struct loopback_pcm
*dpcm
= runtime
->private_data
;
576 static int loopback_hw_params(struct snd_pcm_substream
*substream
,
577 struct snd_pcm_hw_params
*params
)
579 return snd_pcm_lib_malloc_pages(substream
, params_buffer_bytes(params
));
582 static int loopback_hw_free(struct snd_pcm_substream
*substream
)
584 struct snd_pcm_runtime
*runtime
= substream
->runtime
;
585 struct loopback_pcm
*dpcm
= runtime
->private_data
;
586 struct loopback_cable
*cable
= dpcm
->cable
;
588 mutex_lock(&dpcm
->loopback
->cable_lock
);
589 cable
->valid
&= ~(1 << substream
->stream
);
590 mutex_unlock(&dpcm
->loopback
->cable_lock
);
591 return snd_pcm_lib_free_pages(substream
);
594 static unsigned int get_cable_index(struct snd_pcm_substream
*substream
)
596 if (!substream
->pcm
->device
)
597 return substream
->stream
;
599 return !substream
->stream
;
602 static int rule_format(struct snd_pcm_hw_params
*params
,
603 struct snd_pcm_hw_rule
*rule
)
606 struct snd_pcm_hardware
*hw
= rule
->private;
607 struct snd_mask
*maskp
= hw_param_mask(params
, rule
->var
);
609 maskp
->bits
[0] &= (u_int32_t
)hw
->formats
;
610 maskp
->bits
[1] &= (u_int32_t
)(hw
->formats
>> 32);
611 memset(maskp
->bits
+ 2, 0, (SNDRV_MASK_MAX
-64) / 8); /* clear rest */
612 if (! maskp
->bits
[0] && ! maskp
->bits
[1])
617 static int rule_rate(struct snd_pcm_hw_params
*params
,
618 struct snd_pcm_hw_rule
*rule
)
620 struct snd_pcm_hardware
*hw
= rule
->private;
621 struct snd_interval t
;
623 t
.min
= hw
->rate_min
;
624 t
.max
= hw
->rate_max
;
625 t
.openmin
= t
.openmax
= 0;
627 return snd_interval_refine(hw_param_interval(params
, rule
->var
), &t
);
630 static int rule_channels(struct snd_pcm_hw_params
*params
,
631 struct snd_pcm_hw_rule
*rule
)
633 struct snd_pcm_hardware
*hw
= rule
->private;
634 struct snd_interval t
;
636 t
.min
= hw
->channels_min
;
637 t
.max
= hw
->channels_max
;
638 t
.openmin
= t
.openmax
= 0;
640 return snd_interval_refine(hw_param_interval(params
, rule
->var
), &t
);
643 static int loopback_open(struct snd_pcm_substream
*substream
)
645 struct snd_pcm_runtime
*runtime
= substream
->runtime
;
646 struct loopback
*loopback
= substream
->private_data
;
647 struct loopback_pcm
*dpcm
;
648 struct loopback_cable
*cable
;
650 int dev
= get_cable_index(substream
);
652 mutex_lock(&loopback
->cable_lock
);
653 dpcm
= kzalloc(sizeof(*dpcm
), GFP_KERNEL
);
658 dpcm
->loopback
= loopback
;
659 dpcm
->substream
= substream
;
660 setup_timer(&dpcm
->timer
, loopback_timer_function
,
661 (unsigned long)dpcm
);
663 cable
= loopback
->cables
[substream
->number
][dev
];
665 cable
= kzalloc(sizeof(*cable
), GFP_KERNEL
);
671 spin_lock_init(&cable
->lock
);
672 cable
->hw
= loopback_pcm_hardware
;
673 loopback
->cables
[substream
->number
][dev
] = cable
;
676 cable
->streams
[substream
->stream
] = dpcm
;
678 snd_pcm_hw_constraint_integer(runtime
, SNDRV_PCM_HW_PARAM_PERIODS
);
680 /* use dynamic rules based on actual runtime->hw values */
681 /* note that the default rules created in the PCM midlevel code */
682 /* are cached -> they do not reflect the actual state */
683 err
= snd_pcm_hw_rule_add(runtime
, 0,
684 SNDRV_PCM_HW_PARAM_FORMAT
,
685 rule_format
, &runtime
->hw
,
686 SNDRV_PCM_HW_PARAM_FORMAT
, -1);
689 err
= snd_pcm_hw_rule_add(runtime
, 0,
690 SNDRV_PCM_HW_PARAM_RATE
,
691 rule_rate
, &runtime
->hw
,
692 SNDRV_PCM_HW_PARAM_RATE
, -1);
695 err
= snd_pcm_hw_rule_add(runtime
, 0,
696 SNDRV_PCM_HW_PARAM_CHANNELS
,
697 rule_channels
, &runtime
->hw
,
698 SNDRV_PCM_HW_PARAM_CHANNELS
, -1);
702 runtime
->private_data
= dpcm
;
703 runtime
->private_free
= loopback_runtime_free
;
704 if (get_notify(dpcm
))
705 runtime
->hw
= loopback_pcm_hardware
;
707 runtime
->hw
= cable
->hw
;
709 mutex_unlock(&loopback
->cable_lock
);
713 static int loopback_close(struct snd_pcm_substream
*substream
)
715 struct loopback
*loopback
= substream
->private_data
;
716 struct loopback_pcm
*dpcm
= substream
->runtime
->private_data
;
717 struct loopback_cable
*cable
;
718 int dev
= get_cable_index(substream
);
720 loopback_timer_stop(dpcm
);
721 mutex_lock(&loopback
->cable_lock
);
722 cable
= loopback
->cables
[substream
->number
][dev
];
723 if (cable
->streams
[!substream
->stream
]) {
724 /* other stream is still alive */
725 cable
->streams
[substream
->stream
] = NULL
;
728 loopback
->cables
[substream
->number
][dev
] = NULL
;
731 mutex_unlock(&loopback
->cable_lock
);
735 static struct snd_pcm_ops loopback_playback_ops
= {
736 .open
= loopback_open
,
737 .close
= loopback_close
,
738 .ioctl
= snd_pcm_lib_ioctl
,
739 .hw_params
= loopback_hw_params
,
740 .hw_free
= loopback_hw_free
,
741 .prepare
= loopback_prepare
,
742 .trigger
= loopback_trigger
,
743 .pointer
= loopback_pointer
,
746 static struct snd_pcm_ops loopback_capture_ops
= {
747 .open
= loopback_open
,
748 .close
= loopback_close
,
749 .ioctl
= snd_pcm_lib_ioctl
,
750 .hw_params
= loopback_hw_params
,
751 .hw_free
= loopback_hw_free
,
752 .prepare
= loopback_prepare
,
753 .trigger
= loopback_trigger
,
754 .pointer
= loopback_pointer
,
757 static int __devinit
loopback_pcm_new(struct loopback
*loopback
,
758 int device
, int substreams
)
763 err
= snd_pcm_new(loopback
->card
, "Loopback PCM", device
,
764 substreams
, substreams
, &pcm
);
767 snd_pcm_set_ops(pcm
, SNDRV_PCM_STREAM_PLAYBACK
, &loopback_playback_ops
);
768 snd_pcm_set_ops(pcm
, SNDRV_PCM_STREAM_CAPTURE
, &loopback_capture_ops
);
770 pcm
->private_data
= loopback
;
772 strcpy(pcm
->name
, "Loopback PCM");
774 loopback
->pcm
[device
] = pcm
;
776 snd_pcm_lib_preallocate_pages_for_all(pcm
, SNDRV_DMA_TYPE_CONTINUOUS
,
777 snd_dma_continuous_data(GFP_KERNEL
),
782 static int loopback_rate_shift_info(struct snd_kcontrol
*kcontrol
,
783 struct snd_ctl_elem_info
*uinfo
)
785 uinfo
->type
= SNDRV_CTL_ELEM_TYPE_INTEGER
;
787 uinfo
->value
.integer
.min
= 80000;
788 uinfo
->value
.integer
.max
= 120000;
789 uinfo
->value
.integer
.step
= 1;
793 static int loopback_rate_shift_get(struct snd_kcontrol
*kcontrol
,
794 struct snd_ctl_elem_value
*ucontrol
)
796 struct loopback
*loopback
= snd_kcontrol_chip(kcontrol
);
798 ucontrol
->value
.integer
.value
[0] =
799 loopback
->setup
[kcontrol
->id
.subdevice
]
800 [kcontrol
->id
.device
].rate_shift
;
804 static int loopback_rate_shift_put(struct snd_kcontrol
*kcontrol
,
805 struct snd_ctl_elem_value
*ucontrol
)
807 struct loopback
*loopback
= snd_kcontrol_chip(kcontrol
);
811 val
= ucontrol
->value
.integer
.value
[0];
816 mutex_lock(&loopback
->cable_lock
);
817 if (val
!= loopback
->setup
[kcontrol
->id
.subdevice
]
818 [kcontrol
->id
.device
].rate_shift
) {
819 loopback
->setup
[kcontrol
->id
.subdevice
]
820 [kcontrol
->id
.device
].rate_shift
= val
;
823 mutex_unlock(&loopback
->cable_lock
);
827 static int loopback_notify_get(struct snd_kcontrol
*kcontrol
,
828 struct snd_ctl_elem_value
*ucontrol
)
830 struct loopback
*loopback
= snd_kcontrol_chip(kcontrol
);
832 ucontrol
->value
.integer
.value
[0] =
833 loopback
->setup
[kcontrol
->id
.subdevice
]
834 [kcontrol
->id
.device
].notify
;
838 static int loopback_notify_put(struct snd_kcontrol
*kcontrol
,
839 struct snd_ctl_elem_value
*ucontrol
)
841 struct loopback
*loopback
= snd_kcontrol_chip(kcontrol
);
845 val
= ucontrol
->value
.integer
.value
[0] ? 1 : 0;
846 if (val
!= loopback
->setup
[kcontrol
->id
.subdevice
]
847 [kcontrol
->id
.device
].notify
) {
848 loopback
->setup
[kcontrol
->id
.subdevice
]
849 [kcontrol
->id
.device
].notify
= val
;
855 static int loopback_active_get(struct snd_kcontrol
*kcontrol
,
856 struct snd_ctl_elem_value
*ucontrol
)
858 struct loopback
*loopback
= snd_kcontrol_chip(kcontrol
);
859 struct loopback_cable
*cable
= loopback
->cables
860 [kcontrol
->id
.subdevice
][kcontrol
->id
.device
^ 1];
861 unsigned int val
= 0;
864 val
= (cable
->running
& (1 << SNDRV_PCM_STREAM_PLAYBACK
)) ?
866 ucontrol
->value
.integer
.value
[0] = val
;
870 static int loopback_format_info(struct snd_kcontrol
*kcontrol
,
871 struct snd_ctl_elem_info
*uinfo
)
873 uinfo
->type
= SNDRV_CTL_ELEM_TYPE_INTEGER
;
875 uinfo
->value
.integer
.min
= 0;
876 uinfo
->value
.integer
.max
= SNDRV_PCM_FORMAT_LAST
;
877 uinfo
->value
.integer
.step
= 1;
881 static int loopback_format_get(struct snd_kcontrol
*kcontrol
,
882 struct snd_ctl_elem_value
*ucontrol
)
884 struct loopback
*loopback
= snd_kcontrol_chip(kcontrol
);
886 ucontrol
->value
.integer
.value
[0] =
887 loopback
->setup
[kcontrol
->id
.subdevice
]
888 [kcontrol
->id
.device
].format
;
892 static int loopback_rate_info(struct snd_kcontrol
*kcontrol
,
893 struct snd_ctl_elem_info
*uinfo
)
895 uinfo
->type
= SNDRV_CTL_ELEM_TYPE_INTEGER
;
897 uinfo
->value
.integer
.min
= 0;
898 uinfo
->value
.integer
.max
= 192000;
899 uinfo
->value
.integer
.step
= 1;
903 static int loopback_rate_get(struct snd_kcontrol
*kcontrol
,
904 struct snd_ctl_elem_value
*ucontrol
)
906 struct loopback
*loopback
= snd_kcontrol_chip(kcontrol
);
908 ucontrol
->value
.integer
.value
[0] =
909 loopback
->setup
[kcontrol
->id
.subdevice
]
910 [kcontrol
->id
.device
].rate
;
914 static int loopback_channels_info(struct snd_kcontrol
*kcontrol
,
915 struct snd_ctl_elem_info
*uinfo
)
917 uinfo
->type
= SNDRV_CTL_ELEM_TYPE_INTEGER
;
919 uinfo
->value
.integer
.min
= 1;
920 uinfo
->value
.integer
.max
= 1024;
921 uinfo
->value
.integer
.step
= 1;
925 static int loopback_channels_get(struct snd_kcontrol
*kcontrol
,
926 struct snd_ctl_elem_value
*ucontrol
)
928 struct loopback
*loopback
= snd_kcontrol_chip(kcontrol
);
930 ucontrol
->value
.integer
.value
[0] =
931 loopback
->setup
[kcontrol
->id
.subdevice
]
932 [kcontrol
->id
.device
].channels
;
936 static struct snd_kcontrol_new loopback_controls
[] __devinitdata
= {
938 .iface
= SNDRV_CTL_ELEM_IFACE_PCM
,
939 .name
= "PCM Rate Shift 100000",
940 .info
= loopback_rate_shift_info
,
941 .get
= loopback_rate_shift_get
,
942 .put
= loopback_rate_shift_put
,
945 .iface
= SNDRV_CTL_ELEM_IFACE_PCM
,
946 .name
= "PCM Notify",
947 .info
= snd_ctl_boolean_mono_info
,
948 .get
= loopback_notify_get
,
949 .put
= loopback_notify_put
,
953 .access
= SNDRV_CTL_ELEM_ACCESS_READ
,
954 .iface
= SNDRV_CTL_ELEM_IFACE_PCM
,
955 .name
= "PCM Slave Active",
956 .info
= snd_ctl_boolean_mono_info
,
957 .get
= loopback_active_get
,
961 .access
= SNDRV_CTL_ELEM_ACCESS_READ
,
962 .iface
= SNDRV_CTL_ELEM_IFACE_PCM
,
963 .name
= "PCM Slave Format",
964 .info
= loopback_format_info
,
965 .get
= loopback_format_get
969 .access
= SNDRV_CTL_ELEM_ACCESS_READ
,
970 .iface
= SNDRV_CTL_ELEM_IFACE_PCM
,
971 .name
= "PCM Slave Rate",
972 .info
= loopback_rate_info
,
973 .get
= loopback_rate_get
975 #define CHANNELS_IDX 5
977 .access
= SNDRV_CTL_ELEM_ACCESS_READ
,
978 .iface
= SNDRV_CTL_ELEM_IFACE_PCM
,
979 .name
= "PCM Slave Channels",
980 .info
= loopback_channels_info
,
981 .get
= loopback_channels_get
985 static int __devinit
loopback_mixer_new(struct loopback
*loopback
, int notify
)
987 struct snd_card
*card
= loopback
->card
;
989 struct snd_kcontrol
*kctl
;
990 struct loopback_setup
*setup
;
991 int err
, dev
, substr
, substr_count
, idx
;
993 strcpy(card
->mixername
, "Loopback Mixer");
994 for (dev
= 0; dev
< 2; dev
++) {
995 pcm
= loopback
->pcm
[dev
];
997 pcm
->streams
[SNDRV_PCM_STREAM_CAPTURE
].substream_count
;
998 for (substr
= 0; substr
< substr_count
; substr
++) {
999 setup
= &loopback
->setup
[substr
][dev
];
1000 setup
->notify
= notify
;
1001 setup
->rate_shift
= NO_PITCH
;
1002 setup
->format
= SNDRV_PCM_FORMAT_S16_LE
;
1003 setup
->rate
= 48000;
1004 setup
->channels
= 2;
1005 for (idx
= 0; idx
< ARRAY_SIZE(loopback_controls
);
1007 kctl
= snd_ctl_new1(&loopback_controls
[idx
],
1011 kctl
->id
.device
= dev
;
1012 kctl
->id
.subdevice
= substr
;
1015 setup
->active_id
= kctl
->id
;
1018 setup
->format_id
= kctl
->id
;
1021 setup
->rate_id
= kctl
->id
;
1024 setup
->channels_id
= kctl
->id
;
1029 err
= snd_ctl_add(card
, kctl
);
1038 #ifdef CONFIG_PROC_FS
1040 static void print_dpcm_info(struct snd_info_buffer
*buffer
,
1041 struct loopback_pcm
*dpcm
,
1044 snd_iprintf(buffer
, " %s\n", id
);
1046 snd_iprintf(buffer
, " inactive\n");
1049 snd_iprintf(buffer
, " buffer_size:\t%u\n", dpcm
->pcm_buffer_size
);
1050 snd_iprintf(buffer
, " buffer_pos:\t\t%u\n", dpcm
->buf_pos
);
1051 snd_iprintf(buffer
, " silent_size:\t%u\n", dpcm
->silent_size
);
1052 snd_iprintf(buffer
, " period_size:\t%u\n", dpcm
->pcm_period_size
);
1053 snd_iprintf(buffer
, " bytes_per_sec:\t%u\n", dpcm
->pcm_bps
);
1054 snd_iprintf(buffer
, " sample_align:\t%u\n", dpcm
->pcm_salign
);
1055 snd_iprintf(buffer
, " rate_shift:\t\t%u\n", dpcm
->pcm_rate_shift
);
1056 snd_iprintf(buffer
, " update_pending:\t%u\n",
1057 dpcm
->period_update_pending
);
1058 snd_iprintf(buffer
, " irq_pos:\t\t%u\n", dpcm
->irq_pos
);
1059 snd_iprintf(buffer
, " period_frac:\t%u\n", dpcm
->period_size_frac
);
1060 snd_iprintf(buffer
, " last_jiffies:\t%lu (%lu)\n",
1061 dpcm
->last_jiffies
, jiffies
);
1062 snd_iprintf(buffer
, " timer_expires:\t%lu\n", dpcm
->timer
.expires
);
1065 static void print_substream_info(struct snd_info_buffer
*buffer
,
1066 struct loopback
*loopback
,
1070 struct loopback_cable
*cable
= loopback
->cables
[sub
][num
];
1072 snd_iprintf(buffer
, "Cable %i substream %i:\n", num
, sub
);
1073 if (cable
== NULL
) {
1074 snd_iprintf(buffer
, " inactive\n");
1077 snd_iprintf(buffer
, " valid: %u\n", cable
->valid
);
1078 snd_iprintf(buffer
, " running: %u\n", cable
->running
);
1079 snd_iprintf(buffer
, " pause: %u\n", cable
->pause
);
1080 print_dpcm_info(buffer
, cable
->streams
[0], "Playback");
1081 print_dpcm_info(buffer
, cable
->streams
[1], "Capture");
1084 static void print_cable_info(struct snd_info_entry
*entry
,
1085 struct snd_info_buffer
*buffer
)
1087 struct loopback
*loopback
= entry
->private_data
;
1090 mutex_lock(&loopback
->cable_lock
);
1091 num
= entry
->name
[strlen(entry
->name
)-1];
1092 num
= num
== '0' ? 0 : 1;
1093 for (sub
= 0; sub
< MAX_PCM_SUBSTREAMS
; sub
++)
1094 print_substream_info(buffer
, loopback
, sub
, num
);
1095 mutex_unlock(&loopback
->cable_lock
);
1098 static int __devinit
loopback_proc_new(struct loopback
*loopback
, int cidx
)
1101 struct snd_info_entry
*entry
;
1104 snprintf(name
, sizeof(name
), "cable#%d", cidx
);
1105 err
= snd_card_proc_new(loopback
->card
, name
, &entry
);
1109 snd_info_set_text_ops(entry
, loopback
, print_cable_info
);
1113 #else /* !CONFIG_PROC_FS */
1115 #define loopback_proc_new(loopback, cidx) do { } while (0)
1119 static int __devinit
loopback_probe(struct platform_device
*devptr
)
1121 struct snd_card
*card
;
1122 struct loopback
*loopback
;
1123 int dev
= devptr
->id
;
1126 err
= snd_card_create(index
[dev
], id
[dev
], THIS_MODULE
,
1127 sizeof(struct loopback
), &card
);
1130 loopback
= card
->private_data
;
1132 if (pcm_substreams
[dev
] < 1)
1133 pcm_substreams
[dev
] = 1;
1134 if (pcm_substreams
[dev
] > MAX_PCM_SUBSTREAMS
)
1135 pcm_substreams
[dev
] = MAX_PCM_SUBSTREAMS
;
1137 loopback
->card
= card
;
1138 mutex_init(&loopback
->cable_lock
);
1140 err
= loopback_pcm_new(loopback
, 0, pcm_substreams
[dev
]);
1143 err
= loopback_pcm_new(loopback
, 1, pcm_substreams
[dev
]);
1146 err
= loopback_mixer_new(loopback
, pcm_notify
[dev
] ? 1 : 0);
1149 loopback_proc_new(loopback
, 0);
1150 loopback_proc_new(loopback
, 1);
1151 strcpy(card
->driver
, "Loopback");
1152 strcpy(card
->shortname
, "Loopback");
1153 sprintf(card
->longname
, "Loopback %i", dev
+ 1);
1154 err
= snd_card_register(card
);
1156 platform_set_drvdata(devptr
, card
);
1160 snd_card_free(card
);
1164 static int __devexit
loopback_remove(struct platform_device
*devptr
)
1166 snd_card_free(platform_get_drvdata(devptr
));
1167 platform_set_drvdata(devptr
, NULL
);
1172 static int loopback_suspend(struct platform_device
*pdev
,
1175 struct snd_card
*card
= platform_get_drvdata(pdev
);
1176 struct loopback
*loopback
= card
->private_data
;
1178 snd_power_change_state(card
, SNDRV_CTL_POWER_D3hot
);
1180 snd_pcm_suspend_all(loopback
->pcm
[0]);
1181 snd_pcm_suspend_all(loopback
->pcm
[1]);
1185 static int loopback_resume(struct platform_device
*pdev
)
1187 struct snd_card
*card
= platform_get_drvdata(pdev
);
1189 snd_power_change_state(card
, SNDRV_CTL_POWER_D0
);
1194 #define SND_LOOPBACK_DRIVER "snd_aloop"
1196 static struct platform_driver loopback_driver
= {
1197 .probe
= loopback_probe
,
1198 .remove
= __devexit_p(loopback_remove
),
1200 .suspend
= loopback_suspend
,
1201 .resume
= loopback_resume
,
1204 .name
= SND_LOOPBACK_DRIVER
1208 static void loopback_unregister_all(void)
1212 for (i
= 0; i
< ARRAY_SIZE(devices
); ++i
)
1213 platform_device_unregister(devices
[i
]);
1214 platform_driver_unregister(&loopback_driver
);
1217 static int __init
alsa_card_loopback_init(void)
1221 err
= platform_driver_register(&loopback_driver
);
1227 for (i
= 0; i
< SNDRV_CARDS
; i
++) {
1228 struct platform_device
*device
;
1231 device
= platform_device_register_simple(SND_LOOPBACK_DRIVER
,
1235 if (!platform_get_drvdata(device
)) {
1236 platform_device_unregister(device
);
1239 devices
[i
] = device
;
1244 printk(KERN_ERR
"aloop: No loopback enabled\n");
1246 loopback_unregister_all();
1252 static void __exit
alsa_card_loopback_exit(void)
1254 loopback_unregister_all();
1257 module_init(alsa_card_loopback_init
)
1258 module_exit(alsa_card_loopback_exit
)