blob: 09b4286c65f9d7d6e7ab8abed498ad2d7f96e737 [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 Iwai9b0573c2012-10-12 15:07:34 +0200372static void snd_pcm_set_state(struct snd_pcm_substream *substream, int state)
373{
374 snd_pcm_stream_lock_irq(substream);
375 if (substream->runtime->status->state != SNDRV_PCM_STATE_DISCONNECTED)
376 substream->runtime->status->state = state;
377 snd_pcm_stream_unlock_irq(substream);
378}
379
Takashi Iwai877211f2005-11-17 13:59:38 +0100380static int snd_pcm_hw_params(struct snd_pcm_substream *substream,
381 struct snd_pcm_hw_params *params)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382{
Takashi Iwai877211f2005-11-17 13:59:38 +0100383 struct snd_pcm_runtime *runtime;
Takashi Iwai9442e692006-09-30 23:27:19 -0700384 int err, usecs;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385 unsigned int bits;
386 snd_pcm_uframes_t frames;
387
Takashi Iwai7eaa9432008-08-08 17:09:09 +0200388 if (PCM_RUNTIME_CHECK(substream))
389 return -ENXIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700390 runtime = substream->runtime;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700391 snd_pcm_stream_lock_irq(substream);
392 switch (runtime->status->state) {
393 case SNDRV_PCM_STATE_OPEN:
394 case SNDRV_PCM_STATE_SETUP:
395 case SNDRV_PCM_STATE_PREPARED:
396 break;
397 default:
398 snd_pcm_stream_unlock_irq(substream);
399 return -EBADFD;
400 }
401 snd_pcm_stream_unlock_irq(substream);
402#if defined(CONFIG_SND_PCM_OSS) || defined(CONFIG_SND_PCM_OSS_MODULE)
403 if (!substream->oss.oss)
404#endif
Takashi Iwai9c323fc2006-04-28 15:13:41 +0200405 if (atomic_read(&substream->mmap_count))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700406 return -EBADFD;
407
408 params->rmask = ~0U;
409 err = snd_pcm_hw_refine(substream, params);
410 if (err < 0)
411 goto _error;
412
413 err = snd_pcm_hw_params_choose(substream, params);
414 if (err < 0)
415 goto _error;
416
417 if (substream->ops->hw_params != NULL) {
418 err = substream->ops->hw_params(substream, params);
419 if (err < 0)
420 goto _error;
421 }
422
423 runtime->access = params_access(params);
424 runtime->format = params_format(params);
425 runtime->subformat = params_subformat(params);
426 runtime->channels = params_channels(params);
427 runtime->rate = params_rate(params);
428 runtime->period_size = params_period_size(params);
429 runtime->periods = params_periods(params);
430 runtime->buffer_size = params_buffer_size(params);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700431 runtime->info = params->info;
432 runtime->rate_num = params->rate_num;
433 runtime->rate_den = params->rate_den;
Clemens Ladischab69a492010-11-15 10:46:23 +0100434 runtime->no_period_wakeup =
435 (params->info & SNDRV_PCM_INFO_NO_PERIOD_WAKEUP) &&
436 (params->flags & SNDRV_PCM_HW_PARAMS_NO_PERIOD_WAKEUP);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700437
438 bits = snd_pcm_format_physical_width(runtime->format);
439 runtime->sample_bits = bits;
440 bits *= runtime->channels;
441 runtime->frame_bits = bits;
442 frames = 1;
443 while (bits % 8 != 0) {
444 bits *= 2;
445 frames *= 2;
446 }
447 runtime->byte_align = bits / 8;
448 runtime->min_align = frames;
449
450 /* Default sw params */
451 runtime->tstamp_mode = SNDRV_PCM_TSTAMP_NONE;
452 runtime->period_step = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453 runtime->control->avail_min = runtime->period_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700454 runtime->start_threshold = 1;
455 runtime->stop_threshold = runtime->buffer_size;
456 runtime->silence_threshold = 0;
457 runtime->silence_size = 0;
Clemens Ladischead40462010-05-21 09:15:59 +0200458 runtime->boundary = runtime->buffer_size;
459 while (runtime->boundary * 2 <= LONG_MAX - runtime->buffer_size)
460 runtime->boundary *= 2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700461
462 snd_pcm_timer_resolution_change(substream);
Takashi Iwai9b0573c2012-10-12 15:07:34 +0200463 snd_pcm_set_state(substream, SNDRV_PCM_STATE_SETUP);
Takashi Iwai9442e692006-09-30 23:27:19 -0700464
James Bottomley82f68252010-07-05 22:53:06 +0200465 if (pm_qos_request_active(&substream->latency_pm_qos_req))
466 pm_qos_remove_request(&substream->latency_pm_qos_req);
Takashi Iwai9442e692006-09-30 23:27:19 -0700467 if ((usecs = period_to_usecs(runtime)) >= 0)
James Bottomley82f68252010-07-05 22:53:06 +0200468 pm_qos_add_request(&substream->latency_pm_qos_req,
469 PM_QOS_CPU_DMA_LATENCY, usecs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700470 return 0;
471 _error:
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300472 /* hardware might be unusable from this time,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700473 so we force application to retry to set
474 the correct hardware parameter settings */
Takashi Iwai9b0573c2012-10-12 15:07:34 +0200475 snd_pcm_set_state(substream, SNDRV_PCM_STATE_OPEN);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700476 if (substream->ops->hw_free != NULL)
477 substream->ops->hw_free(substream);
478 return err;
479}
480
Takashi Iwai877211f2005-11-17 13:59:38 +0100481static int snd_pcm_hw_params_user(struct snd_pcm_substream *substream,
482 struct snd_pcm_hw_params __user * _params)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483{
Takashi Iwai877211f2005-11-17 13:59:38 +0100484 struct snd_pcm_hw_params *params;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700485 int err;
486
Li Zefanef44a1e2009-04-10 09:43:08 +0800487 params = memdup_user(_params, sizeof(*params));
488 if (IS_ERR(params))
489 return PTR_ERR(params);
490
Linus Torvalds1da177e2005-04-16 15:20:36 -0700491 err = snd_pcm_hw_params(substream, params);
492 if (copy_to_user(_params, params, sizeof(*params))) {
493 if (!err)
494 err = -EFAULT;
495 }
Li Zefanef44a1e2009-04-10 09:43:08 +0800496
Linus Torvalds1da177e2005-04-16 15:20:36 -0700497 kfree(params);
498 return err;
499}
500
Takashi Iwai877211f2005-11-17 13:59:38 +0100501static int snd_pcm_hw_free(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700502{
Takashi Iwai877211f2005-11-17 13:59:38 +0100503 struct snd_pcm_runtime *runtime;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700504 int result = 0;
505
Takashi Iwai7eaa9432008-08-08 17:09:09 +0200506 if (PCM_RUNTIME_CHECK(substream))
507 return -ENXIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700508 runtime = substream->runtime;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700509 snd_pcm_stream_lock_irq(substream);
510 switch (runtime->status->state) {
511 case SNDRV_PCM_STATE_SETUP:
512 case SNDRV_PCM_STATE_PREPARED:
513 break;
514 default:
515 snd_pcm_stream_unlock_irq(substream);
516 return -EBADFD;
517 }
518 snd_pcm_stream_unlock_irq(substream);
Takashi Iwai9c323fc2006-04-28 15:13:41 +0200519 if (atomic_read(&substream->mmap_count))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700520 return -EBADFD;
521 if (substream->ops->hw_free)
522 result = substream->ops->hw_free(substream);
Takashi Iwai9b0573c2012-10-12 15:07:34 +0200523 snd_pcm_set_state(substream, SNDRV_PCM_STATE_OPEN);
James Bottomley82f68252010-07-05 22:53:06 +0200524 pm_qos_remove_request(&substream->latency_pm_qos_req);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700525 return result;
526}
527
Takashi Iwai877211f2005-11-17 13:59:38 +0100528static int snd_pcm_sw_params(struct snd_pcm_substream *substream,
529 struct snd_pcm_sw_params *params)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700530{
Takashi Iwai877211f2005-11-17 13:59:38 +0100531 struct snd_pcm_runtime *runtime;
Jaroslav Kysela12509322010-01-07 15:36:31 +0100532 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700533
Takashi Iwai7eaa9432008-08-08 17:09:09 +0200534 if (PCM_RUNTIME_CHECK(substream))
535 return -ENXIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700536 runtime = substream->runtime;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700537 snd_pcm_stream_lock_irq(substream);
538 if (runtime->status->state == SNDRV_PCM_STATE_OPEN) {
539 snd_pcm_stream_unlock_irq(substream);
540 return -EBADFD;
541 }
542 snd_pcm_stream_unlock_irq(substream);
543
544 if (params->tstamp_mode > SNDRV_PCM_TSTAMP_LAST)
545 return -EINVAL;
546 if (params->avail_min == 0)
547 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700548 if (params->silence_size >= runtime->boundary) {
549 if (params->silence_threshold != 0)
550 return -EINVAL;
551 } else {
552 if (params->silence_size > params->silence_threshold)
553 return -EINVAL;
554 if (params->silence_threshold > runtime->buffer_size)
555 return -EINVAL;
556 }
Jaroslav Kysela12509322010-01-07 15:36:31 +0100557 err = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700558 snd_pcm_stream_lock_irq(substream);
559 runtime->tstamp_mode = params->tstamp_mode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700560 runtime->period_step = params->period_step;
561 runtime->control->avail_min = params->avail_min;
562 runtime->start_threshold = params->start_threshold;
563 runtime->stop_threshold = params->stop_threshold;
564 runtime->silence_threshold = params->silence_threshold;
565 runtime->silence_size = params->silence_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700566 params->boundary = runtime->boundary;
567 if (snd_pcm_running(substream)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700568 if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK &&
569 runtime->silence_size > 0)
570 snd_pcm_playback_silence(substream, ULONG_MAX);
Jaroslav Kysela12509322010-01-07 15:36:31 +0100571 err = snd_pcm_update_state(substream, runtime);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700572 }
573 snd_pcm_stream_unlock_irq(substream);
Jaroslav Kysela12509322010-01-07 15:36:31 +0100574 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700575}
576
Takashi Iwai877211f2005-11-17 13:59:38 +0100577static int snd_pcm_sw_params_user(struct snd_pcm_substream *substream,
578 struct snd_pcm_sw_params __user * _params)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700579{
Takashi Iwai877211f2005-11-17 13:59:38 +0100580 struct snd_pcm_sw_params params;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700581 int err;
582 if (copy_from_user(&params, _params, sizeof(params)))
583 return -EFAULT;
584 err = snd_pcm_sw_params(substream, &params);
585 if (copy_to_user(_params, &params, sizeof(params)))
586 return -EFAULT;
587 return err;
588}
589
Takashi Iwai877211f2005-11-17 13:59:38 +0100590int snd_pcm_status(struct snd_pcm_substream *substream,
591 struct snd_pcm_status *status)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700592{
Takashi Iwai877211f2005-11-17 13:59:38 +0100593 struct snd_pcm_runtime *runtime = substream->runtime;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700594
595 snd_pcm_stream_lock_irq(substream);
596 status->state = runtime->status->state;
597 status->suspended_state = runtime->status->suspended_state;
598 if (status->state == SNDRV_PCM_STATE_OPEN)
599 goto _end;
600 status->trigger_tstamp = runtime->trigger_tstamp;
Jaroslav Kysela8c121582008-01-11 08:45:08 +0100601 if (snd_pcm_running(substream)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700602 snd_pcm_update_hw_ptr(substream);
Jaroslav Kysela8c121582008-01-11 08:45:08 +0100603 if (runtime->tstamp_mode == SNDRV_PCM_TSTAMP_ENABLE) {
604 status->tstamp = runtime->status->tstamp;
Pierre-Louis Bossart4eeaaea2012-10-22 16:42:15 -0500605 status->audio_tstamp =
606 runtime->status->audio_tstamp;
Jaroslav Kysela8c121582008-01-11 08:45:08 +0100607 goto _tstamp_end;
608 }
609 }
Jaroslav Kyselaa713b582008-01-08 12:24:01 +0100610 snd_pcm_gettime(runtime, &status->tstamp);
Jaroslav Kysela8c121582008-01-11 08:45:08 +0100611 _tstamp_end:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700612 status->appl_ptr = runtime->control->appl_ptr;
613 status->hw_ptr = runtime->status->hw_ptr;
614 if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK) {
615 status->avail = snd_pcm_playback_avail(runtime);
616 if (runtime->status->state == SNDRV_PCM_STATE_RUNNING ||
Takashi Iwai4bbe1dd2008-10-13 03:07:14 +0200617 runtime->status->state == SNDRV_PCM_STATE_DRAINING) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700618 status->delay = runtime->buffer_size - status->avail;
Takashi Iwai4bbe1dd2008-10-13 03:07:14 +0200619 status->delay += runtime->delay;
620 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700621 status->delay = 0;
622 } else {
623 status->avail = snd_pcm_capture_avail(runtime);
624 if (runtime->status->state == SNDRV_PCM_STATE_RUNNING)
Takashi Iwai4bbe1dd2008-10-13 03:07:14 +0200625 status->delay = status->avail + runtime->delay;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700626 else
627 status->delay = 0;
628 }
629 status->avail_max = runtime->avail_max;
630 status->overrange = runtime->overrange;
631 runtime->avail_max = 0;
632 runtime->overrange = 0;
633 _end:
634 snd_pcm_stream_unlock_irq(substream);
635 return 0;
636}
637
Takashi Iwai877211f2005-11-17 13:59:38 +0100638static int snd_pcm_status_user(struct snd_pcm_substream *substream,
639 struct snd_pcm_status __user * _status)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700640{
Takashi Iwai877211f2005-11-17 13:59:38 +0100641 struct snd_pcm_status status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700642 int res;
643
Linus Torvalds1da177e2005-04-16 15:20:36 -0700644 memset(&status, 0, sizeof(status));
645 res = snd_pcm_status(substream, &status);
646 if (res < 0)
647 return res;
648 if (copy_to_user(_status, &status, sizeof(status)))
649 return -EFAULT;
650 return 0;
651}
652
Takashi Iwai877211f2005-11-17 13:59:38 +0100653static int snd_pcm_channel_info(struct snd_pcm_substream *substream,
654 struct snd_pcm_channel_info * info)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700655{
Takashi Iwai877211f2005-11-17 13:59:38 +0100656 struct snd_pcm_runtime *runtime;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700657 unsigned int channel;
658
Linus Torvalds1da177e2005-04-16 15:20:36 -0700659 channel = info->channel;
660 runtime = substream->runtime;
661 snd_pcm_stream_lock_irq(substream);
662 if (runtime->status->state == SNDRV_PCM_STATE_OPEN) {
663 snd_pcm_stream_unlock_irq(substream);
664 return -EBADFD;
665 }
666 snd_pcm_stream_unlock_irq(substream);
667 if (channel >= runtime->channels)
668 return -EINVAL;
669 memset(info, 0, sizeof(*info));
670 info->channel = channel;
671 return substream->ops->ioctl(substream, SNDRV_PCM_IOCTL1_CHANNEL_INFO, info);
672}
673
Takashi Iwai877211f2005-11-17 13:59:38 +0100674static int snd_pcm_channel_info_user(struct snd_pcm_substream *substream,
675 struct snd_pcm_channel_info __user * _info)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700676{
Takashi Iwai877211f2005-11-17 13:59:38 +0100677 struct snd_pcm_channel_info info;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700678 int res;
679
680 if (copy_from_user(&info, _info, sizeof(info)))
681 return -EFAULT;
682 res = snd_pcm_channel_info(substream, &info);
683 if (res < 0)
684 return res;
685 if (copy_to_user(_info, &info, sizeof(info)))
686 return -EFAULT;
687 return 0;
688}
689
Takashi Iwai877211f2005-11-17 13:59:38 +0100690static void snd_pcm_trigger_tstamp(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700691{
Takashi Iwai877211f2005-11-17 13:59:38 +0100692 struct snd_pcm_runtime *runtime = substream->runtime;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700693 if (runtime->trigger_master == NULL)
694 return;
695 if (runtime->trigger_master == substream) {
Jaroslav Kyselab751eef2007-12-13 10:19:42 +0100696 snd_pcm_gettime(runtime, &runtime->trigger_tstamp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700697 } else {
698 snd_pcm_trigger_tstamp(runtime->trigger_master);
699 runtime->trigger_tstamp = runtime->trigger_master->runtime->trigger_tstamp;
700 }
701 runtime->trigger_master = NULL;
702}
703
704struct action_ops {
Takashi Iwai877211f2005-11-17 13:59:38 +0100705 int (*pre_action)(struct snd_pcm_substream *substream, int state);
706 int (*do_action)(struct snd_pcm_substream *substream, int state);
707 void (*undo_action)(struct snd_pcm_substream *substream, int state);
708 void (*post_action)(struct snd_pcm_substream *substream, int state);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700709};
710
711/*
712 * this functions is core for handling of linked stream
713 * Note: the stream state might be changed also on failure
714 * Note2: call with calling stream lock + link lock
715 */
716static int snd_pcm_action_group(struct action_ops *ops,
Takashi Iwai877211f2005-11-17 13:59:38 +0100717 struct snd_pcm_substream *substream,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700718 int state, int do_lock)
719{
Takashi Iwai877211f2005-11-17 13:59:38 +0100720 struct snd_pcm_substream *s = NULL;
721 struct snd_pcm_substream *s1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700722 int res = 0;
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 if (do_lock && s != substream)
Frederik Deweerdt208eee22007-04-05 16:57:41 +0200726 spin_lock_nested(&s->self_group.lock,
727 SINGLE_DEPTH_NESTING);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700728 res = ops->pre_action(s, state);
729 if (res < 0)
730 goto _unlock;
731 }
Takashi Iwaief991b92007-02-22 12:52:53 +0100732 snd_pcm_group_for_each_entry(s, substream) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700733 res = ops->do_action(s, state);
734 if (res < 0) {
735 if (ops->undo_action) {
Takashi Iwaief991b92007-02-22 12:52:53 +0100736 snd_pcm_group_for_each_entry(s1, substream) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700737 if (s1 == s) /* failed stream */
738 break;
739 ops->undo_action(s1, state);
740 }
741 }
742 s = NULL; /* unlock all */
743 goto _unlock;
744 }
745 }
Takashi Iwaief991b92007-02-22 12:52:53 +0100746 snd_pcm_group_for_each_entry(s, substream) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700747 ops->post_action(s, state);
748 }
749 _unlock:
750 if (do_lock) {
751 /* unlock streams */
Takashi Iwaief991b92007-02-22 12:52:53 +0100752 snd_pcm_group_for_each_entry(s1, substream) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700753 if (s1 != substream)
754 spin_unlock(&s1->self_group.lock);
755 if (s1 == s) /* end */
756 break;
757 }
758 }
759 return res;
760}
761
762/*
763 * Note: call with stream lock
764 */
765static int snd_pcm_action_single(struct action_ops *ops,
Takashi Iwai877211f2005-11-17 13:59:38 +0100766 struct snd_pcm_substream *substream,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700767 int state)
768{
769 int res;
770
771 res = ops->pre_action(substream, state);
772 if (res < 0)
773 return res;
774 res = ops->do_action(substream, state);
775 if (res == 0)
776 ops->post_action(substream, state);
777 else if (ops->undo_action)
778 ops->undo_action(substream, state);
779 return res;
780}
781
782/*
783 * Note: call with stream lock
784 */
785static int snd_pcm_action(struct action_ops *ops,
Takashi Iwai877211f2005-11-17 13:59:38 +0100786 struct snd_pcm_substream *substream,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700787 int state)
788{
789 int res;
790
791 if (snd_pcm_stream_linked(substream)) {
792 if (!spin_trylock(&substream->group->lock)) {
793 spin_unlock(&substream->self_group.lock);
794 spin_lock(&substream->group->lock);
795 spin_lock(&substream->self_group.lock);
796 }
797 res = snd_pcm_action_group(ops, substream, state, 1);
798 spin_unlock(&substream->group->lock);
799 } else {
800 res = snd_pcm_action_single(ops, substream, state);
801 }
802 return res;
803}
804
805/*
806 * Note: don't use any locks before
807 */
808static int snd_pcm_action_lock_irq(struct action_ops *ops,
Takashi Iwai877211f2005-11-17 13:59:38 +0100809 struct snd_pcm_substream *substream,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700810 int state)
811{
812 int res;
813
814 read_lock_irq(&snd_pcm_link_rwlock);
815 if (snd_pcm_stream_linked(substream)) {
816 spin_lock(&substream->group->lock);
817 spin_lock(&substream->self_group.lock);
818 res = snd_pcm_action_group(ops, substream, state, 1);
819 spin_unlock(&substream->self_group.lock);
820 spin_unlock(&substream->group->lock);
821 } else {
822 spin_lock(&substream->self_group.lock);
823 res = snd_pcm_action_single(ops, substream, state);
824 spin_unlock(&substream->self_group.lock);
825 }
826 read_unlock_irq(&snd_pcm_link_rwlock);
827 return res;
828}
829
830/*
831 */
832static int snd_pcm_action_nonatomic(struct action_ops *ops,
Takashi Iwai877211f2005-11-17 13:59:38 +0100833 struct snd_pcm_substream *substream,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700834 int state)
835{
836 int res;
837
838 down_read(&snd_pcm_link_rwsem);
839 if (snd_pcm_stream_linked(substream))
840 res = snd_pcm_action_group(ops, substream, state, 0);
841 else
842 res = snd_pcm_action_single(ops, substream, state);
843 up_read(&snd_pcm_link_rwsem);
844 return res;
845}
846
847/*
848 * start callbacks
849 */
Takashi Iwai877211f2005-11-17 13:59:38 +0100850static int snd_pcm_pre_start(struct snd_pcm_substream *substream, int state)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700851{
Takashi Iwai877211f2005-11-17 13:59:38 +0100852 struct snd_pcm_runtime *runtime = substream->runtime;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700853 if (runtime->status->state != SNDRV_PCM_STATE_PREPARED)
854 return -EBADFD;
855 if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK &&
856 !snd_pcm_playback_data(substream))
857 return -EPIPE;
858 runtime->trigger_master = substream;
859 return 0;
860}
861
Takashi Iwai877211f2005-11-17 13:59:38 +0100862static int snd_pcm_do_start(struct snd_pcm_substream *substream, int state)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700863{
864 if (substream->runtime->trigger_master != substream)
865 return 0;
866 return substream->ops->trigger(substream, SNDRV_PCM_TRIGGER_START);
867}
868
Takashi Iwai877211f2005-11-17 13:59:38 +0100869static void snd_pcm_undo_start(struct snd_pcm_substream *substream, int state)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700870{
871 if (substream->runtime->trigger_master == substream)
872 substream->ops->trigger(substream, SNDRV_PCM_TRIGGER_STOP);
873}
874
Takashi Iwai877211f2005-11-17 13:59:38 +0100875static void snd_pcm_post_start(struct snd_pcm_substream *substream, int state)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700876{
Takashi Iwai877211f2005-11-17 13:59:38 +0100877 struct snd_pcm_runtime *runtime = substream->runtime;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700878 snd_pcm_trigger_tstamp(substream);
Takashi Iwai6af3fb72009-05-27 10:49:26 +0200879 runtime->hw_ptr_jiffies = jiffies;
Jaroslav Kyselabd76af02010-08-18 14:16:54 +0200880 runtime->hw_ptr_buffer_jiffies = (runtime->buffer_size * HZ) /
881 runtime->rate;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700882 runtime->status->state = state;
883 if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK &&
884 runtime->silence_size > 0)
885 snd_pcm_playback_silence(substream, ULONG_MAX);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700886 if (substream->timer)
Takashi Iwai877211f2005-11-17 13:59:38 +0100887 snd_timer_notify(substream->timer, SNDRV_TIMER_EVENT_MSTART,
888 &runtime->trigger_tstamp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700889}
890
891static struct action_ops snd_pcm_action_start = {
892 .pre_action = snd_pcm_pre_start,
893 .do_action = snd_pcm_do_start,
894 .undo_action = snd_pcm_undo_start,
895 .post_action = snd_pcm_post_start
896};
897
898/**
Randy Dunlap1c85cc62008-10-15 14:38:40 -0700899 * snd_pcm_start - start all linked streams
Takashi Iwaidf8db932005-09-07 13:38:19 +0200900 * @substream: the PCM substream instance
Linus Torvalds1da177e2005-04-16 15:20:36 -0700901 */
Takashi Iwai877211f2005-11-17 13:59:38 +0100902int snd_pcm_start(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700903{
Takashi Iwai877211f2005-11-17 13:59:38 +0100904 return snd_pcm_action(&snd_pcm_action_start, substream,
905 SNDRV_PCM_STATE_RUNNING);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700906}
907
908/*
909 * stop callbacks
910 */
Takashi Iwai877211f2005-11-17 13:59:38 +0100911static int snd_pcm_pre_stop(struct snd_pcm_substream *substream, int state)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700912{
Takashi Iwai877211f2005-11-17 13:59:38 +0100913 struct snd_pcm_runtime *runtime = substream->runtime;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700914 if (runtime->status->state == SNDRV_PCM_STATE_OPEN)
915 return -EBADFD;
916 runtime->trigger_master = substream;
917 return 0;
918}
919
Takashi Iwai877211f2005-11-17 13:59:38 +0100920static int snd_pcm_do_stop(struct snd_pcm_substream *substream, int state)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700921{
922 if (substream->runtime->trigger_master == substream &&
923 snd_pcm_running(substream))
924 substream->ops->trigger(substream, SNDRV_PCM_TRIGGER_STOP);
925 return 0; /* unconditonally stop all substreams */
926}
927
Takashi Iwai877211f2005-11-17 13:59:38 +0100928static void snd_pcm_post_stop(struct snd_pcm_substream *substream, int state)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700929{
Takashi Iwai877211f2005-11-17 13:59:38 +0100930 struct snd_pcm_runtime *runtime = substream->runtime;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700931 if (runtime->status->state != state) {
932 snd_pcm_trigger_tstamp(substream);
933 if (substream->timer)
Takashi Iwai877211f2005-11-17 13:59:38 +0100934 snd_timer_notify(substream->timer, SNDRV_TIMER_EVENT_MSTOP,
935 &runtime->trigger_tstamp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700936 runtime->status->state = state;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700937 }
938 wake_up(&runtime->sleep);
Jaroslav Kyselac91a9882010-01-21 10:32:15 +0100939 wake_up(&runtime->tsleep);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700940}
941
942static struct action_ops snd_pcm_action_stop = {
943 .pre_action = snd_pcm_pre_stop,
944 .do_action = snd_pcm_do_stop,
945 .post_action = snd_pcm_post_stop
946};
947
948/**
Randy Dunlap1c85cc62008-10-15 14:38:40 -0700949 * snd_pcm_stop - try to stop all running streams in the substream group
Takashi Iwaidf8db932005-09-07 13:38:19 +0200950 * @substream: the PCM substream instance
951 * @state: PCM state after stopping the stream
Linus Torvalds1da177e2005-04-16 15:20:36 -0700952 *
Randy Dunlap1c85cc62008-10-15 14:38:40 -0700953 * The state of each stream is then changed to the given state unconditionally.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700954 */
Clemens Ladischfea952e2011-02-14 11:00:47 +0100955int snd_pcm_stop(struct snd_pcm_substream *substream, snd_pcm_state_t state)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700956{
957 return snd_pcm_action(&snd_pcm_action_stop, substream, state);
958}
959
Takashi Iwaie88e8ae62006-04-28 15:13:40 +0200960EXPORT_SYMBOL(snd_pcm_stop);
961
Linus Torvalds1da177e2005-04-16 15:20:36 -0700962/**
Randy Dunlap1c85cc62008-10-15 14:38:40 -0700963 * snd_pcm_drain_done - stop the DMA only when the given stream is playback
Takashi Iwaidf8db932005-09-07 13:38:19 +0200964 * @substream: the PCM substream
Linus Torvalds1da177e2005-04-16 15:20:36 -0700965 *
Randy Dunlap1c85cc62008-10-15 14:38:40 -0700966 * After stopping, the state is changed to SETUP.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700967 * Unlike snd_pcm_stop(), this affects only the given stream.
968 */
Takashi Iwai877211f2005-11-17 13:59:38 +0100969int snd_pcm_drain_done(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700970{
Takashi Iwai877211f2005-11-17 13:59:38 +0100971 return snd_pcm_action_single(&snd_pcm_action_stop, substream,
972 SNDRV_PCM_STATE_SETUP);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700973}
974
975/*
976 * pause callbacks
977 */
Takashi Iwai877211f2005-11-17 13:59:38 +0100978static int snd_pcm_pre_pause(struct snd_pcm_substream *substream, int push)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700979{
Takashi Iwai877211f2005-11-17 13:59:38 +0100980 struct snd_pcm_runtime *runtime = substream->runtime;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700981 if (!(runtime->info & SNDRV_PCM_INFO_PAUSE))
982 return -ENOSYS;
983 if (push) {
984 if (runtime->status->state != SNDRV_PCM_STATE_RUNNING)
985 return -EBADFD;
986 } else if (runtime->status->state != SNDRV_PCM_STATE_PAUSED)
987 return -EBADFD;
988 runtime->trigger_master = substream;
989 return 0;
990}
991
Takashi Iwai877211f2005-11-17 13:59:38 +0100992static int snd_pcm_do_pause(struct snd_pcm_substream *substream, int push)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700993{
994 if (substream->runtime->trigger_master != substream)
995 return 0;
Jaroslav Kysela56385a12010-08-18 14:08:17 +0200996 /* some drivers might use hw_ptr to recover from the pause -
997 update the hw_ptr now */
998 if (push)
999 snd_pcm_update_hw_ptr(substream);
Takashi Iwai6af3fb72009-05-27 10:49:26 +02001000 /* The jiffies check in snd_pcm_update_hw_ptr*() is done by
Uwe Kleine-Königb5950762010-11-01 15:38:34 -04001001 * a delta between the current jiffies, this gives a large enough
Takashi Iwai6af3fb72009-05-27 10:49:26 +02001002 * delta, effectively to skip the check once.
1003 */
1004 substream->runtime->hw_ptr_jiffies = jiffies - HZ * 1000;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001005 return substream->ops->trigger(substream,
1006 push ? SNDRV_PCM_TRIGGER_PAUSE_PUSH :
1007 SNDRV_PCM_TRIGGER_PAUSE_RELEASE);
1008}
1009
Takashi Iwai877211f2005-11-17 13:59:38 +01001010static void snd_pcm_undo_pause(struct snd_pcm_substream *substream, int push)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001011{
1012 if (substream->runtime->trigger_master == substream)
1013 substream->ops->trigger(substream,
1014 push ? SNDRV_PCM_TRIGGER_PAUSE_RELEASE :
1015 SNDRV_PCM_TRIGGER_PAUSE_PUSH);
1016}
1017
Takashi Iwai877211f2005-11-17 13:59:38 +01001018static void snd_pcm_post_pause(struct snd_pcm_substream *substream, int push)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001019{
Takashi Iwai877211f2005-11-17 13:59:38 +01001020 struct snd_pcm_runtime *runtime = substream->runtime;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001021 snd_pcm_trigger_tstamp(substream);
1022 if (push) {
1023 runtime->status->state = SNDRV_PCM_STATE_PAUSED;
1024 if (substream->timer)
Takashi Iwai877211f2005-11-17 13:59:38 +01001025 snd_timer_notify(substream->timer,
1026 SNDRV_TIMER_EVENT_MPAUSE,
1027 &runtime->trigger_tstamp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001028 wake_up(&runtime->sleep);
Jaroslav Kyselac91a9882010-01-21 10:32:15 +01001029 wake_up(&runtime->tsleep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001030 } else {
1031 runtime->status->state = SNDRV_PCM_STATE_RUNNING;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001032 if (substream->timer)
Takashi Iwai877211f2005-11-17 13:59:38 +01001033 snd_timer_notify(substream->timer,
1034 SNDRV_TIMER_EVENT_MCONTINUE,
1035 &runtime->trigger_tstamp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001036 }
1037}
1038
1039static struct action_ops snd_pcm_action_pause = {
1040 .pre_action = snd_pcm_pre_pause,
1041 .do_action = snd_pcm_do_pause,
1042 .undo_action = snd_pcm_undo_pause,
1043 .post_action = snd_pcm_post_pause
1044};
1045
1046/*
1047 * Push/release the pause for all linked streams.
1048 */
Takashi Iwai877211f2005-11-17 13:59:38 +01001049static int snd_pcm_pause(struct snd_pcm_substream *substream, int push)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001050{
1051 return snd_pcm_action(&snd_pcm_action_pause, substream, push);
1052}
1053
1054#ifdef CONFIG_PM
1055/* suspend */
1056
Takashi Iwai877211f2005-11-17 13:59:38 +01001057static int snd_pcm_pre_suspend(struct snd_pcm_substream *substream, int state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001058{
Takashi Iwai877211f2005-11-17 13:59:38 +01001059 struct snd_pcm_runtime *runtime = substream->runtime;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001060 if (runtime->status->state == SNDRV_PCM_STATE_SUSPENDED)
1061 return -EBUSY;
1062 runtime->trigger_master = substream;
1063 return 0;
1064}
1065
Takashi Iwai877211f2005-11-17 13:59:38 +01001066static int snd_pcm_do_suspend(struct snd_pcm_substream *substream, int state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001067{
Takashi Iwai877211f2005-11-17 13:59:38 +01001068 struct snd_pcm_runtime *runtime = substream->runtime;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001069 if (runtime->trigger_master != substream)
1070 return 0;
1071 if (! snd_pcm_running(substream))
1072 return 0;
1073 substream->ops->trigger(substream, SNDRV_PCM_TRIGGER_SUSPEND);
1074 return 0; /* suspend unconditionally */
1075}
1076
Takashi Iwai877211f2005-11-17 13:59:38 +01001077static void snd_pcm_post_suspend(struct snd_pcm_substream *substream, int state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001078{
Takashi Iwai877211f2005-11-17 13:59:38 +01001079 struct snd_pcm_runtime *runtime = substream->runtime;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001080 snd_pcm_trigger_tstamp(substream);
1081 if (substream->timer)
Takashi Iwai877211f2005-11-17 13:59:38 +01001082 snd_timer_notify(substream->timer, SNDRV_TIMER_EVENT_MSUSPEND,
1083 &runtime->trigger_tstamp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001084 runtime->status->suspended_state = runtime->status->state;
1085 runtime->status->state = SNDRV_PCM_STATE_SUSPENDED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001086 wake_up(&runtime->sleep);
Jaroslav Kyselac91a9882010-01-21 10:32:15 +01001087 wake_up(&runtime->tsleep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001088}
1089
1090static struct action_ops snd_pcm_action_suspend = {
1091 .pre_action = snd_pcm_pre_suspend,
1092 .do_action = snd_pcm_do_suspend,
1093 .post_action = snd_pcm_post_suspend
1094};
1095
1096/**
Randy Dunlap1c85cc62008-10-15 14:38:40 -07001097 * snd_pcm_suspend - trigger SUSPEND to all linked streams
Takashi Iwaidf8db932005-09-07 13:38:19 +02001098 * @substream: the PCM substream
Linus Torvalds1da177e2005-04-16 15:20:36 -07001099 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001100 * After this call, all streams are changed to SUSPENDED state.
1101 */
Takashi Iwai877211f2005-11-17 13:59:38 +01001102int snd_pcm_suspend(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001103{
1104 int err;
1105 unsigned long flags;
1106
Takashi Iwai603bf522005-11-17 15:59:14 +01001107 if (! substream)
1108 return 0;
1109
Linus Torvalds1da177e2005-04-16 15:20:36 -07001110 snd_pcm_stream_lock_irqsave(substream, flags);
1111 err = snd_pcm_action(&snd_pcm_action_suspend, substream, 0);
1112 snd_pcm_stream_unlock_irqrestore(substream, flags);
1113 return err;
1114}
1115
Takashi Iwaie88e8ae62006-04-28 15:13:40 +02001116EXPORT_SYMBOL(snd_pcm_suspend);
1117
Linus Torvalds1da177e2005-04-16 15:20:36 -07001118/**
Randy Dunlap1c85cc62008-10-15 14:38:40 -07001119 * snd_pcm_suspend_all - trigger SUSPEND to all substreams in the given pcm
Takashi Iwaidf8db932005-09-07 13:38:19 +02001120 * @pcm: the PCM instance
Linus Torvalds1da177e2005-04-16 15:20:36 -07001121 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001122 * After this call, all streams are changed to SUSPENDED state.
1123 */
Takashi Iwai877211f2005-11-17 13:59:38 +01001124int snd_pcm_suspend_all(struct snd_pcm *pcm)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001125{
Takashi Iwai877211f2005-11-17 13:59:38 +01001126 struct snd_pcm_substream *substream;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001127 int stream, err = 0;
1128
Takashi Iwai603bf522005-11-17 15:59:14 +01001129 if (! pcm)
1130 return 0;
1131
Linus Torvalds1da177e2005-04-16 15:20:36 -07001132 for (stream = 0; stream < 2; stream++) {
Takashi Iwai877211f2005-11-17 13:59:38 +01001133 for (substream = pcm->streams[stream].substream;
1134 substream; substream = substream->next) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001135 /* FIXME: the open/close code should lock this as well */
1136 if (substream->runtime == NULL)
1137 continue;
1138 err = snd_pcm_suspend(substream);
1139 if (err < 0 && err != -EBUSY)
1140 return err;
1141 }
1142 }
1143 return 0;
1144}
1145
Takashi Iwaie88e8ae62006-04-28 15:13:40 +02001146EXPORT_SYMBOL(snd_pcm_suspend_all);
1147
Linus Torvalds1da177e2005-04-16 15:20:36 -07001148/* resume */
1149
Takashi Iwai877211f2005-11-17 13:59:38 +01001150static int snd_pcm_pre_resume(struct snd_pcm_substream *substream, int state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001151{
Takashi Iwai877211f2005-11-17 13:59:38 +01001152 struct snd_pcm_runtime *runtime = substream->runtime;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001153 if (!(runtime->info & SNDRV_PCM_INFO_RESUME))
1154 return -ENOSYS;
1155 runtime->trigger_master = substream;
1156 return 0;
1157}
1158
Takashi Iwai877211f2005-11-17 13:59:38 +01001159static int snd_pcm_do_resume(struct snd_pcm_substream *substream, int state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001160{
Takashi Iwai877211f2005-11-17 13:59:38 +01001161 struct snd_pcm_runtime *runtime = substream->runtime;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001162 if (runtime->trigger_master != substream)
1163 return 0;
1164 /* DMA not running previously? */
1165 if (runtime->status->suspended_state != SNDRV_PCM_STATE_RUNNING &&
1166 (runtime->status->suspended_state != SNDRV_PCM_STATE_DRAINING ||
1167 substream->stream != SNDRV_PCM_STREAM_PLAYBACK))
1168 return 0;
1169 return substream->ops->trigger(substream, SNDRV_PCM_TRIGGER_RESUME);
1170}
1171
Takashi Iwai877211f2005-11-17 13:59:38 +01001172static void snd_pcm_undo_resume(struct snd_pcm_substream *substream, int state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001173{
1174 if (substream->runtime->trigger_master == substream &&
1175 snd_pcm_running(substream))
1176 substream->ops->trigger(substream, SNDRV_PCM_TRIGGER_SUSPEND);
1177}
1178
Takashi Iwai877211f2005-11-17 13:59:38 +01001179static void snd_pcm_post_resume(struct snd_pcm_substream *substream, int state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001180{
Takashi Iwai877211f2005-11-17 13:59:38 +01001181 struct snd_pcm_runtime *runtime = substream->runtime;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001182 snd_pcm_trigger_tstamp(substream);
1183 if (substream->timer)
Takashi Iwai877211f2005-11-17 13:59:38 +01001184 snd_timer_notify(substream->timer, SNDRV_TIMER_EVENT_MRESUME,
1185 &runtime->trigger_tstamp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001186 runtime->status->state = runtime->status->suspended_state;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001187}
1188
1189static struct action_ops snd_pcm_action_resume = {
1190 .pre_action = snd_pcm_pre_resume,
1191 .do_action = snd_pcm_do_resume,
1192 .undo_action = snd_pcm_undo_resume,
1193 .post_action = snd_pcm_post_resume
1194};
1195
Takashi Iwai877211f2005-11-17 13:59:38 +01001196static int snd_pcm_resume(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001197{
Takashi Iwai877211f2005-11-17 13:59:38 +01001198 struct snd_card *card = substream->pcm->card;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001199 int res;
1200
1201 snd_power_lock(card);
Takashi Iwaicbac4b02006-03-27 12:38:07 +02001202 if ((res = snd_power_wait(card, SNDRV_CTL_POWER_D0)) >= 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001203 res = snd_pcm_action_lock_irq(&snd_pcm_action_resume, substream, 0);
1204 snd_power_unlock(card);
1205 return res;
1206}
1207
1208#else
1209
Takashi Iwai877211f2005-11-17 13:59:38 +01001210static int snd_pcm_resume(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001211{
1212 return -ENOSYS;
1213}
1214
1215#endif /* CONFIG_PM */
1216
1217/*
1218 * xrun ioctl
1219 *
1220 * Change the RUNNING stream(s) to XRUN state.
1221 */
Takashi Iwai877211f2005-11-17 13:59:38 +01001222static int snd_pcm_xrun(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001223{
Takashi Iwai877211f2005-11-17 13:59:38 +01001224 struct snd_card *card = substream->pcm->card;
1225 struct snd_pcm_runtime *runtime = substream->runtime;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001226 int result;
1227
1228 snd_power_lock(card);
1229 if (runtime->status->state == SNDRV_PCM_STATE_SUSPENDED) {
Takashi Iwaicbac4b02006-03-27 12:38:07 +02001230 result = snd_power_wait(card, SNDRV_CTL_POWER_D0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001231 if (result < 0)
1232 goto _unlock;
1233 }
1234
1235 snd_pcm_stream_lock_irq(substream);
1236 switch (runtime->status->state) {
1237 case SNDRV_PCM_STATE_XRUN:
1238 result = 0; /* already there */
1239 break;
1240 case SNDRV_PCM_STATE_RUNNING:
1241 result = snd_pcm_stop(substream, SNDRV_PCM_STATE_XRUN);
1242 break;
1243 default:
1244 result = -EBADFD;
1245 }
1246 snd_pcm_stream_unlock_irq(substream);
1247 _unlock:
1248 snd_power_unlock(card);
1249 return result;
1250}
1251
1252/*
1253 * reset ioctl
1254 */
Takashi Iwai877211f2005-11-17 13:59:38 +01001255static int snd_pcm_pre_reset(struct snd_pcm_substream *substream, int state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001256{
Takashi Iwai877211f2005-11-17 13:59:38 +01001257 struct snd_pcm_runtime *runtime = substream->runtime;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001258 switch (runtime->status->state) {
1259 case SNDRV_PCM_STATE_RUNNING:
1260 case SNDRV_PCM_STATE_PREPARED:
1261 case SNDRV_PCM_STATE_PAUSED:
1262 case SNDRV_PCM_STATE_SUSPENDED:
1263 return 0;
1264 default:
1265 return -EBADFD;
1266 }
1267}
1268
Takashi Iwai877211f2005-11-17 13:59:38 +01001269static int snd_pcm_do_reset(struct snd_pcm_substream *substream, int state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001270{
Takashi Iwai877211f2005-11-17 13:59:38 +01001271 struct snd_pcm_runtime *runtime = substream->runtime;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001272 int err = substream->ops->ioctl(substream, SNDRV_PCM_IOCTL1_RESET, NULL);
1273 if (err < 0)
1274 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001275 runtime->hw_ptr_base = 0;
Jaroslav Kyselae7636922010-01-26 17:08:24 +01001276 runtime->hw_ptr_interrupt = runtime->status->hw_ptr -
1277 runtime->status->hw_ptr % runtime->period_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001278 runtime->silence_start = runtime->status->hw_ptr;
1279 runtime->silence_filled = 0;
1280 return 0;
1281}
1282
Takashi Iwai877211f2005-11-17 13:59:38 +01001283static void snd_pcm_post_reset(struct snd_pcm_substream *substream, int state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001284{
Takashi Iwai877211f2005-11-17 13:59:38 +01001285 struct snd_pcm_runtime *runtime = substream->runtime;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001286 runtime->control->appl_ptr = runtime->status->hw_ptr;
1287 if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK &&
1288 runtime->silence_size > 0)
1289 snd_pcm_playback_silence(substream, ULONG_MAX);
1290}
1291
1292static struct action_ops snd_pcm_action_reset = {
1293 .pre_action = snd_pcm_pre_reset,
1294 .do_action = snd_pcm_do_reset,
1295 .post_action = snd_pcm_post_reset
1296};
1297
Takashi Iwai877211f2005-11-17 13:59:38 +01001298static int snd_pcm_reset(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001299{
1300 return snd_pcm_action_nonatomic(&snd_pcm_action_reset, substream, 0);
1301}
1302
1303/*
1304 * prepare ioctl
1305 */
Takashi Iwai0df63e42006-04-28 15:13:41 +02001306/* we use the second argument for updating f_flags */
1307static int snd_pcm_pre_prepare(struct snd_pcm_substream *substream,
1308 int f_flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001309{
Takashi Iwai877211f2005-11-17 13:59:38 +01001310 struct snd_pcm_runtime *runtime = substream->runtime;
Takashi Iwaide1b8b92006-11-08 15:41:29 +01001311 if (runtime->status->state == SNDRV_PCM_STATE_OPEN ||
1312 runtime->status->state == SNDRV_PCM_STATE_DISCONNECTED)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001313 return -EBADFD;
1314 if (snd_pcm_running(substream))
1315 return -EBUSY;
Takashi Iwai0df63e42006-04-28 15:13:41 +02001316 substream->f_flags = f_flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001317 return 0;
1318}
1319
Takashi Iwai877211f2005-11-17 13:59:38 +01001320static int snd_pcm_do_prepare(struct snd_pcm_substream *substream, int state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001321{
1322 int err;
1323 err = substream->ops->prepare(substream);
1324 if (err < 0)
1325 return err;
1326 return snd_pcm_do_reset(substream, 0);
1327}
1328
Takashi Iwai877211f2005-11-17 13:59:38 +01001329static void snd_pcm_post_prepare(struct snd_pcm_substream *substream, int state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001330{
Takashi Iwai877211f2005-11-17 13:59:38 +01001331 struct snd_pcm_runtime *runtime = substream->runtime;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001332 runtime->control->appl_ptr = runtime->status->hw_ptr;
Takashi Iwai9b0573c2012-10-12 15:07:34 +02001333 snd_pcm_set_state(substream, SNDRV_PCM_STATE_PREPARED);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001334}
1335
1336static struct action_ops snd_pcm_action_prepare = {
1337 .pre_action = snd_pcm_pre_prepare,
1338 .do_action = snd_pcm_do_prepare,
1339 .post_action = snd_pcm_post_prepare
1340};
1341
1342/**
Randy Dunlap1c85cc62008-10-15 14:38:40 -07001343 * snd_pcm_prepare - prepare the PCM substream to be triggerable
Takashi Iwaidf8db932005-09-07 13:38:19 +02001344 * @substream: the PCM substream instance
Takashi Iwai0df63e42006-04-28 15:13:41 +02001345 * @file: file to refer f_flags
Linus Torvalds1da177e2005-04-16 15:20:36 -07001346 */
Takashi Iwai0df63e42006-04-28 15:13:41 +02001347static int snd_pcm_prepare(struct snd_pcm_substream *substream,
1348 struct file *file)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001349{
1350 int res;
Takashi Iwai877211f2005-11-17 13:59:38 +01001351 struct snd_card *card = substream->pcm->card;
Takashi Iwai0df63e42006-04-28 15:13:41 +02001352 int f_flags;
1353
1354 if (file)
1355 f_flags = file->f_flags;
1356 else
1357 f_flags = substream->f_flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001358
1359 snd_power_lock(card);
Takashi Iwaicbac4b02006-03-27 12:38:07 +02001360 if ((res = snd_power_wait(card, SNDRV_CTL_POWER_D0)) >= 0)
Takashi Iwai0df63e42006-04-28 15:13:41 +02001361 res = snd_pcm_action_nonatomic(&snd_pcm_action_prepare,
1362 substream, f_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001363 snd_power_unlock(card);
1364 return res;
1365}
1366
1367/*
1368 * drain ioctl
1369 */
1370
Takashi Iwai877211f2005-11-17 13:59:38 +01001371static int snd_pcm_pre_drain_init(struct snd_pcm_substream *substream, int state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001372{
Takashi Iwai4f7c39d2012-05-21 11:59:57 +02001373 struct snd_pcm_runtime *runtime = substream->runtime;
1374 switch (runtime->status->state) {
1375 case SNDRV_PCM_STATE_OPEN:
1376 case SNDRV_PCM_STATE_DISCONNECTED:
1377 case SNDRV_PCM_STATE_SUSPENDED:
1378 return -EBADFD;
1379 }
1380 runtime->trigger_master = substream;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001381 return 0;
1382}
1383
Takashi Iwai877211f2005-11-17 13:59:38 +01001384static int snd_pcm_do_drain_init(struct snd_pcm_substream *substream, int state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001385{
Takashi Iwai877211f2005-11-17 13:59:38 +01001386 struct snd_pcm_runtime *runtime = substream->runtime;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001387 if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK) {
1388 switch (runtime->status->state) {
1389 case SNDRV_PCM_STATE_PREPARED:
1390 /* start playback stream if possible */
1391 if (! snd_pcm_playback_empty(substream)) {
1392 snd_pcm_do_start(substream, SNDRV_PCM_STATE_DRAINING);
1393 snd_pcm_post_start(substream, SNDRV_PCM_STATE_DRAINING);
1394 }
1395 break;
1396 case SNDRV_PCM_STATE_RUNNING:
1397 runtime->status->state = SNDRV_PCM_STATE_DRAINING;
1398 break;
Takashi Iwai4f7c39d2012-05-21 11:59:57 +02001399 case SNDRV_PCM_STATE_XRUN:
1400 runtime->status->state = SNDRV_PCM_STATE_SETUP;
1401 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001402 default:
1403 break;
1404 }
1405 } else {
1406 /* stop running stream */
1407 if (runtime->status->state == SNDRV_PCM_STATE_RUNNING) {
Marcin Ślusarzb05e5782007-12-14 12:50:16 +01001408 int new_state = snd_pcm_capture_avail(runtime) > 0 ?
Linus Torvalds1da177e2005-04-16 15:20:36 -07001409 SNDRV_PCM_STATE_DRAINING : SNDRV_PCM_STATE_SETUP;
Marcin Ślusarzb05e5782007-12-14 12:50:16 +01001410 snd_pcm_do_stop(substream, new_state);
1411 snd_pcm_post_stop(substream, new_state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001412 }
1413 }
1414 return 0;
1415}
1416
Takashi Iwai877211f2005-11-17 13:59:38 +01001417static void snd_pcm_post_drain_init(struct snd_pcm_substream *substream, int state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001418{
1419}
1420
1421static struct action_ops snd_pcm_action_drain_init = {
1422 .pre_action = snd_pcm_pre_drain_init,
1423 .do_action = snd_pcm_do_drain_init,
1424 .post_action = snd_pcm_post_drain_init
1425};
1426
Takashi Iwai877211f2005-11-17 13:59:38 +01001427static int snd_pcm_drop(struct snd_pcm_substream *substream);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001428
1429/*
1430 * Drain the stream(s).
1431 * When the substream is linked, sync until the draining of all playback streams
1432 * is finished.
1433 * After this call, all streams are supposed to be either SETUP or DRAINING
1434 * (capture only) state.
1435 */
Takashi Iwai4cdc1152009-08-20 16:40:16 +02001436static int snd_pcm_drain(struct snd_pcm_substream *substream,
1437 struct file *file)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001438{
Takashi Iwai877211f2005-11-17 13:59:38 +01001439 struct snd_card *card;
1440 struct snd_pcm_runtime *runtime;
Takashi Iwaief991b92007-02-22 12:52:53 +01001441 struct snd_pcm_substream *s;
Takashi Iwaid3a7dcf2009-09-17 18:46:26 +02001442 wait_queue_t wait;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001443 int result = 0;
Takashi Iwai4cdc1152009-08-20 16:40:16 +02001444 int nonblock = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001445
Linus Torvalds1da177e2005-04-16 15:20:36 -07001446 card = substream->pcm->card;
1447 runtime = substream->runtime;
1448
1449 if (runtime->status->state == SNDRV_PCM_STATE_OPEN)
1450 return -EBADFD;
1451
Linus Torvalds1da177e2005-04-16 15:20:36 -07001452 snd_power_lock(card);
1453 if (runtime->status->state == SNDRV_PCM_STATE_SUSPENDED) {
Takashi Iwaicbac4b02006-03-27 12:38:07 +02001454 result = snd_power_wait(card, SNDRV_CTL_POWER_D0);
Takashi Iwai21cb2a22005-05-31 14:35:31 +02001455 if (result < 0) {
1456 snd_power_unlock(card);
1457 return result;
1458 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001459 }
1460
Takashi Iwai4cdc1152009-08-20 16:40:16 +02001461 if (file) {
1462 if (file->f_flags & O_NONBLOCK)
1463 nonblock = 1;
1464 } else if (substream->f_flags & O_NONBLOCK)
1465 nonblock = 1;
1466
Takashi Iwai21cb2a22005-05-31 14:35:31 +02001467 down_read(&snd_pcm_link_rwsem);
Takashi Iwai21cb2a22005-05-31 14:35:31 +02001468 snd_pcm_stream_lock_irq(substream);
1469 /* resume pause */
Takashi Iwaid3a7dcf2009-09-17 18:46:26 +02001470 if (runtime->status->state == SNDRV_PCM_STATE_PAUSED)
Takashi Iwai21cb2a22005-05-31 14:35:31 +02001471 snd_pcm_pause(substream, 0);
1472
1473 /* pre-start/stop - all running streams are changed to DRAINING state */
1474 result = snd_pcm_action(&snd_pcm_action_drain_init, substream, 0);
Takashi Iwai4cdc1152009-08-20 16:40:16 +02001475 if (result < 0)
1476 goto unlock;
1477 /* in non-blocking, we don't wait in ioctl but let caller poll */
1478 if (nonblock) {
1479 result = -EAGAIN;
1480 goto unlock;
Takashi Iwai21cb2a22005-05-31 14:35:31 +02001481 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001482
1483 for (;;) {
1484 long tout;
Takashi Iwaid3a7dcf2009-09-17 18:46:26 +02001485 struct snd_pcm_runtime *to_check;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001486 if (signal_pending(current)) {
1487 result = -ERESTARTSYS;
1488 break;
1489 }
Takashi Iwaid3a7dcf2009-09-17 18:46:26 +02001490 /* find a substream to drain */
1491 to_check = NULL;
1492 snd_pcm_group_for_each_entry(s, substream) {
1493 if (s->stream != SNDRV_PCM_STREAM_PLAYBACK)
1494 continue;
1495 runtime = s->runtime;
1496 if (runtime->status->state == SNDRV_PCM_STATE_DRAINING) {
1497 to_check = runtime;
Takashi Iwai21cb2a22005-05-31 14:35:31 +02001498 break;
Takashi Iwaid3a7dcf2009-09-17 18:46:26 +02001499 }
Takashi Iwai21cb2a22005-05-31 14:35:31 +02001500 }
Takashi Iwaid3a7dcf2009-09-17 18:46:26 +02001501 if (!to_check)
1502 break; /* all drained */
1503 init_waitqueue_entry(&wait, current);
1504 add_wait_queue(&to_check->sleep, &wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001505 snd_pcm_stream_unlock_irq(substream);
Takashi Iwaid3a7dcf2009-09-17 18:46:26 +02001506 up_read(&snd_pcm_link_rwsem);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001507 snd_power_unlock(card);
Takashi Iwaif2b36142011-05-26 08:09:38 +02001508 if (runtime->no_period_wakeup)
1509 tout = MAX_SCHEDULE_TIMEOUT;
1510 else {
1511 tout = 10;
1512 if (runtime->rate) {
1513 long t = runtime->period_size * 2 / runtime->rate;
1514 tout = max(t, tout);
1515 }
1516 tout = msecs_to_jiffies(tout * 1000);
1517 }
1518 tout = schedule_timeout_interruptible(tout);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001519 snd_power_lock(card);
Takashi Iwaid3a7dcf2009-09-17 18:46:26 +02001520 down_read(&snd_pcm_link_rwsem);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001521 snd_pcm_stream_lock_irq(substream);
Takashi Iwaid3a7dcf2009-09-17 18:46:26 +02001522 remove_wait_queue(&to_check->sleep, &wait);
Takashi Iwai0914f792012-10-16 16:43:39 +02001523 if (card->shutdown) {
1524 result = -ENODEV;
1525 break;
1526 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001527 if (tout == 0) {
1528 if (substream->runtime->status->state == SNDRV_PCM_STATE_SUSPENDED)
1529 result = -ESTRPIPE;
1530 else {
1531 snd_printd("playback drain error (DMA or IRQ trouble?)\n");
1532 snd_pcm_stop(substream, SNDRV_PCM_STATE_SETUP);
1533 result = -EIO;
1534 }
1535 break;
1536 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001537 }
Takashi Iwai21cb2a22005-05-31 14:35:31 +02001538
Takashi Iwai4cdc1152009-08-20 16:40:16 +02001539 unlock:
Takashi Iwai21cb2a22005-05-31 14:35:31 +02001540 snd_pcm_stream_unlock_irq(substream);
Takashi Iwaid3a7dcf2009-09-17 18:46:26 +02001541 up_read(&snd_pcm_link_rwsem);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001542 snd_power_unlock(card);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001543
1544 return result;
1545}
1546
1547/*
1548 * drop ioctl
1549 *
1550 * Immediately put all linked substreams into SETUP state.
1551 */
Takashi Iwai877211f2005-11-17 13:59:38 +01001552static int snd_pcm_drop(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001553{
Takashi Iwai877211f2005-11-17 13:59:38 +01001554 struct snd_pcm_runtime *runtime;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001555 int result = 0;
1556
Takashi Iwai7eaa9432008-08-08 17:09:09 +02001557 if (PCM_RUNTIME_CHECK(substream))
1558 return -ENXIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001559 runtime = substream->runtime;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001560
Takashi Iwaide1b8b92006-11-08 15:41:29 +01001561 if (runtime->status->state == SNDRV_PCM_STATE_OPEN ||
Takashi Iwai24e8fc42008-09-25 17:51:11 +02001562 runtime->status->state == SNDRV_PCM_STATE_DISCONNECTED ||
1563 runtime->status->state == SNDRV_PCM_STATE_SUSPENDED)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001564 return -EBADFD;
1565
Linus Torvalds1da177e2005-04-16 15:20:36 -07001566 snd_pcm_stream_lock_irq(substream);
1567 /* resume pause */
1568 if (runtime->status->state == SNDRV_PCM_STATE_PAUSED)
1569 snd_pcm_pause(substream, 0);
1570
1571 snd_pcm_stop(substream, SNDRV_PCM_STATE_SETUP);
1572 /* runtime->control->appl_ptr = runtime->status->hw_ptr; */
1573 snd_pcm_stream_unlock_irq(substream);
Takashi Iwai24e8fc42008-09-25 17:51:11 +02001574
Linus Torvalds1da177e2005-04-16 15:20:36 -07001575 return result;
1576}
1577
1578
1579/* WARNING: Don't forget to fput back the file */
Al Virobdbf6942012-08-26 21:35:48 -04001580static struct file *snd_pcm_file_fd(int fd, int *fput_needed)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001581{
1582 struct file *file;
1583 struct inode *inode;
Clemens Ladischf87135f2005-11-20 14:06:59 +01001584 unsigned int minor;
1585
Al Virobdbf6942012-08-26 21:35:48 -04001586 file = fget_light(fd, fput_needed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001587 if (!file)
1588 return NULL;
Josef Sipek7bc56322006-12-08 02:37:40 -08001589 inode = file->f_path.dentry->d_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001590 if (!S_ISCHR(inode->i_mode) ||
1591 imajor(inode) != snd_major) {
Al Virobdbf6942012-08-26 21:35:48 -04001592 fput_light(file, *fput_needed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001593 return NULL;
1594 }
1595 minor = iminor(inode);
Clemens Ladischf87135f2005-11-20 14:06:59 +01001596 if (!snd_lookup_minor_data(minor, SNDRV_DEVICE_TYPE_PCM_PLAYBACK) &&
1597 !snd_lookup_minor_data(minor, SNDRV_DEVICE_TYPE_PCM_CAPTURE)) {
Al Virobdbf6942012-08-26 21:35:48 -04001598 fput_light(file, *fput_needed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001599 return NULL;
1600 }
1601 return file;
1602}
1603
1604/*
1605 * PCM link handling
1606 */
Takashi Iwai877211f2005-11-17 13:59:38 +01001607static int snd_pcm_link(struct snd_pcm_substream *substream, int fd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001608{
1609 int res = 0;
1610 struct file *file;
Takashi Iwai877211f2005-11-17 13:59:38 +01001611 struct snd_pcm_file *pcm_file;
1612 struct snd_pcm_substream *substream1;
Takashi Iwai16625912012-03-13 15:55:43 +01001613 struct snd_pcm_group *group;
Al Virobdbf6942012-08-26 21:35:48 -04001614 int fput_needed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001615
Al Virobdbf6942012-08-26 21:35:48 -04001616 file = snd_pcm_file_fd(fd, &fput_needed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001617 if (!file)
1618 return -EBADFD;
1619 pcm_file = file->private_data;
1620 substream1 = pcm_file->substream;
Takashi Iwai16625912012-03-13 15:55:43 +01001621 group = kmalloc(sizeof(*group), GFP_KERNEL);
1622 if (!group) {
1623 res = -ENOMEM;
1624 goto _nolock;
1625 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001626 down_write(&snd_pcm_link_rwsem);
1627 write_lock_irq(&snd_pcm_link_rwlock);
1628 if (substream->runtime->status->state == SNDRV_PCM_STATE_OPEN ||
1629 substream->runtime->status->state != substream1->runtime->status->state) {
1630 res = -EBADFD;
1631 goto _end;
1632 }
1633 if (snd_pcm_stream_linked(substream1)) {
1634 res = -EALREADY;
1635 goto _end;
1636 }
1637 if (!snd_pcm_stream_linked(substream)) {
Takashi Iwai16625912012-03-13 15:55:43 +01001638 substream->group = group;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001639 spin_lock_init(&substream->group->lock);
1640 INIT_LIST_HEAD(&substream->group->substreams);
1641 list_add_tail(&substream->link_list, &substream->group->substreams);
1642 substream->group->count = 1;
1643 }
1644 list_add_tail(&substream1->link_list, &substream->group->substreams);
1645 substream->group->count++;
1646 substream1->group = substream->group;
1647 _end:
1648 write_unlock_irq(&snd_pcm_link_rwlock);
1649 up_write(&snd_pcm_link_rwsem);
Takashi Iwai16625912012-03-13 15:55:43 +01001650 _nolock:
Takashi Iwaia0830db2012-10-16 13:05:59 +02001651 snd_card_unref(substream1->pcm->card);
Al Virobdbf6942012-08-26 21:35:48 -04001652 fput_light(file, fput_needed);
Takashi Iwai16625912012-03-13 15:55:43 +01001653 if (res < 0)
1654 kfree(group);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001655 return res;
1656}
1657
Takashi Iwai877211f2005-11-17 13:59:38 +01001658static void relink_to_local(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001659{
1660 substream->group = &substream->self_group;
1661 INIT_LIST_HEAD(&substream->self_group.substreams);
1662 list_add_tail(&substream->link_list, &substream->self_group.substreams);
1663}
1664
Takashi Iwai877211f2005-11-17 13:59:38 +01001665static int snd_pcm_unlink(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001666{
Takashi Iwaief991b92007-02-22 12:52:53 +01001667 struct snd_pcm_substream *s;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001668 int res = 0;
1669
1670 down_write(&snd_pcm_link_rwsem);
1671 write_lock_irq(&snd_pcm_link_rwlock);
1672 if (!snd_pcm_stream_linked(substream)) {
1673 res = -EALREADY;
1674 goto _end;
1675 }
1676 list_del(&substream->link_list);
1677 substream->group->count--;
1678 if (substream->group->count == 1) { /* detach the last stream, too */
Takashi Iwaief991b92007-02-22 12:52:53 +01001679 snd_pcm_group_for_each_entry(s, substream) {
1680 relink_to_local(s);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001681 break;
1682 }
1683 kfree(substream->group);
1684 }
1685 relink_to_local(substream);
1686 _end:
1687 write_unlock_irq(&snd_pcm_link_rwlock);
1688 up_write(&snd_pcm_link_rwsem);
1689 return res;
1690}
1691
1692/*
1693 * hw configurator
1694 */
Takashi Iwai877211f2005-11-17 13:59:38 +01001695static int snd_pcm_hw_rule_mul(struct snd_pcm_hw_params *params,
1696 struct snd_pcm_hw_rule *rule)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001697{
Takashi Iwai877211f2005-11-17 13:59:38 +01001698 struct snd_interval t;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001699 snd_interval_mul(hw_param_interval_c(params, rule->deps[0]),
1700 hw_param_interval_c(params, rule->deps[1]), &t);
1701 return snd_interval_refine(hw_param_interval(params, rule->var), &t);
1702}
1703
Takashi Iwai877211f2005-11-17 13:59:38 +01001704static int snd_pcm_hw_rule_div(struct snd_pcm_hw_params *params,
1705 struct snd_pcm_hw_rule *rule)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001706{
Takashi Iwai877211f2005-11-17 13:59:38 +01001707 struct snd_interval t;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001708 snd_interval_div(hw_param_interval_c(params, rule->deps[0]),
1709 hw_param_interval_c(params, rule->deps[1]), &t);
1710 return snd_interval_refine(hw_param_interval(params, rule->var), &t);
1711}
1712
Takashi Iwai877211f2005-11-17 13:59:38 +01001713static int snd_pcm_hw_rule_muldivk(struct snd_pcm_hw_params *params,
1714 struct snd_pcm_hw_rule *rule)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001715{
Takashi Iwai877211f2005-11-17 13:59:38 +01001716 struct snd_interval t;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001717 snd_interval_muldivk(hw_param_interval_c(params, rule->deps[0]),
1718 hw_param_interval_c(params, rule->deps[1]),
1719 (unsigned long) rule->private, &t);
1720 return snd_interval_refine(hw_param_interval(params, rule->var), &t);
1721}
1722
Takashi Iwai877211f2005-11-17 13:59:38 +01001723static int snd_pcm_hw_rule_mulkdiv(struct snd_pcm_hw_params *params,
1724 struct snd_pcm_hw_rule *rule)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001725{
Takashi Iwai877211f2005-11-17 13:59:38 +01001726 struct snd_interval t;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001727 snd_interval_mulkdiv(hw_param_interval_c(params, rule->deps[0]),
1728 (unsigned long) rule->private,
1729 hw_param_interval_c(params, rule->deps[1]), &t);
1730 return snd_interval_refine(hw_param_interval(params, rule->var), &t);
1731}
1732
Takashi Iwai877211f2005-11-17 13:59:38 +01001733static int snd_pcm_hw_rule_format(struct snd_pcm_hw_params *params,
1734 struct snd_pcm_hw_rule *rule)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001735{
1736 unsigned int k;
Takashi Iwai877211f2005-11-17 13:59:38 +01001737 struct snd_interval *i = hw_param_interval(params, rule->deps[0]);
1738 struct snd_mask m;
1739 struct snd_mask *mask = hw_param_mask(params, SNDRV_PCM_HW_PARAM_FORMAT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001740 snd_mask_any(&m);
1741 for (k = 0; k <= SNDRV_PCM_FORMAT_LAST; ++k) {
1742 int bits;
1743 if (! snd_mask_test(mask, k))
1744 continue;
1745 bits = snd_pcm_format_physical_width(k);
1746 if (bits <= 0)
1747 continue; /* ignore invalid formats */
1748 if ((unsigned)bits < i->min || (unsigned)bits > i->max)
1749 snd_mask_reset(&m, k);
1750 }
1751 return snd_mask_refine(mask, &m);
1752}
1753
Takashi Iwai877211f2005-11-17 13:59:38 +01001754static int snd_pcm_hw_rule_sample_bits(struct snd_pcm_hw_params *params,
1755 struct snd_pcm_hw_rule *rule)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001756{
Takashi Iwai877211f2005-11-17 13:59:38 +01001757 struct snd_interval t;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001758 unsigned int k;
1759 t.min = UINT_MAX;
1760 t.max = 0;
1761 t.openmin = 0;
1762 t.openmax = 0;
1763 for (k = 0; k <= SNDRV_PCM_FORMAT_LAST; ++k) {
1764 int bits;
1765 if (! snd_mask_test(hw_param_mask(params, SNDRV_PCM_HW_PARAM_FORMAT), k))
1766 continue;
1767 bits = snd_pcm_format_physical_width(k);
1768 if (bits <= 0)
1769 continue; /* ignore invalid formats */
1770 if (t.min > (unsigned)bits)
1771 t.min = bits;
1772 if (t.max < (unsigned)bits)
1773 t.max = bits;
1774 }
1775 t.integer = 1;
1776 return snd_interval_refine(hw_param_interval(params, rule->var), &t);
1777}
1778
1779#if SNDRV_PCM_RATE_5512 != 1 << 0 || SNDRV_PCM_RATE_192000 != 1 << 12
1780#error "Change this table"
1781#endif
1782
1783static unsigned int rates[] = { 5512, 8000, 11025, 16000, 22050, 32000, 44100,
1784 48000, 64000, 88200, 96000, 176400, 192000 };
1785
Clemens Ladisch7653d552007-08-13 17:38:54 +02001786const struct snd_pcm_hw_constraint_list snd_pcm_known_rates = {
1787 .count = ARRAY_SIZE(rates),
1788 .list = rates,
1789};
1790
Takashi Iwai877211f2005-11-17 13:59:38 +01001791static int snd_pcm_hw_rule_rate(struct snd_pcm_hw_params *params,
1792 struct snd_pcm_hw_rule *rule)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001793{
Takashi Iwai877211f2005-11-17 13:59:38 +01001794 struct snd_pcm_hardware *hw = rule->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001795 return snd_interval_list(hw_param_interval(params, rule->var),
Clemens Ladisch7653d552007-08-13 17:38:54 +02001796 snd_pcm_known_rates.count,
1797 snd_pcm_known_rates.list, hw->rates);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001798}
1799
Takashi Iwai877211f2005-11-17 13:59:38 +01001800static int snd_pcm_hw_rule_buffer_bytes_max(struct snd_pcm_hw_params *params,
1801 struct snd_pcm_hw_rule *rule)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001802{
Takashi Iwai877211f2005-11-17 13:59:38 +01001803 struct snd_interval t;
1804 struct snd_pcm_substream *substream = rule->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001805 t.min = 0;
1806 t.max = substream->buffer_bytes_max;
1807 t.openmin = 0;
1808 t.openmax = 0;
1809 t.integer = 1;
1810 return snd_interval_refine(hw_param_interval(params, rule->var), &t);
1811}
1812
Takashi Iwai877211f2005-11-17 13:59:38 +01001813int snd_pcm_hw_constraints_init(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001814{
Takashi Iwai877211f2005-11-17 13:59:38 +01001815 struct snd_pcm_runtime *runtime = substream->runtime;
1816 struct snd_pcm_hw_constraints *constrs = &runtime->hw_constraints;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001817 int k, err;
1818
1819 for (k = SNDRV_PCM_HW_PARAM_FIRST_MASK; k <= SNDRV_PCM_HW_PARAM_LAST_MASK; k++) {
1820 snd_mask_any(constrs_mask(constrs, k));
1821 }
1822
1823 for (k = SNDRV_PCM_HW_PARAM_FIRST_INTERVAL; k <= SNDRV_PCM_HW_PARAM_LAST_INTERVAL; k++) {
1824 snd_interval_any(constrs_interval(constrs, k));
1825 }
1826
1827 snd_interval_setinteger(constrs_interval(constrs, SNDRV_PCM_HW_PARAM_CHANNELS));
1828 snd_interval_setinteger(constrs_interval(constrs, SNDRV_PCM_HW_PARAM_BUFFER_SIZE));
1829 snd_interval_setinteger(constrs_interval(constrs, SNDRV_PCM_HW_PARAM_BUFFER_BYTES));
1830 snd_interval_setinteger(constrs_interval(constrs, SNDRV_PCM_HW_PARAM_SAMPLE_BITS));
1831 snd_interval_setinteger(constrs_interval(constrs, SNDRV_PCM_HW_PARAM_FRAME_BITS));
1832
1833 err = snd_pcm_hw_rule_add(runtime, 0, SNDRV_PCM_HW_PARAM_FORMAT,
1834 snd_pcm_hw_rule_format, NULL,
1835 SNDRV_PCM_HW_PARAM_SAMPLE_BITS, -1);
1836 if (err < 0)
1837 return err;
1838 err = snd_pcm_hw_rule_add(runtime, 0, SNDRV_PCM_HW_PARAM_SAMPLE_BITS,
1839 snd_pcm_hw_rule_sample_bits, NULL,
1840 SNDRV_PCM_HW_PARAM_FORMAT,
1841 SNDRV_PCM_HW_PARAM_SAMPLE_BITS, -1);
1842 if (err < 0)
1843 return err;
1844 err = snd_pcm_hw_rule_add(runtime, 0, SNDRV_PCM_HW_PARAM_SAMPLE_BITS,
1845 snd_pcm_hw_rule_div, NULL,
1846 SNDRV_PCM_HW_PARAM_FRAME_BITS, SNDRV_PCM_HW_PARAM_CHANNELS, -1);
1847 if (err < 0)
1848 return err;
1849 err = snd_pcm_hw_rule_add(runtime, 0, SNDRV_PCM_HW_PARAM_FRAME_BITS,
1850 snd_pcm_hw_rule_mul, NULL,
1851 SNDRV_PCM_HW_PARAM_SAMPLE_BITS, SNDRV_PCM_HW_PARAM_CHANNELS, -1);
1852 if (err < 0)
1853 return err;
1854 err = snd_pcm_hw_rule_add(runtime, 0, SNDRV_PCM_HW_PARAM_FRAME_BITS,
1855 snd_pcm_hw_rule_mulkdiv, (void*) 8,
1856 SNDRV_PCM_HW_PARAM_PERIOD_BYTES, SNDRV_PCM_HW_PARAM_PERIOD_SIZE, -1);
1857 if (err < 0)
1858 return err;
1859 err = snd_pcm_hw_rule_add(runtime, 0, SNDRV_PCM_HW_PARAM_FRAME_BITS,
1860 snd_pcm_hw_rule_mulkdiv, (void*) 8,
1861 SNDRV_PCM_HW_PARAM_BUFFER_BYTES, SNDRV_PCM_HW_PARAM_BUFFER_SIZE, -1);
1862 if (err < 0)
1863 return err;
1864 err = snd_pcm_hw_rule_add(runtime, 0, SNDRV_PCM_HW_PARAM_CHANNELS,
1865 snd_pcm_hw_rule_div, NULL,
1866 SNDRV_PCM_HW_PARAM_FRAME_BITS, SNDRV_PCM_HW_PARAM_SAMPLE_BITS, -1);
1867 if (err < 0)
1868 return err;
1869 err = snd_pcm_hw_rule_add(runtime, 0, SNDRV_PCM_HW_PARAM_RATE,
1870 snd_pcm_hw_rule_mulkdiv, (void*) 1000000,
1871 SNDRV_PCM_HW_PARAM_PERIOD_SIZE, SNDRV_PCM_HW_PARAM_PERIOD_TIME, -1);
1872 if (err < 0)
1873 return err;
1874 err = snd_pcm_hw_rule_add(runtime, 0, SNDRV_PCM_HW_PARAM_RATE,
1875 snd_pcm_hw_rule_mulkdiv, (void*) 1000000,
1876 SNDRV_PCM_HW_PARAM_BUFFER_SIZE, SNDRV_PCM_HW_PARAM_BUFFER_TIME, -1);
1877 if (err < 0)
1878 return err;
1879 err = snd_pcm_hw_rule_add(runtime, 0, SNDRV_PCM_HW_PARAM_PERIODS,
1880 snd_pcm_hw_rule_div, NULL,
1881 SNDRV_PCM_HW_PARAM_BUFFER_SIZE, SNDRV_PCM_HW_PARAM_PERIOD_SIZE, -1);
1882 if (err < 0)
1883 return err;
1884 err = snd_pcm_hw_rule_add(runtime, 0, SNDRV_PCM_HW_PARAM_PERIOD_SIZE,
1885 snd_pcm_hw_rule_div, NULL,
1886 SNDRV_PCM_HW_PARAM_BUFFER_SIZE, SNDRV_PCM_HW_PARAM_PERIODS, -1);
1887 if (err < 0)
1888 return err;
1889 err = snd_pcm_hw_rule_add(runtime, 0, SNDRV_PCM_HW_PARAM_PERIOD_SIZE,
1890 snd_pcm_hw_rule_mulkdiv, (void*) 8,
1891 SNDRV_PCM_HW_PARAM_PERIOD_BYTES, SNDRV_PCM_HW_PARAM_FRAME_BITS, -1);
1892 if (err < 0)
1893 return err;
1894 err = snd_pcm_hw_rule_add(runtime, 0, SNDRV_PCM_HW_PARAM_PERIOD_SIZE,
1895 snd_pcm_hw_rule_muldivk, (void*) 1000000,
1896 SNDRV_PCM_HW_PARAM_PERIOD_TIME, SNDRV_PCM_HW_PARAM_RATE, -1);
1897 if (err < 0)
1898 return err;
1899 err = snd_pcm_hw_rule_add(runtime, 0, SNDRV_PCM_HW_PARAM_BUFFER_SIZE,
1900 snd_pcm_hw_rule_mul, NULL,
1901 SNDRV_PCM_HW_PARAM_PERIOD_SIZE, SNDRV_PCM_HW_PARAM_PERIODS, -1);
1902 if (err < 0)
1903 return err;
1904 err = snd_pcm_hw_rule_add(runtime, 0, SNDRV_PCM_HW_PARAM_BUFFER_SIZE,
1905 snd_pcm_hw_rule_mulkdiv, (void*) 8,
1906 SNDRV_PCM_HW_PARAM_BUFFER_BYTES, SNDRV_PCM_HW_PARAM_FRAME_BITS, -1);
1907 if (err < 0)
1908 return err;
1909 err = snd_pcm_hw_rule_add(runtime, 0, SNDRV_PCM_HW_PARAM_BUFFER_SIZE,
1910 snd_pcm_hw_rule_muldivk, (void*) 1000000,
1911 SNDRV_PCM_HW_PARAM_BUFFER_TIME, SNDRV_PCM_HW_PARAM_RATE, -1);
1912 if (err < 0)
1913 return err;
1914 err = snd_pcm_hw_rule_add(runtime, 0, SNDRV_PCM_HW_PARAM_PERIOD_BYTES,
1915 snd_pcm_hw_rule_muldivk, (void*) 8,
1916 SNDRV_PCM_HW_PARAM_PERIOD_SIZE, SNDRV_PCM_HW_PARAM_FRAME_BITS, -1);
1917 if (err < 0)
1918 return err;
1919 err = snd_pcm_hw_rule_add(runtime, 0, SNDRV_PCM_HW_PARAM_BUFFER_BYTES,
1920 snd_pcm_hw_rule_muldivk, (void*) 8,
1921 SNDRV_PCM_HW_PARAM_BUFFER_SIZE, SNDRV_PCM_HW_PARAM_FRAME_BITS, -1);
1922 if (err < 0)
1923 return err;
1924 err = snd_pcm_hw_rule_add(runtime, 0, SNDRV_PCM_HW_PARAM_PERIOD_TIME,
1925 snd_pcm_hw_rule_mulkdiv, (void*) 1000000,
1926 SNDRV_PCM_HW_PARAM_PERIOD_SIZE, SNDRV_PCM_HW_PARAM_RATE, -1);
1927 if (err < 0)
1928 return err;
1929 err = snd_pcm_hw_rule_add(runtime, 0, SNDRV_PCM_HW_PARAM_BUFFER_TIME,
1930 snd_pcm_hw_rule_mulkdiv, (void*) 1000000,
1931 SNDRV_PCM_HW_PARAM_BUFFER_SIZE, SNDRV_PCM_HW_PARAM_RATE, -1);
1932 if (err < 0)
1933 return err;
1934 return 0;
1935}
1936
Takashi Iwai877211f2005-11-17 13:59:38 +01001937int snd_pcm_hw_constraints_complete(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001938{
Takashi Iwai877211f2005-11-17 13:59:38 +01001939 struct snd_pcm_runtime *runtime = substream->runtime;
1940 struct snd_pcm_hardware *hw = &runtime->hw;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001941 int err;
1942 unsigned int mask = 0;
1943
1944 if (hw->info & SNDRV_PCM_INFO_INTERLEAVED)
1945 mask |= 1 << SNDRV_PCM_ACCESS_RW_INTERLEAVED;
1946 if (hw->info & SNDRV_PCM_INFO_NONINTERLEAVED)
1947 mask |= 1 << SNDRV_PCM_ACCESS_RW_NONINTERLEAVED;
1948 if (hw->info & SNDRV_PCM_INFO_MMAP) {
1949 if (hw->info & SNDRV_PCM_INFO_INTERLEAVED)
1950 mask |= 1 << SNDRV_PCM_ACCESS_MMAP_INTERLEAVED;
1951 if (hw->info & SNDRV_PCM_INFO_NONINTERLEAVED)
1952 mask |= 1 << SNDRV_PCM_ACCESS_MMAP_NONINTERLEAVED;
1953 if (hw->info & SNDRV_PCM_INFO_COMPLEX)
1954 mask |= 1 << SNDRV_PCM_ACCESS_MMAP_COMPLEX;
1955 }
1956 err = snd_pcm_hw_constraint_mask(runtime, SNDRV_PCM_HW_PARAM_ACCESS, mask);
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_mask64(runtime, SNDRV_PCM_HW_PARAM_FORMAT, hw->formats);
Takashi Iwai7eaa9432008-08-08 17:09:09 +02001961 if (err < 0)
1962 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001963
1964 err = snd_pcm_hw_constraint_mask(runtime, SNDRV_PCM_HW_PARAM_SUBFORMAT, 1 << SNDRV_PCM_SUBFORMAT_STD);
Takashi Iwai7eaa9432008-08-08 17:09:09 +02001965 if (err < 0)
1966 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001967
1968 err = snd_pcm_hw_constraint_minmax(runtime, SNDRV_PCM_HW_PARAM_CHANNELS,
1969 hw->channels_min, hw->channels_max);
Takashi Iwai7eaa9432008-08-08 17:09:09 +02001970 if (err < 0)
1971 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001972
1973 err = snd_pcm_hw_constraint_minmax(runtime, SNDRV_PCM_HW_PARAM_RATE,
1974 hw->rate_min, hw->rate_max);
Guennadi Liakhovetski8b90ca02009-12-24 01:17:46 +01001975 if (err < 0)
1976 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001977
1978 err = snd_pcm_hw_constraint_minmax(runtime, SNDRV_PCM_HW_PARAM_PERIOD_BYTES,
1979 hw->period_bytes_min, hw->period_bytes_max);
Guennadi Liakhovetski8b90ca02009-12-24 01:17:46 +01001980 if (err < 0)
1981 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001982
1983 err = snd_pcm_hw_constraint_minmax(runtime, SNDRV_PCM_HW_PARAM_PERIODS,
1984 hw->periods_min, hw->periods_max);
Takashi Iwai7eaa9432008-08-08 17:09:09 +02001985 if (err < 0)
1986 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001987
1988 err = snd_pcm_hw_constraint_minmax(runtime, SNDRV_PCM_HW_PARAM_BUFFER_BYTES,
1989 hw->period_bytes_min, hw->buffer_bytes_max);
Takashi Iwai7eaa9432008-08-08 17:09:09 +02001990 if (err < 0)
1991 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001992
1993 err = snd_pcm_hw_rule_add(runtime, 0, SNDRV_PCM_HW_PARAM_BUFFER_BYTES,
1994 snd_pcm_hw_rule_buffer_bytes_max, substream,
1995 SNDRV_PCM_HW_PARAM_BUFFER_BYTES, -1);
1996 if (err < 0)
1997 return err;
1998
1999 /* FIXME: remove */
2000 if (runtime->dma_bytes) {
2001 err = snd_pcm_hw_constraint_minmax(runtime, SNDRV_PCM_HW_PARAM_BUFFER_BYTES, 0, runtime->dma_bytes);
Takashi Iwai7eaa9432008-08-08 17:09:09 +02002002 if (err < 0)
Sachin Kamat6cf95152012-11-21 14:36:55 +05302003 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002004 }
2005
2006 if (!(hw->rates & (SNDRV_PCM_RATE_KNOT | SNDRV_PCM_RATE_CONTINUOUS))) {
2007 err = snd_pcm_hw_rule_add(runtime, 0, SNDRV_PCM_HW_PARAM_RATE,
2008 snd_pcm_hw_rule_rate, hw,
2009 SNDRV_PCM_HW_PARAM_RATE, -1);
2010 if (err < 0)
2011 return err;
2012 }
2013
2014 /* FIXME: this belong to lowlevel */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002015 snd_pcm_hw_constraint_integer(runtime, SNDRV_PCM_HW_PARAM_PERIOD_SIZE);
2016
2017 return 0;
2018}
2019
Takashi Iwai3bf75f92006-03-27 16:40:49 +02002020static void pcm_release_private(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002021{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002022 snd_pcm_unlink(substream);
Takashi Iwai3bf75f92006-03-27 16:40:49 +02002023}
2024
2025void snd_pcm_release_substream(struct snd_pcm_substream *substream)
2026{
Takashi Iwai0df63e42006-04-28 15:13:41 +02002027 substream->ref_count--;
2028 if (substream->ref_count > 0)
2029 return;
2030
Takashi Iwai3bf75f92006-03-27 16:40:49 +02002031 snd_pcm_drop(substream);
Takashi Iwai3bf75f92006-03-27 16:40:49 +02002032 if (substream->hw_opened) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002033 if (substream->ops->hw_free != NULL)
2034 substream->ops->hw_free(substream);
2035 substream->ops->close(substream);
Takashi Iwai3bf75f92006-03-27 16:40:49 +02002036 substream->hw_opened = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002037 }
Takashi Iwai8699a0b2010-09-16 22:52:32 +02002038 if (pm_qos_request_active(&substream->latency_pm_qos_req))
2039 pm_qos_remove_request(&substream->latency_pm_qos_req);
Takashi Iwai15762742006-04-06 19:47:42 +02002040 if (substream->pcm_release) {
2041 substream->pcm_release(substream);
2042 substream->pcm_release = NULL;
2043 }
Takashi Iwai3bf75f92006-03-27 16:40:49 +02002044 snd_pcm_detach_substream(substream);
2045}
2046
Takashi Iwaie88e8ae62006-04-28 15:13:40 +02002047EXPORT_SYMBOL(snd_pcm_release_substream);
2048
Takashi Iwai3bf75f92006-03-27 16:40:49 +02002049int snd_pcm_open_substream(struct snd_pcm *pcm, int stream,
2050 struct file *file,
2051 struct snd_pcm_substream **rsubstream)
2052{
2053 struct snd_pcm_substream *substream;
2054 int err;
2055
2056 err = snd_pcm_attach_substream(pcm, stream, file, &substream);
2057 if (err < 0)
2058 return err;
Takashi Iwai0df63e42006-04-28 15:13:41 +02002059 if (substream->ref_count > 1) {
2060 *rsubstream = substream;
2061 return 0;
2062 }
2063
Takashi Iwai3bf75f92006-03-27 16:40:49 +02002064 err = snd_pcm_hw_constraints_init(substream);
2065 if (err < 0) {
2066 snd_printd("snd_pcm_hw_constraints_init failed\n");
2067 goto error;
2068 }
2069
2070 if ((err = substream->ops->open(substream)) < 0)
2071 goto error;
2072
2073 substream->hw_opened = 1;
2074
2075 err = snd_pcm_hw_constraints_complete(substream);
2076 if (err < 0) {
2077 snd_printd("snd_pcm_hw_constraints_complete failed\n");
2078 goto error;
2079 }
2080
2081 *rsubstream = substream;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002082 return 0;
Takashi Iwai3bf75f92006-03-27 16:40:49 +02002083
2084 error:
2085 snd_pcm_release_substream(substream);
2086 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002087}
2088
Takashi Iwaie88e8ae62006-04-28 15:13:40 +02002089EXPORT_SYMBOL(snd_pcm_open_substream);
2090
Linus Torvalds1da177e2005-04-16 15:20:36 -07002091static int snd_pcm_open_file(struct file *file,
Takashi Iwai877211f2005-11-17 13:59:38 +01002092 struct snd_pcm *pcm,
Feng Tangffd3d5c2011-10-10 10:31:48 +08002093 int stream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002094{
Takashi Iwai877211f2005-11-17 13:59:38 +01002095 struct snd_pcm_file *pcm_file;
2096 struct snd_pcm_substream *substream;
Takashi Iwai3bf75f92006-03-27 16:40:49 +02002097 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002098
Takashi Iwai3bf75f92006-03-27 16:40:49 +02002099 err = snd_pcm_open_substream(pcm, stream, file, &substream);
2100 if (err < 0)
2101 return err;
2102
Takashi Iwai548a6482006-07-31 16:51:51 +02002103 pcm_file = kzalloc(sizeof(*pcm_file), GFP_KERNEL);
2104 if (pcm_file == NULL) {
2105 snd_pcm_release_substream(substream);
2106 return -ENOMEM;
2107 }
2108 pcm_file->substream = substream;
2109 if (substream->ref_count == 1) {
Takashi Iwai0df63e42006-04-28 15:13:41 +02002110 substream->file = pcm_file;
2111 substream->pcm_release = pcm_release_private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002112 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002113 file->private_data = pcm_file;
Feng Tangffd3d5c2011-10-10 10:31:48 +08002114
Linus Torvalds1da177e2005-04-16 15:20:36 -07002115 return 0;
2116}
2117
Clemens Ladischf87135f2005-11-20 14:06:59 +01002118static int snd_pcm_playback_open(struct inode *inode, struct file *file)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002119{
Takashi Iwai877211f2005-11-17 13:59:38 +01002120 struct snd_pcm *pcm;
Takashi Iwai02f48652010-04-13 11:49:04 +02002121 int err = nonseekable_open(inode, file);
2122 if (err < 0)
2123 return err;
Clemens Ladischf87135f2005-11-20 14:06:59 +01002124 pcm = snd_lookup_minor_data(iminor(inode),
2125 SNDRV_DEVICE_TYPE_PCM_PLAYBACK);
Takashi Iwaia0830db2012-10-16 13:05:59 +02002126 err = snd_pcm_open(file, pcm, SNDRV_PCM_STREAM_PLAYBACK);
Takashi Iwai8bb4d9c2012-11-08 14:36:18 +01002127 if (pcm)
2128 snd_card_unref(pcm->card);
Takashi Iwaia0830db2012-10-16 13:05:59 +02002129 return err;
Clemens Ladischf87135f2005-11-20 14:06:59 +01002130}
2131
2132static int snd_pcm_capture_open(struct inode *inode, struct file *file)
2133{
2134 struct snd_pcm *pcm;
Takashi Iwai02f48652010-04-13 11:49:04 +02002135 int err = nonseekable_open(inode, file);
2136 if (err < 0)
2137 return err;
Clemens Ladischf87135f2005-11-20 14:06:59 +01002138 pcm = snd_lookup_minor_data(iminor(inode),
2139 SNDRV_DEVICE_TYPE_PCM_CAPTURE);
Takashi Iwaia0830db2012-10-16 13:05:59 +02002140 err = snd_pcm_open(file, pcm, SNDRV_PCM_STREAM_CAPTURE);
Takashi Iwai8bb4d9c2012-11-08 14:36:18 +01002141 if (pcm)
2142 snd_card_unref(pcm->card);
Takashi Iwaia0830db2012-10-16 13:05:59 +02002143 return err;
Clemens Ladischf87135f2005-11-20 14:06:59 +01002144}
2145
2146static int snd_pcm_open(struct file *file, struct snd_pcm *pcm, int stream)
2147{
2148 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002149 wait_queue_t wait;
2150
Linus Torvalds1da177e2005-04-16 15:20:36 -07002151 if (pcm == NULL) {
2152 err = -ENODEV;
2153 goto __error1;
2154 }
2155 err = snd_card_file_add(pcm->card, file);
2156 if (err < 0)
2157 goto __error1;
2158 if (!try_module_get(pcm->card->module)) {
2159 err = -EFAULT;
2160 goto __error2;
2161 }
2162 init_waitqueue_entry(&wait, current);
2163 add_wait_queue(&pcm->open_wait, &wait);
Ingo Molnar1a60d4c2006-01-16 16:29:08 +01002164 mutex_lock(&pcm->open_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002165 while (1) {
Feng Tangffd3d5c2011-10-10 10:31:48 +08002166 err = snd_pcm_open_file(file, pcm, stream);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002167 if (err >= 0)
2168 break;
2169 if (err == -EAGAIN) {
2170 if (file->f_flags & O_NONBLOCK) {
2171 err = -EBUSY;
2172 break;
2173 }
2174 } else
2175 break;
2176 set_current_state(TASK_INTERRUPTIBLE);
Ingo Molnar1a60d4c2006-01-16 16:29:08 +01002177 mutex_unlock(&pcm->open_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002178 schedule();
Ingo Molnar1a60d4c2006-01-16 16:29:08 +01002179 mutex_lock(&pcm->open_mutex);
Takashi Iwai0914f792012-10-16 16:43:39 +02002180 if (pcm->card->shutdown) {
2181 err = -ENODEV;
2182 break;
2183 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002184 if (signal_pending(current)) {
2185 err = -ERESTARTSYS;
2186 break;
2187 }
2188 }
2189 remove_wait_queue(&pcm->open_wait, &wait);
Ingo Molnar1a60d4c2006-01-16 16:29:08 +01002190 mutex_unlock(&pcm->open_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002191 if (err < 0)
2192 goto __error;
2193 return err;
2194
2195 __error:
2196 module_put(pcm->card->module);
2197 __error2:
2198 snd_card_file_remove(pcm->card, file);
2199 __error1:
2200 return err;
2201}
2202
2203static int snd_pcm_release(struct inode *inode, struct file *file)
2204{
Takashi Iwai877211f2005-11-17 13:59:38 +01002205 struct snd_pcm *pcm;
2206 struct snd_pcm_substream *substream;
2207 struct snd_pcm_file *pcm_file;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002208
2209 pcm_file = file->private_data;
2210 substream = pcm_file->substream;
Takashi Iwai7eaa9432008-08-08 17:09:09 +02002211 if (snd_BUG_ON(!substream))
2212 return -ENXIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002213 pcm = substream->pcm;
Ingo Molnar1a60d4c2006-01-16 16:29:08 +01002214 mutex_lock(&pcm->open_mutex);
Takashi Iwai3bf75f92006-03-27 16:40:49 +02002215 snd_pcm_release_substream(substream);
Takashi Iwai548a6482006-07-31 16:51:51 +02002216 kfree(pcm_file);
Ingo Molnar1a60d4c2006-01-16 16:29:08 +01002217 mutex_unlock(&pcm->open_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002218 wake_up(&pcm->open_wait);
2219 module_put(pcm->card->module);
2220 snd_card_file_remove(pcm->card, file);
2221 return 0;
2222}
2223
Takashi Iwai877211f2005-11-17 13:59:38 +01002224static snd_pcm_sframes_t snd_pcm_playback_rewind(struct snd_pcm_substream *substream,
2225 snd_pcm_uframes_t frames)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002226{
Takashi Iwai877211f2005-11-17 13:59:38 +01002227 struct snd_pcm_runtime *runtime = substream->runtime;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002228 snd_pcm_sframes_t appl_ptr;
2229 snd_pcm_sframes_t ret;
2230 snd_pcm_sframes_t hw_avail;
2231
2232 if (frames == 0)
2233 return 0;
2234
2235 snd_pcm_stream_lock_irq(substream);
2236 switch (runtime->status->state) {
2237 case SNDRV_PCM_STATE_PREPARED:
2238 break;
2239 case SNDRV_PCM_STATE_DRAINING:
2240 case SNDRV_PCM_STATE_RUNNING:
2241 if (snd_pcm_update_hw_ptr(substream) >= 0)
2242 break;
2243 /* Fall through */
2244 case SNDRV_PCM_STATE_XRUN:
2245 ret = -EPIPE;
2246 goto __end;
Lubomir Rintel51840402009-08-02 18:14:44 +02002247 case SNDRV_PCM_STATE_SUSPENDED:
2248 ret = -ESTRPIPE;
2249 goto __end;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002250 default:
2251 ret = -EBADFD;
2252 goto __end;
2253 }
2254
2255 hw_avail = snd_pcm_playback_hw_avail(runtime);
2256 if (hw_avail <= 0) {
2257 ret = 0;
2258 goto __end;
2259 }
2260 if (frames > (snd_pcm_uframes_t)hw_avail)
2261 frames = hw_avail;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002262 appl_ptr = runtime->control->appl_ptr - frames;
2263 if (appl_ptr < 0)
2264 appl_ptr += runtime->boundary;
2265 runtime->control->appl_ptr = appl_ptr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002266 ret = frames;
2267 __end:
2268 snd_pcm_stream_unlock_irq(substream);
2269 return ret;
2270}
2271
Takashi Iwai877211f2005-11-17 13:59:38 +01002272static snd_pcm_sframes_t snd_pcm_capture_rewind(struct snd_pcm_substream *substream,
2273 snd_pcm_uframes_t frames)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002274{
Takashi Iwai877211f2005-11-17 13:59:38 +01002275 struct snd_pcm_runtime *runtime = substream->runtime;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002276 snd_pcm_sframes_t appl_ptr;
2277 snd_pcm_sframes_t ret;
2278 snd_pcm_sframes_t hw_avail;
2279
2280 if (frames == 0)
2281 return 0;
2282
2283 snd_pcm_stream_lock_irq(substream);
2284 switch (runtime->status->state) {
2285 case SNDRV_PCM_STATE_PREPARED:
2286 case SNDRV_PCM_STATE_DRAINING:
2287 break;
2288 case SNDRV_PCM_STATE_RUNNING:
2289 if (snd_pcm_update_hw_ptr(substream) >= 0)
2290 break;
2291 /* Fall through */
2292 case SNDRV_PCM_STATE_XRUN:
2293 ret = -EPIPE;
2294 goto __end;
Lubomir Rintel51840402009-08-02 18:14:44 +02002295 case SNDRV_PCM_STATE_SUSPENDED:
2296 ret = -ESTRPIPE;
2297 goto __end;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002298 default:
2299 ret = -EBADFD;
2300 goto __end;
2301 }
2302
2303 hw_avail = snd_pcm_capture_hw_avail(runtime);
2304 if (hw_avail <= 0) {
2305 ret = 0;
2306 goto __end;
2307 }
2308 if (frames > (snd_pcm_uframes_t)hw_avail)
2309 frames = hw_avail;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002310 appl_ptr = runtime->control->appl_ptr - frames;
2311 if (appl_ptr < 0)
2312 appl_ptr += runtime->boundary;
2313 runtime->control->appl_ptr = appl_ptr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002314 ret = frames;
2315 __end:
2316 snd_pcm_stream_unlock_irq(substream);
2317 return ret;
2318}
2319
Takashi Iwai877211f2005-11-17 13:59:38 +01002320static snd_pcm_sframes_t snd_pcm_playback_forward(struct snd_pcm_substream *substream,
2321 snd_pcm_uframes_t frames)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002322{
Takashi Iwai877211f2005-11-17 13:59:38 +01002323 struct snd_pcm_runtime *runtime = substream->runtime;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002324 snd_pcm_sframes_t appl_ptr;
2325 snd_pcm_sframes_t ret;
2326 snd_pcm_sframes_t avail;
2327
2328 if (frames == 0)
2329 return 0;
2330
2331 snd_pcm_stream_lock_irq(substream);
2332 switch (runtime->status->state) {
2333 case SNDRV_PCM_STATE_PREPARED:
2334 case SNDRV_PCM_STATE_PAUSED:
2335 break;
2336 case SNDRV_PCM_STATE_DRAINING:
2337 case SNDRV_PCM_STATE_RUNNING:
2338 if (snd_pcm_update_hw_ptr(substream) >= 0)
2339 break;
2340 /* Fall through */
2341 case SNDRV_PCM_STATE_XRUN:
2342 ret = -EPIPE;
2343 goto __end;
Lubomir Rintel51840402009-08-02 18:14:44 +02002344 case SNDRV_PCM_STATE_SUSPENDED:
2345 ret = -ESTRPIPE;
2346 goto __end;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002347 default:
2348 ret = -EBADFD;
2349 goto __end;
2350 }
2351
2352 avail = snd_pcm_playback_avail(runtime);
2353 if (avail <= 0) {
2354 ret = 0;
2355 goto __end;
2356 }
2357 if (frames > (snd_pcm_uframes_t)avail)
2358 frames = avail;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002359 appl_ptr = runtime->control->appl_ptr + frames;
2360 if (appl_ptr >= (snd_pcm_sframes_t)runtime->boundary)
2361 appl_ptr -= runtime->boundary;
2362 runtime->control->appl_ptr = appl_ptr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002363 ret = frames;
2364 __end:
2365 snd_pcm_stream_unlock_irq(substream);
2366 return ret;
2367}
2368
Takashi Iwai877211f2005-11-17 13:59:38 +01002369static snd_pcm_sframes_t snd_pcm_capture_forward(struct snd_pcm_substream *substream,
2370 snd_pcm_uframes_t frames)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002371{
Takashi Iwai877211f2005-11-17 13:59:38 +01002372 struct snd_pcm_runtime *runtime = substream->runtime;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002373 snd_pcm_sframes_t appl_ptr;
2374 snd_pcm_sframes_t ret;
2375 snd_pcm_sframes_t avail;
2376
2377 if (frames == 0)
2378 return 0;
2379
2380 snd_pcm_stream_lock_irq(substream);
2381 switch (runtime->status->state) {
2382 case SNDRV_PCM_STATE_PREPARED:
2383 case SNDRV_PCM_STATE_DRAINING:
2384 case SNDRV_PCM_STATE_PAUSED:
2385 break;
2386 case SNDRV_PCM_STATE_RUNNING:
2387 if (snd_pcm_update_hw_ptr(substream) >= 0)
2388 break;
2389 /* Fall through */
2390 case SNDRV_PCM_STATE_XRUN:
2391 ret = -EPIPE;
2392 goto __end;
Lubomir Rintel51840402009-08-02 18:14:44 +02002393 case SNDRV_PCM_STATE_SUSPENDED:
2394 ret = -ESTRPIPE;
2395 goto __end;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002396 default:
2397 ret = -EBADFD;
2398 goto __end;
2399 }
2400
2401 avail = snd_pcm_capture_avail(runtime);
2402 if (avail <= 0) {
2403 ret = 0;
2404 goto __end;
2405 }
2406 if (frames > (snd_pcm_uframes_t)avail)
2407 frames = avail;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002408 appl_ptr = runtime->control->appl_ptr + frames;
2409 if (appl_ptr >= (snd_pcm_sframes_t)runtime->boundary)
2410 appl_ptr -= runtime->boundary;
2411 runtime->control->appl_ptr = appl_ptr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002412 ret = frames;
2413 __end:
2414 snd_pcm_stream_unlock_irq(substream);
2415 return ret;
2416}
2417
Takashi Iwai877211f2005-11-17 13:59:38 +01002418static int snd_pcm_hwsync(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002419{
Takashi Iwai877211f2005-11-17 13:59:38 +01002420 struct snd_pcm_runtime *runtime = substream->runtime;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002421 int err;
2422
2423 snd_pcm_stream_lock_irq(substream);
2424 switch (runtime->status->state) {
2425 case SNDRV_PCM_STATE_DRAINING:
2426 if (substream->stream == SNDRV_PCM_STREAM_CAPTURE)
2427 goto __badfd;
2428 case SNDRV_PCM_STATE_RUNNING:
2429 if ((err = snd_pcm_update_hw_ptr(substream)) < 0)
2430 break;
2431 /* Fall through */
2432 case SNDRV_PCM_STATE_PREPARED:
2433 case SNDRV_PCM_STATE_SUSPENDED:
2434 err = 0;
2435 break;
2436 case SNDRV_PCM_STATE_XRUN:
2437 err = -EPIPE;
2438 break;
2439 default:
2440 __badfd:
2441 err = -EBADFD;
2442 break;
2443 }
2444 snd_pcm_stream_unlock_irq(substream);
2445 return err;
2446}
2447
Takashi Iwai877211f2005-11-17 13:59:38 +01002448static int snd_pcm_delay(struct snd_pcm_substream *substream,
2449 snd_pcm_sframes_t __user *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002450{
Takashi Iwai877211f2005-11-17 13:59:38 +01002451 struct snd_pcm_runtime *runtime = substream->runtime;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002452 int err;
2453 snd_pcm_sframes_t n = 0;
2454
2455 snd_pcm_stream_lock_irq(substream);
2456 switch (runtime->status->state) {
2457 case SNDRV_PCM_STATE_DRAINING:
2458 if (substream->stream == SNDRV_PCM_STREAM_CAPTURE)
2459 goto __badfd;
2460 case SNDRV_PCM_STATE_RUNNING:
2461 if ((err = snd_pcm_update_hw_ptr(substream)) < 0)
2462 break;
2463 /* Fall through */
2464 case SNDRV_PCM_STATE_PREPARED:
2465 case SNDRV_PCM_STATE_SUSPENDED:
2466 err = 0;
2467 if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK)
2468 n = snd_pcm_playback_hw_avail(runtime);
2469 else
2470 n = snd_pcm_capture_avail(runtime);
Takashi Iwai4bbe1dd2008-10-13 03:07:14 +02002471 n += runtime->delay;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002472 break;
2473 case SNDRV_PCM_STATE_XRUN:
2474 err = -EPIPE;
2475 break;
2476 default:
2477 __badfd:
2478 err = -EBADFD;
2479 break;
2480 }
2481 snd_pcm_stream_unlock_irq(substream);
2482 if (!err)
2483 if (put_user(n, res))
2484 err = -EFAULT;
2485 return err;
2486}
2487
Takashi Iwai877211f2005-11-17 13:59:38 +01002488static int snd_pcm_sync_ptr(struct snd_pcm_substream *substream,
2489 struct snd_pcm_sync_ptr __user *_sync_ptr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002490{
Takashi Iwai877211f2005-11-17 13:59:38 +01002491 struct snd_pcm_runtime *runtime = substream->runtime;
2492 struct snd_pcm_sync_ptr sync_ptr;
2493 volatile struct snd_pcm_mmap_status *status;
2494 volatile struct snd_pcm_mmap_control *control;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002495 int err;
2496
2497 memset(&sync_ptr, 0, sizeof(sync_ptr));
2498 if (get_user(sync_ptr.flags, (unsigned __user *)&(_sync_ptr->flags)))
2499 return -EFAULT;
Takashi Iwai877211f2005-11-17 13:59:38 +01002500 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 -07002501 return -EFAULT;
2502 status = runtime->status;
2503 control = runtime->control;
2504 if (sync_ptr.flags & SNDRV_PCM_SYNC_PTR_HWSYNC) {
2505 err = snd_pcm_hwsync(substream);
2506 if (err < 0)
2507 return err;
2508 }
2509 snd_pcm_stream_lock_irq(substream);
2510 if (!(sync_ptr.flags & SNDRV_PCM_SYNC_PTR_APPL))
2511 control->appl_ptr = sync_ptr.c.control.appl_ptr;
2512 else
2513 sync_ptr.c.control.appl_ptr = control->appl_ptr;
2514 if (!(sync_ptr.flags & SNDRV_PCM_SYNC_PTR_AVAIL_MIN))
2515 control->avail_min = sync_ptr.c.control.avail_min;
2516 else
2517 sync_ptr.c.control.avail_min = control->avail_min;
2518 sync_ptr.s.status.state = status->state;
2519 sync_ptr.s.status.hw_ptr = status->hw_ptr;
2520 sync_ptr.s.status.tstamp = status->tstamp;
2521 sync_ptr.s.status.suspended_state = status->suspended_state;
2522 snd_pcm_stream_unlock_irq(substream);
2523 if (copy_to_user(_sync_ptr, &sync_ptr, sizeof(sync_ptr)))
2524 return -EFAULT;
2525 return 0;
2526}
Jaroslav Kyselab751eef2007-12-13 10:19:42 +01002527
2528static int snd_pcm_tstamp(struct snd_pcm_substream *substream, int __user *_arg)
2529{
2530 struct snd_pcm_runtime *runtime = substream->runtime;
2531 int arg;
2532
2533 if (get_user(arg, _arg))
2534 return -EFAULT;
2535 if (arg < 0 || arg > SNDRV_PCM_TSTAMP_TYPE_LAST)
2536 return -EINVAL;
2537 runtime->tstamp_type = SNDRV_PCM_TSTAMP_TYPE_GETTIMEOFDAY;
2538 if (arg == SNDRV_PCM_TSTAMP_TYPE_MONOTONIC)
2539 runtime->tstamp_type = SNDRV_PCM_TSTAMP_TYPE_MONOTONIC;
2540 return 0;
2541}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002542
Takashi Iwai0df63e42006-04-28 15:13:41 +02002543static int snd_pcm_common_ioctl1(struct file *file,
2544 struct snd_pcm_substream *substream,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002545 unsigned int cmd, void __user *arg)
2546{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002547 switch (cmd) {
2548 case SNDRV_PCM_IOCTL_PVERSION:
2549 return put_user(SNDRV_PCM_VERSION, (int __user *)arg) ? -EFAULT : 0;
2550 case SNDRV_PCM_IOCTL_INFO:
2551 return snd_pcm_info_user(substream, arg);
Jaroslav Kysela28e9e472007-12-17 09:02:22 +01002552 case SNDRV_PCM_IOCTL_TSTAMP: /* just for compatibility */
2553 return 0;
Jaroslav Kyselab751eef2007-12-13 10:19:42 +01002554 case SNDRV_PCM_IOCTL_TTSTAMP:
2555 return snd_pcm_tstamp(substream, arg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002556 case SNDRV_PCM_IOCTL_HW_REFINE:
2557 return snd_pcm_hw_refine_user(substream, arg);
2558 case SNDRV_PCM_IOCTL_HW_PARAMS:
2559 return snd_pcm_hw_params_user(substream, arg);
2560 case SNDRV_PCM_IOCTL_HW_FREE:
2561 return snd_pcm_hw_free(substream);
2562 case SNDRV_PCM_IOCTL_SW_PARAMS:
2563 return snd_pcm_sw_params_user(substream, arg);
2564 case SNDRV_PCM_IOCTL_STATUS:
2565 return snd_pcm_status_user(substream, arg);
2566 case SNDRV_PCM_IOCTL_CHANNEL_INFO:
2567 return snd_pcm_channel_info_user(substream, arg);
2568 case SNDRV_PCM_IOCTL_PREPARE:
Takashi Iwai0df63e42006-04-28 15:13:41 +02002569 return snd_pcm_prepare(substream, file);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002570 case SNDRV_PCM_IOCTL_RESET:
2571 return snd_pcm_reset(substream);
2572 case SNDRV_PCM_IOCTL_START:
2573 return snd_pcm_action_lock_irq(&snd_pcm_action_start, substream, SNDRV_PCM_STATE_RUNNING);
2574 case SNDRV_PCM_IOCTL_LINK:
2575 return snd_pcm_link(substream, (int)(unsigned long) arg);
2576 case SNDRV_PCM_IOCTL_UNLINK:
2577 return snd_pcm_unlink(substream);
2578 case SNDRV_PCM_IOCTL_RESUME:
2579 return snd_pcm_resume(substream);
2580 case SNDRV_PCM_IOCTL_XRUN:
2581 return snd_pcm_xrun(substream);
2582 case SNDRV_PCM_IOCTL_HWSYNC:
2583 return snd_pcm_hwsync(substream);
2584 case SNDRV_PCM_IOCTL_DELAY:
2585 return snd_pcm_delay(substream, arg);
2586 case SNDRV_PCM_IOCTL_SYNC_PTR:
2587 return snd_pcm_sync_ptr(substream, arg);
Takashi Iwai59d48582005-12-01 10:51:58 +01002588#ifdef CONFIG_SND_SUPPORT_OLD_API
Linus Torvalds1da177e2005-04-16 15:20:36 -07002589 case SNDRV_PCM_IOCTL_HW_REFINE_OLD:
2590 return snd_pcm_hw_refine_old_user(substream, arg);
2591 case SNDRV_PCM_IOCTL_HW_PARAMS_OLD:
2592 return snd_pcm_hw_params_old_user(substream, arg);
Takashi Iwai59d48582005-12-01 10:51:58 +01002593#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002594 case SNDRV_PCM_IOCTL_DRAIN:
Takashi Iwai4cdc1152009-08-20 16:40:16 +02002595 return snd_pcm_drain(substream, file);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002596 case SNDRV_PCM_IOCTL_DROP:
2597 return snd_pcm_drop(substream);
Takashi Iwaie661d0d2006-02-21 14:14:50 +01002598 case SNDRV_PCM_IOCTL_PAUSE:
2599 {
2600 int res;
2601 snd_pcm_stream_lock_irq(substream);
2602 res = snd_pcm_pause(substream, (int)(unsigned long)arg);
2603 snd_pcm_stream_unlock_irq(substream);
2604 return res;
2605 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002606 }
2607 snd_printd("unknown ioctl = 0x%x\n", cmd);
2608 return -ENOTTY;
2609}
2610
Takashi Iwai0df63e42006-04-28 15:13:41 +02002611static int snd_pcm_playback_ioctl1(struct file *file,
2612 struct snd_pcm_substream *substream,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002613 unsigned int cmd, void __user *arg)
2614{
Takashi Iwai7eaa9432008-08-08 17:09:09 +02002615 if (snd_BUG_ON(!substream))
2616 return -ENXIO;
2617 if (snd_BUG_ON(substream->stream != SNDRV_PCM_STREAM_PLAYBACK))
2618 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002619 switch (cmd) {
2620 case SNDRV_PCM_IOCTL_WRITEI_FRAMES:
2621 {
Takashi Iwai877211f2005-11-17 13:59:38 +01002622 struct snd_xferi xferi;
2623 struct snd_xferi __user *_xferi = arg;
2624 struct snd_pcm_runtime *runtime = substream->runtime;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002625 snd_pcm_sframes_t result;
2626 if (runtime->status->state == SNDRV_PCM_STATE_OPEN)
2627 return -EBADFD;
2628 if (put_user(0, &_xferi->result))
2629 return -EFAULT;
2630 if (copy_from_user(&xferi, _xferi, sizeof(xferi)))
2631 return -EFAULT;
2632 result = snd_pcm_lib_write(substream, xferi.buf, xferi.frames);
2633 __put_user(result, &_xferi->result);
2634 return result < 0 ? result : 0;
2635 }
2636 case SNDRV_PCM_IOCTL_WRITEN_FRAMES:
2637 {
Takashi Iwai877211f2005-11-17 13:59:38 +01002638 struct snd_xfern xfern;
2639 struct snd_xfern __user *_xfern = arg;
2640 struct snd_pcm_runtime *runtime = substream->runtime;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002641 void __user **bufs;
2642 snd_pcm_sframes_t result;
2643 if (runtime->status->state == SNDRV_PCM_STATE_OPEN)
2644 return -EBADFD;
2645 if (runtime->channels > 128)
2646 return -EINVAL;
2647 if (put_user(0, &_xfern->result))
2648 return -EFAULT;
2649 if (copy_from_user(&xfern, _xfern, sizeof(xfern)))
2650 return -EFAULT;
Li Zefanef44a1e2009-04-10 09:43:08 +08002651
2652 bufs = memdup_user(xfern.bufs,
2653 sizeof(void *) * runtime->channels);
2654 if (IS_ERR(bufs))
2655 return PTR_ERR(bufs);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002656 result = snd_pcm_lib_writev(substream, bufs, xfern.frames);
2657 kfree(bufs);
2658 __put_user(result, &_xfern->result);
2659 return result < 0 ? result : 0;
2660 }
2661 case SNDRV_PCM_IOCTL_REWIND:
2662 {
2663 snd_pcm_uframes_t frames;
2664 snd_pcm_uframes_t __user *_frames = arg;
2665 snd_pcm_sframes_t result;
2666 if (get_user(frames, _frames))
2667 return -EFAULT;
2668 if (put_user(0, _frames))
2669 return -EFAULT;
2670 result = snd_pcm_playback_rewind(substream, frames);
2671 __put_user(result, _frames);
2672 return result < 0 ? result : 0;
2673 }
2674 case SNDRV_PCM_IOCTL_FORWARD:
2675 {
2676 snd_pcm_uframes_t frames;
2677 snd_pcm_uframes_t __user *_frames = arg;
2678 snd_pcm_sframes_t result;
2679 if (get_user(frames, _frames))
2680 return -EFAULT;
2681 if (put_user(0, _frames))
2682 return -EFAULT;
2683 result = snd_pcm_playback_forward(substream, frames);
2684 __put_user(result, _frames);
2685 return result < 0 ? result : 0;
2686 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002687 }
Takashi Iwai0df63e42006-04-28 15:13:41 +02002688 return snd_pcm_common_ioctl1(file, substream, cmd, arg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002689}
2690
Takashi Iwai0df63e42006-04-28 15:13:41 +02002691static int snd_pcm_capture_ioctl1(struct file *file,
2692 struct snd_pcm_substream *substream,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002693 unsigned int cmd, void __user *arg)
2694{
Takashi Iwai7eaa9432008-08-08 17:09:09 +02002695 if (snd_BUG_ON(!substream))
2696 return -ENXIO;
2697 if (snd_BUG_ON(substream->stream != SNDRV_PCM_STREAM_CAPTURE))
2698 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002699 switch (cmd) {
2700 case SNDRV_PCM_IOCTL_READI_FRAMES:
2701 {
Takashi Iwai877211f2005-11-17 13:59:38 +01002702 struct snd_xferi xferi;
2703 struct snd_xferi __user *_xferi = arg;
2704 struct snd_pcm_runtime *runtime = substream->runtime;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002705 snd_pcm_sframes_t result;
2706 if (runtime->status->state == SNDRV_PCM_STATE_OPEN)
2707 return -EBADFD;
2708 if (put_user(0, &_xferi->result))
2709 return -EFAULT;
2710 if (copy_from_user(&xferi, _xferi, sizeof(xferi)))
2711 return -EFAULT;
2712 result = snd_pcm_lib_read(substream, xferi.buf, xferi.frames);
2713 __put_user(result, &_xferi->result);
2714 return result < 0 ? result : 0;
2715 }
2716 case SNDRV_PCM_IOCTL_READN_FRAMES:
2717 {
Takashi Iwai877211f2005-11-17 13:59:38 +01002718 struct snd_xfern xfern;
2719 struct snd_xfern __user *_xfern = arg;
2720 struct snd_pcm_runtime *runtime = substream->runtime;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002721 void *bufs;
2722 snd_pcm_sframes_t result;
2723 if (runtime->status->state == SNDRV_PCM_STATE_OPEN)
2724 return -EBADFD;
2725 if (runtime->channels > 128)
2726 return -EINVAL;
2727 if (put_user(0, &_xfern->result))
2728 return -EFAULT;
2729 if (copy_from_user(&xfern, _xfern, sizeof(xfern)))
2730 return -EFAULT;
Li Zefanef44a1e2009-04-10 09:43:08 +08002731
2732 bufs = memdup_user(xfern.bufs,
2733 sizeof(void *) * runtime->channels);
2734 if (IS_ERR(bufs))
2735 return PTR_ERR(bufs);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002736 result = snd_pcm_lib_readv(substream, bufs, xfern.frames);
2737 kfree(bufs);
2738 __put_user(result, &_xfern->result);
2739 return result < 0 ? result : 0;
2740 }
2741 case SNDRV_PCM_IOCTL_REWIND:
2742 {
2743 snd_pcm_uframes_t frames;
2744 snd_pcm_uframes_t __user *_frames = arg;
2745 snd_pcm_sframes_t result;
2746 if (get_user(frames, _frames))
2747 return -EFAULT;
2748 if (put_user(0, _frames))
2749 return -EFAULT;
2750 result = snd_pcm_capture_rewind(substream, frames);
2751 __put_user(result, _frames);
2752 return result < 0 ? result : 0;
2753 }
2754 case SNDRV_PCM_IOCTL_FORWARD:
2755 {
2756 snd_pcm_uframes_t frames;
2757 snd_pcm_uframes_t __user *_frames = arg;
2758 snd_pcm_sframes_t result;
2759 if (get_user(frames, _frames))
2760 return -EFAULT;
2761 if (put_user(0, _frames))
2762 return -EFAULT;
2763 result = snd_pcm_capture_forward(substream, frames);
2764 __put_user(result, _frames);
2765 return result < 0 ? result : 0;
2766 }
2767 }
Takashi Iwai0df63e42006-04-28 15:13:41 +02002768 return snd_pcm_common_ioctl1(file, substream, cmd, arg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002769}
2770
Takashi Iwai877211f2005-11-17 13:59:38 +01002771static long snd_pcm_playback_ioctl(struct file *file, unsigned int cmd,
2772 unsigned long arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002773{
Takashi Iwai877211f2005-11-17 13:59:38 +01002774 struct snd_pcm_file *pcm_file;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002775
2776 pcm_file = file->private_data;
2777
2778 if (((cmd >> 8) & 0xff) != 'A')
2779 return -ENOTTY;
2780
Takashi Iwai0df63e42006-04-28 15:13:41 +02002781 return snd_pcm_playback_ioctl1(file, pcm_file->substream, cmd,
2782 (void __user *)arg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002783}
2784
Takashi Iwai877211f2005-11-17 13:59:38 +01002785static long snd_pcm_capture_ioctl(struct file *file, unsigned int cmd,
2786 unsigned long arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002787{
Takashi Iwai877211f2005-11-17 13:59:38 +01002788 struct snd_pcm_file *pcm_file;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002789
2790 pcm_file = file->private_data;
2791
2792 if (((cmd >> 8) & 0xff) != 'A')
2793 return -ENOTTY;
2794
Takashi Iwai0df63e42006-04-28 15:13:41 +02002795 return snd_pcm_capture_ioctl1(file, pcm_file->substream, cmd,
2796 (void __user *)arg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002797}
2798
Takashi Iwai877211f2005-11-17 13:59:38 +01002799int snd_pcm_kernel_ioctl(struct snd_pcm_substream *substream,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002800 unsigned int cmd, void *arg)
2801{
Takashi Iwaibf1bbb52006-03-27 16:22:45 +02002802 mm_segment_t fs;
2803 int result;
2804
2805 fs = snd_enter_user();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002806 switch (substream->stream) {
2807 case SNDRV_PCM_STREAM_PLAYBACK:
Takashi Iwai0df63e42006-04-28 15:13:41 +02002808 result = snd_pcm_playback_ioctl1(NULL, substream, cmd,
2809 (void __user *)arg);
Takashi Iwaibf1bbb52006-03-27 16:22:45 +02002810 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002811 case SNDRV_PCM_STREAM_CAPTURE:
Takashi Iwai0df63e42006-04-28 15:13:41 +02002812 result = snd_pcm_capture_ioctl1(NULL, substream, cmd,
2813 (void __user *)arg);
Takashi Iwaibf1bbb52006-03-27 16:22:45 +02002814 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002815 default:
Takashi Iwaibf1bbb52006-03-27 16:22:45 +02002816 result = -EINVAL;
2817 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002818 }
Takashi Iwaibf1bbb52006-03-27 16:22:45 +02002819 snd_leave_user(fs);
2820 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002821}
2822
Takashi Iwaie88e8ae62006-04-28 15:13:40 +02002823EXPORT_SYMBOL(snd_pcm_kernel_ioctl);
2824
Takashi Iwai877211f2005-11-17 13:59:38 +01002825static ssize_t snd_pcm_read(struct file *file, char __user *buf, size_t count,
2826 loff_t * offset)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002827{
Takashi Iwai877211f2005-11-17 13:59:38 +01002828 struct snd_pcm_file *pcm_file;
2829 struct snd_pcm_substream *substream;
2830 struct snd_pcm_runtime *runtime;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002831 snd_pcm_sframes_t result;
2832
2833 pcm_file = file->private_data;
2834 substream = pcm_file->substream;
Takashi Iwai7eaa9432008-08-08 17:09:09 +02002835 if (PCM_RUNTIME_CHECK(substream))
2836 return -ENXIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002837 runtime = substream->runtime;
2838 if (runtime->status->state == SNDRV_PCM_STATE_OPEN)
2839 return -EBADFD;
2840 if (!frame_aligned(runtime, count))
2841 return -EINVAL;
2842 count = bytes_to_frames(runtime, count);
2843 result = snd_pcm_lib_read(substream, buf, count);
2844 if (result > 0)
2845 result = frames_to_bytes(runtime, result);
2846 return result;
2847}
2848
Takashi Iwai877211f2005-11-17 13:59:38 +01002849static ssize_t snd_pcm_write(struct file *file, const char __user *buf,
2850 size_t count, loff_t * offset)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002851{
Takashi Iwai877211f2005-11-17 13:59:38 +01002852 struct snd_pcm_file *pcm_file;
2853 struct snd_pcm_substream *substream;
2854 struct snd_pcm_runtime *runtime;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002855 snd_pcm_sframes_t result;
2856
2857 pcm_file = file->private_data;
2858 substream = pcm_file->substream;
Takashi Iwai7eaa9432008-08-08 17:09:09 +02002859 if (PCM_RUNTIME_CHECK(substream))
2860 return -ENXIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002861 runtime = substream->runtime;
Takashi Iwai7eaa9432008-08-08 17:09:09 +02002862 if (runtime->status->state == SNDRV_PCM_STATE_OPEN)
2863 return -EBADFD;
2864 if (!frame_aligned(runtime, count))
2865 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002866 count = bytes_to_frames(runtime, count);
2867 result = snd_pcm_lib_write(substream, buf, count);
2868 if (result > 0)
2869 result = frames_to_bytes(runtime, result);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002870 return result;
2871}
2872
Badari Pulavartyee0b3e62006-09-30 23:28:47 -07002873static ssize_t snd_pcm_aio_read(struct kiocb *iocb, const struct iovec *iov,
2874 unsigned long nr_segs, loff_t pos)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002875
2876{
Takashi Iwai877211f2005-11-17 13:59:38 +01002877 struct snd_pcm_file *pcm_file;
2878 struct snd_pcm_substream *substream;
2879 struct snd_pcm_runtime *runtime;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002880 snd_pcm_sframes_t result;
2881 unsigned long i;
2882 void __user **bufs;
2883 snd_pcm_uframes_t frames;
2884
Badari Pulavartyee0b3e62006-09-30 23:28:47 -07002885 pcm_file = iocb->ki_filp->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002886 substream = pcm_file->substream;
Takashi Iwai7eaa9432008-08-08 17:09:09 +02002887 if (PCM_RUNTIME_CHECK(substream))
2888 return -ENXIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002889 runtime = substream->runtime;
2890 if (runtime->status->state == SNDRV_PCM_STATE_OPEN)
2891 return -EBADFD;
Badari Pulavartyee0b3e62006-09-30 23:28:47 -07002892 if (nr_segs > 1024 || nr_segs != runtime->channels)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002893 return -EINVAL;
Badari Pulavartyee0b3e62006-09-30 23:28:47 -07002894 if (!frame_aligned(runtime, iov->iov_len))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002895 return -EINVAL;
Badari Pulavartyee0b3e62006-09-30 23:28:47 -07002896 frames = bytes_to_samples(runtime, iov->iov_len);
2897 bufs = kmalloc(sizeof(void *) * nr_segs, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002898 if (bufs == NULL)
2899 return -ENOMEM;
Badari Pulavartyee0b3e62006-09-30 23:28:47 -07002900 for (i = 0; i < nr_segs; ++i)
2901 bufs[i] = iov[i].iov_base;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002902 result = snd_pcm_lib_readv(substream, bufs, frames);
2903 if (result > 0)
2904 result = frames_to_bytes(runtime, result);
2905 kfree(bufs);
2906 return result;
2907}
2908
Badari Pulavartyee0b3e62006-09-30 23:28:47 -07002909static ssize_t snd_pcm_aio_write(struct kiocb *iocb, const struct iovec *iov,
2910 unsigned long nr_segs, loff_t pos)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002911{
Takashi Iwai877211f2005-11-17 13:59:38 +01002912 struct snd_pcm_file *pcm_file;
2913 struct snd_pcm_substream *substream;
2914 struct snd_pcm_runtime *runtime;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002915 snd_pcm_sframes_t result;
2916 unsigned long i;
2917 void __user **bufs;
2918 snd_pcm_uframes_t frames;
2919
Badari Pulavartyee0b3e62006-09-30 23:28:47 -07002920 pcm_file = iocb->ki_filp->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002921 substream = pcm_file->substream;
Takashi Iwai7eaa9432008-08-08 17:09:09 +02002922 if (PCM_RUNTIME_CHECK(substream))
2923 return -ENXIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002924 runtime = substream->runtime;
Takashi Iwai7eaa9432008-08-08 17:09:09 +02002925 if (runtime->status->state == SNDRV_PCM_STATE_OPEN)
2926 return -EBADFD;
Badari Pulavartyee0b3e62006-09-30 23:28:47 -07002927 if (nr_segs > 128 || nr_segs != runtime->channels ||
Takashi Iwai7eaa9432008-08-08 17:09:09 +02002928 !frame_aligned(runtime, iov->iov_len))
2929 return -EINVAL;
Badari Pulavartyee0b3e62006-09-30 23:28:47 -07002930 frames = bytes_to_samples(runtime, iov->iov_len);
2931 bufs = kmalloc(sizeof(void *) * nr_segs, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002932 if (bufs == NULL)
2933 return -ENOMEM;
Badari Pulavartyee0b3e62006-09-30 23:28:47 -07002934 for (i = 0; i < nr_segs; ++i)
2935 bufs[i] = iov[i].iov_base;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002936 result = snd_pcm_lib_writev(substream, bufs, frames);
2937 if (result > 0)
2938 result = frames_to_bytes(runtime, result);
2939 kfree(bufs);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002940 return result;
2941}
2942
2943static unsigned int snd_pcm_playback_poll(struct file *file, poll_table * wait)
2944{
Takashi Iwai877211f2005-11-17 13:59:38 +01002945 struct snd_pcm_file *pcm_file;
2946 struct snd_pcm_substream *substream;
2947 struct snd_pcm_runtime *runtime;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002948 unsigned int mask;
2949 snd_pcm_uframes_t avail;
2950
2951 pcm_file = file->private_data;
2952
2953 substream = pcm_file->substream;
Takashi Iwai7eaa9432008-08-08 17:09:09 +02002954 if (PCM_RUNTIME_CHECK(substream))
2955 return -ENXIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002956 runtime = substream->runtime;
2957
2958 poll_wait(file, &runtime->sleep, wait);
2959
2960 snd_pcm_stream_lock_irq(substream);
2961 avail = snd_pcm_playback_avail(runtime);
2962 switch (runtime->status->state) {
2963 case SNDRV_PCM_STATE_RUNNING:
2964 case SNDRV_PCM_STATE_PREPARED:
2965 case SNDRV_PCM_STATE_PAUSED:
2966 if (avail >= runtime->control->avail_min) {
2967 mask = POLLOUT | POLLWRNORM;
2968 break;
2969 }
2970 /* Fall through */
2971 case SNDRV_PCM_STATE_DRAINING:
2972 mask = 0;
2973 break;
2974 default:
2975 mask = POLLOUT | POLLWRNORM | POLLERR;
2976 break;
2977 }
2978 snd_pcm_stream_unlock_irq(substream);
2979 return mask;
2980}
2981
2982static unsigned int snd_pcm_capture_poll(struct file *file, poll_table * wait)
2983{
Takashi Iwai877211f2005-11-17 13:59:38 +01002984 struct snd_pcm_file *pcm_file;
2985 struct snd_pcm_substream *substream;
2986 struct snd_pcm_runtime *runtime;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002987 unsigned int mask;
2988 snd_pcm_uframes_t avail;
2989
2990 pcm_file = file->private_data;
2991
2992 substream = pcm_file->substream;
Takashi Iwai7eaa9432008-08-08 17:09:09 +02002993 if (PCM_RUNTIME_CHECK(substream))
2994 return -ENXIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002995 runtime = substream->runtime;
2996
2997 poll_wait(file, &runtime->sleep, wait);
2998
2999 snd_pcm_stream_lock_irq(substream);
3000 avail = snd_pcm_capture_avail(runtime);
3001 switch (runtime->status->state) {
3002 case SNDRV_PCM_STATE_RUNNING:
3003 case SNDRV_PCM_STATE_PREPARED:
3004 case SNDRV_PCM_STATE_PAUSED:
3005 if (avail >= runtime->control->avail_min) {
3006 mask = POLLIN | POLLRDNORM;
3007 break;
3008 }
3009 mask = 0;
3010 break;
3011 case SNDRV_PCM_STATE_DRAINING:
3012 if (avail > 0) {
3013 mask = POLLIN | POLLRDNORM;
3014 break;
3015 }
3016 /* Fall through */
3017 default:
3018 mask = POLLIN | POLLRDNORM | POLLERR;
3019 break;
3020 }
3021 snd_pcm_stream_unlock_irq(substream);
3022 return mask;
3023}
3024
3025/*
3026 * mmap support
3027 */
3028
3029/*
3030 * Only on coherent architectures, we can mmap the status and the control records
3031 * for effcient data transfer. On others, we have to use HWSYNC ioctl...
3032 */
3033#if defined(CONFIG_X86) || defined(CONFIG_PPC) || defined(CONFIG_ALPHA)
3034/*
3035 * mmap status record
3036 */
Nick Piggin3ad5afc2007-12-13 16:15:00 +01003037static int snd_pcm_mmap_status_fault(struct vm_area_struct *area,
3038 struct vm_fault *vmf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003039{
Takashi Iwai877211f2005-11-17 13:59:38 +01003040 struct snd_pcm_substream *substream = area->vm_private_data;
3041 struct snd_pcm_runtime *runtime;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003042
3043 if (substream == NULL)
Nick Piggin3ad5afc2007-12-13 16:15:00 +01003044 return VM_FAULT_SIGBUS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003045 runtime = substream->runtime;
Nick Piggin3ad5afc2007-12-13 16:15:00 +01003046 vmf->page = virt_to_page(runtime->status);
3047 get_page(vmf->page);
3048 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003049}
3050
Alexey Dobriyanf0f37e22009-09-27 22:29:37 +04003051static const struct vm_operations_struct snd_pcm_vm_ops_status =
Linus Torvalds1da177e2005-04-16 15:20:36 -07003052{
Nick Piggin3ad5afc2007-12-13 16:15:00 +01003053 .fault = snd_pcm_mmap_status_fault,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003054};
3055
Takashi Iwai877211f2005-11-17 13:59:38 +01003056static int snd_pcm_mmap_status(struct snd_pcm_substream *substream, struct file *file,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003057 struct vm_area_struct *area)
3058{
Linus Torvalds1da177e2005-04-16 15:20:36 -07003059 long size;
3060 if (!(area->vm_flags & VM_READ))
3061 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003062 size = area->vm_end - area->vm_start;
Takashi Iwai877211f2005-11-17 13:59:38 +01003063 if (size != PAGE_ALIGN(sizeof(struct snd_pcm_mmap_status)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003064 return -EINVAL;
3065 area->vm_ops = &snd_pcm_vm_ops_status;
3066 area->vm_private_data = substream;
Konstantin Khlebnikov314e51b2012-10-08 16:29:02 -07003067 area->vm_flags |= VM_DONTEXPAND | VM_DONTDUMP;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003068 return 0;
3069}
3070
3071/*
3072 * mmap control record
3073 */
Nick Piggin3ad5afc2007-12-13 16:15:00 +01003074static int snd_pcm_mmap_control_fault(struct vm_area_struct *area,
3075 struct vm_fault *vmf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003076{
Takashi Iwai877211f2005-11-17 13:59:38 +01003077 struct snd_pcm_substream *substream = area->vm_private_data;
3078 struct snd_pcm_runtime *runtime;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003079
3080 if (substream == NULL)
Nick Piggin3ad5afc2007-12-13 16:15:00 +01003081 return VM_FAULT_SIGBUS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003082 runtime = substream->runtime;
Nick Piggin3ad5afc2007-12-13 16:15:00 +01003083 vmf->page = virt_to_page(runtime->control);
3084 get_page(vmf->page);
3085 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003086}
3087
Alexey Dobriyanf0f37e22009-09-27 22:29:37 +04003088static const struct vm_operations_struct snd_pcm_vm_ops_control =
Linus Torvalds1da177e2005-04-16 15:20:36 -07003089{
Nick Piggin3ad5afc2007-12-13 16:15:00 +01003090 .fault = snd_pcm_mmap_control_fault,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003091};
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{
Linus Torvalds1da177e2005-04-16 15:20:36 -07003096 long size;
3097 if (!(area->vm_flags & VM_READ))
3098 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003099 size = area->vm_end - area->vm_start;
Takashi Iwai877211f2005-11-17 13:59:38 +01003100 if (size != PAGE_ALIGN(sizeof(struct snd_pcm_mmap_control)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003101 return -EINVAL;
3102 area->vm_ops = &snd_pcm_vm_ops_control;
3103 area->vm_private_data = substream;
Konstantin Khlebnikov314e51b2012-10-08 16:29:02 -07003104 area->vm_flags |= VM_DONTEXPAND | VM_DONTDUMP;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003105 return 0;
3106}
3107#else /* ! coherent mmap */
3108/*
3109 * don't support mmap for status and control records.
3110 */
Takashi Iwai877211f2005-11-17 13:59:38 +01003111static int snd_pcm_mmap_status(struct snd_pcm_substream *substream, struct file *file,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003112 struct vm_area_struct *area)
3113{
3114 return -ENXIO;
3115}
Takashi Iwai877211f2005-11-17 13:59:38 +01003116static int snd_pcm_mmap_control(struct snd_pcm_substream *substream, struct file *file,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003117 struct vm_area_struct *area)
3118{
3119 return -ENXIO;
3120}
3121#endif /* coherent mmap */
3122
Takashi Iwai9eb4a062009-11-26 12:43:39 +01003123static inline struct page *
3124snd_pcm_default_page_ops(struct snd_pcm_substream *substream, unsigned long ofs)
3125{
3126 void *vaddr = substream->runtime->dma_area + ofs;
Takashi Iwai66b6cfa2009-11-26 12:50:01 +01003127#if defined(CONFIG_MIPS) && defined(CONFIG_DMA_NONCOHERENT)
3128 if (substream->dma_buffer.dev.type == SNDRV_DMA_TYPE_DEV)
3129 return virt_to_page(CAC_ADDR(vaddr));
3130#endif
Takashi Iwai6985c882009-11-26 15:04:24 +01003131#if defined(CONFIG_PPC32) && defined(CONFIG_NOT_COHERENT_CACHE)
3132 if (substream->dma_buffer.dev.type == SNDRV_DMA_TYPE_DEV) {
3133 dma_addr_t addr = substream->runtime->dma_addr + ofs;
3134 addr -= get_dma_offset(substream->dma_buffer.dev.dev);
3135 /* assume dma_handle set via pfn_to_phys() in
3136 * mm/dma-noncoherent.c
3137 */
3138 return pfn_to_page(addr >> PAGE_SHIFT);
3139 }
3140#endif
Takashi Iwai9eb4a062009-11-26 12:43:39 +01003141 return virt_to_page(vaddr);
3142}
3143
Linus Torvalds1da177e2005-04-16 15:20:36 -07003144/*
Nick Piggin3ad5afc2007-12-13 16:15:00 +01003145 * fault callback for mmapping a RAM page
Linus Torvalds1da177e2005-04-16 15:20:36 -07003146 */
Nick Piggin3ad5afc2007-12-13 16:15:00 +01003147static int snd_pcm_mmap_data_fault(struct vm_area_struct *area,
3148 struct vm_fault *vmf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003149{
Takashi Iwai877211f2005-11-17 13:59:38 +01003150 struct snd_pcm_substream *substream = area->vm_private_data;
3151 struct snd_pcm_runtime *runtime;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003152 unsigned long offset;
3153 struct page * page;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003154 size_t dma_bytes;
3155
3156 if (substream == NULL)
Nick Piggin3ad5afc2007-12-13 16:15:00 +01003157 return VM_FAULT_SIGBUS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003158 runtime = substream->runtime;
Nick Piggin3ad5afc2007-12-13 16:15:00 +01003159 offset = vmf->pgoff << PAGE_SHIFT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003160 dma_bytes = PAGE_ALIGN(runtime->dma_bytes);
3161 if (offset > dma_bytes - PAGE_SIZE)
Nick Piggin3ad5afc2007-12-13 16:15:00 +01003162 return VM_FAULT_SIGBUS;
Takashi Iwai9eb4a062009-11-26 12:43:39 +01003163 if (substream->ops->page)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003164 page = substream->ops->page(substream, offset);
Takashi Iwai9eb4a062009-11-26 12:43:39 +01003165 else
3166 page = snd_pcm_default_page_ops(substream, offset);
3167 if (!page)
3168 return VM_FAULT_SIGBUS;
Nick Pigginb5810032005-10-29 18:16:12 -07003169 get_page(page);
Nick Piggin3ad5afc2007-12-13 16:15:00 +01003170 vmf->page = page;
3171 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003172}
3173
Takashi Iwai657b1982009-11-26 12:40:21 +01003174static const struct vm_operations_struct snd_pcm_vm_ops_data = {
3175 .open = snd_pcm_mmap_data_open,
3176 .close = snd_pcm_mmap_data_close,
3177};
3178
3179static const struct vm_operations_struct snd_pcm_vm_ops_data_fault = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003180 .open = snd_pcm_mmap_data_open,
3181 .close = snd_pcm_mmap_data_close,
Nick Piggin3ad5afc2007-12-13 16:15:00 +01003182 .fault = snd_pcm_mmap_data_fault,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003183};
3184
Takashi Iwai657b1982009-11-26 12:40:21 +01003185#ifndef ARCH_HAS_DMA_MMAP_COHERENT
3186/* This should be defined / handled globally! */
3187#ifdef CONFIG_ARM
3188#define ARCH_HAS_DMA_MMAP_COHERENT
3189#endif
3190#endif
3191
Linus Torvalds1da177e2005-04-16 15:20:36 -07003192/*
3193 * mmap the DMA buffer on RAM
3194 */
Takashi Iwai18a2b962011-09-28 17:12:59 +02003195int snd_pcm_lib_default_mmap(struct snd_pcm_substream *substream,
3196 struct vm_area_struct *area)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003197{
Konstantin Khlebnikov314e51b2012-10-08 16:29:02 -07003198 area->vm_flags |= VM_DONTEXPAND | VM_DONTDUMP;
Takashi Iwai657b1982009-11-26 12:40:21 +01003199#ifdef ARCH_HAS_DMA_MMAP_COHERENT
3200 if (!substream->ops->page &&
3201 substream->dma_buffer.dev.type == SNDRV_DMA_TYPE_DEV)
3202 return dma_mmap_coherent(substream->dma_buffer.dev.dev,
3203 area,
3204 substream->runtime->dma_area,
3205 substream->runtime->dma_addr,
3206 area->vm_end - area->vm_start);
Takashi Iwai9fe17b52010-05-12 10:32:42 +02003207#elif defined(CONFIG_MIPS) && defined(CONFIG_DMA_NONCOHERENT)
3208 if (substream->dma_buffer.dev.type == SNDRV_DMA_TYPE_DEV &&
3209 !plat_device_is_coherent(substream->dma_buffer.dev.dev))
3210 area->vm_page_prot = pgprot_noncached(area->vm_page_prot);
Takashi Iwai657b1982009-11-26 12:40:21 +01003211#endif /* ARCH_HAS_DMA_MMAP_COHERENT */
3212 /* mmap with fault handler */
3213 area->vm_ops = &snd_pcm_vm_ops_data_fault;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003214 return 0;
3215}
Takashi Iwai18a2b962011-09-28 17:12:59 +02003216EXPORT_SYMBOL_GPL(snd_pcm_lib_default_mmap);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003217
3218/*
3219 * mmap the DMA buffer on I/O memory area
3220 */
3221#if SNDRV_PCM_INFO_MMAP_IOMEM
Takashi Iwai877211f2005-11-17 13:59:38 +01003222int snd_pcm_lib_mmap_iomem(struct snd_pcm_substream *substream,
3223 struct vm_area_struct *area)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003224{
3225 long size;
3226 unsigned long offset;
3227
Linus Torvalds1da177e2005-04-16 15:20:36 -07003228 area->vm_page_prot = pgprot_noncached(area->vm_page_prot);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003229 area->vm_flags |= VM_IO;
3230 size = area->vm_end - area->vm_start;
3231 offset = area->vm_pgoff << PAGE_SHIFT;
3232 if (io_remap_pfn_range(area, area->vm_start,
3233 (substream->runtime->dma_addr + offset) >> PAGE_SHIFT,
3234 size, area->vm_page_prot))
3235 return -EAGAIN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003236 return 0;
3237}
Takashi Iwaie88e8ae62006-04-28 15:13:40 +02003238
3239EXPORT_SYMBOL(snd_pcm_lib_mmap_iomem);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003240#endif /* SNDRV_PCM_INFO_MMAP */
3241
3242/*
3243 * mmap DMA buffer
3244 */
Takashi Iwai877211f2005-11-17 13:59:38 +01003245int snd_pcm_mmap_data(struct snd_pcm_substream *substream, struct file *file,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003246 struct vm_area_struct *area)
3247{
Takashi Iwai877211f2005-11-17 13:59:38 +01003248 struct snd_pcm_runtime *runtime;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003249 long size;
3250 unsigned long offset;
3251 size_t dma_bytes;
Takashi Iwai657b1982009-11-26 12:40:21 +01003252 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003253
3254 if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK) {
3255 if (!(area->vm_flags & (VM_WRITE|VM_READ)))
3256 return -EINVAL;
3257 } else {
3258 if (!(area->vm_flags & VM_READ))
3259 return -EINVAL;
3260 }
3261 runtime = substream->runtime;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003262 if (runtime->status->state == SNDRV_PCM_STATE_OPEN)
3263 return -EBADFD;
3264 if (!(runtime->info & SNDRV_PCM_INFO_MMAP))
3265 return -ENXIO;
3266 if (runtime->access == SNDRV_PCM_ACCESS_RW_INTERLEAVED ||
3267 runtime->access == SNDRV_PCM_ACCESS_RW_NONINTERLEAVED)
3268 return -EINVAL;
3269 size = area->vm_end - area->vm_start;
3270 offset = area->vm_pgoff << PAGE_SHIFT;
3271 dma_bytes = PAGE_ALIGN(runtime->dma_bytes);
3272 if ((size_t)size > dma_bytes)
3273 return -EINVAL;
3274 if (offset > dma_bytes - size)
3275 return -EINVAL;
3276
Takashi Iwai657b1982009-11-26 12:40:21 +01003277 area->vm_ops = &snd_pcm_vm_ops_data;
3278 area->vm_private_data = substream;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003279 if (substream->ops->mmap)
Takashi Iwai657b1982009-11-26 12:40:21 +01003280 err = substream->ops->mmap(substream, area);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003281 else
Takashi Iwai18a2b962011-09-28 17:12:59 +02003282 err = snd_pcm_lib_default_mmap(substream, area);
Takashi Iwai657b1982009-11-26 12:40:21 +01003283 if (!err)
3284 atomic_inc(&substream->mmap_count);
3285 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003286}
3287
Takashi Iwaie88e8ae62006-04-28 15:13:40 +02003288EXPORT_SYMBOL(snd_pcm_mmap_data);
3289
Linus Torvalds1da177e2005-04-16 15:20:36 -07003290static int snd_pcm_mmap(struct file *file, struct vm_area_struct *area)
3291{
Takashi Iwai877211f2005-11-17 13:59:38 +01003292 struct snd_pcm_file * pcm_file;
3293 struct snd_pcm_substream *substream;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003294 unsigned long offset;
3295
3296 pcm_file = file->private_data;
3297 substream = pcm_file->substream;
Takashi Iwai7eaa9432008-08-08 17:09:09 +02003298 if (PCM_RUNTIME_CHECK(substream))
3299 return -ENXIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003300
3301 offset = area->vm_pgoff << PAGE_SHIFT;
3302 switch (offset) {
3303 case SNDRV_PCM_MMAP_OFFSET_STATUS:
Takashi Iwai548a6482006-07-31 16:51:51 +02003304 if (pcm_file->no_compat_mmap)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003305 return -ENXIO;
3306 return snd_pcm_mmap_status(substream, file, area);
3307 case SNDRV_PCM_MMAP_OFFSET_CONTROL:
Takashi Iwai548a6482006-07-31 16:51:51 +02003308 if (pcm_file->no_compat_mmap)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003309 return -ENXIO;
3310 return snd_pcm_mmap_control(substream, file, area);
3311 default:
3312 return snd_pcm_mmap_data(substream, file, area);
3313 }
3314 return 0;
3315}
3316
3317static int snd_pcm_fasync(int fd, struct file * file, int on)
3318{
Takashi Iwai877211f2005-11-17 13:59:38 +01003319 struct snd_pcm_file * pcm_file;
3320 struct snd_pcm_substream *substream;
3321 struct snd_pcm_runtime *runtime;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003322
3323 pcm_file = file->private_data;
3324 substream = pcm_file->substream;
Takashi Iwai7eaa9432008-08-08 17:09:09 +02003325 if (PCM_RUNTIME_CHECK(substream))
Takashi Iwaid05468b2010-04-07 18:29:46 +02003326 return -ENXIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003327 runtime = substream->runtime;
Takashi Iwaid05468b2010-04-07 18:29:46 +02003328 return fasync_helper(fd, file, on, &runtime->fasync);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003329}
3330
3331/*
3332 * ioctl32 compat
3333 */
3334#ifdef CONFIG_COMPAT
3335#include "pcm_compat.c"
3336#else
3337#define snd_pcm_ioctl_compat NULL
3338#endif
3339
3340/*
3341 * To be removed helpers to keep binary compatibility
3342 */
3343
Takashi Iwai59d48582005-12-01 10:51:58 +01003344#ifdef CONFIG_SND_SUPPORT_OLD_API
Linus Torvalds1da177e2005-04-16 15:20:36 -07003345#define __OLD_TO_NEW_MASK(x) ((x&7)|((x&0x07fffff8)<<5))
3346#define __NEW_TO_OLD_MASK(x) ((x&7)|((x&0xffffff00)>>5))
3347
Takashi Iwai877211f2005-11-17 13:59:38 +01003348static void snd_pcm_hw_convert_from_old_params(struct snd_pcm_hw_params *params,
3349 struct snd_pcm_hw_params_old *oparams)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003350{
3351 unsigned int i;
3352
3353 memset(params, 0, sizeof(*params));
3354 params->flags = oparams->flags;
3355 for (i = 0; i < ARRAY_SIZE(oparams->masks); i++)
3356 params->masks[i].bits[0] = oparams->masks[i];
3357 memcpy(params->intervals, oparams->intervals, sizeof(oparams->intervals));
3358 params->rmask = __OLD_TO_NEW_MASK(oparams->rmask);
3359 params->cmask = __OLD_TO_NEW_MASK(oparams->cmask);
3360 params->info = oparams->info;
3361 params->msbits = oparams->msbits;
3362 params->rate_num = oparams->rate_num;
3363 params->rate_den = oparams->rate_den;
3364 params->fifo_size = oparams->fifo_size;
3365}
3366
Takashi Iwai877211f2005-11-17 13:59:38 +01003367static void snd_pcm_hw_convert_to_old_params(struct snd_pcm_hw_params_old *oparams,
3368 struct snd_pcm_hw_params *params)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003369{
3370 unsigned int i;
3371
3372 memset(oparams, 0, sizeof(*oparams));
3373 oparams->flags = params->flags;
3374 for (i = 0; i < ARRAY_SIZE(oparams->masks); i++)
3375 oparams->masks[i] = params->masks[i].bits[0];
3376 memcpy(oparams->intervals, params->intervals, sizeof(oparams->intervals));
3377 oparams->rmask = __NEW_TO_OLD_MASK(params->rmask);
3378 oparams->cmask = __NEW_TO_OLD_MASK(params->cmask);
3379 oparams->info = params->info;
3380 oparams->msbits = params->msbits;
3381 oparams->rate_num = params->rate_num;
3382 oparams->rate_den = params->rate_den;
3383 oparams->fifo_size = params->fifo_size;
3384}
3385
Takashi Iwai877211f2005-11-17 13:59:38 +01003386static int snd_pcm_hw_refine_old_user(struct snd_pcm_substream *substream,
3387 struct snd_pcm_hw_params_old __user * _oparams)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003388{
Takashi Iwai877211f2005-11-17 13:59:38 +01003389 struct snd_pcm_hw_params *params;
3390 struct snd_pcm_hw_params_old *oparams = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003391 int err;
3392
3393 params = kmalloc(sizeof(*params), GFP_KERNEL);
Li Zefanef44a1e2009-04-10 09:43:08 +08003394 if (!params)
3395 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003396
Li Zefanef44a1e2009-04-10 09:43:08 +08003397 oparams = memdup_user(_oparams, sizeof(*oparams));
3398 if (IS_ERR(oparams)) {
3399 err = PTR_ERR(oparams);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003400 goto out;
3401 }
3402 snd_pcm_hw_convert_from_old_params(params, oparams);
3403 err = snd_pcm_hw_refine(substream, params);
3404 snd_pcm_hw_convert_to_old_params(oparams, params);
3405 if (copy_to_user(_oparams, oparams, sizeof(*oparams))) {
3406 if (!err)
3407 err = -EFAULT;
3408 }
Li Zefanef44a1e2009-04-10 09:43:08 +08003409
3410 kfree(oparams);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003411out:
3412 kfree(params);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003413 return err;
3414}
3415
Takashi Iwai877211f2005-11-17 13:59:38 +01003416static int snd_pcm_hw_params_old_user(struct snd_pcm_substream *substream,
3417 struct snd_pcm_hw_params_old __user * _oparams)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003418{
Takashi Iwai877211f2005-11-17 13:59:38 +01003419 struct snd_pcm_hw_params *params;
3420 struct snd_pcm_hw_params_old *oparams = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003421 int err;
3422
3423 params = kmalloc(sizeof(*params), GFP_KERNEL);
Li Zefanef44a1e2009-04-10 09:43:08 +08003424 if (!params)
3425 return -ENOMEM;
3426
3427 oparams = memdup_user(_oparams, sizeof(*oparams));
3428 if (IS_ERR(oparams)) {
3429 err = PTR_ERR(oparams);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003430 goto out;
3431 }
3432 snd_pcm_hw_convert_from_old_params(params, oparams);
3433 err = snd_pcm_hw_params(substream, params);
3434 snd_pcm_hw_convert_to_old_params(oparams, params);
3435 if (copy_to_user(_oparams, oparams, sizeof(*oparams))) {
3436 if (!err)
3437 err = -EFAULT;
3438 }
Li Zefanef44a1e2009-04-10 09:43:08 +08003439
3440 kfree(oparams);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003441out:
3442 kfree(params);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003443 return err;
3444}
Takashi Iwai59d48582005-12-01 10:51:58 +01003445#endif /* CONFIG_SND_SUPPORT_OLD_API */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003446
Cliff Cai70036092008-09-03 10:54:36 +02003447#ifndef CONFIG_MMU
Daniel Glöckner55c63bd2010-03-09 12:57:52 -05003448static unsigned long snd_pcm_get_unmapped_area(struct file *file,
3449 unsigned long addr,
3450 unsigned long len,
3451 unsigned long pgoff,
3452 unsigned long flags)
Cliff Cai70036092008-09-03 10:54:36 +02003453{
Daniel Glöckner55c63bd2010-03-09 12:57:52 -05003454 struct snd_pcm_file *pcm_file = file->private_data;
3455 struct snd_pcm_substream *substream = pcm_file->substream;
3456 struct snd_pcm_runtime *runtime = substream->runtime;
3457 unsigned long offset = pgoff << PAGE_SHIFT;
3458
3459 switch (offset) {
3460 case SNDRV_PCM_MMAP_OFFSET_STATUS:
3461 return (unsigned long)runtime->status;
3462 case SNDRV_PCM_MMAP_OFFSET_CONTROL:
3463 return (unsigned long)runtime->control;
3464 default:
3465 return (unsigned long)runtime->dma_area + offset;
3466 }
Cliff Cai70036092008-09-03 10:54:36 +02003467}
3468#else
Daniel Glöckner55c63bd2010-03-09 12:57:52 -05003469# define snd_pcm_get_unmapped_area NULL
Cliff Cai70036092008-09-03 10:54:36 +02003470#endif
3471
Linus Torvalds1da177e2005-04-16 15:20:36 -07003472/*
3473 * Register section
3474 */
3475
Arjan van de Ven9c2e08c2007-02-12 00:55:37 -08003476const struct file_operations snd_pcm_f_ops[2] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003477 {
Clemens Ladisch2af677f2005-11-20 14:03:48 +01003478 .owner = THIS_MODULE,
3479 .write = snd_pcm_write,
Badari Pulavartyee0b3e62006-09-30 23:28:47 -07003480 .aio_write = snd_pcm_aio_write,
Clemens Ladischf87135f2005-11-20 14:06:59 +01003481 .open = snd_pcm_playback_open,
Clemens Ladisch2af677f2005-11-20 14:03:48 +01003482 .release = snd_pcm_release,
Takashi Iwai02f48652010-04-13 11:49:04 +02003483 .llseek = no_llseek,
Clemens Ladisch2af677f2005-11-20 14:03:48 +01003484 .poll = snd_pcm_playback_poll,
3485 .unlocked_ioctl = snd_pcm_playback_ioctl,
3486 .compat_ioctl = snd_pcm_ioctl_compat,
3487 .mmap = snd_pcm_mmap,
3488 .fasync = snd_pcm_fasync,
Daniel Glöckner55c63bd2010-03-09 12:57:52 -05003489 .get_unmapped_area = snd_pcm_get_unmapped_area,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003490 },
3491 {
Clemens Ladisch2af677f2005-11-20 14:03:48 +01003492 .owner = THIS_MODULE,
3493 .read = snd_pcm_read,
Badari Pulavartyee0b3e62006-09-30 23:28:47 -07003494 .aio_read = snd_pcm_aio_read,
Clemens Ladischf87135f2005-11-20 14:06:59 +01003495 .open = snd_pcm_capture_open,
Clemens Ladisch2af677f2005-11-20 14:03:48 +01003496 .release = snd_pcm_release,
Takashi Iwai02f48652010-04-13 11:49:04 +02003497 .llseek = no_llseek,
Clemens Ladisch2af677f2005-11-20 14:03:48 +01003498 .poll = snd_pcm_capture_poll,
3499 .unlocked_ioctl = snd_pcm_capture_ioctl,
3500 .compat_ioctl = snd_pcm_ioctl_compat,
3501 .mmap = snd_pcm_mmap,
3502 .fasync = snd_pcm_fasync,
Daniel Glöckner55c63bd2010-03-09 12:57:52 -05003503 .get_unmapped_area = snd_pcm_get_unmapped_area,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003504 }
3505};