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