3 * Copyright (c) by Jaroslav Kysela <perex@suse.cz>
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write to the Free Software
17 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
21 #include <sound/driver.h>
22 #include <linux/init.h>
23 #include <linux/jiffies.h>
24 #include <linux/slab.h>
25 #include <linux/time.h>
26 #include <linux/wait.h>
27 #include <linux/moduleparam.h>
28 #include <sound/core.h>
29 #include <sound/control.h>
30 #include <sound/pcm.h>
31 #include <sound/rawmidi.h>
32 #include <sound/initval.h>
34 MODULE_AUTHOR("Jaroslav Kysela <perex@suse.cz>");
35 MODULE_DESCRIPTION("Dummy soundcard (/dev/null)");
36 MODULE_LICENSE("GPL");
37 MODULE_SUPPORTED_DEVICE("{{ALSA,Dummy soundcard}}");
39 #define MAX_PCM_DEVICES 4
40 #define MAX_PCM_SUBSTREAMS 16
41 #define MAX_MIDI_DEVICES 2
43 #if 0 /* emu10k1 emulation */
44 #define MAX_BUFFER_SIZE (128 * 1024)
45 static int emu10k1_playback_constraints(snd_pcm_runtime_t
*runtime
)
48 if ((err
= snd_pcm_hw_constraint_integer(runtime
, SNDRV_PCM_HW_PARAM_PERIODS
)) < 0)
50 if ((err
= snd_pcm_hw_constraint_minmax(runtime
, SNDRV_PCM_HW_PARAM_BUFFER_BYTES
, 256, UINT_MAX
)) < 0)
54 #define add_playback_constraints emu10k1_playback_constraints
57 #if 0 /* RME9652 emulation */
58 #define MAX_BUFFER_SIZE (26 * 64 * 1024)
59 #define USE_FORMATS SNDRV_PCM_FMTBIT_S32_LE
60 #define USE_CHANNELS_MIN 26
61 #define USE_CHANNELS_MAX 26
62 #define USE_PERIODS_MIN 2
63 #define USE_PERIODS_MAX 2
66 #if 0 /* ICE1712 emulation */
67 #define MAX_BUFFER_SIZE (256 * 1024)
68 #define USE_FORMATS SNDRV_PCM_FMTBIT_S32_LE
69 #define USE_CHANNELS_MIN 10
70 #define USE_CHANNELS_MAX 10
71 #define USE_PERIODS_MIN 1
72 #define USE_PERIODS_MAX 1024
75 #if 0 /* UDA1341 emulation */
76 #define MAX_BUFFER_SIZE (16380)
77 #define USE_FORMATS SNDRV_PCM_FMTBIT_S16_LE
78 #define USE_CHANNELS_MIN 2
79 #define USE_CHANNELS_MAX 2
80 #define USE_PERIODS_MIN 2
81 #define USE_PERIODS_MAX 255
84 #if 0 /* simple AC97 bridge (intel8x0) with 48kHz AC97 only codec */
85 #define USE_FORMATS SNDRV_PCM_FMTBIT_S16_LE
86 #define USE_CHANNELS_MIN 2
87 #define USE_CHANNELS_MAX 2
88 #define USE_RATE SNDRV_PCM_RATE_48000
89 #define USE_RATE_MIN 48000
90 #define USE_RATE_MAX 48000
95 #ifndef MAX_BUFFER_SIZE
96 #define MAX_BUFFER_SIZE (64*1024)
99 #define USE_FORMATS (SNDRV_PCM_FMTBIT_U8 | SNDRV_PCM_FMTBIT_S16_LE)
102 #define USE_RATE SNDRV_PCM_RATE_CONTINUOUS | SNDRV_PCM_RATE_8000_48000
103 #define USE_RATE_MIN 5500
104 #define USE_RATE_MAX 48000
106 #ifndef USE_CHANNELS_MIN
107 #define USE_CHANNELS_MIN 1
109 #ifndef USE_CHANNELS_MAX
110 #define USE_CHANNELS_MAX 2
112 #ifndef USE_PERIODS_MIN
113 #define USE_PERIODS_MIN 1
115 #ifndef USE_PERIODS_MAX
116 #define USE_PERIODS_MAX 1024
118 #ifndef add_playback_constraints
119 #define add_playback_constraints(x) 0
121 #ifndef add_capture_constraints
122 #define add_capture_constraints(x) 0
125 static int index
[SNDRV_CARDS
] = SNDRV_DEFAULT_IDX
; /* Index 0-MAX */
126 static char *id
[SNDRV_CARDS
] = SNDRV_DEFAULT_STR
; /* ID for this card */
127 static int enable
[SNDRV_CARDS
] = {1, [1 ... (SNDRV_CARDS
- 1)] = 0};
128 static int pcm_devs
[SNDRV_CARDS
] = {[0 ... (SNDRV_CARDS
- 1)] = 1};
129 static int pcm_substreams
[SNDRV_CARDS
] = {[0 ... (SNDRV_CARDS
- 1)] = 8};
130 //static int midi_devs[SNDRV_CARDS] = {[0 ... (SNDRV_CARDS - 1)] = 2};
132 module_param_array(index
, int, NULL
, 0444);
133 MODULE_PARM_DESC(index
, "Index value for dummy soundcard.");
134 module_param_array(id
, charp
, NULL
, 0444);
135 MODULE_PARM_DESC(id
, "ID string for dummy soundcard.");
136 module_param_array(enable
, bool, NULL
, 0444);
137 MODULE_PARM_DESC(enable
, "Enable this dummy soundcard.");
138 module_param_array(pcm_devs
, int, NULL
, 0444);
139 MODULE_PARM_DESC(pcm_devs
, "PCM devices # (0-4) for dummy driver.");
140 module_param_array(pcm_substreams
, int, NULL
, 0444);
141 MODULE_PARM_DESC(pcm_substreams
, "PCM substreams # (1-16) for dummy driver.");
142 //module_param_array(midi_devs, int, NULL, 0444);
143 //MODULE_PARM_DESC(midi_devs, "MIDI devices # (0-2) for dummy driver.");
145 #define MIXER_ADDR_MASTER 0
146 #define MIXER_ADDR_LINE 1
147 #define MIXER_ADDR_MIC 2
148 #define MIXER_ADDR_SYNTH 3
149 #define MIXER_ADDR_CD 4
150 #define MIXER_ADDR_LAST 4
152 typedef struct snd_card_dummy
{
154 spinlock_t mixer_lock
;
155 int mixer_volume
[MIXER_ADDR_LAST
+1][2];
156 int capture_source
[MIXER_ADDR_LAST
+1][2];
159 typedef struct snd_card_dummy_pcm
{
160 snd_card_dummy_t
*dummy
;
162 struct timer_list timer
;
163 unsigned int pcm_size
;
164 unsigned int pcm_count
;
165 unsigned int pcm_bps
; /* bytes per second */
166 unsigned int pcm_jiffie
; /* bytes per one jiffie */
167 unsigned int pcm_irq_pos
; /* IRQ position */
168 unsigned int pcm_buf_pos
; /* position in buffer */
169 snd_pcm_substream_t
*substream
;
170 } snd_card_dummy_pcm_t
;
172 static snd_card_t
*snd_dummy_cards
[SNDRV_CARDS
] = SNDRV_DEFAULT_PTR
;
175 static void snd_card_dummy_pcm_timer_start(snd_pcm_substream_t
* substream
)
177 snd_pcm_runtime_t
*runtime
= substream
->runtime
;
178 snd_card_dummy_pcm_t
*dpcm
= runtime
->private_data
;
180 dpcm
->timer
.expires
= 1 + jiffies
;
181 add_timer(&dpcm
->timer
);
184 static void snd_card_dummy_pcm_timer_stop(snd_pcm_substream_t
* substream
)
186 snd_pcm_runtime_t
*runtime
= substream
->runtime
;
187 snd_card_dummy_pcm_t
*dpcm
= runtime
->private_data
;
189 del_timer(&dpcm
->timer
);
192 static int snd_card_dummy_playback_trigger(snd_pcm_substream_t
* substream
,
195 if (cmd
== SNDRV_PCM_TRIGGER_START
) {
196 snd_card_dummy_pcm_timer_start(substream
);
197 } else if (cmd
== SNDRV_PCM_TRIGGER_STOP
) {
198 snd_card_dummy_pcm_timer_stop(substream
);
205 static int snd_card_dummy_capture_trigger(snd_pcm_substream_t
* substream
,
208 if (cmd
== SNDRV_PCM_TRIGGER_START
) {
209 snd_card_dummy_pcm_timer_start(substream
);
210 } else if (cmd
== SNDRV_PCM_TRIGGER_STOP
) {
211 snd_card_dummy_pcm_timer_stop(substream
);
218 static int snd_card_dummy_pcm_prepare(snd_pcm_substream_t
* substream
)
220 snd_pcm_runtime_t
*runtime
= substream
->runtime
;
221 snd_card_dummy_pcm_t
*dpcm
= runtime
->private_data
;
224 bps
= runtime
->rate
* runtime
->channels
;
225 bps
*= snd_pcm_format_width(runtime
->format
);
230 dpcm
->pcm_jiffie
= bps
/ HZ
;
231 dpcm
->pcm_size
= snd_pcm_lib_buffer_bytes(substream
);
232 dpcm
->pcm_count
= snd_pcm_lib_period_bytes(substream
);
233 dpcm
->pcm_irq_pos
= 0;
234 dpcm
->pcm_buf_pos
= 0;
238 static int snd_card_dummy_playback_prepare(snd_pcm_substream_t
* substream
)
240 return snd_card_dummy_pcm_prepare(substream
);
243 static int snd_card_dummy_capture_prepare(snd_pcm_substream_t
* substream
)
245 return snd_card_dummy_pcm_prepare(substream
);
248 static void snd_card_dummy_pcm_timer_function(unsigned long data
)
250 snd_card_dummy_pcm_t
*dpcm
= (snd_card_dummy_pcm_t
*)data
;
252 dpcm
->timer
.expires
= 1 + jiffies
;
253 add_timer(&dpcm
->timer
);
254 spin_lock_irq(&dpcm
->lock
);
255 dpcm
->pcm_irq_pos
+= dpcm
->pcm_jiffie
;
256 dpcm
->pcm_buf_pos
+= dpcm
->pcm_jiffie
;
257 dpcm
->pcm_buf_pos
%= dpcm
->pcm_size
;
258 if (dpcm
->pcm_irq_pos
>= dpcm
->pcm_count
) {
259 dpcm
->pcm_irq_pos
%= dpcm
->pcm_count
;
260 snd_pcm_period_elapsed(dpcm
->substream
);
262 spin_unlock_irq(&dpcm
->lock
);
265 static snd_pcm_uframes_t
snd_card_dummy_playback_pointer(snd_pcm_substream_t
* substream
)
267 snd_pcm_runtime_t
*runtime
= substream
->runtime
;
268 snd_card_dummy_pcm_t
*dpcm
= runtime
->private_data
;
270 return bytes_to_frames(runtime
, dpcm
->pcm_buf_pos
);
273 static snd_pcm_uframes_t
snd_card_dummy_capture_pointer(snd_pcm_substream_t
* substream
)
275 snd_pcm_runtime_t
*runtime
= substream
->runtime
;
276 snd_card_dummy_pcm_t
*dpcm
= runtime
->private_data
;
278 return bytes_to_frames(runtime
, dpcm
->pcm_buf_pos
);
281 static snd_pcm_hardware_t snd_card_dummy_playback
=
283 .info
= (SNDRV_PCM_INFO_MMAP
| SNDRV_PCM_INFO_INTERLEAVED
|
284 SNDRV_PCM_INFO_MMAP_VALID
),
285 .formats
= USE_FORMATS
,
287 .rate_min
= USE_RATE_MIN
,
288 .rate_max
= USE_RATE_MAX
,
289 .channels_min
= USE_CHANNELS_MIN
,
290 .channels_max
= USE_CHANNELS_MAX
,
291 .buffer_bytes_max
= MAX_BUFFER_SIZE
,
292 .period_bytes_min
= 64,
293 .period_bytes_max
= MAX_BUFFER_SIZE
,
294 .periods_min
= USE_PERIODS_MIN
,
295 .periods_max
= USE_PERIODS_MAX
,
299 static snd_pcm_hardware_t snd_card_dummy_capture
=
301 .info
= (SNDRV_PCM_INFO_MMAP
| SNDRV_PCM_INFO_INTERLEAVED
|
302 SNDRV_PCM_INFO_MMAP_VALID
),
303 .formats
= USE_FORMATS
,
305 .rate_min
= USE_RATE_MIN
,
306 .rate_max
= USE_RATE_MAX
,
307 .channels_min
= USE_CHANNELS_MIN
,
308 .channels_max
= USE_CHANNELS_MAX
,
309 .buffer_bytes_max
= MAX_BUFFER_SIZE
,
310 .period_bytes_min
= 64,
311 .period_bytes_max
= MAX_BUFFER_SIZE
,
312 .periods_min
= USE_PERIODS_MIN
,
313 .periods_max
= USE_PERIODS_MAX
,
317 static void snd_card_dummy_runtime_free(snd_pcm_runtime_t
*runtime
)
319 snd_card_dummy_pcm_t
*dpcm
= runtime
->private_data
;
323 static int snd_card_dummy_hw_params(snd_pcm_substream_t
* substream
,
324 snd_pcm_hw_params_t
* hw_params
)
326 return snd_pcm_lib_malloc_pages(substream
, params_buffer_bytes(hw_params
));
329 static int snd_card_dummy_hw_free(snd_pcm_substream_t
* substream
)
331 return snd_pcm_lib_free_pages(substream
);
334 static int snd_card_dummy_playback_open(snd_pcm_substream_t
* substream
)
336 snd_pcm_runtime_t
*runtime
= substream
->runtime
;
337 snd_card_dummy_pcm_t
*dpcm
;
340 dpcm
= kzalloc(sizeof(*dpcm
), GFP_KERNEL
);
343 init_timer(&dpcm
->timer
);
344 dpcm
->timer
.data
= (unsigned long) dpcm
;
345 dpcm
->timer
.function
= snd_card_dummy_pcm_timer_function
;
346 spin_lock_init(&dpcm
->lock
);
347 dpcm
->substream
= substream
;
348 runtime
->private_data
= dpcm
;
349 runtime
->private_free
= snd_card_dummy_runtime_free
;
350 runtime
->hw
= snd_card_dummy_playback
;
351 if (substream
->pcm
->device
& 1) {
352 runtime
->hw
.info
&= ~SNDRV_PCM_INFO_INTERLEAVED
;
353 runtime
->hw
.info
|= SNDRV_PCM_INFO_NONINTERLEAVED
;
355 if (substream
->pcm
->device
& 2)
356 runtime
->hw
.info
&= ~(SNDRV_PCM_INFO_MMAP
|SNDRV_PCM_INFO_MMAP_VALID
);
357 if ((err
= add_playback_constraints(runtime
)) < 0) {
365 static int snd_card_dummy_capture_open(snd_pcm_substream_t
* substream
)
367 snd_pcm_runtime_t
*runtime
= substream
->runtime
;
368 snd_card_dummy_pcm_t
*dpcm
;
371 dpcm
= kzalloc(sizeof(*dpcm
), GFP_KERNEL
);
374 init_timer(&dpcm
->timer
);
375 dpcm
->timer
.data
= (unsigned long) dpcm
;
376 dpcm
->timer
.function
= snd_card_dummy_pcm_timer_function
;
377 spin_lock_init(&dpcm
->lock
);
378 dpcm
->substream
= substream
;
379 runtime
->private_data
= dpcm
;
380 runtime
->private_free
= snd_card_dummy_runtime_free
;
381 runtime
->hw
= snd_card_dummy_capture
;
382 if (substream
->pcm
->device
== 1) {
383 runtime
->hw
.info
&= ~SNDRV_PCM_INFO_INTERLEAVED
;
384 runtime
->hw
.info
|= SNDRV_PCM_INFO_NONINTERLEAVED
;
386 if (substream
->pcm
->device
& 2)
387 runtime
->hw
.info
&= ~(SNDRV_PCM_INFO_MMAP
|SNDRV_PCM_INFO_MMAP_VALID
);
388 if ((err
= add_capture_constraints(runtime
)) < 0) {
396 static int snd_card_dummy_playback_close(snd_pcm_substream_t
* substream
)
401 static int snd_card_dummy_capture_close(snd_pcm_substream_t
* substream
)
406 static snd_pcm_ops_t snd_card_dummy_playback_ops
= {
407 .open
= snd_card_dummy_playback_open
,
408 .close
= snd_card_dummy_playback_close
,
409 .ioctl
= snd_pcm_lib_ioctl
,
410 .hw_params
= snd_card_dummy_hw_params
,
411 .hw_free
= snd_card_dummy_hw_free
,
412 .prepare
= snd_card_dummy_playback_prepare
,
413 .trigger
= snd_card_dummy_playback_trigger
,
414 .pointer
= snd_card_dummy_playback_pointer
,
417 static snd_pcm_ops_t snd_card_dummy_capture_ops
= {
418 .open
= snd_card_dummy_capture_open
,
419 .close
= snd_card_dummy_capture_close
,
420 .ioctl
= snd_pcm_lib_ioctl
,
421 .hw_params
= snd_card_dummy_hw_params
,
422 .hw_free
= snd_card_dummy_hw_free
,
423 .prepare
= snd_card_dummy_capture_prepare
,
424 .trigger
= snd_card_dummy_capture_trigger
,
425 .pointer
= snd_card_dummy_capture_pointer
,
428 static int __init
snd_card_dummy_pcm(snd_card_dummy_t
*dummy
, int device
, int substreams
)
433 if ((err
= snd_pcm_new(dummy
->card
, "Dummy PCM", device
, substreams
, substreams
, &pcm
)) < 0)
435 snd_pcm_set_ops(pcm
, SNDRV_PCM_STREAM_PLAYBACK
, &snd_card_dummy_playback_ops
);
436 snd_pcm_set_ops(pcm
, SNDRV_PCM_STREAM_CAPTURE
, &snd_card_dummy_capture_ops
);
437 pcm
->private_data
= dummy
;
439 strcpy(pcm
->name
, "Dummy PCM");
440 snd_pcm_lib_preallocate_pages_for_all(pcm
, SNDRV_DMA_TYPE_CONTINUOUS
,
441 snd_dma_continuous_data(GFP_KERNEL
),
446 #define DUMMY_VOLUME(xname, xindex, addr) \
447 { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = xname, .index = xindex, \
448 .info = snd_dummy_volume_info, \
449 .get = snd_dummy_volume_get, .put = snd_dummy_volume_put, \
450 .private_value = addr }
452 static int snd_dummy_volume_info(snd_kcontrol_t
* kcontrol
, snd_ctl_elem_info_t
* uinfo
)
454 uinfo
->type
= SNDRV_CTL_ELEM_TYPE_INTEGER
;
456 uinfo
->value
.integer
.min
= -50;
457 uinfo
->value
.integer
.max
= 100;
461 static int snd_dummy_volume_get(snd_kcontrol_t
* kcontrol
, snd_ctl_elem_value_t
* ucontrol
)
463 snd_card_dummy_t
*dummy
= snd_kcontrol_chip(kcontrol
);
465 int addr
= kcontrol
->private_value
;
467 spin_lock_irqsave(&dummy
->mixer_lock
, flags
);
468 ucontrol
->value
.integer
.value
[0] = dummy
->mixer_volume
[addr
][0];
469 ucontrol
->value
.integer
.value
[1] = dummy
->mixer_volume
[addr
][1];
470 spin_unlock_irqrestore(&dummy
->mixer_lock
, flags
);
474 static int snd_dummy_volume_put(snd_kcontrol_t
* kcontrol
, snd_ctl_elem_value_t
* ucontrol
)
476 snd_card_dummy_t
*dummy
= snd_kcontrol_chip(kcontrol
);
478 int change
, addr
= kcontrol
->private_value
;
481 left
= ucontrol
->value
.integer
.value
[0];
486 right
= ucontrol
->value
.integer
.value
[1];
491 spin_lock_irqsave(&dummy
->mixer_lock
, flags
);
492 change
= dummy
->mixer_volume
[addr
][0] != left
||
493 dummy
->mixer_volume
[addr
][1] != right
;
494 dummy
->mixer_volume
[addr
][0] = left
;
495 dummy
->mixer_volume
[addr
][1] = right
;
496 spin_unlock_irqrestore(&dummy
->mixer_lock
, flags
);
500 #define DUMMY_CAPSRC(xname, xindex, addr) \
501 { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = xname, .index = xindex, \
502 .info = snd_dummy_capsrc_info, \
503 .get = snd_dummy_capsrc_get, .put = snd_dummy_capsrc_put, \
504 .private_value = addr }
506 static int snd_dummy_capsrc_info(snd_kcontrol_t
* kcontrol
, snd_ctl_elem_info_t
* uinfo
)
508 uinfo
->type
= SNDRV_CTL_ELEM_TYPE_BOOLEAN
;
510 uinfo
->value
.integer
.min
= 0;
511 uinfo
->value
.integer
.max
= 1;
515 static int snd_dummy_capsrc_get(snd_kcontrol_t
* kcontrol
, snd_ctl_elem_value_t
* ucontrol
)
517 snd_card_dummy_t
*dummy
= snd_kcontrol_chip(kcontrol
);
519 int addr
= kcontrol
->private_value
;
521 spin_lock_irqsave(&dummy
->mixer_lock
, flags
);
522 ucontrol
->value
.integer
.value
[0] = dummy
->capture_source
[addr
][0];
523 ucontrol
->value
.integer
.value
[1] = dummy
->capture_source
[addr
][1];
524 spin_unlock_irqrestore(&dummy
->mixer_lock
, flags
);
528 static int snd_dummy_capsrc_put(snd_kcontrol_t
* kcontrol
, snd_ctl_elem_value_t
* ucontrol
)
530 snd_card_dummy_t
*dummy
= snd_kcontrol_chip(kcontrol
);
532 int change
, addr
= kcontrol
->private_value
;
535 left
= ucontrol
->value
.integer
.value
[0] & 1;
536 right
= ucontrol
->value
.integer
.value
[1] & 1;
537 spin_lock_irqsave(&dummy
->mixer_lock
, flags
);
538 change
= dummy
->capture_source
[addr
][0] != left
&&
539 dummy
->capture_source
[addr
][1] != right
;
540 dummy
->capture_source
[addr
][0] = left
;
541 dummy
->capture_source
[addr
][1] = right
;
542 spin_unlock_irqrestore(&dummy
->mixer_lock
, flags
);
546 static snd_kcontrol_new_t snd_dummy_controls
[] = {
547 DUMMY_VOLUME("Master Volume", 0, MIXER_ADDR_MASTER
),
548 DUMMY_CAPSRC("Master Capture Switch", 0, MIXER_ADDR_MASTER
),
549 DUMMY_VOLUME("Synth Volume", 0, MIXER_ADDR_SYNTH
),
550 DUMMY_CAPSRC("Synth Capture Switch", 0, MIXER_ADDR_MASTER
),
551 DUMMY_VOLUME("Line Volume", 0, MIXER_ADDR_LINE
),
552 DUMMY_CAPSRC("Line Capture Switch", 0, MIXER_ADDR_MASTER
),
553 DUMMY_VOLUME("Mic Volume", 0, MIXER_ADDR_MIC
),
554 DUMMY_CAPSRC("Mic Capture Switch", 0, MIXER_ADDR_MASTER
),
555 DUMMY_VOLUME("CD Volume", 0, MIXER_ADDR_CD
),
556 DUMMY_CAPSRC("CD Capture Switch", 0, MIXER_ADDR_MASTER
)
559 static int __init
snd_card_dummy_new_mixer(snd_card_dummy_t
* dummy
)
561 snd_card_t
*card
= dummy
->card
;
565 snd_assert(dummy
!= NULL
, return -EINVAL
);
566 spin_lock_init(&dummy
->mixer_lock
);
567 strcpy(card
->mixername
, "Dummy Mixer");
569 for (idx
= 0; idx
< ARRAY_SIZE(snd_dummy_controls
); idx
++) {
570 if ((err
= snd_ctl_add(card
, snd_ctl_new1(&snd_dummy_controls
[idx
], dummy
))) < 0)
576 static int __init
snd_card_dummy_probe(int dev
)
579 struct snd_card_dummy
*dummy
;
584 card
= snd_card_new(index
[dev
], id
[dev
], THIS_MODULE
,
585 sizeof(struct snd_card_dummy
));
588 dummy
= (struct snd_card_dummy
*)card
->private_data
;
590 for (idx
= 0; idx
< MAX_PCM_DEVICES
&& idx
< pcm_devs
[dev
]; idx
++) {
591 if (pcm_substreams
[dev
] < 1)
592 pcm_substreams
[dev
] = 1;
593 if (pcm_substreams
[dev
] > MAX_PCM_SUBSTREAMS
)
594 pcm_substreams
[dev
] = MAX_PCM_SUBSTREAMS
;
595 if ((err
= snd_card_dummy_pcm(dummy
, idx
, pcm_substreams
[dev
])) < 0)
598 if ((err
= snd_card_dummy_new_mixer(dummy
)) < 0)
600 strcpy(card
->driver
, "Dummy");
601 strcpy(card
->shortname
, "Dummy");
602 sprintf(card
->longname
, "Dummy %i", dev
+ 1);
604 if ((err
= snd_card_set_generic_dev(card
)) < 0)
607 if ((err
= snd_card_register(card
)) == 0) {
608 snd_dummy_cards
[dev
] = card
;
616 static int __init
alsa_card_dummy_init(void)
620 for (dev
= cards
= 0; dev
< SNDRV_CARDS
&& enable
[dev
]; dev
++) {
621 if (snd_card_dummy_probe(dev
) < 0) {
623 printk(KERN_ERR
"Dummy soundcard #%i not found or device busy\n", dev
+ 1);
631 printk(KERN_ERR
"Dummy soundcard not found or device busy\n");
638 static void __exit
alsa_card_dummy_exit(void)
642 for (idx
= 0; idx
< SNDRV_CARDS
; idx
++)
643 snd_card_free(snd_dummy_cards
[idx
]);
646 module_init(alsa_card_dummy_init
)
647 module_exit(alsa_card_dummy_exit
)