xref: /openbmc/linux/sound/core/pcm_native.c (revision a5d00dc3)
1 /*
2  *  Digital Audio (PCM) abstract layer
3  *  Copyright (c) by Jaroslav Kysela <perex@perex.cz>
4  *
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 
22 #include <linux/mm.h>
23 #include <linux/module.h>
24 #include <linux/file.h>
25 #include <linux/slab.h>
26 #include <linux/time.h>
27 #include <linux/pm_qos.h>
28 #include <linux/uio.h>
29 #include <linux/dma-mapping.h>
30 #include <sound/core.h>
31 #include <sound/control.h>
32 #include <sound/info.h>
33 #include <sound/pcm.h>
34 #include <sound/pcm_params.h>
35 #include <sound/timer.h>
36 #include <sound/minors.h>
37 #include <asm/io.h>
38 #if defined(CONFIG_MIPS) && defined(CONFIG_DMA_NONCOHERENT)
39 #include <dma-coherence.h>
40 #endif
41 
42 /*
43  *  Compatibility
44  */
45 
46 struct snd_pcm_hw_params_old {
47 	unsigned int flags;
48 	unsigned int masks[SNDRV_PCM_HW_PARAM_SUBFORMAT -
49 			   SNDRV_PCM_HW_PARAM_ACCESS + 1];
50 	struct snd_interval intervals[SNDRV_PCM_HW_PARAM_TICK_TIME -
51 					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;
58 	snd_pcm_uframes_t fifo_size;
59 	unsigned char reserved[64];
60 };
61 
62 #ifdef CONFIG_SND_SUPPORT_OLD_API
63 #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)
65 
66 static int snd_pcm_hw_refine_old_user(struct snd_pcm_substream *substream,
67 				      struct snd_pcm_hw_params_old __user * _oparams);
68 static int snd_pcm_hw_params_old_user(struct snd_pcm_substream *substream,
69 				      struct snd_pcm_hw_params_old __user * _oparams);
70 #endif
71 static int snd_pcm_open(struct file *file, struct snd_pcm *pcm, int stream);
72 
73 /*
74  *
75  */
76 
77 DEFINE_RWLOCK(snd_pcm_link_rwlock);
78 EXPORT_SYMBOL(snd_pcm_link_rwlock);
79 
80 static DECLARE_RWSEM(snd_pcm_link_rwsem);
81 
82 static 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 
89 static inline void snd_leave_user(mm_segment_t fs)
90 {
91 	set_fs(fs);
92 }
93 
94 
95 
96 int snd_pcm_info(struct snd_pcm_substream *substream, struct snd_pcm_info *info)
97 {
98 	struct snd_pcm_runtime *runtime;
99 	struct snd_pcm *pcm = substream->pcm;
100 	struct snd_pcm_str *pstr = substream->pstr;
101 
102 	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 
123 int snd_pcm_info_user(struct snd_pcm_substream *substream,
124 		      struct snd_pcm_info __user * _info)
125 {
126 	struct snd_pcm_info *info;
127 	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
145 static const char * const snd_pcm_hw_param_names[] = {
146 	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 
164 int snd_pcm_hw_refine(struct snd_pcm_substream *substream,
165 		      struct snd_pcm_hw_params *params)
166 {
167 	unsigned int k;
168 	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;
172 	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
193 		printk(KERN_DEBUG "%s = ", snd_pcm_hw_param_names[k]);
194 		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
213 		printk(KERN_DEBUG "%s = ", snd_pcm_hw_param_names[k]);
214 		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++) {
244 			struct snd_pcm_hw_rule *r = &constrs->rules[k];
245 			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
258 			printk(KERN_DEBUG "Rule %d [%p]: ", k, r->func);
259 			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)
319 		params->info = hw->info & ~SNDRV_PCM_INFO_FIFO_IN_FRAMES;
320 	if (!params->fifo_size) {
321 		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)) {
325 			changed = substream->ops->ioctl(substream,
326 					SNDRV_PCM_IOCTL1_FIFO_SIZE, params);
327 			if (changed < 0)
328 				return changed;
329 		}
330 	}
331 	params->rmask = 0;
332 	return 0;
333 }
334 
335 EXPORT_SYMBOL(snd_pcm_hw_refine);
336 
337 static int snd_pcm_hw_refine_user(struct snd_pcm_substream *substream,
338 				  struct snd_pcm_hw_params __user * _params)
339 {
340 	struct snd_pcm_hw_params *params;
341 	int err;
342 
343 	params = memdup_user(_params, sizeof(*params));
344 	if (IS_ERR(params))
345 		return PTR_ERR(params);
346 
347 	err = snd_pcm_hw_refine(substream, params);
348 	if (copy_to_user(_params, params, sizeof(*params))) {
349 		if (!err)
350 			err = -EFAULT;
351 	}
352 
353 	kfree(params);
354 	return err;
355 }
356 
357 static 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 
372 static 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 
380 static int snd_pcm_hw_params(struct snd_pcm_substream *substream,
381 			     struct snd_pcm_hw_params *params)
382 {
383 	struct snd_pcm_runtime *runtime;
384 	int err, usecs;
385 	unsigned int bits;
386 	snd_pcm_uframes_t frames;
387 
388 	if (PCM_RUNTIME_CHECK(substream))
389 		return -ENXIO;
390 	runtime = substream->runtime;
391 	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
405 		if (atomic_read(&substream->mmap_count))
406 			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);
431 	runtime->info = params->info;
432 	runtime->rate_num = params->rate_num;
433 	runtime->rate_den = params->rate_den;
434 	runtime->no_period_wakeup =
435 			(params->info & SNDRV_PCM_INFO_NO_PERIOD_WAKEUP) &&
436 			(params->flags & SNDRV_PCM_HW_PARAMS_NO_PERIOD_WAKEUP);
437 
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;
453 	runtime->control->avail_min = runtime->period_size;
454 	runtime->start_threshold = 1;
455 	runtime->stop_threshold = runtime->buffer_size;
456 	runtime->silence_threshold = 0;
457 	runtime->silence_size = 0;
458 	runtime->boundary = runtime->buffer_size;
459 	while (runtime->boundary * 2 <= LONG_MAX - runtime->buffer_size)
460 		runtime->boundary *= 2;
461 
462 	snd_pcm_timer_resolution_change(substream);
463 	snd_pcm_set_state(substream, SNDRV_PCM_STATE_SETUP);
464 
465 	if (pm_qos_request_active(&substream->latency_pm_qos_req))
466 		pm_qos_remove_request(&substream->latency_pm_qos_req);
467 	if ((usecs = period_to_usecs(runtime)) >= 0)
468 		pm_qos_add_request(&substream->latency_pm_qos_req,
469 				   PM_QOS_CPU_DMA_LATENCY, usecs);
470 	return 0;
471  _error:
472 	/* hardware might be unusable from this time,
473 	   so we force application to retry to set
474 	   the correct hardware parameter settings */
475 	snd_pcm_set_state(substream, SNDRV_PCM_STATE_OPEN);
476 	if (substream->ops->hw_free != NULL)
477 		substream->ops->hw_free(substream);
478 	return err;
479 }
480 
481 static int snd_pcm_hw_params_user(struct snd_pcm_substream *substream,
482 				  struct snd_pcm_hw_params __user * _params)
483 {
484 	struct snd_pcm_hw_params *params;
485 	int err;
486 
487 	params = memdup_user(_params, sizeof(*params));
488 	if (IS_ERR(params))
489 		return PTR_ERR(params);
490 
491 	err = snd_pcm_hw_params(substream, params);
492 	if (copy_to_user(_params, params, sizeof(*params))) {
493 		if (!err)
494 			err = -EFAULT;
495 	}
496 
497 	kfree(params);
498 	return err;
499 }
500 
501 static int snd_pcm_hw_free(struct snd_pcm_substream *substream)
502 {
503 	struct snd_pcm_runtime *runtime;
504 	int result = 0;
505 
506 	if (PCM_RUNTIME_CHECK(substream))
507 		return -ENXIO;
508 	runtime = substream->runtime;
509 	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);
519 	if (atomic_read(&substream->mmap_count))
520 		return -EBADFD;
521 	if (substream->ops->hw_free)
522 		result = substream->ops->hw_free(substream);
523 	snd_pcm_set_state(substream, SNDRV_PCM_STATE_OPEN);
524 	pm_qos_remove_request(&substream->latency_pm_qos_req);
525 	return result;
526 }
527 
528 static int snd_pcm_sw_params(struct snd_pcm_substream *substream,
529 			     struct snd_pcm_sw_params *params)
530 {
531 	struct snd_pcm_runtime *runtime;
532 	int err;
533 
534 	if (PCM_RUNTIME_CHECK(substream))
535 		return -ENXIO;
536 	runtime = substream->runtime;
537 	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;
548 	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 	}
557 	err = 0;
558 	snd_pcm_stream_lock_irq(substream);
559 	runtime->tstamp_mode = params->tstamp_mode;
560 	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;
566         params->boundary = runtime->boundary;
567 	if (snd_pcm_running(substream)) {
568 		if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK &&
569 		    runtime->silence_size > 0)
570 			snd_pcm_playback_silence(substream, ULONG_MAX);
571 		err = snd_pcm_update_state(substream, runtime);
572 	}
573 	snd_pcm_stream_unlock_irq(substream);
574 	return err;
575 }
576 
577 static int snd_pcm_sw_params_user(struct snd_pcm_substream *substream,
578 				  struct snd_pcm_sw_params __user * _params)
579 {
580 	struct snd_pcm_sw_params params;
581 	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 
590 int snd_pcm_status(struct snd_pcm_substream *substream,
591 		   struct snd_pcm_status *status)
592 {
593 	struct snd_pcm_runtime *runtime = substream->runtime;
594 
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;
601 	if (snd_pcm_running(substream)) {
602 		snd_pcm_update_hw_ptr(substream);
603 		if (runtime->tstamp_mode == SNDRV_PCM_TSTAMP_ENABLE) {
604 			status->tstamp = runtime->status->tstamp;
605 			status->audio_tstamp =
606 				runtime->status->audio_tstamp;
607 			goto _tstamp_end;
608 		}
609 	}
610 	snd_pcm_gettime(runtime, &status->tstamp);
611  _tstamp_end:
612 	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 ||
617 		    runtime->status->state == SNDRV_PCM_STATE_DRAINING) {
618 			status->delay = runtime->buffer_size - status->avail;
619 			status->delay += runtime->delay;
620 		} else
621 			status->delay = 0;
622 	} else {
623 		status->avail = snd_pcm_capture_avail(runtime);
624 		if (runtime->status->state == SNDRV_PCM_STATE_RUNNING)
625 			status->delay = status->avail + runtime->delay;
626 		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 
638 static int snd_pcm_status_user(struct snd_pcm_substream *substream,
639 			       struct snd_pcm_status __user * _status)
640 {
641 	struct snd_pcm_status status;
642 	int res;
643 
644 	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 
653 static int snd_pcm_channel_info(struct snd_pcm_substream *substream,
654 				struct snd_pcm_channel_info * info)
655 {
656 	struct snd_pcm_runtime *runtime;
657 	unsigned int channel;
658 
659 	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 
674 static int snd_pcm_channel_info_user(struct snd_pcm_substream *substream,
675 				     struct snd_pcm_channel_info __user * _info)
676 {
677 	struct snd_pcm_channel_info info;
678 	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 
690 static void snd_pcm_trigger_tstamp(struct snd_pcm_substream *substream)
691 {
692 	struct snd_pcm_runtime *runtime = substream->runtime;
693 	if (runtime->trigger_master == NULL)
694 		return;
695 	if (runtime->trigger_master == substream) {
696 		snd_pcm_gettime(runtime, &runtime->trigger_tstamp);
697 	} 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 
704 struct action_ops {
705 	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);
709 };
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  */
716 static int snd_pcm_action_group(struct action_ops *ops,
717 				struct snd_pcm_substream *substream,
718 				int state, int do_lock)
719 {
720 	struct snd_pcm_substream *s = NULL;
721 	struct snd_pcm_substream *s1;
722 	int res = 0;
723 
724 	snd_pcm_group_for_each_entry(s, substream) {
725 		if (do_lock && s != substream)
726 			spin_lock_nested(&s->self_group.lock,
727 					 SINGLE_DEPTH_NESTING);
728 		res = ops->pre_action(s, state);
729 		if (res < 0)
730 			goto _unlock;
731 	}
732 	snd_pcm_group_for_each_entry(s, substream) {
733 		res = ops->do_action(s, state);
734 		if (res < 0) {
735 			if (ops->undo_action) {
736 				snd_pcm_group_for_each_entry(s1, substream) {
737 					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 	}
746 	snd_pcm_group_for_each_entry(s, substream) {
747 		ops->post_action(s, state);
748 	}
749  _unlock:
750 	if (do_lock) {
751 		/* unlock streams */
752 		snd_pcm_group_for_each_entry(s1, substream) {
753 			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  */
765 static int snd_pcm_action_single(struct action_ops *ops,
766 				 struct snd_pcm_substream *substream,
767 				 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  */
785 static int snd_pcm_action(struct action_ops *ops,
786 			  struct snd_pcm_substream *substream,
787 			  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  */
808 static int snd_pcm_action_lock_irq(struct action_ops *ops,
809 				   struct snd_pcm_substream *substream,
810 				   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  */
832 static int snd_pcm_action_nonatomic(struct action_ops *ops,
833 				    struct snd_pcm_substream *substream,
834 				    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  */
850 static int snd_pcm_pre_start(struct snd_pcm_substream *substream, int state)
851 {
852 	struct snd_pcm_runtime *runtime = substream->runtime;
853 	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 
862 static int snd_pcm_do_start(struct snd_pcm_substream *substream, int state)
863 {
864 	if (substream->runtime->trigger_master != substream)
865 		return 0;
866 	return substream->ops->trigger(substream, SNDRV_PCM_TRIGGER_START);
867 }
868 
869 static void snd_pcm_undo_start(struct snd_pcm_substream *substream, int state)
870 {
871 	if (substream->runtime->trigger_master == substream)
872 		substream->ops->trigger(substream, SNDRV_PCM_TRIGGER_STOP);
873 }
874 
875 static void snd_pcm_post_start(struct snd_pcm_substream *substream, int state)
876 {
877 	struct snd_pcm_runtime *runtime = substream->runtime;
878 	snd_pcm_trigger_tstamp(substream);
879 	runtime->hw_ptr_jiffies = jiffies;
880 	runtime->hw_ptr_buffer_jiffies = (runtime->buffer_size * HZ) /
881 							    runtime->rate;
882 	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);
886 	if (substream->timer)
887 		snd_timer_notify(substream->timer, SNDRV_TIMER_EVENT_MSTART,
888 				 &runtime->trigger_tstamp);
889 }
890 
891 static 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 /**
899  * snd_pcm_start - start all linked streams
900  * @substream: the PCM substream instance
901  */
902 int snd_pcm_start(struct snd_pcm_substream *substream)
903 {
904 	return snd_pcm_action(&snd_pcm_action_start, substream,
905 			      SNDRV_PCM_STATE_RUNNING);
906 }
907 
908 /*
909  * stop callbacks
910  */
911 static int snd_pcm_pre_stop(struct snd_pcm_substream *substream, int state)
912 {
913 	struct snd_pcm_runtime *runtime = substream->runtime;
914 	if (runtime->status->state == SNDRV_PCM_STATE_OPEN)
915 		return -EBADFD;
916 	runtime->trigger_master = substream;
917 	return 0;
918 }
919 
920 static int snd_pcm_do_stop(struct snd_pcm_substream *substream, int state)
921 {
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 
928 static void snd_pcm_post_stop(struct snd_pcm_substream *substream, int state)
929 {
930 	struct snd_pcm_runtime *runtime = substream->runtime;
931 	if (runtime->status->state != state) {
932 		snd_pcm_trigger_tstamp(substream);
933 		if (substream->timer)
934 			snd_timer_notify(substream->timer, SNDRV_TIMER_EVENT_MSTOP,
935 					 &runtime->trigger_tstamp);
936 		runtime->status->state = state;
937 	}
938 	wake_up(&runtime->sleep);
939 	wake_up(&runtime->tsleep);
940 }
941 
942 static 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 /**
949  * snd_pcm_stop - try to stop all running streams in the substream group
950  * @substream: the PCM substream instance
951  * @state: PCM state after stopping the stream
952  *
953  * The state of each stream is then changed to the given state unconditionally.
954  */
955 int snd_pcm_stop(struct snd_pcm_substream *substream, snd_pcm_state_t state)
956 {
957 	return snd_pcm_action(&snd_pcm_action_stop, substream, state);
958 }
959 
960 EXPORT_SYMBOL(snd_pcm_stop);
961 
962 /**
963  * snd_pcm_drain_done - stop the DMA only when the given stream is playback
964  * @substream: the PCM substream
965  *
966  * After stopping, the state is changed to SETUP.
967  * Unlike snd_pcm_stop(), this affects only the given stream.
968  */
969 int snd_pcm_drain_done(struct snd_pcm_substream *substream)
970 {
971 	return snd_pcm_action_single(&snd_pcm_action_stop, substream,
972 				     SNDRV_PCM_STATE_SETUP);
973 }
974 
975 /*
976  * pause callbacks
977  */
978 static int snd_pcm_pre_pause(struct snd_pcm_substream *substream, int push)
979 {
980 	struct snd_pcm_runtime *runtime = substream->runtime;
981 	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 
992 static int snd_pcm_do_pause(struct snd_pcm_substream *substream, int push)
993 {
994 	if (substream->runtime->trigger_master != substream)
995 		return 0;
996 	/* 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);
1000 	/* The jiffies check in snd_pcm_update_hw_ptr*() is done by
1001 	 * a delta between the current jiffies, this gives a large enough
1002 	 * delta, effectively to skip the check once.
1003 	 */
1004 	substream->runtime->hw_ptr_jiffies = jiffies - HZ * 1000;
1005 	return substream->ops->trigger(substream,
1006 				       push ? SNDRV_PCM_TRIGGER_PAUSE_PUSH :
1007 					      SNDRV_PCM_TRIGGER_PAUSE_RELEASE);
1008 }
1009 
1010 static void snd_pcm_undo_pause(struct snd_pcm_substream *substream, int push)
1011 {
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 
1018 static void snd_pcm_post_pause(struct snd_pcm_substream *substream, int push)
1019 {
1020 	struct snd_pcm_runtime *runtime = substream->runtime;
1021 	snd_pcm_trigger_tstamp(substream);
1022 	if (push) {
1023 		runtime->status->state = SNDRV_PCM_STATE_PAUSED;
1024 		if (substream->timer)
1025 			snd_timer_notify(substream->timer,
1026 					 SNDRV_TIMER_EVENT_MPAUSE,
1027 					 &runtime->trigger_tstamp);
1028 		wake_up(&runtime->sleep);
1029 		wake_up(&runtime->tsleep);
1030 	} else {
1031 		runtime->status->state = SNDRV_PCM_STATE_RUNNING;
1032 		if (substream->timer)
1033 			snd_timer_notify(substream->timer,
1034 					 SNDRV_TIMER_EVENT_MCONTINUE,
1035 					 &runtime->trigger_tstamp);
1036 	}
1037 }
1038 
1039 static 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  */
1049 static int snd_pcm_pause(struct snd_pcm_substream *substream, int push)
1050 {
1051 	return snd_pcm_action(&snd_pcm_action_pause, substream, push);
1052 }
1053 
1054 #ifdef CONFIG_PM
1055 /* suspend */
1056 
1057 static int snd_pcm_pre_suspend(struct snd_pcm_substream *substream, int state)
1058 {
1059 	struct snd_pcm_runtime *runtime = substream->runtime;
1060 	if (runtime->status->state == SNDRV_PCM_STATE_SUSPENDED)
1061 		return -EBUSY;
1062 	runtime->trigger_master = substream;
1063 	return 0;
1064 }
1065 
1066 static int snd_pcm_do_suspend(struct snd_pcm_substream *substream, int state)
1067 {
1068 	struct snd_pcm_runtime *runtime = substream->runtime;
1069 	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 
1077 static void snd_pcm_post_suspend(struct snd_pcm_substream *substream, int state)
1078 {
1079 	struct snd_pcm_runtime *runtime = substream->runtime;
1080 	snd_pcm_trigger_tstamp(substream);
1081 	if (substream->timer)
1082 		snd_timer_notify(substream->timer, SNDRV_TIMER_EVENT_MSUSPEND,
1083 				 &runtime->trigger_tstamp);
1084 	runtime->status->suspended_state = runtime->status->state;
1085 	runtime->status->state = SNDRV_PCM_STATE_SUSPENDED;
1086 	wake_up(&runtime->sleep);
1087 	wake_up(&runtime->tsleep);
1088 }
1089 
1090 static 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 /**
1097  * snd_pcm_suspend - trigger SUSPEND to all linked streams
1098  * @substream: the PCM substream
1099  *
1100  * After this call, all streams are changed to SUSPENDED state.
1101  */
1102 int snd_pcm_suspend(struct snd_pcm_substream *substream)
1103 {
1104 	int err;
1105 	unsigned long flags;
1106 
1107 	if (! substream)
1108 		return 0;
1109 
1110 	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 
1116 EXPORT_SYMBOL(snd_pcm_suspend);
1117 
1118 /**
1119  * snd_pcm_suspend_all - trigger SUSPEND to all substreams in the given pcm
1120  * @pcm: the PCM instance
1121  *
1122  * After this call, all streams are changed to SUSPENDED state.
1123  */
1124 int snd_pcm_suspend_all(struct snd_pcm *pcm)
1125 {
1126 	struct snd_pcm_substream *substream;
1127 	int stream, err = 0;
1128 
1129 	if (! pcm)
1130 		return 0;
1131 
1132 	for (stream = 0; stream < 2; stream++) {
1133 		for (substream = pcm->streams[stream].substream;
1134 		     substream; substream = substream->next) {
1135 			/* 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 
1146 EXPORT_SYMBOL(snd_pcm_suspend_all);
1147 
1148 /* resume */
1149 
1150 static int snd_pcm_pre_resume(struct snd_pcm_substream *substream, int state)
1151 {
1152 	struct snd_pcm_runtime *runtime = substream->runtime;
1153 	if (!(runtime->info & SNDRV_PCM_INFO_RESUME))
1154 		return -ENOSYS;
1155 	runtime->trigger_master = substream;
1156 	return 0;
1157 }
1158 
1159 static int snd_pcm_do_resume(struct snd_pcm_substream *substream, int state)
1160 {
1161 	struct snd_pcm_runtime *runtime = substream->runtime;
1162 	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 
1172 static void snd_pcm_undo_resume(struct snd_pcm_substream *substream, int state)
1173 {
1174 	if (substream->runtime->trigger_master == substream &&
1175 	    snd_pcm_running(substream))
1176 		substream->ops->trigger(substream, SNDRV_PCM_TRIGGER_SUSPEND);
1177 }
1178 
1179 static void snd_pcm_post_resume(struct snd_pcm_substream *substream, int state)
1180 {
1181 	struct snd_pcm_runtime *runtime = substream->runtime;
1182 	snd_pcm_trigger_tstamp(substream);
1183 	if (substream->timer)
1184 		snd_timer_notify(substream->timer, SNDRV_TIMER_EVENT_MRESUME,
1185 				 &runtime->trigger_tstamp);
1186 	runtime->status->state = runtime->status->suspended_state;
1187 }
1188 
1189 static 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 
1196 static int snd_pcm_resume(struct snd_pcm_substream *substream)
1197 {
1198 	struct snd_card *card = substream->pcm->card;
1199 	int res;
1200 
1201 	snd_power_lock(card);
1202 	if ((res = snd_power_wait(card, SNDRV_CTL_POWER_D0)) >= 0)
1203 		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 
1210 static int snd_pcm_resume(struct snd_pcm_substream *substream)
1211 {
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  */
1222 static int snd_pcm_xrun(struct snd_pcm_substream *substream)
1223 {
1224 	struct snd_card *card = substream->pcm->card;
1225 	struct snd_pcm_runtime *runtime = substream->runtime;
1226 	int result;
1227 
1228 	snd_power_lock(card);
1229 	if (runtime->status->state == SNDRV_PCM_STATE_SUSPENDED) {
1230 		result = snd_power_wait(card, SNDRV_CTL_POWER_D0);
1231 		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  */
1255 static int snd_pcm_pre_reset(struct snd_pcm_substream *substream, int state)
1256 {
1257 	struct snd_pcm_runtime *runtime = substream->runtime;
1258 	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 
1269 static int snd_pcm_do_reset(struct snd_pcm_substream *substream, int state)
1270 {
1271 	struct snd_pcm_runtime *runtime = substream->runtime;
1272 	int err = substream->ops->ioctl(substream, SNDRV_PCM_IOCTL1_RESET, NULL);
1273 	if (err < 0)
1274 		return err;
1275 	runtime->hw_ptr_base = 0;
1276 	runtime->hw_ptr_interrupt = runtime->status->hw_ptr -
1277 		runtime->status->hw_ptr % runtime->period_size;
1278 	runtime->silence_start = runtime->status->hw_ptr;
1279 	runtime->silence_filled = 0;
1280 	return 0;
1281 }
1282 
1283 static void snd_pcm_post_reset(struct snd_pcm_substream *substream, int state)
1284 {
1285 	struct snd_pcm_runtime *runtime = substream->runtime;
1286 	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 
1292 static 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 
1298 static int snd_pcm_reset(struct snd_pcm_substream *substream)
1299 {
1300 	return snd_pcm_action_nonatomic(&snd_pcm_action_reset, substream, 0);
1301 }
1302 
1303 /*
1304  * prepare ioctl
1305  */
1306 /* we use the second argument for updating f_flags */
1307 static int snd_pcm_pre_prepare(struct snd_pcm_substream *substream,
1308 			       int f_flags)
1309 {
1310 	struct snd_pcm_runtime *runtime = substream->runtime;
1311 	if (runtime->status->state == SNDRV_PCM_STATE_OPEN ||
1312 	    runtime->status->state == SNDRV_PCM_STATE_DISCONNECTED)
1313 		return -EBADFD;
1314 	if (snd_pcm_running(substream))
1315 		return -EBUSY;
1316 	substream->f_flags = f_flags;
1317 	return 0;
1318 }
1319 
1320 static int snd_pcm_do_prepare(struct snd_pcm_substream *substream, int state)
1321 {
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 
1329 static void snd_pcm_post_prepare(struct snd_pcm_substream *substream, int state)
1330 {
1331 	struct snd_pcm_runtime *runtime = substream->runtime;
1332 	runtime->control->appl_ptr = runtime->status->hw_ptr;
1333 	snd_pcm_set_state(substream, SNDRV_PCM_STATE_PREPARED);
1334 }
1335 
1336 static 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 /**
1343  * snd_pcm_prepare - prepare the PCM substream to be triggerable
1344  * @substream: the PCM substream instance
1345  * @file: file to refer f_flags
1346  */
1347 static int snd_pcm_prepare(struct snd_pcm_substream *substream,
1348 			   struct file *file)
1349 {
1350 	int res;
1351 	struct snd_card *card = substream->pcm->card;
1352 	int f_flags;
1353 
1354 	if (file)
1355 		f_flags = file->f_flags;
1356 	else
1357 		f_flags = substream->f_flags;
1358 
1359 	snd_power_lock(card);
1360 	if ((res = snd_power_wait(card, SNDRV_CTL_POWER_D0)) >= 0)
1361 		res = snd_pcm_action_nonatomic(&snd_pcm_action_prepare,
1362 					       substream, f_flags);
1363 	snd_power_unlock(card);
1364 	return res;
1365 }
1366 
1367 /*
1368  * drain ioctl
1369  */
1370 
1371 static int snd_pcm_pre_drain_init(struct snd_pcm_substream *substream, int state)
1372 {
1373 	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;
1381 	return 0;
1382 }
1383 
1384 static int snd_pcm_do_drain_init(struct snd_pcm_substream *substream, int state)
1385 {
1386 	struct snd_pcm_runtime *runtime = substream->runtime;
1387 	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;
1399 		case SNDRV_PCM_STATE_XRUN:
1400 			runtime->status->state = SNDRV_PCM_STATE_SETUP;
1401 			break;
1402 		default:
1403 			break;
1404 		}
1405 	} else {
1406 		/* stop running stream */
1407 		if (runtime->status->state == SNDRV_PCM_STATE_RUNNING) {
1408 			int new_state = snd_pcm_capture_avail(runtime) > 0 ?
1409 				SNDRV_PCM_STATE_DRAINING : SNDRV_PCM_STATE_SETUP;
1410 			snd_pcm_do_stop(substream, new_state);
1411 			snd_pcm_post_stop(substream, new_state);
1412 		}
1413 	}
1414 	return 0;
1415 }
1416 
1417 static void snd_pcm_post_drain_init(struct snd_pcm_substream *substream, int state)
1418 {
1419 }
1420 
1421 static 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 
1427 static int snd_pcm_drop(struct snd_pcm_substream *substream);
1428 
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  */
1436 static int snd_pcm_drain(struct snd_pcm_substream *substream,
1437 			 struct file *file)
1438 {
1439 	struct snd_card *card;
1440 	struct snd_pcm_runtime *runtime;
1441 	struct snd_pcm_substream *s;
1442 	wait_queue_t wait;
1443 	int result = 0;
1444 	int nonblock = 0;
1445 
1446 	card = substream->pcm->card;
1447 	runtime = substream->runtime;
1448 
1449 	if (runtime->status->state == SNDRV_PCM_STATE_OPEN)
1450 		return -EBADFD;
1451 
1452 	snd_power_lock(card);
1453 	if (runtime->status->state == SNDRV_PCM_STATE_SUSPENDED) {
1454 		result = snd_power_wait(card, SNDRV_CTL_POWER_D0);
1455 		if (result < 0) {
1456 			snd_power_unlock(card);
1457 			return result;
1458 		}
1459 	}
1460 
1461 	if (file) {
1462 		if (file->f_flags & O_NONBLOCK)
1463 			nonblock = 1;
1464 	} else if (substream->f_flags & O_NONBLOCK)
1465 		nonblock = 1;
1466 
1467 	down_read(&snd_pcm_link_rwsem);
1468 	snd_pcm_stream_lock_irq(substream);
1469 	/* resume pause */
1470 	if (runtime->status->state == SNDRV_PCM_STATE_PAUSED)
1471 		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);
1475 	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;
1481 	}
1482 
1483 	for (;;) {
1484 		long tout;
1485 		struct snd_pcm_runtime *to_check;
1486 		if (signal_pending(current)) {
1487 			result = -ERESTARTSYS;
1488 			break;
1489 		}
1490 		/* 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;
1498 				break;
1499 			}
1500 		}
1501 		if (!to_check)
1502 			break; /* all drained */
1503 		init_waitqueue_entry(&wait, current);
1504 		add_wait_queue(&to_check->sleep, &wait);
1505 		snd_pcm_stream_unlock_irq(substream);
1506 		up_read(&snd_pcm_link_rwsem);
1507 		snd_power_unlock(card);
1508 		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);
1519 		snd_power_lock(card);
1520 		down_read(&snd_pcm_link_rwsem);
1521 		snd_pcm_stream_lock_irq(substream);
1522 		remove_wait_queue(&to_check->sleep, &wait);
1523 		if (card->shutdown) {
1524 			result = -ENODEV;
1525 			break;
1526 		}
1527 		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 		}
1537 	}
1538 
1539  unlock:
1540 	snd_pcm_stream_unlock_irq(substream);
1541 	up_read(&snd_pcm_link_rwsem);
1542 	snd_power_unlock(card);
1543 
1544 	return result;
1545 }
1546 
1547 /*
1548  * drop ioctl
1549  *
1550  * Immediately put all linked substreams into SETUP state.
1551  */
1552 static int snd_pcm_drop(struct snd_pcm_substream *substream)
1553 {
1554 	struct snd_pcm_runtime *runtime;
1555 	int result = 0;
1556 
1557 	if (PCM_RUNTIME_CHECK(substream))
1558 		return -ENXIO;
1559 	runtime = substream->runtime;
1560 
1561 	if (runtime->status->state == SNDRV_PCM_STATE_OPEN ||
1562 	    runtime->status->state == SNDRV_PCM_STATE_DISCONNECTED ||
1563 	    runtime->status->state == SNDRV_PCM_STATE_SUSPENDED)
1564 		return -EBADFD;
1565 
1566 	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);
1574 
1575 	return result;
1576 }
1577 
1578 
1579 /* WARNING: Don't forget to fput back the file */
1580 static struct file *snd_pcm_file_fd(int fd, int *fput_needed)
1581 {
1582 	struct file *file;
1583 	struct inode *inode;
1584 	unsigned int minor;
1585 
1586 	file = fget_light(fd, fput_needed);
1587 	if (!file)
1588 		return NULL;
1589 	inode = file->f_path.dentry->d_inode;
1590 	if (!S_ISCHR(inode->i_mode) ||
1591 	    imajor(inode) != snd_major) {
1592 		fput_light(file, *fput_needed);
1593 		return NULL;
1594 	}
1595 	minor = iminor(inode);
1596 	if (!snd_lookup_minor_data(minor, SNDRV_DEVICE_TYPE_PCM_PLAYBACK) &&
1597 	    !snd_lookup_minor_data(minor, SNDRV_DEVICE_TYPE_PCM_CAPTURE)) {
1598 		fput_light(file, *fput_needed);
1599 		return NULL;
1600 	}
1601 	return file;
1602 }
1603 
1604 /*
1605  * PCM link handling
1606  */
1607 static int snd_pcm_link(struct snd_pcm_substream *substream, int fd)
1608 {
1609 	int res = 0;
1610 	struct file *file;
1611 	struct snd_pcm_file *pcm_file;
1612 	struct snd_pcm_substream *substream1;
1613 	struct snd_pcm_group *group;
1614 	int fput_needed;
1615 
1616 	file = snd_pcm_file_fd(fd, &fput_needed);
1617 	if (!file)
1618 		return -EBADFD;
1619 	pcm_file = file->private_data;
1620 	substream1 = pcm_file->substream;
1621 	group = kmalloc(sizeof(*group), GFP_KERNEL);
1622 	if (!group) {
1623 		res = -ENOMEM;
1624 		goto _nolock;
1625 	}
1626 	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)) {
1638 		substream->group = group;
1639 		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);
1650  _nolock:
1651 	snd_card_unref(substream1->pcm->card);
1652 	fput_light(file, fput_needed);
1653 	if (res < 0)
1654 		kfree(group);
1655 	return res;
1656 }
1657 
1658 static void relink_to_local(struct snd_pcm_substream *substream)
1659 {
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 
1665 static int snd_pcm_unlink(struct snd_pcm_substream *substream)
1666 {
1667 	struct snd_pcm_substream *s;
1668 	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 */
1679 		snd_pcm_group_for_each_entry(s, substream) {
1680 			relink_to_local(s);
1681 			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  */
1695 static int snd_pcm_hw_rule_mul(struct snd_pcm_hw_params *params,
1696 			       struct snd_pcm_hw_rule *rule)
1697 {
1698 	struct snd_interval t;
1699 	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 
1704 static int snd_pcm_hw_rule_div(struct snd_pcm_hw_params *params,
1705 			       struct snd_pcm_hw_rule *rule)
1706 {
1707 	struct snd_interval t;
1708 	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 
1713 static int snd_pcm_hw_rule_muldivk(struct snd_pcm_hw_params *params,
1714 				   struct snd_pcm_hw_rule *rule)
1715 {
1716 	struct snd_interval t;
1717 	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 
1723 static int snd_pcm_hw_rule_mulkdiv(struct snd_pcm_hw_params *params,
1724 				   struct snd_pcm_hw_rule *rule)
1725 {
1726 	struct snd_interval t;
1727 	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 
1733 static int snd_pcm_hw_rule_format(struct snd_pcm_hw_params *params,
1734 				  struct snd_pcm_hw_rule *rule)
1735 {
1736 	unsigned int k;
1737 	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);
1740 	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 
1754 static int snd_pcm_hw_rule_sample_bits(struct snd_pcm_hw_params *params,
1755 				       struct snd_pcm_hw_rule *rule)
1756 {
1757 	struct snd_interval t;
1758 	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 
1783 static unsigned int rates[] = { 5512, 8000, 11025, 16000, 22050, 32000, 44100,
1784                                  48000, 64000, 88200, 96000, 176400, 192000 };
1785 
1786 const struct snd_pcm_hw_constraint_list snd_pcm_known_rates = {
1787 	.count = ARRAY_SIZE(rates),
1788 	.list = rates,
1789 };
1790 
1791 static int snd_pcm_hw_rule_rate(struct snd_pcm_hw_params *params,
1792 				struct snd_pcm_hw_rule *rule)
1793 {
1794 	struct snd_pcm_hardware *hw = rule->private;
1795 	return snd_interval_list(hw_param_interval(params, rule->var),
1796 				 snd_pcm_known_rates.count,
1797 				 snd_pcm_known_rates.list, hw->rates);
1798 }
1799 
1800 static int snd_pcm_hw_rule_buffer_bytes_max(struct snd_pcm_hw_params *params,
1801 					    struct snd_pcm_hw_rule *rule)
1802 {
1803 	struct snd_interval t;
1804 	struct snd_pcm_substream *substream = rule->private;
1805 	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 
1813 int snd_pcm_hw_constraints_init(struct snd_pcm_substream *substream)
1814 {
1815 	struct snd_pcm_runtime *runtime = substream->runtime;
1816 	struct snd_pcm_hw_constraints *constrs = &runtime->hw_constraints;
1817 	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 
1937 int snd_pcm_hw_constraints_complete(struct snd_pcm_substream *substream)
1938 {
1939 	struct snd_pcm_runtime *runtime = substream->runtime;
1940 	struct snd_pcm_hardware *hw = &runtime->hw;
1941 	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);
1957 	if (err < 0)
1958 		return err;
1959 
1960 	err = snd_pcm_hw_constraint_mask64(runtime, SNDRV_PCM_HW_PARAM_FORMAT, hw->formats);
1961 	if (err < 0)
1962 		return err;
1963 
1964 	err = snd_pcm_hw_constraint_mask(runtime, SNDRV_PCM_HW_PARAM_SUBFORMAT, 1 << SNDRV_PCM_SUBFORMAT_STD);
1965 	if (err < 0)
1966 		return err;
1967 
1968 	err = snd_pcm_hw_constraint_minmax(runtime, SNDRV_PCM_HW_PARAM_CHANNELS,
1969 					   hw->channels_min, hw->channels_max);
1970 	if (err < 0)
1971 		return err;
1972 
1973 	err = snd_pcm_hw_constraint_minmax(runtime, SNDRV_PCM_HW_PARAM_RATE,
1974 					   hw->rate_min, hw->rate_max);
1975 	if (err < 0)
1976 		return err;
1977 
1978 	err = snd_pcm_hw_constraint_minmax(runtime, SNDRV_PCM_HW_PARAM_PERIOD_BYTES,
1979 					   hw->period_bytes_min, hw->period_bytes_max);
1980 	if (err < 0)
1981 		return err;
1982 
1983 	err = snd_pcm_hw_constraint_minmax(runtime, SNDRV_PCM_HW_PARAM_PERIODS,
1984 					   hw->periods_min, hw->periods_max);
1985 	if (err < 0)
1986 		return err;
1987 
1988 	err = snd_pcm_hw_constraint_minmax(runtime, SNDRV_PCM_HW_PARAM_BUFFER_BYTES,
1989 					   hw->period_bytes_min, hw->buffer_bytes_max);
1990 	if (err < 0)
1991 		return err;
1992 
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);
2002 		if (err < 0)
2003 			return -EINVAL;
2004 	}
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 */
2015 	snd_pcm_hw_constraint_integer(runtime, SNDRV_PCM_HW_PARAM_PERIOD_SIZE);
2016 
2017 	return 0;
2018 }
2019 
2020 static void pcm_release_private(struct snd_pcm_substream *substream)
2021 {
2022 	snd_pcm_unlink(substream);
2023 }
2024 
2025 void snd_pcm_release_substream(struct snd_pcm_substream *substream)
2026 {
2027 	substream->ref_count--;
2028 	if (substream->ref_count > 0)
2029 		return;
2030 
2031 	snd_pcm_drop(substream);
2032 	if (substream->hw_opened) {
2033 		if (substream->ops->hw_free != NULL)
2034 			substream->ops->hw_free(substream);
2035 		substream->ops->close(substream);
2036 		substream->hw_opened = 0;
2037 	}
2038 	if (pm_qos_request_active(&substream->latency_pm_qos_req))
2039 		pm_qos_remove_request(&substream->latency_pm_qos_req);
2040 	if (substream->pcm_release) {
2041 		substream->pcm_release(substream);
2042 		substream->pcm_release = NULL;
2043 	}
2044 	snd_pcm_detach_substream(substream);
2045 }
2046 
2047 EXPORT_SYMBOL(snd_pcm_release_substream);
2048 
2049 int 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;
2059 	if (substream->ref_count > 1) {
2060 		*rsubstream = substream;
2061 		return 0;
2062 	}
2063 
2064 	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;
2082 	return 0;
2083 
2084  error:
2085 	snd_pcm_release_substream(substream);
2086 	return err;
2087 }
2088 
2089 EXPORT_SYMBOL(snd_pcm_open_substream);
2090 
2091 static int snd_pcm_open_file(struct file *file,
2092 			     struct snd_pcm *pcm,
2093 			     int stream)
2094 {
2095 	struct snd_pcm_file *pcm_file;
2096 	struct snd_pcm_substream *substream;
2097 	int err;
2098 
2099 	err = snd_pcm_open_substream(pcm, stream, file, &substream);
2100 	if (err < 0)
2101 		return err;
2102 
2103 	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) {
2110 		substream->file = pcm_file;
2111 		substream->pcm_release = pcm_release_private;
2112 	}
2113 	file->private_data = pcm_file;
2114 
2115 	return 0;
2116 }
2117 
2118 static int snd_pcm_playback_open(struct inode *inode, struct file *file)
2119 {
2120 	struct snd_pcm *pcm;
2121 	int err = nonseekable_open(inode, file);
2122 	if (err < 0)
2123 		return err;
2124 	pcm = snd_lookup_minor_data(iminor(inode),
2125 				    SNDRV_DEVICE_TYPE_PCM_PLAYBACK);
2126 	err = snd_pcm_open(file, pcm, SNDRV_PCM_STREAM_PLAYBACK);
2127 	snd_card_unref(pcm->card);
2128 	return err;
2129 }
2130 
2131 static int snd_pcm_capture_open(struct inode *inode, struct file *file)
2132 {
2133 	struct snd_pcm *pcm;
2134 	int err = nonseekable_open(inode, file);
2135 	if (err < 0)
2136 		return err;
2137 	pcm = snd_lookup_minor_data(iminor(inode),
2138 				    SNDRV_DEVICE_TYPE_PCM_CAPTURE);
2139 	err = snd_pcm_open(file, pcm, SNDRV_PCM_STREAM_CAPTURE);
2140 	snd_card_unref(pcm->card);
2141 	return err;
2142 }
2143 
2144 static int snd_pcm_open(struct file *file, struct snd_pcm *pcm, int stream)
2145 {
2146 	int err;
2147 	wait_queue_t wait;
2148 
2149 	if (pcm == NULL) {
2150 		err = -ENODEV;
2151 		goto __error1;
2152 	}
2153 	err = snd_card_file_add(pcm->card, file);
2154 	if (err < 0)
2155 		goto __error1;
2156 	if (!try_module_get(pcm->card->module)) {
2157 		err = -EFAULT;
2158 		goto __error2;
2159 	}
2160 	init_waitqueue_entry(&wait, current);
2161 	add_wait_queue(&pcm->open_wait, &wait);
2162 	mutex_lock(&pcm->open_mutex);
2163 	while (1) {
2164 		err = snd_pcm_open_file(file, pcm, stream);
2165 		if (err >= 0)
2166 			break;
2167 		if (err == -EAGAIN) {
2168 			if (file->f_flags & O_NONBLOCK) {
2169 				err = -EBUSY;
2170 				break;
2171 			}
2172 		} else
2173 			break;
2174 		set_current_state(TASK_INTERRUPTIBLE);
2175 		mutex_unlock(&pcm->open_mutex);
2176 		schedule();
2177 		mutex_lock(&pcm->open_mutex);
2178 		if (pcm->card->shutdown) {
2179 			err = -ENODEV;
2180 			break;
2181 		}
2182 		if (signal_pending(current)) {
2183 			err = -ERESTARTSYS;
2184 			break;
2185 		}
2186 	}
2187 	remove_wait_queue(&pcm->open_wait, &wait);
2188 	mutex_unlock(&pcm->open_mutex);
2189 	if (err < 0)
2190 		goto __error;
2191 	return err;
2192 
2193       __error:
2194 	module_put(pcm->card->module);
2195       __error2:
2196       	snd_card_file_remove(pcm->card, file);
2197       __error1:
2198       	return err;
2199 }
2200 
2201 static int snd_pcm_release(struct inode *inode, struct file *file)
2202 {
2203 	struct snd_pcm *pcm;
2204 	struct snd_pcm_substream *substream;
2205 	struct snd_pcm_file *pcm_file;
2206 
2207 	pcm_file = file->private_data;
2208 	substream = pcm_file->substream;
2209 	if (snd_BUG_ON(!substream))
2210 		return -ENXIO;
2211 	pcm = substream->pcm;
2212 	mutex_lock(&pcm->open_mutex);
2213 	snd_pcm_release_substream(substream);
2214 	kfree(pcm_file);
2215 	mutex_unlock(&pcm->open_mutex);
2216 	wake_up(&pcm->open_wait);
2217 	module_put(pcm->card->module);
2218 	snd_card_file_remove(pcm->card, file);
2219 	return 0;
2220 }
2221 
2222 static snd_pcm_sframes_t snd_pcm_playback_rewind(struct snd_pcm_substream *substream,
2223 						 snd_pcm_uframes_t frames)
2224 {
2225 	struct snd_pcm_runtime *runtime = substream->runtime;
2226 	snd_pcm_sframes_t appl_ptr;
2227 	snd_pcm_sframes_t ret;
2228 	snd_pcm_sframes_t hw_avail;
2229 
2230 	if (frames == 0)
2231 		return 0;
2232 
2233 	snd_pcm_stream_lock_irq(substream);
2234 	switch (runtime->status->state) {
2235 	case SNDRV_PCM_STATE_PREPARED:
2236 		break;
2237 	case SNDRV_PCM_STATE_DRAINING:
2238 	case SNDRV_PCM_STATE_RUNNING:
2239 		if (snd_pcm_update_hw_ptr(substream) >= 0)
2240 			break;
2241 		/* Fall through */
2242 	case SNDRV_PCM_STATE_XRUN:
2243 		ret = -EPIPE;
2244 		goto __end;
2245 	case SNDRV_PCM_STATE_SUSPENDED:
2246 		ret = -ESTRPIPE;
2247 		goto __end;
2248 	default:
2249 		ret = -EBADFD;
2250 		goto __end;
2251 	}
2252 
2253 	hw_avail = snd_pcm_playback_hw_avail(runtime);
2254 	if (hw_avail <= 0) {
2255 		ret = 0;
2256 		goto __end;
2257 	}
2258 	if (frames > (snd_pcm_uframes_t)hw_avail)
2259 		frames = hw_avail;
2260 	appl_ptr = runtime->control->appl_ptr - frames;
2261 	if (appl_ptr < 0)
2262 		appl_ptr += runtime->boundary;
2263 	runtime->control->appl_ptr = appl_ptr;
2264 	ret = frames;
2265  __end:
2266 	snd_pcm_stream_unlock_irq(substream);
2267 	return ret;
2268 }
2269 
2270 static snd_pcm_sframes_t snd_pcm_capture_rewind(struct snd_pcm_substream *substream,
2271 						snd_pcm_uframes_t frames)
2272 {
2273 	struct snd_pcm_runtime *runtime = substream->runtime;
2274 	snd_pcm_sframes_t appl_ptr;
2275 	snd_pcm_sframes_t ret;
2276 	snd_pcm_sframes_t hw_avail;
2277 
2278 	if (frames == 0)
2279 		return 0;
2280 
2281 	snd_pcm_stream_lock_irq(substream);
2282 	switch (runtime->status->state) {
2283 	case SNDRV_PCM_STATE_PREPARED:
2284 	case SNDRV_PCM_STATE_DRAINING:
2285 		break;
2286 	case SNDRV_PCM_STATE_RUNNING:
2287 		if (snd_pcm_update_hw_ptr(substream) >= 0)
2288 			break;
2289 		/* Fall through */
2290 	case SNDRV_PCM_STATE_XRUN:
2291 		ret = -EPIPE;
2292 		goto __end;
2293 	case SNDRV_PCM_STATE_SUSPENDED:
2294 		ret = -ESTRPIPE;
2295 		goto __end;
2296 	default:
2297 		ret = -EBADFD;
2298 		goto __end;
2299 	}
2300 
2301 	hw_avail = snd_pcm_capture_hw_avail(runtime);
2302 	if (hw_avail <= 0) {
2303 		ret = 0;
2304 		goto __end;
2305 	}
2306 	if (frames > (snd_pcm_uframes_t)hw_avail)
2307 		frames = hw_avail;
2308 	appl_ptr = runtime->control->appl_ptr - frames;
2309 	if (appl_ptr < 0)
2310 		appl_ptr += runtime->boundary;
2311 	runtime->control->appl_ptr = appl_ptr;
2312 	ret = frames;
2313  __end:
2314 	snd_pcm_stream_unlock_irq(substream);
2315 	return ret;
2316 }
2317 
2318 static snd_pcm_sframes_t snd_pcm_playback_forward(struct snd_pcm_substream *substream,
2319 						  snd_pcm_uframes_t frames)
2320 {
2321 	struct snd_pcm_runtime *runtime = substream->runtime;
2322 	snd_pcm_sframes_t appl_ptr;
2323 	snd_pcm_sframes_t ret;
2324 	snd_pcm_sframes_t avail;
2325 
2326 	if (frames == 0)
2327 		return 0;
2328 
2329 	snd_pcm_stream_lock_irq(substream);
2330 	switch (runtime->status->state) {
2331 	case SNDRV_PCM_STATE_PREPARED:
2332 	case SNDRV_PCM_STATE_PAUSED:
2333 		break;
2334 	case SNDRV_PCM_STATE_DRAINING:
2335 	case SNDRV_PCM_STATE_RUNNING:
2336 		if (snd_pcm_update_hw_ptr(substream) >= 0)
2337 			break;
2338 		/* Fall through */
2339 	case SNDRV_PCM_STATE_XRUN:
2340 		ret = -EPIPE;
2341 		goto __end;
2342 	case SNDRV_PCM_STATE_SUSPENDED:
2343 		ret = -ESTRPIPE;
2344 		goto __end;
2345 	default:
2346 		ret = -EBADFD;
2347 		goto __end;
2348 	}
2349 
2350 	avail = snd_pcm_playback_avail(runtime);
2351 	if (avail <= 0) {
2352 		ret = 0;
2353 		goto __end;
2354 	}
2355 	if (frames > (snd_pcm_uframes_t)avail)
2356 		frames = avail;
2357 	appl_ptr = runtime->control->appl_ptr + frames;
2358 	if (appl_ptr >= (snd_pcm_sframes_t)runtime->boundary)
2359 		appl_ptr -= runtime->boundary;
2360 	runtime->control->appl_ptr = appl_ptr;
2361 	ret = frames;
2362  __end:
2363 	snd_pcm_stream_unlock_irq(substream);
2364 	return ret;
2365 }
2366 
2367 static snd_pcm_sframes_t snd_pcm_capture_forward(struct snd_pcm_substream *substream,
2368 						 snd_pcm_uframes_t frames)
2369 {
2370 	struct snd_pcm_runtime *runtime = substream->runtime;
2371 	snd_pcm_sframes_t appl_ptr;
2372 	snd_pcm_sframes_t ret;
2373 	snd_pcm_sframes_t avail;
2374 
2375 	if (frames == 0)
2376 		return 0;
2377 
2378 	snd_pcm_stream_lock_irq(substream);
2379 	switch (runtime->status->state) {
2380 	case SNDRV_PCM_STATE_PREPARED:
2381 	case SNDRV_PCM_STATE_DRAINING:
2382 	case SNDRV_PCM_STATE_PAUSED:
2383 		break;
2384 	case SNDRV_PCM_STATE_RUNNING:
2385 		if (snd_pcm_update_hw_ptr(substream) >= 0)
2386 			break;
2387 		/* Fall through */
2388 	case SNDRV_PCM_STATE_XRUN:
2389 		ret = -EPIPE;
2390 		goto __end;
2391 	case SNDRV_PCM_STATE_SUSPENDED:
2392 		ret = -ESTRPIPE;
2393 		goto __end;
2394 	default:
2395 		ret = -EBADFD;
2396 		goto __end;
2397 	}
2398 
2399 	avail = snd_pcm_capture_avail(runtime);
2400 	if (avail <= 0) {
2401 		ret = 0;
2402 		goto __end;
2403 	}
2404 	if (frames > (snd_pcm_uframes_t)avail)
2405 		frames = avail;
2406 	appl_ptr = runtime->control->appl_ptr + frames;
2407 	if (appl_ptr >= (snd_pcm_sframes_t)runtime->boundary)
2408 		appl_ptr -= runtime->boundary;
2409 	runtime->control->appl_ptr = appl_ptr;
2410 	ret = frames;
2411  __end:
2412 	snd_pcm_stream_unlock_irq(substream);
2413 	return ret;
2414 }
2415 
2416 static int snd_pcm_hwsync(struct snd_pcm_substream *substream)
2417 {
2418 	struct snd_pcm_runtime *runtime = substream->runtime;
2419 	int err;
2420 
2421 	snd_pcm_stream_lock_irq(substream);
2422 	switch (runtime->status->state) {
2423 	case SNDRV_PCM_STATE_DRAINING:
2424 		if (substream->stream == SNDRV_PCM_STREAM_CAPTURE)
2425 			goto __badfd;
2426 	case SNDRV_PCM_STATE_RUNNING:
2427 		if ((err = snd_pcm_update_hw_ptr(substream)) < 0)
2428 			break;
2429 		/* Fall through */
2430 	case SNDRV_PCM_STATE_PREPARED:
2431 	case SNDRV_PCM_STATE_SUSPENDED:
2432 		err = 0;
2433 		break;
2434 	case SNDRV_PCM_STATE_XRUN:
2435 		err = -EPIPE;
2436 		break;
2437 	default:
2438 	      __badfd:
2439 		err = -EBADFD;
2440 		break;
2441 	}
2442 	snd_pcm_stream_unlock_irq(substream);
2443 	return err;
2444 }
2445 
2446 static int snd_pcm_delay(struct snd_pcm_substream *substream,
2447 			 snd_pcm_sframes_t __user *res)
2448 {
2449 	struct snd_pcm_runtime *runtime = substream->runtime;
2450 	int err;
2451 	snd_pcm_sframes_t n = 0;
2452 
2453 	snd_pcm_stream_lock_irq(substream);
2454 	switch (runtime->status->state) {
2455 	case SNDRV_PCM_STATE_DRAINING:
2456 		if (substream->stream == SNDRV_PCM_STREAM_CAPTURE)
2457 			goto __badfd;
2458 	case SNDRV_PCM_STATE_RUNNING:
2459 		if ((err = snd_pcm_update_hw_ptr(substream)) < 0)
2460 			break;
2461 		/* Fall through */
2462 	case SNDRV_PCM_STATE_PREPARED:
2463 	case SNDRV_PCM_STATE_SUSPENDED:
2464 		err = 0;
2465 		if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK)
2466 			n = snd_pcm_playback_hw_avail(runtime);
2467 		else
2468 			n = snd_pcm_capture_avail(runtime);
2469 		n += runtime->delay;
2470 		break;
2471 	case SNDRV_PCM_STATE_XRUN:
2472 		err = -EPIPE;
2473 		break;
2474 	default:
2475 	      __badfd:
2476 		err = -EBADFD;
2477 		break;
2478 	}
2479 	snd_pcm_stream_unlock_irq(substream);
2480 	if (!err)
2481 		if (put_user(n, res))
2482 			err = -EFAULT;
2483 	return err;
2484 }
2485 
2486 static int snd_pcm_sync_ptr(struct snd_pcm_substream *substream,
2487 			    struct snd_pcm_sync_ptr __user *_sync_ptr)
2488 {
2489 	struct snd_pcm_runtime *runtime = substream->runtime;
2490 	struct snd_pcm_sync_ptr sync_ptr;
2491 	volatile struct snd_pcm_mmap_status *status;
2492 	volatile struct snd_pcm_mmap_control *control;
2493 	int err;
2494 
2495 	memset(&sync_ptr, 0, sizeof(sync_ptr));
2496 	if (get_user(sync_ptr.flags, (unsigned __user *)&(_sync_ptr->flags)))
2497 		return -EFAULT;
2498 	if (copy_from_user(&sync_ptr.c.control, &(_sync_ptr->c.control), sizeof(struct snd_pcm_mmap_control)))
2499 		return -EFAULT;
2500 	status = runtime->status;
2501 	control = runtime->control;
2502 	if (sync_ptr.flags & SNDRV_PCM_SYNC_PTR_HWSYNC) {
2503 		err = snd_pcm_hwsync(substream);
2504 		if (err < 0)
2505 			return err;
2506 	}
2507 	snd_pcm_stream_lock_irq(substream);
2508 	if (!(sync_ptr.flags & SNDRV_PCM_SYNC_PTR_APPL))
2509 		control->appl_ptr = sync_ptr.c.control.appl_ptr;
2510 	else
2511 		sync_ptr.c.control.appl_ptr = control->appl_ptr;
2512 	if (!(sync_ptr.flags & SNDRV_PCM_SYNC_PTR_AVAIL_MIN))
2513 		control->avail_min = sync_ptr.c.control.avail_min;
2514 	else
2515 		sync_ptr.c.control.avail_min = control->avail_min;
2516 	sync_ptr.s.status.state = status->state;
2517 	sync_ptr.s.status.hw_ptr = status->hw_ptr;
2518 	sync_ptr.s.status.tstamp = status->tstamp;
2519 	sync_ptr.s.status.suspended_state = status->suspended_state;
2520 	snd_pcm_stream_unlock_irq(substream);
2521 	if (copy_to_user(_sync_ptr, &sync_ptr, sizeof(sync_ptr)))
2522 		return -EFAULT;
2523 	return 0;
2524 }
2525 
2526 static int snd_pcm_tstamp(struct snd_pcm_substream *substream, int __user *_arg)
2527 {
2528 	struct snd_pcm_runtime *runtime = substream->runtime;
2529 	int arg;
2530 
2531 	if (get_user(arg, _arg))
2532 		return -EFAULT;
2533 	if (arg < 0 || arg > SNDRV_PCM_TSTAMP_TYPE_LAST)
2534 		return -EINVAL;
2535 	runtime->tstamp_type = SNDRV_PCM_TSTAMP_TYPE_GETTIMEOFDAY;
2536 	if (arg == SNDRV_PCM_TSTAMP_TYPE_MONOTONIC)
2537 		runtime->tstamp_type = SNDRV_PCM_TSTAMP_TYPE_MONOTONIC;
2538 	return 0;
2539 }
2540 
2541 static int snd_pcm_common_ioctl1(struct file *file,
2542 				 struct snd_pcm_substream *substream,
2543 				 unsigned int cmd, void __user *arg)
2544 {
2545 	switch (cmd) {
2546 	case SNDRV_PCM_IOCTL_PVERSION:
2547 		return put_user(SNDRV_PCM_VERSION, (int __user *)arg) ? -EFAULT : 0;
2548 	case SNDRV_PCM_IOCTL_INFO:
2549 		return snd_pcm_info_user(substream, arg);
2550 	case SNDRV_PCM_IOCTL_TSTAMP:	/* just for compatibility */
2551 		return 0;
2552 	case SNDRV_PCM_IOCTL_TTSTAMP:
2553 		return snd_pcm_tstamp(substream, arg);
2554 	case SNDRV_PCM_IOCTL_HW_REFINE:
2555 		return snd_pcm_hw_refine_user(substream, arg);
2556 	case SNDRV_PCM_IOCTL_HW_PARAMS:
2557 		return snd_pcm_hw_params_user(substream, arg);
2558 	case SNDRV_PCM_IOCTL_HW_FREE:
2559 		return snd_pcm_hw_free(substream);
2560 	case SNDRV_PCM_IOCTL_SW_PARAMS:
2561 		return snd_pcm_sw_params_user(substream, arg);
2562 	case SNDRV_PCM_IOCTL_STATUS:
2563 		return snd_pcm_status_user(substream, arg);
2564 	case SNDRV_PCM_IOCTL_CHANNEL_INFO:
2565 		return snd_pcm_channel_info_user(substream, arg);
2566 	case SNDRV_PCM_IOCTL_PREPARE:
2567 		return snd_pcm_prepare(substream, file);
2568 	case SNDRV_PCM_IOCTL_RESET:
2569 		return snd_pcm_reset(substream);
2570 	case SNDRV_PCM_IOCTL_START:
2571 		return snd_pcm_action_lock_irq(&snd_pcm_action_start, substream, SNDRV_PCM_STATE_RUNNING);
2572 	case SNDRV_PCM_IOCTL_LINK:
2573 		return snd_pcm_link(substream, (int)(unsigned long) arg);
2574 	case SNDRV_PCM_IOCTL_UNLINK:
2575 		return snd_pcm_unlink(substream);
2576 	case SNDRV_PCM_IOCTL_RESUME:
2577 		return snd_pcm_resume(substream);
2578 	case SNDRV_PCM_IOCTL_XRUN:
2579 		return snd_pcm_xrun(substream);
2580 	case SNDRV_PCM_IOCTL_HWSYNC:
2581 		return snd_pcm_hwsync(substream);
2582 	case SNDRV_PCM_IOCTL_DELAY:
2583 		return snd_pcm_delay(substream, arg);
2584 	case SNDRV_PCM_IOCTL_SYNC_PTR:
2585 		return snd_pcm_sync_ptr(substream, arg);
2586 #ifdef CONFIG_SND_SUPPORT_OLD_API
2587 	case SNDRV_PCM_IOCTL_HW_REFINE_OLD:
2588 		return snd_pcm_hw_refine_old_user(substream, arg);
2589 	case SNDRV_PCM_IOCTL_HW_PARAMS_OLD:
2590 		return snd_pcm_hw_params_old_user(substream, arg);
2591 #endif
2592 	case SNDRV_PCM_IOCTL_DRAIN:
2593 		return snd_pcm_drain(substream, file);
2594 	case SNDRV_PCM_IOCTL_DROP:
2595 		return snd_pcm_drop(substream);
2596 	case SNDRV_PCM_IOCTL_PAUSE:
2597 	{
2598 		int res;
2599 		snd_pcm_stream_lock_irq(substream);
2600 		res = snd_pcm_pause(substream, (int)(unsigned long)arg);
2601 		snd_pcm_stream_unlock_irq(substream);
2602 		return res;
2603 	}
2604 	}
2605 	snd_printd("unknown ioctl = 0x%x\n", cmd);
2606 	return -ENOTTY;
2607 }
2608 
2609 static int snd_pcm_playback_ioctl1(struct file *file,
2610 				   struct snd_pcm_substream *substream,
2611 				   unsigned int cmd, void __user *arg)
2612 {
2613 	if (snd_BUG_ON(!substream))
2614 		return -ENXIO;
2615 	if (snd_BUG_ON(substream->stream != SNDRV_PCM_STREAM_PLAYBACK))
2616 		return -EINVAL;
2617 	switch (cmd) {
2618 	case SNDRV_PCM_IOCTL_WRITEI_FRAMES:
2619 	{
2620 		struct snd_xferi xferi;
2621 		struct snd_xferi __user *_xferi = arg;
2622 		struct snd_pcm_runtime *runtime = substream->runtime;
2623 		snd_pcm_sframes_t result;
2624 		if (runtime->status->state == SNDRV_PCM_STATE_OPEN)
2625 			return -EBADFD;
2626 		if (put_user(0, &_xferi->result))
2627 			return -EFAULT;
2628 		if (copy_from_user(&xferi, _xferi, sizeof(xferi)))
2629 			return -EFAULT;
2630 		result = snd_pcm_lib_write(substream, xferi.buf, xferi.frames);
2631 		__put_user(result, &_xferi->result);
2632 		return result < 0 ? result : 0;
2633 	}
2634 	case SNDRV_PCM_IOCTL_WRITEN_FRAMES:
2635 	{
2636 		struct snd_xfern xfern;
2637 		struct snd_xfern __user *_xfern = arg;
2638 		struct snd_pcm_runtime *runtime = substream->runtime;
2639 		void __user **bufs;
2640 		snd_pcm_sframes_t result;
2641 		if (runtime->status->state == SNDRV_PCM_STATE_OPEN)
2642 			return -EBADFD;
2643 		if (runtime->channels > 128)
2644 			return -EINVAL;
2645 		if (put_user(0, &_xfern->result))
2646 			return -EFAULT;
2647 		if (copy_from_user(&xfern, _xfern, sizeof(xfern)))
2648 			return -EFAULT;
2649 
2650 		bufs = memdup_user(xfern.bufs,
2651 				   sizeof(void *) * runtime->channels);
2652 		if (IS_ERR(bufs))
2653 			return PTR_ERR(bufs);
2654 		result = snd_pcm_lib_writev(substream, bufs, xfern.frames);
2655 		kfree(bufs);
2656 		__put_user(result, &_xfern->result);
2657 		return result < 0 ? result : 0;
2658 	}
2659 	case SNDRV_PCM_IOCTL_REWIND:
2660 	{
2661 		snd_pcm_uframes_t frames;
2662 		snd_pcm_uframes_t __user *_frames = arg;
2663 		snd_pcm_sframes_t result;
2664 		if (get_user(frames, _frames))
2665 			return -EFAULT;
2666 		if (put_user(0, _frames))
2667 			return -EFAULT;
2668 		result = snd_pcm_playback_rewind(substream, frames);
2669 		__put_user(result, _frames);
2670 		return result < 0 ? result : 0;
2671 	}
2672 	case SNDRV_PCM_IOCTL_FORWARD:
2673 	{
2674 		snd_pcm_uframes_t frames;
2675 		snd_pcm_uframes_t __user *_frames = arg;
2676 		snd_pcm_sframes_t result;
2677 		if (get_user(frames, _frames))
2678 			return -EFAULT;
2679 		if (put_user(0, _frames))
2680 			return -EFAULT;
2681 		result = snd_pcm_playback_forward(substream, frames);
2682 		__put_user(result, _frames);
2683 		return result < 0 ? result : 0;
2684 	}
2685 	}
2686 	return snd_pcm_common_ioctl1(file, substream, cmd, arg);
2687 }
2688 
2689 static int snd_pcm_capture_ioctl1(struct file *file,
2690 				  struct snd_pcm_substream *substream,
2691 				  unsigned int cmd, void __user *arg)
2692 {
2693 	if (snd_BUG_ON(!substream))
2694 		return -ENXIO;
2695 	if (snd_BUG_ON(substream->stream != SNDRV_PCM_STREAM_CAPTURE))
2696 		return -EINVAL;
2697 	switch (cmd) {
2698 	case SNDRV_PCM_IOCTL_READI_FRAMES:
2699 	{
2700 		struct snd_xferi xferi;
2701 		struct snd_xferi __user *_xferi = arg;
2702 		struct snd_pcm_runtime *runtime = substream->runtime;
2703 		snd_pcm_sframes_t result;
2704 		if (runtime->status->state == SNDRV_PCM_STATE_OPEN)
2705 			return -EBADFD;
2706 		if (put_user(0, &_xferi->result))
2707 			return -EFAULT;
2708 		if (copy_from_user(&xferi, _xferi, sizeof(xferi)))
2709 			return -EFAULT;
2710 		result = snd_pcm_lib_read(substream, xferi.buf, xferi.frames);
2711 		__put_user(result, &_xferi->result);
2712 		return result < 0 ? result : 0;
2713 	}
2714 	case SNDRV_PCM_IOCTL_READN_FRAMES:
2715 	{
2716 		struct snd_xfern xfern;
2717 		struct snd_xfern __user *_xfern = arg;
2718 		struct snd_pcm_runtime *runtime = substream->runtime;
2719 		void *bufs;
2720 		snd_pcm_sframes_t result;
2721 		if (runtime->status->state == SNDRV_PCM_STATE_OPEN)
2722 			return -EBADFD;
2723 		if (runtime->channels > 128)
2724 			return -EINVAL;
2725 		if (put_user(0, &_xfern->result))
2726 			return -EFAULT;
2727 		if (copy_from_user(&xfern, _xfern, sizeof(xfern)))
2728 			return -EFAULT;
2729 
2730 		bufs = memdup_user(xfern.bufs,
2731 				   sizeof(void *) * runtime->channels);
2732 		if (IS_ERR(bufs))
2733 			return PTR_ERR(bufs);
2734 		result = snd_pcm_lib_readv(substream, bufs, xfern.frames);
2735 		kfree(bufs);
2736 		__put_user(result, &_xfern->result);
2737 		return result < 0 ? result : 0;
2738 	}
2739 	case SNDRV_PCM_IOCTL_REWIND:
2740 	{
2741 		snd_pcm_uframes_t frames;
2742 		snd_pcm_uframes_t __user *_frames = arg;
2743 		snd_pcm_sframes_t result;
2744 		if (get_user(frames, _frames))
2745 			return -EFAULT;
2746 		if (put_user(0, _frames))
2747 			return -EFAULT;
2748 		result = snd_pcm_capture_rewind(substream, frames);
2749 		__put_user(result, _frames);
2750 		return result < 0 ? result : 0;
2751 	}
2752 	case SNDRV_PCM_IOCTL_FORWARD:
2753 	{
2754 		snd_pcm_uframes_t frames;
2755 		snd_pcm_uframes_t __user *_frames = arg;
2756 		snd_pcm_sframes_t result;
2757 		if (get_user(frames, _frames))
2758 			return -EFAULT;
2759 		if (put_user(0, _frames))
2760 			return -EFAULT;
2761 		result = snd_pcm_capture_forward(substream, frames);
2762 		__put_user(result, _frames);
2763 		return result < 0 ? result : 0;
2764 	}
2765 	}
2766 	return snd_pcm_common_ioctl1(file, substream, cmd, arg);
2767 }
2768 
2769 static long snd_pcm_playback_ioctl(struct file *file, unsigned int cmd,
2770 				   unsigned long arg)
2771 {
2772 	struct snd_pcm_file *pcm_file;
2773 
2774 	pcm_file = file->private_data;
2775 
2776 	if (((cmd >> 8) & 0xff) != 'A')
2777 		return -ENOTTY;
2778 
2779 	return snd_pcm_playback_ioctl1(file, pcm_file->substream, cmd,
2780 				       (void __user *)arg);
2781 }
2782 
2783 static long snd_pcm_capture_ioctl(struct file *file, unsigned int cmd,
2784 				  unsigned long arg)
2785 {
2786 	struct snd_pcm_file *pcm_file;
2787 
2788 	pcm_file = file->private_data;
2789 
2790 	if (((cmd >> 8) & 0xff) != 'A')
2791 		return -ENOTTY;
2792 
2793 	return snd_pcm_capture_ioctl1(file, pcm_file->substream, cmd,
2794 				      (void __user *)arg);
2795 }
2796 
2797 int snd_pcm_kernel_ioctl(struct snd_pcm_substream *substream,
2798 			 unsigned int cmd, void *arg)
2799 {
2800 	mm_segment_t fs;
2801 	int result;
2802 
2803 	fs = snd_enter_user();
2804 	switch (substream->stream) {
2805 	case SNDRV_PCM_STREAM_PLAYBACK:
2806 		result = snd_pcm_playback_ioctl1(NULL, substream, cmd,
2807 						 (void __user *)arg);
2808 		break;
2809 	case SNDRV_PCM_STREAM_CAPTURE:
2810 		result = snd_pcm_capture_ioctl1(NULL, substream, cmd,
2811 						(void __user *)arg);
2812 		break;
2813 	default:
2814 		result = -EINVAL;
2815 		break;
2816 	}
2817 	snd_leave_user(fs);
2818 	return result;
2819 }
2820 
2821 EXPORT_SYMBOL(snd_pcm_kernel_ioctl);
2822 
2823 static ssize_t snd_pcm_read(struct file *file, char __user *buf, size_t count,
2824 			    loff_t * offset)
2825 {
2826 	struct snd_pcm_file *pcm_file;
2827 	struct snd_pcm_substream *substream;
2828 	struct snd_pcm_runtime *runtime;
2829 	snd_pcm_sframes_t result;
2830 
2831 	pcm_file = file->private_data;
2832 	substream = pcm_file->substream;
2833 	if (PCM_RUNTIME_CHECK(substream))
2834 		return -ENXIO;
2835 	runtime = substream->runtime;
2836 	if (runtime->status->state == SNDRV_PCM_STATE_OPEN)
2837 		return -EBADFD;
2838 	if (!frame_aligned(runtime, count))
2839 		return -EINVAL;
2840 	count = bytes_to_frames(runtime, count);
2841 	result = snd_pcm_lib_read(substream, buf, count);
2842 	if (result > 0)
2843 		result = frames_to_bytes(runtime, result);
2844 	return result;
2845 }
2846 
2847 static ssize_t snd_pcm_write(struct file *file, const char __user *buf,
2848 			     size_t count, loff_t * offset)
2849 {
2850 	struct snd_pcm_file *pcm_file;
2851 	struct snd_pcm_substream *substream;
2852 	struct snd_pcm_runtime *runtime;
2853 	snd_pcm_sframes_t result;
2854 
2855 	pcm_file = file->private_data;
2856 	substream = pcm_file->substream;
2857 	if (PCM_RUNTIME_CHECK(substream))
2858 		return -ENXIO;
2859 	runtime = substream->runtime;
2860 	if (runtime->status->state == SNDRV_PCM_STATE_OPEN)
2861 		return -EBADFD;
2862 	if (!frame_aligned(runtime, count))
2863 		return -EINVAL;
2864 	count = bytes_to_frames(runtime, count);
2865 	result = snd_pcm_lib_write(substream, buf, count);
2866 	if (result > 0)
2867 		result = frames_to_bytes(runtime, result);
2868 	return result;
2869 }
2870 
2871 static ssize_t snd_pcm_aio_read(struct kiocb *iocb, const struct iovec *iov,
2872 			     unsigned long nr_segs, loff_t pos)
2873 
2874 {
2875 	struct snd_pcm_file *pcm_file;
2876 	struct snd_pcm_substream *substream;
2877 	struct snd_pcm_runtime *runtime;
2878 	snd_pcm_sframes_t result;
2879 	unsigned long i;
2880 	void __user **bufs;
2881 	snd_pcm_uframes_t frames;
2882 
2883 	pcm_file = iocb->ki_filp->private_data;
2884 	substream = pcm_file->substream;
2885 	if (PCM_RUNTIME_CHECK(substream))
2886 		return -ENXIO;
2887 	runtime = substream->runtime;
2888 	if (runtime->status->state == SNDRV_PCM_STATE_OPEN)
2889 		return -EBADFD;
2890 	if (nr_segs > 1024 || nr_segs != runtime->channels)
2891 		return -EINVAL;
2892 	if (!frame_aligned(runtime, iov->iov_len))
2893 		return -EINVAL;
2894 	frames = bytes_to_samples(runtime, iov->iov_len);
2895 	bufs = kmalloc(sizeof(void *) * nr_segs, GFP_KERNEL);
2896 	if (bufs == NULL)
2897 		return -ENOMEM;
2898 	for (i = 0; i < nr_segs; ++i)
2899 		bufs[i] = iov[i].iov_base;
2900 	result = snd_pcm_lib_readv(substream, bufs, frames);
2901 	if (result > 0)
2902 		result = frames_to_bytes(runtime, result);
2903 	kfree(bufs);
2904 	return result;
2905 }
2906 
2907 static ssize_t snd_pcm_aio_write(struct kiocb *iocb, const struct iovec *iov,
2908 			      unsigned long nr_segs, loff_t pos)
2909 {
2910 	struct snd_pcm_file *pcm_file;
2911 	struct snd_pcm_substream *substream;
2912 	struct snd_pcm_runtime *runtime;
2913 	snd_pcm_sframes_t result;
2914 	unsigned long i;
2915 	void __user **bufs;
2916 	snd_pcm_uframes_t frames;
2917 
2918 	pcm_file = iocb->ki_filp->private_data;
2919 	substream = pcm_file->substream;
2920 	if (PCM_RUNTIME_CHECK(substream))
2921 		return -ENXIO;
2922 	runtime = substream->runtime;
2923 	if (runtime->status->state == SNDRV_PCM_STATE_OPEN)
2924 		return -EBADFD;
2925 	if (nr_segs > 128 || nr_segs != runtime->channels ||
2926 	    !frame_aligned(runtime, iov->iov_len))
2927 		return -EINVAL;
2928 	frames = bytes_to_samples(runtime, iov->iov_len);
2929 	bufs = kmalloc(sizeof(void *) * nr_segs, GFP_KERNEL);
2930 	if (bufs == NULL)
2931 		return -ENOMEM;
2932 	for (i = 0; i < nr_segs; ++i)
2933 		bufs[i] = iov[i].iov_base;
2934 	result = snd_pcm_lib_writev(substream, bufs, frames);
2935 	if (result > 0)
2936 		result = frames_to_bytes(runtime, result);
2937 	kfree(bufs);
2938 	return result;
2939 }
2940 
2941 static unsigned int snd_pcm_playback_poll(struct file *file, poll_table * wait)
2942 {
2943 	struct snd_pcm_file *pcm_file;
2944 	struct snd_pcm_substream *substream;
2945 	struct snd_pcm_runtime *runtime;
2946         unsigned int mask;
2947 	snd_pcm_uframes_t avail;
2948 
2949 	pcm_file = file->private_data;
2950 
2951 	substream = pcm_file->substream;
2952 	if (PCM_RUNTIME_CHECK(substream))
2953 		return -ENXIO;
2954 	runtime = substream->runtime;
2955 
2956 	poll_wait(file, &runtime->sleep, wait);
2957 
2958 	snd_pcm_stream_lock_irq(substream);
2959 	avail = snd_pcm_playback_avail(runtime);
2960 	switch (runtime->status->state) {
2961 	case SNDRV_PCM_STATE_RUNNING:
2962 	case SNDRV_PCM_STATE_PREPARED:
2963 	case SNDRV_PCM_STATE_PAUSED:
2964 		if (avail >= runtime->control->avail_min) {
2965 			mask = POLLOUT | POLLWRNORM;
2966 			break;
2967 		}
2968 		/* Fall through */
2969 	case SNDRV_PCM_STATE_DRAINING:
2970 		mask = 0;
2971 		break;
2972 	default:
2973 		mask = POLLOUT | POLLWRNORM | POLLERR;
2974 		break;
2975 	}
2976 	snd_pcm_stream_unlock_irq(substream);
2977 	return mask;
2978 }
2979 
2980 static unsigned int snd_pcm_capture_poll(struct file *file, poll_table * wait)
2981 {
2982 	struct snd_pcm_file *pcm_file;
2983 	struct snd_pcm_substream *substream;
2984 	struct snd_pcm_runtime *runtime;
2985         unsigned int mask;
2986 	snd_pcm_uframes_t avail;
2987 
2988 	pcm_file = file->private_data;
2989 
2990 	substream = pcm_file->substream;
2991 	if (PCM_RUNTIME_CHECK(substream))
2992 		return -ENXIO;
2993 	runtime = substream->runtime;
2994 
2995 	poll_wait(file, &runtime->sleep, wait);
2996 
2997 	snd_pcm_stream_lock_irq(substream);
2998 	avail = snd_pcm_capture_avail(runtime);
2999 	switch (runtime->status->state) {
3000 	case SNDRV_PCM_STATE_RUNNING:
3001 	case SNDRV_PCM_STATE_PREPARED:
3002 	case SNDRV_PCM_STATE_PAUSED:
3003 		if (avail >= runtime->control->avail_min) {
3004 			mask = POLLIN | POLLRDNORM;
3005 			break;
3006 		}
3007 		mask = 0;
3008 		break;
3009 	case SNDRV_PCM_STATE_DRAINING:
3010 		if (avail > 0) {
3011 			mask = POLLIN | POLLRDNORM;
3012 			break;
3013 		}
3014 		/* Fall through */
3015 	default:
3016 		mask = POLLIN | POLLRDNORM | POLLERR;
3017 		break;
3018 	}
3019 	snd_pcm_stream_unlock_irq(substream);
3020 	return mask;
3021 }
3022 
3023 /*
3024  * mmap support
3025  */
3026 
3027 /*
3028  * Only on coherent architectures, we can mmap the status and the control records
3029  * for effcient data transfer.  On others, we have to use HWSYNC ioctl...
3030  */
3031 #if defined(CONFIG_X86) || defined(CONFIG_PPC) || defined(CONFIG_ALPHA)
3032 /*
3033  * mmap status record
3034  */
3035 static int snd_pcm_mmap_status_fault(struct vm_area_struct *area,
3036 						struct vm_fault *vmf)
3037 {
3038 	struct snd_pcm_substream *substream = area->vm_private_data;
3039 	struct snd_pcm_runtime *runtime;
3040 
3041 	if (substream == NULL)
3042 		return VM_FAULT_SIGBUS;
3043 	runtime = substream->runtime;
3044 	vmf->page = virt_to_page(runtime->status);
3045 	get_page(vmf->page);
3046 	return 0;
3047 }
3048 
3049 static const struct vm_operations_struct snd_pcm_vm_ops_status =
3050 {
3051 	.fault =	snd_pcm_mmap_status_fault,
3052 };
3053 
3054 static int snd_pcm_mmap_status(struct snd_pcm_substream *substream, struct file *file,
3055 			       struct vm_area_struct *area)
3056 {
3057 	long size;
3058 	if (!(area->vm_flags & VM_READ))
3059 		return -EINVAL;
3060 	size = area->vm_end - area->vm_start;
3061 	if (size != PAGE_ALIGN(sizeof(struct snd_pcm_mmap_status)))
3062 		return -EINVAL;
3063 	area->vm_ops = &snd_pcm_vm_ops_status;
3064 	area->vm_private_data = substream;
3065 	area->vm_flags |= VM_DONTEXPAND | VM_DONTDUMP;
3066 	return 0;
3067 }
3068 
3069 /*
3070  * mmap control record
3071  */
3072 static int snd_pcm_mmap_control_fault(struct vm_area_struct *area,
3073 						struct vm_fault *vmf)
3074 {
3075 	struct snd_pcm_substream *substream = area->vm_private_data;
3076 	struct snd_pcm_runtime *runtime;
3077 
3078 	if (substream == NULL)
3079 		return VM_FAULT_SIGBUS;
3080 	runtime = substream->runtime;
3081 	vmf->page = virt_to_page(runtime->control);
3082 	get_page(vmf->page);
3083 	return 0;
3084 }
3085 
3086 static const struct vm_operations_struct snd_pcm_vm_ops_control =
3087 {
3088 	.fault =	snd_pcm_mmap_control_fault,
3089 };
3090 
3091 static int snd_pcm_mmap_control(struct snd_pcm_substream *substream, struct file *file,
3092 				struct vm_area_struct *area)
3093 {
3094 	long size;
3095 	if (!(area->vm_flags & VM_READ))
3096 		return -EINVAL;
3097 	size = area->vm_end - area->vm_start;
3098 	if (size != PAGE_ALIGN(sizeof(struct snd_pcm_mmap_control)))
3099 		return -EINVAL;
3100 	area->vm_ops = &snd_pcm_vm_ops_control;
3101 	area->vm_private_data = substream;
3102 	area->vm_flags |= VM_DONTEXPAND | VM_DONTDUMP;
3103 	return 0;
3104 }
3105 #else /* ! coherent mmap */
3106 /*
3107  * don't support mmap for status and control records.
3108  */
3109 static int snd_pcm_mmap_status(struct snd_pcm_substream *substream, struct file *file,
3110 			       struct vm_area_struct *area)
3111 {
3112 	return -ENXIO;
3113 }
3114 static int snd_pcm_mmap_control(struct snd_pcm_substream *substream, struct file *file,
3115 				struct vm_area_struct *area)
3116 {
3117 	return -ENXIO;
3118 }
3119 #endif /* coherent mmap */
3120 
3121 static inline struct page *
3122 snd_pcm_default_page_ops(struct snd_pcm_substream *substream, unsigned long ofs)
3123 {
3124 	void *vaddr = substream->runtime->dma_area + ofs;
3125 #if defined(CONFIG_MIPS) && defined(CONFIG_DMA_NONCOHERENT)
3126 	if (substream->dma_buffer.dev.type == SNDRV_DMA_TYPE_DEV)
3127 		return virt_to_page(CAC_ADDR(vaddr));
3128 #endif
3129 #if defined(CONFIG_PPC32) && defined(CONFIG_NOT_COHERENT_CACHE)
3130 	if (substream->dma_buffer.dev.type == SNDRV_DMA_TYPE_DEV) {
3131 		dma_addr_t addr = substream->runtime->dma_addr + ofs;
3132 		addr -= get_dma_offset(substream->dma_buffer.dev.dev);
3133 		/* assume dma_handle set via pfn_to_phys() in
3134 		 * mm/dma-noncoherent.c
3135 		 */
3136 		return pfn_to_page(addr >> PAGE_SHIFT);
3137 	}
3138 #endif
3139 	return virt_to_page(vaddr);
3140 }
3141 
3142 /*
3143  * fault callback for mmapping a RAM page
3144  */
3145 static int snd_pcm_mmap_data_fault(struct vm_area_struct *area,
3146 						struct vm_fault *vmf)
3147 {
3148 	struct snd_pcm_substream *substream = area->vm_private_data;
3149 	struct snd_pcm_runtime *runtime;
3150 	unsigned long offset;
3151 	struct page * page;
3152 	size_t dma_bytes;
3153 
3154 	if (substream == NULL)
3155 		return VM_FAULT_SIGBUS;
3156 	runtime = substream->runtime;
3157 	offset = vmf->pgoff << PAGE_SHIFT;
3158 	dma_bytes = PAGE_ALIGN(runtime->dma_bytes);
3159 	if (offset > dma_bytes - PAGE_SIZE)
3160 		return VM_FAULT_SIGBUS;
3161 	if (substream->ops->page)
3162 		page = substream->ops->page(substream, offset);
3163 	else
3164 		page = snd_pcm_default_page_ops(substream, offset);
3165 	if (!page)
3166 		return VM_FAULT_SIGBUS;
3167 	get_page(page);
3168 	vmf->page = page;
3169 	return 0;
3170 }
3171 
3172 static const struct vm_operations_struct snd_pcm_vm_ops_data = {
3173 	.open =		snd_pcm_mmap_data_open,
3174 	.close =	snd_pcm_mmap_data_close,
3175 };
3176 
3177 static const struct vm_operations_struct snd_pcm_vm_ops_data_fault = {
3178 	.open =		snd_pcm_mmap_data_open,
3179 	.close =	snd_pcm_mmap_data_close,
3180 	.fault =	snd_pcm_mmap_data_fault,
3181 };
3182 
3183 #ifndef ARCH_HAS_DMA_MMAP_COHERENT
3184 /* This should be defined / handled globally! */
3185 #ifdef CONFIG_ARM
3186 #define ARCH_HAS_DMA_MMAP_COHERENT
3187 #endif
3188 #endif
3189 
3190 /*
3191  * mmap the DMA buffer on RAM
3192  */
3193 int snd_pcm_lib_default_mmap(struct snd_pcm_substream *substream,
3194 			     struct vm_area_struct *area)
3195 {
3196 	area->vm_flags |= VM_DONTEXPAND | VM_DONTDUMP;
3197 #ifdef ARCH_HAS_DMA_MMAP_COHERENT
3198 	if (!substream->ops->page &&
3199 	    substream->dma_buffer.dev.type == SNDRV_DMA_TYPE_DEV)
3200 		return dma_mmap_coherent(substream->dma_buffer.dev.dev,
3201 					 area,
3202 					 substream->runtime->dma_area,
3203 					 substream->runtime->dma_addr,
3204 					 area->vm_end - area->vm_start);
3205 #elif defined(CONFIG_MIPS) && defined(CONFIG_DMA_NONCOHERENT)
3206 	if (substream->dma_buffer.dev.type == SNDRV_DMA_TYPE_DEV &&
3207 	    !plat_device_is_coherent(substream->dma_buffer.dev.dev))
3208 		area->vm_page_prot = pgprot_noncached(area->vm_page_prot);
3209 #endif /* ARCH_HAS_DMA_MMAP_COHERENT */
3210 	/* mmap with fault handler */
3211 	area->vm_ops = &snd_pcm_vm_ops_data_fault;
3212 	return 0;
3213 }
3214 EXPORT_SYMBOL_GPL(snd_pcm_lib_default_mmap);
3215 
3216 /*
3217  * mmap the DMA buffer on I/O memory area
3218  */
3219 #if SNDRV_PCM_INFO_MMAP_IOMEM
3220 int snd_pcm_lib_mmap_iomem(struct snd_pcm_substream *substream,
3221 			   struct vm_area_struct *area)
3222 {
3223 	long size;
3224 	unsigned long offset;
3225 
3226 	area->vm_page_prot = pgprot_noncached(area->vm_page_prot);
3227 	area->vm_flags |= VM_IO;
3228 	size = area->vm_end - area->vm_start;
3229 	offset = area->vm_pgoff << PAGE_SHIFT;
3230 	if (io_remap_pfn_range(area, area->vm_start,
3231 				(substream->runtime->dma_addr + offset) >> PAGE_SHIFT,
3232 				size, area->vm_page_prot))
3233 		return -EAGAIN;
3234 	return 0;
3235 }
3236 
3237 EXPORT_SYMBOL(snd_pcm_lib_mmap_iomem);
3238 #endif /* SNDRV_PCM_INFO_MMAP */
3239 
3240 /*
3241  * mmap DMA buffer
3242  */
3243 int snd_pcm_mmap_data(struct snd_pcm_substream *substream, struct file *file,
3244 		      struct vm_area_struct *area)
3245 {
3246 	struct snd_pcm_runtime *runtime;
3247 	long size;
3248 	unsigned long offset;
3249 	size_t dma_bytes;
3250 	int err;
3251 
3252 	if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK) {
3253 		if (!(area->vm_flags & (VM_WRITE|VM_READ)))
3254 			return -EINVAL;
3255 	} else {
3256 		if (!(area->vm_flags & VM_READ))
3257 			return -EINVAL;
3258 	}
3259 	runtime = substream->runtime;
3260 	if (runtime->status->state == SNDRV_PCM_STATE_OPEN)
3261 		return -EBADFD;
3262 	if (!(runtime->info & SNDRV_PCM_INFO_MMAP))
3263 		return -ENXIO;
3264 	if (runtime->access == SNDRV_PCM_ACCESS_RW_INTERLEAVED ||
3265 	    runtime->access == SNDRV_PCM_ACCESS_RW_NONINTERLEAVED)
3266 		return -EINVAL;
3267 	size = area->vm_end - area->vm_start;
3268 	offset = area->vm_pgoff << PAGE_SHIFT;
3269 	dma_bytes = PAGE_ALIGN(runtime->dma_bytes);
3270 	if ((size_t)size > dma_bytes)
3271 		return -EINVAL;
3272 	if (offset > dma_bytes - size)
3273 		return -EINVAL;
3274 
3275 	area->vm_ops = &snd_pcm_vm_ops_data;
3276 	area->vm_private_data = substream;
3277 	if (substream->ops->mmap)
3278 		err = substream->ops->mmap(substream, area);
3279 	else
3280 		err = snd_pcm_lib_default_mmap(substream, area);
3281 	if (!err)
3282 		atomic_inc(&substream->mmap_count);
3283 	return err;
3284 }
3285 
3286 EXPORT_SYMBOL(snd_pcm_mmap_data);
3287 
3288 static int snd_pcm_mmap(struct file *file, struct vm_area_struct *area)
3289 {
3290 	struct snd_pcm_file * pcm_file;
3291 	struct snd_pcm_substream *substream;
3292 	unsigned long offset;
3293 
3294 	pcm_file = file->private_data;
3295 	substream = pcm_file->substream;
3296 	if (PCM_RUNTIME_CHECK(substream))
3297 		return -ENXIO;
3298 
3299 	offset = area->vm_pgoff << PAGE_SHIFT;
3300 	switch (offset) {
3301 	case SNDRV_PCM_MMAP_OFFSET_STATUS:
3302 		if (pcm_file->no_compat_mmap)
3303 			return -ENXIO;
3304 		return snd_pcm_mmap_status(substream, file, area);
3305 	case SNDRV_PCM_MMAP_OFFSET_CONTROL:
3306 		if (pcm_file->no_compat_mmap)
3307 			return -ENXIO;
3308 		return snd_pcm_mmap_control(substream, file, area);
3309 	default:
3310 		return snd_pcm_mmap_data(substream, file, area);
3311 	}
3312 	return 0;
3313 }
3314 
3315 static int snd_pcm_fasync(int fd, struct file * file, int on)
3316 {
3317 	struct snd_pcm_file * pcm_file;
3318 	struct snd_pcm_substream *substream;
3319 	struct snd_pcm_runtime *runtime;
3320 
3321 	pcm_file = file->private_data;
3322 	substream = pcm_file->substream;
3323 	if (PCM_RUNTIME_CHECK(substream))
3324 		return -ENXIO;
3325 	runtime = substream->runtime;
3326 	return fasync_helper(fd, file, on, &runtime->fasync);
3327 }
3328 
3329 /*
3330  * ioctl32 compat
3331  */
3332 #ifdef CONFIG_COMPAT
3333 #include "pcm_compat.c"
3334 #else
3335 #define snd_pcm_ioctl_compat	NULL
3336 #endif
3337 
3338 /*
3339  *  To be removed helpers to keep binary compatibility
3340  */
3341 
3342 #ifdef CONFIG_SND_SUPPORT_OLD_API
3343 #define __OLD_TO_NEW_MASK(x) ((x&7)|((x&0x07fffff8)<<5))
3344 #define __NEW_TO_OLD_MASK(x) ((x&7)|((x&0xffffff00)>>5))
3345 
3346 static void snd_pcm_hw_convert_from_old_params(struct snd_pcm_hw_params *params,
3347 					       struct snd_pcm_hw_params_old *oparams)
3348 {
3349 	unsigned int i;
3350 
3351 	memset(params, 0, sizeof(*params));
3352 	params->flags = oparams->flags;
3353 	for (i = 0; i < ARRAY_SIZE(oparams->masks); i++)
3354 		params->masks[i].bits[0] = oparams->masks[i];
3355 	memcpy(params->intervals, oparams->intervals, sizeof(oparams->intervals));
3356 	params->rmask = __OLD_TO_NEW_MASK(oparams->rmask);
3357 	params->cmask = __OLD_TO_NEW_MASK(oparams->cmask);
3358 	params->info = oparams->info;
3359 	params->msbits = oparams->msbits;
3360 	params->rate_num = oparams->rate_num;
3361 	params->rate_den = oparams->rate_den;
3362 	params->fifo_size = oparams->fifo_size;
3363 }
3364 
3365 static void snd_pcm_hw_convert_to_old_params(struct snd_pcm_hw_params_old *oparams,
3366 					     struct snd_pcm_hw_params *params)
3367 {
3368 	unsigned int i;
3369 
3370 	memset(oparams, 0, sizeof(*oparams));
3371 	oparams->flags = params->flags;
3372 	for (i = 0; i < ARRAY_SIZE(oparams->masks); i++)
3373 		oparams->masks[i] = params->masks[i].bits[0];
3374 	memcpy(oparams->intervals, params->intervals, sizeof(oparams->intervals));
3375 	oparams->rmask = __NEW_TO_OLD_MASK(params->rmask);
3376 	oparams->cmask = __NEW_TO_OLD_MASK(params->cmask);
3377 	oparams->info = params->info;
3378 	oparams->msbits = params->msbits;
3379 	oparams->rate_num = params->rate_num;
3380 	oparams->rate_den = params->rate_den;
3381 	oparams->fifo_size = params->fifo_size;
3382 }
3383 
3384 static int snd_pcm_hw_refine_old_user(struct snd_pcm_substream *substream,
3385 				      struct snd_pcm_hw_params_old __user * _oparams)
3386 {
3387 	struct snd_pcm_hw_params *params;
3388 	struct snd_pcm_hw_params_old *oparams = NULL;
3389 	int err;
3390 
3391 	params = kmalloc(sizeof(*params), GFP_KERNEL);
3392 	if (!params)
3393 		return -ENOMEM;
3394 
3395 	oparams = memdup_user(_oparams, sizeof(*oparams));
3396 	if (IS_ERR(oparams)) {
3397 		err = PTR_ERR(oparams);
3398 		goto out;
3399 	}
3400 	snd_pcm_hw_convert_from_old_params(params, oparams);
3401 	err = snd_pcm_hw_refine(substream, params);
3402 	snd_pcm_hw_convert_to_old_params(oparams, params);
3403 	if (copy_to_user(_oparams, oparams, sizeof(*oparams))) {
3404 		if (!err)
3405 			err = -EFAULT;
3406 	}
3407 
3408 	kfree(oparams);
3409 out:
3410 	kfree(params);
3411 	return err;
3412 }
3413 
3414 static int snd_pcm_hw_params_old_user(struct snd_pcm_substream *substream,
3415 				      struct snd_pcm_hw_params_old __user * _oparams)
3416 {
3417 	struct snd_pcm_hw_params *params;
3418 	struct snd_pcm_hw_params_old *oparams = NULL;
3419 	int err;
3420 
3421 	params = kmalloc(sizeof(*params), GFP_KERNEL);
3422 	if (!params)
3423 		return -ENOMEM;
3424 
3425 	oparams = memdup_user(_oparams, sizeof(*oparams));
3426 	if (IS_ERR(oparams)) {
3427 		err = PTR_ERR(oparams);
3428 		goto out;
3429 	}
3430 	snd_pcm_hw_convert_from_old_params(params, oparams);
3431 	err = snd_pcm_hw_params(substream, params);
3432 	snd_pcm_hw_convert_to_old_params(oparams, params);
3433 	if (copy_to_user(_oparams, oparams, sizeof(*oparams))) {
3434 		if (!err)
3435 			err = -EFAULT;
3436 	}
3437 
3438 	kfree(oparams);
3439 out:
3440 	kfree(params);
3441 	return err;
3442 }
3443 #endif /* CONFIG_SND_SUPPORT_OLD_API */
3444 
3445 #ifndef CONFIG_MMU
3446 static unsigned long snd_pcm_get_unmapped_area(struct file *file,
3447 					       unsigned long addr,
3448 					       unsigned long len,
3449 					       unsigned long pgoff,
3450 					       unsigned long flags)
3451 {
3452 	struct snd_pcm_file *pcm_file = file->private_data;
3453 	struct snd_pcm_substream *substream = pcm_file->substream;
3454 	struct snd_pcm_runtime *runtime = substream->runtime;
3455 	unsigned long offset = pgoff << PAGE_SHIFT;
3456 
3457 	switch (offset) {
3458 	case SNDRV_PCM_MMAP_OFFSET_STATUS:
3459 		return (unsigned long)runtime->status;
3460 	case SNDRV_PCM_MMAP_OFFSET_CONTROL:
3461 		return (unsigned long)runtime->control;
3462 	default:
3463 		return (unsigned long)runtime->dma_area + offset;
3464 	}
3465 }
3466 #else
3467 # define snd_pcm_get_unmapped_area NULL
3468 #endif
3469 
3470 /*
3471  *  Register section
3472  */
3473 
3474 const struct file_operations snd_pcm_f_ops[2] = {
3475 	{
3476 		.owner =		THIS_MODULE,
3477 		.write =		snd_pcm_write,
3478 		.aio_write =		snd_pcm_aio_write,
3479 		.open =			snd_pcm_playback_open,
3480 		.release =		snd_pcm_release,
3481 		.llseek =		no_llseek,
3482 		.poll =			snd_pcm_playback_poll,
3483 		.unlocked_ioctl =	snd_pcm_playback_ioctl,
3484 		.compat_ioctl = 	snd_pcm_ioctl_compat,
3485 		.mmap =			snd_pcm_mmap,
3486 		.fasync =		snd_pcm_fasync,
3487 		.get_unmapped_area =	snd_pcm_get_unmapped_area,
3488 	},
3489 	{
3490 		.owner =		THIS_MODULE,
3491 		.read =			snd_pcm_read,
3492 		.aio_read =		snd_pcm_aio_read,
3493 		.open =			snd_pcm_capture_open,
3494 		.release =		snd_pcm_release,
3495 		.llseek =		no_llseek,
3496 		.poll =			snd_pcm_capture_poll,
3497 		.unlocked_ioctl =	snd_pcm_capture_ioctl,
3498 		.compat_ioctl = 	snd_pcm_ioctl_compat,
3499 		.mmap =			snd_pcm_mmap,
3500 		.fasync =		snd_pcm_fasync,
3501 		.get_unmapped_area =	snd_pcm_get_unmapped_area,
3502 	}
3503 };
3504