2 * Digital Audio (PCM) abstract layer
3 * Copyright (c) by Jaroslav Kysela <perex@perex.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
23 #include <linux/file.h>
24 #include <linux/slab.h>
25 #include <linux/smp_lock.h>
26 #include <linux/time.h>
27 #include <linux/pm_qos_params.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 memset(info
, 0, sizeof(*info
));
99 info
->card
= pcm
->card
->number
;
100 info
->device
= pcm
->device
;
101 info
->stream
= substream
->stream
;
102 info
->subdevice
= substream
->number
;
103 strlcpy(info
->id
, pcm
->id
, sizeof(info
->id
));
104 strlcpy(info
->name
, pcm
->name
, sizeof(info
->name
));
105 info
->dev_class
= pcm
->dev_class
;
106 info
->dev_subclass
= pcm
->dev_subclass
;
107 info
->subdevices_count
= pstr
->substream_count
;
108 info
->subdevices_avail
= pstr
->substream_count
- pstr
->substream_opened
;
109 strlcpy(info
->subname
, substream
->name
, sizeof(info
->subname
));
110 runtime
= substream
->runtime
;
111 /* AB: FIXME!!! This is definitely nonsense */
113 info
->sync
= runtime
->sync
;
114 substream
->ops
->ioctl(substream
, SNDRV_PCM_IOCTL1_INFO
, info
);
119 int snd_pcm_info_user(struct snd_pcm_substream
*substream
,
120 struct snd_pcm_info __user
* _info
)
122 struct snd_pcm_info
*info
;
125 info
= kmalloc(sizeof(*info
), GFP_KERNEL
);
128 err
= snd_pcm_info(substream
, info
);
130 if (copy_to_user(_info
, info
, sizeof(*info
)))
140 #define HW_PARAM(v) [SNDRV_PCM_HW_PARAM_##v] = #v
141 char *snd_pcm_hw_param_names
[] = {
145 HW_PARAM(SAMPLE_BITS
),
146 HW_PARAM(FRAME_BITS
),
149 HW_PARAM(PERIOD_TIME
),
150 HW_PARAM(PERIOD_SIZE
),
151 HW_PARAM(PERIOD_BYTES
),
153 HW_PARAM(BUFFER_TIME
),
154 HW_PARAM(BUFFER_SIZE
),
155 HW_PARAM(BUFFER_BYTES
),
160 int snd_pcm_hw_refine(struct snd_pcm_substream
*substream
,
161 struct snd_pcm_hw_params
*params
)
164 struct snd_pcm_hardware
*hw
;
165 struct snd_interval
*i
= NULL
;
166 struct snd_mask
*m
= NULL
;
167 struct snd_pcm_hw_constraints
*constrs
= &substream
->runtime
->hw_constraints
;
168 unsigned int rstamps
[constrs
->rules_num
];
169 unsigned int vstamps
[SNDRV_PCM_HW_PARAM_LAST_INTERVAL
+ 1];
170 unsigned int stamp
= 2;
174 params
->fifo_size
= 0;
175 if (params
->rmask
& (1 << SNDRV_PCM_HW_PARAM_SAMPLE_BITS
))
177 if (params
->rmask
& (1 << SNDRV_PCM_HW_PARAM_RATE
)) {
178 params
->rate_num
= 0;
179 params
->rate_den
= 0;
182 for (k
= SNDRV_PCM_HW_PARAM_FIRST_MASK
; k
<= SNDRV_PCM_HW_PARAM_LAST_MASK
; k
++) {
183 m
= hw_param_mask(params
, k
);
184 if (snd_mask_empty(m
))
186 if (!(params
->rmask
& (1 << k
)))
189 printk("%s = ", snd_pcm_hw_param_names
[k
]);
190 printk("%04x%04x%04x%04x -> ", m
->bits
[3], m
->bits
[2], m
->bits
[1], m
->bits
[0]);
192 changed
= snd_mask_refine(m
, constrs_mask(constrs
, k
));
194 printk("%04x%04x%04x%04x\n", m
->bits
[3], m
->bits
[2], m
->bits
[1], m
->bits
[0]);
197 params
->cmask
|= 1 << k
;
202 for (k
= SNDRV_PCM_HW_PARAM_FIRST_INTERVAL
; k
<= SNDRV_PCM_HW_PARAM_LAST_INTERVAL
; k
++) {
203 i
= hw_param_interval(params
, k
);
204 if (snd_interval_empty(i
))
206 if (!(params
->rmask
& (1 << k
)))
209 printk("%s = ", snd_pcm_hw_param_names
[k
]);
214 i
->openmin
? '(' : '[', i
->min
,
215 i
->max
, i
->openmax
? ')' : ']');
218 changed
= snd_interval_refine(i
, constrs_interval(constrs
, k
));
223 printk("%c%u %u%c\n",
224 i
->openmin
? '(' : '[', i
->min
,
225 i
->max
, i
->openmax
? ')' : ']');
228 params
->cmask
|= 1 << k
;
233 for (k
= 0; k
< constrs
->rules_num
; k
++)
235 for (k
= 0; k
<= SNDRV_PCM_HW_PARAM_LAST_INTERVAL
; k
++)
236 vstamps
[k
] = (params
->rmask
& (1 << k
)) ? 1 : 0;
239 for (k
= 0; k
< constrs
->rules_num
; k
++) {
240 struct snd_pcm_hw_rule
*r
= &constrs
->rules
[k
];
243 if (r
->cond
&& !(r
->cond
& params
->flags
))
245 for (d
= 0; r
->deps
[d
] >= 0; d
++) {
246 if (vstamps
[r
->deps
[d
]] > rstamps
[k
]) {
254 printk("Rule %d [%p]: ", k
, r
->func
);
256 printk("%s = ", snd_pcm_hw_param_names
[r
->var
]);
257 if (hw_is_mask(r
->var
)) {
258 m
= hw_param_mask(params
, r
->var
);
259 printk("%x", *m
->bits
);
261 i
= hw_param_interval(params
, r
->var
);
266 i
->openmin
? '(' : '[', i
->min
,
267 i
->max
, i
->openmax
? ')' : ']');
271 changed
= r
->func(params
, r
);
275 if (hw_is_mask(r
->var
))
276 printk("%x", *m
->bits
);
282 i
->openmin
? '(' : '[', i
->min
,
283 i
->max
, i
->openmax
? ')' : ']');
289 if (changed
&& r
->var
>= 0) {
290 params
->cmask
|= (1 << r
->var
);
291 vstamps
[r
->var
] = stamp
;
299 if (!params
->msbits
) {
300 i
= hw_param_interval(params
, SNDRV_PCM_HW_PARAM_SAMPLE_BITS
);
301 if (snd_interval_single(i
))
302 params
->msbits
= snd_interval_value(i
);
305 if (!params
->rate_den
) {
306 i
= hw_param_interval(params
, SNDRV_PCM_HW_PARAM_RATE
);
307 if (snd_interval_single(i
)) {
308 params
->rate_num
= snd_interval_value(i
);
309 params
->rate_den
= 1;
313 hw
= &substream
->runtime
->hw
;
315 params
->info
= hw
->info
;
316 if (!params
->fifo_size
)
317 params
->fifo_size
= hw
->fifo_size
;
322 EXPORT_SYMBOL(snd_pcm_hw_refine
);
324 static int snd_pcm_hw_refine_user(struct snd_pcm_substream
*substream
,
325 struct snd_pcm_hw_params __user
* _params
)
327 struct snd_pcm_hw_params
*params
;
330 params
= kmalloc(sizeof(*params
), GFP_KERNEL
);
335 if (copy_from_user(params
, _params
, sizeof(*params
))) {
339 err
= snd_pcm_hw_refine(substream
, params
);
340 if (copy_to_user(_params
, params
, sizeof(*params
))) {
349 static int period_to_usecs(struct snd_pcm_runtime
*runtime
)
354 return -1; /* invalid */
356 /* take 75% of period time as the deadline */
357 usecs
= (750000 / runtime
->rate
) * runtime
->period_size
;
358 usecs
+= ((750000 % runtime
->rate
) * runtime
->period_size
) /
364 static int snd_pcm_hw_params(struct snd_pcm_substream
*substream
,
365 struct snd_pcm_hw_params
*params
)
367 struct snd_pcm_runtime
*runtime
;
370 snd_pcm_uframes_t frames
;
372 if (PCM_RUNTIME_CHECK(substream
))
374 runtime
= substream
->runtime
;
375 snd_pcm_stream_lock_irq(substream
);
376 switch (runtime
->status
->state
) {
377 case SNDRV_PCM_STATE_OPEN
:
378 case SNDRV_PCM_STATE_SETUP
:
379 case SNDRV_PCM_STATE_PREPARED
:
382 snd_pcm_stream_unlock_irq(substream
);
385 snd_pcm_stream_unlock_irq(substream
);
386 #if defined(CONFIG_SND_PCM_OSS) || defined(CONFIG_SND_PCM_OSS_MODULE)
387 if (!substream
->oss
.oss
)
389 if (atomic_read(&substream
->mmap_count
))
393 err
= snd_pcm_hw_refine(substream
, params
);
397 err
= snd_pcm_hw_params_choose(substream
, params
);
401 if (substream
->ops
->hw_params
!= NULL
) {
402 err
= substream
->ops
->hw_params(substream
, params
);
407 runtime
->access
= params_access(params
);
408 runtime
->format
= params_format(params
);
409 runtime
->subformat
= params_subformat(params
);
410 runtime
->channels
= params_channels(params
);
411 runtime
->rate
= params_rate(params
);
412 runtime
->period_size
= params_period_size(params
);
413 runtime
->periods
= params_periods(params
);
414 runtime
->buffer_size
= params_buffer_size(params
);
415 runtime
->info
= params
->info
;
416 runtime
->rate_num
= params
->rate_num
;
417 runtime
->rate_den
= params
->rate_den
;
419 bits
= snd_pcm_format_physical_width(runtime
->format
);
420 runtime
->sample_bits
= bits
;
421 bits
*= runtime
->channels
;
422 runtime
->frame_bits
= bits
;
424 while (bits
% 8 != 0) {
428 runtime
->byte_align
= bits
/ 8;
429 runtime
->min_align
= frames
;
431 /* Default sw params */
432 runtime
->tstamp_mode
= SNDRV_PCM_TSTAMP_NONE
;
433 runtime
->period_step
= 1;
434 runtime
->control
->avail_min
= runtime
->period_size
;
435 runtime
->start_threshold
= 1;
436 runtime
->stop_threshold
= runtime
->buffer_size
;
437 runtime
->silence_threshold
= 0;
438 runtime
->silence_size
= 0;
439 runtime
->boundary
= runtime
->buffer_size
;
440 while (runtime
->boundary
* 2 <= LONG_MAX
- runtime
->buffer_size
)
441 runtime
->boundary
*= 2;
443 snd_pcm_timer_resolution_change(substream
);
444 runtime
->status
->state
= SNDRV_PCM_STATE_SETUP
;
446 pm_qos_remove_requirement(PM_QOS_CPU_DMA_LATENCY
,
447 substream
->latency_id
);
448 if ((usecs
= period_to_usecs(runtime
)) >= 0)
449 pm_qos_add_requirement(PM_QOS_CPU_DMA_LATENCY
,
450 substream
->latency_id
, usecs
);
453 /* hardware might be unuseable from this time,
454 so we force application to retry to set
455 the correct hardware parameter settings */
456 runtime
->status
->state
= SNDRV_PCM_STATE_OPEN
;
457 if (substream
->ops
->hw_free
!= NULL
)
458 substream
->ops
->hw_free(substream
);
462 static int snd_pcm_hw_params_user(struct snd_pcm_substream
*substream
,
463 struct snd_pcm_hw_params __user
* _params
)
465 struct snd_pcm_hw_params
*params
;
468 params
= kmalloc(sizeof(*params
), GFP_KERNEL
);
473 if (copy_from_user(params
, _params
, sizeof(*params
))) {
477 err
= snd_pcm_hw_params(substream
, params
);
478 if (copy_to_user(_params
, params
, sizeof(*params
))) {
487 static int snd_pcm_hw_free(struct snd_pcm_substream
*substream
)
489 struct snd_pcm_runtime
*runtime
;
492 if (PCM_RUNTIME_CHECK(substream
))
494 runtime
= substream
->runtime
;
495 snd_pcm_stream_lock_irq(substream
);
496 switch (runtime
->status
->state
) {
497 case SNDRV_PCM_STATE_SETUP
:
498 case SNDRV_PCM_STATE_PREPARED
:
501 snd_pcm_stream_unlock_irq(substream
);
504 snd_pcm_stream_unlock_irq(substream
);
505 if (atomic_read(&substream
->mmap_count
))
507 if (substream
->ops
->hw_free
)
508 result
= substream
->ops
->hw_free(substream
);
509 runtime
->status
->state
= SNDRV_PCM_STATE_OPEN
;
510 pm_qos_remove_requirement(PM_QOS_CPU_DMA_LATENCY
,
511 substream
->latency_id
);
515 static int snd_pcm_sw_params(struct snd_pcm_substream
*substream
,
516 struct snd_pcm_sw_params
*params
)
518 struct snd_pcm_runtime
*runtime
;
520 if (PCM_RUNTIME_CHECK(substream
))
522 runtime
= substream
->runtime
;
523 snd_pcm_stream_lock_irq(substream
);
524 if (runtime
->status
->state
== SNDRV_PCM_STATE_OPEN
) {
525 snd_pcm_stream_unlock_irq(substream
);
528 snd_pcm_stream_unlock_irq(substream
);
530 if (params
->tstamp_mode
> SNDRV_PCM_TSTAMP_LAST
)
532 if (params
->avail_min
== 0)
534 if (params
->silence_size
>= runtime
->boundary
) {
535 if (params
->silence_threshold
!= 0)
538 if (params
->silence_size
> params
->silence_threshold
)
540 if (params
->silence_threshold
> runtime
->buffer_size
)
543 snd_pcm_stream_lock_irq(substream
);
544 runtime
->tstamp_mode
= params
->tstamp_mode
;
545 runtime
->period_step
= params
->period_step
;
546 runtime
->control
->avail_min
= params
->avail_min
;
547 runtime
->start_threshold
= params
->start_threshold
;
548 runtime
->stop_threshold
= params
->stop_threshold
;
549 runtime
->silence_threshold
= params
->silence_threshold
;
550 runtime
->silence_size
= params
->silence_size
;
551 params
->boundary
= runtime
->boundary
;
552 if (snd_pcm_running(substream
)) {
553 if (substream
->stream
== SNDRV_PCM_STREAM_PLAYBACK
&&
554 runtime
->silence_size
> 0)
555 snd_pcm_playback_silence(substream
, ULONG_MAX
);
556 wake_up(&runtime
->sleep
);
558 snd_pcm_stream_unlock_irq(substream
);
562 static int snd_pcm_sw_params_user(struct snd_pcm_substream
*substream
,
563 struct snd_pcm_sw_params __user
* _params
)
565 struct snd_pcm_sw_params params
;
567 if (copy_from_user(¶ms
, _params
, sizeof(params
)))
569 err
= snd_pcm_sw_params(substream
, ¶ms
);
570 if (copy_to_user(_params
, ¶ms
, sizeof(params
)))
575 int snd_pcm_status(struct snd_pcm_substream
*substream
,
576 struct snd_pcm_status
*status
)
578 struct snd_pcm_runtime
*runtime
= substream
->runtime
;
580 snd_pcm_stream_lock_irq(substream
);
581 status
->state
= runtime
->status
->state
;
582 status
->suspended_state
= runtime
->status
->suspended_state
;
583 if (status
->state
== SNDRV_PCM_STATE_OPEN
)
585 status
->trigger_tstamp
= runtime
->trigger_tstamp
;
586 if (snd_pcm_running(substream
)) {
587 snd_pcm_update_hw_ptr(substream
);
588 if (runtime
->tstamp_mode
== SNDRV_PCM_TSTAMP_ENABLE
) {
589 status
->tstamp
= runtime
->status
->tstamp
;
593 snd_pcm_gettime(runtime
, &status
->tstamp
);
595 status
->appl_ptr
= runtime
->control
->appl_ptr
;
596 status
->hw_ptr
= runtime
->status
->hw_ptr
;
597 if (substream
->stream
== SNDRV_PCM_STREAM_PLAYBACK
) {
598 status
->avail
= snd_pcm_playback_avail(runtime
);
599 if (runtime
->status
->state
== SNDRV_PCM_STATE_RUNNING
||
600 runtime
->status
->state
== SNDRV_PCM_STATE_DRAINING
)
601 status
->delay
= runtime
->buffer_size
- status
->avail
;
605 status
->avail
= snd_pcm_capture_avail(runtime
);
606 if (runtime
->status
->state
== SNDRV_PCM_STATE_RUNNING
)
607 status
->delay
= status
->avail
;
611 status
->avail_max
= runtime
->avail_max
;
612 status
->overrange
= runtime
->overrange
;
613 runtime
->avail_max
= 0;
614 runtime
->overrange
= 0;
616 snd_pcm_stream_unlock_irq(substream
);
620 static int snd_pcm_status_user(struct snd_pcm_substream
*substream
,
621 struct snd_pcm_status __user
* _status
)
623 struct snd_pcm_status status
;
626 memset(&status
, 0, sizeof(status
));
627 res
= snd_pcm_status(substream
, &status
);
630 if (copy_to_user(_status
, &status
, sizeof(status
)))
635 static int snd_pcm_channel_info(struct snd_pcm_substream
*substream
,
636 struct snd_pcm_channel_info
* info
)
638 struct snd_pcm_runtime
*runtime
;
639 unsigned int channel
;
641 channel
= info
->channel
;
642 runtime
= substream
->runtime
;
643 snd_pcm_stream_lock_irq(substream
);
644 if (runtime
->status
->state
== SNDRV_PCM_STATE_OPEN
) {
645 snd_pcm_stream_unlock_irq(substream
);
648 snd_pcm_stream_unlock_irq(substream
);
649 if (channel
>= runtime
->channels
)
651 memset(info
, 0, sizeof(*info
));
652 info
->channel
= channel
;
653 return substream
->ops
->ioctl(substream
, SNDRV_PCM_IOCTL1_CHANNEL_INFO
, info
);
656 static int snd_pcm_channel_info_user(struct snd_pcm_substream
*substream
,
657 struct snd_pcm_channel_info __user
* _info
)
659 struct snd_pcm_channel_info info
;
662 if (copy_from_user(&info
, _info
, sizeof(info
)))
664 res
= snd_pcm_channel_info(substream
, &info
);
667 if (copy_to_user(_info
, &info
, sizeof(info
)))
672 static void snd_pcm_trigger_tstamp(struct snd_pcm_substream
*substream
)
674 struct snd_pcm_runtime
*runtime
= substream
->runtime
;
675 if (runtime
->trigger_master
== NULL
)
677 if (runtime
->trigger_master
== substream
) {
678 snd_pcm_gettime(runtime
, &runtime
->trigger_tstamp
);
680 snd_pcm_trigger_tstamp(runtime
->trigger_master
);
681 runtime
->trigger_tstamp
= runtime
->trigger_master
->runtime
->trigger_tstamp
;
683 runtime
->trigger_master
= NULL
;
687 int (*pre_action
)(struct snd_pcm_substream
*substream
, int state
);
688 int (*do_action
)(struct snd_pcm_substream
*substream
, int state
);
689 void (*undo_action
)(struct snd_pcm_substream
*substream
, int state
);
690 void (*post_action
)(struct snd_pcm_substream
*substream
, int state
);
694 * this functions is core for handling of linked stream
695 * Note: the stream state might be changed also on failure
696 * Note2: call with calling stream lock + link lock
698 static int snd_pcm_action_group(struct action_ops
*ops
,
699 struct snd_pcm_substream
*substream
,
700 int state
, int do_lock
)
702 struct snd_pcm_substream
*s
= NULL
;
703 struct snd_pcm_substream
*s1
;
706 snd_pcm_group_for_each_entry(s
, substream
) {
707 if (do_lock
&& s
!= substream
)
708 spin_lock_nested(&s
->self_group
.lock
,
709 SINGLE_DEPTH_NESTING
);
710 res
= ops
->pre_action(s
, state
);
714 snd_pcm_group_for_each_entry(s
, substream
) {
715 res
= ops
->do_action(s
, state
);
717 if (ops
->undo_action
) {
718 snd_pcm_group_for_each_entry(s1
, substream
) {
719 if (s1
== s
) /* failed stream */
721 ops
->undo_action(s1
, state
);
724 s
= NULL
; /* unlock all */
728 snd_pcm_group_for_each_entry(s
, substream
) {
729 ops
->post_action(s
, state
);
734 snd_pcm_group_for_each_entry(s1
, substream
) {
736 spin_unlock(&s1
->self_group
.lock
);
737 if (s1
== s
) /* end */
745 * Note: call with stream lock
747 static int snd_pcm_action_single(struct action_ops
*ops
,
748 struct snd_pcm_substream
*substream
,
753 res
= ops
->pre_action(substream
, state
);
756 res
= ops
->do_action(substream
, state
);
758 ops
->post_action(substream
, state
);
759 else if (ops
->undo_action
)
760 ops
->undo_action(substream
, state
);
765 * Note: call with stream lock
767 static int snd_pcm_action(struct action_ops
*ops
,
768 struct snd_pcm_substream
*substream
,
773 if (snd_pcm_stream_linked(substream
)) {
774 if (!spin_trylock(&substream
->group
->lock
)) {
775 spin_unlock(&substream
->self_group
.lock
);
776 spin_lock(&substream
->group
->lock
);
777 spin_lock(&substream
->self_group
.lock
);
779 res
= snd_pcm_action_group(ops
, substream
, state
, 1);
780 spin_unlock(&substream
->group
->lock
);
782 res
= snd_pcm_action_single(ops
, substream
, state
);
788 * Note: don't use any locks before
790 static int snd_pcm_action_lock_irq(struct action_ops
*ops
,
791 struct snd_pcm_substream
*substream
,
796 read_lock_irq(&snd_pcm_link_rwlock
);
797 if (snd_pcm_stream_linked(substream
)) {
798 spin_lock(&substream
->group
->lock
);
799 spin_lock(&substream
->self_group
.lock
);
800 res
= snd_pcm_action_group(ops
, substream
, state
, 1);
801 spin_unlock(&substream
->self_group
.lock
);
802 spin_unlock(&substream
->group
->lock
);
804 spin_lock(&substream
->self_group
.lock
);
805 res
= snd_pcm_action_single(ops
, substream
, state
);
806 spin_unlock(&substream
->self_group
.lock
);
808 read_unlock_irq(&snd_pcm_link_rwlock
);
814 static int snd_pcm_action_nonatomic(struct action_ops
*ops
,
815 struct snd_pcm_substream
*substream
,
820 down_read(&snd_pcm_link_rwsem
);
821 if (snd_pcm_stream_linked(substream
))
822 res
= snd_pcm_action_group(ops
, substream
, state
, 0);
824 res
= snd_pcm_action_single(ops
, substream
, state
);
825 up_read(&snd_pcm_link_rwsem
);
832 static int snd_pcm_pre_start(struct snd_pcm_substream
*substream
, int state
)
834 struct snd_pcm_runtime
*runtime
= substream
->runtime
;
835 if (runtime
->status
->state
!= SNDRV_PCM_STATE_PREPARED
)
837 if (substream
->stream
== SNDRV_PCM_STREAM_PLAYBACK
&&
838 !snd_pcm_playback_data(substream
))
840 runtime
->trigger_master
= substream
;
844 static int snd_pcm_do_start(struct snd_pcm_substream
*substream
, int state
)
846 if (substream
->runtime
->trigger_master
!= substream
)
848 return substream
->ops
->trigger(substream
, SNDRV_PCM_TRIGGER_START
);
851 static void snd_pcm_undo_start(struct snd_pcm_substream
*substream
, int state
)
853 if (substream
->runtime
->trigger_master
== substream
)
854 substream
->ops
->trigger(substream
, SNDRV_PCM_TRIGGER_STOP
);
857 static void snd_pcm_post_start(struct snd_pcm_substream
*substream
, int state
)
859 struct snd_pcm_runtime
*runtime
= substream
->runtime
;
860 snd_pcm_trigger_tstamp(substream
);
861 runtime
->status
->state
= state
;
862 if (substream
->stream
== SNDRV_PCM_STREAM_PLAYBACK
&&
863 runtime
->silence_size
> 0)
864 snd_pcm_playback_silence(substream
, ULONG_MAX
);
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
878 * snd_pcm_start - start all linked streams
879 * @substream: the PCM substream instance
881 int snd_pcm_start(struct snd_pcm_substream
*substream
)
883 return snd_pcm_action(&snd_pcm_action_start
, substream
,
884 SNDRV_PCM_STATE_RUNNING
);
890 static int snd_pcm_pre_stop(struct snd_pcm_substream
*substream
, int state
)
892 struct snd_pcm_runtime
*runtime
= substream
->runtime
;
893 if (runtime
->status
->state
== SNDRV_PCM_STATE_OPEN
)
895 runtime
->trigger_master
= substream
;
899 static int snd_pcm_do_stop(struct snd_pcm_substream
*substream
, int state
)
901 if (substream
->runtime
->trigger_master
== substream
&&
902 snd_pcm_running(substream
))
903 substream
->ops
->trigger(substream
, SNDRV_PCM_TRIGGER_STOP
);
904 return 0; /* unconditonally stop all substreams */
907 static void snd_pcm_post_stop(struct snd_pcm_substream
*substream
, int state
)
909 struct snd_pcm_runtime
*runtime
= substream
->runtime
;
910 if (runtime
->status
->state
!= state
) {
911 snd_pcm_trigger_tstamp(substream
);
912 if (substream
->timer
)
913 snd_timer_notify(substream
->timer
, SNDRV_TIMER_EVENT_MSTOP
,
914 &runtime
->trigger_tstamp
);
915 runtime
->status
->state
= state
;
917 wake_up(&runtime
->sleep
);
920 static struct action_ops snd_pcm_action_stop
= {
921 .pre_action
= snd_pcm_pre_stop
,
922 .do_action
= snd_pcm_do_stop
,
923 .post_action
= snd_pcm_post_stop
927 * snd_pcm_stop - try to stop all running streams in the substream group
928 * @substream: the PCM substream instance
929 * @state: PCM state after stopping the stream
931 * The state of each stream is then changed to the given state unconditionally.
933 int snd_pcm_stop(struct snd_pcm_substream
*substream
, int state
)
935 return snd_pcm_action(&snd_pcm_action_stop
, substream
, state
);
938 EXPORT_SYMBOL(snd_pcm_stop
);
941 * snd_pcm_drain_done - stop the DMA only when the given stream is playback
942 * @substream: the PCM substream
944 * After stopping, the state is changed to SETUP.
945 * Unlike snd_pcm_stop(), this affects only the given stream.
947 int snd_pcm_drain_done(struct snd_pcm_substream
*substream
)
949 return snd_pcm_action_single(&snd_pcm_action_stop
, substream
,
950 SNDRV_PCM_STATE_SETUP
);
956 static int snd_pcm_pre_pause(struct snd_pcm_substream
*substream
, int push
)
958 struct snd_pcm_runtime
*runtime
= substream
->runtime
;
959 if (!(runtime
->info
& SNDRV_PCM_INFO_PAUSE
))
962 if (runtime
->status
->state
!= SNDRV_PCM_STATE_RUNNING
)
964 } else if (runtime
->status
->state
!= SNDRV_PCM_STATE_PAUSED
)
966 runtime
->trigger_master
= substream
;
970 static int snd_pcm_do_pause(struct snd_pcm_substream
*substream
, int push
)
972 if (substream
->runtime
->trigger_master
!= substream
)
974 return substream
->ops
->trigger(substream
,
975 push
? SNDRV_PCM_TRIGGER_PAUSE_PUSH
:
976 SNDRV_PCM_TRIGGER_PAUSE_RELEASE
);
979 static void snd_pcm_undo_pause(struct snd_pcm_substream
*substream
, int push
)
981 if (substream
->runtime
->trigger_master
== substream
)
982 substream
->ops
->trigger(substream
,
983 push
? SNDRV_PCM_TRIGGER_PAUSE_RELEASE
:
984 SNDRV_PCM_TRIGGER_PAUSE_PUSH
);
987 static void snd_pcm_post_pause(struct snd_pcm_substream
*substream
, int push
)
989 struct snd_pcm_runtime
*runtime
= substream
->runtime
;
990 snd_pcm_trigger_tstamp(substream
);
992 runtime
->status
->state
= SNDRV_PCM_STATE_PAUSED
;
993 if (substream
->timer
)
994 snd_timer_notify(substream
->timer
,
995 SNDRV_TIMER_EVENT_MPAUSE
,
996 &runtime
->trigger_tstamp
);
997 wake_up(&runtime
->sleep
);
999 runtime
->status
->state
= SNDRV_PCM_STATE_RUNNING
;
1000 if (substream
->timer
)
1001 snd_timer_notify(substream
->timer
,
1002 SNDRV_TIMER_EVENT_MCONTINUE
,
1003 &runtime
->trigger_tstamp
);
1007 static struct action_ops snd_pcm_action_pause
= {
1008 .pre_action
= snd_pcm_pre_pause
,
1009 .do_action
= snd_pcm_do_pause
,
1010 .undo_action
= snd_pcm_undo_pause
,
1011 .post_action
= snd_pcm_post_pause
1015 * Push/release the pause for all linked streams.
1017 static int snd_pcm_pause(struct snd_pcm_substream
*substream
, int push
)
1019 return snd_pcm_action(&snd_pcm_action_pause
, substream
, push
);
1025 static int snd_pcm_pre_suspend(struct snd_pcm_substream
*substream
, int state
)
1027 struct snd_pcm_runtime
*runtime
= substream
->runtime
;
1028 if (runtime
->status
->state
== SNDRV_PCM_STATE_SUSPENDED
)
1030 runtime
->trigger_master
= substream
;
1034 static int snd_pcm_do_suspend(struct snd_pcm_substream
*substream
, int state
)
1036 struct snd_pcm_runtime
*runtime
= substream
->runtime
;
1037 if (runtime
->trigger_master
!= substream
)
1039 if (! snd_pcm_running(substream
))
1041 substream
->ops
->trigger(substream
, SNDRV_PCM_TRIGGER_SUSPEND
);
1042 return 0; /* suspend unconditionally */
1045 static void snd_pcm_post_suspend(struct snd_pcm_substream
*substream
, int state
)
1047 struct snd_pcm_runtime
*runtime
= substream
->runtime
;
1048 snd_pcm_trigger_tstamp(substream
);
1049 if (substream
->timer
)
1050 snd_timer_notify(substream
->timer
, SNDRV_TIMER_EVENT_MSUSPEND
,
1051 &runtime
->trigger_tstamp
);
1052 runtime
->status
->suspended_state
= runtime
->status
->state
;
1053 runtime
->status
->state
= SNDRV_PCM_STATE_SUSPENDED
;
1054 wake_up(&runtime
->sleep
);
1057 static struct action_ops snd_pcm_action_suspend
= {
1058 .pre_action
= snd_pcm_pre_suspend
,
1059 .do_action
= snd_pcm_do_suspend
,
1060 .post_action
= snd_pcm_post_suspend
1064 * snd_pcm_suspend - trigger SUSPEND to all linked streams
1065 * @substream: the PCM substream
1067 * After this call, all streams are changed to SUSPENDED state.
1069 int snd_pcm_suspend(struct snd_pcm_substream
*substream
)
1072 unsigned long flags
;
1077 snd_pcm_stream_lock_irqsave(substream
, flags
);
1078 err
= snd_pcm_action(&snd_pcm_action_suspend
, substream
, 0);
1079 snd_pcm_stream_unlock_irqrestore(substream
, flags
);
1083 EXPORT_SYMBOL(snd_pcm_suspend
);
1086 * snd_pcm_suspend_all - trigger SUSPEND to all substreams in the given pcm
1087 * @pcm: the PCM instance
1089 * After this call, all streams are changed to SUSPENDED state.
1091 int snd_pcm_suspend_all(struct snd_pcm
*pcm
)
1093 struct snd_pcm_substream
*substream
;
1094 int stream
, err
= 0;
1099 for (stream
= 0; stream
< 2; stream
++) {
1100 for (substream
= pcm
->streams
[stream
].substream
;
1101 substream
; substream
= substream
->next
) {
1102 /* FIXME: the open/close code should lock this as well */
1103 if (substream
->runtime
== NULL
)
1105 err
= snd_pcm_suspend(substream
);
1106 if (err
< 0 && err
!= -EBUSY
)
1113 EXPORT_SYMBOL(snd_pcm_suspend_all
);
1117 static int snd_pcm_pre_resume(struct snd_pcm_substream
*substream
, int state
)
1119 struct snd_pcm_runtime
*runtime
= substream
->runtime
;
1120 if (!(runtime
->info
& SNDRV_PCM_INFO_RESUME
))
1122 runtime
->trigger_master
= substream
;
1126 static int snd_pcm_do_resume(struct snd_pcm_substream
*substream
, int state
)
1128 struct snd_pcm_runtime
*runtime
= substream
->runtime
;
1129 if (runtime
->trigger_master
!= substream
)
1131 /* DMA not running previously? */
1132 if (runtime
->status
->suspended_state
!= SNDRV_PCM_STATE_RUNNING
&&
1133 (runtime
->status
->suspended_state
!= SNDRV_PCM_STATE_DRAINING
||
1134 substream
->stream
!= SNDRV_PCM_STREAM_PLAYBACK
))
1136 return substream
->ops
->trigger(substream
, SNDRV_PCM_TRIGGER_RESUME
);
1139 static void snd_pcm_undo_resume(struct snd_pcm_substream
*substream
, int state
)
1141 if (substream
->runtime
->trigger_master
== substream
&&
1142 snd_pcm_running(substream
))
1143 substream
->ops
->trigger(substream
, SNDRV_PCM_TRIGGER_SUSPEND
);
1146 static void snd_pcm_post_resume(struct snd_pcm_substream
*substream
, int state
)
1148 struct snd_pcm_runtime
*runtime
= substream
->runtime
;
1149 snd_pcm_trigger_tstamp(substream
);
1150 if (substream
->timer
)
1151 snd_timer_notify(substream
->timer
, SNDRV_TIMER_EVENT_MRESUME
,
1152 &runtime
->trigger_tstamp
);
1153 runtime
->status
->state
= runtime
->status
->suspended_state
;
1156 static struct action_ops snd_pcm_action_resume
= {
1157 .pre_action
= snd_pcm_pre_resume
,
1158 .do_action
= snd_pcm_do_resume
,
1159 .undo_action
= snd_pcm_undo_resume
,
1160 .post_action
= snd_pcm_post_resume
1163 static int snd_pcm_resume(struct snd_pcm_substream
*substream
)
1165 struct snd_card
*card
= substream
->pcm
->card
;
1168 snd_power_lock(card
);
1169 if ((res
= snd_power_wait(card
, SNDRV_CTL_POWER_D0
)) >= 0)
1170 res
= snd_pcm_action_lock_irq(&snd_pcm_action_resume
, substream
, 0);
1171 snd_power_unlock(card
);
1177 static int snd_pcm_resume(struct snd_pcm_substream
*substream
)
1182 #endif /* CONFIG_PM */
1187 * Change the RUNNING stream(s) to XRUN state.
1189 static int snd_pcm_xrun(struct snd_pcm_substream
*substream
)
1191 struct snd_card
*card
= substream
->pcm
->card
;
1192 struct snd_pcm_runtime
*runtime
= substream
->runtime
;
1195 snd_power_lock(card
);
1196 if (runtime
->status
->state
== SNDRV_PCM_STATE_SUSPENDED
) {
1197 result
= snd_power_wait(card
, SNDRV_CTL_POWER_D0
);
1202 snd_pcm_stream_lock_irq(substream
);
1203 switch (runtime
->status
->state
) {
1204 case SNDRV_PCM_STATE_XRUN
:
1205 result
= 0; /* already there */
1207 case SNDRV_PCM_STATE_RUNNING
:
1208 result
= snd_pcm_stop(substream
, SNDRV_PCM_STATE_XRUN
);
1213 snd_pcm_stream_unlock_irq(substream
);
1215 snd_power_unlock(card
);
1222 static int snd_pcm_pre_reset(struct snd_pcm_substream
*substream
, int state
)
1224 struct snd_pcm_runtime
*runtime
= substream
->runtime
;
1225 switch (runtime
->status
->state
) {
1226 case SNDRV_PCM_STATE_RUNNING
:
1227 case SNDRV_PCM_STATE_PREPARED
:
1228 case SNDRV_PCM_STATE_PAUSED
:
1229 case SNDRV_PCM_STATE_SUSPENDED
:
1236 static int snd_pcm_do_reset(struct snd_pcm_substream
*substream
, int state
)
1238 struct snd_pcm_runtime
*runtime
= substream
->runtime
;
1239 int err
= substream
->ops
->ioctl(substream
, SNDRV_PCM_IOCTL1_RESET
, NULL
);
1242 runtime
->hw_ptr_base
= 0;
1243 runtime
->hw_ptr_interrupt
= runtime
->status
->hw_ptr
-
1244 runtime
->status
->hw_ptr
% runtime
->period_size
;
1245 runtime
->silence_start
= runtime
->status
->hw_ptr
;
1246 runtime
->silence_filled
= 0;
1250 static void snd_pcm_post_reset(struct snd_pcm_substream
*substream
, int state
)
1252 struct snd_pcm_runtime
*runtime
= substream
->runtime
;
1253 runtime
->control
->appl_ptr
= runtime
->status
->hw_ptr
;
1254 if (substream
->stream
== SNDRV_PCM_STREAM_PLAYBACK
&&
1255 runtime
->silence_size
> 0)
1256 snd_pcm_playback_silence(substream
, ULONG_MAX
);
1259 static struct action_ops snd_pcm_action_reset
= {
1260 .pre_action
= snd_pcm_pre_reset
,
1261 .do_action
= snd_pcm_do_reset
,
1262 .post_action
= snd_pcm_post_reset
1265 static int snd_pcm_reset(struct snd_pcm_substream
*substream
)
1267 return snd_pcm_action_nonatomic(&snd_pcm_action_reset
, substream
, 0);
1273 /* we use the second argument for updating f_flags */
1274 static int snd_pcm_pre_prepare(struct snd_pcm_substream
*substream
,
1277 struct snd_pcm_runtime
*runtime
= substream
->runtime
;
1278 if (runtime
->status
->state
== SNDRV_PCM_STATE_OPEN
||
1279 runtime
->status
->state
== SNDRV_PCM_STATE_DISCONNECTED
)
1281 if (snd_pcm_running(substream
))
1283 substream
->f_flags
= f_flags
;
1287 static int snd_pcm_do_prepare(struct snd_pcm_substream
*substream
, int state
)
1290 err
= substream
->ops
->prepare(substream
);
1293 return snd_pcm_do_reset(substream
, 0);
1296 static void snd_pcm_post_prepare(struct snd_pcm_substream
*substream
, int state
)
1298 struct snd_pcm_runtime
*runtime
= substream
->runtime
;
1299 runtime
->control
->appl_ptr
= runtime
->status
->hw_ptr
;
1300 runtime
->status
->state
= SNDRV_PCM_STATE_PREPARED
;
1303 static struct action_ops snd_pcm_action_prepare
= {
1304 .pre_action
= snd_pcm_pre_prepare
,
1305 .do_action
= snd_pcm_do_prepare
,
1306 .post_action
= snd_pcm_post_prepare
1310 * snd_pcm_prepare - prepare the PCM substream to be triggerable
1311 * @substream: the PCM substream instance
1312 * @file: file to refer f_flags
1314 static int snd_pcm_prepare(struct snd_pcm_substream
*substream
,
1318 struct snd_card
*card
= substream
->pcm
->card
;
1322 f_flags
= file
->f_flags
;
1324 f_flags
= substream
->f_flags
;
1326 snd_power_lock(card
);
1327 if ((res
= snd_power_wait(card
, SNDRV_CTL_POWER_D0
)) >= 0)
1328 res
= snd_pcm_action_nonatomic(&snd_pcm_action_prepare
,
1329 substream
, f_flags
);
1330 snd_power_unlock(card
);
1338 static int snd_pcm_pre_drain_init(struct snd_pcm_substream
*substream
, int state
)
1340 if (substream
->f_flags
& O_NONBLOCK
)
1342 substream
->runtime
->trigger_master
= substream
;
1346 static int snd_pcm_do_drain_init(struct snd_pcm_substream
*substream
, int state
)
1348 struct snd_pcm_runtime
*runtime
= substream
->runtime
;
1349 if (substream
->stream
== SNDRV_PCM_STREAM_PLAYBACK
) {
1350 switch (runtime
->status
->state
) {
1351 case SNDRV_PCM_STATE_PREPARED
:
1352 /* start playback stream if possible */
1353 if (! snd_pcm_playback_empty(substream
)) {
1354 snd_pcm_do_start(substream
, SNDRV_PCM_STATE_DRAINING
);
1355 snd_pcm_post_start(substream
, SNDRV_PCM_STATE_DRAINING
);
1358 case SNDRV_PCM_STATE_RUNNING
:
1359 runtime
->status
->state
= SNDRV_PCM_STATE_DRAINING
;
1365 /* stop running stream */
1366 if (runtime
->status
->state
== SNDRV_PCM_STATE_RUNNING
) {
1367 int new_state
= snd_pcm_capture_avail(runtime
) > 0 ?
1368 SNDRV_PCM_STATE_DRAINING
: SNDRV_PCM_STATE_SETUP
;
1369 snd_pcm_do_stop(substream
, new_state
);
1370 snd_pcm_post_stop(substream
, new_state
);
1376 static void snd_pcm_post_drain_init(struct snd_pcm_substream
*substream
, int state
)
1380 static struct action_ops snd_pcm_action_drain_init
= {
1381 .pre_action
= snd_pcm_pre_drain_init
,
1382 .do_action
= snd_pcm_do_drain_init
,
1383 .post_action
= snd_pcm_post_drain_init
1387 struct snd_pcm_substream
*substream
;
1389 snd_pcm_uframes_t stop_threshold
;
1392 static int snd_pcm_drop(struct snd_pcm_substream
*substream
);
1395 * Drain the stream(s).
1396 * When the substream is linked, sync until the draining of all playback streams
1398 * After this call, all streams are supposed to be either SETUP or DRAINING
1399 * (capture only) state.
1401 static int snd_pcm_drain(struct snd_pcm_substream
*substream
)
1403 struct snd_card
*card
;
1404 struct snd_pcm_runtime
*runtime
;
1405 struct snd_pcm_substream
*s
;
1408 struct drain_rec
*drec
, drec_tmp
, *d
;
1410 card
= substream
->pcm
->card
;
1411 runtime
= substream
->runtime
;
1413 if (runtime
->status
->state
== SNDRV_PCM_STATE_OPEN
)
1416 snd_power_lock(card
);
1417 if (runtime
->status
->state
== SNDRV_PCM_STATE_SUSPENDED
) {
1418 result
= snd_power_wait(card
, SNDRV_CTL_POWER_D0
);
1420 snd_power_unlock(card
);
1425 /* allocate temporary record for drain sync */
1426 down_read(&snd_pcm_link_rwsem
);
1427 if (snd_pcm_stream_linked(substream
)) {
1428 drec
= kmalloc(substream
->group
->count
* sizeof(*drec
), GFP_KERNEL
);
1430 up_read(&snd_pcm_link_rwsem
);
1431 snd_power_unlock(card
);
1437 /* count only playback streams */
1439 snd_pcm_group_for_each_entry(s
, substream
) {
1440 runtime
= s
->runtime
;
1441 if (s
->stream
== SNDRV_PCM_STREAM_PLAYBACK
) {
1442 d
= &drec
[num_drecs
++];
1444 init_waitqueue_entry(&d
->wait
, current
);
1445 add_wait_queue(&runtime
->sleep
, &d
->wait
);
1446 /* stop_threshold fixup to avoid endless loop when
1447 * stop_threshold > buffer_size
1449 d
->stop_threshold
= runtime
->stop_threshold
;
1450 if (runtime
->stop_threshold
> runtime
->buffer_size
)
1451 runtime
->stop_threshold
= runtime
->buffer_size
;
1454 up_read(&snd_pcm_link_rwsem
);
1456 snd_pcm_stream_lock_irq(substream
);
1458 if (substream
->runtime
->status
->state
== SNDRV_PCM_STATE_PAUSED
)
1459 snd_pcm_pause(substream
, 0);
1461 /* pre-start/stop - all running streams are changed to DRAINING state */
1462 result
= snd_pcm_action(&snd_pcm_action_drain_init
, substream
, 0);
1464 snd_pcm_stream_unlock_irq(substream
);
1470 if (signal_pending(current
)) {
1471 result
= -ERESTARTSYS
;
1475 for (i
= 0; i
< num_drecs
; i
++) {
1476 runtime
= drec
[i
].substream
->runtime
;
1477 if (runtime
->status
->state
== SNDRV_PCM_STATE_DRAINING
)
1481 break; /* yes, all drained */
1483 set_current_state(TASK_INTERRUPTIBLE
);
1484 snd_pcm_stream_unlock_irq(substream
);
1485 snd_power_unlock(card
);
1486 tout
= schedule_timeout(10 * HZ
);
1487 snd_power_lock(card
);
1488 snd_pcm_stream_lock_irq(substream
);
1490 if (substream
->runtime
->status
->state
== SNDRV_PCM_STATE_SUSPENDED
)
1493 snd_printd("playback drain error (DMA or IRQ trouble?)\n");
1494 snd_pcm_stop(substream
, SNDRV_PCM_STATE_SETUP
);
1501 snd_pcm_stream_unlock_irq(substream
);
1504 for (i
= 0; i
< num_drecs
; i
++) {
1506 runtime
= d
->substream
->runtime
;
1507 remove_wait_queue(&runtime
->sleep
, &d
->wait
);
1508 runtime
->stop_threshold
= d
->stop_threshold
;
1511 if (drec
!= &drec_tmp
)
1513 snd_power_unlock(card
);
1521 * Immediately put all linked substreams into SETUP state.
1523 static int snd_pcm_drop(struct snd_pcm_substream
*substream
)
1525 struct snd_pcm_runtime
*runtime
;
1526 struct snd_card
*card
;
1529 if (PCM_RUNTIME_CHECK(substream
))
1531 runtime
= substream
->runtime
;
1532 card
= substream
->pcm
->card
;
1534 if (runtime
->status
->state
== SNDRV_PCM_STATE_OPEN
||
1535 runtime
->status
->state
== SNDRV_PCM_STATE_DISCONNECTED
||
1536 runtime
->status
->state
== SNDRV_PCM_STATE_SUSPENDED
)
1539 snd_pcm_stream_lock_irq(substream
);
1541 if (runtime
->status
->state
== SNDRV_PCM_STATE_PAUSED
)
1542 snd_pcm_pause(substream
, 0);
1544 snd_pcm_stop(substream
, SNDRV_PCM_STATE_SETUP
);
1545 /* runtime->control->appl_ptr = runtime->status->hw_ptr; */
1546 snd_pcm_stream_unlock_irq(substream
);
1552 /* WARNING: Don't forget to fput back the file */
1553 static struct file
*snd_pcm_file_fd(int fd
)
1556 struct inode
*inode
;
1562 inode
= file
->f_path
.dentry
->d_inode
;
1563 if (!S_ISCHR(inode
->i_mode
) ||
1564 imajor(inode
) != snd_major
) {
1568 minor
= iminor(inode
);
1569 if (!snd_lookup_minor_data(minor
, SNDRV_DEVICE_TYPE_PCM_PLAYBACK
) &&
1570 !snd_lookup_minor_data(minor
, SNDRV_DEVICE_TYPE_PCM_CAPTURE
)) {
1580 static int snd_pcm_link(struct snd_pcm_substream
*substream
, int fd
)
1584 struct snd_pcm_file
*pcm_file
;
1585 struct snd_pcm_substream
*substream1
;
1587 file
= snd_pcm_file_fd(fd
);
1590 pcm_file
= file
->private_data
;
1591 substream1
= pcm_file
->substream
;
1592 down_write(&snd_pcm_link_rwsem
);
1593 write_lock_irq(&snd_pcm_link_rwlock
);
1594 if (substream
->runtime
->status
->state
== SNDRV_PCM_STATE_OPEN
||
1595 substream
->runtime
->status
->state
!= substream1
->runtime
->status
->state
) {
1599 if (snd_pcm_stream_linked(substream1
)) {
1603 if (!snd_pcm_stream_linked(substream
)) {
1604 substream
->group
= kmalloc(sizeof(struct snd_pcm_group
), GFP_ATOMIC
);
1605 if (substream
->group
== NULL
) {
1609 spin_lock_init(&substream
->group
->lock
);
1610 INIT_LIST_HEAD(&substream
->group
->substreams
);
1611 list_add_tail(&substream
->link_list
, &substream
->group
->substreams
);
1612 substream
->group
->count
= 1;
1614 list_add_tail(&substream1
->link_list
, &substream
->group
->substreams
);
1615 substream
->group
->count
++;
1616 substream1
->group
= substream
->group
;
1618 write_unlock_irq(&snd_pcm_link_rwlock
);
1619 up_write(&snd_pcm_link_rwsem
);
1624 static void relink_to_local(struct snd_pcm_substream
*substream
)
1626 substream
->group
= &substream
->self_group
;
1627 INIT_LIST_HEAD(&substream
->self_group
.substreams
);
1628 list_add_tail(&substream
->link_list
, &substream
->self_group
.substreams
);
1631 static int snd_pcm_unlink(struct snd_pcm_substream
*substream
)
1633 struct snd_pcm_substream
*s
;
1636 down_write(&snd_pcm_link_rwsem
);
1637 write_lock_irq(&snd_pcm_link_rwlock
);
1638 if (!snd_pcm_stream_linked(substream
)) {
1642 list_del(&substream
->link_list
);
1643 substream
->group
->count
--;
1644 if (substream
->group
->count
== 1) { /* detach the last stream, too */
1645 snd_pcm_group_for_each_entry(s
, substream
) {
1649 kfree(substream
->group
);
1651 relink_to_local(substream
);
1653 write_unlock_irq(&snd_pcm_link_rwlock
);
1654 up_write(&snd_pcm_link_rwsem
);
1661 static int snd_pcm_hw_rule_mul(struct snd_pcm_hw_params
*params
,
1662 struct snd_pcm_hw_rule
*rule
)
1664 struct snd_interval t
;
1665 snd_interval_mul(hw_param_interval_c(params
, rule
->deps
[0]),
1666 hw_param_interval_c(params
, rule
->deps
[1]), &t
);
1667 return snd_interval_refine(hw_param_interval(params
, rule
->var
), &t
);
1670 static int snd_pcm_hw_rule_div(struct snd_pcm_hw_params
*params
,
1671 struct snd_pcm_hw_rule
*rule
)
1673 struct snd_interval t
;
1674 snd_interval_div(hw_param_interval_c(params
, rule
->deps
[0]),
1675 hw_param_interval_c(params
, rule
->deps
[1]), &t
);
1676 return snd_interval_refine(hw_param_interval(params
, rule
->var
), &t
);
1679 static int snd_pcm_hw_rule_muldivk(struct snd_pcm_hw_params
*params
,
1680 struct snd_pcm_hw_rule
*rule
)
1682 struct snd_interval t
;
1683 snd_interval_muldivk(hw_param_interval_c(params
, rule
->deps
[0]),
1684 hw_param_interval_c(params
, rule
->deps
[1]),
1685 (unsigned long) rule
->private, &t
);
1686 return snd_interval_refine(hw_param_interval(params
, rule
->var
), &t
);
1689 static int snd_pcm_hw_rule_mulkdiv(struct snd_pcm_hw_params
*params
,
1690 struct snd_pcm_hw_rule
*rule
)
1692 struct snd_interval t
;
1693 snd_interval_mulkdiv(hw_param_interval_c(params
, rule
->deps
[0]),
1694 (unsigned long) rule
->private,
1695 hw_param_interval_c(params
, rule
->deps
[1]), &t
);
1696 return snd_interval_refine(hw_param_interval(params
, rule
->var
), &t
);
1699 static int snd_pcm_hw_rule_format(struct snd_pcm_hw_params
*params
,
1700 struct snd_pcm_hw_rule
*rule
)
1703 struct snd_interval
*i
= hw_param_interval(params
, rule
->deps
[0]);
1705 struct snd_mask
*mask
= hw_param_mask(params
, SNDRV_PCM_HW_PARAM_FORMAT
);
1707 for (k
= 0; k
<= SNDRV_PCM_FORMAT_LAST
; ++k
) {
1709 if (! snd_mask_test(mask
, k
))
1711 bits
= snd_pcm_format_physical_width(k
);
1713 continue; /* ignore invalid formats */
1714 if ((unsigned)bits
< i
->min
|| (unsigned)bits
> i
->max
)
1715 snd_mask_reset(&m
, k
);
1717 return snd_mask_refine(mask
, &m
);
1720 static int snd_pcm_hw_rule_sample_bits(struct snd_pcm_hw_params
*params
,
1721 struct snd_pcm_hw_rule
*rule
)
1723 struct snd_interval t
;
1729 for (k
= 0; k
<= SNDRV_PCM_FORMAT_LAST
; ++k
) {
1731 if (! snd_mask_test(hw_param_mask(params
, SNDRV_PCM_HW_PARAM_FORMAT
), k
))
1733 bits
= snd_pcm_format_physical_width(k
);
1735 continue; /* ignore invalid formats */
1736 if (t
.min
> (unsigned)bits
)
1738 if (t
.max
< (unsigned)bits
)
1742 return snd_interval_refine(hw_param_interval(params
, rule
->var
), &t
);
1745 #if SNDRV_PCM_RATE_5512 != 1 << 0 || SNDRV_PCM_RATE_192000 != 1 << 12
1746 #error "Change this table"
1749 static unsigned int rates
[] = { 5512, 8000, 11025, 16000, 22050, 32000, 44100,
1750 48000, 64000, 88200, 96000, 176400, 192000 };
1752 const struct snd_pcm_hw_constraint_list snd_pcm_known_rates
= {
1753 .count
= ARRAY_SIZE(rates
),
1757 static int snd_pcm_hw_rule_rate(struct snd_pcm_hw_params
*params
,
1758 struct snd_pcm_hw_rule
*rule
)
1760 struct snd_pcm_hardware
*hw
= rule
->private;
1761 return snd_interval_list(hw_param_interval(params
, rule
->var
),
1762 snd_pcm_known_rates
.count
,
1763 snd_pcm_known_rates
.list
, hw
->rates
);
1766 static int snd_pcm_hw_rule_buffer_bytes_max(struct snd_pcm_hw_params
*params
,
1767 struct snd_pcm_hw_rule
*rule
)
1769 struct snd_interval t
;
1770 struct snd_pcm_substream
*substream
= rule
->private;
1772 t
.max
= substream
->buffer_bytes_max
;
1776 return snd_interval_refine(hw_param_interval(params
, rule
->var
), &t
);
1779 int snd_pcm_hw_constraints_init(struct snd_pcm_substream
*substream
)
1781 struct snd_pcm_runtime
*runtime
= substream
->runtime
;
1782 struct snd_pcm_hw_constraints
*constrs
= &runtime
->hw_constraints
;
1785 for (k
= SNDRV_PCM_HW_PARAM_FIRST_MASK
; k
<= SNDRV_PCM_HW_PARAM_LAST_MASK
; k
++) {
1786 snd_mask_any(constrs_mask(constrs
, k
));
1789 for (k
= SNDRV_PCM_HW_PARAM_FIRST_INTERVAL
; k
<= SNDRV_PCM_HW_PARAM_LAST_INTERVAL
; k
++) {
1790 snd_interval_any(constrs_interval(constrs
, k
));
1793 snd_interval_setinteger(constrs_interval(constrs
, SNDRV_PCM_HW_PARAM_CHANNELS
));
1794 snd_interval_setinteger(constrs_interval(constrs
, SNDRV_PCM_HW_PARAM_BUFFER_SIZE
));
1795 snd_interval_setinteger(constrs_interval(constrs
, SNDRV_PCM_HW_PARAM_BUFFER_BYTES
));
1796 snd_interval_setinteger(constrs_interval(constrs
, SNDRV_PCM_HW_PARAM_SAMPLE_BITS
));
1797 snd_interval_setinteger(constrs_interval(constrs
, SNDRV_PCM_HW_PARAM_FRAME_BITS
));
1799 err
= snd_pcm_hw_rule_add(runtime
, 0, SNDRV_PCM_HW_PARAM_FORMAT
,
1800 snd_pcm_hw_rule_format
, NULL
,
1801 SNDRV_PCM_HW_PARAM_SAMPLE_BITS
, -1);
1804 err
= snd_pcm_hw_rule_add(runtime
, 0, SNDRV_PCM_HW_PARAM_SAMPLE_BITS
,
1805 snd_pcm_hw_rule_sample_bits
, NULL
,
1806 SNDRV_PCM_HW_PARAM_FORMAT
,
1807 SNDRV_PCM_HW_PARAM_SAMPLE_BITS
, -1);
1810 err
= snd_pcm_hw_rule_add(runtime
, 0, SNDRV_PCM_HW_PARAM_SAMPLE_BITS
,
1811 snd_pcm_hw_rule_div
, NULL
,
1812 SNDRV_PCM_HW_PARAM_FRAME_BITS
, SNDRV_PCM_HW_PARAM_CHANNELS
, -1);
1815 err
= snd_pcm_hw_rule_add(runtime
, 0, SNDRV_PCM_HW_PARAM_FRAME_BITS
,
1816 snd_pcm_hw_rule_mul
, NULL
,
1817 SNDRV_PCM_HW_PARAM_SAMPLE_BITS
, SNDRV_PCM_HW_PARAM_CHANNELS
, -1);
1820 err
= snd_pcm_hw_rule_add(runtime
, 0, SNDRV_PCM_HW_PARAM_FRAME_BITS
,
1821 snd_pcm_hw_rule_mulkdiv
, (void*) 8,
1822 SNDRV_PCM_HW_PARAM_PERIOD_BYTES
, SNDRV_PCM_HW_PARAM_PERIOD_SIZE
, -1);
1825 err
= snd_pcm_hw_rule_add(runtime
, 0, SNDRV_PCM_HW_PARAM_FRAME_BITS
,
1826 snd_pcm_hw_rule_mulkdiv
, (void*) 8,
1827 SNDRV_PCM_HW_PARAM_BUFFER_BYTES
, SNDRV_PCM_HW_PARAM_BUFFER_SIZE
, -1);
1830 err
= snd_pcm_hw_rule_add(runtime
, 0, SNDRV_PCM_HW_PARAM_CHANNELS
,
1831 snd_pcm_hw_rule_div
, NULL
,
1832 SNDRV_PCM_HW_PARAM_FRAME_BITS
, SNDRV_PCM_HW_PARAM_SAMPLE_BITS
, -1);
1835 err
= snd_pcm_hw_rule_add(runtime
, 0, SNDRV_PCM_HW_PARAM_RATE
,
1836 snd_pcm_hw_rule_mulkdiv
, (void*) 1000000,
1837 SNDRV_PCM_HW_PARAM_PERIOD_SIZE
, SNDRV_PCM_HW_PARAM_PERIOD_TIME
, -1);
1840 err
= snd_pcm_hw_rule_add(runtime
, 0, SNDRV_PCM_HW_PARAM_RATE
,
1841 snd_pcm_hw_rule_mulkdiv
, (void*) 1000000,
1842 SNDRV_PCM_HW_PARAM_BUFFER_SIZE
, SNDRV_PCM_HW_PARAM_BUFFER_TIME
, -1);
1845 err
= snd_pcm_hw_rule_add(runtime
, 0, SNDRV_PCM_HW_PARAM_PERIODS
,
1846 snd_pcm_hw_rule_div
, NULL
,
1847 SNDRV_PCM_HW_PARAM_BUFFER_SIZE
, SNDRV_PCM_HW_PARAM_PERIOD_SIZE
, -1);
1850 err
= snd_pcm_hw_rule_add(runtime
, 0, SNDRV_PCM_HW_PARAM_PERIOD_SIZE
,
1851 snd_pcm_hw_rule_div
, NULL
,
1852 SNDRV_PCM_HW_PARAM_BUFFER_SIZE
, SNDRV_PCM_HW_PARAM_PERIODS
, -1);
1855 err
= snd_pcm_hw_rule_add(runtime
, 0, SNDRV_PCM_HW_PARAM_PERIOD_SIZE
,
1856 snd_pcm_hw_rule_mulkdiv
, (void*) 8,
1857 SNDRV_PCM_HW_PARAM_PERIOD_BYTES
, SNDRV_PCM_HW_PARAM_FRAME_BITS
, -1);
1860 err
= snd_pcm_hw_rule_add(runtime
, 0, SNDRV_PCM_HW_PARAM_PERIOD_SIZE
,
1861 snd_pcm_hw_rule_muldivk
, (void*) 1000000,
1862 SNDRV_PCM_HW_PARAM_PERIOD_TIME
, SNDRV_PCM_HW_PARAM_RATE
, -1);
1865 err
= snd_pcm_hw_rule_add(runtime
, 0, SNDRV_PCM_HW_PARAM_BUFFER_SIZE
,
1866 snd_pcm_hw_rule_mul
, NULL
,
1867 SNDRV_PCM_HW_PARAM_PERIOD_SIZE
, SNDRV_PCM_HW_PARAM_PERIODS
, -1);
1870 err
= snd_pcm_hw_rule_add(runtime
, 0, SNDRV_PCM_HW_PARAM_BUFFER_SIZE
,
1871 snd_pcm_hw_rule_mulkdiv
, (void*) 8,
1872 SNDRV_PCM_HW_PARAM_BUFFER_BYTES
, SNDRV_PCM_HW_PARAM_FRAME_BITS
, -1);
1875 err
= snd_pcm_hw_rule_add(runtime
, 0, SNDRV_PCM_HW_PARAM_BUFFER_SIZE
,
1876 snd_pcm_hw_rule_muldivk
, (void*) 1000000,
1877 SNDRV_PCM_HW_PARAM_BUFFER_TIME
, SNDRV_PCM_HW_PARAM_RATE
, -1);
1880 err
= snd_pcm_hw_rule_add(runtime
, 0, SNDRV_PCM_HW_PARAM_PERIOD_BYTES
,
1881 snd_pcm_hw_rule_muldivk
, (void*) 8,
1882 SNDRV_PCM_HW_PARAM_PERIOD_SIZE
, SNDRV_PCM_HW_PARAM_FRAME_BITS
, -1);
1885 err
= snd_pcm_hw_rule_add(runtime
, 0, SNDRV_PCM_HW_PARAM_BUFFER_BYTES
,
1886 snd_pcm_hw_rule_muldivk
, (void*) 8,
1887 SNDRV_PCM_HW_PARAM_BUFFER_SIZE
, SNDRV_PCM_HW_PARAM_FRAME_BITS
, -1);
1890 err
= snd_pcm_hw_rule_add(runtime
, 0, SNDRV_PCM_HW_PARAM_PERIOD_TIME
,
1891 snd_pcm_hw_rule_mulkdiv
, (void*) 1000000,
1892 SNDRV_PCM_HW_PARAM_PERIOD_SIZE
, SNDRV_PCM_HW_PARAM_RATE
, -1);
1895 err
= snd_pcm_hw_rule_add(runtime
, 0, SNDRV_PCM_HW_PARAM_BUFFER_TIME
,
1896 snd_pcm_hw_rule_mulkdiv
, (void*) 1000000,
1897 SNDRV_PCM_HW_PARAM_BUFFER_SIZE
, SNDRV_PCM_HW_PARAM_RATE
, -1);
1903 int snd_pcm_hw_constraints_complete(struct snd_pcm_substream
*substream
)
1905 struct snd_pcm_runtime
*runtime
= substream
->runtime
;
1906 struct snd_pcm_hardware
*hw
= &runtime
->hw
;
1908 unsigned int mask
= 0;
1910 if (hw
->info
& SNDRV_PCM_INFO_INTERLEAVED
)
1911 mask
|= 1 << SNDRV_PCM_ACCESS_RW_INTERLEAVED
;
1912 if (hw
->info
& SNDRV_PCM_INFO_NONINTERLEAVED
)
1913 mask
|= 1 << SNDRV_PCM_ACCESS_RW_NONINTERLEAVED
;
1914 if (hw
->info
& SNDRV_PCM_INFO_MMAP
) {
1915 if (hw
->info
& SNDRV_PCM_INFO_INTERLEAVED
)
1916 mask
|= 1 << SNDRV_PCM_ACCESS_MMAP_INTERLEAVED
;
1917 if (hw
->info
& SNDRV_PCM_INFO_NONINTERLEAVED
)
1918 mask
|= 1 << SNDRV_PCM_ACCESS_MMAP_NONINTERLEAVED
;
1919 if (hw
->info
& SNDRV_PCM_INFO_COMPLEX
)
1920 mask
|= 1 << SNDRV_PCM_ACCESS_MMAP_COMPLEX
;
1922 err
= snd_pcm_hw_constraint_mask(runtime
, SNDRV_PCM_HW_PARAM_ACCESS
, mask
);
1926 err
= snd_pcm_hw_constraint_mask64(runtime
, SNDRV_PCM_HW_PARAM_FORMAT
, hw
->formats
);
1930 err
= snd_pcm_hw_constraint_mask(runtime
, SNDRV_PCM_HW_PARAM_SUBFORMAT
, 1 << SNDRV_PCM_SUBFORMAT_STD
);
1934 err
= snd_pcm_hw_constraint_minmax(runtime
, SNDRV_PCM_HW_PARAM_CHANNELS
,
1935 hw
->channels_min
, hw
->channels_max
);
1939 err
= snd_pcm_hw_constraint_minmax(runtime
, SNDRV_PCM_HW_PARAM_RATE
,
1940 hw
->rate_min
, hw
->rate_max
);
1944 err
= snd_pcm_hw_constraint_minmax(runtime
, SNDRV_PCM_HW_PARAM_PERIOD_BYTES
,
1945 hw
->period_bytes_min
, hw
->period_bytes_max
);
1949 err
= snd_pcm_hw_constraint_minmax(runtime
, SNDRV_PCM_HW_PARAM_PERIODS
,
1950 hw
->periods_min
, hw
->periods_max
);
1954 err
= snd_pcm_hw_constraint_minmax(runtime
, SNDRV_PCM_HW_PARAM_BUFFER_BYTES
,
1955 hw
->period_bytes_min
, hw
->buffer_bytes_max
);
1959 err
= snd_pcm_hw_rule_add(runtime
, 0, SNDRV_PCM_HW_PARAM_BUFFER_BYTES
,
1960 snd_pcm_hw_rule_buffer_bytes_max
, substream
,
1961 SNDRV_PCM_HW_PARAM_BUFFER_BYTES
, -1);
1966 if (runtime
->dma_bytes
) {
1967 err
= snd_pcm_hw_constraint_minmax(runtime
, SNDRV_PCM_HW_PARAM_BUFFER_BYTES
, 0, runtime
->dma_bytes
);
1972 if (!(hw
->rates
& (SNDRV_PCM_RATE_KNOT
| SNDRV_PCM_RATE_CONTINUOUS
))) {
1973 err
= snd_pcm_hw_rule_add(runtime
, 0, SNDRV_PCM_HW_PARAM_RATE
,
1974 snd_pcm_hw_rule_rate
, hw
,
1975 SNDRV_PCM_HW_PARAM_RATE
, -1);
1980 /* FIXME: this belong to lowlevel */
1981 snd_pcm_hw_constraint_integer(runtime
, SNDRV_PCM_HW_PARAM_PERIOD_SIZE
);
1986 static void pcm_release_private(struct snd_pcm_substream
*substream
)
1988 snd_pcm_unlink(substream
);
1991 void snd_pcm_release_substream(struct snd_pcm_substream
*substream
)
1993 substream
->ref_count
--;
1994 if (substream
->ref_count
> 0)
1997 snd_pcm_drop(substream
);
1998 if (substream
->hw_opened
) {
1999 if (substream
->ops
->hw_free
!= NULL
)
2000 substream
->ops
->hw_free(substream
);
2001 substream
->ops
->close(substream
);
2002 substream
->hw_opened
= 0;
2004 if (substream
->pcm_release
) {
2005 substream
->pcm_release(substream
);
2006 substream
->pcm_release
= NULL
;
2008 snd_pcm_detach_substream(substream
);
2011 EXPORT_SYMBOL(snd_pcm_release_substream
);
2013 int snd_pcm_open_substream(struct snd_pcm
*pcm
, int stream
,
2015 struct snd_pcm_substream
**rsubstream
)
2017 struct snd_pcm_substream
*substream
;
2020 err
= snd_pcm_attach_substream(pcm
, stream
, file
, &substream
);
2023 if (substream
->ref_count
> 1) {
2024 *rsubstream
= substream
;
2028 err
= snd_pcm_hw_constraints_init(substream
);
2030 snd_printd("snd_pcm_hw_constraints_init failed\n");
2034 if ((err
= substream
->ops
->open(substream
)) < 0)
2037 substream
->hw_opened
= 1;
2039 err
= snd_pcm_hw_constraints_complete(substream
);
2041 snd_printd("snd_pcm_hw_constraints_complete failed\n");
2045 *rsubstream
= substream
;
2049 snd_pcm_release_substream(substream
);
2053 EXPORT_SYMBOL(snd_pcm_open_substream
);
2055 static int snd_pcm_open_file(struct file
*file
,
2056 struct snd_pcm
*pcm
,
2058 struct snd_pcm_file
**rpcm_file
)
2060 struct snd_pcm_file
*pcm_file
;
2061 struct snd_pcm_substream
*substream
;
2062 struct snd_pcm_str
*str
;
2068 err
= snd_pcm_open_substream(pcm
, stream
, file
, &substream
);
2072 pcm_file
= kzalloc(sizeof(*pcm_file
), GFP_KERNEL
);
2073 if (pcm_file
== NULL
) {
2074 snd_pcm_release_substream(substream
);
2077 pcm_file
->substream
= substream
;
2078 if (substream
->ref_count
== 1) {
2079 str
= substream
->pstr
;
2080 substream
->file
= pcm_file
;
2081 substream
->pcm_release
= pcm_release_private
;
2083 file
->private_data
= pcm_file
;
2085 *rpcm_file
= pcm_file
;
2089 static int snd_pcm_playback_open(struct inode
*inode
, struct file
*file
)
2091 struct snd_pcm
*pcm
;
2093 pcm
= snd_lookup_minor_data(iminor(inode
),
2094 SNDRV_DEVICE_TYPE_PCM_PLAYBACK
);
2095 return snd_pcm_open(file
, pcm
, SNDRV_PCM_STREAM_PLAYBACK
);
2098 static int snd_pcm_capture_open(struct inode
*inode
, struct file
*file
)
2100 struct snd_pcm
*pcm
;
2102 pcm
= snd_lookup_minor_data(iminor(inode
),
2103 SNDRV_DEVICE_TYPE_PCM_CAPTURE
);
2104 return snd_pcm_open(file
, pcm
, SNDRV_PCM_STREAM_CAPTURE
);
2107 static int snd_pcm_open(struct file
*file
, struct snd_pcm
*pcm
, int stream
)
2110 struct snd_pcm_file
*pcm_file
;
2117 err
= snd_card_file_add(pcm
->card
, file
);
2120 if (!try_module_get(pcm
->card
->module
)) {
2124 init_waitqueue_entry(&wait
, current
);
2125 add_wait_queue(&pcm
->open_wait
, &wait
);
2126 mutex_lock(&pcm
->open_mutex
);
2128 err
= snd_pcm_open_file(file
, pcm
, stream
, &pcm_file
);
2131 if (err
== -EAGAIN
) {
2132 if (file
->f_flags
& O_NONBLOCK
) {
2138 set_current_state(TASK_INTERRUPTIBLE
);
2139 mutex_unlock(&pcm
->open_mutex
);
2141 mutex_lock(&pcm
->open_mutex
);
2142 if (signal_pending(current
)) {
2147 remove_wait_queue(&pcm
->open_wait
, &wait
);
2148 mutex_unlock(&pcm
->open_mutex
);
2154 module_put(pcm
->card
->module
);
2156 snd_card_file_remove(pcm
->card
, file
);
2161 static int snd_pcm_release(struct inode
*inode
, struct file
*file
)
2163 struct snd_pcm
*pcm
;
2164 struct snd_pcm_substream
*substream
;
2165 struct snd_pcm_file
*pcm_file
;
2167 pcm_file
= file
->private_data
;
2168 substream
= pcm_file
->substream
;
2169 if (snd_BUG_ON(!substream
))
2171 pcm
= substream
->pcm
;
2172 fasync_helper(-1, file
, 0, &substream
->runtime
->fasync
);
2173 mutex_lock(&pcm
->open_mutex
);
2174 snd_pcm_release_substream(substream
);
2176 mutex_unlock(&pcm
->open_mutex
);
2177 wake_up(&pcm
->open_wait
);
2178 module_put(pcm
->card
->module
);
2179 snd_card_file_remove(pcm
->card
, file
);
2183 static snd_pcm_sframes_t
snd_pcm_playback_rewind(struct snd_pcm_substream
*substream
,
2184 snd_pcm_uframes_t frames
)
2186 struct snd_pcm_runtime
*runtime
= substream
->runtime
;
2187 snd_pcm_sframes_t appl_ptr
;
2188 snd_pcm_sframes_t ret
;
2189 snd_pcm_sframes_t hw_avail
;
2194 snd_pcm_stream_lock_irq(substream
);
2195 switch (runtime
->status
->state
) {
2196 case SNDRV_PCM_STATE_PREPARED
:
2198 case SNDRV_PCM_STATE_DRAINING
:
2199 case SNDRV_PCM_STATE_RUNNING
:
2200 if (snd_pcm_update_hw_ptr(substream
) >= 0)
2203 case SNDRV_PCM_STATE_XRUN
:
2211 hw_avail
= snd_pcm_playback_hw_avail(runtime
);
2212 if (hw_avail
<= 0) {
2216 if (frames
> (snd_pcm_uframes_t
)hw_avail
)
2218 appl_ptr
= runtime
->control
->appl_ptr
- frames
;
2220 appl_ptr
+= runtime
->boundary
;
2221 runtime
->control
->appl_ptr
= appl_ptr
;
2224 snd_pcm_stream_unlock_irq(substream
);
2228 static snd_pcm_sframes_t
snd_pcm_capture_rewind(struct snd_pcm_substream
*substream
,
2229 snd_pcm_uframes_t frames
)
2231 struct snd_pcm_runtime
*runtime
= substream
->runtime
;
2232 snd_pcm_sframes_t appl_ptr
;
2233 snd_pcm_sframes_t ret
;
2234 snd_pcm_sframes_t hw_avail
;
2239 snd_pcm_stream_lock_irq(substream
);
2240 switch (runtime
->status
->state
) {
2241 case SNDRV_PCM_STATE_PREPARED
:
2242 case SNDRV_PCM_STATE_DRAINING
:
2244 case SNDRV_PCM_STATE_RUNNING
:
2245 if (snd_pcm_update_hw_ptr(substream
) >= 0)
2248 case SNDRV_PCM_STATE_XRUN
:
2256 hw_avail
= snd_pcm_capture_hw_avail(runtime
);
2257 if (hw_avail
<= 0) {
2261 if (frames
> (snd_pcm_uframes_t
)hw_avail
)
2263 appl_ptr
= runtime
->control
->appl_ptr
- frames
;
2265 appl_ptr
+= runtime
->boundary
;
2266 runtime
->control
->appl_ptr
= appl_ptr
;
2269 snd_pcm_stream_unlock_irq(substream
);
2273 static snd_pcm_sframes_t
snd_pcm_playback_forward(struct snd_pcm_substream
*substream
,
2274 snd_pcm_uframes_t frames
)
2276 struct snd_pcm_runtime
*runtime
= substream
->runtime
;
2277 snd_pcm_sframes_t appl_ptr
;
2278 snd_pcm_sframes_t ret
;
2279 snd_pcm_sframes_t avail
;
2284 snd_pcm_stream_lock_irq(substream
);
2285 switch (runtime
->status
->state
) {
2286 case SNDRV_PCM_STATE_PREPARED
:
2287 case SNDRV_PCM_STATE_PAUSED
:
2289 case SNDRV_PCM_STATE_DRAINING
:
2290 case SNDRV_PCM_STATE_RUNNING
:
2291 if (snd_pcm_update_hw_ptr(substream
) >= 0)
2294 case SNDRV_PCM_STATE_XRUN
:
2302 avail
= snd_pcm_playback_avail(runtime
);
2307 if (frames
> (snd_pcm_uframes_t
)avail
)
2309 appl_ptr
= runtime
->control
->appl_ptr
+ frames
;
2310 if (appl_ptr
>= (snd_pcm_sframes_t
)runtime
->boundary
)
2311 appl_ptr
-= runtime
->boundary
;
2312 runtime
->control
->appl_ptr
= appl_ptr
;
2315 snd_pcm_stream_unlock_irq(substream
);
2319 static snd_pcm_sframes_t
snd_pcm_capture_forward(struct snd_pcm_substream
*substream
,
2320 snd_pcm_uframes_t frames
)
2322 struct snd_pcm_runtime
*runtime
= substream
->runtime
;
2323 snd_pcm_sframes_t appl_ptr
;
2324 snd_pcm_sframes_t ret
;
2325 snd_pcm_sframes_t avail
;
2330 snd_pcm_stream_lock_irq(substream
);
2331 switch (runtime
->status
->state
) {
2332 case SNDRV_PCM_STATE_PREPARED
:
2333 case SNDRV_PCM_STATE_DRAINING
:
2334 case SNDRV_PCM_STATE_PAUSED
:
2336 case SNDRV_PCM_STATE_RUNNING
:
2337 if (snd_pcm_update_hw_ptr(substream
) >= 0)
2340 case SNDRV_PCM_STATE_XRUN
:
2348 avail
= snd_pcm_capture_avail(runtime
);
2353 if (frames
> (snd_pcm_uframes_t
)avail
)
2355 appl_ptr
= runtime
->control
->appl_ptr
+ frames
;
2356 if (appl_ptr
>= (snd_pcm_sframes_t
)runtime
->boundary
)
2357 appl_ptr
-= runtime
->boundary
;
2358 runtime
->control
->appl_ptr
= appl_ptr
;
2361 snd_pcm_stream_unlock_irq(substream
);
2365 static int snd_pcm_hwsync(struct snd_pcm_substream
*substream
)
2367 struct snd_pcm_runtime
*runtime
= substream
->runtime
;
2370 snd_pcm_stream_lock_irq(substream
);
2371 switch (runtime
->status
->state
) {
2372 case SNDRV_PCM_STATE_DRAINING
:
2373 if (substream
->stream
== SNDRV_PCM_STREAM_CAPTURE
)
2375 case SNDRV_PCM_STATE_RUNNING
:
2376 if ((err
= snd_pcm_update_hw_ptr(substream
)) < 0)
2379 case SNDRV_PCM_STATE_PREPARED
:
2380 case SNDRV_PCM_STATE_SUSPENDED
:
2383 case SNDRV_PCM_STATE_XRUN
:
2391 snd_pcm_stream_unlock_irq(substream
);
2395 static int snd_pcm_delay(struct snd_pcm_substream
*substream
,
2396 snd_pcm_sframes_t __user
*res
)
2398 struct snd_pcm_runtime
*runtime
= substream
->runtime
;
2400 snd_pcm_sframes_t n
= 0;
2402 snd_pcm_stream_lock_irq(substream
);
2403 switch (runtime
->status
->state
) {
2404 case SNDRV_PCM_STATE_DRAINING
:
2405 if (substream
->stream
== SNDRV_PCM_STREAM_CAPTURE
)
2407 case SNDRV_PCM_STATE_RUNNING
:
2408 if ((err
= snd_pcm_update_hw_ptr(substream
)) < 0)
2411 case SNDRV_PCM_STATE_PREPARED
:
2412 case SNDRV_PCM_STATE_SUSPENDED
:
2414 if (substream
->stream
== SNDRV_PCM_STREAM_PLAYBACK
)
2415 n
= snd_pcm_playback_hw_avail(runtime
);
2417 n
= snd_pcm_capture_avail(runtime
);
2419 case SNDRV_PCM_STATE_XRUN
:
2427 snd_pcm_stream_unlock_irq(substream
);
2429 if (put_user(n
, res
))
2434 static int snd_pcm_sync_ptr(struct snd_pcm_substream
*substream
,
2435 struct snd_pcm_sync_ptr __user
*_sync_ptr
)
2437 struct snd_pcm_runtime
*runtime
= substream
->runtime
;
2438 struct snd_pcm_sync_ptr sync_ptr
;
2439 volatile struct snd_pcm_mmap_status
*status
;
2440 volatile struct snd_pcm_mmap_control
*control
;
2443 memset(&sync_ptr
, 0, sizeof(sync_ptr
));
2444 if (get_user(sync_ptr
.flags
, (unsigned __user
*)&(_sync_ptr
->flags
)))
2446 if (copy_from_user(&sync_ptr
.c
.control
, &(_sync_ptr
->c
.control
), sizeof(struct snd_pcm_mmap_control
)))
2448 status
= runtime
->status
;
2449 control
= runtime
->control
;
2450 if (sync_ptr
.flags
& SNDRV_PCM_SYNC_PTR_HWSYNC
) {
2451 err
= snd_pcm_hwsync(substream
);
2455 snd_pcm_stream_lock_irq(substream
);
2456 if (!(sync_ptr
.flags
& SNDRV_PCM_SYNC_PTR_APPL
))
2457 control
->appl_ptr
= sync_ptr
.c
.control
.appl_ptr
;
2459 sync_ptr
.c
.control
.appl_ptr
= control
->appl_ptr
;
2460 if (!(sync_ptr
.flags
& SNDRV_PCM_SYNC_PTR_AVAIL_MIN
))
2461 control
->avail_min
= sync_ptr
.c
.control
.avail_min
;
2463 sync_ptr
.c
.control
.avail_min
= control
->avail_min
;
2464 sync_ptr
.s
.status
.state
= status
->state
;
2465 sync_ptr
.s
.status
.hw_ptr
= status
->hw_ptr
;
2466 sync_ptr
.s
.status
.tstamp
= status
->tstamp
;
2467 sync_ptr
.s
.status
.suspended_state
= status
->suspended_state
;
2468 snd_pcm_stream_unlock_irq(substream
);
2469 if (copy_to_user(_sync_ptr
, &sync_ptr
, sizeof(sync_ptr
)))
2474 static int snd_pcm_tstamp(struct snd_pcm_substream
*substream
, int __user
*_arg
)
2476 struct snd_pcm_runtime
*runtime
= substream
->runtime
;
2479 if (get_user(arg
, _arg
))
2481 if (arg
< 0 || arg
> SNDRV_PCM_TSTAMP_TYPE_LAST
)
2483 runtime
->tstamp_type
= SNDRV_PCM_TSTAMP_TYPE_GETTIMEOFDAY
;
2484 if (arg
== SNDRV_PCM_TSTAMP_TYPE_MONOTONIC
)
2485 runtime
->tstamp_type
= SNDRV_PCM_TSTAMP_TYPE_MONOTONIC
;
2489 static int snd_pcm_common_ioctl1(struct file
*file
,
2490 struct snd_pcm_substream
*substream
,
2491 unsigned int cmd
, void __user
*arg
)
2494 case SNDRV_PCM_IOCTL_PVERSION
:
2495 return put_user(SNDRV_PCM_VERSION
, (int __user
*)arg
) ? -EFAULT
: 0;
2496 case SNDRV_PCM_IOCTL_INFO
:
2497 return snd_pcm_info_user(substream
, arg
);
2498 case SNDRV_PCM_IOCTL_TSTAMP
: /* just for compatibility */
2500 case SNDRV_PCM_IOCTL_TTSTAMP
:
2501 return snd_pcm_tstamp(substream
, arg
);
2502 case SNDRV_PCM_IOCTL_HW_REFINE
:
2503 return snd_pcm_hw_refine_user(substream
, arg
);
2504 case SNDRV_PCM_IOCTL_HW_PARAMS
:
2505 return snd_pcm_hw_params_user(substream
, arg
);
2506 case SNDRV_PCM_IOCTL_HW_FREE
:
2507 return snd_pcm_hw_free(substream
);
2508 case SNDRV_PCM_IOCTL_SW_PARAMS
:
2509 return snd_pcm_sw_params_user(substream
, arg
);
2510 case SNDRV_PCM_IOCTL_STATUS
:
2511 return snd_pcm_status_user(substream
, arg
);
2512 case SNDRV_PCM_IOCTL_CHANNEL_INFO
:
2513 return snd_pcm_channel_info_user(substream
, arg
);
2514 case SNDRV_PCM_IOCTL_PREPARE
:
2515 return snd_pcm_prepare(substream
, file
);
2516 case SNDRV_PCM_IOCTL_RESET
:
2517 return snd_pcm_reset(substream
);
2518 case SNDRV_PCM_IOCTL_START
:
2519 return snd_pcm_action_lock_irq(&snd_pcm_action_start
, substream
, SNDRV_PCM_STATE_RUNNING
);
2520 case SNDRV_PCM_IOCTL_LINK
:
2521 return snd_pcm_link(substream
, (int)(unsigned long) arg
);
2522 case SNDRV_PCM_IOCTL_UNLINK
:
2523 return snd_pcm_unlink(substream
);
2524 case SNDRV_PCM_IOCTL_RESUME
:
2525 return snd_pcm_resume(substream
);
2526 case SNDRV_PCM_IOCTL_XRUN
:
2527 return snd_pcm_xrun(substream
);
2528 case SNDRV_PCM_IOCTL_HWSYNC
:
2529 return snd_pcm_hwsync(substream
);
2530 case SNDRV_PCM_IOCTL_DELAY
:
2531 return snd_pcm_delay(substream
, arg
);
2532 case SNDRV_PCM_IOCTL_SYNC_PTR
:
2533 return snd_pcm_sync_ptr(substream
, arg
);
2534 #ifdef CONFIG_SND_SUPPORT_OLD_API
2535 case SNDRV_PCM_IOCTL_HW_REFINE_OLD
:
2536 return snd_pcm_hw_refine_old_user(substream
, arg
);
2537 case SNDRV_PCM_IOCTL_HW_PARAMS_OLD
:
2538 return snd_pcm_hw_params_old_user(substream
, arg
);
2540 case SNDRV_PCM_IOCTL_DRAIN
:
2541 return snd_pcm_drain(substream
);
2542 case SNDRV_PCM_IOCTL_DROP
:
2543 return snd_pcm_drop(substream
);
2544 case SNDRV_PCM_IOCTL_PAUSE
:
2547 snd_pcm_stream_lock_irq(substream
);
2548 res
= snd_pcm_pause(substream
, (int)(unsigned long)arg
);
2549 snd_pcm_stream_unlock_irq(substream
);
2553 snd_printd("unknown ioctl = 0x%x\n", cmd
);
2557 static int snd_pcm_playback_ioctl1(struct file
*file
,
2558 struct snd_pcm_substream
*substream
,
2559 unsigned int cmd
, void __user
*arg
)
2561 if (snd_BUG_ON(!substream
))
2563 if (snd_BUG_ON(substream
->stream
!= SNDRV_PCM_STREAM_PLAYBACK
))
2566 case SNDRV_PCM_IOCTL_WRITEI_FRAMES
:
2568 struct snd_xferi xferi
;
2569 struct snd_xferi __user
*_xferi
= arg
;
2570 struct snd_pcm_runtime
*runtime
= substream
->runtime
;
2571 snd_pcm_sframes_t result
;
2572 if (runtime
->status
->state
== SNDRV_PCM_STATE_OPEN
)
2574 if (put_user(0, &_xferi
->result
))
2576 if (copy_from_user(&xferi
, _xferi
, sizeof(xferi
)))
2578 result
= snd_pcm_lib_write(substream
, xferi
.buf
, xferi
.frames
);
2579 __put_user(result
, &_xferi
->result
);
2580 return result
< 0 ? result
: 0;
2582 case SNDRV_PCM_IOCTL_WRITEN_FRAMES
:
2584 struct snd_xfern xfern
;
2585 struct snd_xfern __user
*_xfern
= arg
;
2586 struct snd_pcm_runtime
*runtime
= substream
->runtime
;
2588 snd_pcm_sframes_t result
;
2589 if (runtime
->status
->state
== SNDRV_PCM_STATE_OPEN
)
2591 if (runtime
->channels
> 128)
2593 if (put_user(0, &_xfern
->result
))
2595 if (copy_from_user(&xfern
, _xfern
, sizeof(xfern
)))
2597 bufs
= kmalloc(sizeof(void *) * runtime
->channels
, GFP_KERNEL
);
2600 if (copy_from_user(bufs
, xfern
.bufs
, sizeof(void *) * runtime
->channels
)) {
2604 result
= snd_pcm_lib_writev(substream
, bufs
, xfern
.frames
);
2606 __put_user(result
, &_xfern
->result
);
2607 return result
< 0 ? result
: 0;
2609 case SNDRV_PCM_IOCTL_REWIND
:
2611 snd_pcm_uframes_t frames
;
2612 snd_pcm_uframes_t __user
*_frames
= arg
;
2613 snd_pcm_sframes_t result
;
2614 if (get_user(frames
, _frames
))
2616 if (put_user(0, _frames
))
2618 result
= snd_pcm_playback_rewind(substream
, frames
);
2619 __put_user(result
, _frames
);
2620 return result
< 0 ? result
: 0;
2622 case SNDRV_PCM_IOCTL_FORWARD
:
2624 snd_pcm_uframes_t frames
;
2625 snd_pcm_uframes_t __user
*_frames
= arg
;
2626 snd_pcm_sframes_t result
;
2627 if (get_user(frames
, _frames
))
2629 if (put_user(0, _frames
))
2631 result
= snd_pcm_playback_forward(substream
, frames
);
2632 __put_user(result
, _frames
);
2633 return result
< 0 ? result
: 0;
2636 return snd_pcm_common_ioctl1(file
, substream
, cmd
, arg
);
2639 static int snd_pcm_capture_ioctl1(struct file
*file
,
2640 struct snd_pcm_substream
*substream
,
2641 unsigned int cmd
, void __user
*arg
)
2643 if (snd_BUG_ON(!substream
))
2645 if (snd_BUG_ON(substream
->stream
!= SNDRV_PCM_STREAM_CAPTURE
))
2648 case SNDRV_PCM_IOCTL_READI_FRAMES
:
2650 struct snd_xferi xferi
;
2651 struct snd_xferi __user
*_xferi
= arg
;
2652 struct snd_pcm_runtime
*runtime
= substream
->runtime
;
2653 snd_pcm_sframes_t result
;
2654 if (runtime
->status
->state
== SNDRV_PCM_STATE_OPEN
)
2656 if (put_user(0, &_xferi
->result
))
2658 if (copy_from_user(&xferi
, _xferi
, sizeof(xferi
)))
2660 result
= snd_pcm_lib_read(substream
, xferi
.buf
, xferi
.frames
);
2661 __put_user(result
, &_xferi
->result
);
2662 return result
< 0 ? result
: 0;
2664 case SNDRV_PCM_IOCTL_READN_FRAMES
:
2666 struct snd_xfern xfern
;
2667 struct snd_xfern __user
*_xfern
= arg
;
2668 struct snd_pcm_runtime
*runtime
= substream
->runtime
;
2670 snd_pcm_sframes_t result
;
2671 if (runtime
->status
->state
== SNDRV_PCM_STATE_OPEN
)
2673 if (runtime
->channels
> 128)
2675 if (put_user(0, &_xfern
->result
))
2677 if (copy_from_user(&xfern
, _xfern
, sizeof(xfern
)))
2679 bufs
= kmalloc(sizeof(void *) * runtime
->channels
, GFP_KERNEL
);
2682 if (copy_from_user(bufs
, xfern
.bufs
, sizeof(void *) * runtime
->channels
)) {
2686 result
= snd_pcm_lib_readv(substream
, bufs
, xfern
.frames
);
2688 __put_user(result
, &_xfern
->result
);
2689 return result
< 0 ? result
: 0;
2691 case SNDRV_PCM_IOCTL_REWIND
:
2693 snd_pcm_uframes_t frames
;
2694 snd_pcm_uframes_t __user
*_frames
= arg
;
2695 snd_pcm_sframes_t result
;
2696 if (get_user(frames
, _frames
))
2698 if (put_user(0, _frames
))
2700 result
= snd_pcm_capture_rewind(substream
, frames
);
2701 __put_user(result
, _frames
);
2702 return result
< 0 ? result
: 0;
2704 case SNDRV_PCM_IOCTL_FORWARD
:
2706 snd_pcm_uframes_t frames
;
2707 snd_pcm_uframes_t __user
*_frames
= arg
;
2708 snd_pcm_sframes_t result
;
2709 if (get_user(frames
, _frames
))
2711 if (put_user(0, _frames
))
2713 result
= snd_pcm_capture_forward(substream
, frames
);
2714 __put_user(result
, _frames
);
2715 return result
< 0 ? result
: 0;
2718 return snd_pcm_common_ioctl1(file
, substream
, cmd
, arg
);
2721 static long snd_pcm_playback_ioctl(struct file
*file
, unsigned int cmd
,
2724 struct snd_pcm_file
*pcm_file
;
2726 pcm_file
= file
->private_data
;
2728 if (((cmd
>> 8) & 0xff) != 'A')
2731 return snd_pcm_playback_ioctl1(file
, pcm_file
->substream
, cmd
,
2732 (void __user
*)arg
);
2735 static long snd_pcm_capture_ioctl(struct file
*file
, unsigned int cmd
,
2738 struct snd_pcm_file
*pcm_file
;
2740 pcm_file
= file
->private_data
;
2742 if (((cmd
>> 8) & 0xff) != 'A')
2745 return snd_pcm_capture_ioctl1(file
, pcm_file
->substream
, cmd
,
2746 (void __user
*)arg
);
2749 int snd_pcm_kernel_ioctl(struct snd_pcm_substream
*substream
,
2750 unsigned int cmd
, void *arg
)
2755 fs
= snd_enter_user();
2756 switch (substream
->stream
) {
2757 case SNDRV_PCM_STREAM_PLAYBACK
:
2758 result
= snd_pcm_playback_ioctl1(NULL
, substream
, cmd
,
2759 (void __user
*)arg
);
2761 case SNDRV_PCM_STREAM_CAPTURE
:
2762 result
= snd_pcm_capture_ioctl1(NULL
, substream
, cmd
,
2763 (void __user
*)arg
);
2773 EXPORT_SYMBOL(snd_pcm_kernel_ioctl
);
2775 static ssize_t
snd_pcm_read(struct file
*file
, char __user
*buf
, size_t count
,
2778 struct snd_pcm_file
*pcm_file
;
2779 struct snd_pcm_substream
*substream
;
2780 struct snd_pcm_runtime
*runtime
;
2781 snd_pcm_sframes_t result
;
2783 pcm_file
= file
->private_data
;
2784 substream
= pcm_file
->substream
;
2785 if (PCM_RUNTIME_CHECK(substream
))
2787 runtime
= substream
->runtime
;
2788 if (runtime
->status
->state
== SNDRV_PCM_STATE_OPEN
)
2790 if (!frame_aligned(runtime
, count
))
2792 count
= bytes_to_frames(runtime
, count
);
2793 result
= snd_pcm_lib_read(substream
, buf
, count
);
2795 result
= frames_to_bytes(runtime
, result
);
2799 static ssize_t
snd_pcm_write(struct file
*file
, const char __user
*buf
,
2800 size_t count
, loff_t
* offset
)
2802 struct snd_pcm_file
*pcm_file
;
2803 struct snd_pcm_substream
*substream
;
2804 struct snd_pcm_runtime
*runtime
;
2805 snd_pcm_sframes_t result
;
2807 pcm_file
= file
->private_data
;
2808 substream
= pcm_file
->substream
;
2809 if (PCM_RUNTIME_CHECK(substream
))
2811 runtime
= substream
->runtime
;
2812 if (runtime
->status
->state
== SNDRV_PCM_STATE_OPEN
)
2814 if (!frame_aligned(runtime
, count
))
2816 count
= bytes_to_frames(runtime
, count
);
2817 result
= snd_pcm_lib_write(substream
, buf
, count
);
2819 result
= frames_to_bytes(runtime
, result
);
2823 static ssize_t
snd_pcm_aio_read(struct kiocb
*iocb
, const struct iovec
*iov
,
2824 unsigned long nr_segs
, loff_t pos
)
2827 struct snd_pcm_file
*pcm_file
;
2828 struct snd_pcm_substream
*substream
;
2829 struct snd_pcm_runtime
*runtime
;
2830 snd_pcm_sframes_t result
;
2833 snd_pcm_uframes_t frames
;
2835 pcm_file
= iocb
->ki_filp
->private_data
;
2836 substream
= pcm_file
->substream
;
2837 if (PCM_RUNTIME_CHECK(substream
))
2839 runtime
= substream
->runtime
;
2840 if (runtime
->status
->state
== SNDRV_PCM_STATE_OPEN
)
2842 if (nr_segs
> 1024 || nr_segs
!= runtime
->channels
)
2844 if (!frame_aligned(runtime
, iov
->iov_len
))
2846 frames
= bytes_to_samples(runtime
, iov
->iov_len
);
2847 bufs
= kmalloc(sizeof(void *) * nr_segs
, GFP_KERNEL
);
2850 for (i
= 0; i
< nr_segs
; ++i
)
2851 bufs
[i
] = iov
[i
].iov_base
;
2852 result
= snd_pcm_lib_readv(substream
, bufs
, frames
);
2854 result
= frames_to_bytes(runtime
, result
);
2859 static ssize_t
snd_pcm_aio_write(struct kiocb
*iocb
, const struct iovec
*iov
,
2860 unsigned long nr_segs
, loff_t pos
)
2862 struct snd_pcm_file
*pcm_file
;
2863 struct snd_pcm_substream
*substream
;
2864 struct snd_pcm_runtime
*runtime
;
2865 snd_pcm_sframes_t result
;
2868 snd_pcm_uframes_t frames
;
2870 pcm_file
= iocb
->ki_filp
->private_data
;
2871 substream
= pcm_file
->substream
;
2872 if (PCM_RUNTIME_CHECK(substream
))
2874 runtime
= substream
->runtime
;
2875 if (runtime
->status
->state
== SNDRV_PCM_STATE_OPEN
)
2877 if (nr_segs
> 128 || nr_segs
!= runtime
->channels
||
2878 !frame_aligned(runtime
, iov
->iov_len
))
2880 frames
= bytes_to_samples(runtime
, iov
->iov_len
);
2881 bufs
= kmalloc(sizeof(void *) * nr_segs
, GFP_KERNEL
);
2884 for (i
= 0; i
< nr_segs
; ++i
)
2885 bufs
[i
] = iov
[i
].iov_base
;
2886 result
= snd_pcm_lib_writev(substream
, bufs
, frames
);
2888 result
= frames_to_bytes(runtime
, result
);
2893 static unsigned int snd_pcm_playback_poll(struct file
*file
, poll_table
* wait
)
2895 struct snd_pcm_file
*pcm_file
;
2896 struct snd_pcm_substream
*substream
;
2897 struct snd_pcm_runtime
*runtime
;
2899 snd_pcm_uframes_t avail
;
2901 pcm_file
= file
->private_data
;
2903 substream
= pcm_file
->substream
;
2904 if (PCM_RUNTIME_CHECK(substream
))
2906 runtime
= substream
->runtime
;
2908 poll_wait(file
, &runtime
->sleep
, wait
);
2910 snd_pcm_stream_lock_irq(substream
);
2911 avail
= snd_pcm_playback_avail(runtime
);
2912 switch (runtime
->status
->state
) {
2913 case SNDRV_PCM_STATE_RUNNING
:
2914 case SNDRV_PCM_STATE_PREPARED
:
2915 case SNDRV_PCM_STATE_PAUSED
:
2916 if (avail
>= runtime
->control
->avail_min
) {
2917 mask
= POLLOUT
| POLLWRNORM
;
2921 case SNDRV_PCM_STATE_DRAINING
:
2925 mask
= POLLOUT
| POLLWRNORM
| POLLERR
;
2928 snd_pcm_stream_unlock_irq(substream
);
2932 static unsigned int snd_pcm_capture_poll(struct file
*file
, poll_table
* wait
)
2934 struct snd_pcm_file
*pcm_file
;
2935 struct snd_pcm_substream
*substream
;
2936 struct snd_pcm_runtime
*runtime
;
2938 snd_pcm_uframes_t avail
;
2940 pcm_file
= file
->private_data
;
2942 substream
= pcm_file
->substream
;
2943 if (PCM_RUNTIME_CHECK(substream
))
2945 runtime
= substream
->runtime
;
2947 poll_wait(file
, &runtime
->sleep
, wait
);
2949 snd_pcm_stream_lock_irq(substream
);
2950 avail
= snd_pcm_capture_avail(runtime
);
2951 switch (runtime
->status
->state
) {
2952 case SNDRV_PCM_STATE_RUNNING
:
2953 case SNDRV_PCM_STATE_PREPARED
:
2954 case SNDRV_PCM_STATE_PAUSED
:
2955 if (avail
>= runtime
->control
->avail_min
) {
2956 mask
= POLLIN
| POLLRDNORM
;
2961 case SNDRV_PCM_STATE_DRAINING
:
2963 mask
= POLLIN
| POLLRDNORM
;
2968 mask
= POLLIN
| POLLRDNORM
| POLLERR
;
2971 snd_pcm_stream_unlock_irq(substream
);
2980 * Only on coherent architectures, we can mmap the status and the control records
2981 * for effcient data transfer. On others, we have to use HWSYNC ioctl...
2983 #if defined(CONFIG_X86) || defined(CONFIG_PPC) || defined(CONFIG_ALPHA)
2985 * mmap status record
2987 static int snd_pcm_mmap_status_fault(struct vm_area_struct
*area
,
2988 struct vm_fault
*vmf
)
2990 struct snd_pcm_substream
*substream
= area
->vm_private_data
;
2991 struct snd_pcm_runtime
*runtime
;
2993 if (substream
== NULL
)
2994 return VM_FAULT_SIGBUS
;
2995 runtime
= substream
->runtime
;
2996 vmf
->page
= virt_to_page(runtime
->status
);
2997 get_page(vmf
->page
);
3001 static struct vm_operations_struct snd_pcm_vm_ops_status
=
3003 .fault
= snd_pcm_mmap_status_fault
,
3006 static int snd_pcm_mmap_status(struct snd_pcm_substream
*substream
, struct file
*file
,
3007 struct vm_area_struct
*area
)
3009 struct snd_pcm_runtime
*runtime
;
3011 if (!(area
->vm_flags
& VM_READ
))
3013 runtime
= substream
->runtime
;
3014 size
= area
->vm_end
- area
->vm_start
;
3015 if (size
!= PAGE_ALIGN(sizeof(struct snd_pcm_mmap_status
)))
3017 area
->vm_ops
= &snd_pcm_vm_ops_status
;
3018 area
->vm_private_data
= substream
;
3019 area
->vm_flags
|= VM_RESERVED
;
3024 * mmap control record
3026 static int snd_pcm_mmap_control_fault(struct vm_area_struct
*area
,
3027 struct vm_fault
*vmf
)
3029 struct snd_pcm_substream
*substream
= area
->vm_private_data
;
3030 struct snd_pcm_runtime
*runtime
;
3032 if (substream
== NULL
)
3033 return VM_FAULT_SIGBUS
;
3034 runtime
= substream
->runtime
;
3035 vmf
->page
= virt_to_page(runtime
->control
);
3036 get_page(vmf
->page
);
3040 static struct vm_operations_struct snd_pcm_vm_ops_control
=
3042 .fault
= snd_pcm_mmap_control_fault
,
3045 static int snd_pcm_mmap_control(struct snd_pcm_substream
*substream
, struct file
*file
,
3046 struct vm_area_struct
*area
)
3048 struct snd_pcm_runtime
*runtime
;
3050 if (!(area
->vm_flags
& VM_READ
))
3052 runtime
= substream
->runtime
;
3053 size
= area
->vm_end
- area
->vm_start
;
3054 if (size
!= PAGE_ALIGN(sizeof(struct snd_pcm_mmap_control
)))
3056 area
->vm_ops
= &snd_pcm_vm_ops_control
;
3057 area
->vm_private_data
= substream
;
3058 area
->vm_flags
|= VM_RESERVED
;
3061 #else /* ! coherent mmap */
3063 * don't support mmap for status and control records.
3065 static int snd_pcm_mmap_status(struct snd_pcm_substream
*substream
, struct file
*file
,
3066 struct vm_area_struct
*area
)
3070 static int snd_pcm_mmap_control(struct snd_pcm_substream
*substream
, struct file
*file
,
3071 struct vm_area_struct
*area
)
3075 #endif /* coherent mmap */
3078 * fault callback for mmapping a RAM page
3080 static int snd_pcm_mmap_data_fault(struct vm_area_struct
*area
,
3081 struct vm_fault
*vmf
)
3083 struct snd_pcm_substream
*substream
= area
->vm_private_data
;
3084 struct snd_pcm_runtime
*runtime
;
3085 unsigned long offset
;
3090 if (substream
== NULL
)
3091 return VM_FAULT_SIGBUS
;
3092 runtime
= substream
->runtime
;
3093 offset
= vmf
->pgoff
<< PAGE_SHIFT
;
3094 dma_bytes
= PAGE_ALIGN(runtime
->dma_bytes
);
3095 if (offset
> dma_bytes
- PAGE_SIZE
)
3096 return VM_FAULT_SIGBUS
;
3097 if (substream
->ops
->page
) {
3098 page
= substream
->ops
->page(substream
, offset
);
3100 return VM_FAULT_SIGBUS
;
3102 vaddr
= runtime
->dma_area
+ offset
;
3103 page
= virt_to_page(vaddr
);
3110 static struct vm_operations_struct snd_pcm_vm_ops_data
=
3112 .open
= snd_pcm_mmap_data_open
,
3113 .close
= snd_pcm_mmap_data_close
,
3114 .fault
= snd_pcm_mmap_data_fault
,
3118 * mmap the DMA buffer on RAM
3120 static int snd_pcm_default_mmap(struct snd_pcm_substream
*substream
,
3121 struct vm_area_struct
*area
)
3123 area
->vm_ops
= &snd_pcm_vm_ops_data
;
3124 area
->vm_private_data
= substream
;
3125 area
->vm_flags
|= VM_RESERVED
;
3126 atomic_inc(&substream
->mmap_count
);
3131 * mmap the DMA buffer on I/O memory area
3133 #if SNDRV_PCM_INFO_MMAP_IOMEM
3134 static struct vm_operations_struct snd_pcm_vm_ops_data_mmio
=
3136 .open
= snd_pcm_mmap_data_open
,
3137 .close
= snd_pcm_mmap_data_close
,
3140 int snd_pcm_lib_mmap_iomem(struct snd_pcm_substream
*substream
,
3141 struct vm_area_struct
*area
)
3144 unsigned long offset
;
3146 #ifdef pgprot_noncached
3147 area
->vm_page_prot
= pgprot_noncached(area
->vm_page_prot
);
3149 area
->vm_ops
= &snd_pcm_vm_ops_data_mmio
;
3150 area
->vm_private_data
= substream
;
3151 area
->vm_flags
|= VM_IO
;
3152 size
= area
->vm_end
- area
->vm_start
;
3153 offset
= area
->vm_pgoff
<< PAGE_SHIFT
;
3154 if (io_remap_pfn_range(area
, area
->vm_start
,
3155 (substream
->runtime
->dma_addr
+ offset
) >> PAGE_SHIFT
,
3156 size
, area
->vm_page_prot
))
3158 atomic_inc(&substream
->mmap_count
);
3162 EXPORT_SYMBOL(snd_pcm_lib_mmap_iomem
);
3163 #endif /* SNDRV_PCM_INFO_MMAP */
3168 int snd_pcm_mmap_data(struct snd_pcm_substream
*substream
, struct file
*file
,
3169 struct vm_area_struct
*area
)
3171 struct snd_pcm_runtime
*runtime
;
3173 unsigned long offset
;
3176 if (substream
->stream
== SNDRV_PCM_STREAM_PLAYBACK
) {
3177 if (!(area
->vm_flags
& (VM_WRITE
|VM_READ
)))
3180 if (!(area
->vm_flags
& VM_READ
))
3183 runtime
= substream
->runtime
;
3184 if (runtime
->status
->state
== SNDRV_PCM_STATE_OPEN
)
3186 if (!(runtime
->info
& SNDRV_PCM_INFO_MMAP
))
3188 if (runtime
->access
== SNDRV_PCM_ACCESS_RW_INTERLEAVED
||
3189 runtime
->access
== SNDRV_PCM_ACCESS_RW_NONINTERLEAVED
)
3191 size
= area
->vm_end
- area
->vm_start
;
3192 offset
= area
->vm_pgoff
<< PAGE_SHIFT
;
3193 dma_bytes
= PAGE_ALIGN(runtime
->dma_bytes
);
3194 if ((size_t)size
> dma_bytes
)
3196 if (offset
> dma_bytes
- size
)
3199 if (substream
->ops
->mmap
)
3200 return substream
->ops
->mmap(substream
, area
);
3202 return snd_pcm_default_mmap(substream
, area
);
3205 EXPORT_SYMBOL(snd_pcm_mmap_data
);
3207 static int snd_pcm_mmap(struct file
*file
, struct vm_area_struct
*area
)
3209 struct snd_pcm_file
* pcm_file
;
3210 struct snd_pcm_substream
*substream
;
3211 unsigned long offset
;
3213 pcm_file
= file
->private_data
;
3214 substream
= pcm_file
->substream
;
3215 if (PCM_RUNTIME_CHECK(substream
))
3218 offset
= area
->vm_pgoff
<< PAGE_SHIFT
;
3220 case SNDRV_PCM_MMAP_OFFSET_STATUS
:
3221 if (pcm_file
->no_compat_mmap
)
3223 return snd_pcm_mmap_status(substream
, file
, area
);
3224 case SNDRV_PCM_MMAP_OFFSET_CONTROL
:
3225 if (pcm_file
->no_compat_mmap
)
3227 return snd_pcm_mmap_control(substream
, file
, area
);
3229 return snd_pcm_mmap_data(substream
, file
, area
);
3234 static int snd_pcm_fasync(int fd
, struct file
* file
, int on
)
3236 struct snd_pcm_file
* pcm_file
;
3237 struct snd_pcm_substream
*substream
;
3238 struct snd_pcm_runtime
*runtime
;
3242 pcm_file
= file
->private_data
;
3243 substream
= pcm_file
->substream
;
3244 if (PCM_RUNTIME_CHECK(substream
))
3246 runtime
= substream
->runtime
;
3247 err
= fasync_helper(fd
, file
, on
, &runtime
->fasync
);
3258 #ifdef CONFIG_COMPAT
3259 #include "pcm_compat.c"
3261 #define snd_pcm_ioctl_compat NULL
3265 * To be removed helpers to keep binary compatibility
3268 #ifdef CONFIG_SND_SUPPORT_OLD_API
3269 #define __OLD_TO_NEW_MASK(x) ((x&7)|((x&0x07fffff8)<<5))
3270 #define __NEW_TO_OLD_MASK(x) ((x&7)|((x&0xffffff00)>>5))
3272 static void snd_pcm_hw_convert_from_old_params(struct snd_pcm_hw_params
*params
,
3273 struct snd_pcm_hw_params_old
*oparams
)
3277 memset(params
, 0, sizeof(*params
));
3278 params
->flags
= oparams
->flags
;
3279 for (i
= 0; i
< ARRAY_SIZE(oparams
->masks
); i
++)
3280 params
->masks
[i
].bits
[0] = oparams
->masks
[i
];
3281 memcpy(params
->intervals
, oparams
->intervals
, sizeof(oparams
->intervals
));
3282 params
->rmask
= __OLD_TO_NEW_MASK(oparams
->rmask
);
3283 params
->cmask
= __OLD_TO_NEW_MASK(oparams
->cmask
);
3284 params
->info
= oparams
->info
;
3285 params
->msbits
= oparams
->msbits
;
3286 params
->rate_num
= oparams
->rate_num
;
3287 params
->rate_den
= oparams
->rate_den
;
3288 params
->fifo_size
= oparams
->fifo_size
;
3291 static void snd_pcm_hw_convert_to_old_params(struct snd_pcm_hw_params_old
*oparams
,
3292 struct snd_pcm_hw_params
*params
)
3296 memset(oparams
, 0, sizeof(*oparams
));
3297 oparams
->flags
= params
->flags
;
3298 for (i
= 0; i
< ARRAY_SIZE(oparams
->masks
); i
++)
3299 oparams
->masks
[i
] = params
->masks
[i
].bits
[0];
3300 memcpy(oparams
->intervals
, params
->intervals
, sizeof(oparams
->intervals
));
3301 oparams
->rmask
= __NEW_TO_OLD_MASK(params
->rmask
);
3302 oparams
->cmask
= __NEW_TO_OLD_MASK(params
->cmask
);
3303 oparams
->info
= params
->info
;
3304 oparams
->msbits
= params
->msbits
;
3305 oparams
->rate_num
= params
->rate_num
;
3306 oparams
->rate_den
= params
->rate_den
;
3307 oparams
->fifo_size
= params
->fifo_size
;
3310 static int snd_pcm_hw_refine_old_user(struct snd_pcm_substream
*substream
,
3311 struct snd_pcm_hw_params_old __user
* _oparams
)
3313 struct snd_pcm_hw_params
*params
;
3314 struct snd_pcm_hw_params_old
*oparams
= NULL
;
3317 params
= kmalloc(sizeof(*params
), GFP_KERNEL
);
3322 oparams
= kmalloc(sizeof(*oparams
), GFP_KERNEL
);
3328 if (copy_from_user(oparams
, _oparams
, sizeof(*oparams
))) {
3332 snd_pcm_hw_convert_from_old_params(params
, oparams
);
3333 err
= snd_pcm_hw_refine(substream
, params
);
3334 snd_pcm_hw_convert_to_old_params(oparams
, params
);
3335 if (copy_to_user(_oparams
, oparams
, sizeof(*oparams
))) {
3345 static int snd_pcm_hw_params_old_user(struct snd_pcm_substream
*substream
,
3346 struct snd_pcm_hw_params_old __user
* _oparams
)
3348 struct snd_pcm_hw_params
*params
;
3349 struct snd_pcm_hw_params_old
*oparams
= NULL
;
3352 params
= kmalloc(sizeof(*params
), GFP_KERNEL
);
3357 oparams
= kmalloc(sizeof(*oparams
), GFP_KERNEL
);
3362 if (copy_from_user(oparams
, _oparams
, sizeof(*oparams
))) {
3366 snd_pcm_hw_convert_from_old_params(params
, oparams
);
3367 err
= snd_pcm_hw_params(substream
, params
);
3368 snd_pcm_hw_convert_to_old_params(oparams
, params
);
3369 if (copy_to_user(_oparams
, oparams
, sizeof(*oparams
))) {
3378 #endif /* CONFIG_SND_SUPPORT_OLD_API */
3381 unsigned long dummy_get_unmapped_area(struct file
*file
, unsigned long addr
,
3382 unsigned long len
, unsigned long pgoff
,
3383 unsigned long flags
)
3388 # define dummy_get_unmapped_area NULL
3395 const struct file_operations snd_pcm_f_ops
[2] = {
3397 .owner
= THIS_MODULE
,
3398 .write
= snd_pcm_write
,
3399 .aio_write
= snd_pcm_aio_write
,
3400 .open
= snd_pcm_playback_open
,
3401 .release
= snd_pcm_release
,
3402 .poll
= snd_pcm_playback_poll
,
3403 .unlocked_ioctl
= snd_pcm_playback_ioctl
,
3404 .compat_ioctl
= snd_pcm_ioctl_compat
,
3405 .mmap
= snd_pcm_mmap
,
3406 .fasync
= snd_pcm_fasync
,
3407 .get_unmapped_area
= dummy_get_unmapped_area
,
3410 .owner
= THIS_MODULE
,
3411 .read
= snd_pcm_read
,
3412 .aio_read
= snd_pcm_aio_read
,
3413 .open
= snd_pcm_capture_open
,
3414 .release
= snd_pcm_release
,
3415 .poll
= snd_pcm_capture_poll
,
3416 .unlocked_ioctl
= snd_pcm_capture_ioctl
,
3417 .compat_ioctl
= snd_pcm_ioctl_compat
,
3418 .mmap
= snd_pcm_mmap
,
3419 .fasync
= snd_pcm_fasync
,
3420 .get_unmapped_area
= dummy_get_unmapped_area
,