blob: 016e451ed50616017581b9ec8cbd252d7eeefadb [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * Dummy soundcard
Jaroslav Kyselac1017a42007-10-15 09:50:19 +02003 * Copyright (c) by Jaroslav Kysela <perex@perex.cz>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004 *
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
Linus Torvalds1da177e2005-04-16 15:20:36 -070021#include <linux/init.h>
Takashi Iwai6e65c1c2005-11-17 16:01:56 +010022#include <linux/err.h>
23#include <linux/platform_device.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070024#include <linux/jiffies.h>
25#include <linux/slab.h>
26#include <linux/time.h>
27#include <linux/wait.h>
Takashi Iwaic631d032009-09-03 15:59:26 +020028#include <linux/hrtimer.h>
29#include <linux/math64.h>
Paul Gortmaker65a77212011-07-15 13:13:37 -040030#include <linux/module.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070031#include <sound/core.h>
32#include <sound/control.h>
Takashi Iwaifb567a82006-08-23 13:07:19 +020033#include <sound/tlv.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070034#include <sound/pcm.h>
35#include <sound/rawmidi.h>
Takashi Iwai9b151fe2009-09-08 14:30:49 +020036#include <sound/info.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070037#include <sound/initval.h>
38
Jaroslav Kyselac1017a42007-10-15 09:50:19 +020039MODULE_AUTHOR("Jaroslav Kysela <perex@perex.cz>");
Linus Torvalds1da177e2005-04-16 15:20:36 -070040MODULE_DESCRIPTION("Dummy soundcard (/dev/null)");
41MODULE_LICENSE("GPL");
42MODULE_SUPPORTED_DEVICE("{{ALSA,Dummy soundcard}}");
43
44#define MAX_PCM_DEVICES 4
Takashi Iwaib888d1c2009-09-08 18:15:17 +020045#define MAX_PCM_SUBSTREAMS 128
Linus Torvalds1da177e2005-04-16 15:20:36 -070046#define MAX_MIDI_DEVICES 2
47
Linus Torvalds1da177e2005-04-16 15:20:36 -070048/* defaults */
Linus Torvalds1da177e2005-04-16 15:20:36 -070049#define MAX_BUFFER_SIZE (64*1024)
Jaroslav Kyselad5e1ca02010-02-02 17:48:51 +010050#define MIN_PERIOD_SIZE 64
Jaroslav Kysela2ad5dd82006-01-03 14:27:21 +010051#define MAX_PERIOD_SIZE MAX_BUFFER_SIZE
Linus Torvalds1da177e2005-04-16 15:20:36 -070052#define USE_FORMATS (SNDRV_PCM_FMTBIT_U8 | SNDRV_PCM_FMTBIT_S16_LE)
Linus Torvalds1da177e2005-04-16 15:20:36 -070053#define USE_RATE SNDRV_PCM_RATE_CONTINUOUS | SNDRV_PCM_RATE_8000_48000
54#define USE_RATE_MIN 5500
55#define USE_RATE_MAX 48000
Linus Torvalds1da177e2005-04-16 15:20:36 -070056#define USE_CHANNELS_MIN 1
Linus Torvalds1da177e2005-04-16 15:20:36 -070057#define USE_CHANNELS_MAX 2
Linus Torvalds1da177e2005-04-16 15:20:36 -070058#define USE_PERIODS_MIN 1
Linus Torvalds1da177e2005-04-16 15:20:36 -070059#define USE_PERIODS_MAX 1024
Linus Torvalds1da177e2005-04-16 15:20:36 -070060
61static int index[SNDRV_CARDS] = SNDRV_DEFAULT_IDX; /* Index 0-MAX */
62static char *id[SNDRV_CARDS] = SNDRV_DEFAULT_STR; /* ID for this card */
Rusty Russella67ff6a2011-12-15 13:49:36 +103063static bool enable[SNDRV_CARDS] = {1, [1 ... (SNDRV_CARDS - 1)] = 0};
Jaroslav Kyselad5e1ca02010-02-02 17:48:51 +010064static char *model[SNDRV_CARDS] = {[0 ... (SNDRV_CARDS - 1)] = NULL};
Linus Torvalds1da177e2005-04-16 15:20:36 -070065static int pcm_devs[SNDRV_CARDS] = {[0 ... (SNDRV_CARDS - 1)] = 1};
66static int pcm_substreams[SNDRV_CARDS] = {[0 ... (SNDRV_CARDS - 1)] = 8};
67//static int midi_devs[SNDRV_CARDS] = {[0 ... (SNDRV_CARDS - 1)] = 2};
Takashi Iwaic631d032009-09-03 15:59:26 +020068#ifdef CONFIG_HIGH_RES_TIMERS
Rusty Russella67ff6a2011-12-15 13:49:36 +103069static bool hrtimer = 1;
Takashi Iwaic631d032009-09-03 15:59:26 +020070#endif
Rusty Russella67ff6a2011-12-15 13:49:36 +103071static bool fake_buffer = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -070072
73module_param_array(index, int, NULL, 0444);
74MODULE_PARM_DESC(index, "Index value for dummy soundcard.");
75module_param_array(id, charp, NULL, 0444);
76MODULE_PARM_DESC(id, "ID string for dummy soundcard.");
77module_param_array(enable, bool, NULL, 0444);
78MODULE_PARM_DESC(enable, "Enable this dummy soundcard.");
Jaroslav Kyselad5e1ca02010-02-02 17:48:51 +010079module_param_array(model, charp, NULL, 0444);
80MODULE_PARM_DESC(model, "Soundcard model.");
Linus Torvalds1da177e2005-04-16 15:20:36 -070081module_param_array(pcm_devs, int, NULL, 0444);
82MODULE_PARM_DESC(pcm_devs, "PCM devices # (0-4) for dummy driver.");
83module_param_array(pcm_substreams, int, NULL, 0444);
Takashi Iwai23aebca2009-11-02 14:10:59 +010084MODULE_PARM_DESC(pcm_substreams, "PCM substreams # (1-128) for dummy driver.");
Linus Torvalds1da177e2005-04-16 15:20:36 -070085//module_param_array(midi_devs, int, NULL, 0444);
86//MODULE_PARM_DESC(midi_devs, "MIDI devices # (0-2) for dummy driver.");
Takashi Iwaia68c4d12009-09-04 12:19:36 +020087module_param(fake_buffer, bool, 0444);
88MODULE_PARM_DESC(fake_buffer, "Fake buffer allocations.");
Takashi Iwaic631d032009-09-03 15:59:26 +020089#ifdef CONFIG_HIGH_RES_TIMERS
90module_param(hrtimer, bool, 0644);
91MODULE_PARM_DESC(hrtimer, "Use hrtimer as the timer source.");
92#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070093
Clemens Ladischf7a92752005-12-07 09:13:42 +010094static struct platform_device *devices[SNDRV_CARDS];
95
Linus Torvalds1da177e2005-04-16 15:20:36 -070096#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
102
Takashi Iwaic631d032009-09-03 15:59:26 +0200103struct 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 *);
110};
111
Jaroslav Kyselad5e1ca02010-02-02 17:48:51 +0100112struct dummy_model {
113 const char *name;
114 int (*playback_constraints)(struct snd_pcm_runtime *runtime);
115 int (*capture_constraints)(struct snd_pcm_runtime *runtime);
116 u64 formats;
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;
122 unsigned int rates;
123 unsigned int rate_min;
124 unsigned int rate_max;
125 unsigned int channels_min;
126 unsigned int channels_max;
127};
128
Takashi Iwai4a4d2cf2005-11-17 14:27:28 +0100129struct snd_dummy {
130 struct snd_card *card;
Jaroslav Kyselad5e1ca02010-02-02 17:48:51 +0100131 struct dummy_model *model;
Takashi Iwai6e65c1c2005-11-17 16:01:56 +0100132 struct snd_pcm *pcm;
Jaroslav Kyselad5e1ca02010-02-02 17:48:51 +0100133 struct snd_pcm_hardware pcm_hw;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134 spinlock_t mixer_lock;
135 int mixer_volume[MIXER_ADDR_LAST+1][2];
136 int capture_source[MIXER_ADDR_LAST+1][2];
Clemens Ladisch16e434672012-10-20 12:21:36 +0200137 int iobox;
138 struct snd_kcontrol *cd_volume_ctl;
139 struct snd_kcontrol *cd_switch_ctl;
Takashi Iwaic631d032009-09-03 15:59:26 +0200140 const struct dummy_timer_ops *timer_ops;
Takashi Iwai4a4d2cf2005-11-17 14:27:28 +0100141};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142
Takashi Iwaic631d032009-09-03 15:59:26 +0200143/*
Jaroslav Kyselad5e1ca02010-02-02 17:48:51 +0100144 * card models
145 */
146
147static int emu10k1_playback_constraints(struct snd_pcm_runtime *runtime)
148{
149 int err;
150 err = snd_pcm_hw_constraint_integer(runtime, SNDRV_PCM_HW_PARAM_PERIODS);
151 if (err < 0)
152 return err;
153 err = snd_pcm_hw_constraint_minmax(runtime, SNDRV_PCM_HW_PARAM_BUFFER_BYTES, 256, UINT_MAX);
154 if (err < 0)
155 return err;
156 return 0;
157}
158
Takashi Iwaie4c28682015-05-26 12:51:35 +0200159static struct dummy_model model_emu10k1 = {
Jaroslav Kyselad5e1ca02010-02-02 17:48:51 +0100160 .name = "emu10k1",
161 .playback_constraints = emu10k1_playback_constraints,
162 .buffer_bytes_max = 128 * 1024,
163};
164
Takashi Iwaie4c28682015-05-26 12:51:35 +0200165static struct dummy_model model_rme9652 = {
Jaroslav Kyselad5e1ca02010-02-02 17:48:51 +0100166 .name = "rme9652",
167 .buffer_bytes_max = 26 * 64 * 1024,
168 .formats = SNDRV_PCM_FMTBIT_S32_LE,
169 .channels_min = 26,
170 .channels_max = 26,
171 .periods_min = 2,
172 .periods_max = 2,
173};
174
Takashi Iwaie4c28682015-05-26 12:51:35 +0200175static struct dummy_model model_ice1712 = {
Jaroslav Kyselad5e1ca02010-02-02 17:48:51 +0100176 .name = "ice1712",
177 .buffer_bytes_max = 256 * 1024,
178 .formats = SNDRV_PCM_FMTBIT_S32_LE,
179 .channels_min = 10,
180 .channels_max = 10,
181 .periods_min = 1,
182 .periods_max = 1024,
183};
184
Takashi Iwaie4c28682015-05-26 12:51:35 +0200185static struct dummy_model model_uda1341 = {
Jaroslav Kyselad5e1ca02010-02-02 17:48:51 +0100186 .name = "uda1341",
187 .buffer_bytes_max = 16380,
188 .formats = SNDRV_PCM_FMTBIT_S16_LE,
189 .channels_min = 2,
190 .channels_max = 2,
191 .periods_min = 2,
192 .periods_max = 255,
193};
194
Takashi Iwaie4c28682015-05-26 12:51:35 +0200195static struct dummy_model model_ac97 = {
Jaroslav Kyselad5e1ca02010-02-02 17:48:51 +0100196 .name = "ac97",
197 .formats = SNDRV_PCM_FMTBIT_S16_LE,
198 .channels_min = 2,
199 .channels_max = 2,
200 .rates = SNDRV_PCM_RATE_48000,
201 .rate_min = 48000,
202 .rate_max = 48000,
203};
204
Takashi Iwaie4c28682015-05-26 12:51:35 +0200205static struct dummy_model model_ca0106 = {
Jaroslav Kyselad5e1ca02010-02-02 17:48:51 +0100206 .name = "ca0106",
207 .formats = SNDRV_PCM_FMTBIT_S16_LE,
208 .buffer_bytes_max = ((65536-64)*8),
209 .period_bytes_max = (65536-64),
210 .periods_min = 2,
211 .periods_max = 8,
212 .channels_min = 2,
213 .channels_max = 2,
214 .rates = SNDRV_PCM_RATE_48000|SNDRV_PCM_RATE_96000|SNDRV_PCM_RATE_192000,
215 .rate_min = 48000,
216 .rate_max = 192000,
217};
218
Takashi Iwaie4c28682015-05-26 12:51:35 +0200219static struct dummy_model *dummy_models[] = {
Jaroslav Kyselad5e1ca02010-02-02 17:48:51 +0100220 &model_emu10k1,
221 &model_rme9652,
222 &model_ice1712,
223 &model_uda1341,
224 &model_ac97,
225 &model_ca0106,
226 NULL
227};
228
229/*
Takashi Iwaic631d032009-09-03 15:59:26 +0200230 * system timer interface
231 */
232
233struct dummy_systimer_pcm {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234 spinlock_t lock;
235 struct timer_list timer;
Takashi Iwaib1420372009-09-03 16:01:06 +0200236 unsigned long base_time;
237 unsigned int frac_pos; /* fractional sample position (based HZ) */
Takashi Iwaib5d10782009-09-04 08:45:11 +0200238 unsigned int frac_period_rest;
Takashi Iwaib1420372009-09-03 16:01:06 +0200239 unsigned int frac_buffer_size; /* buffer_size * HZ */
240 unsigned int frac_period_size; /* period_size * HZ */
241 unsigned int rate;
Takashi Iwaib5d10782009-09-04 08:45:11 +0200242 int elapsed;
Takashi Iwai4a4d2cf2005-11-17 14:27:28 +0100243 struct snd_pcm_substream *substream;
244};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245
Takashi Iwaib1420372009-09-03 16:01:06 +0200246static void dummy_systimer_rearm(struct dummy_systimer_pcm *dpcm)
247{
Roman Kollar2a52b6e2015-01-19 10:42:54 +0100248 mod_timer(&dpcm->timer, jiffies +
249 (dpcm->frac_period_rest + dpcm->rate - 1) / dpcm->rate);
Takashi Iwaib1420372009-09-03 16:01:06 +0200250}
251
252static void dummy_systimer_update(struct dummy_systimer_pcm *dpcm)
253{
254 unsigned long delta;
255
256 delta = jiffies - dpcm->base_time;
257 if (!delta)
258 return;
Takashi Iwaib5d10782009-09-04 08:45:11 +0200259 dpcm->base_time += delta;
260 delta *= dpcm->rate;
261 dpcm->frac_pos += delta;
Takashi Iwaib1420372009-09-03 16:01:06 +0200262 while (dpcm->frac_pos >= dpcm->frac_buffer_size)
263 dpcm->frac_pos -= dpcm->frac_buffer_size;
Takashi Iwaib5d10782009-09-04 08:45:11 +0200264 while (dpcm->frac_period_rest <= delta) {
265 dpcm->elapsed++;
266 dpcm->frac_period_rest += dpcm->frac_period_size;
267 }
268 dpcm->frac_period_rest -= delta;
Takashi Iwaib1420372009-09-03 16:01:06 +0200269}
270
Takashi Iwaic631d032009-09-03 15:59:26 +0200271static int dummy_systimer_start(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272{
Takashi Iwaic631d032009-09-03 15:59:26 +0200273 struct dummy_systimer_pcm *dpcm = substream->runtime->private_data;
274 spin_lock(&dpcm->lock);
Takashi Iwaib1420372009-09-03 16:01:06 +0200275 dpcm->base_time = jiffies;
276 dummy_systimer_rearm(dpcm);
Takashi Iwaic8eb6ba2005-11-17 10:20:23 +0100277 spin_unlock(&dpcm->lock);
Takashi Iwai6e65c1c2005-11-17 16:01:56 +0100278 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279}
280
Takashi Iwaic631d032009-09-03 15:59:26 +0200281static int dummy_systimer_stop(struct snd_pcm_substream *substream)
282{
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);
287 return 0;
288}
289
290static int dummy_systimer_prepare(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291{
Takashi Iwai4a4d2cf2005-11-17 14:27:28 +0100292 struct snd_pcm_runtime *runtime = substream->runtime;
Takashi Iwaic631d032009-09-03 15:59:26 +0200293 struct dummy_systimer_pcm *dpcm = runtime->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294
Takashi Iwaib1420372009-09-03 16:01:06 +0200295 dpcm->frac_pos = 0;
296 dpcm->rate = runtime->rate;
297 dpcm->frac_buffer_size = runtime->buffer_size * HZ;
298 dpcm->frac_period_size = runtime->period_size * HZ;
Takashi Iwaib5d10782009-09-04 08:45:11 +0200299 dpcm->frac_period_rest = dpcm->frac_period_size;
300 dpcm->elapsed = 0;
Ahmet Ä°nan53463a82008-02-21 07:55:30 +0100301
Linus Torvalds1da177e2005-04-16 15:20:36 -0700302 return 0;
303}
304
Takashi Iwaic631d032009-09-03 15:59:26 +0200305static void dummy_systimer_callback(unsigned long data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306{
Takashi Iwaic631d032009-09-03 15:59:26 +0200307 struct dummy_systimer_pcm *dpcm = (struct dummy_systimer_pcm *)data;
Takashi Iwaib32425a2005-11-18 18:52:14 +0100308 unsigned long flags;
Takashi Iwaib5d10782009-09-04 08:45:11 +0200309 int elapsed = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310
Takashi Iwaib32425a2005-11-18 18:52:14 +0100311 spin_lock_irqsave(&dpcm->lock, flags);
Takashi Iwaib1420372009-09-03 16:01:06 +0200312 dummy_systimer_update(dpcm);
313 dummy_systimer_rearm(dpcm);
Takashi Iwaib5d10782009-09-04 08:45:11 +0200314 elapsed = dpcm->elapsed;
315 dpcm->elapsed = 0;
Takashi Iwaib1420372009-09-03 16:01:06 +0200316 spin_unlock_irqrestore(&dpcm->lock, flags);
Takashi Iwaib5d10782009-09-04 08:45:11 +0200317 if (elapsed)
318 snd_pcm_period_elapsed(dpcm->substream);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319}
320
Takashi Iwaic631d032009-09-03 15:59:26 +0200321static snd_pcm_uframes_t
322dummy_systimer_pointer(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700323{
Takashi Iwaib1420372009-09-03 16:01:06 +0200324 struct dummy_systimer_pcm *dpcm = substream->runtime->private_data;
Takashi Iwaib5d10782009-09-04 08:45:11 +0200325 snd_pcm_uframes_t pos;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700326
Takashi Iwaib1420372009-09-03 16:01:06 +0200327 spin_lock(&dpcm->lock);
328 dummy_systimer_update(dpcm);
Takashi Iwaib5d10782009-09-04 08:45:11 +0200329 pos = dpcm->frac_pos / HZ;
Takashi Iwaib1420372009-09-03 16:01:06 +0200330 spin_unlock(&dpcm->lock);
Takashi Iwaib5d10782009-09-04 08:45:11 +0200331 return pos;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700332}
333
Takashi Iwaic631d032009-09-03 15:59:26 +0200334static int dummy_systimer_create(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335{
Takashi Iwaic631d032009-09-03 15:59:26 +0200336 struct dummy_systimer_pcm *dpcm;
337
338 dpcm = kzalloc(sizeof(*dpcm), GFP_KERNEL);
339 if (!dpcm)
340 return -ENOMEM;
341 substream->runtime->private_data = dpcm;
Roman Kollar2a52b6e2015-01-19 10:42:54 +0100342 setup_timer(&dpcm->timer, dummy_systimer_callback,
343 (unsigned long) dpcm);
Takashi Iwaic631d032009-09-03 15:59:26 +0200344 spin_lock_init(&dpcm->lock);
345 dpcm->substream = substream;
346 return 0;
347}
348
349static void dummy_systimer_free(struct snd_pcm_substream *substream)
350{
351 kfree(substream->runtime->private_data);
352}
353
354static 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,
361};
362
363#ifdef CONFIG_HIGH_RES_TIMERS
364/*
365 * hrtimer interface
366 */
367
368struct dummy_hrtimer_pcm {
369 ktime_t base_time;
370 ktime_t period_time;
371 atomic_t running;
372 struct hrtimer timer;
373 struct tasklet_struct tasklet;
374 struct snd_pcm_substream *substream;
375};
376
377static void dummy_hrtimer_pcm_elapsed(unsigned long priv)
378{
379 struct dummy_hrtimer_pcm *dpcm = (struct dummy_hrtimer_pcm *)priv;
380 if (atomic_read(&dpcm->running))
381 snd_pcm_period_elapsed(dpcm->substream);
382}
383
384static enum hrtimer_restart dummy_hrtimer_callback(struct hrtimer *timer)
385{
386 struct dummy_hrtimer_pcm *dpcm;
387
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;
394}
395
396static int dummy_hrtimer_start(struct snd_pcm_substream *substream)
397{
398 struct dummy_hrtimer_pcm *dpcm = substream->runtime->private_data;
399
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);
403 return 0;
404}
405
406static int dummy_hrtimer_stop(struct snd_pcm_substream *substream)
407{
408 struct dummy_hrtimer_pcm *dpcm = substream->runtime->private_data;
409
410 atomic_set(&dpcm->running, 0);
411 hrtimer_cancel(&dpcm->timer);
412 return 0;
413}
414
415static inline void dummy_hrtimer_sync(struct dummy_hrtimer_pcm *dpcm)
416{
417 tasklet_kill(&dpcm->tasklet);
418}
419
420static snd_pcm_uframes_t
421dummy_hrtimer_pointer(struct snd_pcm_substream *substream)
422{
423 struct snd_pcm_runtime *runtime = substream->runtime;
424 struct dummy_hrtimer_pcm *dpcm = runtime->private_data;
425 u64 delta;
426 u32 pos;
427
428 delta = ktime_us_delta(hrtimer_cb_get_time(&dpcm->timer),
429 dpcm->base_time);
430 delta = div_u64(delta * runtime->rate + 999999, 1000000);
431 div_u64_rem(delta, runtime->buffer_size, &pos);
432 return pos;
433}
434
435static int dummy_hrtimer_prepare(struct snd_pcm_substream *substream)
436{
437 struct snd_pcm_runtime *runtime = substream->runtime;
438 struct dummy_hrtimer_pcm *dpcm = runtime->private_data;
439 unsigned int period, rate;
440 long sec;
441 unsigned long nsecs;
442
443 dummy_hrtimer_sync(dpcm);
444 period = runtime->period_size;
445 rate = runtime->rate;
446 sec = period / rate;
447 period %= rate;
448 nsecs = div_u64((u64)period * 1000000000UL + rate - 1, rate);
449 dpcm->period_time = ktime_set(sec, nsecs);
450
451 return 0;
452}
453
454static int dummy_hrtimer_create(struct snd_pcm_substream *substream)
455{
456 struct dummy_hrtimer_pcm *dpcm;
457
458 dpcm = kzalloc(sizeof(*dpcm), GFP_KERNEL);
459 if (!dpcm)
460 return -ENOMEM;
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);
468 return 0;
469}
470
471static void dummy_hrtimer_free(struct snd_pcm_substream *substream)
472{
473 struct dummy_hrtimer_pcm *dpcm = substream->runtime->private_data;
474 dummy_hrtimer_sync(dpcm);
475 kfree(dpcm);
476}
477
478static 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,
485};
486
487#endif /* CONFIG_HIGH_RES_TIMERS */
488
489/*
490 * PCM interface
491 */
492
493static int dummy_pcm_trigger(struct snd_pcm_substream *substream, int cmd)
494{
495 struct snd_dummy *dummy = snd_pcm_substream_chip(substream);
496
497 switch (cmd) {
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);
504 }
505 return -EINVAL;
506}
507
508static int dummy_pcm_prepare(struct snd_pcm_substream *substream)
509{
Takashi Iwaic631d032009-09-03 15:59:26 +0200510 struct snd_dummy *dummy = snd_pcm_substream_chip(substream);
511
Takashi Iwaic631d032009-09-03 15:59:26 +0200512 return dummy->timer_ops->prepare(substream);
513}
514
515static snd_pcm_uframes_t dummy_pcm_pointer(struct snd_pcm_substream *substream)
516{
517 struct snd_dummy *dummy = snd_pcm_substream_chip(substream);
518
519 return dummy->timer_ops->pointer(substream);
520}
521
522static 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),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700527 .formats = USE_FORMATS,
528 .rates = USE_RATE,
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,
Jaroslav Kyselad5e1ca02010-02-02 17:48:51 +0100534 .period_bytes_min = MIN_PERIOD_SIZE,
Takashi Iwaie05d6962006-08-17 17:12:19 +0200535 .period_bytes_max = MAX_PERIOD_SIZE,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700536 .periods_min = USE_PERIODS_MIN,
537 .periods_max = USE_PERIODS_MAX,
538 .fifo_size = 0,
539};
540
Takashi Iwaic631d032009-09-03 15:59:26 +0200541static int dummy_pcm_hw_params(struct snd_pcm_substream *substream,
542 struct snd_pcm_hw_params *hw_params)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543{
Takashi Iwaia68c4d12009-09-04 12:19:36 +0200544 if (fake_buffer) {
545 /* runtime->dma_bytes has to be set manually to allow mmap */
546 substream->runtime->dma_bytes = params_buffer_bytes(hw_params);
547 return 0;
548 }
Takashi Iwaic631d032009-09-03 15:59:26 +0200549 return snd_pcm_lib_malloc_pages(substream,
550 params_buffer_bytes(hw_params));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700551}
552
Takashi Iwaic631d032009-09-03 15:59:26 +0200553static int dummy_pcm_hw_free(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700554{
Takashi Iwaia68c4d12009-09-04 12:19:36 +0200555 if (fake_buffer)
556 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700557 return snd_pcm_lib_free_pages(substream);
558}
559
Takashi Iwaic631d032009-09-03 15:59:26 +0200560static int dummy_pcm_open(struct snd_pcm_substream *substream)
Takashi Iwaic8eb6ba2005-11-17 10:20:23 +0100561{
Takashi Iwaic631d032009-09-03 15:59:26 +0200562 struct snd_dummy *dummy = snd_pcm_substream_chip(substream);
Jaroslav Kyselad5e1ca02010-02-02 17:48:51 +0100563 struct dummy_model *model = dummy->model;
Takashi Iwai4a4d2cf2005-11-17 14:27:28 +0100564 struct snd_pcm_runtime *runtime = substream->runtime;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700565 int err;
566
Takashi Iwaic631d032009-09-03 15:59:26 +0200567 dummy->timer_ops = &dummy_systimer_ops;
568#ifdef CONFIG_HIGH_RES_TIMERS
569 if (hrtimer)
570 dummy->timer_ops = &dummy_hrtimer_ops;
571#endif
572
573 err = dummy->timer_ops->create(substream);
574 if (err < 0)
575 return err;
576
Jaroslav Kyselad5e1ca02010-02-02 17:48:51 +0100577 runtime->hw = dummy->pcm_hw;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700578 if (substream->pcm->device & 1) {
579 runtime->hw.info &= ~SNDRV_PCM_INFO_INTERLEAVED;
580 runtime->hw.info |= SNDRV_PCM_INFO_NONINTERLEAVED;
581 }
582 if (substream->pcm->device & 2)
Takashi Iwaic631d032009-09-03 15:59:26 +0200583 runtime->hw.info &= ~(SNDRV_PCM_INFO_MMAP |
584 SNDRV_PCM_INFO_MMAP_VALID);
585
Jaroslav Kyselad5e1ca02010-02-02 17:48:51 +0100586 if (model == NULL)
587 return 0;
588
589 if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK) {
590 if (model->playback_constraints)
591 err = model->playback_constraints(substream->runtime);
592 } else {
593 if (model->capture_constraints)
594 err = model->capture_constraints(substream->runtime);
595 }
Takashi Iwaic631d032009-09-03 15:59:26 +0200596 if (err < 0) {
597 dummy->timer_ops->free(substream);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700598 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700599 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700600 return 0;
601}
602
Takashi Iwaic631d032009-09-03 15:59:26 +0200603static int dummy_pcm_close(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700604{
Takashi Iwaic631d032009-09-03 15:59:26 +0200605 struct snd_dummy *dummy = snd_pcm_substream_chip(substream);
606 dummy->timer_ops->free(substream);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700607 return 0;
608}
609
Takashi Iwaia68c4d12009-09-04 12:19:36 +0200610/*
611 * dummy buffer handling
612 */
613
614static void *dummy_page[2];
615
616static void free_fake_buffer(void)
617{
618 if (fake_buffer) {
619 int i;
620 for (i = 0; i < 2; i++)
621 if (dummy_page[i]) {
622 free_page((unsigned long)dummy_page[i]);
623 dummy_page[i] = NULL;
624 }
625 }
626}
627
628static int alloc_fake_buffer(void)
629{
630 int i;
631
632 if (!fake_buffer)
633 return 0;
634 for (i = 0; i < 2; i++) {
635 dummy_page[i] = (void *)get_zeroed_page(GFP_KERNEL);
636 if (!dummy_page[i]) {
637 free_fake_buffer();
638 return -ENOMEM;
639 }
640 }
641 return 0;
642}
643
644static 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)
647{
648 return 0; /* do nothing */
649}
650
651static int dummy_pcm_silence(struct snd_pcm_substream *substream,
652 int channel, snd_pcm_uframes_t pos,
653 snd_pcm_uframes_t count)
654{
655 return 0; /* do nothing */
656}
657
658static struct page *dummy_pcm_page(struct snd_pcm_substream *substream,
659 unsigned long offset)
660{
661 return virt_to_page(dummy_page[substream->stream]); /* the same page */
662}
663
Takashi Iwaic631d032009-09-03 15:59:26 +0200664static 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,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700673};
674
Takashi Iwaia68c4d12009-09-04 12:19:36 +0200675static 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,
687};
688
Bill Pembertonfbbb01a2012-12-06 12:35:27 -0500689static int snd_card_dummy_pcm(struct snd_dummy *dummy, int device,
690 int substreams)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700691{
Takashi Iwai4a4d2cf2005-11-17 14:27:28 +0100692 struct snd_pcm *pcm;
Takashi Iwaia68c4d12009-09-04 12:19:36 +0200693 struct snd_pcm_ops *ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700694 int err;
695
Jaroslav Kysela1a11cb62008-08-15 12:59:02 +0200696 err = snd_pcm_new(dummy->card, "Dummy PCM", device,
697 substreams, substreams, &pcm);
698 if (err < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700699 return err;
Takashi Iwai6e65c1c2005-11-17 16:01:56 +0100700 dummy->pcm = pcm;
Takashi Iwaia68c4d12009-09-04 12:19:36 +0200701 if (fake_buffer)
702 ops = &dummy_pcm_ops_no_buf;
703 else
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);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700707 pcm->private_data = dummy;
708 pcm->info_flags = 0;
709 strcpy(pcm->name, "Dummy PCM");
Takashi Iwaia68c4d12009-09-04 12:19:36 +0200710 if (!fake_buffer) {
711 snd_pcm_lib_preallocate_pages_for_all(pcm,
712 SNDRV_DMA_TYPE_CONTINUOUS,
713 snd_dma_continuous_data(GFP_KERNEL),
714 0, 64*1024);
715 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700716 return 0;
717}
718
Takashi Iwai9b151fe2009-09-08 14:30:49 +0200719/*
720 * mixer interface
721 */
722
Linus Torvalds1da177e2005-04-16 15:20:36 -0700723#define DUMMY_VOLUME(xname, xindex, addr) \
Takashi Iwaifb567a82006-08-23 13:07:19 +0200724{ .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \
725 .access = SNDRV_CTL_ELEM_ACCESS_READWRITE | SNDRV_CTL_ELEM_ACCESS_TLV_READ, \
726 .name = xname, .index = xindex, \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700727 .info = snd_dummy_volume_info, \
728 .get = snd_dummy_volume_get, .put = snd_dummy_volume_put, \
Takashi Iwaifb567a82006-08-23 13:07:19 +0200729 .private_value = addr, \
730 .tlv = { .p = db_scale_dummy } }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700731
Takashi Iwai4a4d2cf2005-11-17 14:27:28 +0100732static int snd_dummy_volume_info(struct snd_kcontrol *kcontrol,
733 struct snd_ctl_elem_info *uinfo)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700734{
735 uinfo->type = SNDRV_CTL_ELEM_TYPE_INTEGER;
736 uinfo->count = 2;
737 uinfo->value.integer.min = -50;
738 uinfo->value.integer.max = 100;
739 return 0;
740}
741
Takashi Iwai4a4d2cf2005-11-17 14:27:28 +0100742static int snd_dummy_volume_get(struct snd_kcontrol *kcontrol,
743 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700744{
Takashi Iwai4a4d2cf2005-11-17 14:27:28 +0100745 struct snd_dummy *dummy = snd_kcontrol_chip(kcontrol);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700746 int addr = kcontrol->private_value;
747
Takashi Iwaic8eb6ba2005-11-17 10:20:23 +0100748 spin_lock_irq(&dummy->mixer_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700749 ucontrol->value.integer.value[0] = dummy->mixer_volume[addr][0];
750 ucontrol->value.integer.value[1] = dummy->mixer_volume[addr][1];
Takashi Iwaic8eb6ba2005-11-17 10:20:23 +0100751 spin_unlock_irq(&dummy->mixer_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700752 return 0;
753}
754
Takashi Iwai4a4d2cf2005-11-17 14:27:28 +0100755static int snd_dummy_volume_put(struct snd_kcontrol *kcontrol,
756 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700757{
Takashi Iwai4a4d2cf2005-11-17 14:27:28 +0100758 struct snd_dummy *dummy = snd_kcontrol_chip(kcontrol);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700759 int change, addr = kcontrol->private_value;
760 int left, right;
761
762 left = ucontrol->value.integer.value[0];
763 if (left < -50)
764 left = -50;
765 if (left > 100)
766 left = 100;
767 right = ucontrol->value.integer.value[1];
768 if (right < -50)
769 right = -50;
770 if (right > 100)
771 right = 100;
Takashi Iwaic8eb6ba2005-11-17 10:20:23 +0100772 spin_lock_irq(&dummy->mixer_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700773 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;
Takashi Iwaic8eb6ba2005-11-17 10:20:23 +0100777 spin_unlock_irq(&dummy->mixer_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700778 return change;
779}
780
Takashi Iwai0cb29ea2007-01-29 15:33:49 +0100781static const DECLARE_TLV_DB_SCALE(db_scale_dummy, -4500, 30, 0);
Takashi Iwaifb567a82006-08-23 13:07:19 +0200782
Linus Torvalds1da177e2005-04-16 15:20:36 -0700783#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 }
788
Takashi Iwaia5ce8892007-07-23 15:42:26 +0200789#define snd_dummy_capsrc_info snd_ctl_boolean_stereo_info
Linus Torvalds1da177e2005-04-16 15:20:36 -0700790
Takashi Iwai4a4d2cf2005-11-17 14:27:28 +0100791static int snd_dummy_capsrc_get(struct snd_kcontrol *kcontrol,
792 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700793{
Takashi Iwai4a4d2cf2005-11-17 14:27:28 +0100794 struct snd_dummy *dummy = snd_kcontrol_chip(kcontrol);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700795 int addr = kcontrol->private_value;
796
Takashi Iwaic8eb6ba2005-11-17 10:20:23 +0100797 spin_lock_irq(&dummy->mixer_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700798 ucontrol->value.integer.value[0] = dummy->capture_source[addr][0];
799 ucontrol->value.integer.value[1] = dummy->capture_source[addr][1];
Takashi Iwaic8eb6ba2005-11-17 10:20:23 +0100800 spin_unlock_irq(&dummy->mixer_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700801 return 0;
802}
803
Takashi Iwai4a4d2cf2005-11-17 14:27:28 +0100804static int snd_dummy_capsrc_put(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700805{
Takashi Iwai4a4d2cf2005-11-17 14:27:28 +0100806 struct snd_dummy *dummy = snd_kcontrol_chip(kcontrol);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700807 int change, addr = kcontrol->private_value;
808 int left, right;
809
810 left = ucontrol->value.integer.value[0] & 1;
811 right = ucontrol->value.integer.value[1] & 1;
Takashi Iwaic8eb6ba2005-11-17 10:20:23 +0100812 spin_lock_irq(&dummy->mixer_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700813 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;
Takashi Iwaic8eb6ba2005-11-17 10:20:23 +0100817 spin_unlock_irq(&dummy->mixer_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700818 return change;
819}
820
Clemens Ladisch16e434672012-10-20 12:21:36 +0200821static int snd_dummy_iobox_info(struct snd_kcontrol *kcontrol,
822 struct snd_ctl_elem_info *info)
823{
824 const char *const names[] = { "None", "CD Player" };
825
826 return snd_ctl_enum_info(info, 1, 2, names);
827}
828
829static int snd_dummy_iobox_get(struct snd_kcontrol *kcontrol,
830 struct snd_ctl_elem_value *value)
831{
832 struct snd_dummy *dummy = snd_kcontrol_chip(kcontrol);
833
834 value->value.enumerated.item[0] = dummy->iobox;
835 return 0;
836}
837
838static int snd_dummy_iobox_put(struct snd_kcontrol *kcontrol,
839 struct snd_ctl_elem_value *value)
840{
841 struct snd_dummy *dummy = snd_kcontrol_chip(kcontrol);
842 int changed;
843
844 if (value->value.enumerated.item[0] > 1)
845 return -EINVAL;
846
847 changed = value->value.enumerated.item[0] != dummy->iobox;
848 if (changed) {
849 dummy->iobox = value->value.enumerated.item[0];
850
851 if (dummy->iobox) {
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;
856 } else {
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;
861 }
862
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);
867 }
868
869 return changed;
870}
871
Takashi Iwai4a4d2cf2005-11-17 14:27:28 +0100872static struct snd_kcontrol_new snd_dummy_controls[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700873DUMMY_VOLUME("Master Volume", 0, MIXER_ADDR_MASTER),
874DUMMY_CAPSRC("Master Capture Switch", 0, MIXER_ADDR_MASTER),
875DUMMY_VOLUME("Synth Volume", 0, MIXER_ADDR_SYNTH),
Takashi Iwaie05d6962006-08-17 17:12:19 +0200876DUMMY_CAPSRC("Synth Capture Switch", 0, MIXER_ADDR_SYNTH),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700877DUMMY_VOLUME("Line Volume", 0, MIXER_ADDR_LINE),
Takashi Iwaie05d6962006-08-17 17:12:19 +0200878DUMMY_CAPSRC("Line Capture Switch", 0, MIXER_ADDR_LINE),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700879DUMMY_VOLUME("Mic Volume", 0, MIXER_ADDR_MIC),
Takashi Iwaie05d6962006-08-17 17:12:19 +0200880DUMMY_CAPSRC("Mic Capture Switch", 0, MIXER_ADDR_MIC),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700881DUMMY_VOLUME("CD Volume", 0, MIXER_ADDR_CD),
Clemens Ladisch16e434672012-10-20 12:21:36 +0200882DUMMY_CAPSRC("CD Capture Switch", 0, MIXER_ADDR_CD),
883{
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,
889},
Linus Torvalds1da177e2005-04-16 15:20:36 -0700890};
891
Bill Pembertonfbbb01a2012-12-06 12:35:27 -0500892static int snd_card_dummy_new_mixer(struct snd_dummy *dummy)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700893{
Takashi Iwai4a4d2cf2005-11-17 14:27:28 +0100894 struct snd_card *card = dummy->card;
Clemens Ladisch16e434672012-10-20 12:21:36 +0200895 struct snd_kcontrol *kcontrol;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700896 unsigned int idx;
897 int err;
898
Linus Torvalds1da177e2005-04-16 15:20:36 -0700899 spin_lock_init(&dummy->mixer_lock);
900 strcpy(card->mixername, "Dummy Mixer");
Clemens Ladisch16e434672012-10-20 12:21:36 +0200901 dummy->iobox = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700902
903 for (idx = 0; idx < ARRAY_SIZE(snd_dummy_controls); idx++) {
Clemens Ladisch16e434672012-10-20 12:21:36 +0200904 kcontrol = snd_ctl_new1(&snd_dummy_controls[idx], dummy);
905 err = snd_ctl_add(card, kcontrol);
Jaroslav Kysela1a11cb62008-08-15 12:59:02 +0200906 if (err < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700907 return err;
Clemens Ladisch16e434672012-10-20 12:21:36 +0200908 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;
912
Linus Torvalds1da177e2005-04-16 15:20:36 -0700913 }
914 return 0;
915}
916
Takashi Iwai129a4c92015-05-29 07:47:50 +0200917#if defined(CONFIG_SND_DEBUG) && defined(CONFIG_SND_PROC_FS)
Takashi Iwai9b151fe2009-09-08 14:30:49 +0200918/*
919 * proc interface
920 */
Jaroslav Kyselad5e1ca02010-02-02 17:48:51 +0100921static void print_formats(struct snd_dummy *dummy,
922 struct snd_info_buffer *buffer)
Takashi Iwai9b151fe2009-09-08 14:30:49 +0200923{
924 int i;
925
926 for (i = 0; i < SNDRV_PCM_FORMAT_LAST; i++) {
Jaroslav Kyselad5e1ca02010-02-02 17:48:51 +0100927 if (dummy->pcm_hw.formats & (1ULL << i))
Takashi Iwai9b151fe2009-09-08 14:30:49 +0200928 snd_iprintf(buffer, " %s", snd_pcm_format_name(i));
929 }
930}
931
Jaroslav Kyselad5e1ca02010-02-02 17:48:51 +0100932static void print_rates(struct snd_dummy *dummy,
933 struct snd_info_buffer *buffer)
Takashi Iwai9b151fe2009-09-08 14:30:49 +0200934{
935 static int rates[] = {
936 5512, 8000, 11025, 16000, 22050, 32000, 44100, 48000,
937 64000, 88200, 96000, 176400, 192000,
938 };
939 int i;
940
Jaroslav Kyselad5e1ca02010-02-02 17:48:51 +0100941 if (dummy->pcm_hw.rates & SNDRV_PCM_RATE_CONTINUOUS)
Takashi Iwai9b151fe2009-09-08 14:30:49 +0200942 snd_iprintf(buffer, " continuous");
Jaroslav Kyselad5e1ca02010-02-02 17:48:51 +0100943 if (dummy->pcm_hw.rates & SNDRV_PCM_RATE_KNOT)
Takashi Iwai9b151fe2009-09-08 14:30:49 +0200944 snd_iprintf(buffer, " knot");
945 for (i = 0; i < ARRAY_SIZE(rates); i++)
Jaroslav Kyselad5e1ca02010-02-02 17:48:51 +0100946 if (dummy->pcm_hw.rates & (1 << i))
Takashi Iwai9b151fe2009-09-08 14:30:49 +0200947 snd_iprintf(buffer, " %d", rates[i]);
948}
949
Jaroslav Kyselad5e1ca02010-02-02 17:48:51 +0100950#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))
Takashi Iwai9b151fe2009-09-08 14:30:49 +0200954
955struct dummy_hw_field {
956 const char *name;
957 const char *format;
958 unsigned int offset;
959 unsigned int size;
960};
961#define FIELD_ENTRY(item, fmt) { \
962 .name = #item, \
963 .format = fmt, \
964 .offset = offsetof(struct snd_pcm_hardware, item), \
965 .size = sizeof(dummy_pcm_hardware.item) }
966
967static 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"),
979};
980
981static void dummy_proc_read(struct snd_info_entry *entry,
982 struct snd_info_buffer *buffer)
983{
Jaroslav Kyselad5e1ca02010-02-02 17:48:51 +0100984 struct snd_dummy *dummy = entry->private_data;
Takashi Iwai9b151fe2009-09-08 14:30:49 +0200985 int i;
986
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,
Jaroslav Kyselad5e1ca02010-02-02 17:48:51 +0100991 *get_dummy_int_ptr(dummy, fields[i].offset));
Takashi Iwai9b151fe2009-09-08 14:30:49 +0200992 else
993 snd_iprintf(buffer, fields[i].format,
Jaroslav Kyselad5e1ca02010-02-02 17:48:51 +0100994 *get_dummy_ll_ptr(dummy, fields[i].offset));
Takashi Iwai9b151fe2009-09-08 14:30:49 +0200995 if (!strcmp(fields[i].name, "formats"))
Jaroslav Kyselad5e1ca02010-02-02 17:48:51 +0100996 print_formats(dummy, buffer);
Takashi Iwai9b151fe2009-09-08 14:30:49 +0200997 else if (!strcmp(fields[i].name, "rates"))
Jaroslav Kyselad5e1ca02010-02-02 17:48:51 +0100998 print_rates(dummy, buffer);
Takashi Iwai9b151fe2009-09-08 14:30:49 +0200999 snd_iprintf(buffer, "\n");
1000 }
1001}
1002
1003static void dummy_proc_write(struct snd_info_entry *entry,
1004 struct snd_info_buffer *buffer)
1005{
Jaroslav Kyselad5e1ca02010-02-02 17:48:51 +01001006 struct snd_dummy *dummy = entry->private_data;
Takashi Iwai9b151fe2009-09-08 14:30:49 +02001007 char line[64];
1008
1009 while (!snd_info_get_line(buffer, line, sizeof(line))) {
1010 char item[20];
1011 const char *ptr;
1012 unsigned long long val;
1013 int i;
1014
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))
1018 break;
1019 }
1020 if (i >= ARRAY_SIZE(fields))
1021 continue;
1022 snd_info_get_str(item, ptr, sizeof(item));
Jingoo Hanb785a492013-07-19 16:24:59 +09001023 if (kstrtoull(item, 0, &val))
Takashi Iwai9b151fe2009-09-08 14:30:49 +02001024 continue;
1025 if (fields[i].size == sizeof(int))
Jaroslav Kyselad5e1ca02010-02-02 17:48:51 +01001026 *get_dummy_int_ptr(dummy, fields[i].offset) = val;
Takashi Iwai9b151fe2009-09-08 14:30:49 +02001027 else
Jaroslav Kyselad5e1ca02010-02-02 17:48:51 +01001028 *get_dummy_ll_ptr(dummy, fields[i].offset) = val;
Takashi Iwai9b151fe2009-09-08 14:30:49 +02001029 }
1030}
1031
Bill Pembertonfbbb01a2012-12-06 12:35:27 -05001032static void dummy_proc_init(struct snd_dummy *chip)
Takashi Iwai9b151fe2009-09-08 14:30:49 +02001033{
1034 struct snd_info_entry *entry;
1035
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;
Jaroslav Kyselad5e1ca02010-02-02 17:48:51 +01001040 entry->private_data = chip;
Takashi Iwai9b151fe2009-09-08 14:30:49 +02001041 }
1042}
1043#else
1044#define dummy_proc_init(x)
Takashi Iwai129a4c92015-05-29 07:47:50 +02001045#endif /* CONFIG_SND_DEBUG && CONFIG_SND_PROC_FS */
Takashi Iwai9b151fe2009-09-08 14:30:49 +02001046
Bill Pembertonfbbb01a2012-12-06 12:35:27 -05001047static int snd_dummy_probe(struct platform_device *devptr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001048{
Takashi Iwai4a4d2cf2005-11-17 14:27:28 +01001049 struct snd_card *card;
1050 struct snd_dummy *dummy;
Jaroslav Kyselad5e1ca02010-02-02 17:48:51 +01001051 struct dummy_model *m = NULL, **mdl;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001052 int idx, err;
Takashi Iwai6e65c1c2005-11-17 16:01:56 +01001053 int dev = devptr->id;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001054
Takashi Iwai5872f3f2014-01-29 12:59:08 +01001055 err = snd_card_new(&devptr->dev, index[dev], id[dev], THIS_MODULE,
1056 sizeof(struct snd_dummy), &card);
Takashi Iwaibd7dd772008-12-28 16:45:02 +01001057 if (err < 0)
1058 return err;
Takashi Iwai4a4d2cf2005-11-17 14:27:28 +01001059 dummy = card->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001060 dummy->card = card;
Jaroslav Kyselad5e1ca02010-02-02 17:48:51 +01001061 for (mdl = dummy_models; *mdl && model[dev]; mdl++) {
1062 if (strcmp(model[dev], (*mdl)->name) == 0) {
1063 printk(KERN_INFO
1064 "snd-dummy: Using model '%s' for card %i\n",
1065 (*mdl)->name, card->number);
1066 m = dummy->model = *mdl;
1067 break;
1068 }
1069 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001070 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;
Jaroslav Kysela1a11cb62008-08-15 12:59:02 +02001075 err = snd_card_dummy_pcm(dummy, idx, pcm_substreams[dev]);
1076 if (err < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001077 goto __nodev;
1078 }
Jaroslav Kyselad5e1ca02010-02-02 17:48:51 +01001079
1080 dummy->pcm_hw = dummy_pcm_hardware;
1081 if (m) {
1082 if (m->formats)
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;
1090 if (m->periods_min)
1091 dummy->pcm_hw.periods_min = m->periods_min;
1092 if (m->periods_max)
1093 dummy->pcm_hw.periods_max = m->periods_max;
1094 if (m->rates)
1095 dummy->pcm_hw.rates = m->rates;
1096 if (m->rate_min)
1097 dummy->pcm_hw.rate_min = m->rate_min;
1098 if (m->rate_max)
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;
1104 }
1105
Jaroslav Kysela1a11cb62008-08-15 12:59:02 +02001106 err = snd_card_dummy_new_mixer(dummy);
1107 if (err < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001108 goto __nodev;
1109 strcpy(card->driver, "Dummy");
1110 strcpy(card->shortname, "Dummy");
1111 sprintf(card->longname, "Dummy %i", dev + 1);
Takashi Iwai16dab542005-09-05 17:17:58 +02001112
Takashi Iwai9b151fe2009-09-08 14:30:49 +02001113 dummy_proc_init(dummy);
1114
Jaroslav Kysela1a11cb62008-08-15 12:59:02 +02001115 err = snd_card_register(card);
1116 if (err == 0) {
Takashi Iwai6e65c1c2005-11-17 16:01:56 +01001117 platform_set_drvdata(devptr, card);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001118 return 0;
1119 }
1120 __nodev:
1121 snd_card_free(card);
1122 return err;
1123}
1124
Bill Pembertonfbbb01a2012-12-06 12:35:27 -05001125static int snd_dummy_remove(struct platform_device *devptr)
Takashi Iwai6e65c1c2005-11-17 16:01:56 +01001126{
1127 snd_card_free(platform_get_drvdata(devptr));
Takashi Iwai6e65c1c2005-11-17 16:01:56 +01001128 return 0;
1129}
1130
Takashi Iwaid34e4e02012-08-09 15:47:15 +02001131#ifdef CONFIG_PM_SLEEP
Takashi Iwai284e7ca2012-07-02 11:22:40 +02001132static int snd_dummy_suspend(struct device *pdev)
Takashi Iwai6e65c1c2005-11-17 16:01:56 +01001133{
Takashi Iwai284e7ca2012-07-02 11:22:40 +02001134 struct snd_card *card = dev_get_drvdata(pdev);
Takashi Iwai6e65c1c2005-11-17 16:01:56 +01001135 struct snd_dummy *dummy = card->private_data;
1136
1137 snd_power_change_state(card, SNDRV_CTL_POWER_D3hot);
1138 snd_pcm_suspend_all(dummy->pcm);
1139 return 0;
1140}
1141
Takashi Iwai284e7ca2012-07-02 11:22:40 +02001142static int snd_dummy_resume(struct device *pdev)
Takashi Iwai6e65c1c2005-11-17 16:01:56 +01001143{
Takashi Iwai284e7ca2012-07-02 11:22:40 +02001144 struct snd_card *card = dev_get_drvdata(pdev);
Takashi Iwai6e65c1c2005-11-17 16:01:56 +01001145
1146 snd_power_change_state(card, SNDRV_CTL_POWER_D0);
1147 return 0;
1148}
Takashi Iwai284e7ca2012-07-02 11:22:40 +02001149
1150static SIMPLE_DEV_PM_OPS(snd_dummy_pm, snd_dummy_suspend, snd_dummy_resume);
1151#define SND_DUMMY_PM_OPS &snd_dummy_pm
1152#else
1153#define SND_DUMMY_PM_OPS NULL
Takashi Iwai6e65c1c2005-11-17 16:01:56 +01001154#endif
1155
1156#define SND_DUMMY_DRIVER "snd_dummy"
1157
1158static struct platform_driver snd_dummy_driver = {
1159 .probe = snd_dummy_probe,
Bill Pembertonfbbb01a2012-12-06 12:35:27 -05001160 .remove = snd_dummy_remove,
Takashi Iwai6e65c1c2005-11-17 16:01:56 +01001161 .driver = {
Takashi Iwai8bf01d82012-07-02 10:50:24 +02001162 .name = SND_DUMMY_DRIVER,
Takashi Iwai284e7ca2012-07-02 11:22:40 +02001163 .pm = SND_DUMMY_PM_OPS,
Takashi Iwai6e65c1c2005-11-17 16:01:56 +01001164 },
1165};
1166
Randy Dunlapc12aad62007-06-25 12:08:01 +02001167static void snd_dummy_unregister_all(void)
Clemens Ladischf7a92752005-12-07 09:13:42 +01001168{
1169 int i;
1170
1171 for (i = 0; i < ARRAY_SIZE(devices); ++i)
1172 platform_device_unregister(devices[i]);
1173 platform_driver_unregister(&snd_dummy_driver);
Takashi Iwaia68c4d12009-09-04 12:19:36 +02001174 free_fake_buffer();
Clemens Ladischf7a92752005-12-07 09:13:42 +01001175}
1176
Linus Torvalds1da177e2005-04-16 15:20:36 -07001177static int __init alsa_card_dummy_init(void)
1178{
Takashi Iwai6e65c1c2005-11-17 16:01:56 +01001179 int i, cards, err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001180
Jaroslav Kysela1a11cb62008-08-15 12:59:02 +02001181 err = platform_driver_register(&snd_dummy_driver);
1182 if (err < 0)
Takashi Iwai6e65c1c2005-11-17 16:01:56 +01001183 return err;
1184
Takashi Iwaia68c4d12009-09-04 12:19:36 +02001185 err = alloc_fake_buffer();
1186 if (err < 0) {
1187 platform_driver_unregister(&snd_dummy_driver);
1188 return err;
1189 }
1190
Takashi Iwai6e65c1c2005-11-17 16:01:56 +01001191 cards = 0;
Takashi Iwai8278ca82006-02-20 11:57:34 +01001192 for (i = 0; i < SNDRV_CARDS; i++) {
Takashi Iwai6e65c1c2005-11-17 16:01:56 +01001193 struct platform_device *device;
Takashi Iwai8278ca82006-02-20 11:57:34 +01001194 if (! enable[i])
1195 continue;
Takashi Iwai6e65c1c2005-11-17 16:01:56 +01001196 device = platform_device_register_simple(SND_DUMMY_DRIVER,
1197 i, NULL, 0);
Rene Hermana182ee92006-04-13 12:57:11 +02001198 if (IS_ERR(device))
1199 continue;
Rene Herman71524472006-04-13 12:58:06 +02001200 if (!platform_get_drvdata(device)) {
1201 platform_device_unregister(device);
1202 continue;
1203 }
Clemens Ladischf7a92752005-12-07 09:13:42 +01001204 devices[i] = device;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001205 cards++;
1206 }
1207 if (!cards) {
1208#ifdef MODULE
1209 printk(KERN_ERR "Dummy soundcard not found or device busy\n");
1210#endif
Rene Hermana182ee92006-04-13 12:57:11 +02001211 snd_dummy_unregister_all();
1212 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001213 }
1214 return 0;
1215}
1216
1217static void __exit alsa_card_dummy_exit(void)
1218{
Clemens Ladischf7a92752005-12-07 09:13:42 +01001219 snd_dummy_unregister_all();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001220}
1221
1222module_init(alsa_card_dummy_init)
1223module_exit(alsa_card_dummy_exit)