blob: 172dacd925f5721c2726194ddb917aa612f4afc3 [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
Takashi Iwaiddce57a2016-02-02 15:27:36 +010090module_param(hrtimer, bool, 0644);
Takashi Iwaic631d032009-09-03 15:59:26 +020091MODULE_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
Takashi Iwaiddce57a2016-02-02 15:27:36 +0100112#define get_dummy_ops(substream) \
113 (*(const struct dummy_timer_ops **)(substream)->runtime->private_data)
114
Jaroslav Kyselad5e1ca02010-02-02 17:48:51 +0100115struct dummy_model {
116 const char *name;
117 int (*playback_constraints)(struct snd_pcm_runtime *runtime);
118 int (*capture_constraints)(struct snd_pcm_runtime *runtime);
119 u64 formats;
120 size_t buffer_bytes_max;
121 size_t period_bytes_min;
122 size_t period_bytes_max;
123 unsigned int periods_min;
124 unsigned int periods_max;
125 unsigned int rates;
126 unsigned int rate_min;
127 unsigned int rate_max;
128 unsigned int channels_min;
129 unsigned int channels_max;
130};
131
Takashi Iwai4a4d2cf2005-11-17 14:27:28 +0100132struct snd_dummy {
133 struct snd_card *card;
Jaroslav Kyselad5e1ca02010-02-02 17:48:51 +0100134 struct dummy_model *model;
Takashi Iwai6e65c1c2005-11-17 16:01:56 +0100135 struct snd_pcm *pcm;
Jaroslav Kyselad5e1ca02010-02-02 17:48:51 +0100136 struct snd_pcm_hardware pcm_hw;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137 spinlock_t mixer_lock;
138 int mixer_volume[MIXER_ADDR_LAST+1][2];
139 int capture_source[MIXER_ADDR_LAST+1][2];
Clemens Ladisch16e434672012-10-20 12:21:36 +0200140 int iobox;
141 struct snd_kcontrol *cd_volume_ctl;
142 struct snd_kcontrol *cd_switch_ctl;
Takashi Iwai4a4d2cf2005-11-17 14:27:28 +0100143};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144
Takashi Iwaic631d032009-09-03 15:59:26 +0200145/*
Jaroslav Kyselad5e1ca02010-02-02 17:48:51 +0100146 * card models
147 */
148
149static int emu10k1_playback_constraints(struct snd_pcm_runtime *runtime)
150{
151 int err;
152 err = snd_pcm_hw_constraint_integer(runtime, SNDRV_PCM_HW_PARAM_PERIODS);
153 if (err < 0)
154 return err;
155 err = snd_pcm_hw_constraint_minmax(runtime, SNDRV_PCM_HW_PARAM_BUFFER_BYTES, 256, UINT_MAX);
156 if (err < 0)
157 return err;
158 return 0;
159}
160
Takashi Iwaie4c28682015-05-26 12:51:35 +0200161static struct dummy_model model_emu10k1 = {
Jaroslav Kyselad5e1ca02010-02-02 17:48:51 +0100162 .name = "emu10k1",
163 .playback_constraints = emu10k1_playback_constraints,
164 .buffer_bytes_max = 128 * 1024,
165};
166
Takashi Iwaie4c28682015-05-26 12:51:35 +0200167static struct dummy_model model_rme9652 = {
Jaroslav Kyselad5e1ca02010-02-02 17:48:51 +0100168 .name = "rme9652",
169 .buffer_bytes_max = 26 * 64 * 1024,
170 .formats = SNDRV_PCM_FMTBIT_S32_LE,
171 .channels_min = 26,
172 .channels_max = 26,
173 .periods_min = 2,
174 .periods_max = 2,
175};
176
Takashi Iwaie4c28682015-05-26 12:51:35 +0200177static struct dummy_model model_ice1712 = {
Jaroslav Kyselad5e1ca02010-02-02 17:48:51 +0100178 .name = "ice1712",
179 .buffer_bytes_max = 256 * 1024,
180 .formats = SNDRV_PCM_FMTBIT_S32_LE,
181 .channels_min = 10,
182 .channels_max = 10,
183 .periods_min = 1,
184 .periods_max = 1024,
185};
186
Takashi Iwaie4c28682015-05-26 12:51:35 +0200187static struct dummy_model model_uda1341 = {
Jaroslav Kyselad5e1ca02010-02-02 17:48:51 +0100188 .name = "uda1341",
189 .buffer_bytes_max = 16380,
190 .formats = SNDRV_PCM_FMTBIT_S16_LE,
191 .channels_min = 2,
192 .channels_max = 2,
193 .periods_min = 2,
194 .periods_max = 255,
195};
196
Takashi Iwaie4c28682015-05-26 12:51:35 +0200197static struct dummy_model model_ac97 = {
Jaroslav Kyselad5e1ca02010-02-02 17:48:51 +0100198 .name = "ac97",
199 .formats = SNDRV_PCM_FMTBIT_S16_LE,
200 .channels_min = 2,
201 .channels_max = 2,
202 .rates = SNDRV_PCM_RATE_48000,
203 .rate_min = 48000,
204 .rate_max = 48000,
205};
206
Takashi Iwaie4c28682015-05-26 12:51:35 +0200207static struct dummy_model model_ca0106 = {
Jaroslav Kyselad5e1ca02010-02-02 17:48:51 +0100208 .name = "ca0106",
209 .formats = SNDRV_PCM_FMTBIT_S16_LE,
210 .buffer_bytes_max = ((65536-64)*8),
211 .period_bytes_max = (65536-64),
212 .periods_min = 2,
213 .periods_max = 8,
214 .channels_min = 2,
215 .channels_max = 2,
216 .rates = SNDRV_PCM_RATE_48000|SNDRV_PCM_RATE_96000|SNDRV_PCM_RATE_192000,
217 .rate_min = 48000,
218 .rate_max = 192000,
219};
220
Takashi Iwaie4c28682015-05-26 12:51:35 +0200221static struct dummy_model *dummy_models[] = {
Jaroslav Kyselad5e1ca02010-02-02 17:48:51 +0100222 &model_emu10k1,
223 &model_rme9652,
224 &model_ice1712,
225 &model_uda1341,
226 &model_ac97,
227 &model_ca0106,
228 NULL
229};
230
231/*
Takashi Iwaic631d032009-09-03 15:59:26 +0200232 * system timer interface
233 */
234
235struct dummy_systimer_pcm {
Takashi Iwaiddce57a2016-02-02 15:27:36 +0100236 /* ops must be the first item */
237 const struct dummy_timer_ops *timer_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700238 spinlock_t lock;
239 struct timer_list timer;
Takashi Iwaib1420372009-09-03 16:01:06 +0200240 unsigned long base_time;
241 unsigned int frac_pos; /* fractional sample position (based HZ) */
Takashi Iwaib5d10782009-09-04 08:45:11 +0200242 unsigned int frac_period_rest;
Takashi Iwaib1420372009-09-03 16:01:06 +0200243 unsigned int frac_buffer_size; /* buffer_size * HZ */
244 unsigned int frac_period_size; /* period_size * HZ */
245 unsigned int rate;
Takashi Iwaib5d10782009-09-04 08:45:11 +0200246 int elapsed;
Takashi Iwai4a4d2cf2005-11-17 14:27:28 +0100247 struct snd_pcm_substream *substream;
248};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249
Takashi Iwaib1420372009-09-03 16:01:06 +0200250static void dummy_systimer_rearm(struct dummy_systimer_pcm *dpcm)
251{
Roman Kollar2a52b6e2015-01-19 10:42:54 +0100252 mod_timer(&dpcm->timer, jiffies +
253 (dpcm->frac_period_rest + dpcm->rate - 1) / dpcm->rate);
Takashi Iwaib1420372009-09-03 16:01:06 +0200254}
255
256static void dummy_systimer_update(struct dummy_systimer_pcm *dpcm)
257{
258 unsigned long delta;
259
260 delta = jiffies - dpcm->base_time;
261 if (!delta)
262 return;
Takashi Iwaib5d10782009-09-04 08:45:11 +0200263 dpcm->base_time += delta;
264 delta *= dpcm->rate;
265 dpcm->frac_pos += delta;
Takashi Iwaib1420372009-09-03 16:01:06 +0200266 while (dpcm->frac_pos >= dpcm->frac_buffer_size)
267 dpcm->frac_pos -= dpcm->frac_buffer_size;
Takashi Iwaib5d10782009-09-04 08:45:11 +0200268 while (dpcm->frac_period_rest <= delta) {
269 dpcm->elapsed++;
270 dpcm->frac_period_rest += dpcm->frac_period_size;
271 }
272 dpcm->frac_period_rest -= delta;
Takashi Iwaib1420372009-09-03 16:01:06 +0200273}
274
Takashi Iwaic631d032009-09-03 15:59:26 +0200275static int dummy_systimer_start(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276{
Takashi Iwaic631d032009-09-03 15:59:26 +0200277 struct dummy_systimer_pcm *dpcm = substream->runtime->private_data;
278 spin_lock(&dpcm->lock);
Takashi Iwaib1420372009-09-03 16:01:06 +0200279 dpcm->base_time = jiffies;
280 dummy_systimer_rearm(dpcm);
Takashi Iwaic8eb6ba2005-11-17 10:20:23 +0100281 spin_unlock(&dpcm->lock);
Takashi Iwai6e65c1c2005-11-17 16:01:56 +0100282 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700283}
284
Takashi Iwaic631d032009-09-03 15:59:26 +0200285static int dummy_systimer_stop(struct snd_pcm_substream *substream)
286{
287 struct dummy_systimer_pcm *dpcm = substream->runtime->private_data;
288 spin_lock(&dpcm->lock);
289 del_timer(&dpcm->timer);
290 spin_unlock(&dpcm->lock);
291 return 0;
292}
293
294static int dummy_systimer_prepare(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295{
Takashi Iwai4a4d2cf2005-11-17 14:27:28 +0100296 struct snd_pcm_runtime *runtime = substream->runtime;
Takashi Iwaic631d032009-09-03 15:59:26 +0200297 struct dummy_systimer_pcm *dpcm = runtime->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700298
Takashi Iwaib1420372009-09-03 16:01:06 +0200299 dpcm->frac_pos = 0;
300 dpcm->rate = runtime->rate;
301 dpcm->frac_buffer_size = runtime->buffer_size * HZ;
302 dpcm->frac_period_size = runtime->period_size * HZ;
Takashi Iwaib5d10782009-09-04 08:45:11 +0200303 dpcm->frac_period_rest = dpcm->frac_period_size;
304 dpcm->elapsed = 0;
Ahmet Ä°nan53463a82008-02-21 07:55:30 +0100305
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306 return 0;
307}
308
Takashi Iwaic631d032009-09-03 15:59:26 +0200309static void dummy_systimer_callback(unsigned long data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310{
Takashi Iwaic631d032009-09-03 15:59:26 +0200311 struct dummy_systimer_pcm *dpcm = (struct dummy_systimer_pcm *)data;
Takashi Iwaib32425a2005-11-18 18:52:14 +0100312 unsigned long flags;
Takashi Iwaib5d10782009-09-04 08:45:11 +0200313 int elapsed = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314
Takashi Iwaib32425a2005-11-18 18:52:14 +0100315 spin_lock_irqsave(&dpcm->lock, flags);
Takashi Iwaib1420372009-09-03 16:01:06 +0200316 dummy_systimer_update(dpcm);
317 dummy_systimer_rearm(dpcm);
Takashi Iwaib5d10782009-09-04 08:45:11 +0200318 elapsed = dpcm->elapsed;
319 dpcm->elapsed = 0;
Takashi Iwaib1420372009-09-03 16:01:06 +0200320 spin_unlock_irqrestore(&dpcm->lock, flags);
Takashi Iwaib5d10782009-09-04 08:45:11 +0200321 if (elapsed)
322 snd_pcm_period_elapsed(dpcm->substream);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700323}
324
Takashi Iwaic631d032009-09-03 15:59:26 +0200325static snd_pcm_uframes_t
326dummy_systimer_pointer(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327{
Takashi Iwaib1420372009-09-03 16:01:06 +0200328 struct dummy_systimer_pcm *dpcm = substream->runtime->private_data;
Takashi Iwaib5d10782009-09-04 08:45:11 +0200329 snd_pcm_uframes_t pos;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700330
Takashi Iwaib1420372009-09-03 16:01:06 +0200331 spin_lock(&dpcm->lock);
332 dummy_systimer_update(dpcm);
Takashi Iwaib5d10782009-09-04 08:45:11 +0200333 pos = dpcm->frac_pos / HZ;
Takashi Iwaib1420372009-09-03 16:01:06 +0200334 spin_unlock(&dpcm->lock);
Takashi Iwaib5d10782009-09-04 08:45:11 +0200335 return pos;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700336}
337
Takashi Iwaic631d032009-09-03 15:59:26 +0200338static int dummy_systimer_create(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700339{
Takashi Iwaic631d032009-09-03 15:59:26 +0200340 struct dummy_systimer_pcm *dpcm;
341
342 dpcm = kzalloc(sizeof(*dpcm), GFP_KERNEL);
343 if (!dpcm)
344 return -ENOMEM;
345 substream->runtime->private_data = dpcm;
Roman Kollar2a52b6e2015-01-19 10:42:54 +0100346 setup_timer(&dpcm->timer, dummy_systimer_callback,
347 (unsigned long) dpcm);
Takashi Iwaic631d032009-09-03 15:59:26 +0200348 spin_lock_init(&dpcm->lock);
349 dpcm->substream = substream;
350 return 0;
351}
352
353static void dummy_systimer_free(struct snd_pcm_substream *substream)
354{
355 kfree(substream->runtime->private_data);
356}
357
Julia Lawalld8c5ed72015-12-30 12:28:49 +0100358static const struct dummy_timer_ops dummy_systimer_ops = {
Takashi Iwaic631d032009-09-03 15:59:26 +0200359 .create = dummy_systimer_create,
360 .free = dummy_systimer_free,
361 .prepare = dummy_systimer_prepare,
362 .start = dummy_systimer_start,
363 .stop = dummy_systimer_stop,
364 .pointer = dummy_systimer_pointer,
365};
366
367#ifdef CONFIG_HIGH_RES_TIMERS
368/*
369 * hrtimer interface
370 */
371
372struct dummy_hrtimer_pcm {
Takashi Iwaiddce57a2016-02-02 15:27:36 +0100373 /* ops must be the first item */
374 const struct dummy_timer_ops *timer_ops;
Takashi Iwaic631d032009-09-03 15:59:26 +0200375 ktime_t base_time;
376 ktime_t period_time;
377 atomic_t running;
378 struct hrtimer timer;
379 struct tasklet_struct tasklet;
380 struct snd_pcm_substream *substream;
381};
382
383static void dummy_hrtimer_pcm_elapsed(unsigned long priv)
384{
385 struct dummy_hrtimer_pcm *dpcm = (struct dummy_hrtimer_pcm *)priv;
386 if (atomic_read(&dpcm->running))
387 snd_pcm_period_elapsed(dpcm->substream);
388}
389
390static enum hrtimer_restart dummy_hrtimer_callback(struct hrtimer *timer)
391{
392 struct dummy_hrtimer_pcm *dpcm;
393
394 dpcm = container_of(timer, struct dummy_hrtimer_pcm, timer);
395 if (!atomic_read(&dpcm->running))
396 return HRTIMER_NORESTART;
397 tasklet_schedule(&dpcm->tasklet);
398 hrtimer_forward_now(timer, dpcm->period_time);
399 return HRTIMER_RESTART;
400}
401
402static int dummy_hrtimer_start(struct snd_pcm_substream *substream)
403{
404 struct dummy_hrtimer_pcm *dpcm = substream->runtime->private_data;
405
406 dpcm->base_time = hrtimer_cb_get_time(&dpcm->timer);
407 hrtimer_start(&dpcm->timer, dpcm->period_time, HRTIMER_MODE_REL);
408 atomic_set(&dpcm->running, 1);
409 return 0;
410}
411
412static int dummy_hrtimer_stop(struct snd_pcm_substream *substream)
413{
414 struct dummy_hrtimer_pcm *dpcm = substream->runtime->private_data;
415
416 atomic_set(&dpcm->running, 0);
417 hrtimer_cancel(&dpcm->timer);
418 return 0;
419}
420
421static inline void dummy_hrtimer_sync(struct dummy_hrtimer_pcm *dpcm)
422{
Takashi Iwaid5dbbe62016-06-24 15:15:26 +0200423 hrtimer_cancel(&dpcm->timer);
Takashi Iwaic631d032009-09-03 15:59:26 +0200424 tasklet_kill(&dpcm->tasklet);
425}
426
427static snd_pcm_uframes_t
428dummy_hrtimer_pointer(struct snd_pcm_substream *substream)
429{
430 struct snd_pcm_runtime *runtime = substream->runtime;
431 struct dummy_hrtimer_pcm *dpcm = runtime->private_data;
432 u64 delta;
433 u32 pos;
434
435 delta = ktime_us_delta(hrtimer_cb_get_time(&dpcm->timer),
436 dpcm->base_time);
437 delta = div_u64(delta * runtime->rate + 999999, 1000000);
438 div_u64_rem(delta, runtime->buffer_size, &pos);
439 return pos;
440}
441
442static int dummy_hrtimer_prepare(struct snd_pcm_substream *substream)
443{
444 struct snd_pcm_runtime *runtime = substream->runtime;
445 struct dummy_hrtimer_pcm *dpcm = runtime->private_data;
446 unsigned int period, rate;
447 long sec;
448 unsigned long nsecs;
449
450 dummy_hrtimer_sync(dpcm);
451 period = runtime->period_size;
452 rate = runtime->rate;
453 sec = period / rate;
454 period %= rate;
455 nsecs = div_u64((u64)period * 1000000000UL + rate - 1, rate);
456 dpcm->period_time = ktime_set(sec, nsecs);
457
458 return 0;
459}
460
461static int dummy_hrtimer_create(struct snd_pcm_substream *substream)
462{
463 struct dummy_hrtimer_pcm *dpcm;
464
465 dpcm = kzalloc(sizeof(*dpcm), GFP_KERNEL);
466 if (!dpcm)
467 return -ENOMEM;
468 substream->runtime->private_data = dpcm;
469 hrtimer_init(&dpcm->timer, CLOCK_MONOTONIC, HRTIMER_MODE_REL);
470 dpcm->timer.function = dummy_hrtimer_callback;
471 dpcm->substream = substream;
472 atomic_set(&dpcm->running, 0);
473 tasklet_init(&dpcm->tasklet, dummy_hrtimer_pcm_elapsed,
474 (unsigned long)dpcm);
475 return 0;
476}
477
478static void dummy_hrtimer_free(struct snd_pcm_substream *substream)
479{
480 struct dummy_hrtimer_pcm *dpcm = substream->runtime->private_data;
481 dummy_hrtimer_sync(dpcm);
482 kfree(dpcm);
483}
484
Julia Lawalld8c5ed72015-12-30 12:28:49 +0100485static const struct dummy_timer_ops dummy_hrtimer_ops = {
Takashi Iwaic631d032009-09-03 15:59:26 +0200486 .create = dummy_hrtimer_create,
487 .free = dummy_hrtimer_free,
488 .prepare = dummy_hrtimer_prepare,
489 .start = dummy_hrtimer_start,
490 .stop = dummy_hrtimer_stop,
491 .pointer = dummy_hrtimer_pointer,
492};
493
494#endif /* CONFIG_HIGH_RES_TIMERS */
495
496/*
497 * PCM interface
498 */
499
500static int dummy_pcm_trigger(struct snd_pcm_substream *substream, int cmd)
501{
Takashi Iwaic631d032009-09-03 15:59:26 +0200502 switch (cmd) {
503 case SNDRV_PCM_TRIGGER_START:
504 case SNDRV_PCM_TRIGGER_RESUME:
Takashi Iwaiddce57a2016-02-02 15:27:36 +0100505 return get_dummy_ops(substream)->start(substream);
Takashi Iwaic631d032009-09-03 15:59:26 +0200506 case SNDRV_PCM_TRIGGER_STOP:
507 case SNDRV_PCM_TRIGGER_SUSPEND:
Takashi Iwaiddce57a2016-02-02 15:27:36 +0100508 return get_dummy_ops(substream)->stop(substream);
Takashi Iwaic631d032009-09-03 15:59:26 +0200509 }
510 return -EINVAL;
511}
512
513static int dummy_pcm_prepare(struct snd_pcm_substream *substream)
514{
Takashi Iwaiddce57a2016-02-02 15:27:36 +0100515 return get_dummy_ops(substream)->prepare(substream);
Takashi Iwaic631d032009-09-03 15:59:26 +0200516}
517
518static snd_pcm_uframes_t dummy_pcm_pointer(struct snd_pcm_substream *substream)
519{
Takashi Iwaiddce57a2016-02-02 15:27:36 +0100520 return get_dummy_ops(substream)->pointer(substream);
Takashi Iwaic631d032009-09-03 15:59:26 +0200521}
522
523static struct snd_pcm_hardware dummy_pcm_hardware = {
524 .info = (SNDRV_PCM_INFO_MMAP |
525 SNDRV_PCM_INFO_INTERLEAVED |
526 SNDRV_PCM_INFO_RESUME |
527 SNDRV_PCM_INFO_MMAP_VALID),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700528 .formats = USE_FORMATS,
529 .rates = USE_RATE,
530 .rate_min = USE_RATE_MIN,
531 .rate_max = USE_RATE_MAX,
532 .channels_min = USE_CHANNELS_MIN,
533 .channels_max = USE_CHANNELS_MAX,
534 .buffer_bytes_max = MAX_BUFFER_SIZE,
Jaroslav Kyselad5e1ca02010-02-02 17:48:51 +0100535 .period_bytes_min = MIN_PERIOD_SIZE,
Takashi Iwaie05d6962006-08-17 17:12:19 +0200536 .period_bytes_max = MAX_PERIOD_SIZE,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700537 .periods_min = USE_PERIODS_MIN,
538 .periods_max = USE_PERIODS_MAX,
539 .fifo_size = 0,
540};
541
Takashi Iwaic631d032009-09-03 15:59:26 +0200542static int dummy_pcm_hw_params(struct snd_pcm_substream *substream,
543 struct snd_pcm_hw_params *hw_params)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700544{
Takashi Iwaia68c4d12009-09-04 12:19:36 +0200545 if (fake_buffer) {
546 /* runtime->dma_bytes has to be set manually to allow mmap */
547 substream->runtime->dma_bytes = params_buffer_bytes(hw_params);
548 return 0;
549 }
Takashi Iwaic631d032009-09-03 15:59:26 +0200550 return snd_pcm_lib_malloc_pages(substream,
551 params_buffer_bytes(hw_params));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700552}
553
Takashi Iwaic631d032009-09-03 15:59:26 +0200554static int dummy_pcm_hw_free(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700555{
Takashi Iwaia68c4d12009-09-04 12:19:36 +0200556 if (fake_buffer)
557 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700558 return snd_pcm_lib_free_pages(substream);
559}
560
Takashi Iwaic631d032009-09-03 15:59:26 +0200561static int dummy_pcm_open(struct snd_pcm_substream *substream)
Takashi Iwaic8eb6ba2005-11-17 10:20:23 +0100562{
Takashi Iwaic631d032009-09-03 15:59:26 +0200563 struct snd_dummy *dummy = snd_pcm_substream_chip(substream);
Jaroslav Kyselad5e1ca02010-02-02 17:48:51 +0100564 struct dummy_model *model = dummy->model;
Takashi Iwai4a4d2cf2005-11-17 14:27:28 +0100565 struct snd_pcm_runtime *runtime = substream->runtime;
Takashi Iwaiddce57a2016-02-02 15:27:36 +0100566 const struct dummy_timer_ops *ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700567 int err;
568
Takashi Iwaiddce57a2016-02-02 15:27:36 +0100569 ops = &dummy_systimer_ops;
Takashi Iwaic631d032009-09-03 15:59:26 +0200570#ifdef CONFIG_HIGH_RES_TIMERS
571 if (hrtimer)
Takashi Iwaiddce57a2016-02-02 15:27:36 +0100572 ops = &dummy_hrtimer_ops;
Takashi Iwaic631d032009-09-03 15:59:26 +0200573#endif
574
Takashi Iwaiddce57a2016-02-02 15:27:36 +0100575 err = ops->create(substream);
Takashi Iwaic631d032009-09-03 15:59:26 +0200576 if (err < 0)
577 return err;
Takashi Iwaiddce57a2016-02-02 15:27:36 +0100578 get_dummy_ops(substream) = ops;
Takashi Iwaic631d032009-09-03 15:59:26 +0200579
Jaroslav Kyselad5e1ca02010-02-02 17:48:51 +0100580 runtime->hw = dummy->pcm_hw;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700581 if (substream->pcm->device & 1) {
582 runtime->hw.info &= ~SNDRV_PCM_INFO_INTERLEAVED;
583 runtime->hw.info |= SNDRV_PCM_INFO_NONINTERLEAVED;
584 }
585 if (substream->pcm->device & 2)
Takashi Iwaic631d032009-09-03 15:59:26 +0200586 runtime->hw.info &= ~(SNDRV_PCM_INFO_MMAP |
587 SNDRV_PCM_INFO_MMAP_VALID);
588
Jaroslav Kyselad5e1ca02010-02-02 17:48:51 +0100589 if (model == NULL)
590 return 0;
591
592 if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK) {
593 if (model->playback_constraints)
594 err = model->playback_constraints(substream->runtime);
595 } else {
596 if (model->capture_constraints)
597 err = model->capture_constraints(substream->runtime);
598 }
Takashi Iwaic631d032009-09-03 15:59:26 +0200599 if (err < 0) {
Takashi Iwaiddce57a2016-02-02 15:27:36 +0100600 get_dummy_ops(substream)->free(substream);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700601 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700602 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700603 return 0;
604}
605
Takashi Iwaic631d032009-09-03 15:59:26 +0200606static int dummy_pcm_close(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700607{
Takashi Iwaiddce57a2016-02-02 15:27:36 +0100608 get_dummy_ops(substream)->free(substream);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700609 return 0;
610}
611
Takashi Iwaia68c4d12009-09-04 12:19:36 +0200612/*
613 * dummy buffer handling
614 */
615
616static void *dummy_page[2];
617
618static void free_fake_buffer(void)
619{
620 if (fake_buffer) {
621 int i;
622 for (i = 0; i < 2; i++)
623 if (dummy_page[i]) {
624 free_page((unsigned long)dummy_page[i]);
625 dummy_page[i] = NULL;
626 }
627 }
628}
629
630static int alloc_fake_buffer(void)
631{
632 int i;
633
634 if (!fake_buffer)
635 return 0;
636 for (i = 0; i < 2; i++) {
637 dummy_page[i] = (void *)get_zeroed_page(GFP_KERNEL);
638 if (!dummy_page[i]) {
639 free_fake_buffer();
640 return -ENOMEM;
641 }
642 }
643 return 0;
644}
645
646static 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)
649{
650 return 0; /* do nothing */
651}
652
653static int dummy_pcm_silence(struct snd_pcm_substream *substream,
654 int channel, snd_pcm_uframes_t pos,
655 snd_pcm_uframes_t count)
656{
657 return 0; /* do nothing */
658}
659
660static struct page *dummy_pcm_page(struct snd_pcm_substream *substream,
661 unsigned long offset)
662{
663 return virt_to_page(dummy_page[substream->stream]); /* the same page */
664}
665
Takashi Iwaic631d032009-09-03 15:59:26 +0200666static 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,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700675};
676
Takashi Iwaia68c4d12009-09-04 12:19:36 +0200677static 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,
689};
690
Bill Pembertonfbbb01a2012-12-06 12:35:27 -0500691static int snd_card_dummy_pcm(struct snd_dummy *dummy, int device,
692 int substreams)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700693{
Takashi Iwai4a4d2cf2005-11-17 14:27:28 +0100694 struct snd_pcm *pcm;
Takashi Iwaia68c4d12009-09-04 12:19:36 +0200695 struct snd_pcm_ops *ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700696 int err;
697
Jaroslav Kysela1a11cb62008-08-15 12:59:02 +0200698 err = snd_pcm_new(dummy->card, "Dummy PCM", device,
699 substreams, substreams, &pcm);
700 if (err < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700701 return err;
Takashi Iwai6e65c1c2005-11-17 16:01:56 +0100702 dummy->pcm = pcm;
Takashi Iwaia68c4d12009-09-04 12:19:36 +0200703 if (fake_buffer)
704 ops = &dummy_pcm_ops_no_buf;
705 else
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);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700709 pcm->private_data = dummy;
710 pcm->info_flags = 0;
711 strcpy(pcm->name, "Dummy PCM");
Takashi Iwaia68c4d12009-09-04 12:19:36 +0200712 if (!fake_buffer) {
713 snd_pcm_lib_preallocate_pages_for_all(pcm,
714 SNDRV_DMA_TYPE_CONTINUOUS,
715 snd_dma_continuous_data(GFP_KERNEL),
716 0, 64*1024);
717 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700718 return 0;
719}
720
Takashi Iwai9b151fe2009-09-08 14:30:49 +0200721/*
722 * mixer interface
723 */
724
Linus Torvalds1da177e2005-04-16 15:20:36 -0700725#define DUMMY_VOLUME(xname, xindex, addr) \
Takashi Iwaifb567a82006-08-23 13:07:19 +0200726{ .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \
727 .access = SNDRV_CTL_ELEM_ACCESS_READWRITE | SNDRV_CTL_ELEM_ACCESS_TLV_READ, \
728 .name = xname, .index = xindex, \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700729 .info = snd_dummy_volume_info, \
730 .get = snd_dummy_volume_get, .put = snd_dummy_volume_put, \
Takashi Iwaifb567a82006-08-23 13:07:19 +0200731 .private_value = addr, \
732 .tlv = { .p = db_scale_dummy } }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700733
Takashi Iwai4a4d2cf2005-11-17 14:27:28 +0100734static int snd_dummy_volume_info(struct snd_kcontrol *kcontrol,
735 struct snd_ctl_elem_info *uinfo)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700736{
737 uinfo->type = SNDRV_CTL_ELEM_TYPE_INTEGER;
738 uinfo->count = 2;
739 uinfo->value.integer.min = -50;
740 uinfo->value.integer.max = 100;
741 return 0;
742}
743
Takashi Iwai4a4d2cf2005-11-17 14:27:28 +0100744static int snd_dummy_volume_get(struct snd_kcontrol *kcontrol,
745 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700746{
Takashi Iwai4a4d2cf2005-11-17 14:27:28 +0100747 struct snd_dummy *dummy = snd_kcontrol_chip(kcontrol);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700748 int addr = kcontrol->private_value;
749
Takashi Iwaic8eb6ba2005-11-17 10:20:23 +0100750 spin_lock_irq(&dummy->mixer_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700751 ucontrol->value.integer.value[0] = dummy->mixer_volume[addr][0];
752 ucontrol->value.integer.value[1] = dummy->mixer_volume[addr][1];
Takashi Iwaic8eb6ba2005-11-17 10:20:23 +0100753 spin_unlock_irq(&dummy->mixer_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700754 return 0;
755}
756
Takashi Iwai4a4d2cf2005-11-17 14:27:28 +0100757static int snd_dummy_volume_put(struct snd_kcontrol *kcontrol,
758 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700759{
Takashi Iwai4a4d2cf2005-11-17 14:27:28 +0100760 struct snd_dummy *dummy = snd_kcontrol_chip(kcontrol);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700761 int change, addr = kcontrol->private_value;
762 int left, right;
763
764 left = ucontrol->value.integer.value[0];
765 if (left < -50)
766 left = -50;
767 if (left > 100)
768 left = 100;
769 right = ucontrol->value.integer.value[1];
770 if (right < -50)
771 right = -50;
772 if (right > 100)
773 right = 100;
Takashi Iwaic8eb6ba2005-11-17 10:20:23 +0100774 spin_lock_irq(&dummy->mixer_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700775 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;
Takashi Iwaic8eb6ba2005-11-17 10:20:23 +0100779 spin_unlock_irq(&dummy->mixer_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700780 return change;
781}
782
Takashi Iwai0cb29ea2007-01-29 15:33:49 +0100783static const DECLARE_TLV_DB_SCALE(db_scale_dummy, -4500, 30, 0);
Takashi Iwaifb567a82006-08-23 13:07:19 +0200784
Linus Torvalds1da177e2005-04-16 15:20:36 -0700785#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 }
790
Takashi Iwaia5ce8892007-07-23 15:42:26 +0200791#define snd_dummy_capsrc_info snd_ctl_boolean_stereo_info
Linus Torvalds1da177e2005-04-16 15:20:36 -0700792
Takashi Iwai4a4d2cf2005-11-17 14:27:28 +0100793static int snd_dummy_capsrc_get(struct snd_kcontrol *kcontrol,
794 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700795{
Takashi Iwai4a4d2cf2005-11-17 14:27:28 +0100796 struct snd_dummy *dummy = snd_kcontrol_chip(kcontrol);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700797 int addr = kcontrol->private_value;
798
Takashi Iwaic8eb6ba2005-11-17 10:20:23 +0100799 spin_lock_irq(&dummy->mixer_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700800 ucontrol->value.integer.value[0] = dummy->capture_source[addr][0];
801 ucontrol->value.integer.value[1] = dummy->capture_source[addr][1];
Takashi Iwaic8eb6ba2005-11-17 10:20:23 +0100802 spin_unlock_irq(&dummy->mixer_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700803 return 0;
804}
805
Takashi Iwai4a4d2cf2005-11-17 14:27:28 +0100806static int snd_dummy_capsrc_put(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700807{
Takashi Iwai4a4d2cf2005-11-17 14:27:28 +0100808 struct snd_dummy *dummy = snd_kcontrol_chip(kcontrol);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700809 int change, addr = kcontrol->private_value;
810 int left, right;
811
812 left = ucontrol->value.integer.value[0] & 1;
813 right = ucontrol->value.integer.value[1] & 1;
Takashi Iwaic8eb6ba2005-11-17 10:20:23 +0100814 spin_lock_irq(&dummy->mixer_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700815 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;
Takashi Iwaic8eb6ba2005-11-17 10:20:23 +0100819 spin_unlock_irq(&dummy->mixer_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700820 return change;
821}
822
Clemens Ladisch16e434672012-10-20 12:21:36 +0200823static int snd_dummy_iobox_info(struct snd_kcontrol *kcontrol,
824 struct snd_ctl_elem_info *info)
825{
826 const char *const names[] = { "None", "CD Player" };
827
828 return snd_ctl_enum_info(info, 1, 2, names);
829}
830
831static int snd_dummy_iobox_get(struct snd_kcontrol *kcontrol,
832 struct snd_ctl_elem_value *value)
833{
834 struct snd_dummy *dummy = snd_kcontrol_chip(kcontrol);
835
836 value->value.enumerated.item[0] = dummy->iobox;
837 return 0;
838}
839
840static int snd_dummy_iobox_put(struct snd_kcontrol *kcontrol,
841 struct snd_ctl_elem_value *value)
842{
843 struct snd_dummy *dummy = snd_kcontrol_chip(kcontrol);
844 int changed;
845
846 if (value->value.enumerated.item[0] > 1)
847 return -EINVAL;
848
849 changed = value->value.enumerated.item[0] != dummy->iobox;
850 if (changed) {
851 dummy->iobox = value->value.enumerated.item[0];
852
853 if (dummy->iobox) {
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;
858 } else {
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;
863 }
864
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);
869 }
870
871 return changed;
872}
873
Takashi Iwai4a4d2cf2005-11-17 14:27:28 +0100874static struct snd_kcontrol_new snd_dummy_controls[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700875DUMMY_VOLUME("Master Volume", 0, MIXER_ADDR_MASTER),
876DUMMY_CAPSRC("Master Capture Switch", 0, MIXER_ADDR_MASTER),
877DUMMY_VOLUME("Synth Volume", 0, MIXER_ADDR_SYNTH),
Takashi Iwaie05d6962006-08-17 17:12:19 +0200878DUMMY_CAPSRC("Synth Capture Switch", 0, MIXER_ADDR_SYNTH),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700879DUMMY_VOLUME("Line Volume", 0, MIXER_ADDR_LINE),
Takashi Iwaie05d6962006-08-17 17:12:19 +0200880DUMMY_CAPSRC("Line Capture Switch", 0, MIXER_ADDR_LINE),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700881DUMMY_VOLUME("Mic Volume", 0, MIXER_ADDR_MIC),
Takashi Iwaie05d6962006-08-17 17:12:19 +0200882DUMMY_CAPSRC("Mic Capture Switch", 0, MIXER_ADDR_MIC),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700883DUMMY_VOLUME("CD Volume", 0, MIXER_ADDR_CD),
Clemens Ladisch16e434672012-10-20 12:21:36 +0200884DUMMY_CAPSRC("CD Capture Switch", 0, MIXER_ADDR_CD),
885{
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,
891},
Linus Torvalds1da177e2005-04-16 15:20:36 -0700892};
893
Bill Pembertonfbbb01a2012-12-06 12:35:27 -0500894static int snd_card_dummy_new_mixer(struct snd_dummy *dummy)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700895{
Takashi Iwai4a4d2cf2005-11-17 14:27:28 +0100896 struct snd_card *card = dummy->card;
Clemens Ladisch16e434672012-10-20 12:21:36 +0200897 struct snd_kcontrol *kcontrol;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700898 unsigned int idx;
899 int err;
900
Linus Torvalds1da177e2005-04-16 15:20:36 -0700901 spin_lock_init(&dummy->mixer_lock);
902 strcpy(card->mixername, "Dummy Mixer");
Clemens Ladisch16e434672012-10-20 12:21:36 +0200903 dummy->iobox = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700904
905 for (idx = 0; idx < ARRAY_SIZE(snd_dummy_controls); idx++) {
Clemens Ladisch16e434672012-10-20 12:21:36 +0200906 kcontrol = snd_ctl_new1(&snd_dummy_controls[idx], dummy);
907 err = snd_ctl_add(card, kcontrol);
Jaroslav Kysela1a11cb62008-08-15 12:59:02 +0200908 if (err < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700909 return err;
Clemens Ladisch16e434672012-10-20 12:21:36 +0200910 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;
914
Linus Torvalds1da177e2005-04-16 15:20:36 -0700915 }
916 return 0;
917}
918
Takashi Iwai129a4c92015-05-29 07:47:50 +0200919#if defined(CONFIG_SND_DEBUG) && defined(CONFIG_SND_PROC_FS)
Takashi Iwai9b151fe2009-09-08 14:30:49 +0200920/*
921 * proc interface
922 */
Jaroslav Kyselad5e1ca02010-02-02 17:48:51 +0100923static void print_formats(struct snd_dummy *dummy,
924 struct snd_info_buffer *buffer)
Takashi Iwai9b151fe2009-09-08 14:30:49 +0200925{
926 int i;
927
928 for (i = 0; i < SNDRV_PCM_FORMAT_LAST; i++) {
Jaroslav Kyselad5e1ca02010-02-02 17:48:51 +0100929 if (dummy->pcm_hw.formats & (1ULL << i))
Takashi Iwai9b151fe2009-09-08 14:30:49 +0200930 snd_iprintf(buffer, " %s", snd_pcm_format_name(i));
931 }
932}
933
Jaroslav Kyselad5e1ca02010-02-02 17:48:51 +0100934static void print_rates(struct snd_dummy *dummy,
935 struct snd_info_buffer *buffer)
Takashi Iwai9b151fe2009-09-08 14:30:49 +0200936{
937 static int rates[] = {
938 5512, 8000, 11025, 16000, 22050, 32000, 44100, 48000,
939 64000, 88200, 96000, 176400, 192000,
940 };
941 int i;
942
Jaroslav Kyselad5e1ca02010-02-02 17:48:51 +0100943 if (dummy->pcm_hw.rates & SNDRV_PCM_RATE_CONTINUOUS)
Takashi Iwai9b151fe2009-09-08 14:30:49 +0200944 snd_iprintf(buffer, " continuous");
Jaroslav Kyselad5e1ca02010-02-02 17:48:51 +0100945 if (dummy->pcm_hw.rates & SNDRV_PCM_RATE_KNOT)
Takashi Iwai9b151fe2009-09-08 14:30:49 +0200946 snd_iprintf(buffer, " knot");
947 for (i = 0; i < ARRAY_SIZE(rates); i++)
Jaroslav Kyselad5e1ca02010-02-02 17:48:51 +0100948 if (dummy->pcm_hw.rates & (1 << i))
Takashi Iwai9b151fe2009-09-08 14:30:49 +0200949 snd_iprintf(buffer, " %d", rates[i]);
950}
951
Jaroslav Kyselad5e1ca02010-02-02 17:48:51 +0100952#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))
Takashi Iwai9b151fe2009-09-08 14:30:49 +0200956
957struct dummy_hw_field {
958 const char *name;
959 const char *format;
960 unsigned int offset;
961 unsigned int size;
962};
963#define FIELD_ENTRY(item, fmt) { \
964 .name = #item, \
965 .format = fmt, \
966 .offset = offsetof(struct snd_pcm_hardware, item), \
967 .size = sizeof(dummy_pcm_hardware.item) }
968
969static 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"),
981};
982
983static void dummy_proc_read(struct snd_info_entry *entry,
984 struct snd_info_buffer *buffer)
985{
Jaroslav Kyselad5e1ca02010-02-02 17:48:51 +0100986 struct snd_dummy *dummy = entry->private_data;
Takashi Iwai9b151fe2009-09-08 14:30:49 +0200987 int i;
988
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,
Jaroslav Kyselad5e1ca02010-02-02 17:48:51 +0100993 *get_dummy_int_ptr(dummy, fields[i].offset));
Takashi Iwai9b151fe2009-09-08 14:30:49 +0200994 else
995 snd_iprintf(buffer, fields[i].format,
Jaroslav Kyselad5e1ca02010-02-02 17:48:51 +0100996 *get_dummy_ll_ptr(dummy, fields[i].offset));
Takashi Iwai9b151fe2009-09-08 14:30:49 +0200997 if (!strcmp(fields[i].name, "formats"))
Jaroslav Kyselad5e1ca02010-02-02 17:48:51 +0100998 print_formats(dummy, buffer);
Takashi Iwai9b151fe2009-09-08 14:30:49 +0200999 else if (!strcmp(fields[i].name, "rates"))
Jaroslav Kyselad5e1ca02010-02-02 17:48:51 +01001000 print_rates(dummy, buffer);
Takashi Iwai9b151fe2009-09-08 14:30:49 +02001001 snd_iprintf(buffer, "\n");
1002 }
1003}
1004
1005static void dummy_proc_write(struct snd_info_entry *entry,
1006 struct snd_info_buffer *buffer)
1007{
Jaroslav Kyselad5e1ca02010-02-02 17:48:51 +01001008 struct snd_dummy *dummy = entry->private_data;
Takashi Iwai9b151fe2009-09-08 14:30:49 +02001009 char line[64];
1010
1011 while (!snd_info_get_line(buffer, line, sizeof(line))) {
1012 char item[20];
1013 const char *ptr;
1014 unsigned long long val;
1015 int i;
1016
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))
1020 break;
1021 }
1022 if (i >= ARRAY_SIZE(fields))
1023 continue;
1024 snd_info_get_str(item, ptr, sizeof(item));
Jingoo Hanb785a492013-07-19 16:24:59 +09001025 if (kstrtoull(item, 0, &val))
Takashi Iwai9b151fe2009-09-08 14:30:49 +02001026 continue;
1027 if (fields[i].size == sizeof(int))
Jaroslav Kyselad5e1ca02010-02-02 17:48:51 +01001028 *get_dummy_int_ptr(dummy, fields[i].offset) = val;
Takashi Iwai9b151fe2009-09-08 14:30:49 +02001029 else
Jaroslav Kyselad5e1ca02010-02-02 17:48:51 +01001030 *get_dummy_ll_ptr(dummy, fields[i].offset) = val;
Takashi Iwai9b151fe2009-09-08 14:30:49 +02001031 }
1032}
1033
Bill Pembertonfbbb01a2012-12-06 12:35:27 -05001034static void dummy_proc_init(struct snd_dummy *chip)
Takashi Iwai9b151fe2009-09-08 14:30:49 +02001035{
1036 struct snd_info_entry *entry;
1037
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;
Jaroslav Kyselad5e1ca02010-02-02 17:48:51 +01001042 entry->private_data = chip;
Takashi Iwai9b151fe2009-09-08 14:30:49 +02001043 }
1044}
1045#else
1046#define dummy_proc_init(x)
Takashi Iwai129a4c92015-05-29 07:47:50 +02001047#endif /* CONFIG_SND_DEBUG && CONFIG_SND_PROC_FS */
Takashi Iwai9b151fe2009-09-08 14:30:49 +02001048
Bill Pembertonfbbb01a2012-12-06 12:35:27 -05001049static int snd_dummy_probe(struct platform_device *devptr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001050{
Takashi Iwai4a4d2cf2005-11-17 14:27:28 +01001051 struct snd_card *card;
1052 struct snd_dummy *dummy;
Jaroslav Kyselad5e1ca02010-02-02 17:48:51 +01001053 struct dummy_model *m = NULL, **mdl;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001054 int idx, err;
Takashi Iwai6e65c1c2005-11-17 16:01:56 +01001055 int dev = devptr->id;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001056
Takashi Iwai5872f3f2014-01-29 12:59:08 +01001057 err = snd_card_new(&devptr->dev, index[dev], id[dev], THIS_MODULE,
1058 sizeof(struct snd_dummy), &card);
Takashi Iwaibd7dd772008-12-28 16:45:02 +01001059 if (err < 0)
1060 return err;
Takashi Iwai4a4d2cf2005-11-17 14:27:28 +01001061 dummy = card->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001062 dummy->card = card;
Jaroslav Kyselad5e1ca02010-02-02 17:48:51 +01001063 for (mdl = dummy_models; *mdl && model[dev]; mdl++) {
1064 if (strcmp(model[dev], (*mdl)->name) == 0) {
1065 printk(KERN_INFO
1066 "snd-dummy: Using model '%s' for card %i\n",
1067 (*mdl)->name, card->number);
1068 m = dummy->model = *mdl;
1069 break;
1070 }
1071 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001072 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;
Jaroslav Kysela1a11cb62008-08-15 12:59:02 +02001077 err = snd_card_dummy_pcm(dummy, idx, pcm_substreams[dev]);
1078 if (err < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001079 goto __nodev;
1080 }
Jaroslav Kyselad5e1ca02010-02-02 17:48:51 +01001081
1082 dummy->pcm_hw = dummy_pcm_hardware;
1083 if (m) {
1084 if (m->formats)
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;
1092 if (m->periods_min)
1093 dummy->pcm_hw.periods_min = m->periods_min;
1094 if (m->periods_max)
1095 dummy->pcm_hw.periods_max = m->periods_max;
1096 if (m->rates)
1097 dummy->pcm_hw.rates = m->rates;
1098 if (m->rate_min)
1099 dummy->pcm_hw.rate_min = m->rate_min;
1100 if (m->rate_max)
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;
1106 }
1107
Jaroslav Kysela1a11cb62008-08-15 12:59:02 +02001108 err = snd_card_dummy_new_mixer(dummy);
1109 if (err < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001110 goto __nodev;
1111 strcpy(card->driver, "Dummy");
1112 strcpy(card->shortname, "Dummy");
1113 sprintf(card->longname, "Dummy %i", dev + 1);
Takashi Iwai16dab542005-09-05 17:17:58 +02001114
Takashi Iwai9b151fe2009-09-08 14:30:49 +02001115 dummy_proc_init(dummy);
1116
Jaroslav Kysela1a11cb62008-08-15 12:59:02 +02001117 err = snd_card_register(card);
1118 if (err == 0) {
Takashi Iwai6e65c1c2005-11-17 16:01:56 +01001119 platform_set_drvdata(devptr, card);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001120 return 0;
1121 }
1122 __nodev:
1123 snd_card_free(card);
1124 return err;
1125}
1126
Bill Pembertonfbbb01a2012-12-06 12:35:27 -05001127static int snd_dummy_remove(struct platform_device *devptr)
Takashi Iwai6e65c1c2005-11-17 16:01:56 +01001128{
1129 snd_card_free(platform_get_drvdata(devptr));
Takashi Iwai6e65c1c2005-11-17 16:01:56 +01001130 return 0;
1131}
1132
Takashi Iwaid34e4e02012-08-09 15:47:15 +02001133#ifdef CONFIG_PM_SLEEP
Takashi Iwai284e7ca2012-07-02 11:22:40 +02001134static int snd_dummy_suspend(struct device *pdev)
Takashi Iwai6e65c1c2005-11-17 16:01:56 +01001135{
Takashi Iwai284e7ca2012-07-02 11:22:40 +02001136 struct snd_card *card = dev_get_drvdata(pdev);
Takashi Iwai6e65c1c2005-11-17 16:01:56 +01001137 struct snd_dummy *dummy = card->private_data;
1138
1139 snd_power_change_state(card, SNDRV_CTL_POWER_D3hot);
1140 snd_pcm_suspend_all(dummy->pcm);
1141 return 0;
1142}
1143
Takashi Iwai284e7ca2012-07-02 11:22:40 +02001144static int snd_dummy_resume(struct device *pdev)
Takashi Iwai6e65c1c2005-11-17 16:01:56 +01001145{
Takashi Iwai284e7ca2012-07-02 11:22:40 +02001146 struct snd_card *card = dev_get_drvdata(pdev);
Takashi Iwai6e65c1c2005-11-17 16:01:56 +01001147
1148 snd_power_change_state(card, SNDRV_CTL_POWER_D0);
1149 return 0;
1150}
Takashi Iwai284e7ca2012-07-02 11:22:40 +02001151
1152static SIMPLE_DEV_PM_OPS(snd_dummy_pm, snd_dummy_suspend, snd_dummy_resume);
1153#define SND_DUMMY_PM_OPS &snd_dummy_pm
1154#else
1155#define SND_DUMMY_PM_OPS NULL
Takashi Iwai6e65c1c2005-11-17 16:01:56 +01001156#endif
1157
1158#define SND_DUMMY_DRIVER "snd_dummy"
1159
1160static struct platform_driver snd_dummy_driver = {
1161 .probe = snd_dummy_probe,
Bill Pembertonfbbb01a2012-12-06 12:35:27 -05001162 .remove = snd_dummy_remove,
Takashi Iwai6e65c1c2005-11-17 16:01:56 +01001163 .driver = {
Takashi Iwai8bf01d82012-07-02 10:50:24 +02001164 .name = SND_DUMMY_DRIVER,
Takashi Iwai284e7ca2012-07-02 11:22:40 +02001165 .pm = SND_DUMMY_PM_OPS,
Takashi Iwai6e65c1c2005-11-17 16:01:56 +01001166 },
1167};
1168
Randy Dunlapc12aad62007-06-25 12:08:01 +02001169static void snd_dummy_unregister_all(void)
Clemens Ladischf7a92752005-12-07 09:13:42 +01001170{
1171 int i;
1172
1173 for (i = 0; i < ARRAY_SIZE(devices); ++i)
1174 platform_device_unregister(devices[i]);
1175 platform_driver_unregister(&snd_dummy_driver);
Takashi Iwaia68c4d12009-09-04 12:19:36 +02001176 free_fake_buffer();
Clemens Ladischf7a92752005-12-07 09:13:42 +01001177}
1178
Linus Torvalds1da177e2005-04-16 15:20:36 -07001179static int __init alsa_card_dummy_init(void)
1180{
Takashi Iwai6e65c1c2005-11-17 16:01:56 +01001181 int i, cards, err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001182
Jaroslav Kysela1a11cb62008-08-15 12:59:02 +02001183 err = platform_driver_register(&snd_dummy_driver);
1184 if (err < 0)
Takashi Iwai6e65c1c2005-11-17 16:01:56 +01001185 return err;
1186
Takashi Iwaia68c4d12009-09-04 12:19:36 +02001187 err = alloc_fake_buffer();
1188 if (err < 0) {
1189 platform_driver_unregister(&snd_dummy_driver);
1190 return err;
1191 }
1192
Takashi Iwai6e65c1c2005-11-17 16:01:56 +01001193 cards = 0;
Takashi Iwai8278ca82006-02-20 11:57:34 +01001194 for (i = 0; i < SNDRV_CARDS; i++) {
Takashi Iwai6e65c1c2005-11-17 16:01:56 +01001195 struct platform_device *device;
Takashi Iwai8278ca82006-02-20 11:57:34 +01001196 if (! enable[i])
1197 continue;
Takashi Iwai6e65c1c2005-11-17 16:01:56 +01001198 device = platform_device_register_simple(SND_DUMMY_DRIVER,
1199 i, NULL, 0);
Rene Hermana182ee92006-04-13 12:57:11 +02001200 if (IS_ERR(device))
1201 continue;
Rene Herman71524472006-04-13 12:58:06 +02001202 if (!platform_get_drvdata(device)) {
1203 platform_device_unregister(device);
1204 continue;
1205 }
Clemens Ladischf7a92752005-12-07 09:13:42 +01001206 devices[i] = device;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001207 cards++;
1208 }
1209 if (!cards) {
1210#ifdef MODULE
1211 printk(KERN_ERR "Dummy soundcard not found or device busy\n");
1212#endif
Rene Hermana182ee92006-04-13 12:57:11 +02001213 snd_dummy_unregister_all();
1214 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001215 }
1216 return 0;
1217}
1218
1219static void __exit alsa_card_dummy_exit(void)
1220{
Clemens Ladischf7a92752005-12-07 09:13:42 +01001221 snd_dummy_unregister_all();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001222}
1223
1224module_init(alsa_card_dummy_init)
1225module_exit(alsa_card_dummy_exit)