blob: 96d207051628390884914933477f95d707128a68 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * Dummy soundcard
3 * Copyright (c) by Jaroslav Kysela <perex@suse.cz>
4 *
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.
9 *
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.
14 *
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
18 *
19 */
20
21#include <sound/driver.h>
22#include <linux/init.h>
Takashi Iwai6e65c1c2005-11-17 16:01:56 +010023#include <linux/err.h>
24#include <linux/platform_device.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070025#include <linux/jiffies.h>
26#include <linux/slab.h>
27#include <linux/time.h>
28#include <linux/wait.h>
29#include <linux/moduleparam.h>
30#include <sound/core.h>
31#include <sound/control.h>
32#include <sound/pcm.h>
33#include <sound/rawmidi.h>
34#include <sound/initval.h>
35
36MODULE_AUTHOR("Jaroslav Kysela <perex@suse.cz>");
37MODULE_DESCRIPTION("Dummy soundcard (/dev/null)");
38MODULE_LICENSE("GPL");
39MODULE_SUPPORTED_DEVICE("{{ALSA,Dummy soundcard}}");
40
41#define MAX_PCM_DEVICES 4
42#define MAX_PCM_SUBSTREAMS 16
43#define MAX_MIDI_DEVICES 2
44
45#if 0 /* emu10k1 emulation */
46#define MAX_BUFFER_SIZE (128 * 1024)
Takashi Iwai4a4d2cf2005-11-17 14:27:28 +010047static int emu10k1_playback_constraints(struct snd_pcm_runtime *runtime)
Linus Torvalds1da177e2005-04-16 15:20:36 -070048{
49 int err;
50 if ((err = snd_pcm_hw_constraint_integer(runtime, SNDRV_PCM_HW_PARAM_PERIODS)) < 0)
51 return err;
52 if ((err = snd_pcm_hw_constraint_minmax(runtime, SNDRV_PCM_HW_PARAM_BUFFER_BYTES, 256, UINT_MAX)) < 0)
53 return err;
54 return 0;
55}
56#define add_playback_constraints emu10k1_playback_constraints
57#endif
58
59#if 0 /* RME9652 emulation */
60#define MAX_BUFFER_SIZE (26 * 64 * 1024)
61#define USE_FORMATS SNDRV_PCM_FMTBIT_S32_LE
62#define USE_CHANNELS_MIN 26
63#define USE_CHANNELS_MAX 26
64#define USE_PERIODS_MIN 2
65#define USE_PERIODS_MAX 2
66#endif
67
68#if 0 /* ICE1712 emulation */
69#define MAX_BUFFER_SIZE (256 * 1024)
70#define USE_FORMATS SNDRV_PCM_FMTBIT_S32_LE
71#define USE_CHANNELS_MIN 10
72#define USE_CHANNELS_MAX 10
73#define USE_PERIODS_MIN 1
74#define USE_PERIODS_MAX 1024
75#endif
76
77#if 0 /* UDA1341 emulation */
78#define MAX_BUFFER_SIZE (16380)
79#define USE_FORMATS SNDRV_PCM_FMTBIT_S16_LE
80#define USE_CHANNELS_MIN 2
81#define USE_CHANNELS_MAX 2
82#define USE_PERIODS_MIN 2
83#define USE_PERIODS_MAX 255
84#endif
85
86#if 0 /* simple AC97 bridge (intel8x0) with 48kHz AC97 only codec */
87#define USE_FORMATS SNDRV_PCM_FMTBIT_S16_LE
88#define USE_CHANNELS_MIN 2
89#define USE_CHANNELS_MAX 2
90#define USE_RATE SNDRV_PCM_RATE_48000
91#define USE_RATE_MIN 48000
92#define USE_RATE_MAX 48000
93#endif
94
95
96/* defaults */
97#ifndef MAX_BUFFER_SIZE
98#define MAX_BUFFER_SIZE (64*1024)
99#endif
100#ifndef USE_FORMATS
101#define USE_FORMATS (SNDRV_PCM_FMTBIT_U8 | SNDRV_PCM_FMTBIT_S16_LE)
102#endif
103#ifndef USE_RATE
104#define USE_RATE SNDRV_PCM_RATE_CONTINUOUS | SNDRV_PCM_RATE_8000_48000
105#define USE_RATE_MIN 5500
106#define USE_RATE_MAX 48000
107#endif
108#ifndef USE_CHANNELS_MIN
109#define USE_CHANNELS_MIN 1
110#endif
111#ifndef USE_CHANNELS_MAX
112#define USE_CHANNELS_MAX 2
113#endif
114#ifndef USE_PERIODS_MIN
115#define USE_PERIODS_MIN 1
116#endif
117#ifndef USE_PERIODS_MAX
118#define USE_PERIODS_MAX 1024
119#endif
120#ifndef add_playback_constraints
121#define add_playback_constraints(x) 0
122#endif
123#ifndef add_capture_constraints
124#define add_capture_constraints(x) 0
125#endif
126
127static int index[SNDRV_CARDS] = SNDRV_DEFAULT_IDX; /* Index 0-MAX */
128static char *id[SNDRV_CARDS] = SNDRV_DEFAULT_STR; /* ID for this card */
129static int enable[SNDRV_CARDS] = {1, [1 ... (SNDRV_CARDS - 1)] = 0};
130static int pcm_devs[SNDRV_CARDS] = {[0 ... (SNDRV_CARDS - 1)] = 1};
131static int pcm_substreams[SNDRV_CARDS] = {[0 ... (SNDRV_CARDS - 1)] = 8};
132//static int midi_devs[SNDRV_CARDS] = {[0 ... (SNDRV_CARDS - 1)] = 2};
133
134module_param_array(index, int, NULL, 0444);
135MODULE_PARM_DESC(index, "Index value for dummy soundcard.");
136module_param_array(id, charp, NULL, 0444);
137MODULE_PARM_DESC(id, "ID string for dummy soundcard.");
138module_param_array(enable, bool, NULL, 0444);
139MODULE_PARM_DESC(enable, "Enable this dummy soundcard.");
140module_param_array(pcm_devs, int, NULL, 0444);
141MODULE_PARM_DESC(pcm_devs, "PCM devices # (0-4) for dummy driver.");
142module_param_array(pcm_substreams, int, NULL, 0444);
143MODULE_PARM_DESC(pcm_substreams, "PCM substreams # (1-16) for dummy driver.");
144//module_param_array(midi_devs, int, NULL, 0444);
145//MODULE_PARM_DESC(midi_devs, "MIDI devices # (0-2) for dummy driver.");
146
Clemens Ladischf7a92752005-12-07 09:13:42 +0100147static struct platform_device *devices[SNDRV_CARDS];
148
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149#define MIXER_ADDR_MASTER 0
150#define MIXER_ADDR_LINE 1
151#define MIXER_ADDR_MIC 2
152#define MIXER_ADDR_SYNTH 3
153#define MIXER_ADDR_CD 4
154#define MIXER_ADDR_LAST 4
155
Takashi Iwai4a4d2cf2005-11-17 14:27:28 +0100156struct snd_dummy {
157 struct snd_card *card;
Takashi Iwai6e65c1c2005-11-17 16:01:56 +0100158 struct snd_pcm *pcm;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159 spinlock_t mixer_lock;
160 int mixer_volume[MIXER_ADDR_LAST+1][2];
161 int capture_source[MIXER_ADDR_LAST+1][2];
Takashi Iwai4a4d2cf2005-11-17 14:27:28 +0100162};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163
Takashi Iwai4a4d2cf2005-11-17 14:27:28 +0100164struct snd_dummy_pcm {
165 struct snd_dummy *dummy;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166 spinlock_t lock;
167 struct timer_list timer;
168 unsigned int pcm_size;
169 unsigned int pcm_count;
170 unsigned int pcm_bps; /* bytes per second */
171 unsigned int pcm_jiffie; /* bytes per one jiffie */
172 unsigned int pcm_irq_pos; /* IRQ position */
173 unsigned int pcm_buf_pos; /* position in buffer */
Takashi Iwai4a4d2cf2005-11-17 14:27:28 +0100174 struct snd_pcm_substream *substream;
175};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177
Takashi Iwai4a4d2cf2005-11-17 14:27:28 +0100178static inline void snd_card_dummy_pcm_timer_start(struct snd_dummy_pcm *dpcm)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180 dpcm->timer.expires = 1 + jiffies;
181 add_timer(&dpcm->timer);
182}
183
Takashi Iwai4a4d2cf2005-11-17 14:27:28 +0100184static inline void snd_card_dummy_pcm_timer_stop(struct snd_dummy_pcm *dpcm)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186 del_timer(&dpcm->timer);
187}
188
Takashi Iwai4a4d2cf2005-11-17 14:27:28 +0100189static int snd_card_dummy_pcm_trigger(struct snd_pcm_substream *substream, int cmd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190{
Takashi Iwai4a4d2cf2005-11-17 14:27:28 +0100191 struct snd_pcm_runtime *runtime = substream->runtime;
192 struct snd_dummy_pcm *dpcm = runtime->private_data;
Takashi Iwaic8eb6ba2005-11-17 10:20:23 +0100193 int err = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194
Takashi Iwaic8eb6ba2005-11-17 10:20:23 +0100195 spin_lock(&dpcm->lock);
Takashi Iwai6e65c1c2005-11-17 16:01:56 +0100196 switch (cmd) {
197 case SNDRV_PCM_TRIGGER_START:
198 case SNDRV_PCM_TRIGGER_RESUME:
Takashi Iwaic8eb6ba2005-11-17 10:20:23 +0100199 snd_card_dummy_pcm_timer_start(dpcm);
Takashi Iwai6e65c1c2005-11-17 16:01:56 +0100200 break;
201 case SNDRV_PCM_TRIGGER_STOP:
202 case SNDRV_PCM_TRIGGER_SUSPEND:
Takashi Iwaic8eb6ba2005-11-17 10:20:23 +0100203 snd_card_dummy_pcm_timer_stop(dpcm);
Takashi Iwai6e65c1c2005-11-17 16:01:56 +0100204 break;
205 default:
Takashi Iwaic8eb6ba2005-11-17 10:20:23 +0100206 err = -EINVAL;
Takashi Iwai6e65c1c2005-11-17 16:01:56 +0100207 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208 }
Takashi Iwaic8eb6ba2005-11-17 10:20:23 +0100209 spin_unlock(&dpcm->lock);
Takashi Iwai6e65c1c2005-11-17 16:01:56 +0100210 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211}
212
Takashi Iwai4a4d2cf2005-11-17 14:27:28 +0100213static int snd_card_dummy_pcm_prepare(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214{
Takashi Iwai4a4d2cf2005-11-17 14:27:28 +0100215 struct snd_pcm_runtime *runtime = substream->runtime;
216 struct snd_dummy_pcm *dpcm = runtime->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217 unsigned int bps;
218
219 bps = runtime->rate * runtime->channels;
220 bps *= snd_pcm_format_width(runtime->format);
221 bps /= 8;
222 if (bps <= 0)
223 return -EINVAL;
224 dpcm->pcm_bps = bps;
225 dpcm->pcm_jiffie = bps / HZ;
226 dpcm->pcm_size = snd_pcm_lib_buffer_bytes(substream);
227 dpcm->pcm_count = snd_pcm_lib_period_bytes(substream);
228 dpcm->pcm_irq_pos = 0;
229 dpcm->pcm_buf_pos = 0;
230 return 0;
231}
232
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233static void snd_card_dummy_pcm_timer_function(unsigned long data)
234{
Takashi Iwai4a4d2cf2005-11-17 14:27:28 +0100235 struct snd_dummy_pcm *dpcm = (struct snd_dummy_pcm *)data;
Takashi Iwaib32425a2005-11-18 18:52:14 +0100236 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700237
Takashi Iwaib32425a2005-11-18 18:52:14 +0100238 spin_lock_irqsave(&dpcm->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239 dpcm->timer.expires = 1 + jiffies;
240 add_timer(&dpcm->timer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241 dpcm->pcm_irq_pos += dpcm->pcm_jiffie;
242 dpcm->pcm_buf_pos += dpcm->pcm_jiffie;
243 dpcm->pcm_buf_pos %= dpcm->pcm_size;
244 if (dpcm->pcm_irq_pos >= dpcm->pcm_count) {
245 dpcm->pcm_irq_pos %= dpcm->pcm_count;
Takashi Iwaib32425a2005-11-18 18:52:14 +0100246 spin_unlock_irqrestore(&dpcm->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247 snd_pcm_period_elapsed(dpcm->substream);
Takashi Iwaib32425a2005-11-18 18:52:14 +0100248 } else
249 spin_unlock_irqrestore(&dpcm->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250}
251
Takashi Iwai4a4d2cf2005-11-17 14:27:28 +0100252static snd_pcm_uframes_t snd_card_dummy_pcm_pointer(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253{
Takashi Iwai4a4d2cf2005-11-17 14:27:28 +0100254 struct snd_pcm_runtime *runtime = substream->runtime;
255 struct snd_dummy_pcm *dpcm = runtime->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700256
257 return bytes_to_frames(runtime, dpcm->pcm_buf_pos);
258}
259
Takashi Iwai4a4d2cf2005-11-17 14:27:28 +0100260static struct snd_pcm_hardware snd_card_dummy_playback =
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261{
262 .info = (SNDRV_PCM_INFO_MMAP | SNDRV_PCM_INFO_INTERLEAVED |
Takashi Iwai6e65c1c2005-11-17 16:01:56 +0100263 SNDRV_PCM_INFO_RESUME | SNDRV_PCM_INFO_MMAP_VALID),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700264 .formats = USE_FORMATS,
265 .rates = USE_RATE,
266 .rate_min = USE_RATE_MIN,
267 .rate_max = USE_RATE_MAX,
268 .channels_min = USE_CHANNELS_MIN,
269 .channels_max = USE_CHANNELS_MAX,
270 .buffer_bytes_max = MAX_BUFFER_SIZE,
271 .period_bytes_min = 64,
272 .period_bytes_max = MAX_BUFFER_SIZE,
273 .periods_min = USE_PERIODS_MIN,
274 .periods_max = USE_PERIODS_MAX,
275 .fifo_size = 0,
276};
277
Takashi Iwai4a4d2cf2005-11-17 14:27:28 +0100278static struct snd_pcm_hardware snd_card_dummy_capture =
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279{
280 .info = (SNDRV_PCM_INFO_MMAP | SNDRV_PCM_INFO_INTERLEAVED |
Takashi Iwai6e65c1c2005-11-17 16:01:56 +0100281 SNDRV_PCM_INFO_RESUME | SNDRV_PCM_INFO_MMAP_VALID),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282 .formats = USE_FORMATS,
283 .rates = USE_RATE,
284 .rate_min = USE_RATE_MIN,
285 .rate_max = USE_RATE_MAX,
286 .channels_min = USE_CHANNELS_MIN,
287 .channels_max = USE_CHANNELS_MAX,
288 .buffer_bytes_max = MAX_BUFFER_SIZE,
289 .period_bytes_min = 64,
290 .period_bytes_max = MAX_BUFFER_SIZE,
291 .periods_min = USE_PERIODS_MIN,
292 .periods_max = USE_PERIODS_MAX,
293 .fifo_size = 0,
294};
295
Takashi Iwai4a4d2cf2005-11-17 14:27:28 +0100296static void snd_card_dummy_runtime_free(struct snd_pcm_runtime *runtime)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297{
Takashi Iwaic8eb6ba2005-11-17 10:20:23 +0100298 kfree(runtime->private_data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700299}
300
Takashi Iwai4a4d2cf2005-11-17 14:27:28 +0100301static int snd_card_dummy_hw_params(struct snd_pcm_substream *substream,
302 struct snd_pcm_hw_params *hw_params)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303{
304 return snd_pcm_lib_malloc_pages(substream, params_buffer_bytes(hw_params));
305}
306
Takashi Iwai4a4d2cf2005-11-17 14:27:28 +0100307static int snd_card_dummy_hw_free(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308{
309 return snd_pcm_lib_free_pages(substream);
310}
311
Takashi Iwai4a4d2cf2005-11-17 14:27:28 +0100312static struct snd_dummy_pcm *new_pcm_stream(struct snd_pcm_substream *substream)
Takashi Iwaic8eb6ba2005-11-17 10:20:23 +0100313{
Takashi Iwai4a4d2cf2005-11-17 14:27:28 +0100314 struct snd_dummy_pcm *dpcm;
Takashi Iwaic8eb6ba2005-11-17 10:20:23 +0100315
316 dpcm = kzalloc(sizeof(*dpcm), GFP_KERNEL);
317 if (! dpcm)
318 return dpcm;
319 init_timer(&dpcm->timer);
320 dpcm->timer.data = (unsigned long) dpcm;
321 dpcm->timer.function = snd_card_dummy_pcm_timer_function;
322 spin_lock_init(&dpcm->lock);
323 dpcm->substream = substream;
324 return dpcm;
325}
326
Takashi Iwai4a4d2cf2005-11-17 14:27:28 +0100327static int snd_card_dummy_playback_open(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328{
Takashi Iwai4a4d2cf2005-11-17 14:27:28 +0100329 struct snd_pcm_runtime *runtime = substream->runtime;
330 struct snd_dummy_pcm *dpcm;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331 int err;
332
Takashi Iwaic8eb6ba2005-11-17 10:20:23 +0100333 if ((dpcm = new_pcm_stream(substream)) == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700334 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335 runtime->private_data = dpcm;
336 runtime->private_free = snd_card_dummy_runtime_free;
337 runtime->hw = snd_card_dummy_playback;
338 if (substream->pcm->device & 1) {
339 runtime->hw.info &= ~SNDRV_PCM_INFO_INTERLEAVED;
340 runtime->hw.info |= SNDRV_PCM_INFO_NONINTERLEAVED;
341 }
342 if (substream->pcm->device & 2)
343 runtime->hw.info &= ~(SNDRV_PCM_INFO_MMAP|SNDRV_PCM_INFO_MMAP_VALID);
344 if ((err = add_playback_constraints(runtime)) < 0) {
345 kfree(dpcm);
346 return err;
347 }
348
349 return 0;
350}
351
Takashi Iwai4a4d2cf2005-11-17 14:27:28 +0100352static int snd_card_dummy_capture_open(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700353{
Takashi Iwai4a4d2cf2005-11-17 14:27:28 +0100354 struct snd_pcm_runtime *runtime = substream->runtime;
355 struct snd_dummy_pcm *dpcm;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356 int err;
357
Takashi Iwaic8eb6ba2005-11-17 10:20:23 +0100358 if ((dpcm = new_pcm_stream(substream)) == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700360 runtime->private_data = dpcm;
361 runtime->private_free = snd_card_dummy_runtime_free;
362 runtime->hw = snd_card_dummy_capture;
363 if (substream->pcm->device == 1) {
364 runtime->hw.info &= ~SNDRV_PCM_INFO_INTERLEAVED;
365 runtime->hw.info |= SNDRV_PCM_INFO_NONINTERLEAVED;
366 }
367 if (substream->pcm->device & 2)
368 runtime->hw.info &= ~(SNDRV_PCM_INFO_MMAP|SNDRV_PCM_INFO_MMAP_VALID);
369 if ((err = add_capture_constraints(runtime)) < 0) {
370 kfree(dpcm);
371 return err;
372 }
373
374 return 0;
375}
376
Takashi Iwai4a4d2cf2005-11-17 14:27:28 +0100377static int snd_card_dummy_playback_close(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378{
379 return 0;
380}
381
Takashi Iwai4a4d2cf2005-11-17 14:27:28 +0100382static int snd_card_dummy_capture_close(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383{
384 return 0;
385}
386
Takashi Iwai4a4d2cf2005-11-17 14:27:28 +0100387static struct snd_pcm_ops snd_card_dummy_playback_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388 .open = snd_card_dummy_playback_open,
389 .close = snd_card_dummy_playback_close,
390 .ioctl = snd_pcm_lib_ioctl,
391 .hw_params = snd_card_dummy_hw_params,
392 .hw_free = snd_card_dummy_hw_free,
Takashi Iwaic8eb6ba2005-11-17 10:20:23 +0100393 .prepare = snd_card_dummy_pcm_prepare,
394 .trigger = snd_card_dummy_pcm_trigger,
395 .pointer = snd_card_dummy_pcm_pointer,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396};
397
Takashi Iwai4a4d2cf2005-11-17 14:27:28 +0100398static struct snd_pcm_ops snd_card_dummy_capture_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700399 .open = snd_card_dummy_capture_open,
400 .close = snd_card_dummy_capture_close,
401 .ioctl = snd_pcm_lib_ioctl,
402 .hw_params = snd_card_dummy_hw_params,
403 .hw_free = snd_card_dummy_hw_free,
Takashi Iwaic8eb6ba2005-11-17 10:20:23 +0100404 .prepare = snd_card_dummy_pcm_prepare,
405 .trigger = snd_card_dummy_pcm_trigger,
406 .pointer = snd_card_dummy_pcm_pointer,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700407};
408
Takashi Iwai4a4d2cf2005-11-17 14:27:28 +0100409static int __init snd_card_dummy_pcm(struct snd_dummy *dummy, int device, int substreams)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700410{
Takashi Iwai4a4d2cf2005-11-17 14:27:28 +0100411 struct snd_pcm *pcm;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700412 int err;
413
Takashi Iwai4a4d2cf2005-11-17 14:27:28 +0100414 if ((err = snd_pcm_new(dummy->card, "Dummy PCM", device,
415 substreams, substreams, &pcm)) < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700416 return err;
Takashi Iwai6e65c1c2005-11-17 16:01:56 +0100417 dummy->pcm = pcm;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700418 snd_pcm_set_ops(pcm, SNDRV_PCM_STREAM_PLAYBACK, &snd_card_dummy_playback_ops);
419 snd_pcm_set_ops(pcm, SNDRV_PCM_STREAM_CAPTURE, &snd_card_dummy_capture_ops);
420 pcm->private_data = dummy;
421 pcm->info_flags = 0;
422 strcpy(pcm->name, "Dummy PCM");
423 snd_pcm_lib_preallocate_pages_for_all(pcm, SNDRV_DMA_TYPE_CONTINUOUS,
424 snd_dma_continuous_data(GFP_KERNEL),
425 0, 64*1024);
426 return 0;
427}
428
429#define DUMMY_VOLUME(xname, xindex, addr) \
430{ .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = xname, .index = xindex, \
431 .info = snd_dummy_volume_info, \
432 .get = snd_dummy_volume_get, .put = snd_dummy_volume_put, \
433 .private_value = addr }
434
Takashi Iwai4a4d2cf2005-11-17 14:27:28 +0100435static int snd_dummy_volume_info(struct snd_kcontrol *kcontrol,
436 struct snd_ctl_elem_info *uinfo)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700437{
438 uinfo->type = SNDRV_CTL_ELEM_TYPE_INTEGER;
439 uinfo->count = 2;
440 uinfo->value.integer.min = -50;
441 uinfo->value.integer.max = 100;
442 return 0;
443}
444
Takashi Iwai4a4d2cf2005-11-17 14:27:28 +0100445static int snd_dummy_volume_get(struct snd_kcontrol *kcontrol,
446 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700447{
Takashi Iwai4a4d2cf2005-11-17 14:27:28 +0100448 struct snd_dummy *dummy = snd_kcontrol_chip(kcontrol);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700449 int addr = kcontrol->private_value;
450
Takashi Iwaic8eb6ba2005-11-17 10:20:23 +0100451 spin_lock_irq(&dummy->mixer_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452 ucontrol->value.integer.value[0] = dummy->mixer_volume[addr][0];
453 ucontrol->value.integer.value[1] = dummy->mixer_volume[addr][1];
Takashi Iwaic8eb6ba2005-11-17 10:20:23 +0100454 spin_unlock_irq(&dummy->mixer_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455 return 0;
456}
457
Takashi Iwai4a4d2cf2005-11-17 14:27:28 +0100458static int snd_dummy_volume_put(struct snd_kcontrol *kcontrol,
459 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700460{
Takashi Iwai4a4d2cf2005-11-17 14:27:28 +0100461 struct snd_dummy *dummy = snd_kcontrol_chip(kcontrol);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700462 int change, addr = kcontrol->private_value;
463 int left, right;
464
465 left = ucontrol->value.integer.value[0];
466 if (left < -50)
467 left = -50;
468 if (left > 100)
469 left = 100;
470 right = ucontrol->value.integer.value[1];
471 if (right < -50)
472 right = -50;
473 if (right > 100)
474 right = 100;
Takashi Iwaic8eb6ba2005-11-17 10:20:23 +0100475 spin_lock_irq(&dummy->mixer_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700476 change = dummy->mixer_volume[addr][0] != left ||
477 dummy->mixer_volume[addr][1] != right;
478 dummy->mixer_volume[addr][0] = left;
479 dummy->mixer_volume[addr][1] = right;
Takashi Iwaic8eb6ba2005-11-17 10:20:23 +0100480 spin_unlock_irq(&dummy->mixer_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700481 return change;
482}
483
484#define DUMMY_CAPSRC(xname, xindex, addr) \
485{ .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = xname, .index = xindex, \
486 .info = snd_dummy_capsrc_info, \
487 .get = snd_dummy_capsrc_get, .put = snd_dummy_capsrc_put, \
488 .private_value = addr }
489
Takashi Iwai4a4d2cf2005-11-17 14:27:28 +0100490static int snd_dummy_capsrc_info(struct snd_kcontrol *kcontrol,
491 struct snd_ctl_elem_info *uinfo)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700492{
493 uinfo->type = SNDRV_CTL_ELEM_TYPE_BOOLEAN;
494 uinfo->count = 2;
495 uinfo->value.integer.min = 0;
496 uinfo->value.integer.max = 1;
497 return 0;
498}
499
Takashi Iwai4a4d2cf2005-11-17 14:27:28 +0100500static int snd_dummy_capsrc_get(struct snd_kcontrol *kcontrol,
501 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700502{
Takashi Iwai4a4d2cf2005-11-17 14:27:28 +0100503 struct snd_dummy *dummy = snd_kcontrol_chip(kcontrol);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700504 int addr = kcontrol->private_value;
505
Takashi Iwaic8eb6ba2005-11-17 10:20:23 +0100506 spin_lock_irq(&dummy->mixer_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700507 ucontrol->value.integer.value[0] = dummy->capture_source[addr][0];
508 ucontrol->value.integer.value[1] = dummy->capture_source[addr][1];
Takashi Iwaic8eb6ba2005-11-17 10:20:23 +0100509 spin_unlock_irq(&dummy->mixer_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700510 return 0;
511}
512
Takashi Iwai4a4d2cf2005-11-17 14:27:28 +0100513static int snd_dummy_capsrc_put(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700514{
Takashi Iwai4a4d2cf2005-11-17 14:27:28 +0100515 struct snd_dummy *dummy = snd_kcontrol_chip(kcontrol);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700516 int change, addr = kcontrol->private_value;
517 int left, right;
518
519 left = ucontrol->value.integer.value[0] & 1;
520 right = ucontrol->value.integer.value[1] & 1;
Takashi Iwaic8eb6ba2005-11-17 10:20:23 +0100521 spin_lock_irq(&dummy->mixer_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700522 change = dummy->capture_source[addr][0] != left &&
523 dummy->capture_source[addr][1] != right;
524 dummy->capture_source[addr][0] = left;
525 dummy->capture_source[addr][1] = right;
Takashi Iwaic8eb6ba2005-11-17 10:20:23 +0100526 spin_unlock_irq(&dummy->mixer_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700527 return change;
528}
529
Takashi Iwai4a4d2cf2005-11-17 14:27:28 +0100530static struct snd_kcontrol_new snd_dummy_controls[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531DUMMY_VOLUME("Master Volume", 0, MIXER_ADDR_MASTER),
532DUMMY_CAPSRC("Master Capture Switch", 0, MIXER_ADDR_MASTER),
533DUMMY_VOLUME("Synth Volume", 0, MIXER_ADDR_SYNTH),
534DUMMY_CAPSRC("Synth Capture Switch", 0, MIXER_ADDR_MASTER),
535DUMMY_VOLUME("Line Volume", 0, MIXER_ADDR_LINE),
536DUMMY_CAPSRC("Line Capture Switch", 0, MIXER_ADDR_MASTER),
537DUMMY_VOLUME("Mic Volume", 0, MIXER_ADDR_MIC),
538DUMMY_CAPSRC("Mic Capture Switch", 0, MIXER_ADDR_MASTER),
539DUMMY_VOLUME("CD Volume", 0, MIXER_ADDR_CD),
540DUMMY_CAPSRC("CD Capture Switch", 0, MIXER_ADDR_MASTER)
541};
542
Takashi Iwai4a4d2cf2005-11-17 14:27:28 +0100543static int __init snd_card_dummy_new_mixer(struct snd_dummy *dummy)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700544{
Takashi Iwai4a4d2cf2005-11-17 14:27:28 +0100545 struct snd_card *card = dummy->card;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700546 unsigned int idx;
547 int err;
548
549 snd_assert(dummy != NULL, return -EINVAL);
550 spin_lock_init(&dummy->mixer_lock);
551 strcpy(card->mixername, "Dummy Mixer");
552
553 for (idx = 0; idx < ARRAY_SIZE(snd_dummy_controls); idx++) {
554 if ((err = snd_ctl_add(card, snd_ctl_new1(&snd_dummy_controls[idx], dummy))) < 0)
555 return err;
556 }
557 return 0;
558}
559
Takashi Iwai6e65c1c2005-11-17 16:01:56 +0100560static int __init snd_dummy_probe(struct platform_device *devptr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700561{
Takashi Iwai4a4d2cf2005-11-17 14:27:28 +0100562 struct snd_card *card;
563 struct snd_dummy *dummy;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700564 int idx, err;
Takashi Iwai6e65c1c2005-11-17 16:01:56 +0100565 int dev = devptr->id;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700566
Linus Torvalds1da177e2005-04-16 15:20:36 -0700567 card = snd_card_new(index[dev], id[dev], THIS_MODULE,
Takashi Iwai4a4d2cf2005-11-17 14:27:28 +0100568 sizeof(struct snd_dummy));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700569 if (card == NULL)
570 return -ENOMEM;
Takashi Iwai4a4d2cf2005-11-17 14:27:28 +0100571 dummy = card->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700572 dummy->card = card;
573 for (idx = 0; idx < MAX_PCM_DEVICES && idx < pcm_devs[dev]; idx++) {
574 if (pcm_substreams[dev] < 1)
575 pcm_substreams[dev] = 1;
576 if (pcm_substreams[dev] > MAX_PCM_SUBSTREAMS)
577 pcm_substreams[dev] = MAX_PCM_SUBSTREAMS;
578 if ((err = snd_card_dummy_pcm(dummy, idx, pcm_substreams[dev])) < 0)
579 goto __nodev;
580 }
581 if ((err = snd_card_dummy_new_mixer(dummy)) < 0)
582 goto __nodev;
583 strcpy(card->driver, "Dummy");
584 strcpy(card->shortname, "Dummy");
585 sprintf(card->longname, "Dummy %i", dev + 1);
Takashi Iwai16dab542005-09-05 17:17:58 +0200586
Takashi Iwai6e65c1c2005-11-17 16:01:56 +0100587 snd_card_set_dev(card, &devptr->dev);
Takashi Iwai16dab542005-09-05 17:17:58 +0200588
Linus Torvalds1da177e2005-04-16 15:20:36 -0700589 if ((err = snd_card_register(card)) == 0) {
Takashi Iwai6e65c1c2005-11-17 16:01:56 +0100590 platform_set_drvdata(devptr, card);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700591 return 0;
592 }
593 __nodev:
594 snd_card_free(card);
595 return err;
596}
597
Takashi Iwai6e65c1c2005-11-17 16:01:56 +0100598static int snd_dummy_remove(struct platform_device *devptr)
599{
600 snd_card_free(platform_get_drvdata(devptr));
601 platform_set_drvdata(devptr, NULL);
602 return 0;
603}
604
605#ifdef CONFIG_PM
606static int snd_dummy_suspend(struct platform_device *pdev, pm_message_t state)
607{
608 struct snd_card *card = platform_get_drvdata(pdev);
609 struct snd_dummy *dummy = card->private_data;
610
611 snd_power_change_state(card, SNDRV_CTL_POWER_D3hot);
612 snd_pcm_suspend_all(dummy->pcm);
613 return 0;
614}
615
616static int snd_dummy_resume(struct platform_device *pdev)
617{
618 struct snd_card *card = platform_get_drvdata(pdev);
619
620 snd_power_change_state(card, SNDRV_CTL_POWER_D0);
621 return 0;
622}
623#endif
624
625#define SND_DUMMY_DRIVER "snd_dummy"
626
627static struct platform_driver snd_dummy_driver = {
628 .probe = snd_dummy_probe,
629 .remove = snd_dummy_remove,
630#ifdef CONFIG_PM
631 .suspend = snd_dummy_suspend,
632 .resume = snd_dummy_resume,
633#endif
634 .driver = {
635 .name = SND_DUMMY_DRIVER
636 },
637};
638
Clemens Ladischf7a92752005-12-07 09:13:42 +0100639static void __init_or_module snd_dummy_unregister_all(void)
640{
641 int i;
642
643 for (i = 0; i < ARRAY_SIZE(devices); ++i)
644 platform_device_unregister(devices[i]);
645 platform_driver_unregister(&snd_dummy_driver);
646}
647
Linus Torvalds1da177e2005-04-16 15:20:36 -0700648static int __init alsa_card_dummy_init(void)
649{
Takashi Iwai6e65c1c2005-11-17 16:01:56 +0100650 int i, cards, err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700651
Takashi Iwai6e65c1c2005-11-17 16:01:56 +0100652 if ((err = platform_driver_register(&snd_dummy_driver)) < 0)
653 return err;
654
655 cards = 0;
656 for (i = 0; i < SNDRV_CARDS && enable[i]; i++) {
657 struct platform_device *device;
658 device = platform_device_register_simple(SND_DUMMY_DRIVER,
659 i, NULL, 0);
660 if (IS_ERR(device)) {
661 err = PTR_ERR(device);
662 goto errout;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700663 }
Clemens Ladischf7a92752005-12-07 09:13:42 +0100664 devices[i] = device;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700665 cards++;
666 }
667 if (!cards) {
668#ifdef MODULE
669 printk(KERN_ERR "Dummy soundcard not found or device busy\n");
670#endif
Takashi Iwai6e65c1c2005-11-17 16:01:56 +0100671 err = -ENODEV;
672 goto errout;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700673 }
674 return 0;
Takashi Iwai6e65c1c2005-11-17 16:01:56 +0100675
676 errout:
Clemens Ladischf7a92752005-12-07 09:13:42 +0100677 snd_dummy_unregister_all();
Takashi Iwai6e65c1c2005-11-17 16:01:56 +0100678 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700679}
680
681static void __exit alsa_card_dummy_exit(void)
682{
Clemens Ladischf7a92752005-12-07 09:13:42 +0100683 snd_dummy_unregister_all();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700684}
685
686module_init(alsa_card_dummy_init)
687module_exit(alsa_card_dummy_exit)