blob: 7c800012fff9771d89782e0960730f48bb65e70b [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>
Linus Torvalds1da177e2005-04-16 15:20:36 -070028#include <linux/uio.h>
Takashi Iwai657b1982009-11-26 12:40:21 +010029#include <linux/dma-mapping.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070030#include <sound/core.h>
31#include <sound/control.h>
32#include <sound/info.h>
33#include <sound/pcm.h>
34#include <sound/pcm_params.h>
35#include <sound/timer.h>
36#include <sound/minors.h>
37#include <asm/io.h>
Takashi Iwai9fe17b52010-05-12 10:32:42 +020038#if defined(CONFIG_MIPS) && defined(CONFIG_DMA_NONCOHERENT)
39#include <dma-coherence.h>
40#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070041
42/*
43 * Compatibility
44 */
45
Takashi Iwai877211f2005-11-17 13:59:38 +010046struct snd_pcm_hw_params_old {
Linus Torvalds1da177e2005-04-16 15:20:36 -070047 unsigned int flags;
48 unsigned int masks[SNDRV_PCM_HW_PARAM_SUBFORMAT -
49 SNDRV_PCM_HW_PARAM_ACCESS + 1];
Takashi Iwai877211f2005-11-17 13:59:38 +010050 struct snd_interval intervals[SNDRV_PCM_HW_PARAM_TICK_TIME -
Linus Torvalds1da177e2005-04-16 15:20:36 -070051 SNDRV_PCM_HW_PARAM_SAMPLE_BITS + 1];
52 unsigned int rmask;
53 unsigned int cmask;
54 unsigned int info;
55 unsigned int msbits;
56 unsigned int rate_num;
57 unsigned int rate_den;
Takashi Iwai877211f2005-11-17 13:59:38 +010058 snd_pcm_uframes_t fifo_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -070059 unsigned char reserved[64];
60};
61
Takashi Iwai59d48582005-12-01 10:51:58 +010062#ifdef CONFIG_SND_SUPPORT_OLD_API
Takashi Iwai877211f2005-11-17 13:59:38 +010063#define SNDRV_PCM_IOCTL_HW_REFINE_OLD _IOWR('A', 0x10, struct snd_pcm_hw_params_old)
64#define SNDRV_PCM_IOCTL_HW_PARAMS_OLD _IOWR('A', 0x11, struct snd_pcm_hw_params_old)
Linus Torvalds1da177e2005-04-16 15:20:36 -070065
Takashi Iwai877211f2005-11-17 13:59:38 +010066static int snd_pcm_hw_refine_old_user(struct snd_pcm_substream *substream,
67 struct snd_pcm_hw_params_old __user * _oparams);
68static int snd_pcm_hw_params_old_user(struct snd_pcm_substream *substream,
69 struct snd_pcm_hw_params_old __user * _oparams);
Takashi Iwai59d48582005-12-01 10:51:58 +010070#endif
Clemens Ladischf87135f2005-11-20 14:06:59 +010071static int snd_pcm_open(struct file *file, struct snd_pcm *pcm, int stream);
Linus Torvalds1da177e2005-04-16 15:20:36 -070072
73/*
74 *
75 */
76
77DEFINE_RWLOCK(snd_pcm_link_rwlock);
Takashi Iwaie88e8ae62006-04-28 15:13:40 +020078EXPORT_SYMBOL(snd_pcm_link_rwlock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070079
Takashi Iwaie88e8ae62006-04-28 15:13:40 +020080static DECLARE_RWSEM(snd_pcm_link_rwsem);
Linus Torvalds1da177e2005-04-16 15:20:36 -070081
82static inline mm_segment_t snd_enter_user(void)
83{
84 mm_segment_t fs = get_fs();
85 set_fs(get_ds());
86 return fs;
87}
88
89static inline void snd_leave_user(mm_segment_t fs)
90{
91 set_fs(fs);
92}
93
94
95
Takashi Iwai877211f2005-11-17 13:59:38 +010096int snd_pcm_info(struct snd_pcm_substream *substream, struct snd_pcm_info *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -070097{
Takashi Iwai877211f2005-11-17 13:59:38 +010098 struct snd_pcm_runtime *runtime;
99 struct snd_pcm *pcm = substream->pcm;
100 struct snd_pcm_str *pstr = substream->pstr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102 memset(info, 0, sizeof(*info));
103 info->card = pcm->card->number;
104 info->device = pcm->device;
105 info->stream = substream->stream;
106 info->subdevice = substream->number;
107 strlcpy(info->id, pcm->id, sizeof(info->id));
108 strlcpy(info->name, pcm->name, sizeof(info->name));
109 info->dev_class = pcm->dev_class;
110 info->dev_subclass = pcm->dev_subclass;
111 info->subdevices_count = pstr->substream_count;
112 info->subdevices_avail = pstr->substream_count - pstr->substream_opened;
113 strlcpy(info->subname, substream->name, sizeof(info->subname));
114 runtime = substream->runtime;
115 /* AB: FIXME!!! This is definitely nonsense */
116 if (runtime) {
117 info->sync = runtime->sync;
118 substream->ops->ioctl(substream, SNDRV_PCM_IOCTL1_INFO, info);
119 }
120 return 0;
121}
122
Takashi Iwai877211f2005-11-17 13:59:38 +0100123int snd_pcm_info_user(struct snd_pcm_substream *substream,
124 struct snd_pcm_info __user * _info)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125{
Takashi Iwai877211f2005-11-17 13:59:38 +0100126 struct snd_pcm_info *info;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127 int err;
128
129 info = kmalloc(sizeof(*info), GFP_KERNEL);
130 if (! info)
131 return -ENOMEM;
132 err = snd_pcm_info(substream, info);
133 if (err >= 0) {
134 if (copy_to_user(_info, info, sizeof(*info)))
135 err = -EFAULT;
136 }
137 kfree(info);
138 return err;
139}
140
141#undef RULES_DEBUG
142
143#ifdef RULES_DEBUG
144#define HW_PARAM(v) [SNDRV_PCM_HW_PARAM_##v] = #v
Joe Perches47023ec2010-09-13 21:24:02 -0700145static const char * const snd_pcm_hw_param_names[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146 HW_PARAM(ACCESS),
147 HW_PARAM(FORMAT),
148 HW_PARAM(SUBFORMAT),
149 HW_PARAM(SAMPLE_BITS),
150 HW_PARAM(FRAME_BITS),
151 HW_PARAM(CHANNELS),
152 HW_PARAM(RATE),
153 HW_PARAM(PERIOD_TIME),
154 HW_PARAM(PERIOD_SIZE),
155 HW_PARAM(PERIOD_BYTES),
156 HW_PARAM(PERIODS),
157 HW_PARAM(BUFFER_TIME),
158 HW_PARAM(BUFFER_SIZE),
159 HW_PARAM(BUFFER_BYTES),
160 HW_PARAM(TICK_TIME),
161};
162#endif
163
Takashi Iwai877211f2005-11-17 13:59:38 +0100164int snd_pcm_hw_refine(struct snd_pcm_substream *substream,
165 struct snd_pcm_hw_params *params)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166{
167 unsigned int k;
Takashi Iwai877211f2005-11-17 13:59:38 +0100168 struct snd_pcm_hardware *hw;
169 struct snd_interval *i = NULL;
170 struct snd_mask *m = NULL;
171 struct snd_pcm_hw_constraints *constrs = &substream->runtime->hw_constraints;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172 unsigned int rstamps[constrs->rules_num];
173 unsigned int vstamps[SNDRV_PCM_HW_PARAM_LAST_INTERVAL + 1];
174 unsigned int stamp = 2;
175 int changed, again;
176
177 params->info = 0;
178 params->fifo_size = 0;
179 if (params->rmask & (1 << SNDRV_PCM_HW_PARAM_SAMPLE_BITS))
180 params->msbits = 0;
181 if (params->rmask & (1 << SNDRV_PCM_HW_PARAM_RATE)) {
182 params->rate_num = 0;
183 params->rate_den = 0;
184 }
185
186 for (k = SNDRV_PCM_HW_PARAM_FIRST_MASK; k <= SNDRV_PCM_HW_PARAM_LAST_MASK; k++) {
187 m = hw_param_mask(params, k);
188 if (snd_mask_empty(m))
189 return -EINVAL;
190 if (!(params->rmask & (1 << k)))
191 continue;
192#ifdef RULES_DEBUG
Takashi Iwai006de2672009-02-05 15:51:04 +0100193 printk(KERN_DEBUG "%s = ", snd_pcm_hw_param_names[k]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194 printk("%04x%04x%04x%04x -> ", m->bits[3], m->bits[2], m->bits[1], m->bits[0]);
195#endif
196 changed = snd_mask_refine(m, constrs_mask(constrs, k));
197#ifdef RULES_DEBUG
198 printk("%04x%04x%04x%04x\n", m->bits[3], m->bits[2], m->bits[1], m->bits[0]);
199#endif
200 if (changed)
201 params->cmask |= 1 << k;
202 if (changed < 0)
203 return changed;
204 }
205
206 for (k = SNDRV_PCM_HW_PARAM_FIRST_INTERVAL; k <= SNDRV_PCM_HW_PARAM_LAST_INTERVAL; k++) {
207 i = hw_param_interval(params, k);
208 if (snd_interval_empty(i))
209 return -EINVAL;
210 if (!(params->rmask & (1 << k)))
211 continue;
212#ifdef RULES_DEBUG
Takashi Iwai006de2672009-02-05 15:51:04 +0100213 printk(KERN_DEBUG "%s = ", snd_pcm_hw_param_names[k]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214 if (i->empty)
215 printk("empty");
216 else
217 printk("%c%u %u%c",
218 i->openmin ? '(' : '[', i->min,
219 i->max, i->openmax ? ')' : ']');
220 printk(" -> ");
221#endif
222 changed = snd_interval_refine(i, constrs_interval(constrs, k));
223#ifdef RULES_DEBUG
224 if (i->empty)
225 printk("empty\n");
226 else
227 printk("%c%u %u%c\n",
228 i->openmin ? '(' : '[', i->min,
229 i->max, i->openmax ? ')' : ']');
230#endif
231 if (changed)
232 params->cmask |= 1 << k;
233 if (changed < 0)
234 return changed;
235 }
236
237 for (k = 0; k < constrs->rules_num; k++)
238 rstamps[k] = 0;
239 for (k = 0; k <= SNDRV_PCM_HW_PARAM_LAST_INTERVAL; k++)
240 vstamps[k] = (params->rmask & (1 << k)) ? 1 : 0;
241 do {
242 again = 0;
243 for (k = 0; k < constrs->rules_num; k++) {
Takashi Iwai877211f2005-11-17 13:59:38 +0100244 struct snd_pcm_hw_rule *r = &constrs->rules[k];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245 unsigned int d;
246 int doit = 0;
247 if (r->cond && !(r->cond & params->flags))
248 continue;
249 for (d = 0; r->deps[d] >= 0; d++) {
250 if (vstamps[r->deps[d]] > rstamps[k]) {
251 doit = 1;
252 break;
253 }
254 }
255 if (!doit)
256 continue;
257#ifdef RULES_DEBUG
Takashi Iwai006de2672009-02-05 15:51:04 +0100258 printk(KERN_DEBUG "Rule %d [%p]: ", k, r->func);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259 if (r->var >= 0) {
260 printk("%s = ", snd_pcm_hw_param_names[r->var]);
261 if (hw_is_mask(r->var)) {
262 m = hw_param_mask(params, r->var);
263 printk("%x", *m->bits);
264 } else {
265 i = hw_param_interval(params, r->var);
266 if (i->empty)
267 printk("empty");
268 else
269 printk("%c%u %u%c",
270 i->openmin ? '(' : '[', i->min,
271 i->max, i->openmax ? ')' : ']');
272 }
273 }
274#endif
275 changed = r->func(params, r);
276#ifdef RULES_DEBUG
277 if (r->var >= 0) {
278 printk(" -> ");
279 if (hw_is_mask(r->var))
280 printk("%x", *m->bits);
281 else {
282 if (i->empty)
283 printk("empty");
284 else
285 printk("%c%u %u%c",
286 i->openmin ? '(' : '[', i->min,
287 i->max, i->openmax ? ')' : ']');
288 }
289 }
290 printk("\n");
291#endif
292 rstamps[k] = stamp;
293 if (changed && r->var >= 0) {
294 params->cmask |= (1 << r->var);
295 vstamps[r->var] = stamp;
296 again = 1;
297 }
298 if (changed < 0)
299 return changed;
300 stamp++;
301 }
302 } while (again);
303 if (!params->msbits) {
304 i = hw_param_interval(params, SNDRV_PCM_HW_PARAM_SAMPLE_BITS);
305 if (snd_interval_single(i))
306 params->msbits = snd_interval_value(i);
307 }
308
309 if (!params->rate_den) {
310 i = hw_param_interval(params, SNDRV_PCM_HW_PARAM_RATE);
311 if (snd_interval_single(i)) {
312 params->rate_num = snd_interval_value(i);
313 params->rate_den = 1;
314 }
315 }
316
317 hw = &substream->runtime->hw;
318 if (!params->info)
Jaroslav Kysela8bea8692009-04-27 09:44:40 +0200319 params->info = hw->info & ~SNDRV_PCM_INFO_FIFO_IN_FRAMES;
320 if (!params->fifo_size) {
Jaroslav Kysela3be522a2010-02-16 11:55:43 +0100321 m = hw_param_mask(params, SNDRV_PCM_HW_PARAM_FORMAT);
322 i = hw_param_interval(params, SNDRV_PCM_HW_PARAM_CHANNELS);
323 if (snd_mask_min(m) == snd_mask_max(m) &&
324 snd_interval_min(i) == snd_interval_max(i)) {
Jaroslav Kysela8bea8692009-04-27 09:44:40 +0200325 changed = substream->ops->ioctl(substream,
326 SNDRV_PCM_IOCTL1_FIFO_SIZE, params);
Mariusz Kozlowski8bd9bca2009-06-21 20:26:59 +0200327 if (changed < 0)
Jaroslav Kysela8bea8692009-04-27 09:44:40 +0200328 return changed;
329 }
330 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331 params->rmask = 0;
332 return 0;
333}
334
Takashi Iwaie88e8ae62006-04-28 15:13:40 +0200335EXPORT_SYMBOL(snd_pcm_hw_refine);
336
Takashi Iwai877211f2005-11-17 13:59:38 +0100337static int snd_pcm_hw_refine_user(struct snd_pcm_substream *substream,
338 struct snd_pcm_hw_params __user * _params)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700339{
Takashi Iwai877211f2005-11-17 13:59:38 +0100340 struct snd_pcm_hw_params *params;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341 int err;
342
Li Zefanef44a1e2009-04-10 09:43:08 +0800343 params = memdup_user(_params, sizeof(*params));
344 if (IS_ERR(params))
345 return PTR_ERR(params);
346
Linus Torvalds1da177e2005-04-16 15:20:36 -0700347 err = snd_pcm_hw_refine(substream, params);
348 if (copy_to_user(_params, params, sizeof(*params))) {
349 if (!err)
350 err = -EFAULT;
351 }
Li Zefanef44a1e2009-04-10 09:43:08 +0800352
Linus Torvalds1da177e2005-04-16 15:20:36 -0700353 kfree(params);
354 return err;
355}
356
Takashi Iwai9442e692006-09-30 23:27:19 -0700357static int period_to_usecs(struct snd_pcm_runtime *runtime)
358{
359 int usecs;
360
361 if (! runtime->rate)
362 return -1; /* invalid */
363
364 /* take 75% of period time as the deadline */
365 usecs = (750000 / runtime->rate) * runtime->period_size;
366 usecs += ((750000 % runtime->rate) * runtime->period_size) /
367 runtime->rate;
368
369 return usecs;
370}
371
Takashi Iwai877211f2005-11-17 13:59:38 +0100372static int snd_pcm_hw_params(struct snd_pcm_substream *substream,
373 struct snd_pcm_hw_params *params)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374{
Takashi Iwai877211f2005-11-17 13:59:38 +0100375 struct snd_pcm_runtime *runtime;
Takashi Iwai9442e692006-09-30 23:27:19 -0700376 int err, usecs;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377 unsigned int bits;
378 snd_pcm_uframes_t frames;
379
Takashi Iwai7eaa9432008-08-08 17:09:09 +0200380 if (PCM_RUNTIME_CHECK(substream))
381 return -ENXIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382 runtime = substream->runtime;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383 snd_pcm_stream_lock_irq(substream);
384 switch (runtime->status->state) {
385 case SNDRV_PCM_STATE_OPEN:
386 case SNDRV_PCM_STATE_SETUP:
387 case SNDRV_PCM_STATE_PREPARED:
388 break;
389 default:
390 snd_pcm_stream_unlock_irq(substream);
391 return -EBADFD;
392 }
393 snd_pcm_stream_unlock_irq(substream);
394#if defined(CONFIG_SND_PCM_OSS) || defined(CONFIG_SND_PCM_OSS_MODULE)
395 if (!substream->oss.oss)
396#endif
Takashi Iwai9c323fc2006-04-28 15:13:41 +0200397 if (atomic_read(&substream->mmap_count))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398 return -EBADFD;
399
400 params->rmask = ~0U;
401 err = snd_pcm_hw_refine(substream, params);
402 if (err < 0)
403 goto _error;
404
405 err = snd_pcm_hw_params_choose(substream, params);
406 if (err < 0)
407 goto _error;
408
409 if (substream->ops->hw_params != NULL) {
410 err = substream->ops->hw_params(substream, params);
411 if (err < 0)
412 goto _error;
413 }
414
415 runtime->access = params_access(params);
416 runtime->format = params_format(params);
417 runtime->subformat = params_subformat(params);
418 runtime->channels = params_channels(params);
419 runtime->rate = params_rate(params);
420 runtime->period_size = params_period_size(params);
421 runtime->periods = params_periods(params);
422 runtime->buffer_size = params_buffer_size(params);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700423 runtime->info = params->info;
424 runtime->rate_num = params->rate_num;
425 runtime->rate_den = params->rate_den;
Clemens Ladischab69a492010-11-15 10:46:23 +0100426 runtime->no_period_wakeup =
427 (params->info & SNDRV_PCM_INFO_NO_PERIOD_WAKEUP) &&
428 (params->flags & SNDRV_PCM_HW_PARAMS_NO_PERIOD_WAKEUP);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700429
430 bits = snd_pcm_format_physical_width(runtime->format);
431 runtime->sample_bits = bits;
432 bits *= runtime->channels;
433 runtime->frame_bits = bits;
434 frames = 1;
435 while (bits % 8 != 0) {
436 bits *= 2;
437 frames *= 2;
438 }
439 runtime->byte_align = bits / 8;
440 runtime->min_align = frames;
441
442 /* Default sw params */
443 runtime->tstamp_mode = SNDRV_PCM_TSTAMP_NONE;
444 runtime->period_step = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445 runtime->control->avail_min = runtime->period_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700446 runtime->start_threshold = 1;
447 runtime->stop_threshold = runtime->buffer_size;
448 runtime->silence_threshold = 0;
449 runtime->silence_size = 0;
Clemens Ladischead40462010-05-21 09:15:59 +0200450 runtime->boundary = runtime->buffer_size;
451 while (runtime->boundary * 2 <= LONG_MAX - runtime->buffer_size)
452 runtime->boundary *= 2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453
454 snd_pcm_timer_resolution_change(substream);
455 runtime->status->state = SNDRV_PCM_STATE_SETUP;
Takashi Iwai9442e692006-09-30 23:27:19 -0700456
James Bottomley82f68252010-07-05 22:53:06 +0200457 if (pm_qos_request_active(&substream->latency_pm_qos_req))
458 pm_qos_remove_request(&substream->latency_pm_qos_req);
Takashi Iwai9442e692006-09-30 23:27:19 -0700459 if ((usecs = period_to_usecs(runtime)) >= 0)
James Bottomley82f68252010-07-05 22:53:06 +0200460 pm_qos_add_request(&substream->latency_pm_qos_req,
461 PM_QOS_CPU_DMA_LATENCY, usecs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700462 return 0;
463 _error:
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300464 /* hardware might be unusable from this time,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700465 so we force application to retry to set
466 the correct hardware parameter settings */
467 runtime->status->state = SNDRV_PCM_STATE_OPEN;
468 if (substream->ops->hw_free != NULL)
469 substream->ops->hw_free(substream);
470 return err;
471}
472
Takashi Iwai877211f2005-11-17 13:59:38 +0100473static int snd_pcm_hw_params_user(struct snd_pcm_substream *substream,
474 struct snd_pcm_hw_params __user * _params)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700475{
Takashi Iwai877211f2005-11-17 13:59:38 +0100476 struct snd_pcm_hw_params *params;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700477 int err;
478
Li Zefanef44a1e2009-04-10 09:43:08 +0800479 params = memdup_user(_params, sizeof(*params));
480 if (IS_ERR(params))
481 return PTR_ERR(params);
482
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483 err = snd_pcm_hw_params(substream, params);
484 if (copy_to_user(_params, params, sizeof(*params))) {
485 if (!err)
486 err = -EFAULT;
487 }
Li Zefanef44a1e2009-04-10 09:43:08 +0800488
Linus Torvalds1da177e2005-04-16 15:20:36 -0700489 kfree(params);
490 return err;
491}
492
Takashi Iwai877211f2005-11-17 13:59:38 +0100493static int snd_pcm_hw_free(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700494{
Takashi Iwai877211f2005-11-17 13:59:38 +0100495 struct snd_pcm_runtime *runtime;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700496 int result = 0;
497
Takashi Iwai7eaa9432008-08-08 17:09:09 +0200498 if (PCM_RUNTIME_CHECK(substream))
499 return -ENXIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700500 runtime = substream->runtime;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700501 snd_pcm_stream_lock_irq(substream);
502 switch (runtime->status->state) {
503 case SNDRV_PCM_STATE_SETUP:
504 case SNDRV_PCM_STATE_PREPARED:
505 break;
506 default:
507 snd_pcm_stream_unlock_irq(substream);
508 return -EBADFD;
509 }
510 snd_pcm_stream_unlock_irq(substream);
Takashi Iwai9c323fc2006-04-28 15:13:41 +0200511 if (atomic_read(&substream->mmap_count))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700512 return -EBADFD;
513 if (substream->ops->hw_free)
514 result = substream->ops->hw_free(substream);
515 runtime->status->state = SNDRV_PCM_STATE_OPEN;
James Bottomley82f68252010-07-05 22:53:06 +0200516 pm_qos_remove_request(&substream->latency_pm_qos_req);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700517 return result;
518}
519
Takashi Iwai877211f2005-11-17 13:59:38 +0100520static int snd_pcm_sw_params(struct snd_pcm_substream *substream,
521 struct snd_pcm_sw_params *params)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700522{
Takashi Iwai877211f2005-11-17 13:59:38 +0100523 struct snd_pcm_runtime *runtime;
Jaroslav Kysela12509322010-01-07 15:36:31 +0100524 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700525
Takashi Iwai7eaa9432008-08-08 17:09:09 +0200526 if (PCM_RUNTIME_CHECK(substream))
527 return -ENXIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700528 runtime = substream->runtime;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700529 snd_pcm_stream_lock_irq(substream);
530 if (runtime->status->state == SNDRV_PCM_STATE_OPEN) {
531 snd_pcm_stream_unlock_irq(substream);
532 return -EBADFD;
533 }
534 snd_pcm_stream_unlock_irq(substream);
535
536 if (params->tstamp_mode > SNDRV_PCM_TSTAMP_LAST)
537 return -EINVAL;
538 if (params->avail_min == 0)
539 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700540 if (params->silence_size >= runtime->boundary) {
541 if (params->silence_threshold != 0)
542 return -EINVAL;
543 } else {
544 if (params->silence_size > params->silence_threshold)
545 return -EINVAL;
546 if (params->silence_threshold > runtime->buffer_size)
547 return -EINVAL;
548 }
Jaroslav Kysela12509322010-01-07 15:36:31 +0100549 err = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700550 snd_pcm_stream_lock_irq(substream);
551 runtime->tstamp_mode = params->tstamp_mode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700552 runtime->period_step = params->period_step;
553 runtime->control->avail_min = params->avail_min;
554 runtime->start_threshold = params->start_threshold;
555 runtime->stop_threshold = params->stop_threshold;
556 runtime->silence_threshold = params->silence_threshold;
557 runtime->silence_size = params->silence_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700558 params->boundary = runtime->boundary;
559 if (snd_pcm_running(substream)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700560 if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK &&
561 runtime->silence_size > 0)
562 snd_pcm_playback_silence(substream, ULONG_MAX);
Jaroslav Kysela12509322010-01-07 15:36:31 +0100563 err = snd_pcm_update_state(substream, runtime);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700564 }
565 snd_pcm_stream_unlock_irq(substream);
Jaroslav Kysela12509322010-01-07 15:36:31 +0100566 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700567}
568
Takashi Iwai877211f2005-11-17 13:59:38 +0100569static int snd_pcm_sw_params_user(struct snd_pcm_substream *substream,
570 struct snd_pcm_sw_params __user * _params)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700571{
Takashi Iwai877211f2005-11-17 13:59:38 +0100572 struct snd_pcm_sw_params params;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700573 int err;
574 if (copy_from_user(&params, _params, sizeof(params)))
575 return -EFAULT;
576 err = snd_pcm_sw_params(substream, &params);
577 if (copy_to_user(_params, &params, sizeof(params)))
578 return -EFAULT;
579 return err;
580}
581
Takashi Iwai877211f2005-11-17 13:59:38 +0100582int snd_pcm_status(struct snd_pcm_substream *substream,
583 struct snd_pcm_status *status)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700584{
Takashi Iwai877211f2005-11-17 13:59:38 +0100585 struct snd_pcm_runtime *runtime = substream->runtime;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700586
587 snd_pcm_stream_lock_irq(substream);
588 status->state = runtime->status->state;
589 status->suspended_state = runtime->status->suspended_state;
590 if (status->state == SNDRV_PCM_STATE_OPEN)
591 goto _end;
592 status->trigger_tstamp = runtime->trigger_tstamp;
Jaroslav Kysela8c121582008-01-11 08:45:08 +0100593 if (snd_pcm_running(substream)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700594 snd_pcm_update_hw_ptr(substream);
Jaroslav Kysela8c121582008-01-11 08:45:08 +0100595 if (runtime->tstamp_mode == SNDRV_PCM_TSTAMP_ENABLE) {
596 status->tstamp = runtime->status->tstamp;
Pierre-Louis Bossart4eeaaea2012-10-22 16:42:15 -0500597 status->audio_tstamp =
598 runtime->status->audio_tstamp;
Jaroslav Kysela8c121582008-01-11 08:45:08 +0100599 goto _tstamp_end;
600 }
601 }
Jaroslav Kyselaa713b582008-01-08 12:24:01 +0100602 snd_pcm_gettime(runtime, &status->tstamp);
Jaroslav Kysela8c121582008-01-11 08:45:08 +0100603 _tstamp_end:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700604 status->appl_ptr = runtime->control->appl_ptr;
605 status->hw_ptr = runtime->status->hw_ptr;
606 if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK) {
607 status->avail = snd_pcm_playback_avail(runtime);
608 if (runtime->status->state == SNDRV_PCM_STATE_RUNNING ||
Takashi Iwai4bbe1dd2008-10-13 03:07:14 +0200609 runtime->status->state == SNDRV_PCM_STATE_DRAINING) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700610 status->delay = runtime->buffer_size - status->avail;
Takashi Iwai4bbe1dd2008-10-13 03:07:14 +0200611 status->delay += runtime->delay;
612 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700613 status->delay = 0;
614 } else {
615 status->avail = snd_pcm_capture_avail(runtime);
616 if (runtime->status->state == SNDRV_PCM_STATE_RUNNING)
Takashi Iwai4bbe1dd2008-10-13 03:07:14 +0200617 status->delay = status->avail + runtime->delay;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700618 else
619 status->delay = 0;
620 }
621 status->avail_max = runtime->avail_max;
622 status->overrange = runtime->overrange;
623 runtime->avail_max = 0;
624 runtime->overrange = 0;
625 _end:
626 snd_pcm_stream_unlock_irq(substream);
627 return 0;
628}
629
Takashi Iwai877211f2005-11-17 13:59:38 +0100630static int snd_pcm_status_user(struct snd_pcm_substream *substream,
631 struct snd_pcm_status __user * _status)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700632{
Takashi Iwai877211f2005-11-17 13:59:38 +0100633 struct snd_pcm_status status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700634 int res;
635
Linus Torvalds1da177e2005-04-16 15:20:36 -0700636 memset(&status, 0, sizeof(status));
637 res = snd_pcm_status(substream, &status);
638 if (res < 0)
639 return res;
640 if (copy_to_user(_status, &status, sizeof(status)))
641 return -EFAULT;
642 return 0;
643}
644
Takashi Iwai877211f2005-11-17 13:59:38 +0100645static int snd_pcm_channel_info(struct snd_pcm_substream *substream,
646 struct snd_pcm_channel_info * info)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700647{
Takashi Iwai877211f2005-11-17 13:59:38 +0100648 struct snd_pcm_runtime *runtime;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700649 unsigned int channel;
650
Linus Torvalds1da177e2005-04-16 15:20:36 -0700651 channel = info->channel;
652 runtime = substream->runtime;
653 snd_pcm_stream_lock_irq(substream);
654 if (runtime->status->state == SNDRV_PCM_STATE_OPEN) {
655 snd_pcm_stream_unlock_irq(substream);
656 return -EBADFD;
657 }
658 snd_pcm_stream_unlock_irq(substream);
659 if (channel >= runtime->channels)
660 return -EINVAL;
661 memset(info, 0, sizeof(*info));
662 info->channel = channel;
663 return substream->ops->ioctl(substream, SNDRV_PCM_IOCTL1_CHANNEL_INFO, info);
664}
665
Takashi Iwai877211f2005-11-17 13:59:38 +0100666static int snd_pcm_channel_info_user(struct snd_pcm_substream *substream,
667 struct snd_pcm_channel_info __user * _info)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700668{
Takashi Iwai877211f2005-11-17 13:59:38 +0100669 struct snd_pcm_channel_info info;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700670 int res;
671
672 if (copy_from_user(&info, _info, sizeof(info)))
673 return -EFAULT;
674 res = snd_pcm_channel_info(substream, &info);
675 if (res < 0)
676 return res;
677 if (copy_to_user(_info, &info, sizeof(info)))
678 return -EFAULT;
679 return 0;
680}
681
Takashi Iwai877211f2005-11-17 13:59:38 +0100682static void snd_pcm_trigger_tstamp(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700683{
Takashi Iwai877211f2005-11-17 13:59:38 +0100684 struct snd_pcm_runtime *runtime = substream->runtime;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700685 if (runtime->trigger_master == NULL)
686 return;
687 if (runtime->trigger_master == substream) {
Jaroslav Kyselab751eef2007-12-13 10:19:42 +0100688 snd_pcm_gettime(runtime, &runtime->trigger_tstamp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700689 } else {
690 snd_pcm_trigger_tstamp(runtime->trigger_master);
691 runtime->trigger_tstamp = runtime->trigger_master->runtime->trigger_tstamp;
692 }
693 runtime->trigger_master = NULL;
694}
695
696struct action_ops {
Takashi Iwai877211f2005-11-17 13:59:38 +0100697 int (*pre_action)(struct snd_pcm_substream *substream, int state);
698 int (*do_action)(struct snd_pcm_substream *substream, int state);
699 void (*undo_action)(struct snd_pcm_substream *substream, int state);
700 void (*post_action)(struct snd_pcm_substream *substream, int state);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700701};
702
703/*
704 * this functions is core for handling of linked stream
705 * Note: the stream state might be changed also on failure
706 * Note2: call with calling stream lock + link lock
707 */
708static int snd_pcm_action_group(struct action_ops *ops,
Takashi Iwai877211f2005-11-17 13:59:38 +0100709 struct snd_pcm_substream *substream,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700710 int state, int do_lock)
711{
Takashi Iwai877211f2005-11-17 13:59:38 +0100712 struct snd_pcm_substream *s = NULL;
713 struct snd_pcm_substream *s1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700714 int res = 0;
715
Takashi Iwaief991b92007-02-22 12:52:53 +0100716 snd_pcm_group_for_each_entry(s, substream) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700717 if (do_lock && s != substream)
Frederik Deweerdt208eee22007-04-05 16:57:41 +0200718 spin_lock_nested(&s->self_group.lock,
719 SINGLE_DEPTH_NESTING);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700720 res = ops->pre_action(s, state);
721 if (res < 0)
722 goto _unlock;
723 }
Takashi Iwaief991b92007-02-22 12:52:53 +0100724 snd_pcm_group_for_each_entry(s, substream) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700725 res = ops->do_action(s, state);
726 if (res < 0) {
727 if (ops->undo_action) {
Takashi Iwaief991b92007-02-22 12:52:53 +0100728 snd_pcm_group_for_each_entry(s1, substream) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700729 if (s1 == s) /* failed stream */
730 break;
731 ops->undo_action(s1, state);
732 }
733 }
734 s = NULL; /* unlock all */
735 goto _unlock;
736 }
737 }
Takashi Iwaief991b92007-02-22 12:52:53 +0100738 snd_pcm_group_for_each_entry(s, substream) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700739 ops->post_action(s, state);
740 }
741 _unlock:
742 if (do_lock) {
743 /* unlock streams */
Takashi Iwaief991b92007-02-22 12:52:53 +0100744 snd_pcm_group_for_each_entry(s1, substream) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700745 if (s1 != substream)
746 spin_unlock(&s1->self_group.lock);
747 if (s1 == s) /* end */
748 break;
749 }
750 }
751 return res;
752}
753
754/*
755 * Note: call with stream lock
756 */
757static int snd_pcm_action_single(struct action_ops *ops,
Takashi Iwai877211f2005-11-17 13:59:38 +0100758 struct snd_pcm_substream *substream,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700759 int state)
760{
761 int res;
762
763 res = ops->pre_action(substream, state);
764 if (res < 0)
765 return res;
766 res = ops->do_action(substream, state);
767 if (res == 0)
768 ops->post_action(substream, state);
769 else if (ops->undo_action)
770 ops->undo_action(substream, state);
771 return res;
772}
773
774/*
775 * Note: call with stream lock
776 */
777static int snd_pcm_action(struct action_ops *ops,
Takashi Iwai877211f2005-11-17 13:59:38 +0100778 struct snd_pcm_substream *substream,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700779 int state)
780{
781 int res;
782
783 if (snd_pcm_stream_linked(substream)) {
784 if (!spin_trylock(&substream->group->lock)) {
785 spin_unlock(&substream->self_group.lock);
786 spin_lock(&substream->group->lock);
787 spin_lock(&substream->self_group.lock);
788 }
789 res = snd_pcm_action_group(ops, substream, state, 1);
790 spin_unlock(&substream->group->lock);
791 } else {
792 res = snd_pcm_action_single(ops, substream, state);
793 }
794 return res;
795}
796
797/*
798 * Note: don't use any locks before
799 */
800static int snd_pcm_action_lock_irq(struct action_ops *ops,
Takashi Iwai877211f2005-11-17 13:59:38 +0100801 struct snd_pcm_substream *substream,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700802 int state)
803{
804 int res;
805
806 read_lock_irq(&snd_pcm_link_rwlock);
807 if (snd_pcm_stream_linked(substream)) {
808 spin_lock(&substream->group->lock);
809 spin_lock(&substream->self_group.lock);
810 res = snd_pcm_action_group(ops, substream, state, 1);
811 spin_unlock(&substream->self_group.lock);
812 spin_unlock(&substream->group->lock);
813 } else {
814 spin_lock(&substream->self_group.lock);
815 res = snd_pcm_action_single(ops, substream, state);
816 spin_unlock(&substream->self_group.lock);
817 }
818 read_unlock_irq(&snd_pcm_link_rwlock);
819 return res;
820}
821
822/*
823 */
824static int snd_pcm_action_nonatomic(struct action_ops *ops,
Takashi Iwai877211f2005-11-17 13:59:38 +0100825 struct snd_pcm_substream *substream,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700826 int state)
827{
828 int res;
829
830 down_read(&snd_pcm_link_rwsem);
831 if (snd_pcm_stream_linked(substream))
832 res = snd_pcm_action_group(ops, substream, state, 0);
833 else
834 res = snd_pcm_action_single(ops, substream, state);
835 up_read(&snd_pcm_link_rwsem);
836 return res;
837}
838
839/*
840 * start callbacks
841 */
Takashi Iwai877211f2005-11-17 13:59:38 +0100842static int snd_pcm_pre_start(struct snd_pcm_substream *substream, int state)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700843{
Takashi Iwai877211f2005-11-17 13:59:38 +0100844 struct snd_pcm_runtime *runtime = substream->runtime;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700845 if (runtime->status->state != SNDRV_PCM_STATE_PREPARED)
846 return -EBADFD;
847 if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK &&
848 !snd_pcm_playback_data(substream))
849 return -EPIPE;
850 runtime->trigger_master = substream;
851 return 0;
852}
853
Takashi Iwai877211f2005-11-17 13:59:38 +0100854static int snd_pcm_do_start(struct snd_pcm_substream *substream, int state)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700855{
856 if (substream->runtime->trigger_master != substream)
857 return 0;
858 return substream->ops->trigger(substream, SNDRV_PCM_TRIGGER_START);
859}
860
Takashi Iwai877211f2005-11-17 13:59:38 +0100861static void snd_pcm_undo_start(struct snd_pcm_substream *substream, int state)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700862{
863 if (substream->runtime->trigger_master == substream)
864 substream->ops->trigger(substream, SNDRV_PCM_TRIGGER_STOP);
865}
866
Takashi Iwai877211f2005-11-17 13:59:38 +0100867static void snd_pcm_post_start(struct snd_pcm_substream *substream, int state)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700868{
Takashi Iwai877211f2005-11-17 13:59:38 +0100869 struct snd_pcm_runtime *runtime = substream->runtime;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700870 snd_pcm_trigger_tstamp(substream);
Takashi Iwai6af3fb72009-05-27 10:49:26 +0200871 runtime->hw_ptr_jiffies = jiffies;
Jaroslav Kyselabd76af02010-08-18 14:16:54 +0200872 runtime->hw_ptr_buffer_jiffies = (runtime->buffer_size * HZ) /
873 runtime->rate;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700874 runtime->status->state = state;
875 if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK &&
876 runtime->silence_size > 0)
877 snd_pcm_playback_silence(substream, ULONG_MAX);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700878 if (substream->timer)
Takashi Iwai877211f2005-11-17 13:59:38 +0100879 snd_timer_notify(substream->timer, SNDRV_TIMER_EVENT_MSTART,
880 &runtime->trigger_tstamp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700881}
882
883static struct action_ops snd_pcm_action_start = {
884 .pre_action = snd_pcm_pre_start,
885 .do_action = snd_pcm_do_start,
886 .undo_action = snd_pcm_undo_start,
887 .post_action = snd_pcm_post_start
888};
889
890/**
Randy Dunlap1c85cc62008-10-15 14:38:40 -0700891 * snd_pcm_start - start all linked streams
Takashi Iwaidf8db932005-09-07 13:38:19 +0200892 * @substream: the PCM substream instance
Linus Torvalds1da177e2005-04-16 15:20:36 -0700893 */
Takashi Iwai877211f2005-11-17 13:59:38 +0100894int snd_pcm_start(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700895{
Takashi Iwai877211f2005-11-17 13:59:38 +0100896 return snd_pcm_action(&snd_pcm_action_start, substream,
897 SNDRV_PCM_STATE_RUNNING);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700898}
899
900/*
901 * stop callbacks
902 */
Takashi Iwai877211f2005-11-17 13:59:38 +0100903static int snd_pcm_pre_stop(struct snd_pcm_substream *substream, int state)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700904{
Takashi Iwai877211f2005-11-17 13:59:38 +0100905 struct snd_pcm_runtime *runtime = substream->runtime;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700906 if (runtime->status->state == SNDRV_PCM_STATE_OPEN)
907 return -EBADFD;
908 runtime->trigger_master = substream;
909 return 0;
910}
911
Takashi Iwai877211f2005-11-17 13:59:38 +0100912static int snd_pcm_do_stop(struct snd_pcm_substream *substream, int state)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700913{
914 if (substream->runtime->trigger_master == substream &&
915 snd_pcm_running(substream))
916 substream->ops->trigger(substream, SNDRV_PCM_TRIGGER_STOP);
917 return 0; /* unconditonally stop all substreams */
918}
919
Takashi Iwai877211f2005-11-17 13:59:38 +0100920static void snd_pcm_post_stop(struct snd_pcm_substream *substream, int state)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700921{
Takashi Iwai877211f2005-11-17 13:59:38 +0100922 struct snd_pcm_runtime *runtime = substream->runtime;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700923 if (runtime->status->state != state) {
924 snd_pcm_trigger_tstamp(substream);
925 if (substream->timer)
Takashi Iwai877211f2005-11-17 13:59:38 +0100926 snd_timer_notify(substream->timer, SNDRV_TIMER_EVENT_MSTOP,
927 &runtime->trigger_tstamp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700928 runtime->status->state = state;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700929 }
930 wake_up(&runtime->sleep);
Jaroslav Kyselac91a9882010-01-21 10:32:15 +0100931 wake_up(&runtime->tsleep);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700932}
933
934static struct action_ops snd_pcm_action_stop = {
935 .pre_action = snd_pcm_pre_stop,
936 .do_action = snd_pcm_do_stop,
937 .post_action = snd_pcm_post_stop
938};
939
940/**
Randy Dunlap1c85cc62008-10-15 14:38:40 -0700941 * snd_pcm_stop - try to stop all running streams in the substream group
Takashi Iwaidf8db932005-09-07 13:38:19 +0200942 * @substream: the PCM substream instance
943 * @state: PCM state after stopping the stream
Linus Torvalds1da177e2005-04-16 15:20:36 -0700944 *
Randy Dunlap1c85cc62008-10-15 14:38:40 -0700945 * The state of each stream is then changed to the given state unconditionally.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700946 */
Clemens Ladischfea952e2011-02-14 11:00:47 +0100947int snd_pcm_stop(struct snd_pcm_substream *substream, snd_pcm_state_t state)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700948{
949 return snd_pcm_action(&snd_pcm_action_stop, substream, state);
950}
951
Takashi Iwaie88e8ae62006-04-28 15:13:40 +0200952EXPORT_SYMBOL(snd_pcm_stop);
953
Linus Torvalds1da177e2005-04-16 15:20:36 -0700954/**
Randy Dunlap1c85cc62008-10-15 14:38:40 -0700955 * snd_pcm_drain_done - stop the DMA only when the given stream is playback
Takashi Iwaidf8db932005-09-07 13:38:19 +0200956 * @substream: the PCM substream
Linus Torvalds1da177e2005-04-16 15:20:36 -0700957 *
Randy Dunlap1c85cc62008-10-15 14:38:40 -0700958 * After stopping, the state is changed to SETUP.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700959 * Unlike snd_pcm_stop(), this affects only the given stream.
960 */
Takashi Iwai877211f2005-11-17 13:59:38 +0100961int snd_pcm_drain_done(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700962{
Takashi Iwai877211f2005-11-17 13:59:38 +0100963 return snd_pcm_action_single(&snd_pcm_action_stop, substream,
964 SNDRV_PCM_STATE_SETUP);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700965}
966
967/*
968 * pause callbacks
969 */
Takashi Iwai877211f2005-11-17 13:59:38 +0100970static int snd_pcm_pre_pause(struct snd_pcm_substream *substream, int push)
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->info & SNDRV_PCM_INFO_PAUSE))
974 return -ENOSYS;
975 if (push) {
976 if (runtime->status->state != SNDRV_PCM_STATE_RUNNING)
977 return -EBADFD;
978 } else if (runtime->status->state != SNDRV_PCM_STATE_PAUSED)
979 return -EBADFD;
980 runtime->trigger_master = substream;
981 return 0;
982}
983
Takashi Iwai877211f2005-11-17 13:59:38 +0100984static int snd_pcm_do_pause(struct snd_pcm_substream *substream, int push)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700985{
986 if (substream->runtime->trigger_master != substream)
987 return 0;
Jaroslav Kysela56385a12010-08-18 14:08:17 +0200988 /* some drivers might use hw_ptr to recover from the pause -
989 update the hw_ptr now */
990 if (push)
991 snd_pcm_update_hw_ptr(substream);
Takashi Iwai6af3fb72009-05-27 10:49:26 +0200992 /* The jiffies check in snd_pcm_update_hw_ptr*() is done by
Uwe Kleine-Königb5950762010-11-01 15:38:34 -0400993 * a delta between the current jiffies, this gives a large enough
Takashi Iwai6af3fb72009-05-27 10:49:26 +0200994 * delta, effectively to skip the check once.
995 */
996 substream->runtime->hw_ptr_jiffies = jiffies - HZ * 1000;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700997 return substream->ops->trigger(substream,
998 push ? SNDRV_PCM_TRIGGER_PAUSE_PUSH :
999 SNDRV_PCM_TRIGGER_PAUSE_RELEASE);
1000}
1001
Takashi Iwai877211f2005-11-17 13:59:38 +01001002static void snd_pcm_undo_pause(struct snd_pcm_substream *substream, int push)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001003{
1004 if (substream->runtime->trigger_master == substream)
1005 substream->ops->trigger(substream,
1006 push ? SNDRV_PCM_TRIGGER_PAUSE_RELEASE :
1007 SNDRV_PCM_TRIGGER_PAUSE_PUSH);
1008}
1009
Takashi Iwai877211f2005-11-17 13:59:38 +01001010static void snd_pcm_post_pause(struct snd_pcm_substream *substream, int push)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001011{
Takashi Iwai877211f2005-11-17 13:59:38 +01001012 struct snd_pcm_runtime *runtime = substream->runtime;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001013 snd_pcm_trigger_tstamp(substream);
1014 if (push) {
1015 runtime->status->state = SNDRV_PCM_STATE_PAUSED;
1016 if (substream->timer)
Takashi Iwai877211f2005-11-17 13:59:38 +01001017 snd_timer_notify(substream->timer,
1018 SNDRV_TIMER_EVENT_MPAUSE,
1019 &runtime->trigger_tstamp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001020 wake_up(&runtime->sleep);
Jaroslav Kyselac91a9882010-01-21 10:32:15 +01001021 wake_up(&runtime->tsleep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001022 } else {
1023 runtime->status->state = SNDRV_PCM_STATE_RUNNING;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001024 if (substream->timer)
Takashi Iwai877211f2005-11-17 13:59:38 +01001025 snd_timer_notify(substream->timer,
1026 SNDRV_TIMER_EVENT_MCONTINUE,
1027 &runtime->trigger_tstamp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001028 }
1029}
1030
1031static struct action_ops snd_pcm_action_pause = {
1032 .pre_action = snd_pcm_pre_pause,
1033 .do_action = snd_pcm_do_pause,
1034 .undo_action = snd_pcm_undo_pause,
1035 .post_action = snd_pcm_post_pause
1036};
1037
1038/*
1039 * Push/release the pause for all linked streams.
1040 */
Takashi Iwai877211f2005-11-17 13:59:38 +01001041static int snd_pcm_pause(struct snd_pcm_substream *substream, int push)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001042{
1043 return snd_pcm_action(&snd_pcm_action_pause, substream, push);
1044}
1045
1046#ifdef CONFIG_PM
1047/* suspend */
1048
Takashi Iwai877211f2005-11-17 13:59:38 +01001049static int snd_pcm_pre_suspend(struct snd_pcm_substream *substream, int state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001050{
Takashi Iwai877211f2005-11-17 13:59:38 +01001051 struct snd_pcm_runtime *runtime = substream->runtime;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001052 if (runtime->status->state == SNDRV_PCM_STATE_SUSPENDED)
1053 return -EBUSY;
1054 runtime->trigger_master = substream;
1055 return 0;
1056}
1057
Takashi Iwai877211f2005-11-17 13:59:38 +01001058static int snd_pcm_do_suspend(struct snd_pcm_substream *substream, int state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001059{
Takashi Iwai877211f2005-11-17 13:59:38 +01001060 struct snd_pcm_runtime *runtime = substream->runtime;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001061 if (runtime->trigger_master != substream)
1062 return 0;
1063 if (! snd_pcm_running(substream))
1064 return 0;
1065 substream->ops->trigger(substream, SNDRV_PCM_TRIGGER_SUSPEND);
1066 return 0; /* suspend unconditionally */
1067}
1068
Takashi Iwai877211f2005-11-17 13:59:38 +01001069static void snd_pcm_post_suspend(struct snd_pcm_substream *substream, int state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001070{
Takashi Iwai877211f2005-11-17 13:59:38 +01001071 struct snd_pcm_runtime *runtime = substream->runtime;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001072 snd_pcm_trigger_tstamp(substream);
1073 if (substream->timer)
Takashi Iwai877211f2005-11-17 13:59:38 +01001074 snd_timer_notify(substream->timer, SNDRV_TIMER_EVENT_MSUSPEND,
1075 &runtime->trigger_tstamp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001076 runtime->status->suspended_state = runtime->status->state;
1077 runtime->status->state = SNDRV_PCM_STATE_SUSPENDED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001078 wake_up(&runtime->sleep);
Jaroslav Kyselac91a9882010-01-21 10:32:15 +01001079 wake_up(&runtime->tsleep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001080}
1081
1082static struct action_ops snd_pcm_action_suspend = {
1083 .pre_action = snd_pcm_pre_suspend,
1084 .do_action = snd_pcm_do_suspend,
1085 .post_action = snd_pcm_post_suspend
1086};
1087
1088/**
Randy Dunlap1c85cc62008-10-15 14:38:40 -07001089 * snd_pcm_suspend - trigger SUSPEND to all linked streams
Takashi Iwaidf8db932005-09-07 13:38:19 +02001090 * @substream: the PCM substream
Linus Torvalds1da177e2005-04-16 15:20:36 -07001091 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001092 * After this call, all streams are changed to SUSPENDED state.
1093 */
Takashi Iwai877211f2005-11-17 13:59:38 +01001094int snd_pcm_suspend(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001095{
1096 int err;
1097 unsigned long flags;
1098
Takashi Iwai603bf522005-11-17 15:59:14 +01001099 if (! substream)
1100 return 0;
1101
Linus Torvalds1da177e2005-04-16 15:20:36 -07001102 snd_pcm_stream_lock_irqsave(substream, flags);
1103 err = snd_pcm_action(&snd_pcm_action_suspend, substream, 0);
1104 snd_pcm_stream_unlock_irqrestore(substream, flags);
1105 return err;
1106}
1107
Takashi Iwaie88e8ae62006-04-28 15:13:40 +02001108EXPORT_SYMBOL(snd_pcm_suspend);
1109
Linus Torvalds1da177e2005-04-16 15:20:36 -07001110/**
Randy Dunlap1c85cc62008-10-15 14:38:40 -07001111 * snd_pcm_suspend_all - trigger SUSPEND to all substreams in the given pcm
Takashi Iwaidf8db932005-09-07 13:38:19 +02001112 * @pcm: the PCM instance
Linus Torvalds1da177e2005-04-16 15:20:36 -07001113 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001114 * After this call, all streams are changed to SUSPENDED state.
1115 */
Takashi Iwai877211f2005-11-17 13:59:38 +01001116int snd_pcm_suspend_all(struct snd_pcm *pcm)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001117{
Takashi Iwai877211f2005-11-17 13:59:38 +01001118 struct snd_pcm_substream *substream;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001119 int stream, err = 0;
1120
Takashi Iwai603bf522005-11-17 15:59:14 +01001121 if (! pcm)
1122 return 0;
1123
Linus Torvalds1da177e2005-04-16 15:20:36 -07001124 for (stream = 0; stream < 2; stream++) {
Takashi Iwai877211f2005-11-17 13:59:38 +01001125 for (substream = pcm->streams[stream].substream;
1126 substream; substream = substream->next) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001127 /* FIXME: the open/close code should lock this as well */
1128 if (substream->runtime == NULL)
1129 continue;
1130 err = snd_pcm_suspend(substream);
1131 if (err < 0 && err != -EBUSY)
1132 return err;
1133 }
1134 }
1135 return 0;
1136}
1137
Takashi Iwaie88e8ae62006-04-28 15:13:40 +02001138EXPORT_SYMBOL(snd_pcm_suspend_all);
1139
Linus Torvalds1da177e2005-04-16 15:20:36 -07001140/* resume */
1141
Takashi Iwai877211f2005-11-17 13:59:38 +01001142static int snd_pcm_pre_resume(struct snd_pcm_substream *substream, int state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001143{
Takashi Iwai877211f2005-11-17 13:59:38 +01001144 struct snd_pcm_runtime *runtime = substream->runtime;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001145 if (!(runtime->info & SNDRV_PCM_INFO_RESUME))
1146 return -ENOSYS;
1147 runtime->trigger_master = substream;
1148 return 0;
1149}
1150
Takashi Iwai877211f2005-11-17 13:59:38 +01001151static int snd_pcm_do_resume(struct snd_pcm_substream *substream, int state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001152{
Takashi Iwai877211f2005-11-17 13:59:38 +01001153 struct snd_pcm_runtime *runtime = substream->runtime;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001154 if (runtime->trigger_master != substream)
1155 return 0;
1156 /* DMA not running previously? */
1157 if (runtime->status->suspended_state != SNDRV_PCM_STATE_RUNNING &&
1158 (runtime->status->suspended_state != SNDRV_PCM_STATE_DRAINING ||
1159 substream->stream != SNDRV_PCM_STREAM_PLAYBACK))
1160 return 0;
1161 return substream->ops->trigger(substream, SNDRV_PCM_TRIGGER_RESUME);
1162}
1163
Takashi Iwai877211f2005-11-17 13:59:38 +01001164static void snd_pcm_undo_resume(struct snd_pcm_substream *substream, int state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001165{
1166 if (substream->runtime->trigger_master == substream &&
1167 snd_pcm_running(substream))
1168 substream->ops->trigger(substream, SNDRV_PCM_TRIGGER_SUSPEND);
1169}
1170
Takashi Iwai877211f2005-11-17 13:59:38 +01001171static void snd_pcm_post_resume(struct snd_pcm_substream *substream, int state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001172{
Takashi Iwai877211f2005-11-17 13:59:38 +01001173 struct snd_pcm_runtime *runtime = substream->runtime;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001174 snd_pcm_trigger_tstamp(substream);
1175 if (substream->timer)
Takashi Iwai877211f2005-11-17 13:59:38 +01001176 snd_timer_notify(substream->timer, SNDRV_TIMER_EVENT_MRESUME,
1177 &runtime->trigger_tstamp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001178 runtime->status->state = runtime->status->suspended_state;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001179}
1180
1181static struct action_ops snd_pcm_action_resume = {
1182 .pre_action = snd_pcm_pre_resume,
1183 .do_action = snd_pcm_do_resume,
1184 .undo_action = snd_pcm_undo_resume,
1185 .post_action = snd_pcm_post_resume
1186};
1187
Takashi Iwai877211f2005-11-17 13:59:38 +01001188static int snd_pcm_resume(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001189{
Takashi Iwai877211f2005-11-17 13:59:38 +01001190 struct snd_card *card = substream->pcm->card;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001191 int res;
1192
1193 snd_power_lock(card);
Takashi Iwaicbac4b02006-03-27 12:38:07 +02001194 if ((res = snd_power_wait(card, SNDRV_CTL_POWER_D0)) >= 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001195 res = snd_pcm_action_lock_irq(&snd_pcm_action_resume, substream, 0);
1196 snd_power_unlock(card);
1197 return res;
1198}
1199
1200#else
1201
Takashi Iwai877211f2005-11-17 13:59:38 +01001202static int snd_pcm_resume(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001203{
1204 return -ENOSYS;
1205}
1206
1207#endif /* CONFIG_PM */
1208
1209/*
1210 * xrun ioctl
1211 *
1212 * Change the RUNNING stream(s) to XRUN state.
1213 */
Takashi Iwai877211f2005-11-17 13:59:38 +01001214static int snd_pcm_xrun(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001215{
Takashi Iwai877211f2005-11-17 13:59:38 +01001216 struct snd_card *card = substream->pcm->card;
1217 struct snd_pcm_runtime *runtime = substream->runtime;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001218 int result;
1219
1220 snd_power_lock(card);
1221 if (runtime->status->state == SNDRV_PCM_STATE_SUSPENDED) {
Takashi Iwaicbac4b02006-03-27 12:38:07 +02001222 result = snd_power_wait(card, SNDRV_CTL_POWER_D0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001223 if (result < 0)
1224 goto _unlock;
1225 }
1226
1227 snd_pcm_stream_lock_irq(substream);
1228 switch (runtime->status->state) {
1229 case SNDRV_PCM_STATE_XRUN:
1230 result = 0; /* already there */
1231 break;
1232 case SNDRV_PCM_STATE_RUNNING:
1233 result = snd_pcm_stop(substream, SNDRV_PCM_STATE_XRUN);
1234 break;
1235 default:
1236 result = -EBADFD;
1237 }
1238 snd_pcm_stream_unlock_irq(substream);
1239 _unlock:
1240 snd_power_unlock(card);
1241 return result;
1242}
1243
1244/*
1245 * reset ioctl
1246 */
Takashi Iwai877211f2005-11-17 13:59:38 +01001247static int snd_pcm_pre_reset(struct snd_pcm_substream *substream, int state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001248{
Takashi Iwai877211f2005-11-17 13:59:38 +01001249 struct snd_pcm_runtime *runtime = substream->runtime;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001250 switch (runtime->status->state) {
1251 case SNDRV_PCM_STATE_RUNNING:
1252 case SNDRV_PCM_STATE_PREPARED:
1253 case SNDRV_PCM_STATE_PAUSED:
1254 case SNDRV_PCM_STATE_SUSPENDED:
1255 return 0;
1256 default:
1257 return -EBADFD;
1258 }
1259}
1260
Takashi Iwai877211f2005-11-17 13:59:38 +01001261static int snd_pcm_do_reset(struct snd_pcm_substream *substream, int state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001262{
Takashi Iwai877211f2005-11-17 13:59:38 +01001263 struct snd_pcm_runtime *runtime = substream->runtime;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001264 int err = substream->ops->ioctl(substream, SNDRV_PCM_IOCTL1_RESET, NULL);
1265 if (err < 0)
1266 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001267 runtime->hw_ptr_base = 0;
Jaroslav Kyselae7636922010-01-26 17:08:24 +01001268 runtime->hw_ptr_interrupt = runtime->status->hw_ptr -
1269 runtime->status->hw_ptr % runtime->period_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001270 runtime->silence_start = runtime->status->hw_ptr;
1271 runtime->silence_filled = 0;
1272 return 0;
1273}
1274
Takashi Iwai877211f2005-11-17 13:59:38 +01001275static void snd_pcm_post_reset(struct snd_pcm_substream *substream, int state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001276{
Takashi Iwai877211f2005-11-17 13:59:38 +01001277 struct snd_pcm_runtime *runtime = substream->runtime;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001278 runtime->control->appl_ptr = runtime->status->hw_ptr;
1279 if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK &&
1280 runtime->silence_size > 0)
1281 snd_pcm_playback_silence(substream, ULONG_MAX);
1282}
1283
1284static struct action_ops snd_pcm_action_reset = {
1285 .pre_action = snd_pcm_pre_reset,
1286 .do_action = snd_pcm_do_reset,
1287 .post_action = snd_pcm_post_reset
1288};
1289
Takashi Iwai877211f2005-11-17 13:59:38 +01001290static int snd_pcm_reset(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001291{
1292 return snd_pcm_action_nonatomic(&snd_pcm_action_reset, substream, 0);
1293}
1294
1295/*
1296 * prepare ioctl
1297 */
Takashi Iwai0df63e42006-04-28 15:13:41 +02001298/* we use the second argument for updating f_flags */
1299static int snd_pcm_pre_prepare(struct snd_pcm_substream *substream,
1300 int f_flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001301{
Takashi Iwai877211f2005-11-17 13:59:38 +01001302 struct snd_pcm_runtime *runtime = substream->runtime;
Takashi Iwaide1b8b92006-11-08 15:41:29 +01001303 if (runtime->status->state == SNDRV_PCM_STATE_OPEN ||
1304 runtime->status->state == SNDRV_PCM_STATE_DISCONNECTED)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001305 return -EBADFD;
1306 if (snd_pcm_running(substream))
1307 return -EBUSY;
Takashi Iwai0df63e42006-04-28 15:13:41 +02001308 substream->f_flags = f_flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001309 return 0;
1310}
1311
Takashi Iwai877211f2005-11-17 13:59:38 +01001312static int snd_pcm_do_prepare(struct snd_pcm_substream *substream, int state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001313{
1314 int err;
1315 err = substream->ops->prepare(substream);
1316 if (err < 0)
1317 return err;
1318 return snd_pcm_do_reset(substream, 0);
1319}
1320
Takashi Iwai877211f2005-11-17 13:59:38 +01001321static void snd_pcm_post_prepare(struct snd_pcm_substream *substream, int state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001322{
Takashi Iwai877211f2005-11-17 13:59:38 +01001323 struct snd_pcm_runtime *runtime = substream->runtime;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001324 runtime->control->appl_ptr = runtime->status->hw_ptr;
1325 runtime->status->state = SNDRV_PCM_STATE_PREPARED;
1326}
1327
1328static struct action_ops snd_pcm_action_prepare = {
1329 .pre_action = snd_pcm_pre_prepare,
1330 .do_action = snd_pcm_do_prepare,
1331 .post_action = snd_pcm_post_prepare
1332};
1333
1334/**
Randy Dunlap1c85cc62008-10-15 14:38:40 -07001335 * snd_pcm_prepare - prepare the PCM substream to be triggerable
Takashi Iwaidf8db932005-09-07 13:38:19 +02001336 * @substream: the PCM substream instance
Takashi Iwai0df63e42006-04-28 15:13:41 +02001337 * @file: file to refer f_flags
Linus Torvalds1da177e2005-04-16 15:20:36 -07001338 */
Takashi Iwai0df63e42006-04-28 15:13:41 +02001339static int snd_pcm_prepare(struct snd_pcm_substream *substream,
1340 struct file *file)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001341{
1342 int res;
Takashi Iwai877211f2005-11-17 13:59:38 +01001343 struct snd_card *card = substream->pcm->card;
Takashi Iwai0df63e42006-04-28 15:13:41 +02001344 int f_flags;
1345
1346 if (file)
1347 f_flags = file->f_flags;
1348 else
1349 f_flags = substream->f_flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001350
1351 snd_power_lock(card);
Takashi Iwaicbac4b02006-03-27 12:38:07 +02001352 if ((res = snd_power_wait(card, SNDRV_CTL_POWER_D0)) >= 0)
Takashi Iwai0df63e42006-04-28 15:13:41 +02001353 res = snd_pcm_action_nonatomic(&snd_pcm_action_prepare,
1354 substream, f_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001355 snd_power_unlock(card);
1356 return res;
1357}
1358
1359/*
1360 * drain ioctl
1361 */
1362
Takashi Iwai877211f2005-11-17 13:59:38 +01001363static int snd_pcm_pre_drain_init(struct snd_pcm_substream *substream, int state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001364{
Takashi Iwai4f7c39d2012-05-21 11:59:57 +02001365 struct snd_pcm_runtime *runtime = substream->runtime;
1366 switch (runtime->status->state) {
1367 case SNDRV_PCM_STATE_OPEN:
1368 case SNDRV_PCM_STATE_DISCONNECTED:
1369 case SNDRV_PCM_STATE_SUSPENDED:
1370 return -EBADFD;
1371 }
1372 runtime->trigger_master = substream;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001373 return 0;
1374}
1375
Takashi Iwai877211f2005-11-17 13:59:38 +01001376static int snd_pcm_do_drain_init(struct snd_pcm_substream *substream, int state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001377{
Takashi Iwai877211f2005-11-17 13:59:38 +01001378 struct snd_pcm_runtime *runtime = substream->runtime;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001379 if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK) {
1380 switch (runtime->status->state) {
1381 case SNDRV_PCM_STATE_PREPARED:
1382 /* start playback stream if possible */
1383 if (! snd_pcm_playback_empty(substream)) {
1384 snd_pcm_do_start(substream, SNDRV_PCM_STATE_DRAINING);
1385 snd_pcm_post_start(substream, SNDRV_PCM_STATE_DRAINING);
1386 }
1387 break;
1388 case SNDRV_PCM_STATE_RUNNING:
1389 runtime->status->state = SNDRV_PCM_STATE_DRAINING;
1390 break;
Takashi Iwai4f7c39d2012-05-21 11:59:57 +02001391 case SNDRV_PCM_STATE_XRUN:
1392 runtime->status->state = SNDRV_PCM_STATE_SETUP;
1393 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001394 default:
1395 break;
1396 }
1397 } else {
1398 /* stop running stream */
1399 if (runtime->status->state == SNDRV_PCM_STATE_RUNNING) {
Marcin Ślusarzb05e5782007-12-14 12:50:16 +01001400 int new_state = snd_pcm_capture_avail(runtime) > 0 ?
Linus Torvalds1da177e2005-04-16 15:20:36 -07001401 SNDRV_PCM_STATE_DRAINING : SNDRV_PCM_STATE_SETUP;
Marcin Ślusarzb05e5782007-12-14 12:50:16 +01001402 snd_pcm_do_stop(substream, new_state);
1403 snd_pcm_post_stop(substream, new_state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001404 }
1405 }
1406 return 0;
1407}
1408
Takashi Iwai877211f2005-11-17 13:59:38 +01001409static void snd_pcm_post_drain_init(struct snd_pcm_substream *substream, int state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001410{
1411}
1412
1413static struct action_ops snd_pcm_action_drain_init = {
1414 .pre_action = snd_pcm_pre_drain_init,
1415 .do_action = snd_pcm_do_drain_init,
1416 .post_action = snd_pcm_post_drain_init
1417};
1418
Takashi Iwai877211f2005-11-17 13:59:38 +01001419static int snd_pcm_drop(struct snd_pcm_substream *substream);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001420
1421/*
1422 * Drain the stream(s).
1423 * When the substream is linked, sync until the draining of all playback streams
1424 * is finished.
1425 * After this call, all streams are supposed to be either SETUP or DRAINING
1426 * (capture only) state.
1427 */
Takashi Iwai4cdc1152009-08-20 16:40:16 +02001428static int snd_pcm_drain(struct snd_pcm_substream *substream,
1429 struct file *file)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001430{
Takashi Iwai877211f2005-11-17 13:59:38 +01001431 struct snd_card *card;
1432 struct snd_pcm_runtime *runtime;
Takashi Iwaief991b92007-02-22 12:52:53 +01001433 struct snd_pcm_substream *s;
Takashi Iwaid3a7dcf2009-09-17 18:46:26 +02001434 wait_queue_t wait;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001435 int result = 0;
Takashi Iwai4cdc1152009-08-20 16:40:16 +02001436 int nonblock = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001437
Linus Torvalds1da177e2005-04-16 15:20:36 -07001438 card = substream->pcm->card;
1439 runtime = substream->runtime;
1440
1441 if (runtime->status->state == SNDRV_PCM_STATE_OPEN)
1442 return -EBADFD;
1443
Linus Torvalds1da177e2005-04-16 15:20:36 -07001444 snd_power_lock(card);
1445 if (runtime->status->state == SNDRV_PCM_STATE_SUSPENDED) {
Takashi Iwaicbac4b02006-03-27 12:38:07 +02001446 result = snd_power_wait(card, SNDRV_CTL_POWER_D0);
Takashi Iwai21cb2a22005-05-31 14:35:31 +02001447 if (result < 0) {
1448 snd_power_unlock(card);
1449 return result;
1450 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001451 }
1452
Takashi Iwai4cdc1152009-08-20 16:40:16 +02001453 if (file) {
1454 if (file->f_flags & O_NONBLOCK)
1455 nonblock = 1;
1456 } else if (substream->f_flags & O_NONBLOCK)
1457 nonblock = 1;
1458
Takashi Iwai21cb2a22005-05-31 14:35:31 +02001459 down_read(&snd_pcm_link_rwsem);
Takashi Iwai21cb2a22005-05-31 14:35:31 +02001460 snd_pcm_stream_lock_irq(substream);
1461 /* resume pause */
Takashi Iwaid3a7dcf2009-09-17 18:46:26 +02001462 if (runtime->status->state == SNDRV_PCM_STATE_PAUSED)
Takashi Iwai21cb2a22005-05-31 14:35:31 +02001463 snd_pcm_pause(substream, 0);
1464
1465 /* pre-start/stop - all running streams are changed to DRAINING state */
1466 result = snd_pcm_action(&snd_pcm_action_drain_init, substream, 0);
Takashi Iwai4cdc1152009-08-20 16:40:16 +02001467 if (result < 0)
1468 goto unlock;
1469 /* in non-blocking, we don't wait in ioctl but let caller poll */
1470 if (nonblock) {
1471 result = -EAGAIN;
1472 goto unlock;
Takashi Iwai21cb2a22005-05-31 14:35:31 +02001473 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001474
1475 for (;;) {
1476 long tout;
Takashi Iwaid3a7dcf2009-09-17 18:46:26 +02001477 struct snd_pcm_runtime *to_check;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001478 if (signal_pending(current)) {
1479 result = -ERESTARTSYS;
1480 break;
1481 }
Takashi Iwaid3a7dcf2009-09-17 18:46:26 +02001482 /* find a substream to drain */
1483 to_check = NULL;
1484 snd_pcm_group_for_each_entry(s, substream) {
1485 if (s->stream != SNDRV_PCM_STREAM_PLAYBACK)
1486 continue;
1487 runtime = s->runtime;
1488 if (runtime->status->state == SNDRV_PCM_STATE_DRAINING) {
1489 to_check = runtime;
Takashi Iwai21cb2a22005-05-31 14:35:31 +02001490 break;
Takashi Iwaid3a7dcf2009-09-17 18:46:26 +02001491 }
Takashi Iwai21cb2a22005-05-31 14:35:31 +02001492 }
Takashi Iwaid3a7dcf2009-09-17 18:46:26 +02001493 if (!to_check)
1494 break; /* all drained */
1495 init_waitqueue_entry(&wait, current);
1496 add_wait_queue(&to_check->sleep, &wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001497 snd_pcm_stream_unlock_irq(substream);
Takashi Iwaid3a7dcf2009-09-17 18:46:26 +02001498 up_read(&snd_pcm_link_rwsem);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001499 snd_power_unlock(card);
Takashi Iwaif2b36142011-05-26 08:09:38 +02001500 if (runtime->no_period_wakeup)
1501 tout = MAX_SCHEDULE_TIMEOUT;
1502 else {
1503 tout = 10;
1504 if (runtime->rate) {
1505 long t = runtime->period_size * 2 / runtime->rate;
1506 tout = max(t, tout);
1507 }
1508 tout = msecs_to_jiffies(tout * 1000);
1509 }
1510 tout = schedule_timeout_interruptible(tout);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001511 snd_power_lock(card);
Takashi Iwaid3a7dcf2009-09-17 18:46:26 +02001512 down_read(&snd_pcm_link_rwsem);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001513 snd_pcm_stream_lock_irq(substream);
Takashi Iwaid3a7dcf2009-09-17 18:46:26 +02001514 remove_wait_queue(&to_check->sleep, &wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001515 if (tout == 0) {
1516 if (substream->runtime->status->state == SNDRV_PCM_STATE_SUSPENDED)
1517 result = -ESTRPIPE;
1518 else {
1519 snd_printd("playback drain error (DMA or IRQ trouble?)\n");
1520 snd_pcm_stop(substream, SNDRV_PCM_STATE_SETUP);
1521 result = -EIO;
1522 }
1523 break;
1524 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001525 }
Takashi Iwai21cb2a22005-05-31 14:35:31 +02001526
Takashi Iwai4cdc1152009-08-20 16:40:16 +02001527 unlock:
Takashi Iwai21cb2a22005-05-31 14:35:31 +02001528 snd_pcm_stream_unlock_irq(substream);
Takashi Iwaid3a7dcf2009-09-17 18:46:26 +02001529 up_read(&snd_pcm_link_rwsem);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001530 snd_power_unlock(card);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001531
1532 return result;
1533}
1534
1535/*
1536 * drop ioctl
1537 *
1538 * Immediately put all linked substreams into SETUP state.
1539 */
Takashi Iwai877211f2005-11-17 13:59:38 +01001540static int snd_pcm_drop(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001541{
Takashi Iwai877211f2005-11-17 13:59:38 +01001542 struct snd_pcm_runtime *runtime;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001543 int result = 0;
1544
Takashi Iwai7eaa9432008-08-08 17:09:09 +02001545 if (PCM_RUNTIME_CHECK(substream))
1546 return -ENXIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001547 runtime = substream->runtime;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001548
Takashi Iwaide1b8b92006-11-08 15:41:29 +01001549 if (runtime->status->state == SNDRV_PCM_STATE_OPEN ||
Takashi Iwai24e8fc42008-09-25 17:51:11 +02001550 runtime->status->state == SNDRV_PCM_STATE_DISCONNECTED ||
1551 runtime->status->state == SNDRV_PCM_STATE_SUSPENDED)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001552 return -EBADFD;
1553
Linus Torvalds1da177e2005-04-16 15:20:36 -07001554 snd_pcm_stream_lock_irq(substream);
1555 /* resume pause */
1556 if (runtime->status->state == SNDRV_PCM_STATE_PAUSED)
1557 snd_pcm_pause(substream, 0);
1558
1559 snd_pcm_stop(substream, SNDRV_PCM_STATE_SETUP);
1560 /* runtime->control->appl_ptr = runtime->status->hw_ptr; */
1561 snd_pcm_stream_unlock_irq(substream);
Takashi Iwai24e8fc42008-09-25 17:51:11 +02001562
Linus Torvalds1da177e2005-04-16 15:20:36 -07001563 return result;
1564}
1565
1566
1567/* WARNING: Don't forget to fput back the file */
Al Virobdbf6942012-08-26 21:35:48 -04001568static struct file *snd_pcm_file_fd(int fd, int *fput_needed)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001569{
1570 struct file *file;
1571 struct inode *inode;
Clemens Ladischf87135f2005-11-20 14:06:59 +01001572 unsigned int minor;
1573
Al Virobdbf6942012-08-26 21:35:48 -04001574 file = fget_light(fd, fput_needed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001575 if (!file)
1576 return NULL;
Josef Sipek7bc56322006-12-08 02:37:40 -08001577 inode = file->f_path.dentry->d_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001578 if (!S_ISCHR(inode->i_mode) ||
1579 imajor(inode) != snd_major) {
Al Virobdbf6942012-08-26 21:35:48 -04001580 fput_light(file, *fput_needed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001581 return NULL;
1582 }
1583 minor = iminor(inode);
Clemens Ladischf87135f2005-11-20 14:06:59 +01001584 if (!snd_lookup_minor_data(minor, SNDRV_DEVICE_TYPE_PCM_PLAYBACK) &&
1585 !snd_lookup_minor_data(minor, SNDRV_DEVICE_TYPE_PCM_CAPTURE)) {
Al Virobdbf6942012-08-26 21:35:48 -04001586 fput_light(file, *fput_needed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001587 return NULL;
1588 }
1589 return file;
1590}
1591
1592/*
1593 * PCM link handling
1594 */
Takashi Iwai877211f2005-11-17 13:59:38 +01001595static int snd_pcm_link(struct snd_pcm_substream *substream, int fd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001596{
1597 int res = 0;
1598 struct file *file;
Takashi Iwai877211f2005-11-17 13:59:38 +01001599 struct snd_pcm_file *pcm_file;
1600 struct snd_pcm_substream *substream1;
Takashi Iwai16625912012-03-13 15:55:43 +01001601 struct snd_pcm_group *group;
Al Virobdbf6942012-08-26 21:35:48 -04001602 int fput_needed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001603
Al Virobdbf6942012-08-26 21:35:48 -04001604 file = snd_pcm_file_fd(fd, &fput_needed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001605 if (!file)
1606 return -EBADFD;
1607 pcm_file = file->private_data;
1608 substream1 = pcm_file->substream;
Takashi Iwai16625912012-03-13 15:55:43 +01001609 group = kmalloc(sizeof(*group), GFP_KERNEL);
1610 if (!group) {
1611 res = -ENOMEM;
1612 goto _nolock;
1613 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001614 down_write(&snd_pcm_link_rwsem);
1615 write_lock_irq(&snd_pcm_link_rwlock);
1616 if (substream->runtime->status->state == SNDRV_PCM_STATE_OPEN ||
1617 substream->runtime->status->state != substream1->runtime->status->state) {
1618 res = -EBADFD;
1619 goto _end;
1620 }
1621 if (snd_pcm_stream_linked(substream1)) {
1622 res = -EALREADY;
1623 goto _end;
1624 }
1625 if (!snd_pcm_stream_linked(substream)) {
Takashi Iwai16625912012-03-13 15:55:43 +01001626 substream->group = group;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001627 spin_lock_init(&substream->group->lock);
1628 INIT_LIST_HEAD(&substream->group->substreams);
1629 list_add_tail(&substream->link_list, &substream->group->substreams);
1630 substream->group->count = 1;
1631 }
1632 list_add_tail(&substream1->link_list, &substream->group->substreams);
1633 substream->group->count++;
1634 substream1->group = substream->group;
1635 _end:
1636 write_unlock_irq(&snd_pcm_link_rwlock);
1637 up_write(&snd_pcm_link_rwsem);
Takashi Iwai16625912012-03-13 15:55:43 +01001638 _nolock:
Al Virobdbf6942012-08-26 21:35:48 -04001639 fput_light(file, fput_needed);
Takashi Iwai16625912012-03-13 15:55:43 +01001640 if (res < 0)
1641 kfree(group);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001642 return res;
1643}
1644
Takashi Iwai877211f2005-11-17 13:59:38 +01001645static void relink_to_local(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001646{
1647 substream->group = &substream->self_group;
1648 INIT_LIST_HEAD(&substream->self_group.substreams);
1649 list_add_tail(&substream->link_list, &substream->self_group.substreams);
1650}
1651
Takashi Iwai877211f2005-11-17 13:59:38 +01001652static int snd_pcm_unlink(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001653{
Takashi Iwaief991b92007-02-22 12:52:53 +01001654 struct snd_pcm_substream *s;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001655 int res = 0;
1656
1657 down_write(&snd_pcm_link_rwsem);
1658 write_lock_irq(&snd_pcm_link_rwlock);
1659 if (!snd_pcm_stream_linked(substream)) {
1660 res = -EALREADY;
1661 goto _end;
1662 }
1663 list_del(&substream->link_list);
1664 substream->group->count--;
1665 if (substream->group->count == 1) { /* detach the last stream, too */
Takashi Iwaief991b92007-02-22 12:52:53 +01001666 snd_pcm_group_for_each_entry(s, substream) {
1667 relink_to_local(s);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001668 break;
1669 }
1670 kfree(substream->group);
1671 }
1672 relink_to_local(substream);
1673 _end:
1674 write_unlock_irq(&snd_pcm_link_rwlock);
1675 up_write(&snd_pcm_link_rwsem);
1676 return res;
1677}
1678
1679/*
1680 * hw configurator
1681 */
Takashi Iwai877211f2005-11-17 13:59:38 +01001682static int snd_pcm_hw_rule_mul(struct snd_pcm_hw_params *params,
1683 struct snd_pcm_hw_rule *rule)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001684{
Takashi Iwai877211f2005-11-17 13:59:38 +01001685 struct snd_interval t;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001686 snd_interval_mul(hw_param_interval_c(params, rule->deps[0]),
1687 hw_param_interval_c(params, rule->deps[1]), &t);
1688 return snd_interval_refine(hw_param_interval(params, rule->var), &t);
1689}
1690
Takashi Iwai877211f2005-11-17 13:59:38 +01001691static int snd_pcm_hw_rule_div(struct snd_pcm_hw_params *params,
1692 struct snd_pcm_hw_rule *rule)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001693{
Takashi Iwai877211f2005-11-17 13:59:38 +01001694 struct snd_interval t;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001695 snd_interval_div(hw_param_interval_c(params, rule->deps[0]),
1696 hw_param_interval_c(params, rule->deps[1]), &t);
1697 return snd_interval_refine(hw_param_interval(params, rule->var), &t);
1698}
1699
Takashi Iwai877211f2005-11-17 13:59:38 +01001700static int snd_pcm_hw_rule_muldivk(struct snd_pcm_hw_params *params,
1701 struct snd_pcm_hw_rule *rule)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001702{
Takashi Iwai877211f2005-11-17 13:59:38 +01001703 struct snd_interval t;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001704 snd_interval_muldivk(hw_param_interval_c(params, rule->deps[0]),
1705 hw_param_interval_c(params, rule->deps[1]),
1706 (unsigned long) rule->private, &t);
1707 return snd_interval_refine(hw_param_interval(params, rule->var), &t);
1708}
1709
Takashi Iwai877211f2005-11-17 13:59:38 +01001710static int snd_pcm_hw_rule_mulkdiv(struct snd_pcm_hw_params *params,
1711 struct snd_pcm_hw_rule *rule)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001712{
Takashi Iwai877211f2005-11-17 13:59:38 +01001713 struct snd_interval t;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001714 snd_interval_mulkdiv(hw_param_interval_c(params, rule->deps[0]),
1715 (unsigned long) rule->private,
1716 hw_param_interval_c(params, rule->deps[1]), &t);
1717 return snd_interval_refine(hw_param_interval(params, rule->var), &t);
1718}
1719
Takashi Iwai877211f2005-11-17 13:59:38 +01001720static int snd_pcm_hw_rule_format(struct snd_pcm_hw_params *params,
1721 struct snd_pcm_hw_rule *rule)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001722{
1723 unsigned int k;
Takashi Iwai877211f2005-11-17 13:59:38 +01001724 struct snd_interval *i = hw_param_interval(params, rule->deps[0]);
1725 struct snd_mask m;
1726 struct snd_mask *mask = hw_param_mask(params, SNDRV_PCM_HW_PARAM_FORMAT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001727 snd_mask_any(&m);
1728 for (k = 0; k <= SNDRV_PCM_FORMAT_LAST; ++k) {
1729 int bits;
1730 if (! snd_mask_test(mask, k))
1731 continue;
1732 bits = snd_pcm_format_physical_width(k);
1733 if (bits <= 0)
1734 continue; /* ignore invalid formats */
1735 if ((unsigned)bits < i->min || (unsigned)bits > i->max)
1736 snd_mask_reset(&m, k);
1737 }
1738 return snd_mask_refine(mask, &m);
1739}
1740
Takashi Iwai877211f2005-11-17 13:59:38 +01001741static int snd_pcm_hw_rule_sample_bits(struct snd_pcm_hw_params *params,
1742 struct snd_pcm_hw_rule *rule)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001743{
Takashi Iwai877211f2005-11-17 13:59:38 +01001744 struct snd_interval t;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001745 unsigned int k;
1746 t.min = UINT_MAX;
1747 t.max = 0;
1748 t.openmin = 0;
1749 t.openmax = 0;
1750 for (k = 0; k <= SNDRV_PCM_FORMAT_LAST; ++k) {
1751 int bits;
1752 if (! snd_mask_test(hw_param_mask(params, SNDRV_PCM_HW_PARAM_FORMAT), k))
1753 continue;
1754 bits = snd_pcm_format_physical_width(k);
1755 if (bits <= 0)
1756 continue; /* ignore invalid formats */
1757 if (t.min > (unsigned)bits)
1758 t.min = bits;
1759 if (t.max < (unsigned)bits)
1760 t.max = bits;
1761 }
1762 t.integer = 1;
1763 return snd_interval_refine(hw_param_interval(params, rule->var), &t);
1764}
1765
1766#if SNDRV_PCM_RATE_5512 != 1 << 0 || SNDRV_PCM_RATE_192000 != 1 << 12
1767#error "Change this table"
1768#endif
1769
1770static unsigned int rates[] = { 5512, 8000, 11025, 16000, 22050, 32000, 44100,
1771 48000, 64000, 88200, 96000, 176400, 192000 };
1772
Clemens Ladisch7653d552007-08-13 17:38:54 +02001773const struct snd_pcm_hw_constraint_list snd_pcm_known_rates = {
1774 .count = ARRAY_SIZE(rates),
1775 .list = rates,
1776};
1777
Takashi Iwai877211f2005-11-17 13:59:38 +01001778static int snd_pcm_hw_rule_rate(struct snd_pcm_hw_params *params,
1779 struct snd_pcm_hw_rule *rule)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001780{
Takashi Iwai877211f2005-11-17 13:59:38 +01001781 struct snd_pcm_hardware *hw = rule->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001782 return snd_interval_list(hw_param_interval(params, rule->var),
Clemens Ladisch7653d552007-08-13 17:38:54 +02001783 snd_pcm_known_rates.count,
1784 snd_pcm_known_rates.list, hw->rates);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001785}
1786
Takashi Iwai877211f2005-11-17 13:59:38 +01001787static int snd_pcm_hw_rule_buffer_bytes_max(struct snd_pcm_hw_params *params,
1788 struct snd_pcm_hw_rule *rule)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001789{
Takashi Iwai877211f2005-11-17 13:59:38 +01001790 struct snd_interval t;
1791 struct snd_pcm_substream *substream = rule->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001792 t.min = 0;
1793 t.max = substream->buffer_bytes_max;
1794 t.openmin = 0;
1795 t.openmax = 0;
1796 t.integer = 1;
1797 return snd_interval_refine(hw_param_interval(params, rule->var), &t);
1798}
1799
Takashi Iwai877211f2005-11-17 13:59:38 +01001800int snd_pcm_hw_constraints_init(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001801{
Takashi Iwai877211f2005-11-17 13:59:38 +01001802 struct snd_pcm_runtime *runtime = substream->runtime;
1803 struct snd_pcm_hw_constraints *constrs = &runtime->hw_constraints;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001804 int k, err;
1805
1806 for (k = SNDRV_PCM_HW_PARAM_FIRST_MASK; k <= SNDRV_PCM_HW_PARAM_LAST_MASK; k++) {
1807 snd_mask_any(constrs_mask(constrs, k));
1808 }
1809
1810 for (k = SNDRV_PCM_HW_PARAM_FIRST_INTERVAL; k <= SNDRV_PCM_HW_PARAM_LAST_INTERVAL; k++) {
1811 snd_interval_any(constrs_interval(constrs, k));
1812 }
1813
1814 snd_interval_setinteger(constrs_interval(constrs, SNDRV_PCM_HW_PARAM_CHANNELS));
1815 snd_interval_setinteger(constrs_interval(constrs, SNDRV_PCM_HW_PARAM_BUFFER_SIZE));
1816 snd_interval_setinteger(constrs_interval(constrs, SNDRV_PCM_HW_PARAM_BUFFER_BYTES));
1817 snd_interval_setinteger(constrs_interval(constrs, SNDRV_PCM_HW_PARAM_SAMPLE_BITS));
1818 snd_interval_setinteger(constrs_interval(constrs, SNDRV_PCM_HW_PARAM_FRAME_BITS));
1819
1820 err = snd_pcm_hw_rule_add(runtime, 0, SNDRV_PCM_HW_PARAM_FORMAT,
1821 snd_pcm_hw_rule_format, NULL,
1822 SNDRV_PCM_HW_PARAM_SAMPLE_BITS, -1);
1823 if (err < 0)
1824 return err;
1825 err = snd_pcm_hw_rule_add(runtime, 0, SNDRV_PCM_HW_PARAM_SAMPLE_BITS,
1826 snd_pcm_hw_rule_sample_bits, NULL,
1827 SNDRV_PCM_HW_PARAM_FORMAT,
1828 SNDRV_PCM_HW_PARAM_SAMPLE_BITS, -1);
1829 if (err < 0)
1830 return err;
1831 err = snd_pcm_hw_rule_add(runtime, 0, SNDRV_PCM_HW_PARAM_SAMPLE_BITS,
1832 snd_pcm_hw_rule_div, NULL,
1833 SNDRV_PCM_HW_PARAM_FRAME_BITS, SNDRV_PCM_HW_PARAM_CHANNELS, -1);
1834 if (err < 0)
1835 return err;
1836 err = snd_pcm_hw_rule_add(runtime, 0, SNDRV_PCM_HW_PARAM_FRAME_BITS,
1837 snd_pcm_hw_rule_mul, NULL,
1838 SNDRV_PCM_HW_PARAM_SAMPLE_BITS, SNDRV_PCM_HW_PARAM_CHANNELS, -1);
1839 if (err < 0)
1840 return err;
1841 err = snd_pcm_hw_rule_add(runtime, 0, SNDRV_PCM_HW_PARAM_FRAME_BITS,
1842 snd_pcm_hw_rule_mulkdiv, (void*) 8,
1843 SNDRV_PCM_HW_PARAM_PERIOD_BYTES, SNDRV_PCM_HW_PARAM_PERIOD_SIZE, -1);
1844 if (err < 0)
1845 return err;
1846 err = snd_pcm_hw_rule_add(runtime, 0, SNDRV_PCM_HW_PARAM_FRAME_BITS,
1847 snd_pcm_hw_rule_mulkdiv, (void*) 8,
1848 SNDRV_PCM_HW_PARAM_BUFFER_BYTES, SNDRV_PCM_HW_PARAM_BUFFER_SIZE, -1);
1849 if (err < 0)
1850 return err;
1851 err = snd_pcm_hw_rule_add(runtime, 0, SNDRV_PCM_HW_PARAM_CHANNELS,
1852 snd_pcm_hw_rule_div, NULL,
1853 SNDRV_PCM_HW_PARAM_FRAME_BITS, SNDRV_PCM_HW_PARAM_SAMPLE_BITS, -1);
1854 if (err < 0)
1855 return err;
1856 err = snd_pcm_hw_rule_add(runtime, 0, SNDRV_PCM_HW_PARAM_RATE,
1857 snd_pcm_hw_rule_mulkdiv, (void*) 1000000,
1858 SNDRV_PCM_HW_PARAM_PERIOD_SIZE, SNDRV_PCM_HW_PARAM_PERIOD_TIME, -1);
1859 if (err < 0)
1860 return err;
1861 err = snd_pcm_hw_rule_add(runtime, 0, SNDRV_PCM_HW_PARAM_RATE,
1862 snd_pcm_hw_rule_mulkdiv, (void*) 1000000,
1863 SNDRV_PCM_HW_PARAM_BUFFER_SIZE, SNDRV_PCM_HW_PARAM_BUFFER_TIME, -1);
1864 if (err < 0)
1865 return err;
1866 err = snd_pcm_hw_rule_add(runtime, 0, SNDRV_PCM_HW_PARAM_PERIODS,
1867 snd_pcm_hw_rule_div, NULL,
1868 SNDRV_PCM_HW_PARAM_BUFFER_SIZE, SNDRV_PCM_HW_PARAM_PERIOD_SIZE, -1);
1869 if (err < 0)
1870 return err;
1871 err = snd_pcm_hw_rule_add(runtime, 0, SNDRV_PCM_HW_PARAM_PERIOD_SIZE,
1872 snd_pcm_hw_rule_div, NULL,
1873 SNDRV_PCM_HW_PARAM_BUFFER_SIZE, SNDRV_PCM_HW_PARAM_PERIODS, -1);
1874 if (err < 0)
1875 return err;
1876 err = snd_pcm_hw_rule_add(runtime, 0, SNDRV_PCM_HW_PARAM_PERIOD_SIZE,
1877 snd_pcm_hw_rule_mulkdiv, (void*) 8,
1878 SNDRV_PCM_HW_PARAM_PERIOD_BYTES, SNDRV_PCM_HW_PARAM_FRAME_BITS, -1);
1879 if (err < 0)
1880 return err;
1881 err = snd_pcm_hw_rule_add(runtime, 0, SNDRV_PCM_HW_PARAM_PERIOD_SIZE,
1882 snd_pcm_hw_rule_muldivk, (void*) 1000000,
1883 SNDRV_PCM_HW_PARAM_PERIOD_TIME, SNDRV_PCM_HW_PARAM_RATE, -1);
1884 if (err < 0)
1885 return err;
1886 err = snd_pcm_hw_rule_add(runtime, 0, SNDRV_PCM_HW_PARAM_BUFFER_SIZE,
1887 snd_pcm_hw_rule_mul, NULL,
1888 SNDRV_PCM_HW_PARAM_PERIOD_SIZE, SNDRV_PCM_HW_PARAM_PERIODS, -1);
1889 if (err < 0)
1890 return err;
1891 err = snd_pcm_hw_rule_add(runtime, 0, SNDRV_PCM_HW_PARAM_BUFFER_SIZE,
1892 snd_pcm_hw_rule_mulkdiv, (void*) 8,
1893 SNDRV_PCM_HW_PARAM_BUFFER_BYTES, SNDRV_PCM_HW_PARAM_FRAME_BITS, -1);
1894 if (err < 0)
1895 return err;
1896 err = snd_pcm_hw_rule_add(runtime, 0, SNDRV_PCM_HW_PARAM_BUFFER_SIZE,
1897 snd_pcm_hw_rule_muldivk, (void*) 1000000,
1898 SNDRV_PCM_HW_PARAM_BUFFER_TIME, SNDRV_PCM_HW_PARAM_RATE, -1);
1899 if (err < 0)
1900 return err;
1901 err = snd_pcm_hw_rule_add(runtime, 0, SNDRV_PCM_HW_PARAM_PERIOD_BYTES,
1902 snd_pcm_hw_rule_muldivk, (void*) 8,
1903 SNDRV_PCM_HW_PARAM_PERIOD_SIZE, SNDRV_PCM_HW_PARAM_FRAME_BITS, -1);
1904 if (err < 0)
1905 return err;
1906 err = snd_pcm_hw_rule_add(runtime, 0, SNDRV_PCM_HW_PARAM_BUFFER_BYTES,
1907 snd_pcm_hw_rule_muldivk, (void*) 8,
1908 SNDRV_PCM_HW_PARAM_BUFFER_SIZE, SNDRV_PCM_HW_PARAM_FRAME_BITS, -1);
1909 if (err < 0)
1910 return err;
1911 err = snd_pcm_hw_rule_add(runtime, 0, SNDRV_PCM_HW_PARAM_PERIOD_TIME,
1912 snd_pcm_hw_rule_mulkdiv, (void*) 1000000,
1913 SNDRV_PCM_HW_PARAM_PERIOD_SIZE, SNDRV_PCM_HW_PARAM_RATE, -1);
1914 if (err < 0)
1915 return err;
1916 err = snd_pcm_hw_rule_add(runtime, 0, SNDRV_PCM_HW_PARAM_BUFFER_TIME,
1917 snd_pcm_hw_rule_mulkdiv, (void*) 1000000,
1918 SNDRV_PCM_HW_PARAM_BUFFER_SIZE, SNDRV_PCM_HW_PARAM_RATE, -1);
1919 if (err < 0)
1920 return err;
1921 return 0;
1922}
1923
Takashi Iwai877211f2005-11-17 13:59:38 +01001924int snd_pcm_hw_constraints_complete(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001925{
Takashi Iwai877211f2005-11-17 13:59:38 +01001926 struct snd_pcm_runtime *runtime = substream->runtime;
1927 struct snd_pcm_hardware *hw = &runtime->hw;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001928 int err;
1929 unsigned int mask = 0;
1930
1931 if (hw->info & SNDRV_PCM_INFO_INTERLEAVED)
1932 mask |= 1 << SNDRV_PCM_ACCESS_RW_INTERLEAVED;
1933 if (hw->info & SNDRV_PCM_INFO_NONINTERLEAVED)
1934 mask |= 1 << SNDRV_PCM_ACCESS_RW_NONINTERLEAVED;
1935 if (hw->info & SNDRV_PCM_INFO_MMAP) {
1936 if (hw->info & SNDRV_PCM_INFO_INTERLEAVED)
1937 mask |= 1 << SNDRV_PCM_ACCESS_MMAP_INTERLEAVED;
1938 if (hw->info & SNDRV_PCM_INFO_NONINTERLEAVED)
1939 mask |= 1 << SNDRV_PCM_ACCESS_MMAP_NONINTERLEAVED;
1940 if (hw->info & SNDRV_PCM_INFO_COMPLEX)
1941 mask |= 1 << SNDRV_PCM_ACCESS_MMAP_COMPLEX;
1942 }
1943 err = snd_pcm_hw_constraint_mask(runtime, SNDRV_PCM_HW_PARAM_ACCESS, mask);
Takashi Iwai7eaa9432008-08-08 17:09:09 +02001944 if (err < 0)
1945 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001946
1947 err = snd_pcm_hw_constraint_mask64(runtime, SNDRV_PCM_HW_PARAM_FORMAT, hw->formats);
Takashi Iwai7eaa9432008-08-08 17:09:09 +02001948 if (err < 0)
1949 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001950
1951 err = snd_pcm_hw_constraint_mask(runtime, SNDRV_PCM_HW_PARAM_SUBFORMAT, 1 << SNDRV_PCM_SUBFORMAT_STD);
Takashi Iwai7eaa9432008-08-08 17:09:09 +02001952 if (err < 0)
1953 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001954
1955 err = snd_pcm_hw_constraint_minmax(runtime, SNDRV_PCM_HW_PARAM_CHANNELS,
1956 hw->channels_min, hw->channels_max);
Takashi Iwai7eaa9432008-08-08 17:09:09 +02001957 if (err < 0)
1958 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001959
1960 err = snd_pcm_hw_constraint_minmax(runtime, SNDRV_PCM_HW_PARAM_RATE,
1961 hw->rate_min, hw->rate_max);
Guennadi Liakhovetski8b90ca02009-12-24 01:17:46 +01001962 if (err < 0)
1963 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001964
1965 err = snd_pcm_hw_constraint_minmax(runtime, SNDRV_PCM_HW_PARAM_PERIOD_BYTES,
1966 hw->period_bytes_min, hw->period_bytes_max);
Guennadi Liakhovetski8b90ca02009-12-24 01:17:46 +01001967 if (err < 0)
1968 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001969
1970 err = snd_pcm_hw_constraint_minmax(runtime, SNDRV_PCM_HW_PARAM_PERIODS,
1971 hw->periods_min, hw->periods_max);
Takashi Iwai7eaa9432008-08-08 17:09:09 +02001972 if (err < 0)
1973 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001974
1975 err = snd_pcm_hw_constraint_minmax(runtime, SNDRV_PCM_HW_PARAM_BUFFER_BYTES,
1976 hw->period_bytes_min, hw->buffer_bytes_max);
Takashi Iwai7eaa9432008-08-08 17:09:09 +02001977 if (err < 0)
1978 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001979
1980 err = snd_pcm_hw_rule_add(runtime, 0, SNDRV_PCM_HW_PARAM_BUFFER_BYTES,
1981 snd_pcm_hw_rule_buffer_bytes_max, substream,
1982 SNDRV_PCM_HW_PARAM_BUFFER_BYTES, -1);
1983 if (err < 0)
1984 return err;
1985
1986 /* FIXME: remove */
1987 if (runtime->dma_bytes) {
1988 err = snd_pcm_hw_constraint_minmax(runtime, SNDRV_PCM_HW_PARAM_BUFFER_BYTES, 0, runtime->dma_bytes);
Takashi Iwai7eaa9432008-08-08 17:09:09 +02001989 if (err < 0)
1990 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001991 }
1992
1993 if (!(hw->rates & (SNDRV_PCM_RATE_KNOT | SNDRV_PCM_RATE_CONTINUOUS))) {
1994 err = snd_pcm_hw_rule_add(runtime, 0, SNDRV_PCM_HW_PARAM_RATE,
1995 snd_pcm_hw_rule_rate, hw,
1996 SNDRV_PCM_HW_PARAM_RATE, -1);
1997 if (err < 0)
1998 return err;
1999 }
2000
2001 /* FIXME: this belong to lowlevel */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002002 snd_pcm_hw_constraint_integer(runtime, SNDRV_PCM_HW_PARAM_PERIOD_SIZE);
2003
2004 return 0;
2005}
2006
Takashi Iwai3bf75f92006-03-27 16:40:49 +02002007static void pcm_release_private(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002008{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002009 snd_pcm_unlink(substream);
Takashi Iwai3bf75f92006-03-27 16:40:49 +02002010}
2011
2012void snd_pcm_release_substream(struct snd_pcm_substream *substream)
2013{
Takashi Iwai0df63e42006-04-28 15:13:41 +02002014 substream->ref_count--;
2015 if (substream->ref_count > 0)
2016 return;
2017
Takashi Iwai3bf75f92006-03-27 16:40:49 +02002018 snd_pcm_drop(substream);
Takashi Iwai3bf75f92006-03-27 16:40:49 +02002019 if (substream->hw_opened) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002020 if (substream->ops->hw_free != NULL)
2021 substream->ops->hw_free(substream);
2022 substream->ops->close(substream);
Takashi Iwai3bf75f92006-03-27 16:40:49 +02002023 substream->hw_opened = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002024 }
Takashi Iwai8699a0b2010-09-16 22:52:32 +02002025 if (pm_qos_request_active(&substream->latency_pm_qos_req))
2026 pm_qos_remove_request(&substream->latency_pm_qos_req);
Takashi Iwai15762742006-04-06 19:47:42 +02002027 if (substream->pcm_release) {
2028 substream->pcm_release(substream);
2029 substream->pcm_release = NULL;
2030 }
Takashi Iwai3bf75f92006-03-27 16:40:49 +02002031 snd_pcm_detach_substream(substream);
2032}
2033
Takashi Iwaie88e8ae62006-04-28 15:13:40 +02002034EXPORT_SYMBOL(snd_pcm_release_substream);
2035
Takashi Iwai3bf75f92006-03-27 16:40:49 +02002036int snd_pcm_open_substream(struct snd_pcm *pcm, int stream,
2037 struct file *file,
2038 struct snd_pcm_substream **rsubstream)
2039{
2040 struct snd_pcm_substream *substream;
2041 int err;
2042
2043 err = snd_pcm_attach_substream(pcm, stream, file, &substream);
2044 if (err < 0)
2045 return err;
Takashi Iwai0df63e42006-04-28 15:13:41 +02002046 if (substream->ref_count > 1) {
2047 *rsubstream = substream;
2048 return 0;
2049 }
2050
Takashi Iwai3bf75f92006-03-27 16:40:49 +02002051 err = snd_pcm_hw_constraints_init(substream);
2052 if (err < 0) {
2053 snd_printd("snd_pcm_hw_constraints_init failed\n");
2054 goto error;
2055 }
2056
2057 if ((err = substream->ops->open(substream)) < 0)
2058 goto error;
2059
2060 substream->hw_opened = 1;
2061
2062 err = snd_pcm_hw_constraints_complete(substream);
2063 if (err < 0) {
2064 snd_printd("snd_pcm_hw_constraints_complete failed\n");
2065 goto error;
2066 }
2067
2068 *rsubstream = substream;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002069 return 0;
Takashi Iwai3bf75f92006-03-27 16:40:49 +02002070
2071 error:
2072 snd_pcm_release_substream(substream);
2073 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002074}
2075
Takashi Iwaie88e8ae62006-04-28 15:13:40 +02002076EXPORT_SYMBOL(snd_pcm_open_substream);
2077
Linus Torvalds1da177e2005-04-16 15:20:36 -07002078static int snd_pcm_open_file(struct file *file,
Takashi Iwai877211f2005-11-17 13:59:38 +01002079 struct snd_pcm *pcm,
Feng Tangffd3d5c2011-10-10 10:31:48 +08002080 int stream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002081{
Takashi Iwai877211f2005-11-17 13:59:38 +01002082 struct snd_pcm_file *pcm_file;
2083 struct snd_pcm_substream *substream;
Takashi Iwai3bf75f92006-03-27 16:40:49 +02002084 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002085
Takashi Iwai3bf75f92006-03-27 16:40:49 +02002086 err = snd_pcm_open_substream(pcm, stream, file, &substream);
2087 if (err < 0)
2088 return err;
2089
Takashi Iwai548a6482006-07-31 16:51:51 +02002090 pcm_file = kzalloc(sizeof(*pcm_file), GFP_KERNEL);
2091 if (pcm_file == NULL) {
2092 snd_pcm_release_substream(substream);
2093 return -ENOMEM;
2094 }
2095 pcm_file->substream = substream;
2096 if (substream->ref_count == 1) {
Takashi Iwai0df63e42006-04-28 15:13:41 +02002097 substream->file = pcm_file;
2098 substream->pcm_release = pcm_release_private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002099 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002100 file->private_data = pcm_file;
Feng Tangffd3d5c2011-10-10 10:31:48 +08002101
Linus Torvalds1da177e2005-04-16 15:20:36 -07002102 return 0;
2103}
2104
Clemens Ladischf87135f2005-11-20 14:06:59 +01002105static int snd_pcm_playback_open(struct inode *inode, struct file *file)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002106{
Takashi Iwai877211f2005-11-17 13:59:38 +01002107 struct snd_pcm *pcm;
Takashi Iwai02f48652010-04-13 11:49:04 +02002108 int err = nonseekable_open(inode, file);
2109 if (err < 0)
2110 return err;
Clemens Ladischf87135f2005-11-20 14:06:59 +01002111 pcm = snd_lookup_minor_data(iminor(inode),
2112 SNDRV_DEVICE_TYPE_PCM_PLAYBACK);
2113 return snd_pcm_open(file, pcm, SNDRV_PCM_STREAM_PLAYBACK);
2114}
2115
2116static int snd_pcm_capture_open(struct inode *inode, struct file *file)
2117{
2118 struct snd_pcm *pcm;
Takashi Iwai02f48652010-04-13 11:49:04 +02002119 int err = nonseekable_open(inode, file);
2120 if (err < 0)
2121 return err;
Clemens Ladischf87135f2005-11-20 14:06:59 +01002122 pcm = snd_lookup_minor_data(iminor(inode),
2123 SNDRV_DEVICE_TYPE_PCM_CAPTURE);
2124 return snd_pcm_open(file, pcm, SNDRV_PCM_STREAM_CAPTURE);
2125}
2126
2127static int snd_pcm_open(struct file *file, struct snd_pcm *pcm, int stream)
2128{
2129 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002130 wait_queue_t wait;
2131
Linus Torvalds1da177e2005-04-16 15:20:36 -07002132 if (pcm == NULL) {
2133 err = -ENODEV;
2134 goto __error1;
2135 }
2136 err = snd_card_file_add(pcm->card, file);
2137 if (err < 0)
2138 goto __error1;
2139 if (!try_module_get(pcm->card->module)) {
2140 err = -EFAULT;
2141 goto __error2;
2142 }
2143 init_waitqueue_entry(&wait, current);
2144 add_wait_queue(&pcm->open_wait, &wait);
Ingo Molnar1a60d4c2006-01-16 16:29:08 +01002145 mutex_lock(&pcm->open_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002146 while (1) {
Feng Tangffd3d5c2011-10-10 10:31:48 +08002147 err = snd_pcm_open_file(file, pcm, stream);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002148 if (err >= 0)
2149 break;
2150 if (err == -EAGAIN) {
2151 if (file->f_flags & O_NONBLOCK) {
2152 err = -EBUSY;
2153 break;
2154 }
2155 } else
2156 break;
2157 set_current_state(TASK_INTERRUPTIBLE);
Ingo Molnar1a60d4c2006-01-16 16:29:08 +01002158 mutex_unlock(&pcm->open_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002159 schedule();
Ingo Molnar1a60d4c2006-01-16 16:29:08 +01002160 mutex_lock(&pcm->open_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002161 if (signal_pending(current)) {
2162 err = -ERESTARTSYS;
2163 break;
2164 }
2165 }
2166 remove_wait_queue(&pcm->open_wait, &wait);
Ingo Molnar1a60d4c2006-01-16 16:29:08 +01002167 mutex_unlock(&pcm->open_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002168 if (err < 0)
2169 goto __error;
2170 return err;
2171
2172 __error:
2173 module_put(pcm->card->module);
2174 __error2:
2175 snd_card_file_remove(pcm->card, file);
2176 __error1:
2177 return err;
2178}
2179
2180static int snd_pcm_release(struct inode *inode, struct file *file)
2181{
Takashi Iwai877211f2005-11-17 13:59:38 +01002182 struct snd_pcm *pcm;
2183 struct snd_pcm_substream *substream;
2184 struct snd_pcm_file *pcm_file;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002185
2186 pcm_file = file->private_data;
2187 substream = pcm_file->substream;
Takashi Iwai7eaa9432008-08-08 17:09:09 +02002188 if (snd_BUG_ON(!substream))
2189 return -ENXIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002190 pcm = substream->pcm;
Ingo Molnar1a60d4c2006-01-16 16:29:08 +01002191 mutex_lock(&pcm->open_mutex);
Takashi Iwai3bf75f92006-03-27 16:40:49 +02002192 snd_pcm_release_substream(substream);
Takashi Iwai548a6482006-07-31 16:51:51 +02002193 kfree(pcm_file);
Ingo Molnar1a60d4c2006-01-16 16:29:08 +01002194 mutex_unlock(&pcm->open_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002195 wake_up(&pcm->open_wait);
2196 module_put(pcm->card->module);
2197 snd_card_file_remove(pcm->card, file);
2198 return 0;
2199}
2200
Takashi Iwai877211f2005-11-17 13:59:38 +01002201static snd_pcm_sframes_t snd_pcm_playback_rewind(struct snd_pcm_substream *substream,
2202 snd_pcm_uframes_t frames)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002203{
Takashi Iwai877211f2005-11-17 13:59:38 +01002204 struct snd_pcm_runtime *runtime = substream->runtime;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002205 snd_pcm_sframes_t appl_ptr;
2206 snd_pcm_sframes_t ret;
2207 snd_pcm_sframes_t hw_avail;
2208
2209 if (frames == 0)
2210 return 0;
2211
2212 snd_pcm_stream_lock_irq(substream);
2213 switch (runtime->status->state) {
2214 case SNDRV_PCM_STATE_PREPARED:
2215 break;
2216 case SNDRV_PCM_STATE_DRAINING:
2217 case SNDRV_PCM_STATE_RUNNING:
2218 if (snd_pcm_update_hw_ptr(substream) >= 0)
2219 break;
2220 /* Fall through */
2221 case SNDRV_PCM_STATE_XRUN:
2222 ret = -EPIPE;
2223 goto __end;
Lubomir Rintel51840402009-08-02 18:14:44 +02002224 case SNDRV_PCM_STATE_SUSPENDED:
2225 ret = -ESTRPIPE;
2226 goto __end;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002227 default:
2228 ret = -EBADFD;
2229 goto __end;
2230 }
2231
2232 hw_avail = snd_pcm_playback_hw_avail(runtime);
2233 if (hw_avail <= 0) {
2234 ret = 0;
2235 goto __end;
2236 }
2237 if (frames > (snd_pcm_uframes_t)hw_avail)
2238 frames = hw_avail;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002239 appl_ptr = runtime->control->appl_ptr - frames;
2240 if (appl_ptr < 0)
2241 appl_ptr += runtime->boundary;
2242 runtime->control->appl_ptr = appl_ptr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002243 ret = frames;
2244 __end:
2245 snd_pcm_stream_unlock_irq(substream);
2246 return ret;
2247}
2248
Takashi Iwai877211f2005-11-17 13:59:38 +01002249static snd_pcm_sframes_t snd_pcm_capture_rewind(struct snd_pcm_substream *substream,
2250 snd_pcm_uframes_t frames)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002251{
Takashi Iwai877211f2005-11-17 13:59:38 +01002252 struct snd_pcm_runtime *runtime = substream->runtime;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002253 snd_pcm_sframes_t appl_ptr;
2254 snd_pcm_sframes_t ret;
2255 snd_pcm_sframes_t hw_avail;
2256
2257 if (frames == 0)
2258 return 0;
2259
2260 snd_pcm_stream_lock_irq(substream);
2261 switch (runtime->status->state) {
2262 case SNDRV_PCM_STATE_PREPARED:
2263 case SNDRV_PCM_STATE_DRAINING:
2264 break;
2265 case SNDRV_PCM_STATE_RUNNING:
2266 if (snd_pcm_update_hw_ptr(substream) >= 0)
2267 break;
2268 /* Fall through */
2269 case SNDRV_PCM_STATE_XRUN:
2270 ret = -EPIPE;
2271 goto __end;
Lubomir Rintel51840402009-08-02 18:14:44 +02002272 case SNDRV_PCM_STATE_SUSPENDED:
2273 ret = -ESTRPIPE;
2274 goto __end;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002275 default:
2276 ret = -EBADFD;
2277 goto __end;
2278 }
2279
2280 hw_avail = snd_pcm_capture_hw_avail(runtime);
2281 if (hw_avail <= 0) {
2282 ret = 0;
2283 goto __end;
2284 }
2285 if (frames > (snd_pcm_uframes_t)hw_avail)
2286 frames = hw_avail;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002287 appl_ptr = runtime->control->appl_ptr - frames;
2288 if (appl_ptr < 0)
2289 appl_ptr += runtime->boundary;
2290 runtime->control->appl_ptr = appl_ptr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002291 ret = frames;
2292 __end:
2293 snd_pcm_stream_unlock_irq(substream);
2294 return ret;
2295}
2296
Takashi Iwai877211f2005-11-17 13:59:38 +01002297static snd_pcm_sframes_t snd_pcm_playback_forward(struct snd_pcm_substream *substream,
2298 snd_pcm_uframes_t frames)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002299{
Takashi Iwai877211f2005-11-17 13:59:38 +01002300 struct snd_pcm_runtime *runtime = substream->runtime;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002301 snd_pcm_sframes_t appl_ptr;
2302 snd_pcm_sframes_t ret;
2303 snd_pcm_sframes_t avail;
2304
2305 if (frames == 0)
2306 return 0;
2307
2308 snd_pcm_stream_lock_irq(substream);
2309 switch (runtime->status->state) {
2310 case SNDRV_PCM_STATE_PREPARED:
2311 case SNDRV_PCM_STATE_PAUSED:
2312 break;
2313 case SNDRV_PCM_STATE_DRAINING:
2314 case SNDRV_PCM_STATE_RUNNING:
2315 if (snd_pcm_update_hw_ptr(substream) >= 0)
2316 break;
2317 /* Fall through */
2318 case SNDRV_PCM_STATE_XRUN:
2319 ret = -EPIPE;
2320 goto __end;
Lubomir Rintel51840402009-08-02 18:14:44 +02002321 case SNDRV_PCM_STATE_SUSPENDED:
2322 ret = -ESTRPIPE;
2323 goto __end;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002324 default:
2325 ret = -EBADFD;
2326 goto __end;
2327 }
2328
2329 avail = snd_pcm_playback_avail(runtime);
2330 if (avail <= 0) {
2331 ret = 0;
2332 goto __end;
2333 }
2334 if (frames > (snd_pcm_uframes_t)avail)
2335 frames = avail;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002336 appl_ptr = runtime->control->appl_ptr + frames;
2337 if (appl_ptr >= (snd_pcm_sframes_t)runtime->boundary)
2338 appl_ptr -= runtime->boundary;
2339 runtime->control->appl_ptr = appl_ptr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002340 ret = frames;
2341 __end:
2342 snd_pcm_stream_unlock_irq(substream);
2343 return ret;
2344}
2345
Takashi Iwai877211f2005-11-17 13:59:38 +01002346static snd_pcm_sframes_t snd_pcm_capture_forward(struct snd_pcm_substream *substream,
2347 snd_pcm_uframes_t frames)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002348{
Takashi Iwai877211f2005-11-17 13:59:38 +01002349 struct snd_pcm_runtime *runtime = substream->runtime;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002350 snd_pcm_sframes_t appl_ptr;
2351 snd_pcm_sframes_t ret;
2352 snd_pcm_sframes_t avail;
2353
2354 if (frames == 0)
2355 return 0;
2356
2357 snd_pcm_stream_lock_irq(substream);
2358 switch (runtime->status->state) {
2359 case SNDRV_PCM_STATE_PREPARED:
2360 case SNDRV_PCM_STATE_DRAINING:
2361 case SNDRV_PCM_STATE_PAUSED:
2362 break;
2363 case SNDRV_PCM_STATE_RUNNING:
2364 if (snd_pcm_update_hw_ptr(substream) >= 0)
2365 break;
2366 /* Fall through */
2367 case SNDRV_PCM_STATE_XRUN:
2368 ret = -EPIPE;
2369 goto __end;
Lubomir Rintel51840402009-08-02 18:14:44 +02002370 case SNDRV_PCM_STATE_SUSPENDED:
2371 ret = -ESTRPIPE;
2372 goto __end;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002373 default:
2374 ret = -EBADFD;
2375 goto __end;
2376 }
2377
2378 avail = snd_pcm_capture_avail(runtime);
2379 if (avail <= 0) {
2380 ret = 0;
2381 goto __end;
2382 }
2383 if (frames > (snd_pcm_uframes_t)avail)
2384 frames = avail;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002385 appl_ptr = runtime->control->appl_ptr + frames;
2386 if (appl_ptr >= (snd_pcm_sframes_t)runtime->boundary)
2387 appl_ptr -= runtime->boundary;
2388 runtime->control->appl_ptr = appl_ptr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002389 ret = frames;
2390 __end:
2391 snd_pcm_stream_unlock_irq(substream);
2392 return ret;
2393}
2394
Takashi Iwai877211f2005-11-17 13:59:38 +01002395static int snd_pcm_hwsync(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002396{
Takashi Iwai877211f2005-11-17 13:59:38 +01002397 struct snd_pcm_runtime *runtime = substream->runtime;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002398 int err;
2399
2400 snd_pcm_stream_lock_irq(substream);
2401 switch (runtime->status->state) {
2402 case SNDRV_PCM_STATE_DRAINING:
2403 if (substream->stream == SNDRV_PCM_STREAM_CAPTURE)
2404 goto __badfd;
2405 case SNDRV_PCM_STATE_RUNNING:
2406 if ((err = snd_pcm_update_hw_ptr(substream)) < 0)
2407 break;
2408 /* Fall through */
2409 case SNDRV_PCM_STATE_PREPARED:
2410 case SNDRV_PCM_STATE_SUSPENDED:
2411 err = 0;
2412 break;
2413 case SNDRV_PCM_STATE_XRUN:
2414 err = -EPIPE;
2415 break;
2416 default:
2417 __badfd:
2418 err = -EBADFD;
2419 break;
2420 }
2421 snd_pcm_stream_unlock_irq(substream);
2422 return err;
2423}
2424
Takashi Iwai877211f2005-11-17 13:59:38 +01002425static int snd_pcm_delay(struct snd_pcm_substream *substream,
2426 snd_pcm_sframes_t __user *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002427{
Takashi Iwai877211f2005-11-17 13:59:38 +01002428 struct snd_pcm_runtime *runtime = substream->runtime;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002429 int err;
2430 snd_pcm_sframes_t n = 0;
2431
2432 snd_pcm_stream_lock_irq(substream);
2433 switch (runtime->status->state) {
2434 case SNDRV_PCM_STATE_DRAINING:
2435 if (substream->stream == SNDRV_PCM_STREAM_CAPTURE)
2436 goto __badfd;
2437 case SNDRV_PCM_STATE_RUNNING:
2438 if ((err = snd_pcm_update_hw_ptr(substream)) < 0)
2439 break;
2440 /* Fall through */
2441 case SNDRV_PCM_STATE_PREPARED:
2442 case SNDRV_PCM_STATE_SUSPENDED:
2443 err = 0;
2444 if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK)
2445 n = snd_pcm_playback_hw_avail(runtime);
2446 else
2447 n = snd_pcm_capture_avail(runtime);
Takashi Iwai4bbe1dd2008-10-13 03:07:14 +02002448 n += runtime->delay;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002449 break;
2450 case SNDRV_PCM_STATE_XRUN:
2451 err = -EPIPE;
2452 break;
2453 default:
2454 __badfd:
2455 err = -EBADFD;
2456 break;
2457 }
2458 snd_pcm_stream_unlock_irq(substream);
2459 if (!err)
2460 if (put_user(n, res))
2461 err = -EFAULT;
2462 return err;
2463}
2464
Takashi Iwai877211f2005-11-17 13:59:38 +01002465static int snd_pcm_sync_ptr(struct snd_pcm_substream *substream,
2466 struct snd_pcm_sync_ptr __user *_sync_ptr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002467{
Takashi Iwai877211f2005-11-17 13:59:38 +01002468 struct snd_pcm_runtime *runtime = substream->runtime;
2469 struct snd_pcm_sync_ptr sync_ptr;
2470 volatile struct snd_pcm_mmap_status *status;
2471 volatile struct snd_pcm_mmap_control *control;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002472 int err;
2473
2474 memset(&sync_ptr, 0, sizeof(sync_ptr));
2475 if (get_user(sync_ptr.flags, (unsigned __user *)&(_sync_ptr->flags)))
2476 return -EFAULT;
Takashi Iwai877211f2005-11-17 13:59:38 +01002477 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 -07002478 return -EFAULT;
2479 status = runtime->status;
2480 control = runtime->control;
2481 if (sync_ptr.flags & SNDRV_PCM_SYNC_PTR_HWSYNC) {
2482 err = snd_pcm_hwsync(substream);
2483 if (err < 0)
2484 return err;
2485 }
2486 snd_pcm_stream_lock_irq(substream);
2487 if (!(sync_ptr.flags & SNDRV_PCM_SYNC_PTR_APPL))
2488 control->appl_ptr = sync_ptr.c.control.appl_ptr;
2489 else
2490 sync_ptr.c.control.appl_ptr = control->appl_ptr;
2491 if (!(sync_ptr.flags & SNDRV_PCM_SYNC_PTR_AVAIL_MIN))
2492 control->avail_min = sync_ptr.c.control.avail_min;
2493 else
2494 sync_ptr.c.control.avail_min = control->avail_min;
2495 sync_ptr.s.status.state = status->state;
2496 sync_ptr.s.status.hw_ptr = status->hw_ptr;
2497 sync_ptr.s.status.tstamp = status->tstamp;
2498 sync_ptr.s.status.suspended_state = status->suspended_state;
2499 snd_pcm_stream_unlock_irq(substream);
2500 if (copy_to_user(_sync_ptr, &sync_ptr, sizeof(sync_ptr)))
2501 return -EFAULT;
2502 return 0;
2503}
Jaroslav Kyselab751eef2007-12-13 10:19:42 +01002504
2505static int snd_pcm_tstamp(struct snd_pcm_substream *substream, int __user *_arg)
2506{
2507 struct snd_pcm_runtime *runtime = substream->runtime;
2508 int arg;
2509
2510 if (get_user(arg, _arg))
2511 return -EFAULT;
2512 if (arg < 0 || arg > SNDRV_PCM_TSTAMP_TYPE_LAST)
2513 return -EINVAL;
2514 runtime->tstamp_type = SNDRV_PCM_TSTAMP_TYPE_GETTIMEOFDAY;
2515 if (arg == SNDRV_PCM_TSTAMP_TYPE_MONOTONIC)
2516 runtime->tstamp_type = SNDRV_PCM_TSTAMP_TYPE_MONOTONIC;
2517 return 0;
2518}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002519
Takashi Iwai0df63e42006-04-28 15:13:41 +02002520static int snd_pcm_common_ioctl1(struct file *file,
2521 struct snd_pcm_substream *substream,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002522 unsigned int cmd, void __user *arg)
2523{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002524 switch (cmd) {
2525 case SNDRV_PCM_IOCTL_PVERSION:
2526 return put_user(SNDRV_PCM_VERSION, (int __user *)arg) ? -EFAULT : 0;
2527 case SNDRV_PCM_IOCTL_INFO:
2528 return snd_pcm_info_user(substream, arg);
Jaroslav Kysela28e9e472007-12-17 09:02:22 +01002529 case SNDRV_PCM_IOCTL_TSTAMP: /* just for compatibility */
2530 return 0;
Jaroslav Kyselab751eef2007-12-13 10:19:42 +01002531 case SNDRV_PCM_IOCTL_TTSTAMP:
2532 return snd_pcm_tstamp(substream, arg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002533 case SNDRV_PCM_IOCTL_HW_REFINE:
2534 return snd_pcm_hw_refine_user(substream, arg);
2535 case SNDRV_PCM_IOCTL_HW_PARAMS:
2536 return snd_pcm_hw_params_user(substream, arg);
2537 case SNDRV_PCM_IOCTL_HW_FREE:
2538 return snd_pcm_hw_free(substream);
2539 case SNDRV_PCM_IOCTL_SW_PARAMS:
2540 return snd_pcm_sw_params_user(substream, arg);
2541 case SNDRV_PCM_IOCTL_STATUS:
2542 return snd_pcm_status_user(substream, arg);
2543 case SNDRV_PCM_IOCTL_CHANNEL_INFO:
2544 return snd_pcm_channel_info_user(substream, arg);
2545 case SNDRV_PCM_IOCTL_PREPARE:
Takashi Iwai0df63e42006-04-28 15:13:41 +02002546 return snd_pcm_prepare(substream, file);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002547 case SNDRV_PCM_IOCTL_RESET:
2548 return snd_pcm_reset(substream);
2549 case SNDRV_PCM_IOCTL_START:
2550 return snd_pcm_action_lock_irq(&snd_pcm_action_start, substream, SNDRV_PCM_STATE_RUNNING);
2551 case SNDRV_PCM_IOCTL_LINK:
2552 return snd_pcm_link(substream, (int)(unsigned long) arg);
2553 case SNDRV_PCM_IOCTL_UNLINK:
2554 return snd_pcm_unlink(substream);
2555 case SNDRV_PCM_IOCTL_RESUME:
2556 return snd_pcm_resume(substream);
2557 case SNDRV_PCM_IOCTL_XRUN:
2558 return snd_pcm_xrun(substream);
2559 case SNDRV_PCM_IOCTL_HWSYNC:
2560 return snd_pcm_hwsync(substream);
2561 case SNDRV_PCM_IOCTL_DELAY:
2562 return snd_pcm_delay(substream, arg);
2563 case SNDRV_PCM_IOCTL_SYNC_PTR:
2564 return snd_pcm_sync_ptr(substream, arg);
Takashi Iwai59d48582005-12-01 10:51:58 +01002565#ifdef CONFIG_SND_SUPPORT_OLD_API
Linus Torvalds1da177e2005-04-16 15:20:36 -07002566 case SNDRV_PCM_IOCTL_HW_REFINE_OLD:
2567 return snd_pcm_hw_refine_old_user(substream, arg);
2568 case SNDRV_PCM_IOCTL_HW_PARAMS_OLD:
2569 return snd_pcm_hw_params_old_user(substream, arg);
Takashi Iwai59d48582005-12-01 10:51:58 +01002570#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002571 case SNDRV_PCM_IOCTL_DRAIN:
Takashi Iwai4cdc1152009-08-20 16:40:16 +02002572 return snd_pcm_drain(substream, file);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002573 case SNDRV_PCM_IOCTL_DROP:
2574 return snd_pcm_drop(substream);
Takashi Iwaie661d0d2006-02-21 14:14:50 +01002575 case SNDRV_PCM_IOCTL_PAUSE:
2576 {
2577 int res;
2578 snd_pcm_stream_lock_irq(substream);
2579 res = snd_pcm_pause(substream, (int)(unsigned long)arg);
2580 snd_pcm_stream_unlock_irq(substream);
2581 return res;
2582 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002583 }
2584 snd_printd("unknown ioctl = 0x%x\n", cmd);
2585 return -ENOTTY;
2586}
2587
Takashi Iwai0df63e42006-04-28 15:13:41 +02002588static int snd_pcm_playback_ioctl1(struct file *file,
2589 struct snd_pcm_substream *substream,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002590 unsigned int cmd, void __user *arg)
2591{
Takashi Iwai7eaa9432008-08-08 17:09:09 +02002592 if (snd_BUG_ON(!substream))
2593 return -ENXIO;
2594 if (snd_BUG_ON(substream->stream != SNDRV_PCM_STREAM_PLAYBACK))
2595 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002596 switch (cmd) {
2597 case SNDRV_PCM_IOCTL_WRITEI_FRAMES:
2598 {
Takashi Iwai877211f2005-11-17 13:59:38 +01002599 struct snd_xferi xferi;
2600 struct snd_xferi __user *_xferi = arg;
2601 struct snd_pcm_runtime *runtime = substream->runtime;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002602 snd_pcm_sframes_t result;
2603 if (runtime->status->state == SNDRV_PCM_STATE_OPEN)
2604 return -EBADFD;
2605 if (put_user(0, &_xferi->result))
2606 return -EFAULT;
2607 if (copy_from_user(&xferi, _xferi, sizeof(xferi)))
2608 return -EFAULT;
2609 result = snd_pcm_lib_write(substream, xferi.buf, xferi.frames);
2610 __put_user(result, &_xferi->result);
2611 return result < 0 ? result : 0;
2612 }
2613 case SNDRV_PCM_IOCTL_WRITEN_FRAMES:
2614 {
Takashi Iwai877211f2005-11-17 13:59:38 +01002615 struct snd_xfern xfern;
2616 struct snd_xfern __user *_xfern = arg;
2617 struct snd_pcm_runtime *runtime = substream->runtime;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002618 void __user **bufs;
2619 snd_pcm_sframes_t result;
2620 if (runtime->status->state == SNDRV_PCM_STATE_OPEN)
2621 return -EBADFD;
2622 if (runtime->channels > 128)
2623 return -EINVAL;
2624 if (put_user(0, &_xfern->result))
2625 return -EFAULT;
2626 if (copy_from_user(&xfern, _xfern, sizeof(xfern)))
2627 return -EFAULT;
Li Zefanef44a1e2009-04-10 09:43:08 +08002628
2629 bufs = memdup_user(xfern.bufs,
2630 sizeof(void *) * runtime->channels);
2631 if (IS_ERR(bufs))
2632 return PTR_ERR(bufs);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002633 result = snd_pcm_lib_writev(substream, bufs, xfern.frames);
2634 kfree(bufs);
2635 __put_user(result, &_xfern->result);
2636 return result < 0 ? result : 0;
2637 }
2638 case SNDRV_PCM_IOCTL_REWIND:
2639 {
2640 snd_pcm_uframes_t frames;
2641 snd_pcm_uframes_t __user *_frames = arg;
2642 snd_pcm_sframes_t result;
2643 if (get_user(frames, _frames))
2644 return -EFAULT;
2645 if (put_user(0, _frames))
2646 return -EFAULT;
2647 result = snd_pcm_playback_rewind(substream, frames);
2648 __put_user(result, _frames);
2649 return result < 0 ? result : 0;
2650 }
2651 case SNDRV_PCM_IOCTL_FORWARD:
2652 {
2653 snd_pcm_uframes_t frames;
2654 snd_pcm_uframes_t __user *_frames = arg;
2655 snd_pcm_sframes_t result;
2656 if (get_user(frames, _frames))
2657 return -EFAULT;
2658 if (put_user(0, _frames))
2659 return -EFAULT;
2660 result = snd_pcm_playback_forward(substream, frames);
2661 __put_user(result, _frames);
2662 return result < 0 ? result : 0;
2663 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002664 }
Takashi Iwai0df63e42006-04-28 15:13:41 +02002665 return snd_pcm_common_ioctl1(file, substream, cmd, arg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002666}
2667
Takashi Iwai0df63e42006-04-28 15:13:41 +02002668static int snd_pcm_capture_ioctl1(struct file *file,
2669 struct snd_pcm_substream *substream,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002670 unsigned int cmd, void __user *arg)
2671{
Takashi Iwai7eaa9432008-08-08 17:09:09 +02002672 if (snd_BUG_ON(!substream))
2673 return -ENXIO;
2674 if (snd_BUG_ON(substream->stream != SNDRV_PCM_STREAM_CAPTURE))
2675 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002676 switch (cmd) {
2677 case SNDRV_PCM_IOCTL_READI_FRAMES:
2678 {
Takashi Iwai877211f2005-11-17 13:59:38 +01002679 struct snd_xferi xferi;
2680 struct snd_xferi __user *_xferi = arg;
2681 struct snd_pcm_runtime *runtime = substream->runtime;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002682 snd_pcm_sframes_t result;
2683 if (runtime->status->state == SNDRV_PCM_STATE_OPEN)
2684 return -EBADFD;
2685 if (put_user(0, &_xferi->result))
2686 return -EFAULT;
2687 if (copy_from_user(&xferi, _xferi, sizeof(xferi)))
2688 return -EFAULT;
2689 result = snd_pcm_lib_read(substream, xferi.buf, xferi.frames);
2690 __put_user(result, &_xferi->result);
2691 return result < 0 ? result : 0;
2692 }
2693 case SNDRV_PCM_IOCTL_READN_FRAMES:
2694 {
Takashi Iwai877211f2005-11-17 13:59:38 +01002695 struct snd_xfern xfern;
2696 struct snd_xfern __user *_xfern = arg;
2697 struct snd_pcm_runtime *runtime = substream->runtime;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002698 void *bufs;
2699 snd_pcm_sframes_t result;
2700 if (runtime->status->state == SNDRV_PCM_STATE_OPEN)
2701 return -EBADFD;
2702 if (runtime->channels > 128)
2703 return -EINVAL;
2704 if (put_user(0, &_xfern->result))
2705 return -EFAULT;
2706 if (copy_from_user(&xfern, _xfern, sizeof(xfern)))
2707 return -EFAULT;
Li Zefanef44a1e2009-04-10 09:43:08 +08002708
2709 bufs = memdup_user(xfern.bufs,
2710 sizeof(void *) * runtime->channels);
2711 if (IS_ERR(bufs))
2712 return PTR_ERR(bufs);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002713 result = snd_pcm_lib_readv(substream, bufs, xfern.frames);
2714 kfree(bufs);
2715 __put_user(result, &_xfern->result);
2716 return result < 0 ? result : 0;
2717 }
2718 case SNDRV_PCM_IOCTL_REWIND:
2719 {
2720 snd_pcm_uframes_t frames;
2721 snd_pcm_uframes_t __user *_frames = arg;
2722 snd_pcm_sframes_t result;
2723 if (get_user(frames, _frames))
2724 return -EFAULT;
2725 if (put_user(0, _frames))
2726 return -EFAULT;
2727 result = snd_pcm_capture_rewind(substream, frames);
2728 __put_user(result, _frames);
2729 return result < 0 ? result : 0;
2730 }
2731 case SNDRV_PCM_IOCTL_FORWARD:
2732 {
2733 snd_pcm_uframes_t frames;
2734 snd_pcm_uframes_t __user *_frames = arg;
2735 snd_pcm_sframes_t result;
2736 if (get_user(frames, _frames))
2737 return -EFAULT;
2738 if (put_user(0, _frames))
2739 return -EFAULT;
2740 result = snd_pcm_capture_forward(substream, frames);
2741 __put_user(result, _frames);
2742 return result < 0 ? result : 0;
2743 }
2744 }
Takashi Iwai0df63e42006-04-28 15:13:41 +02002745 return snd_pcm_common_ioctl1(file, substream, cmd, arg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002746}
2747
Takashi Iwai877211f2005-11-17 13:59:38 +01002748static long snd_pcm_playback_ioctl(struct file *file, unsigned int cmd,
2749 unsigned long arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002750{
Takashi Iwai877211f2005-11-17 13:59:38 +01002751 struct snd_pcm_file *pcm_file;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002752
2753 pcm_file = file->private_data;
2754
2755 if (((cmd >> 8) & 0xff) != 'A')
2756 return -ENOTTY;
2757
Takashi Iwai0df63e42006-04-28 15:13:41 +02002758 return snd_pcm_playback_ioctl1(file, pcm_file->substream, cmd,
2759 (void __user *)arg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002760}
2761
Takashi Iwai877211f2005-11-17 13:59:38 +01002762static long snd_pcm_capture_ioctl(struct file *file, unsigned int cmd,
2763 unsigned long arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002764{
Takashi Iwai877211f2005-11-17 13:59:38 +01002765 struct snd_pcm_file *pcm_file;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002766
2767 pcm_file = file->private_data;
2768
2769 if (((cmd >> 8) & 0xff) != 'A')
2770 return -ENOTTY;
2771
Takashi Iwai0df63e42006-04-28 15:13:41 +02002772 return snd_pcm_capture_ioctl1(file, pcm_file->substream, cmd,
2773 (void __user *)arg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002774}
2775
Takashi Iwai877211f2005-11-17 13:59:38 +01002776int snd_pcm_kernel_ioctl(struct snd_pcm_substream *substream,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002777 unsigned int cmd, void *arg)
2778{
Takashi Iwaibf1bbb52006-03-27 16:22:45 +02002779 mm_segment_t fs;
2780 int result;
2781
2782 fs = snd_enter_user();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002783 switch (substream->stream) {
2784 case SNDRV_PCM_STREAM_PLAYBACK:
Takashi Iwai0df63e42006-04-28 15:13:41 +02002785 result = snd_pcm_playback_ioctl1(NULL, substream, cmd,
2786 (void __user *)arg);
Takashi Iwaibf1bbb52006-03-27 16:22:45 +02002787 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002788 case SNDRV_PCM_STREAM_CAPTURE:
Takashi Iwai0df63e42006-04-28 15:13:41 +02002789 result = snd_pcm_capture_ioctl1(NULL, substream, cmd,
2790 (void __user *)arg);
Takashi Iwaibf1bbb52006-03-27 16:22:45 +02002791 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002792 default:
Takashi Iwaibf1bbb52006-03-27 16:22:45 +02002793 result = -EINVAL;
2794 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002795 }
Takashi Iwaibf1bbb52006-03-27 16:22:45 +02002796 snd_leave_user(fs);
2797 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002798}
2799
Takashi Iwaie88e8ae62006-04-28 15:13:40 +02002800EXPORT_SYMBOL(snd_pcm_kernel_ioctl);
2801
Takashi Iwai877211f2005-11-17 13:59:38 +01002802static ssize_t snd_pcm_read(struct file *file, char __user *buf, size_t count,
2803 loff_t * offset)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002804{
Takashi Iwai877211f2005-11-17 13:59:38 +01002805 struct snd_pcm_file *pcm_file;
2806 struct snd_pcm_substream *substream;
2807 struct snd_pcm_runtime *runtime;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002808 snd_pcm_sframes_t result;
2809
2810 pcm_file = file->private_data;
2811 substream = pcm_file->substream;
Takashi Iwai7eaa9432008-08-08 17:09:09 +02002812 if (PCM_RUNTIME_CHECK(substream))
2813 return -ENXIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002814 runtime = substream->runtime;
2815 if (runtime->status->state == SNDRV_PCM_STATE_OPEN)
2816 return -EBADFD;
2817 if (!frame_aligned(runtime, count))
2818 return -EINVAL;
2819 count = bytes_to_frames(runtime, count);
2820 result = snd_pcm_lib_read(substream, buf, count);
2821 if (result > 0)
2822 result = frames_to_bytes(runtime, result);
2823 return result;
2824}
2825
Takashi Iwai877211f2005-11-17 13:59:38 +01002826static ssize_t snd_pcm_write(struct file *file, const char __user *buf,
2827 size_t count, loff_t * offset)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002828{
Takashi Iwai877211f2005-11-17 13:59:38 +01002829 struct snd_pcm_file *pcm_file;
2830 struct snd_pcm_substream *substream;
2831 struct snd_pcm_runtime *runtime;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002832 snd_pcm_sframes_t result;
2833
2834 pcm_file = file->private_data;
2835 substream = pcm_file->substream;
Takashi Iwai7eaa9432008-08-08 17:09:09 +02002836 if (PCM_RUNTIME_CHECK(substream))
2837 return -ENXIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002838 runtime = substream->runtime;
Takashi Iwai7eaa9432008-08-08 17:09:09 +02002839 if (runtime->status->state == SNDRV_PCM_STATE_OPEN)
2840 return -EBADFD;
2841 if (!frame_aligned(runtime, count))
2842 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002843 count = bytes_to_frames(runtime, count);
2844 result = snd_pcm_lib_write(substream, buf, count);
2845 if (result > 0)
2846 result = frames_to_bytes(runtime, result);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002847 return result;
2848}
2849
Badari Pulavartyee0b3e62006-09-30 23:28:47 -07002850static ssize_t snd_pcm_aio_read(struct kiocb *iocb, const struct iovec *iov,
2851 unsigned long nr_segs, loff_t pos)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002852
2853{
Takashi Iwai877211f2005-11-17 13:59:38 +01002854 struct snd_pcm_file *pcm_file;
2855 struct snd_pcm_substream *substream;
2856 struct snd_pcm_runtime *runtime;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002857 snd_pcm_sframes_t result;
2858 unsigned long i;
2859 void __user **bufs;
2860 snd_pcm_uframes_t frames;
2861
Badari Pulavartyee0b3e62006-09-30 23:28:47 -07002862 pcm_file = iocb->ki_filp->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002863 substream = pcm_file->substream;
Takashi Iwai7eaa9432008-08-08 17:09:09 +02002864 if (PCM_RUNTIME_CHECK(substream))
2865 return -ENXIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002866 runtime = substream->runtime;
2867 if (runtime->status->state == SNDRV_PCM_STATE_OPEN)
2868 return -EBADFD;
Badari Pulavartyee0b3e62006-09-30 23:28:47 -07002869 if (nr_segs > 1024 || nr_segs != runtime->channels)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002870 return -EINVAL;
Badari Pulavartyee0b3e62006-09-30 23:28:47 -07002871 if (!frame_aligned(runtime, iov->iov_len))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002872 return -EINVAL;
Badari Pulavartyee0b3e62006-09-30 23:28:47 -07002873 frames = bytes_to_samples(runtime, iov->iov_len);
2874 bufs = kmalloc(sizeof(void *) * nr_segs, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002875 if (bufs == NULL)
2876 return -ENOMEM;
Badari Pulavartyee0b3e62006-09-30 23:28:47 -07002877 for (i = 0; i < nr_segs; ++i)
2878 bufs[i] = iov[i].iov_base;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002879 result = snd_pcm_lib_readv(substream, bufs, frames);
2880 if (result > 0)
2881 result = frames_to_bytes(runtime, result);
2882 kfree(bufs);
2883 return result;
2884}
2885
Badari Pulavartyee0b3e62006-09-30 23:28:47 -07002886static ssize_t snd_pcm_aio_write(struct kiocb *iocb, const struct iovec *iov,
2887 unsigned long nr_segs, loff_t pos)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002888{
Takashi Iwai877211f2005-11-17 13:59:38 +01002889 struct snd_pcm_file *pcm_file;
2890 struct snd_pcm_substream *substream;
2891 struct snd_pcm_runtime *runtime;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002892 snd_pcm_sframes_t result;
2893 unsigned long i;
2894 void __user **bufs;
2895 snd_pcm_uframes_t frames;
2896
Badari Pulavartyee0b3e62006-09-30 23:28:47 -07002897 pcm_file = iocb->ki_filp->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002898 substream = pcm_file->substream;
Takashi Iwai7eaa9432008-08-08 17:09:09 +02002899 if (PCM_RUNTIME_CHECK(substream))
2900 return -ENXIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002901 runtime = substream->runtime;
Takashi Iwai7eaa9432008-08-08 17:09:09 +02002902 if (runtime->status->state == SNDRV_PCM_STATE_OPEN)
2903 return -EBADFD;
Badari Pulavartyee0b3e62006-09-30 23:28:47 -07002904 if (nr_segs > 128 || nr_segs != runtime->channels ||
Takashi Iwai7eaa9432008-08-08 17:09:09 +02002905 !frame_aligned(runtime, iov->iov_len))
2906 return -EINVAL;
Badari Pulavartyee0b3e62006-09-30 23:28:47 -07002907 frames = bytes_to_samples(runtime, iov->iov_len);
2908 bufs = kmalloc(sizeof(void *) * nr_segs, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002909 if (bufs == NULL)
2910 return -ENOMEM;
Badari Pulavartyee0b3e62006-09-30 23:28:47 -07002911 for (i = 0; i < nr_segs; ++i)
2912 bufs[i] = iov[i].iov_base;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002913 result = snd_pcm_lib_writev(substream, bufs, frames);
2914 if (result > 0)
2915 result = frames_to_bytes(runtime, result);
2916 kfree(bufs);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002917 return result;
2918}
2919
2920static unsigned int snd_pcm_playback_poll(struct file *file, poll_table * wait)
2921{
Takashi Iwai877211f2005-11-17 13:59:38 +01002922 struct snd_pcm_file *pcm_file;
2923 struct snd_pcm_substream *substream;
2924 struct snd_pcm_runtime *runtime;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002925 unsigned int mask;
2926 snd_pcm_uframes_t avail;
2927
2928 pcm_file = file->private_data;
2929
2930 substream = pcm_file->substream;
Takashi Iwai7eaa9432008-08-08 17:09:09 +02002931 if (PCM_RUNTIME_CHECK(substream))
2932 return -ENXIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002933 runtime = substream->runtime;
2934
2935 poll_wait(file, &runtime->sleep, wait);
2936
2937 snd_pcm_stream_lock_irq(substream);
2938 avail = snd_pcm_playback_avail(runtime);
2939 switch (runtime->status->state) {
2940 case SNDRV_PCM_STATE_RUNNING:
2941 case SNDRV_PCM_STATE_PREPARED:
2942 case SNDRV_PCM_STATE_PAUSED:
2943 if (avail >= runtime->control->avail_min) {
2944 mask = POLLOUT | POLLWRNORM;
2945 break;
2946 }
2947 /* Fall through */
2948 case SNDRV_PCM_STATE_DRAINING:
2949 mask = 0;
2950 break;
2951 default:
2952 mask = POLLOUT | POLLWRNORM | POLLERR;
2953 break;
2954 }
2955 snd_pcm_stream_unlock_irq(substream);
2956 return mask;
2957}
2958
2959static unsigned int snd_pcm_capture_poll(struct file *file, poll_table * wait)
2960{
Takashi Iwai877211f2005-11-17 13:59:38 +01002961 struct snd_pcm_file *pcm_file;
2962 struct snd_pcm_substream *substream;
2963 struct snd_pcm_runtime *runtime;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002964 unsigned int mask;
2965 snd_pcm_uframes_t avail;
2966
2967 pcm_file = file->private_data;
2968
2969 substream = pcm_file->substream;
Takashi Iwai7eaa9432008-08-08 17:09:09 +02002970 if (PCM_RUNTIME_CHECK(substream))
2971 return -ENXIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002972 runtime = substream->runtime;
2973
2974 poll_wait(file, &runtime->sleep, wait);
2975
2976 snd_pcm_stream_lock_irq(substream);
2977 avail = snd_pcm_capture_avail(runtime);
2978 switch (runtime->status->state) {
2979 case SNDRV_PCM_STATE_RUNNING:
2980 case SNDRV_PCM_STATE_PREPARED:
2981 case SNDRV_PCM_STATE_PAUSED:
2982 if (avail >= runtime->control->avail_min) {
2983 mask = POLLIN | POLLRDNORM;
2984 break;
2985 }
2986 mask = 0;
2987 break;
2988 case SNDRV_PCM_STATE_DRAINING:
2989 if (avail > 0) {
2990 mask = POLLIN | POLLRDNORM;
2991 break;
2992 }
2993 /* Fall through */
2994 default:
2995 mask = POLLIN | POLLRDNORM | POLLERR;
2996 break;
2997 }
2998 snd_pcm_stream_unlock_irq(substream);
2999 return mask;
3000}
3001
3002/*
3003 * mmap support
3004 */
3005
3006/*
3007 * Only on coherent architectures, we can mmap the status and the control records
3008 * for effcient data transfer. On others, we have to use HWSYNC ioctl...
3009 */
3010#if defined(CONFIG_X86) || defined(CONFIG_PPC) || defined(CONFIG_ALPHA)
3011/*
3012 * mmap status record
3013 */
Nick Piggin3ad5afc2007-12-13 16:15:00 +01003014static int snd_pcm_mmap_status_fault(struct vm_area_struct *area,
3015 struct vm_fault *vmf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003016{
Takashi Iwai877211f2005-11-17 13:59:38 +01003017 struct snd_pcm_substream *substream = area->vm_private_data;
3018 struct snd_pcm_runtime *runtime;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003019
3020 if (substream == NULL)
Nick Piggin3ad5afc2007-12-13 16:15:00 +01003021 return VM_FAULT_SIGBUS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003022 runtime = substream->runtime;
Nick Piggin3ad5afc2007-12-13 16:15:00 +01003023 vmf->page = virt_to_page(runtime->status);
3024 get_page(vmf->page);
3025 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003026}
3027
Alexey Dobriyanf0f37e22009-09-27 22:29:37 +04003028static const struct vm_operations_struct snd_pcm_vm_ops_status =
Linus Torvalds1da177e2005-04-16 15:20:36 -07003029{
Nick Piggin3ad5afc2007-12-13 16:15:00 +01003030 .fault = snd_pcm_mmap_status_fault,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003031};
3032
Takashi Iwai877211f2005-11-17 13:59:38 +01003033static int snd_pcm_mmap_status(struct snd_pcm_substream *substream, struct file *file,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003034 struct vm_area_struct *area)
3035{
Linus Torvalds1da177e2005-04-16 15:20:36 -07003036 long size;
3037 if (!(area->vm_flags & VM_READ))
3038 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003039 size = area->vm_end - area->vm_start;
Takashi Iwai877211f2005-11-17 13:59:38 +01003040 if (size != PAGE_ALIGN(sizeof(struct snd_pcm_mmap_status)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003041 return -EINVAL;
3042 area->vm_ops = &snd_pcm_vm_ops_status;
3043 area->vm_private_data = substream;
Konstantin Khlebnikov314e51b2012-10-08 16:29:02 -07003044 area->vm_flags |= VM_DONTEXPAND | VM_DONTDUMP;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003045 return 0;
3046}
3047
3048/*
3049 * mmap control record
3050 */
Nick Piggin3ad5afc2007-12-13 16:15:00 +01003051static int snd_pcm_mmap_control_fault(struct vm_area_struct *area,
3052 struct vm_fault *vmf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003053{
Takashi Iwai877211f2005-11-17 13:59:38 +01003054 struct snd_pcm_substream *substream = area->vm_private_data;
3055 struct snd_pcm_runtime *runtime;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003056
3057 if (substream == NULL)
Nick Piggin3ad5afc2007-12-13 16:15:00 +01003058 return VM_FAULT_SIGBUS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003059 runtime = substream->runtime;
Nick Piggin3ad5afc2007-12-13 16:15:00 +01003060 vmf->page = virt_to_page(runtime->control);
3061 get_page(vmf->page);
3062 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003063}
3064
Alexey Dobriyanf0f37e22009-09-27 22:29:37 +04003065static const struct vm_operations_struct snd_pcm_vm_ops_control =
Linus Torvalds1da177e2005-04-16 15:20:36 -07003066{
Nick Piggin3ad5afc2007-12-13 16:15:00 +01003067 .fault = snd_pcm_mmap_control_fault,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003068};
3069
Takashi Iwai877211f2005-11-17 13:59:38 +01003070static int snd_pcm_mmap_control(struct snd_pcm_substream *substream, struct file *file,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003071 struct vm_area_struct *area)
3072{
Linus Torvalds1da177e2005-04-16 15:20:36 -07003073 long size;
3074 if (!(area->vm_flags & VM_READ))
3075 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003076 size = area->vm_end - area->vm_start;
Takashi Iwai877211f2005-11-17 13:59:38 +01003077 if (size != PAGE_ALIGN(sizeof(struct snd_pcm_mmap_control)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003078 return -EINVAL;
3079 area->vm_ops = &snd_pcm_vm_ops_control;
3080 area->vm_private_data = substream;
Konstantin Khlebnikov314e51b2012-10-08 16:29:02 -07003081 area->vm_flags |= VM_DONTEXPAND | VM_DONTDUMP;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003082 return 0;
3083}
3084#else /* ! coherent mmap */
3085/*
3086 * don't support mmap for status and control records.
3087 */
Takashi Iwai877211f2005-11-17 13:59:38 +01003088static int snd_pcm_mmap_status(struct snd_pcm_substream *substream, struct file *file,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003089 struct vm_area_struct *area)
3090{
3091 return -ENXIO;
3092}
Takashi Iwai877211f2005-11-17 13:59:38 +01003093static int snd_pcm_mmap_control(struct snd_pcm_substream *substream, struct file *file,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003094 struct vm_area_struct *area)
3095{
3096 return -ENXIO;
3097}
3098#endif /* coherent mmap */
3099
Takashi Iwai9eb4a062009-11-26 12:43:39 +01003100static inline struct page *
3101snd_pcm_default_page_ops(struct snd_pcm_substream *substream, unsigned long ofs)
3102{
3103 void *vaddr = substream->runtime->dma_area + ofs;
Takashi Iwai66b6cfa2009-11-26 12:50:01 +01003104#if defined(CONFIG_MIPS) && defined(CONFIG_DMA_NONCOHERENT)
3105 if (substream->dma_buffer.dev.type == SNDRV_DMA_TYPE_DEV)
3106 return virt_to_page(CAC_ADDR(vaddr));
3107#endif
Takashi Iwai6985c882009-11-26 15:04:24 +01003108#if defined(CONFIG_PPC32) && defined(CONFIG_NOT_COHERENT_CACHE)
3109 if (substream->dma_buffer.dev.type == SNDRV_DMA_TYPE_DEV) {
3110 dma_addr_t addr = substream->runtime->dma_addr + ofs;
3111 addr -= get_dma_offset(substream->dma_buffer.dev.dev);
3112 /* assume dma_handle set via pfn_to_phys() in
3113 * mm/dma-noncoherent.c
3114 */
3115 return pfn_to_page(addr >> PAGE_SHIFT);
3116 }
3117#endif
Takashi Iwai9eb4a062009-11-26 12:43:39 +01003118 return virt_to_page(vaddr);
3119}
3120
Linus Torvalds1da177e2005-04-16 15:20:36 -07003121/*
Nick Piggin3ad5afc2007-12-13 16:15:00 +01003122 * fault callback for mmapping a RAM page
Linus Torvalds1da177e2005-04-16 15:20:36 -07003123 */
Nick Piggin3ad5afc2007-12-13 16:15:00 +01003124static int snd_pcm_mmap_data_fault(struct vm_area_struct *area,
3125 struct vm_fault *vmf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003126{
Takashi Iwai877211f2005-11-17 13:59:38 +01003127 struct snd_pcm_substream *substream = area->vm_private_data;
3128 struct snd_pcm_runtime *runtime;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003129 unsigned long offset;
3130 struct page * page;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003131 size_t dma_bytes;
3132
3133 if (substream == NULL)
Nick Piggin3ad5afc2007-12-13 16:15:00 +01003134 return VM_FAULT_SIGBUS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003135 runtime = substream->runtime;
Nick Piggin3ad5afc2007-12-13 16:15:00 +01003136 offset = vmf->pgoff << PAGE_SHIFT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003137 dma_bytes = PAGE_ALIGN(runtime->dma_bytes);
3138 if (offset > dma_bytes - PAGE_SIZE)
Nick Piggin3ad5afc2007-12-13 16:15:00 +01003139 return VM_FAULT_SIGBUS;
Takashi Iwai9eb4a062009-11-26 12:43:39 +01003140 if (substream->ops->page)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003141 page = substream->ops->page(substream, offset);
Takashi Iwai9eb4a062009-11-26 12:43:39 +01003142 else
3143 page = snd_pcm_default_page_ops(substream, offset);
3144 if (!page)
3145 return VM_FAULT_SIGBUS;
Nick Pigginb5810032005-10-29 18:16:12 -07003146 get_page(page);
Nick Piggin3ad5afc2007-12-13 16:15:00 +01003147 vmf->page = page;
3148 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003149}
3150
Takashi Iwai657b1982009-11-26 12:40:21 +01003151static const struct vm_operations_struct snd_pcm_vm_ops_data = {
3152 .open = snd_pcm_mmap_data_open,
3153 .close = snd_pcm_mmap_data_close,
3154};
3155
3156static const struct vm_operations_struct snd_pcm_vm_ops_data_fault = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003157 .open = snd_pcm_mmap_data_open,
3158 .close = snd_pcm_mmap_data_close,
Nick Piggin3ad5afc2007-12-13 16:15:00 +01003159 .fault = snd_pcm_mmap_data_fault,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003160};
3161
Takashi Iwai657b1982009-11-26 12:40:21 +01003162#ifndef ARCH_HAS_DMA_MMAP_COHERENT
3163/* This should be defined / handled globally! */
3164#ifdef CONFIG_ARM
3165#define ARCH_HAS_DMA_MMAP_COHERENT
3166#endif
3167#endif
3168
Linus Torvalds1da177e2005-04-16 15:20:36 -07003169/*
3170 * mmap the DMA buffer on RAM
3171 */
Takashi Iwai18a2b962011-09-28 17:12:59 +02003172int snd_pcm_lib_default_mmap(struct snd_pcm_substream *substream,
3173 struct vm_area_struct *area)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003174{
Konstantin Khlebnikov314e51b2012-10-08 16:29:02 -07003175 area->vm_flags |= VM_DONTEXPAND | VM_DONTDUMP;
Takashi Iwai657b1982009-11-26 12:40:21 +01003176#ifdef ARCH_HAS_DMA_MMAP_COHERENT
3177 if (!substream->ops->page &&
3178 substream->dma_buffer.dev.type == SNDRV_DMA_TYPE_DEV)
3179 return dma_mmap_coherent(substream->dma_buffer.dev.dev,
3180 area,
3181 substream->runtime->dma_area,
3182 substream->runtime->dma_addr,
3183 area->vm_end - area->vm_start);
Takashi Iwai9fe17b52010-05-12 10:32:42 +02003184#elif defined(CONFIG_MIPS) && defined(CONFIG_DMA_NONCOHERENT)
3185 if (substream->dma_buffer.dev.type == SNDRV_DMA_TYPE_DEV &&
3186 !plat_device_is_coherent(substream->dma_buffer.dev.dev))
3187 area->vm_page_prot = pgprot_noncached(area->vm_page_prot);
Takashi Iwai657b1982009-11-26 12:40:21 +01003188#endif /* ARCH_HAS_DMA_MMAP_COHERENT */
3189 /* mmap with fault handler */
3190 area->vm_ops = &snd_pcm_vm_ops_data_fault;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003191 return 0;
3192}
Takashi Iwai18a2b962011-09-28 17:12:59 +02003193EXPORT_SYMBOL_GPL(snd_pcm_lib_default_mmap);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003194
3195/*
3196 * mmap the DMA buffer on I/O memory area
3197 */
3198#if SNDRV_PCM_INFO_MMAP_IOMEM
Takashi Iwai877211f2005-11-17 13:59:38 +01003199int snd_pcm_lib_mmap_iomem(struct snd_pcm_substream *substream,
3200 struct vm_area_struct *area)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003201{
3202 long size;
3203 unsigned long offset;
3204
Linus Torvalds1da177e2005-04-16 15:20:36 -07003205 area->vm_page_prot = pgprot_noncached(area->vm_page_prot);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003206 area->vm_flags |= VM_IO;
3207 size = area->vm_end - area->vm_start;
3208 offset = area->vm_pgoff << PAGE_SHIFT;
3209 if (io_remap_pfn_range(area, area->vm_start,
3210 (substream->runtime->dma_addr + offset) >> PAGE_SHIFT,
3211 size, area->vm_page_prot))
3212 return -EAGAIN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003213 return 0;
3214}
Takashi Iwaie88e8ae62006-04-28 15:13:40 +02003215
3216EXPORT_SYMBOL(snd_pcm_lib_mmap_iomem);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003217#endif /* SNDRV_PCM_INFO_MMAP */
3218
3219/*
3220 * mmap DMA buffer
3221 */
Takashi Iwai877211f2005-11-17 13:59:38 +01003222int snd_pcm_mmap_data(struct snd_pcm_substream *substream, struct file *file,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003223 struct vm_area_struct *area)
3224{
Takashi Iwai877211f2005-11-17 13:59:38 +01003225 struct snd_pcm_runtime *runtime;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003226 long size;
3227 unsigned long offset;
3228 size_t dma_bytes;
Takashi Iwai657b1982009-11-26 12:40:21 +01003229 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003230
3231 if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK) {
3232 if (!(area->vm_flags & (VM_WRITE|VM_READ)))
3233 return -EINVAL;
3234 } else {
3235 if (!(area->vm_flags & VM_READ))
3236 return -EINVAL;
3237 }
3238 runtime = substream->runtime;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003239 if (runtime->status->state == SNDRV_PCM_STATE_OPEN)
3240 return -EBADFD;
3241 if (!(runtime->info & SNDRV_PCM_INFO_MMAP))
3242 return -ENXIO;
3243 if (runtime->access == SNDRV_PCM_ACCESS_RW_INTERLEAVED ||
3244 runtime->access == SNDRV_PCM_ACCESS_RW_NONINTERLEAVED)
3245 return -EINVAL;
3246 size = area->vm_end - area->vm_start;
3247 offset = area->vm_pgoff << PAGE_SHIFT;
3248 dma_bytes = PAGE_ALIGN(runtime->dma_bytes);
3249 if ((size_t)size > dma_bytes)
3250 return -EINVAL;
3251 if (offset > dma_bytes - size)
3252 return -EINVAL;
3253
Takashi Iwai657b1982009-11-26 12:40:21 +01003254 area->vm_ops = &snd_pcm_vm_ops_data;
3255 area->vm_private_data = substream;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003256 if (substream->ops->mmap)
Takashi Iwai657b1982009-11-26 12:40:21 +01003257 err = substream->ops->mmap(substream, area);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003258 else
Takashi Iwai18a2b962011-09-28 17:12:59 +02003259 err = snd_pcm_lib_default_mmap(substream, area);
Takashi Iwai657b1982009-11-26 12:40:21 +01003260 if (!err)
3261 atomic_inc(&substream->mmap_count);
3262 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003263}
3264
Takashi Iwaie88e8ae62006-04-28 15:13:40 +02003265EXPORT_SYMBOL(snd_pcm_mmap_data);
3266
Linus Torvalds1da177e2005-04-16 15:20:36 -07003267static int snd_pcm_mmap(struct file *file, struct vm_area_struct *area)
3268{
Takashi Iwai877211f2005-11-17 13:59:38 +01003269 struct snd_pcm_file * pcm_file;
3270 struct snd_pcm_substream *substream;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003271 unsigned long offset;
3272
3273 pcm_file = file->private_data;
3274 substream = pcm_file->substream;
Takashi Iwai7eaa9432008-08-08 17:09:09 +02003275 if (PCM_RUNTIME_CHECK(substream))
3276 return -ENXIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003277
3278 offset = area->vm_pgoff << PAGE_SHIFT;
3279 switch (offset) {
3280 case SNDRV_PCM_MMAP_OFFSET_STATUS:
Takashi Iwai548a6482006-07-31 16:51:51 +02003281 if (pcm_file->no_compat_mmap)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003282 return -ENXIO;
3283 return snd_pcm_mmap_status(substream, file, area);
3284 case SNDRV_PCM_MMAP_OFFSET_CONTROL:
Takashi Iwai548a6482006-07-31 16:51:51 +02003285 if (pcm_file->no_compat_mmap)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003286 return -ENXIO;
3287 return snd_pcm_mmap_control(substream, file, area);
3288 default:
3289 return snd_pcm_mmap_data(substream, file, area);
3290 }
3291 return 0;
3292}
3293
3294static int snd_pcm_fasync(int fd, struct file * file, int on)
3295{
Takashi Iwai877211f2005-11-17 13:59:38 +01003296 struct snd_pcm_file * pcm_file;
3297 struct snd_pcm_substream *substream;
3298 struct snd_pcm_runtime *runtime;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003299
3300 pcm_file = file->private_data;
3301 substream = pcm_file->substream;
Takashi Iwai7eaa9432008-08-08 17:09:09 +02003302 if (PCM_RUNTIME_CHECK(substream))
Takashi Iwaid05468b2010-04-07 18:29:46 +02003303 return -ENXIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003304 runtime = substream->runtime;
Takashi Iwaid05468b2010-04-07 18:29:46 +02003305 return fasync_helper(fd, file, on, &runtime->fasync);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003306}
3307
3308/*
3309 * ioctl32 compat
3310 */
3311#ifdef CONFIG_COMPAT
3312#include "pcm_compat.c"
3313#else
3314#define snd_pcm_ioctl_compat NULL
3315#endif
3316
3317/*
3318 * To be removed helpers to keep binary compatibility
3319 */
3320
Takashi Iwai59d48582005-12-01 10:51:58 +01003321#ifdef CONFIG_SND_SUPPORT_OLD_API
Linus Torvalds1da177e2005-04-16 15:20:36 -07003322#define __OLD_TO_NEW_MASK(x) ((x&7)|((x&0x07fffff8)<<5))
3323#define __NEW_TO_OLD_MASK(x) ((x&7)|((x&0xffffff00)>>5))
3324
Takashi Iwai877211f2005-11-17 13:59:38 +01003325static void snd_pcm_hw_convert_from_old_params(struct snd_pcm_hw_params *params,
3326 struct snd_pcm_hw_params_old *oparams)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003327{
3328 unsigned int i;
3329
3330 memset(params, 0, sizeof(*params));
3331 params->flags = oparams->flags;
3332 for (i = 0; i < ARRAY_SIZE(oparams->masks); i++)
3333 params->masks[i].bits[0] = oparams->masks[i];
3334 memcpy(params->intervals, oparams->intervals, sizeof(oparams->intervals));
3335 params->rmask = __OLD_TO_NEW_MASK(oparams->rmask);
3336 params->cmask = __OLD_TO_NEW_MASK(oparams->cmask);
3337 params->info = oparams->info;
3338 params->msbits = oparams->msbits;
3339 params->rate_num = oparams->rate_num;
3340 params->rate_den = oparams->rate_den;
3341 params->fifo_size = oparams->fifo_size;
3342}
3343
Takashi Iwai877211f2005-11-17 13:59:38 +01003344static void snd_pcm_hw_convert_to_old_params(struct snd_pcm_hw_params_old *oparams,
3345 struct snd_pcm_hw_params *params)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003346{
3347 unsigned int i;
3348
3349 memset(oparams, 0, sizeof(*oparams));
3350 oparams->flags = params->flags;
3351 for (i = 0; i < ARRAY_SIZE(oparams->masks); i++)
3352 oparams->masks[i] = params->masks[i].bits[0];
3353 memcpy(oparams->intervals, params->intervals, sizeof(oparams->intervals));
3354 oparams->rmask = __NEW_TO_OLD_MASK(params->rmask);
3355 oparams->cmask = __NEW_TO_OLD_MASK(params->cmask);
3356 oparams->info = params->info;
3357 oparams->msbits = params->msbits;
3358 oparams->rate_num = params->rate_num;
3359 oparams->rate_den = params->rate_den;
3360 oparams->fifo_size = params->fifo_size;
3361}
3362
Takashi Iwai877211f2005-11-17 13:59:38 +01003363static int snd_pcm_hw_refine_old_user(struct snd_pcm_substream *substream,
3364 struct snd_pcm_hw_params_old __user * _oparams)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003365{
Takashi Iwai877211f2005-11-17 13:59:38 +01003366 struct snd_pcm_hw_params *params;
3367 struct snd_pcm_hw_params_old *oparams = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003368 int err;
3369
3370 params = kmalloc(sizeof(*params), GFP_KERNEL);
Li Zefanef44a1e2009-04-10 09:43:08 +08003371 if (!params)
3372 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003373
Li Zefanef44a1e2009-04-10 09:43:08 +08003374 oparams = memdup_user(_oparams, sizeof(*oparams));
3375 if (IS_ERR(oparams)) {
3376 err = PTR_ERR(oparams);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003377 goto out;
3378 }
3379 snd_pcm_hw_convert_from_old_params(params, oparams);
3380 err = snd_pcm_hw_refine(substream, params);
3381 snd_pcm_hw_convert_to_old_params(oparams, params);
3382 if (copy_to_user(_oparams, oparams, sizeof(*oparams))) {
3383 if (!err)
3384 err = -EFAULT;
3385 }
Li Zefanef44a1e2009-04-10 09:43:08 +08003386
3387 kfree(oparams);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003388out:
3389 kfree(params);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003390 return err;
3391}
3392
Takashi Iwai877211f2005-11-17 13:59:38 +01003393static int snd_pcm_hw_params_old_user(struct snd_pcm_substream *substream,
3394 struct snd_pcm_hw_params_old __user * _oparams)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003395{
Takashi Iwai877211f2005-11-17 13:59:38 +01003396 struct snd_pcm_hw_params *params;
3397 struct snd_pcm_hw_params_old *oparams = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003398 int err;
3399
3400 params = kmalloc(sizeof(*params), GFP_KERNEL);
Li Zefanef44a1e2009-04-10 09:43:08 +08003401 if (!params)
3402 return -ENOMEM;
3403
3404 oparams = memdup_user(_oparams, sizeof(*oparams));
3405 if (IS_ERR(oparams)) {
3406 err = PTR_ERR(oparams);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003407 goto out;
3408 }
3409 snd_pcm_hw_convert_from_old_params(params, oparams);
3410 err = snd_pcm_hw_params(substream, params);
3411 snd_pcm_hw_convert_to_old_params(oparams, params);
3412 if (copy_to_user(_oparams, oparams, sizeof(*oparams))) {
3413 if (!err)
3414 err = -EFAULT;
3415 }
Li Zefanef44a1e2009-04-10 09:43:08 +08003416
3417 kfree(oparams);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003418out:
3419 kfree(params);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003420 return err;
3421}
Takashi Iwai59d48582005-12-01 10:51:58 +01003422#endif /* CONFIG_SND_SUPPORT_OLD_API */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003423
Cliff Cai70036092008-09-03 10:54:36 +02003424#ifndef CONFIG_MMU
Daniel Glöckner55c63bd2010-03-09 12:57:52 -05003425static unsigned long snd_pcm_get_unmapped_area(struct file *file,
3426 unsigned long addr,
3427 unsigned long len,
3428 unsigned long pgoff,
3429 unsigned long flags)
Cliff Cai70036092008-09-03 10:54:36 +02003430{
Daniel Glöckner55c63bd2010-03-09 12:57:52 -05003431 struct snd_pcm_file *pcm_file = file->private_data;
3432 struct snd_pcm_substream *substream = pcm_file->substream;
3433 struct snd_pcm_runtime *runtime = substream->runtime;
3434 unsigned long offset = pgoff << PAGE_SHIFT;
3435
3436 switch (offset) {
3437 case SNDRV_PCM_MMAP_OFFSET_STATUS:
3438 return (unsigned long)runtime->status;
3439 case SNDRV_PCM_MMAP_OFFSET_CONTROL:
3440 return (unsigned long)runtime->control;
3441 default:
3442 return (unsigned long)runtime->dma_area + offset;
3443 }
Cliff Cai70036092008-09-03 10:54:36 +02003444}
3445#else
Daniel Glöckner55c63bd2010-03-09 12:57:52 -05003446# define snd_pcm_get_unmapped_area NULL
Cliff Cai70036092008-09-03 10:54:36 +02003447#endif
3448
Linus Torvalds1da177e2005-04-16 15:20:36 -07003449/*
3450 * Register section
3451 */
3452
Arjan van de Ven9c2e08c2007-02-12 00:55:37 -08003453const struct file_operations snd_pcm_f_ops[2] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003454 {
Clemens Ladisch2af677f2005-11-20 14:03:48 +01003455 .owner = THIS_MODULE,
3456 .write = snd_pcm_write,
Badari Pulavartyee0b3e62006-09-30 23:28:47 -07003457 .aio_write = snd_pcm_aio_write,
Clemens Ladischf87135f2005-11-20 14:06:59 +01003458 .open = snd_pcm_playback_open,
Clemens Ladisch2af677f2005-11-20 14:03:48 +01003459 .release = snd_pcm_release,
Takashi Iwai02f48652010-04-13 11:49:04 +02003460 .llseek = no_llseek,
Clemens Ladisch2af677f2005-11-20 14:03:48 +01003461 .poll = snd_pcm_playback_poll,
3462 .unlocked_ioctl = snd_pcm_playback_ioctl,
3463 .compat_ioctl = snd_pcm_ioctl_compat,
3464 .mmap = snd_pcm_mmap,
3465 .fasync = snd_pcm_fasync,
Daniel Glöckner55c63bd2010-03-09 12:57:52 -05003466 .get_unmapped_area = snd_pcm_get_unmapped_area,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003467 },
3468 {
Clemens Ladisch2af677f2005-11-20 14:03:48 +01003469 .owner = THIS_MODULE,
3470 .read = snd_pcm_read,
Badari Pulavartyee0b3e62006-09-30 23:28:47 -07003471 .aio_read = snd_pcm_aio_read,
Clemens Ladischf87135f2005-11-20 14:06:59 +01003472 .open = snd_pcm_capture_open,
Clemens Ladisch2af677f2005-11-20 14:03:48 +01003473 .release = snd_pcm_release,
Takashi Iwai02f48652010-04-13 11:49:04 +02003474 .llseek = no_llseek,
Clemens Ladisch2af677f2005-11-20 14:03:48 +01003475 .poll = snd_pcm_capture_poll,
3476 .unlocked_ioctl = snd_pcm_capture_ioctl,
3477 .compat_ioctl = snd_pcm_ioctl_compat,
3478 .mmap = snd_pcm_mmap,
3479 .fasync = snd_pcm_fasync,
Daniel Glöckner55c63bd2010-03-09 12:57:52 -05003480 .get_unmapped_area = snd_pcm_get_unmapped_area,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003481 }
3482};