blob: 8cd2f930ad0baf1db6646101b89e41f3d5947d57 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * Digital Audio (PCM) abstract layer
Jaroslav Kyselac1017a42007-10-15 09:50:19 +02003 * Copyright (c) by Jaroslav Kysela <perex@perex.cz>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004 *
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
19 *
20 */
21
Linus Torvalds1da177e2005-04-16 15:20:36 -070022#include <linux/mm.h>
Paul Gortmakerda155d52011-07-15 12:38:28 -040023#include <linux/module.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070024#include <linux/file.h>
25#include <linux/slab.h>
26#include <linux/time.h>
Jean Pihete8db0be2011-08-25 15:35:03 +020027#include <linux/pm_qos.h>
Kent Overstreeta27bb332013-05-07 16:19:08 -070028#include <linux/aio.h>
Takashi Iwai657b1982009-11-26 12:40:21 +010029#include <linux/dma-mapping.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070030#include <sound/core.h>
31#include <sound/control.h>
32#include <sound/info.h>
33#include <sound/pcm.h>
34#include <sound/pcm_params.h>
35#include <sound/timer.h>
36#include <sound/minors.h>
37#include <asm/io.h>
Takashi Iwai9fe17b52010-05-12 10:32:42 +020038#if defined(CONFIG_MIPS) && defined(CONFIG_DMA_NONCOHERENT)
39#include <dma-coherence.h>
40#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070041
42/*
43 * Compatibility
44 */
45
Takashi Iwai877211f2005-11-17 13:59:38 +010046struct snd_pcm_hw_params_old {
Linus Torvalds1da177e2005-04-16 15:20:36 -070047 unsigned int flags;
48 unsigned int masks[SNDRV_PCM_HW_PARAM_SUBFORMAT -
49 SNDRV_PCM_HW_PARAM_ACCESS + 1];
Takashi Iwai877211f2005-11-17 13:59:38 +010050 struct snd_interval intervals[SNDRV_PCM_HW_PARAM_TICK_TIME -
Linus Torvalds1da177e2005-04-16 15:20:36 -070051 SNDRV_PCM_HW_PARAM_SAMPLE_BITS + 1];
52 unsigned int rmask;
53 unsigned int cmask;
54 unsigned int info;
55 unsigned int msbits;
56 unsigned int rate_num;
57 unsigned int rate_den;
Takashi Iwai877211f2005-11-17 13:59:38 +010058 snd_pcm_uframes_t fifo_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -070059 unsigned char reserved[64];
60};
61
Takashi Iwai59d48582005-12-01 10:51:58 +010062#ifdef CONFIG_SND_SUPPORT_OLD_API
Takashi Iwai877211f2005-11-17 13:59:38 +010063#define SNDRV_PCM_IOCTL_HW_REFINE_OLD _IOWR('A', 0x10, struct snd_pcm_hw_params_old)
64#define SNDRV_PCM_IOCTL_HW_PARAMS_OLD _IOWR('A', 0x11, struct snd_pcm_hw_params_old)
Linus Torvalds1da177e2005-04-16 15:20:36 -070065
Takashi Iwai877211f2005-11-17 13:59:38 +010066static int snd_pcm_hw_refine_old_user(struct snd_pcm_substream *substream,
67 struct snd_pcm_hw_params_old __user * _oparams);
68static int snd_pcm_hw_params_old_user(struct snd_pcm_substream *substream,
69 struct snd_pcm_hw_params_old __user * _oparams);
Takashi Iwai59d48582005-12-01 10:51:58 +010070#endif
Clemens Ladischf87135f2005-11-20 14:06:59 +010071static int snd_pcm_open(struct file *file, struct snd_pcm *pcm, int stream);
Linus Torvalds1da177e2005-04-16 15:20:36 -070072
73/*
74 *
75 */
76
77DEFINE_RWLOCK(snd_pcm_link_rwlock);
Takashi Iwaie88e8ae62006-04-28 15:13:40 +020078EXPORT_SYMBOL(snd_pcm_link_rwlock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070079
Takashi Iwaie88e8ae62006-04-28 15:13:40 +020080static DECLARE_RWSEM(snd_pcm_link_rwsem);
Linus Torvalds1da177e2005-04-16 15:20:36 -070081
82static inline mm_segment_t snd_enter_user(void)
83{
84 mm_segment_t fs = get_fs();
85 set_fs(get_ds());
86 return fs;
87}
88
89static inline void snd_leave_user(mm_segment_t fs)
90{
91 set_fs(fs);
92}
93
94
95
Takashi Iwai877211f2005-11-17 13:59:38 +010096int snd_pcm_info(struct snd_pcm_substream *substream, struct snd_pcm_info *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -070097{
Takashi Iwai877211f2005-11-17 13:59:38 +010098 struct snd_pcm_runtime *runtime;
99 struct snd_pcm *pcm = substream->pcm;
100 struct snd_pcm_str *pstr = substream->pstr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102 memset(info, 0, sizeof(*info));
103 info->card = pcm->card->number;
104 info->device = pcm->device;
105 info->stream = substream->stream;
106 info->subdevice = substream->number;
107 strlcpy(info->id, pcm->id, sizeof(info->id));
108 strlcpy(info->name, pcm->name, sizeof(info->name));
109 info->dev_class = pcm->dev_class;
110 info->dev_subclass = pcm->dev_subclass;
111 info->subdevices_count = pstr->substream_count;
112 info->subdevices_avail = pstr->substream_count - pstr->substream_opened;
113 strlcpy(info->subname, substream->name, sizeof(info->subname));
114 runtime = substream->runtime;
115 /* AB: FIXME!!! This is definitely nonsense */
116 if (runtime) {
117 info->sync = runtime->sync;
118 substream->ops->ioctl(substream, SNDRV_PCM_IOCTL1_INFO, info);
119 }
120 return 0;
121}
122
Takashi Iwai877211f2005-11-17 13:59:38 +0100123int snd_pcm_info_user(struct snd_pcm_substream *substream,
124 struct snd_pcm_info __user * _info)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125{
Takashi Iwai877211f2005-11-17 13:59:38 +0100126 struct snd_pcm_info *info;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127 int err;
128
129 info = kmalloc(sizeof(*info), GFP_KERNEL);
130 if (! info)
131 return -ENOMEM;
132 err = snd_pcm_info(substream, info);
133 if (err >= 0) {
134 if (copy_to_user(_info, info, sizeof(*info)))
135 err = -EFAULT;
136 }
137 kfree(info);
138 return err;
139}
140
141#undef RULES_DEBUG
142
143#ifdef RULES_DEBUG
144#define HW_PARAM(v) [SNDRV_PCM_HW_PARAM_##v] = #v
Joe Perches47023ec2010-09-13 21:24:02 -0700145static const char * const snd_pcm_hw_param_names[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146 HW_PARAM(ACCESS),
147 HW_PARAM(FORMAT),
148 HW_PARAM(SUBFORMAT),
149 HW_PARAM(SAMPLE_BITS),
150 HW_PARAM(FRAME_BITS),
151 HW_PARAM(CHANNELS),
152 HW_PARAM(RATE),
153 HW_PARAM(PERIOD_TIME),
154 HW_PARAM(PERIOD_SIZE),
155 HW_PARAM(PERIOD_BYTES),
156 HW_PARAM(PERIODS),
157 HW_PARAM(BUFFER_TIME),
158 HW_PARAM(BUFFER_SIZE),
159 HW_PARAM(BUFFER_BYTES),
160 HW_PARAM(TICK_TIME),
161};
162#endif
163
Takashi Iwai877211f2005-11-17 13:59:38 +0100164int snd_pcm_hw_refine(struct snd_pcm_substream *substream,
165 struct snd_pcm_hw_params *params)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166{
167 unsigned int k;
Takashi Iwai877211f2005-11-17 13:59:38 +0100168 struct snd_pcm_hardware *hw;
169 struct snd_interval *i = NULL;
170 struct snd_mask *m = NULL;
171 struct snd_pcm_hw_constraints *constrs = &substream->runtime->hw_constraints;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172 unsigned int rstamps[constrs->rules_num];
173 unsigned int vstamps[SNDRV_PCM_HW_PARAM_LAST_INTERVAL + 1];
174 unsigned int stamp = 2;
175 int changed, again;
176
177 params->info = 0;
178 params->fifo_size = 0;
179 if (params->rmask & (1 << SNDRV_PCM_HW_PARAM_SAMPLE_BITS))
180 params->msbits = 0;
181 if (params->rmask & (1 << SNDRV_PCM_HW_PARAM_RATE)) {
182 params->rate_num = 0;
183 params->rate_den = 0;
184 }
185
186 for (k = SNDRV_PCM_HW_PARAM_FIRST_MASK; k <= SNDRV_PCM_HW_PARAM_LAST_MASK; k++) {
187 m = hw_param_mask(params, k);
188 if (snd_mask_empty(m))
189 return -EINVAL;
190 if (!(params->rmask & (1 << k)))
191 continue;
192#ifdef RULES_DEBUG
Takashi Iwai09e56df2014-02-04 18:19:48 +0100193 pr_debug("%s = ", snd_pcm_hw_param_names[k]);
194 pr_cont("%04x%04x%04x%04x -> ", m->bits[3], m->bits[2], m->bits[1], m->bits[0]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195#endif
196 changed = snd_mask_refine(m, constrs_mask(constrs, k));
197#ifdef RULES_DEBUG
Takashi Iwai09e56df2014-02-04 18:19:48 +0100198 pr_cont("%04x%04x%04x%04x\n", m->bits[3], m->bits[2], m->bits[1], m->bits[0]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199#endif
200 if (changed)
201 params->cmask |= 1 << k;
202 if (changed < 0)
203 return changed;
204 }
205
206 for (k = SNDRV_PCM_HW_PARAM_FIRST_INTERVAL; k <= SNDRV_PCM_HW_PARAM_LAST_INTERVAL; k++) {
207 i = hw_param_interval(params, k);
208 if (snd_interval_empty(i))
209 return -EINVAL;
210 if (!(params->rmask & (1 << k)))
211 continue;
212#ifdef RULES_DEBUG
Takashi Iwai09e56df2014-02-04 18:19:48 +0100213 pr_debug("%s = ", snd_pcm_hw_param_names[k]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214 if (i->empty)
Takashi Iwai09e56df2014-02-04 18:19:48 +0100215 pr_cont("empty");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216 else
Takashi Iwai09e56df2014-02-04 18:19:48 +0100217 pr_cont("%c%u %u%c",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218 i->openmin ? '(' : '[', i->min,
219 i->max, i->openmax ? ')' : ']');
Takashi Iwai09e56df2014-02-04 18:19:48 +0100220 pr_cont(" -> ");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221#endif
222 changed = snd_interval_refine(i, constrs_interval(constrs, k));
223#ifdef RULES_DEBUG
224 if (i->empty)
Takashi Iwai09e56df2014-02-04 18:19:48 +0100225 pr_cont("empty\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226 else
Takashi Iwai09e56df2014-02-04 18:19:48 +0100227 pr_cont("%c%u %u%c\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228 i->openmin ? '(' : '[', i->min,
229 i->max, i->openmax ? ')' : ']');
230#endif
231 if (changed)
232 params->cmask |= 1 << k;
233 if (changed < 0)
234 return changed;
235 }
236
237 for (k = 0; k < constrs->rules_num; k++)
238 rstamps[k] = 0;
239 for (k = 0; k <= SNDRV_PCM_HW_PARAM_LAST_INTERVAL; k++)
240 vstamps[k] = (params->rmask & (1 << k)) ? 1 : 0;
241 do {
242 again = 0;
243 for (k = 0; k < constrs->rules_num; k++) {
Takashi Iwai877211f2005-11-17 13:59:38 +0100244 struct snd_pcm_hw_rule *r = &constrs->rules[k];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245 unsigned int d;
246 int doit = 0;
247 if (r->cond && !(r->cond & params->flags))
248 continue;
249 for (d = 0; r->deps[d] >= 0; d++) {
250 if (vstamps[r->deps[d]] > rstamps[k]) {
251 doit = 1;
252 break;
253 }
254 }
255 if (!doit)
256 continue;
257#ifdef RULES_DEBUG
Takashi Iwai09e56df2014-02-04 18:19:48 +0100258 pr_debug("Rule %d [%p]: ", k, r->func);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259 if (r->var >= 0) {
Takashi Iwai09e56df2014-02-04 18:19:48 +0100260 pr_cont("%s = ", snd_pcm_hw_param_names[r->var]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261 if (hw_is_mask(r->var)) {
262 m = hw_param_mask(params, r->var);
Takashi Iwai09e56df2014-02-04 18:19:48 +0100263 pr_cont("%x", *m->bits);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700264 } else {
265 i = hw_param_interval(params, r->var);
266 if (i->empty)
Takashi Iwai09e56df2014-02-04 18:19:48 +0100267 pr_cont("empty");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268 else
Takashi Iwai09e56df2014-02-04 18:19:48 +0100269 pr_cont("%c%u %u%c",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700270 i->openmin ? '(' : '[', i->min,
271 i->max, i->openmax ? ')' : ']');
272 }
273 }
274#endif
275 changed = r->func(params, r);
276#ifdef RULES_DEBUG
277 if (r->var >= 0) {
Takashi Iwai09e56df2014-02-04 18:19:48 +0100278 pr_cont(" -> ");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279 if (hw_is_mask(r->var))
Takashi Iwai09e56df2014-02-04 18:19:48 +0100280 pr_cont("%x", *m->bits);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281 else {
282 if (i->empty)
Takashi Iwai09e56df2014-02-04 18:19:48 +0100283 pr_cont("empty");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284 else
Takashi Iwai09e56df2014-02-04 18:19:48 +0100285 pr_cont("%c%u %u%c",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700286 i->openmin ? '(' : '[', i->min,
287 i->max, i->openmax ? ')' : ']');
288 }
289 }
Takashi Iwai09e56df2014-02-04 18:19:48 +0100290 pr_cont("\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291#endif
292 rstamps[k] = stamp;
293 if (changed && r->var >= 0) {
294 params->cmask |= (1 << r->var);
295 vstamps[r->var] = stamp;
296 again = 1;
297 }
298 if (changed < 0)
299 return changed;
300 stamp++;
301 }
302 } while (again);
303 if (!params->msbits) {
304 i = hw_param_interval(params, SNDRV_PCM_HW_PARAM_SAMPLE_BITS);
305 if (snd_interval_single(i))
306 params->msbits = snd_interval_value(i);
307 }
308
309 if (!params->rate_den) {
310 i = hw_param_interval(params, SNDRV_PCM_HW_PARAM_RATE);
311 if (snd_interval_single(i)) {
312 params->rate_num = snd_interval_value(i);
313 params->rate_den = 1;
314 }
315 }
316
317 hw = &substream->runtime->hw;
318 if (!params->info)
Jaroslav Kysela8bea8692009-04-27 09:44:40 +0200319 params->info = hw->info & ~SNDRV_PCM_INFO_FIFO_IN_FRAMES;
320 if (!params->fifo_size) {
Jaroslav Kysela3be522a2010-02-16 11:55:43 +0100321 m = hw_param_mask(params, SNDRV_PCM_HW_PARAM_FORMAT);
322 i = hw_param_interval(params, SNDRV_PCM_HW_PARAM_CHANNELS);
323 if (snd_mask_min(m) == snd_mask_max(m) &&
324 snd_interval_min(i) == snd_interval_max(i)) {
Jaroslav Kysela8bea8692009-04-27 09:44:40 +0200325 changed = substream->ops->ioctl(substream,
326 SNDRV_PCM_IOCTL1_FIFO_SIZE, params);
Mariusz Kozlowski8bd9bca2009-06-21 20:26:59 +0200327 if (changed < 0)
Jaroslav Kysela8bea8692009-04-27 09:44:40 +0200328 return changed;
329 }
330 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331 params->rmask = 0;
332 return 0;
333}
334
Takashi Iwaie88e8ae62006-04-28 15:13:40 +0200335EXPORT_SYMBOL(snd_pcm_hw_refine);
336
Takashi Iwai877211f2005-11-17 13:59:38 +0100337static int snd_pcm_hw_refine_user(struct snd_pcm_substream *substream,
338 struct snd_pcm_hw_params __user * _params)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700339{
Takashi Iwai877211f2005-11-17 13:59:38 +0100340 struct snd_pcm_hw_params *params;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341 int err;
342
Li Zefanef44a1e2009-04-10 09:43:08 +0800343 params = memdup_user(_params, sizeof(*params));
344 if (IS_ERR(params))
345 return PTR_ERR(params);
346
Linus Torvalds1da177e2005-04-16 15:20:36 -0700347 err = snd_pcm_hw_refine(substream, params);
348 if (copy_to_user(_params, params, sizeof(*params))) {
349 if (!err)
350 err = -EFAULT;
351 }
Li Zefanef44a1e2009-04-10 09:43:08 +0800352
Linus Torvalds1da177e2005-04-16 15:20:36 -0700353 kfree(params);
354 return err;
355}
356
Takashi Iwai9442e692006-09-30 23:27:19 -0700357static int period_to_usecs(struct snd_pcm_runtime *runtime)
358{
359 int usecs;
360
361 if (! runtime->rate)
362 return -1; /* invalid */
363
364 /* take 75% of period time as the deadline */
365 usecs = (750000 / runtime->rate) * runtime->period_size;
366 usecs += ((750000 % runtime->rate) * runtime->period_size) /
367 runtime->rate;
368
369 return usecs;
370}
371
Takashi Iwai9b0573c2012-10-12 15:07:34 +0200372static void snd_pcm_set_state(struct snd_pcm_substream *substream, int state)
373{
374 snd_pcm_stream_lock_irq(substream);
375 if (substream->runtime->status->state != SNDRV_PCM_STATE_DISCONNECTED)
376 substream->runtime->status->state = state;
377 snd_pcm_stream_unlock_irq(substream);
378}
379
Takashi Iwai877211f2005-11-17 13:59:38 +0100380static int snd_pcm_hw_params(struct snd_pcm_substream *substream,
381 struct snd_pcm_hw_params *params)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382{
Takashi Iwai877211f2005-11-17 13:59:38 +0100383 struct snd_pcm_runtime *runtime;
Takashi Iwai9442e692006-09-30 23:27:19 -0700384 int err, usecs;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385 unsigned int bits;
386 snd_pcm_uframes_t frames;
387
Takashi Iwai7eaa9432008-08-08 17:09:09 +0200388 if (PCM_RUNTIME_CHECK(substream))
389 return -ENXIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700390 runtime = substream->runtime;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700391 snd_pcm_stream_lock_irq(substream);
392 switch (runtime->status->state) {
393 case SNDRV_PCM_STATE_OPEN:
394 case SNDRV_PCM_STATE_SETUP:
395 case SNDRV_PCM_STATE_PREPARED:
396 break;
397 default:
398 snd_pcm_stream_unlock_irq(substream);
399 return -EBADFD;
400 }
401 snd_pcm_stream_unlock_irq(substream);
Takashi Iwai8eeaa2f2014-02-10 09:48:47 +0100402#if IS_ENABLED(CONFIG_SND_PCM_OSS)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403 if (!substream->oss.oss)
404#endif
Takashi Iwai9c323fc2006-04-28 15:13:41 +0200405 if (atomic_read(&substream->mmap_count))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700406 return -EBADFD;
407
408 params->rmask = ~0U;
409 err = snd_pcm_hw_refine(substream, params);
410 if (err < 0)
411 goto _error;
412
413 err = snd_pcm_hw_params_choose(substream, params);
414 if (err < 0)
415 goto _error;
416
417 if (substream->ops->hw_params != NULL) {
418 err = substream->ops->hw_params(substream, params);
419 if (err < 0)
420 goto _error;
421 }
422
423 runtime->access = params_access(params);
424 runtime->format = params_format(params);
425 runtime->subformat = params_subformat(params);
426 runtime->channels = params_channels(params);
427 runtime->rate = params_rate(params);
428 runtime->period_size = params_period_size(params);
429 runtime->periods = params_periods(params);
430 runtime->buffer_size = params_buffer_size(params);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700431 runtime->info = params->info;
432 runtime->rate_num = params->rate_num;
433 runtime->rate_den = params->rate_den;
Clemens Ladischab69a492010-11-15 10:46:23 +0100434 runtime->no_period_wakeup =
435 (params->info & SNDRV_PCM_INFO_NO_PERIOD_WAKEUP) &&
436 (params->flags & SNDRV_PCM_HW_PARAMS_NO_PERIOD_WAKEUP);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700437
438 bits = snd_pcm_format_physical_width(runtime->format);
439 runtime->sample_bits = bits;
440 bits *= runtime->channels;
441 runtime->frame_bits = bits;
442 frames = 1;
443 while (bits % 8 != 0) {
444 bits *= 2;
445 frames *= 2;
446 }
447 runtime->byte_align = bits / 8;
448 runtime->min_align = frames;
449
450 /* Default sw params */
451 runtime->tstamp_mode = SNDRV_PCM_TSTAMP_NONE;
452 runtime->period_step = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453 runtime->control->avail_min = runtime->period_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700454 runtime->start_threshold = 1;
455 runtime->stop_threshold = runtime->buffer_size;
456 runtime->silence_threshold = 0;
457 runtime->silence_size = 0;
Clemens Ladischead40462010-05-21 09:15:59 +0200458 runtime->boundary = runtime->buffer_size;
459 while (runtime->boundary * 2 <= LONG_MAX - runtime->buffer_size)
460 runtime->boundary *= 2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700461
462 snd_pcm_timer_resolution_change(substream);
Takashi Iwai9b0573c2012-10-12 15:07:34 +0200463 snd_pcm_set_state(substream, SNDRV_PCM_STATE_SETUP);
Takashi Iwai9442e692006-09-30 23:27:19 -0700464
James Bottomley82f68252010-07-05 22:53:06 +0200465 if (pm_qos_request_active(&substream->latency_pm_qos_req))
466 pm_qos_remove_request(&substream->latency_pm_qos_req);
Takashi Iwai9442e692006-09-30 23:27:19 -0700467 if ((usecs = period_to_usecs(runtime)) >= 0)
James Bottomley82f68252010-07-05 22:53:06 +0200468 pm_qos_add_request(&substream->latency_pm_qos_req,
469 PM_QOS_CPU_DMA_LATENCY, usecs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700470 return 0;
471 _error:
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300472 /* hardware might be unusable from this time,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700473 so we force application to retry to set
474 the correct hardware parameter settings */
Takashi Iwai9b0573c2012-10-12 15:07:34 +0200475 snd_pcm_set_state(substream, SNDRV_PCM_STATE_OPEN);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700476 if (substream->ops->hw_free != NULL)
477 substream->ops->hw_free(substream);
478 return err;
479}
480
Takashi Iwai877211f2005-11-17 13:59:38 +0100481static int snd_pcm_hw_params_user(struct snd_pcm_substream *substream,
482 struct snd_pcm_hw_params __user * _params)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483{
Takashi Iwai877211f2005-11-17 13:59:38 +0100484 struct snd_pcm_hw_params *params;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700485 int err;
486
Li Zefanef44a1e2009-04-10 09:43:08 +0800487 params = memdup_user(_params, sizeof(*params));
488 if (IS_ERR(params))
489 return PTR_ERR(params);
490
Linus Torvalds1da177e2005-04-16 15:20:36 -0700491 err = snd_pcm_hw_params(substream, params);
492 if (copy_to_user(_params, params, sizeof(*params))) {
493 if (!err)
494 err = -EFAULT;
495 }
Li Zefanef44a1e2009-04-10 09:43:08 +0800496
Linus Torvalds1da177e2005-04-16 15:20:36 -0700497 kfree(params);
498 return err;
499}
500
Takashi Iwai877211f2005-11-17 13:59:38 +0100501static int snd_pcm_hw_free(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700502{
Takashi Iwai877211f2005-11-17 13:59:38 +0100503 struct snd_pcm_runtime *runtime;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700504 int result = 0;
505
Takashi Iwai7eaa9432008-08-08 17:09:09 +0200506 if (PCM_RUNTIME_CHECK(substream))
507 return -ENXIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700508 runtime = substream->runtime;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700509 snd_pcm_stream_lock_irq(substream);
510 switch (runtime->status->state) {
511 case SNDRV_PCM_STATE_SETUP:
512 case SNDRV_PCM_STATE_PREPARED:
513 break;
514 default:
515 snd_pcm_stream_unlock_irq(substream);
516 return -EBADFD;
517 }
518 snd_pcm_stream_unlock_irq(substream);
Takashi Iwai9c323fc2006-04-28 15:13:41 +0200519 if (atomic_read(&substream->mmap_count))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700520 return -EBADFD;
521 if (substream->ops->hw_free)
522 result = substream->ops->hw_free(substream);
Takashi Iwai9b0573c2012-10-12 15:07:34 +0200523 snd_pcm_set_state(substream, SNDRV_PCM_STATE_OPEN);
James Bottomley82f68252010-07-05 22:53:06 +0200524 pm_qos_remove_request(&substream->latency_pm_qos_req);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700525 return result;
526}
527
Takashi Iwai877211f2005-11-17 13:59:38 +0100528static int snd_pcm_sw_params(struct snd_pcm_substream *substream,
529 struct snd_pcm_sw_params *params)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700530{
Takashi Iwai877211f2005-11-17 13:59:38 +0100531 struct snd_pcm_runtime *runtime;
Jaroslav Kysela12509322010-01-07 15:36:31 +0100532 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700533
Takashi Iwai7eaa9432008-08-08 17:09:09 +0200534 if (PCM_RUNTIME_CHECK(substream))
535 return -ENXIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700536 runtime = substream->runtime;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700537 snd_pcm_stream_lock_irq(substream);
538 if (runtime->status->state == SNDRV_PCM_STATE_OPEN) {
539 snd_pcm_stream_unlock_irq(substream);
540 return -EBADFD;
541 }
542 snd_pcm_stream_unlock_irq(substream);
543
544 if (params->tstamp_mode > SNDRV_PCM_TSTAMP_LAST)
545 return -EINVAL;
Takashi Iwai58900812014-07-16 17:45:27 +0200546 if (params->proto >= SNDRV_PROTOCOL_VERSION(2, 0, 12) &&
547 params->tstamp_type > SNDRV_PCM_TSTAMP_TYPE_LAST)
Takashi Iwai5646eda2014-07-10 09:50:19 +0200548 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700549 if (params->avail_min == 0)
550 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700551 if (params->silence_size >= runtime->boundary) {
552 if (params->silence_threshold != 0)
553 return -EINVAL;
554 } else {
555 if (params->silence_size > params->silence_threshold)
556 return -EINVAL;
557 if (params->silence_threshold > runtime->buffer_size)
558 return -EINVAL;
559 }
Jaroslav Kysela12509322010-01-07 15:36:31 +0100560 err = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700561 snd_pcm_stream_lock_irq(substream);
562 runtime->tstamp_mode = params->tstamp_mode;
Takashi Iwai58900812014-07-16 17:45:27 +0200563 if (params->proto >= SNDRV_PROTOCOL_VERSION(2, 0, 12))
564 runtime->tstamp_type = params->tstamp_type;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700565 runtime->period_step = params->period_step;
566 runtime->control->avail_min = params->avail_min;
567 runtime->start_threshold = params->start_threshold;
568 runtime->stop_threshold = params->stop_threshold;
569 runtime->silence_threshold = params->silence_threshold;
570 runtime->silence_size = params->silence_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700571 params->boundary = runtime->boundary;
572 if (snd_pcm_running(substream)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700573 if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK &&
574 runtime->silence_size > 0)
575 snd_pcm_playback_silence(substream, ULONG_MAX);
Jaroslav Kysela12509322010-01-07 15:36:31 +0100576 err = snd_pcm_update_state(substream, runtime);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700577 }
578 snd_pcm_stream_unlock_irq(substream);
Jaroslav Kysela12509322010-01-07 15:36:31 +0100579 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700580}
581
Takashi Iwai877211f2005-11-17 13:59:38 +0100582static int snd_pcm_sw_params_user(struct snd_pcm_substream *substream,
583 struct snd_pcm_sw_params __user * _params)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700584{
Takashi Iwai877211f2005-11-17 13:59:38 +0100585 struct snd_pcm_sw_params params;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700586 int err;
587 if (copy_from_user(&params, _params, sizeof(params)))
588 return -EFAULT;
589 err = snd_pcm_sw_params(substream, &params);
590 if (copy_to_user(_params, &params, sizeof(params)))
591 return -EFAULT;
592 return err;
593}
594
Takashi Iwai877211f2005-11-17 13:59:38 +0100595int snd_pcm_status(struct snd_pcm_substream *substream,
596 struct snd_pcm_status *status)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700597{
Takashi Iwai877211f2005-11-17 13:59:38 +0100598 struct snd_pcm_runtime *runtime = substream->runtime;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700599
600 snd_pcm_stream_lock_irq(substream);
601 status->state = runtime->status->state;
602 status->suspended_state = runtime->status->suspended_state;
603 if (status->state == SNDRV_PCM_STATE_OPEN)
604 goto _end;
605 status->trigger_tstamp = runtime->trigger_tstamp;
Jaroslav Kysela8c121582008-01-11 08:45:08 +0100606 if (snd_pcm_running(substream)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700607 snd_pcm_update_hw_ptr(substream);
Jaroslav Kysela8c121582008-01-11 08:45:08 +0100608 if (runtime->tstamp_mode == SNDRV_PCM_TSTAMP_ENABLE) {
609 status->tstamp = runtime->status->tstamp;
Pierre-Louis Bossart4eeaaea2012-10-22 16:42:15 -0500610 status->audio_tstamp =
611 runtime->status->audio_tstamp;
Jaroslav Kysela8c121582008-01-11 08:45:08 +0100612 goto _tstamp_end;
613 }
614 }
Jaroslav Kyselaa713b582008-01-08 12:24:01 +0100615 snd_pcm_gettime(runtime, &status->tstamp);
Jaroslav Kysela8c121582008-01-11 08:45:08 +0100616 _tstamp_end:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700617 status->appl_ptr = runtime->control->appl_ptr;
618 status->hw_ptr = runtime->status->hw_ptr;
619 if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK) {
620 status->avail = snd_pcm_playback_avail(runtime);
621 if (runtime->status->state == SNDRV_PCM_STATE_RUNNING ||
Takashi Iwai4bbe1dd2008-10-13 03:07:14 +0200622 runtime->status->state == SNDRV_PCM_STATE_DRAINING) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700623 status->delay = runtime->buffer_size - status->avail;
Takashi Iwai4bbe1dd2008-10-13 03:07:14 +0200624 status->delay += runtime->delay;
625 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700626 status->delay = 0;
627 } else {
628 status->avail = snd_pcm_capture_avail(runtime);
629 if (runtime->status->state == SNDRV_PCM_STATE_RUNNING)
Takashi Iwai4bbe1dd2008-10-13 03:07:14 +0200630 status->delay = status->avail + runtime->delay;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700631 else
632 status->delay = 0;
633 }
634 status->avail_max = runtime->avail_max;
635 status->overrange = runtime->overrange;
636 runtime->avail_max = 0;
637 runtime->overrange = 0;
638 _end:
639 snd_pcm_stream_unlock_irq(substream);
640 return 0;
641}
642
Takashi Iwai877211f2005-11-17 13:59:38 +0100643static int snd_pcm_status_user(struct snd_pcm_substream *substream,
644 struct snd_pcm_status __user * _status)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700645{
Takashi Iwai877211f2005-11-17 13:59:38 +0100646 struct snd_pcm_status status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700647 int res;
648
Linus Torvalds1da177e2005-04-16 15:20:36 -0700649 memset(&status, 0, sizeof(status));
650 res = snd_pcm_status(substream, &status);
651 if (res < 0)
652 return res;
653 if (copy_to_user(_status, &status, sizeof(status)))
654 return -EFAULT;
655 return 0;
656}
657
Takashi Iwai877211f2005-11-17 13:59:38 +0100658static int snd_pcm_channel_info(struct snd_pcm_substream *substream,
659 struct snd_pcm_channel_info * info)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700660{
Takashi Iwai877211f2005-11-17 13:59:38 +0100661 struct snd_pcm_runtime *runtime;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700662 unsigned int channel;
663
Linus Torvalds1da177e2005-04-16 15:20:36 -0700664 channel = info->channel;
665 runtime = substream->runtime;
666 snd_pcm_stream_lock_irq(substream);
667 if (runtime->status->state == SNDRV_PCM_STATE_OPEN) {
668 snd_pcm_stream_unlock_irq(substream);
669 return -EBADFD;
670 }
671 snd_pcm_stream_unlock_irq(substream);
672 if (channel >= runtime->channels)
673 return -EINVAL;
674 memset(info, 0, sizeof(*info));
675 info->channel = channel;
676 return substream->ops->ioctl(substream, SNDRV_PCM_IOCTL1_CHANNEL_INFO, info);
677}
678
Takashi Iwai877211f2005-11-17 13:59:38 +0100679static int snd_pcm_channel_info_user(struct snd_pcm_substream *substream,
680 struct snd_pcm_channel_info __user * _info)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700681{
Takashi Iwai877211f2005-11-17 13:59:38 +0100682 struct snd_pcm_channel_info info;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700683 int res;
684
685 if (copy_from_user(&info, _info, sizeof(info)))
686 return -EFAULT;
687 res = snd_pcm_channel_info(substream, &info);
688 if (res < 0)
689 return res;
690 if (copy_to_user(_info, &info, sizeof(info)))
691 return -EFAULT;
692 return 0;
693}
694
Takashi Iwai877211f2005-11-17 13:59:38 +0100695static void snd_pcm_trigger_tstamp(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700696{
Takashi Iwai877211f2005-11-17 13:59:38 +0100697 struct snd_pcm_runtime *runtime = substream->runtime;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700698 if (runtime->trigger_master == NULL)
699 return;
700 if (runtime->trigger_master == substream) {
Jaroslav Kyselab751eef2007-12-13 10:19:42 +0100701 snd_pcm_gettime(runtime, &runtime->trigger_tstamp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700702 } else {
703 snd_pcm_trigger_tstamp(runtime->trigger_master);
704 runtime->trigger_tstamp = runtime->trigger_master->runtime->trigger_tstamp;
705 }
706 runtime->trigger_master = NULL;
707}
708
709struct action_ops {
Takashi Iwai877211f2005-11-17 13:59:38 +0100710 int (*pre_action)(struct snd_pcm_substream *substream, int state);
711 int (*do_action)(struct snd_pcm_substream *substream, int state);
712 void (*undo_action)(struct snd_pcm_substream *substream, int state);
713 void (*post_action)(struct snd_pcm_substream *substream, int state);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700714};
715
716/*
717 * this functions is core for handling of linked stream
718 * Note: the stream state might be changed also on failure
719 * Note2: call with calling stream lock + link lock
720 */
721static int snd_pcm_action_group(struct action_ops *ops,
Takashi Iwai877211f2005-11-17 13:59:38 +0100722 struct snd_pcm_substream *substream,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700723 int state, int do_lock)
724{
Takashi Iwai877211f2005-11-17 13:59:38 +0100725 struct snd_pcm_substream *s = NULL;
726 struct snd_pcm_substream *s1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700727 int res = 0;
728
Takashi Iwaief991b92007-02-22 12:52:53 +0100729 snd_pcm_group_for_each_entry(s, substream) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700730 if (do_lock && s != substream)
Frederik Deweerdt208eee22007-04-05 16:57:41 +0200731 spin_lock_nested(&s->self_group.lock,
732 SINGLE_DEPTH_NESTING);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700733 res = ops->pre_action(s, state);
734 if (res < 0)
735 goto _unlock;
736 }
Takashi Iwaief991b92007-02-22 12:52:53 +0100737 snd_pcm_group_for_each_entry(s, substream) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700738 res = ops->do_action(s, state);
739 if (res < 0) {
740 if (ops->undo_action) {
Takashi Iwaief991b92007-02-22 12:52:53 +0100741 snd_pcm_group_for_each_entry(s1, substream) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700742 if (s1 == s) /* failed stream */
743 break;
744 ops->undo_action(s1, state);
745 }
746 }
747 s = NULL; /* unlock all */
748 goto _unlock;
749 }
750 }
Takashi Iwaief991b92007-02-22 12:52:53 +0100751 snd_pcm_group_for_each_entry(s, substream) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700752 ops->post_action(s, state);
753 }
754 _unlock:
755 if (do_lock) {
756 /* unlock streams */
Takashi Iwaief991b92007-02-22 12:52:53 +0100757 snd_pcm_group_for_each_entry(s1, substream) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700758 if (s1 != substream)
759 spin_unlock(&s1->self_group.lock);
760 if (s1 == s) /* end */
761 break;
762 }
763 }
764 return res;
765}
766
767/*
768 * Note: call with stream lock
769 */
770static int snd_pcm_action_single(struct action_ops *ops,
Takashi Iwai877211f2005-11-17 13:59:38 +0100771 struct snd_pcm_substream *substream,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700772 int state)
773{
774 int res;
775
776 res = ops->pre_action(substream, state);
777 if (res < 0)
778 return res;
779 res = ops->do_action(substream, state);
780 if (res == 0)
781 ops->post_action(substream, state);
782 else if (ops->undo_action)
783 ops->undo_action(substream, state);
784 return res;
785}
786
787/*
788 * Note: call with stream lock
789 */
790static int snd_pcm_action(struct action_ops *ops,
Takashi Iwai877211f2005-11-17 13:59:38 +0100791 struct snd_pcm_substream *substream,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700792 int state)
793{
794 int res;
795
796 if (snd_pcm_stream_linked(substream)) {
797 if (!spin_trylock(&substream->group->lock)) {
798 spin_unlock(&substream->self_group.lock);
799 spin_lock(&substream->group->lock);
800 spin_lock(&substream->self_group.lock);
801 }
802 res = snd_pcm_action_group(ops, substream, state, 1);
803 spin_unlock(&substream->group->lock);
804 } else {
805 res = snd_pcm_action_single(ops, substream, state);
806 }
807 return res;
808}
809
810/*
811 * Note: don't use any locks before
812 */
813static int snd_pcm_action_lock_irq(struct action_ops *ops,
Takashi Iwai877211f2005-11-17 13:59:38 +0100814 struct snd_pcm_substream *substream,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700815 int state)
816{
817 int res;
818
819 read_lock_irq(&snd_pcm_link_rwlock);
820 if (snd_pcm_stream_linked(substream)) {
821 spin_lock(&substream->group->lock);
822 spin_lock(&substream->self_group.lock);
823 res = snd_pcm_action_group(ops, substream, state, 1);
824 spin_unlock(&substream->self_group.lock);
825 spin_unlock(&substream->group->lock);
826 } else {
827 spin_lock(&substream->self_group.lock);
828 res = snd_pcm_action_single(ops, substream, state);
829 spin_unlock(&substream->self_group.lock);
830 }
831 read_unlock_irq(&snd_pcm_link_rwlock);
832 return res;
833}
834
835/*
836 */
837static int snd_pcm_action_nonatomic(struct action_ops *ops,
Takashi Iwai877211f2005-11-17 13:59:38 +0100838 struct snd_pcm_substream *substream,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700839 int state)
840{
841 int res;
842
843 down_read(&snd_pcm_link_rwsem);
844 if (snd_pcm_stream_linked(substream))
845 res = snd_pcm_action_group(ops, substream, state, 0);
846 else
847 res = snd_pcm_action_single(ops, substream, state);
848 up_read(&snd_pcm_link_rwsem);
849 return res;
850}
851
852/*
853 * start callbacks
854 */
Takashi Iwai877211f2005-11-17 13:59:38 +0100855static int snd_pcm_pre_start(struct snd_pcm_substream *substream, int state)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700856{
Takashi Iwai877211f2005-11-17 13:59:38 +0100857 struct snd_pcm_runtime *runtime = substream->runtime;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700858 if (runtime->status->state != SNDRV_PCM_STATE_PREPARED)
859 return -EBADFD;
860 if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK &&
861 !snd_pcm_playback_data(substream))
862 return -EPIPE;
863 runtime->trigger_master = substream;
864 return 0;
865}
866
Takashi Iwai877211f2005-11-17 13:59:38 +0100867static int snd_pcm_do_start(struct snd_pcm_substream *substream, int state)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700868{
869 if (substream->runtime->trigger_master != substream)
870 return 0;
871 return substream->ops->trigger(substream, SNDRV_PCM_TRIGGER_START);
872}
873
Takashi Iwai877211f2005-11-17 13:59:38 +0100874static void snd_pcm_undo_start(struct snd_pcm_substream *substream, int state)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700875{
876 if (substream->runtime->trigger_master == substream)
877 substream->ops->trigger(substream, SNDRV_PCM_TRIGGER_STOP);
878}
879
Takashi Iwai877211f2005-11-17 13:59:38 +0100880static void snd_pcm_post_start(struct snd_pcm_substream *substream, int state)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700881{
Takashi Iwai877211f2005-11-17 13:59:38 +0100882 struct snd_pcm_runtime *runtime = substream->runtime;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700883 snd_pcm_trigger_tstamp(substream);
Takashi Iwai6af3fb72009-05-27 10:49:26 +0200884 runtime->hw_ptr_jiffies = jiffies;
Jaroslav Kyselabd76af02010-08-18 14:16:54 +0200885 runtime->hw_ptr_buffer_jiffies = (runtime->buffer_size * HZ) /
886 runtime->rate;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700887 runtime->status->state = state;
888 if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK &&
889 runtime->silence_size > 0)
890 snd_pcm_playback_silence(substream, ULONG_MAX);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700891 if (substream->timer)
Takashi Iwai877211f2005-11-17 13:59:38 +0100892 snd_timer_notify(substream->timer, SNDRV_TIMER_EVENT_MSTART,
893 &runtime->trigger_tstamp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700894}
895
896static struct action_ops snd_pcm_action_start = {
897 .pre_action = snd_pcm_pre_start,
898 .do_action = snd_pcm_do_start,
899 .undo_action = snd_pcm_undo_start,
900 .post_action = snd_pcm_post_start
901};
902
903/**
Randy Dunlap1c85cc62008-10-15 14:38:40 -0700904 * snd_pcm_start - start all linked streams
Takashi Iwaidf8db932005-09-07 13:38:19 +0200905 * @substream: the PCM substream instance
Yacine Belkadieb7c06e2013-03-11 22:05:14 +0100906 *
907 * Return: Zero if successful, or a negative error code.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700908 */
Takashi Iwai877211f2005-11-17 13:59:38 +0100909int snd_pcm_start(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700910{
Takashi Iwai877211f2005-11-17 13:59:38 +0100911 return snd_pcm_action(&snd_pcm_action_start, substream,
912 SNDRV_PCM_STATE_RUNNING);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700913}
914
915/*
916 * stop callbacks
917 */
Takashi Iwai877211f2005-11-17 13:59:38 +0100918static int snd_pcm_pre_stop(struct snd_pcm_substream *substream, int state)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700919{
Takashi Iwai877211f2005-11-17 13:59:38 +0100920 struct snd_pcm_runtime *runtime = substream->runtime;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700921 if (runtime->status->state == SNDRV_PCM_STATE_OPEN)
922 return -EBADFD;
923 runtime->trigger_master = substream;
924 return 0;
925}
926
Takashi Iwai877211f2005-11-17 13:59:38 +0100927static int snd_pcm_do_stop(struct snd_pcm_substream *substream, int state)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700928{
929 if (substream->runtime->trigger_master == substream &&
930 snd_pcm_running(substream))
931 substream->ops->trigger(substream, SNDRV_PCM_TRIGGER_STOP);
932 return 0; /* unconditonally stop all substreams */
933}
934
Takashi Iwai877211f2005-11-17 13:59:38 +0100935static void snd_pcm_post_stop(struct snd_pcm_substream *substream, int state)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700936{
Takashi Iwai877211f2005-11-17 13:59:38 +0100937 struct snd_pcm_runtime *runtime = substream->runtime;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700938 if (runtime->status->state != state) {
939 snd_pcm_trigger_tstamp(substream);
940 if (substream->timer)
Takashi Iwai877211f2005-11-17 13:59:38 +0100941 snd_timer_notify(substream->timer, SNDRV_TIMER_EVENT_MSTOP,
942 &runtime->trigger_tstamp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700943 runtime->status->state = state;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700944 }
945 wake_up(&runtime->sleep);
Jaroslav Kyselac91a9882010-01-21 10:32:15 +0100946 wake_up(&runtime->tsleep);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700947}
948
949static struct action_ops snd_pcm_action_stop = {
950 .pre_action = snd_pcm_pre_stop,
951 .do_action = snd_pcm_do_stop,
952 .post_action = snd_pcm_post_stop
953};
954
955/**
Randy Dunlap1c85cc62008-10-15 14:38:40 -0700956 * snd_pcm_stop - try to stop all running streams in the substream group
Takashi Iwaidf8db932005-09-07 13:38:19 +0200957 * @substream: the PCM substream instance
958 * @state: PCM state after stopping the stream
Linus Torvalds1da177e2005-04-16 15:20:36 -0700959 *
Randy Dunlap1c85cc62008-10-15 14:38:40 -0700960 * The state of each stream is then changed to the given state unconditionally.
Yacine Belkadieb7c06e2013-03-11 22:05:14 +0100961 *
Masanari Iida0a114582014-02-09 00:47:36 +0900962 * Return: Zero if successful, or a negative error code.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700963 */
Clemens Ladischfea952e2011-02-14 11:00:47 +0100964int snd_pcm_stop(struct snd_pcm_substream *substream, snd_pcm_state_t state)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700965{
966 return snd_pcm_action(&snd_pcm_action_stop, substream, state);
967}
968
Takashi Iwaie88e8ae62006-04-28 15:13:40 +0200969EXPORT_SYMBOL(snd_pcm_stop);
970
Linus Torvalds1da177e2005-04-16 15:20:36 -0700971/**
Randy Dunlap1c85cc62008-10-15 14:38:40 -0700972 * snd_pcm_drain_done - stop the DMA only when the given stream is playback
Takashi Iwaidf8db932005-09-07 13:38:19 +0200973 * @substream: the PCM substream
Linus Torvalds1da177e2005-04-16 15:20:36 -0700974 *
Randy Dunlap1c85cc62008-10-15 14:38:40 -0700975 * After stopping, the state is changed to SETUP.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700976 * Unlike snd_pcm_stop(), this affects only the given stream.
Yacine Belkadieb7c06e2013-03-11 22:05:14 +0100977 *
978 * Return: Zero if succesful, or a negative error code.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700979 */
Takashi Iwai877211f2005-11-17 13:59:38 +0100980int snd_pcm_drain_done(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700981{
Takashi Iwai877211f2005-11-17 13:59:38 +0100982 return snd_pcm_action_single(&snd_pcm_action_stop, substream,
983 SNDRV_PCM_STATE_SETUP);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700984}
985
986/*
987 * pause callbacks
988 */
Takashi Iwai877211f2005-11-17 13:59:38 +0100989static int snd_pcm_pre_pause(struct snd_pcm_substream *substream, int push)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700990{
Takashi Iwai877211f2005-11-17 13:59:38 +0100991 struct snd_pcm_runtime *runtime = substream->runtime;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700992 if (!(runtime->info & SNDRV_PCM_INFO_PAUSE))
993 return -ENOSYS;
994 if (push) {
995 if (runtime->status->state != SNDRV_PCM_STATE_RUNNING)
996 return -EBADFD;
997 } else if (runtime->status->state != SNDRV_PCM_STATE_PAUSED)
998 return -EBADFD;
999 runtime->trigger_master = substream;
1000 return 0;
1001}
1002
Takashi Iwai877211f2005-11-17 13:59:38 +01001003static int snd_pcm_do_pause(struct snd_pcm_substream *substream, int push)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001004{
1005 if (substream->runtime->trigger_master != substream)
1006 return 0;
Jaroslav Kysela56385a12010-08-18 14:08:17 +02001007 /* some drivers might use hw_ptr to recover from the pause -
1008 update the hw_ptr now */
1009 if (push)
1010 snd_pcm_update_hw_ptr(substream);
Takashi Iwai6af3fb72009-05-27 10:49:26 +02001011 /* The jiffies check in snd_pcm_update_hw_ptr*() is done by
Uwe Kleine-Königb5950762010-11-01 15:38:34 -04001012 * a delta between the current jiffies, this gives a large enough
Takashi Iwai6af3fb72009-05-27 10:49:26 +02001013 * delta, effectively to skip the check once.
1014 */
1015 substream->runtime->hw_ptr_jiffies = jiffies - HZ * 1000;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001016 return substream->ops->trigger(substream,
1017 push ? SNDRV_PCM_TRIGGER_PAUSE_PUSH :
1018 SNDRV_PCM_TRIGGER_PAUSE_RELEASE);
1019}
1020
Takashi Iwai877211f2005-11-17 13:59:38 +01001021static void snd_pcm_undo_pause(struct snd_pcm_substream *substream, int push)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001022{
1023 if (substream->runtime->trigger_master == substream)
1024 substream->ops->trigger(substream,
1025 push ? SNDRV_PCM_TRIGGER_PAUSE_RELEASE :
1026 SNDRV_PCM_TRIGGER_PAUSE_PUSH);
1027}
1028
Takashi Iwai877211f2005-11-17 13:59:38 +01001029static void snd_pcm_post_pause(struct snd_pcm_substream *substream, int push)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001030{
Takashi Iwai877211f2005-11-17 13:59:38 +01001031 struct snd_pcm_runtime *runtime = substream->runtime;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001032 snd_pcm_trigger_tstamp(substream);
1033 if (push) {
1034 runtime->status->state = SNDRV_PCM_STATE_PAUSED;
1035 if (substream->timer)
Takashi Iwai877211f2005-11-17 13:59:38 +01001036 snd_timer_notify(substream->timer,
1037 SNDRV_TIMER_EVENT_MPAUSE,
1038 &runtime->trigger_tstamp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001039 wake_up(&runtime->sleep);
Jaroslav Kyselac91a9882010-01-21 10:32:15 +01001040 wake_up(&runtime->tsleep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001041 } else {
1042 runtime->status->state = SNDRV_PCM_STATE_RUNNING;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001043 if (substream->timer)
Takashi Iwai877211f2005-11-17 13:59:38 +01001044 snd_timer_notify(substream->timer,
1045 SNDRV_TIMER_EVENT_MCONTINUE,
1046 &runtime->trigger_tstamp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001047 }
1048}
1049
1050static struct action_ops snd_pcm_action_pause = {
1051 .pre_action = snd_pcm_pre_pause,
1052 .do_action = snd_pcm_do_pause,
1053 .undo_action = snd_pcm_undo_pause,
1054 .post_action = snd_pcm_post_pause
1055};
1056
1057/*
1058 * Push/release the pause for all linked streams.
1059 */
Takashi Iwai877211f2005-11-17 13:59:38 +01001060static int snd_pcm_pause(struct snd_pcm_substream *substream, int push)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001061{
1062 return snd_pcm_action(&snd_pcm_action_pause, substream, push);
1063}
1064
1065#ifdef CONFIG_PM
1066/* suspend */
1067
Takashi Iwai877211f2005-11-17 13:59:38 +01001068static int snd_pcm_pre_suspend(struct snd_pcm_substream *substream, int state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001069{
Takashi Iwai877211f2005-11-17 13:59:38 +01001070 struct snd_pcm_runtime *runtime = substream->runtime;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001071 if (runtime->status->state == SNDRV_PCM_STATE_SUSPENDED)
1072 return -EBUSY;
1073 runtime->trigger_master = substream;
1074 return 0;
1075}
1076
Takashi Iwai877211f2005-11-17 13:59:38 +01001077static int snd_pcm_do_suspend(struct snd_pcm_substream *substream, int state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001078{
Takashi Iwai877211f2005-11-17 13:59:38 +01001079 struct snd_pcm_runtime *runtime = substream->runtime;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001080 if (runtime->trigger_master != substream)
1081 return 0;
1082 if (! snd_pcm_running(substream))
1083 return 0;
1084 substream->ops->trigger(substream, SNDRV_PCM_TRIGGER_SUSPEND);
1085 return 0; /* suspend unconditionally */
1086}
1087
Takashi Iwai877211f2005-11-17 13:59:38 +01001088static void snd_pcm_post_suspend(struct snd_pcm_substream *substream, int state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001089{
Takashi Iwai877211f2005-11-17 13:59:38 +01001090 struct snd_pcm_runtime *runtime = substream->runtime;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001091 snd_pcm_trigger_tstamp(substream);
1092 if (substream->timer)
Takashi Iwai877211f2005-11-17 13:59:38 +01001093 snd_timer_notify(substream->timer, SNDRV_TIMER_EVENT_MSUSPEND,
1094 &runtime->trigger_tstamp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001095 runtime->status->suspended_state = runtime->status->state;
1096 runtime->status->state = SNDRV_PCM_STATE_SUSPENDED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001097 wake_up(&runtime->sleep);
Jaroslav Kyselac91a9882010-01-21 10:32:15 +01001098 wake_up(&runtime->tsleep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001099}
1100
1101static struct action_ops snd_pcm_action_suspend = {
1102 .pre_action = snd_pcm_pre_suspend,
1103 .do_action = snd_pcm_do_suspend,
1104 .post_action = snd_pcm_post_suspend
1105};
1106
1107/**
Randy Dunlap1c85cc62008-10-15 14:38:40 -07001108 * snd_pcm_suspend - trigger SUSPEND to all linked streams
Takashi Iwaidf8db932005-09-07 13:38:19 +02001109 * @substream: the PCM substream
Linus Torvalds1da177e2005-04-16 15:20:36 -07001110 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001111 * After this call, all streams are changed to SUSPENDED state.
Yacine Belkadieb7c06e2013-03-11 22:05:14 +01001112 *
1113 * Return: Zero if successful (or @substream is %NULL), or a negative error
1114 * code.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001115 */
Takashi Iwai877211f2005-11-17 13:59:38 +01001116int snd_pcm_suspend(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001117{
1118 int err;
1119 unsigned long flags;
1120
Takashi Iwai603bf522005-11-17 15:59:14 +01001121 if (! substream)
1122 return 0;
1123
Linus Torvalds1da177e2005-04-16 15:20:36 -07001124 snd_pcm_stream_lock_irqsave(substream, flags);
1125 err = snd_pcm_action(&snd_pcm_action_suspend, substream, 0);
1126 snd_pcm_stream_unlock_irqrestore(substream, flags);
1127 return err;
1128}
1129
Takashi Iwaie88e8ae62006-04-28 15:13:40 +02001130EXPORT_SYMBOL(snd_pcm_suspend);
1131
Linus Torvalds1da177e2005-04-16 15:20:36 -07001132/**
Randy Dunlap1c85cc62008-10-15 14:38:40 -07001133 * snd_pcm_suspend_all - trigger SUSPEND to all substreams in the given pcm
Takashi Iwaidf8db932005-09-07 13:38:19 +02001134 * @pcm: the PCM instance
Linus Torvalds1da177e2005-04-16 15:20:36 -07001135 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001136 * After this call, all streams are changed to SUSPENDED state.
Yacine Belkadieb7c06e2013-03-11 22:05:14 +01001137 *
1138 * Return: Zero if successful (or @pcm is %NULL), or a negative error code.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001139 */
Takashi Iwai877211f2005-11-17 13:59:38 +01001140int snd_pcm_suspend_all(struct snd_pcm *pcm)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001141{
Takashi Iwai877211f2005-11-17 13:59:38 +01001142 struct snd_pcm_substream *substream;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001143 int stream, err = 0;
1144
Takashi Iwai603bf522005-11-17 15:59:14 +01001145 if (! pcm)
1146 return 0;
1147
Linus Torvalds1da177e2005-04-16 15:20:36 -07001148 for (stream = 0; stream < 2; stream++) {
Takashi Iwai877211f2005-11-17 13:59:38 +01001149 for (substream = pcm->streams[stream].substream;
1150 substream; substream = substream->next) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001151 /* FIXME: the open/close code should lock this as well */
1152 if (substream->runtime == NULL)
1153 continue;
1154 err = snd_pcm_suspend(substream);
1155 if (err < 0 && err != -EBUSY)
1156 return err;
1157 }
1158 }
1159 return 0;
1160}
1161
Takashi Iwaie88e8ae62006-04-28 15:13:40 +02001162EXPORT_SYMBOL(snd_pcm_suspend_all);
1163
Linus Torvalds1da177e2005-04-16 15:20:36 -07001164/* resume */
1165
Takashi Iwai877211f2005-11-17 13:59:38 +01001166static int snd_pcm_pre_resume(struct snd_pcm_substream *substream, int state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001167{
Takashi Iwai877211f2005-11-17 13:59:38 +01001168 struct snd_pcm_runtime *runtime = substream->runtime;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001169 if (!(runtime->info & SNDRV_PCM_INFO_RESUME))
1170 return -ENOSYS;
1171 runtime->trigger_master = substream;
1172 return 0;
1173}
1174
Takashi Iwai877211f2005-11-17 13:59:38 +01001175static int snd_pcm_do_resume(struct snd_pcm_substream *substream, int state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001176{
Takashi Iwai877211f2005-11-17 13:59:38 +01001177 struct snd_pcm_runtime *runtime = substream->runtime;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001178 if (runtime->trigger_master != substream)
1179 return 0;
1180 /* DMA not running previously? */
1181 if (runtime->status->suspended_state != SNDRV_PCM_STATE_RUNNING &&
1182 (runtime->status->suspended_state != SNDRV_PCM_STATE_DRAINING ||
1183 substream->stream != SNDRV_PCM_STREAM_PLAYBACK))
1184 return 0;
1185 return substream->ops->trigger(substream, SNDRV_PCM_TRIGGER_RESUME);
1186}
1187
Takashi Iwai877211f2005-11-17 13:59:38 +01001188static void snd_pcm_undo_resume(struct snd_pcm_substream *substream, int state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001189{
1190 if (substream->runtime->trigger_master == substream &&
1191 snd_pcm_running(substream))
1192 substream->ops->trigger(substream, SNDRV_PCM_TRIGGER_SUSPEND);
1193}
1194
Takashi Iwai877211f2005-11-17 13:59:38 +01001195static void snd_pcm_post_resume(struct snd_pcm_substream *substream, int state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001196{
Takashi Iwai877211f2005-11-17 13:59:38 +01001197 struct snd_pcm_runtime *runtime = substream->runtime;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001198 snd_pcm_trigger_tstamp(substream);
1199 if (substream->timer)
Takashi Iwai877211f2005-11-17 13:59:38 +01001200 snd_timer_notify(substream->timer, SNDRV_TIMER_EVENT_MRESUME,
1201 &runtime->trigger_tstamp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001202 runtime->status->state = runtime->status->suspended_state;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001203}
1204
1205static struct action_ops snd_pcm_action_resume = {
1206 .pre_action = snd_pcm_pre_resume,
1207 .do_action = snd_pcm_do_resume,
1208 .undo_action = snd_pcm_undo_resume,
1209 .post_action = snd_pcm_post_resume
1210};
1211
Takashi Iwai877211f2005-11-17 13:59:38 +01001212static int snd_pcm_resume(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001213{
Takashi Iwai877211f2005-11-17 13:59:38 +01001214 struct snd_card *card = substream->pcm->card;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001215 int res;
1216
1217 snd_power_lock(card);
Takashi Iwaicbac4b02006-03-27 12:38:07 +02001218 if ((res = snd_power_wait(card, SNDRV_CTL_POWER_D0)) >= 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001219 res = snd_pcm_action_lock_irq(&snd_pcm_action_resume, substream, 0);
1220 snd_power_unlock(card);
1221 return res;
1222}
1223
1224#else
1225
Takashi Iwai877211f2005-11-17 13:59:38 +01001226static int snd_pcm_resume(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001227{
1228 return -ENOSYS;
1229}
1230
1231#endif /* CONFIG_PM */
1232
1233/*
1234 * xrun ioctl
1235 *
1236 * Change the RUNNING stream(s) to XRUN state.
1237 */
Takashi Iwai877211f2005-11-17 13:59:38 +01001238static int snd_pcm_xrun(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001239{
Takashi Iwai877211f2005-11-17 13:59:38 +01001240 struct snd_card *card = substream->pcm->card;
1241 struct snd_pcm_runtime *runtime = substream->runtime;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001242 int result;
1243
1244 snd_power_lock(card);
1245 if (runtime->status->state == SNDRV_PCM_STATE_SUSPENDED) {
Takashi Iwaicbac4b02006-03-27 12:38:07 +02001246 result = snd_power_wait(card, SNDRV_CTL_POWER_D0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001247 if (result < 0)
1248 goto _unlock;
1249 }
1250
1251 snd_pcm_stream_lock_irq(substream);
1252 switch (runtime->status->state) {
1253 case SNDRV_PCM_STATE_XRUN:
1254 result = 0; /* already there */
1255 break;
1256 case SNDRV_PCM_STATE_RUNNING:
1257 result = snd_pcm_stop(substream, SNDRV_PCM_STATE_XRUN);
1258 break;
1259 default:
1260 result = -EBADFD;
1261 }
1262 snd_pcm_stream_unlock_irq(substream);
1263 _unlock:
1264 snd_power_unlock(card);
1265 return result;
1266}
1267
1268/*
1269 * reset ioctl
1270 */
Takashi Iwai877211f2005-11-17 13:59:38 +01001271static int snd_pcm_pre_reset(struct snd_pcm_substream *substream, int state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001272{
Takashi Iwai877211f2005-11-17 13:59:38 +01001273 struct snd_pcm_runtime *runtime = substream->runtime;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001274 switch (runtime->status->state) {
1275 case SNDRV_PCM_STATE_RUNNING:
1276 case SNDRV_PCM_STATE_PREPARED:
1277 case SNDRV_PCM_STATE_PAUSED:
1278 case SNDRV_PCM_STATE_SUSPENDED:
1279 return 0;
1280 default:
1281 return -EBADFD;
1282 }
1283}
1284
Takashi Iwai877211f2005-11-17 13:59:38 +01001285static int snd_pcm_do_reset(struct snd_pcm_substream *substream, int state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001286{
Takashi Iwai877211f2005-11-17 13:59:38 +01001287 struct snd_pcm_runtime *runtime = substream->runtime;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001288 int err = substream->ops->ioctl(substream, SNDRV_PCM_IOCTL1_RESET, NULL);
1289 if (err < 0)
1290 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001291 runtime->hw_ptr_base = 0;
Jaroslav Kyselae7636922010-01-26 17:08:24 +01001292 runtime->hw_ptr_interrupt = runtime->status->hw_ptr -
1293 runtime->status->hw_ptr % runtime->period_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001294 runtime->silence_start = runtime->status->hw_ptr;
1295 runtime->silence_filled = 0;
1296 return 0;
1297}
1298
Takashi Iwai877211f2005-11-17 13:59:38 +01001299static void snd_pcm_post_reset(struct snd_pcm_substream *substream, int state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001300{
Takashi Iwai877211f2005-11-17 13:59:38 +01001301 struct snd_pcm_runtime *runtime = substream->runtime;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001302 runtime->control->appl_ptr = runtime->status->hw_ptr;
1303 if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK &&
1304 runtime->silence_size > 0)
1305 snd_pcm_playback_silence(substream, ULONG_MAX);
1306}
1307
1308static struct action_ops snd_pcm_action_reset = {
1309 .pre_action = snd_pcm_pre_reset,
1310 .do_action = snd_pcm_do_reset,
1311 .post_action = snd_pcm_post_reset
1312};
1313
Takashi Iwai877211f2005-11-17 13:59:38 +01001314static int snd_pcm_reset(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001315{
1316 return snd_pcm_action_nonatomic(&snd_pcm_action_reset, substream, 0);
1317}
1318
1319/*
1320 * prepare ioctl
1321 */
Takashi Iwai0df63e42006-04-28 15:13:41 +02001322/* we use the second argument for updating f_flags */
1323static int snd_pcm_pre_prepare(struct snd_pcm_substream *substream,
1324 int f_flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001325{
Takashi Iwai877211f2005-11-17 13:59:38 +01001326 struct snd_pcm_runtime *runtime = substream->runtime;
Takashi Iwaide1b8b92006-11-08 15:41:29 +01001327 if (runtime->status->state == SNDRV_PCM_STATE_OPEN ||
1328 runtime->status->state == SNDRV_PCM_STATE_DISCONNECTED)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001329 return -EBADFD;
1330 if (snd_pcm_running(substream))
1331 return -EBUSY;
Takashi Iwai0df63e42006-04-28 15:13:41 +02001332 substream->f_flags = f_flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001333 return 0;
1334}
1335
Takashi Iwai877211f2005-11-17 13:59:38 +01001336static int snd_pcm_do_prepare(struct snd_pcm_substream *substream, int state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001337{
1338 int err;
1339 err = substream->ops->prepare(substream);
1340 if (err < 0)
1341 return err;
1342 return snd_pcm_do_reset(substream, 0);
1343}
1344
Takashi Iwai877211f2005-11-17 13:59:38 +01001345static void snd_pcm_post_prepare(struct snd_pcm_substream *substream, int state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001346{
Takashi Iwai877211f2005-11-17 13:59:38 +01001347 struct snd_pcm_runtime *runtime = substream->runtime;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001348 runtime->control->appl_ptr = runtime->status->hw_ptr;
Takashi Iwai9b0573c2012-10-12 15:07:34 +02001349 snd_pcm_set_state(substream, SNDRV_PCM_STATE_PREPARED);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001350}
1351
1352static struct action_ops snd_pcm_action_prepare = {
1353 .pre_action = snd_pcm_pre_prepare,
1354 .do_action = snd_pcm_do_prepare,
1355 .post_action = snd_pcm_post_prepare
1356};
1357
1358/**
Randy Dunlap1c85cc62008-10-15 14:38:40 -07001359 * snd_pcm_prepare - prepare the PCM substream to be triggerable
Takashi Iwaidf8db932005-09-07 13:38:19 +02001360 * @substream: the PCM substream instance
Takashi Iwai0df63e42006-04-28 15:13:41 +02001361 * @file: file to refer f_flags
Yacine Belkadieb7c06e2013-03-11 22:05:14 +01001362 *
1363 * Return: Zero if successful, or a negative error code.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001364 */
Takashi Iwai0df63e42006-04-28 15:13:41 +02001365static int snd_pcm_prepare(struct snd_pcm_substream *substream,
1366 struct file *file)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001367{
1368 int res;
Takashi Iwai877211f2005-11-17 13:59:38 +01001369 struct snd_card *card = substream->pcm->card;
Takashi Iwai0df63e42006-04-28 15:13:41 +02001370 int f_flags;
1371
1372 if (file)
1373 f_flags = file->f_flags;
1374 else
1375 f_flags = substream->f_flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001376
1377 snd_power_lock(card);
Takashi Iwaicbac4b02006-03-27 12:38:07 +02001378 if ((res = snd_power_wait(card, SNDRV_CTL_POWER_D0)) >= 0)
Takashi Iwai0df63e42006-04-28 15:13:41 +02001379 res = snd_pcm_action_nonatomic(&snd_pcm_action_prepare,
1380 substream, f_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001381 snd_power_unlock(card);
1382 return res;
1383}
1384
1385/*
1386 * drain ioctl
1387 */
1388
Takashi Iwai877211f2005-11-17 13:59:38 +01001389static int snd_pcm_pre_drain_init(struct snd_pcm_substream *substream, int state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001390{
Takashi Iwai4f7c39d2012-05-21 11:59:57 +02001391 struct snd_pcm_runtime *runtime = substream->runtime;
1392 switch (runtime->status->state) {
1393 case SNDRV_PCM_STATE_OPEN:
1394 case SNDRV_PCM_STATE_DISCONNECTED:
1395 case SNDRV_PCM_STATE_SUSPENDED:
1396 return -EBADFD;
1397 }
1398 runtime->trigger_master = substream;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001399 return 0;
1400}
1401
Takashi Iwai877211f2005-11-17 13:59:38 +01001402static int snd_pcm_do_drain_init(struct snd_pcm_substream *substream, int state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001403{
Takashi Iwai877211f2005-11-17 13:59:38 +01001404 struct snd_pcm_runtime *runtime = substream->runtime;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001405 if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK) {
1406 switch (runtime->status->state) {
1407 case SNDRV_PCM_STATE_PREPARED:
1408 /* start playback stream if possible */
1409 if (! snd_pcm_playback_empty(substream)) {
1410 snd_pcm_do_start(substream, SNDRV_PCM_STATE_DRAINING);
1411 snd_pcm_post_start(substream, SNDRV_PCM_STATE_DRAINING);
1412 }
1413 break;
1414 case SNDRV_PCM_STATE_RUNNING:
1415 runtime->status->state = SNDRV_PCM_STATE_DRAINING;
1416 break;
Takashi Iwai4f7c39d2012-05-21 11:59:57 +02001417 case SNDRV_PCM_STATE_XRUN:
1418 runtime->status->state = SNDRV_PCM_STATE_SETUP;
1419 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001420 default:
1421 break;
1422 }
1423 } else {
1424 /* stop running stream */
1425 if (runtime->status->state == SNDRV_PCM_STATE_RUNNING) {
Marcin Ślusarzb05e5782007-12-14 12:50:16 +01001426 int new_state = snd_pcm_capture_avail(runtime) > 0 ?
Linus Torvalds1da177e2005-04-16 15:20:36 -07001427 SNDRV_PCM_STATE_DRAINING : SNDRV_PCM_STATE_SETUP;
Marcin Ślusarzb05e5782007-12-14 12:50:16 +01001428 snd_pcm_do_stop(substream, new_state);
1429 snd_pcm_post_stop(substream, new_state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001430 }
1431 }
1432 return 0;
1433}
1434
Takashi Iwai877211f2005-11-17 13:59:38 +01001435static void snd_pcm_post_drain_init(struct snd_pcm_substream *substream, int state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001436{
1437}
1438
1439static struct action_ops snd_pcm_action_drain_init = {
1440 .pre_action = snd_pcm_pre_drain_init,
1441 .do_action = snd_pcm_do_drain_init,
1442 .post_action = snd_pcm_post_drain_init
1443};
1444
Takashi Iwai877211f2005-11-17 13:59:38 +01001445static int snd_pcm_drop(struct snd_pcm_substream *substream);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001446
1447/*
1448 * Drain the stream(s).
1449 * When the substream is linked, sync until the draining of all playback streams
1450 * is finished.
1451 * After this call, all streams are supposed to be either SETUP or DRAINING
1452 * (capture only) state.
1453 */
Takashi Iwai4cdc1152009-08-20 16:40:16 +02001454static int snd_pcm_drain(struct snd_pcm_substream *substream,
1455 struct file *file)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001456{
Takashi Iwai877211f2005-11-17 13:59:38 +01001457 struct snd_card *card;
1458 struct snd_pcm_runtime *runtime;
Takashi Iwaief991b92007-02-22 12:52:53 +01001459 struct snd_pcm_substream *s;
Takashi Iwaid3a7dcf2009-09-17 18:46:26 +02001460 wait_queue_t wait;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001461 int result = 0;
Takashi Iwai4cdc1152009-08-20 16:40:16 +02001462 int nonblock = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001463
Linus Torvalds1da177e2005-04-16 15:20:36 -07001464 card = substream->pcm->card;
1465 runtime = substream->runtime;
1466
1467 if (runtime->status->state == SNDRV_PCM_STATE_OPEN)
1468 return -EBADFD;
1469
Linus Torvalds1da177e2005-04-16 15:20:36 -07001470 snd_power_lock(card);
1471 if (runtime->status->state == SNDRV_PCM_STATE_SUSPENDED) {
Takashi Iwaicbac4b02006-03-27 12:38:07 +02001472 result = snd_power_wait(card, SNDRV_CTL_POWER_D0);
Takashi Iwai21cb2a22005-05-31 14:35:31 +02001473 if (result < 0) {
1474 snd_power_unlock(card);
1475 return result;
1476 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001477 }
1478
Takashi Iwai4cdc1152009-08-20 16:40:16 +02001479 if (file) {
1480 if (file->f_flags & O_NONBLOCK)
1481 nonblock = 1;
1482 } else if (substream->f_flags & O_NONBLOCK)
1483 nonblock = 1;
1484
Takashi Iwai21cb2a22005-05-31 14:35:31 +02001485 down_read(&snd_pcm_link_rwsem);
Takashi Iwai21cb2a22005-05-31 14:35:31 +02001486 snd_pcm_stream_lock_irq(substream);
1487 /* resume pause */
Takashi Iwaid3a7dcf2009-09-17 18:46:26 +02001488 if (runtime->status->state == SNDRV_PCM_STATE_PAUSED)
Takashi Iwai21cb2a22005-05-31 14:35:31 +02001489 snd_pcm_pause(substream, 0);
1490
1491 /* pre-start/stop - all running streams are changed to DRAINING state */
1492 result = snd_pcm_action(&snd_pcm_action_drain_init, substream, 0);
Takashi Iwai4cdc1152009-08-20 16:40:16 +02001493 if (result < 0)
1494 goto unlock;
1495 /* in non-blocking, we don't wait in ioctl but let caller poll */
1496 if (nonblock) {
1497 result = -EAGAIN;
1498 goto unlock;
Takashi Iwai21cb2a22005-05-31 14:35:31 +02001499 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001500
1501 for (;;) {
1502 long tout;
Takashi Iwaid3a7dcf2009-09-17 18:46:26 +02001503 struct snd_pcm_runtime *to_check;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001504 if (signal_pending(current)) {
1505 result = -ERESTARTSYS;
1506 break;
1507 }
Takashi Iwaid3a7dcf2009-09-17 18:46:26 +02001508 /* find a substream to drain */
1509 to_check = NULL;
1510 snd_pcm_group_for_each_entry(s, substream) {
1511 if (s->stream != SNDRV_PCM_STREAM_PLAYBACK)
1512 continue;
1513 runtime = s->runtime;
1514 if (runtime->status->state == SNDRV_PCM_STATE_DRAINING) {
1515 to_check = runtime;
Takashi Iwai21cb2a22005-05-31 14:35:31 +02001516 break;
Takashi Iwaid3a7dcf2009-09-17 18:46:26 +02001517 }
Takashi Iwai21cb2a22005-05-31 14:35:31 +02001518 }
Takashi Iwaid3a7dcf2009-09-17 18:46:26 +02001519 if (!to_check)
1520 break; /* all drained */
1521 init_waitqueue_entry(&wait, current);
1522 add_wait_queue(&to_check->sleep, &wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001523 snd_pcm_stream_unlock_irq(substream);
Takashi Iwaid3a7dcf2009-09-17 18:46:26 +02001524 up_read(&snd_pcm_link_rwsem);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001525 snd_power_unlock(card);
Takashi Iwaif2b36142011-05-26 08:09:38 +02001526 if (runtime->no_period_wakeup)
1527 tout = MAX_SCHEDULE_TIMEOUT;
1528 else {
1529 tout = 10;
1530 if (runtime->rate) {
1531 long t = runtime->period_size * 2 / runtime->rate;
1532 tout = max(t, tout);
1533 }
1534 tout = msecs_to_jiffies(tout * 1000);
1535 }
1536 tout = schedule_timeout_interruptible(tout);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001537 snd_power_lock(card);
Takashi Iwaid3a7dcf2009-09-17 18:46:26 +02001538 down_read(&snd_pcm_link_rwsem);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001539 snd_pcm_stream_lock_irq(substream);
Takashi Iwaid3a7dcf2009-09-17 18:46:26 +02001540 remove_wait_queue(&to_check->sleep, &wait);
Takashi Iwai0914f792012-10-16 16:43:39 +02001541 if (card->shutdown) {
1542 result = -ENODEV;
1543 break;
1544 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001545 if (tout == 0) {
1546 if (substream->runtime->status->state == SNDRV_PCM_STATE_SUSPENDED)
1547 result = -ESTRPIPE;
1548 else {
Takashi Iwai09e56df2014-02-04 18:19:48 +01001549 dev_dbg(substream->pcm->card->dev,
1550 "playback drain error (DMA or IRQ trouble?)\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001551 snd_pcm_stop(substream, SNDRV_PCM_STATE_SETUP);
1552 result = -EIO;
1553 }
1554 break;
1555 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001556 }
Takashi Iwai21cb2a22005-05-31 14:35:31 +02001557
Takashi Iwai4cdc1152009-08-20 16:40:16 +02001558 unlock:
Takashi Iwai21cb2a22005-05-31 14:35:31 +02001559 snd_pcm_stream_unlock_irq(substream);
Takashi Iwaid3a7dcf2009-09-17 18:46:26 +02001560 up_read(&snd_pcm_link_rwsem);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001561 snd_power_unlock(card);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001562
1563 return result;
1564}
1565
1566/*
1567 * drop ioctl
1568 *
1569 * Immediately put all linked substreams into SETUP state.
1570 */
Takashi Iwai877211f2005-11-17 13:59:38 +01001571static int snd_pcm_drop(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001572{
Takashi Iwai877211f2005-11-17 13:59:38 +01001573 struct snd_pcm_runtime *runtime;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001574 int result = 0;
1575
Takashi Iwai7eaa9432008-08-08 17:09:09 +02001576 if (PCM_RUNTIME_CHECK(substream))
1577 return -ENXIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001578 runtime = substream->runtime;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001579
Takashi Iwaide1b8b92006-11-08 15:41:29 +01001580 if (runtime->status->state == SNDRV_PCM_STATE_OPEN ||
Takashi Iwai24e8fc42008-09-25 17:51:11 +02001581 runtime->status->state == SNDRV_PCM_STATE_DISCONNECTED ||
1582 runtime->status->state == SNDRV_PCM_STATE_SUSPENDED)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001583 return -EBADFD;
1584
Linus Torvalds1da177e2005-04-16 15:20:36 -07001585 snd_pcm_stream_lock_irq(substream);
1586 /* resume pause */
1587 if (runtime->status->state == SNDRV_PCM_STATE_PAUSED)
1588 snd_pcm_pause(substream, 0);
1589
1590 snd_pcm_stop(substream, SNDRV_PCM_STATE_SETUP);
1591 /* runtime->control->appl_ptr = runtime->status->hw_ptr; */
1592 snd_pcm_stream_unlock_irq(substream);
Takashi Iwai24e8fc42008-09-25 17:51:11 +02001593
Linus Torvalds1da177e2005-04-16 15:20:36 -07001594 return result;
1595}
1596
1597
Al Viro0888c322013-06-05 14:09:55 -04001598static bool is_pcm_file(struct file *file)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001599{
Al Viro0888c322013-06-05 14:09:55 -04001600 struct inode *inode = file_inode(file);
Clemens Ladischf87135f2005-11-20 14:06:59 +01001601 unsigned int minor;
1602
Al Viro0888c322013-06-05 14:09:55 -04001603 if (!S_ISCHR(inode->i_mode) || imajor(inode) != snd_major)
1604 return false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001605 minor = iminor(inode);
Al Viro0888c322013-06-05 14:09:55 -04001606 return snd_lookup_minor_data(minor, SNDRV_DEVICE_TYPE_PCM_PLAYBACK) ||
1607 snd_lookup_minor_data(minor, SNDRV_DEVICE_TYPE_PCM_CAPTURE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001608}
1609
1610/*
1611 * PCM link handling
1612 */
Takashi Iwai877211f2005-11-17 13:59:38 +01001613static int snd_pcm_link(struct snd_pcm_substream *substream, int fd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001614{
1615 int res = 0;
Takashi Iwai877211f2005-11-17 13:59:38 +01001616 struct snd_pcm_file *pcm_file;
1617 struct snd_pcm_substream *substream1;
Takashi Iwai16625912012-03-13 15:55:43 +01001618 struct snd_pcm_group *group;
Al Viro0888c322013-06-05 14:09:55 -04001619 struct fd f = fdget(fd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001620
Al Viro0888c322013-06-05 14:09:55 -04001621 if (!f.file)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001622 return -EBADFD;
Al Viro0888c322013-06-05 14:09:55 -04001623 if (!is_pcm_file(f.file)) {
1624 res = -EBADFD;
1625 goto _badf;
1626 }
1627 pcm_file = f.file->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001628 substream1 = pcm_file->substream;
Takashi Iwai16625912012-03-13 15:55:43 +01001629 group = kmalloc(sizeof(*group), GFP_KERNEL);
1630 if (!group) {
1631 res = -ENOMEM;
1632 goto _nolock;
1633 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001634 down_write(&snd_pcm_link_rwsem);
1635 write_lock_irq(&snd_pcm_link_rwlock);
1636 if (substream->runtime->status->state == SNDRV_PCM_STATE_OPEN ||
1637 substream->runtime->status->state != substream1->runtime->status->state) {
1638 res = -EBADFD;
1639 goto _end;
1640 }
1641 if (snd_pcm_stream_linked(substream1)) {
1642 res = -EALREADY;
1643 goto _end;
1644 }
1645 if (!snd_pcm_stream_linked(substream)) {
Takashi Iwai16625912012-03-13 15:55:43 +01001646 substream->group = group;
Al Virodd6c5cd2013-06-05 14:07:08 -04001647 group = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001648 spin_lock_init(&substream->group->lock);
1649 INIT_LIST_HEAD(&substream->group->substreams);
1650 list_add_tail(&substream->link_list, &substream->group->substreams);
1651 substream->group->count = 1;
1652 }
1653 list_add_tail(&substream1->link_list, &substream->group->substreams);
1654 substream->group->count++;
1655 substream1->group = substream->group;
1656 _end:
1657 write_unlock_irq(&snd_pcm_link_rwlock);
1658 up_write(&snd_pcm_link_rwsem);
Takashi Iwai16625912012-03-13 15:55:43 +01001659 _nolock:
Takashi Iwaia0830db2012-10-16 13:05:59 +02001660 snd_card_unref(substream1->pcm->card);
Al Virodd6c5cd2013-06-05 14:07:08 -04001661 kfree(group);
Al Viro0888c322013-06-05 14:09:55 -04001662 _badf:
1663 fdput(f);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001664 return res;
1665}
1666
Takashi Iwai877211f2005-11-17 13:59:38 +01001667static void relink_to_local(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001668{
1669 substream->group = &substream->self_group;
1670 INIT_LIST_HEAD(&substream->self_group.substreams);
1671 list_add_tail(&substream->link_list, &substream->self_group.substreams);
1672}
1673
Takashi Iwai877211f2005-11-17 13:59:38 +01001674static int snd_pcm_unlink(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001675{
Takashi Iwaief991b92007-02-22 12:52:53 +01001676 struct snd_pcm_substream *s;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001677 int res = 0;
1678
1679 down_write(&snd_pcm_link_rwsem);
1680 write_lock_irq(&snd_pcm_link_rwlock);
1681 if (!snd_pcm_stream_linked(substream)) {
1682 res = -EALREADY;
1683 goto _end;
1684 }
1685 list_del(&substream->link_list);
1686 substream->group->count--;
1687 if (substream->group->count == 1) { /* detach the last stream, too */
Takashi Iwaief991b92007-02-22 12:52:53 +01001688 snd_pcm_group_for_each_entry(s, substream) {
1689 relink_to_local(s);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001690 break;
1691 }
1692 kfree(substream->group);
1693 }
1694 relink_to_local(substream);
1695 _end:
1696 write_unlock_irq(&snd_pcm_link_rwlock);
1697 up_write(&snd_pcm_link_rwsem);
1698 return res;
1699}
1700
1701/*
1702 * hw configurator
1703 */
Takashi Iwai877211f2005-11-17 13:59:38 +01001704static int snd_pcm_hw_rule_mul(struct snd_pcm_hw_params *params,
1705 struct snd_pcm_hw_rule *rule)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001706{
Takashi Iwai877211f2005-11-17 13:59:38 +01001707 struct snd_interval t;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001708 snd_interval_mul(hw_param_interval_c(params, rule->deps[0]),
1709 hw_param_interval_c(params, rule->deps[1]), &t);
1710 return snd_interval_refine(hw_param_interval(params, rule->var), &t);
1711}
1712
Takashi Iwai877211f2005-11-17 13:59:38 +01001713static int snd_pcm_hw_rule_div(struct snd_pcm_hw_params *params,
1714 struct snd_pcm_hw_rule *rule)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001715{
Takashi Iwai877211f2005-11-17 13:59:38 +01001716 struct snd_interval t;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001717 snd_interval_div(hw_param_interval_c(params, rule->deps[0]),
1718 hw_param_interval_c(params, rule->deps[1]), &t);
1719 return snd_interval_refine(hw_param_interval(params, rule->var), &t);
1720}
1721
Takashi Iwai877211f2005-11-17 13:59:38 +01001722static int snd_pcm_hw_rule_muldivk(struct snd_pcm_hw_params *params,
1723 struct snd_pcm_hw_rule *rule)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001724{
Takashi Iwai877211f2005-11-17 13:59:38 +01001725 struct snd_interval t;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001726 snd_interval_muldivk(hw_param_interval_c(params, rule->deps[0]),
1727 hw_param_interval_c(params, rule->deps[1]),
1728 (unsigned long) rule->private, &t);
1729 return snd_interval_refine(hw_param_interval(params, rule->var), &t);
1730}
1731
Takashi Iwai877211f2005-11-17 13:59:38 +01001732static int snd_pcm_hw_rule_mulkdiv(struct snd_pcm_hw_params *params,
1733 struct snd_pcm_hw_rule *rule)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001734{
Takashi Iwai877211f2005-11-17 13:59:38 +01001735 struct snd_interval t;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001736 snd_interval_mulkdiv(hw_param_interval_c(params, rule->deps[0]),
1737 (unsigned long) rule->private,
1738 hw_param_interval_c(params, rule->deps[1]), &t);
1739 return snd_interval_refine(hw_param_interval(params, rule->var), &t);
1740}
1741
Takashi Iwai877211f2005-11-17 13:59:38 +01001742static int snd_pcm_hw_rule_format(struct snd_pcm_hw_params *params,
1743 struct snd_pcm_hw_rule *rule)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001744{
1745 unsigned int k;
Takashi Iwai877211f2005-11-17 13:59:38 +01001746 struct snd_interval *i = hw_param_interval(params, rule->deps[0]);
1747 struct snd_mask m;
1748 struct snd_mask *mask = hw_param_mask(params, SNDRV_PCM_HW_PARAM_FORMAT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001749 snd_mask_any(&m);
1750 for (k = 0; k <= SNDRV_PCM_FORMAT_LAST; ++k) {
1751 int bits;
1752 if (! snd_mask_test(mask, k))
1753 continue;
1754 bits = snd_pcm_format_physical_width(k);
1755 if (bits <= 0)
1756 continue; /* ignore invalid formats */
1757 if ((unsigned)bits < i->min || (unsigned)bits > i->max)
1758 snd_mask_reset(&m, k);
1759 }
1760 return snd_mask_refine(mask, &m);
1761}
1762
Takashi Iwai877211f2005-11-17 13:59:38 +01001763static int snd_pcm_hw_rule_sample_bits(struct snd_pcm_hw_params *params,
1764 struct snd_pcm_hw_rule *rule)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001765{
Takashi Iwai877211f2005-11-17 13:59:38 +01001766 struct snd_interval t;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001767 unsigned int k;
1768 t.min = UINT_MAX;
1769 t.max = 0;
1770 t.openmin = 0;
1771 t.openmax = 0;
1772 for (k = 0; k <= SNDRV_PCM_FORMAT_LAST; ++k) {
1773 int bits;
1774 if (! snd_mask_test(hw_param_mask(params, SNDRV_PCM_HW_PARAM_FORMAT), k))
1775 continue;
1776 bits = snd_pcm_format_physical_width(k);
1777 if (bits <= 0)
1778 continue; /* ignore invalid formats */
1779 if (t.min > (unsigned)bits)
1780 t.min = bits;
1781 if (t.max < (unsigned)bits)
1782 t.max = bits;
1783 }
1784 t.integer = 1;
1785 return snd_interval_refine(hw_param_interval(params, rule->var), &t);
1786}
1787
1788#if SNDRV_PCM_RATE_5512 != 1 << 0 || SNDRV_PCM_RATE_192000 != 1 << 12
1789#error "Change this table"
1790#endif
1791
1792static unsigned int rates[] = { 5512, 8000, 11025, 16000, 22050, 32000, 44100,
1793 48000, 64000, 88200, 96000, 176400, 192000 };
1794
Clemens Ladisch7653d552007-08-13 17:38:54 +02001795const struct snd_pcm_hw_constraint_list snd_pcm_known_rates = {
1796 .count = ARRAY_SIZE(rates),
1797 .list = rates,
1798};
1799
Takashi Iwai877211f2005-11-17 13:59:38 +01001800static int snd_pcm_hw_rule_rate(struct snd_pcm_hw_params *params,
1801 struct snd_pcm_hw_rule *rule)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001802{
Takashi Iwai877211f2005-11-17 13:59:38 +01001803 struct snd_pcm_hardware *hw = rule->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001804 return snd_interval_list(hw_param_interval(params, rule->var),
Clemens Ladisch7653d552007-08-13 17:38:54 +02001805 snd_pcm_known_rates.count,
1806 snd_pcm_known_rates.list, hw->rates);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001807}
1808
Takashi Iwai877211f2005-11-17 13:59:38 +01001809static int snd_pcm_hw_rule_buffer_bytes_max(struct snd_pcm_hw_params *params,
1810 struct snd_pcm_hw_rule *rule)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001811{
Takashi Iwai877211f2005-11-17 13:59:38 +01001812 struct snd_interval t;
1813 struct snd_pcm_substream *substream = rule->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001814 t.min = 0;
1815 t.max = substream->buffer_bytes_max;
1816 t.openmin = 0;
1817 t.openmax = 0;
1818 t.integer = 1;
1819 return snd_interval_refine(hw_param_interval(params, rule->var), &t);
1820}
1821
Takashi Iwai877211f2005-11-17 13:59:38 +01001822int snd_pcm_hw_constraints_init(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001823{
Takashi Iwai877211f2005-11-17 13:59:38 +01001824 struct snd_pcm_runtime *runtime = substream->runtime;
1825 struct snd_pcm_hw_constraints *constrs = &runtime->hw_constraints;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001826 int k, err;
1827
1828 for (k = SNDRV_PCM_HW_PARAM_FIRST_MASK; k <= SNDRV_PCM_HW_PARAM_LAST_MASK; k++) {
1829 snd_mask_any(constrs_mask(constrs, k));
1830 }
1831
1832 for (k = SNDRV_PCM_HW_PARAM_FIRST_INTERVAL; k <= SNDRV_PCM_HW_PARAM_LAST_INTERVAL; k++) {
1833 snd_interval_any(constrs_interval(constrs, k));
1834 }
1835
1836 snd_interval_setinteger(constrs_interval(constrs, SNDRV_PCM_HW_PARAM_CHANNELS));
1837 snd_interval_setinteger(constrs_interval(constrs, SNDRV_PCM_HW_PARAM_BUFFER_SIZE));
1838 snd_interval_setinteger(constrs_interval(constrs, SNDRV_PCM_HW_PARAM_BUFFER_BYTES));
1839 snd_interval_setinteger(constrs_interval(constrs, SNDRV_PCM_HW_PARAM_SAMPLE_BITS));
1840 snd_interval_setinteger(constrs_interval(constrs, SNDRV_PCM_HW_PARAM_FRAME_BITS));
1841
1842 err = snd_pcm_hw_rule_add(runtime, 0, SNDRV_PCM_HW_PARAM_FORMAT,
1843 snd_pcm_hw_rule_format, NULL,
1844 SNDRV_PCM_HW_PARAM_SAMPLE_BITS, -1);
1845 if (err < 0)
1846 return err;
1847 err = snd_pcm_hw_rule_add(runtime, 0, SNDRV_PCM_HW_PARAM_SAMPLE_BITS,
1848 snd_pcm_hw_rule_sample_bits, NULL,
1849 SNDRV_PCM_HW_PARAM_FORMAT,
1850 SNDRV_PCM_HW_PARAM_SAMPLE_BITS, -1);
1851 if (err < 0)
1852 return err;
1853 err = snd_pcm_hw_rule_add(runtime, 0, SNDRV_PCM_HW_PARAM_SAMPLE_BITS,
1854 snd_pcm_hw_rule_div, NULL,
1855 SNDRV_PCM_HW_PARAM_FRAME_BITS, SNDRV_PCM_HW_PARAM_CHANNELS, -1);
1856 if (err < 0)
1857 return err;
1858 err = snd_pcm_hw_rule_add(runtime, 0, SNDRV_PCM_HW_PARAM_FRAME_BITS,
1859 snd_pcm_hw_rule_mul, NULL,
1860 SNDRV_PCM_HW_PARAM_SAMPLE_BITS, SNDRV_PCM_HW_PARAM_CHANNELS, -1);
1861 if (err < 0)
1862 return err;
1863 err = snd_pcm_hw_rule_add(runtime, 0, SNDRV_PCM_HW_PARAM_FRAME_BITS,
1864 snd_pcm_hw_rule_mulkdiv, (void*) 8,
1865 SNDRV_PCM_HW_PARAM_PERIOD_BYTES, SNDRV_PCM_HW_PARAM_PERIOD_SIZE, -1);
1866 if (err < 0)
1867 return err;
1868 err = snd_pcm_hw_rule_add(runtime, 0, SNDRV_PCM_HW_PARAM_FRAME_BITS,
1869 snd_pcm_hw_rule_mulkdiv, (void*) 8,
1870 SNDRV_PCM_HW_PARAM_BUFFER_BYTES, SNDRV_PCM_HW_PARAM_BUFFER_SIZE, -1);
1871 if (err < 0)
1872 return err;
1873 err = snd_pcm_hw_rule_add(runtime, 0, SNDRV_PCM_HW_PARAM_CHANNELS,
1874 snd_pcm_hw_rule_div, NULL,
1875 SNDRV_PCM_HW_PARAM_FRAME_BITS, SNDRV_PCM_HW_PARAM_SAMPLE_BITS, -1);
1876 if (err < 0)
1877 return err;
1878 err = snd_pcm_hw_rule_add(runtime, 0, SNDRV_PCM_HW_PARAM_RATE,
1879 snd_pcm_hw_rule_mulkdiv, (void*) 1000000,
1880 SNDRV_PCM_HW_PARAM_PERIOD_SIZE, SNDRV_PCM_HW_PARAM_PERIOD_TIME, -1);
1881 if (err < 0)
1882 return err;
1883 err = snd_pcm_hw_rule_add(runtime, 0, SNDRV_PCM_HW_PARAM_RATE,
1884 snd_pcm_hw_rule_mulkdiv, (void*) 1000000,
1885 SNDRV_PCM_HW_PARAM_BUFFER_SIZE, SNDRV_PCM_HW_PARAM_BUFFER_TIME, -1);
1886 if (err < 0)
1887 return err;
1888 err = snd_pcm_hw_rule_add(runtime, 0, SNDRV_PCM_HW_PARAM_PERIODS,
1889 snd_pcm_hw_rule_div, NULL,
1890 SNDRV_PCM_HW_PARAM_BUFFER_SIZE, SNDRV_PCM_HW_PARAM_PERIOD_SIZE, -1);
1891 if (err < 0)
1892 return err;
1893 err = snd_pcm_hw_rule_add(runtime, 0, SNDRV_PCM_HW_PARAM_PERIOD_SIZE,
1894 snd_pcm_hw_rule_div, NULL,
1895 SNDRV_PCM_HW_PARAM_BUFFER_SIZE, SNDRV_PCM_HW_PARAM_PERIODS, -1);
1896 if (err < 0)
1897 return err;
1898 err = snd_pcm_hw_rule_add(runtime, 0, SNDRV_PCM_HW_PARAM_PERIOD_SIZE,
1899 snd_pcm_hw_rule_mulkdiv, (void*) 8,
1900 SNDRV_PCM_HW_PARAM_PERIOD_BYTES, SNDRV_PCM_HW_PARAM_FRAME_BITS, -1);
1901 if (err < 0)
1902 return err;
1903 err = snd_pcm_hw_rule_add(runtime, 0, SNDRV_PCM_HW_PARAM_PERIOD_SIZE,
1904 snd_pcm_hw_rule_muldivk, (void*) 1000000,
1905 SNDRV_PCM_HW_PARAM_PERIOD_TIME, SNDRV_PCM_HW_PARAM_RATE, -1);
1906 if (err < 0)
1907 return err;
1908 err = snd_pcm_hw_rule_add(runtime, 0, SNDRV_PCM_HW_PARAM_BUFFER_SIZE,
1909 snd_pcm_hw_rule_mul, NULL,
1910 SNDRV_PCM_HW_PARAM_PERIOD_SIZE, SNDRV_PCM_HW_PARAM_PERIODS, -1);
1911 if (err < 0)
1912 return err;
1913 err = snd_pcm_hw_rule_add(runtime, 0, SNDRV_PCM_HW_PARAM_BUFFER_SIZE,
1914 snd_pcm_hw_rule_mulkdiv, (void*) 8,
1915 SNDRV_PCM_HW_PARAM_BUFFER_BYTES, SNDRV_PCM_HW_PARAM_FRAME_BITS, -1);
1916 if (err < 0)
1917 return err;
1918 err = snd_pcm_hw_rule_add(runtime, 0, SNDRV_PCM_HW_PARAM_BUFFER_SIZE,
1919 snd_pcm_hw_rule_muldivk, (void*) 1000000,
1920 SNDRV_PCM_HW_PARAM_BUFFER_TIME, SNDRV_PCM_HW_PARAM_RATE, -1);
1921 if (err < 0)
1922 return err;
1923 err = snd_pcm_hw_rule_add(runtime, 0, SNDRV_PCM_HW_PARAM_PERIOD_BYTES,
1924 snd_pcm_hw_rule_muldivk, (void*) 8,
1925 SNDRV_PCM_HW_PARAM_PERIOD_SIZE, SNDRV_PCM_HW_PARAM_FRAME_BITS, -1);
1926 if (err < 0)
1927 return err;
1928 err = snd_pcm_hw_rule_add(runtime, 0, SNDRV_PCM_HW_PARAM_BUFFER_BYTES,
1929 snd_pcm_hw_rule_muldivk, (void*) 8,
1930 SNDRV_PCM_HW_PARAM_BUFFER_SIZE, SNDRV_PCM_HW_PARAM_FRAME_BITS, -1);
1931 if (err < 0)
1932 return err;
1933 err = snd_pcm_hw_rule_add(runtime, 0, SNDRV_PCM_HW_PARAM_PERIOD_TIME,
1934 snd_pcm_hw_rule_mulkdiv, (void*) 1000000,
1935 SNDRV_PCM_HW_PARAM_PERIOD_SIZE, SNDRV_PCM_HW_PARAM_RATE, -1);
1936 if (err < 0)
1937 return err;
1938 err = snd_pcm_hw_rule_add(runtime, 0, SNDRV_PCM_HW_PARAM_BUFFER_TIME,
1939 snd_pcm_hw_rule_mulkdiv, (void*) 1000000,
1940 SNDRV_PCM_HW_PARAM_BUFFER_SIZE, SNDRV_PCM_HW_PARAM_RATE, -1);
1941 if (err < 0)
1942 return err;
1943 return 0;
1944}
1945
Takashi Iwai877211f2005-11-17 13:59:38 +01001946int snd_pcm_hw_constraints_complete(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001947{
Takashi Iwai877211f2005-11-17 13:59:38 +01001948 struct snd_pcm_runtime *runtime = substream->runtime;
1949 struct snd_pcm_hardware *hw = &runtime->hw;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001950 int err;
1951 unsigned int mask = 0;
1952
1953 if (hw->info & SNDRV_PCM_INFO_INTERLEAVED)
1954 mask |= 1 << SNDRV_PCM_ACCESS_RW_INTERLEAVED;
1955 if (hw->info & SNDRV_PCM_INFO_NONINTERLEAVED)
1956 mask |= 1 << SNDRV_PCM_ACCESS_RW_NONINTERLEAVED;
1957 if (hw->info & SNDRV_PCM_INFO_MMAP) {
1958 if (hw->info & SNDRV_PCM_INFO_INTERLEAVED)
1959 mask |= 1 << SNDRV_PCM_ACCESS_MMAP_INTERLEAVED;
1960 if (hw->info & SNDRV_PCM_INFO_NONINTERLEAVED)
1961 mask |= 1 << SNDRV_PCM_ACCESS_MMAP_NONINTERLEAVED;
1962 if (hw->info & SNDRV_PCM_INFO_COMPLEX)
1963 mask |= 1 << SNDRV_PCM_ACCESS_MMAP_COMPLEX;
1964 }
1965 err = snd_pcm_hw_constraint_mask(runtime, SNDRV_PCM_HW_PARAM_ACCESS, mask);
Takashi Iwai7eaa9432008-08-08 17:09:09 +02001966 if (err < 0)
1967 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001968
1969 err = snd_pcm_hw_constraint_mask64(runtime, SNDRV_PCM_HW_PARAM_FORMAT, hw->formats);
Takashi Iwai7eaa9432008-08-08 17:09:09 +02001970 if (err < 0)
1971 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001972
1973 err = snd_pcm_hw_constraint_mask(runtime, SNDRV_PCM_HW_PARAM_SUBFORMAT, 1 << SNDRV_PCM_SUBFORMAT_STD);
Takashi Iwai7eaa9432008-08-08 17:09:09 +02001974 if (err < 0)
1975 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001976
1977 err = snd_pcm_hw_constraint_minmax(runtime, SNDRV_PCM_HW_PARAM_CHANNELS,
1978 hw->channels_min, hw->channels_max);
Takashi Iwai7eaa9432008-08-08 17:09:09 +02001979 if (err < 0)
1980 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001981
1982 err = snd_pcm_hw_constraint_minmax(runtime, SNDRV_PCM_HW_PARAM_RATE,
1983 hw->rate_min, hw->rate_max);
Guennadi Liakhovetski8b90ca02009-12-24 01:17:46 +01001984 if (err < 0)
1985 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001986
1987 err = snd_pcm_hw_constraint_minmax(runtime, SNDRV_PCM_HW_PARAM_PERIOD_BYTES,
1988 hw->period_bytes_min, hw->period_bytes_max);
Guennadi Liakhovetski8b90ca02009-12-24 01:17:46 +01001989 if (err < 0)
1990 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001991
1992 err = snd_pcm_hw_constraint_minmax(runtime, SNDRV_PCM_HW_PARAM_PERIODS,
1993 hw->periods_min, hw->periods_max);
Takashi Iwai7eaa9432008-08-08 17:09:09 +02001994 if (err < 0)
1995 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001996
1997 err = snd_pcm_hw_constraint_minmax(runtime, SNDRV_PCM_HW_PARAM_BUFFER_BYTES,
1998 hw->period_bytes_min, hw->buffer_bytes_max);
Takashi Iwai7eaa9432008-08-08 17:09:09 +02001999 if (err < 0)
2000 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002001
2002 err = snd_pcm_hw_rule_add(runtime, 0, SNDRV_PCM_HW_PARAM_BUFFER_BYTES,
2003 snd_pcm_hw_rule_buffer_bytes_max, substream,
2004 SNDRV_PCM_HW_PARAM_BUFFER_BYTES, -1);
2005 if (err < 0)
2006 return err;
2007
2008 /* FIXME: remove */
2009 if (runtime->dma_bytes) {
2010 err = snd_pcm_hw_constraint_minmax(runtime, SNDRV_PCM_HW_PARAM_BUFFER_BYTES, 0, runtime->dma_bytes);
Takashi Iwai7eaa9432008-08-08 17:09:09 +02002011 if (err < 0)
Sachin Kamat6cf95152012-11-21 14:36:55 +05302012 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002013 }
2014
2015 if (!(hw->rates & (SNDRV_PCM_RATE_KNOT | SNDRV_PCM_RATE_CONTINUOUS))) {
2016 err = snd_pcm_hw_rule_add(runtime, 0, SNDRV_PCM_HW_PARAM_RATE,
2017 snd_pcm_hw_rule_rate, hw,
2018 SNDRV_PCM_HW_PARAM_RATE, -1);
2019 if (err < 0)
2020 return err;
2021 }
2022
2023 /* FIXME: this belong to lowlevel */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002024 snd_pcm_hw_constraint_integer(runtime, SNDRV_PCM_HW_PARAM_PERIOD_SIZE);
2025
2026 return 0;
2027}
2028
Takashi Iwai3bf75f92006-03-27 16:40:49 +02002029static void pcm_release_private(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002030{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002031 snd_pcm_unlink(substream);
Takashi Iwai3bf75f92006-03-27 16:40:49 +02002032}
2033
2034void snd_pcm_release_substream(struct snd_pcm_substream *substream)
2035{
Takashi Iwai0df63e42006-04-28 15:13:41 +02002036 substream->ref_count--;
2037 if (substream->ref_count > 0)
2038 return;
2039
Takashi Iwai3bf75f92006-03-27 16:40:49 +02002040 snd_pcm_drop(substream);
Takashi Iwai3bf75f92006-03-27 16:40:49 +02002041 if (substream->hw_opened) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002042 if (substream->ops->hw_free != NULL)
2043 substream->ops->hw_free(substream);
2044 substream->ops->close(substream);
Takashi Iwai3bf75f92006-03-27 16:40:49 +02002045 substream->hw_opened = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002046 }
Takashi Iwai8699a0b2010-09-16 22:52:32 +02002047 if (pm_qos_request_active(&substream->latency_pm_qos_req))
2048 pm_qos_remove_request(&substream->latency_pm_qos_req);
Takashi Iwai15762742006-04-06 19:47:42 +02002049 if (substream->pcm_release) {
2050 substream->pcm_release(substream);
2051 substream->pcm_release = NULL;
2052 }
Takashi Iwai3bf75f92006-03-27 16:40:49 +02002053 snd_pcm_detach_substream(substream);
2054}
2055
Takashi Iwaie88e8ae62006-04-28 15:13:40 +02002056EXPORT_SYMBOL(snd_pcm_release_substream);
2057
Takashi Iwai3bf75f92006-03-27 16:40:49 +02002058int snd_pcm_open_substream(struct snd_pcm *pcm, int stream,
2059 struct file *file,
2060 struct snd_pcm_substream **rsubstream)
2061{
2062 struct snd_pcm_substream *substream;
2063 int err;
2064
2065 err = snd_pcm_attach_substream(pcm, stream, file, &substream);
2066 if (err < 0)
2067 return err;
Takashi Iwai0df63e42006-04-28 15:13:41 +02002068 if (substream->ref_count > 1) {
2069 *rsubstream = substream;
2070 return 0;
2071 }
2072
Takashi Iwai3bf75f92006-03-27 16:40:49 +02002073 err = snd_pcm_hw_constraints_init(substream);
2074 if (err < 0) {
Takashi Iwai09e56df2014-02-04 18:19:48 +01002075 pcm_dbg(pcm, "snd_pcm_hw_constraints_init failed\n");
Takashi Iwai3bf75f92006-03-27 16:40:49 +02002076 goto error;
2077 }
2078
2079 if ((err = substream->ops->open(substream)) < 0)
2080 goto error;
2081
2082 substream->hw_opened = 1;
2083
2084 err = snd_pcm_hw_constraints_complete(substream);
2085 if (err < 0) {
Takashi Iwai09e56df2014-02-04 18:19:48 +01002086 pcm_dbg(pcm, "snd_pcm_hw_constraints_complete failed\n");
Takashi Iwai3bf75f92006-03-27 16:40:49 +02002087 goto error;
2088 }
2089
2090 *rsubstream = substream;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002091 return 0;
Takashi Iwai3bf75f92006-03-27 16:40:49 +02002092
2093 error:
2094 snd_pcm_release_substream(substream);
2095 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002096}
2097
Takashi Iwaie88e8ae62006-04-28 15:13:40 +02002098EXPORT_SYMBOL(snd_pcm_open_substream);
2099
Linus Torvalds1da177e2005-04-16 15:20:36 -07002100static int snd_pcm_open_file(struct file *file,
Takashi Iwai877211f2005-11-17 13:59:38 +01002101 struct snd_pcm *pcm,
Feng Tangffd3d5c2011-10-10 10:31:48 +08002102 int stream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002103{
Takashi Iwai877211f2005-11-17 13:59:38 +01002104 struct snd_pcm_file *pcm_file;
2105 struct snd_pcm_substream *substream;
Takashi Iwai3bf75f92006-03-27 16:40:49 +02002106 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002107
Takashi Iwai3bf75f92006-03-27 16:40:49 +02002108 err = snd_pcm_open_substream(pcm, stream, file, &substream);
2109 if (err < 0)
2110 return err;
2111
Takashi Iwai548a6482006-07-31 16:51:51 +02002112 pcm_file = kzalloc(sizeof(*pcm_file), GFP_KERNEL);
2113 if (pcm_file == NULL) {
2114 snd_pcm_release_substream(substream);
2115 return -ENOMEM;
2116 }
2117 pcm_file->substream = substream;
2118 if (substream->ref_count == 1) {
Takashi Iwai0df63e42006-04-28 15:13:41 +02002119 substream->file = pcm_file;
2120 substream->pcm_release = pcm_release_private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002121 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002122 file->private_data = pcm_file;
Feng Tangffd3d5c2011-10-10 10:31:48 +08002123
Linus Torvalds1da177e2005-04-16 15:20:36 -07002124 return 0;
2125}
2126
Clemens Ladischf87135f2005-11-20 14:06:59 +01002127static int snd_pcm_playback_open(struct inode *inode, struct file *file)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002128{
Takashi Iwai877211f2005-11-17 13:59:38 +01002129 struct snd_pcm *pcm;
Takashi Iwai02f48652010-04-13 11:49:04 +02002130 int err = nonseekable_open(inode, file);
2131 if (err < 0)
2132 return err;
Clemens Ladischf87135f2005-11-20 14:06:59 +01002133 pcm = snd_lookup_minor_data(iminor(inode),
2134 SNDRV_DEVICE_TYPE_PCM_PLAYBACK);
Takashi Iwaia0830db2012-10-16 13:05:59 +02002135 err = snd_pcm_open(file, pcm, SNDRV_PCM_STREAM_PLAYBACK);
Takashi Iwai8bb4d9c2012-11-08 14:36:18 +01002136 if (pcm)
2137 snd_card_unref(pcm->card);
Takashi Iwaia0830db2012-10-16 13:05:59 +02002138 return err;
Clemens Ladischf87135f2005-11-20 14:06:59 +01002139}
2140
2141static int snd_pcm_capture_open(struct inode *inode, struct file *file)
2142{
2143 struct snd_pcm *pcm;
Takashi Iwai02f48652010-04-13 11:49:04 +02002144 int err = nonseekable_open(inode, file);
2145 if (err < 0)
2146 return err;
Clemens Ladischf87135f2005-11-20 14:06:59 +01002147 pcm = snd_lookup_minor_data(iminor(inode),
2148 SNDRV_DEVICE_TYPE_PCM_CAPTURE);
Takashi Iwaia0830db2012-10-16 13:05:59 +02002149 err = snd_pcm_open(file, pcm, SNDRV_PCM_STREAM_CAPTURE);
Takashi Iwai8bb4d9c2012-11-08 14:36:18 +01002150 if (pcm)
2151 snd_card_unref(pcm->card);
Takashi Iwaia0830db2012-10-16 13:05:59 +02002152 return err;
Clemens Ladischf87135f2005-11-20 14:06:59 +01002153}
2154
2155static int snd_pcm_open(struct file *file, struct snd_pcm *pcm, int stream)
2156{
2157 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002158 wait_queue_t wait;
2159
Linus Torvalds1da177e2005-04-16 15:20:36 -07002160 if (pcm == NULL) {
2161 err = -ENODEV;
2162 goto __error1;
2163 }
2164 err = snd_card_file_add(pcm->card, file);
2165 if (err < 0)
2166 goto __error1;
2167 if (!try_module_get(pcm->card->module)) {
2168 err = -EFAULT;
2169 goto __error2;
2170 }
2171 init_waitqueue_entry(&wait, current);
2172 add_wait_queue(&pcm->open_wait, &wait);
Ingo Molnar1a60d4c2006-01-16 16:29:08 +01002173 mutex_lock(&pcm->open_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002174 while (1) {
Feng Tangffd3d5c2011-10-10 10:31:48 +08002175 err = snd_pcm_open_file(file, pcm, stream);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002176 if (err >= 0)
2177 break;
2178 if (err == -EAGAIN) {
2179 if (file->f_flags & O_NONBLOCK) {
2180 err = -EBUSY;
2181 break;
2182 }
2183 } else
2184 break;
2185 set_current_state(TASK_INTERRUPTIBLE);
Ingo Molnar1a60d4c2006-01-16 16:29:08 +01002186 mutex_unlock(&pcm->open_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002187 schedule();
Ingo Molnar1a60d4c2006-01-16 16:29:08 +01002188 mutex_lock(&pcm->open_mutex);
Takashi Iwai0914f792012-10-16 16:43:39 +02002189 if (pcm->card->shutdown) {
2190 err = -ENODEV;
2191 break;
2192 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002193 if (signal_pending(current)) {
2194 err = -ERESTARTSYS;
2195 break;
2196 }
2197 }
2198 remove_wait_queue(&pcm->open_wait, &wait);
Ingo Molnar1a60d4c2006-01-16 16:29:08 +01002199 mutex_unlock(&pcm->open_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002200 if (err < 0)
2201 goto __error;
2202 return err;
2203
2204 __error:
2205 module_put(pcm->card->module);
2206 __error2:
2207 snd_card_file_remove(pcm->card, file);
2208 __error1:
2209 return err;
2210}
2211
2212static int snd_pcm_release(struct inode *inode, struct file *file)
2213{
Takashi Iwai877211f2005-11-17 13:59:38 +01002214 struct snd_pcm *pcm;
2215 struct snd_pcm_substream *substream;
2216 struct snd_pcm_file *pcm_file;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002217
2218 pcm_file = file->private_data;
2219 substream = pcm_file->substream;
Takashi Iwai7eaa9432008-08-08 17:09:09 +02002220 if (snd_BUG_ON(!substream))
2221 return -ENXIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002222 pcm = substream->pcm;
Ingo Molnar1a60d4c2006-01-16 16:29:08 +01002223 mutex_lock(&pcm->open_mutex);
Takashi Iwai3bf75f92006-03-27 16:40:49 +02002224 snd_pcm_release_substream(substream);
Takashi Iwai548a6482006-07-31 16:51:51 +02002225 kfree(pcm_file);
Ingo Molnar1a60d4c2006-01-16 16:29:08 +01002226 mutex_unlock(&pcm->open_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002227 wake_up(&pcm->open_wait);
2228 module_put(pcm->card->module);
2229 snd_card_file_remove(pcm->card, file);
2230 return 0;
2231}
2232
Takashi Iwai877211f2005-11-17 13:59:38 +01002233static snd_pcm_sframes_t snd_pcm_playback_rewind(struct snd_pcm_substream *substream,
2234 snd_pcm_uframes_t frames)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002235{
Takashi Iwai877211f2005-11-17 13:59:38 +01002236 struct snd_pcm_runtime *runtime = substream->runtime;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002237 snd_pcm_sframes_t appl_ptr;
2238 snd_pcm_sframes_t ret;
2239 snd_pcm_sframes_t hw_avail;
2240
2241 if (frames == 0)
2242 return 0;
2243
2244 snd_pcm_stream_lock_irq(substream);
2245 switch (runtime->status->state) {
2246 case SNDRV_PCM_STATE_PREPARED:
2247 break;
2248 case SNDRV_PCM_STATE_DRAINING:
2249 case SNDRV_PCM_STATE_RUNNING:
2250 if (snd_pcm_update_hw_ptr(substream) >= 0)
2251 break;
2252 /* Fall through */
2253 case SNDRV_PCM_STATE_XRUN:
2254 ret = -EPIPE;
2255 goto __end;
Lubomir Rintel51840402009-08-02 18:14:44 +02002256 case SNDRV_PCM_STATE_SUSPENDED:
2257 ret = -ESTRPIPE;
2258 goto __end;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002259 default:
2260 ret = -EBADFD;
2261 goto __end;
2262 }
2263
2264 hw_avail = snd_pcm_playback_hw_avail(runtime);
2265 if (hw_avail <= 0) {
2266 ret = 0;
2267 goto __end;
2268 }
2269 if (frames > (snd_pcm_uframes_t)hw_avail)
2270 frames = hw_avail;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002271 appl_ptr = runtime->control->appl_ptr - frames;
2272 if (appl_ptr < 0)
2273 appl_ptr += runtime->boundary;
2274 runtime->control->appl_ptr = appl_ptr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002275 ret = frames;
2276 __end:
2277 snd_pcm_stream_unlock_irq(substream);
2278 return ret;
2279}
2280
Takashi Iwai877211f2005-11-17 13:59:38 +01002281static snd_pcm_sframes_t snd_pcm_capture_rewind(struct snd_pcm_substream *substream,
2282 snd_pcm_uframes_t frames)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002283{
Takashi Iwai877211f2005-11-17 13:59:38 +01002284 struct snd_pcm_runtime *runtime = substream->runtime;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002285 snd_pcm_sframes_t appl_ptr;
2286 snd_pcm_sframes_t ret;
2287 snd_pcm_sframes_t hw_avail;
2288
2289 if (frames == 0)
2290 return 0;
2291
2292 snd_pcm_stream_lock_irq(substream);
2293 switch (runtime->status->state) {
2294 case SNDRV_PCM_STATE_PREPARED:
2295 case SNDRV_PCM_STATE_DRAINING:
2296 break;
2297 case SNDRV_PCM_STATE_RUNNING:
2298 if (snd_pcm_update_hw_ptr(substream) >= 0)
2299 break;
2300 /* Fall through */
2301 case SNDRV_PCM_STATE_XRUN:
2302 ret = -EPIPE;
2303 goto __end;
Lubomir Rintel51840402009-08-02 18:14:44 +02002304 case SNDRV_PCM_STATE_SUSPENDED:
2305 ret = -ESTRPIPE;
2306 goto __end;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002307 default:
2308 ret = -EBADFD;
2309 goto __end;
2310 }
2311
2312 hw_avail = snd_pcm_capture_hw_avail(runtime);
2313 if (hw_avail <= 0) {
2314 ret = 0;
2315 goto __end;
2316 }
2317 if (frames > (snd_pcm_uframes_t)hw_avail)
2318 frames = hw_avail;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002319 appl_ptr = runtime->control->appl_ptr - frames;
2320 if (appl_ptr < 0)
2321 appl_ptr += runtime->boundary;
2322 runtime->control->appl_ptr = appl_ptr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002323 ret = frames;
2324 __end:
2325 snd_pcm_stream_unlock_irq(substream);
2326 return ret;
2327}
2328
Takashi Iwai877211f2005-11-17 13:59:38 +01002329static snd_pcm_sframes_t snd_pcm_playback_forward(struct snd_pcm_substream *substream,
2330 snd_pcm_uframes_t frames)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002331{
Takashi Iwai877211f2005-11-17 13:59:38 +01002332 struct snd_pcm_runtime *runtime = substream->runtime;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002333 snd_pcm_sframes_t appl_ptr;
2334 snd_pcm_sframes_t ret;
2335 snd_pcm_sframes_t avail;
2336
2337 if (frames == 0)
2338 return 0;
2339
2340 snd_pcm_stream_lock_irq(substream);
2341 switch (runtime->status->state) {
2342 case SNDRV_PCM_STATE_PREPARED:
2343 case SNDRV_PCM_STATE_PAUSED:
2344 break;
2345 case SNDRV_PCM_STATE_DRAINING:
2346 case SNDRV_PCM_STATE_RUNNING:
2347 if (snd_pcm_update_hw_ptr(substream) >= 0)
2348 break;
2349 /* Fall through */
2350 case SNDRV_PCM_STATE_XRUN:
2351 ret = -EPIPE;
2352 goto __end;
Lubomir Rintel51840402009-08-02 18:14:44 +02002353 case SNDRV_PCM_STATE_SUSPENDED:
2354 ret = -ESTRPIPE;
2355 goto __end;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002356 default:
2357 ret = -EBADFD;
2358 goto __end;
2359 }
2360
2361 avail = snd_pcm_playback_avail(runtime);
2362 if (avail <= 0) {
2363 ret = 0;
2364 goto __end;
2365 }
2366 if (frames > (snd_pcm_uframes_t)avail)
2367 frames = avail;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002368 appl_ptr = runtime->control->appl_ptr + frames;
2369 if (appl_ptr >= (snd_pcm_sframes_t)runtime->boundary)
2370 appl_ptr -= runtime->boundary;
2371 runtime->control->appl_ptr = appl_ptr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002372 ret = frames;
2373 __end:
2374 snd_pcm_stream_unlock_irq(substream);
2375 return ret;
2376}
2377
Takashi Iwai877211f2005-11-17 13:59:38 +01002378static snd_pcm_sframes_t snd_pcm_capture_forward(struct snd_pcm_substream *substream,
2379 snd_pcm_uframes_t frames)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002380{
Takashi Iwai877211f2005-11-17 13:59:38 +01002381 struct snd_pcm_runtime *runtime = substream->runtime;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002382 snd_pcm_sframes_t appl_ptr;
2383 snd_pcm_sframes_t ret;
2384 snd_pcm_sframes_t avail;
2385
2386 if (frames == 0)
2387 return 0;
2388
2389 snd_pcm_stream_lock_irq(substream);
2390 switch (runtime->status->state) {
2391 case SNDRV_PCM_STATE_PREPARED:
2392 case SNDRV_PCM_STATE_DRAINING:
2393 case SNDRV_PCM_STATE_PAUSED:
2394 break;
2395 case SNDRV_PCM_STATE_RUNNING:
2396 if (snd_pcm_update_hw_ptr(substream) >= 0)
2397 break;
2398 /* Fall through */
2399 case SNDRV_PCM_STATE_XRUN:
2400 ret = -EPIPE;
2401 goto __end;
Lubomir Rintel51840402009-08-02 18:14:44 +02002402 case SNDRV_PCM_STATE_SUSPENDED:
2403 ret = -ESTRPIPE;
2404 goto __end;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002405 default:
2406 ret = -EBADFD;
2407 goto __end;
2408 }
2409
2410 avail = snd_pcm_capture_avail(runtime);
2411 if (avail <= 0) {
2412 ret = 0;
2413 goto __end;
2414 }
2415 if (frames > (snd_pcm_uframes_t)avail)
2416 frames = avail;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002417 appl_ptr = runtime->control->appl_ptr + frames;
2418 if (appl_ptr >= (snd_pcm_sframes_t)runtime->boundary)
2419 appl_ptr -= runtime->boundary;
2420 runtime->control->appl_ptr = appl_ptr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002421 ret = frames;
2422 __end:
2423 snd_pcm_stream_unlock_irq(substream);
2424 return ret;
2425}
2426
Takashi Iwai877211f2005-11-17 13:59:38 +01002427static int snd_pcm_hwsync(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002428{
Takashi Iwai877211f2005-11-17 13:59:38 +01002429 struct snd_pcm_runtime *runtime = substream->runtime;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002430 int err;
2431
2432 snd_pcm_stream_lock_irq(substream);
2433 switch (runtime->status->state) {
2434 case SNDRV_PCM_STATE_DRAINING:
2435 if (substream->stream == SNDRV_PCM_STREAM_CAPTURE)
2436 goto __badfd;
Takashi Iwai1f961532013-10-28 12:40:46 +01002437 /* Fall through */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002438 case SNDRV_PCM_STATE_RUNNING:
2439 if ((err = snd_pcm_update_hw_ptr(substream)) < 0)
2440 break;
2441 /* Fall through */
2442 case SNDRV_PCM_STATE_PREPARED:
2443 case SNDRV_PCM_STATE_SUSPENDED:
2444 err = 0;
2445 break;
2446 case SNDRV_PCM_STATE_XRUN:
2447 err = -EPIPE;
2448 break;
2449 default:
2450 __badfd:
2451 err = -EBADFD;
2452 break;
2453 }
2454 snd_pcm_stream_unlock_irq(substream);
2455 return err;
2456}
2457
Takashi Iwai877211f2005-11-17 13:59:38 +01002458static int snd_pcm_delay(struct snd_pcm_substream *substream,
2459 snd_pcm_sframes_t __user *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002460{
Takashi Iwai877211f2005-11-17 13:59:38 +01002461 struct snd_pcm_runtime *runtime = substream->runtime;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002462 int err;
2463 snd_pcm_sframes_t n = 0;
2464
2465 snd_pcm_stream_lock_irq(substream);
2466 switch (runtime->status->state) {
2467 case SNDRV_PCM_STATE_DRAINING:
2468 if (substream->stream == SNDRV_PCM_STREAM_CAPTURE)
2469 goto __badfd;
Takashi Iwai1f961532013-10-28 12:40:46 +01002470 /* Fall through */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002471 case SNDRV_PCM_STATE_RUNNING:
2472 if ((err = snd_pcm_update_hw_ptr(substream)) < 0)
2473 break;
2474 /* Fall through */
2475 case SNDRV_PCM_STATE_PREPARED:
2476 case SNDRV_PCM_STATE_SUSPENDED:
2477 err = 0;
2478 if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK)
2479 n = snd_pcm_playback_hw_avail(runtime);
2480 else
2481 n = snd_pcm_capture_avail(runtime);
Takashi Iwai4bbe1dd2008-10-13 03:07:14 +02002482 n += runtime->delay;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002483 break;
2484 case SNDRV_PCM_STATE_XRUN:
2485 err = -EPIPE;
2486 break;
2487 default:
2488 __badfd:
2489 err = -EBADFD;
2490 break;
2491 }
2492 snd_pcm_stream_unlock_irq(substream);
2493 if (!err)
2494 if (put_user(n, res))
2495 err = -EFAULT;
2496 return err;
2497}
2498
Takashi Iwai877211f2005-11-17 13:59:38 +01002499static int snd_pcm_sync_ptr(struct snd_pcm_substream *substream,
2500 struct snd_pcm_sync_ptr __user *_sync_ptr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002501{
Takashi Iwai877211f2005-11-17 13:59:38 +01002502 struct snd_pcm_runtime *runtime = substream->runtime;
2503 struct snd_pcm_sync_ptr sync_ptr;
2504 volatile struct snd_pcm_mmap_status *status;
2505 volatile struct snd_pcm_mmap_control *control;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002506 int err;
2507
2508 memset(&sync_ptr, 0, sizeof(sync_ptr));
2509 if (get_user(sync_ptr.flags, (unsigned __user *)&(_sync_ptr->flags)))
2510 return -EFAULT;
Takashi Iwai877211f2005-11-17 13:59:38 +01002511 if (copy_from_user(&sync_ptr.c.control, &(_sync_ptr->c.control), sizeof(struct snd_pcm_mmap_control)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002512 return -EFAULT;
2513 status = runtime->status;
2514 control = runtime->control;
2515 if (sync_ptr.flags & SNDRV_PCM_SYNC_PTR_HWSYNC) {
2516 err = snd_pcm_hwsync(substream);
2517 if (err < 0)
2518 return err;
2519 }
2520 snd_pcm_stream_lock_irq(substream);
2521 if (!(sync_ptr.flags & SNDRV_PCM_SYNC_PTR_APPL))
2522 control->appl_ptr = sync_ptr.c.control.appl_ptr;
2523 else
2524 sync_ptr.c.control.appl_ptr = control->appl_ptr;
2525 if (!(sync_ptr.flags & SNDRV_PCM_SYNC_PTR_AVAIL_MIN))
2526 control->avail_min = sync_ptr.c.control.avail_min;
2527 else
2528 sync_ptr.c.control.avail_min = control->avail_min;
2529 sync_ptr.s.status.state = status->state;
2530 sync_ptr.s.status.hw_ptr = status->hw_ptr;
2531 sync_ptr.s.status.tstamp = status->tstamp;
2532 sync_ptr.s.status.suspended_state = status->suspended_state;
2533 snd_pcm_stream_unlock_irq(substream);
2534 if (copy_to_user(_sync_ptr, &sync_ptr, sizeof(sync_ptr)))
2535 return -EFAULT;
2536 return 0;
2537}
Jaroslav Kyselab751eef2007-12-13 10:19:42 +01002538
2539static int snd_pcm_tstamp(struct snd_pcm_substream *substream, int __user *_arg)
2540{
2541 struct snd_pcm_runtime *runtime = substream->runtime;
2542 int arg;
2543
2544 if (get_user(arg, _arg))
2545 return -EFAULT;
2546 if (arg < 0 || arg > SNDRV_PCM_TSTAMP_TYPE_LAST)
2547 return -EINVAL;
Takashi Iwai2408c212014-07-10 09:40:38 +02002548 runtime->tstamp_type = arg;
Jaroslav Kyselab751eef2007-12-13 10:19:42 +01002549 return 0;
2550}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002551
Takashi Iwai0df63e42006-04-28 15:13:41 +02002552static int snd_pcm_common_ioctl1(struct file *file,
2553 struct snd_pcm_substream *substream,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002554 unsigned int cmd, void __user *arg)
2555{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002556 switch (cmd) {
2557 case SNDRV_PCM_IOCTL_PVERSION:
2558 return put_user(SNDRV_PCM_VERSION, (int __user *)arg) ? -EFAULT : 0;
2559 case SNDRV_PCM_IOCTL_INFO:
2560 return snd_pcm_info_user(substream, arg);
Jaroslav Kysela28e9e472007-12-17 09:02:22 +01002561 case SNDRV_PCM_IOCTL_TSTAMP: /* just for compatibility */
2562 return 0;
Jaroslav Kyselab751eef2007-12-13 10:19:42 +01002563 case SNDRV_PCM_IOCTL_TTSTAMP:
2564 return snd_pcm_tstamp(substream, arg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002565 case SNDRV_PCM_IOCTL_HW_REFINE:
2566 return snd_pcm_hw_refine_user(substream, arg);
2567 case SNDRV_PCM_IOCTL_HW_PARAMS:
2568 return snd_pcm_hw_params_user(substream, arg);
2569 case SNDRV_PCM_IOCTL_HW_FREE:
2570 return snd_pcm_hw_free(substream);
2571 case SNDRV_PCM_IOCTL_SW_PARAMS:
2572 return snd_pcm_sw_params_user(substream, arg);
2573 case SNDRV_PCM_IOCTL_STATUS:
2574 return snd_pcm_status_user(substream, arg);
2575 case SNDRV_PCM_IOCTL_CHANNEL_INFO:
2576 return snd_pcm_channel_info_user(substream, arg);
2577 case SNDRV_PCM_IOCTL_PREPARE:
Takashi Iwai0df63e42006-04-28 15:13:41 +02002578 return snd_pcm_prepare(substream, file);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002579 case SNDRV_PCM_IOCTL_RESET:
2580 return snd_pcm_reset(substream);
2581 case SNDRV_PCM_IOCTL_START:
2582 return snd_pcm_action_lock_irq(&snd_pcm_action_start, substream, SNDRV_PCM_STATE_RUNNING);
2583 case SNDRV_PCM_IOCTL_LINK:
2584 return snd_pcm_link(substream, (int)(unsigned long) arg);
2585 case SNDRV_PCM_IOCTL_UNLINK:
2586 return snd_pcm_unlink(substream);
2587 case SNDRV_PCM_IOCTL_RESUME:
2588 return snd_pcm_resume(substream);
2589 case SNDRV_PCM_IOCTL_XRUN:
2590 return snd_pcm_xrun(substream);
2591 case SNDRV_PCM_IOCTL_HWSYNC:
2592 return snd_pcm_hwsync(substream);
2593 case SNDRV_PCM_IOCTL_DELAY:
2594 return snd_pcm_delay(substream, arg);
2595 case SNDRV_PCM_IOCTL_SYNC_PTR:
2596 return snd_pcm_sync_ptr(substream, arg);
Takashi Iwai59d48582005-12-01 10:51:58 +01002597#ifdef CONFIG_SND_SUPPORT_OLD_API
Linus Torvalds1da177e2005-04-16 15:20:36 -07002598 case SNDRV_PCM_IOCTL_HW_REFINE_OLD:
2599 return snd_pcm_hw_refine_old_user(substream, arg);
2600 case SNDRV_PCM_IOCTL_HW_PARAMS_OLD:
2601 return snd_pcm_hw_params_old_user(substream, arg);
Takashi Iwai59d48582005-12-01 10:51:58 +01002602#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002603 case SNDRV_PCM_IOCTL_DRAIN:
Takashi Iwai4cdc1152009-08-20 16:40:16 +02002604 return snd_pcm_drain(substream, file);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002605 case SNDRV_PCM_IOCTL_DROP:
2606 return snd_pcm_drop(substream);
Takashi Iwaie661d0d2006-02-21 14:14:50 +01002607 case SNDRV_PCM_IOCTL_PAUSE:
2608 {
2609 int res;
2610 snd_pcm_stream_lock_irq(substream);
2611 res = snd_pcm_pause(substream, (int)(unsigned long)arg);
2612 snd_pcm_stream_unlock_irq(substream);
2613 return res;
2614 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002615 }
Takashi Iwai09e56df2014-02-04 18:19:48 +01002616 pcm_dbg(substream->pcm, "unknown ioctl = 0x%x\n", cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002617 return -ENOTTY;
2618}
2619
Takashi Iwai0df63e42006-04-28 15:13:41 +02002620static int snd_pcm_playback_ioctl1(struct file *file,
2621 struct snd_pcm_substream *substream,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002622 unsigned int cmd, void __user *arg)
2623{
Takashi Iwai7eaa9432008-08-08 17:09:09 +02002624 if (snd_BUG_ON(!substream))
2625 return -ENXIO;
2626 if (snd_BUG_ON(substream->stream != SNDRV_PCM_STREAM_PLAYBACK))
2627 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002628 switch (cmd) {
2629 case SNDRV_PCM_IOCTL_WRITEI_FRAMES:
2630 {
Takashi Iwai877211f2005-11-17 13:59:38 +01002631 struct snd_xferi xferi;
2632 struct snd_xferi __user *_xferi = arg;
2633 struct snd_pcm_runtime *runtime = substream->runtime;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002634 snd_pcm_sframes_t result;
2635 if (runtime->status->state == SNDRV_PCM_STATE_OPEN)
2636 return -EBADFD;
2637 if (put_user(0, &_xferi->result))
2638 return -EFAULT;
2639 if (copy_from_user(&xferi, _xferi, sizeof(xferi)))
2640 return -EFAULT;
2641 result = snd_pcm_lib_write(substream, xferi.buf, xferi.frames);
2642 __put_user(result, &_xferi->result);
2643 return result < 0 ? result : 0;
2644 }
2645 case SNDRV_PCM_IOCTL_WRITEN_FRAMES:
2646 {
Takashi Iwai877211f2005-11-17 13:59:38 +01002647 struct snd_xfern xfern;
2648 struct snd_xfern __user *_xfern = arg;
2649 struct snd_pcm_runtime *runtime = substream->runtime;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002650 void __user **bufs;
2651 snd_pcm_sframes_t result;
2652 if (runtime->status->state == SNDRV_PCM_STATE_OPEN)
2653 return -EBADFD;
2654 if (runtime->channels > 128)
2655 return -EINVAL;
2656 if (put_user(0, &_xfern->result))
2657 return -EFAULT;
2658 if (copy_from_user(&xfern, _xfern, sizeof(xfern)))
2659 return -EFAULT;
Li Zefanef44a1e2009-04-10 09:43:08 +08002660
2661 bufs = memdup_user(xfern.bufs,
2662 sizeof(void *) * runtime->channels);
2663 if (IS_ERR(bufs))
2664 return PTR_ERR(bufs);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002665 result = snd_pcm_lib_writev(substream, bufs, xfern.frames);
2666 kfree(bufs);
2667 __put_user(result, &_xfern->result);
2668 return result < 0 ? result : 0;
2669 }
2670 case SNDRV_PCM_IOCTL_REWIND:
2671 {
2672 snd_pcm_uframes_t frames;
2673 snd_pcm_uframes_t __user *_frames = arg;
2674 snd_pcm_sframes_t result;
2675 if (get_user(frames, _frames))
2676 return -EFAULT;
2677 if (put_user(0, _frames))
2678 return -EFAULT;
2679 result = snd_pcm_playback_rewind(substream, frames);
2680 __put_user(result, _frames);
2681 return result < 0 ? result : 0;
2682 }
2683 case SNDRV_PCM_IOCTL_FORWARD:
2684 {
2685 snd_pcm_uframes_t frames;
2686 snd_pcm_uframes_t __user *_frames = arg;
2687 snd_pcm_sframes_t result;
2688 if (get_user(frames, _frames))
2689 return -EFAULT;
2690 if (put_user(0, _frames))
2691 return -EFAULT;
2692 result = snd_pcm_playback_forward(substream, frames);
2693 __put_user(result, _frames);
2694 return result < 0 ? result : 0;
2695 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002696 }
Takashi Iwai0df63e42006-04-28 15:13:41 +02002697 return snd_pcm_common_ioctl1(file, substream, cmd, arg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002698}
2699
Takashi Iwai0df63e42006-04-28 15:13:41 +02002700static int snd_pcm_capture_ioctl1(struct file *file,
2701 struct snd_pcm_substream *substream,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002702 unsigned int cmd, void __user *arg)
2703{
Takashi Iwai7eaa9432008-08-08 17:09:09 +02002704 if (snd_BUG_ON(!substream))
2705 return -ENXIO;
2706 if (snd_BUG_ON(substream->stream != SNDRV_PCM_STREAM_CAPTURE))
2707 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002708 switch (cmd) {
2709 case SNDRV_PCM_IOCTL_READI_FRAMES:
2710 {
Takashi Iwai877211f2005-11-17 13:59:38 +01002711 struct snd_xferi xferi;
2712 struct snd_xferi __user *_xferi = arg;
2713 struct snd_pcm_runtime *runtime = substream->runtime;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002714 snd_pcm_sframes_t result;
2715 if (runtime->status->state == SNDRV_PCM_STATE_OPEN)
2716 return -EBADFD;
2717 if (put_user(0, &_xferi->result))
2718 return -EFAULT;
2719 if (copy_from_user(&xferi, _xferi, sizeof(xferi)))
2720 return -EFAULT;
2721 result = snd_pcm_lib_read(substream, xferi.buf, xferi.frames);
2722 __put_user(result, &_xferi->result);
2723 return result < 0 ? result : 0;
2724 }
2725 case SNDRV_PCM_IOCTL_READN_FRAMES:
2726 {
Takashi Iwai877211f2005-11-17 13:59:38 +01002727 struct snd_xfern xfern;
2728 struct snd_xfern __user *_xfern = arg;
2729 struct snd_pcm_runtime *runtime = substream->runtime;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002730 void *bufs;
2731 snd_pcm_sframes_t result;
2732 if (runtime->status->state == SNDRV_PCM_STATE_OPEN)
2733 return -EBADFD;
2734 if (runtime->channels > 128)
2735 return -EINVAL;
2736 if (put_user(0, &_xfern->result))
2737 return -EFAULT;
2738 if (copy_from_user(&xfern, _xfern, sizeof(xfern)))
2739 return -EFAULT;
Li Zefanef44a1e2009-04-10 09:43:08 +08002740
2741 bufs = memdup_user(xfern.bufs,
2742 sizeof(void *) * runtime->channels);
2743 if (IS_ERR(bufs))
2744 return PTR_ERR(bufs);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002745 result = snd_pcm_lib_readv(substream, bufs, xfern.frames);
2746 kfree(bufs);
2747 __put_user(result, &_xfern->result);
2748 return result < 0 ? result : 0;
2749 }
2750 case SNDRV_PCM_IOCTL_REWIND:
2751 {
2752 snd_pcm_uframes_t frames;
2753 snd_pcm_uframes_t __user *_frames = arg;
2754 snd_pcm_sframes_t result;
2755 if (get_user(frames, _frames))
2756 return -EFAULT;
2757 if (put_user(0, _frames))
2758 return -EFAULT;
2759 result = snd_pcm_capture_rewind(substream, frames);
2760 __put_user(result, _frames);
2761 return result < 0 ? result : 0;
2762 }
2763 case SNDRV_PCM_IOCTL_FORWARD:
2764 {
2765 snd_pcm_uframes_t frames;
2766 snd_pcm_uframes_t __user *_frames = arg;
2767 snd_pcm_sframes_t result;
2768 if (get_user(frames, _frames))
2769 return -EFAULT;
2770 if (put_user(0, _frames))
2771 return -EFAULT;
2772 result = snd_pcm_capture_forward(substream, frames);
2773 __put_user(result, _frames);
2774 return result < 0 ? result : 0;
2775 }
2776 }
Takashi Iwai0df63e42006-04-28 15:13:41 +02002777 return snd_pcm_common_ioctl1(file, substream, cmd, arg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002778}
2779
Takashi Iwai877211f2005-11-17 13:59:38 +01002780static long snd_pcm_playback_ioctl(struct file *file, unsigned int cmd,
2781 unsigned long arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002782{
Takashi Iwai877211f2005-11-17 13:59:38 +01002783 struct snd_pcm_file *pcm_file;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002784
2785 pcm_file = file->private_data;
2786
2787 if (((cmd >> 8) & 0xff) != 'A')
2788 return -ENOTTY;
2789
Takashi Iwai0df63e42006-04-28 15:13:41 +02002790 return snd_pcm_playback_ioctl1(file, pcm_file->substream, cmd,
2791 (void __user *)arg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002792}
2793
Takashi Iwai877211f2005-11-17 13:59:38 +01002794static long snd_pcm_capture_ioctl(struct file *file, unsigned int cmd,
2795 unsigned long arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002796{
Takashi Iwai877211f2005-11-17 13:59:38 +01002797 struct snd_pcm_file *pcm_file;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002798
2799 pcm_file = file->private_data;
2800
2801 if (((cmd >> 8) & 0xff) != 'A')
2802 return -ENOTTY;
2803
Takashi Iwai0df63e42006-04-28 15:13:41 +02002804 return snd_pcm_capture_ioctl1(file, pcm_file->substream, cmd,
2805 (void __user *)arg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002806}
2807
Takashi Iwai877211f2005-11-17 13:59:38 +01002808int snd_pcm_kernel_ioctl(struct snd_pcm_substream *substream,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002809 unsigned int cmd, void *arg)
2810{
Takashi Iwaibf1bbb52006-03-27 16:22:45 +02002811 mm_segment_t fs;
2812 int result;
2813
2814 fs = snd_enter_user();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002815 switch (substream->stream) {
2816 case SNDRV_PCM_STREAM_PLAYBACK:
Takashi Iwai0df63e42006-04-28 15:13:41 +02002817 result = snd_pcm_playback_ioctl1(NULL, substream, cmd,
2818 (void __user *)arg);
Takashi Iwaibf1bbb52006-03-27 16:22:45 +02002819 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002820 case SNDRV_PCM_STREAM_CAPTURE:
Takashi Iwai0df63e42006-04-28 15:13:41 +02002821 result = snd_pcm_capture_ioctl1(NULL, substream, cmd,
2822 (void __user *)arg);
Takashi Iwaibf1bbb52006-03-27 16:22:45 +02002823 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002824 default:
Takashi Iwaibf1bbb52006-03-27 16:22:45 +02002825 result = -EINVAL;
2826 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002827 }
Takashi Iwaibf1bbb52006-03-27 16:22:45 +02002828 snd_leave_user(fs);
2829 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002830}
2831
Takashi Iwaie88e8ae62006-04-28 15:13:40 +02002832EXPORT_SYMBOL(snd_pcm_kernel_ioctl);
2833
Takashi Iwai877211f2005-11-17 13:59:38 +01002834static ssize_t snd_pcm_read(struct file *file, char __user *buf, size_t count,
2835 loff_t * offset)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002836{
Takashi Iwai877211f2005-11-17 13:59:38 +01002837 struct snd_pcm_file *pcm_file;
2838 struct snd_pcm_substream *substream;
2839 struct snd_pcm_runtime *runtime;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002840 snd_pcm_sframes_t result;
2841
2842 pcm_file = file->private_data;
2843 substream = pcm_file->substream;
Takashi Iwai7eaa9432008-08-08 17:09:09 +02002844 if (PCM_RUNTIME_CHECK(substream))
2845 return -ENXIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002846 runtime = substream->runtime;
2847 if (runtime->status->state == SNDRV_PCM_STATE_OPEN)
2848 return -EBADFD;
2849 if (!frame_aligned(runtime, count))
2850 return -EINVAL;
2851 count = bytes_to_frames(runtime, count);
2852 result = snd_pcm_lib_read(substream, buf, count);
2853 if (result > 0)
2854 result = frames_to_bytes(runtime, result);
2855 return result;
2856}
2857
Takashi Iwai877211f2005-11-17 13:59:38 +01002858static ssize_t snd_pcm_write(struct file *file, const char __user *buf,
2859 size_t count, loff_t * offset)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002860{
Takashi Iwai877211f2005-11-17 13:59:38 +01002861 struct snd_pcm_file *pcm_file;
2862 struct snd_pcm_substream *substream;
2863 struct snd_pcm_runtime *runtime;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002864 snd_pcm_sframes_t result;
2865
2866 pcm_file = file->private_data;
2867 substream = pcm_file->substream;
Takashi Iwai7eaa9432008-08-08 17:09:09 +02002868 if (PCM_RUNTIME_CHECK(substream))
2869 return -ENXIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002870 runtime = substream->runtime;
Takashi Iwai7eaa9432008-08-08 17:09:09 +02002871 if (runtime->status->state == SNDRV_PCM_STATE_OPEN)
2872 return -EBADFD;
2873 if (!frame_aligned(runtime, count))
2874 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002875 count = bytes_to_frames(runtime, count);
2876 result = snd_pcm_lib_write(substream, buf, count);
2877 if (result > 0)
2878 result = frames_to_bytes(runtime, result);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002879 return result;
2880}
2881
Badari Pulavartyee0b3e62006-09-30 23:28:47 -07002882static ssize_t snd_pcm_aio_read(struct kiocb *iocb, const struct iovec *iov,
2883 unsigned long nr_segs, loff_t pos)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002884
2885{
Takashi Iwai877211f2005-11-17 13:59:38 +01002886 struct snd_pcm_file *pcm_file;
2887 struct snd_pcm_substream *substream;
2888 struct snd_pcm_runtime *runtime;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002889 snd_pcm_sframes_t result;
2890 unsigned long i;
2891 void __user **bufs;
2892 snd_pcm_uframes_t frames;
2893
Badari Pulavartyee0b3e62006-09-30 23:28:47 -07002894 pcm_file = iocb->ki_filp->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002895 substream = pcm_file->substream;
Takashi Iwai7eaa9432008-08-08 17:09:09 +02002896 if (PCM_RUNTIME_CHECK(substream))
2897 return -ENXIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002898 runtime = substream->runtime;
2899 if (runtime->status->state == SNDRV_PCM_STATE_OPEN)
2900 return -EBADFD;
Badari Pulavartyee0b3e62006-09-30 23:28:47 -07002901 if (nr_segs > 1024 || nr_segs != runtime->channels)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002902 return -EINVAL;
Badari Pulavartyee0b3e62006-09-30 23:28:47 -07002903 if (!frame_aligned(runtime, iov->iov_len))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002904 return -EINVAL;
Badari Pulavartyee0b3e62006-09-30 23:28:47 -07002905 frames = bytes_to_samples(runtime, iov->iov_len);
2906 bufs = kmalloc(sizeof(void *) * nr_segs, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002907 if (bufs == NULL)
2908 return -ENOMEM;
Badari Pulavartyee0b3e62006-09-30 23:28:47 -07002909 for (i = 0; i < nr_segs; ++i)
2910 bufs[i] = iov[i].iov_base;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002911 result = snd_pcm_lib_readv(substream, bufs, frames);
2912 if (result > 0)
2913 result = frames_to_bytes(runtime, result);
2914 kfree(bufs);
2915 return result;
2916}
2917
Badari Pulavartyee0b3e62006-09-30 23:28:47 -07002918static ssize_t snd_pcm_aio_write(struct kiocb *iocb, const struct iovec *iov,
2919 unsigned long nr_segs, loff_t pos)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002920{
Takashi Iwai877211f2005-11-17 13:59:38 +01002921 struct snd_pcm_file *pcm_file;
2922 struct snd_pcm_substream *substream;
2923 struct snd_pcm_runtime *runtime;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002924 snd_pcm_sframes_t result;
2925 unsigned long i;
2926 void __user **bufs;
2927 snd_pcm_uframes_t frames;
2928
Badari Pulavartyee0b3e62006-09-30 23:28:47 -07002929 pcm_file = iocb->ki_filp->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002930 substream = pcm_file->substream;
Takashi Iwai7eaa9432008-08-08 17:09:09 +02002931 if (PCM_RUNTIME_CHECK(substream))
2932 return -ENXIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002933 runtime = substream->runtime;
Takashi Iwai7eaa9432008-08-08 17:09:09 +02002934 if (runtime->status->state == SNDRV_PCM_STATE_OPEN)
2935 return -EBADFD;
Badari Pulavartyee0b3e62006-09-30 23:28:47 -07002936 if (nr_segs > 128 || nr_segs != runtime->channels ||
Takashi Iwai7eaa9432008-08-08 17:09:09 +02002937 !frame_aligned(runtime, iov->iov_len))
2938 return -EINVAL;
Badari Pulavartyee0b3e62006-09-30 23:28:47 -07002939 frames = bytes_to_samples(runtime, iov->iov_len);
2940 bufs = kmalloc(sizeof(void *) * nr_segs, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002941 if (bufs == NULL)
2942 return -ENOMEM;
Badari Pulavartyee0b3e62006-09-30 23:28:47 -07002943 for (i = 0; i < nr_segs; ++i)
2944 bufs[i] = iov[i].iov_base;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002945 result = snd_pcm_lib_writev(substream, bufs, frames);
2946 if (result > 0)
2947 result = frames_to_bytes(runtime, result);
2948 kfree(bufs);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002949 return result;
2950}
2951
2952static unsigned int snd_pcm_playback_poll(struct file *file, poll_table * wait)
2953{
Takashi Iwai877211f2005-11-17 13:59:38 +01002954 struct snd_pcm_file *pcm_file;
2955 struct snd_pcm_substream *substream;
2956 struct snd_pcm_runtime *runtime;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002957 unsigned int mask;
2958 snd_pcm_uframes_t avail;
2959
2960 pcm_file = file->private_data;
2961
2962 substream = pcm_file->substream;
Takashi Iwai7eaa9432008-08-08 17:09:09 +02002963 if (PCM_RUNTIME_CHECK(substream))
2964 return -ENXIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002965 runtime = substream->runtime;
2966
2967 poll_wait(file, &runtime->sleep, wait);
2968
2969 snd_pcm_stream_lock_irq(substream);
2970 avail = snd_pcm_playback_avail(runtime);
2971 switch (runtime->status->state) {
2972 case SNDRV_PCM_STATE_RUNNING:
2973 case SNDRV_PCM_STATE_PREPARED:
2974 case SNDRV_PCM_STATE_PAUSED:
2975 if (avail >= runtime->control->avail_min) {
2976 mask = POLLOUT | POLLWRNORM;
2977 break;
2978 }
2979 /* Fall through */
2980 case SNDRV_PCM_STATE_DRAINING:
2981 mask = 0;
2982 break;
2983 default:
2984 mask = POLLOUT | POLLWRNORM | POLLERR;
2985 break;
2986 }
2987 snd_pcm_stream_unlock_irq(substream);
2988 return mask;
2989}
2990
2991static unsigned int snd_pcm_capture_poll(struct file *file, poll_table * wait)
2992{
Takashi Iwai877211f2005-11-17 13:59:38 +01002993 struct snd_pcm_file *pcm_file;
2994 struct snd_pcm_substream *substream;
2995 struct snd_pcm_runtime *runtime;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002996 unsigned int mask;
2997 snd_pcm_uframes_t avail;
2998
2999 pcm_file = file->private_data;
3000
3001 substream = pcm_file->substream;
Takashi Iwai7eaa9432008-08-08 17:09:09 +02003002 if (PCM_RUNTIME_CHECK(substream))
3003 return -ENXIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003004 runtime = substream->runtime;
3005
3006 poll_wait(file, &runtime->sleep, wait);
3007
3008 snd_pcm_stream_lock_irq(substream);
3009 avail = snd_pcm_capture_avail(runtime);
3010 switch (runtime->status->state) {
3011 case SNDRV_PCM_STATE_RUNNING:
3012 case SNDRV_PCM_STATE_PREPARED:
3013 case SNDRV_PCM_STATE_PAUSED:
3014 if (avail >= runtime->control->avail_min) {
3015 mask = POLLIN | POLLRDNORM;
3016 break;
3017 }
3018 mask = 0;
3019 break;
3020 case SNDRV_PCM_STATE_DRAINING:
3021 if (avail > 0) {
3022 mask = POLLIN | POLLRDNORM;
3023 break;
3024 }
3025 /* Fall through */
3026 default:
3027 mask = POLLIN | POLLRDNORM | POLLERR;
3028 break;
3029 }
3030 snd_pcm_stream_unlock_irq(substream);
3031 return mask;
3032}
3033
3034/*
3035 * mmap support
3036 */
3037
3038/*
3039 * Only on coherent architectures, we can mmap the status and the control records
3040 * for effcient data transfer. On others, we have to use HWSYNC ioctl...
3041 */
3042#if defined(CONFIG_X86) || defined(CONFIG_PPC) || defined(CONFIG_ALPHA)
3043/*
3044 * mmap status record
3045 */
Nick Piggin3ad5afc2007-12-13 16:15:00 +01003046static int snd_pcm_mmap_status_fault(struct vm_area_struct *area,
3047 struct vm_fault *vmf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003048{
Takashi Iwai877211f2005-11-17 13:59:38 +01003049 struct snd_pcm_substream *substream = area->vm_private_data;
3050 struct snd_pcm_runtime *runtime;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003051
3052 if (substream == NULL)
Nick Piggin3ad5afc2007-12-13 16:15:00 +01003053 return VM_FAULT_SIGBUS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003054 runtime = substream->runtime;
Nick Piggin3ad5afc2007-12-13 16:15:00 +01003055 vmf->page = virt_to_page(runtime->status);
3056 get_page(vmf->page);
3057 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003058}
3059
Alexey Dobriyanf0f37e22009-09-27 22:29:37 +04003060static const struct vm_operations_struct snd_pcm_vm_ops_status =
Linus Torvalds1da177e2005-04-16 15:20:36 -07003061{
Nick Piggin3ad5afc2007-12-13 16:15:00 +01003062 .fault = snd_pcm_mmap_status_fault,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003063};
3064
Takashi Iwai877211f2005-11-17 13:59:38 +01003065static int snd_pcm_mmap_status(struct snd_pcm_substream *substream, struct file *file,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003066 struct vm_area_struct *area)
3067{
Linus Torvalds1da177e2005-04-16 15:20:36 -07003068 long size;
3069 if (!(area->vm_flags & VM_READ))
3070 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003071 size = area->vm_end - area->vm_start;
Takashi Iwai877211f2005-11-17 13:59:38 +01003072 if (size != PAGE_ALIGN(sizeof(struct snd_pcm_mmap_status)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003073 return -EINVAL;
3074 area->vm_ops = &snd_pcm_vm_ops_status;
3075 area->vm_private_data = substream;
Konstantin Khlebnikov314e51b2012-10-08 16:29:02 -07003076 area->vm_flags |= VM_DONTEXPAND | VM_DONTDUMP;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003077 return 0;
3078}
3079
3080/*
3081 * mmap control record
3082 */
Nick Piggin3ad5afc2007-12-13 16:15:00 +01003083static int snd_pcm_mmap_control_fault(struct vm_area_struct *area,
3084 struct vm_fault *vmf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003085{
Takashi Iwai877211f2005-11-17 13:59:38 +01003086 struct snd_pcm_substream *substream = area->vm_private_data;
3087 struct snd_pcm_runtime *runtime;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003088
3089 if (substream == NULL)
Nick Piggin3ad5afc2007-12-13 16:15:00 +01003090 return VM_FAULT_SIGBUS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003091 runtime = substream->runtime;
Nick Piggin3ad5afc2007-12-13 16:15:00 +01003092 vmf->page = virt_to_page(runtime->control);
3093 get_page(vmf->page);
3094 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003095}
3096
Alexey Dobriyanf0f37e22009-09-27 22:29:37 +04003097static const struct vm_operations_struct snd_pcm_vm_ops_control =
Linus Torvalds1da177e2005-04-16 15:20:36 -07003098{
Nick Piggin3ad5afc2007-12-13 16:15:00 +01003099 .fault = snd_pcm_mmap_control_fault,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003100};
3101
Takashi Iwai877211f2005-11-17 13:59:38 +01003102static int snd_pcm_mmap_control(struct snd_pcm_substream *substream, struct file *file,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003103 struct vm_area_struct *area)
3104{
Linus Torvalds1da177e2005-04-16 15:20:36 -07003105 long size;
3106 if (!(area->vm_flags & VM_READ))
3107 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003108 size = area->vm_end - area->vm_start;
Takashi Iwai877211f2005-11-17 13:59:38 +01003109 if (size != PAGE_ALIGN(sizeof(struct snd_pcm_mmap_control)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003110 return -EINVAL;
3111 area->vm_ops = &snd_pcm_vm_ops_control;
3112 area->vm_private_data = substream;
Konstantin Khlebnikov314e51b2012-10-08 16:29:02 -07003113 area->vm_flags |= VM_DONTEXPAND | VM_DONTDUMP;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003114 return 0;
3115}
3116#else /* ! coherent mmap */
3117/*
3118 * don't support mmap for status and control records.
3119 */
Takashi Iwai877211f2005-11-17 13:59:38 +01003120static int snd_pcm_mmap_status(struct snd_pcm_substream *substream, struct file *file,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003121 struct vm_area_struct *area)
3122{
3123 return -ENXIO;
3124}
Takashi Iwai877211f2005-11-17 13:59:38 +01003125static int snd_pcm_mmap_control(struct snd_pcm_substream *substream, struct file *file,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003126 struct vm_area_struct *area)
3127{
3128 return -ENXIO;
3129}
3130#endif /* coherent mmap */
3131
Takashi Iwai9eb4a062009-11-26 12:43:39 +01003132static inline struct page *
3133snd_pcm_default_page_ops(struct snd_pcm_substream *substream, unsigned long ofs)
3134{
3135 void *vaddr = substream->runtime->dma_area + ofs;
Takashi Iwai66b6cfa2009-11-26 12:50:01 +01003136#if defined(CONFIG_MIPS) && defined(CONFIG_DMA_NONCOHERENT)
3137 if (substream->dma_buffer.dev.type == SNDRV_DMA_TYPE_DEV)
3138 return virt_to_page(CAC_ADDR(vaddr));
3139#endif
Takashi Iwai6985c882009-11-26 15:04:24 +01003140#if defined(CONFIG_PPC32) && defined(CONFIG_NOT_COHERENT_CACHE)
3141 if (substream->dma_buffer.dev.type == SNDRV_DMA_TYPE_DEV) {
3142 dma_addr_t addr = substream->runtime->dma_addr + ofs;
3143 addr -= get_dma_offset(substream->dma_buffer.dev.dev);
3144 /* assume dma_handle set via pfn_to_phys() in
3145 * mm/dma-noncoherent.c
3146 */
3147 return pfn_to_page(addr >> PAGE_SHIFT);
3148 }
3149#endif
Takashi Iwai9eb4a062009-11-26 12:43:39 +01003150 return virt_to_page(vaddr);
3151}
3152
Linus Torvalds1da177e2005-04-16 15:20:36 -07003153/*
Nick Piggin3ad5afc2007-12-13 16:15:00 +01003154 * fault callback for mmapping a RAM page
Linus Torvalds1da177e2005-04-16 15:20:36 -07003155 */
Nick Piggin3ad5afc2007-12-13 16:15:00 +01003156static int snd_pcm_mmap_data_fault(struct vm_area_struct *area,
3157 struct vm_fault *vmf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003158{
Takashi Iwai877211f2005-11-17 13:59:38 +01003159 struct snd_pcm_substream *substream = area->vm_private_data;
3160 struct snd_pcm_runtime *runtime;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003161 unsigned long offset;
3162 struct page * page;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003163 size_t dma_bytes;
3164
3165 if (substream == NULL)
Nick Piggin3ad5afc2007-12-13 16:15:00 +01003166 return VM_FAULT_SIGBUS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003167 runtime = substream->runtime;
Nick Piggin3ad5afc2007-12-13 16:15:00 +01003168 offset = vmf->pgoff << PAGE_SHIFT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003169 dma_bytes = PAGE_ALIGN(runtime->dma_bytes);
3170 if (offset > dma_bytes - PAGE_SIZE)
Nick Piggin3ad5afc2007-12-13 16:15:00 +01003171 return VM_FAULT_SIGBUS;
Takashi Iwai9eb4a062009-11-26 12:43:39 +01003172 if (substream->ops->page)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003173 page = substream->ops->page(substream, offset);
Takashi Iwai9eb4a062009-11-26 12:43:39 +01003174 else
3175 page = snd_pcm_default_page_ops(substream, offset);
3176 if (!page)
3177 return VM_FAULT_SIGBUS;
Nick Pigginb5810032005-10-29 18:16:12 -07003178 get_page(page);
Nick Piggin3ad5afc2007-12-13 16:15:00 +01003179 vmf->page = page;
3180 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003181}
3182
Takashi Iwai657b1982009-11-26 12:40:21 +01003183static const struct vm_operations_struct snd_pcm_vm_ops_data = {
3184 .open = snd_pcm_mmap_data_open,
3185 .close = snd_pcm_mmap_data_close,
3186};
3187
3188static const struct vm_operations_struct snd_pcm_vm_ops_data_fault = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003189 .open = snd_pcm_mmap_data_open,
3190 .close = snd_pcm_mmap_data_close,
Nick Piggin3ad5afc2007-12-13 16:15:00 +01003191 .fault = snd_pcm_mmap_data_fault,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003192};
3193
Takashi Iwai657b1982009-11-26 12:40:21 +01003194#ifndef ARCH_HAS_DMA_MMAP_COHERENT
3195/* This should be defined / handled globally! */
3196#ifdef CONFIG_ARM
3197#define ARCH_HAS_DMA_MMAP_COHERENT
3198#endif
3199#endif
3200
Linus Torvalds1da177e2005-04-16 15:20:36 -07003201/*
3202 * mmap the DMA buffer on RAM
3203 */
Takashi Iwai18a2b962011-09-28 17:12:59 +02003204int snd_pcm_lib_default_mmap(struct snd_pcm_substream *substream,
3205 struct vm_area_struct *area)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003206{
Konstantin Khlebnikov314e51b2012-10-08 16:29:02 -07003207 area->vm_flags |= VM_DONTEXPAND | VM_DONTDUMP;
Takashi Iwaia5606f82013-10-24 14:25:32 +02003208#ifdef CONFIG_GENERIC_ALLOCATOR
Nicolin Chen05503212013-10-23 11:47:43 +08003209 if (substream->dma_buffer.dev.type == SNDRV_DMA_TYPE_DEV_IRAM) {
3210 area->vm_page_prot = pgprot_writecombine(area->vm_page_prot);
3211 return remap_pfn_range(area, area->vm_start,
3212 substream->dma_buffer.addr >> PAGE_SHIFT,
3213 area->vm_end - area->vm_start, area->vm_page_prot);
3214 }
Takashi Iwaia5606f82013-10-24 14:25:32 +02003215#endif /* CONFIG_GENERIC_ALLOCATOR */
Takashi Iwai657b1982009-11-26 12:40:21 +01003216#ifdef ARCH_HAS_DMA_MMAP_COHERENT
3217 if (!substream->ops->page &&
3218 substream->dma_buffer.dev.type == SNDRV_DMA_TYPE_DEV)
3219 return dma_mmap_coherent(substream->dma_buffer.dev.dev,
3220 area,
3221 substream->runtime->dma_area,
3222 substream->runtime->dma_addr,
3223 area->vm_end - area->vm_start);
Takashi Iwai9fe17b52010-05-12 10:32:42 +02003224#elif defined(CONFIG_MIPS) && defined(CONFIG_DMA_NONCOHERENT)
3225 if (substream->dma_buffer.dev.type == SNDRV_DMA_TYPE_DEV &&
3226 !plat_device_is_coherent(substream->dma_buffer.dev.dev))
3227 area->vm_page_prot = pgprot_noncached(area->vm_page_prot);
Takashi Iwai657b1982009-11-26 12:40:21 +01003228#endif /* ARCH_HAS_DMA_MMAP_COHERENT */
3229 /* mmap with fault handler */
3230 area->vm_ops = &snd_pcm_vm_ops_data_fault;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003231 return 0;
3232}
Takashi Iwai18a2b962011-09-28 17:12:59 +02003233EXPORT_SYMBOL_GPL(snd_pcm_lib_default_mmap);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003234
3235/*
3236 * mmap the DMA buffer on I/O memory area
3237 */
3238#if SNDRV_PCM_INFO_MMAP_IOMEM
Takashi Iwai877211f2005-11-17 13:59:38 +01003239int snd_pcm_lib_mmap_iomem(struct snd_pcm_substream *substream,
3240 struct vm_area_struct *area)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003241{
Linus Torvalds0fe09a42013-04-19 10:01:04 -07003242 struct snd_pcm_runtime *runtime = substream->runtime;;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003243
Linus Torvalds1da177e2005-04-16 15:20:36 -07003244 area->vm_page_prot = pgprot_noncached(area->vm_page_prot);
Linus Torvalds0fe09a42013-04-19 10:01:04 -07003245 return vm_iomap_memory(area, runtime->dma_addr, runtime->dma_bytes);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003246}
Takashi Iwaie88e8ae62006-04-28 15:13:40 +02003247
3248EXPORT_SYMBOL(snd_pcm_lib_mmap_iomem);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003249#endif /* SNDRV_PCM_INFO_MMAP */
3250
3251/*
3252 * mmap DMA buffer
3253 */
Takashi Iwai877211f2005-11-17 13:59:38 +01003254int snd_pcm_mmap_data(struct snd_pcm_substream *substream, struct file *file,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003255 struct vm_area_struct *area)
3256{
Takashi Iwai877211f2005-11-17 13:59:38 +01003257 struct snd_pcm_runtime *runtime;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003258 long size;
3259 unsigned long offset;
3260 size_t dma_bytes;
Takashi Iwai657b1982009-11-26 12:40:21 +01003261 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003262
3263 if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK) {
3264 if (!(area->vm_flags & (VM_WRITE|VM_READ)))
3265 return -EINVAL;
3266 } else {
3267 if (!(area->vm_flags & VM_READ))
3268 return -EINVAL;
3269 }
3270 runtime = substream->runtime;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003271 if (runtime->status->state == SNDRV_PCM_STATE_OPEN)
3272 return -EBADFD;
3273 if (!(runtime->info & SNDRV_PCM_INFO_MMAP))
3274 return -ENXIO;
3275 if (runtime->access == SNDRV_PCM_ACCESS_RW_INTERLEAVED ||
3276 runtime->access == SNDRV_PCM_ACCESS_RW_NONINTERLEAVED)
3277 return -EINVAL;
3278 size = area->vm_end - area->vm_start;
3279 offset = area->vm_pgoff << PAGE_SHIFT;
3280 dma_bytes = PAGE_ALIGN(runtime->dma_bytes);
3281 if ((size_t)size > dma_bytes)
3282 return -EINVAL;
3283 if (offset > dma_bytes - size)
3284 return -EINVAL;
3285
Takashi Iwai657b1982009-11-26 12:40:21 +01003286 area->vm_ops = &snd_pcm_vm_ops_data;
3287 area->vm_private_data = substream;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003288 if (substream->ops->mmap)
Takashi Iwai657b1982009-11-26 12:40:21 +01003289 err = substream->ops->mmap(substream, area);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003290 else
Takashi Iwai18a2b962011-09-28 17:12:59 +02003291 err = snd_pcm_lib_default_mmap(substream, area);
Takashi Iwai657b1982009-11-26 12:40:21 +01003292 if (!err)
3293 atomic_inc(&substream->mmap_count);
3294 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003295}
3296
Takashi Iwaie88e8ae62006-04-28 15:13:40 +02003297EXPORT_SYMBOL(snd_pcm_mmap_data);
3298
Linus Torvalds1da177e2005-04-16 15:20:36 -07003299static int snd_pcm_mmap(struct file *file, struct vm_area_struct *area)
3300{
Takashi Iwai877211f2005-11-17 13:59:38 +01003301 struct snd_pcm_file * pcm_file;
3302 struct snd_pcm_substream *substream;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003303 unsigned long offset;
3304
3305 pcm_file = file->private_data;
3306 substream = pcm_file->substream;
Takashi Iwai7eaa9432008-08-08 17:09:09 +02003307 if (PCM_RUNTIME_CHECK(substream))
3308 return -ENXIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003309
3310 offset = area->vm_pgoff << PAGE_SHIFT;
3311 switch (offset) {
3312 case SNDRV_PCM_MMAP_OFFSET_STATUS:
Takashi Iwai548a6482006-07-31 16:51:51 +02003313 if (pcm_file->no_compat_mmap)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003314 return -ENXIO;
3315 return snd_pcm_mmap_status(substream, file, area);
3316 case SNDRV_PCM_MMAP_OFFSET_CONTROL:
Takashi Iwai548a6482006-07-31 16:51:51 +02003317 if (pcm_file->no_compat_mmap)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003318 return -ENXIO;
3319 return snd_pcm_mmap_control(substream, file, area);
3320 default:
3321 return snd_pcm_mmap_data(substream, file, area);
3322 }
3323 return 0;
3324}
3325
3326static int snd_pcm_fasync(int fd, struct file * file, int on)
3327{
Takashi Iwai877211f2005-11-17 13:59:38 +01003328 struct snd_pcm_file * pcm_file;
3329 struct snd_pcm_substream *substream;
3330 struct snd_pcm_runtime *runtime;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003331
3332 pcm_file = file->private_data;
3333 substream = pcm_file->substream;
Takashi Iwai7eaa9432008-08-08 17:09:09 +02003334 if (PCM_RUNTIME_CHECK(substream))
Takashi Iwaid05468b2010-04-07 18:29:46 +02003335 return -ENXIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003336 runtime = substream->runtime;
Takashi Iwaid05468b2010-04-07 18:29:46 +02003337 return fasync_helper(fd, file, on, &runtime->fasync);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003338}
3339
3340/*
3341 * ioctl32 compat
3342 */
3343#ifdef CONFIG_COMPAT
3344#include "pcm_compat.c"
3345#else
3346#define snd_pcm_ioctl_compat NULL
3347#endif
3348
3349/*
3350 * To be removed helpers to keep binary compatibility
3351 */
3352
Takashi Iwai59d48582005-12-01 10:51:58 +01003353#ifdef CONFIG_SND_SUPPORT_OLD_API
Linus Torvalds1da177e2005-04-16 15:20:36 -07003354#define __OLD_TO_NEW_MASK(x) ((x&7)|((x&0x07fffff8)<<5))
3355#define __NEW_TO_OLD_MASK(x) ((x&7)|((x&0xffffff00)>>5))
3356
Takashi Iwai877211f2005-11-17 13:59:38 +01003357static void snd_pcm_hw_convert_from_old_params(struct snd_pcm_hw_params *params,
3358 struct snd_pcm_hw_params_old *oparams)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003359{
3360 unsigned int i;
3361
3362 memset(params, 0, sizeof(*params));
3363 params->flags = oparams->flags;
3364 for (i = 0; i < ARRAY_SIZE(oparams->masks); i++)
3365 params->masks[i].bits[0] = oparams->masks[i];
3366 memcpy(params->intervals, oparams->intervals, sizeof(oparams->intervals));
3367 params->rmask = __OLD_TO_NEW_MASK(oparams->rmask);
3368 params->cmask = __OLD_TO_NEW_MASK(oparams->cmask);
3369 params->info = oparams->info;
3370 params->msbits = oparams->msbits;
3371 params->rate_num = oparams->rate_num;
3372 params->rate_den = oparams->rate_den;
3373 params->fifo_size = oparams->fifo_size;
3374}
3375
Takashi Iwai877211f2005-11-17 13:59:38 +01003376static void snd_pcm_hw_convert_to_old_params(struct snd_pcm_hw_params_old *oparams,
3377 struct snd_pcm_hw_params *params)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003378{
3379 unsigned int i;
3380
3381 memset(oparams, 0, sizeof(*oparams));
3382 oparams->flags = params->flags;
3383 for (i = 0; i < ARRAY_SIZE(oparams->masks); i++)
3384 oparams->masks[i] = params->masks[i].bits[0];
3385 memcpy(oparams->intervals, params->intervals, sizeof(oparams->intervals));
3386 oparams->rmask = __NEW_TO_OLD_MASK(params->rmask);
3387 oparams->cmask = __NEW_TO_OLD_MASK(params->cmask);
3388 oparams->info = params->info;
3389 oparams->msbits = params->msbits;
3390 oparams->rate_num = params->rate_num;
3391 oparams->rate_den = params->rate_den;
3392 oparams->fifo_size = params->fifo_size;
3393}
3394
Takashi Iwai877211f2005-11-17 13:59:38 +01003395static int snd_pcm_hw_refine_old_user(struct snd_pcm_substream *substream,
3396 struct snd_pcm_hw_params_old __user * _oparams)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003397{
Takashi Iwai877211f2005-11-17 13:59:38 +01003398 struct snd_pcm_hw_params *params;
3399 struct snd_pcm_hw_params_old *oparams = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003400 int err;
3401
3402 params = kmalloc(sizeof(*params), GFP_KERNEL);
Li Zefanef44a1e2009-04-10 09:43:08 +08003403 if (!params)
3404 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003405
Li Zefanef44a1e2009-04-10 09:43:08 +08003406 oparams = memdup_user(_oparams, sizeof(*oparams));
3407 if (IS_ERR(oparams)) {
3408 err = PTR_ERR(oparams);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003409 goto out;
3410 }
3411 snd_pcm_hw_convert_from_old_params(params, oparams);
3412 err = snd_pcm_hw_refine(substream, params);
3413 snd_pcm_hw_convert_to_old_params(oparams, params);
3414 if (copy_to_user(_oparams, oparams, sizeof(*oparams))) {
3415 if (!err)
3416 err = -EFAULT;
3417 }
Li Zefanef44a1e2009-04-10 09:43:08 +08003418
3419 kfree(oparams);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003420out:
3421 kfree(params);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003422 return err;
3423}
3424
Takashi Iwai877211f2005-11-17 13:59:38 +01003425static int snd_pcm_hw_params_old_user(struct snd_pcm_substream *substream,
3426 struct snd_pcm_hw_params_old __user * _oparams)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003427{
Takashi Iwai877211f2005-11-17 13:59:38 +01003428 struct snd_pcm_hw_params *params;
3429 struct snd_pcm_hw_params_old *oparams = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003430 int err;
3431
3432 params = kmalloc(sizeof(*params), GFP_KERNEL);
Li Zefanef44a1e2009-04-10 09:43:08 +08003433 if (!params)
3434 return -ENOMEM;
3435
3436 oparams = memdup_user(_oparams, sizeof(*oparams));
3437 if (IS_ERR(oparams)) {
3438 err = PTR_ERR(oparams);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003439 goto out;
3440 }
3441 snd_pcm_hw_convert_from_old_params(params, oparams);
3442 err = snd_pcm_hw_params(substream, params);
3443 snd_pcm_hw_convert_to_old_params(oparams, params);
3444 if (copy_to_user(_oparams, oparams, sizeof(*oparams))) {
3445 if (!err)
3446 err = -EFAULT;
3447 }
Li Zefanef44a1e2009-04-10 09:43:08 +08003448
3449 kfree(oparams);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003450out:
3451 kfree(params);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003452 return err;
3453}
Takashi Iwai59d48582005-12-01 10:51:58 +01003454#endif /* CONFIG_SND_SUPPORT_OLD_API */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003455
Cliff Cai70036092008-09-03 10:54:36 +02003456#ifndef CONFIG_MMU
Daniel Glöckner55c63bd2010-03-09 12:57:52 -05003457static unsigned long snd_pcm_get_unmapped_area(struct file *file,
3458 unsigned long addr,
3459 unsigned long len,
3460 unsigned long pgoff,
3461 unsigned long flags)
Cliff Cai70036092008-09-03 10:54:36 +02003462{
Daniel Glöckner55c63bd2010-03-09 12:57:52 -05003463 struct snd_pcm_file *pcm_file = file->private_data;
3464 struct snd_pcm_substream *substream = pcm_file->substream;
3465 struct snd_pcm_runtime *runtime = substream->runtime;
3466 unsigned long offset = pgoff << PAGE_SHIFT;
3467
3468 switch (offset) {
3469 case SNDRV_PCM_MMAP_OFFSET_STATUS:
3470 return (unsigned long)runtime->status;
3471 case SNDRV_PCM_MMAP_OFFSET_CONTROL:
3472 return (unsigned long)runtime->control;
3473 default:
3474 return (unsigned long)runtime->dma_area + offset;
3475 }
Cliff Cai70036092008-09-03 10:54:36 +02003476}
3477#else
Daniel Glöckner55c63bd2010-03-09 12:57:52 -05003478# define snd_pcm_get_unmapped_area NULL
Cliff Cai70036092008-09-03 10:54:36 +02003479#endif
3480
Linus Torvalds1da177e2005-04-16 15:20:36 -07003481/*
3482 * Register section
3483 */
3484
Arjan van de Ven9c2e08c2007-02-12 00:55:37 -08003485const struct file_operations snd_pcm_f_ops[2] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003486 {
Clemens Ladisch2af677f2005-11-20 14:03:48 +01003487 .owner = THIS_MODULE,
3488 .write = snd_pcm_write,
Badari Pulavartyee0b3e62006-09-30 23:28:47 -07003489 .aio_write = snd_pcm_aio_write,
Clemens Ladischf87135f2005-11-20 14:06:59 +01003490 .open = snd_pcm_playback_open,
Clemens Ladisch2af677f2005-11-20 14:03:48 +01003491 .release = snd_pcm_release,
Takashi Iwai02f48652010-04-13 11:49:04 +02003492 .llseek = no_llseek,
Clemens Ladisch2af677f2005-11-20 14:03:48 +01003493 .poll = snd_pcm_playback_poll,
3494 .unlocked_ioctl = snd_pcm_playback_ioctl,
3495 .compat_ioctl = snd_pcm_ioctl_compat,
3496 .mmap = snd_pcm_mmap,
3497 .fasync = snd_pcm_fasync,
Daniel Glöckner55c63bd2010-03-09 12:57:52 -05003498 .get_unmapped_area = snd_pcm_get_unmapped_area,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003499 },
3500 {
Clemens Ladisch2af677f2005-11-20 14:03:48 +01003501 .owner = THIS_MODULE,
3502 .read = snd_pcm_read,
Badari Pulavartyee0b3e62006-09-30 23:28:47 -07003503 .aio_read = snd_pcm_aio_read,
Clemens Ladischf87135f2005-11-20 14:06:59 +01003504 .open = snd_pcm_capture_open,
Clemens Ladisch2af677f2005-11-20 14:03:48 +01003505 .release = snd_pcm_release,
Takashi Iwai02f48652010-04-13 11:49:04 +02003506 .llseek = no_llseek,
Clemens Ladisch2af677f2005-11-20 14:03:48 +01003507 .poll = snd_pcm_capture_poll,
3508 .unlocked_ioctl = snd_pcm_capture_ioctl,
3509 .compat_ioctl = snd_pcm_ioctl_compat,
3510 .mmap = snd_pcm_mmap,
3511 .fasync = snd_pcm_fasync,
Daniel Glöckner55c63bd2010-03-09 12:57:52 -05003512 .get_unmapped_area = snd_pcm_get_unmapped_area,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003513 }
3514};