2 * Digital Audio (PCM) abstract layer
3 * Copyright (c) by Jaroslav Kysela <perex@suse.cz>
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.
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.
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
22 #include <sound/driver.h>
24 #include <linux/smp_lock.h>
25 #include <linux/file.h>
26 #include <linux/slab.h>
27 #include <linux/time.h>
28 #include <linux/uio.h>
29 #include <sound/core.h>
30 #include <sound/control.h>
31 #include <sound/info.h>
32 #include <sound/pcm.h>
33 #include <sound/pcm_params.h>
34 #include <sound/timer.h>
35 #include <sound/minors.h>
42 struct snd_pcm_hw_params_old
{
44 unsigned int masks
[SNDRV_PCM_HW_PARAM_SUBFORMAT
-
45 SNDRV_PCM_HW_PARAM_ACCESS
+ 1];
46 struct snd_interval intervals
[SNDRV_PCM_HW_PARAM_TICK_TIME
-
47 SNDRV_PCM_HW_PARAM_SAMPLE_BITS
+ 1];
52 unsigned int rate_num
;
53 unsigned int rate_den
;
54 snd_pcm_uframes_t fifo_size
;
55 unsigned char reserved
[64];
58 #ifdef CONFIG_SND_SUPPORT_OLD_API
59 #define SNDRV_PCM_IOCTL_HW_REFINE_OLD _IOWR('A', 0x10, struct snd_pcm_hw_params_old)
60 #define SNDRV_PCM_IOCTL_HW_PARAMS_OLD _IOWR('A', 0x11, struct snd_pcm_hw_params_old)
62 static int snd_pcm_hw_refine_old_user(struct snd_pcm_substream
*substream
,
63 struct snd_pcm_hw_params_old __user
* _oparams
);
64 static int snd_pcm_hw_params_old_user(struct snd_pcm_substream
*substream
,
65 struct snd_pcm_hw_params_old __user
* _oparams
);
67 static int snd_pcm_open(struct file
*file
, struct snd_pcm
*pcm
, int stream
);
73 DEFINE_RWLOCK(snd_pcm_link_rwlock
);
74 EXPORT_SYMBOL(snd_pcm_link_rwlock
);
76 static DECLARE_RWSEM(snd_pcm_link_rwsem
);
78 static inline mm_segment_t
snd_enter_user(void)
80 mm_segment_t fs
= get_fs();
85 static inline void snd_leave_user(mm_segment_t fs
)
92 int snd_pcm_info(struct snd_pcm_substream
*substream
, struct snd_pcm_info
*info
)
94 struct snd_pcm_runtime
*runtime
;
95 struct snd_pcm
*pcm
= substream
->pcm
;
96 struct snd_pcm_str
*pstr
= substream
->pstr
;
98 snd_assert(substream
!= NULL
, return -ENXIO
);
99 memset(info
, 0, sizeof(*info
));
100 info
->card
= pcm
->card
->number
;
101 info
->device
= pcm
->device
;
102 info
->stream
= substream
->stream
;
103 info
->subdevice
= substream
->number
;
104 strlcpy(info
->id
, pcm
->id
, sizeof(info
->id
));
105 strlcpy(info
->name
, pcm
->name
, sizeof(info
->name
));
106 info
->dev_class
= pcm
->dev_class
;
107 info
->dev_subclass
= pcm
->dev_subclass
;
108 info
->subdevices_count
= pstr
->substream_count
;
109 info
->subdevices_avail
= pstr
->substream_count
- pstr
->substream_opened
;
110 strlcpy(info
->subname
, substream
->name
, sizeof(info
->subname
));
111 runtime
= substream
->runtime
;
112 /* AB: FIXME!!! This is definitely nonsense */
114 info
->sync
= runtime
->sync
;
115 substream
->ops
->ioctl(substream
, SNDRV_PCM_IOCTL1_INFO
, info
);
120 int snd_pcm_info_user(struct snd_pcm_substream
*substream
,
121 struct snd_pcm_info __user
* _info
)
123 struct snd_pcm_info
*info
;
126 info
= kmalloc(sizeof(*info
), GFP_KERNEL
);
129 err
= snd_pcm_info(substream
, info
);
131 if (copy_to_user(_info
, info
, sizeof(*info
)))
141 #define HW_PARAM(v) [SNDRV_PCM_HW_PARAM_##v] = #v
142 char *snd_pcm_hw_param_names
[] = {
146 HW_PARAM(SAMPLE_BITS
),
147 HW_PARAM(FRAME_BITS
),
150 HW_PARAM(PERIOD_TIME
),
151 HW_PARAM(PERIOD_SIZE
),
152 HW_PARAM(PERIOD_BYTES
),
154 HW_PARAM(BUFFER_TIME
),
155 HW_PARAM(BUFFER_SIZE
),
156 HW_PARAM(BUFFER_BYTES
),
161 int snd_pcm_hw_refine(struct snd_pcm_substream
*substream
,
162 struct snd_pcm_hw_params
*params
)
165 struct snd_pcm_hardware
*hw
;
166 struct snd_interval
*i
= NULL
;
167 struct snd_mask
*m
= NULL
;
168 struct snd_pcm_hw_constraints
*constrs
= &substream
->runtime
->hw_constraints
;
169 unsigned int rstamps
[constrs
->rules_num
];
170 unsigned int vstamps
[SNDRV_PCM_HW_PARAM_LAST_INTERVAL
+ 1];
171 unsigned int stamp
= 2;
175 params
->fifo_size
= 0;
176 if (params
->rmask
& (1 << SNDRV_PCM_HW_PARAM_SAMPLE_BITS
))
178 if (params
->rmask
& (1 << SNDRV_PCM_HW_PARAM_RATE
)) {
179 params
->rate_num
= 0;
180 params
->rate_den
= 0;
183 for (k
= SNDRV_PCM_HW_PARAM_FIRST_MASK
; k
<= SNDRV_PCM_HW_PARAM_LAST_MASK
; k
++) {
184 m
= hw_param_mask(params
, k
);
185 if (snd_mask_empty(m
))
187 if (!(params
->rmask
& (1 << k
)))
190 printk("%s = ", snd_pcm_hw_param_names
[k
]);
191 printk("%04x%04x%04x%04x -> ", m
->bits
[3], m
->bits
[2], m
->bits
[1], m
->bits
[0]);
193 changed
= snd_mask_refine(m
, constrs_mask(constrs
, k
));
195 printk("%04x%04x%04x%04x\n", m
->bits
[3], m
->bits
[2], m
->bits
[1], m
->bits
[0]);
198 params
->cmask
|= 1 << k
;
203 for (k
= SNDRV_PCM_HW_PARAM_FIRST_INTERVAL
; k
<= SNDRV_PCM_HW_PARAM_LAST_INTERVAL
; k
++) {
204 i
= hw_param_interval(params
, k
);
205 if (snd_interval_empty(i
))
207 if (!(params
->rmask
& (1 << k
)))
210 printk("%s = ", snd_pcm_hw_param_names
[k
]);
215 i
->openmin
? '(' : '[', i
->min
,
216 i
->max
, i
->openmax
? ')' : ']');
219 changed
= snd_interval_refine(i
, constrs_interval(constrs
, k
));
224 printk("%c%u %u%c\n",
225 i
->openmin
? '(' : '[', i
->min
,
226 i
->max
, i
->openmax
? ')' : ']');
229 params
->cmask
|= 1 << k
;
234 for (k
= 0; k
< constrs
->rules_num
; k
++)
236 for (k
= 0; k
<= SNDRV_PCM_HW_PARAM_LAST_INTERVAL
; k
++)
237 vstamps
[k
] = (params
->rmask
& (1 << k
)) ? 1 : 0;
240 for (k
= 0; k
< constrs
->rules_num
; k
++) {
241 struct snd_pcm_hw_rule
*r
= &constrs
->rules
[k
];
244 if (r
->cond
&& !(r
->cond
& params
->flags
))
246 for (d
= 0; r
->deps
[d
] >= 0; d
++) {
247 if (vstamps
[r
->deps
[d
]] > rstamps
[k
]) {
255 printk("Rule %d [%p]: ", k
, r
->func
);
257 printk("%s = ", snd_pcm_hw_param_names
[r
->var
]);
258 if (hw_is_mask(r
->var
)) {
259 m
= hw_param_mask(params
, r
->var
);
260 printk("%x", *m
->bits
);
262 i
= hw_param_interval(params
, r
->var
);
267 i
->openmin
? '(' : '[', i
->min
,
268 i
->max
, i
->openmax
? ')' : ']');
272 changed
= r
->func(params
, r
);
276 if (hw_is_mask(r
->var
))
277 printk("%x", *m
->bits
);
283 i
->openmin
? '(' : '[', i
->min
,
284 i
->max
, i
->openmax
? ')' : ']');
290 if (changed
&& r
->var
>= 0) {
291 params
->cmask
|= (1 << r
->var
);
292 vstamps
[r
->var
] = stamp
;
300 if (!params
->msbits
) {
301 i
= hw_param_interval(params
, SNDRV_PCM_HW_PARAM_SAMPLE_BITS
);
302 if (snd_interval_single(i
))
303 params
->msbits
= snd_interval_value(i
);
306 if (!params
->rate_den
) {
307 i
= hw_param_interval(params
, SNDRV_PCM_HW_PARAM_RATE
);
308 if (snd_interval_single(i
)) {
309 params
->rate_num
= snd_interval_value(i
);
310 params
->rate_den
= 1;
314 hw
= &substream
->runtime
->hw
;
316 params
->info
= hw
->info
;
317 if (!params
->fifo_size
)
318 params
->fifo_size
= hw
->fifo_size
;
323 EXPORT_SYMBOL(snd_pcm_hw_refine
);
325 static int snd_pcm_hw_refine_user(struct snd_pcm_substream
*substream
,
326 struct snd_pcm_hw_params __user
* _params
)
328 struct snd_pcm_hw_params
*params
;
331 params
= kmalloc(sizeof(*params
), GFP_KERNEL
);
336 if (copy_from_user(params
, _params
, sizeof(*params
))) {
340 err
= snd_pcm_hw_refine(substream
, params
);
341 if (copy_to_user(_params
, params
, sizeof(*params
))) {
350 static int snd_pcm_hw_params(struct snd_pcm_substream
*substream
,
351 struct snd_pcm_hw_params
*params
)
353 struct snd_pcm_runtime
*runtime
;
356 snd_pcm_uframes_t frames
;
358 snd_assert(substream
!= NULL
, return -ENXIO
);
359 runtime
= substream
->runtime
;
360 snd_assert(runtime
!= NULL
, return -ENXIO
);
361 snd_pcm_stream_lock_irq(substream
);
362 switch (runtime
->status
->state
) {
363 case SNDRV_PCM_STATE_OPEN
:
364 case SNDRV_PCM_STATE_SETUP
:
365 case SNDRV_PCM_STATE_PREPARED
:
368 snd_pcm_stream_unlock_irq(substream
);
371 snd_pcm_stream_unlock_irq(substream
);
372 #if defined(CONFIG_SND_PCM_OSS) || defined(CONFIG_SND_PCM_OSS_MODULE)
373 if (!substream
->oss
.oss
)
375 if (atomic_read(&substream
->mmap_count
))
379 err
= snd_pcm_hw_refine(substream
, params
);
383 err
= snd_pcm_hw_params_choose(substream
, params
);
387 if (substream
->ops
->hw_params
!= NULL
) {
388 err
= substream
->ops
->hw_params(substream
, params
);
393 runtime
->access
= params_access(params
);
394 runtime
->format
= params_format(params
);
395 runtime
->subformat
= params_subformat(params
);
396 runtime
->channels
= params_channels(params
);
397 runtime
->rate
= params_rate(params
);
398 runtime
->period_size
= params_period_size(params
);
399 runtime
->periods
= params_periods(params
);
400 runtime
->buffer_size
= params_buffer_size(params
);
401 runtime
->tick_time
= params_tick_time(params
);
402 runtime
->info
= params
->info
;
403 runtime
->rate_num
= params
->rate_num
;
404 runtime
->rate_den
= params
->rate_den
;
406 bits
= snd_pcm_format_physical_width(runtime
->format
);
407 runtime
->sample_bits
= bits
;
408 bits
*= runtime
->channels
;
409 runtime
->frame_bits
= bits
;
411 while (bits
% 8 != 0) {
415 runtime
->byte_align
= bits
/ 8;
416 runtime
->min_align
= frames
;
418 /* Default sw params */
419 runtime
->tstamp_mode
= SNDRV_PCM_TSTAMP_NONE
;
420 runtime
->period_step
= 1;
421 runtime
->sleep_min
= 0;
422 runtime
->control
->avail_min
= runtime
->period_size
;
423 runtime
->xfer_align
= runtime
->period_size
;
424 runtime
->start_threshold
= 1;
425 runtime
->stop_threshold
= runtime
->buffer_size
;
426 runtime
->silence_threshold
= 0;
427 runtime
->silence_size
= 0;
428 runtime
->boundary
= runtime
->buffer_size
;
429 while (runtime
->boundary
* 2 <= LONG_MAX
- runtime
->buffer_size
)
430 runtime
->boundary
*= 2;
432 snd_pcm_timer_resolution_change(substream
);
433 runtime
->status
->state
= SNDRV_PCM_STATE_SETUP
;
436 /* hardware might be unuseable from this time,
437 so we force application to retry to set
438 the correct hardware parameter settings */
439 runtime
->status
->state
= SNDRV_PCM_STATE_OPEN
;
440 if (substream
->ops
->hw_free
!= NULL
)
441 substream
->ops
->hw_free(substream
);
445 static int snd_pcm_hw_params_user(struct snd_pcm_substream
*substream
,
446 struct snd_pcm_hw_params __user
* _params
)
448 struct snd_pcm_hw_params
*params
;
451 params
= kmalloc(sizeof(*params
), GFP_KERNEL
);
456 if (copy_from_user(params
, _params
, sizeof(*params
))) {
460 err
= snd_pcm_hw_params(substream
, params
);
461 if (copy_to_user(_params
, params
, sizeof(*params
))) {
470 static int snd_pcm_hw_free(struct snd_pcm_substream
*substream
)
472 struct snd_pcm_runtime
*runtime
;
475 snd_assert(substream
!= NULL
, return -ENXIO
);
476 runtime
= substream
->runtime
;
477 snd_assert(runtime
!= NULL
, return -ENXIO
);
478 snd_pcm_stream_lock_irq(substream
);
479 switch (runtime
->status
->state
) {
480 case SNDRV_PCM_STATE_SETUP
:
481 case SNDRV_PCM_STATE_PREPARED
:
484 snd_pcm_stream_unlock_irq(substream
);
487 snd_pcm_stream_unlock_irq(substream
);
488 if (atomic_read(&substream
->mmap_count
))
490 if (substream
->ops
->hw_free
)
491 result
= substream
->ops
->hw_free(substream
);
492 runtime
->status
->state
= SNDRV_PCM_STATE_OPEN
;
496 static int snd_pcm_sw_params(struct snd_pcm_substream
*substream
,
497 struct snd_pcm_sw_params
*params
)
499 struct snd_pcm_runtime
*runtime
;
501 snd_assert(substream
!= NULL
, return -ENXIO
);
502 runtime
= substream
->runtime
;
503 snd_assert(runtime
!= NULL
, return -ENXIO
);
504 snd_pcm_stream_lock_irq(substream
);
505 if (runtime
->status
->state
== SNDRV_PCM_STATE_OPEN
) {
506 snd_pcm_stream_unlock_irq(substream
);
509 snd_pcm_stream_unlock_irq(substream
);
511 if (params
->tstamp_mode
> SNDRV_PCM_TSTAMP_LAST
)
513 if (params
->avail_min
== 0)
515 if (params
->xfer_align
== 0 ||
516 params
->xfer_align
% runtime
->min_align
!= 0)
518 if (params
->silence_size
>= runtime
->boundary
) {
519 if (params
->silence_threshold
!= 0)
522 if (params
->silence_size
> params
->silence_threshold
)
524 if (params
->silence_threshold
> runtime
->buffer_size
)
527 snd_pcm_stream_lock_irq(substream
);
528 runtime
->tstamp_mode
= params
->tstamp_mode
;
529 runtime
->sleep_min
= params
->sleep_min
;
530 runtime
->period_step
= params
->period_step
;
531 runtime
->control
->avail_min
= params
->avail_min
;
532 runtime
->start_threshold
= params
->start_threshold
;
533 runtime
->stop_threshold
= params
->stop_threshold
;
534 runtime
->silence_threshold
= params
->silence_threshold
;
535 runtime
->silence_size
= params
->silence_size
;
536 runtime
->xfer_align
= params
->xfer_align
;
537 params
->boundary
= runtime
->boundary
;
538 if (snd_pcm_running(substream
)) {
539 if (runtime
->sleep_min
)
540 snd_pcm_tick_prepare(substream
);
542 snd_pcm_tick_set(substream
, 0);
543 if (substream
->stream
== SNDRV_PCM_STREAM_PLAYBACK
&&
544 runtime
->silence_size
> 0)
545 snd_pcm_playback_silence(substream
, ULONG_MAX
);
546 wake_up(&runtime
->sleep
);
548 snd_pcm_stream_unlock_irq(substream
);
552 static int snd_pcm_sw_params_user(struct snd_pcm_substream
*substream
,
553 struct snd_pcm_sw_params __user
* _params
)
555 struct snd_pcm_sw_params params
;
557 if (copy_from_user(¶ms
, _params
, sizeof(params
)))
559 err
= snd_pcm_sw_params(substream
, ¶ms
);
560 if (copy_to_user(_params
, ¶ms
, sizeof(params
)))
565 int snd_pcm_status(struct snd_pcm_substream
*substream
,
566 struct snd_pcm_status
*status
)
568 struct snd_pcm_runtime
*runtime
= substream
->runtime
;
570 snd_pcm_stream_lock_irq(substream
);
571 status
->state
= runtime
->status
->state
;
572 status
->suspended_state
= runtime
->status
->suspended_state
;
573 if (status
->state
== SNDRV_PCM_STATE_OPEN
)
575 status
->trigger_tstamp
= runtime
->trigger_tstamp
;
576 if (snd_pcm_running(substream
)) {
577 snd_pcm_update_hw_ptr(substream
);
578 if (runtime
->tstamp_mode
& SNDRV_PCM_TSTAMP_MMAP
)
579 status
->tstamp
= runtime
->status
->tstamp
;
581 getnstimeofday(&status
->tstamp
);
583 getnstimeofday(&status
->tstamp
);
584 status
->appl_ptr
= runtime
->control
->appl_ptr
;
585 status
->hw_ptr
= runtime
->status
->hw_ptr
;
586 if (substream
->stream
== SNDRV_PCM_STREAM_PLAYBACK
) {
587 status
->avail
= snd_pcm_playback_avail(runtime
);
588 if (runtime
->status
->state
== SNDRV_PCM_STATE_RUNNING
||
589 runtime
->status
->state
== SNDRV_PCM_STATE_DRAINING
)
590 status
->delay
= runtime
->buffer_size
- status
->avail
;
594 status
->avail
= snd_pcm_capture_avail(runtime
);
595 if (runtime
->status
->state
== SNDRV_PCM_STATE_RUNNING
)
596 status
->delay
= status
->avail
;
600 status
->avail_max
= runtime
->avail_max
;
601 status
->overrange
= runtime
->overrange
;
602 runtime
->avail_max
= 0;
603 runtime
->overrange
= 0;
605 snd_pcm_stream_unlock_irq(substream
);
609 static int snd_pcm_status_user(struct snd_pcm_substream
*substream
,
610 struct snd_pcm_status __user
* _status
)
612 struct snd_pcm_status status
;
613 struct snd_pcm_runtime
*runtime
;
616 snd_assert(substream
!= NULL
, return -ENXIO
);
617 runtime
= substream
->runtime
;
618 memset(&status
, 0, sizeof(status
));
619 res
= snd_pcm_status(substream
, &status
);
622 if (copy_to_user(_status
, &status
, sizeof(status
)))
627 static int snd_pcm_channel_info(struct snd_pcm_substream
*substream
,
628 struct snd_pcm_channel_info
* info
)
630 struct snd_pcm_runtime
*runtime
;
631 unsigned int channel
;
633 snd_assert(substream
!= NULL
, return -ENXIO
);
634 channel
= info
->channel
;
635 runtime
= substream
->runtime
;
636 snd_pcm_stream_lock_irq(substream
);
637 if (runtime
->status
->state
== SNDRV_PCM_STATE_OPEN
) {
638 snd_pcm_stream_unlock_irq(substream
);
641 snd_pcm_stream_unlock_irq(substream
);
642 if (channel
>= runtime
->channels
)
644 memset(info
, 0, sizeof(*info
));
645 info
->channel
= channel
;
646 return substream
->ops
->ioctl(substream
, SNDRV_PCM_IOCTL1_CHANNEL_INFO
, info
);
649 static int snd_pcm_channel_info_user(struct snd_pcm_substream
*substream
,
650 struct snd_pcm_channel_info __user
* _info
)
652 struct snd_pcm_channel_info info
;
655 if (copy_from_user(&info
, _info
, sizeof(info
)))
657 res
= snd_pcm_channel_info(substream
, &info
);
660 if (copy_to_user(_info
, &info
, sizeof(info
)))
665 static void snd_pcm_trigger_tstamp(struct snd_pcm_substream
*substream
)
667 struct snd_pcm_runtime
*runtime
= substream
->runtime
;
668 if (runtime
->trigger_master
== NULL
)
670 if (runtime
->trigger_master
== substream
) {
671 getnstimeofday(&runtime
->trigger_tstamp
);
673 snd_pcm_trigger_tstamp(runtime
->trigger_master
);
674 runtime
->trigger_tstamp
= runtime
->trigger_master
->runtime
->trigger_tstamp
;
676 runtime
->trigger_master
= NULL
;
680 int (*pre_action
)(struct snd_pcm_substream
*substream
, int state
);
681 int (*do_action
)(struct snd_pcm_substream
*substream
, int state
);
682 void (*undo_action
)(struct snd_pcm_substream
*substream
, int state
);
683 void (*post_action
)(struct snd_pcm_substream
*substream
, int state
);
687 * this functions is core for handling of linked stream
688 * Note: the stream state might be changed also on failure
689 * Note2: call with calling stream lock + link lock
691 static int snd_pcm_action_group(struct action_ops
*ops
,
692 struct snd_pcm_substream
*substream
,
693 int state
, int do_lock
)
695 struct list_head
*pos
;
696 struct snd_pcm_substream
*s
= NULL
;
697 struct snd_pcm_substream
*s1
;
700 snd_pcm_group_for_each(pos
, substream
) {
701 s
= snd_pcm_group_substream_entry(pos
);
702 if (do_lock
&& s
!= substream
)
703 spin_lock(&s
->self_group
.lock
);
704 res
= ops
->pre_action(s
, state
);
708 snd_pcm_group_for_each(pos
, substream
) {
709 s
= snd_pcm_group_substream_entry(pos
);
710 res
= ops
->do_action(s
, state
);
712 if (ops
->undo_action
) {
713 snd_pcm_group_for_each(pos
, substream
) {
714 s1
= snd_pcm_group_substream_entry(pos
);
715 if (s1
== s
) /* failed stream */
717 ops
->undo_action(s1
, state
);
720 s
= NULL
; /* unlock all */
724 snd_pcm_group_for_each(pos
, substream
) {
725 s
= snd_pcm_group_substream_entry(pos
);
726 ops
->post_action(s
, state
);
731 snd_pcm_group_for_each(pos
, substream
) {
732 s1
= snd_pcm_group_substream_entry(pos
);
734 spin_unlock(&s1
->self_group
.lock
);
735 if (s1
== s
) /* end */
743 * Note: call with stream lock
745 static int snd_pcm_action_single(struct action_ops
*ops
,
746 struct snd_pcm_substream
*substream
,
751 res
= ops
->pre_action(substream
, state
);
754 res
= ops
->do_action(substream
, state
);
756 ops
->post_action(substream
, state
);
757 else if (ops
->undo_action
)
758 ops
->undo_action(substream
, state
);
763 * Note: call with stream lock
765 static int snd_pcm_action(struct action_ops
*ops
,
766 struct snd_pcm_substream
*substream
,
771 if (snd_pcm_stream_linked(substream
)) {
772 if (!spin_trylock(&substream
->group
->lock
)) {
773 spin_unlock(&substream
->self_group
.lock
);
774 spin_lock(&substream
->group
->lock
);
775 spin_lock(&substream
->self_group
.lock
);
777 res
= snd_pcm_action_group(ops
, substream
, state
, 1);
778 spin_unlock(&substream
->group
->lock
);
780 res
= snd_pcm_action_single(ops
, substream
, state
);
786 * Note: don't use any locks before
788 static int snd_pcm_action_lock_irq(struct action_ops
*ops
,
789 struct snd_pcm_substream
*substream
,
794 read_lock_irq(&snd_pcm_link_rwlock
);
795 if (snd_pcm_stream_linked(substream
)) {
796 spin_lock(&substream
->group
->lock
);
797 spin_lock(&substream
->self_group
.lock
);
798 res
= snd_pcm_action_group(ops
, substream
, state
, 1);
799 spin_unlock(&substream
->self_group
.lock
);
800 spin_unlock(&substream
->group
->lock
);
802 spin_lock(&substream
->self_group
.lock
);
803 res
= snd_pcm_action_single(ops
, substream
, state
);
804 spin_unlock(&substream
->self_group
.lock
);
806 read_unlock_irq(&snd_pcm_link_rwlock
);
812 static int snd_pcm_action_nonatomic(struct action_ops
*ops
,
813 struct snd_pcm_substream
*substream
,
818 down_read(&snd_pcm_link_rwsem
);
819 if (snd_pcm_stream_linked(substream
))
820 res
= snd_pcm_action_group(ops
, substream
, state
, 0);
822 res
= snd_pcm_action_single(ops
, substream
, state
);
823 up_read(&snd_pcm_link_rwsem
);
830 static int snd_pcm_pre_start(struct snd_pcm_substream
*substream
, int state
)
832 struct snd_pcm_runtime
*runtime
= substream
->runtime
;
833 if (runtime
->status
->state
!= SNDRV_PCM_STATE_PREPARED
)
835 if (substream
->stream
== SNDRV_PCM_STREAM_PLAYBACK
&&
836 !snd_pcm_playback_data(substream
))
838 runtime
->trigger_master
= substream
;
842 static int snd_pcm_do_start(struct snd_pcm_substream
*substream
, int state
)
844 if (substream
->runtime
->trigger_master
!= substream
)
846 return substream
->ops
->trigger(substream
, SNDRV_PCM_TRIGGER_START
);
849 static void snd_pcm_undo_start(struct snd_pcm_substream
*substream
, int state
)
851 if (substream
->runtime
->trigger_master
== substream
)
852 substream
->ops
->trigger(substream
, SNDRV_PCM_TRIGGER_STOP
);
855 static void snd_pcm_post_start(struct snd_pcm_substream
*substream
, int state
)
857 struct snd_pcm_runtime
*runtime
= substream
->runtime
;
858 snd_pcm_trigger_tstamp(substream
);
859 runtime
->status
->state
= state
;
860 if (substream
->stream
== SNDRV_PCM_STREAM_PLAYBACK
&&
861 runtime
->silence_size
> 0)
862 snd_pcm_playback_silence(substream
, ULONG_MAX
);
863 if (runtime
->sleep_min
)
864 snd_pcm_tick_prepare(substream
);
865 if (substream
->timer
)
866 snd_timer_notify(substream
->timer
, SNDRV_TIMER_EVENT_MSTART
,
867 &runtime
->trigger_tstamp
);
870 static struct action_ops snd_pcm_action_start
= {
871 .pre_action
= snd_pcm_pre_start
,
872 .do_action
= snd_pcm_do_start
,
873 .undo_action
= snd_pcm_undo_start
,
874 .post_action
= snd_pcm_post_start
879 * @substream: the PCM substream instance
881 * Start all linked streams.
883 int snd_pcm_start(struct snd_pcm_substream
*substream
)
885 return snd_pcm_action(&snd_pcm_action_start
, substream
,
886 SNDRV_PCM_STATE_RUNNING
);
892 static int snd_pcm_pre_stop(struct snd_pcm_substream
*substream
, int state
)
894 struct snd_pcm_runtime
*runtime
= substream
->runtime
;
895 if (runtime
->status
->state
== SNDRV_PCM_STATE_OPEN
)
897 runtime
->trigger_master
= substream
;
901 static int snd_pcm_do_stop(struct snd_pcm_substream
*substream
, int state
)
903 if (substream
->runtime
->trigger_master
== substream
&&
904 snd_pcm_running(substream
))
905 substream
->ops
->trigger(substream
, SNDRV_PCM_TRIGGER_STOP
);
906 return 0; /* unconditonally stop all substreams */
909 static void snd_pcm_post_stop(struct snd_pcm_substream
*substream
, int state
)
911 struct snd_pcm_runtime
*runtime
= substream
->runtime
;
912 if (runtime
->status
->state
!= state
) {
913 snd_pcm_trigger_tstamp(substream
);
914 if (substream
->timer
)
915 snd_timer_notify(substream
->timer
, SNDRV_TIMER_EVENT_MSTOP
,
916 &runtime
->trigger_tstamp
);
917 runtime
->status
->state
= state
;
918 snd_pcm_tick_set(substream
, 0);
920 wake_up(&runtime
->sleep
);
923 static struct action_ops snd_pcm_action_stop
= {
924 .pre_action
= snd_pcm_pre_stop
,
925 .do_action
= snd_pcm_do_stop
,
926 .post_action
= snd_pcm_post_stop
931 * @substream: the PCM substream instance
932 * @state: PCM state after stopping the stream
934 * Try to stop all running streams in the substream group.
935 * The state of each stream is changed to the given value after that unconditionally.
937 int snd_pcm_stop(struct snd_pcm_substream
*substream
, int state
)
939 return snd_pcm_action(&snd_pcm_action_stop
, substream
, state
);
942 EXPORT_SYMBOL(snd_pcm_stop
);
946 * @substream: the PCM substream
948 * Stop the DMA only when the given stream is playback.
949 * The state is changed to SETUP.
950 * Unlike snd_pcm_stop(), this affects only the given stream.
952 int snd_pcm_drain_done(struct snd_pcm_substream
*substream
)
954 return snd_pcm_action_single(&snd_pcm_action_stop
, substream
,
955 SNDRV_PCM_STATE_SETUP
);
961 static int snd_pcm_pre_pause(struct snd_pcm_substream
*substream
, int push
)
963 struct snd_pcm_runtime
*runtime
= substream
->runtime
;
964 if (!(runtime
->info
& SNDRV_PCM_INFO_PAUSE
))
967 if (runtime
->status
->state
!= SNDRV_PCM_STATE_RUNNING
)
969 } else if (runtime
->status
->state
!= SNDRV_PCM_STATE_PAUSED
)
971 runtime
->trigger_master
= substream
;
975 static int snd_pcm_do_pause(struct snd_pcm_substream
*substream
, int push
)
977 if (substream
->runtime
->trigger_master
!= substream
)
979 return substream
->ops
->trigger(substream
,
980 push
? SNDRV_PCM_TRIGGER_PAUSE_PUSH
:
981 SNDRV_PCM_TRIGGER_PAUSE_RELEASE
);
984 static void snd_pcm_undo_pause(struct snd_pcm_substream
*substream
, int push
)
986 if (substream
->runtime
->trigger_master
== substream
)
987 substream
->ops
->trigger(substream
,
988 push
? SNDRV_PCM_TRIGGER_PAUSE_RELEASE
:
989 SNDRV_PCM_TRIGGER_PAUSE_PUSH
);
992 static void snd_pcm_post_pause(struct snd_pcm_substream
*substream
, int push
)
994 struct snd_pcm_runtime
*runtime
= substream
->runtime
;
995 snd_pcm_trigger_tstamp(substream
);
997 runtime
->status
->state
= SNDRV_PCM_STATE_PAUSED
;
998 if (substream
->timer
)
999 snd_timer_notify(substream
->timer
,
1000 SNDRV_TIMER_EVENT_MPAUSE
,
1001 &runtime
->trigger_tstamp
);
1002 snd_pcm_tick_set(substream
, 0);
1003 wake_up(&runtime
->sleep
);
1005 runtime
->status
->state
= SNDRV_PCM_STATE_RUNNING
;
1006 if (runtime
->sleep_min
)
1007 snd_pcm_tick_prepare(substream
);
1008 if (substream
->timer
)
1009 snd_timer_notify(substream
->timer
,
1010 SNDRV_TIMER_EVENT_MCONTINUE
,
1011 &runtime
->trigger_tstamp
);
1015 static struct action_ops snd_pcm_action_pause
= {
1016 .pre_action
= snd_pcm_pre_pause
,
1017 .do_action
= snd_pcm_do_pause
,
1018 .undo_action
= snd_pcm_undo_pause
,
1019 .post_action
= snd_pcm_post_pause
1023 * Push/release the pause for all linked streams.
1025 static int snd_pcm_pause(struct snd_pcm_substream
*substream
, int push
)
1027 return snd_pcm_action(&snd_pcm_action_pause
, substream
, push
);
1033 static int snd_pcm_pre_suspend(struct snd_pcm_substream
*substream
, int state
)
1035 struct snd_pcm_runtime
*runtime
= substream
->runtime
;
1036 if (runtime
->status
->state
== SNDRV_PCM_STATE_SUSPENDED
)
1038 runtime
->trigger_master
= substream
;
1042 static int snd_pcm_do_suspend(struct snd_pcm_substream
*substream
, int state
)
1044 struct snd_pcm_runtime
*runtime
= substream
->runtime
;
1045 if (runtime
->trigger_master
!= substream
)
1047 if (! snd_pcm_running(substream
))
1049 substream
->ops
->trigger(substream
, SNDRV_PCM_TRIGGER_SUSPEND
);
1050 return 0; /* suspend unconditionally */
1053 static void snd_pcm_post_suspend(struct snd_pcm_substream
*substream
, int state
)
1055 struct snd_pcm_runtime
*runtime
= substream
->runtime
;
1056 snd_pcm_trigger_tstamp(substream
);
1057 if (substream
->timer
)
1058 snd_timer_notify(substream
->timer
, SNDRV_TIMER_EVENT_MSUSPEND
,
1059 &runtime
->trigger_tstamp
);
1060 runtime
->status
->suspended_state
= runtime
->status
->state
;
1061 runtime
->status
->state
= SNDRV_PCM_STATE_SUSPENDED
;
1062 snd_pcm_tick_set(substream
, 0);
1063 wake_up(&runtime
->sleep
);
1066 static struct action_ops snd_pcm_action_suspend
= {
1067 .pre_action
= snd_pcm_pre_suspend
,
1068 .do_action
= snd_pcm_do_suspend
,
1069 .post_action
= snd_pcm_post_suspend
1074 * @substream: the PCM substream
1076 * Trigger SUSPEND to all linked streams.
1077 * After this call, all streams are changed to SUSPENDED state.
1079 int snd_pcm_suspend(struct snd_pcm_substream
*substream
)
1082 unsigned long flags
;
1087 snd_pcm_stream_lock_irqsave(substream
, flags
);
1088 err
= snd_pcm_action(&snd_pcm_action_suspend
, substream
, 0);
1089 snd_pcm_stream_unlock_irqrestore(substream
, flags
);
1093 EXPORT_SYMBOL(snd_pcm_suspend
);
1096 * snd_pcm_suspend_all
1097 * @pcm: the PCM instance
1099 * Trigger SUSPEND to all substreams in the given pcm.
1100 * After this call, all streams are changed to SUSPENDED state.
1102 int snd_pcm_suspend_all(struct snd_pcm
*pcm
)
1104 struct snd_pcm_substream
*substream
;
1105 int stream
, err
= 0;
1110 for (stream
= 0; stream
< 2; stream
++) {
1111 for (substream
= pcm
->streams
[stream
].substream
;
1112 substream
; substream
= substream
->next
) {
1113 /* FIXME: the open/close code should lock this as well */
1114 if (substream
->runtime
== NULL
)
1116 err
= snd_pcm_suspend(substream
);
1117 if (err
< 0 && err
!= -EBUSY
)
1124 EXPORT_SYMBOL(snd_pcm_suspend_all
);
1128 static int snd_pcm_pre_resume(struct snd_pcm_substream
*substream
, int state
)
1130 struct snd_pcm_runtime
*runtime
= substream
->runtime
;
1131 if (!(runtime
->info
& SNDRV_PCM_INFO_RESUME
))
1133 runtime
->trigger_master
= substream
;
1137 static int snd_pcm_do_resume(struct snd_pcm_substream
*substream
, int state
)
1139 struct snd_pcm_runtime
*runtime
= substream
->runtime
;
1140 if (runtime
->trigger_master
!= substream
)
1142 /* DMA not running previously? */
1143 if (runtime
->status
->suspended_state
!= SNDRV_PCM_STATE_RUNNING
&&
1144 (runtime
->status
->suspended_state
!= SNDRV_PCM_STATE_DRAINING
||
1145 substream
->stream
!= SNDRV_PCM_STREAM_PLAYBACK
))
1147 return substream
->ops
->trigger(substream
, SNDRV_PCM_TRIGGER_RESUME
);
1150 static void snd_pcm_undo_resume(struct snd_pcm_substream
*substream
, int state
)
1152 if (substream
->runtime
->trigger_master
== substream
&&
1153 snd_pcm_running(substream
))
1154 substream
->ops
->trigger(substream
, SNDRV_PCM_TRIGGER_SUSPEND
);
1157 static void snd_pcm_post_resume(struct snd_pcm_substream
*substream
, int state
)
1159 struct snd_pcm_runtime
*runtime
= substream
->runtime
;
1160 snd_pcm_trigger_tstamp(substream
);
1161 if (substream
->timer
)
1162 snd_timer_notify(substream
->timer
, SNDRV_TIMER_EVENT_MRESUME
,
1163 &runtime
->trigger_tstamp
);
1164 runtime
->status
->state
= runtime
->status
->suspended_state
;
1165 if (runtime
->sleep_min
)
1166 snd_pcm_tick_prepare(substream
);
1169 static struct action_ops snd_pcm_action_resume
= {
1170 .pre_action
= snd_pcm_pre_resume
,
1171 .do_action
= snd_pcm_do_resume
,
1172 .undo_action
= snd_pcm_undo_resume
,
1173 .post_action
= snd_pcm_post_resume
1176 static int snd_pcm_resume(struct snd_pcm_substream
*substream
)
1178 struct snd_card
*card
= substream
->pcm
->card
;
1181 snd_power_lock(card
);
1182 if ((res
= snd_power_wait(card
, SNDRV_CTL_POWER_D0
)) >= 0)
1183 res
= snd_pcm_action_lock_irq(&snd_pcm_action_resume
, substream
, 0);
1184 snd_power_unlock(card
);
1190 static int snd_pcm_resume(struct snd_pcm_substream
*substream
)
1195 #endif /* CONFIG_PM */
1200 * Change the RUNNING stream(s) to XRUN state.
1202 static int snd_pcm_xrun(struct snd_pcm_substream
*substream
)
1204 struct snd_card
*card
= substream
->pcm
->card
;
1205 struct snd_pcm_runtime
*runtime
= substream
->runtime
;
1208 snd_power_lock(card
);
1209 if (runtime
->status
->state
== SNDRV_PCM_STATE_SUSPENDED
) {
1210 result
= snd_power_wait(card
, SNDRV_CTL_POWER_D0
);
1215 snd_pcm_stream_lock_irq(substream
);
1216 switch (runtime
->status
->state
) {
1217 case SNDRV_PCM_STATE_XRUN
:
1218 result
= 0; /* already there */
1220 case SNDRV_PCM_STATE_RUNNING
:
1221 result
= snd_pcm_stop(substream
, SNDRV_PCM_STATE_XRUN
);
1226 snd_pcm_stream_unlock_irq(substream
);
1228 snd_power_unlock(card
);
1235 static int snd_pcm_pre_reset(struct snd_pcm_substream
*substream
, int state
)
1237 struct snd_pcm_runtime
*runtime
= substream
->runtime
;
1238 switch (runtime
->status
->state
) {
1239 case SNDRV_PCM_STATE_RUNNING
:
1240 case SNDRV_PCM_STATE_PREPARED
:
1241 case SNDRV_PCM_STATE_PAUSED
:
1242 case SNDRV_PCM_STATE_SUSPENDED
:
1249 static int snd_pcm_do_reset(struct snd_pcm_substream
*substream
, int state
)
1251 struct snd_pcm_runtime
*runtime
= substream
->runtime
;
1252 int err
= substream
->ops
->ioctl(substream
, SNDRV_PCM_IOCTL1_RESET
, NULL
);
1255 // snd_assert(runtime->status->hw_ptr < runtime->buffer_size, );
1256 runtime
->hw_ptr_base
= 0;
1257 runtime
->hw_ptr_interrupt
= runtime
->status
->hw_ptr
-
1258 runtime
->status
->hw_ptr
% runtime
->period_size
;
1259 runtime
->silence_start
= runtime
->status
->hw_ptr
;
1260 runtime
->silence_filled
= 0;
1264 static void snd_pcm_post_reset(struct snd_pcm_substream
*substream
, int state
)
1266 struct snd_pcm_runtime
*runtime
= substream
->runtime
;
1267 runtime
->control
->appl_ptr
= runtime
->status
->hw_ptr
;
1268 if (substream
->stream
== SNDRV_PCM_STREAM_PLAYBACK
&&
1269 runtime
->silence_size
> 0)
1270 snd_pcm_playback_silence(substream
, ULONG_MAX
);
1273 static struct action_ops snd_pcm_action_reset
= {
1274 .pre_action
= snd_pcm_pre_reset
,
1275 .do_action
= snd_pcm_do_reset
,
1276 .post_action
= snd_pcm_post_reset
1279 static int snd_pcm_reset(struct snd_pcm_substream
*substream
)
1281 return snd_pcm_action_nonatomic(&snd_pcm_action_reset
, substream
, 0);
1287 /* we use the second argument for updating f_flags */
1288 static int snd_pcm_pre_prepare(struct snd_pcm_substream
*substream
,
1291 struct snd_pcm_runtime
*runtime
= substream
->runtime
;
1292 if (runtime
->status
->state
== SNDRV_PCM_STATE_OPEN
)
1294 if (snd_pcm_running(substream
))
1296 substream
->f_flags
= f_flags
;
1300 static int snd_pcm_do_prepare(struct snd_pcm_substream
*substream
, int state
)
1303 err
= substream
->ops
->prepare(substream
);
1306 return snd_pcm_do_reset(substream
, 0);
1309 static void snd_pcm_post_prepare(struct snd_pcm_substream
*substream
, int state
)
1311 struct snd_pcm_runtime
*runtime
= substream
->runtime
;
1312 runtime
->control
->appl_ptr
= runtime
->status
->hw_ptr
;
1313 runtime
->status
->state
= SNDRV_PCM_STATE_PREPARED
;
1316 static struct action_ops snd_pcm_action_prepare
= {
1317 .pre_action
= snd_pcm_pre_prepare
,
1318 .do_action
= snd_pcm_do_prepare
,
1319 .post_action
= snd_pcm_post_prepare
1324 * @substream: the PCM substream instance
1325 * @file: file to refer f_flags
1327 * Prepare the PCM substream to be triggerable.
1329 static int snd_pcm_prepare(struct snd_pcm_substream
*substream
,
1333 struct snd_card
*card
= substream
->pcm
->card
;
1337 f_flags
= file
->f_flags
;
1339 f_flags
= substream
->f_flags
;
1341 snd_power_lock(card
);
1342 if ((res
= snd_power_wait(card
, SNDRV_CTL_POWER_D0
)) >= 0)
1343 res
= snd_pcm_action_nonatomic(&snd_pcm_action_prepare
,
1344 substream
, f_flags
);
1345 snd_power_unlock(card
);
1353 static int snd_pcm_pre_drain_init(struct snd_pcm_substream
*substream
, int state
)
1355 if (substream
->f_flags
& O_NONBLOCK
)
1357 substream
->runtime
->trigger_master
= substream
;
1361 static int snd_pcm_do_drain_init(struct snd_pcm_substream
*substream
, int state
)
1363 struct snd_pcm_runtime
*runtime
= substream
->runtime
;
1364 if (substream
->stream
== SNDRV_PCM_STREAM_PLAYBACK
) {
1365 switch (runtime
->status
->state
) {
1366 case SNDRV_PCM_STATE_PREPARED
:
1367 /* start playback stream if possible */
1368 if (! snd_pcm_playback_empty(substream
)) {
1369 snd_pcm_do_start(substream
, SNDRV_PCM_STATE_DRAINING
);
1370 snd_pcm_post_start(substream
, SNDRV_PCM_STATE_DRAINING
);
1373 case SNDRV_PCM_STATE_RUNNING
:
1374 runtime
->status
->state
= SNDRV_PCM_STATE_DRAINING
;
1380 /* stop running stream */
1381 if (runtime
->status
->state
== SNDRV_PCM_STATE_RUNNING
) {
1382 int state
= snd_pcm_capture_avail(runtime
) > 0 ?
1383 SNDRV_PCM_STATE_DRAINING
: SNDRV_PCM_STATE_SETUP
;
1384 snd_pcm_do_stop(substream
, state
);
1385 snd_pcm_post_stop(substream
, state
);
1391 static void snd_pcm_post_drain_init(struct snd_pcm_substream
*substream
, int state
)
1395 static struct action_ops snd_pcm_action_drain_init
= {
1396 .pre_action
= snd_pcm_pre_drain_init
,
1397 .do_action
= snd_pcm_do_drain_init
,
1398 .post_action
= snd_pcm_post_drain_init
1402 struct snd_pcm_substream
*substream
;
1404 snd_pcm_uframes_t stop_threshold
;
1407 static int snd_pcm_drop(struct snd_pcm_substream
*substream
);
1410 * Drain the stream(s).
1411 * When the substream is linked, sync until the draining of all playback streams
1413 * After this call, all streams are supposed to be either SETUP or DRAINING
1414 * (capture only) state.
1416 static int snd_pcm_drain(struct snd_pcm_substream
*substream
)
1418 struct snd_card
*card
;
1419 struct snd_pcm_runtime
*runtime
;
1420 struct list_head
*pos
;
1423 struct drain_rec
*drec
, drec_tmp
, *d
;
1425 snd_assert(substream
!= NULL
, return -ENXIO
);
1426 card
= substream
->pcm
->card
;
1427 runtime
= substream
->runtime
;
1429 if (runtime
->status
->state
== SNDRV_PCM_STATE_OPEN
)
1432 snd_power_lock(card
);
1433 if (runtime
->status
->state
== SNDRV_PCM_STATE_SUSPENDED
) {
1434 result
= snd_power_wait(card
, SNDRV_CTL_POWER_D0
);
1436 snd_power_unlock(card
);
1441 /* allocate temporary record for drain sync */
1442 down_read(&snd_pcm_link_rwsem
);
1443 if (snd_pcm_stream_linked(substream
)) {
1444 drec
= kmalloc(substream
->group
->count
* sizeof(*drec
), GFP_KERNEL
);
1446 up_read(&snd_pcm_link_rwsem
);
1447 snd_power_unlock(card
);
1453 /* count only playback streams */
1455 snd_pcm_group_for_each(pos
, substream
) {
1456 struct snd_pcm_substream
*s
= snd_pcm_group_substream_entry(pos
);
1457 runtime
= s
->runtime
;
1458 if (s
->stream
== SNDRV_PCM_STREAM_PLAYBACK
) {
1459 d
= &drec
[num_drecs
++];
1461 init_waitqueue_entry(&d
->wait
, current
);
1462 add_wait_queue(&runtime
->sleep
, &d
->wait
);
1463 /* stop_threshold fixup to avoid endless loop when
1464 * stop_threshold > buffer_size
1466 d
->stop_threshold
= runtime
->stop_threshold
;
1467 if (runtime
->stop_threshold
> runtime
->buffer_size
)
1468 runtime
->stop_threshold
= runtime
->buffer_size
;
1471 up_read(&snd_pcm_link_rwsem
);
1473 snd_pcm_stream_lock_irq(substream
);
1475 if (runtime
->status
->state
== SNDRV_PCM_STATE_PAUSED
)
1476 snd_pcm_pause(substream
, 0);
1478 /* pre-start/stop - all running streams are changed to DRAINING state */
1479 result
= snd_pcm_action(&snd_pcm_action_drain_init
, substream
, 0);
1481 snd_pcm_stream_unlock_irq(substream
);
1487 if (signal_pending(current
)) {
1488 result
= -ERESTARTSYS
;
1492 for (i
= 0; i
< num_drecs
; i
++) {
1493 runtime
= drec
[i
].substream
->runtime
;
1494 if (runtime
->status
->state
== SNDRV_PCM_STATE_DRAINING
)
1498 break; /* yes, all drained */
1500 set_current_state(TASK_INTERRUPTIBLE
);
1501 snd_pcm_stream_unlock_irq(substream
);
1502 snd_power_unlock(card
);
1503 tout
= schedule_timeout(10 * HZ
);
1504 snd_power_lock(card
);
1505 snd_pcm_stream_lock_irq(substream
);
1507 if (substream
->runtime
->status
->state
== SNDRV_PCM_STATE_SUSPENDED
)
1510 snd_printd("playback drain error (DMA or IRQ trouble?)\n");
1511 snd_pcm_stop(substream
, SNDRV_PCM_STATE_SETUP
);
1518 snd_pcm_stream_unlock_irq(substream
);
1521 for (i
= 0; i
< num_drecs
; i
++) {
1523 runtime
= d
->substream
->runtime
;
1524 remove_wait_queue(&runtime
->sleep
, &d
->wait
);
1525 runtime
->stop_threshold
= d
->stop_threshold
;
1528 if (drec
!= &drec_tmp
)
1530 snd_power_unlock(card
);
1538 * Immediately put all linked substreams into SETUP state.
1540 static int snd_pcm_drop(struct snd_pcm_substream
*substream
)
1542 struct snd_pcm_runtime
*runtime
;
1543 struct snd_card
*card
;
1546 snd_assert(substream
!= NULL
, return -ENXIO
);
1547 runtime
= substream
->runtime
;
1548 card
= substream
->pcm
->card
;
1550 if (runtime
->status
->state
== SNDRV_PCM_STATE_OPEN
)
1553 snd_power_lock(card
);
1554 if (runtime
->status
->state
== SNDRV_PCM_STATE_SUSPENDED
) {
1555 result
= snd_power_wait(card
, SNDRV_CTL_POWER_D0
);
1560 snd_pcm_stream_lock_irq(substream
);
1562 if (runtime
->status
->state
== SNDRV_PCM_STATE_PAUSED
)
1563 snd_pcm_pause(substream
, 0);
1565 snd_pcm_stop(substream
, SNDRV_PCM_STATE_SETUP
);
1566 /* runtime->control->appl_ptr = runtime->status->hw_ptr; */
1567 snd_pcm_stream_unlock_irq(substream
);
1569 snd_power_unlock(card
);
1574 /* WARNING: Don't forget to fput back the file */
1575 static struct file
*snd_pcm_file_fd(int fd
)
1578 struct inode
*inode
;
1584 inode
= file
->f_dentry
->d_inode
;
1585 if (!S_ISCHR(inode
->i_mode
) ||
1586 imajor(inode
) != snd_major
) {
1590 minor
= iminor(inode
);
1591 if (!snd_lookup_minor_data(minor
, SNDRV_DEVICE_TYPE_PCM_PLAYBACK
) &&
1592 !snd_lookup_minor_data(minor
, SNDRV_DEVICE_TYPE_PCM_CAPTURE
)) {
1602 static int snd_pcm_link(struct snd_pcm_substream
*substream
, int fd
)
1606 struct snd_pcm_file
*pcm_file
;
1607 struct snd_pcm_substream
*substream1
;
1609 file
= snd_pcm_file_fd(fd
);
1612 pcm_file
= file
->private_data
;
1613 substream1
= pcm_file
->substream
;
1614 down_write(&snd_pcm_link_rwsem
);
1615 write_lock_irq(&snd_pcm_link_rwlock
);
1616 if (substream
->runtime
->status
->state
== SNDRV_PCM_STATE_OPEN
||
1617 substream
->runtime
->status
->state
!= substream1
->runtime
->status
->state
) {
1621 if (snd_pcm_stream_linked(substream1
)) {
1625 if (!snd_pcm_stream_linked(substream
)) {
1626 substream
->group
= kmalloc(sizeof(struct snd_pcm_group
), GFP_ATOMIC
);
1627 if (substream
->group
== NULL
) {
1631 spin_lock_init(&substream
->group
->lock
);
1632 INIT_LIST_HEAD(&substream
->group
->substreams
);
1633 list_add_tail(&substream
->link_list
, &substream
->group
->substreams
);
1634 substream
->group
->count
= 1;
1636 list_add_tail(&substream1
->link_list
, &substream
->group
->substreams
);
1637 substream
->group
->count
++;
1638 substream1
->group
= substream
->group
;
1640 write_unlock_irq(&snd_pcm_link_rwlock
);
1641 up_write(&snd_pcm_link_rwsem
);
1646 static void relink_to_local(struct snd_pcm_substream
*substream
)
1648 substream
->group
= &substream
->self_group
;
1649 INIT_LIST_HEAD(&substream
->self_group
.substreams
);
1650 list_add_tail(&substream
->link_list
, &substream
->self_group
.substreams
);
1653 static int snd_pcm_unlink(struct snd_pcm_substream
*substream
)
1655 struct list_head
*pos
;
1658 down_write(&snd_pcm_link_rwsem
);
1659 write_lock_irq(&snd_pcm_link_rwlock
);
1660 if (!snd_pcm_stream_linked(substream
)) {
1664 list_del(&substream
->link_list
);
1665 substream
->group
->count
--;
1666 if (substream
->group
->count
== 1) { /* detach the last stream, too */
1667 snd_pcm_group_for_each(pos
, substream
) {
1668 relink_to_local(snd_pcm_group_substream_entry(pos
));
1671 kfree(substream
->group
);
1673 relink_to_local(substream
);
1675 write_unlock_irq(&snd_pcm_link_rwlock
);
1676 up_write(&snd_pcm_link_rwsem
);
1683 static int snd_pcm_hw_rule_mul(struct snd_pcm_hw_params
*params
,
1684 struct snd_pcm_hw_rule
*rule
)
1686 struct snd_interval t
;
1687 snd_interval_mul(hw_param_interval_c(params
, rule
->deps
[0]),
1688 hw_param_interval_c(params
, rule
->deps
[1]), &t
);
1689 return snd_interval_refine(hw_param_interval(params
, rule
->var
), &t
);
1692 static int snd_pcm_hw_rule_div(struct snd_pcm_hw_params
*params
,
1693 struct snd_pcm_hw_rule
*rule
)
1695 struct snd_interval t
;
1696 snd_interval_div(hw_param_interval_c(params
, rule
->deps
[0]),
1697 hw_param_interval_c(params
, rule
->deps
[1]), &t
);
1698 return snd_interval_refine(hw_param_interval(params
, rule
->var
), &t
);
1701 static int snd_pcm_hw_rule_muldivk(struct snd_pcm_hw_params
*params
,
1702 struct snd_pcm_hw_rule
*rule
)
1704 struct snd_interval t
;
1705 snd_interval_muldivk(hw_param_interval_c(params
, rule
->deps
[0]),
1706 hw_param_interval_c(params
, rule
->deps
[1]),
1707 (unsigned long) rule
->private, &t
);
1708 return snd_interval_refine(hw_param_interval(params
, rule
->var
), &t
);
1711 static int snd_pcm_hw_rule_mulkdiv(struct snd_pcm_hw_params
*params
,
1712 struct snd_pcm_hw_rule
*rule
)
1714 struct snd_interval t
;
1715 snd_interval_mulkdiv(hw_param_interval_c(params
, rule
->deps
[0]),
1716 (unsigned long) rule
->private,
1717 hw_param_interval_c(params
, rule
->deps
[1]), &t
);
1718 return snd_interval_refine(hw_param_interval(params
, rule
->var
), &t
);
1721 static int snd_pcm_hw_rule_format(struct snd_pcm_hw_params
*params
,
1722 struct snd_pcm_hw_rule
*rule
)
1725 struct snd_interval
*i
= hw_param_interval(params
, rule
->deps
[0]);
1727 struct snd_mask
*mask
= hw_param_mask(params
, SNDRV_PCM_HW_PARAM_FORMAT
);
1729 for (k
= 0; k
<= SNDRV_PCM_FORMAT_LAST
; ++k
) {
1731 if (! snd_mask_test(mask
, k
))
1733 bits
= snd_pcm_format_physical_width(k
);
1735 continue; /* ignore invalid formats */
1736 if ((unsigned)bits
< i
->min
|| (unsigned)bits
> i
->max
)
1737 snd_mask_reset(&m
, k
);
1739 return snd_mask_refine(mask
, &m
);
1742 static int snd_pcm_hw_rule_sample_bits(struct snd_pcm_hw_params
*params
,
1743 struct snd_pcm_hw_rule
*rule
)
1745 struct snd_interval t
;
1751 for (k
= 0; k
<= SNDRV_PCM_FORMAT_LAST
; ++k
) {
1753 if (! snd_mask_test(hw_param_mask(params
, SNDRV_PCM_HW_PARAM_FORMAT
), k
))
1755 bits
= snd_pcm_format_physical_width(k
);
1757 continue; /* ignore invalid formats */
1758 if (t
.min
> (unsigned)bits
)
1760 if (t
.max
< (unsigned)bits
)
1764 return snd_interval_refine(hw_param_interval(params
, rule
->var
), &t
);
1767 #if SNDRV_PCM_RATE_5512 != 1 << 0 || SNDRV_PCM_RATE_192000 != 1 << 12
1768 #error "Change this table"
1771 static unsigned int rates
[] = { 5512, 8000, 11025, 16000, 22050, 32000, 44100,
1772 48000, 64000, 88200, 96000, 176400, 192000 };
1774 static int snd_pcm_hw_rule_rate(struct snd_pcm_hw_params
*params
,
1775 struct snd_pcm_hw_rule
*rule
)
1777 struct snd_pcm_hardware
*hw
= rule
->private;
1778 return snd_interval_list(hw_param_interval(params
, rule
->var
),
1779 ARRAY_SIZE(rates
), rates
, hw
->rates
);
1782 static int snd_pcm_hw_rule_buffer_bytes_max(struct snd_pcm_hw_params
*params
,
1783 struct snd_pcm_hw_rule
*rule
)
1785 struct snd_interval t
;
1786 struct snd_pcm_substream
*substream
= rule
->private;
1788 t
.max
= substream
->buffer_bytes_max
;
1792 return snd_interval_refine(hw_param_interval(params
, rule
->var
), &t
);
1795 int snd_pcm_hw_constraints_init(struct snd_pcm_substream
*substream
)
1797 struct snd_pcm_runtime
*runtime
= substream
->runtime
;
1798 struct snd_pcm_hw_constraints
*constrs
= &runtime
->hw_constraints
;
1801 for (k
= SNDRV_PCM_HW_PARAM_FIRST_MASK
; k
<= SNDRV_PCM_HW_PARAM_LAST_MASK
; k
++) {
1802 snd_mask_any(constrs_mask(constrs
, k
));
1805 for (k
= SNDRV_PCM_HW_PARAM_FIRST_INTERVAL
; k
<= SNDRV_PCM_HW_PARAM_LAST_INTERVAL
; k
++) {
1806 snd_interval_any(constrs_interval(constrs
, k
));
1809 snd_interval_setinteger(constrs_interval(constrs
, SNDRV_PCM_HW_PARAM_CHANNELS
));
1810 snd_interval_setinteger(constrs_interval(constrs
, SNDRV_PCM_HW_PARAM_BUFFER_SIZE
));
1811 snd_interval_setinteger(constrs_interval(constrs
, SNDRV_PCM_HW_PARAM_BUFFER_BYTES
));
1812 snd_interval_setinteger(constrs_interval(constrs
, SNDRV_PCM_HW_PARAM_SAMPLE_BITS
));
1813 snd_interval_setinteger(constrs_interval(constrs
, SNDRV_PCM_HW_PARAM_FRAME_BITS
));
1815 err
= snd_pcm_hw_rule_add(runtime
, 0, SNDRV_PCM_HW_PARAM_FORMAT
,
1816 snd_pcm_hw_rule_format
, NULL
,
1817 SNDRV_PCM_HW_PARAM_SAMPLE_BITS
, -1);
1820 err
= snd_pcm_hw_rule_add(runtime
, 0, SNDRV_PCM_HW_PARAM_SAMPLE_BITS
,
1821 snd_pcm_hw_rule_sample_bits
, NULL
,
1822 SNDRV_PCM_HW_PARAM_FORMAT
,
1823 SNDRV_PCM_HW_PARAM_SAMPLE_BITS
, -1);
1826 err
= snd_pcm_hw_rule_add(runtime
, 0, SNDRV_PCM_HW_PARAM_SAMPLE_BITS
,
1827 snd_pcm_hw_rule_div
, NULL
,
1828 SNDRV_PCM_HW_PARAM_FRAME_BITS
, SNDRV_PCM_HW_PARAM_CHANNELS
, -1);
1831 err
= snd_pcm_hw_rule_add(runtime
, 0, SNDRV_PCM_HW_PARAM_FRAME_BITS
,
1832 snd_pcm_hw_rule_mul
, NULL
,
1833 SNDRV_PCM_HW_PARAM_SAMPLE_BITS
, SNDRV_PCM_HW_PARAM_CHANNELS
, -1);
1836 err
= snd_pcm_hw_rule_add(runtime
, 0, SNDRV_PCM_HW_PARAM_FRAME_BITS
,
1837 snd_pcm_hw_rule_mulkdiv
, (void*) 8,
1838 SNDRV_PCM_HW_PARAM_PERIOD_BYTES
, SNDRV_PCM_HW_PARAM_PERIOD_SIZE
, -1);
1841 err
= snd_pcm_hw_rule_add(runtime
, 0, SNDRV_PCM_HW_PARAM_FRAME_BITS
,
1842 snd_pcm_hw_rule_mulkdiv
, (void*) 8,
1843 SNDRV_PCM_HW_PARAM_BUFFER_BYTES
, SNDRV_PCM_HW_PARAM_BUFFER_SIZE
, -1);
1846 err
= snd_pcm_hw_rule_add(runtime
, 0, SNDRV_PCM_HW_PARAM_CHANNELS
,
1847 snd_pcm_hw_rule_div
, NULL
,
1848 SNDRV_PCM_HW_PARAM_FRAME_BITS
, SNDRV_PCM_HW_PARAM_SAMPLE_BITS
, -1);
1851 err
= snd_pcm_hw_rule_add(runtime
, 0, SNDRV_PCM_HW_PARAM_RATE
,
1852 snd_pcm_hw_rule_mulkdiv
, (void*) 1000000,
1853 SNDRV_PCM_HW_PARAM_PERIOD_SIZE
, SNDRV_PCM_HW_PARAM_PERIOD_TIME
, -1);
1856 err
= snd_pcm_hw_rule_add(runtime
, 0, SNDRV_PCM_HW_PARAM_RATE
,
1857 snd_pcm_hw_rule_mulkdiv
, (void*) 1000000,
1858 SNDRV_PCM_HW_PARAM_BUFFER_SIZE
, SNDRV_PCM_HW_PARAM_BUFFER_TIME
, -1);
1861 err
= snd_pcm_hw_rule_add(runtime
, 0, SNDRV_PCM_HW_PARAM_PERIODS
,
1862 snd_pcm_hw_rule_div
, NULL
,
1863 SNDRV_PCM_HW_PARAM_BUFFER_SIZE
, SNDRV_PCM_HW_PARAM_PERIOD_SIZE
, -1);
1866 err
= snd_pcm_hw_rule_add(runtime
, 0, SNDRV_PCM_HW_PARAM_PERIOD_SIZE
,
1867 snd_pcm_hw_rule_div
, NULL
,
1868 SNDRV_PCM_HW_PARAM_BUFFER_SIZE
, SNDRV_PCM_HW_PARAM_PERIODS
, -1);
1871 err
= snd_pcm_hw_rule_add(runtime
, 0, SNDRV_PCM_HW_PARAM_PERIOD_SIZE
,
1872 snd_pcm_hw_rule_mulkdiv
, (void*) 8,
1873 SNDRV_PCM_HW_PARAM_PERIOD_BYTES
, SNDRV_PCM_HW_PARAM_FRAME_BITS
, -1);
1876 err
= snd_pcm_hw_rule_add(runtime
, 0, SNDRV_PCM_HW_PARAM_PERIOD_SIZE
,
1877 snd_pcm_hw_rule_muldivk
, (void*) 1000000,
1878 SNDRV_PCM_HW_PARAM_PERIOD_TIME
, SNDRV_PCM_HW_PARAM_RATE
, -1);
1881 err
= snd_pcm_hw_rule_add(runtime
, 0, SNDRV_PCM_HW_PARAM_BUFFER_SIZE
,
1882 snd_pcm_hw_rule_mul
, NULL
,
1883 SNDRV_PCM_HW_PARAM_PERIOD_SIZE
, SNDRV_PCM_HW_PARAM_PERIODS
, -1);
1886 err
= snd_pcm_hw_rule_add(runtime
, 0, SNDRV_PCM_HW_PARAM_BUFFER_SIZE
,
1887 snd_pcm_hw_rule_mulkdiv
, (void*) 8,
1888 SNDRV_PCM_HW_PARAM_BUFFER_BYTES
, SNDRV_PCM_HW_PARAM_FRAME_BITS
, -1);
1891 err
= snd_pcm_hw_rule_add(runtime
, 0, SNDRV_PCM_HW_PARAM_BUFFER_SIZE
,
1892 snd_pcm_hw_rule_muldivk
, (void*) 1000000,
1893 SNDRV_PCM_HW_PARAM_BUFFER_TIME
, SNDRV_PCM_HW_PARAM_RATE
, -1);
1896 err
= snd_pcm_hw_rule_add(runtime
, 0, SNDRV_PCM_HW_PARAM_PERIOD_BYTES
,
1897 snd_pcm_hw_rule_muldivk
, (void*) 8,
1898 SNDRV_PCM_HW_PARAM_PERIOD_SIZE
, SNDRV_PCM_HW_PARAM_FRAME_BITS
, -1);
1901 err
= snd_pcm_hw_rule_add(runtime
, 0, SNDRV_PCM_HW_PARAM_BUFFER_BYTES
,
1902 snd_pcm_hw_rule_muldivk
, (void*) 8,
1903 SNDRV_PCM_HW_PARAM_BUFFER_SIZE
, SNDRV_PCM_HW_PARAM_FRAME_BITS
, -1);
1906 err
= snd_pcm_hw_rule_add(runtime
, 0, SNDRV_PCM_HW_PARAM_PERIOD_TIME
,
1907 snd_pcm_hw_rule_mulkdiv
, (void*) 1000000,
1908 SNDRV_PCM_HW_PARAM_PERIOD_SIZE
, SNDRV_PCM_HW_PARAM_RATE
, -1);
1911 err
= snd_pcm_hw_rule_add(runtime
, 0, SNDRV_PCM_HW_PARAM_BUFFER_TIME
,
1912 snd_pcm_hw_rule_mulkdiv
, (void*) 1000000,
1913 SNDRV_PCM_HW_PARAM_BUFFER_SIZE
, SNDRV_PCM_HW_PARAM_RATE
, -1);
1919 int snd_pcm_hw_constraints_complete(struct snd_pcm_substream
*substream
)
1921 struct snd_pcm_runtime
*runtime
= substream
->runtime
;
1922 struct snd_pcm_hardware
*hw
= &runtime
->hw
;
1924 unsigned int mask
= 0;
1926 if (hw
->info
& SNDRV_PCM_INFO_INTERLEAVED
)
1927 mask
|= 1 << SNDRV_PCM_ACCESS_RW_INTERLEAVED
;
1928 if (hw
->info
& SNDRV_PCM_INFO_NONINTERLEAVED
)
1929 mask
|= 1 << SNDRV_PCM_ACCESS_RW_NONINTERLEAVED
;
1930 if (hw
->info
& SNDRV_PCM_INFO_MMAP
) {
1931 if (hw
->info
& SNDRV_PCM_INFO_INTERLEAVED
)
1932 mask
|= 1 << SNDRV_PCM_ACCESS_MMAP_INTERLEAVED
;
1933 if (hw
->info
& SNDRV_PCM_INFO_NONINTERLEAVED
)
1934 mask
|= 1 << SNDRV_PCM_ACCESS_MMAP_NONINTERLEAVED
;
1935 if (hw
->info
& SNDRV_PCM_INFO_COMPLEX
)
1936 mask
|= 1 << SNDRV_PCM_ACCESS_MMAP_COMPLEX
;
1938 err
= snd_pcm_hw_constraint_mask(runtime
, SNDRV_PCM_HW_PARAM_ACCESS
, mask
);
1939 snd_assert(err
>= 0, return -EINVAL
);
1941 err
= snd_pcm_hw_constraint_mask64(runtime
, SNDRV_PCM_HW_PARAM_FORMAT
, hw
->formats
);
1942 snd_assert(err
>= 0, return -EINVAL
);
1944 err
= snd_pcm_hw_constraint_mask(runtime
, SNDRV_PCM_HW_PARAM_SUBFORMAT
, 1 << SNDRV_PCM_SUBFORMAT_STD
);
1945 snd_assert(err
>= 0, return -EINVAL
);
1947 err
= snd_pcm_hw_constraint_minmax(runtime
, SNDRV_PCM_HW_PARAM_CHANNELS
,
1948 hw
->channels_min
, hw
->channels_max
);
1949 snd_assert(err
>= 0, return -EINVAL
);
1951 err
= snd_pcm_hw_constraint_minmax(runtime
, SNDRV_PCM_HW_PARAM_RATE
,
1952 hw
->rate_min
, hw
->rate_max
);
1953 snd_assert(err
>= 0, return -EINVAL
);
1955 err
= snd_pcm_hw_constraint_minmax(runtime
, SNDRV_PCM_HW_PARAM_PERIOD_BYTES
,
1956 hw
->period_bytes_min
, hw
->period_bytes_max
);
1957 snd_assert(err
>= 0, return -EINVAL
);
1959 err
= snd_pcm_hw_constraint_minmax(runtime
, SNDRV_PCM_HW_PARAM_PERIODS
,
1960 hw
->periods_min
, hw
->periods_max
);
1961 snd_assert(err
>= 0, return -EINVAL
);
1963 err
= snd_pcm_hw_constraint_minmax(runtime
, SNDRV_PCM_HW_PARAM_BUFFER_BYTES
,
1964 hw
->period_bytes_min
, hw
->buffer_bytes_max
);
1965 snd_assert(err
>= 0, return -EINVAL
);
1967 err
= snd_pcm_hw_rule_add(runtime
, 0, SNDRV_PCM_HW_PARAM_BUFFER_BYTES
,
1968 snd_pcm_hw_rule_buffer_bytes_max
, substream
,
1969 SNDRV_PCM_HW_PARAM_BUFFER_BYTES
, -1);
1974 if (runtime
->dma_bytes
) {
1975 err
= snd_pcm_hw_constraint_minmax(runtime
, SNDRV_PCM_HW_PARAM_BUFFER_BYTES
, 0, runtime
->dma_bytes
);
1976 snd_assert(err
>= 0, return -EINVAL
);
1979 if (!(hw
->rates
& (SNDRV_PCM_RATE_KNOT
| SNDRV_PCM_RATE_CONTINUOUS
))) {
1980 err
= snd_pcm_hw_rule_add(runtime
, 0, SNDRV_PCM_HW_PARAM_RATE
,
1981 snd_pcm_hw_rule_rate
, hw
,
1982 SNDRV_PCM_HW_PARAM_RATE
, -1);
1987 /* FIXME: this belong to lowlevel */
1988 snd_pcm_hw_constraint_minmax(runtime
, SNDRV_PCM_HW_PARAM_TICK_TIME
,
1989 1000000 / HZ
, 1000000 / HZ
);
1990 snd_pcm_hw_constraint_integer(runtime
, SNDRV_PCM_HW_PARAM_PERIOD_SIZE
);
1995 static void pcm_release_private(struct snd_pcm_substream
*substream
)
1997 snd_pcm_unlink(substream
);
2000 void snd_pcm_release_substream(struct snd_pcm_substream
*substream
)
2002 substream
->ref_count
--;
2003 if (substream
->ref_count
> 0)
2006 snd_pcm_drop(substream
);
2007 if (substream
->hw_opened
) {
2008 if (substream
->ops
->hw_free
!= NULL
)
2009 substream
->ops
->hw_free(substream
);
2010 substream
->ops
->close(substream
);
2011 substream
->hw_opened
= 0;
2013 if (substream
->pcm_release
) {
2014 substream
->pcm_release(substream
);
2015 substream
->pcm_release
= NULL
;
2017 snd_pcm_detach_substream(substream
);
2020 EXPORT_SYMBOL(snd_pcm_release_substream
);
2022 int snd_pcm_open_substream(struct snd_pcm
*pcm
, int stream
,
2024 struct snd_pcm_substream
**rsubstream
)
2026 struct snd_pcm_substream
*substream
;
2029 err
= snd_pcm_attach_substream(pcm
, stream
, file
, &substream
);
2032 if (substream
->ref_count
> 1) {
2033 *rsubstream
= substream
;
2037 err
= snd_pcm_hw_constraints_init(substream
);
2039 snd_printd("snd_pcm_hw_constraints_init failed\n");
2043 if ((err
= substream
->ops
->open(substream
)) < 0)
2046 substream
->hw_opened
= 1;
2048 err
= snd_pcm_hw_constraints_complete(substream
);
2050 snd_printd("snd_pcm_hw_constraints_complete failed\n");
2054 *rsubstream
= substream
;
2058 snd_pcm_release_substream(substream
);
2062 EXPORT_SYMBOL(snd_pcm_open_substream
);
2064 static int snd_pcm_open_file(struct file
*file
,
2065 struct snd_pcm
*pcm
,
2067 struct snd_pcm_file
**rpcm_file
)
2069 struct snd_pcm_file
*pcm_file
;
2070 struct snd_pcm_substream
*substream
;
2071 struct snd_pcm_str
*str
;
2074 snd_assert(rpcm_file
!= NULL
, return -EINVAL
);
2077 err
= snd_pcm_open_substream(pcm
, stream
, file
, &substream
);
2081 pcm_file
= kzalloc(sizeof(*pcm_file
), GFP_KERNEL
);
2082 if (pcm_file
== NULL
) {
2083 snd_pcm_release_substream(substream
);
2086 pcm_file
->substream
= substream
;
2087 if (substream
->ref_count
== 1) {
2088 str
= substream
->pstr
;
2089 substream
->file
= pcm_file
;
2090 substream
->pcm_release
= pcm_release_private
;
2092 file
->private_data
= pcm_file
;
2093 *rpcm_file
= pcm_file
;
2097 static int snd_pcm_playback_open(struct inode
*inode
, struct file
*file
)
2099 struct snd_pcm
*pcm
;
2101 pcm
= snd_lookup_minor_data(iminor(inode
),
2102 SNDRV_DEVICE_TYPE_PCM_PLAYBACK
);
2103 return snd_pcm_open(file
, pcm
, SNDRV_PCM_STREAM_PLAYBACK
);
2106 static int snd_pcm_capture_open(struct inode
*inode
, struct file
*file
)
2108 struct snd_pcm
*pcm
;
2110 pcm
= snd_lookup_minor_data(iminor(inode
),
2111 SNDRV_DEVICE_TYPE_PCM_CAPTURE
);
2112 return snd_pcm_open(file
, pcm
, SNDRV_PCM_STREAM_CAPTURE
);
2115 static int snd_pcm_open(struct file
*file
, struct snd_pcm
*pcm
, int stream
)
2118 struct snd_pcm_file
*pcm_file
;
2125 err
= snd_card_file_add(pcm
->card
, file
);
2128 if (!try_module_get(pcm
->card
->module
)) {
2132 init_waitqueue_entry(&wait
, current
);
2133 add_wait_queue(&pcm
->open_wait
, &wait
);
2134 mutex_lock(&pcm
->open_mutex
);
2136 err
= snd_pcm_open_file(file
, pcm
, stream
, &pcm_file
);
2139 if (err
== -EAGAIN
) {
2140 if (file
->f_flags
& O_NONBLOCK
) {
2146 set_current_state(TASK_INTERRUPTIBLE
);
2147 mutex_unlock(&pcm
->open_mutex
);
2149 mutex_lock(&pcm
->open_mutex
);
2150 if (signal_pending(current
)) {
2155 remove_wait_queue(&pcm
->open_wait
, &wait
);
2156 mutex_unlock(&pcm
->open_mutex
);
2162 module_put(pcm
->card
->module
);
2164 snd_card_file_remove(pcm
->card
, file
);
2169 static int snd_pcm_release(struct inode
*inode
, struct file
*file
)
2171 struct snd_pcm
*pcm
;
2172 struct snd_pcm_substream
*substream
;
2173 struct snd_pcm_file
*pcm_file
;
2175 pcm_file
= file
->private_data
;
2176 substream
= pcm_file
->substream
;
2177 snd_assert(substream
!= NULL
, return -ENXIO
);
2178 pcm
= substream
->pcm
;
2179 fasync_helper(-1, file
, 0, &substream
->runtime
->fasync
);
2180 mutex_lock(&pcm
->open_mutex
);
2181 snd_pcm_release_substream(substream
);
2183 mutex_unlock(&pcm
->open_mutex
);
2184 wake_up(&pcm
->open_wait
);
2185 module_put(pcm
->card
->module
);
2186 snd_card_file_remove(pcm
->card
, file
);
2190 static snd_pcm_sframes_t
snd_pcm_playback_rewind(struct snd_pcm_substream
*substream
,
2191 snd_pcm_uframes_t frames
)
2193 struct snd_pcm_runtime
*runtime
= substream
->runtime
;
2194 snd_pcm_sframes_t appl_ptr
;
2195 snd_pcm_sframes_t ret
;
2196 snd_pcm_sframes_t hw_avail
;
2201 snd_pcm_stream_lock_irq(substream
);
2202 switch (runtime
->status
->state
) {
2203 case SNDRV_PCM_STATE_PREPARED
:
2205 case SNDRV_PCM_STATE_DRAINING
:
2206 case SNDRV_PCM_STATE_RUNNING
:
2207 if (snd_pcm_update_hw_ptr(substream
) >= 0)
2210 case SNDRV_PCM_STATE_XRUN
:
2218 hw_avail
= snd_pcm_playback_hw_avail(runtime
);
2219 if (hw_avail
<= 0) {
2223 if (frames
> (snd_pcm_uframes_t
)hw_avail
)
2226 frames
-= frames
% runtime
->xfer_align
;
2227 appl_ptr
= runtime
->control
->appl_ptr
- frames
;
2229 appl_ptr
+= runtime
->boundary
;
2230 runtime
->control
->appl_ptr
= appl_ptr
;
2231 if (runtime
->status
->state
== SNDRV_PCM_STATE_RUNNING
&&
2233 snd_pcm_tick_prepare(substream
);
2236 snd_pcm_stream_unlock_irq(substream
);
2240 static snd_pcm_sframes_t
snd_pcm_capture_rewind(struct snd_pcm_substream
*substream
,
2241 snd_pcm_uframes_t frames
)
2243 struct snd_pcm_runtime
*runtime
= substream
->runtime
;
2244 snd_pcm_sframes_t appl_ptr
;
2245 snd_pcm_sframes_t ret
;
2246 snd_pcm_sframes_t hw_avail
;
2251 snd_pcm_stream_lock_irq(substream
);
2252 switch (runtime
->status
->state
) {
2253 case SNDRV_PCM_STATE_PREPARED
:
2254 case SNDRV_PCM_STATE_DRAINING
:
2256 case SNDRV_PCM_STATE_RUNNING
:
2257 if (snd_pcm_update_hw_ptr(substream
) >= 0)
2260 case SNDRV_PCM_STATE_XRUN
:
2268 hw_avail
= snd_pcm_capture_hw_avail(runtime
);
2269 if (hw_avail
<= 0) {
2273 if (frames
> (snd_pcm_uframes_t
)hw_avail
)
2276 frames
-= frames
% runtime
->xfer_align
;
2277 appl_ptr
= runtime
->control
->appl_ptr
- frames
;
2279 appl_ptr
+= runtime
->boundary
;
2280 runtime
->control
->appl_ptr
= appl_ptr
;
2281 if (runtime
->status
->state
== SNDRV_PCM_STATE_RUNNING
&&
2283 snd_pcm_tick_prepare(substream
);
2286 snd_pcm_stream_unlock_irq(substream
);
2290 static snd_pcm_sframes_t
snd_pcm_playback_forward(struct snd_pcm_substream
*substream
,
2291 snd_pcm_uframes_t frames
)
2293 struct snd_pcm_runtime
*runtime
= substream
->runtime
;
2294 snd_pcm_sframes_t appl_ptr
;
2295 snd_pcm_sframes_t ret
;
2296 snd_pcm_sframes_t avail
;
2301 snd_pcm_stream_lock_irq(substream
);
2302 switch (runtime
->status
->state
) {
2303 case SNDRV_PCM_STATE_PREPARED
:
2304 case SNDRV_PCM_STATE_PAUSED
:
2306 case SNDRV_PCM_STATE_DRAINING
:
2307 case SNDRV_PCM_STATE_RUNNING
:
2308 if (snd_pcm_update_hw_ptr(substream
) >= 0)
2311 case SNDRV_PCM_STATE_XRUN
:
2319 avail
= snd_pcm_playback_avail(runtime
);
2324 if (frames
> (snd_pcm_uframes_t
)avail
)
2327 frames
-= frames
% runtime
->xfer_align
;
2328 appl_ptr
= runtime
->control
->appl_ptr
+ frames
;
2329 if (appl_ptr
>= (snd_pcm_sframes_t
)runtime
->boundary
)
2330 appl_ptr
-= runtime
->boundary
;
2331 runtime
->control
->appl_ptr
= appl_ptr
;
2332 if (runtime
->status
->state
== SNDRV_PCM_STATE_RUNNING
&&
2334 snd_pcm_tick_prepare(substream
);
2337 snd_pcm_stream_unlock_irq(substream
);
2341 static snd_pcm_sframes_t
snd_pcm_capture_forward(struct snd_pcm_substream
*substream
,
2342 snd_pcm_uframes_t frames
)
2344 struct snd_pcm_runtime
*runtime
= substream
->runtime
;
2345 snd_pcm_sframes_t appl_ptr
;
2346 snd_pcm_sframes_t ret
;
2347 snd_pcm_sframes_t avail
;
2352 snd_pcm_stream_lock_irq(substream
);
2353 switch (runtime
->status
->state
) {
2354 case SNDRV_PCM_STATE_PREPARED
:
2355 case SNDRV_PCM_STATE_DRAINING
:
2356 case SNDRV_PCM_STATE_PAUSED
:
2358 case SNDRV_PCM_STATE_RUNNING
:
2359 if (snd_pcm_update_hw_ptr(substream
) >= 0)
2362 case SNDRV_PCM_STATE_XRUN
:
2370 avail
= snd_pcm_capture_avail(runtime
);
2375 if (frames
> (snd_pcm_uframes_t
)avail
)
2378 frames
-= frames
% runtime
->xfer_align
;
2379 appl_ptr
= runtime
->control
->appl_ptr
+ frames
;
2380 if (appl_ptr
>= (snd_pcm_sframes_t
)runtime
->boundary
)
2381 appl_ptr
-= runtime
->boundary
;
2382 runtime
->control
->appl_ptr
= appl_ptr
;
2383 if (runtime
->status
->state
== SNDRV_PCM_STATE_RUNNING
&&
2385 snd_pcm_tick_prepare(substream
);
2388 snd_pcm_stream_unlock_irq(substream
);
2392 static int snd_pcm_hwsync(struct snd_pcm_substream
*substream
)
2394 struct snd_pcm_runtime
*runtime
= substream
->runtime
;
2397 snd_pcm_stream_lock_irq(substream
);
2398 switch (runtime
->status
->state
) {
2399 case SNDRV_PCM_STATE_DRAINING
:
2400 if (substream
->stream
== SNDRV_PCM_STREAM_CAPTURE
)
2402 case SNDRV_PCM_STATE_RUNNING
:
2403 if ((err
= snd_pcm_update_hw_ptr(substream
)) < 0)
2406 case SNDRV_PCM_STATE_PREPARED
:
2407 case SNDRV_PCM_STATE_SUSPENDED
:
2410 case SNDRV_PCM_STATE_XRUN
:
2418 snd_pcm_stream_unlock_irq(substream
);
2422 static int snd_pcm_delay(struct snd_pcm_substream
*substream
,
2423 snd_pcm_sframes_t __user
*res
)
2425 struct snd_pcm_runtime
*runtime
= substream
->runtime
;
2427 snd_pcm_sframes_t n
= 0;
2429 snd_pcm_stream_lock_irq(substream
);
2430 switch (runtime
->status
->state
) {
2431 case SNDRV_PCM_STATE_DRAINING
:
2432 if (substream
->stream
== SNDRV_PCM_STREAM_CAPTURE
)
2434 case SNDRV_PCM_STATE_RUNNING
:
2435 if ((err
= snd_pcm_update_hw_ptr(substream
)) < 0)
2438 case SNDRV_PCM_STATE_PREPARED
:
2439 case SNDRV_PCM_STATE_SUSPENDED
:
2441 if (substream
->stream
== SNDRV_PCM_STREAM_PLAYBACK
)
2442 n
= snd_pcm_playback_hw_avail(runtime
);
2444 n
= snd_pcm_capture_avail(runtime
);
2446 case SNDRV_PCM_STATE_XRUN
:
2454 snd_pcm_stream_unlock_irq(substream
);
2456 if (put_user(n
, res
))
2461 static int snd_pcm_sync_ptr(struct snd_pcm_substream
*substream
,
2462 struct snd_pcm_sync_ptr __user
*_sync_ptr
)
2464 struct snd_pcm_runtime
*runtime
= substream
->runtime
;
2465 struct snd_pcm_sync_ptr sync_ptr
;
2466 volatile struct snd_pcm_mmap_status
*status
;
2467 volatile struct snd_pcm_mmap_control
*control
;
2470 memset(&sync_ptr
, 0, sizeof(sync_ptr
));
2471 if (get_user(sync_ptr
.flags
, (unsigned __user
*)&(_sync_ptr
->flags
)))
2473 if (copy_from_user(&sync_ptr
.c
.control
, &(_sync_ptr
->c
.control
), sizeof(struct snd_pcm_mmap_control
)))
2475 status
= runtime
->status
;
2476 control
= runtime
->control
;
2477 if (sync_ptr
.flags
& SNDRV_PCM_SYNC_PTR_HWSYNC
) {
2478 err
= snd_pcm_hwsync(substream
);
2482 snd_pcm_stream_lock_irq(substream
);
2483 if (!(sync_ptr
.flags
& SNDRV_PCM_SYNC_PTR_APPL
))
2484 control
->appl_ptr
= sync_ptr
.c
.control
.appl_ptr
;
2486 sync_ptr
.c
.control
.appl_ptr
= control
->appl_ptr
;
2487 if (!(sync_ptr
.flags
& SNDRV_PCM_SYNC_PTR_AVAIL_MIN
))
2488 control
->avail_min
= sync_ptr
.c
.control
.avail_min
;
2490 sync_ptr
.c
.control
.avail_min
= control
->avail_min
;
2491 sync_ptr
.s
.status
.state
= status
->state
;
2492 sync_ptr
.s
.status
.hw_ptr
= status
->hw_ptr
;
2493 sync_ptr
.s
.status
.tstamp
= status
->tstamp
;
2494 sync_ptr
.s
.status
.suspended_state
= status
->suspended_state
;
2495 snd_pcm_stream_unlock_irq(substream
);
2496 if (copy_to_user(_sync_ptr
, &sync_ptr
, sizeof(sync_ptr
)))
2501 static int snd_pcm_common_ioctl1(struct file
*file
,
2502 struct snd_pcm_substream
*substream
,
2503 unsigned int cmd
, void __user
*arg
)
2505 snd_assert(substream
!= NULL
, return -ENXIO
);
2508 case SNDRV_PCM_IOCTL_PVERSION
:
2509 return put_user(SNDRV_PCM_VERSION
, (int __user
*)arg
) ? -EFAULT
: 0;
2510 case SNDRV_PCM_IOCTL_INFO
:
2511 return snd_pcm_info_user(substream
, arg
);
2512 case SNDRV_PCM_IOCTL_TSTAMP
: /* just for compatibility */
2514 case SNDRV_PCM_IOCTL_HW_REFINE
:
2515 return snd_pcm_hw_refine_user(substream
, arg
);
2516 case SNDRV_PCM_IOCTL_HW_PARAMS
:
2517 return snd_pcm_hw_params_user(substream
, arg
);
2518 case SNDRV_PCM_IOCTL_HW_FREE
:
2519 return snd_pcm_hw_free(substream
);
2520 case SNDRV_PCM_IOCTL_SW_PARAMS
:
2521 return snd_pcm_sw_params_user(substream
, arg
);
2522 case SNDRV_PCM_IOCTL_STATUS
:
2523 return snd_pcm_status_user(substream
, arg
);
2524 case SNDRV_PCM_IOCTL_CHANNEL_INFO
:
2525 return snd_pcm_channel_info_user(substream
, arg
);
2526 case SNDRV_PCM_IOCTL_PREPARE
:
2527 return snd_pcm_prepare(substream
, file
);
2528 case SNDRV_PCM_IOCTL_RESET
:
2529 return snd_pcm_reset(substream
);
2530 case SNDRV_PCM_IOCTL_START
:
2531 return snd_pcm_action_lock_irq(&snd_pcm_action_start
, substream
, SNDRV_PCM_STATE_RUNNING
);
2532 case SNDRV_PCM_IOCTL_LINK
:
2533 return snd_pcm_link(substream
, (int)(unsigned long) arg
);
2534 case SNDRV_PCM_IOCTL_UNLINK
:
2535 return snd_pcm_unlink(substream
);
2536 case SNDRV_PCM_IOCTL_RESUME
:
2537 return snd_pcm_resume(substream
);
2538 case SNDRV_PCM_IOCTL_XRUN
:
2539 return snd_pcm_xrun(substream
);
2540 case SNDRV_PCM_IOCTL_HWSYNC
:
2541 return snd_pcm_hwsync(substream
);
2542 case SNDRV_PCM_IOCTL_DELAY
:
2543 return snd_pcm_delay(substream
, arg
);
2544 case SNDRV_PCM_IOCTL_SYNC_PTR
:
2545 return snd_pcm_sync_ptr(substream
, arg
);
2546 #ifdef CONFIG_SND_SUPPORT_OLD_API
2547 case SNDRV_PCM_IOCTL_HW_REFINE_OLD
:
2548 return snd_pcm_hw_refine_old_user(substream
, arg
);
2549 case SNDRV_PCM_IOCTL_HW_PARAMS_OLD
:
2550 return snd_pcm_hw_params_old_user(substream
, arg
);
2552 case SNDRV_PCM_IOCTL_DRAIN
:
2553 return snd_pcm_drain(substream
);
2554 case SNDRV_PCM_IOCTL_DROP
:
2555 return snd_pcm_drop(substream
);
2556 case SNDRV_PCM_IOCTL_PAUSE
:
2559 snd_pcm_stream_lock_irq(substream
);
2560 res
= snd_pcm_pause(substream
, (int)(unsigned long)arg
);
2561 snd_pcm_stream_unlock_irq(substream
);
2565 snd_printd("unknown ioctl = 0x%x\n", cmd
);
2569 static int snd_pcm_playback_ioctl1(struct file
*file
,
2570 struct snd_pcm_substream
*substream
,
2571 unsigned int cmd
, void __user
*arg
)
2573 snd_assert(substream
!= NULL
, return -ENXIO
);
2574 snd_assert(substream
->stream
== SNDRV_PCM_STREAM_PLAYBACK
, return -EINVAL
);
2576 case SNDRV_PCM_IOCTL_WRITEI_FRAMES
:
2578 struct snd_xferi xferi
;
2579 struct snd_xferi __user
*_xferi
= arg
;
2580 struct snd_pcm_runtime
*runtime
= substream
->runtime
;
2581 snd_pcm_sframes_t result
;
2582 if (runtime
->status
->state
== SNDRV_PCM_STATE_OPEN
)
2584 if (put_user(0, &_xferi
->result
))
2586 if (copy_from_user(&xferi
, _xferi
, sizeof(xferi
)))
2588 result
= snd_pcm_lib_write(substream
, xferi
.buf
, xferi
.frames
);
2589 __put_user(result
, &_xferi
->result
);
2590 return result
< 0 ? result
: 0;
2592 case SNDRV_PCM_IOCTL_WRITEN_FRAMES
:
2594 struct snd_xfern xfern
;
2595 struct snd_xfern __user
*_xfern
= arg
;
2596 struct snd_pcm_runtime
*runtime
= substream
->runtime
;
2598 snd_pcm_sframes_t result
;
2599 if (runtime
->status
->state
== SNDRV_PCM_STATE_OPEN
)
2601 if (runtime
->channels
> 128)
2603 if (put_user(0, &_xfern
->result
))
2605 if (copy_from_user(&xfern
, _xfern
, sizeof(xfern
)))
2607 bufs
= kmalloc(sizeof(void *) * runtime
->channels
, GFP_KERNEL
);
2610 if (copy_from_user(bufs
, xfern
.bufs
, sizeof(void *) * runtime
->channels
)) {
2614 result
= snd_pcm_lib_writev(substream
, bufs
, xfern
.frames
);
2616 __put_user(result
, &_xfern
->result
);
2617 return result
< 0 ? result
: 0;
2619 case SNDRV_PCM_IOCTL_REWIND
:
2621 snd_pcm_uframes_t frames
;
2622 snd_pcm_uframes_t __user
*_frames
= arg
;
2623 snd_pcm_sframes_t result
;
2624 if (get_user(frames
, _frames
))
2626 if (put_user(0, _frames
))
2628 result
= snd_pcm_playback_rewind(substream
, frames
);
2629 __put_user(result
, _frames
);
2630 return result
< 0 ? result
: 0;
2632 case SNDRV_PCM_IOCTL_FORWARD
:
2634 snd_pcm_uframes_t frames
;
2635 snd_pcm_uframes_t __user
*_frames
= arg
;
2636 snd_pcm_sframes_t result
;
2637 if (get_user(frames
, _frames
))
2639 if (put_user(0, _frames
))
2641 result
= snd_pcm_playback_forward(substream
, frames
);
2642 __put_user(result
, _frames
);
2643 return result
< 0 ? result
: 0;
2646 return snd_pcm_common_ioctl1(file
, substream
, cmd
, arg
);
2649 static int snd_pcm_capture_ioctl1(struct file
*file
,
2650 struct snd_pcm_substream
*substream
,
2651 unsigned int cmd
, void __user
*arg
)
2653 snd_assert(substream
!= NULL
, return -ENXIO
);
2654 snd_assert(substream
->stream
== SNDRV_PCM_STREAM_CAPTURE
, return -EINVAL
);
2656 case SNDRV_PCM_IOCTL_READI_FRAMES
:
2658 struct snd_xferi xferi
;
2659 struct snd_xferi __user
*_xferi
= arg
;
2660 struct snd_pcm_runtime
*runtime
= substream
->runtime
;
2661 snd_pcm_sframes_t result
;
2662 if (runtime
->status
->state
== SNDRV_PCM_STATE_OPEN
)
2664 if (put_user(0, &_xferi
->result
))
2666 if (copy_from_user(&xferi
, _xferi
, sizeof(xferi
)))
2668 result
= snd_pcm_lib_read(substream
, xferi
.buf
, xferi
.frames
);
2669 __put_user(result
, &_xferi
->result
);
2670 return result
< 0 ? result
: 0;
2672 case SNDRV_PCM_IOCTL_READN_FRAMES
:
2674 struct snd_xfern xfern
;
2675 struct snd_xfern __user
*_xfern
= arg
;
2676 struct snd_pcm_runtime
*runtime
= substream
->runtime
;
2678 snd_pcm_sframes_t result
;
2679 if (runtime
->status
->state
== SNDRV_PCM_STATE_OPEN
)
2681 if (runtime
->channels
> 128)
2683 if (put_user(0, &_xfern
->result
))
2685 if (copy_from_user(&xfern
, _xfern
, sizeof(xfern
)))
2687 bufs
= kmalloc(sizeof(void *) * runtime
->channels
, GFP_KERNEL
);
2690 if (copy_from_user(bufs
, xfern
.bufs
, sizeof(void *) * runtime
->channels
)) {
2694 result
= snd_pcm_lib_readv(substream
, bufs
, xfern
.frames
);
2696 __put_user(result
, &_xfern
->result
);
2697 return result
< 0 ? result
: 0;
2699 case SNDRV_PCM_IOCTL_REWIND
:
2701 snd_pcm_uframes_t frames
;
2702 snd_pcm_uframes_t __user
*_frames
= arg
;
2703 snd_pcm_sframes_t result
;
2704 if (get_user(frames
, _frames
))
2706 if (put_user(0, _frames
))
2708 result
= snd_pcm_capture_rewind(substream
, frames
);
2709 __put_user(result
, _frames
);
2710 return result
< 0 ? result
: 0;
2712 case SNDRV_PCM_IOCTL_FORWARD
:
2714 snd_pcm_uframes_t frames
;
2715 snd_pcm_uframes_t __user
*_frames
= arg
;
2716 snd_pcm_sframes_t result
;
2717 if (get_user(frames
, _frames
))
2719 if (put_user(0, _frames
))
2721 result
= snd_pcm_capture_forward(substream
, frames
);
2722 __put_user(result
, _frames
);
2723 return result
< 0 ? result
: 0;
2726 return snd_pcm_common_ioctl1(file
, substream
, cmd
, arg
);
2729 static long snd_pcm_playback_ioctl(struct file
*file
, unsigned int cmd
,
2732 struct snd_pcm_file
*pcm_file
;
2734 pcm_file
= file
->private_data
;
2736 if (((cmd
>> 8) & 0xff) != 'A')
2739 return snd_pcm_playback_ioctl1(file
, pcm_file
->substream
, cmd
,
2740 (void __user
*)arg
);
2743 static long snd_pcm_capture_ioctl(struct file
*file
, unsigned int cmd
,
2746 struct snd_pcm_file
*pcm_file
;
2748 pcm_file
= file
->private_data
;
2750 if (((cmd
>> 8) & 0xff) != 'A')
2753 return snd_pcm_capture_ioctl1(file
, pcm_file
->substream
, cmd
,
2754 (void __user
*)arg
);
2757 int snd_pcm_kernel_ioctl(struct snd_pcm_substream
*substream
,
2758 unsigned int cmd
, void *arg
)
2763 fs
= snd_enter_user();
2764 switch (substream
->stream
) {
2765 case SNDRV_PCM_STREAM_PLAYBACK
:
2766 result
= snd_pcm_playback_ioctl1(NULL
, substream
, cmd
,
2767 (void __user
*)arg
);
2769 case SNDRV_PCM_STREAM_CAPTURE
:
2770 result
= snd_pcm_capture_ioctl1(NULL
, substream
, cmd
,
2771 (void __user
*)arg
);
2781 EXPORT_SYMBOL(snd_pcm_kernel_ioctl
);
2783 static ssize_t
snd_pcm_read(struct file
*file
, char __user
*buf
, size_t count
,
2786 struct snd_pcm_file
*pcm_file
;
2787 struct snd_pcm_substream
*substream
;
2788 struct snd_pcm_runtime
*runtime
;
2789 snd_pcm_sframes_t result
;
2791 pcm_file
= file
->private_data
;
2792 substream
= pcm_file
->substream
;
2793 snd_assert(substream
!= NULL
, return -ENXIO
);
2794 runtime
= substream
->runtime
;
2795 if (runtime
->status
->state
== SNDRV_PCM_STATE_OPEN
)
2797 if (!frame_aligned(runtime
, count
))
2799 count
= bytes_to_frames(runtime
, count
);
2800 result
= snd_pcm_lib_read(substream
, buf
, count
);
2802 result
= frames_to_bytes(runtime
, result
);
2806 static ssize_t
snd_pcm_write(struct file
*file
, const char __user
*buf
,
2807 size_t count
, loff_t
* offset
)
2809 struct snd_pcm_file
*pcm_file
;
2810 struct snd_pcm_substream
*substream
;
2811 struct snd_pcm_runtime
*runtime
;
2812 snd_pcm_sframes_t result
;
2814 pcm_file
= file
->private_data
;
2815 substream
= pcm_file
->substream
;
2816 snd_assert(substream
!= NULL
, result
= -ENXIO
; goto end
);
2817 runtime
= substream
->runtime
;
2818 if (runtime
->status
->state
== SNDRV_PCM_STATE_OPEN
) {
2822 if (!frame_aligned(runtime
, count
)) {
2826 count
= bytes_to_frames(runtime
, count
);
2827 result
= snd_pcm_lib_write(substream
, buf
, count
);
2829 result
= frames_to_bytes(runtime
, result
);
2834 static ssize_t
snd_pcm_readv(struct file
*file
, const struct iovec
*_vector
,
2835 unsigned long count
, loff_t
* offset
)
2838 struct snd_pcm_file
*pcm_file
;
2839 struct snd_pcm_substream
*substream
;
2840 struct snd_pcm_runtime
*runtime
;
2841 snd_pcm_sframes_t result
;
2844 snd_pcm_uframes_t frames
;
2846 pcm_file
= file
->private_data
;
2847 substream
= pcm_file
->substream
;
2848 snd_assert(substream
!= NULL
, return -ENXIO
);
2849 runtime
= substream
->runtime
;
2850 if (runtime
->status
->state
== SNDRV_PCM_STATE_OPEN
)
2852 if (count
> 1024 || count
!= runtime
->channels
)
2854 if (!frame_aligned(runtime
, _vector
->iov_len
))
2856 frames
= bytes_to_samples(runtime
, _vector
->iov_len
);
2857 bufs
= kmalloc(sizeof(void *) * count
, GFP_KERNEL
);
2860 for (i
= 0; i
< count
; ++i
)
2861 bufs
[i
] = _vector
[i
].iov_base
;
2862 result
= snd_pcm_lib_readv(substream
, bufs
, frames
);
2864 result
= frames_to_bytes(runtime
, result
);
2869 static ssize_t
snd_pcm_writev(struct file
*file
, const struct iovec
*_vector
,
2870 unsigned long count
, loff_t
* offset
)
2872 struct snd_pcm_file
*pcm_file
;
2873 struct snd_pcm_substream
*substream
;
2874 struct snd_pcm_runtime
*runtime
;
2875 snd_pcm_sframes_t result
;
2878 snd_pcm_uframes_t frames
;
2880 pcm_file
= file
->private_data
;
2881 substream
= pcm_file
->substream
;
2882 snd_assert(substream
!= NULL
, result
= -ENXIO
; goto end
);
2883 runtime
= substream
->runtime
;
2884 if (runtime
->status
->state
== SNDRV_PCM_STATE_OPEN
) {
2888 if (count
> 128 || count
!= runtime
->channels
||
2889 !frame_aligned(runtime
, _vector
->iov_len
)) {
2893 frames
= bytes_to_samples(runtime
, _vector
->iov_len
);
2894 bufs
= kmalloc(sizeof(void *) * count
, GFP_KERNEL
);
2897 for (i
= 0; i
< count
; ++i
)
2898 bufs
[i
] = _vector
[i
].iov_base
;
2899 result
= snd_pcm_lib_writev(substream
, bufs
, frames
);
2901 result
= frames_to_bytes(runtime
, result
);
2907 static unsigned int snd_pcm_playback_poll(struct file
*file
, poll_table
* wait
)
2909 struct snd_pcm_file
*pcm_file
;
2910 struct snd_pcm_substream
*substream
;
2911 struct snd_pcm_runtime
*runtime
;
2913 snd_pcm_uframes_t avail
;
2915 pcm_file
= file
->private_data
;
2917 substream
= pcm_file
->substream
;
2918 snd_assert(substream
!= NULL
, return -ENXIO
);
2919 runtime
= substream
->runtime
;
2921 poll_wait(file
, &runtime
->sleep
, wait
);
2923 snd_pcm_stream_lock_irq(substream
);
2924 avail
= snd_pcm_playback_avail(runtime
);
2925 switch (runtime
->status
->state
) {
2926 case SNDRV_PCM_STATE_RUNNING
:
2927 case SNDRV_PCM_STATE_PREPARED
:
2928 case SNDRV_PCM_STATE_PAUSED
:
2929 if (avail
>= runtime
->control
->avail_min
) {
2930 mask
= POLLOUT
| POLLWRNORM
;
2934 case SNDRV_PCM_STATE_DRAINING
:
2938 mask
= POLLOUT
| POLLWRNORM
| POLLERR
;
2941 snd_pcm_stream_unlock_irq(substream
);
2945 static unsigned int snd_pcm_capture_poll(struct file
*file
, poll_table
* wait
)
2947 struct snd_pcm_file
*pcm_file
;
2948 struct snd_pcm_substream
*substream
;
2949 struct snd_pcm_runtime
*runtime
;
2951 snd_pcm_uframes_t avail
;
2953 pcm_file
= file
->private_data
;
2955 substream
= pcm_file
->substream
;
2956 snd_assert(substream
!= NULL
, return -ENXIO
);
2957 runtime
= substream
->runtime
;
2959 poll_wait(file
, &runtime
->sleep
, wait
);
2961 snd_pcm_stream_lock_irq(substream
);
2962 avail
= snd_pcm_capture_avail(runtime
);
2963 switch (runtime
->status
->state
) {
2964 case SNDRV_PCM_STATE_RUNNING
:
2965 case SNDRV_PCM_STATE_PREPARED
:
2966 case SNDRV_PCM_STATE_PAUSED
:
2967 if (avail
>= runtime
->control
->avail_min
) {
2968 mask
= POLLIN
| POLLRDNORM
;
2973 case SNDRV_PCM_STATE_DRAINING
:
2975 mask
= POLLIN
| POLLRDNORM
;
2980 mask
= POLLIN
| POLLRDNORM
| POLLERR
;
2983 snd_pcm_stream_unlock_irq(substream
);
2992 * Only on coherent architectures, we can mmap the status and the control records
2993 * for effcient data transfer. On others, we have to use HWSYNC ioctl...
2995 #if defined(CONFIG_X86) || defined(CONFIG_PPC) || defined(CONFIG_ALPHA)
2997 * mmap status record
2999 static struct page
* snd_pcm_mmap_status_nopage(struct vm_area_struct
*area
,
3000 unsigned long address
, int *type
)
3002 struct snd_pcm_substream
*substream
= area
->vm_private_data
;
3003 struct snd_pcm_runtime
*runtime
;
3006 if (substream
== NULL
)
3008 runtime
= substream
->runtime
;
3009 page
= virt_to_page(runtime
->status
);
3012 *type
= VM_FAULT_MINOR
;
3016 static struct vm_operations_struct snd_pcm_vm_ops_status
=
3018 .nopage
= snd_pcm_mmap_status_nopage
,
3021 static int snd_pcm_mmap_status(struct snd_pcm_substream
*substream
, struct file
*file
,
3022 struct vm_area_struct
*area
)
3024 struct snd_pcm_runtime
*runtime
;
3026 if (!(area
->vm_flags
& VM_READ
))
3028 runtime
= substream
->runtime
;
3029 snd_assert(runtime
!= NULL
, return -EAGAIN
);
3030 size
= area
->vm_end
- area
->vm_start
;
3031 if (size
!= PAGE_ALIGN(sizeof(struct snd_pcm_mmap_status
)))
3033 area
->vm_ops
= &snd_pcm_vm_ops_status
;
3034 area
->vm_private_data
= substream
;
3035 area
->vm_flags
|= VM_RESERVED
;
3040 * mmap control record
3042 static struct page
* snd_pcm_mmap_control_nopage(struct vm_area_struct
*area
,
3043 unsigned long address
, int *type
)
3045 struct snd_pcm_substream
*substream
= area
->vm_private_data
;
3046 struct snd_pcm_runtime
*runtime
;
3049 if (substream
== NULL
)
3051 runtime
= substream
->runtime
;
3052 page
= virt_to_page(runtime
->control
);
3055 *type
= VM_FAULT_MINOR
;
3059 static struct vm_operations_struct snd_pcm_vm_ops_control
=
3061 .nopage
= snd_pcm_mmap_control_nopage
,
3064 static int snd_pcm_mmap_control(struct snd_pcm_substream
*substream
, struct file
*file
,
3065 struct vm_area_struct
*area
)
3067 struct snd_pcm_runtime
*runtime
;
3069 if (!(area
->vm_flags
& VM_READ
))
3071 runtime
= substream
->runtime
;
3072 snd_assert(runtime
!= NULL
, return -EAGAIN
);
3073 size
= area
->vm_end
- area
->vm_start
;
3074 if (size
!= PAGE_ALIGN(sizeof(struct snd_pcm_mmap_control
)))
3076 area
->vm_ops
= &snd_pcm_vm_ops_control
;
3077 area
->vm_private_data
= substream
;
3078 area
->vm_flags
|= VM_RESERVED
;
3081 #else /* ! coherent mmap */
3083 * don't support mmap for status and control records.
3085 static int snd_pcm_mmap_status(struct snd_pcm_substream
*substream
, struct file
*file
,
3086 struct vm_area_struct
*area
)
3090 static int snd_pcm_mmap_control(struct snd_pcm_substream
*substream
, struct file
*file
,
3091 struct vm_area_struct
*area
)
3095 #endif /* coherent mmap */
3098 * nopage callback for mmapping a RAM page
3100 static struct page
*snd_pcm_mmap_data_nopage(struct vm_area_struct
*area
,
3101 unsigned long address
, int *type
)
3103 struct snd_pcm_substream
*substream
= area
->vm_private_data
;
3104 struct snd_pcm_runtime
*runtime
;
3105 unsigned long offset
;
3110 if (substream
== NULL
)
3112 runtime
= substream
->runtime
;
3113 offset
= area
->vm_pgoff
<< PAGE_SHIFT
;
3114 offset
+= address
- area
->vm_start
;
3115 snd_assert((offset
% PAGE_SIZE
) == 0, return NOPAGE_OOM
);
3116 dma_bytes
= PAGE_ALIGN(runtime
->dma_bytes
);
3117 if (offset
> dma_bytes
- PAGE_SIZE
)
3118 return NOPAGE_SIGBUS
;
3119 if (substream
->ops
->page
) {
3120 page
= substream
->ops
->page(substream
, offset
);
3124 vaddr
= runtime
->dma_area
+ offset
;
3125 page
= virt_to_page(vaddr
);
3129 *type
= VM_FAULT_MINOR
;
3133 static struct vm_operations_struct snd_pcm_vm_ops_data
=
3135 .open
= snd_pcm_mmap_data_open
,
3136 .close
= snd_pcm_mmap_data_close
,
3137 .nopage
= snd_pcm_mmap_data_nopage
,
3141 * mmap the DMA buffer on RAM
3143 static int snd_pcm_default_mmap(struct snd_pcm_substream
*substream
,
3144 struct vm_area_struct
*area
)
3146 area
->vm_ops
= &snd_pcm_vm_ops_data
;
3147 area
->vm_private_data
= substream
;
3148 area
->vm_flags
|= VM_RESERVED
;
3149 atomic_inc(&substream
->mmap_count
);
3154 * mmap the DMA buffer on I/O memory area
3156 #if SNDRV_PCM_INFO_MMAP_IOMEM
3157 static struct vm_operations_struct snd_pcm_vm_ops_data_mmio
=
3159 .open
= snd_pcm_mmap_data_open
,
3160 .close
= snd_pcm_mmap_data_close
,
3163 int snd_pcm_lib_mmap_iomem(struct snd_pcm_substream
*substream
,
3164 struct vm_area_struct
*area
)
3167 unsigned long offset
;
3169 #ifdef pgprot_noncached
3170 area
->vm_page_prot
= pgprot_noncached(area
->vm_page_prot
);
3172 area
->vm_ops
= &snd_pcm_vm_ops_data_mmio
;
3173 area
->vm_private_data
= substream
;
3174 area
->vm_flags
|= VM_IO
;
3175 size
= area
->vm_end
- area
->vm_start
;
3176 offset
= area
->vm_pgoff
<< PAGE_SHIFT
;
3177 if (io_remap_pfn_range(area
, area
->vm_start
,
3178 (substream
->runtime
->dma_addr
+ offset
) >> PAGE_SHIFT
,
3179 size
, area
->vm_page_prot
))
3181 atomic_inc(&substream
->mmap_count
);
3185 EXPORT_SYMBOL(snd_pcm_lib_mmap_iomem
);
3186 #endif /* SNDRV_PCM_INFO_MMAP */
3191 int snd_pcm_mmap_data(struct snd_pcm_substream
*substream
, struct file
*file
,
3192 struct vm_area_struct
*area
)
3194 struct snd_pcm_runtime
*runtime
;
3196 unsigned long offset
;
3199 if (substream
->stream
== SNDRV_PCM_STREAM_PLAYBACK
) {
3200 if (!(area
->vm_flags
& (VM_WRITE
|VM_READ
)))
3203 if (!(area
->vm_flags
& VM_READ
))
3206 runtime
= substream
->runtime
;
3207 snd_assert(runtime
!= NULL
, return -EAGAIN
);
3208 if (runtime
->status
->state
== SNDRV_PCM_STATE_OPEN
)
3210 if (!(runtime
->info
& SNDRV_PCM_INFO_MMAP
))
3212 if (runtime
->access
== SNDRV_PCM_ACCESS_RW_INTERLEAVED
||
3213 runtime
->access
== SNDRV_PCM_ACCESS_RW_NONINTERLEAVED
)
3215 size
= area
->vm_end
- area
->vm_start
;
3216 offset
= area
->vm_pgoff
<< PAGE_SHIFT
;
3217 dma_bytes
= PAGE_ALIGN(runtime
->dma_bytes
);
3218 if ((size_t)size
> dma_bytes
)
3220 if (offset
> dma_bytes
- size
)
3223 if (substream
->ops
->mmap
)
3224 return substream
->ops
->mmap(substream
, area
);
3226 return snd_pcm_default_mmap(substream
, area
);
3229 EXPORT_SYMBOL(snd_pcm_mmap_data
);
3231 static int snd_pcm_mmap(struct file
*file
, struct vm_area_struct
*area
)
3233 struct snd_pcm_file
* pcm_file
;
3234 struct snd_pcm_substream
*substream
;
3235 unsigned long offset
;
3237 pcm_file
= file
->private_data
;
3238 substream
= pcm_file
->substream
;
3239 snd_assert(substream
!= NULL
, return -ENXIO
);
3241 offset
= area
->vm_pgoff
<< PAGE_SHIFT
;
3243 case SNDRV_PCM_MMAP_OFFSET_STATUS
:
3244 if (pcm_file
->no_compat_mmap
)
3246 return snd_pcm_mmap_status(substream
, file
, area
);
3247 case SNDRV_PCM_MMAP_OFFSET_CONTROL
:
3248 if (pcm_file
->no_compat_mmap
)
3250 return snd_pcm_mmap_control(substream
, file
, area
);
3252 return snd_pcm_mmap_data(substream
, file
, area
);
3257 static int snd_pcm_fasync(int fd
, struct file
* file
, int on
)
3259 struct snd_pcm_file
* pcm_file
;
3260 struct snd_pcm_substream
*substream
;
3261 struct snd_pcm_runtime
*runtime
;
3264 pcm_file
= file
->private_data
;
3265 substream
= pcm_file
->substream
;
3266 snd_assert(substream
!= NULL
, return -ENXIO
);
3267 runtime
= substream
->runtime
;
3269 err
= fasync_helper(fd
, file
, on
, &runtime
->fasync
);
3278 #ifdef CONFIG_COMPAT
3279 #include "pcm_compat.c"
3281 #define snd_pcm_ioctl_compat NULL
3285 * To be removed helpers to keep binary compatibility
3288 #ifdef CONFIG_SND_SUPPORT_OLD_API
3289 #define __OLD_TO_NEW_MASK(x) ((x&7)|((x&0x07fffff8)<<5))
3290 #define __NEW_TO_OLD_MASK(x) ((x&7)|((x&0xffffff00)>>5))
3292 static void snd_pcm_hw_convert_from_old_params(struct snd_pcm_hw_params
*params
,
3293 struct snd_pcm_hw_params_old
*oparams
)
3297 memset(params
, 0, sizeof(*params
));
3298 params
->flags
= oparams
->flags
;
3299 for (i
= 0; i
< ARRAY_SIZE(oparams
->masks
); i
++)
3300 params
->masks
[i
].bits
[0] = oparams
->masks
[i
];
3301 memcpy(params
->intervals
, oparams
->intervals
, sizeof(oparams
->intervals
));
3302 params
->rmask
= __OLD_TO_NEW_MASK(oparams
->rmask
);
3303 params
->cmask
= __OLD_TO_NEW_MASK(oparams
->cmask
);
3304 params
->info
= oparams
->info
;
3305 params
->msbits
= oparams
->msbits
;
3306 params
->rate_num
= oparams
->rate_num
;
3307 params
->rate_den
= oparams
->rate_den
;
3308 params
->fifo_size
= oparams
->fifo_size
;
3311 static void snd_pcm_hw_convert_to_old_params(struct snd_pcm_hw_params_old
*oparams
,
3312 struct snd_pcm_hw_params
*params
)
3316 memset(oparams
, 0, sizeof(*oparams
));
3317 oparams
->flags
= params
->flags
;
3318 for (i
= 0; i
< ARRAY_SIZE(oparams
->masks
); i
++)
3319 oparams
->masks
[i
] = params
->masks
[i
].bits
[0];
3320 memcpy(oparams
->intervals
, params
->intervals
, sizeof(oparams
->intervals
));
3321 oparams
->rmask
= __NEW_TO_OLD_MASK(params
->rmask
);
3322 oparams
->cmask
= __NEW_TO_OLD_MASK(params
->cmask
);
3323 oparams
->info
= params
->info
;
3324 oparams
->msbits
= params
->msbits
;
3325 oparams
->rate_num
= params
->rate_num
;
3326 oparams
->rate_den
= params
->rate_den
;
3327 oparams
->fifo_size
= params
->fifo_size
;
3330 static int snd_pcm_hw_refine_old_user(struct snd_pcm_substream
*substream
,
3331 struct snd_pcm_hw_params_old __user
* _oparams
)
3333 struct snd_pcm_hw_params
*params
;
3334 struct snd_pcm_hw_params_old
*oparams
= NULL
;
3337 params
= kmalloc(sizeof(*params
), GFP_KERNEL
);
3342 oparams
= kmalloc(sizeof(*oparams
), GFP_KERNEL
);
3348 if (copy_from_user(oparams
, _oparams
, sizeof(*oparams
))) {
3352 snd_pcm_hw_convert_from_old_params(params
, oparams
);
3353 err
= snd_pcm_hw_refine(substream
, params
);
3354 snd_pcm_hw_convert_to_old_params(oparams
, params
);
3355 if (copy_to_user(_oparams
, oparams
, sizeof(*oparams
))) {
3365 static int snd_pcm_hw_params_old_user(struct snd_pcm_substream
*substream
,
3366 struct snd_pcm_hw_params_old __user
* _oparams
)
3368 struct snd_pcm_hw_params
*params
;
3369 struct snd_pcm_hw_params_old
*oparams
= NULL
;
3372 params
= kmalloc(sizeof(*params
), GFP_KERNEL
);
3377 oparams
= kmalloc(sizeof(*oparams
), GFP_KERNEL
);
3382 if (copy_from_user(oparams
, _oparams
, sizeof(*oparams
))) {
3386 snd_pcm_hw_convert_from_old_params(params
, oparams
);
3387 err
= snd_pcm_hw_params(substream
, params
);
3388 snd_pcm_hw_convert_to_old_params(oparams
, params
);
3389 if (copy_to_user(_oparams
, oparams
, sizeof(*oparams
))) {
3398 #endif /* CONFIG_SND_SUPPORT_OLD_API */
3404 struct file_operations snd_pcm_f_ops
[2] = {
3406 .owner
= THIS_MODULE
,
3407 .write
= snd_pcm_write
,
3408 .writev
= snd_pcm_writev
,
3409 .open
= snd_pcm_playback_open
,
3410 .release
= snd_pcm_release
,
3411 .poll
= snd_pcm_playback_poll
,
3412 .unlocked_ioctl
= snd_pcm_playback_ioctl
,
3413 .compat_ioctl
= snd_pcm_ioctl_compat
,
3414 .mmap
= snd_pcm_mmap
,
3415 .fasync
= snd_pcm_fasync
,
3418 .owner
= THIS_MODULE
,
3419 .read
= snd_pcm_read
,
3420 .readv
= snd_pcm_readv
,
3421 .open
= snd_pcm_capture_open
,
3422 .release
= snd_pcm_release
,
3423 .poll
= snd_pcm_capture_poll
,
3424 .unlocked_ioctl
= snd_pcm_capture_ioctl
,
3425 .compat_ioctl
= snd_pcm_ioctl_compat
,
3426 .mmap
= snd_pcm_mmap
,
3427 .fasync
= snd_pcm_fasync
,