blob: a3d1221097045ac32e7b3f2b301d9545d84c949a [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>
38
39/*
40 * Compatibility
41 */
42
Takashi Iwai877211f2005-11-17 13:59:38 +010043struct snd_pcm_hw_params_old {
Linus Torvalds1da177e2005-04-16 15:20:36 -070044 unsigned int flags;
45 unsigned int masks[SNDRV_PCM_HW_PARAM_SUBFORMAT -
46 SNDRV_PCM_HW_PARAM_ACCESS + 1];
Takashi Iwai877211f2005-11-17 13:59:38 +010047 struct snd_interval intervals[SNDRV_PCM_HW_PARAM_TICK_TIME -
Linus Torvalds1da177e2005-04-16 15:20:36 -070048 SNDRV_PCM_HW_PARAM_SAMPLE_BITS + 1];
49 unsigned int rmask;
50 unsigned int cmask;
51 unsigned int info;
52 unsigned int msbits;
53 unsigned int rate_num;
54 unsigned int rate_den;
Takashi Iwai877211f2005-11-17 13:59:38 +010055 snd_pcm_uframes_t fifo_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -070056 unsigned char reserved[64];
57};
58
Takashi Iwai59d48582005-12-01 10:51:58 +010059#ifdef CONFIG_SND_SUPPORT_OLD_API
Takashi Iwai877211f2005-11-17 13:59:38 +010060#define SNDRV_PCM_IOCTL_HW_REFINE_OLD _IOWR('A', 0x10, struct snd_pcm_hw_params_old)
61#define SNDRV_PCM_IOCTL_HW_PARAMS_OLD _IOWR('A', 0x11, struct snd_pcm_hw_params_old)
Linus Torvalds1da177e2005-04-16 15:20:36 -070062
Takashi Iwai877211f2005-11-17 13:59:38 +010063static int snd_pcm_hw_refine_old_user(struct snd_pcm_substream *substream,
64 struct snd_pcm_hw_params_old __user * _oparams);
65static int snd_pcm_hw_params_old_user(struct snd_pcm_substream *substream,
66 struct snd_pcm_hw_params_old __user * _oparams);
Takashi Iwai59d48582005-12-01 10:51:58 +010067#endif
Clemens Ladischf87135f2005-11-20 14:06:59 +010068static int snd_pcm_open(struct file *file, struct snd_pcm *pcm, int stream);
Linus Torvalds1da177e2005-04-16 15:20:36 -070069
70/*
71 *
72 */
73
Takashi Iwai7af142f2014-09-01 11:19:37 +020074static DEFINE_RWLOCK(snd_pcm_link_rwlock);
75static DECLARE_RWSEM(snd_pcm_link_rwsem);
Linus Torvalds1da177e2005-04-16 15:20:36 -070076
Takashi Iwai30b771c2014-10-30 15:02:50 +010077/**
78 * snd_pcm_stream_lock - Lock the PCM stream
79 * @substream: PCM substream
80 *
81 * This locks the PCM stream's spinlock or mutex depending on the nonatomic
82 * flag of the given substream. This also takes the global link rw lock
83 * (or rw sem), too, for avoiding the race with linked streams.
84 */
Takashi Iwai7af142f2014-09-01 11:19:37 +020085void snd_pcm_stream_lock(struct snd_pcm_substream *substream)
86{
87 if (substream->pcm->nonatomic) {
88 down_read(&snd_pcm_link_rwsem);
89 mutex_lock(&substream->self_group.mutex);
90 } else {
91 read_lock(&snd_pcm_link_rwlock);
92 spin_lock(&substream->self_group.lock);
93 }
94}
95EXPORT_SYMBOL_GPL(snd_pcm_stream_lock);
96
Takashi Iwai30b771c2014-10-30 15:02:50 +010097/**
98 * snd_pcm_stream_lock - Unlock the PCM stream
99 * @substream: PCM substream
100 *
101 * This unlocks the PCM stream that has been locked via snd_pcm_stream_lock().
102 */
Takashi Iwai7af142f2014-09-01 11:19:37 +0200103void snd_pcm_stream_unlock(struct snd_pcm_substream *substream)
104{
105 if (substream->pcm->nonatomic) {
106 mutex_unlock(&substream->self_group.mutex);
107 up_read(&snd_pcm_link_rwsem);
108 } else {
109 spin_unlock(&substream->self_group.lock);
110 read_unlock(&snd_pcm_link_rwlock);
111 }
112}
113EXPORT_SYMBOL_GPL(snd_pcm_stream_unlock);
114
Takashi Iwai30b771c2014-10-30 15:02:50 +0100115/**
116 * snd_pcm_stream_lock_irq - Lock the PCM stream
117 * @substream: PCM substream
118 *
119 * This locks the PCM stream like snd_pcm_stream_lock() and disables the local
120 * IRQ (only when nonatomic is false). In nonatomic case, this is identical
121 * as snd_pcm_stream_lock().
122 */
Takashi Iwai7af142f2014-09-01 11:19:37 +0200123void snd_pcm_stream_lock_irq(struct snd_pcm_substream *substream)
124{
125 if (!substream->pcm->nonatomic)
126 local_irq_disable();
127 snd_pcm_stream_lock(substream);
128}
129EXPORT_SYMBOL_GPL(snd_pcm_stream_lock_irq);
130
Takashi Iwai30b771c2014-10-30 15:02:50 +0100131/**
132 * snd_pcm_stream_unlock_irq - Unlock the PCM stream
133 * @substream: PCM substream
134 *
135 * This is a counter-part of snd_pcm_stream_lock_irq().
136 */
Takashi Iwai7af142f2014-09-01 11:19:37 +0200137void snd_pcm_stream_unlock_irq(struct snd_pcm_substream *substream)
138{
139 snd_pcm_stream_unlock(substream);
140 if (!substream->pcm->nonatomic)
141 local_irq_enable();
142}
143EXPORT_SYMBOL_GPL(snd_pcm_stream_unlock_irq);
144
145unsigned long _snd_pcm_stream_lock_irqsave(struct snd_pcm_substream *substream)
146{
147 unsigned long flags = 0;
148 if (!substream->pcm->nonatomic)
149 local_irq_save(flags);
150 snd_pcm_stream_lock(substream);
151 return flags;
152}
153EXPORT_SYMBOL_GPL(_snd_pcm_stream_lock_irqsave);
154
Takashi Iwai30b771c2014-10-30 15:02:50 +0100155/**
156 * snd_pcm_stream_unlock_irqrestore - Unlock the PCM stream
157 * @substream: PCM substream
158 * @flags: irq flags
159 *
160 * This is a counter-part of snd_pcm_stream_lock_irqsave().
161 */
Takashi Iwai7af142f2014-09-01 11:19:37 +0200162void snd_pcm_stream_unlock_irqrestore(struct snd_pcm_substream *substream,
163 unsigned long flags)
164{
165 snd_pcm_stream_unlock(substream);
166 if (!substream->pcm->nonatomic)
167 local_irq_restore(flags);
168}
169EXPORT_SYMBOL_GPL(snd_pcm_stream_unlock_irqrestore);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170
171static inline mm_segment_t snd_enter_user(void)
172{
173 mm_segment_t fs = get_fs();
174 set_fs(get_ds());
175 return fs;
176}
177
178static inline void snd_leave_user(mm_segment_t fs)
179{
180 set_fs(fs);
181}
182
183
184
Takashi Iwai877211f2005-11-17 13:59:38 +0100185int snd_pcm_info(struct snd_pcm_substream *substream, struct snd_pcm_info *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186{
Takashi Iwai877211f2005-11-17 13:59:38 +0100187 struct snd_pcm_runtime *runtime;
188 struct snd_pcm *pcm = substream->pcm;
189 struct snd_pcm_str *pstr = substream->pstr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191 memset(info, 0, sizeof(*info));
192 info->card = pcm->card->number;
193 info->device = pcm->device;
194 info->stream = substream->stream;
195 info->subdevice = substream->number;
196 strlcpy(info->id, pcm->id, sizeof(info->id));
197 strlcpy(info->name, pcm->name, sizeof(info->name));
198 info->dev_class = pcm->dev_class;
199 info->dev_subclass = pcm->dev_subclass;
200 info->subdevices_count = pstr->substream_count;
201 info->subdevices_avail = pstr->substream_count - pstr->substream_opened;
202 strlcpy(info->subname, substream->name, sizeof(info->subname));
203 runtime = substream->runtime;
204 /* AB: FIXME!!! This is definitely nonsense */
205 if (runtime) {
206 info->sync = runtime->sync;
207 substream->ops->ioctl(substream, SNDRV_PCM_IOCTL1_INFO, info);
208 }
209 return 0;
210}
211
Takashi Iwai877211f2005-11-17 13:59:38 +0100212int snd_pcm_info_user(struct snd_pcm_substream *substream,
213 struct snd_pcm_info __user * _info)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214{
Takashi Iwai877211f2005-11-17 13:59:38 +0100215 struct snd_pcm_info *info;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216 int err;
217
218 info = kmalloc(sizeof(*info), GFP_KERNEL);
219 if (! info)
220 return -ENOMEM;
221 err = snd_pcm_info(substream, info);
222 if (err >= 0) {
223 if (copy_to_user(_info, info, sizeof(*info)))
224 err = -EFAULT;
225 }
226 kfree(info);
227 return err;
228}
229
Takashi Iwai63825f32014-10-22 12:04:46 +0200230static bool hw_support_mmap(struct snd_pcm_substream *substream)
231{
232 if (!(substream->runtime->hw.info & SNDRV_PCM_INFO_MMAP))
233 return false;
234 /* check architectures that return -EINVAL from dma_mmap_coherent() */
235 /* FIXME: this should be some global flag */
236#if defined(CONFIG_C6X) || defined(CONFIG_FRV) || defined(CONFIG_MN10300) ||\
237 defined(CONFIG_PARISC) || defined(CONFIG_XTENSA)
238 if (!substream->ops->mmap &&
239 substream->dma_buffer.dev.type == SNDRV_DMA_TYPE_DEV)
240 return false;
241#endif
242 return true;
243}
244
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245#undef RULES_DEBUG
246
247#ifdef RULES_DEBUG
248#define HW_PARAM(v) [SNDRV_PCM_HW_PARAM_##v] = #v
Joe Perches47023ec2010-09-13 21:24:02 -0700249static const char * const snd_pcm_hw_param_names[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250 HW_PARAM(ACCESS),
251 HW_PARAM(FORMAT),
252 HW_PARAM(SUBFORMAT),
253 HW_PARAM(SAMPLE_BITS),
254 HW_PARAM(FRAME_BITS),
255 HW_PARAM(CHANNELS),
256 HW_PARAM(RATE),
257 HW_PARAM(PERIOD_TIME),
258 HW_PARAM(PERIOD_SIZE),
259 HW_PARAM(PERIOD_BYTES),
260 HW_PARAM(PERIODS),
261 HW_PARAM(BUFFER_TIME),
262 HW_PARAM(BUFFER_SIZE),
263 HW_PARAM(BUFFER_BYTES),
264 HW_PARAM(TICK_TIME),
265};
266#endif
267
Takashi Iwai877211f2005-11-17 13:59:38 +0100268int snd_pcm_hw_refine(struct snd_pcm_substream *substream,
269 struct snd_pcm_hw_params *params)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700270{
271 unsigned int k;
Takashi Iwai877211f2005-11-17 13:59:38 +0100272 struct snd_pcm_hardware *hw;
273 struct snd_interval *i = NULL;
274 struct snd_mask *m = NULL;
275 struct snd_pcm_hw_constraints *constrs = &substream->runtime->hw_constraints;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276 unsigned int rstamps[constrs->rules_num];
277 unsigned int vstamps[SNDRV_PCM_HW_PARAM_LAST_INTERVAL + 1];
278 unsigned int stamp = 2;
279 int changed, again;
280
281 params->info = 0;
282 params->fifo_size = 0;
283 if (params->rmask & (1 << SNDRV_PCM_HW_PARAM_SAMPLE_BITS))
284 params->msbits = 0;
285 if (params->rmask & (1 << SNDRV_PCM_HW_PARAM_RATE)) {
286 params->rate_num = 0;
287 params->rate_den = 0;
288 }
289
290 for (k = SNDRV_PCM_HW_PARAM_FIRST_MASK; k <= SNDRV_PCM_HW_PARAM_LAST_MASK; k++) {
291 m = hw_param_mask(params, k);
292 if (snd_mask_empty(m))
293 return -EINVAL;
294 if (!(params->rmask & (1 << k)))
295 continue;
296#ifdef RULES_DEBUG
Takashi Iwai09e56df2014-02-04 18:19:48 +0100297 pr_debug("%s = ", snd_pcm_hw_param_names[k]);
298 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 -0700299#endif
300 changed = snd_mask_refine(m, constrs_mask(constrs, k));
301#ifdef RULES_DEBUG
Takashi Iwai09e56df2014-02-04 18:19:48 +0100302 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 -0700303#endif
304 if (changed)
305 params->cmask |= 1 << k;
306 if (changed < 0)
307 return changed;
308 }
309
310 for (k = SNDRV_PCM_HW_PARAM_FIRST_INTERVAL; k <= SNDRV_PCM_HW_PARAM_LAST_INTERVAL; k++) {
311 i = hw_param_interval(params, k);
312 if (snd_interval_empty(i))
313 return -EINVAL;
314 if (!(params->rmask & (1 << k)))
315 continue;
316#ifdef RULES_DEBUG
Takashi Iwai09e56df2014-02-04 18:19:48 +0100317 pr_debug("%s = ", snd_pcm_hw_param_names[k]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318 if (i->empty)
Takashi Iwai09e56df2014-02-04 18:19:48 +0100319 pr_cont("empty");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320 else
Takashi Iwai09e56df2014-02-04 18:19:48 +0100321 pr_cont("%c%u %u%c",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700322 i->openmin ? '(' : '[', i->min,
323 i->max, i->openmax ? ')' : ']');
Takashi Iwai09e56df2014-02-04 18:19:48 +0100324 pr_cont(" -> ");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325#endif
326 changed = snd_interval_refine(i, constrs_interval(constrs, k));
327#ifdef RULES_DEBUG
328 if (i->empty)
Takashi Iwai09e56df2014-02-04 18:19:48 +0100329 pr_cont("empty\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700330 else
Takashi Iwai09e56df2014-02-04 18:19:48 +0100331 pr_cont("%c%u %u%c\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700332 i->openmin ? '(' : '[', i->min,
333 i->max, i->openmax ? ')' : ']');
334#endif
335 if (changed)
336 params->cmask |= 1 << k;
337 if (changed < 0)
338 return changed;
339 }
340
341 for (k = 0; k < constrs->rules_num; k++)
342 rstamps[k] = 0;
343 for (k = 0; k <= SNDRV_PCM_HW_PARAM_LAST_INTERVAL; k++)
344 vstamps[k] = (params->rmask & (1 << k)) ? 1 : 0;
345 do {
346 again = 0;
347 for (k = 0; k < constrs->rules_num; k++) {
Takashi Iwai877211f2005-11-17 13:59:38 +0100348 struct snd_pcm_hw_rule *r = &constrs->rules[k];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700349 unsigned int d;
350 int doit = 0;
351 if (r->cond && !(r->cond & params->flags))
352 continue;
353 for (d = 0; r->deps[d] >= 0; d++) {
354 if (vstamps[r->deps[d]] > rstamps[k]) {
355 doit = 1;
356 break;
357 }
358 }
359 if (!doit)
360 continue;
361#ifdef RULES_DEBUG
Takashi Iwai09e56df2014-02-04 18:19:48 +0100362 pr_debug("Rule %d [%p]: ", k, r->func);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700363 if (r->var >= 0) {
Takashi Iwai09e56df2014-02-04 18:19:48 +0100364 pr_cont("%s = ", snd_pcm_hw_param_names[r->var]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700365 if (hw_is_mask(r->var)) {
366 m = hw_param_mask(params, r->var);
Takashi Iwai09e56df2014-02-04 18:19:48 +0100367 pr_cont("%x", *m->bits);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368 } else {
369 i = hw_param_interval(params, r->var);
370 if (i->empty)
Takashi Iwai09e56df2014-02-04 18:19:48 +0100371 pr_cont("empty");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700372 else
Takashi Iwai09e56df2014-02-04 18:19:48 +0100373 pr_cont("%c%u %u%c",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374 i->openmin ? '(' : '[', i->min,
375 i->max, i->openmax ? ')' : ']');
376 }
377 }
378#endif
379 changed = r->func(params, r);
380#ifdef RULES_DEBUG
381 if (r->var >= 0) {
Takashi Iwai09e56df2014-02-04 18:19:48 +0100382 pr_cont(" -> ");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383 if (hw_is_mask(r->var))
Takashi Iwai09e56df2014-02-04 18:19:48 +0100384 pr_cont("%x", *m->bits);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385 else {
386 if (i->empty)
Takashi Iwai09e56df2014-02-04 18:19:48 +0100387 pr_cont("empty");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388 else
Takashi Iwai09e56df2014-02-04 18:19:48 +0100389 pr_cont("%c%u %u%c",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700390 i->openmin ? '(' : '[', i->min,
391 i->max, i->openmax ? ')' : ']');
392 }
393 }
Takashi Iwai09e56df2014-02-04 18:19:48 +0100394 pr_cont("\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700395#endif
396 rstamps[k] = stamp;
397 if (changed && r->var >= 0) {
398 params->cmask |= (1 << r->var);
399 vstamps[r->var] = stamp;
400 again = 1;
401 }
402 if (changed < 0)
403 return changed;
404 stamp++;
405 }
406 } while (again);
407 if (!params->msbits) {
408 i = hw_param_interval(params, SNDRV_PCM_HW_PARAM_SAMPLE_BITS);
409 if (snd_interval_single(i))
410 params->msbits = snd_interval_value(i);
411 }
412
413 if (!params->rate_den) {
414 i = hw_param_interval(params, SNDRV_PCM_HW_PARAM_RATE);
415 if (snd_interval_single(i)) {
416 params->rate_num = snd_interval_value(i);
417 params->rate_den = 1;
418 }
419 }
420
421 hw = &substream->runtime->hw;
Takashi Iwai63825f32014-10-22 12:04:46 +0200422 if (!params->info) {
Jaroslav Kysela8bea8692009-04-27 09:44:40 +0200423 params->info = hw->info & ~SNDRV_PCM_INFO_FIFO_IN_FRAMES;
Takashi Iwai63825f32014-10-22 12:04:46 +0200424 if (!hw_support_mmap(substream))
425 params->info &= ~(SNDRV_PCM_INFO_MMAP |
426 SNDRV_PCM_INFO_MMAP_VALID);
427 }
Jaroslav Kysela8bea8692009-04-27 09:44:40 +0200428 if (!params->fifo_size) {
Jaroslav Kysela3be522a2010-02-16 11:55:43 +0100429 m = hw_param_mask(params, SNDRV_PCM_HW_PARAM_FORMAT);
430 i = hw_param_interval(params, SNDRV_PCM_HW_PARAM_CHANNELS);
431 if (snd_mask_min(m) == snd_mask_max(m) &&
432 snd_interval_min(i) == snd_interval_max(i)) {
Jaroslav Kysela8bea8692009-04-27 09:44:40 +0200433 changed = substream->ops->ioctl(substream,
434 SNDRV_PCM_IOCTL1_FIFO_SIZE, params);
Mariusz Kozlowski8bd9bca2009-06-21 20:26:59 +0200435 if (changed < 0)
Jaroslav Kysela8bea8692009-04-27 09:44:40 +0200436 return changed;
437 }
438 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700439 params->rmask = 0;
440 return 0;
441}
442
Takashi Iwaie88e8ae62006-04-28 15:13:40 +0200443EXPORT_SYMBOL(snd_pcm_hw_refine);
444
Takashi Iwai877211f2005-11-17 13:59:38 +0100445static int snd_pcm_hw_refine_user(struct snd_pcm_substream *substream,
446 struct snd_pcm_hw_params __user * _params)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700447{
Takashi Iwai877211f2005-11-17 13:59:38 +0100448 struct snd_pcm_hw_params *params;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700449 int err;
450
Li Zefanef44a1e2009-04-10 09:43:08 +0800451 params = memdup_user(_params, sizeof(*params));
452 if (IS_ERR(params))
453 return PTR_ERR(params);
454
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455 err = snd_pcm_hw_refine(substream, params);
456 if (copy_to_user(_params, params, sizeof(*params))) {
457 if (!err)
458 err = -EFAULT;
459 }
Li Zefanef44a1e2009-04-10 09:43:08 +0800460
Linus Torvalds1da177e2005-04-16 15:20:36 -0700461 kfree(params);
462 return err;
463}
464
Takashi Iwai9442e692006-09-30 23:27:19 -0700465static int period_to_usecs(struct snd_pcm_runtime *runtime)
466{
467 int usecs;
468
469 if (! runtime->rate)
470 return -1; /* invalid */
471
472 /* take 75% of period time as the deadline */
473 usecs = (750000 / runtime->rate) * runtime->period_size;
474 usecs += ((750000 % runtime->rate) * runtime->period_size) /
475 runtime->rate;
476
477 return usecs;
478}
479
Takashi Iwai9b0573c2012-10-12 15:07:34 +0200480static void snd_pcm_set_state(struct snd_pcm_substream *substream, int state)
481{
482 snd_pcm_stream_lock_irq(substream);
483 if (substream->runtime->status->state != SNDRV_PCM_STATE_DISCONNECTED)
484 substream->runtime->status->state = state;
485 snd_pcm_stream_unlock_irq(substream);
486}
487
Takashi Iwai877211f2005-11-17 13:59:38 +0100488static int snd_pcm_hw_params(struct snd_pcm_substream *substream,
489 struct snd_pcm_hw_params *params)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700490{
Takashi Iwai877211f2005-11-17 13:59:38 +0100491 struct snd_pcm_runtime *runtime;
Takashi Iwai9442e692006-09-30 23:27:19 -0700492 int err, usecs;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700493 unsigned int bits;
494 snd_pcm_uframes_t frames;
495
Takashi Iwai7eaa9432008-08-08 17:09:09 +0200496 if (PCM_RUNTIME_CHECK(substream))
497 return -ENXIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700498 runtime = substream->runtime;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700499 snd_pcm_stream_lock_irq(substream);
500 switch (runtime->status->state) {
501 case SNDRV_PCM_STATE_OPEN:
502 case SNDRV_PCM_STATE_SETUP:
503 case SNDRV_PCM_STATE_PREPARED:
504 break;
505 default:
506 snd_pcm_stream_unlock_irq(substream);
507 return -EBADFD;
508 }
509 snd_pcm_stream_unlock_irq(substream);
Takashi Iwai8eeaa2f2014-02-10 09:48:47 +0100510#if IS_ENABLED(CONFIG_SND_PCM_OSS)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700511 if (!substream->oss.oss)
512#endif
Takashi Iwai9c323fc2006-04-28 15:13:41 +0200513 if (atomic_read(&substream->mmap_count))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700514 return -EBADFD;
515
516 params->rmask = ~0U;
517 err = snd_pcm_hw_refine(substream, params);
518 if (err < 0)
519 goto _error;
520
521 err = snd_pcm_hw_params_choose(substream, params);
522 if (err < 0)
523 goto _error;
524
525 if (substream->ops->hw_params != NULL) {
526 err = substream->ops->hw_params(substream, params);
527 if (err < 0)
528 goto _error;
529 }
530
531 runtime->access = params_access(params);
532 runtime->format = params_format(params);
533 runtime->subformat = params_subformat(params);
534 runtime->channels = params_channels(params);
535 runtime->rate = params_rate(params);
536 runtime->period_size = params_period_size(params);
537 runtime->periods = params_periods(params);
538 runtime->buffer_size = params_buffer_size(params);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700539 runtime->info = params->info;
540 runtime->rate_num = params->rate_num;
541 runtime->rate_den = params->rate_den;
Clemens Ladischab69a492010-11-15 10:46:23 +0100542 runtime->no_period_wakeup =
543 (params->info & SNDRV_PCM_INFO_NO_PERIOD_WAKEUP) &&
544 (params->flags & SNDRV_PCM_HW_PARAMS_NO_PERIOD_WAKEUP);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700545
546 bits = snd_pcm_format_physical_width(runtime->format);
547 runtime->sample_bits = bits;
548 bits *= runtime->channels;
549 runtime->frame_bits = bits;
550 frames = 1;
551 while (bits % 8 != 0) {
552 bits *= 2;
553 frames *= 2;
554 }
555 runtime->byte_align = bits / 8;
556 runtime->min_align = frames;
557
558 /* Default sw params */
559 runtime->tstamp_mode = SNDRV_PCM_TSTAMP_NONE;
560 runtime->period_step = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700561 runtime->control->avail_min = runtime->period_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700562 runtime->start_threshold = 1;
563 runtime->stop_threshold = runtime->buffer_size;
564 runtime->silence_threshold = 0;
565 runtime->silence_size = 0;
Clemens Ladischead40462010-05-21 09:15:59 +0200566 runtime->boundary = runtime->buffer_size;
567 while (runtime->boundary * 2 <= LONG_MAX - runtime->buffer_size)
568 runtime->boundary *= 2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700569
570 snd_pcm_timer_resolution_change(substream);
Takashi Iwai9b0573c2012-10-12 15:07:34 +0200571 snd_pcm_set_state(substream, SNDRV_PCM_STATE_SETUP);
Takashi Iwai9442e692006-09-30 23:27:19 -0700572
James Bottomley82f68252010-07-05 22:53:06 +0200573 if (pm_qos_request_active(&substream->latency_pm_qos_req))
574 pm_qos_remove_request(&substream->latency_pm_qos_req);
Takashi Iwai9442e692006-09-30 23:27:19 -0700575 if ((usecs = period_to_usecs(runtime)) >= 0)
James Bottomley82f68252010-07-05 22:53:06 +0200576 pm_qos_add_request(&substream->latency_pm_qos_req,
577 PM_QOS_CPU_DMA_LATENCY, usecs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700578 return 0;
579 _error:
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300580 /* hardware might be unusable from this time,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700581 so we force application to retry to set
582 the correct hardware parameter settings */
Takashi Iwai9b0573c2012-10-12 15:07:34 +0200583 snd_pcm_set_state(substream, SNDRV_PCM_STATE_OPEN);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700584 if (substream->ops->hw_free != NULL)
585 substream->ops->hw_free(substream);
586 return err;
587}
588
Takashi Iwai877211f2005-11-17 13:59:38 +0100589static int snd_pcm_hw_params_user(struct snd_pcm_substream *substream,
590 struct snd_pcm_hw_params __user * _params)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700591{
Takashi Iwai877211f2005-11-17 13:59:38 +0100592 struct snd_pcm_hw_params *params;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700593 int err;
594
Li Zefanef44a1e2009-04-10 09:43:08 +0800595 params = memdup_user(_params, sizeof(*params));
596 if (IS_ERR(params))
597 return PTR_ERR(params);
598
Linus Torvalds1da177e2005-04-16 15:20:36 -0700599 err = snd_pcm_hw_params(substream, params);
600 if (copy_to_user(_params, params, sizeof(*params))) {
601 if (!err)
602 err = -EFAULT;
603 }
Li Zefanef44a1e2009-04-10 09:43:08 +0800604
Linus Torvalds1da177e2005-04-16 15:20:36 -0700605 kfree(params);
606 return err;
607}
608
Takashi Iwai877211f2005-11-17 13:59:38 +0100609static int snd_pcm_hw_free(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700610{
Takashi Iwai877211f2005-11-17 13:59:38 +0100611 struct snd_pcm_runtime *runtime;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700612 int result = 0;
613
Takashi Iwai7eaa9432008-08-08 17:09:09 +0200614 if (PCM_RUNTIME_CHECK(substream))
615 return -ENXIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700616 runtime = substream->runtime;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700617 snd_pcm_stream_lock_irq(substream);
618 switch (runtime->status->state) {
619 case SNDRV_PCM_STATE_SETUP:
620 case SNDRV_PCM_STATE_PREPARED:
621 break;
622 default:
623 snd_pcm_stream_unlock_irq(substream);
624 return -EBADFD;
625 }
626 snd_pcm_stream_unlock_irq(substream);
Takashi Iwai9c323fc2006-04-28 15:13:41 +0200627 if (atomic_read(&substream->mmap_count))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700628 return -EBADFD;
629 if (substream->ops->hw_free)
630 result = substream->ops->hw_free(substream);
Takashi Iwai9b0573c2012-10-12 15:07:34 +0200631 snd_pcm_set_state(substream, SNDRV_PCM_STATE_OPEN);
James Bottomley82f68252010-07-05 22:53:06 +0200632 pm_qos_remove_request(&substream->latency_pm_qos_req);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700633 return result;
634}
635
Takashi Iwai877211f2005-11-17 13:59:38 +0100636static int snd_pcm_sw_params(struct snd_pcm_substream *substream,
637 struct snd_pcm_sw_params *params)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700638{
Takashi Iwai877211f2005-11-17 13:59:38 +0100639 struct snd_pcm_runtime *runtime;
Jaroslav Kysela12509322010-01-07 15:36:31 +0100640 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700641
Takashi Iwai7eaa9432008-08-08 17:09:09 +0200642 if (PCM_RUNTIME_CHECK(substream))
643 return -ENXIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700644 runtime = substream->runtime;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700645 snd_pcm_stream_lock_irq(substream);
646 if (runtime->status->state == SNDRV_PCM_STATE_OPEN) {
647 snd_pcm_stream_unlock_irq(substream);
648 return -EBADFD;
649 }
650 snd_pcm_stream_unlock_irq(substream);
651
652 if (params->tstamp_mode > SNDRV_PCM_TSTAMP_LAST)
653 return -EINVAL;
Takashi Iwai58900812014-07-16 17:45:27 +0200654 if (params->proto >= SNDRV_PROTOCOL_VERSION(2, 0, 12) &&
655 params->tstamp_type > SNDRV_PCM_TSTAMP_TYPE_LAST)
Takashi Iwai5646eda2014-07-10 09:50:19 +0200656 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700657 if (params->avail_min == 0)
658 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700659 if (params->silence_size >= runtime->boundary) {
660 if (params->silence_threshold != 0)
661 return -EINVAL;
662 } else {
663 if (params->silence_size > params->silence_threshold)
664 return -EINVAL;
665 if (params->silence_threshold > runtime->buffer_size)
666 return -EINVAL;
667 }
Jaroslav Kysela12509322010-01-07 15:36:31 +0100668 err = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700669 snd_pcm_stream_lock_irq(substream);
670 runtime->tstamp_mode = params->tstamp_mode;
Takashi Iwai58900812014-07-16 17:45:27 +0200671 if (params->proto >= SNDRV_PROTOCOL_VERSION(2, 0, 12))
672 runtime->tstamp_type = params->tstamp_type;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700673 runtime->period_step = params->period_step;
674 runtime->control->avail_min = params->avail_min;
675 runtime->start_threshold = params->start_threshold;
676 runtime->stop_threshold = params->stop_threshold;
677 runtime->silence_threshold = params->silence_threshold;
678 runtime->silence_size = params->silence_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700679 params->boundary = runtime->boundary;
680 if (snd_pcm_running(substream)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700681 if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK &&
682 runtime->silence_size > 0)
683 snd_pcm_playback_silence(substream, ULONG_MAX);
Jaroslav Kysela12509322010-01-07 15:36:31 +0100684 err = snd_pcm_update_state(substream, runtime);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700685 }
686 snd_pcm_stream_unlock_irq(substream);
Jaroslav Kysela12509322010-01-07 15:36:31 +0100687 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700688}
689
Takashi Iwai877211f2005-11-17 13:59:38 +0100690static int snd_pcm_sw_params_user(struct snd_pcm_substream *substream,
691 struct snd_pcm_sw_params __user * _params)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700692{
Takashi Iwai877211f2005-11-17 13:59:38 +0100693 struct snd_pcm_sw_params params;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700694 int err;
695 if (copy_from_user(&params, _params, sizeof(params)))
696 return -EFAULT;
697 err = snd_pcm_sw_params(substream, &params);
698 if (copy_to_user(_params, &params, sizeof(params)))
699 return -EFAULT;
700 return err;
701}
702
Takashi Iwai877211f2005-11-17 13:59:38 +0100703int snd_pcm_status(struct snd_pcm_substream *substream,
704 struct snd_pcm_status *status)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700705{
Takashi Iwai877211f2005-11-17 13:59:38 +0100706 struct snd_pcm_runtime *runtime = substream->runtime;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700707
708 snd_pcm_stream_lock_irq(substream);
709 status->state = runtime->status->state;
710 status->suspended_state = runtime->status->suspended_state;
711 if (status->state == SNDRV_PCM_STATE_OPEN)
712 goto _end;
713 status->trigger_tstamp = runtime->trigger_tstamp;
Jaroslav Kysela8c121582008-01-11 08:45:08 +0100714 if (snd_pcm_running(substream)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700715 snd_pcm_update_hw_ptr(substream);
Jaroslav Kysela8c121582008-01-11 08:45:08 +0100716 if (runtime->tstamp_mode == SNDRV_PCM_TSTAMP_ENABLE) {
717 status->tstamp = runtime->status->tstamp;
Pierre-Louis Bossart4eeaaea2012-10-22 16:42:15 -0500718 status->audio_tstamp =
719 runtime->status->audio_tstamp;
Jaroslav Kysela8c121582008-01-11 08:45:08 +0100720 goto _tstamp_end;
721 }
722 }
Jaroslav Kyselaa713b582008-01-08 12:24:01 +0100723 snd_pcm_gettime(runtime, &status->tstamp);
Jaroslav Kysela8c121582008-01-11 08:45:08 +0100724 _tstamp_end:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700725 status->appl_ptr = runtime->control->appl_ptr;
726 status->hw_ptr = runtime->status->hw_ptr;
727 if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK) {
728 status->avail = snd_pcm_playback_avail(runtime);
729 if (runtime->status->state == SNDRV_PCM_STATE_RUNNING ||
Takashi Iwai4bbe1dd2008-10-13 03:07:14 +0200730 runtime->status->state == SNDRV_PCM_STATE_DRAINING) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700731 status->delay = runtime->buffer_size - status->avail;
Takashi Iwai4bbe1dd2008-10-13 03:07:14 +0200732 status->delay += runtime->delay;
733 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700734 status->delay = 0;
735 } else {
736 status->avail = snd_pcm_capture_avail(runtime);
737 if (runtime->status->state == SNDRV_PCM_STATE_RUNNING)
Takashi Iwai4bbe1dd2008-10-13 03:07:14 +0200738 status->delay = status->avail + runtime->delay;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700739 else
740 status->delay = 0;
741 }
742 status->avail_max = runtime->avail_max;
743 status->overrange = runtime->overrange;
744 runtime->avail_max = 0;
745 runtime->overrange = 0;
746 _end:
747 snd_pcm_stream_unlock_irq(substream);
748 return 0;
749}
750
Takashi Iwai877211f2005-11-17 13:59:38 +0100751static int snd_pcm_status_user(struct snd_pcm_substream *substream,
752 struct snd_pcm_status __user * _status)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700753{
Takashi Iwai877211f2005-11-17 13:59:38 +0100754 struct snd_pcm_status status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700755 int res;
756
Linus Torvalds1da177e2005-04-16 15:20:36 -0700757 memset(&status, 0, sizeof(status));
758 res = snd_pcm_status(substream, &status);
759 if (res < 0)
760 return res;
761 if (copy_to_user(_status, &status, sizeof(status)))
762 return -EFAULT;
763 return 0;
764}
765
Takashi Iwai877211f2005-11-17 13:59:38 +0100766static int snd_pcm_channel_info(struct snd_pcm_substream *substream,
767 struct snd_pcm_channel_info * info)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700768{
Takashi Iwai877211f2005-11-17 13:59:38 +0100769 struct snd_pcm_runtime *runtime;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700770 unsigned int channel;
771
Linus Torvalds1da177e2005-04-16 15:20:36 -0700772 channel = info->channel;
773 runtime = substream->runtime;
774 snd_pcm_stream_lock_irq(substream);
775 if (runtime->status->state == SNDRV_PCM_STATE_OPEN) {
776 snd_pcm_stream_unlock_irq(substream);
777 return -EBADFD;
778 }
779 snd_pcm_stream_unlock_irq(substream);
780 if (channel >= runtime->channels)
781 return -EINVAL;
782 memset(info, 0, sizeof(*info));
783 info->channel = channel;
784 return substream->ops->ioctl(substream, SNDRV_PCM_IOCTL1_CHANNEL_INFO, info);
785}
786
Takashi Iwai877211f2005-11-17 13:59:38 +0100787static int snd_pcm_channel_info_user(struct snd_pcm_substream *substream,
788 struct snd_pcm_channel_info __user * _info)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700789{
Takashi Iwai877211f2005-11-17 13:59:38 +0100790 struct snd_pcm_channel_info info;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700791 int res;
792
793 if (copy_from_user(&info, _info, sizeof(info)))
794 return -EFAULT;
795 res = snd_pcm_channel_info(substream, &info);
796 if (res < 0)
797 return res;
798 if (copy_to_user(_info, &info, sizeof(info)))
799 return -EFAULT;
800 return 0;
801}
802
Takashi Iwai877211f2005-11-17 13:59:38 +0100803static void snd_pcm_trigger_tstamp(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700804{
Takashi Iwai877211f2005-11-17 13:59:38 +0100805 struct snd_pcm_runtime *runtime = substream->runtime;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700806 if (runtime->trigger_master == NULL)
807 return;
808 if (runtime->trigger_master == substream) {
Jaroslav Kyselab751eef2007-12-13 10:19:42 +0100809 snd_pcm_gettime(runtime, &runtime->trigger_tstamp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700810 } else {
811 snd_pcm_trigger_tstamp(runtime->trigger_master);
812 runtime->trigger_tstamp = runtime->trigger_master->runtime->trigger_tstamp;
813 }
814 runtime->trigger_master = NULL;
815}
816
817struct action_ops {
Takashi Iwai877211f2005-11-17 13:59:38 +0100818 int (*pre_action)(struct snd_pcm_substream *substream, int state);
819 int (*do_action)(struct snd_pcm_substream *substream, int state);
820 void (*undo_action)(struct snd_pcm_substream *substream, int state);
821 void (*post_action)(struct snd_pcm_substream *substream, int state);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700822};
823
824/*
825 * this functions is core for handling of linked stream
826 * Note: the stream state might be changed also on failure
827 * Note2: call with calling stream lock + link lock
828 */
829static int snd_pcm_action_group(struct action_ops *ops,
Takashi Iwai877211f2005-11-17 13:59:38 +0100830 struct snd_pcm_substream *substream,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700831 int state, int do_lock)
832{
Takashi Iwai877211f2005-11-17 13:59:38 +0100833 struct snd_pcm_substream *s = NULL;
834 struct snd_pcm_substream *s1;
Takashi Iwaidde1c652014-10-21 15:32:13 +0200835 int res = 0, depth = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700836
Takashi Iwaief991b92007-02-22 12:52:53 +0100837 snd_pcm_group_for_each_entry(s, substream) {
Takashi Iwai257f8cc2014-08-29 15:32:29 +0200838 if (do_lock && s != substream) {
839 if (s->pcm->nonatomic)
Takashi Iwaidde1c652014-10-21 15:32:13 +0200840 mutex_lock_nested(&s->self_group.mutex, depth);
Takashi Iwai257f8cc2014-08-29 15:32:29 +0200841 else
Takashi Iwaidde1c652014-10-21 15:32:13 +0200842 spin_lock_nested(&s->self_group.lock, depth);
843 depth++;
Takashi Iwai257f8cc2014-08-29 15:32:29 +0200844 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700845 res = ops->pre_action(s, state);
846 if (res < 0)
847 goto _unlock;
848 }
Takashi Iwaief991b92007-02-22 12:52:53 +0100849 snd_pcm_group_for_each_entry(s, substream) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700850 res = ops->do_action(s, state);
851 if (res < 0) {
852 if (ops->undo_action) {
Takashi Iwaief991b92007-02-22 12:52:53 +0100853 snd_pcm_group_for_each_entry(s1, substream) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700854 if (s1 == s) /* failed stream */
855 break;
856 ops->undo_action(s1, state);
857 }
858 }
859 s = NULL; /* unlock all */
860 goto _unlock;
861 }
862 }
Takashi Iwaief991b92007-02-22 12:52:53 +0100863 snd_pcm_group_for_each_entry(s, substream) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700864 ops->post_action(s, state);
865 }
866 _unlock:
867 if (do_lock) {
868 /* unlock streams */
Takashi Iwaief991b92007-02-22 12:52:53 +0100869 snd_pcm_group_for_each_entry(s1, substream) {
Takashi Iwai257f8cc2014-08-29 15:32:29 +0200870 if (s1 != substream) {
Takashi Iwai811deed2014-10-13 23:14:46 +0200871 if (s1->pcm->nonatomic)
Takashi Iwai257f8cc2014-08-29 15:32:29 +0200872 mutex_unlock(&s1->self_group.mutex);
873 else
874 spin_unlock(&s1->self_group.lock);
875 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700876 if (s1 == s) /* end */
877 break;
878 }
879 }
880 return res;
881}
882
883/*
884 * Note: call with stream lock
885 */
886static int snd_pcm_action_single(struct action_ops *ops,
Takashi Iwai877211f2005-11-17 13:59:38 +0100887 struct snd_pcm_substream *substream,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700888 int state)
889{
890 int res;
891
892 res = ops->pre_action(substream, state);
893 if (res < 0)
894 return res;
895 res = ops->do_action(substream, state);
896 if (res == 0)
897 ops->post_action(substream, state);
898 else if (ops->undo_action)
899 ops->undo_action(substream, state);
900 return res;
901}
902
903/*
904 * Note: call with stream lock
905 */
906static int snd_pcm_action(struct action_ops *ops,
Takashi Iwai877211f2005-11-17 13:59:38 +0100907 struct snd_pcm_substream *substream,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700908 int state)
909{
910 int res;
911
Takashi Iwaiaa8edd82014-10-31 15:19:36 +0100912 if (!snd_pcm_stream_linked(substream))
913 return snd_pcm_action_single(ops, substream, state);
Takashi Iwai257f8cc2014-08-29 15:32:29 +0200914
Takashi Iwaiaa8edd82014-10-31 15:19:36 +0100915 if (substream->pcm->nonatomic) {
916 if (!mutex_trylock(&substream->group->mutex)) {
917 mutex_unlock(&substream->self_group.mutex);
918 mutex_lock(&substream->group->mutex);
919 mutex_lock(&substream->self_group.mutex);
920 }
921 res = snd_pcm_action_group(ops, substream, state, 1);
922 mutex_unlock(&substream->group->mutex);
923 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700924 if (!spin_trylock(&substream->group->lock)) {
925 spin_unlock(&substream->self_group.lock);
926 spin_lock(&substream->group->lock);
927 spin_lock(&substream->self_group.lock);
928 }
929 res = snd_pcm_action_group(ops, substream, state, 1);
930 spin_unlock(&substream->group->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700931 }
932 return res;
933}
934
935/*
936 * Note: don't use any locks before
937 */
938static int snd_pcm_action_lock_irq(struct action_ops *ops,
Takashi Iwai877211f2005-11-17 13:59:38 +0100939 struct snd_pcm_substream *substream,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700940 int state)
941{
942 int res;
943
Takashi Iwaie3a4bd52014-10-31 14:45:04 +0100944 snd_pcm_stream_lock_irq(substream);
945 res = snd_pcm_action(ops, substream, state);
946 snd_pcm_stream_unlock_irq(substream);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700947 return res;
948}
949
950/*
951 */
952static int snd_pcm_action_nonatomic(struct action_ops *ops,
Takashi Iwai877211f2005-11-17 13:59:38 +0100953 struct snd_pcm_substream *substream,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700954 int state)
955{
956 int res;
957
958 down_read(&snd_pcm_link_rwsem);
959 if (snd_pcm_stream_linked(substream))
960 res = snd_pcm_action_group(ops, substream, state, 0);
961 else
962 res = snd_pcm_action_single(ops, substream, state);
963 up_read(&snd_pcm_link_rwsem);
964 return res;
965}
966
967/*
968 * start callbacks
969 */
Takashi Iwai877211f2005-11-17 13:59:38 +0100970static int snd_pcm_pre_start(struct snd_pcm_substream *substream, int state)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700971{
Takashi Iwai877211f2005-11-17 13:59:38 +0100972 struct snd_pcm_runtime *runtime = substream->runtime;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700973 if (runtime->status->state != SNDRV_PCM_STATE_PREPARED)
974 return -EBADFD;
975 if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK &&
976 !snd_pcm_playback_data(substream))
977 return -EPIPE;
978 runtime->trigger_master = substream;
979 return 0;
980}
981
Takashi Iwai877211f2005-11-17 13:59:38 +0100982static int snd_pcm_do_start(struct snd_pcm_substream *substream, int state)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700983{
984 if (substream->runtime->trigger_master != substream)
985 return 0;
986 return substream->ops->trigger(substream, SNDRV_PCM_TRIGGER_START);
987}
988
Takashi Iwai877211f2005-11-17 13:59:38 +0100989static void snd_pcm_undo_start(struct snd_pcm_substream *substream, int state)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700990{
991 if (substream->runtime->trigger_master == substream)
992 substream->ops->trigger(substream, SNDRV_PCM_TRIGGER_STOP);
993}
994
Takashi Iwai877211f2005-11-17 13:59:38 +0100995static void snd_pcm_post_start(struct snd_pcm_substream *substream, int state)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700996{
Takashi Iwai877211f2005-11-17 13:59:38 +0100997 struct snd_pcm_runtime *runtime = substream->runtime;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700998 snd_pcm_trigger_tstamp(substream);
Takashi Iwai6af3fb72009-05-27 10:49:26 +0200999 runtime->hw_ptr_jiffies = jiffies;
Jaroslav Kyselabd76af02010-08-18 14:16:54 +02001000 runtime->hw_ptr_buffer_jiffies = (runtime->buffer_size * HZ) /
1001 runtime->rate;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001002 runtime->status->state = state;
1003 if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK &&
1004 runtime->silence_size > 0)
1005 snd_pcm_playback_silence(substream, ULONG_MAX);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001006 if (substream->timer)
Takashi Iwai877211f2005-11-17 13:59:38 +01001007 snd_timer_notify(substream->timer, SNDRV_TIMER_EVENT_MSTART,
1008 &runtime->trigger_tstamp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001009}
1010
1011static struct action_ops snd_pcm_action_start = {
1012 .pre_action = snd_pcm_pre_start,
1013 .do_action = snd_pcm_do_start,
1014 .undo_action = snd_pcm_undo_start,
1015 .post_action = snd_pcm_post_start
1016};
1017
1018/**
Randy Dunlap1c85cc62008-10-15 14:38:40 -07001019 * snd_pcm_start - start all linked streams
Takashi Iwaidf8db932005-09-07 13:38:19 +02001020 * @substream: the PCM substream instance
Yacine Belkadieb7c06e2013-03-11 22:05:14 +01001021 *
1022 * Return: Zero if successful, or a negative error code.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001023 */
Takashi Iwai877211f2005-11-17 13:59:38 +01001024int snd_pcm_start(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001025{
Takashi Iwai877211f2005-11-17 13:59:38 +01001026 return snd_pcm_action(&snd_pcm_action_start, substream,
1027 SNDRV_PCM_STATE_RUNNING);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001028}
1029
1030/*
1031 * stop callbacks
1032 */
Takashi Iwai877211f2005-11-17 13:59:38 +01001033static int snd_pcm_pre_stop(struct snd_pcm_substream *substream, int state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001034{
Takashi Iwai877211f2005-11-17 13:59:38 +01001035 struct snd_pcm_runtime *runtime = substream->runtime;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001036 if (runtime->status->state == SNDRV_PCM_STATE_OPEN)
1037 return -EBADFD;
1038 runtime->trigger_master = substream;
1039 return 0;
1040}
1041
Takashi Iwai877211f2005-11-17 13:59:38 +01001042static int snd_pcm_do_stop(struct snd_pcm_substream *substream, int state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001043{
1044 if (substream->runtime->trigger_master == substream &&
1045 snd_pcm_running(substream))
1046 substream->ops->trigger(substream, SNDRV_PCM_TRIGGER_STOP);
1047 return 0; /* unconditonally stop all substreams */
1048}
1049
Takashi Iwai877211f2005-11-17 13:59:38 +01001050static void snd_pcm_post_stop(struct snd_pcm_substream *substream, int state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001051{
Takashi Iwai877211f2005-11-17 13:59:38 +01001052 struct snd_pcm_runtime *runtime = substream->runtime;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001053 if (runtime->status->state != state) {
1054 snd_pcm_trigger_tstamp(substream);
Takashi Iwai9bc889b2014-11-06 12:15:25 +01001055 runtime->status->state = state;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001056 if (substream->timer)
Takashi Iwai877211f2005-11-17 13:59:38 +01001057 snd_timer_notify(substream->timer, SNDRV_TIMER_EVENT_MSTOP,
1058 &runtime->trigger_tstamp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001059 }
1060 wake_up(&runtime->sleep);
Jaroslav Kyselac91a9882010-01-21 10:32:15 +01001061 wake_up(&runtime->tsleep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001062}
1063
1064static struct action_ops snd_pcm_action_stop = {
1065 .pre_action = snd_pcm_pre_stop,
1066 .do_action = snd_pcm_do_stop,
1067 .post_action = snd_pcm_post_stop
1068};
1069
1070/**
Randy Dunlap1c85cc62008-10-15 14:38:40 -07001071 * snd_pcm_stop - try to stop all running streams in the substream group
Takashi Iwaidf8db932005-09-07 13:38:19 +02001072 * @substream: the PCM substream instance
1073 * @state: PCM state after stopping the stream
Linus Torvalds1da177e2005-04-16 15:20:36 -07001074 *
Randy Dunlap1c85cc62008-10-15 14:38:40 -07001075 * The state of each stream is then changed to the given state unconditionally.
Yacine Belkadieb7c06e2013-03-11 22:05:14 +01001076 *
Masanari Iida0a114582014-02-09 00:47:36 +09001077 * Return: Zero if successful, or a negative error code.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001078 */
Clemens Ladischfea952e2011-02-14 11:00:47 +01001079int snd_pcm_stop(struct snd_pcm_substream *substream, snd_pcm_state_t state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001080{
1081 return snd_pcm_action(&snd_pcm_action_stop, substream, state);
1082}
1083
Takashi Iwaie88e8ae62006-04-28 15:13:40 +02001084EXPORT_SYMBOL(snd_pcm_stop);
1085
Linus Torvalds1da177e2005-04-16 15:20:36 -07001086/**
Randy Dunlap1c85cc62008-10-15 14:38:40 -07001087 * snd_pcm_drain_done - stop the DMA only when the given stream is playback
Takashi Iwaidf8db932005-09-07 13:38:19 +02001088 * @substream: the PCM substream
Linus Torvalds1da177e2005-04-16 15:20:36 -07001089 *
Randy Dunlap1c85cc62008-10-15 14:38:40 -07001090 * After stopping, the state is changed to SETUP.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001091 * Unlike snd_pcm_stop(), this affects only the given stream.
Yacine Belkadieb7c06e2013-03-11 22:05:14 +01001092 *
1093 * Return: Zero if succesful, or a negative error code.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001094 */
Takashi Iwai877211f2005-11-17 13:59:38 +01001095int snd_pcm_drain_done(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001096{
Takashi Iwai877211f2005-11-17 13:59:38 +01001097 return snd_pcm_action_single(&snd_pcm_action_stop, substream,
1098 SNDRV_PCM_STATE_SETUP);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001099}
1100
Takashi Iwai1fb85102014-11-07 17:08:28 +01001101/**
1102 * snd_pcm_stop_xrun - stop the running streams as XRUN
1103 * @substream: the PCM substream instance
1104 * @state: PCM state after stopping the stream
1105 *
1106 * This stops the given running substream (and all linked substreams) as XRUN.
1107 * Unlike snd_pcm_stop(), this function takes the substream lock by itself.
1108 *
1109 * Return: Zero if successful, or a negative error code.
1110 */
1111int snd_pcm_stop_xrun(struct snd_pcm_substream *substream)
1112{
1113 unsigned long flags;
1114 int ret = 0;
1115
1116 snd_pcm_stream_lock_irqsave(substream, flags);
1117 if (snd_pcm_running(substream))
1118 ret = snd_pcm_stop(substream, SNDRV_PCM_STATE_XRUN);
1119 snd_pcm_stream_unlock_irqrestore(substream, flags);
1120 return ret;
1121}
1122EXPORT_SYMBOL_GPL(snd_pcm_stop_xrun);
1123
Linus Torvalds1da177e2005-04-16 15:20:36 -07001124/*
1125 * pause callbacks
1126 */
Takashi Iwai877211f2005-11-17 13:59:38 +01001127static int snd_pcm_pre_pause(struct snd_pcm_substream *substream, int push)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001128{
Takashi Iwai877211f2005-11-17 13:59:38 +01001129 struct snd_pcm_runtime *runtime = substream->runtime;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001130 if (!(runtime->info & SNDRV_PCM_INFO_PAUSE))
1131 return -ENOSYS;
1132 if (push) {
1133 if (runtime->status->state != SNDRV_PCM_STATE_RUNNING)
1134 return -EBADFD;
1135 } else if (runtime->status->state != SNDRV_PCM_STATE_PAUSED)
1136 return -EBADFD;
1137 runtime->trigger_master = substream;
1138 return 0;
1139}
1140
Takashi Iwai877211f2005-11-17 13:59:38 +01001141static int snd_pcm_do_pause(struct snd_pcm_substream *substream, int push)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001142{
1143 if (substream->runtime->trigger_master != substream)
1144 return 0;
Jaroslav Kysela56385a12010-08-18 14:08:17 +02001145 /* some drivers might use hw_ptr to recover from the pause -
1146 update the hw_ptr now */
1147 if (push)
1148 snd_pcm_update_hw_ptr(substream);
Takashi Iwai6af3fb72009-05-27 10:49:26 +02001149 /* The jiffies check in snd_pcm_update_hw_ptr*() is done by
Uwe Kleine-Königb5950762010-11-01 15:38:34 -04001150 * a delta between the current jiffies, this gives a large enough
Takashi Iwai6af3fb72009-05-27 10:49:26 +02001151 * delta, effectively to skip the check once.
1152 */
1153 substream->runtime->hw_ptr_jiffies = jiffies - HZ * 1000;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001154 return substream->ops->trigger(substream,
1155 push ? SNDRV_PCM_TRIGGER_PAUSE_PUSH :
1156 SNDRV_PCM_TRIGGER_PAUSE_RELEASE);
1157}
1158
Takashi Iwai877211f2005-11-17 13:59:38 +01001159static void snd_pcm_undo_pause(struct snd_pcm_substream *substream, int push)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001160{
1161 if (substream->runtime->trigger_master == substream)
1162 substream->ops->trigger(substream,
1163 push ? SNDRV_PCM_TRIGGER_PAUSE_RELEASE :
1164 SNDRV_PCM_TRIGGER_PAUSE_PUSH);
1165}
1166
Takashi Iwai877211f2005-11-17 13:59:38 +01001167static void snd_pcm_post_pause(struct snd_pcm_substream *substream, int push)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001168{
Takashi Iwai877211f2005-11-17 13:59:38 +01001169 struct snd_pcm_runtime *runtime = substream->runtime;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001170 snd_pcm_trigger_tstamp(substream);
1171 if (push) {
1172 runtime->status->state = SNDRV_PCM_STATE_PAUSED;
1173 if (substream->timer)
Takashi Iwai877211f2005-11-17 13:59:38 +01001174 snd_timer_notify(substream->timer,
1175 SNDRV_TIMER_EVENT_MPAUSE,
1176 &runtime->trigger_tstamp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001177 wake_up(&runtime->sleep);
Jaroslav Kyselac91a9882010-01-21 10:32:15 +01001178 wake_up(&runtime->tsleep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001179 } else {
1180 runtime->status->state = SNDRV_PCM_STATE_RUNNING;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001181 if (substream->timer)
Takashi Iwai877211f2005-11-17 13:59:38 +01001182 snd_timer_notify(substream->timer,
1183 SNDRV_TIMER_EVENT_MCONTINUE,
1184 &runtime->trigger_tstamp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001185 }
1186}
1187
1188static struct action_ops snd_pcm_action_pause = {
1189 .pre_action = snd_pcm_pre_pause,
1190 .do_action = snd_pcm_do_pause,
1191 .undo_action = snd_pcm_undo_pause,
1192 .post_action = snd_pcm_post_pause
1193};
1194
1195/*
1196 * Push/release the pause for all linked streams.
1197 */
Takashi Iwai877211f2005-11-17 13:59:38 +01001198static int snd_pcm_pause(struct snd_pcm_substream *substream, int push)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001199{
1200 return snd_pcm_action(&snd_pcm_action_pause, substream, push);
1201}
1202
1203#ifdef CONFIG_PM
1204/* suspend */
1205
Takashi Iwai877211f2005-11-17 13:59:38 +01001206static int snd_pcm_pre_suspend(struct snd_pcm_substream *substream, int state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001207{
Takashi Iwai877211f2005-11-17 13:59:38 +01001208 struct snd_pcm_runtime *runtime = substream->runtime;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001209 if (runtime->status->state == SNDRV_PCM_STATE_SUSPENDED)
1210 return -EBUSY;
1211 runtime->trigger_master = substream;
1212 return 0;
1213}
1214
Takashi Iwai877211f2005-11-17 13:59:38 +01001215static int snd_pcm_do_suspend(struct snd_pcm_substream *substream, int state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001216{
Takashi Iwai877211f2005-11-17 13:59:38 +01001217 struct snd_pcm_runtime *runtime = substream->runtime;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001218 if (runtime->trigger_master != substream)
1219 return 0;
1220 if (! snd_pcm_running(substream))
1221 return 0;
1222 substream->ops->trigger(substream, SNDRV_PCM_TRIGGER_SUSPEND);
1223 return 0; /* suspend unconditionally */
1224}
1225
Takashi Iwai877211f2005-11-17 13:59:38 +01001226static void snd_pcm_post_suspend(struct snd_pcm_substream *substream, int state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001227{
Takashi Iwai877211f2005-11-17 13:59:38 +01001228 struct snd_pcm_runtime *runtime = substream->runtime;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001229 snd_pcm_trigger_tstamp(substream);
Takashi Iwai9bc889b2014-11-06 12:15:25 +01001230 runtime->status->suspended_state = runtime->status->state;
1231 runtime->status->state = SNDRV_PCM_STATE_SUSPENDED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001232 if (substream->timer)
Takashi Iwai877211f2005-11-17 13:59:38 +01001233 snd_timer_notify(substream->timer, SNDRV_TIMER_EVENT_MSUSPEND,
1234 &runtime->trigger_tstamp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001235 wake_up(&runtime->sleep);
Jaroslav Kyselac91a9882010-01-21 10:32:15 +01001236 wake_up(&runtime->tsleep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001237}
1238
1239static struct action_ops snd_pcm_action_suspend = {
1240 .pre_action = snd_pcm_pre_suspend,
1241 .do_action = snd_pcm_do_suspend,
1242 .post_action = snd_pcm_post_suspend
1243};
1244
1245/**
Randy Dunlap1c85cc62008-10-15 14:38:40 -07001246 * snd_pcm_suspend - trigger SUSPEND to all linked streams
Takashi Iwaidf8db932005-09-07 13:38:19 +02001247 * @substream: the PCM substream
Linus Torvalds1da177e2005-04-16 15:20:36 -07001248 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001249 * After this call, all streams are changed to SUSPENDED state.
Yacine Belkadieb7c06e2013-03-11 22:05:14 +01001250 *
1251 * Return: Zero if successful (or @substream is %NULL), or a negative error
1252 * code.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001253 */
Takashi Iwai877211f2005-11-17 13:59:38 +01001254int snd_pcm_suspend(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001255{
1256 int err;
1257 unsigned long flags;
1258
Takashi Iwai603bf522005-11-17 15:59:14 +01001259 if (! substream)
1260 return 0;
1261
Linus Torvalds1da177e2005-04-16 15:20:36 -07001262 snd_pcm_stream_lock_irqsave(substream, flags);
1263 err = snd_pcm_action(&snd_pcm_action_suspend, substream, 0);
1264 snd_pcm_stream_unlock_irqrestore(substream, flags);
1265 return err;
1266}
1267
Takashi Iwaie88e8ae62006-04-28 15:13:40 +02001268EXPORT_SYMBOL(snd_pcm_suspend);
1269
Linus Torvalds1da177e2005-04-16 15:20:36 -07001270/**
Randy Dunlap1c85cc62008-10-15 14:38:40 -07001271 * snd_pcm_suspend_all - trigger SUSPEND to all substreams in the given pcm
Takashi Iwaidf8db932005-09-07 13:38:19 +02001272 * @pcm: the PCM instance
Linus Torvalds1da177e2005-04-16 15:20:36 -07001273 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001274 * After this call, all streams are changed to SUSPENDED state.
Yacine Belkadieb7c06e2013-03-11 22:05:14 +01001275 *
1276 * Return: Zero if successful (or @pcm is %NULL), or a negative error code.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001277 */
Takashi Iwai877211f2005-11-17 13:59:38 +01001278int snd_pcm_suspend_all(struct snd_pcm *pcm)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001279{
Takashi Iwai877211f2005-11-17 13:59:38 +01001280 struct snd_pcm_substream *substream;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001281 int stream, err = 0;
1282
Takashi Iwai603bf522005-11-17 15:59:14 +01001283 if (! pcm)
1284 return 0;
1285
Linus Torvalds1da177e2005-04-16 15:20:36 -07001286 for (stream = 0; stream < 2; stream++) {
Takashi Iwai877211f2005-11-17 13:59:38 +01001287 for (substream = pcm->streams[stream].substream;
1288 substream; substream = substream->next) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001289 /* FIXME: the open/close code should lock this as well */
1290 if (substream->runtime == NULL)
1291 continue;
1292 err = snd_pcm_suspend(substream);
1293 if (err < 0 && err != -EBUSY)
1294 return err;
1295 }
1296 }
1297 return 0;
1298}
1299
Takashi Iwaie88e8ae62006-04-28 15:13:40 +02001300EXPORT_SYMBOL(snd_pcm_suspend_all);
1301
Linus Torvalds1da177e2005-04-16 15:20:36 -07001302/* resume */
1303
Takashi Iwai877211f2005-11-17 13:59:38 +01001304static int snd_pcm_pre_resume(struct snd_pcm_substream *substream, int state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001305{
Takashi Iwai877211f2005-11-17 13:59:38 +01001306 struct snd_pcm_runtime *runtime = substream->runtime;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001307 if (!(runtime->info & SNDRV_PCM_INFO_RESUME))
1308 return -ENOSYS;
1309 runtime->trigger_master = substream;
1310 return 0;
1311}
1312
Takashi Iwai877211f2005-11-17 13:59:38 +01001313static int snd_pcm_do_resume(struct snd_pcm_substream *substream, int state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001314{
Takashi Iwai877211f2005-11-17 13:59:38 +01001315 struct snd_pcm_runtime *runtime = substream->runtime;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001316 if (runtime->trigger_master != substream)
1317 return 0;
1318 /* DMA not running previously? */
1319 if (runtime->status->suspended_state != SNDRV_PCM_STATE_RUNNING &&
1320 (runtime->status->suspended_state != SNDRV_PCM_STATE_DRAINING ||
1321 substream->stream != SNDRV_PCM_STREAM_PLAYBACK))
1322 return 0;
1323 return substream->ops->trigger(substream, SNDRV_PCM_TRIGGER_RESUME);
1324}
1325
Takashi Iwai877211f2005-11-17 13:59:38 +01001326static void snd_pcm_undo_resume(struct snd_pcm_substream *substream, int state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001327{
1328 if (substream->runtime->trigger_master == substream &&
1329 snd_pcm_running(substream))
1330 substream->ops->trigger(substream, SNDRV_PCM_TRIGGER_SUSPEND);
1331}
1332
Takashi Iwai877211f2005-11-17 13:59:38 +01001333static void snd_pcm_post_resume(struct snd_pcm_substream *substream, int state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001334{
Takashi Iwai877211f2005-11-17 13:59:38 +01001335 struct snd_pcm_runtime *runtime = substream->runtime;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001336 snd_pcm_trigger_tstamp(substream);
Takashi Iwai9bc889b2014-11-06 12:15:25 +01001337 runtime->status->state = runtime->status->suspended_state;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001338 if (substream->timer)
Takashi Iwai877211f2005-11-17 13:59:38 +01001339 snd_timer_notify(substream->timer, SNDRV_TIMER_EVENT_MRESUME,
1340 &runtime->trigger_tstamp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001341}
1342
1343static struct action_ops snd_pcm_action_resume = {
1344 .pre_action = snd_pcm_pre_resume,
1345 .do_action = snd_pcm_do_resume,
1346 .undo_action = snd_pcm_undo_resume,
1347 .post_action = snd_pcm_post_resume
1348};
1349
Takashi Iwai877211f2005-11-17 13:59:38 +01001350static int snd_pcm_resume(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001351{
Takashi Iwai877211f2005-11-17 13:59:38 +01001352 struct snd_card *card = substream->pcm->card;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001353 int res;
1354
1355 snd_power_lock(card);
Takashi Iwaicbac4b02006-03-27 12:38:07 +02001356 if ((res = snd_power_wait(card, SNDRV_CTL_POWER_D0)) >= 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001357 res = snd_pcm_action_lock_irq(&snd_pcm_action_resume, substream, 0);
1358 snd_power_unlock(card);
1359 return res;
1360}
1361
1362#else
1363
Takashi Iwai877211f2005-11-17 13:59:38 +01001364static int snd_pcm_resume(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001365{
1366 return -ENOSYS;
1367}
1368
1369#endif /* CONFIG_PM */
1370
1371/*
1372 * xrun ioctl
1373 *
1374 * Change the RUNNING stream(s) to XRUN state.
1375 */
Takashi Iwai877211f2005-11-17 13:59:38 +01001376static int snd_pcm_xrun(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001377{
Takashi Iwai877211f2005-11-17 13:59:38 +01001378 struct snd_card *card = substream->pcm->card;
1379 struct snd_pcm_runtime *runtime = substream->runtime;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001380 int result;
1381
1382 snd_power_lock(card);
1383 if (runtime->status->state == SNDRV_PCM_STATE_SUSPENDED) {
Takashi Iwaicbac4b02006-03-27 12:38:07 +02001384 result = snd_power_wait(card, SNDRV_CTL_POWER_D0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001385 if (result < 0)
1386 goto _unlock;
1387 }
1388
1389 snd_pcm_stream_lock_irq(substream);
1390 switch (runtime->status->state) {
1391 case SNDRV_PCM_STATE_XRUN:
1392 result = 0; /* already there */
1393 break;
1394 case SNDRV_PCM_STATE_RUNNING:
1395 result = snd_pcm_stop(substream, SNDRV_PCM_STATE_XRUN);
1396 break;
1397 default:
1398 result = -EBADFD;
1399 }
1400 snd_pcm_stream_unlock_irq(substream);
1401 _unlock:
1402 snd_power_unlock(card);
1403 return result;
1404}
1405
1406/*
1407 * reset ioctl
1408 */
Takashi Iwai877211f2005-11-17 13:59:38 +01001409static int snd_pcm_pre_reset(struct snd_pcm_substream *substream, int state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001410{
Takashi Iwai877211f2005-11-17 13:59:38 +01001411 struct snd_pcm_runtime *runtime = substream->runtime;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001412 switch (runtime->status->state) {
1413 case SNDRV_PCM_STATE_RUNNING:
1414 case SNDRV_PCM_STATE_PREPARED:
1415 case SNDRV_PCM_STATE_PAUSED:
1416 case SNDRV_PCM_STATE_SUSPENDED:
1417 return 0;
1418 default:
1419 return -EBADFD;
1420 }
1421}
1422
Takashi Iwai877211f2005-11-17 13:59:38 +01001423static int snd_pcm_do_reset(struct snd_pcm_substream *substream, int state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001424{
Takashi Iwai877211f2005-11-17 13:59:38 +01001425 struct snd_pcm_runtime *runtime = substream->runtime;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001426 int err = substream->ops->ioctl(substream, SNDRV_PCM_IOCTL1_RESET, NULL);
1427 if (err < 0)
1428 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001429 runtime->hw_ptr_base = 0;
Jaroslav Kyselae7636922010-01-26 17:08:24 +01001430 runtime->hw_ptr_interrupt = runtime->status->hw_ptr -
1431 runtime->status->hw_ptr % runtime->period_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001432 runtime->silence_start = runtime->status->hw_ptr;
1433 runtime->silence_filled = 0;
1434 return 0;
1435}
1436
Takashi Iwai877211f2005-11-17 13:59:38 +01001437static void snd_pcm_post_reset(struct snd_pcm_substream *substream, int state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001438{
Takashi Iwai877211f2005-11-17 13:59:38 +01001439 struct snd_pcm_runtime *runtime = substream->runtime;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001440 runtime->control->appl_ptr = runtime->status->hw_ptr;
1441 if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK &&
1442 runtime->silence_size > 0)
1443 snd_pcm_playback_silence(substream, ULONG_MAX);
1444}
1445
1446static struct action_ops snd_pcm_action_reset = {
1447 .pre_action = snd_pcm_pre_reset,
1448 .do_action = snd_pcm_do_reset,
1449 .post_action = snd_pcm_post_reset
1450};
1451
Takashi Iwai877211f2005-11-17 13:59:38 +01001452static int snd_pcm_reset(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001453{
1454 return snd_pcm_action_nonatomic(&snd_pcm_action_reset, substream, 0);
1455}
1456
1457/*
1458 * prepare ioctl
1459 */
Takashi Iwai0df63e42006-04-28 15:13:41 +02001460/* we use the second argument for updating f_flags */
1461static int snd_pcm_pre_prepare(struct snd_pcm_substream *substream,
1462 int f_flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001463{
Takashi Iwai877211f2005-11-17 13:59:38 +01001464 struct snd_pcm_runtime *runtime = substream->runtime;
Takashi Iwaide1b8b92006-11-08 15:41:29 +01001465 if (runtime->status->state == SNDRV_PCM_STATE_OPEN ||
1466 runtime->status->state == SNDRV_PCM_STATE_DISCONNECTED)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001467 return -EBADFD;
1468 if (snd_pcm_running(substream))
1469 return -EBUSY;
Takashi Iwai0df63e42006-04-28 15:13:41 +02001470 substream->f_flags = f_flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001471 return 0;
1472}
1473
Takashi Iwai877211f2005-11-17 13:59:38 +01001474static int snd_pcm_do_prepare(struct snd_pcm_substream *substream, int state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001475{
1476 int err;
1477 err = substream->ops->prepare(substream);
1478 if (err < 0)
1479 return err;
1480 return snd_pcm_do_reset(substream, 0);
1481}
1482
Takashi Iwai877211f2005-11-17 13:59:38 +01001483static void snd_pcm_post_prepare(struct snd_pcm_substream *substream, int state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001484{
Takashi Iwai877211f2005-11-17 13:59:38 +01001485 struct snd_pcm_runtime *runtime = substream->runtime;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001486 runtime->control->appl_ptr = runtime->status->hw_ptr;
Takashi Iwai9b0573c2012-10-12 15:07:34 +02001487 snd_pcm_set_state(substream, SNDRV_PCM_STATE_PREPARED);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001488}
1489
1490static struct action_ops snd_pcm_action_prepare = {
1491 .pre_action = snd_pcm_pre_prepare,
1492 .do_action = snd_pcm_do_prepare,
1493 .post_action = snd_pcm_post_prepare
1494};
1495
1496/**
Randy Dunlap1c85cc62008-10-15 14:38:40 -07001497 * snd_pcm_prepare - prepare the PCM substream to be triggerable
Takashi Iwaidf8db932005-09-07 13:38:19 +02001498 * @substream: the PCM substream instance
Takashi Iwai0df63e42006-04-28 15:13:41 +02001499 * @file: file to refer f_flags
Yacine Belkadieb7c06e2013-03-11 22:05:14 +01001500 *
1501 * Return: Zero if successful, or a negative error code.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001502 */
Takashi Iwai0df63e42006-04-28 15:13:41 +02001503static int snd_pcm_prepare(struct snd_pcm_substream *substream,
1504 struct file *file)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001505{
1506 int res;
Takashi Iwai877211f2005-11-17 13:59:38 +01001507 struct snd_card *card = substream->pcm->card;
Takashi Iwai0df63e42006-04-28 15:13:41 +02001508 int f_flags;
1509
1510 if (file)
1511 f_flags = file->f_flags;
1512 else
1513 f_flags = substream->f_flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001514
1515 snd_power_lock(card);
Takashi Iwaicbac4b02006-03-27 12:38:07 +02001516 if ((res = snd_power_wait(card, SNDRV_CTL_POWER_D0)) >= 0)
Takashi Iwai0df63e42006-04-28 15:13:41 +02001517 res = snd_pcm_action_nonatomic(&snd_pcm_action_prepare,
1518 substream, f_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001519 snd_power_unlock(card);
1520 return res;
1521}
1522
1523/*
1524 * drain ioctl
1525 */
1526
Takashi Iwai877211f2005-11-17 13:59:38 +01001527static int snd_pcm_pre_drain_init(struct snd_pcm_substream *substream, int state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001528{
Takashi Iwai4f7c39d2012-05-21 11:59:57 +02001529 struct snd_pcm_runtime *runtime = substream->runtime;
1530 switch (runtime->status->state) {
1531 case SNDRV_PCM_STATE_OPEN:
1532 case SNDRV_PCM_STATE_DISCONNECTED:
1533 case SNDRV_PCM_STATE_SUSPENDED:
1534 return -EBADFD;
1535 }
1536 runtime->trigger_master = substream;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001537 return 0;
1538}
1539
Takashi Iwai877211f2005-11-17 13:59:38 +01001540static int snd_pcm_do_drain_init(struct snd_pcm_substream *substream, int state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001541{
Takashi Iwai877211f2005-11-17 13:59:38 +01001542 struct snd_pcm_runtime *runtime = substream->runtime;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001543 if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK) {
1544 switch (runtime->status->state) {
1545 case SNDRV_PCM_STATE_PREPARED:
1546 /* start playback stream if possible */
1547 if (! snd_pcm_playback_empty(substream)) {
1548 snd_pcm_do_start(substream, SNDRV_PCM_STATE_DRAINING);
1549 snd_pcm_post_start(substream, SNDRV_PCM_STATE_DRAINING);
1550 }
1551 break;
1552 case SNDRV_PCM_STATE_RUNNING:
1553 runtime->status->state = SNDRV_PCM_STATE_DRAINING;
1554 break;
Takashi Iwai4f7c39d2012-05-21 11:59:57 +02001555 case SNDRV_PCM_STATE_XRUN:
1556 runtime->status->state = SNDRV_PCM_STATE_SETUP;
1557 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001558 default:
1559 break;
1560 }
1561 } else {
1562 /* stop running stream */
1563 if (runtime->status->state == SNDRV_PCM_STATE_RUNNING) {
Marcin Ślusarzb05e5782007-12-14 12:50:16 +01001564 int new_state = snd_pcm_capture_avail(runtime) > 0 ?
Linus Torvalds1da177e2005-04-16 15:20:36 -07001565 SNDRV_PCM_STATE_DRAINING : SNDRV_PCM_STATE_SETUP;
Marcin Ślusarzb05e5782007-12-14 12:50:16 +01001566 snd_pcm_do_stop(substream, new_state);
1567 snd_pcm_post_stop(substream, new_state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001568 }
1569 }
1570 return 0;
1571}
1572
Takashi Iwai877211f2005-11-17 13:59:38 +01001573static void snd_pcm_post_drain_init(struct snd_pcm_substream *substream, int state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001574{
1575}
1576
1577static struct action_ops snd_pcm_action_drain_init = {
1578 .pre_action = snd_pcm_pre_drain_init,
1579 .do_action = snd_pcm_do_drain_init,
1580 .post_action = snd_pcm_post_drain_init
1581};
1582
Takashi Iwai877211f2005-11-17 13:59:38 +01001583static int snd_pcm_drop(struct snd_pcm_substream *substream);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001584
1585/*
1586 * Drain the stream(s).
1587 * When the substream is linked, sync until the draining of all playback streams
1588 * is finished.
1589 * After this call, all streams are supposed to be either SETUP or DRAINING
1590 * (capture only) state.
1591 */
Takashi Iwai4cdc1152009-08-20 16:40:16 +02001592static int snd_pcm_drain(struct snd_pcm_substream *substream,
1593 struct file *file)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001594{
Takashi Iwai877211f2005-11-17 13:59:38 +01001595 struct snd_card *card;
1596 struct snd_pcm_runtime *runtime;
Takashi Iwaief991b92007-02-22 12:52:53 +01001597 struct snd_pcm_substream *s;
Takashi Iwaid3a7dcf2009-09-17 18:46:26 +02001598 wait_queue_t wait;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001599 int result = 0;
Takashi Iwai4cdc1152009-08-20 16:40:16 +02001600 int nonblock = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001601
Linus Torvalds1da177e2005-04-16 15:20:36 -07001602 card = substream->pcm->card;
1603 runtime = substream->runtime;
1604
1605 if (runtime->status->state == SNDRV_PCM_STATE_OPEN)
1606 return -EBADFD;
1607
Linus Torvalds1da177e2005-04-16 15:20:36 -07001608 snd_power_lock(card);
1609 if (runtime->status->state == SNDRV_PCM_STATE_SUSPENDED) {
Takashi Iwaicbac4b02006-03-27 12:38:07 +02001610 result = snd_power_wait(card, SNDRV_CTL_POWER_D0);
Takashi Iwai21cb2a22005-05-31 14:35:31 +02001611 if (result < 0) {
1612 snd_power_unlock(card);
1613 return result;
1614 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001615 }
1616
Takashi Iwai4cdc1152009-08-20 16:40:16 +02001617 if (file) {
1618 if (file->f_flags & O_NONBLOCK)
1619 nonblock = 1;
1620 } else if (substream->f_flags & O_NONBLOCK)
1621 nonblock = 1;
1622
Takashi Iwai21cb2a22005-05-31 14:35:31 +02001623 down_read(&snd_pcm_link_rwsem);
Takashi Iwai21cb2a22005-05-31 14:35:31 +02001624 snd_pcm_stream_lock_irq(substream);
1625 /* resume pause */
Takashi Iwaid3a7dcf2009-09-17 18:46:26 +02001626 if (runtime->status->state == SNDRV_PCM_STATE_PAUSED)
Takashi Iwai21cb2a22005-05-31 14:35:31 +02001627 snd_pcm_pause(substream, 0);
1628
1629 /* pre-start/stop - all running streams are changed to DRAINING state */
1630 result = snd_pcm_action(&snd_pcm_action_drain_init, substream, 0);
Takashi Iwai4cdc1152009-08-20 16:40:16 +02001631 if (result < 0)
1632 goto unlock;
1633 /* in non-blocking, we don't wait in ioctl but let caller poll */
1634 if (nonblock) {
1635 result = -EAGAIN;
1636 goto unlock;
Takashi Iwai21cb2a22005-05-31 14:35:31 +02001637 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001638
1639 for (;;) {
1640 long tout;
Takashi Iwaid3a7dcf2009-09-17 18:46:26 +02001641 struct snd_pcm_runtime *to_check;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001642 if (signal_pending(current)) {
1643 result = -ERESTARTSYS;
1644 break;
1645 }
Takashi Iwaid3a7dcf2009-09-17 18:46:26 +02001646 /* find a substream to drain */
1647 to_check = NULL;
1648 snd_pcm_group_for_each_entry(s, substream) {
1649 if (s->stream != SNDRV_PCM_STREAM_PLAYBACK)
1650 continue;
1651 runtime = s->runtime;
1652 if (runtime->status->state == SNDRV_PCM_STATE_DRAINING) {
1653 to_check = runtime;
Takashi Iwai21cb2a22005-05-31 14:35:31 +02001654 break;
Takashi Iwaid3a7dcf2009-09-17 18:46:26 +02001655 }
Takashi Iwai21cb2a22005-05-31 14:35:31 +02001656 }
Takashi Iwaid3a7dcf2009-09-17 18:46:26 +02001657 if (!to_check)
1658 break; /* all drained */
1659 init_waitqueue_entry(&wait, current);
1660 add_wait_queue(&to_check->sleep, &wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001661 snd_pcm_stream_unlock_irq(substream);
Takashi Iwaid3a7dcf2009-09-17 18:46:26 +02001662 up_read(&snd_pcm_link_rwsem);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001663 snd_power_unlock(card);
Takashi Iwaif2b36142011-05-26 08:09:38 +02001664 if (runtime->no_period_wakeup)
1665 tout = MAX_SCHEDULE_TIMEOUT;
1666 else {
1667 tout = 10;
1668 if (runtime->rate) {
1669 long t = runtime->period_size * 2 / runtime->rate;
1670 tout = max(t, tout);
1671 }
1672 tout = msecs_to_jiffies(tout * 1000);
1673 }
1674 tout = schedule_timeout_interruptible(tout);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001675 snd_power_lock(card);
Takashi Iwaid3a7dcf2009-09-17 18:46:26 +02001676 down_read(&snd_pcm_link_rwsem);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001677 snd_pcm_stream_lock_irq(substream);
Takashi Iwaid3a7dcf2009-09-17 18:46:26 +02001678 remove_wait_queue(&to_check->sleep, &wait);
Takashi Iwai0914f792012-10-16 16:43:39 +02001679 if (card->shutdown) {
1680 result = -ENODEV;
1681 break;
1682 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001683 if (tout == 0) {
1684 if (substream->runtime->status->state == SNDRV_PCM_STATE_SUSPENDED)
1685 result = -ESTRPIPE;
1686 else {
Takashi Iwai09e56df2014-02-04 18:19:48 +01001687 dev_dbg(substream->pcm->card->dev,
1688 "playback drain error (DMA or IRQ trouble?)\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001689 snd_pcm_stop(substream, SNDRV_PCM_STATE_SETUP);
1690 result = -EIO;
1691 }
1692 break;
1693 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001694 }
Takashi Iwai21cb2a22005-05-31 14:35:31 +02001695
Takashi Iwai4cdc1152009-08-20 16:40:16 +02001696 unlock:
Takashi Iwai21cb2a22005-05-31 14:35:31 +02001697 snd_pcm_stream_unlock_irq(substream);
Takashi Iwaid3a7dcf2009-09-17 18:46:26 +02001698 up_read(&snd_pcm_link_rwsem);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001699 snd_power_unlock(card);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001700
1701 return result;
1702}
1703
1704/*
1705 * drop ioctl
1706 *
1707 * Immediately put all linked substreams into SETUP state.
1708 */
Takashi Iwai877211f2005-11-17 13:59:38 +01001709static int snd_pcm_drop(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001710{
Takashi Iwai877211f2005-11-17 13:59:38 +01001711 struct snd_pcm_runtime *runtime;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001712 int result = 0;
1713
Takashi Iwai7eaa9432008-08-08 17:09:09 +02001714 if (PCM_RUNTIME_CHECK(substream))
1715 return -ENXIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001716 runtime = substream->runtime;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001717
Takashi Iwaide1b8b92006-11-08 15:41:29 +01001718 if (runtime->status->state == SNDRV_PCM_STATE_OPEN ||
Takashi Iwai24e8fc42008-09-25 17:51:11 +02001719 runtime->status->state == SNDRV_PCM_STATE_DISCONNECTED ||
1720 runtime->status->state == SNDRV_PCM_STATE_SUSPENDED)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001721 return -EBADFD;
1722
Linus Torvalds1da177e2005-04-16 15:20:36 -07001723 snd_pcm_stream_lock_irq(substream);
1724 /* resume pause */
1725 if (runtime->status->state == SNDRV_PCM_STATE_PAUSED)
1726 snd_pcm_pause(substream, 0);
1727
1728 snd_pcm_stop(substream, SNDRV_PCM_STATE_SETUP);
1729 /* runtime->control->appl_ptr = runtime->status->hw_ptr; */
1730 snd_pcm_stream_unlock_irq(substream);
Takashi Iwai24e8fc42008-09-25 17:51:11 +02001731
Linus Torvalds1da177e2005-04-16 15:20:36 -07001732 return result;
1733}
1734
1735
Al Viro0888c322013-06-05 14:09:55 -04001736static bool is_pcm_file(struct file *file)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001737{
Al Viro0888c322013-06-05 14:09:55 -04001738 struct inode *inode = file_inode(file);
Clemens Ladischf87135f2005-11-20 14:06:59 +01001739 unsigned int minor;
1740
Al Viro0888c322013-06-05 14:09:55 -04001741 if (!S_ISCHR(inode->i_mode) || imajor(inode) != snd_major)
1742 return false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001743 minor = iminor(inode);
Al Viro0888c322013-06-05 14:09:55 -04001744 return snd_lookup_minor_data(minor, SNDRV_DEVICE_TYPE_PCM_PLAYBACK) ||
1745 snd_lookup_minor_data(minor, SNDRV_DEVICE_TYPE_PCM_CAPTURE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001746}
1747
1748/*
1749 * PCM link handling
1750 */
Takashi Iwai877211f2005-11-17 13:59:38 +01001751static int snd_pcm_link(struct snd_pcm_substream *substream, int fd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001752{
1753 int res = 0;
Takashi Iwai877211f2005-11-17 13:59:38 +01001754 struct snd_pcm_file *pcm_file;
1755 struct snd_pcm_substream *substream1;
Takashi Iwai16625912012-03-13 15:55:43 +01001756 struct snd_pcm_group *group;
Al Viro0888c322013-06-05 14:09:55 -04001757 struct fd f = fdget(fd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001758
Al Viro0888c322013-06-05 14:09:55 -04001759 if (!f.file)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001760 return -EBADFD;
Al Viro0888c322013-06-05 14:09:55 -04001761 if (!is_pcm_file(f.file)) {
1762 res = -EBADFD;
1763 goto _badf;
1764 }
1765 pcm_file = f.file->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001766 substream1 = pcm_file->substream;
Takashi Iwai16625912012-03-13 15:55:43 +01001767 group = kmalloc(sizeof(*group), GFP_KERNEL);
1768 if (!group) {
1769 res = -ENOMEM;
1770 goto _nolock;
1771 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001772 down_write(&snd_pcm_link_rwsem);
1773 write_lock_irq(&snd_pcm_link_rwlock);
1774 if (substream->runtime->status->state == SNDRV_PCM_STATE_OPEN ||
Takashi Iwai257f8cc2014-08-29 15:32:29 +02001775 substream->runtime->status->state != substream1->runtime->status->state ||
1776 substream->pcm->nonatomic != substream1->pcm->nonatomic) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001777 res = -EBADFD;
1778 goto _end;
1779 }
1780 if (snd_pcm_stream_linked(substream1)) {
1781 res = -EALREADY;
1782 goto _end;
1783 }
1784 if (!snd_pcm_stream_linked(substream)) {
Takashi Iwai16625912012-03-13 15:55:43 +01001785 substream->group = group;
Al Virodd6c5cd2013-06-05 14:07:08 -04001786 group = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001787 spin_lock_init(&substream->group->lock);
Takashi Iwai257f8cc2014-08-29 15:32:29 +02001788 mutex_init(&substream->group->mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001789 INIT_LIST_HEAD(&substream->group->substreams);
1790 list_add_tail(&substream->link_list, &substream->group->substreams);
1791 substream->group->count = 1;
1792 }
1793 list_add_tail(&substream1->link_list, &substream->group->substreams);
1794 substream->group->count++;
1795 substream1->group = substream->group;
1796 _end:
1797 write_unlock_irq(&snd_pcm_link_rwlock);
1798 up_write(&snd_pcm_link_rwsem);
Takashi Iwai16625912012-03-13 15:55:43 +01001799 _nolock:
Takashi Iwaia0830db2012-10-16 13:05:59 +02001800 snd_card_unref(substream1->pcm->card);
Al Virodd6c5cd2013-06-05 14:07:08 -04001801 kfree(group);
Al Viro0888c322013-06-05 14:09:55 -04001802 _badf:
1803 fdput(f);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001804 return res;
1805}
1806
Takashi Iwai877211f2005-11-17 13:59:38 +01001807static void relink_to_local(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001808{
1809 substream->group = &substream->self_group;
1810 INIT_LIST_HEAD(&substream->self_group.substreams);
1811 list_add_tail(&substream->link_list, &substream->self_group.substreams);
1812}
1813
Takashi Iwai877211f2005-11-17 13:59:38 +01001814static int snd_pcm_unlink(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001815{
Takashi Iwaief991b92007-02-22 12:52:53 +01001816 struct snd_pcm_substream *s;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001817 int res = 0;
1818
1819 down_write(&snd_pcm_link_rwsem);
1820 write_lock_irq(&snd_pcm_link_rwlock);
1821 if (!snd_pcm_stream_linked(substream)) {
1822 res = -EALREADY;
1823 goto _end;
1824 }
1825 list_del(&substream->link_list);
1826 substream->group->count--;
1827 if (substream->group->count == 1) { /* detach the last stream, too */
Takashi Iwaief991b92007-02-22 12:52:53 +01001828 snd_pcm_group_for_each_entry(s, substream) {
1829 relink_to_local(s);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001830 break;
1831 }
1832 kfree(substream->group);
1833 }
1834 relink_to_local(substream);
1835 _end:
1836 write_unlock_irq(&snd_pcm_link_rwlock);
1837 up_write(&snd_pcm_link_rwsem);
1838 return res;
1839}
1840
1841/*
1842 * hw configurator
1843 */
Takashi Iwai877211f2005-11-17 13:59:38 +01001844static int snd_pcm_hw_rule_mul(struct snd_pcm_hw_params *params,
1845 struct snd_pcm_hw_rule *rule)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001846{
Takashi Iwai877211f2005-11-17 13:59:38 +01001847 struct snd_interval t;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001848 snd_interval_mul(hw_param_interval_c(params, rule->deps[0]),
1849 hw_param_interval_c(params, rule->deps[1]), &t);
1850 return snd_interval_refine(hw_param_interval(params, rule->var), &t);
1851}
1852
Takashi Iwai877211f2005-11-17 13:59:38 +01001853static int snd_pcm_hw_rule_div(struct snd_pcm_hw_params *params,
1854 struct snd_pcm_hw_rule *rule)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001855{
Takashi Iwai877211f2005-11-17 13:59:38 +01001856 struct snd_interval t;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001857 snd_interval_div(hw_param_interval_c(params, rule->deps[0]),
1858 hw_param_interval_c(params, rule->deps[1]), &t);
1859 return snd_interval_refine(hw_param_interval(params, rule->var), &t);
1860}
1861
Takashi Iwai877211f2005-11-17 13:59:38 +01001862static int snd_pcm_hw_rule_muldivk(struct snd_pcm_hw_params *params,
1863 struct snd_pcm_hw_rule *rule)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001864{
Takashi Iwai877211f2005-11-17 13:59:38 +01001865 struct snd_interval t;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001866 snd_interval_muldivk(hw_param_interval_c(params, rule->deps[0]),
1867 hw_param_interval_c(params, rule->deps[1]),
1868 (unsigned long) rule->private, &t);
1869 return snd_interval_refine(hw_param_interval(params, rule->var), &t);
1870}
1871
Takashi Iwai877211f2005-11-17 13:59:38 +01001872static int snd_pcm_hw_rule_mulkdiv(struct snd_pcm_hw_params *params,
1873 struct snd_pcm_hw_rule *rule)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001874{
Takashi Iwai877211f2005-11-17 13:59:38 +01001875 struct snd_interval t;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001876 snd_interval_mulkdiv(hw_param_interval_c(params, rule->deps[0]),
1877 (unsigned long) rule->private,
1878 hw_param_interval_c(params, rule->deps[1]), &t);
1879 return snd_interval_refine(hw_param_interval(params, rule->var), &t);
1880}
1881
Takashi Iwai877211f2005-11-17 13:59:38 +01001882static int snd_pcm_hw_rule_format(struct snd_pcm_hw_params *params,
1883 struct snd_pcm_hw_rule *rule)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001884{
1885 unsigned int k;
Takashi Iwai877211f2005-11-17 13:59:38 +01001886 struct snd_interval *i = hw_param_interval(params, rule->deps[0]);
1887 struct snd_mask m;
1888 struct snd_mask *mask = hw_param_mask(params, SNDRV_PCM_HW_PARAM_FORMAT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001889 snd_mask_any(&m);
1890 for (k = 0; k <= SNDRV_PCM_FORMAT_LAST; ++k) {
1891 int bits;
1892 if (! snd_mask_test(mask, k))
1893 continue;
1894 bits = snd_pcm_format_physical_width(k);
1895 if (bits <= 0)
1896 continue; /* ignore invalid formats */
1897 if ((unsigned)bits < i->min || (unsigned)bits > i->max)
1898 snd_mask_reset(&m, k);
1899 }
1900 return snd_mask_refine(mask, &m);
1901}
1902
Takashi Iwai877211f2005-11-17 13:59:38 +01001903static int snd_pcm_hw_rule_sample_bits(struct snd_pcm_hw_params *params,
1904 struct snd_pcm_hw_rule *rule)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001905{
Takashi Iwai877211f2005-11-17 13:59:38 +01001906 struct snd_interval t;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001907 unsigned int k;
1908 t.min = UINT_MAX;
1909 t.max = 0;
1910 t.openmin = 0;
1911 t.openmax = 0;
1912 for (k = 0; k <= SNDRV_PCM_FORMAT_LAST; ++k) {
1913 int bits;
1914 if (! snd_mask_test(hw_param_mask(params, SNDRV_PCM_HW_PARAM_FORMAT), k))
1915 continue;
1916 bits = snd_pcm_format_physical_width(k);
1917 if (bits <= 0)
1918 continue; /* ignore invalid formats */
1919 if (t.min > (unsigned)bits)
1920 t.min = bits;
1921 if (t.max < (unsigned)bits)
1922 t.max = bits;
1923 }
1924 t.integer = 1;
1925 return snd_interval_refine(hw_param_interval(params, rule->var), &t);
1926}
1927
1928#if SNDRV_PCM_RATE_5512 != 1 << 0 || SNDRV_PCM_RATE_192000 != 1 << 12
1929#error "Change this table"
1930#endif
1931
1932static unsigned int rates[] = { 5512, 8000, 11025, 16000, 22050, 32000, 44100,
1933 48000, 64000, 88200, 96000, 176400, 192000 };
1934
Clemens Ladisch7653d552007-08-13 17:38:54 +02001935const struct snd_pcm_hw_constraint_list snd_pcm_known_rates = {
1936 .count = ARRAY_SIZE(rates),
1937 .list = rates,
1938};
1939
Takashi Iwai877211f2005-11-17 13:59:38 +01001940static int snd_pcm_hw_rule_rate(struct snd_pcm_hw_params *params,
1941 struct snd_pcm_hw_rule *rule)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001942{
Takashi Iwai877211f2005-11-17 13:59:38 +01001943 struct snd_pcm_hardware *hw = rule->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001944 return snd_interval_list(hw_param_interval(params, rule->var),
Clemens Ladisch7653d552007-08-13 17:38:54 +02001945 snd_pcm_known_rates.count,
1946 snd_pcm_known_rates.list, hw->rates);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001947}
1948
Takashi Iwai877211f2005-11-17 13:59:38 +01001949static int snd_pcm_hw_rule_buffer_bytes_max(struct snd_pcm_hw_params *params,
1950 struct snd_pcm_hw_rule *rule)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001951{
Takashi Iwai877211f2005-11-17 13:59:38 +01001952 struct snd_interval t;
1953 struct snd_pcm_substream *substream = rule->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001954 t.min = 0;
1955 t.max = substream->buffer_bytes_max;
1956 t.openmin = 0;
1957 t.openmax = 0;
1958 t.integer = 1;
1959 return snd_interval_refine(hw_param_interval(params, rule->var), &t);
1960}
1961
Takashi Iwai877211f2005-11-17 13:59:38 +01001962int snd_pcm_hw_constraints_init(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001963{
Takashi Iwai877211f2005-11-17 13:59:38 +01001964 struct snd_pcm_runtime *runtime = substream->runtime;
1965 struct snd_pcm_hw_constraints *constrs = &runtime->hw_constraints;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001966 int k, err;
1967
1968 for (k = SNDRV_PCM_HW_PARAM_FIRST_MASK; k <= SNDRV_PCM_HW_PARAM_LAST_MASK; k++) {
1969 snd_mask_any(constrs_mask(constrs, k));
1970 }
1971
1972 for (k = SNDRV_PCM_HW_PARAM_FIRST_INTERVAL; k <= SNDRV_PCM_HW_PARAM_LAST_INTERVAL; k++) {
1973 snd_interval_any(constrs_interval(constrs, k));
1974 }
1975
1976 snd_interval_setinteger(constrs_interval(constrs, SNDRV_PCM_HW_PARAM_CHANNELS));
1977 snd_interval_setinteger(constrs_interval(constrs, SNDRV_PCM_HW_PARAM_BUFFER_SIZE));
1978 snd_interval_setinteger(constrs_interval(constrs, SNDRV_PCM_HW_PARAM_BUFFER_BYTES));
1979 snd_interval_setinteger(constrs_interval(constrs, SNDRV_PCM_HW_PARAM_SAMPLE_BITS));
1980 snd_interval_setinteger(constrs_interval(constrs, SNDRV_PCM_HW_PARAM_FRAME_BITS));
1981
1982 err = snd_pcm_hw_rule_add(runtime, 0, SNDRV_PCM_HW_PARAM_FORMAT,
1983 snd_pcm_hw_rule_format, NULL,
1984 SNDRV_PCM_HW_PARAM_SAMPLE_BITS, -1);
1985 if (err < 0)
1986 return err;
1987 err = snd_pcm_hw_rule_add(runtime, 0, SNDRV_PCM_HW_PARAM_SAMPLE_BITS,
1988 snd_pcm_hw_rule_sample_bits, NULL,
1989 SNDRV_PCM_HW_PARAM_FORMAT,
1990 SNDRV_PCM_HW_PARAM_SAMPLE_BITS, -1);
1991 if (err < 0)
1992 return err;
1993 err = snd_pcm_hw_rule_add(runtime, 0, SNDRV_PCM_HW_PARAM_SAMPLE_BITS,
1994 snd_pcm_hw_rule_div, NULL,
1995 SNDRV_PCM_HW_PARAM_FRAME_BITS, SNDRV_PCM_HW_PARAM_CHANNELS, -1);
1996 if (err < 0)
1997 return err;
1998 err = snd_pcm_hw_rule_add(runtime, 0, SNDRV_PCM_HW_PARAM_FRAME_BITS,
1999 snd_pcm_hw_rule_mul, NULL,
2000 SNDRV_PCM_HW_PARAM_SAMPLE_BITS, SNDRV_PCM_HW_PARAM_CHANNELS, -1);
2001 if (err < 0)
2002 return err;
2003 err = snd_pcm_hw_rule_add(runtime, 0, SNDRV_PCM_HW_PARAM_FRAME_BITS,
2004 snd_pcm_hw_rule_mulkdiv, (void*) 8,
2005 SNDRV_PCM_HW_PARAM_PERIOD_BYTES, SNDRV_PCM_HW_PARAM_PERIOD_SIZE, -1);
2006 if (err < 0)
2007 return err;
2008 err = snd_pcm_hw_rule_add(runtime, 0, SNDRV_PCM_HW_PARAM_FRAME_BITS,
2009 snd_pcm_hw_rule_mulkdiv, (void*) 8,
2010 SNDRV_PCM_HW_PARAM_BUFFER_BYTES, SNDRV_PCM_HW_PARAM_BUFFER_SIZE, -1);
2011 if (err < 0)
2012 return err;
2013 err = snd_pcm_hw_rule_add(runtime, 0, SNDRV_PCM_HW_PARAM_CHANNELS,
2014 snd_pcm_hw_rule_div, NULL,
2015 SNDRV_PCM_HW_PARAM_FRAME_BITS, SNDRV_PCM_HW_PARAM_SAMPLE_BITS, -1);
2016 if (err < 0)
2017 return err;
2018 err = snd_pcm_hw_rule_add(runtime, 0, SNDRV_PCM_HW_PARAM_RATE,
2019 snd_pcm_hw_rule_mulkdiv, (void*) 1000000,
2020 SNDRV_PCM_HW_PARAM_PERIOD_SIZE, SNDRV_PCM_HW_PARAM_PERIOD_TIME, -1);
2021 if (err < 0)
2022 return err;
2023 err = snd_pcm_hw_rule_add(runtime, 0, SNDRV_PCM_HW_PARAM_RATE,
2024 snd_pcm_hw_rule_mulkdiv, (void*) 1000000,
2025 SNDRV_PCM_HW_PARAM_BUFFER_SIZE, SNDRV_PCM_HW_PARAM_BUFFER_TIME, -1);
2026 if (err < 0)
2027 return err;
2028 err = snd_pcm_hw_rule_add(runtime, 0, SNDRV_PCM_HW_PARAM_PERIODS,
2029 snd_pcm_hw_rule_div, NULL,
2030 SNDRV_PCM_HW_PARAM_BUFFER_SIZE, SNDRV_PCM_HW_PARAM_PERIOD_SIZE, -1);
2031 if (err < 0)
2032 return err;
2033 err = snd_pcm_hw_rule_add(runtime, 0, SNDRV_PCM_HW_PARAM_PERIOD_SIZE,
2034 snd_pcm_hw_rule_div, NULL,
2035 SNDRV_PCM_HW_PARAM_BUFFER_SIZE, SNDRV_PCM_HW_PARAM_PERIODS, -1);
2036 if (err < 0)
2037 return err;
2038 err = snd_pcm_hw_rule_add(runtime, 0, SNDRV_PCM_HW_PARAM_PERIOD_SIZE,
2039 snd_pcm_hw_rule_mulkdiv, (void*) 8,
2040 SNDRV_PCM_HW_PARAM_PERIOD_BYTES, SNDRV_PCM_HW_PARAM_FRAME_BITS, -1);
2041 if (err < 0)
2042 return err;
2043 err = snd_pcm_hw_rule_add(runtime, 0, SNDRV_PCM_HW_PARAM_PERIOD_SIZE,
2044 snd_pcm_hw_rule_muldivk, (void*) 1000000,
2045 SNDRV_PCM_HW_PARAM_PERIOD_TIME, SNDRV_PCM_HW_PARAM_RATE, -1);
2046 if (err < 0)
2047 return err;
2048 err = snd_pcm_hw_rule_add(runtime, 0, SNDRV_PCM_HW_PARAM_BUFFER_SIZE,
2049 snd_pcm_hw_rule_mul, NULL,
2050 SNDRV_PCM_HW_PARAM_PERIOD_SIZE, SNDRV_PCM_HW_PARAM_PERIODS, -1);
2051 if (err < 0)
2052 return err;
2053 err = snd_pcm_hw_rule_add(runtime, 0, SNDRV_PCM_HW_PARAM_BUFFER_SIZE,
2054 snd_pcm_hw_rule_mulkdiv, (void*) 8,
2055 SNDRV_PCM_HW_PARAM_BUFFER_BYTES, SNDRV_PCM_HW_PARAM_FRAME_BITS, -1);
2056 if (err < 0)
2057 return err;
2058 err = snd_pcm_hw_rule_add(runtime, 0, SNDRV_PCM_HW_PARAM_BUFFER_SIZE,
2059 snd_pcm_hw_rule_muldivk, (void*) 1000000,
2060 SNDRV_PCM_HW_PARAM_BUFFER_TIME, SNDRV_PCM_HW_PARAM_RATE, -1);
2061 if (err < 0)
2062 return err;
2063 err = snd_pcm_hw_rule_add(runtime, 0, SNDRV_PCM_HW_PARAM_PERIOD_BYTES,
2064 snd_pcm_hw_rule_muldivk, (void*) 8,
2065 SNDRV_PCM_HW_PARAM_PERIOD_SIZE, SNDRV_PCM_HW_PARAM_FRAME_BITS, -1);
2066 if (err < 0)
2067 return err;
2068 err = snd_pcm_hw_rule_add(runtime, 0, SNDRV_PCM_HW_PARAM_BUFFER_BYTES,
2069 snd_pcm_hw_rule_muldivk, (void*) 8,
2070 SNDRV_PCM_HW_PARAM_BUFFER_SIZE, SNDRV_PCM_HW_PARAM_FRAME_BITS, -1);
2071 if (err < 0)
2072 return err;
2073 err = snd_pcm_hw_rule_add(runtime, 0, SNDRV_PCM_HW_PARAM_PERIOD_TIME,
2074 snd_pcm_hw_rule_mulkdiv, (void*) 1000000,
2075 SNDRV_PCM_HW_PARAM_PERIOD_SIZE, SNDRV_PCM_HW_PARAM_RATE, -1);
2076 if (err < 0)
2077 return err;
2078 err = snd_pcm_hw_rule_add(runtime, 0, SNDRV_PCM_HW_PARAM_BUFFER_TIME,
2079 snd_pcm_hw_rule_mulkdiv, (void*) 1000000,
2080 SNDRV_PCM_HW_PARAM_BUFFER_SIZE, SNDRV_PCM_HW_PARAM_RATE, -1);
2081 if (err < 0)
2082 return err;
2083 return 0;
2084}
2085
Takashi Iwai877211f2005-11-17 13:59:38 +01002086int snd_pcm_hw_constraints_complete(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002087{
Takashi Iwai877211f2005-11-17 13:59:38 +01002088 struct snd_pcm_runtime *runtime = substream->runtime;
2089 struct snd_pcm_hardware *hw = &runtime->hw;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002090 int err;
2091 unsigned int mask = 0;
2092
2093 if (hw->info & SNDRV_PCM_INFO_INTERLEAVED)
2094 mask |= 1 << SNDRV_PCM_ACCESS_RW_INTERLEAVED;
2095 if (hw->info & SNDRV_PCM_INFO_NONINTERLEAVED)
2096 mask |= 1 << SNDRV_PCM_ACCESS_RW_NONINTERLEAVED;
Takashi Iwai63825f32014-10-22 12:04:46 +02002097 if (hw_support_mmap(substream)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002098 if (hw->info & SNDRV_PCM_INFO_INTERLEAVED)
2099 mask |= 1 << SNDRV_PCM_ACCESS_MMAP_INTERLEAVED;
2100 if (hw->info & SNDRV_PCM_INFO_NONINTERLEAVED)
2101 mask |= 1 << SNDRV_PCM_ACCESS_MMAP_NONINTERLEAVED;
2102 if (hw->info & SNDRV_PCM_INFO_COMPLEX)
2103 mask |= 1 << SNDRV_PCM_ACCESS_MMAP_COMPLEX;
2104 }
2105 err = snd_pcm_hw_constraint_mask(runtime, SNDRV_PCM_HW_PARAM_ACCESS, mask);
Takashi Iwai7eaa9432008-08-08 17:09:09 +02002106 if (err < 0)
2107 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002108
2109 err = snd_pcm_hw_constraint_mask64(runtime, SNDRV_PCM_HW_PARAM_FORMAT, hw->formats);
Takashi Iwai7eaa9432008-08-08 17:09:09 +02002110 if (err < 0)
2111 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002112
2113 err = snd_pcm_hw_constraint_mask(runtime, SNDRV_PCM_HW_PARAM_SUBFORMAT, 1 << SNDRV_PCM_SUBFORMAT_STD);
Takashi Iwai7eaa9432008-08-08 17:09:09 +02002114 if (err < 0)
2115 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002116
2117 err = snd_pcm_hw_constraint_minmax(runtime, SNDRV_PCM_HW_PARAM_CHANNELS,
2118 hw->channels_min, hw->channels_max);
Takashi Iwai7eaa9432008-08-08 17:09:09 +02002119 if (err < 0)
2120 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002121
2122 err = snd_pcm_hw_constraint_minmax(runtime, SNDRV_PCM_HW_PARAM_RATE,
2123 hw->rate_min, hw->rate_max);
Guennadi Liakhovetski8b90ca02009-12-24 01:17:46 +01002124 if (err < 0)
2125 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002126
2127 err = snd_pcm_hw_constraint_minmax(runtime, SNDRV_PCM_HW_PARAM_PERIOD_BYTES,
2128 hw->period_bytes_min, hw->period_bytes_max);
Guennadi Liakhovetski8b90ca02009-12-24 01:17:46 +01002129 if (err < 0)
2130 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002131
2132 err = snd_pcm_hw_constraint_minmax(runtime, SNDRV_PCM_HW_PARAM_PERIODS,
2133 hw->periods_min, hw->periods_max);
Takashi Iwai7eaa9432008-08-08 17:09:09 +02002134 if (err < 0)
2135 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002136
2137 err = snd_pcm_hw_constraint_minmax(runtime, SNDRV_PCM_HW_PARAM_BUFFER_BYTES,
2138 hw->period_bytes_min, hw->buffer_bytes_max);
Takashi Iwai7eaa9432008-08-08 17:09:09 +02002139 if (err < 0)
2140 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002141
2142 err = snd_pcm_hw_rule_add(runtime, 0, SNDRV_PCM_HW_PARAM_BUFFER_BYTES,
2143 snd_pcm_hw_rule_buffer_bytes_max, substream,
2144 SNDRV_PCM_HW_PARAM_BUFFER_BYTES, -1);
2145 if (err < 0)
2146 return err;
2147
2148 /* FIXME: remove */
2149 if (runtime->dma_bytes) {
2150 err = snd_pcm_hw_constraint_minmax(runtime, SNDRV_PCM_HW_PARAM_BUFFER_BYTES, 0, runtime->dma_bytes);
Takashi Iwai7eaa9432008-08-08 17:09:09 +02002151 if (err < 0)
Sachin Kamat6cf95152012-11-21 14:36:55 +05302152 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002153 }
2154
2155 if (!(hw->rates & (SNDRV_PCM_RATE_KNOT | SNDRV_PCM_RATE_CONTINUOUS))) {
2156 err = snd_pcm_hw_rule_add(runtime, 0, SNDRV_PCM_HW_PARAM_RATE,
2157 snd_pcm_hw_rule_rate, hw,
2158 SNDRV_PCM_HW_PARAM_RATE, -1);
2159 if (err < 0)
2160 return err;
2161 }
2162
2163 /* FIXME: this belong to lowlevel */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002164 snd_pcm_hw_constraint_integer(runtime, SNDRV_PCM_HW_PARAM_PERIOD_SIZE);
2165
2166 return 0;
2167}
2168
Takashi Iwai3bf75f92006-03-27 16:40:49 +02002169static void pcm_release_private(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002170{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002171 snd_pcm_unlink(substream);
Takashi Iwai3bf75f92006-03-27 16:40:49 +02002172}
2173
2174void snd_pcm_release_substream(struct snd_pcm_substream *substream)
2175{
Takashi Iwai0df63e42006-04-28 15:13:41 +02002176 substream->ref_count--;
2177 if (substream->ref_count > 0)
2178 return;
2179
Takashi Iwai3bf75f92006-03-27 16:40:49 +02002180 snd_pcm_drop(substream);
Takashi Iwai3bf75f92006-03-27 16:40:49 +02002181 if (substream->hw_opened) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002182 if (substream->ops->hw_free != NULL)
2183 substream->ops->hw_free(substream);
2184 substream->ops->close(substream);
Takashi Iwai3bf75f92006-03-27 16:40:49 +02002185 substream->hw_opened = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002186 }
Takashi Iwai8699a0b2010-09-16 22:52:32 +02002187 if (pm_qos_request_active(&substream->latency_pm_qos_req))
2188 pm_qos_remove_request(&substream->latency_pm_qos_req);
Takashi Iwai15762742006-04-06 19:47:42 +02002189 if (substream->pcm_release) {
2190 substream->pcm_release(substream);
2191 substream->pcm_release = NULL;
2192 }
Takashi Iwai3bf75f92006-03-27 16:40:49 +02002193 snd_pcm_detach_substream(substream);
2194}
2195
Takashi Iwaie88e8ae62006-04-28 15:13:40 +02002196EXPORT_SYMBOL(snd_pcm_release_substream);
2197
Takashi Iwai3bf75f92006-03-27 16:40:49 +02002198int snd_pcm_open_substream(struct snd_pcm *pcm, int stream,
2199 struct file *file,
2200 struct snd_pcm_substream **rsubstream)
2201{
2202 struct snd_pcm_substream *substream;
2203 int err;
2204
2205 err = snd_pcm_attach_substream(pcm, stream, file, &substream);
2206 if (err < 0)
2207 return err;
Takashi Iwai0df63e42006-04-28 15:13:41 +02002208 if (substream->ref_count > 1) {
2209 *rsubstream = substream;
2210 return 0;
2211 }
2212
Takashi Iwai3bf75f92006-03-27 16:40:49 +02002213 err = snd_pcm_hw_constraints_init(substream);
2214 if (err < 0) {
Takashi Iwai09e56df2014-02-04 18:19:48 +01002215 pcm_dbg(pcm, "snd_pcm_hw_constraints_init failed\n");
Takashi Iwai3bf75f92006-03-27 16:40:49 +02002216 goto error;
2217 }
2218
2219 if ((err = substream->ops->open(substream)) < 0)
2220 goto error;
2221
2222 substream->hw_opened = 1;
2223
2224 err = snd_pcm_hw_constraints_complete(substream);
2225 if (err < 0) {
Takashi Iwai09e56df2014-02-04 18:19:48 +01002226 pcm_dbg(pcm, "snd_pcm_hw_constraints_complete failed\n");
Takashi Iwai3bf75f92006-03-27 16:40:49 +02002227 goto error;
2228 }
2229
2230 *rsubstream = substream;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002231 return 0;
Takashi Iwai3bf75f92006-03-27 16:40:49 +02002232
2233 error:
2234 snd_pcm_release_substream(substream);
2235 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002236}
2237
Takashi Iwaie88e8ae62006-04-28 15:13:40 +02002238EXPORT_SYMBOL(snd_pcm_open_substream);
2239
Linus Torvalds1da177e2005-04-16 15:20:36 -07002240static int snd_pcm_open_file(struct file *file,
Takashi Iwai877211f2005-11-17 13:59:38 +01002241 struct snd_pcm *pcm,
Feng Tangffd3d5c2011-10-10 10:31:48 +08002242 int stream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002243{
Takashi Iwai877211f2005-11-17 13:59:38 +01002244 struct snd_pcm_file *pcm_file;
2245 struct snd_pcm_substream *substream;
Takashi Iwai3bf75f92006-03-27 16:40:49 +02002246 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002247
Takashi Iwai3bf75f92006-03-27 16:40:49 +02002248 err = snd_pcm_open_substream(pcm, stream, file, &substream);
2249 if (err < 0)
2250 return err;
2251
Takashi Iwai548a6482006-07-31 16:51:51 +02002252 pcm_file = kzalloc(sizeof(*pcm_file), GFP_KERNEL);
2253 if (pcm_file == NULL) {
2254 snd_pcm_release_substream(substream);
2255 return -ENOMEM;
2256 }
2257 pcm_file->substream = substream;
2258 if (substream->ref_count == 1) {
Takashi Iwai0df63e42006-04-28 15:13:41 +02002259 substream->file = pcm_file;
2260 substream->pcm_release = pcm_release_private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002261 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002262 file->private_data = pcm_file;
Feng Tangffd3d5c2011-10-10 10:31:48 +08002263
Linus Torvalds1da177e2005-04-16 15:20:36 -07002264 return 0;
2265}
2266
Clemens Ladischf87135f2005-11-20 14:06:59 +01002267static int snd_pcm_playback_open(struct inode *inode, struct file *file)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002268{
Takashi Iwai877211f2005-11-17 13:59:38 +01002269 struct snd_pcm *pcm;
Takashi Iwai02f48652010-04-13 11:49:04 +02002270 int err = nonseekable_open(inode, file);
2271 if (err < 0)
2272 return err;
Clemens Ladischf87135f2005-11-20 14:06:59 +01002273 pcm = snd_lookup_minor_data(iminor(inode),
2274 SNDRV_DEVICE_TYPE_PCM_PLAYBACK);
Takashi Iwaia0830db2012-10-16 13:05:59 +02002275 err = snd_pcm_open(file, pcm, SNDRV_PCM_STREAM_PLAYBACK);
Takashi Iwai8bb4d9c2012-11-08 14:36:18 +01002276 if (pcm)
2277 snd_card_unref(pcm->card);
Takashi Iwaia0830db2012-10-16 13:05:59 +02002278 return err;
Clemens Ladischf87135f2005-11-20 14:06:59 +01002279}
2280
2281static int snd_pcm_capture_open(struct inode *inode, struct file *file)
2282{
2283 struct snd_pcm *pcm;
Takashi Iwai02f48652010-04-13 11:49:04 +02002284 int err = nonseekable_open(inode, file);
2285 if (err < 0)
2286 return err;
Clemens Ladischf87135f2005-11-20 14:06:59 +01002287 pcm = snd_lookup_minor_data(iminor(inode),
2288 SNDRV_DEVICE_TYPE_PCM_CAPTURE);
Takashi Iwaia0830db2012-10-16 13:05:59 +02002289 err = snd_pcm_open(file, pcm, SNDRV_PCM_STREAM_CAPTURE);
Takashi Iwai8bb4d9c2012-11-08 14:36:18 +01002290 if (pcm)
2291 snd_card_unref(pcm->card);
Takashi Iwaia0830db2012-10-16 13:05:59 +02002292 return err;
Clemens Ladischf87135f2005-11-20 14:06:59 +01002293}
2294
2295static int snd_pcm_open(struct file *file, struct snd_pcm *pcm, int stream)
2296{
2297 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002298 wait_queue_t wait;
2299
Linus Torvalds1da177e2005-04-16 15:20:36 -07002300 if (pcm == NULL) {
2301 err = -ENODEV;
2302 goto __error1;
2303 }
2304 err = snd_card_file_add(pcm->card, file);
2305 if (err < 0)
2306 goto __error1;
2307 if (!try_module_get(pcm->card->module)) {
2308 err = -EFAULT;
2309 goto __error2;
2310 }
2311 init_waitqueue_entry(&wait, current);
2312 add_wait_queue(&pcm->open_wait, &wait);
Ingo Molnar1a60d4c2006-01-16 16:29:08 +01002313 mutex_lock(&pcm->open_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002314 while (1) {
Feng Tangffd3d5c2011-10-10 10:31:48 +08002315 err = snd_pcm_open_file(file, pcm, stream);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002316 if (err >= 0)
2317 break;
2318 if (err == -EAGAIN) {
2319 if (file->f_flags & O_NONBLOCK) {
2320 err = -EBUSY;
2321 break;
2322 }
2323 } else
2324 break;
2325 set_current_state(TASK_INTERRUPTIBLE);
Ingo Molnar1a60d4c2006-01-16 16:29:08 +01002326 mutex_unlock(&pcm->open_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002327 schedule();
Ingo Molnar1a60d4c2006-01-16 16:29:08 +01002328 mutex_lock(&pcm->open_mutex);
Takashi Iwai0914f792012-10-16 16:43:39 +02002329 if (pcm->card->shutdown) {
2330 err = -ENODEV;
2331 break;
2332 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002333 if (signal_pending(current)) {
2334 err = -ERESTARTSYS;
2335 break;
2336 }
2337 }
2338 remove_wait_queue(&pcm->open_wait, &wait);
Ingo Molnar1a60d4c2006-01-16 16:29:08 +01002339 mutex_unlock(&pcm->open_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002340 if (err < 0)
2341 goto __error;
2342 return err;
2343
2344 __error:
2345 module_put(pcm->card->module);
2346 __error2:
2347 snd_card_file_remove(pcm->card, file);
2348 __error1:
2349 return err;
2350}
2351
2352static int snd_pcm_release(struct inode *inode, struct file *file)
2353{
Takashi Iwai877211f2005-11-17 13:59:38 +01002354 struct snd_pcm *pcm;
2355 struct snd_pcm_substream *substream;
2356 struct snd_pcm_file *pcm_file;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002357
2358 pcm_file = file->private_data;
2359 substream = pcm_file->substream;
Takashi Iwai7eaa9432008-08-08 17:09:09 +02002360 if (snd_BUG_ON(!substream))
2361 return -ENXIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002362 pcm = substream->pcm;
Ingo Molnar1a60d4c2006-01-16 16:29:08 +01002363 mutex_lock(&pcm->open_mutex);
Takashi Iwai3bf75f92006-03-27 16:40:49 +02002364 snd_pcm_release_substream(substream);
Takashi Iwai548a6482006-07-31 16:51:51 +02002365 kfree(pcm_file);
Ingo Molnar1a60d4c2006-01-16 16:29:08 +01002366 mutex_unlock(&pcm->open_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002367 wake_up(&pcm->open_wait);
2368 module_put(pcm->card->module);
2369 snd_card_file_remove(pcm->card, file);
2370 return 0;
2371}
2372
Takashi Iwai877211f2005-11-17 13:59:38 +01002373static snd_pcm_sframes_t snd_pcm_playback_rewind(struct snd_pcm_substream *substream,
2374 snd_pcm_uframes_t frames)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002375{
Takashi Iwai877211f2005-11-17 13:59:38 +01002376 struct snd_pcm_runtime *runtime = substream->runtime;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002377 snd_pcm_sframes_t appl_ptr;
2378 snd_pcm_sframes_t ret;
2379 snd_pcm_sframes_t hw_avail;
2380
2381 if (frames == 0)
2382 return 0;
2383
2384 snd_pcm_stream_lock_irq(substream);
2385 switch (runtime->status->state) {
2386 case SNDRV_PCM_STATE_PREPARED:
2387 break;
2388 case SNDRV_PCM_STATE_DRAINING:
2389 case SNDRV_PCM_STATE_RUNNING:
2390 if (snd_pcm_update_hw_ptr(substream) >= 0)
2391 break;
2392 /* Fall through */
2393 case SNDRV_PCM_STATE_XRUN:
2394 ret = -EPIPE;
2395 goto __end;
Lubomir Rintel51840402009-08-02 18:14:44 +02002396 case SNDRV_PCM_STATE_SUSPENDED:
2397 ret = -ESTRPIPE;
2398 goto __end;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002399 default:
2400 ret = -EBADFD;
2401 goto __end;
2402 }
2403
2404 hw_avail = snd_pcm_playback_hw_avail(runtime);
2405 if (hw_avail <= 0) {
2406 ret = 0;
2407 goto __end;
2408 }
2409 if (frames > (snd_pcm_uframes_t)hw_avail)
2410 frames = hw_avail;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002411 appl_ptr = runtime->control->appl_ptr - frames;
2412 if (appl_ptr < 0)
2413 appl_ptr += runtime->boundary;
2414 runtime->control->appl_ptr = appl_ptr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002415 ret = frames;
2416 __end:
2417 snd_pcm_stream_unlock_irq(substream);
2418 return ret;
2419}
2420
Takashi Iwai877211f2005-11-17 13:59:38 +01002421static snd_pcm_sframes_t snd_pcm_capture_rewind(struct snd_pcm_substream *substream,
2422 snd_pcm_uframes_t frames)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002423{
Takashi Iwai877211f2005-11-17 13:59:38 +01002424 struct snd_pcm_runtime *runtime = substream->runtime;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002425 snd_pcm_sframes_t appl_ptr;
2426 snd_pcm_sframes_t ret;
2427 snd_pcm_sframes_t hw_avail;
2428
2429 if (frames == 0)
2430 return 0;
2431
2432 snd_pcm_stream_lock_irq(substream);
2433 switch (runtime->status->state) {
2434 case SNDRV_PCM_STATE_PREPARED:
2435 case SNDRV_PCM_STATE_DRAINING:
2436 break;
2437 case SNDRV_PCM_STATE_RUNNING:
2438 if (snd_pcm_update_hw_ptr(substream) >= 0)
2439 break;
2440 /* Fall through */
2441 case SNDRV_PCM_STATE_XRUN:
2442 ret = -EPIPE;
2443 goto __end;
Lubomir Rintel51840402009-08-02 18:14:44 +02002444 case SNDRV_PCM_STATE_SUSPENDED:
2445 ret = -ESTRPIPE;
2446 goto __end;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002447 default:
2448 ret = -EBADFD;
2449 goto __end;
2450 }
2451
2452 hw_avail = snd_pcm_capture_hw_avail(runtime);
2453 if (hw_avail <= 0) {
2454 ret = 0;
2455 goto __end;
2456 }
2457 if (frames > (snd_pcm_uframes_t)hw_avail)
2458 frames = hw_avail;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002459 appl_ptr = runtime->control->appl_ptr - frames;
2460 if (appl_ptr < 0)
2461 appl_ptr += runtime->boundary;
2462 runtime->control->appl_ptr = appl_ptr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002463 ret = frames;
2464 __end:
2465 snd_pcm_stream_unlock_irq(substream);
2466 return ret;
2467}
2468
Takashi Iwai877211f2005-11-17 13:59:38 +01002469static snd_pcm_sframes_t snd_pcm_playback_forward(struct snd_pcm_substream *substream,
2470 snd_pcm_uframes_t frames)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002471{
Takashi Iwai877211f2005-11-17 13:59:38 +01002472 struct snd_pcm_runtime *runtime = substream->runtime;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002473 snd_pcm_sframes_t appl_ptr;
2474 snd_pcm_sframes_t ret;
2475 snd_pcm_sframes_t avail;
2476
2477 if (frames == 0)
2478 return 0;
2479
2480 snd_pcm_stream_lock_irq(substream);
2481 switch (runtime->status->state) {
2482 case SNDRV_PCM_STATE_PREPARED:
2483 case SNDRV_PCM_STATE_PAUSED:
2484 break;
2485 case SNDRV_PCM_STATE_DRAINING:
2486 case SNDRV_PCM_STATE_RUNNING:
2487 if (snd_pcm_update_hw_ptr(substream) >= 0)
2488 break;
2489 /* Fall through */
2490 case SNDRV_PCM_STATE_XRUN:
2491 ret = -EPIPE;
2492 goto __end;
Lubomir Rintel51840402009-08-02 18:14:44 +02002493 case SNDRV_PCM_STATE_SUSPENDED:
2494 ret = -ESTRPIPE;
2495 goto __end;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002496 default:
2497 ret = -EBADFD;
2498 goto __end;
2499 }
2500
2501 avail = snd_pcm_playback_avail(runtime);
2502 if (avail <= 0) {
2503 ret = 0;
2504 goto __end;
2505 }
2506 if (frames > (snd_pcm_uframes_t)avail)
2507 frames = avail;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002508 appl_ptr = runtime->control->appl_ptr + frames;
2509 if (appl_ptr >= (snd_pcm_sframes_t)runtime->boundary)
2510 appl_ptr -= runtime->boundary;
2511 runtime->control->appl_ptr = appl_ptr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002512 ret = frames;
2513 __end:
2514 snd_pcm_stream_unlock_irq(substream);
2515 return ret;
2516}
2517
Takashi Iwai877211f2005-11-17 13:59:38 +01002518static snd_pcm_sframes_t snd_pcm_capture_forward(struct snd_pcm_substream *substream,
2519 snd_pcm_uframes_t frames)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002520{
Takashi Iwai877211f2005-11-17 13:59:38 +01002521 struct snd_pcm_runtime *runtime = substream->runtime;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002522 snd_pcm_sframes_t appl_ptr;
2523 snd_pcm_sframes_t ret;
2524 snd_pcm_sframes_t avail;
2525
2526 if (frames == 0)
2527 return 0;
2528
2529 snd_pcm_stream_lock_irq(substream);
2530 switch (runtime->status->state) {
2531 case SNDRV_PCM_STATE_PREPARED:
2532 case SNDRV_PCM_STATE_DRAINING:
2533 case SNDRV_PCM_STATE_PAUSED:
2534 break;
2535 case SNDRV_PCM_STATE_RUNNING:
2536 if (snd_pcm_update_hw_ptr(substream) >= 0)
2537 break;
2538 /* Fall through */
2539 case SNDRV_PCM_STATE_XRUN:
2540 ret = -EPIPE;
2541 goto __end;
Lubomir Rintel51840402009-08-02 18:14:44 +02002542 case SNDRV_PCM_STATE_SUSPENDED:
2543 ret = -ESTRPIPE;
2544 goto __end;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002545 default:
2546 ret = -EBADFD;
2547 goto __end;
2548 }
2549
2550 avail = snd_pcm_capture_avail(runtime);
2551 if (avail <= 0) {
2552 ret = 0;
2553 goto __end;
2554 }
2555 if (frames > (snd_pcm_uframes_t)avail)
2556 frames = avail;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002557 appl_ptr = runtime->control->appl_ptr + frames;
2558 if (appl_ptr >= (snd_pcm_sframes_t)runtime->boundary)
2559 appl_ptr -= runtime->boundary;
2560 runtime->control->appl_ptr = appl_ptr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002561 ret = frames;
2562 __end:
2563 snd_pcm_stream_unlock_irq(substream);
2564 return ret;
2565}
2566
Takashi Iwai877211f2005-11-17 13:59:38 +01002567static int snd_pcm_hwsync(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002568{
Takashi Iwai877211f2005-11-17 13:59:38 +01002569 struct snd_pcm_runtime *runtime = substream->runtime;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002570 int err;
2571
2572 snd_pcm_stream_lock_irq(substream);
2573 switch (runtime->status->state) {
2574 case SNDRV_PCM_STATE_DRAINING:
2575 if (substream->stream == SNDRV_PCM_STREAM_CAPTURE)
2576 goto __badfd;
Takashi Iwai1f961532013-10-28 12:40:46 +01002577 /* Fall through */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002578 case SNDRV_PCM_STATE_RUNNING:
2579 if ((err = snd_pcm_update_hw_ptr(substream)) < 0)
2580 break;
2581 /* Fall through */
2582 case SNDRV_PCM_STATE_PREPARED:
2583 case SNDRV_PCM_STATE_SUSPENDED:
2584 err = 0;
2585 break;
2586 case SNDRV_PCM_STATE_XRUN:
2587 err = -EPIPE;
2588 break;
2589 default:
2590 __badfd:
2591 err = -EBADFD;
2592 break;
2593 }
2594 snd_pcm_stream_unlock_irq(substream);
2595 return err;
2596}
2597
Takashi Iwai877211f2005-11-17 13:59:38 +01002598static int snd_pcm_delay(struct snd_pcm_substream *substream,
2599 snd_pcm_sframes_t __user *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002600{
Takashi Iwai877211f2005-11-17 13:59:38 +01002601 struct snd_pcm_runtime *runtime = substream->runtime;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002602 int err;
2603 snd_pcm_sframes_t n = 0;
2604
2605 snd_pcm_stream_lock_irq(substream);
2606 switch (runtime->status->state) {
2607 case SNDRV_PCM_STATE_DRAINING:
2608 if (substream->stream == SNDRV_PCM_STREAM_CAPTURE)
2609 goto __badfd;
Takashi Iwai1f961532013-10-28 12:40:46 +01002610 /* Fall through */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002611 case SNDRV_PCM_STATE_RUNNING:
2612 if ((err = snd_pcm_update_hw_ptr(substream)) < 0)
2613 break;
2614 /* Fall through */
2615 case SNDRV_PCM_STATE_PREPARED:
2616 case SNDRV_PCM_STATE_SUSPENDED:
2617 err = 0;
2618 if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK)
2619 n = snd_pcm_playback_hw_avail(runtime);
2620 else
2621 n = snd_pcm_capture_avail(runtime);
Takashi Iwai4bbe1dd2008-10-13 03:07:14 +02002622 n += runtime->delay;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002623 break;
2624 case SNDRV_PCM_STATE_XRUN:
2625 err = -EPIPE;
2626 break;
2627 default:
2628 __badfd:
2629 err = -EBADFD;
2630 break;
2631 }
2632 snd_pcm_stream_unlock_irq(substream);
2633 if (!err)
2634 if (put_user(n, res))
2635 err = -EFAULT;
2636 return err;
2637}
2638
Takashi Iwai877211f2005-11-17 13:59:38 +01002639static int snd_pcm_sync_ptr(struct snd_pcm_substream *substream,
2640 struct snd_pcm_sync_ptr __user *_sync_ptr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002641{
Takashi Iwai877211f2005-11-17 13:59:38 +01002642 struct snd_pcm_runtime *runtime = substream->runtime;
2643 struct snd_pcm_sync_ptr sync_ptr;
2644 volatile struct snd_pcm_mmap_status *status;
2645 volatile struct snd_pcm_mmap_control *control;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002646 int err;
2647
2648 memset(&sync_ptr, 0, sizeof(sync_ptr));
2649 if (get_user(sync_ptr.flags, (unsigned __user *)&(_sync_ptr->flags)))
2650 return -EFAULT;
Takashi Iwai877211f2005-11-17 13:59:38 +01002651 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 -07002652 return -EFAULT;
2653 status = runtime->status;
2654 control = runtime->control;
2655 if (sync_ptr.flags & SNDRV_PCM_SYNC_PTR_HWSYNC) {
2656 err = snd_pcm_hwsync(substream);
2657 if (err < 0)
2658 return err;
2659 }
2660 snd_pcm_stream_lock_irq(substream);
2661 if (!(sync_ptr.flags & SNDRV_PCM_SYNC_PTR_APPL))
2662 control->appl_ptr = sync_ptr.c.control.appl_ptr;
2663 else
2664 sync_ptr.c.control.appl_ptr = control->appl_ptr;
2665 if (!(sync_ptr.flags & SNDRV_PCM_SYNC_PTR_AVAIL_MIN))
2666 control->avail_min = sync_ptr.c.control.avail_min;
2667 else
2668 sync_ptr.c.control.avail_min = control->avail_min;
2669 sync_ptr.s.status.state = status->state;
2670 sync_ptr.s.status.hw_ptr = status->hw_ptr;
2671 sync_ptr.s.status.tstamp = status->tstamp;
2672 sync_ptr.s.status.suspended_state = status->suspended_state;
2673 snd_pcm_stream_unlock_irq(substream);
2674 if (copy_to_user(_sync_ptr, &sync_ptr, sizeof(sync_ptr)))
2675 return -EFAULT;
2676 return 0;
2677}
Jaroslav Kyselab751eef2007-12-13 10:19:42 +01002678
2679static int snd_pcm_tstamp(struct snd_pcm_substream *substream, int __user *_arg)
2680{
2681 struct snd_pcm_runtime *runtime = substream->runtime;
2682 int arg;
2683
2684 if (get_user(arg, _arg))
2685 return -EFAULT;
2686 if (arg < 0 || arg > SNDRV_PCM_TSTAMP_TYPE_LAST)
2687 return -EINVAL;
Takashi Iwai2408c212014-07-10 09:40:38 +02002688 runtime->tstamp_type = arg;
Jaroslav Kyselab751eef2007-12-13 10:19:42 +01002689 return 0;
2690}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002691
Takashi Iwai0df63e42006-04-28 15:13:41 +02002692static int snd_pcm_common_ioctl1(struct file *file,
2693 struct snd_pcm_substream *substream,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002694 unsigned int cmd, void __user *arg)
2695{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002696 switch (cmd) {
2697 case SNDRV_PCM_IOCTL_PVERSION:
2698 return put_user(SNDRV_PCM_VERSION, (int __user *)arg) ? -EFAULT : 0;
2699 case SNDRV_PCM_IOCTL_INFO:
2700 return snd_pcm_info_user(substream, arg);
Jaroslav Kysela28e9e472007-12-17 09:02:22 +01002701 case SNDRV_PCM_IOCTL_TSTAMP: /* just for compatibility */
2702 return 0;
Jaroslav Kyselab751eef2007-12-13 10:19:42 +01002703 case SNDRV_PCM_IOCTL_TTSTAMP:
2704 return snd_pcm_tstamp(substream, arg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002705 case SNDRV_PCM_IOCTL_HW_REFINE:
2706 return snd_pcm_hw_refine_user(substream, arg);
2707 case SNDRV_PCM_IOCTL_HW_PARAMS:
2708 return snd_pcm_hw_params_user(substream, arg);
2709 case SNDRV_PCM_IOCTL_HW_FREE:
2710 return snd_pcm_hw_free(substream);
2711 case SNDRV_PCM_IOCTL_SW_PARAMS:
2712 return snd_pcm_sw_params_user(substream, arg);
2713 case SNDRV_PCM_IOCTL_STATUS:
2714 return snd_pcm_status_user(substream, arg);
2715 case SNDRV_PCM_IOCTL_CHANNEL_INFO:
2716 return snd_pcm_channel_info_user(substream, arg);
2717 case SNDRV_PCM_IOCTL_PREPARE:
Takashi Iwai0df63e42006-04-28 15:13:41 +02002718 return snd_pcm_prepare(substream, file);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002719 case SNDRV_PCM_IOCTL_RESET:
2720 return snd_pcm_reset(substream);
2721 case SNDRV_PCM_IOCTL_START:
2722 return snd_pcm_action_lock_irq(&snd_pcm_action_start, substream, SNDRV_PCM_STATE_RUNNING);
2723 case SNDRV_PCM_IOCTL_LINK:
2724 return snd_pcm_link(substream, (int)(unsigned long) arg);
2725 case SNDRV_PCM_IOCTL_UNLINK:
2726 return snd_pcm_unlink(substream);
2727 case SNDRV_PCM_IOCTL_RESUME:
2728 return snd_pcm_resume(substream);
2729 case SNDRV_PCM_IOCTL_XRUN:
2730 return snd_pcm_xrun(substream);
2731 case SNDRV_PCM_IOCTL_HWSYNC:
2732 return snd_pcm_hwsync(substream);
2733 case SNDRV_PCM_IOCTL_DELAY:
2734 return snd_pcm_delay(substream, arg);
2735 case SNDRV_PCM_IOCTL_SYNC_PTR:
2736 return snd_pcm_sync_ptr(substream, arg);
Takashi Iwai59d48582005-12-01 10:51:58 +01002737#ifdef CONFIG_SND_SUPPORT_OLD_API
Linus Torvalds1da177e2005-04-16 15:20:36 -07002738 case SNDRV_PCM_IOCTL_HW_REFINE_OLD:
2739 return snd_pcm_hw_refine_old_user(substream, arg);
2740 case SNDRV_PCM_IOCTL_HW_PARAMS_OLD:
2741 return snd_pcm_hw_params_old_user(substream, arg);
Takashi Iwai59d48582005-12-01 10:51:58 +01002742#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002743 case SNDRV_PCM_IOCTL_DRAIN:
Takashi Iwai4cdc1152009-08-20 16:40:16 +02002744 return snd_pcm_drain(substream, file);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002745 case SNDRV_PCM_IOCTL_DROP:
2746 return snd_pcm_drop(substream);
Takashi Iwaie661d0d2006-02-21 14:14:50 +01002747 case SNDRV_PCM_IOCTL_PAUSE:
2748 {
2749 int res;
2750 snd_pcm_stream_lock_irq(substream);
2751 res = snd_pcm_pause(substream, (int)(unsigned long)arg);
2752 snd_pcm_stream_unlock_irq(substream);
2753 return res;
2754 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002755 }
Takashi Iwai09e56df2014-02-04 18:19:48 +01002756 pcm_dbg(substream->pcm, "unknown ioctl = 0x%x\n", cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002757 return -ENOTTY;
2758}
2759
Takashi Iwai0df63e42006-04-28 15:13:41 +02002760static int snd_pcm_playback_ioctl1(struct file *file,
2761 struct snd_pcm_substream *substream,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002762 unsigned int cmd, void __user *arg)
2763{
Takashi Iwai7eaa9432008-08-08 17:09:09 +02002764 if (snd_BUG_ON(!substream))
2765 return -ENXIO;
2766 if (snd_BUG_ON(substream->stream != SNDRV_PCM_STREAM_PLAYBACK))
2767 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002768 switch (cmd) {
2769 case SNDRV_PCM_IOCTL_WRITEI_FRAMES:
2770 {
Takashi Iwai877211f2005-11-17 13:59:38 +01002771 struct snd_xferi xferi;
2772 struct snd_xferi __user *_xferi = arg;
2773 struct snd_pcm_runtime *runtime = substream->runtime;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002774 snd_pcm_sframes_t result;
2775 if (runtime->status->state == SNDRV_PCM_STATE_OPEN)
2776 return -EBADFD;
2777 if (put_user(0, &_xferi->result))
2778 return -EFAULT;
2779 if (copy_from_user(&xferi, _xferi, sizeof(xferi)))
2780 return -EFAULT;
2781 result = snd_pcm_lib_write(substream, xferi.buf, xferi.frames);
2782 __put_user(result, &_xferi->result);
2783 return result < 0 ? result : 0;
2784 }
2785 case SNDRV_PCM_IOCTL_WRITEN_FRAMES:
2786 {
Takashi Iwai877211f2005-11-17 13:59:38 +01002787 struct snd_xfern xfern;
2788 struct snd_xfern __user *_xfern = arg;
2789 struct snd_pcm_runtime *runtime = substream->runtime;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002790 void __user **bufs;
2791 snd_pcm_sframes_t result;
2792 if (runtime->status->state == SNDRV_PCM_STATE_OPEN)
2793 return -EBADFD;
2794 if (runtime->channels > 128)
2795 return -EINVAL;
2796 if (put_user(0, &_xfern->result))
2797 return -EFAULT;
2798 if (copy_from_user(&xfern, _xfern, sizeof(xfern)))
2799 return -EFAULT;
Li Zefanef44a1e2009-04-10 09:43:08 +08002800
2801 bufs = memdup_user(xfern.bufs,
2802 sizeof(void *) * runtime->channels);
2803 if (IS_ERR(bufs))
2804 return PTR_ERR(bufs);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002805 result = snd_pcm_lib_writev(substream, bufs, xfern.frames);
2806 kfree(bufs);
2807 __put_user(result, &_xfern->result);
2808 return result < 0 ? result : 0;
2809 }
2810 case SNDRV_PCM_IOCTL_REWIND:
2811 {
2812 snd_pcm_uframes_t frames;
2813 snd_pcm_uframes_t __user *_frames = arg;
2814 snd_pcm_sframes_t result;
2815 if (get_user(frames, _frames))
2816 return -EFAULT;
2817 if (put_user(0, _frames))
2818 return -EFAULT;
2819 result = snd_pcm_playback_rewind(substream, frames);
2820 __put_user(result, _frames);
2821 return result < 0 ? result : 0;
2822 }
2823 case SNDRV_PCM_IOCTL_FORWARD:
2824 {
2825 snd_pcm_uframes_t frames;
2826 snd_pcm_uframes_t __user *_frames = arg;
2827 snd_pcm_sframes_t result;
2828 if (get_user(frames, _frames))
2829 return -EFAULT;
2830 if (put_user(0, _frames))
2831 return -EFAULT;
2832 result = snd_pcm_playback_forward(substream, frames);
2833 __put_user(result, _frames);
2834 return result < 0 ? result : 0;
2835 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002836 }
Takashi Iwai0df63e42006-04-28 15:13:41 +02002837 return snd_pcm_common_ioctl1(file, substream, cmd, arg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002838}
2839
Takashi Iwai0df63e42006-04-28 15:13:41 +02002840static int snd_pcm_capture_ioctl1(struct file *file,
2841 struct snd_pcm_substream *substream,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002842 unsigned int cmd, void __user *arg)
2843{
Takashi Iwai7eaa9432008-08-08 17:09:09 +02002844 if (snd_BUG_ON(!substream))
2845 return -ENXIO;
2846 if (snd_BUG_ON(substream->stream != SNDRV_PCM_STREAM_CAPTURE))
2847 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002848 switch (cmd) {
2849 case SNDRV_PCM_IOCTL_READI_FRAMES:
2850 {
Takashi Iwai877211f2005-11-17 13:59:38 +01002851 struct snd_xferi xferi;
2852 struct snd_xferi __user *_xferi = arg;
2853 struct snd_pcm_runtime *runtime = substream->runtime;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002854 snd_pcm_sframes_t result;
2855 if (runtime->status->state == SNDRV_PCM_STATE_OPEN)
2856 return -EBADFD;
2857 if (put_user(0, &_xferi->result))
2858 return -EFAULT;
2859 if (copy_from_user(&xferi, _xferi, sizeof(xferi)))
2860 return -EFAULT;
2861 result = snd_pcm_lib_read(substream, xferi.buf, xferi.frames);
2862 __put_user(result, &_xferi->result);
2863 return result < 0 ? result : 0;
2864 }
2865 case SNDRV_PCM_IOCTL_READN_FRAMES:
2866 {
Takashi Iwai877211f2005-11-17 13:59:38 +01002867 struct snd_xfern xfern;
2868 struct snd_xfern __user *_xfern = arg;
2869 struct snd_pcm_runtime *runtime = substream->runtime;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002870 void *bufs;
2871 snd_pcm_sframes_t result;
2872 if (runtime->status->state == SNDRV_PCM_STATE_OPEN)
2873 return -EBADFD;
2874 if (runtime->channels > 128)
2875 return -EINVAL;
2876 if (put_user(0, &_xfern->result))
2877 return -EFAULT;
2878 if (copy_from_user(&xfern, _xfern, sizeof(xfern)))
2879 return -EFAULT;
Li Zefanef44a1e2009-04-10 09:43:08 +08002880
2881 bufs = memdup_user(xfern.bufs,
2882 sizeof(void *) * runtime->channels);
2883 if (IS_ERR(bufs))
2884 return PTR_ERR(bufs);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002885 result = snd_pcm_lib_readv(substream, bufs, xfern.frames);
2886 kfree(bufs);
2887 __put_user(result, &_xfern->result);
2888 return result < 0 ? result : 0;
2889 }
2890 case SNDRV_PCM_IOCTL_REWIND:
2891 {
2892 snd_pcm_uframes_t frames;
2893 snd_pcm_uframes_t __user *_frames = arg;
2894 snd_pcm_sframes_t result;
2895 if (get_user(frames, _frames))
2896 return -EFAULT;
2897 if (put_user(0, _frames))
2898 return -EFAULT;
2899 result = snd_pcm_capture_rewind(substream, frames);
2900 __put_user(result, _frames);
2901 return result < 0 ? result : 0;
2902 }
2903 case SNDRV_PCM_IOCTL_FORWARD:
2904 {
2905 snd_pcm_uframes_t frames;
2906 snd_pcm_uframes_t __user *_frames = arg;
2907 snd_pcm_sframes_t result;
2908 if (get_user(frames, _frames))
2909 return -EFAULT;
2910 if (put_user(0, _frames))
2911 return -EFAULT;
2912 result = snd_pcm_capture_forward(substream, frames);
2913 __put_user(result, _frames);
2914 return result < 0 ? result : 0;
2915 }
2916 }
Takashi Iwai0df63e42006-04-28 15:13:41 +02002917 return snd_pcm_common_ioctl1(file, substream, cmd, arg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002918}
2919
Takashi Iwai877211f2005-11-17 13:59:38 +01002920static long snd_pcm_playback_ioctl(struct file *file, unsigned int cmd,
2921 unsigned long arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002922{
Takashi Iwai877211f2005-11-17 13:59:38 +01002923 struct snd_pcm_file *pcm_file;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002924
2925 pcm_file = file->private_data;
2926
2927 if (((cmd >> 8) & 0xff) != 'A')
2928 return -ENOTTY;
2929
Takashi Iwai0df63e42006-04-28 15:13:41 +02002930 return snd_pcm_playback_ioctl1(file, pcm_file->substream, cmd,
2931 (void __user *)arg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002932}
2933
Takashi Iwai877211f2005-11-17 13:59:38 +01002934static long snd_pcm_capture_ioctl(struct file *file, unsigned int cmd,
2935 unsigned long arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002936{
Takashi Iwai877211f2005-11-17 13:59:38 +01002937 struct snd_pcm_file *pcm_file;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002938
2939 pcm_file = file->private_data;
2940
2941 if (((cmd >> 8) & 0xff) != 'A')
2942 return -ENOTTY;
2943
Takashi Iwai0df63e42006-04-28 15:13:41 +02002944 return snd_pcm_capture_ioctl1(file, pcm_file->substream, cmd,
2945 (void __user *)arg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002946}
2947
Takashi Iwai877211f2005-11-17 13:59:38 +01002948int snd_pcm_kernel_ioctl(struct snd_pcm_substream *substream,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002949 unsigned int cmd, void *arg)
2950{
Takashi Iwaibf1bbb52006-03-27 16:22:45 +02002951 mm_segment_t fs;
2952 int result;
2953
2954 fs = snd_enter_user();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002955 switch (substream->stream) {
2956 case SNDRV_PCM_STREAM_PLAYBACK:
Takashi Iwai0df63e42006-04-28 15:13:41 +02002957 result = snd_pcm_playback_ioctl1(NULL, substream, cmd,
2958 (void __user *)arg);
Takashi Iwaibf1bbb52006-03-27 16:22:45 +02002959 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002960 case SNDRV_PCM_STREAM_CAPTURE:
Takashi Iwai0df63e42006-04-28 15:13:41 +02002961 result = snd_pcm_capture_ioctl1(NULL, substream, cmd,
2962 (void __user *)arg);
Takashi Iwaibf1bbb52006-03-27 16:22:45 +02002963 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002964 default:
Takashi Iwaibf1bbb52006-03-27 16:22:45 +02002965 result = -EINVAL;
2966 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002967 }
Takashi Iwaibf1bbb52006-03-27 16:22:45 +02002968 snd_leave_user(fs);
2969 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002970}
2971
Takashi Iwaie88e8ae62006-04-28 15:13:40 +02002972EXPORT_SYMBOL(snd_pcm_kernel_ioctl);
2973
Takashi Iwai877211f2005-11-17 13:59:38 +01002974static ssize_t snd_pcm_read(struct file *file, char __user *buf, size_t count,
2975 loff_t * offset)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002976{
Takashi Iwai877211f2005-11-17 13:59:38 +01002977 struct snd_pcm_file *pcm_file;
2978 struct snd_pcm_substream *substream;
2979 struct snd_pcm_runtime *runtime;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002980 snd_pcm_sframes_t result;
2981
2982 pcm_file = file->private_data;
2983 substream = pcm_file->substream;
Takashi Iwai7eaa9432008-08-08 17:09:09 +02002984 if (PCM_RUNTIME_CHECK(substream))
2985 return -ENXIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002986 runtime = substream->runtime;
2987 if (runtime->status->state == SNDRV_PCM_STATE_OPEN)
2988 return -EBADFD;
2989 if (!frame_aligned(runtime, count))
2990 return -EINVAL;
2991 count = bytes_to_frames(runtime, count);
2992 result = snd_pcm_lib_read(substream, buf, count);
2993 if (result > 0)
2994 result = frames_to_bytes(runtime, result);
2995 return result;
2996}
2997
Takashi Iwai877211f2005-11-17 13:59:38 +01002998static ssize_t snd_pcm_write(struct file *file, const char __user *buf,
2999 size_t count, loff_t * offset)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003000{
Takashi Iwai877211f2005-11-17 13:59:38 +01003001 struct snd_pcm_file *pcm_file;
3002 struct snd_pcm_substream *substream;
3003 struct snd_pcm_runtime *runtime;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003004 snd_pcm_sframes_t result;
3005
3006 pcm_file = file->private_data;
3007 substream = pcm_file->substream;
Takashi Iwai7eaa9432008-08-08 17:09:09 +02003008 if (PCM_RUNTIME_CHECK(substream))
3009 return -ENXIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003010 runtime = substream->runtime;
Takashi Iwai7eaa9432008-08-08 17:09:09 +02003011 if (runtime->status->state == SNDRV_PCM_STATE_OPEN)
3012 return -EBADFD;
3013 if (!frame_aligned(runtime, count))
3014 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003015 count = bytes_to_frames(runtime, count);
3016 result = snd_pcm_lib_write(substream, buf, count);
3017 if (result > 0)
3018 result = frames_to_bytes(runtime, result);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003019 return result;
3020}
3021
Badari Pulavartyee0b3e62006-09-30 23:28:47 -07003022static ssize_t snd_pcm_aio_read(struct kiocb *iocb, const struct iovec *iov,
3023 unsigned long nr_segs, loff_t pos)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003024
3025{
Takashi Iwai877211f2005-11-17 13:59:38 +01003026 struct snd_pcm_file *pcm_file;
3027 struct snd_pcm_substream *substream;
3028 struct snd_pcm_runtime *runtime;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003029 snd_pcm_sframes_t result;
3030 unsigned long i;
3031 void __user **bufs;
3032 snd_pcm_uframes_t frames;
3033
Badari Pulavartyee0b3e62006-09-30 23:28:47 -07003034 pcm_file = iocb->ki_filp->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003035 substream = pcm_file->substream;
Takashi Iwai7eaa9432008-08-08 17:09:09 +02003036 if (PCM_RUNTIME_CHECK(substream))
3037 return -ENXIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003038 runtime = substream->runtime;
3039 if (runtime->status->state == SNDRV_PCM_STATE_OPEN)
3040 return -EBADFD;
Badari Pulavartyee0b3e62006-09-30 23:28:47 -07003041 if (nr_segs > 1024 || nr_segs != runtime->channels)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003042 return -EINVAL;
Badari Pulavartyee0b3e62006-09-30 23:28:47 -07003043 if (!frame_aligned(runtime, iov->iov_len))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003044 return -EINVAL;
Badari Pulavartyee0b3e62006-09-30 23:28:47 -07003045 frames = bytes_to_samples(runtime, iov->iov_len);
3046 bufs = kmalloc(sizeof(void *) * nr_segs, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003047 if (bufs == NULL)
3048 return -ENOMEM;
Badari Pulavartyee0b3e62006-09-30 23:28:47 -07003049 for (i = 0; i < nr_segs; ++i)
3050 bufs[i] = iov[i].iov_base;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003051 result = snd_pcm_lib_readv(substream, bufs, frames);
3052 if (result > 0)
3053 result = frames_to_bytes(runtime, result);
3054 kfree(bufs);
3055 return result;
3056}
3057
Badari Pulavartyee0b3e62006-09-30 23:28:47 -07003058static ssize_t snd_pcm_aio_write(struct kiocb *iocb, const struct iovec *iov,
3059 unsigned long nr_segs, loff_t pos)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003060{
Takashi Iwai877211f2005-11-17 13:59:38 +01003061 struct snd_pcm_file *pcm_file;
3062 struct snd_pcm_substream *substream;
3063 struct snd_pcm_runtime *runtime;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003064 snd_pcm_sframes_t result;
3065 unsigned long i;
3066 void __user **bufs;
3067 snd_pcm_uframes_t frames;
3068
Badari Pulavartyee0b3e62006-09-30 23:28:47 -07003069 pcm_file = iocb->ki_filp->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003070 substream = pcm_file->substream;
Takashi Iwai7eaa9432008-08-08 17:09:09 +02003071 if (PCM_RUNTIME_CHECK(substream))
3072 return -ENXIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003073 runtime = substream->runtime;
Takashi Iwai7eaa9432008-08-08 17:09:09 +02003074 if (runtime->status->state == SNDRV_PCM_STATE_OPEN)
3075 return -EBADFD;
Badari Pulavartyee0b3e62006-09-30 23:28:47 -07003076 if (nr_segs > 128 || nr_segs != runtime->channels ||
Takashi Iwai7eaa9432008-08-08 17:09:09 +02003077 !frame_aligned(runtime, iov->iov_len))
3078 return -EINVAL;
Badari Pulavartyee0b3e62006-09-30 23:28:47 -07003079 frames = bytes_to_samples(runtime, iov->iov_len);
3080 bufs = kmalloc(sizeof(void *) * nr_segs, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003081 if (bufs == NULL)
3082 return -ENOMEM;
Badari Pulavartyee0b3e62006-09-30 23:28:47 -07003083 for (i = 0; i < nr_segs; ++i)
3084 bufs[i] = iov[i].iov_base;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003085 result = snd_pcm_lib_writev(substream, bufs, frames);
3086 if (result > 0)
3087 result = frames_to_bytes(runtime, result);
3088 kfree(bufs);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003089 return result;
3090}
3091
3092static unsigned int snd_pcm_playback_poll(struct file *file, poll_table * wait)
3093{
Takashi Iwai877211f2005-11-17 13:59:38 +01003094 struct snd_pcm_file *pcm_file;
3095 struct snd_pcm_substream *substream;
3096 struct snd_pcm_runtime *runtime;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003097 unsigned int mask;
3098 snd_pcm_uframes_t avail;
3099
3100 pcm_file = file->private_data;
3101
3102 substream = pcm_file->substream;
Takashi Iwai7eaa9432008-08-08 17:09:09 +02003103 if (PCM_RUNTIME_CHECK(substream))
3104 return -ENXIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003105 runtime = substream->runtime;
3106
3107 poll_wait(file, &runtime->sleep, wait);
3108
3109 snd_pcm_stream_lock_irq(substream);
3110 avail = snd_pcm_playback_avail(runtime);
3111 switch (runtime->status->state) {
3112 case SNDRV_PCM_STATE_RUNNING:
3113 case SNDRV_PCM_STATE_PREPARED:
3114 case SNDRV_PCM_STATE_PAUSED:
3115 if (avail >= runtime->control->avail_min) {
3116 mask = POLLOUT | POLLWRNORM;
3117 break;
3118 }
3119 /* Fall through */
3120 case SNDRV_PCM_STATE_DRAINING:
3121 mask = 0;
3122 break;
3123 default:
3124 mask = POLLOUT | POLLWRNORM | POLLERR;
3125 break;
3126 }
3127 snd_pcm_stream_unlock_irq(substream);
3128 return mask;
3129}
3130
3131static unsigned int snd_pcm_capture_poll(struct file *file, poll_table * wait)
3132{
Takashi Iwai877211f2005-11-17 13:59:38 +01003133 struct snd_pcm_file *pcm_file;
3134 struct snd_pcm_substream *substream;
3135 struct snd_pcm_runtime *runtime;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003136 unsigned int mask;
3137 snd_pcm_uframes_t avail;
3138
3139 pcm_file = file->private_data;
3140
3141 substream = pcm_file->substream;
Takashi Iwai7eaa9432008-08-08 17:09:09 +02003142 if (PCM_RUNTIME_CHECK(substream))
3143 return -ENXIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003144 runtime = substream->runtime;
3145
3146 poll_wait(file, &runtime->sleep, wait);
3147
3148 snd_pcm_stream_lock_irq(substream);
3149 avail = snd_pcm_capture_avail(runtime);
3150 switch (runtime->status->state) {
3151 case SNDRV_PCM_STATE_RUNNING:
3152 case SNDRV_PCM_STATE_PREPARED:
3153 case SNDRV_PCM_STATE_PAUSED:
3154 if (avail >= runtime->control->avail_min) {
3155 mask = POLLIN | POLLRDNORM;
3156 break;
3157 }
3158 mask = 0;
3159 break;
3160 case SNDRV_PCM_STATE_DRAINING:
3161 if (avail > 0) {
3162 mask = POLLIN | POLLRDNORM;
3163 break;
3164 }
3165 /* Fall through */
3166 default:
3167 mask = POLLIN | POLLRDNORM | POLLERR;
3168 break;
3169 }
3170 snd_pcm_stream_unlock_irq(substream);
3171 return mask;
3172}
3173
3174/*
3175 * mmap support
3176 */
3177
3178/*
3179 * Only on coherent architectures, we can mmap the status and the control records
3180 * for effcient data transfer. On others, we have to use HWSYNC ioctl...
3181 */
3182#if defined(CONFIG_X86) || defined(CONFIG_PPC) || defined(CONFIG_ALPHA)
3183/*
3184 * mmap status record
3185 */
Nick Piggin3ad5afc2007-12-13 16:15:00 +01003186static int snd_pcm_mmap_status_fault(struct vm_area_struct *area,
3187 struct vm_fault *vmf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003188{
Takashi Iwai877211f2005-11-17 13:59:38 +01003189 struct snd_pcm_substream *substream = area->vm_private_data;
3190 struct snd_pcm_runtime *runtime;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003191
3192 if (substream == NULL)
Nick Piggin3ad5afc2007-12-13 16:15:00 +01003193 return VM_FAULT_SIGBUS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003194 runtime = substream->runtime;
Nick Piggin3ad5afc2007-12-13 16:15:00 +01003195 vmf->page = virt_to_page(runtime->status);
3196 get_page(vmf->page);
3197 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003198}
3199
Alexey Dobriyanf0f37e22009-09-27 22:29:37 +04003200static const struct vm_operations_struct snd_pcm_vm_ops_status =
Linus Torvalds1da177e2005-04-16 15:20:36 -07003201{
Nick Piggin3ad5afc2007-12-13 16:15:00 +01003202 .fault = snd_pcm_mmap_status_fault,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003203};
3204
Takashi Iwai877211f2005-11-17 13:59:38 +01003205static int snd_pcm_mmap_status(struct snd_pcm_substream *substream, struct file *file,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003206 struct vm_area_struct *area)
3207{
Linus Torvalds1da177e2005-04-16 15:20:36 -07003208 long size;
3209 if (!(area->vm_flags & VM_READ))
3210 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003211 size = area->vm_end - area->vm_start;
Takashi Iwai877211f2005-11-17 13:59:38 +01003212 if (size != PAGE_ALIGN(sizeof(struct snd_pcm_mmap_status)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003213 return -EINVAL;
3214 area->vm_ops = &snd_pcm_vm_ops_status;
3215 area->vm_private_data = substream;
Konstantin Khlebnikov314e51b2012-10-08 16:29:02 -07003216 area->vm_flags |= VM_DONTEXPAND | VM_DONTDUMP;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003217 return 0;
3218}
3219
3220/*
3221 * mmap control record
3222 */
Nick Piggin3ad5afc2007-12-13 16:15:00 +01003223static int snd_pcm_mmap_control_fault(struct vm_area_struct *area,
3224 struct vm_fault *vmf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003225{
Takashi Iwai877211f2005-11-17 13:59:38 +01003226 struct snd_pcm_substream *substream = area->vm_private_data;
3227 struct snd_pcm_runtime *runtime;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003228
3229 if (substream == NULL)
Nick Piggin3ad5afc2007-12-13 16:15:00 +01003230 return VM_FAULT_SIGBUS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003231 runtime = substream->runtime;
Nick Piggin3ad5afc2007-12-13 16:15:00 +01003232 vmf->page = virt_to_page(runtime->control);
3233 get_page(vmf->page);
3234 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003235}
3236
Alexey Dobriyanf0f37e22009-09-27 22:29:37 +04003237static const struct vm_operations_struct snd_pcm_vm_ops_control =
Linus Torvalds1da177e2005-04-16 15:20:36 -07003238{
Nick Piggin3ad5afc2007-12-13 16:15:00 +01003239 .fault = snd_pcm_mmap_control_fault,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003240};
3241
Takashi Iwai877211f2005-11-17 13:59:38 +01003242static int snd_pcm_mmap_control(struct snd_pcm_substream *substream, struct file *file,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003243 struct vm_area_struct *area)
3244{
Linus Torvalds1da177e2005-04-16 15:20:36 -07003245 long size;
3246 if (!(area->vm_flags & VM_READ))
3247 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003248 size = area->vm_end - area->vm_start;
Takashi Iwai877211f2005-11-17 13:59:38 +01003249 if (size != PAGE_ALIGN(sizeof(struct snd_pcm_mmap_control)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003250 return -EINVAL;
3251 area->vm_ops = &snd_pcm_vm_ops_control;
3252 area->vm_private_data = substream;
Konstantin Khlebnikov314e51b2012-10-08 16:29:02 -07003253 area->vm_flags |= VM_DONTEXPAND | VM_DONTDUMP;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003254 return 0;
3255}
3256#else /* ! coherent mmap */
3257/*
3258 * don't support mmap for status and control records.
3259 */
Takashi Iwai877211f2005-11-17 13:59:38 +01003260static int snd_pcm_mmap_status(struct snd_pcm_substream *substream, struct file *file,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003261 struct vm_area_struct *area)
3262{
3263 return -ENXIO;
3264}
Takashi Iwai877211f2005-11-17 13:59:38 +01003265static int snd_pcm_mmap_control(struct snd_pcm_substream *substream, struct file *file,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003266 struct vm_area_struct *area)
3267{
3268 return -ENXIO;
3269}
3270#endif /* coherent mmap */
3271
Takashi Iwai9eb4a062009-11-26 12:43:39 +01003272static inline struct page *
3273snd_pcm_default_page_ops(struct snd_pcm_substream *substream, unsigned long ofs)
3274{
3275 void *vaddr = substream->runtime->dma_area + ofs;
3276 return virt_to_page(vaddr);
3277}
3278
Linus Torvalds1da177e2005-04-16 15:20:36 -07003279/*
Nick Piggin3ad5afc2007-12-13 16:15:00 +01003280 * fault callback for mmapping a RAM page
Linus Torvalds1da177e2005-04-16 15:20:36 -07003281 */
Nick Piggin3ad5afc2007-12-13 16:15:00 +01003282static int snd_pcm_mmap_data_fault(struct vm_area_struct *area,
3283 struct vm_fault *vmf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003284{
Takashi Iwai877211f2005-11-17 13:59:38 +01003285 struct snd_pcm_substream *substream = area->vm_private_data;
3286 struct snd_pcm_runtime *runtime;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003287 unsigned long offset;
3288 struct page * page;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003289 size_t dma_bytes;
3290
3291 if (substream == NULL)
Nick Piggin3ad5afc2007-12-13 16:15:00 +01003292 return VM_FAULT_SIGBUS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003293 runtime = substream->runtime;
Nick Piggin3ad5afc2007-12-13 16:15:00 +01003294 offset = vmf->pgoff << PAGE_SHIFT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003295 dma_bytes = PAGE_ALIGN(runtime->dma_bytes);
3296 if (offset > dma_bytes - PAGE_SIZE)
Nick Piggin3ad5afc2007-12-13 16:15:00 +01003297 return VM_FAULT_SIGBUS;
Takashi Iwai9eb4a062009-11-26 12:43:39 +01003298 if (substream->ops->page)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003299 page = substream->ops->page(substream, offset);
Takashi Iwai9eb4a062009-11-26 12:43:39 +01003300 else
3301 page = snd_pcm_default_page_ops(substream, offset);
3302 if (!page)
3303 return VM_FAULT_SIGBUS;
Nick Pigginb5810032005-10-29 18:16:12 -07003304 get_page(page);
Nick Piggin3ad5afc2007-12-13 16:15:00 +01003305 vmf->page = page;
3306 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003307}
3308
Takashi Iwai657b1982009-11-26 12:40:21 +01003309static const struct vm_operations_struct snd_pcm_vm_ops_data = {
3310 .open = snd_pcm_mmap_data_open,
3311 .close = snd_pcm_mmap_data_close,
3312};
3313
3314static const struct vm_operations_struct snd_pcm_vm_ops_data_fault = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003315 .open = snd_pcm_mmap_data_open,
3316 .close = snd_pcm_mmap_data_close,
Nick Piggin3ad5afc2007-12-13 16:15:00 +01003317 .fault = snd_pcm_mmap_data_fault,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003318};
3319
3320/*
3321 * mmap the DMA buffer on RAM
3322 */
Takashi Iwai30b771c2014-10-30 15:02:50 +01003323
3324/**
3325 * snd_pcm_lib_default_mmap - Default PCM data mmap function
3326 * @substream: PCM substream
3327 * @area: VMA
3328 *
3329 * This is the default mmap handler for PCM data. When mmap pcm_ops is NULL,
3330 * this function is invoked implicitly.
3331 */
Takashi Iwai18a2b962011-09-28 17:12:59 +02003332int snd_pcm_lib_default_mmap(struct snd_pcm_substream *substream,
3333 struct vm_area_struct *area)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003334{
Konstantin Khlebnikov314e51b2012-10-08 16:29:02 -07003335 area->vm_flags |= VM_DONTEXPAND | VM_DONTDUMP;
Takashi Iwaia5606f82013-10-24 14:25:32 +02003336#ifdef CONFIG_GENERIC_ALLOCATOR
Nicolin Chen05503212013-10-23 11:47:43 +08003337 if (substream->dma_buffer.dev.type == SNDRV_DMA_TYPE_DEV_IRAM) {
3338 area->vm_page_prot = pgprot_writecombine(area->vm_page_prot);
3339 return remap_pfn_range(area, area->vm_start,
3340 substream->dma_buffer.addr >> PAGE_SHIFT,
3341 area->vm_end - area->vm_start, area->vm_page_prot);
3342 }
Takashi Iwaia5606f82013-10-24 14:25:32 +02003343#endif /* CONFIG_GENERIC_ALLOCATOR */
Takashi Iwai49d776f2014-10-24 12:36:23 +02003344#ifndef CONFIG_X86 /* for avoiding warnings arch/x86/mm/pat.c */
Takashi Iwai657b1982009-11-26 12:40:21 +01003345 if (!substream->ops->page &&
3346 substream->dma_buffer.dev.type == SNDRV_DMA_TYPE_DEV)
3347 return dma_mmap_coherent(substream->dma_buffer.dev.dev,
3348 area,
3349 substream->runtime->dma_area,
3350 substream->runtime->dma_addr,
3351 area->vm_end - area->vm_start);
Takashi Iwai49d776f2014-10-24 12:36:23 +02003352#endif /* CONFIG_X86 */
Takashi Iwai657b1982009-11-26 12:40:21 +01003353 /* mmap with fault handler */
3354 area->vm_ops = &snd_pcm_vm_ops_data_fault;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003355 return 0;
3356}
Takashi Iwai18a2b962011-09-28 17:12:59 +02003357EXPORT_SYMBOL_GPL(snd_pcm_lib_default_mmap);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003358
3359/*
3360 * mmap the DMA buffer on I/O memory area
3361 */
3362#if SNDRV_PCM_INFO_MMAP_IOMEM
Takashi Iwai30b771c2014-10-30 15:02:50 +01003363/**
3364 * snd_pcm_lib_mmap_iomem - Default PCM data mmap function for I/O mem
3365 * @substream: PCM substream
3366 * @area: VMA
3367 *
3368 * When your hardware uses the iomapped pages as the hardware buffer and
3369 * wants to mmap it, pass this function as mmap pcm_ops. Note that this
3370 * is supposed to work only on limited architectures.
3371 */
Takashi Iwai877211f2005-11-17 13:59:38 +01003372int snd_pcm_lib_mmap_iomem(struct snd_pcm_substream *substream,
3373 struct vm_area_struct *area)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003374{
Linus Torvalds0fe09a42013-04-19 10:01:04 -07003375 struct snd_pcm_runtime *runtime = substream->runtime;;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003376
Linus Torvalds1da177e2005-04-16 15:20:36 -07003377 area->vm_page_prot = pgprot_noncached(area->vm_page_prot);
Linus Torvalds0fe09a42013-04-19 10:01:04 -07003378 return vm_iomap_memory(area, runtime->dma_addr, runtime->dma_bytes);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003379}
Takashi Iwaie88e8ae62006-04-28 15:13:40 +02003380
3381EXPORT_SYMBOL(snd_pcm_lib_mmap_iomem);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003382#endif /* SNDRV_PCM_INFO_MMAP */
3383
3384/*
3385 * mmap DMA buffer
3386 */
Takashi Iwai877211f2005-11-17 13:59:38 +01003387int snd_pcm_mmap_data(struct snd_pcm_substream *substream, struct file *file,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003388 struct vm_area_struct *area)
3389{
Takashi Iwai877211f2005-11-17 13:59:38 +01003390 struct snd_pcm_runtime *runtime;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003391 long size;
3392 unsigned long offset;
3393 size_t dma_bytes;
Takashi Iwai657b1982009-11-26 12:40:21 +01003394 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003395
3396 if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK) {
3397 if (!(area->vm_flags & (VM_WRITE|VM_READ)))
3398 return -EINVAL;
3399 } else {
3400 if (!(area->vm_flags & VM_READ))
3401 return -EINVAL;
3402 }
3403 runtime = substream->runtime;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003404 if (runtime->status->state == SNDRV_PCM_STATE_OPEN)
3405 return -EBADFD;
3406 if (!(runtime->info & SNDRV_PCM_INFO_MMAP))
3407 return -ENXIO;
3408 if (runtime->access == SNDRV_PCM_ACCESS_RW_INTERLEAVED ||
3409 runtime->access == SNDRV_PCM_ACCESS_RW_NONINTERLEAVED)
3410 return -EINVAL;
3411 size = area->vm_end - area->vm_start;
3412 offset = area->vm_pgoff << PAGE_SHIFT;
3413 dma_bytes = PAGE_ALIGN(runtime->dma_bytes);
3414 if ((size_t)size > dma_bytes)
3415 return -EINVAL;
3416 if (offset > dma_bytes - size)
3417 return -EINVAL;
3418
Takashi Iwai657b1982009-11-26 12:40:21 +01003419 area->vm_ops = &snd_pcm_vm_ops_data;
3420 area->vm_private_data = substream;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003421 if (substream->ops->mmap)
Takashi Iwai657b1982009-11-26 12:40:21 +01003422 err = substream->ops->mmap(substream, area);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003423 else
Takashi Iwai18a2b962011-09-28 17:12:59 +02003424 err = snd_pcm_lib_default_mmap(substream, area);
Takashi Iwai657b1982009-11-26 12:40:21 +01003425 if (!err)
3426 atomic_inc(&substream->mmap_count);
3427 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003428}
3429
Takashi Iwaie88e8ae62006-04-28 15:13:40 +02003430EXPORT_SYMBOL(snd_pcm_mmap_data);
3431
Linus Torvalds1da177e2005-04-16 15:20:36 -07003432static int snd_pcm_mmap(struct file *file, struct vm_area_struct *area)
3433{
Takashi Iwai877211f2005-11-17 13:59:38 +01003434 struct snd_pcm_file * pcm_file;
3435 struct snd_pcm_substream *substream;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003436 unsigned long offset;
3437
3438 pcm_file = file->private_data;
3439 substream = pcm_file->substream;
Takashi Iwai7eaa9432008-08-08 17:09:09 +02003440 if (PCM_RUNTIME_CHECK(substream))
3441 return -ENXIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003442
3443 offset = area->vm_pgoff << PAGE_SHIFT;
3444 switch (offset) {
3445 case SNDRV_PCM_MMAP_OFFSET_STATUS:
Takashi Iwai548a6482006-07-31 16:51:51 +02003446 if (pcm_file->no_compat_mmap)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003447 return -ENXIO;
3448 return snd_pcm_mmap_status(substream, file, area);
3449 case SNDRV_PCM_MMAP_OFFSET_CONTROL:
Takashi Iwai548a6482006-07-31 16:51:51 +02003450 if (pcm_file->no_compat_mmap)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003451 return -ENXIO;
3452 return snd_pcm_mmap_control(substream, file, area);
3453 default:
3454 return snd_pcm_mmap_data(substream, file, area);
3455 }
3456 return 0;
3457}
3458
3459static int snd_pcm_fasync(int fd, struct file * file, int on)
3460{
Takashi Iwai877211f2005-11-17 13:59:38 +01003461 struct snd_pcm_file * pcm_file;
3462 struct snd_pcm_substream *substream;
3463 struct snd_pcm_runtime *runtime;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003464
3465 pcm_file = file->private_data;
3466 substream = pcm_file->substream;
Takashi Iwai7eaa9432008-08-08 17:09:09 +02003467 if (PCM_RUNTIME_CHECK(substream))
Takashi Iwaid05468b2010-04-07 18:29:46 +02003468 return -ENXIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003469 runtime = substream->runtime;
Takashi Iwaid05468b2010-04-07 18:29:46 +02003470 return fasync_helper(fd, file, on, &runtime->fasync);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003471}
3472
3473/*
3474 * ioctl32 compat
3475 */
3476#ifdef CONFIG_COMPAT
3477#include "pcm_compat.c"
3478#else
3479#define snd_pcm_ioctl_compat NULL
3480#endif
3481
3482/*
3483 * To be removed helpers to keep binary compatibility
3484 */
3485
Takashi Iwai59d48582005-12-01 10:51:58 +01003486#ifdef CONFIG_SND_SUPPORT_OLD_API
Linus Torvalds1da177e2005-04-16 15:20:36 -07003487#define __OLD_TO_NEW_MASK(x) ((x&7)|((x&0x07fffff8)<<5))
3488#define __NEW_TO_OLD_MASK(x) ((x&7)|((x&0xffffff00)>>5))
3489
Takashi Iwai877211f2005-11-17 13:59:38 +01003490static void snd_pcm_hw_convert_from_old_params(struct snd_pcm_hw_params *params,
3491 struct snd_pcm_hw_params_old *oparams)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003492{
3493 unsigned int i;
3494
3495 memset(params, 0, sizeof(*params));
3496 params->flags = oparams->flags;
3497 for (i = 0; i < ARRAY_SIZE(oparams->masks); i++)
3498 params->masks[i].bits[0] = oparams->masks[i];
3499 memcpy(params->intervals, oparams->intervals, sizeof(oparams->intervals));
3500 params->rmask = __OLD_TO_NEW_MASK(oparams->rmask);
3501 params->cmask = __OLD_TO_NEW_MASK(oparams->cmask);
3502 params->info = oparams->info;
3503 params->msbits = oparams->msbits;
3504 params->rate_num = oparams->rate_num;
3505 params->rate_den = oparams->rate_den;
3506 params->fifo_size = oparams->fifo_size;
3507}
3508
Takashi Iwai877211f2005-11-17 13:59:38 +01003509static void snd_pcm_hw_convert_to_old_params(struct snd_pcm_hw_params_old *oparams,
3510 struct snd_pcm_hw_params *params)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003511{
3512 unsigned int i;
3513
3514 memset(oparams, 0, sizeof(*oparams));
3515 oparams->flags = params->flags;
3516 for (i = 0; i < ARRAY_SIZE(oparams->masks); i++)
3517 oparams->masks[i] = params->masks[i].bits[0];
3518 memcpy(oparams->intervals, params->intervals, sizeof(oparams->intervals));
3519 oparams->rmask = __NEW_TO_OLD_MASK(params->rmask);
3520 oparams->cmask = __NEW_TO_OLD_MASK(params->cmask);
3521 oparams->info = params->info;
3522 oparams->msbits = params->msbits;
3523 oparams->rate_num = params->rate_num;
3524 oparams->rate_den = params->rate_den;
3525 oparams->fifo_size = params->fifo_size;
3526}
3527
Takashi Iwai877211f2005-11-17 13:59:38 +01003528static int snd_pcm_hw_refine_old_user(struct snd_pcm_substream *substream,
3529 struct snd_pcm_hw_params_old __user * _oparams)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003530{
Takashi Iwai877211f2005-11-17 13:59:38 +01003531 struct snd_pcm_hw_params *params;
3532 struct snd_pcm_hw_params_old *oparams = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003533 int err;
3534
3535 params = kmalloc(sizeof(*params), GFP_KERNEL);
Li Zefanef44a1e2009-04-10 09:43:08 +08003536 if (!params)
3537 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003538
Li Zefanef44a1e2009-04-10 09:43:08 +08003539 oparams = memdup_user(_oparams, sizeof(*oparams));
3540 if (IS_ERR(oparams)) {
3541 err = PTR_ERR(oparams);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003542 goto out;
3543 }
3544 snd_pcm_hw_convert_from_old_params(params, oparams);
3545 err = snd_pcm_hw_refine(substream, params);
3546 snd_pcm_hw_convert_to_old_params(oparams, params);
3547 if (copy_to_user(_oparams, oparams, sizeof(*oparams))) {
3548 if (!err)
3549 err = -EFAULT;
3550 }
Li Zefanef44a1e2009-04-10 09:43:08 +08003551
3552 kfree(oparams);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003553out:
3554 kfree(params);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003555 return err;
3556}
3557
Takashi Iwai877211f2005-11-17 13:59:38 +01003558static int snd_pcm_hw_params_old_user(struct snd_pcm_substream *substream,
3559 struct snd_pcm_hw_params_old __user * _oparams)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003560{
Takashi Iwai877211f2005-11-17 13:59:38 +01003561 struct snd_pcm_hw_params *params;
3562 struct snd_pcm_hw_params_old *oparams = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003563 int err;
3564
3565 params = kmalloc(sizeof(*params), GFP_KERNEL);
Li Zefanef44a1e2009-04-10 09:43:08 +08003566 if (!params)
3567 return -ENOMEM;
3568
3569 oparams = memdup_user(_oparams, sizeof(*oparams));
3570 if (IS_ERR(oparams)) {
3571 err = PTR_ERR(oparams);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003572 goto out;
3573 }
3574 snd_pcm_hw_convert_from_old_params(params, oparams);
3575 err = snd_pcm_hw_params(substream, params);
3576 snd_pcm_hw_convert_to_old_params(oparams, params);
3577 if (copy_to_user(_oparams, oparams, sizeof(*oparams))) {
3578 if (!err)
3579 err = -EFAULT;
3580 }
Li Zefanef44a1e2009-04-10 09:43:08 +08003581
3582 kfree(oparams);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003583out:
3584 kfree(params);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003585 return err;
3586}
Takashi Iwai59d48582005-12-01 10:51:58 +01003587#endif /* CONFIG_SND_SUPPORT_OLD_API */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003588
Cliff Cai70036092008-09-03 10:54:36 +02003589#ifndef CONFIG_MMU
Daniel Glöckner55c63bd2010-03-09 12:57:52 -05003590static unsigned long snd_pcm_get_unmapped_area(struct file *file,
3591 unsigned long addr,
3592 unsigned long len,
3593 unsigned long pgoff,
3594 unsigned long flags)
Cliff Cai70036092008-09-03 10:54:36 +02003595{
Daniel Glöckner55c63bd2010-03-09 12:57:52 -05003596 struct snd_pcm_file *pcm_file = file->private_data;
3597 struct snd_pcm_substream *substream = pcm_file->substream;
3598 struct snd_pcm_runtime *runtime = substream->runtime;
3599 unsigned long offset = pgoff << PAGE_SHIFT;
3600
3601 switch (offset) {
3602 case SNDRV_PCM_MMAP_OFFSET_STATUS:
3603 return (unsigned long)runtime->status;
3604 case SNDRV_PCM_MMAP_OFFSET_CONTROL:
3605 return (unsigned long)runtime->control;
3606 default:
3607 return (unsigned long)runtime->dma_area + offset;
3608 }
Cliff Cai70036092008-09-03 10:54:36 +02003609}
3610#else
Daniel Glöckner55c63bd2010-03-09 12:57:52 -05003611# define snd_pcm_get_unmapped_area NULL
Cliff Cai70036092008-09-03 10:54:36 +02003612#endif
3613
Linus Torvalds1da177e2005-04-16 15:20:36 -07003614/*
3615 * Register section
3616 */
3617
Arjan van de Ven9c2e08c2007-02-12 00:55:37 -08003618const struct file_operations snd_pcm_f_ops[2] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003619 {
Clemens Ladisch2af677f2005-11-20 14:03:48 +01003620 .owner = THIS_MODULE,
3621 .write = snd_pcm_write,
Badari Pulavartyee0b3e62006-09-30 23:28:47 -07003622 .aio_write = snd_pcm_aio_write,
Clemens Ladischf87135f2005-11-20 14:06:59 +01003623 .open = snd_pcm_playback_open,
Clemens Ladisch2af677f2005-11-20 14:03:48 +01003624 .release = snd_pcm_release,
Takashi Iwai02f48652010-04-13 11:49:04 +02003625 .llseek = no_llseek,
Clemens Ladisch2af677f2005-11-20 14:03:48 +01003626 .poll = snd_pcm_playback_poll,
3627 .unlocked_ioctl = snd_pcm_playback_ioctl,
3628 .compat_ioctl = snd_pcm_ioctl_compat,
3629 .mmap = snd_pcm_mmap,
3630 .fasync = snd_pcm_fasync,
Daniel Glöckner55c63bd2010-03-09 12:57:52 -05003631 .get_unmapped_area = snd_pcm_get_unmapped_area,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003632 },
3633 {
Clemens Ladisch2af677f2005-11-20 14:03:48 +01003634 .owner = THIS_MODULE,
3635 .read = snd_pcm_read,
Badari Pulavartyee0b3e62006-09-30 23:28:47 -07003636 .aio_read = snd_pcm_aio_read,
Clemens Ladischf87135f2005-11-20 14:06:59 +01003637 .open = snd_pcm_capture_open,
Clemens Ladisch2af677f2005-11-20 14:03:48 +01003638 .release = snd_pcm_release,
Takashi Iwai02f48652010-04-13 11:49:04 +02003639 .llseek = no_llseek,
Clemens Ladisch2af677f2005-11-20 14:03:48 +01003640 .poll = snd_pcm_capture_poll,
3641 .unlocked_ioctl = snd_pcm_capture_ioctl,
3642 .compat_ioctl = snd_pcm_ioctl_compat,
3643 .mmap = snd_pcm_mmap,
3644 .fasync = snd_pcm_fasync,
Daniel Glöckner55c63bd2010-03-09 12:57:52 -05003645 .get_unmapped_area = snd_pcm_get_unmapped_area,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003646 }
3647};