3 * Copyright (c) by Jaroslav Kysela <perex@perex.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 <linux/init.h>
22 #include <linux/err.h>
23 #include <linux/platform_device.h>
24 #include <linux/jiffies.h>
25 #include <linux/slab.h>
26 #include <linux/time.h>
27 #include <linux/wait.h>
28 #include <linux/hrtimer.h>
29 #include <linux/math64.h>
30 #include <linux/module.h>
31 #include <sound/core.h>
32 #include <sound/control.h>
33 #include <sound/tlv.h>
34 #include <sound/pcm.h>
35 #include <sound/rawmidi.h>
36 #include <sound/info.h>
37 #include <sound/initval.h>
39 MODULE_AUTHOR("Jaroslav Kysela <perex@perex.cz>");
40 MODULE_DESCRIPTION("Dummy soundcard (/dev/null)");
41 MODULE_LICENSE("GPL");
42 MODULE_SUPPORTED_DEVICE("{{ALSA,Dummy soundcard}}");
44 #define MAX_PCM_DEVICES 4
45 #define MAX_PCM_SUBSTREAMS 128
46 #define MAX_MIDI_DEVICES 2
49 #define MAX_BUFFER_SIZE (64*1024)
50 #define MIN_PERIOD_SIZE 64
51 #define MAX_PERIOD_SIZE MAX_BUFFER_SIZE
52 #define USE_FORMATS (SNDRV_PCM_FMTBIT_U8 | SNDRV_PCM_FMTBIT_S16_LE)
53 #define USE_RATE SNDRV_PCM_RATE_CONTINUOUS | SNDRV_PCM_RATE_8000_48000
54 #define USE_RATE_MIN 5500
55 #define USE_RATE_MAX 48000
56 #define USE_CHANNELS_MIN 1
57 #define USE_CHANNELS_MAX 2
58 #define USE_PERIODS_MIN 1
59 #define USE_PERIODS_MAX 1024
61 static int index
[SNDRV_CARDS
] = SNDRV_DEFAULT_IDX
; /* Index 0-MAX */
62 static char *id
[SNDRV_CARDS
] = SNDRV_DEFAULT_STR
; /* ID for this card */
63 static bool enable
[SNDRV_CARDS
] = {1, [1 ... (SNDRV_CARDS
- 1)] = 0};
64 static char *model
[SNDRV_CARDS
] = {[0 ... (SNDRV_CARDS
- 1)] = NULL
};
65 static int pcm_devs
[SNDRV_CARDS
] = {[0 ... (SNDRV_CARDS
- 1)] = 1};
66 static int pcm_substreams
[SNDRV_CARDS
] = {[0 ... (SNDRV_CARDS
- 1)] = 8};
67 //static int midi_devs[SNDRV_CARDS] = {[0 ... (SNDRV_CARDS - 1)] = 2};
68 #ifdef CONFIG_HIGH_RES_TIMERS
69 static bool hrtimer
= 1;
71 static bool fake_buffer
= 1;
73 module_param_array(index
, int, NULL
, 0444);
74 MODULE_PARM_DESC(index
, "Index value for dummy soundcard.");
75 module_param_array(id
, charp
, NULL
, 0444);
76 MODULE_PARM_DESC(id
, "ID string for dummy soundcard.");
77 module_param_array(enable
, bool, NULL
, 0444);
78 MODULE_PARM_DESC(enable
, "Enable this dummy soundcard.");
79 module_param_array(model
, charp
, NULL
, 0444);
80 MODULE_PARM_DESC(model
, "Soundcard model.");
81 module_param_array(pcm_devs
, int, NULL
, 0444);
82 MODULE_PARM_DESC(pcm_devs
, "PCM devices # (0-4) for dummy driver.");
83 module_param_array(pcm_substreams
, int, NULL
, 0444);
84 MODULE_PARM_DESC(pcm_substreams
, "PCM substreams # (1-128) for dummy driver.");
85 //module_param_array(midi_devs, int, NULL, 0444);
86 //MODULE_PARM_DESC(midi_devs, "MIDI devices # (0-2) for dummy driver.");
87 module_param(fake_buffer
, bool, 0444);
88 MODULE_PARM_DESC(fake_buffer
, "Fake buffer allocations.");
89 #ifdef CONFIG_HIGH_RES_TIMERS
90 module_param(hrtimer
, bool, 0644);
91 MODULE_PARM_DESC(hrtimer
, "Use hrtimer as the timer source.");
94 static struct platform_device
*devices
[SNDRV_CARDS
];
96 #define MIXER_ADDR_MASTER 0
97 #define MIXER_ADDR_LINE 1
98 #define MIXER_ADDR_MIC 2
99 #define MIXER_ADDR_SYNTH 3
100 #define MIXER_ADDR_CD 4
101 #define MIXER_ADDR_LAST 4
103 struct dummy_timer_ops
{
104 int (*create
)(struct snd_pcm_substream
*);
105 void (*free
)(struct snd_pcm_substream
*);
106 int (*prepare
)(struct snd_pcm_substream
*);
107 int (*start
)(struct snd_pcm_substream
*);
108 int (*stop
)(struct snd_pcm_substream
*);
109 snd_pcm_uframes_t (*pointer
)(struct snd_pcm_substream
*);
114 int (*playback_constraints
)(struct snd_pcm_runtime
*runtime
);
115 int (*capture_constraints
)(struct snd_pcm_runtime
*runtime
);
117 size_t buffer_bytes_max
;
118 size_t period_bytes_min
;
119 size_t period_bytes_max
;
120 unsigned int periods_min
;
121 unsigned int periods_max
;
123 unsigned int rate_min
;
124 unsigned int rate_max
;
125 unsigned int channels_min
;
126 unsigned int channels_max
;
130 struct snd_card
*card
;
131 struct dummy_model
*model
;
133 struct snd_pcm_hardware pcm_hw
;
134 spinlock_t mixer_lock
;
135 int mixer_volume
[MIXER_ADDR_LAST
+1][2];
136 int capture_source
[MIXER_ADDR_LAST
+1][2];
138 struct snd_kcontrol
*cd_volume_ctl
;
139 struct snd_kcontrol
*cd_switch_ctl
;
140 const struct dummy_timer_ops
*timer_ops
;
147 static int emu10k1_playback_constraints(struct snd_pcm_runtime
*runtime
)
150 err
= snd_pcm_hw_constraint_integer(runtime
, SNDRV_PCM_HW_PARAM_PERIODS
);
153 err
= snd_pcm_hw_constraint_minmax(runtime
, SNDRV_PCM_HW_PARAM_BUFFER_BYTES
, 256, UINT_MAX
);
159 static struct dummy_model model_emu10k1
= {
161 .playback_constraints
= emu10k1_playback_constraints
,
162 .buffer_bytes_max
= 128 * 1024,
165 static struct dummy_model model_rme9652
= {
167 .buffer_bytes_max
= 26 * 64 * 1024,
168 .formats
= SNDRV_PCM_FMTBIT_S32_LE
,
175 static struct dummy_model model_ice1712
= {
177 .buffer_bytes_max
= 256 * 1024,
178 .formats
= SNDRV_PCM_FMTBIT_S32_LE
,
185 static struct dummy_model model_uda1341
= {
187 .buffer_bytes_max
= 16380,
188 .formats
= SNDRV_PCM_FMTBIT_S16_LE
,
195 static struct dummy_model model_ac97
= {
197 .formats
= SNDRV_PCM_FMTBIT_S16_LE
,
200 .rates
= SNDRV_PCM_RATE_48000
,
205 static struct dummy_model model_ca0106
= {
207 .formats
= SNDRV_PCM_FMTBIT_S16_LE
,
208 .buffer_bytes_max
= ((65536-64)*8),
209 .period_bytes_max
= (65536-64),
214 .rates
= SNDRV_PCM_RATE_48000
|SNDRV_PCM_RATE_96000
|SNDRV_PCM_RATE_192000
,
219 static struct dummy_model
*dummy_models
[] = {
230 * system timer interface
233 struct dummy_systimer_pcm
{
235 struct timer_list timer
;
236 unsigned long base_time
;
237 unsigned int frac_pos
; /* fractional sample position (based HZ) */
238 unsigned int frac_period_rest
;
239 unsigned int frac_buffer_size
; /* buffer_size * HZ */
240 unsigned int frac_period_size
; /* period_size * HZ */
243 struct snd_pcm_substream
*substream
;
246 static void dummy_systimer_rearm(struct dummy_systimer_pcm
*dpcm
)
248 mod_timer(&dpcm
->timer
, jiffies
+
249 (dpcm
->frac_period_rest
+ dpcm
->rate
- 1) / dpcm
->rate
);
252 static void dummy_systimer_update(struct dummy_systimer_pcm
*dpcm
)
256 delta
= jiffies
- dpcm
->base_time
;
259 dpcm
->base_time
+= delta
;
261 dpcm
->frac_pos
+= delta
;
262 while (dpcm
->frac_pos
>= dpcm
->frac_buffer_size
)
263 dpcm
->frac_pos
-= dpcm
->frac_buffer_size
;
264 while (dpcm
->frac_period_rest
<= delta
) {
266 dpcm
->frac_period_rest
+= dpcm
->frac_period_size
;
268 dpcm
->frac_period_rest
-= delta
;
271 static int dummy_systimer_start(struct snd_pcm_substream
*substream
)
273 struct dummy_systimer_pcm
*dpcm
= substream
->runtime
->private_data
;
274 spin_lock(&dpcm
->lock
);
275 dpcm
->base_time
= jiffies
;
276 dummy_systimer_rearm(dpcm
);
277 spin_unlock(&dpcm
->lock
);
281 static int dummy_systimer_stop(struct snd_pcm_substream
*substream
)
283 struct dummy_systimer_pcm
*dpcm
= substream
->runtime
->private_data
;
284 spin_lock(&dpcm
->lock
);
285 del_timer(&dpcm
->timer
);
286 spin_unlock(&dpcm
->lock
);
290 static int dummy_systimer_prepare(struct snd_pcm_substream
*substream
)
292 struct snd_pcm_runtime
*runtime
= substream
->runtime
;
293 struct dummy_systimer_pcm
*dpcm
= runtime
->private_data
;
296 dpcm
->rate
= runtime
->rate
;
297 dpcm
->frac_buffer_size
= runtime
->buffer_size
* HZ
;
298 dpcm
->frac_period_size
= runtime
->period_size
* HZ
;
299 dpcm
->frac_period_rest
= dpcm
->frac_period_size
;
305 static void dummy_systimer_callback(unsigned long data
)
307 struct dummy_systimer_pcm
*dpcm
= (struct dummy_systimer_pcm
*)data
;
311 spin_lock_irqsave(&dpcm
->lock
, flags
);
312 dummy_systimer_update(dpcm
);
313 dummy_systimer_rearm(dpcm
);
314 elapsed
= dpcm
->elapsed
;
316 spin_unlock_irqrestore(&dpcm
->lock
, flags
);
318 snd_pcm_period_elapsed(dpcm
->substream
);
321 static snd_pcm_uframes_t
322 dummy_systimer_pointer(struct snd_pcm_substream
*substream
)
324 struct dummy_systimer_pcm
*dpcm
= substream
->runtime
->private_data
;
325 snd_pcm_uframes_t pos
;
327 spin_lock(&dpcm
->lock
);
328 dummy_systimer_update(dpcm
);
329 pos
= dpcm
->frac_pos
/ HZ
;
330 spin_unlock(&dpcm
->lock
);
334 static int dummy_systimer_create(struct snd_pcm_substream
*substream
)
336 struct dummy_systimer_pcm
*dpcm
;
338 dpcm
= kzalloc(sizeof(*dpcm
), GFP_KERNEL
);
341 substream
->runtime
->private_data
= dpcm
;
342 setup_timer(&dpcm
->timer
, dummy_systimer_callback
,
343 (unsigned long) dpcm
);
344 spin_lock_init(&dpcm
->lock
);
345 dpcm
->substream
= substream
;
349 static void dummy_systimer_free(struct snd_pcm_substream
*substream
)
351 kfree(substream
->runtime
->private_data
);
354 static struct dummy_timer_ops dummy_systimer_ops
= {
355 .create
= dummy_systimer_create
,
356 .free
= dummy_systimer_free
,
357 .prepare
= dummy_systimer_prepare
,
358 .start
= dummy_systimer_start
,
359 .stop
= dummy_systimer_stop
,
360 .pointer
= dummy_systimer_pointer
,
363 #ifdef CONFIG_HIGH_RES_TIMERS
368 struct dummy_hrtimer_pcm
{
372 struct hrtimer timer
;
373 struct tasklet_struct tasklet
;
374 struct snd_pcm_substream
*substream
;
377 static void dummy_hrtimer_pcm_elapsed(unsigned long priv
)
379 struct dummy_hrtimer_pcm
*dpcm
= (struct dummy_hrtimer_pcm
*)priv
;
380 if (atomic_read(&dpcm
->running
))
381 snd_pcm_period_elapsed(dpcm
->substream
);
384 static enum hrtimer_restart
dummy_hrtimer_callback(struct hrtimer
*timer
)
386 struct dummy_hrtimer_pcm
*dpcm
;
388 dpcm
= container_of(timer
, struct dummy_hrtimer_pcm
, timer
);
389 if (!atomic_read(&dpcm
->running
))
390 return HRTIMER_NORESTART
;
391 tasklet_schedule(&dpcm
->tasklet
);
392 hrtimer_forward_now(timer
, dpcm
->period_time
);
393 return HRTIMER_RESTART
;
396 static int dummy_hrtimer_start(struct snd_pcm_substream
*substream
)
398 struct dummy_hrtimer_pcm
*dpcm
= substream
->runtime
->private_data
;
400 dpcm
->base_time
= hrtimer_cb_get_time(&dpcm
->timer
);
401 hrtimer_start(&dpcm
->timer
, dpcm
->period_time
, HRTIMER_MODE_REL
);
402 atomic_set(&dpcm
->running
, 1);
406 static int dummy_hrtimer_stop(struct snd_pcm_substream
*substream
)
408 struct dummy_hrtimer_pcm
*dpcm
= substream
->runtime
->private_data
;
410 atomic_set(&dpcm
->running
, 0);
411 hrtimer_cancel(&dpcm
->timer
);
415 static inline void dummy_hrtimer_sync(struct dummy_hrtimer_pcm
*dpcm
)
417 tasklet_kill(&dpcm
->tasklet
);
420 static snd_pcm_uframes_t
421 dummy_hrtimer_pointer(struct snd_pcm_substream
*substream
)
423 struct snd_pcm_runtime
*runtime
= substream
->runtime
;
424 struct dummy_hrtimer_pcm
*dpcm
= runtime
->private_data
;
428 delta
= ktime_us_delta(hrtimer_cb_get_time(&dpcm
->timer
),
430 delta
= div_u64(delta
* runtime
->rate
+ 999999, 1000000);
431 div_u64_rem(delta
, runtime
->buffer_size
, &pos
);
435 static int dummy_hrtimer_prepare(struct snd_pcm_substream
*substream
)
437 struct snd_pcm_runtime
*runtime
= substream
->runtime
;
438 struct dummy_hrtimer_pcm
*dpcm
= runtime
->private_data
;
439 unsigned int period
, rate
;
443 dummy_hrtimer_sync(dpcm
);
444 period
= runtime
->period_size
;
445 rate
= runtime
->rate
;
448 nsecs
= div_u64((u64
)period
* 1000000000UL + rate
- 1, rate
);
449 dpcm
->period_time
= ktime_set(sec
, nsecs
);
454 static int dummy_hrtimer_create(struct snd_pcm_substream
*substream
)
456 struct dummy_hrtimer_pcm
*dpcm
;
458 dpcm
= kzalloc(sizeof(*dpcm
), GFP_KERNEL
);
461 substream
->runtime
->private_data
= dpcm
;
462 hrtimer_init(&dpcm
->timer
, CLOCK_MONOTONIC
, HRTIMER_MODE_REL
);
463 dpcm
->timer
.function
= dummy_hrtimer_callback
;
464 dpcm
->substream
= substream
;
465 atomic_set(&dpcm
->running
, 0);
466 tasklet_init(&dpcm
->tasklet
, dummy_hrtimer_pcm_elapsed
,
467 (unsigned long)dpcm
);
471 static void dummy_hrtimer_free(struct snd_pcm_substream
*substream
)
473 struct dummy_hrtimer_pcm
*dpcm
= substream
->runtime
->private_data
;
474 dummy_hrtimer_sync(dpcm
);
478 static struct dummy_timer_ops dummy_hrtimer_ops
= {
479 .create
= dummy_hrtimer_create
,
480 .free
= dummy_hrtimer_free
,
481 .prepare
= dummy_hrtimer_prepare
,
482 .start
= dummy_hrtimer_start
,
483 .stop
= dummy_hrtimer_stop
,
484 .pointer
= dummy_hrtimer_pointer
,
487 #endif /* CONFIG_HIGH_RES_TIMERS */
493 static int dummy_pcm_trigger(struct snd_pcm_substream
*substream
, int cmd
)
495 struct snd_dummy
*dummy
= snd_pcm_substream_chip(substream
);
498 case SNDRV_PCM_TRIGGER_START
:
499 case SNDRV_PCM_TRIGGER_RESUME
:
500 return dummy
->timer_ops
->start(substream
);
501 case SNDRV_PCM_TRIGGER_STOP
:
502 case SNDRV_PCM_TRIGGER_SUSPEND
:
503 return dummy
->timer_ops
->stop(substream
);
508 static int dummy_pcm_prepare(struct snd_pcm_substream
*substream
)
510 struct snd_dummy
*dummy
= snd_pcm_substream_chip(substream
);
512 return dummy
->timer_ops
->prepare(substream
);
515 static snd_pcm_uframes_t
dummy_pcm_pointer(struct snd_pcm_substream
*substream
)
517 struct snd_dummy
*dummy
= snd_pcm_substream_chip(substream
);
519 return dummy
->timer_ops
->pointer(substream
);
522 static struct snd_pcm_hardware dummy_pcm_hardware
= {
523 .info
= (SNDRV_PCM_INFO_MMAP
|
524 SNDRV_PCM_INFO_INTERLEAVED
|
525 SNDRV_PCM_INFO_RESUME
|
526 SNDRV_PCM_INFO_MMAP_VALID
),
527 .formats
= USE_FORMATS
,
529 .rate_min
= USE_RATE_MIN
,
530 .rate_max
= USE_RATE_MAX
,
531 .channels_min
= USE_CHANNELS_MIN
,
532 .channels_max
= USE_CHANNELS_MAX
,
533 .buffer_bytes_max
= MAX_BUFFER_SIZE
,
534 .period_bytes_min
= MIN_PERIOD_SIZE
,
535 .period_bytes_max
= MAX_PERIOD_SIZE
,
536 .periods_min
= USE_PERIODS_MIN
,
537 .periods_max
= USE_PERIODS_MAX
,
541 static int dummy_pcm_hw_params(struct snd_pcm_substream
*substream
,
542 struct snd_pcm_hw_params
*hw_params
)
545 /* runtime->dma_bytes has to be set manually to allow mmap */
546 substream
->runtime
->dma_bytes
= params_buffer_bytes(hw_params
);
549 return snd_pcm_lib_malloc_pages(substream
,
550 params_buffer_bytes(hw_params
));
553 static int dummy_pcm_hw_free(struct snd_pcm_substream
*substream
)
557 return snd_pcm_lib_free_pages(substream
);
560 static int dummy_pcm_open(struct snd_pcm_substream
*substream
)
562 struct snd_dummy
*dummy
= snd_pcm_substream_chip(substream
);
563 struct dummy_model
*model
= dummy
->model
;
564 struct snd_pcm_runtime
*runtime
= substream
->runtime
;
567 dummy
->timer_ops
= &dummy_systimer_ops
;
568 #ifdef CONFIG_HIGH_RES_TIMERS
570 dummy
->timer_ops
= &dummy_hrtimer_ops
;
573 err
= dummy
->timer_ops
->create(substream
);
577 runtime
->hw
= dummy
->pcm_hw
;
578 if (substream
->pcm
->device
& 1) {
579 runtime
->hw
.info
&= ~SNDRV_PCM_INFO_INTERLEAVED
;
580 runtime
->hw
.info
|= SNDRV_PCM_INFO_NONINTERLEAVED
;
582 if (substream
->pcm
->device
& 2)
583 runtime
->hw
.info
&= ~(SNDRV_PCM_INFO_MMAP
|
584 SNDRV_PCM_INFO_MMAP_VALID
);
589 if (substream
->stream
== SNDRV_PCM_STREAM_PLAYBACK
) {
590 if (model
->playback_constraints
)
591 err
= model
->playback_constraints(substream
->runtime
);
593 if (model
->capture_constraints
)
594 err
= model
->capture_constraints(substream
->runtime
);
597 dummy
->timer_ops
->free(substream
);
603 static int dummy_pcm_close(struct snd_pcm_substream
*substream
)
605 struct snd_dummy
*dummy
= snd_pcm_substream_chip(substream
);
606 dummy
->timer_ops
->free(substream
);
611 * dummy buffer handling
614 static void *dummy_page
[2];
616 static void free_fake_buffer(void)
620 for (i
= 0; i
< 2; i
++)
622 free_page((unsigned long)dummy_page
[i
]);
623 dummy_page
[i
] = NULL
;
628 static int alloc_fake_buffer(void)
634 for (i
= 0; i
< 2; i
++) {
635 dummy_page
[i
] = (void *)get_zeroed_page(GFP_KERNEL
);
636 if (!dummy_page
[i
]) {
644 static int dummy_pcm_copy(struct snd_pcm_substream
*substream
,
645 int channel
, snd_pcm_uframes_t pos
,
646 void __user
*dst
, snd_pcm_uframes_t count
)
648 return 0; /* do nothing */
651 static int dummy_pcm_silence(struct snd_pcm_substream
*substream
,
652 int channel
, snd_pcm_uframes_t pos
,
653 snd_pcm_uframes_t count
)
655 return 0; /* do nothing */
658 static struct page
*dummy_pcm_page(struct snd_pcm_substream
*substream
,
659 unsigned long offset
)
661 return virt_to_page(dummy_page
[substream
->stream
]); /* the same page */
664 static struct snd_pcm_ops dummy_pcm_ops
= {
665 .open
= dummy_pcm_open
,
666 .close
= dummy_pcm_close
,
667 .ioctl
= snd_pcm_lib_ioctl
,
668 .hw_params
= dummy_pcm_hw_params
,
669 .hw_free
= dummy_pcm_hw_free
,
670 .prepare
= dummy_pcm_prepare
,
671 .trigger
= dummy_pcm_trigger
,
672 .pointer
= dummy_pcm_pointer
,
675 static struct snd_pcm_ops dummy_pcm_ops_no_buf
= {
676 .open
= dummy_pcm_open
,
677 .close
= dummy_pcm_close
,
678 .ioctl
= snd_pcm_lib_ioctl
,
679 .hw_params
= dummy_pcm_hw_params
,
680 .hw_free
= dummy_pcm_hw_free
,
681 .prepare
= dummy_pcm_prepare
,
682 .trigger
= dummy_pcm_trigger
,
683 .pointer
= dummy_pcm_pointer
,
684 .copy
= dummy_pcm_copy
,
685 .silence
= dummy_pcm_silence
,
686 .page
= dummy_pcm_page
,
689 static int snd_card_dummy_pcm(struct snd_dummy
*dummy
, int device
,
693 struct snd_pcm_ops
*ops
;
696 err
= snd_pcm_new(dummy
->card
, "Dummy PCM", device
,
697 substreams
, substreams
, &pcm
);
702 ops
= &dummy_pcm_ops_no_buf
;
704 ops
= &dummy_pcm_ops
;
705 snd_pcm_set_ops(pcm
, SNDRV_PCM_STREAM_PLAYBACK
, ops
);
706 snd_pcm_set_ops(pcm
, SNDRV_PCM_STREAM_CAPTURE
, ops
);
707 pcm
->private_data
= dummy
;
709 strcpy(pcm
->name
, "Dummy PCM");
711 snd_pcm_lib_preallocate_pages_for_all(pcm
,
712 SNDRV_DMA_TYPE_CONTINUOUS
,
713 snd_dma_continuous_data(GFP_KERNEL
),
723 #define DUMMY_VOLUME(xname, xindex, addr) \
724 { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \
725 .access = SNDRV_CTL_ELEM_ACCESS_READWRITE | SNDRV_CTL_ELEM_ACCESS_TLV_READ, \
726 .name = xname, .index = xindex, \
727 .info = snd_dummy_volume_info, \
728 .get = snd_dummy_volume_get, .put = snd_dummy_volume_put, \
729 .private_value = addr, \
730 .tlv = { .p = db_scale_dummy } }
732 static int snd_dummy_volume_info(struct snd_kcontrol
*kcontrol
,
733 struct snd_ctl_elem_info
*uinfo
)
735 uinfo
->type
= SNDRV_CTL_ELEM_TYPE_INTEGER
;
737 uinfo
->value
.integer
.min
= -50;
738 uinfo
->value
.integer
.max
= 100;
742 static int snd_dummy_volume_get(struct snd_kcontrol
*kcontrol
,
743 struct snd_ctl_elem_value
*ucontrol
)
745 struct snd_dummy
*dummy
= snd_kcontrol_chip(kcontrol
);
746 int addr
= kcontrol
->private_value
;
748 spin_lock_irq(&dummy
->mixer_lock
);
749 ucontrol
->value
.integer
.value
[0] = dummy
->mixer_volume
[addr
][0];
750 ucontrol
->value
.integer
.value
[1] = dummy
->mixer_volume
[addr
][1];
751 spin_unlock_irq(&dummy
->mixer_lock
);
755 static int snd_dummy_volume_put(struct snd_kcontrol
*kcontrol
,
756 struct snd_ctl_elem_value
*ucontrol
)
758 struct snd_dummy
*dummy
= snd_kcontrol_chip(kcontrol
);
759 int change
, addr
= kcontrol
->private_value
;
762 left
= ucontrol
->value
.integer
.value
[0];
767 right
= ucontrol
->value
.integer
.value
[1];
772 spin_lock_irq(&dummy
->mixer_lock
);
773 change
= dummy
->mixer_volume
[addr
][0] != left
||
774 dummy
->mixer_volume
[addr
][1] != right
;
775 dummy
->mixer_volume
[addr
][0] = left
;
776 dummy
->mixer_volume
[addr
][1] = right
;
777 spin_unlock_irq(&dummy
->mixer_lock
);
781 static const DECLARE_TLV_DB_SCALE(db_scale_dummy
, -4500, 30, 0);
783 #define DUMMY_CAPSRC(xname, xindex, addr) \
784 { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = xname, .index = xindex, \
785 .info = snd_dummy_capsrc_info, \
786 .get = snd_dummy_capsrc_get, .put = snd_dummy_capsrc_put, \
787 .private_value = addr }
789 #define snd_dummy_capsrc_info snd_ctl_boolean_stereo_info
791 static int snd_dummy_capsrc_get(struct snd_kcontrol
*kcontrol
,
792 struct snd_ctl_elem_value
*ucontrol
)
794 struct snd_dummy
*dummy
= snd_kcontrol_chip(kcontrol
);
795 int addr
= kcontrol
->private_value
;
797 spin_lock_irq(&dummy
->mixer_lock
);
798 ucontrol
->value
.integer
.value
[0] = dummy
->capture_source
[addr
][0];
799 ucontrol
->value
.integer
.value
[1] = dummy
->capture_source
[addr
][1];
800 spin_unlock_irq(&dummy
->mixer_lock
);
804 static int snd_dummy_capsrc_put(struct snd_kcontrol
*kcontrol
, struct snd_ctl_elem_value
*ucontrol
)
806 struct snd_dummy
*dummy
= snd_kcontrol_chip(kcontrol
);
807 int change
, addr
= kcontrol
->private_value
;
810 left
= ucontrol
->value
.integer
.value
[0] & 1;
811 right
= ucontrol
->value
.integer
.value
[1] & 1;
812 spin_lock_irq(&dummy
->mixer_lock
);
813 change
= dummy
->capture_source
[addr
][0] != left
&&
814 dummy
->capture_source
[addr
][1] != right
;
815 dummy
->capture_source
[addr
][0] = left
;
816 dummy
->capture_source
[addr
][1] = right
;
817 spin_unlock_irq(&dummy
->mixer_lock
);
821 static int snd_dummy_iobox_info(struct snd_kcontrol
*kcontrol
,
822 struct snd_ctl_elem_info
*info
)
824 const char *const names
[] = { "None", "CD Player" };
826 return snd_ctl_enum_info(info
, 1, 2, names
);
829 static int snd_dummy_iobox_get(struct snd_kcontrol
*kcontrol
,
830 struct snd_ctl_elem_value
*value
)
832 struct snd_dummy
*dummy
= snd_kcontrol_chip(kcontrol
);
834 value
->value
.enumerated
.item
[0] = dummy
->iobox
;
838 static int snd_dummy_iobox_put(struct snd_kcontrol
*kcontrol
,
839 struct snd_ctl_elem_value
*value
)
841 struct snd_dummy
*dummy
= snd_kcontrol_chip(kcontrol
);
844 if (value
->value
.enumerated
.item
[0] > 1)
847 changed
= value
->value
.enumerated
.item
[0] != dummy
->iobox
;
849 dummy
->iobox
= value
->value
.enumerated
.item
[0];
852 dummy
->cd_volume_ctl
->vd
[0].access
&=
853 ~SNDRV_CTL_ELEM_ACCESS_INACTIVE
;
854 dummy
->cd_switch_ctl
->vd
[0].access
&=
855 ~SNDRV_CTL_ELEM_ACCESS_INACTIVE
;
857 dummy
->cd_volume_ctl
->vd
[0].access
|=
858 SNDRV_CTL_ELEM_ACCESS_INACTIVE
;
859 dummy
->cd_switch_ctl
->vd
[0].access
|=
860 SNDRV_CTL_ELEM_ACCESS_INACTIVE
;
863 snd_ctl_notify(dummy
->card
, SNDRV_CTL_EVENT_MASK_INFO
,
864 &dummy
->cd_volume_ctl
->id
);
865 snd_ctl_notify(dummy
->card
, SNDRV_CTL_EVENT_MASK_INFO
,
866 &dummy
->cd_switch_ctl
->id
);
872 static struct snd_kcontrol_new snd_dummy_controls
[] = {
873 DUMMY_VOLUME("Master Volume", 0, MIXER_ADDR_MASTER
),
874 DUMMY_CAPSRC("Master Capture Switch", 0, MIXER_ADDR_MASTER
),
875 DUMMY_VOLUME("Synth Volume", 0, MIXER_ADDR_SYNTH
),
876 DUMMY_CAPSRC("Synth Capture Switch", 0, MIXER_ADDR_SYNTH
),
877 DUMMY_VOLUME("Line Volume", 0, MIXER_ADDR_LINE
),
878 DUMMY_CAPSRC("Line Capture Switch", 0, MIXER_ADDR_LINE
),
879 DUMMY_VOLUME("Mic Volume", 0, MIXER_ADDR_MIC
),
880 DUMMY_CAPSRC("Mic Capture Switch", 0, MIXER_ADDR_MIC
),
881 DUMMY_VOLUME("CD Volume", 0, MIXER_ADDR_CD
),
882 DUMMY_CAPSRC("CD Capture Switch", 0, MIXER_ADDR_CD
),
884 .iface
= SNDRV_CTL_ELEM_IFACE_MIXER
,
885 .name
= "External I/O Box",
886 .info
= snd_dummy_iobox_info
,
887 .get
= snd_dummy_iobox_get
,
888 .put
= snd_dummy_iobox_put
,
892 static int snd_card_dummy_new_mixer(struct snd_dummy
*dummy
)
894 struct snd_card
*card
= dummy
->card
;
895 struct snd_kcontrol
*kcontrol
;
899 spin_lock_init(&dummy
->mixer_lock
);
900 strcpy(card
->mixername
, "Dummy Mixer");
903 for (idx
= 0; idx
< ARRAY_SIZE(snd_dummy_controls
); idx
++) {
904 kcontrol
= snd_ctl_new1(&snd_dummy_controls
[idx
], dummy
);
905 err
= snd_ctl_add(card
, kcontrol
);
908 if (!strcmp(kcontrol
->id
.name
, "CD Volume"))
909 dummy
->cd_volume_ctl
= kcontrol
;
910 else if (!strcmp(kcontrol
->id
.name
, "CD Capture Switch"))
911 dummy
->cd_switch_ctl
= kcontrol
;
917 #if defined(CONFIG_SND_DEBUG) && defined(CONFIG_SND_PROC_FS)
921 static void print_formats(struct snd_dummy
*dummy
,
922 struct snd_info_buffer
*buffer
)
926 for (i
= 0; i
< SNDRV_PCM_FORMAT_LAST
; i
++) {
927 if (dummy
->pcm_hw
.formats
& (1ULL << i
))
928 snd_iprintf(buffer
, " %s", snd_pcm_format_name(i
));
932 static void print_rates(struct snd_dummy
*dummy
,
933 struct snd_info_buffer
*buffer
)
935 static int rates
[] = {
936 5512, 8000, 11025, 16000, 22050, 32000, 44100, 48000,
937 64000, 88200, 96000, 176400, 192000,
941 if (dummy
->pcm_hw
.rates
& SNDRV_PCM_RATE_CONTINUOUS
)
942 snd_iprintf(buffer
, " continuous");
943 if (dummy
->pcm_hw
.rates
& SNDRV_PCM_RATE_KNOT
)
944 snd_iprintf(buffer
, " knot");
945 for (i
= 0; i
< ARRAY_SIZE(rates
); i
++)
946 if (dummy
->pcm_hw
.rates
& (1 << i
))
947 snd_iprintf(buffer
, " %d", rates
[i
]);
950 #define get_dummy_int_ptr(dummy, ofs) \
951 (unsigned int *)((char *)&((dummy)->pcm_hw) + (ofs))
952 #define get_dummy_ll_ptr(dummy, ofs) \
953 (unsigned long long *)((char *)&((dummy)->pcm_hw) + (ofs))
955 struct dummy_hw_field
{
961 #define FIELD_ENTRY(item, fmt) { \
964 .offset = offsetof(struct snd_pcm_hardware, item), \
965 .size = sizeof(dummy_pcm_hardware.item) }
967 static struct dummy_hw_field fields
[] = {
968 FIELD_ENTRY(formats
, "%#llx"),
969 FIELD_ENTRY(rates
, "%#x"),
970 FIELD_ENTRY(rate_min
, "%d"),
971 FIELD_ENTRY(rate_max
, "%d"),
972 FIELD_ENTRY(channels_min
, "%d"),
973 FIELD_ENTRY(channels_max
, "%d"),
974 FIELD_ENTRY(buffer_bytes_max
, "%ld"),
975 FIELD_ENTRY(period_bytes_min
, "%ld"),
976 FIELD_ENTRY(period_bytes_max
, "%ld"),
977 FIELD_ENTRY(periods_min
, "%d"),
978 FIELD_ENTRY(periods_max
, "%d"),
981 static void dummy_proc_read(struct snd_info_entry
*entry
,
982 struct snd_info_buffer
*buffer
)
984 struct snd_dummy
*dummy
= entry
->private_data
;
987 for (i
= 0; i
< ARRAY_SIZE(fields
); i
++) {
988 snd_iprintf(buffer
, "%s ", fields
[i
].name
);
989 if (fields
[i
].size
== sizeof(int))
990 snd_iprintf(buffer
, fields
[i
].format
,
991 *get_dummy_int_ptr(dummy
, fields
[i
].offset
));
993 snd_iprintf(buffer
, fields
[i
].format
,
994 *get_dummy_ll_ptr(dummy
, fields
[i
].offset
));
995 if (!strcmp(fields
[i
].name
, "formats"))
996 print_formats(dummy
, buffer
);
997 else if (!strcmp(fields
[i
].name
, "rates"))
998 print_rates(dummy
, buffer
);
999 snd_iprintf(buffer
, "\n");
1003 static void dummy_proc_write(struct snd_info_entry
*entry
,
1004 struct snd_info_buffer
*buffer
)
1006 struct snd_dummy
*dummy
= entry
->private_data
;
1009 while (!snd_info_get_line(buffer
, line
, sizeof(line
))) {
1012 unsigned long long val
;
1015 ptr
= snd_info_get_str(item
, line
, sizeof(item
));
1016 for (i
= 0; i
< ARRAY_SIZE(fields
); i
++) {
1017 if (!strcmp(item
, fields
[i
].name
))
1020 if (i
>= ARRAY_SIZE(fields
))
1022 snd_info_get_str(item
, ptr
, sizeof(item
));
1023 if (kstrtoull(item
, 0, &val
))
1025 if (fields
[i
].size
== sizeof(int))
1026 *get_dummy_int_ptr(dummy
, fields
[i
].offset
) = val
;
1028 *get_dummy_ll_ptr(dummy
, fields
[i
].offset
) = val
;
1032 static void dummy_proc_init(struct snd_dummy
*chip
)
1034 struct snd_info_entry
*entry
;
1036 if (!snd_card_proc_new(chip
->card
, "dummy_pcm", &entry
)) {
1037 snd_info_set_text_ops(entry
, chip
, dummy_proc_read
);
1038 entry
->c
.text
.write
= dummy_proc_write
;
1039 entry
->mode
|= S_IWUSR
;
1040 entry
->private_data
= chip
;
1044 #define dummy_proc_init(x)
1045 #endif /* CONFIG_SND_DEBUG && CONFIG_SND_PROC_FS */
1047 static int snd_dummy_probe(struct platform_device
*devptr
)
1049 struct snd_card
*card
;
1050 struct snd_dummy
*dummy
;
1051 struct dummy_model
*m
= NULL
, **mdl
;
1053 int dev
= devptr
->id
;
1055 err
= snd_card_new(&devptr
->dev
, index
[dev
], id
[dev
], THIS_MODULE
,
1056 sizeof(struct snd_dummy
), &card
);
1059 dummy
= card
->private_data
;
1061 for (mdl
= dummy_models
; *mdl
&& model
[dev
]; mdl
++) {
1062 if (strcmp(model
[dev
], (*mdl
)->name
) == 0) {
1064 "snd-dummy: Using model '%s' for card %i\n",
1065 (*mdl
)->name
, card
->number
);
1066 m
= dummy
->model
= *mdl
;
1070 for (idx
= 0; idx
< MAX_PCM_DEVICES
&& idx
< pcm_devs
[dev
]; idx
++) {
1071 if (pcm_substreams
[dev
] < 1)
1072 pcm_substreams
[dev
] = 1;
1073 if (pcm_substreams
[dev
] > MAX_PCM_SUBSTREAMS
)
1074 pcm_substreams
[dev
] = MAX_PCM_SUBSTREAMS
;
1075 err
= snd_card_dummy_pcm(dummy
, idx
, pcm_substreams
[dev
]);
1080 dummy
->pcm_hw
= dummy_pcm_hardware
;
1083 dummy
->pcm_hw
.formats
= m
->formats
;
1084 if (m
->buffer_bytes_max
)
1085 dummy
->pcm_hw
.buffer_bytes_max
= m
->buffer_bytes_max
;
1086 if (m
->period_bytes_min
)
1087 dummy
->pcm_hw
.period_bytes_min
= m
->period_bytes_min
;
1088 if (m
->period_bytes_max
)
1089 dummy
->pcm_hw
.period_bytes_max
= m
->period_bytes_max
;
1091 dummy
->pcm_hw
.periods_min
= m
->periods_min
;
1093 dummy
->pcm_hw
.periods_max
= m
->periods_max
;
1095 dummy
->pcm_hw
.rates
= m
->rates
;
1097 dummy
->pcm_hw
.rate_min
= m
->rate_min
;
1099 dummy
->pcm_hw
.rate_max
= m
->rate_max
;
1100 if (m
->channels_min
)
1101 dummy
->pcm_hw
.channels_min
= m
->channels_min
;
1102 if (m
->channels_max
)
1103 dummy
->pcm_hw
.channels_max
= m
->channels_max
;
1106 err
= snd_card_dummy_new_mixer(dummy
);
1109 strcpy(card
->driver
, "Dummy");
1110 strcpy(card
->shortname
, "Dummy");
1111 sprintf(card
->longname
, "Dummy %i", dev
+ 1);
1113 dummy_proc_init(dummy
);
1115 err
= snd_card_register(card
);
1117 platform_set_drvdata(devptr
, card
);
1121 snd_card_free(card
);
1125 static int snd_dummy_remove(struct platform_device
*devptr
)
1127 snd_card_free(platform_get_drvdata(devptr
));
1131 #ifdef CONFIG_PM_SLEEP
1132 static int snd_dummy_suspend(struct device
*pdev
)
1134 struct snd_card
*card
= dev_get_drvdata(pdev
);
1135 struct snd_dummy
*dummy
= card
->private_data
;
1137 snd_power_change_state(card
, SNDRV_CTL_POWER_D3hot
);
1138 snd_pcm_suspend_all(dummy
->pcm
);
1142 static int snd_dummy_resume(struct device
*pdev
)
1144 struct snd_card
*card
= dev_get_drvdata(pdev
);
1146 snd_power_change_state(card
, SNDRV_CTL_POWER_D0
);
1150 static SIMPLE_DEV_PM_OPS(snd_dummy_pm
, snd_dummy_suspend
, snd_dummy_resume
);
1151 #define SND_DUMMY_PM_OPS &snd_dummy_pm
1153 #define SND_DUMMY_PM_OPS NULL
1156 #define SND_DUMMY_DRIVER "snd_dummy"
1158 static struct platform_driver snd_dummy_driver
= {
1159 .probe
= snd_dummy_probe
,
1160 .remove
= snd_dummy_remove
,
1162 .name
= SND_DUMMY_DRIVER
,
1163 .pm
= SND_DUMMY_PM_OPS
,
1167 static void snd_dummy_unregister_all(void)
1171 for (i
= 0; i
< ARRAY_SIZE(devices
); ++i
)
1172 platform_device_unregister(devices
[i
]);
1173 platform_driver_unregister(&snd_dummy_driver
);
1177 static int __init
alsa_card_dummy_init(void)
1181 err
= platform_driver_register(&snd_dummy_driver
);
1185 err
= alloc_fake_buffer();
1187 platform_driver_unregister(&snd_dummy_driver
);
1192 for (i
= 0; i
< SNDRV_CARDS
; i
++) {
1193 struct platform_device
*device
;
1196 device
= platform_device_register_simple(SND_DUMMY_DRIVER
,
1200 if (!platform_get_drvdata(device
)) {
1201 platform_device_unregister(device
);
1204 devices
[i
] = device
;
1209 printk(KERN_ERR
"Dummy soundcard not found or device busy\n");
1211 snd_dummy_unregister_all();
1217 static void __exit
alsa_card_dummy_exit(void)
1219 snd_dummy_unregister_all();
1222 module_init(alsa_card_dummy_init
)
1223 module_exit(alsa_card_dummy_exit
)