Thomas Gleixner | 1a59d1b8 | 2019-05-27 08:55:05 +0200 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0-or-later |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2 | /* |
| 3 | * Dummy soundcard |
Jaroslav Kysela | c1017a4 | 2007-10-15 09:50:19 +0200 | [diff] [blame] | 4 | * Copyright (c) by Jaroslav Kysela <perex@perex.cz> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5 | */ |
| 6 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7 | #include <linux/init.h> |
Takashi Iwai | 6e65c1c | 2005-11-17 16:01:56 +0100 | [diff] [blame] | 8 | #include <linux/err.h> |
| 9 | #include <linux/platform_device.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 10 | #include <linux/jiffies.h> |
| 11 | #include <linux/slab.h> |
| 12 | #include <linux/time.h> |
| 13 | #include <linux/wait.h> |
Takashi Iwai | c631d03 | 2009-09-03 15:59:26 +0200 | [diff] [blame] | 14 | #include <linux/hrtimer.h> |
| 15 | #include <linux/math64.h> |
Paul Gortmaker | 65a7721 | 2011-07-15 13:13:37 -0400 | [diff] [blame] | 16 | #include <linux/module.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 17 | #include <sound/core.h> |
| 18 | #include <sound/control.h> |
Takashi Iwai | fb567a8 | 2006-08-23 13:07:19 +0200 | [diff] [blame] | 19 | #include <sound/tlv.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 20 | #include <sound/pcm.h> |
| 21 | #include <sound/rawmidi.h> |
Takashi Iwai | 9b151fe | 2009-09-08 14:30:49 +0200 | [diff] [blame] | 22 | #include <sound/info.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 23 | #include <sound/initval.h> |
| 24 | |
Jaroslav Kysela | c1017a4 | 2007-10-15 09:50:19 +0200 | [diff] [blame] | 25 | MODULE_AUTHOR("Jaroslav Kysela <perex@perex.cz>"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 26 | MODULE_DESCRIPTION("Dummy soundcard (/dev/null)"); |
| 27 | MODULE_LICENSE("GPL"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 28 | |
| 29 | #define MAX_PCM_DEVICES 4 |
Takashi Iwai | b888d1c | 2009-09-08 18:15:17 +0200 | [diff] [blame] | 30 | #define MAX_PCM_SUBSTREAMS 128 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 31 | #define MAX_MIDI_DEVICES 2 |
| 32 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 33 | /* defaults */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 34 | #define MAX_BUFFER_SIZE (64*1024) |
Jaroslav Kysela | d5e1ca0 | 2010-02-02 17:48:51 +0100 | [diff] [blame] | 35 | #define MIN_PERIOD_SIZE 64 |
Jaroslav Kysela | 2ad5dd8 | 2006-01-03 14:27:21 +0100 | [diff] [blame] | 36 | #define MAX_PERIOD_SIZE MAX_BUFFER_SIZE |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 37 | #define USE_FORMATS (SNDRV_PCM_FMTBIT_U8 | SNDRV_PCM_FMTBIT_S16_LE) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 38 | #define USE_RATE SNDRV_PCM_RATE_CONTINUOUS | SNDRV_PCM_RATE_8000_48000 |
| 39 | #define USE_RATE_MIN 5500 |
| 40 | #define USE_RATE_MAX 48000 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 41 | #define USE_CHANNELS_MIN 1 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 42 | #define USE_CHANNELS_MAX 2 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 43 | #define USE_PERIODS_MIN 1 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 44 | #define USE_PERIODS_MAX 1024 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 45 | |
| 46 | static int index[SNDRV_CARDS] = SNDRV_DEFAULT_IDX; /* Index 0-MAX */ |
| 47 | static char *id[SNDRV_CARDS] = SNDRV_DEFAULT_STR; /* ID for this card */ |
Rusty Russell | a67ff6a | 2011-12-15 13:49:36 +1030 | [diff] [blame] | 48 | static bool enable[SNDRV_CARDS] = {1, [1 ... (SNDRV_CARDS - 1)] = 0}; |
Jaroslav Kysela | d5e1ca0 | 2010-02-02 17:48:51 +0100 | [diff] [blame] | 49 | static char *model[SNDRV_CARDS] = {[0 ... (SNDRV_CARDS - 1)] = NULL}; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 50 | static int pcm_devs[SNDRV_CARDS] = {[0 ... (SNDRV_CARDS - 1)] = 1}; |
| 51 | static int pcm_substreams[SNDRV_CARDS] = {[0 ... (SNDRV_CARDS - 1)] = 8}; |
| 52 | //static int midi_devs[SNDRV_CARDS] = {[0 ... (SNDRV_CARDS - 1)] = 2}; |
Takashi Iwai | c631d03 | 2009-09-03 15:59:26 +0200 | [diff] [blame] | 53 | #ifdef CONFIG_HIGH_RES_TIMERS |
Rusty Russell | a67ff6a | 2011-12-15 13:49:36 +1030 | [diff] [blame] | 54 | static bool hrtimer = 1; |
Takashi Iwai | c631d03 | 2009-09-03 15:59:26 +0200 | [diff] [blame] | 55 | #endif |
Rusty Russell | a67ff6a | 2011-12-15 13:49:36 +1030 | [diff] [blame] | 56 | static bool fake_buffer = 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 57 | |
| 58 | module_param_array(index, int, NULL, 0444); |
| 59 | MODULE_PARM_DESC(index, "Index value for dummy soundcard."); |
| 60 | module_param_array(id, charp, NULL, 0444); |
| 61 | MODULE_PARM_DESC(id, "ID string for dummy soundcard."); |
| 62 | module_param_array(enable, bool, NULL, 0444); |
| 63 | MODULE_PARM_DESC(enable, "Enable this dummy soundcard."); |
Jaroslav Kysela | d5e1ca0 | 2010-02-02 17:48:51 +0100 | [diff] [blame] | 64 | module_param_array(model, charp, NULL, 0444); |
| 65 | MODULE_PARM_DESC(model, "Soundcard model."); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 66 | module_param_array(pcm_devs, int, NULL, 0444); |
| 67 | MODULE_PARM_DESC(pcm_devs, "PCM devices # (0-4) for dummy driver."); |
| 68 | module_param_array(pcm_substreams, int, NULL, 0444); |
Takashi Iwai | 23aebca4 | 2009-11-02 14:10:59 +0100 | [diff] [blame] | 69 | MODULE_PARM_DESC(pcm_substreams, "PCM substreams # (1-128) for dummy driver."); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 70 | //module_param_array(midi_devs, int, NULL, 0444); |
| 71 | //MODULE_PARM_DESC(midi_devs, "MIDI devices # (0-2) for dummy driver."); |
Takashi Iwai | a68c4d1 | 2009-09-04 12:19:36 +0200 | [diff] [blame] | 72 | module_param(fake_buffer, bool, 0444); |
| 73 | MODULE_PARM_DESC(fake_buffer, "Fake buffer allocations."); |
Takashi Iwai | c631d03 | 2009-09-03 15:59:26 +0200 | [diff] [blame] | 74 | #ifdef CONFIG_HIGH_RES_TIMERS |
Takashi Iwai | ddce57a | 2016-02-02 15:27:36 +0100 | [diff] [blame] | 75 | module_param(hrtimer, bool, 0644); |
Takashi Iwai | c631d03 | 2009-09-03 15:59:26 +0200 | [diff] [blame] | 76 | MODULE_PARM_DESC(hrtimer, "Use hrtimer as the timer source."); |
| 77 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 78 | |
Clemens Ladisch | f7a9275 | 2005-12-07 09:13:42 +0100 | [diff] [blame] | 79 | static struct platform_device *devices[SNDRV_CARDS]; |
| 80 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 81 | #define MIXER_ADDR_MASTER 0 |
| 82 | #define MIXER_ADDR_LINE 1 |
| 83 | #define MIXER_ADDR_MIC 2 |
| 84 | #define MIXER_ADDR_SYNTH 3 |
| 85 | #define MIXER_ADDR_CD 4 |
| 86 | #define MIXER_ADDR_LAST 4 |
| 87 | |
Takashi Iwai | c631d03 | 2009-09-03 15:59:26 +0200 | [diff] [blame] | 88 | struct dummy_timer_ops { |
| 89 | int (*create)(struct snd_pcm_substream *); |
| 90 | void (*free)(struct snd_pcm_substream *); |
| 91 | int (*prepare)(struct snd_pcm_substream *); |
| 92 | int (*start)(struct snd_pcm_substream *); |
| 93 | int (*stop)(struct snd_pcm_substream *); |
| 94 | snd_pcm_uframes_t (*pointer)(struct snd_pcm_substream *); |
| 95 | }; |
| 96 | |
Takashi Iwai | ddce57a | 2016-02-02 15:27:36 +0100 | [diff] [blame] | 97 | #define get_dummy_ops(substream) \ |
| 98 | (*(const struct dummy_timer_ops **)(substream)->runtime->private_data) |
| 99 | |
Jaroslav Kysela | d5e1ca0 | 2010-02-02 17:48:51 +0100 | [diff] [blame] | 100 | struct dummy_model { |
| 101 | const char *name; |
| 102 | int (*playback_constraints)(struct snd_pcm_runtime *runtime); |
| 103 | int (*capture_constraints)(struct snd_pcm_runtime *runtime); |
| 104 | u64 formats; |
| 105 | size_t buffer_bytes_max; |
| 106 | size_t period_bytes_min; |
| 107 | size_t period_bytes_max; |
| 108 | unsigned int periods_min; |
| 109 | unsigned int periods_max; |
| 110 | unsigned int rates; |
| 111 | unsigned int rate_min; |
| 112 | unsigned int rate_max; |
| 113 | unsigned int channels_min; |
| 114 | unsigned int channels_max; |
| 115 | }; |
| 116 | |
Takashi Iwai | 4a4d2cf | 2005-11-17 14:27:28 +0100 | [diff] [blame] | 117 | struct snd_dummy { |
| 118 | struct snd_card *card; |
Takashi Iwai | d64e7f7 | 2020-01-05 15:47:19 +0100 | [diff] [blame] | 119 | const struct dummy_model *model; |
Takashi Iwai | 6e65c1c | 2005-11-17 16:01:56 +0100 | [diff] [blame] | 120 | struct snd_pcm *pcm; |
Jaroslav Kysela | d5e1ca0 | 2010-02-02 17:48:51 +0100 | [diff] [blame] | 121 | struct snd_pcm_hardware pcm_hw; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 122 | spinlock_t mixer_lock; |
| 123 | int mixer_volume[MIXER_ADDR_LAST+1][2]; |
| 124 | int capture_source[MIXER_ADDR_LAST+1][2]; |
Clemens Ladisch | 16e4346 | 2012-10-20 12:21:36 +0200 | [diff] [blame] | 125 | int iobox; |
| 126 | struct snd_kcontrol *cd_volume_ctl; |
| 127 | struct snd_kcontrol *cd_switch_ctl; |
Takashi Iwai | 4a4d2cf | 2005-11-17 14:27:28 +0100 | [diff] [blame] | 128 | }; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 129 | |
Takashi Iwai | c631d03 | 2009-09-03 15:59:26 +0200 | [diff] [blame] | 130 | /* |
Jaroslav Kysela | d5e1ca0 | 2010-02-02 17:48:51 +0100 | [diff] [blame] | 131 | * card models |
| 132 | */ |
| 133 | |
| 134 | static int emu10k1_playback_constraints(struct snd_pcm_runtime *runtime) |
| 135 | { |
| 136 | int err; |
| 137 | err = snd_pcm_hw_constraint_integer(runtime, SNDRV_PCM_HW_PARAM_PERIODS); |
| 138 | if (err < 0) |
| 139 | return err; |
| 140 | err = snd_pcm_hw_constraint_minmax(runtime, SNDRV_PCM_HW_PARAM_BUFFER_BYTES, 256, UINT_MAX); |
| 141 | if (err < 0) |
| 142 | return err; |
| 143 | return 0; |
| 144 | } |
| 145 | |
Takashi Iwai | d64e7f7 | 2020-01-05 15:47:19 +0100 | [diff] [blame] | 146 | static const struct dummy_model model_emu10k1 = { |
Jaroslav Kysela | d5e1ca0 | 2010-02-02 17:48:51 +0100 | [diff] [blame] | 147 | .name = "emu10k1", |
| 148 | .playback_constraints = emu10k1_playback_constraints, |
| 149 | .buffer_bytes_max = 128 * 1024, |
| 150 | }; |
| 151 | |
Takashi Iwai | d64e7f7 | 2020-01-05 15:47:19 +0100 | [diff] [blame] | 152 | static const struct dummy_model model_rme9652 = { |
Jaroslav Kysela | d5e1ca0 | 2010-02-02 17:48:51 +0100 | [diff] [blame] | 153 | .name = "rme9652", |
| 154 | .buffer_bytes_max = 26 * 64 * 1024, |
| 155 | .formats = SNDRV_PCM_FMTBIT_S32_LE, |
| 156 | .channels_min = 26, |
| 157 | .channels_max = 26, |
| 158 | .periods_min = 2, |
| 159 | .periods_max = 2, |
| 160 | }; |
| 161 | |
Takashi Iwai | d64e7f7 | 2020-01-05 15:47:19 +0100 | [diff] [blame] | 162 | static const struct dummy_model model_ice1712 = { |
Jaroslav Kysela | d5e1ca0 | 2010-02-02 17:48:51 +0100 | [diff] [blame] | 163 | .name = "ice1712", |
| 164 | .buffer_bytes_max = 256 * 1024, |
| 165 | .formats = SNDRV_PCM_FMTBIT_S32_LE, |
| 166 | .channels_min = 10, |
| 167 | .channels_max = 10, |
| 168 | .periods_min = 1, |
| 169 | .periods_max = 1024, |
| 170 | }; |
| 171 | |
Takashi Iwai | d64e7f7 | 2020-01-05 15:47:19 +0100 | [diff] [blame] | 172 | static const struct dummy_model model_uda1341 = { |
Jaroslav Kysela | d5e1ca0 | 2010-02-02 17:48:51 +0100 | [diff] [blame] | 173 | .name = "uda1341", |
| 174 | .buffer_bytes_max = 16380, |
| 175 | .formats = SNDRV_PCM_FMTBIT_S16_LE, |
| 176 | .channels_min = 2, |
| 177 | .channels_max = 2, |
| 178 | .periods_min = 2, |
| 179 | .periods_max = 255, |
| 180 | }; |
| 181 | |
Takashi Iwai | d64e7f7 | 2020-01-05 15:47:19 +0100 | [diff] [blame] | 182 | static const struct dummy_model model_ac97 = { |
Jaroslav Kysela | d5e1ca0 | 2010-02-02 17:48:51 +0100 | [diff] [blame] | 183 | .name = "ac97", |
| 184 | .formats = SNDRV_PCM_FMTBIT_S16_LE, |
| 185 | .channels_min = 2, |
| 186 | .channels_max = 2, |
| 187 | .rates = SNDRV_PCM_RATE_48000, |
| 188 | .rate_min = 48000, |
| 189 | .rate_max = 48000, |
| 190 | }; |
| 191 | |
Takashi Iwai | d64e7f7 | 2020-01-05 15:47:19 +0100 | [diff] [blame] | 192 | static const struct dummy_model model_ca0106 = { |
Jaroslav Kysela | d5e1ca0 | 2010-02-02 17:48:51 +0100 | [diff] [blame] | 193 | .name = "ca0106", |
| 194 | .formats = SNDRV_PCM_FMTBIT_S16_LE, |
| 195 | .buffer_bytes_max = ((65536-64)*8), |
| 196 | .period_bytes_max = (65536-64), |
| 197 | .periods_min = 2, |
| 198 | .periods_max = 8, |
| 199 | .channels_min = 2, |
| 200 | .channels_max = 2, |
| 201 | .rates = SNDRV_PCM_RATE_48000|SNDRV_PCM_RATE_96000|SNDRV_PCM_RATE_192000, |
| 202 | .rate_min = 48000, |
| 203 | .rate_max = 192000, |
| 204 | }; |
| 205 | |
Takashi Iwai | d64e7f7 | 2020-01-05 15:47:19 +0100 | [diff] [blame] | 206 | static const struct dummy_model *dummy_models[] = { |
Jaroslav Kysela | d5e1ca0 | 2010-02-02 17:48:51 +0100 | [diff] [blame] | 207 | &model_emu10k1, |
| 208 | &model_rme9652, |
| 209 | &model_ice1712, |
| 210 | &model_uda1341, |
| 211 | &model_ac97, |
| 212 | &model_ca0106, |
| 213 | NULL |
| 214 | }; |
| 215 | |
| 216 | /* |
Takashi Iwai | c631d03 | 2009-09-03 15:59:26 +0200 | [diff] [blame] | 217 | * system timer interface |
| 218 | */ |
| 219 | |
| 220 | struct dummy_systimer_pcm { |
Takashi Iwai | ddce57a | 2016-02-02 15:27:36 +0100 | [diff] [blame] | 221 | /* ops must be the first item */ |
| 222 | const struct dummy_timer_ops *timer_ops; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 223 | spinlock_t lock; |
| 224 | struct timer_list timer; |
Takashi Iwai | b142037 | 2009-09-03 16:01:06 +0200 | [diff] [blame] | 225 | unsigned long base_time; |
| 226 | unsigned int frac_pos; /* fractional sample position (based HZ) */ |
Takashi Iwai | b5d1078 | 2009-09-04 08:45:11 +0200 | [diff] [blame] | 227 | unsigned int frac_period_rest; |
Takashi Iwai | b142037 | 2009-09-03 16:01:06 +0200 | [diff] [blame] | 228 | unsigned int frac_buffer_size; /* buffer_size * HZ */ |
| 229 | unsigned int frac_period_size; /* period_size * HZ */ |
| 230 | unsigned int rate; |
Takashi Iwai | b5d1078 | 2009-09-04 08:45:11 +0200 | [diff] [blame] | 231 | int elapsed; |
Takashi Iwai | 4a4d2cf | 2005-11-17 14:27:28 +0100 | [diff] [blame] | 232 | struct snd_pcm_substream *substream; |
| 233 | }; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 234 | |
Takashi Iwai | b142037 | 2009-09-03 16:01:06 +0200 | [diff] [blame] | 235 | static void dummy_systimer_rearm(struct dummy_systimer_pcm *dpcm) |
| 236 | { |
Roman Kollar | 2a52b6e | 2015-01-19 10:42:54 +0100 | [diff] [blame] | 237 | mod_timer(&dpcm->timer, jiffies + |
Lars-Peter Clausen | 7095be6 | 2020-12-23 18:22:18 +0100 | [diff] [blame] | 238 | DIV_ROUND_UP(dpcm->frac_period_rest, dpcm->rate)); |
Takashi Iwai | b142037 | 2009-09-03 16:01:06 +0200 | [diff] [blame] | 239 | } |
| 240 | |
| 241 | static void dummy_systimer_update(struct dummy_systimer_pcm *dpcm) |
| 242 | { |
| 243 | unsigned long delta; |
| 244 | |
| 245 | delta = jiffies - dpcm->base_time; |
| 246 | if (!delta) |
| 247 | return; |
Takashi Iwai | b5d1078 | 2009-09-04 08:45:11 +0200 | [diff] [blame] | 248 | dpcm->base_time += delta; |
| 249 | delta *= dpcm->rate; |
| 250 | dpcm->frac_pos += delta; |
Takashi Iwai | b142037 | 2009-09-03 16:01:06 +0200 | [diff] [blame] | 251 | while (dpcm->frac_pos >= dpcm->frac_buffer_size) |
| 252 | dpcm->frac_pos -= dpcm->frac_buffer_size; |
Takashi Iwai | b5d1078 | 2009-09-04 08:45:11 +0200 | [diff] [blame] | 253 | while (dpcm->frac_period_rest <= delta) { |
| 254 | dpcm->elapsed++; |
| 255 | dpcm->frac_period_rest += dpcm->frac_period_size; |
| 256 | } |
| 257 | dpcm->frac_period_rest -= delta; |
Takashi Iwai | b142037 | 2009-09-03 16:01:06 +0200 | [diff] [blame] | 258 | } |
| 259 | |
Takashi Iwai | c631d03 | 2009-09-03 15:59:26 +0200 | [diff] [blame] | 260 | static int dummy_systimer_start(struct snd_pcm_substream *substream) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 261 | { |
Takashi Iwai | c631d03 | 2009-09-03 15:59:26 +0200 | [diff] [blame] | 262 | struct dummy_systimer_pcm *dpcm = substream->runtime->private_data; |
| 263 | spin_lock(&dpcm->lock); |
Takashi Iwai | b142037 | 2009-09-03 16:01:06 +0200 | [diff] [blame] | 264 | dpcm->base_time = jiffies; |
| 265 | dummy_systimer_rearm(dpcm); |
Takashi Iwai | c8eb6ba | 2005-11-17 10:20:23 +0100 | [diff] [blame] | 266 | spin_unlock(&dpcm->lock); |
Takashi Iwai | 6e65c1c | 2005-11-17 16:01:56 +0100 | [diff] [blame] | 267 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 268 | } |
| 269 | |
Takashi Iwai | c631d03 | 2009-09-03 15:59:26 +0200 | [diff] [blame] | 270 | static int dummy_systimer_stop(struct snd_pcm_substream *substream) |
| 271 | { |
| 272 | struct dummy_systimer_pcm *dpcm = substream->runtime->private_data; |
| 273 | spin_lock(&dpcm->lock); |
| 274 | del_timer(&dpcm->timer); |
| 275 | spin_unlock(&dpcm->lock); |
| 276 | return 0; |
| 277 | } |
| 278 | |
| 279 | static int dummy_systimer_prepare(struct snd_pcm_substream *substream) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 280 | { |
Takashi Iwai | 4a4d2cf | 2005-11-17 14:27:28 +0100 | [diff] [blame] | 281 | struct snd_pcm_runtime *runtime = substream->runtime; |
Takashi Iwai | c631d03 | 2009-09-03 15:59:26 +0200 | [diff] [blame] | 282 | struct dummy_systimer_pcm *dpcm = runtime->private_data; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 283 | |
Takashi Iwai | b142037 | 2009-09-03 16:01:06 +0200 | [diff] [blame] | 284 | dpcm->frac_pos = 0; |
| 285 | dpcm->rate = runtime->rate; |
| 286 | dpcm->frac_buffer_size = runtime->buffer_size * HZ; |
| 287 | dpcm->frac_period_size = runtime->period_size * HZ; |
Takashi Iwai | b5d1078 | 2009-09-04 08:45:11 +0200 | [diff] [blame] | 288 | dpcm->frac_period_rest = dpcm->frac_period_size; |
| 289 | dpcm->elapsed = 0; |
Ahmet Ä°nan | 53463a8 | 2008-02-21 07:55:30 +0100 | [diff] [blame] | 290 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 291 | return 0; |
| 292 | } |
| 293 | |
Kees Cook | bc47ba9 | 2017-10-24 08:34:29 -0700 | [diff] [blame] | 294 | static void dummy_systimer_callback(struct timer_list *t) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 295 | { |
Kees Cook | bc47ba9 | 2017-10-24 08:34:29 -0700 | [diff] [blame] | 296 | struct dummy_systimer_pcm *dpcm = from_timer(dpcm, t, timer); |
Takashi Iwai | b32425a | 2005-11-18 18:52:14 +0100 | [diff] [blame] | 297 | unsigned long flags; |
Takashi Iwai | b5d1078 | 2009-09-04 08:45:11 +0200 | [diff] [blame] | 298 | int elapsed = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 299 | |
Takashi Iwai | b32425a | 2005-11-18 18:52:14 +0100 | [diff] [blame] | 300 | spin_lock_irqsave(&dpcm->lock, flags); |
Takashi Iwai | b142037 | 2009-09-03 16:01:06 +0200 | [diff] [blame] | 301 | dummy_systimer_update(dpcm); |
| 302 | dummy_systimer_rearm(dpcm); |
Takashi Iwai | b5d1078 | 2009-09-04 08:45:11 +0200 | [diff] [blame] | 303 | elapsed = dpcm->elapsed; |
| 304 | dpcm->elapsed = 0; |
Takashi Iwai | b142037 | 2009-09-03 16:01:06 +0200 | [diff] [blame] | 305 | spin_unlock_irqrestore(&dpcm->lock, flags); |
Takashi Iwai | b5d1078 | 2009-09-04 08:45:11 +0200 | [diff] [blame] | 306 | if (elapsed) |
| 307 | snd_pcm_period_elapsed(dpcm->substream); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 308 | } |
| 309 | |
Takashi Iwai | c631d03 | 2009-09-03 15:59:26 +0200 | [diff] [blame] | 310 | static snd_pcm_uframes_t |
| 311 | dummy_systimer_pointer(struct snd_pcm_substream *substream) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 312 | { |
Takashi Iwai | b142037 | 2009-09-03 16:01:06 +0200 | [diff] [blame] | 313 | struct dummy_systimer_pcm *dpcm = substream->runtime->private_data; |
Takashi Iwai | b5d1078 | 2009-09-04 08:45:11 +0200 | [diff] [blame] | 314 | snd_pcm_uframes_t pos; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 315 | |
Takashi Iwai | b142037 | 2009-09-03 16:01:06 +0200 | [diff] [blame] | 316 | spin_lock(&dpcm->lock); |
| 317 | dummy_systimer_update(dpcm); |
Takashi Iwai | b5d1078 | 2009-09-04 08:45:11 +0200 | [diff] [blame] | 318 | pos = dpcm->frac_pos / HZ; |
Takashi Iwai | b142037 | 2009-09-03 16:01:06 +0200 | [diff] [blame] | 319 | spin_unlock(&dpcm->lock); |
Takashi Iwai | b5d1078 | 2009-09-04 08:45:11 +0200 | [diff] [blame] | 320 | return pos; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 321 | } |
| 322 | |
Takashi Iwai | c631d03 | 2009-09-03 15:59:26 +0200 | [diff] [blame] | 323 | static int dummy_systimer_create(struct snd_pcm_substream *substream) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 324 | { |
Takashi Iwai | c631d03 | 2009-09-03 15:59:26 +0200 | [diff] [blame] | 325 | struct dummy_systimer_pcm *dpcm; |
| 326 | |
| 327 | dpcm = kzalloc(sizeof(*dpcm), GFP_KERNEL); |
| 328 | if (!dpcm) |
| 329 | return -ENOMEM; |
| 330 | substream->runtime->private_data = dpcm; |
Kees Cook | bc47ba9 | 2017-10-24 08:34:29 -0700 | [diff] [blame] | 331 | timer_setup(&dpcm->timer, dummy_systimer_callback, 0); |
Takashi Iwai | c631d03 | 2009-09-03 15:59:26 +0200 | [diff] [blame] | 332 | spin_lock_init(&dpcm->lock); |
| 333 | dpcm->substream = substream; |
| 334 | return 0; |
| 335 | } |
| 336 | |
| 337 | static void dummy_systimer_free(struct snd_pcm_substream *substream) |
| 338 | { |
| 339 | kfree(substream->runtime->private_data); |
| 340 | } |
| 341 | |
Julia Lawall | d8c5ed7 | 2015-12-30 12:28:49 +0100 | [diff] [blame] | 342 | static const struct dummy_timer_ops dummy_systimer_ops = { |
Takashi Iwai | c631d03 | 2009-09-03 15:59:26 +0200 | [diff] [blame] | 343 | .create = dummy_systimer_create, |
| 344 | .free = dummy_systimer_free, |
| 345 | .prepare = dummy_systimer_prepare, |
| 346 | .start = dummy_systimer_start, |
| 347 | .stop = dummy_systimer_stop, |
| 348 | .pointer = dummy_systimer_pointer, |
| 349 | }; |
| 350 | |
| 351 | #ifdef CONFIG_HIGH_RES_TIMERS |
| 352 | /* |
| 353 | * hrtimer interface |
| 354 | */ |
| 355 | |
| 356 | struct dummy_hrtimer_pcm { |
Takashi Iwai | ddce57a | 2016-02-02 15:27:36 +0100 | [diff] [blame] | 357 | /* ops must be the first item */ |
| 358 | const struct dummy_timer_ops *timer_ops; |
Takashi Iwai | c631d03 | 2009-09-03 15:59:26 +0200 | [diff] [blame] | 359 | ktime_t base_time; |
| 360 | ktime_t period_time; |
| 361 | atomic_t running; |
| 362 | struct hrtimer timer; |
Takashi Iwai | c631d03 | 2009-09-03 15:59:26 +0200 | [diff] [blame] | 363 | struct snd_pcm_substream *substream; |
| 364 | }; |
| 365 | |
Takashi Iwai | c631d03 | 2009-09-03 15:59:26 +0200 | [diff] [blame] | 366 | static enum hrtimer_restart dummy_hrtimer_callback(struct hrtimer *timer) |
| 367 | { |
| 368 | struct dummy_hrtimer_pcm *dpcm; |
| 369 | |
| 370 | dpcm = container_of(timer, struct dummy_hrtimer_pcm, timer); |
| 371 | if (!atomic_read(&dpcm->running)) |
| 372 | return HRTIMER_NORESTART; |
Thomas Gleixner | b03bbbe | 2017-12-21 11:42:03 +0100 | [diff] [blame] | 373 | /* |
| 374 | * In cases of XRUN and draining, this calls .trigger to stop PCM |
| 375 | * substream. |
| 376 | */ |
| 377 | snd_pcm_period_elapsed(dpcm->substream); |
| 378 | if (!atomic_read(&dpcm->running)) |
| 379 | return HRTIMER_NORESTART; |
| 380 | |
Takashi Iwai | c631d03 | 2009-09-03 15:59:26 +0200 | [diff] [blame] | 381 | hrtimer_forward_now(timer, dpcm->period_time); |
| 382 | return HRTIMER_RESTART; |
| 383 | } |
| 384 | |
| 385 | static int dummy_hrtimer_start(struct snd_pcm_substream *substream) |
| 386 | { |
| 387 | struct dummy_hrtimer_pcm *dpcm = substream->runtime->private_data; |
| 388 | |
| 389 | dpcm->base_time = hrtimer_cb_get_time(&dpcm->timer); |
Thomas Gleixner | b03bbbe | 2017-12-21 11:42:03 +0100 | [diff] [blame] | 390 | hrtimer_start(&dpcm->timer, dpcm->period_time, HRTIMER_MODE_REL_SOFT); |
Takashi Iwai | c631d03 | 2009-09-03 15:59:26 +0200 | [diff] [blame] | 391 | atomic_set(&dpcm->running, 1); |
| 392 | return 0; |
| 393 | } |
| 394 | |
| 395 | static int dummy_hrtimer_stop(struct snd_pcm_substream *substream) |
| 396 | { |
| 397 | struct dummy_hrtimer_pcm *dpcm = substream->runtime->private_data; |
| 398 | |
| 399 | atomic_set(&dpcm->running, 0); |
Thomas Gleixner | b03bbbe | 2017-12-21 11:42:03 +0100 | [diff] [blame] | 400 | if (!hrtimer_callback_running(&dpcm->timer)) |
| 401 | hrtimer_cancel(&dpcm->timer); |
Takashi Iwai | c631d03 | 2009-09-03 15:59:26 +0200 | [diff] [blame] | 402 | return 0; |
| 403 | } |
| 404 | |
| 405 | static inline void dummy_hrtimer_sync(struct dummy_hrtimer_pcm *dpcm) |
| 406 | { |
Takashi Iwai | d5dbbe6 | 2016-06-24 15:15:26 +0200 | [diff] [blame] | 407 | hrtimer_cancel(&dpcm->timer); |
Takashi Iwai | c631d03 | 2009-09-03 15:59:26 +0200 | [diff] [blame] | 408 | } |
| 409 | |
| 410 | static snd_pcm_uframes_t |
| 411 | dummy_hrtimer_pointer(struct snd_pcm_substream *substream) |
| 412 | { |
| 413 | struct snd_pcm_runtime *runtime = substream->runtime; |
| 414 | struct dummy_hrtimer_pcm *dpcm = runtime->private_data; |
| 415 | u64 delta; |
| 416 | u32 pos; |
| 417 | |
| 418 | delta = ktime_us_delta(hrtimer_cb_get_time(&dpcm->timer), |
| 419 | dpcm->base_time); |
| 420 | delta = div_u64(delta * runtime->rate + 999999, 1000000); |
| 421 | div_u64_rem(delta, runtime->buffer_size, &pos); |
| 422 | return pos; |
| 423 | } |
| 424 | |
| 425 | static int dummy_hrtimer_prepare(struct snd_pcm_substream *substream) |
| 426 | { |
| 427 | struct snd_pcm_runtime *runtime = substream->runtime; |
| 428 | struct dummy_hrtimer_pcm *dpcm = runtime->private_data; |
| 429 | unsigned int period, rate; |
| 430 | long sec; |
| 431 | unsigned long nsecs; |
| 432 | |
| 433 | dummy_hrtimer_sync(dpcm); |
| 434 | period = runtime->period_size; |
| 435 | rate = runtime->rate; |
| 436 | sec = period / rate; |
| 437 | period %= rate; |
| 438 | nsecs = div_u64((u64)period * 1000000000UL + rate - 1, rate); |
| 439 | dpcm->period_time = ktime_set(sec, nsecs); |
| 440 | |
| 441 | return 0; |
| 442 | } |
| 443 | |
| 444 | static int dummy_hrtimer_create(struct snd_pcm_substream *substream) |
| 445 | { |
| 446 | struct dummy_hrtimer_pcm *dpcm; |
| 447 | |
| 448 | dpcm = kzalloc(sizeof(*dpcm), GFP_KERNEL); |
| 449 | if (!dpcm) |
| 450 | return -ENOMEM; |
| 451 | substream->runtime->private_data = dpcm; |
Thomas Gleixner | b03bbbe | 2017-12-21 11:42:03 +0100 | [diff] [blame] | 452 | hrtimer_init(&dpcm->timer, CLOCK_MONOTONIC, HRTIMER_MODE_REL_SOFT); |
Takashi Iwai | c631d03 | 2009-09-03 15:59:26 +0200 | [diff] [blame] | 453 | dpcm->timer.function = dummy_hrtimer_callback; |
| 454 | dpcm->substream = substream; |
| 455 | atomic_set(&dpcm->running, 0); |
Takashi Iwai | c631d03 | 2009-09-03 15:59:26 +0200 | [diff] [blame] | 456 | return 0; |
| 457 | } |
| 458 | |
| 459 | static void dummy_hrtimer_free(struct snd_pcm_substream *substream) |
| 460 | { |
| 461 | struct dummy_hrtimer_pcm *dpcm = substream->runtime->private_data; |
| 462 | dummy_hrtimer_sync(dpcm); |
| 463 | kfree(dpcm); |
| 464 | } |
| 465 | |
Julia Lawall | d8c5ed7 | 2015-12-30 12:28:49 +0100 | [diff] [blame] | 466 | static const struct dummy_timer_ops dummy_hrtimer_ops = { |
Takashi Iwai | c631d03 | 2009-09-03 15:59:26 +0200 | [diff] [blame] | 467 | .create = dummy_hrtimer_create, |
| 468 | .free = dummy_hrtimer_free, |
| 469 | .prepare = dummy_hrtimer_prepare, |
| 470 | .start = dummy_hrtimer_start, |
| 471 | .stop = dummy_hrtimer_stop, |
| 472 | .pointer = dummy_hrtimer_pointer, |
| 473 | }; |
| 474 | |
| 475 | #endif /* CONFIG_HIGH_RES_TIMERS */ |
| 476 | |
| 477 | /* |
| 478 | * PCM interface |
| 479 | */ |
| 480 | |
| 481 | static int dummy_pcm_trigger(struct snd_pcm_substream *substream, int cmd) |
| 482 | { |
Takashi Iwai | c631d03 | 2009-09-03 15:59:26 +0200 | [diff] [blame] | 483 | switch (cmd) { |
| 484 | case SNDRV_PCM_TRIGGER_START: |
| 485 | case SNDRV_PCM_TRIGGER_RESUME: |
Takashi Iwai | ddce57a | 2016-02-02 15:27:36 +0100 | [diff] [blame] | 486 | return get_dummy_ops(substream)->start(substream); |
Takashi Iwai | c631d03 | 2009-09-03 15:59:26 +0200 | [diff] [blame] | 487 | case SNDRV_PCM_TRIGGER_STOP: |
| 488 | case SNDRV_PCM_TRIGGER_SUSPEND: |
Takashi Iwai | ddce57a | 2016-02-02 15:27:36 +0100 | [diff] [blame] | 489 | return get_dummy_ops(substream)->stop(substream); |
Takashi Iwai | c631d03 | 2009-09-03 15:59:26 +0200 | [diff] [blame] | 490 | } |
| 491 | return -EINVAL; |
| 492 | } |
| 493 | |
| 494 | static int dummy_pcm_prepare(struct snd_pcm_substream *substream) |
| 495 | { |
Takashi Iwai | ddce57a | 2016-02-02 15:27:36 +0100 | [diff] [blame] | 496 | return get_dummy_ops(substream)->prepare(substream); |
Takashi Iwai | c631d03 | 2009-09-03 15:59:26 +0200 | [diff] [blame] | 497 | } |
| 498 | |
| 499 | static snd_pcm_uframes_t dummy_pcm_pointer(struct snd_pcm_substream *substream) |
| 500 | { |
Takashi Iwai | ddce57a | 2016-02-02 15:27:36 +0100 | [diff] [blame] | 501 | return get_dummy_ops(substream)->pointer(substream); |
Takashi Iwai | c631d03 | 2009-09-03 15:59:26 +0200 | [diff] [blame] | 502 | } |
| 503 | |
Bhumika Goyal | b6c0b71 | 2017-08-17 14:45:51 +0530 | [diff] [blame] | 504 | static const struct snd_pcm_hardware dummy_pcm_hardware = { |
Takashi Iwai | c631d03 | 2009-09-03 15:59:26 +0200 | [diff] [blame] | 505 | .info = (SNDRV_PCM_INFO_MMAP | |
| 506 | SNDRV_PCM_INFO_INTERLEAVED | |
| 507 | SNDRV_PCM_INFO_RESUME | |
| 508 | SNDRV_PCM_INFO_MMAP_VALID), |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 509 | .formats = USE_FORMATS, |
| 510 | .rates = USE_RATE, |
| 511 | .rate_min = USE_RATE_MIN, |
| 512 | .rate_max = USE_RATE_MAX, |
| 513 | .channels_min = USE_CHANNELS_MIN, |
| 514 | .channels_max = USE_CHANNELS_MAX, |
| 515 | .buffer_bytes_max = MAX_BUFFER_SIZE, |
Jaroslav Kysela | d5e1ca0 | 2010-02-02 17:48:51 +0100 | [diff] [blame] | 516 | .period_bytes_min = MIN_PERIOD_SIZE, |
Takashi Iwai | e05d696 | 2006-08-17 17:12:19 +0200 | [diff] [blame] | 517 | .period_bytes_max = MAX_PERIOD_SIZE, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 518 | .periods_min = USE_PERIODS_MIN, |
| 519 | .periods_max = USE_PERIODS_MAX, |
| 520 | .fifo_size = 0, |
| 521 | }; |
| 522 | |
Takashi Iwai | c631d03 | 2009-09-03 15:59:26 +0200 | [diff] [blame] | 523 | static int dummy_pcm_hw_params(struct snd_pcm_substream *substream, |
| 524 | struct snd_pcm_hw_params *hw_params) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 525 | { |
Takashi Iwai | a68c4d1 | 2009-09-04 12:19:36 +0200 | [diff] [blame] | 526 | if (fake_buffer) { |
| 527 | /* runtime->dma_bytes has to be set manually to allow mmap */ |
| 528 | substream->runtime->dma_bytes = params_buffer_bytes(hw_params); |
| 529 | return 0; |
| 530 | } |
Takashi Iwai | ef1545b | 2019-12-09 10:48:37 +0100 | [diff] [blame] | 531 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 532 | } |
| 533 | |
Takashi Iwai | c631d03 | 2009-09-03 15:59:26 +0200 | [diff] [blame] | 534 | static int dummy_pcm_open(struct snd_pcm_substream *substream) |
Takashi Iwai | c8eb6ba | 2005-11-17 10:20:23 +0100 | [diff] [blame] | 535 | { |
Takashi Iwai | c631d03 | 2009-09-03 15:59:26 +0200 | [diff] [blame] | 536 | struct snd_dummy *dummy = snd_pcm_substream_chip(substream); |
Takashi Iwai | d64e7f7 | 2020-01-05 15:47:19 +0100 | [diff] [blame] | 537 | const struct dummy_model *model = dummy->model; |
Takashi Iwai | 4a4d2cf | 2005-11-17 14:27:28 +0100 | [diff] [blame] | 538 | struct snd_pcm_runtime *runtime = substream->runtime; |
Takashi Iwai | ddce57a | 2016-02-02 15:27:36 +0100 | [diff] [blame] | 539 | const struct dummy_timer_ops *ops; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 540 | int err; |
| 541 | |
Takashi Iwai | ddce57a | 2016-02-02 15:27:36 +0100 | [diff] [blame] | 542 | ops = &dummy_systimer_ops; |
Takashi Iwai | c631d03 | 2009-09-03 15:59:26 +0200 | [diff] [blame] | 543 | #ifdef CONFIG_HIGH_RES_TIMERS |
| 544 | if (hrtimer) |
Takashi Iwai | ddce57a | 2016-02-02 15:27:36 +0100 | [diff] [blame] | 545 | ops = &dummy_hrtimer_ops; |
Takashi Iwai | c631d03 | 2009-09-03 15:59:26 +0200 | [diff] [blame] | 546 | #endif |
| 547 | |
Takashi Iwai | ddce57a | 2016-02-02 15:27:36 +0100 | [diff] [blame] | 548 | err = ops->create(substream); |
Takashi Iwai | c631d03 | 2009-09-03 15:59:26 +0200 | [diff] [blame] | 549 | if (err < 0) |
| 550 | return err; |
Takashi Iwai | ddce57a | 2016-02-02 15:27:36 +0100 | [diff] [blame] | 551 | get_dummy_ops(substream) = ops; |
Takashi Iwai | c631d03 | 2009-09-03 15:59:26 +0200 | [diff] [blame] | 552 | |
Jaroslav Kysela | d5e1ca0 | 2010-02-02 17:48:51 +0100 | [diff] [blame] | 553 | runtime->hw = dummy->pcm_hw; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 554 | if (substream->pcm->device & 1) { |
| 555 | runtime->hw.info &= ~SNDRV_PCM_INFO_INTERLEAVED; |
| 556 | runtime->hw.info |= SNDRV_PCM_INFO_NONINTERLEAVED; |
| 557 | } |
| 558 | if (substream->pcm->device & 2) |
Takashi Iwai | c631d03 | 2009-09-03 15:59:26 +0200 | [diff] [blame] | 559 | runtime->hw.info &= ~(SNDRV_PCM_INFO_MMAP | |
| 560 | SNDRV_PCM_INFO_MMAP_VALID); |
| 561 | |
Jaroslav Kysela | d5e1ca0 | 2010-02-02 17:48:51 +0100 | [diff] [blame] | 562 | if (model == NULL) |
| 563 | return 0; |
| 564 | |
| 565 | if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK) { |
| 566 | if (model->playback_constraints) |
| 567 | err = model->playback_constraints(substream->runtime); |
| 568 | } else { |
| 569 | if (model->capture_constraints) |
| 570 | err = model->capture_constraints(substream->runtime); |
| 571 | } |
Takashi Iwai | c631d03 | 2009-09-03 15:59:26 +0200 | [diff] [blame] | 572 | if (err < 0) { |
Takashi Iwai | ddce57a | 2016-02-02 15:27:36 +0100 | [diff] [blame] | 573 | get_dummy_ops(substream)->free(substream); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 574 | return err; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 575 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 576 | return 0; |
| 577 | } |
| 578 | |
Takashi Iwai | c631d03 | 2009-09-03 15:59:26 +0200 | [diff] [blame] | 579 | static int dummy_pcm_close(struct snd_pcm_substream *substream) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 580 | { |
Takashi Iwai | ddce57a | 2016-02-02 15:27:36 +0100 | [diff] [blame] | 581 | get_dummy_ops(substream)->free(substream); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 582 | return 0; |
| 583 | } |
| 584 | |
Takashi Iwai | a68c4d1 | 2009-09-04 12:19:36 +0200 | [diff] [blame] | 585 | /* |
| 586 | * dummy buffer handling |
| 587 | */ |
| 588 | |
| 589 | static void *dummy_page[2]; |
| 590 | |
| 591 | static void free_fake_buffer(void) |
| 592 | { |
| 593 | if (fake_buffer) { |
| 594 | int i; |
| 595 | for (i = 0; i < 2; i++) |
| 596 | if (dummy_page[i]) { |
| 597 | free_page((unsigned long)dummy_page[i]); |
| 598 | dummy_page[i] = NULL; |
| 599 | } |
| 600 | } |
| 601 | } |
| 602 | |
| 603 | static int alloc_fake_buffer(void) |
| 604 | { |
| 605 | int i; |
| 606 | |
| 607 | if (!fake_buffer) |
| 608 | return 0; |
| 609 | for (i = 0; i < 2; i++) { |
| 610 | dummy_page[i] = (void *)get_zeroed_page(GFP_KERNEL); |
| 611 | if (!dummy_page[i]) { |
| 612 | free_fake_buffer(); |
| 613 | return -ENOMEM; |
| 614 | } |
| 615 | } |
| 616 | return 0; |
| 617 | } |
| 618 | |
| 619 | static int dummy_pcm_copy(struct snd_pcm_substream *substream, |
Takashi Iwai | d53611d | 2017-05-10 20:15:40 +0200 | [diff] [blame] | 620 | int channel, unsigned long pos, |
| 621 | void __user *dst, unsigned long bytes) |
| 622 | { |
| 623 | return 0; /* do nothing */ |
| 624 | } |
| 625 | |
| 626 | static int dummy_pcm_copy_kernel(struct snd_pcm_substream *substream, |
| 627 | int channel, unsigned long pos, |
| 628 | void *dst, unsigned long bytes) |
Takashi Iwai | a68c4d1 | 2009-09-04 12:19:36 +0200 | [diff] [blame] | 629 | { |
| 630 | return 0; /* do nothing */ |
| 631 | } |
| 632 | |
| 633 | static int dummy_pcm_silence(struct snd_pcm_substream *substream, |
Takashi Iwai | d53611d | 2017-05-10 20:15:40 +0200 | [diff] [blame] | 634 | int channel, unsigned long pos, |
| 635 | unsigned long bytes) |
Takashi Iwai | a68c4d1 | 2009-09-04 12:19:36 +0200 | [diff] [blame] | 636 | { |
| 637 | return 0; /* do nothing */ |
| 638 | } |
| 639 | |
| 640 | static struct page *dummy_pcm_page(struct snd_pcm_substream *substream, |
| 641 | unsigned long offset) |
| 642 | { |
| 643 | return virt_to_page(dummy_page[substream->stream]); /* the same page */ |
| 644 | } |
| 645 | |
Takashi Iwai | 1da7f0c | 2020-01-03 09:16:59 +0100 | [diff] [blame] | 646 | static const struct snd_pcm_ops dummy_pcm_ops = { |
Takashi Iwai | c631d03 | 2009-09-03 15:59:26 +0200 | [diff] [blame] | 647 | .open = dummy_pcm_open, |
| 648 | .close = dummy_pcm_close, |
Takashi Iwai | c631d03 | 2009-09-03 15:59:26 +0200 | [diff] [blame] | 649 | .hw_params = dummy_pcm_hw_params, |
Takashi Iwai | c631d03 | 2009-09-03 15:59:26 +0200 | [diff] [blame] | 650 | .prepare = dummy_pcm_prepare, |
| 651 | .trigger = dummy_pcm_trigger, |
| 652 | .pointer = dummy_pcm_pointer, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 653 | }; |
| 654 | |
Takashi Iwai | 1da7f0c | 2020-01-03 09:16:59 +0100 | [diff] [blame] | 655 | static const struct snd_pcm_ops dummy_pcm_ops_no_buf = { |
Takashi Iwai | a68c4d1 | 2009-09-04 12:19:36 +0200 | [diff] [blame] | 656 | .open = dummy_pcm_open, |
| 657 | .close = dummy_pcm_close, |
Takashi Iwai | a68c4d1 | 2009-09-04 12:19:36 +0200 | [diff] [blame] | 658 | .hw_params = dummy_pcm_hw_params, |
Takashi Iwai | a68c4d1 | 2009-09-04 12:19:36 +0200 | [diff] [blame] | 659 | .prepare = dummy_pcm_prepare, |
| 660 | .trigger = dummy_pcm_trigger, |
| 661 | .pointer = dummy_pcm_pointer, |
Takashi Iwai | d53611d | 2017-05-10 20:15:40 +0200 | [diff] [blame] | 662 | .copy_user = dummy_pcm_copy, |
| 663 | .copy_kernel = dummy_pcm_copy_kernel, |
| 664 | .fill_silence = dummy_pcm_silence, |
Takashi Iwai | a68c4d1 | 2009-09-04 12:19:36 +0200 | [diff] [blame] | 665 | .page = dummy_pcm_page, |
| 666 | }; |
| 667 | |
Bill Pemberton | fbbb01a | 2012-12-06 12:35:27 -0500 | [diff] [blame] | 668 | static int snd_card_dummy_pcm(struct snd_dummy *dummy, int device, |
| 669 | int substreams) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 670 | { |
Takashi Iwai | 4a4d2cf | 2005-11-17 14:27:28 +0100 | [diff] [blame] | 671 | struct snd_pcm *pcm; |
Takashi Iwai | 1da7f0c | 2020-01-03 09:16:59 +0100 | [diff] [blame] | 672 | const struct snd_pcm_ops *ops; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 673 | int err; |
| 674 | |
Jaroslav Kysela | 1a11cb6 | 2008-08-15 12:59:02 +0200 | [diff] [blame] | 675 | err = snd_pcm_new(dummy->card, "Dummy PCM", device, |
| 676 | substreams, substreams, &pcm); |
| 677 | if (err < 0) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 678 | return err; |
Takashi Iwai | 6e65c1c | 2005-11-17 16:01:56 +0100 | [diff] [blame] | 679 | dummy->pcm = pcm; |
Takashi Iwai | a68c4d1 | 2009-09-04 12:19:36 +0200 | [diff] [blame] | 680 | if (fake_buffer) |
| 681 | ops = &dummy_pcm_ops_no_buf; |
| 682 | else |
| 683 | ops = &dummy_pcm_ops; |
| 684 | snd_pcm_set_ops(pcm, SNDRV_PCM_STREAM_PLAYBACK, ops); |
| 685 | snd_pcm_set_ops(pcm, SNDRV_PCM_STREAM_CAPTURE, ops); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 686 | pcm->private_data = dummy; |
| 687 | pcm->info_flags = 0; |
| 688 | strcpy(pcm->name, "Dummy PCM"); |
Takashi Iwai | a68c4d1 | 2009-09-04 12:19:36 +0200 | [diff] [blame] | 689 | if (!fake_buffer) { |
Takashi Iwai | ef1545b | 2019-12-09 10:48:37 +0100 | [diff] [blame] | 690 | snd_pcm_set_managed_buffer_all(pcm, |
Takashi Iwai | a68c4d1 | 2009-09-04 12:19:36 +0200 | [diff] [blame] | 691 | SNDRV_DMA_TYPE_CONTINUOUS, |
Takashi Iwai | 8fd9da7 | 2019-11-05 16:18:33 +0100 | [diff] [blame] | 692 | NULL, |
Takashi Iwai | a68c4d1 | 2009-09-04 12:19:36 +0200 | [diff] [blame] | 693 | 0, 64*1024); |
| 694 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 695 | return 0; |
| 696 | } |
| 697 | |
Takashi Iwai | 9b151fe | 2009-09-08 14:30:49 +0200 | [diff] [blame] | 698 | /* |
| 699 | * mixer interface |
| 700 | */ |
| 701 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 702 | #define DUMMY_VOLUME(xname, xindex, addr) \ |
Takashi Iwai | fb567a8 | 2006-08-23 13:07:19 +0200 | [diff] [blame] | 703 | { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \ |
| 704 | .access = SNDRV_CTL_ELEM_ACCESS_READWRITE | SNDRV_CTL_ELEM_ACCESS_TLV_READ, \ |
| 705 | .name = xname, .index = xindex, \ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 706 | .info = snd_dummy_volume_info, \ |
| 707 | .get = snd_dummy_volume_get, .put = snd_dummy_volume_put, \ |
Takashi Iwai | fb567a8 | 2006-08-23 13:07:19 +0200 | [diff] [blame] | 708 | .private_value = addr, \ |
| 709 | .tlv = { .p = db_scale_dummy } } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 710 | |
Takashi Iwai | 4a4d2cf | 2005-11-17 14:27:28 +0100 | [diff] [blame] | 711 | static int snd_dummy_volume_info(struct snd_kcontrol *kcontrol, |
| 712 | struct snd_ctl_elem_info *uinfo) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 713 | { |
| 714 | uinfo->type = SNDRV_CTL_ELEM_TYPE_INTEGER; |
| 715 | uinfo->count = 2; |
| 716 | uinfo->value.integer.min = -50; |
| 717 | uinfo->value.integer.max = 100; |
| 718 | return 0; |
| 719 | } |
| 720 | |
Takashi Iwai | 4a4d2cf | 2005-11-17 14:27:28 +0100 | [diff] [blame] | 721 | static int snd_dummy_volume_get(struct snd_kcontrol *kcontrol, |
| 722 | struct snd_ctl_elem_value *ucontrol) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 723 | { |
Takashi Iwai | 4a4d2cf | 2005-11-17 14:27:28 +0100 | [diff] [blame] | 724 | struct snd_dummy *dummy = snd_kcontrol_chip(kcontrol); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 725 | int addr = kcontrol->private_value; |
| 726 | |
Takashi Iwai | c8eb6ba | 2005-11-17 10:20:23 +0100 | [diff] [blame] | 727 | spin_lock_irq(&dummy->mixer_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 728 | ucontrol->value.integer.value[0] = dummy->mixer_volume[addr][0]; |
| 729 | ucontrol->value.integer.value[1] = dummy->mixer_volume[addr][1]; |
Takashi Iwai | c8eb6ba | 2005-11-17 10:20:23 +0100 | [diff] [blame] | 730 | spin_unlock_irq(&dummy->mixer_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 731 | return 0; |
| 732 | } |
| 733 | |
Takashi Iwai | 4a4d2cf | 2005-11-17 14:27:28 +0100 | [diff] [blame] | 734 | static int snd_dummy_volume_put(struct snd_kcontrol *kcontrol, |
| 735 | struct snd_ctl_elem_value *ucontrol) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 736 | { |
Takashi Iwai | 4a4d2cf | 2005-11-17 14:27:28 +0100 | [diff] [blame] | 737 | struct snd_dummy *dummy = snd_kcontrol_chip(kcontrol); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 738 | int change, addr = kcontrol->private_value; |
| 739 | int left, right; |
| 740 | |
| 741 | left = ucontrol->value.integer.value[0]; |
| 742 | if (left < -50) |
| 743 | left = -50; |
| 744 | if (left > 100) |
| 745 | left = 100; |
| 746 | right = ucontrol->value.integer.value[1]; |
| 747 | if (right < -50) |
| 748 | right = -50; |
| 749 | if (right > 100) |
| 750 | right = 100; |
Takashi Iwai | c8eb6ba | 2005-11-17 10:20:23 +0100 | [diff] [blame] | 751 | spin_lock_irq(&dummy->mixer_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 752 | change = dummy->mixer_volume[addr][0] != left || |
| 753 | dummy->mixer_volume[addr][1] != right; |
| 754 | dummy->mixer_volume[addr][0] = left; |
| 755 | dummy->mixer_volume[addr][1] = right; |
Takashi Iwai | c8eb6ba | 2005-11-17 10:20:23 +0100 | [diff] [blame] | 756 | spin_unlock_irq(&dummy->mixer_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 757 | return change; |
| 758 | } |
| 759 | |
Takashi Iwai | 0cb29ea | 2007-01-29 15:33:49 +0100 | [diff] [blame] | 760 | static const DECLARE_TLV_DB_SCALE(db_scale_dummy, -4500, 30, 0); |
Takashi Iwai | fb567a8 | 2006-08-23 13:07:19 +0200 | [diff] [blame] | 761 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 762 | #define DUMMY_CAPSRC(xname, xindex, addr) \ |
| 763 | { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = xname, .index = xindex, \ |
| 764 | .info = snd_dummy_capsrc_info, \ |
| 765 | .get = snd_dummy_capsrc_get, .put = snd_dummy_capsrc_put, \ |
| 766 | .private_value = addr } |
| 767 | |
Takashi Iwai | a5ce889 | 2007-07-23 15:42:26 +0200 | [diff] [blame] | 768 | #define snd_dummy_capsrc_info snd_ctl_boolean_stereo_info |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 769 | |
Takashi Iwai | 4a4d2cf | 2005-11-17 14:27:28 +0100 | [diff] [blame] | 770 | static int snd_dummy_capsrc_get(struct snd_kcontrol *kcontrol, |
| 771 | struct snd_ctl_elem_value *ucontrol) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 772 | { |
Takashi Iwai | 4a4d2cf | 2005-11-17 14:27:28 +0100 | [diff] [blame] | 773 | struct snd_dummy *dummy = snd_kcontrol_chip(kcontrol); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 774 | int addr = kcontrol->private_value; |
| 775 | |
Takashi Iwai | c8eb6ba | 2005-11-17 10:20:23 +0100 | [diff] [blame] | 776 | spin_lock_irq(&dummy->mixer_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 777 | ucontrol->value.integer.value[0] = dummy->capture_source[addr][0]; |
| 778 | ucontrol->value.integer.value[1] = dummy->capture_source[addr][1]; |
Takashi Iwai | c8eb6ba | 2005-11-17 10:20:23 +0100 | [diff] [blame] | 779 | spin_unlock_irq(&dummy->mixer_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 780 | return 0; |
| 781 | } |
| 782 | |
Takashi Iwai | 4a4d2cf | 2005-11-17 14:27:28 +0100 | [diff] [blame] | 783 | static int snd_dummy_capsrc_put(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 784 | { |
Takashi Iwai | 4a4d2cf | 2005-11-17 14:27:28 +0100 | [diff] [blame] | 785 | struct snd_dummy *dummy = snd_kcontrol_chip(kcontrol); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 786 | int change, addr = kcontrol->private_value; |
| 787 | int left, right; |
| 788 | |
| 789 | left = ucontrol->value.integer.value[0] & 1; |
| 790 | right = ucontrol->value.integer.value[1] & 1; |
Takashi Iwai | c8eb6ba | 2005-11-17 10:20:23 +0100 | [diff] [blame] | 791 | spin_lock_irq(&dummy->mixer_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 792 | change = dummy->capture_source[addr][0] != left && |
| 793 | dummy->capture_source[addr][1] != right; |
| 794 | dummy->capture_source[addr][0] = left; |
| 795 | dummy->capture_source[addr][1] = right; |
Takashi Iwai | c8eb6ba | 2005-11-17 10:20:23 +0100 | [diff] [blame] | 796 | spin_unlock_irq(&dummy->mixer_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 797 | return change; |
| 798 | } |
| 799 | |
Clemens Ladisch | 16e4346 | 2012-10-20 12:21:36 +0200 | [diff] [blame] | 800 | static int snd_dummy_iobox_info(struct snd_kcontrol *kcontrol, |
| 801 | struct snd_ctl_elem_info *info) |
| 802 | { |
Colin Ian King | a4a1b73 | 2017-11-27 12:58:51 +0000 | [diff] [blame] | 803 | static const char *const names[] = { "None", "CD Player" }; |
Clemens Ladisch | 16e4346 | 2012-10-20 12:21:36 +0200 | [diff] [blame] | 804 | |
| 805 | return snd_ctl_enum_info(info, 1, 2, names); |
| 806 | } |
| 807 | |
| 808 | static int snd_dummy_iobox_get(struct snd_kcontrol *kcontrol, |
| 809 | struct snd_ctl_elem_value *value) |
| 810 | { |
| 811 | struct snd_dummy *dummy = snd_kcontrol_chip(kcontrol); |
| 812 | |
| 813 | value->value.enumerated.item[0] = dummy->iobox; |
| 814 | return 0; |
| 815 | } |
| 816 | |
| 817 | static int snd_dummy_iobox_put(struct snd_kcontrol *kcontrol, |
| 818 | struct snd_ctl_elem_value *value) |
| 819 | { |
| 820 | struct snd_dummy *dummy = snd_kcontrol_chip(kcontrol); |
| 821 | int changed; |
| 822 | |
| 823 | if (value->value.enumerated.item[0] > 1) |
| 824 | return -EINVAL; |
| 825 | |
| 826 | changed = value->value.enumerated.item[0] != dummy->iobox; |
| 827 | if (changed) { |
| 828 | dummy->iobox = value->value.enumerated.item[0]; |
| 829 | |
| 830 | if (dummy->iobox) { |
| 831 | dummy->cd_volume_ctl->vd[0].access &= |
| 832 | ~SNDRV_CTL_ELEM_ACCESS_INACTIVE; |
| 833 | dummy->cd_switch_ctl->vd[0].access &= |
| 834 | ~SNDRV_CTL_ELEM_ACCESS_INACTIVE; |
| 835 | } else { |
| 836 | dummy->cd_volume_ctl->vd[0].access |= |
| 837 | SNDRV_CTL_ELEM_ACCESS_INACTIVE; |
| 838 | dummy->cd_switch_ctl->vd[0].access |= |
| 839 | SNDRV_CTL_ELEM_ACCESS_INACTIVE; |
| 840 | } |
| 841 | |
| 842 | snd_ctl_notify(dummy->card, SNDRV_CTL_EVENT_MASK_INFO, |
| 843 | &dummy->cd_volume_ctl->id); |
| 844 | snd_ctl_notify(dummy->card, SNDRV_CTL_EVENT_MASK_INFO, |
| 845 | &dummy->cd_switch_ctl->id); |
| 846 | } |
| 847 | |
| 848 | return changed; |
| 849 | } |
| 850 | |
Takashi Iwai | 2eccd40 | 2020-01-03 09:16:49 +0100 | [diff] [blame] | 851 | static const struct snd_kcontrol_new snd_dummy_controls[] = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 852 | DUMMY_VOLUME("Master Volume", 0, MIXER_ADDR_MASTER), |
| 853 | DUMMY_CAPSRC("Master Capture Switch", 0, MIXER_ADDR_MASTER), |
| 854 | DUMMY_VOLUME("Synth Volume", 0, MIXER_ADDR_SYNTH), |
Takashi Iwai | e05d696 | 2006-08-17 17:12:19 +0200 | [diff] [blame] | 855 | DUMMY_CAPSRC("Synth Capture Switch", 0, MIXER_ADDR_SYNTH), |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 856 | DUMMY_VOLUME("Line Volume", 0, MIXER_ADDR_LINE), |
Takashi Iwai | e05d696 | 2006-08-17 17:12:19 +0200 | [diff] [blame] | 857 | DUMMY_CAPSRC("Line Capture Switch", 0, MIXER_ADDR_LINE), |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 858 | DUMMY_VOLUME("Mic Volume", 0, MIXER_ADDR_MIC), |
Takashi Iwai | e05d696 | 2006-08-17 17:12:19 +0200 | [diff] [blame] | 859 | DUMMY_CAPSRC("Mic Capture Switch", 0, MIXER_ADDR_MIC), |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 860 | DUMMY_VOLUME("CD Volume", 0, MIXER_ADDR_CD), |
Clemens Ladisch | 16e4346 | 2012-10-20 12:21:36 +0200 | [diff] [blame] | 861 | DUMMY_CAPSRC("CD Capture Switch", 0, MIXER_ADDR_CD), |
| 862 | { |
| 863 | .iface = SNDRV_CTL_ELEM_IFACE_MIXER, |
| 864 | .name = "External I/O Box", |
| 865 | .info = snd_dummy_iobox_info, |
| 866 | .get = snd_dummy_iobox_get, |
| 867 | .put = snd_dummy_iobox_put, |
| 868 | }, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 869 | }; |
| 870 | |
Bill Pemberton | fbbb01a | 2012-12-06 12:35:27 -0500 | [diff] [blame] | 871 | static int snd_card_dummy_new_mixer(struct snd_dummy *dummy) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 872 | { |
Takashi Iwai | 4a4d2cf | 2005-11-17 14:27:28 +0100 | [diff] [blame] | 873 | struct snd_card *card = dummy->card; |
Clemens Ladisch | 16e4346 | 2012-10-20 12:21:36 +0200 | [diff] [blame] | 874 | struct snd_kcontrol *kcontrol; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 875 | unsigned int idx; |
| 876 | int err; |
| 877 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 878 | spin_lock_init(&dummy->mixer_lock); |
| 879 | strcpy(card->mixername, "Dummy Mixer"); |
Clemens Ladisch | 16e4346 | 2012-10-20 12:21:36 +0200 | [diff] [blame] | 880 | dummy->iobox = 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 881 | |
| 882 | for (idx = 0; idx < ARRAY_SIZE(snd_dummy_controls); idx++) { |
Clemens Ladisch | 16e4346 | 2012-10-20 12:21:36 +0200 | [diff] [blame] | 883 | kcontrol = snd_ctl_new1(&snd_dummy_controls[idx], dummy); |
| 884 | err = snd_ctl_add(card, kcontrol); |
Jaroslav Kysela | 1a11cb6 | 2008-08-15 12:59:02 +0200 | [diff] [blame] | 885 | if (err < 0) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 886 | return err; |
Clemens Ladisch | 16e4346 | 2012-10-20 12:21:36 +0200 | [diff] [blame] | 887 | if (!strcmp(kcontrol->id.name, "CD Volume")) |
| 888 | dummy->cd_volume_ctl = kcontrol; |
| 889 | else if (!strcmp(kcontrol->id.name, "CD Capture Switch")) |
| 890 | dummy->cd_switch_ctl = kcontrol; |
| 891 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 892 | } |
| 893 | return 0; |
| 894 | } |
| 895 | |
Takashi Iwai | 129a4c9 | 2015-05-29 07:47:50 +0200 | [diff] [blame] | 896 | #if defined(CONFIG_SND_DEBUG) && defined(CONFIG_SND_PROC_FS) |
Takashi Iwai | 9b151fe | 2009-09-08 14:30:49 +0200 | [diff] [blame] | 897 | /* |
| 898 | * proc interface |
| 899 | */ |
Jaroslav Kysela | d5e1ca0 | 2010-02-02 17:48:51 +0100 | [diff] [blame] | 900 | static void print_formats(struct snd_dummy *dummy, |
| 901 | struct snd_info_buffer *buffer) |
Takashi Iwai | 9b151fe | 2009-09-08 14:30:49 +0200 | [diff] [blame] | 902 | { |
Takashi Iwai | c5f72ef | 2020-02-06 17:39:41 +0100 | [diff] [blame] | 903 | snd_pcm_format_t i; |
Takashi Iwai | 9b151fe | 2009-09-08 14:30:49 +0200 | [diff] [blame] | 904 | |
Takashi Iwai | c5f72ef | 2020-02-06 17:39:41 +0100 | [diff] [blame] | 905 | pcm_for_each_format(i) { |
| 906 | if (dummy->pcm_hw.formats & pcm_format_to_bits(i)) |
Takashi Iwai | 9b151fe | 2009-09-08 14:30:49 +0200 | [diff] [blame] | 907 | snd_iprintf(buffer, " %s", snd_pcm_format_name(i)); |
| 908 | } |
| 909 | } |
| 910 | |
Jaroslav Kysela | d5e1ca0 | 2010-02-02 17:48:51 +0100 | [diff] [blame] | 911 | static void print_rates(struct snd_dummy *dummy, |
| 912 | struct snd_info_buffer *buffer) |
Takashi Iwai | 9b151fe | 2009-09-08 14:30:49 +0200 | [diff] [blame] | 913 | { |
Takashi Iwai | d64e7f7 | 2020-01-05 15:47:19 +0100 | [diff] [blame] | 914 | static const int rates[] = { |
Takashi Iwai | 9b151fe | 2009-09-08 14:30:49 +0200 | [diff] [blame] | 915 | 5512, 8000, 11025, 16000, 22050, 32000, 44100, 48000, |
| 916 | 64000, 88200, 96000, 176400, 192000, |
| 917 | }; |
| 918 | int i; |
| 919 | |
Jaroslav Kysela | d5e1ca0 | 2010-02-02 17:48:51 +0100 | [diff] [blame] | 920 | if (dummy->pcm_hw.rates & SNDRV_PCM_RATE_CONTINUOUS) |
Takashi Iwai | 9b151fe | 2009-09-08 14:30:49 +0200 | [diff] [blame] | 921 | snd_iprintf(buffer, " continuous"); |
Jaroslav Kysela | d5e1ca0 | 2010-02-02 17:48:51 +0100 | [diff] [blame] | 922 | if (dummy->pcm_hw.rates & SNDRV_PCM_RATE_KNOT) |
Takashi Iwai | 9b151fe | 2009-09-08 14:30:49 +0200 | [diff] [blame] | 923 | snd_iprintf(buffer, " knot"); |
| 924 | for (i = 0; i < ARRAY_SIZE(rates); i++) |
Jaroslav Kysela | d5e1ca0 | 2010-02-02 17:48:51 +0100 | [diff] [blame] | 925 | if (dummy->pcm_hw.rates & (1 << i)) |
Takashi Iwai | 9b151fe | 2009-09-08 14:30:49 +0200 | [diff] [blame] | 926 | snd_iprintf(buffer, " %d", rates[i]); |
| 927 | } |
| 928 | |
Jaroslav Kysela | d5e1ca0 | 2010-02-02 17:48:51 +0100 | [diff] [blame] | 929 | #define get_dummy_int_ptr(dummy, ofs) \ |
| 930 | (unsigned int *)((char *)&((dummy)->pcm_hw) + (ofs)) |
| 931 | #define get_dummy_ll_ptr(dummy, ofs) \ |
| 932 | (unsigned long long *)((char *)&((dummy)->pcm_hw) + (ofs)) |
Takashi Iwai | 9b151fe | 2009-09-08 14:30:49 +0200 | [diff] [blame] | 933 | |
| 934 | struct dummy_hw_field { |
| 935 | const char *name; |
| 936 | const char *format; |
| 937 | unsigned int offset; |
| 938 | unsigned int size; |
| 939 | }; |
| 940 | #define FIELD_ENTRY(item, fmt) { \ |
| 941 | .name = #item, \ |
| 942 | .format = fmt, \ |
| 943 | .offset = offsetof(struct snd_pcm_hardware, item), \ |
| 944 | .size = sizeof(dummy_pcm_hardware.item) } |
| 945 | |
Takashi Iwai | d64e7f7 | 2020-01-05 15:47:19 +0100 | [diff] [blame] | 946 | static const struct dummy_hw_field fields[] = { |
Takashi Iwai | 9b151fe | 2009-09-08 14:30:49 +0200 | [diff] [blame] | 947 | FIELD_ENTRY(formats, "%#llx"), |
| 948 | FIELD_ENTRY(rates, "%#x"), |
| 949 | FIELD_ENTRY(rate_min, "%d"), |
| 950 | FIELD_ENTRY(rate_max, "%d"), |
| 951 | FIELD_ENTRY(channels_min, "%d"), |
| 952 | FIELD_ENTRY(channels_max, "%d"), |
| 953 | FIELD_ENTRY(buffer_bytes_max, "%ld"), |
| 954 | FIELD_ENTRY(period_bytes_min, "%ld"), |
| 955 | FIELD_ENTRY(period_bytes_max, "%ld"), |
| 956 | FIELD_ENTRY(periods_min, "%d"), |
| 957 | FIELD_ENTRY(periods_max, "%d"), |
| 958 | }; |
| 959 | |
| 960 | static void dummy_proc_read(struct snd_info_entry *entry, |
| 961 | struct snd_info_buffer *buffer) |
| 962 | { |
Jaroslav Kysela | d5e1ca0 | 2010-02-02 17:48:51 +0100 | [diff] [blame] | 963 | struct snd_dummy *dummy = entry->private_data; |
Takashi Iwai | 9b151fe | 2009-09-08 14:30:49 +0200 | [diff] [blame] | 964 | int i; |
| 965 | |
| 966 | for (i = 0; i < ARRAY_SIZE(fields); i++) { |
| 967 | snd_iprintf(buffer, "%s ", fields[i].name); |
| 968 | if (fields[i].size == sizeof(int)) |
| 969 | snd_iprintf(buffer, fields[i].format, |
Jaroslav Kysela | d5e1ca0 | 2010-02-02 17:48:51 +0100 | [diff] [blame] | 970 | *get_dummy_int_ptr(dummy, fields[i].offset)); |
Takashi Iwai | 9b151fe | 2009-09-08 14:30:49 +0200 | [diff] [blame] | 971 | else |
| 972 | snd_iprintf(buffer, fields[i].format, |
Jaroslav Kysela | d5e1ca0 | 2010-02-02 17:48:51 +0100 | [diff] [blame] | 973 | *get_dummy_ll_ptr(dummy, fields[i].offset)); |
Takashi Iwai | 9b151fe | 2009-09-08 14:30:49 +0200 | [diff] [blame] | 974 | if (!strcmp(fields[i].name, "formats")) |
Jaroslav Kysela | d5e1ca0 | 2010-02-02 17:48:51 +0100 | [diff] [blame] | 975 | print_formats(dummy, buffer); |
Takashi Iwai | 9b151fe | 2009-09-08 14:30:49 +0200 | [diff] [blame] | 976 | else if (!strcmp(fields[i].name, "rates")) |
Jaroslav Kysela | d5e1ca0 | 2010-02-02 17:48:51 +0100 | [diff] [blame] | 977 | print_rates(dummy, buffer); |
Takashi Iwai | 9b151fe | 2009-09-08 14:30:49 +0200 | [diff] [blame] | 978 | snd_iprintf(buffer, "\n"); |
| 979 | } |
| 980 | } |
| 981 | |
| 982 | static void dummy_proc_write(struct snd_info_entry *entry, |
| 983 | struct snd_info_buffer *buffer) |
| 984 | { |
Jaroslav Kysela | d5e1ca0 | 2010-02-02 17:48:51 +0100 | [diff] [blame] | 985 | struct snd_dummy *dummy = entry->private_data; |
Takashi Iwai | 9b151fe | 2009-09-08 14:30:49 +0200 | [diff] [blame] | 986 | char line[64]; |
| 987 | |
| 988 | while (!snd_info_get_line(buffer, line, sizeof(line))) { |
| 989 | char item[20]; |
| 990 | const char *ptr; |
| 991 | unsigned long long val; |
| 992 | int i; |
| 993 | |
| 994 | ptr = snd_info_get_str(item, line, sizeof(item)); |
| 995 | for (i = 0; i < ARRAY_SIZE(fields); i++) { |
| 996 | if (!strcmp(item, fields[i].name)) |
| 997 | break; |
| 998 | } |
| 999 | if (i >= ARRAY_SIZE(fields)) |
| 1000 | continue; |
| 1001 | snd_info_get_str(item, ptr, sizeof(item)); |
Jingoo Han | b785a49 | 2013-07-19 16:24:59 +0900 | [diff] [blame] | 1002 | if (kstrtoull(item, 0, &val)) |
Takashi Iwai | 9b151fe | 2009-09-08 14:30:49 +0200 | [diff] [blame] | 1003 | continue; |
| 1004 | if (fields[i].size == sizeof(int)) |
Jaroslav Kysela | d5e1ca0 | 2010-02-02 17:48:51 +0100 | [diff] [blame] | 1005 | *get_dummy_int_ptr(dummy, fields[i].offset) = val; |
Takashi Iwai | 9b151fe | 2009-09-08 14:30:49 +0200 | [diff] [blame] | 1006 | else |
Jaroslav Kysela | d5e1ca0 | 2010-02-02 17:48:51 +0100 | [diff] [blame] | 1007 | *get_dummy_ll_ptr(dummy, fields[i].offset) = val; |
Takashi Iwai | 9b151fe | 2009-09-08 14:30:49 +0200 | [diff] [blame] | 1008 | } |
| 1009 | } |
| 1010 | |
Bill Pemberton | fbbb01a | 2012-12-06 12:35:27 -0500 | [diff] [blame] | 1011 | static void dummy_proc_init(struct snd_dummy *chip) |
Takashi Iwai | 9b151fe | 2009-09-08 14:30:49 +0200 | [diff] [blame] | 1012 | { |
Takashi Iwai | 815d808 | 2019-02-04 15:58:33 +0100 | [diff] [blame] | 1013 | snd_card_rw_proc_new(chip->card, "dummy_pcm", chip, |
| 1014 | dummy_proc_read, dummy_proc_write); |
Takashi Iwai | 9b151fe | 2009-09-08 14:30:49 +0200 | [diff] [blame] | 1015 | } |
| 1016 | #else |
| 1017 | #define dummy_proc_init(x) |
Takashi Iwai | 129a4c9 | 2015-05-29 07:47:50 +0200 | [diff] [blame] | 1018 | #endif /* CONFIG_SND_DEBUG && CONFIG_SND_PROC_FS */ |
Takashi Iwai | 9b151fe | 2009-09-08 14:30:49 +0200 | [diff] [blame] | 1019 | |
Bill Pemberton | fbbb01a | 2012-12-06 12:35:27 -0500 | [diff] [blame] | 1020 | static int snd_dummy_probe(struct platform_device *devptr) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1021 | { |
Takashi Iwai | 4a4d2cf | 2005-11-17 14:27:28 +0100 | [diff] [blame] | 1022 | struct snd_card *card; |
| 1023 | struct snd_dummy *dummy; |
Takashi Iwai | d64e7f7 | 2020-01-05 15:47:19 +0100 | [diff] [blame] | 1024 | const struct dummy_model *m = NULL, **mdl; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1025 | int idx, err; |
Takashi Iwai | 6e65c1c | 2005-11-17 16:01:56 +0100 | [diff] [blame] | 1026 | int dev = devptr->id; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1027 | |
Takashi Iwai | ed16a22 | 2021-07-15 09:59:40 +0200 | [diff] [blame] | 1028 | err = snd_devm_card_new(&devptr->dev, index[dev], id[dev], THIS_MODULE, |
| 1029 | sizeof(struct snd_dummy), &card); |
Takashi Iwai | bd7dd77 | 2008-12-28 16:45:02 +0100 | [diff] [blame] | 1030 | if (err < 0) |
| 1031 | return err; |
Takashi Iwai | 4a4d2cf | 2005-11-17 14:27:28 +0100 | [diff] [blame] | 1032 | dummy = card->private_data; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1033 | dummy->card = card; |
Jaroslav Kysela | d5e1ca0 | 2010-02-02 17:48:51 +0100 | [diff] [blame] | 1034 | for (mdl = dummy_models; *mdl && model[dev]; mdl++) { |
| 1035 | if (strcmp(model[dev], (*mdl)->name) == 0) { |
| 1036 | printk(KERN_INFO |
| 1037 | "snd-dummy: Using model '%s' for card %i\n", |
| 1038 | (*mdl)->name, card->number); |
| 1039 | m = dummy->model = *mdl; |
| 1040 | break; |
| 1041 | } |
| 1042 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1043 | for (idx = 0; idx < MAX_PCM_DEVICES && idx < pcm_devs[dev]; idx++) { |
| 1044 | if (pcm_substreams[dev] < 1) |
| 1045 | pcm_substreams[dev] = 1; |
| 1046 | if (pcm_substreams[dev] > MAX_PCM_SUBSTREAMS) |
| 1047 | pcm_substreams[dev] = MAX_PCM_SUBSTREAMS; |
Jaroslav Kysela | 1a11cb6 | 2008-08-15 12:59:02 +0200 | [diff] [blame] | 1048 | err = snd_card_dummy_pcm(dummy, idx, pcm_substreams[dev]); |
| 1049 | if (err < 0) |
Takashi Iwai | ed16a22 | 2021-07-15 09:59:40 +0200 | [diff] [blame] | 1050 | return err; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1051 | } |
Jaroslav Kysela | d5e1ca0 | 2010-02-02 17:48:51 +0100 | [diff] [blame] | 1052 | |
| 1053 | dummy->pcm_hw = dummy_pcm_hardware; |
| 1054 | if (m) { |
| 1055 | if (m->formats) |
| 1056 | dummy->pcm_hw.formats = m->formats; |
| 1057 | if (m->buffer_bytes_max) |
| 1058 | dummy->pcm_hw.buffer_bytes_max = m->buffer_bytes_max; |
| 1059 | if (m->period_bytes_min) |
| 1060 | dummy->pcm_hw.period_bytes_min = m->period_bytes_min; |
| 1061 | if (m->period_bytes_max) |
| 1062 | dummy->pcm_hw.period_bytes_max = m->period_bytes_max; |
| 1063 | if (m->periods_min) |
| 1064 | dummy->pcm_hw.periods_min = m->periods_min; |
| 1065 | if (m->periods_max) |
| 1066 | dummy->pcm_hw.periods_max = m->periods_max; |
| 1067 | if (m->rates) |
| 1068 | dummy->pcm_hw.rates = m->rates; |
| 1069 | if (m->rate_min) |
| 1070 | dummy->pcm_hw.rate_min = m->rate_min; |
| 1071 | if (m->rate_max) |
| 1072 | dummy->pcm_hw.rate_max = m->rate_max; |
| 1073 | if (m->channels_min) |
| 1074 | dummy->pcm_hw.channels_min = m->channels_min; |
| 1075 | if (m->channels_max) |
| 1076 | dummy->pcm_hw.channels_max = m->channels_max; |
| 1077 | } |
| 1078 | |
Jaroslav Kysela | 1a11cb6 | 2008-08-15 12:59:02 +0200 | [diff] [blame] | 1079 | err = snd_card_dummy_new_mixer(dummy); |
| 1080 | if (err < 0) |
Takashi Iwai | ed16a22 | 2021-07-15 09:59:40 +0200 | [diff] [blame] | 1081 | return err; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1082 | strcpy(card->driver, "Dummy"); |
| 1083 | strcpy(card->shortname, "Dummy"); |
| 1084 | sprintf(card->longname, "Dummy %i", dev + 1); |
Takashi Iwai | 16dab54 | 2005-09-05 17:17:58 +0200 | [diff] [blame] | 1085 | |
Takashi Iwai | 9b151fe | 2009-09-08 14:30:49 +0200 | [diff] [blame] | 1086 | dummy_proc_init(dummy); |
| 1087 | |
Jaroslav Kysela | 1a11cb6 | 2008-08-15 12:59:02 +0200 | [diff] [blame] | 1088 | err = snd_card_register(card); |
Takashi Iwai | ed16a22 | 2021-07-15 09:59:40 +0200 | [diff] [blame] | 1089 | if (err < 0) |
| 1090 | return err; |
| 1091 | platform_set_drvdata(devptr, card); |
Takashi Iwai | 6e65c1c | 2005-11-17 16:01:56 +0100 | [diff] [blame] | 1092 | return 0; |
| 1093 | } |
| 1094 | |
Takashi Iwai | d34e4e0 | 2012-08-09 15:47:15 +0200 | [diff] [blame] | 1095 | #ifdef CONFIG_PM_SLEEP |
Takashi Iwai | 284e7ca | 2012-07-02 11:22:40 +0200 | [diff] [blame] | 1096 | static int snd_dummy_suspend(struct device *pdev) |
Takashi Iwai | 6e65c1c | 2005-11-17 16:01:56 +0100 | [diff] [blame] | 1097 | { |
Takashi Iwai | 284e7ca | 2012-07-02 11:22:40 +0200 | [diff] [blame] | 1098 | struct snd_card *card = dev_get_drvdata(pdev); |
Takashi Iwai | 6e65c1c | 2005-11-17 16:01:56 +0100 | [diff] [blame] | 1099 | |
| 1100 | snd_power_change_state(card, SNDRV_CTL_POWER_D3hot); |
Takashi Iwai | 6e65c1c | 2005-11-17 16:01:56 +0100 | [diff] [blame] | 1101 | return 0; |
| 1102 | } |
| 1103 | |
Takashi Iwai | 284e7ca | 2012-07-02 11:22:40 +0200 | [diff] [blame] | 1104 | static int snd_dummy_resume(struct device *pdev) |
Takashi Iwai | 6e65c1c | 2005-11-17 16:01:56 +0100 | [diff] [blame] | 1105 | { |
Takashi Iwai | 284e7ca | 2012-07-02 11:22:40 +0200 | [diff] [blame] | 1106 | struct snd_card *card = dev_get_drvdata(pdev); |
Takashi Iwai | 6e65c1c | 2005-11-17 16:01:56 +0100 | [diff] [blame] | 1107 | |
| 1108 | snd_power_change_state(card, SNDRV_CTL_POWER_D0); |
| 1109 | return 0; |
| 1110 | } |
Takashi Iwai | 284e7ca | 2012-07-02 11:22:40 +0200 | [diff] [blame] | 1111 | |
| 1112 | static SIMPLE_DEV_PM_OPS(snd_dummy_pm, snd_dummy_suspend, snd_dummy_resume); |
| 1113 | #define SND_DUMMY_PM_OPS &snd_dummy_pm |
| 1114 | #else |
| 1115 | #define SND_DUMMY_PM_OPS NULL |
Takashi Iwai | 6e65c1c | 2005-11-17 16:01:56 +0100 | [diff] [blame] | 1116 | #endif |
| 1117 | |
| 1118 | #define SND_DUMMY_DRIVER "snd_dummy" |
| 1119 | |
| 1120 | static struct platform_driver snd_dummy_driver = { |
| 1121 | .probe = snd_dummy_probe, |
Takashi Iwai | 6e65c1c | 2005-11-17 16:01:56 +0100 | [diff] [blame] | 1122 | .driver = { |
Takashi Iwai | 8bf01d8 | 2012-07-02 10:50:24 +0200 | [diff] [blame] | 1123 | .name = SND_DUMMY_DRIVER, |
Takashi Iwai | 284e7ca | 2012-07-02 11:22:40 +0200 | [diff] [blame] | 1124 | .pm = SND_DUMMY_PM_OPS, |
Takashi Iwai | 6e65c1c | 2005-11-17 16:01:56 +0100 | [diff] [blame] | 1125 | }, |
| 1126 | }; |
| 1127 | |
Randy Dunlap | c12aad6 | 2007-06-25 12:08:01 +0200 | [diff] [blame] | 1128 | static void snd_dummy_unregister_all(void) |
Clemens Ladisch | f7a9275 | 2005-12-07 09:13:42 +0100 | [diff] [blame] | 1129 | { |
| 1130 | int i; |
| 1131 | |
| 1132 | for (i = 0; i < ARRAY_SIZE(devices); ++i) |
| 1133 | platform_device_unregister(devices[i]); |
| 1134 | platform_driver_unregister(&snd_dummy_driver); |
Takashi Iwai | a68c4d1 | 2009-09-04 12:19:36 +0200 | [diff] [blame] | 1135 | free_fake_buffer(); |
Clemens Ladisch | f7a9275 | 2005-12-07 09:13:42 +0100 | [diff] [blame] | 1136 | } |
| 1137 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1138 | static int __init alsa_card_dummy_init(void) |
| 1139 | { |
Takashi Iwai | 6e65c1c | 2005-11-17 16:01:56 +0100 | [diff] [blame] | 1140 | int i, cards, err; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1141 | |
Jaroslav Kysela | 1a11cb6 | 2008-08-15 12:59:02 +0200 | [diff] [blame] | 1142 | err = platform_driver_register(&snd_dummy_driver); |
| 1143 | if (err < 0) |
Takashi Iwai | 6e65c1c | 2005-11-17 16:01:56 +0100 | [diff] [blame] | 1144 | return err; |
| 1145 | |
Takashi Iwai | a68c4d1 | 2009-09-04 12:19:36 +0200 | [diff] [blame] | 1146 | err = alloc_fake_buffer(); |
| 1147 | if (err < 0) { |
| 1148 | platform_driver_unregister(&snd_dummy_driver); |
| 1149 | return err; |
| 1150 | } |
| 1151 | |
Takashi Iwai | 6e65c1c | 2005-11-17 16:01:56 +0100 | [diff] [blame] | 1152 | cards = 0; |
Takashi Iwai | 8278ca8 | 2006-02-20 11:57:34 +0100 | [diff] [blame] | 1153 | for (i = 0; i < SNDRV_CARDS; i++) { |
Takashi Iwai | 6e65c1c | 2005-11-17 16:01:56 +0100 | [diff] [blame] | 1154 | struct platform_device *device; |
Takashi Iwai | 8278ca8 | 2006-02-20 11:57:34 +0100 | [diff] [blame] | 1155 | if (! enable[i]) |
| 1156 | continue; |
Takashi Iwai | 6e65c1c | 2005-11-17 16:01:56 +0100 | [diff] [blame] | 1157 | device = platform_device_register_simple(SND_DUMMY_DRIVER, |
| 1158 | i, NULL, 0); |
Rene Herman | a182ee9 | 2006-04-13 12:57:11 +0200 | [diff] [blame] | 1159 | if (IS_ERR(device)) |
| 1160 | continue; |
Rene Herman | 7152447 | 2006-04-13 12:58:06 +0200 | [diff] [blame] | 1161 | if (!platform_get_drvdata(device)) { |
| 1162 | platform_device_unregister(device); |
| 1163 | continue; |
| 1164 | } |
Clemens Ladisch | f7a9275 | 2005-12-07 09:13:42 +0100 | [diff] [blame] | 1165 | devices[i] = device; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1166 | cards++; |
| 1167 | } |
| 1168 | if (!cards) { |
| 1169 | #ifdef MODULE |
| 1170 | printk(KERN_ERR "Dummy soundcard not found or device busy\n"); |
| 1171 | #endif |
Rene Herman | a182ee9 | 2006-04-13 12:57:11 +0200 | [diff] [blame] | 1172 | snd_dummy_unregister_all(); |
| 1173 | return -ENODEV; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1174 | } |
| 1175 | return 0; |
| 1176 | } |
| 1177 | |
| 1178 | static void __exit alsa_card_dummy_exit(void) |
| 1179 | { |
Clemens Ladisch | f7a9275 | 2005-12-07 09:13:42 +0100 | [diff] [blame] | 1180 | snd_dummy_unregister_all(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1181 | } |
| 1182 | |
| 1183 | module_init(alsa_card_dummy_init) |
| 1184 | module_exit(alsa_card_dummy_exit) |