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 struct dummy_model model_emu10k1
= {
161 .playback_constraints
= emu10k1_playback_constraints
,
162 .buffer_bytes_max
= 128 * 1024,
165 struct dummy_model model_rme9652
= {
167 .buffer_bytes_max
= 26 * 64 * 1024,
168 .formats
= SNDRV_PCM_FMTBIT_S32_LE
,
175 struct dummy_model model_ice1712
= {
177 .buffer_bytes_max
= 256 * 1024,
178 .formats
= SNDRV_PCM_FMTBIT_S32_LE
,
185 struct dummy_model model_uda1341
= {
187 .buffer_bytes_max
= 16380,
188 .formats
= SNDRV_PCM_FMTBIT_S16_LE
,
195 struct dummy_model model_ac97
= {
197 .formats
= SNDRV_PCM_FMTBIT_S16_LE
,
200 .rates
= SNDRV_PCM_RATE_48000
,
205 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 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 dpcm
->timer
.expires
= jiffies
+
249 (dpcm
->frac_period_rest
+ dpcm
->rate
- 1) / dpcm
->rate
;
250 add_timer(&dpcm
->timer
);
253 static void dummy_systimer_update(struct dummy_systimer_pcm
*dpcm
)
257 delta
= jiffies
- dpcm
->base_time
;
260 dpcm
->base_time
+= delta
;
262 dpcm
->frac_pos
+= delta
;
263 while (dpcm
->frac_pos
>= dpcm
->frac_buffer_size
)
264 dpcm
->frac_pos
-= dpcm
->frac_buffer_size
;
265 while (dpcm
->frac_period_rest
<= delta
) {
267 dpcm
->frac_period_rest
+= dpcm
->frac_period_size
;
269 dpcm
->frac_period_rest
-= delta
;
272 static int dummy_systimer_start(struct snd_pcm_substream
*substream
)
274 struct dummy_systimer_pcm
*dpcm
= substream
->runtime
->private_data
;
275 spin_lock(&dpcm
->lock
);
276 dpcm
->base_time
= jiffies
;
277 dummy_systimer_rearm(dpcm
);
278 spin_unlock(&dpcm
->lock
);
282 static int dummy_systimer_stop(struct snd_pcm_substream
*substream
)
284 struct dummy_systimer_pcm
*dpcm
= substream
->runtime
->private_data
;
285 spin_lock(&dpcm
->lock
);
286 del_timer(&dpcm
->timer
);
287 spin_unlock(&dpcm
->lock
);
291 static int dummy_systimer_prepare(struct snd_pcm_substream
*substream
)
293 struct snd_pcm_runtime
*runtime
= substream
->runtime
;
294 struct dummy_systimer_pcm
*dpcm
= runtime
->private_data
;
297 dpcm
->rate
= runtime
->rate
;
298 dpcm
->frac_buffer_size
= runtime
->buffer_size
* HZ
;
299 dpcm
->frac_period_size
= runtime
->period_size
* HZ
;
300 dpcm
->frac_period_rest
= dpcm
->frac_period_size
;
306 static void dummy_systimer_callback(unsigned long data
)
308 struct dummy_systimer_pcm
*dpcm
= (struct dummy_systimer_pcm
*)data
;
312 spin_lock_irqsave(&dpcm
->lock
, flags
);
313 dummy_systimer_update(dpcm
);
314 dummy_systimer_rearm(dpcm
);
315 elapsed
= dpcm
->elapsed
;
317 spin_unlock_irqrestore(&dpcm
->lock
, flags
);
319 snd_pcm_period_elapsed(dpcm
->substream
);
322 static snd_pcm_uframes_t
323 dummy_systimer_pointer(struct snd_pcm_substream
*substream
)
325 struct dummy_systimer_pcm
*dpcm
= substream
->runtime
->private_data
;
326 snd_pcm_uframes_t pos
;
328 spin_lock(&dpcm
->lock
);
329 dummy_systimer_update(dpcm
);
330 pos
= dpcm
->frac_pos
/ HZ
;
331 spin_unlock(&dpcm
->lock
);
335 static int dummy_systimer_create(struct snd_pcm_substream
*substream
)
337 struct dummy_systimer_pcm
*dpcm
;
339 dpcm
= kzalloc(sizeof(*dpcm
), GFP_KERNEL
);
342 substream
->runtime
->private_data
= dpcm
;
343 init_timer(&dpcm
->timer
);
344 dpcm
->timer
.data
= (unsigned long) dpcm
;
345 dpcm
->timer
.function
= dummy_systimer_callback
;
346 spin_lock_init(&dpcm
->lock
);
347 dpcm
->substream
= substream
;
351 static void dummy_systimer_free(struct snd_pcm_substream
*substream
)
353 kfree(substream
->runtime
->private_data
);
356 static struct dummy_timer_ops dummy_systimer_ops
= {
357 .create
= dummy_systimer_create
,
358 .free
= dummy_systimer_free
,
359 .prepare
= dummy_systimer_prepare
,
360 .start
= dummy_systimer_start
,
361 .stop
= dummy_systimer_stop
,
362 .pointer
= dummy_systimer_pointer
,
365 #ifdef CONFIG_HIGH_RES_TIMERS
370 struct dummy_hrtimer_pcm
{
374 struct hrtimer timer
;
375 struct tasklet_struct tasklet
;
376 struct snd_pcm_substream
*substream
;
379 static void dummy_hrtimer_pcm_elapsed(unsigned long priv
)
381 struct dummy_hrtimer_pcm
*dpcm
= (struct dummy_hrtimer_pcm
*)priv
;
382 if (atomic_read(&dpcm
->running
))
383 snd_pcm_period_elapsed(dpcm
->substream
);
386 static enum hrtimer_restart
dummy_hrtimer_callback(struct hrtimer
*timer
)
388 struct dummy_hrtimer_pcm
*dpcm
;
390 dpcm
= container_of(timer
, struct dummy_hrtimer_pcm
, timer
);
391 if (!atomic_read(&dpcm
->running
))
392 return HRTIMER_NORESTART
;
393 tasklet_schedule(&dpcm
->tasklet
);
394 hrtimer_forward_now(timer
, dpcm
->period_time
);
395 return HRTIMER_RESTART
;
398 static int dummy_hrtimer_start(struct snd_pcm_substream
*substream
)
400 struct dummy_hrtimer_pcm
*dpcm
= substream
->runtime
->private_data
;
402 dpcm
->base_time
= hrtimer_cb_get_time(&dpcm
->timer
);
403 hrtimer_start(&dpcm
->timer
, dpcm
->period_time
, HRTIMER_MODE_REL
);
404 atomic_set(&dpcm
->running
, 1);
408 static int dummy_hrtimer_stop(struct snd_pcm_substream
*substream
)
410 struct dummy_hrtimer_pcm
*dpcm
= substream
->runtime
->private_data
;
412 atomic_set(&dpcm
->running
, 0);
413 hrtimer_cancel(&dpcm
->timer
);
417 static inline void dummy_hrtimer_sync(struct dummy_hrtimer_pcm
*dpcm
)
419 tasklet_kill(&dpcm
->tasklet
);
422 static snd_pcm_uframes_t
423 dummy_hrtimer_pointer(struct snd_pcm_substream
*substream
)
425 struct snd_pcm_runtime
*runtime
= substream
->runtime
;
426 struct dummy_hrtimer_pcm
*dpcm
= runtime
->private_data
;
430 delta
= ktime_us_delta(hrtimer_cb_get_time(&dpcm
->timer
),
432 delta
= div_u64(delta
* runtime
->rate
+ 999999, 1000000);
433 div_u64_rem(delta
, runtime
->buffer_size
, &pos
);
437 static int dummy_hrtimer_prepare(struct snd_pcm_substream
*substream
)
439 struct snd_pcm_runtime
*runtime
= substream
->runtime
;
440 struct dummy_hrtimer_pcm
*dpcm
= runtime
->private_data
;
441 unsigned int period
, rate
;
445 dummy_hrtimer_sync(dpcm
);
446 period
= runtime
->period_size
;
447 rate
= runtime
->rate
;
450 nsecs
= div_u64((u64
)period
* 1000000000UL + rate
- 1, rate
);
451 dpcm
->period_time
= ktime_set(sec
, nsecs
);
456 static int dummy_hrtimer_create(struct snd_pcm_substream
*substream
)
458 struct dummy_hrtimer_pcm
*dpcm
;
460 dpcm
= kzalloc(sizeof(*dpcm
), GFP_KERNEL
);
463 substream
->runtime
->private_data
= dpcm
;
464 hrtimer_init(&dpcm
->timer
, CLOCK_MONOTONIC
, HRTIMER_MODE_REL
);
465 dpcm
->timer
.function
= dummy_hrtimer_callback
;
466 dpcm
->substream
= substream
;
467 atomic_set(&dpcm
->running
, 0);
468 tasklet_init(&dpcm
->tasklet
, dummy_hrtimer_pcm_elapsed
,
469 (unsigned long)dpcm
);
473 static void dummy_hrtimer_free(struct snd_pcm_substream
*substream
)
475 struct dummy_hrtimer_pcm
*dpcm
= substream
->runtime
->private_data
;
476 dummy_hrtimer_sync(dpcm
);
480 static struct dummy_timer_ops dummy_hrtimer_ops
= {
481 .create
= dummy_hrtimer_create
,
482 .free
= dummy_hrtimer_free
,
483 .prepare
= dummy_hrtimer_prepare
,
484 .start
= dummy_hrtimer_start
,
485 .stop
= dummy_hrtimer_stop
,
486 .pointer
= dummy_hrtimer_pointer
,
489 #endif /* CONFIG_HIGH_RES_TIMERS */
495 static int dummy_pcm_trigger(struct snd_pcm_substream
*substream
, int cmd
)
497 struct snd_dummy
*dummy
= snd_pcm_substream_chip(substream
);
500 case SNDRV_PCM_TRIGGER_START
:
501 case SNDRV_PCM_TRIGGER_RESUME
:
502 return dummy
->timer_ops
->start(substream
);
503 case SNDRV_PCM_TRIGGER_STOP
:
504 case SNDRV_PCM_TRIGGER_SUSPEND
:
505 return dummy
->timer_ops
->stop(substream
);
510 static int dummy_pcm_prepare(struct snd_pcm_substream
*substream
)
512 struct snd_dummy
*dummy
= snd_pcm_substream_chip(substream
);
514 return dummy
->timer_ops
->prepare(substream
);
517 static snd_pcm_uframes_t
dummy_pcm_pointer(struct snd_pcm_substream
*substream
)
519 struct snd_dummy
*dummy
= snd_pcm_substream_chip(substream
);
521 return dummy
->timer_ops
->pointer(substream
);
524 static struct snd_pcm_hardware dummy_pcm_hardware
= {
525 .info
= (SNDRV_PCM_INFO_MMAP
|
526 SNDRV_PCM_INFO_INTERLEAVED
|
527 SNDRV_PCM_INFO_RESUME
|
528 SNDRV_PCM_INFO_MMAP_VALID
),
529 .formats
= USE_FORMATS
,
531 .rate_min
= USE_RATE_MIN
,
532 .rate_max
= USE_RATE_MAX
,
533 .channels_min
= USE_CHANNELS_MIN
,
534 .channels_max
= USE_CHANNELS_MAX
,
535 .buffer_bytes_max
= MAX_BUFFER_SIZE
,
536 .period_bytes_min
= MIN_PERIOD_SIZE
,
537 .period_bytes_max
= MAX_PERIOD_SIZE
,
538 .periods_min
= USE_PERIODS_MIN
,
539 .periods_max
= USE_PERIODS_MAX
,
543 static int dummy_pcm_hw_params(struct snd_pcm_substream
*substream
,
544 struct snd_pcm_hw_params
*hw_params
)
547 /* runtime->dma_bytes has to be set manually to allow mmap */
548 substream
->runtime
->dma_bytes
= params_buffer_bytes(hw_params
);
551 return snd_pcm_lib_malloc_pages(substream
,
552 params_buffer_bytes(hw_params
));
555 static int dummy_pcm_hw_free(struct snd_pcm_substream
*substream
)
559 return snd_pcm_lib_free_pages(substream
);
562 static int dummy_pcm_open(struct snd_pcm_substream
*substream
)
564 struct snd_dummy
*dummy
= snd_pcm_substream_chip(substream
);
565 struct dummy_model
*model
= dummy
->model
;
566 struct snd_pcm_runtime
*runtime
= substream
->runtime
;
569 dummy
->timer_ops
= &dummy_systimer_ops
;
570 #ifdef CONFIG_HIGH_RES_TIMERS
572 dummy
->timer_ops
= &dummy_hrtimer_ops
;
575 err
= dummy
->timer_ops
->create(substream
);
579 runtime
->hw
= dummy
->pcm_hw
;
580 if (substream
->pcm
->device
& 1) {
581 runtime
->hw
.info
&= ~SNDRV_PCM_INFO_INTERLEAVED
;
582 runtime
->hw
.info
|= SNDRV_PCM_INFO_NONINTERLEAVED
;
584 if (substream
->pcm
->device
& 2)
585 runtime
->hw
.info
&= ~(SNDRV_PCM_INFO_MMAP
|
586 SNDRV_PCM_INFO_MMAP_VALID
);
591 if (substream
->stream
== SNDRV_PCM_STREAM_PLAYBACK
) {
592 if (model
->playback_constraints
)
593 err
= model
->playback_constraints(substream
->runtime
);
595 if (model
->capture_constraints
)
596 err
= model
->capture_constraints(substream
->runtime
);
599 dummy
->timer_ops
->free(substream
);
605 static int dummy_pcm_close(struct snd_pcm_substream
*substream
)
607 struct snd_dummy
*dummy
= snd_pcm_substream_chip(substream
);
608 dummy
->timer_ops
->free(substream
);
613 * dummy buffer handling
616 static void *dummy_page
[2];
618 static void free_fake_buffer(void)
622 for (i
= 0; i
< 2; i
++)
624 free_page((unsigned long)dummy_page
[i
]);
625 dummy_page
[i
] = NULL
;
630 static int alloc_fake_buffer(void)
636 for (i
= 0; i
< 2; i
++) {
637 dummy_page
[i
] = (void *)get_zeroed_page(GFP_KERNEL
);
638 if (!dummy_page
[i
]) {
646 static int dummy_pcm_copy(struct snd_pcm_substream
*substream
,
647 int channel
, snd_pcm_uframes_t pos
,
648 void __user
*dst
, snd_pcm_uframes_t count
)
650 return 0; /* do nothing */
653 static int dummy_pcm_silence(struct snd_pcm_substream
*substream
,
654 int channel
, snd_pcm_uframes_t pos
,
655 snd_pcm_uframes_t count
)
657 return 0; /* do nothing */
660 static struct page
*dummy_pcm_page(struct snd_pcm_substream
*substream
,
661 unsigned long offset
)
663 return virt_to_page(dummy_page
[substream
->stream
]); /* the same page */
666 static struct snd_pcm_ops dummy_pcm_ops
= {
667 .open
= dummy_pcm_open
,
668 .close
= dummy_pcm_close
,
669 .ioctl
= snd_pcm_lib_ioctl
,
670 .hw_params
= dummy_pcm_hw_params
,
671 .hw_free
= dummy_pcm_hw_free
,
672 .prepare
= dummy_pcm_prepare
,
673 .trigger
= dummy_pcm_trigger
,
674 .pointer
= dummy_pcm_pointer
,
677 static struct snd_pcm_ops dummy_pcm_ops_no_buf
= {
678 .open
= dummy_pcm_open
,
679 .close
= dummy_pcm_close
,
680 .ioctl
= snd_pcm_lib_ioctl
,
681 .hw_params
= dummy_pcm_hw_params
,
682 .hw_free
= dummy_pcm_hw_free
,
683 .prepare
= dummy_pcm_prepare
,
684 .trigger
= dummy_pcm_trigger
,
685 .pointer
= dummy_pcm_pointer
,
686 .copy
= dummy_pcm_copy
,
687 .silence
= dummy_pcm_silence
,
688 .page
= dummy_pcm_page
,
691 static int snd_card_dummy_pcm(struct snd_dummy
*dummy
, int device
,
695 struct snd_pcm_ops
*ops
;
698 err
= snd_pcm_new(dummy
->card
, "Dummy PCM", device
,
699 substreams
, substreams
, &pcm
);
704 ops
= &dummy_pcm_ops_no_buf
;
706 ops
= &dummy_pcm_ops
;
707 snd_pcm_set_ops(pcm
, SNDRV_PCM_STREAM_PLAYBACK
, ops
);
708 snd_pcm_set_ops(pcm
, SNDRV_PCM_STREAM_CAPTURE
, ops
);
709 pcm
->private_data
= dummy
;
711 strcpy(pcm
->name
, "Dummy PCM");
713 snd_pcm_lib_preallocate_pages_for_all(pcm
,
714 SNDRV_DMA_TYPE_CONTINUOUS
,
715 snd_dma_continuous_data(GFP_KERNEL
),
725 #define DUMMY_VOLUME(xname, xindex, addr) \
726 { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \
727 .access = SNDRV_CTL_ELEM_ACCESS_READWRITE | SNDRV_CTL_ELEM_ACCESS_TLV_READ, \
728 .name = xname, .index = xindex, \
729 .info = snd_dummy_volume_info, \
730 .get = snd_dummy_volume_get, .put = snd_dummy_volume_put, \
731 .private_value = addr, \
732 .tlv = { .p = db_scale_dummy } }
734 static int snd_dummy_volume_info(struct snd_kcontrol
*kcontrol
,
735 struct snd_ctl_elem_info
*uinfo
)
737 uinfo
->type
= SNDRV_CTL_ELEM_TYPE_INTEGER
;
739 uinfo
->value
.integer
.min
= -50;
740 uinfo
->value
.integer
.max
= 100;
744 static int snd_dummy_volume_get(struct snd_kcontrol
*kcontrol
,
745 struct snd_ctl_elem_value
*ucontrol
)
747 struct snd_dummy
*dummy
= snd_kcontrol_chip(kcontrol
);
748 int addr
= kcontrol
->private_value
;
750 spin_lock_irq(&dummy
->mixer_lock
);
751 ucontrol
->value
.integer
.value
[0] = dummy
->mixer_volume
[addr
][0];
752 ucontrol
->value
.integer
.value
[1] = dummy
->mixer_volume
[addr
][1];
753 spin_unlock_irq(&dummy
->mixer_lock
);
757 static int snd_dummy_volume_put(struct snd_kcontrol
*kcontrol
,
758 struct snd_ctl_elem_value
*ucontrol
)
760 struct snd_dummy
*dummy
= snd_kcontrol_chip(kcontrol
);
761 int change
, addr
= kcontrol
->private_value
;
764 left
= ucontrol
->value
.integer
.value
[0];
769 right
= ucontrol
->value
.integer
.value
[1];
774 spin_lock_irq(&dummy
->mixer_lock
);
775 change
= dummy
->mixer_volume
[addr
][0] != left
||
776 dummy
->mixer_volume
[addr
][1] != right
;
777 dummy
->mixer_volume
[addr
][0] = left
;
778 dummy
->mixer_volume
[addr
][1] = right
;
779 spin_unlock_irq(&dummy
->mixer_lock
);
783 static const DECLARE_TLV_DB_SCALE(db_scale_dummy
, -4500, 30, 0);
785 #define DUMMY_CAPSRC(xname, xindex, addr) \
786 { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = xname, .index = xindex, \
787 .info = snd_dummy_capsrc_info, \
788 .get = snd_dummy_capsrc_get, .put = snd_dummy_capsrc_put, \
789 .private_value = addr }
791 #define snd_dummy_capsrc_info snd_ctl_boolean_stereo_info
793 static int snd_dummy_capsrc_get(struct snd_kcontrol
*kcontrol
,
794 struct snd_ctl_elem_value
*ucontrol
)
796 struct snd_dummy
*dummy
= snd_kcontrol_chip(kcontrol
);
797 int addr
= kcontrol
->private_value
;
799 spin_lock_irq(&dummy
->mixer_lock
);
800 ucontrol
->value
.integer
.value
[0] = dummy
->capture_source
[addr
][0];
801 ucontrol
->value
.integer
.value
[1] = dummy
->capture_source
[addr
][1];
802 spin_unlock_irq(&dummy
->mixer_lock
);
806 static int snd_dummy_capsrc_put(struct snd_kcontrol
*kcontrol
, struct snd_ctl_elem_value
*ucontrol
)
808 struct snd_dummy
*dummy
= snd_kcontrol_chip(kcontrol
);
809 int change
, addr
= kcontrol
->private_value
;
812 left
= ucontrol
->value
.integer
.value
[0] & 1;
813 right
= ucontrol
->value
.integer
.value
[1] & 1;
814 spin_lock_irq(&dummy
->mixer_lock
);
815 change
= dummy
->capture_source
[addr
][0] != left
&&
816 dummy
->capture_source
[addr
][1] != right
;
817 dummy
->capture_source
[addr
][0] = left
;
818 dummy
->capture_source
[addr
][1] = right
;
819 spin_unlock_irq(&dummy
->mixer_lock
);
823 static int snd_dummy_iobox_info(struct snd_kcontrol
*kcontrol
,
824 struct snd_ctl_elem_info
*info
)
826 const char *const names
[] = { "None", "CD Player" };
828 return snd_ctl_enum_info(info
, 1, 2, names
);
831 static int snd_dummy_iobox_get(struct snd_kcontrol
*kcontrol
,
832 struct snd_ctl_elem_value
*value
)
834 struct snd_dummy
*dummy
= snd_kcontrol_chip(kcontrol
);
836 value
->value
.enumerated
.item
[0] = dummy
->iobox
;
840 static int snd_dummy_iobox_put(struct snd_kcontrol
*kcontrol
,
841 struct snd_ctl_elem_value
*value
)
843 struct snd_dummy
*dummy
= snd_kcontrol_chip(kcontrol
);
846 if (value
->value
.enumerated
.item
[0] > 1)
849 changed
= value
->value
.enumerated
.item
[0] != dummy
->iobox
;
851 dummy
->iobox
= value
->value
.enumerated
.item
[0];
854 dummy
->cd_volume_ctl
->vd
[0].access
&=
855 ~SNDRV_CTL_ELEM_ACCESS_INACTIVE
;
856 dummy
->cd_switch_ctl
->vd
[0].access
&=
857 ~SNDRV_CTL_ELEM_ACCESS_INACTIVE
;
859 dummy
->cd_volume_ctl
->vd
[0].access
|=
860 SNDRV_CTL_ELEM_ACCESS_INACTIVE
;
861 dummy
->cd_switch_ctl
->vd
[0].access
|=
862 SNDRV_CTL_ELEM_ACCESS_INACTIVE
;
865 snd_ctl_notify(dummy
->card
, SNDRV_CTL_EVENT_MASK_INFO
,
866 &dummy
->cd_volume_ctl
->id
);
867 snd_ctl_notify(dummy
->card
, SNDRV_CTL_EVENT_MASK_INFO
,
868 &dummy
->cd_switch_ctl
->id
);
874 static struct snd_kcontrol_new snd_dummy_controls
[] = {
875 DUMMY_VOLUME("Master Volume", 0, MIXER_ADDR_MASTER
),
876 DUMMY_CAPSRC("Master Capture Switch", 0, MIXER_ADDR_MASTER
),
877 DUMMY_VOLUME("Synth Volume", 0, MIXER_ADDR_SYNTH
),
878 DUMMY_CAPSRC("Synth Capture Switch", 0, MIXER_ADDR_SYNTH
),
879 DUMMY_VOLUME("Line Volume", 0, MIXER_ADDR_LINE
),
880 DUMMY_CAPSRC("Line Capture Switch", 0, MIXER_ADDR_LINE
),
881 DUMMY_VOLUME("Mic Volume", 0, MIXER_ADDR_MIC
),
882 DUMMY_CAPSRC("Mic Capture Switch", 0, MIXER_ADDR_MIC
),
883 DUMMY_VOLUME("CD Volume", 0, MIXER_ADDR_CD
),
884 DUMMY_CAPSRC("CD Capture Switch", 0, MIXER_ADDR_CD
),
886 .iface
= SNDRV_CTL_ELEM_IFACE_MIXER
,
887 .name
= "External I/O Box",
888 .info
= snd_dummy_iobox_info
,
889 .get
= snd_dummy_iobox_get
,
890 .put
= snd_dummy_iobox_put
,
894 static int snd_card_dummy_new_mixer(struct snd_dummy
*dummy
)
896 struct snd_card
*card
= dummy
->card
;
897 struct snd_kcontrol
*kcontrol
;
901 spin_lock_init(&dummy
->mixer_lock
);
902 strcpy(card
->mixername
, "Dummy Mixer");
905 for (idx
= 0; idx
< ARRAY_SIZE(snd_dummy_controls
); idx
++) {
906 kcontrol
= snd_ctl_new1(&snd_dummy_controls
[idx
], dummy
);
907 err
= snd_ctl_add(card
, kcontrol
);
910 if (!strcmp(kcontrol
->id
.name
, "CD Volume"))
911 dummy
->cd_volume_ctl
= kcontrol
;
912 else if (!strcmp(kcontrol
->id
.name
, "CD Capture Switch"))
913 dummy
->cd_switch_ctl
= kcontrol
;
919 #if defined(CONFIG_SND_DEBUG) && defined(CONFIG_PROC_FS)
923 static void print_formats(struct snd_dummy
*dummy
,
924 struct snd_info_buffer
*buffer
)
928 for (i
= 0; i
< SNDRV_PCM_FORMAT_LAST
; i
++) {
929 if (dummy
->pcm_hw
.formats
& (1ULL << i
))
930 snd_iprintf(buffer
, " %s", snd_pcm_format_name(i
));
934 static void print_rates(struct snd_dummy
*dummy
,
935 struct snd_info_buffer
*buffer
)
937 static int rates
[] = {
938 5512, 8000, 11025, 16000, 22050, 32000, 44100, 48000,
939 64000, 88200, 96000, 176400, 192000,
943 if (dummy
->pcm_hw
.rates
& SNDRV_PCM_RATE_CONTINUOUS
)
944 snd_iprintf(buffer
, " continuous");
945 if (dummy
->pcm_hw
.rates
& SNDRV_PCM_RATE_KNOT
)
946 snd_iprintf(buffer
, " knot");
947 for (i
= 0; i
< ARRAY_SIZE(rates
); i
++)
948 if (dummy
->pcm_hw
.rates
& (1 << i
))
949 snd_iprintf(buffer
, " %d", rates
[i
]);
952 #define get_dummy_int_ptr(dummy, ofs) \
953 (unsigned int *)((char *)&((dummy)->pcm_hw) + (ofs))
954 #define get_dummy_ll_ptr(dummy, ofs) \
955 (unsigned long long *)((char *)&((dummy)->pcm_hw) + (ofs))
957 struct dummy_hw_field
{
963 #define FIELD_ENTRY(item, fmt) { \
966 .offset = offsetof(struct snd_pcm_hardware, item), \
967 .size = sizeof(dummy_pcm_hardware.item) }
969 static struct dummy_hw_field fields
[] = {
970 FIELD_ENTRY(formats
, "%#llx"),
971 FIELD_ENTRY(rates
, "%#x"),
972 FIELD_ENTRY(rate_min
, "%d"),
973 FIELD_ENTRY(rate_max
, "%d"),
974 FIELD_ENTRY(channels_min
, "%d"),
975 FIELD_ENTRY(channels_max
, "%d"),
976 FIELD_ENTRY(buffer_bytes_max
, "%ld"),
977 FIELD_ENTRY(period_bytes_min
, "%ld"),
978 FIELD_ENTRY(period_bytes_max
, "%ld"),
979 FIELD_ENTRY(periods_min
, "%d"),
980 FIELD_ENTRY(periods_max
, "%d"),
983 static void dummy_proc_read(struct snd_info_entry
*entry
,
984 struct snd_info_buffer
*buffer
)
986 struct snd_dummy
*dummy
= entry
->private_data
;
989 for (i
= 0; i
< ARRAY_SIZE(fields
); i
++) {
990 snd_iprintf(buffer
, "%s ", fields
[i
].name
);
991 if (fields
[i
].size
== sizeof(int))
992 snd_iprintf(buffer
, fields
[i
].format
,
993 *get_dummy_int_ptr(dummy
, fields
[i
].offset
));
995 snd_iprintf(buffer
, fields
[i
].format
,
996 *get_dummy_ll_ptr(dummy
, fields
[i
].offset
));
997 if (!strcmp(fields
[i
].name
, "formats"))
998 print_formats(dummy
, buffer
);
999 else if (!strcmp(fields
[i
].name
, "rates"))
1000 print_rates(dummy
, buffer
);
1001 snd_iprintf(buffer
, "\n");
1005 static void dummy_proc_write(struct snd_info_entry
*entry
,
1006 struct snd_info_buffer
*buffer
)
1008 struct snd_dummy
*dummy
= entry
->private_data
;
1011 while (!snd_info_get_line(buffer
, line
, sizeof(line
))) {
1014 unsigned long long val
;
1017 ptr
= snd_info_get_str(item
, line
, sizeof(item
));
1018 for (i
= 0; i
< ARRAY_SIZE(fields
); i
++) {
1019 if (!strcmp(item
, fields
[i
].name
))
1022 if (i
>= ARRAY_SIZE(fields
))
1024 snd_info_get_str(item
, ptr
, sizeof(item
));
1025 if (kstrtoull(item
, 0, &val
))
1027 if (fields
[i
].size
== sizeof(int))
1028 *get_dummy_int_ptr(dummy
, fields
[i
].offset
) = val
;
1030 *get_dummy_ll_ptr(dummy
, fields
[i
].offset
) = val
;
1034 static void dummy_proc_init(struct snd_dummy
*chip
)
1036 struct snd_info_entry
*entry
;
1038 if (!snd_card_proc_new(chip
->card
, "dummy_pcm", &entry
)) {
1039 snd_info_set_text_ops(entry
, chip
, dummy_proc_read
);
1040 entry
->c
.text
.write
= dummy_proc_write
;
1041 entry
->mode
|= S_IWUSR
;
1042 entry
->private_data
= chip
;
1046 #define dummy_proc_init(x)
1047 #endif /* CONFIG_SND_DEBUG && CONFIG_PROC_FS */
1049 static int snd_dummy_probe(struct platform_device
*devptr
)
1051 struct snd_card
*card
;
1052 struct snd_dummy
*dummy
;
1053 struct dummy_model
*m
= NULL
, **mdl
;
1055 int dev
= devptr
->id
;
1057 err
= snd_card_new(&devptr
->dev
, index
[dev
], id
[dev
], THIS_MODULE
,
1058 sizeof(struct snd_dummy
), &card
);
1061 dummy
= card
->private_data
;
1063 for (mdl
= dummy_models
; *mdl
&& model
[dev
]; mdl
++) {
1064 if (strcmp(model
[dev
], (*mdl
)->name
) == 0) {
1066 "snd-dummy: Using model '%s' for card %i\n",
1067 (*mdl
)->name
, card
->number
);
1068 m
= dummy
->model
= *mdl
;
1072 for (idx
= 0; idx
< MAX_PCM_DEVICES
&& idx
< pcm_devs
[dev
]; idx
++) {
1073 if (pcm_substreams
[dev
] < 1)
1074 pcm_substreams
[dev
] = 1;
1075 if (pcm_substreams
[dev
] > MAX_PCM_SUBSTREAMS
)
1076 pcm_substreams
[dev
] = MAX_PCM_SUBSTREAMS
;
1077 err
= snd_card_dummy_pcm(dummy
, idx
, pcm_substreams
[dev
]);
1082 dummy
->pcm_hw
= dummy_pcm_hardware
;
1085 dummy
->pcm_hw
.formats
= m
->formats
;
1086 if (m
->buffer_bytes_max
)
1087 dummy
->pcm_hw
.buffer_bytes_max
= m
->buffer_bytes_max
;
1088 if (m
->period_bytes_min
)
1089 dummy
->pcm_hw
.period_bytes_min
= m
->period_bytes_min
;
1090 if (m
->period_bytes_max
)
1091 dummy
->pcm_hw
.period_bytes_max
= m
->period_bytes_max
;
1093 dummy
->pcm_hw
.periods_min
= m
->periods_min
;
1095 dummy
->pcm_hw
.periods_max
= m
->periods_max
;
1097 dummy
->pcm_hw
.rates
= m
->rates
;
1099 dummy
->pcm_hw
.rate_min
= m
->rate_min
;
1101 dummy
->pcm_hw
.rate_max
= m
->rate_max
;
1102 if (m
->channels_min
)
1103 dummy
->pcm_hw
.channels_min
= m
->channels_min
;
1104 if (m
->channels_max
)
1105 dummy
->pcm_hw
.channels_max
= m
->channels_max
;
1108 err
= snd_card_dummy_new_mixer(dummy
);
1111 strcpy(card
->driver
, "Dummy");
1112 strcpy(card
->shortname
, "Dummy");
1113 sprintf(card
->longname
, "Dummy %i", dev
+ 1);
1115 dummy_proc_init(dummy
);
1117 err
= snd_card_register(card
);
1119 platform_set_drvdata(devptr
, card
);
1123 snd_card_free(card
);
1127 static int snd_dummy_remove(struct platform_device
*devptr
)
1129 snd_card_free(platform_get_drvdata(devptr
));
1133 #ifdef CONFIG_PM_SLEEP
1134 static int snd_dummy_suspend(struct device
*pdev
)
1136 struct snd_card
*card
= dev_get_drvdata(pdev
);
1137 struct snd_dummy
*dummy
= card
->private_data
;
1139 snd_power_change_state(card
, SNDRV_CTL_POWER_D3hot
);
1140 snd_pcm_suspend_all(dummy
->pcm
);
1144 static int snd_dummy_resume(struct device
*pdev
)
1146 struct snd_card
*card
= dev_get_drvdata(pdev
);
1148 snd_power_change_state(card
, SNDRV_CTL_POWER_D0
);
1152 static SIMPLE_DEV_PM_OPS(snd_dummy_pm
, snd_dummy_suspend
, snd_dummy_resume
);
1153 #define SND_DUMMY_PM_OPS &snd_dummy_pm
1155 #define SND_DUMMY_PM_OPS NULL
1158 #define SND_DUMMY_DRIVER "snd_dummy"
1160 static struct platform_driver snd_dummy_driver
= {
1161 .probe
= snd_dummy_probe
,
1162 .remove
= snd_dummy_remove
,
1164 .name
= SND_DUMMY_DRIVER
,
1165 .owner
= THIS_MODULE
,
1166 .pm
= SND_DUMMY_PM_OPS
,
1170 static void snd_dummy_unregister_all(void)
1174 for (i
= 0; i
< ARRAY_SIZE(devices
); ++i
)
1175 platform_device_unregister(devices
[i
]);
1176 platform_driver_unregister(&snd_dummy_driver
);
1180 static int __init
alsa_card_dummy_init(void)
1184 err
= platform_driver_register(&snd_dummy_driver
);
1188 err
= alloc_fake_buffer();
1190 platform_driver_unregister(&snd_dummy_driver
);
1195 for (i
= 0; i
< SNDRV_CARDS
; i
++) {
1196 struct platform_device
*device
;
1199 device
= platform_device_register_simple(SND_DUMMY_DRIVER
,
1203 if (!platform_get_drvdata(device
)) {
1204 platform_device_unregister(device
);
1207 devices
[i
] = device
;
1212 printk(KERN_ERR
"Dummy soundcard not found or device busy\n");
1214 snd_dummy_unregister_all();
1220 static void __exit
alsa_card_dummy_exit(void)
1222 snd_dummy_unregister_all();
1225 module_init(alsa_card_dummy_init
)
1226 module_exit(alsa_card_dummy_exit
)