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 sndrv_pcm_hw_params_old
{
44 unsigned int masks
[SNDRV_PCM_HW_PARAM_SUBFORMAT
-
45 SNDRV_PCM_HW_PARAM_ACCESS
+ 1];
46 struct sndrv_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 sndrv_pcm_uframes_t fifo_size
;
55 unsigned char reserved
[64];
58 #define SNDRV_PCM_IOCTL_HW_REFINE_OLD _IOWR('A', 0x10, struct sndrv_pcm_hw_params_old)
59 #define SNDRV_PCM_IOCTL_HW_PARAMS_OLD _IOWR('A', 0x11, struct sndrv_pcm_hw_params_old)
61 static int snd_pcm_hw_refine_old_user(snd_pcm_substream_t
* substream
, struct sndrv_pcm_hw_params_old __user
* _oparams
);
62 static int snd_pcm_hw_params_old_user(snd_pcm_substream_t
* substream
, struct sndrv_pcm_hw_params_old __user
* _oparams
);
68 DEFINE_RWLOCK(snd_pcm_link_rwlock
);
69 static DECLARE_RWSEM(snd_pcm_link_rwsem
);
72 static inline mm_segment_t
snd_enter_user(void)
74 mm_segment_t fs
= get_fs();
79 static inline void snd_leave_user(mm_segment_t fs
)
86 int snd_pcm_info(snd_pcm_substream_t
* substream
, snd_pcm_info_t
*info
)
88 snd_pcm_runtime_t
* runtime
;
89 snd_pcm_t
*pcm
= substream
->pcm
;
90 snd_pcm_str_t
*pstr
= substream
->pstr
;
92 snd_assert(substream
!= NULL
, return -ENXIO
);
93 memset(info
, 0, sizeof(*info
));
94 info
->card
= pcm
->card
->number
;
95 info
->device
= pcm
->device
;
96 info
->stream
= substream
->stream
;
97 info
->subdevice
= substream
->number
;
98 strlcpy(info
->id
, pcm
->id
, sizeof(info
->id
));
99 strlcpy(info
->name
, pcm
->name
, sizeof(info
->name
));
100 info
->dev_class
= pcm
->dev_class
;
101 info
->dev_subclass
= pcm
->dev_subclass
;
102 info
->subdevices_count
= pstr
->substream_count
;
103 info
->subdevices_avail
= pstr
->substream_count
- pstr
->substream_opened
;
104 strlcpy(info
->subname
, substream
->name
, sizeof(info
->subname
));
105 runtime
= substream
->runtime
;
106 /* AB: FIXME!!! This is definitely nonsense */
108 info
->sync
= runtime
->sync
;
109 substream
->ops
->ioctl(substream
, SNDRV_PCM_IOCTL1_INFO
, info
);
114 int snd_pcm_info_user(snd_pcm_substream_t
* substream
, snd_pcm_info_t __user
* _info
)
116 snd_pcm_info_t
*info
;
119 info
= kmalloc(sizeof(*info
), GFP_KERNEL
);
122 err
= snd_pcm_info(substream
, info
);
124 if (copy_to_user(_info
, info
, sizeof(*info
)))
134 #define HW_PARAM(v) [SNDRV_PCM_HW_PARAM_##v] = #v
135 char *snd_pcm_hw_param_names
[] = {
139 HW_PARAM(SAMPLE_BITS
),
140 HW_PARAM(FRAME_BITS
),
143 HW_PARAM(PERIOD_TIME
),
144 HW_PARAM(PERIOD_SIZE
),
145 HW_PARAM(PERIOD_BYTES
),
147 HW_PARAM(BUFFER_TIME
),
148 HW_PARAM(BUFFER_SIZE
),
149 HW_PARAM(BUFFER_BYTES
),
154 int snd_pcm_hw_refine(snd_pcm_substream_t
*substream
,
155 snd_pcm_hw_params_t
*params
)
158 snd_pcm_hardware_t
*hw
;
159 snd_interval_t
*i
= NULL
;
160 snd_mask_t
*m
= NULL
;
161 snd_pcm_hw_constraints_t
*constrs
= &substream
->runtime
->hw_constraints
;
162 unsigned int rstamps
[constrs
->rules_num
];
163 unsigned int vstamps
[SNDRV_PCM_HW_PARAM_LAST_INTERVAL
+ 1];
164 unsigned int stamp
= 2;
168 params
->fifo_size
= 0;
169 if (params
->rmask
& (1 << SNDRV_PCM_HW_PARAM_SAMPLE_BITS
))
171 if (params
->rmask
& (1 << SNDRV_PCM_HW_PARAM_RATE
)) {
172 params
->rate_num
= 0;
173 params
->rate_den
= 0;
176 for (k
= SNDRV_PCM_HW_PARAM_FIRST_MASK
; k
<= SNDRV_PCM_HW_PARAM_LAST_MASK
; k
++) {
177 m
= hw_param_mask(params
, k
);
178 if (snd_mask_empty(m
))
180 if (!(params
->rmask
& (1 << k
)))
183 printk("%s = ", snd_pcm_hw_param_names
[k
]);
184 printk("%04x%04x%04x%04x -> ", m
->bits
[3], m
->bits
[2], m
->bits
[1], m
->bits
[0]);
186 changed
= snd_mask_refine(m
, constrs_mask(constrs
, k
));
188 printk("%04x%04x%04x%04x\n", m
->bits
[3], m
->bits
[2], m
->bits
[1], m
->bits
[0]);
191 params
->cmask
|= 1 << k
;
196 for (k
= SNDRV_PCM_HW_PARAM_FIRST_INTERVAL
; k
<= SNDRV_PCM_HW_PARAM_LAST_INTERVAL
; k
++) {
197 i
= hw_param_interval(params
, k
);
198 if (snd_interval_empty(i
))
200 if (!(params
->rmask
& (1 << k
)))
203 printk("%s = ", snd_pcm_hw_param_names
[k
]);
208 i
->openmin
? '(' : '[', i
->min
,
209 i
->max
, i
->openmax
? ')' : ']');
212 changed
= snd_interval_refine(i
, constrs_interval(constrs
, k
));
217 printk("%c%u %u%c\n",
218 i
->openmin
? '(' : '[', i
->min
,
219 i
->max
, i
->openmax
? ')' : ']');
222 params
->cmask
|= 1 << k
;
227 for (k
= 0; k
< constrs
->rules_num
; k
++)
229 for (k
= 0; k
<= SNDRV_PCM_HW_PARAM_LAST_INTERVAL
; k
++)
230 vstamps
[k
] = (params
->rmask
& (1 << k
)) ? 1 : 0;
233 for (k
= 0; k
< constrs
->rules_num
; k
++) {
234 snd_pcm_hw_rule_t
*r
= &constrs
->rules
[k
];
237 if (r
->cond
&& !(r
->cond
& params
->flags
))
239 for (d
= 0; r
->deps
[d
] >= 0; d
++) {
240 if (vstamps
[r
->deps
[d
]] > rstamps
[k
]) {
248 printk("Rule %d [%p]: ", k
, r
->func
);
250 printk("%s = ", snd_pcm_hw_param_names
[r
->var
]);
251 if (hw_is_mask(r
->var
)) {
252 m
= hw_param_mask(params
, r
->var
);
253 printk("%x", *m
->bits
);
255 i
= hw_param_interval(params
, r
->var
);
260 i
->openmin
? '(' : '[', i
->min
,
261 i
->max
, i
->openmax
? ')' : ']');
265 changed
= r
->func(params
, r
);
269 if (hw_is_mask(r
->var
))
270 printk("%x", *m
->bits
);
276 i
->openmin
? '(' : '[', i
->min
,
277 i
->max
, i
->openmax
? ')' : ']');
283 if (changed
&& r
->var
>= 0) {
284 params
->cmask
|= (1 << r
->var
);
285 vstamps
[r
->var
] = stamp
;
293 if (!params
->msbits
) {
294 i
= hw_param_interval(params
, SNDRV_PCM_HW_PARAM_SAMPLE_BITS
);
295 if (snd_interval_single(i
))
296 params
->msbits
= snd_interval_value(i
);
299 if (!params
->rate_den
) {
300 i
= hw_param_interval(params
, SNDRV_PCM_HW_PARAM_RATE
);
301 if (snd_interval_single(i
)) {
302 params
->rate_num
= snd_interval_value(i
);
303 params
->rate_den
= 1;
307 hw
= &substream
->runtime
->hw
;
309 params
->info
= hw
->info
;
310 if (!params
->fifo_size
)
311 params
->fifo_size
= hw
->fifo_size
;
316 static int snd_pcm_hw_refine_user(snd_pcm_substream_t
* substream
, snd_pcm_hw_params_t __user
* _params
)
318 snd_pcm_hw_params_t
*params
;
321 params
= kmalloc(sizeof(*params
), GFP_KERNEL
);
326 if (copy_from_user(params
, _params
, sizeof(*params
))) {
330 err
= snd_pcm_hw_refine(substream
, params
);
331 if (copy_to_user(_params
, params
, sizeof(*params
))) {
340 int snd_pcm_hw_params(snd_pcm_substream_t
*substream
,
341 snd_pcm_hw_params_t
*params
)
343 snd_pcm_runtime_t
*runtime
;
346 snd_pcm_uframes_t frames
;
348 snd_assert(substream
!= NULL
, return -ENXIO
);
349 runtime
= substream
->runtime
;
350 snd_assert(runtime
!= NULL
, return -ENXIO
);
351 snd_pcm_stream_lock_irq(substream
);
352 switch (runtime
->status
->state
) {
353 case SNDRV_PCM_STATE_OPEN
:
354 case SNDRV_PCM_STATE_SETUP
:
355 case SNDRV_PCM_STATE_PREPARED
:
358 snd_pcm_stream_unlock_irq(substream
);
361 snd_pcm_stream_unlock_irq(substream
);
362 #if defined(CONFIG_SND_PCM_OSS) || defined(CONFIG_SND_PCM_OSS_MODULE)
363 if (!substream
->oss
.oss
)
365 if (atomic_read(&runtime
->mmap_count
))
369 err
= snd_pcm_hw_refine(substream
, params
);
373 err
= snd_pcm_hw_params_choose(substream
, params
);
377 if (substream
->ops
->hw_params
!= NULL
) {
378 err
= substream
->ops
->hw_params(substream
, params
);
383 runtime
->access
= params_access(params
);
384 runtime
->format
= params_format(params
);
385 runtime
->subformat
= params_subformat(params
);
386 runtime
->channels
= params_channels(params
);
387 runtime
->rate
= params_rate(params
);
388 runtime
->period_size
= params_period_size(params
);
389 runtime
->periods
= params_periods(params
);
390 runtime
->buffer_size
= params_buffer_size(params
);
391 runtime
->tick_time
= params_tick_time(params
);
392 runtime
->info
= params
->info
;
393 runtime
->rate_num
= params
->rate_num
;
394 runtime
->rate_den
= params
->rate_den
;
396 bits
= snd_pcm_format_physical_width(runtime
->format
);
397 runtime
->sample_bits
= bits
;
398 bits
*= runtime
->channels
;
399 runtime
->frame_bits
= bits
;
401 while (bits
% 8 != 0) {
405 runtime
->byte_align
= bits
/ 8;
406 runtime
->min_align
= frames
;
408 /* Default sw params */
409 runtime
->tstamp_mode
= SNDRV_PCM_TSTAMP_NONE
;
410 runtime
->period_step
= 1;
411 runtime
->sleep_min
= 0;
412 runtime
->control
->avail_min
= runtime
->period_size
;
413 runtime
->xfer_align
= runtime
->period_size
;
414 runtime
->start_threshold
= 1;
415 runtime
->stop_threshold
= runtime
->buffer_size
;
416 runtime
->silence_threshold
= 0;
417 runtime
->silence_size
= 0;
418 runtime
->boundary
= runtime
->buffer_size
;
419 while (runtime
->boundary
* 2 <= LONG_MAX
- runtime
->buffer_size
)
420 runtime
->boundary
*= 2;
422 snd_pcm_timer_resolution_change(substream
);
423 runtime
->status
->state
= SNDRV_PCM_STATE_SETUP
;
426 /* hardware might be unuseable from this time,
427 so we force application to retry to set
428 the correct hardware parameter settings */
429 runtime
->status
->state
= SNDRV_PCM_STATE_OPEN
;
430 if (substream
->ops
->hw_free
!= NULL
)
431 substream
->ops
->hw_free(substream
);
435 static int snd_pcm_hw_params_user(snd_pcm_substream_t
* substream
, snd_pcm_hw_params_t __user
* _params
)
437 snd_pcm_hw_params_t
*params
;
440 params
= kmalloc(sizeof(*params
), GFP_KERNEL
);
445 if (copy_from_user(params
, _params
, sizeof(*params
))) {
449 err
= snd_pcm_hw_params(substream
, params
);
450 if (copy_to_user(_params
, params
, sizeof(*params
))) {
459 static int snd_pcm_hw_free(snd_pcm_substream_t
* substream
)
461 snd_pcm_runtime_t
*runtime
;
464 snd_assert(substream
!= NULL
, return -ENXIO
);
465 runtime
= substream
->runtime
;
466 snd_assert(runtime
!= NULL
, return -ENXIO
);
467 snd_pcm_stream_lock_irq(substream
);
468 switch (runtime
->status
->state
) {
469 case SNDRV_PCM_STATE_SETUP
:
470 case SNDRV_PCM_STATE_PREPARED
:
473 snd_pcm_stream_unlock_irq(substream
);
476 snd_pcm_stream_unlock_irq(substream
);
477 if (atomic_read(&runtime
->mmap_count
))
479 if (substream
->ops
->hw_free
)
480 result
= substream
->ops
->hw_free(substream
);
481 runtime
->status
->state
= SNDRV_PCM_STATE_OPEN
;
485 static int snd_pcm_sw_params(snd_pcm_substream_t
* substream
, snd_pcm_sw_params_t
*params
)
487 snd_pcm_runtime_t
*runtime
;
489 snd_assert(substream
!= NULL
, return -ENXIO
);
490 runtime
= substream
->runtime
;
491 snd_assert(runtime
!= NULL
, return -ENXIO
);
492 snd_pcm_stream_lock_irq(substream
);
493 if (runtime
->status
->state
== SNDRV_PCM_STATE_OPEN
) {
494 snd_pcm_stream_unlock_irq(substream
);
497 snd_pcm_stream_unlock_irq(substream
);
499 if (params
->tstamp_mode
> SNDRV_PCM_TSTAMP_LAST
)
501 if (params
->avail_min
== 0)
503 if (params
->xfer_align
== 0 ||
504 params
->xfer_align
% runtime
->min_align
!= 0)
506 if (params
->silence_size
>= runtime
->boundary
) {
507 if (params
->silence_threshold
!= 0)
510 if (params
->silence_size
> params
->silence_threshold
)
512 if (params
->silence_threshold
> runtime
->buffer_size
)
515 snd_pcm_stream_lock_irq(substream
);
516 runtime
->tstamp_mode
= params
->tstamp_mode
;
517 runtime
->sleep_min
= params
->sleep_min
;
518 runtime
->period_step
= params
->period_step
;
519 runtime
->control
->avail_min
= params
->avail_min
;
520 runtime
->start_threshold
= params
->start_threshold
;
521 runtime
->stop_threshold
= params
->stop_threshold
;
522 runtime
->silence_threshold
= params
->silence_threshold
;
523 runtime
->silence_size
= params
->silence_size
;
524 runtime
->xfer_align
= params
->xfer_align
;
525 params
->boundary
= runtime
->boundary
;
526 if (snd_pcm_running(substream
)) {
527 if (runtime
->sleep_min
)
528 snd_pcm_tick_prepare(substream
);
530 snd_pcm_tick_set(substream
, 0);
531 if (substream
->stream
== SNDRV_PCM_STREAM_PLAYBACK
&&
532 runtime
->silence_size
> 0)
533 snd_pcm_playback_silence(substream
, ULONG_MAX
);
534 wake_up(&runtime
->sleep
);
536 snd_pcm_stream_unlock_irq(substream
);
540 static int snd_pcm_sw_params_user(snd_pcm_substream_t
* substream
, snd_pcm_sw_params_t __user
* _params
)
542 snd_pcm_sw_params_t params
;
544 if (copy_from_user(¶ms
, _params
, sizeof(params
)))
546 err
= snd_pcm_sw_params(substream
, ¶ms
);
547 if (copy_to_user(_params
, ¶ms
, sizeof(params
)))
552 int snd_pcm_status(snd_pcm_substream_t
*substream
,
553 snd_pcm_status_t
*status
)
555 snd_pcm_runtime_t
*runtime
= substream
->runtime
;
557 snd_pcm_stream_lock_irq(substream
);
558 status
->state
= runtime
->status
->state
;
559 status
->suspended_state
= runtime
->status
->suspended_state
;
560 if (status
->state
== SNDRV_PCM_STATE_OPEN
)
562 status
->trigger_tstamp
= runtime
->trigger_tstamp
;
563 if (snd_pcm_running(substream
)) {
564 snd_pcm_update_hw_ptr(substream
);
565 if (runtime
->tstamp_mode
& SNDRV_PCM_TSTAMP_MMAP
)
566 status
->tstamp
= runtime
->status
->tstamp
;
568 snd_timestamp_now(&status
->tstamp
, runtime
->tstamp_timespec
);
570 snd_timestamp_now(&status
->tstamp
, runtime
->tstamp_timespec
);
571 status
->appl_ptr
= runtime
->control
->appl_ptr
;
572 status
->hw_ptr
= runtime
->status
->hw_ptr
;
573 if (substream
->stream
== SNDRV_PCM_STREAM_PLAYBACK
) {
574 status
->avail
= snd_pcm_playback_avail(runtime
);
575 if (runtime
->status
->state
== SNDRV_PCM_STATE_RUNNING
||
576 runtime
->status
->state
== SNDRV_PCM_STATE_DRAINING
)
577 status
->delay
= runtime
->buffer_size
- status
->avail
;
581 status
->avail
= snd_pcm_capture_avail(runtime
);
582 if (runtime
->status
->state
== SNDRV_PCM_STATE_RUNNING
)
583 status
->delay
= status
->avail
;
587 status
->avail_max
= runtime
->avail_max
;
588 status
->overrange
= runtime
->overrange
;
589 runtime
->avail_max
= 0;
590 runtime
->overrange
= 0;
592 snd_pcm_stream_unlock_irq(substream
);
596 static int snd_pcm_status_user(snd_pcm_substream_t
* substream
, snd_pcm_status_t __user
* _status
)
598 snd_pcm_status_t status
;
599 snd_pcm_runtime_t
*runtime
;
602 snd_assert(substream
!= NULL
, return -ENXIO
);
603 runtime
= substream
->runtime
;
604 memset(&status
, 0, sizeof(status
));
605 res
= snd_pcm_status(substream
, &status
);
608 if (copy_to_user(_status
, &status
, sizeof(status
)))
613 static int snd_pcm_channel_info(snd_pcm_substream_t
* substream
, snd_pcm_channel_info_t
* info
)
615 snd_pcm_runtime_t
*runtime
;
616 unsigned int channel
;
618 snd_assert(substream
!= NULL
, return -ENXIO
);
619 channel
= info
->channel
;
620 runtime
= substream
->runtime
;
621 snd_pcm_stream_lock_irq(substream
);
622 if (runtime
->status
->state
== SNDRV_PCM_STATE_OPEN
) {
623 snd_pcm_stream_unlock_irq(substream
);
626 snd_pcm_stream_unlock_irq(substream
);
627 if (channel
>= runtime
->channels
)
629 memset(info
, 0, sizeof(*info
));
630 info
->channel
= channel
;
631 return substream
->ops
->ioctl(substream
, SNDRV_PCM_IOCTL1_CHANNEL_INFO
, info
);
634 static int snd_pcm_channel_info_user(snd_pcm_substream_t
* substream
, snd_pcm_channel_info_t __user
* _info
)
636 snd_pcm_channel_info_t info
;
639 if (copy_from_user(&info
, _info
, sizeof(info
)))
641 res
= snd_pcm_channel_info(substream
, &info
);
644 if (copy_to_user(_info
, &info
, sizeof(info
)))
649 static void snd_pcm_trigger_tstamp(snd_pcm_substream_t
*substream
)
651 snd_pcm_runtime_t
*runtime
= substream
->runtime
;
652 if (runtime
->trigger_master
== NULL
)
654 if (runtime
->trigger_master
== substream
) {
655 snd_timestamp_now(&runtime
->trigger_tstamp
, runtime
->tstamp_timespec
);
657 snd_pcm_trigger_tstamp(runtime
->trigger_master
);
658 runtime
->trigger_tstamp
= runtime
->trigger_master
->runtime
->trigger_tstamp
;
660 runtime
->trigger_master
= NULL
;
664 int (*pre_action
)(snd_pcm_substream_t
*substream
, int state
);
665 int (*do_action
)(snd_pcm_substream_t
*substream
, int state
);
666 void (*undo_action
)(snd_pcm_substream_t
*substream
, int state
);
667 void (*post_action
)(snd_pcm_substream_t
*substream
, int state
);
671 * this functions is core for handling of linked stream
672 * Note: the stream state might be changed also on failure
673 * Note2: call with calling stream lock + link lock
675 static int snd_pcm_action_group(struct action_ops
*ops
,
676 snd_pcm_substream_t
*substream
,
677 int state
, int do_lock
)
679 struct list_head
*pos
;
680 snd_pcm_substream_t
*s
= NULL
;
681 snd_pcm_substream_t
*s1
;
684 snd_pcm_group_for_each(pos
, substream
) {
685 s
= snd_pcm_group_substream_entry(pos
);
686 if (do_lock
&& s
!= substream
)
687 spin_lock(&s
->self_group
.lock
);
688 res
= ops
->pre_action(s
, state
);
692 snd_pcm_group_for_each(pos
, substream
) {
693 s
= snd_pcm_group_substream_entry(pos
);
694 res
= ops
->do_action(s
, state
);
696 if (ops
->undo_action
) {
697 snd_pcm_group_for_each(pos
, substream
) {
698 s1
= snd_pcm_group_substream_entry(pos
);
699 if (s1
== s
) /* failed stream */
701 ops
->undo_action(s1
, state
);
704 s
= NULL
; /* unlock all */
708 snd_pcm_group_for_each(pos
, substream
) {
709 s
= snd_pcm_group_substream_entry(pos
);
710 ops
->post_action(s
, state
);
715 snd_pcm_group_for_each(pos
, substream
) {
716 s1
= snd_pcm_group_substream_entry(pos
);
718 spin_unlock(&s1
->self_group
.lock
);
719 if (s1
== s
) /* end */
727 * Note: call with stream lock
729 static int snd_pcm_action_single(struct action_ops
*ops
,
730 snd_pcm_substream_t
*substream
,
735 res
= ops
->pre_action(substream
, state
);
738 res
= ops
->do_action(substream
, state
);
740 ops
->post_action(substream
, state
);
741 else if (ops
->undo_action
)
742 ops
->undo_action(substream
, state
);
747 * Note: call with stream lock
749 static int snd_pcm_action(struct action_ops
*ops
,
750 snd_pcm_substream_t
*substream
,
755 if (snd_pcm_stream_linked(substream
)) {
756 if (!spin_trylock(&substream
->group
->lock
)) {
757 spin_unlock(&substream
->self_group
.lock
);
758 spin_lock(&substream
->group
->lock
);
759 spin_lock(&substream
->self_group
.lock
);
761 res
= snd_pcm_action_group(ops
, substream
, state
, 1);
762 spin_unlock(&substream
->group
->lock
);
764 res
= snd_pcm_action_single(ops
, substream
, state
);
770 * Note: don't use any locks before
772 static int snd_pcm_action_lock_irq(struct action_ops
*ops
,
773 snd_pcm_substream_t
*substream
,
778 read_lock_irq(&snd_pcm_link_rwlock
);
779 if (snd_pcm_stream_linked(substream
)) {
780 spin_lock(&substream
->group
->lock
);
781 spin_lock(&substream
->self_group
.lock
);
782 res
= snd_pcm_action_group(ops
, substream
, state
, 1);
783 spin_unlock(&substream
->self_group
.lock
);
784 spin_unlock(&substream
->group
->lock
);
786 spin_lock(&substream
->self_group
.lock
);
787 res
= snd_pcm_action_single(ops
, substream
, state
);
788 spin_unlock(&substream
->self_group
.lock
);
790 read_unlock_irq(&snd_pcm_link_rwlock
);
796 static int snd_pcm_action_nonatomic(struct action_ops
*ops
,
797 snd_pcm_substream_t
*substream
,
802 down_read(&snd_pcm_link_rwsem
);
803 if (snd_pcm_stream_linked(substream
))
804 res
= snd_pcm_action_group(ops
, substream
, state
, 0);
806 res
= snd_pcm_action_single(ops
, substream
, state
);
807 up_read(&snd_pcm_link_rwsem
);
814 static int snd_pcm_pre_start(snd_pcm_substream_t
*substream
, int state
)
816 snd_pcm_runtime_t
*runtime
= substream
->runtime
;
817 if (runtime
->status
->state
!= SNDRV_PCM_STATE_PREPARED
)
819 if (substream
->stream
== SNDRV_PCM_STREAM_PLAYBACK
&&
820 !snd_pcm_playback_data(substream
))
822 runtime
->trigger_master
= substream
;
826 static int snd_pcm_do_start(snd_pcm_substream_t
*substream
, int state
)
828 if (substream
->runtime
->trigger_master
!= substream
)
830 return substream
->ops
->trigger(substream
, SNDRV_PCM_TRIGGER_START
);
833 static void snd_pcm_undo_start(snd_pcm_substream_t
*substream
, int state
)
835 if (substream
->runtime
->trigger_master
== substream
)
836 substream
->ops
->trigger(substream
, SNDRV_PCM_TRIGGER_STOP
);
839 static void snd_pcm_post_start(snd_pcm_substream_t
*substream
, int state
)
841 snd_pcm_runtime_t
*runtime
= substream
->runtime
;
842 snd_pcm_trigger_tstamp(substream
);
843 runtime
->status
->state
= state
;
844 if (substream
->stream
== SNDRV_PCM_STREAM_PLAYBACK
&&
845 runtime
->silence_size
> 0)
846 snd_pcm_playback_silence(substream
, ULONG_MAX
);
847 if (runtime
->sleep_min
)
848 snd_pcm_tick_prepare(substream
);
849 if (substream
->timer
)
850 snd_timer_notify(substream
->timer
, SNDRV_TIMER_EVENT_MSTART
, &runtime
->trigger_tstamp
);
853 static struct action_ops snd_pcm_action_start
= {
854 .pre_action
= snd_pcm_pre_start
,
855 .do_action
= snd_pcm_do_start
,
856 .undo_action
= snd_pcm_undo_start
,
857 .post_action
= snd_pcm_post_start
863 * Start all linked streams.
865 int snd_pcm_start(snd_pcm_substream_t
*substream
)
867 return snd_pcm_action(&snd_pcm_action_start
, substream
, SNDRV_PCM_STATE_RUNNING
);
873 static int snd_pcm_pre_stop(snd_pcm_substream_t
*substream
, int state
)
875 snd_pcm_runtime_t
*runtime
= substream
->runtime
;
876 if (runtime
->status
->state
== SNDRV_PCM_STATE_OPEN
)
878 runtime
->trigger_master
= substream
;
882 static int snd_pcm_do_stop(snd_pcm_substream_t
*substream
, int state
)
884 if (substream
->runtime
->trigger_master
== substream
&&
885 snd_pcm_running(substream
))
886 substream
->ops
->trigger(substream
, SNDRV_PCM_TRIGGER_STOP
);
887 return 0; /* unconditonally stop all substreams */
890 static void snd_pcm_post_stop(snd_pcm_substream_t
*substream
, int state
)
892 snd_pcm_runtime_t
*runtime
= substream
->runtime
;
893 if (runtime
->status
->state
!= state
) {
894 snd_pcm_trigger_tstamp(substream
);
895 if (substream
->timer
)
896 snd_timer_notify(substream
->timer
, SNDRV_TIMER_EVENT_MSTOP
, &runtime
->trigger_tstamp
);
897 runtime
->status
->state
= state
;
898 snd_pcm_tick_set(substream
, 0);
900 wake_up(&runtime
->sleep
);
903 static struct action_ops snd_pcm_action_stop
= {
904 .pre_action
= snd_pcm_pre_stop
,
905 .do_action
= snd_pcm_do_stop
,
906 .post_action
= snd_pcm_post_stop
912 * Try to stop all running streams in the substream group.
913 * The state of each stream is changed to the given value after that unconditionally.
915 int snd_pcm_stop(snd_pcm_substream_t
*substream
, int state
)
917 return snd_pcm_action(&snd_pcm_action_stop
, substream
, state
);
923 * Stop the DMA only when the given stream is playback.
924 * The state is changed to SETUP.
925 * Unlike snd_pcm_stop(), this affects only the given stream.
927 int snd_pcm_drain_done(snd_pcm_substream_t
*substream
)
929 return snd_pcm_action_single(&snd_pcm_action_stop
, substream
, SNDRV_PCM_STATE_SETUP
);
935 static int snd_pcm_pre_pause(snd_pcm_substream_t
*substream
, int push
)
937 snd_pcm_runtime_t
*runtime
= substream
->runtime
;
938 if (!(runtime
->info
& SNDRV_PCM_INFO_PAUSE
))
941 if (runtime
->status
->state
!= SNDRV_PCM_STATE_RUNNING
)
943 } else if (runtime
->status
->state
!= SNDRV_PCM_STATE_PAUSED
)
945 runtime
->trigger_master
= substream
;
949 static int snd_pcm_do_pause(snd_pcm_substream_t
*substream
, int push
)
951 if (substream
->runtime
->trigger_master
!= substream
)
953 return substream
->ops
->trigger(substream
,
954 push
? SNDRV_PCM_TRIGGER_PAUSE_PUSH
:
955 SNDRV_PCM_TRIGGER_PAUSE_RELEASE
);
958 static void snd_pcm_undo_pause(snd_pcm_substream_t
*substream
, int push
)
960 if (substream
->runtime
->trigger_master
== substream
)
961 substream
->ops
->trigger(substream
,
962 push
? SNDRV_PCM_TRIGGER_PAUSE_RELEASE
:
963 SNDRV_PCM_TRIGGER_PAUSE_PUSH
);
966 static void snd_pcm_post_pause(snd_pcm_substream_t
*substream
, int push
)
968 snd_pcm_runtime_t
*runtime
= substream
->runtime
;
969 snd_pcm_trigger_tstamp(substream
);
971 runtime
->status
->state
= SNDRV_PCM_STATE_PAUSED
;
972 if (substream
->timer
)
973 snd_timer_notify(substream
->timer
, SNDRV_TIMER_EVENT_MPAUSE
, &runtime
->trigger_tstamp
);
974 snd_pcm_tick_set(substream
, 0);
975 wake_up(&runtime
->sleep
);
977 runtime
->status
->state
= SNDRV_PCM_STATE_RUNNING
;
978 if (runtime
->sleep_min
)
979 snd_pcm_tick_prepare(substream
);
980 if (substream
->timer
)
981 snd_timer_notify(substream
->timer
, SNDRV_TIMER_EVENT_MCONTINUE
, &runtime
->trigger_tstamp
);
985 static struct action_ops snd_pcm_action_pause
= {
986 .pre_action
= snd_pcm_pre_pause
,
987 .do_action
= snd_pcm_do_pause
,
988 .undo_action
= snd_pcm_undo_pause
,
989 .post_action
= snd_pcm_post_pause
993 * Push/release the pause for all linked streams.
995 static int snd_pcm_pause(snd_pcm_substream_t
*substream
, int push
)
997 return snd_pcm_action(&snd_pcm_action_pause
, substream
, push
);
1003 static int snd_pcm_pre_suspend(snd_pcm_substream_t
*substream
, int state
)
1005 snd_pcm_runtime_t
*runtime
= substream
->runtime
;
1006 if (runtime
->status
->state
== SNDRV_PCM_STATE_SUSPENDED
)
1008 runtime
->trigger_master
= substream
;
1012 static int snd_pcm_do_suspend(snd_pcm_substream_t
*substream
, int state
)
1014 snd_pcm_runtime_t
*runtime
= substream
->runtime
;
1015 if (runtime
->trigger_master
!= substream
)
1017 if (! snd_pcm_running(substream
))
1019 substream
->ops
->trigger(substream
, SNDRV_PCM_TRIGGER_SUSPEND
);
1020 return 0; /* suspend unconditionally */
1023 static void snd_pcm_post_suspend(snd_pcm_substream_t
*substream
, int state
)
1025 snd_pcm_runtime_t
*runtime
= substream
->runtime
;
1026 snd_pcm_trigger_tstamp(substream
);
1027 if (substream
->timer
)
1028 snd_timer_notify(substream
->timer
, SNDRV_TIMER_EVENT_MPAUSE
, &runtime
->trigger_tstamp
);
1029 runtime
->status
->suspended_state
= runtime
->status
->state
;
1030 runtime
->status
->state
= SNDRV_PCM_STATE_SUSPENDED
;
1031 snd_pcm_tick_set(substream
, 0);
1032 wake_up(&runtime
->sleep
);
1035 static struct action_ops snd_pcm_action_suspend
= {
1036 .pre_action
= snd_pcm_pre_suspend
,
1037 .do_action
= snd_pcm_do_suspend
,
1038 .post_action
= snd_pcm_post_suspend
1044 * Trigger SUSPEND to all linked streams.
1045 * After this call, all streams are changed to SUSPENDED state.
1047 int snd_pcm_suspend(snd_pcm_substream_t
*substream
)
1050 unsigned long flags
;
1052 snd_pcm_stream_lock_irqsave(substream
, flags
);
1053 err
= snd_pcm_action(&snd_pcm_action_suspend
, substream
, 0);
1054 snd_pcm_stream_unlock_irqrestore(substream
, flags
);
1059 * snd_pcm_suspend_all
1061 * Trigger SUSPEND to all substreams in the given pcm.
1062 * After this call, all streams are changed to SUSPENDED state.
1064 int snd_pcm_suspend_all(snd_pcm_t
*pcm
)
1066 snd_pcm_substream_t
*substream
;
1067 int stream
, err
= 0;
1069 for (stream
= 0; stream
< 2; stream
++) {
1070 for (substream
= pcm
->streams
[stream
].substream
; substream
; substream
= substream
->next
) {
1071 /* FIXME: the open/close code should lock this as well */
1072 if (substream
->runtime
== NULL
)
1074 err
= snd_pcm_suspend(substream
);
1075 if (err
< 0 && err
!= -EBUSY
)
1084 static int snd_pcm_pre_resume(snd_pcm_substream_t
*substream
, int state
)
1086 snd_pcm_runtime_t
*runtime
= substream
->runtime
;
1087 if (!(runtime
->info
& SNDRV_PCM_INFO_RESUME
))
1089 runtime
->trigger_master
= substream
;
1093 static int snd_pcm_do_resume(snd_pcm_substream_t
*substream
, int state
)
1095 snd_pcm_runtime_t
*runtime
= substream
->runtime
;
1096 if (runtime
->trigger_master
!= substream
)
1098 /* DMA not running previously? */
1099 if (runtime
->status
->suspended_state
!= SNDRV_PCM_STATE_RUNNING
&&
1100 (runtime
->status
->suspended_state
!= SNDRV_PCM_STATE_DRAINING
||
1101 substream
->stream
!= SNDRV_PCM_STREAM_PLAYBACK
))
1103 return substream
->ops
->trigger(substream
, SNDRV_PCM_TRIGGER_RESUME
);
1106 static void snd_pcm_undo_resume(snd_pcm_substream_t
*substream
, int state
)
1108 if (substream
->runtime
->trigger_master
== substream
&&
1109 snd_pcm_running(substream
))
1110 substream
->ops
->trigger(substream
, SNDRV_PCM_TRIGGER_SUSPEND
);
1113 static void snd_pcm_post_resume(snd_pcm_substream_t
*substream
, int state
)
1115 snd_pcm_runtime_t
*runtime
= substream
->runtime
;
1116 snd_pcm_trigger_tstamp(substream
);
1117 if (substream
->timer
)
1118 snd_timer_notify(substream
->timer
, SNDRV_TIMER_EVENT_MCONTINUE
, &runtime
->trigger_tstamp
);
1119 runtime
->status
->state
= runtime
->status
->suspended_state
;
1120 if (runtime
->sleep_min
)
1121 snd_pcm_tick_prepare(substream
);
1124 static struct action_ops snd_pcm_action_resume
= {
1125 .pre_action
= snd_pcm_pre_resume
,
1126 .do_action
= snd_pcm_do_resume
,
1127 .undo_action
= snd_pcm_undo_resume
,
1128 .post_action
= snd_pcm_post_resume
1131 static int snd_pcm_resume(snd_pcm_substream_t
*substream
)
1133 snd_card_t
*card
= substream
->pcm
->card
;
1136 snd_power_lock(card
);
1137 if ((res
= snd_power_wait(card
, SNDRV_CTL_POWER_D0
, substream
->ffile
)) >= 0)
1138 res
= snd_pcm_action_lock_irq(&snd_pcm_action_resume
, substream
, 0);
1139 snd_power_unlock(card
);
1145 static int snd_pcm_resume(snd_pcm_substream_t
*substream
)
1150 #endif /* CONFIG_PM */
1155 * Change the RUNNING stream(s) to XRUN state.
1157 static int snd_pcm_xrun(snd_pcm_substream_t
*substream
)
1159 snd_card_t
*card
= substream
->pcm
->card
;
1160 snd_pcm_runtime_t
*runtime
= substream
->runtime
;
1163 snd_power_lock(card
);
1164 if (runtime
->status
->state
== SNDRV_PCM_STATE_SUSPENDED
) {
1165 result
= snd_power_wait(card
, SNDRV_CTL_POWER_D0
, substream
->ffile
);
1170 snd_pcm_stream_lock_irq(substream
);
1171 switch (runtime
->status
->state
) {
1172 case SNDRV_PCM_STATE_XRUN
:
1173 result
= 0; /* already there */
1175 case SNDRV_PCM_STATE_RUNNING
:
1176 result
= snd_pcm_stop(substream
, SNDRV_PCM_STATE_XRUN
);
1181 snd_pcm_stream_unlock_irq(substream
);
1183 snd_power_unlock(card
);
1190 static int snd_pcm_pre_reset(snd_pcm_substream_t
* substream
, int state
)
1192 snd_pcm_runtime_t
*runtime
= substream
->runtime
;
1193 switch (runtime
->status
->state
) {
1194 case SNDRV_PCM_STATE_RUNNING
:
1195 case SNDRV_PCM_STATE_PREPARED
:
1196 case SNDRV_PCM_STATE_PAUSED
:
1197 case SNDRV_PCM_STATE_SUSPENDED
:
1204 static int snd_pcm_do_reset(snd_pcm_substream_t
* substream
, int state
)
1206 snd_pcm_runtime_t
*runtime
= substream
->runtime
;
1207 int err
= substream
->ops
->ioctl(substream
, SNDRV_PCM_IOCTL1_RESET
, NULL
);
1210 // snd_assert(runtime->status->hw_ptr < runtime->buffer_size, );
1211 runtime
->hw_ptr_base
= 0;
1212 runtime
->hw_ptr_interrupt
= runtime
->status
->hw_ptr
- runtime
->status
->hw_ptr
% runtime
->period_size
;
1213 runtime
->silence_start
= runtime
->status
->hw_ptr
;
1214 runtime
->silence_filled
= 0;
1218 static void snd_pcm_post_reset(snd_pcm_substream_t
* substream
, int state
)
1220 snd_pcm_runtime_t
*runtime
= substream
->runtime
;
1221 runtime
->control
->appl_ptr
= runtime
->status
->hw_ptr
;
1222 if (substream
->stream
== SNDRV_PCM_STREAM_PLAYBACK
&&
1223 runtime
->silence_size
> 0)
1224 snd_pcm_playback_silence(substream
, ULONG_MAX
);
1227 static struct action_ops snd_pcm_action_reset
= {
1228 .pre_action
= snd_pcm_pre_reset
,
1229 .do_action
= snd_pcm_do_reset
,
1230 .post_action
= snd_pcm_post_reset
1233 static int snd_pcm_reset(snd_pcm_substream_t
*substream
)
1235 return snd_pcm_action_nonatomic(&snd_pcm_action_reset
, substream
, 0);
1241 static int snd_pcm_pre_prepare(snd_pcm_substream_t
* substream
, int state
)
1243 snd_pcm_runtime_t
*runtime
= substream
->runtime
;
1244 if (runtime
->status
->state
== SNDRV_PCM_STATE_OPEN
)
1246 if (snd_pcm_running(substream
))
1251 static int snd_pcm_do_prepare(snd_pcm_substream_t
* substream
, int state
)
1254 err
= substream
->ops
->prepare(substream
);
1257 return snd_pcm_do_reset(substream
, 0);
1260 static void snd_pcm_post_prepare(snd_pcm_substream_t
* substream
, int state
)
1262 snd_pcm_runtime_t
*runtime
= substream
->runtime
;
1263 runtime
->control
->appl_ptr
= runtime
->status
->hw_ptr
;
1264 runtime
->status
->state
= SNDRV_PCM_STATE_PREPARED
;
1267 static struct action_ops snd_pcm_action_prepare
= {
1268 .pre_action
= snd_pcm_pre_prepare
,
1269 .do_action
= snd_pcm_do_prepare
,
1270 .post_action
= snd_pcm_post_prepare
1276 int snd_pcm_prepare(snd_pcm_substream_t
*substream
)
1279 snd_card_t
*card
= substream
->pcm
->card
;
1281 snd_power_lock(card
);
1282 if ((res
= snd_power_wait(card
, SNDRV_CTL_POWER_D0
, substream
->ffile
)) >= 0)
1283 res
= snd_pcm_action_nonatomic(&snd_pcm_action_prepare
, substream
, 0);
1284 snd_power_unlock(card
);
1292 static int snd_pcm_pre_drain_init(snd_pcm_substream_t
* substream
, int state
)
1294 if (substream
->ffile
->f_flags
& O_NONBLOCK
)
1296 substream
->runtime
->trigger_master
= substream
;
1300 static int snd_pcm_do_drain_init(snd_pcm_substream_t
* substream
, int state
)
1302 snd_pcm_runtime_t
*runtime
= substream
->runtime
;
1303 if (substream
->stream
== SNDRV_PCM_STREAM_PLAYBACK
) {
1304 switch (runtime
->status
->state
) {
1305 case SNDRV_PCM_STATE_PREPARED
:
1306 /* start playback stream if possible */
1307 if (! snd_pcm_playback_empty(substream
)) {
1308 snd_pcm_do_start(substream
, SNDRV_PCM_STATE_DRAINING
);
1309 snd_pcm_post_start(substream
, SNDRV_PCM_STATE_DRAINING
);
1312 case SNDRV_PCM_STATE_RUNNING
:
1313 runtime
->status
->state
= SNDRV_PCM_STATE_DRAINING
;
1319 /* stop running stream */
1320 if (runtime
->status
->state
== SNDRV_PCM_STATE_RUNNING
) {
1321 int state
= snd_pcm_capture_avail(runtime
) > 0 ?
1322 SNDRV_PCM_STATE_DRAINING
: SNDRV_PCM_STATE_SETUP
;
1323 snd_pcm_do_stop(substream
, state
);
1324 snd_pcm_post_stop(substream
, state
);
1330 static void snd_pcm_post_drain_init(snd_pcm_substream_t
* substream
, int state
)
1334 static struct action_ops snd_pcm_action_drain_init
= {
1335 .pre_action
= snd_pcm_pre_drain_init
,
1336 .do_action
= snd_pcm_do_drain_init
,
1337 .post_action
= snd_pcm_post_drain_init
1341 snd_pcm_substream_t
*substream
;
1343 snd_pcm_uframes_t stop_threshold
;
1346 static int snd_pcm_drop(snd_pcm_substream_t
*substream
);
1349 * Drain the stream(s).
1350 * When the substream is linked, sync until the draining of all playback streams
1352 * After this call, all streams are supposed to be either SETUP or DRAINING
1353 * (capture only) state.
1355 static int snd_pcm_drain(snd_pcm_substream_t
*substream
)
1358 snd_pcm_runtime_t
*runtime
;
1359 struct list_head
*pos
;
1362 struct drain_rec
*drec
, drec_tmp
, *d
;
1364 snd_assert(substream
!= NULL
, return -ENXIO
);
1365 card
= substream
->pcm
->card
;
1366 runtime
= substream
->runtime
;
1368 if (runtime
->status
->state
== SNDRV_PCM_STATE_OPEN
)
1371 down_read(&snd_pcm_link_rwsem
);
1372 snd_power_lock(card
);
1373 if (runtime
->status
->state
== SNDRV_PCM_STATE_SUSPENDED
) {
1374 result
= snd_power_wait(card
, SNDRV_CTL_POWER_D0
, substream
->ffile
);
1379 /* allocate temporary record for drain sync */
1380 if (snd_pcm_stream_linked(substream
)) {
1381 drec
= kmalloc(substream
->group
->count
* sizeof(*drec
), GFP_KERNEL
);
1389 snd_pcm_stream_lock_irq(substream
);
1391 if (runtime
->status
->state
== SNDRV_PCM_STATE_PAUSED
)
1392 snd_pcm_pause(substream
, 0);
1394 /* pre-start/stop - all running streams are changed to DRAINING state */
1395 result
= snd_pcm_action(&snd_pcm_action_drain_init
, substream
, 0);
1399 /* check streams with PLAYBACK & DRAINING */
1401 snd_pcm_group_for_each(pos
, substream
) {
1402 snd_pcm_substream_t
*s
= snd_pcm_group_substream_entry(pos
);
1403 runtime
= s
->runtime
;
1404 if (runtime
->status
->state
!= SNDRV_PCM_STATE_DRAINING
) {
1405 runtime
->status
->state
= SNDRV_PCM_STATE_SETUP
;
1408 if (s
->stream
== SNDRV_PCM_STREAM_PLAYBACK
) {
1409 d
= &drec
[num_drecs
++];
1411 init_waitqueue_entry(&d
->wait
, current
);
1412 add_wait_queue(&runtime
->sleep
, &d
->wait
);
1413 /* stop_threshold fixup to avoid endless loop when
1414 * stop_threshold > buffer_size
1416 d
->stop_threshold
= runtime
->stop_threshold
;
1417 if (runtime
->stop_threshold
> runtime
->buffer_size
)
1418 runtime
->stop_threshold
= runtime
->buffer_size
;
1427 if (signal_pending(current
)) {
1428 result
= -ERESTARTSYS
;
1431 set_current_state(TASK_INTERRUPTIBLE
);
1432 snd_pcm_stream_unlock_irq(substream
);
1433 snd_power_unlock(card
);
1434 tout
= schedule_timeout(10 * HZ
);
1435 snd_power_lock(card
);
1436 snd_pcm_stream_lock_irq(substream
);
1438 if (substream
->runtime
->status
->state
== SNDRV_PCM_STATE_SUSPENDED
)
1441 snd_printd("playback drain error (DMA or IRQ trouble?)\n");
1442 snd_pcm_stop(substream
, SNDRV_PCM_STATE_SETUP
);
1448 for (i
= 0; i
< num_drecs
; i
++) {
1449 runtime
= drec
[i
].substream
->runtime
;
1450 if (runtime
->status
->state
== SNDRV_PCM_STATE_DRAINING
)
1456 for (i
= 0; i
< num_drecs
; i
++) {
1458 runtime
= d
->substream
->runtime
;
1459 remove_wait_queue(&runtime
->sleep
, &d
->wait
);
1460 runtime
->stop_threshold
= d
->stop_threshold
;
1464 snd_pcm_stream_unlock_irq(substream
);
1465 if (drec
!= &drec_tmp
)
1468 snd_power_unlock(card
);
1469 up_read(&snd_pcm_link_rwsem
);
1477 * Immediately put all linked substreams into SETUP state.
1479 static int snd_pcm_drop(snd_pcm_substream_t
*substream
)
1481 snd_pcm_runtime_t
*runtime
;
1485 snd_assert(substream
!= NULL
, return -ENXIO
);
1486 runtime
= substream
->runtime
;
1487 card
= substream
->pcm
->card
;
1489 if (runtime
->status
->state
== SNDRV_PCM_STATE_OPEN
)
1492 snd_power_lock(card
);
1493 if (runtime
->status
->state
== SNDRV_PCM_STATE_SUSPENDED
) {
1494 result
= snd_power_wait(card
, SNDRV_CTL_POWER_D0
, substream
->ffile
);
1499 snd_pcm_stream_lock_irq(substream
);
1501 if (runtime
->status
->state
== SNDRV_PCM_STATE_PAUSED
)
1502 snd_pcm_pause(substream
, 0);
1504 snd_pcm_stop(substream
, SNDRV_PCM_STATE_SETUP
);
1505 /* runtime->control->appl_ptr = runtime->status->hw_ptr; */
1506 snd_pcm_stream_unlock_irq(substream
);
1508 snd_power_unlock(card
);
1513 /* WARNING: Don't forget to fput back the file */
1514 extern int snd_major
;
1515 static struct file
*snd_pcm_file_fd(int fd
)
1518 struct inode
*inode
;
1519 unsigned short minor
;
1523 inode
= file
->f_dentry
->d_inode
;
1524 if (!S_ISCHR(inode
->i_mode
) ||
1525 imajor(inode
) != snd_major
) {
1529 minor
= iminor(inode
);
1531 minor
% SNDRV_MINOR_DEVICES
< SNDRV_MINOR_PCM_PLAYBACK
) {
1541 static int snd_pcm_link(snd_pcm_substream_t
*substream
, int fd
)
1545 snd_pcm_file_t
*pcm_file
;
1546 snd_pcm_substream_t
*substream1
;
1548 file
= snd_pcm_file_fd(fd
);
1551 pcm_file
= file
->private_data
;
1552 substream1
= pcm_file
->substream
;
1553 down_write(&snd_pcm_link_rwsem
);
1554 write_lock_irq(&snd_pcm_link_rwlock
);
1555 if (substream
->runtime
->status
->state
== SNDRV_PCM_STATE_OPEN
||
1556 substream
->runtime
->status
->state
!= substream1
->runtime
->status
->state
) {
1560 if (snd_pcm_stream_linked(substream1
)) {
1564 if (!snd_pcm_stream_linked(substream
)) {
1565 substream
->group
= kmalloc(sizeof(snd_pcm_group_t
), GFP_ATOMIC
);
1566 if (substream
->group
== NULL
) {
1570 spin_lock_init(&substream
->group
->lock
);
1571 INIT_LIST_HEAD(&substream
->group
->substreams
);
1572 list_add_tail(&substream
->link_list
, &substream
->group
->substreams
);
1573 substream
->group
->count
= 1;
1575 list_add_tail(&substream1
->link_list
, &substream
->group
->substreams
);
1576 substream
->group
->count
++;
1577 substream1
->group
= substream
->group
;
1579 write_unlock_irq(&snd_pcm_link_rwlock
);
1580 up_write(&snd_pcm_link_rwsem
);
1585 static void relink_to_local(snd_pcm_substream_t
*substream
)
1587 substream
->group
= &substream
->self_group
;
1588 INIT_LIST_HEAD(&substream
->self_group
.substreams
);
1589 list_add_tail(&substream
->link_list
, &substream
->self_group
.substreams
);
1592 static int snd_pcm_unlink(snd_pcm_substream_t
*substream
)
1594 struct list_head
*pos
;
1597 down_write(&snd_pcm_link_rwsem
);
1598 write_lock_irq(&snd_pcm_link_rwlock
);
1599 if (!snd_pcm_stream_linked(substream
)) {
1603 list_del(&substream
->link_list
);
1604 substream
->group
->count
--;
1605 if (substream
->group
->count
== 1) { /* detach the last stream, too */
1606 snd_pcm_group_for_each(pos
, substream
) {
1607 relink_to_local(snd_pcm_group_substream_entry(pos
));
1610 kfree(substream
->group
);
1612 relink_to_local(substream
);
1614 write_unlock_irq(&snd_pcm_link_rwlock
);
1615 up_write(&snd_pcm_link_rwsem
);
1622 static int snd_pcm_hw_rule_mul(snd_pcm_hw_params_t
*params
,
1623 snd_pcm_hw_rule_t
*rule
)
1626 snd_interval_mul(hw_param_interval_c(params
, rule
->deps
[0]),
1627 hw_param_interval_c(params
, rule
->deps
[1]), &t
);
1628 return snd_interval_refine(hw_param_interval(params
, rule
->var
), &t
);
1631 static int snd_pcm_hw_rule_div(snd_pcm_hw_params_t
*params
,
1632 snd_pcm_hw_rule_t
*rule
)
1635 snd_interval_div(hw_param_interval_c(params
, rule
->deps
[0]),
1636 hw_param_interval_c(params
, rule
->deps
[1]), &t
);
1637 return snd_interval_refine(hw_param_interval(params
, rule
->var
), &t
);
1640 static int snd_pcm_hw_rule_muldivk(snd_pcm_hw_params_t
*params
,
1641 snd_pcm_hw_rule_t
*rule
)
1644 snd_interval_muldivk(hw_param_interval_c(params
, rule
->deps
[0]),
1645 hw_param_interval_c(params
, rule
->deps
[1]),
1646 (unsigned long) rule
->private, &t
);
1647 return snd_interval_refine(hw_param_interval(params
, rule
->var
), &t
);
1650 static int snd_pcm_hw_rule_mulkdiv(snd_pcm_hw_params_t
*params
,
1651 snd_pcm_hw_rule_t
*rule
)
1654 snd_interval_mulkdiv(hw_param_interval_c(params
, rule
->deps
[0]),
1655 (unsigned long) rule
->private,
1656 hw_param_interval_c(params
, rule
->deps
[1]), &t
);
1657 return snd_interval_refine(hw_param_interval(params
, rule
->var
), &t
);
1660 static int snd_pcm_hw_rule_format(snd_pcm_hw_params_t
*params
,
1661 snd_pcm_hw_rule_t
*rule
)
1664 snd_interval_t
*i
= hw_param_interval(params
, rule
->deps
[0]);
1666 snd_mask_t
*mask
= hw_param_mask(params
, SNDRV_PCM_HW_PARAM_FORMAT
);
1668 for (k
= 0; k
<= SNDRV_PCM_FORMAT_LAST
; ++k
) {
1670 if (! snd_mask_test(mask
, k
))
1672 bits
= snd_pcm_format_physical_width(k
);
1674 continue; /* ignore invalid formats */
1675 if ((unsigned)bits
< i
->min
|| (unsigned)bits
> i
->max
)
1676 snd_mask_reset(&m
, k
);
1678 return snd_mask_refine(mask
, &m
);
1681 static int snd_pcm_hw_rule_sample_bits(snd_pcm_hw_params_t
*params
,
1682 snd_pcm_hw_rule_t
*rule
)
1690 for (k
= 0; k
<= SNDRV_PCM_FORMAT_LAST
; ++k
) {
1692 if (! snd_mask_test(hw_param_mask(params
, SNDRV_PCM_HW_PARAM_FORMAT
), k
))
1694 bits
= snd_pcm_format_physical_width(k
);
1696 continue; /* ignore invalid formats */
1697 if (t
.min
> (unsigned)bits
)
1699 if (t
.max
< (unsigned)bits
)
1703 return snd_interval_refine(hw_param_interval(params
, rule
->var
), &t
);
1706 #if SNDRV_PCM_RATE_5512 != 1 << 0 || SNDRV_PCM_RATE_192000 != 1 << 12
1707 #error "Change this table"
1710 static unsigned int rates
[] = { 5512, 8000, 11025, 16000, 22050, 32000, 44100,
1711 48000, 64000, 88200, 96000, 176400, 192000 };
1713 static int snd_pcm_hw_rule_rate(snd_pcm_hw_params_t
*params
,
1714 snd_pcm_hw_rule_t
*rule
)
1716 snd_pcm_hardware_t
*hw
= rule
->private;
1717 return snd_interval_list(hw_param_interval(params
, rule
->var
),
1718 ARRAY_SIZE(rates
), rates
, hw
->rates
);
1721 static int snd_pcm_hw_rule_buffer_bytes_max(snd_pcm_hw_params_t
*params
,
1722 snd_pcm_hw_rule_t
*rule
)
1725 snd_pcm_substream_t
*substream
= rule
->private;
1727 t
.max
= substream
->buffer_bytes_max
;
1731 return snd_interval_refine(hw_param_interval(params
, rule
->var
), &t
);
1734 int snd_pcm_hw_constraints_init(snd_pcm_substream_t
*substream
)
1736 snd_pcm_runtime_t
*runtime
= substream
->runtime
;
1737 snd_pcm_hw_constraints_t
*constrs
= &runtime
->hw_constraints
;
1740 for (k
= SNDRV_PCM_HW_PARAM_FIRST_MASK
; k
<= SNDRV_PCM_HW_PARAM_LAST_MASK
; k
++) {
1741 snd_mask_any(constrs_mask(constrs
, k
));
1744 for (k
= SNDRV_PCM_HW_PARAM_FIRST_INTERVAL
; k
<= SNDRV_PCM_HW_PARAM_LAST_INTERVAL
; k
++) {
1745 snd_interval_any(constrs_interval(constrs
, k
));
1748 snd_interval_setinteger(constrs_interval(constrs
, SNDRV_PCM_HW_PARAM_CHANNELS
));
1749 snd_interval_setinteger(constrs_interval(constrs
, SNDRV_PCM_HW_PARAM_BUFFER_SIZE
));
1750 snd_interval_setinteger(constrs_interval(constrs
, SNDRV_PCM_HW_PARAM_BUFFER_BYTES
));
1751 snd_interval_setinteger(constrs_interval(constrs
, SNDRV_PCM_HW_PARAM_SAMPLE_BITS
));
1752 snd_interval_setinteger(constrs_interval(constrs
, SNDRV_PCM_HW_PARAM_FRAME_BITS
));
1754 err
= snd_pcm_hw_rule_add(runtime
, 0, SNDRV_PCM_HW_PARAM_FORMAT
,
1755 snd_pcm_hw_rule_format
, NULL
,
1756 SNDRV_PCM_HW_PARAM_SAMPLE_BITS
, -1);
1759 err
= snd_pcm_hw_rule_add(runtime
, 0, SNDRV_PCM_HW_PARAM_SAMPLE_BITS
,
1760 snd_pcm_hw_rule_sample_bits
, NULL
,
1761 SNDRV_PCM_HW_PARAM_FORMAT
,
1762 SNDRV_PCM_HW_PARAM_SAMPLE_BITS
, -1);
1765 err
= snd_pcm_hw_rule_add(runtime
, 0, SNDRV_PCM_HW_PARAM_SAMPLE_BITS
,
1766 snd_pcm_hw_rule_div
, NULL
,
1767 SNDRV_PCM_HW_PARAM_FRAME_BITS
, SNDRV_PCM_HW_PARAM_CHANNELS
, -1);
1770 err
= snd_pcm_hw_rule_add(runtime
, 0, SNDRV_PCM_HW_PARAM_FRAME_BITS
,
1771 snd_pcm_hw_rule_mul
, NULL
,
1772 SNDRV_PCM_HW_PARAM_SAMPLE_BITS
, SNDRV_PCM_HW_PARAM_CHANNELS
, -1);
1775 err
= snd_pcm_hw_rule_add(runtime
, 0, SNDRV_PCM_HW_PARAM_FRAME_BITS
,
1776 snd_pcm_hw_rule_mulkdiv
, (void*) 8,
1777 SNDRV_PCM_HW_PARAM_PERIOD_BYTES
, SNDRV_PCM_HW_PARAM_PERIOD_SIZE
, -1);
1780 err
= snd_pcm_hw_rule_add(runtime
, 0, SNDRV_PCM_HW_PARAM_FRAME_BITS
,
1781 snd_pcm_hw_rule_mulkdiv
, (void*) 8,
1782 SNDRV_PCM_HW_PARAM_BUFFER_BYTES
, SNDRV_PCM_HW_PARAM_BUFFER_SIZE
, -1);
1785 err
= snd_pcm_hw_rule_add(runtime
, 0, SNDRV_PCM_HW_PARAM_CHANNELS
,
1786 snd_pcm_hw_rule_div
, NULL
,
1787 SNDRV_PCM_HW_PARAM_FRAME_BITS
, SNDRV_PCM_HW_PARAM_SAMPLE_BITS
, -1);
1790 err
= snd_pcm_hw_rule_add(runtime
, 0, SNDRV_PCM_HW_PARAM_RATE
,
1791 snd_pcm_hw_rule_mulkdiv
, (void*) 1000000,
1792 SNDRV_PCM_HW_PARAM_PERIOD_SIZE
, SNDRV_PCM_HW_PARAM_PERIOD_TIME
, -1);
1795 err
= snd_pcm_hw_rule_add(runtime
, 0, SNDRV_PCM_HW_PARAM_RATE
,
1796 snd_pcm_hw_rule_mulkdiv
, (void*) 1000000,
1797 SNDRV_PCM_HW_PARAM_BUFFER_SIZE
, SNDRV_PCM_HW_PARAM_BUFFER_TIME
, -1);
1800 err
= snd_pcm_hw_rule_add(runtime
, 0, SNDRV_PCM_HW_PARAM_PERIODS
,
1801 snd_pcm_hw_rule_div
, NULL
,
1802 SNDRV_PCM_HW_PARAM_BUFFER_SIZE
, SNDRV_PCM_HW_PARAM_PERIOD_SIZE
, -1);
1805 err
= snd_pcm_hw_rule_add(runtime
, 0, SNDRV_PCM_HW_PARAM_PERIOD_SIZE
,
1806 snd_pcm_hw_rule_div
, NULL
,
1807 SNDRV_PCM_HW_PARAM_BUFFER_SIZE
, SNDRV_PCM_HW_PARAM_PERIODS
, -1);
1810 err
= snd_pcm_hw_rule_add(runtime
, 0, SNDRV_PCM_HW_PARAM_PERIOD_SIZE
,
1811 snd_pcm_hw_rule_mulkdiv
, (void*) 8,
1812 SNDRV_PCM_HW_PARAM_PERIOD_BYTES
, SNDRV_PCM_HW_PARAM_FRAME_BITS
, -1);
1815 err
= snd_pcm_hw_rule_add(runtime
, 0, SNDRV_PCM_HW_PARAM_PERIOD_SIZE
,
1816 snd_pcm_hw_rule_muldivk
, (void*) 1000000,
1817 SNDRV_PCM_HW_PARAM_PERIOD_TIME
, SNDRV_PCM_HW_PARAM_RATE
, -1);
1820 err
= snd_pcm_hw_rule_add(runtime
, 0, SNDRV_PCM_HW_PARAM_BUFFER_SIZE
,
1821 snd_pcm_hw_rule_mul
, NULL
,
1822 SNDRV_PCM_HW_PARAM_PERIOD_SIZE
, SNDRV_PCM_HW_PARAM_PERIODS
, -1);
1825 err
= snd_pcm_hw_rule_add(runtime
, 0, SNDRV_PCM_HW_PARAM_BUFFER_SIZE
,
1826 snd_pcm_hw_rule_mulkdiv
, (void*) 8,
1827 SNDRV_PCM_HW_PARAM_BUFFER_BYTES
, SNDRV_PCM_HW_PARAM_FRAME_BITS
, -1);
1830 err
= snd_pcm_hw_rule_add(runtime
, 0, SNDRV_PCM_HW_PARAM_BUFFER_SIZE
,
1831 snd_pcm_hw_rule_muldivk
, (void*) 1000000,
1832 SNDRV_PCM_HW_PARAM_BUFFER_TIME
, SNDRV_PCM_HW_PARAM_RATE
, -1);
1835 err
= snd_pcm_hw_rule_add(runtime
, 0, SNDRV_PCM_HW_PARAM_PERIOD_BYTES
,
1836 snd_pcm_hw_rule_muldivk
, (void*) 8,
1837 SNDRV_PCM_HW_PARAM_PERIOD_SIZE
, SNDRV_PCM_HW_PARAM_FRAME_BITS
, -1);
1840 err
= snd_pcm_hw_rule_add(runtime
, 0, SNDRV_PCM_HW_PARAM_BUFFER_BYTES
,
1841 snd_pcm_hw_rule_muldivk
, (void*) 8,
1842 SNDRV_PCM_HW_PARAM_BUFFER_SIZE
, SNDRV_PCM_HW_PARAM_FRAME_BITS
, -1);
1845 err
= snd_pcm_hw_rule_add(runtime
, 0, SNDRV_PCM_HW_PARAM_PERIOD_TIME
,
1846 snd_pcm_hw_rule_mulkdiv
, (void*) 1000000,
1847 SNDRV_PCM_HW_PARAM_PERIOD_SIZE
, SNDRV_PCM_HW_PARAM_RATE
, -1);
1850 err
= snd_pcm_hw_rule_add(runtime
, 0, SNDRV_PCM_HW_PARAM_BUFFER_TIME
,
1851 snd_pcm_hw_rule_mulkdiv
, (void*) 1000000,
1852 SNDRV_PCM_HW_PARAM_BUFFER_SIZE
, SNDRV_PCM_HW_PARAM_RATE
, -1);
1858 int snd_pcm_hw_constraints_complete(snd_pcm_substream_t
*substream
)
1860 snd_pcm_runtime_t
*runtime
= substream
->runtime
;
1861 snd_pcm_hardware_t
*hw
= &runtime
->hw
;
1863 unsigned int mask
= 0;
1865 if (hw
->info
& SNDRV_PCM_INFO_INTERLEAVED
)
1866 mask
|= 1 << SNDRV_PCM_ACCESS_RW_INTERLEAVED
;
1867 if (hw
->info
& SNDRV_PCM_INFO_NONINTERLEAVED
)
1868 mask
|= 1 << SNDRV_PCM_ACCESS_RW_NONINTERLEAVED
;
1869 if (hw
->info
& SNDRV_PCM_INFO_MMAP
) {
1870 if (hw
->info
& SNDRV_PCM_INFO_INTERLEAVED
)
1871 mask
|= 1 << SNDRV_PCM_ACCESS_MMAP_INTERLEAVED
;
1872 if (hw
->info
& SNDRV_PCM_INFO_NONINTERLEAVED
)
1873 mask
|= 1 << SNDRV_PCM_ACCESS_MMAP_NONINTERLEAVED
;
1874 if (hw
->info
& SNDRV_PCM_INFO_COMPLEX
)
1875 mask
|= 1 << SNDRV_PCM_ACCESS_MMAP_COMPLEX
;
1877 err
= snd_pcm_hw_constraint_mask(runtime
, SNDRV_PCM_HW_PARAM_ACCESS
, mask
);
1878 snd_assert(err
>= 0, return -EINVAL
);
1880 err
= snd_pcm_hw_constraint_mask64(runtime
, SNDRV_PCM_HW_PARAM_FORMAT
, hw
->formats
);
1881 snd_assert(err
>= 0, return -EINVAL
);
1883 err
= snd_pcm_hw_constraint_mask(runtime
, SNDRV_PCM_HW_PARAM_SUBFORMAT
, 1 << SNDRV_PCM_SUBFORMAT_STD
);
1884 snd_assert(err
>= 0, return -EINVAL
);
1886 err
= snd_pcm_hw_constraint_minmax(runtime
, SNDRV_PCM_HW_PARAM_CHANNELS
,
1887 hw
->channels_min
, hw
->channels_max
);
1888 snd_assert(err
>= 0, return -EINVAL
);
1890 err
= snd_pcm_hw_constraint_minmax(runtime
, SNDRV_PCM_HW_PARAM_RATE
,
1891 hw
->rate_min
, hw
->rate_max
);
1892 snd_assert(err
>= 0, return -EINVAL
);
1894 err
= snd_pcm_hw_constraint_minmax(runtime
, SNDRV_PCM_HW_PARAM_PERIOD_BYTES
,
1895 hw
->period_bytes_min
, hw
->period_bytes_max
);
1896 snd_assert(err
>= 0, return -EINVAL
);
1898 err
= snd_pcm_hw_constraint_minmax(runtime
, SNDRV_PCM_HW_PARAM_PERIODS
,
1899 hw
->periods_min
, hw
->periods_max
);
1900 snd_assert(err
>= 0, return -EINVAL
);
1902 err
= snd_pcm_hw_constraint_minmax(runtime
, SNDRV_PCM_HW_PARAM_BUFFER_BYTES
,
1903 hw
->period_bytes_min
, hw
->buffer_bytes_max
);
1904 snd_assert(err
>= 0, return -EINVAL
);
1906 err
= snd_pcm_hw_rule_add(runtime
, 0, SNDRV_PCM_HW_PARAM_BUFFER_BYTES
,
1907 snd_pcm_hw_rule_buffer_bytes_max
, substream
,
1908 SNDRV_PCM_HW_PARAM_BUFFER_BYTES
, -1);
1913 if (runtime
->dma_bytes
) {
1914 err
= snd_pcm_hw_constraint_minmax(runtime
, SNDRV_PCM_HW_PARAM_BUFFER_BYTES
, 0, runtime
->dma_bytes
);
1915 snd_assert(err
>= 0, return -EINVAL
);
1918 if (!(hw
->rates
& (SNDRV_PCM_RATE_KNOT
| SNDRV_PCM_RATE_CONTINUOUS
))) {
1919 err
= snd_pcm_hw_rule_add(runtime
, 0, SNDRV_PCM_HW_PARAM_RATE
,
1920 snd_pcm_hw_rule_rate
, hw
,
1921 SNDRV_PCM_HW_PARAM_RATE
, -1);
1926 /* FIXME: this belong to lowlevel */
1927 snd_pcm_hw_constraint_minmax(runtime
, SNDRV_PCM_HW_PARAM_TICK_TIME
,
1928 1000000 / HZ
, 1000000 / HZ
);
1929 snd_pcm_hw_constraint_integer(runtime
, SNDRV_PCM_HW_PARAM_PERIOD_SIZE
);
1934 static void snd_pcm_add_file(snd_pcm_str_t
*str
,
1935 snd_pcm_file_t
*pcm_file
)
1937 pcm_file
->next
= str
->files
;
1938 str
->files
= pcm_file
;
1941 static void snd_pcm_remove_file(snd_pcm_str_t
*str
,
1942 snd_pcm_file_t
*pcm_file
)
1944 snd_pcm_file_t
* pcm_file1
;
1945 if (str
->files
== pcm_file
) {
1946 str
->files
= pcm_file
->next
;
1948 pcm_file1
= str
->files
;
1949 while (pcm_file1
&& pcm_file1
->next
!= pcm_file
)
1950 pcm_file1
= pcm_file1
->next
;
1951 if (pcm_file1
!= NULL
)
1952 pcm_file1
->next
= pcm_file
->next
;
1956 static int snd_pcm_release_file(snd_pcm_file_t
* pcm_file
)
1958 snd_pcm_substream_t
*substream
;
1959 snd_pcm_runtime_t
*runtime
;
1960 snd_pcm_str_t
* str
;
1962 snd_assert(pcm_file
!= NULL
, return -ENXIO
);
1963 substream
= pcm_file
->substream
;
1964 snd_assert(substream
!= NULL
, return -ENXIO
);
1965 runtime
= substream
->runtime
;
1966 str
= substream
->pstr
;
1967 snd_pcm_unlink(substream
);
1968 if (substream
->open_flag
) {
1969 if (substream
->ops
->hw_free
!= NULL
)
1970 substream
->ops
->hw_free(substream
);
1971 substream
->ops
->close(substream
);
1972 substream
->open_flag
= 0;
1974 substream
->ffile
= NULL
;
1975 snd_pcm_remove_file(str
, pcm_file
);
1976 snd_pcm_release_substream(substream
);
1981 static int snd_pcm_open_file(struct file
*file
,
1984 snd_pcm_file_t
**rpcm_file
)
1987 snd_pcm_file_t
*pcm_file
;
1988 snd_pcm_substream_t
*substream
;
1991 snd_assert(rpcm_file
!= NULL
, return -EINVAL
);
1994 pcm_file
= kcalloc(1, sizeof(*pcm_file
), GFP_KERNEL
);
1995 if (pcm_file
== NULL
) {
1999 if ((err
= snd_pcm_open_substream(pcm
, stream
, &substream
)) < 0) {
2004 str
= substream
->pstr
;
2005 substream
->file
= pcm_file
;
2006 substream
->no_mmap_ctrl
= 0;
2008 pcm_file
->substream
= substream
;
2010 snd_pcm_add_file(str
, pcm_file
);
2012 err
= snd_pcm_hw_constraints_init(substream
);
2014 snd_printd("snd_pcm_hw_constraints_init failed\n");
2015 snd_pcm_release_file(pcm_file
);
2019 if ((err
= substream
->ops
->open(substream
)) < 0) {
2020 snd_pcm_release_file(pcm_file
);
2023 substream
->open_flag
= 1;
2025 err
= snd_pcm_hw_constraints_complete(substream
);
2027 snd_printd("snd_pcm_hw_constraints_complete failed\n");
2028 substream
->ops
->close(substream
);
2029 snd_pcm_release_file(pcm_file
);
2033 substream
->ffile
= file
;
2035 file
->private_data
= pcm_file
;
2036 *rpcm_file
= pcm_file
;
2040 static int snd_pcm_open(struct inode
*inode
, struct file
*file
)
2042 int cardnum
= SNDRV_MINOR_CARD(iminor(inode
));
2043 int device
= SNDRV_MINOR_DEVICE(iminor(inode
));
2046 snd_pcm_file_t
*pcm_file
;
2049 snd_runtime_check(device
>= SNDRV_MINOR_PCM_PLAYBACK
&& device
< SNDRV_MINOR_DEVICES
, return -ENXIO
);
2050 pcm
= snd_pcm_devices
[(cardnum
* SNDRV_PCM_DEVICES
) + (device
% SNDRV_MINOR_PCMS
)];
2055 err
= snd_card_file_add(pcm
->card
, file
);
2058 if (!try_module_get(pcm
->card
->module
)) {
2062 init_waitqueue_entry(&wait
, current
);
2063 add_wait_queue(&pcm
->open_wait
, &wait
);
2064 down(&pcm
->open_mutex
);
2066 err
= snd_pcm_open_file(file
, pcm
, device
>= SNDRV_MINOR_PCM_CAPTURE
? SNDRV_PCM_STREAM_CAPTURE
: SNDRV_PCM_STREAM_PLAYBACK
, &pcm_file
);
2069 if (err
== -EAGAIN
) {
2070 if (file
->f_flags
& O_NONBLOCK
) {
2076 set_current_state(TASK_INTERRUPTIBLE
);
2077 up(&pcm
->open_mutex
);
2079 down(&pcm
->open_mutex
);
2080 if (signal_pending(current
)) {
2085 remove_wait_queue(&pcm
->open_wait
, &wait
);
2086 up(&pcm
->open_mutex
);
2092 module_put(pcm
->card
->module
);
2094 snd_card_file_remove(pcm
->card
, file
);
2099 static int snd_pcm_release(struct inode
*inode
, struct file
*file
)
2102 snd_pcm_substream_t
*substream
;
2103 snd_pcm_file_t
*pcm_file
;
2105 pcm_file
= file
->private_data
;
2106 substream
= pcm_file
->substream
;
2107 snd_assert(substream
!= NULL
, return -ENXIO
);
2108 snd_assert(!atomic_read(&substream
->runtime
->mmap_count
), );
2109 pcm
= substream
->pcm
;
2110 snd_pcm_drop(substream
);
2111 fasync_helper(-1, file
, 0, &substream
->runtime
->fasync
);
2112 down(&pcm
->open_mutex
);
2113 snd_pcm_release_file(pcm_file
);
2114 up(&pcm
->open_mutex
);
2115 wake_up(&pcm
->open_wait
);
2116 module_put(pcm
->card
->module
);
2117 snd_card_file_remove(pcm
->card
, file
);
2121 static snd_pcm_sframes_t
snd_pcm_playback_rewind(snd_pcm_substream_t
*substream
, snd_pcm_uframes_t frames
)
2123 snd_pcm_runtime_t
*runtime
= substream
->runtime
;
2124 snd_pcm_sframes_t appl_ptr
;
2125 snd_pcm_sframes_t ret
;
2126 snd_pcm_sframes_t hw_avail
;
2131 snd_pcm_stream_lock_irq(substream
);
2132 switch (runtime
->status
->state
) {
2133 case SNDRV_PCM_STATE_PREPARED
:
2135 case SNDRV_PCM_STATE_DRAINING
:
2136 case SNDRV_PCM_STATE_RUNNING
:
2137 if (snd_pcm_update_hw_ptr(substream
) >= 0)
2140 case SNDRV_PCM_STATE_XRUN
:
2148 hw_avail
= snd_pcm_playback_hw_avail(runtime
);
2149 if (hw_avail
<= 0) {
2153 if (frames
> (snd_pcm_uframes_t
)hw_avail
)
2156 frames
-= frames
% runtime
->xfer_align
;
2157 appl_ptr
= runtime
->control
->appl_ptr
- frames
;
2159 appl_ptr
+= runtime
->boundary
;
2160 runtime
->control
->appl_ptr
= appl_ptr
;
2161 if (runtime
->status
->state
== SNDRV_PCM_STATE_RUNNING
&&
2163 snd_pcm_tick_prepare(substream
);
2166 snd_pcm_stream_unlock_irq(substream
);
2170 static snd_pcm_sframes_t
snd_pcm_capture_rewind(snd_pcm_substream_t
*substream
, snd_pcm_uframes_t frames
)
2172 snd_pcm_runtime_t
*runtime
= substream
->runtime
;
2173 snd_pcm_sframes_t appl_ptr
;
2174 snd_pcm_sframes_t ret
;
2175 snd_pcm_sframes_t hw_avail
;
2180 snd_pcm_stream_lock_irq(substream
);
2181 switch (runtime
->status
->state
) {
2182 case SNDRV_PCM_STATE_PREPARED
:
2183 case SNDRV_PCM_STATE_DRAINING
:
2185 case SNDRV_PCM_STATE_RUNNING
:
2186 if (snd_pcm_update_hw_ptr(substream
) >= 0)
2189 case SNDRV_PCM_STATE_XRUN
:
2197 hw_avail
= snd_pcm_capture_hw_avail(runtime
);
2198 if (hw_avail
<= 0) {
2202 if (frames
> (snd_pcm_uframes_t
)hw_avail
)
2205 frames
-= frames
% runtime
->xfer_align
;
2206 appl_ptr
= runtime
->control
->appl_ptr
- frames
;
2208 appl_ptr
+= runtime
->boundary
;
2209 runtime
->control
->appl_ptr
= appl_ptr
;
2210 if (runtime
->status
->state
== SNDRV_PCM_STATE_RUNNING
&&
2212 snd_pcm_tick_prepare(substream
);
2215 snd_pcm_stream_unlock_irq(substream
);
2219 static snd_pcm_sframes_t
snd_pcm_playback_forward(snd_pcm_substream_t
*substream
, snd_pcm_uframes_t frames
)
2221 snd_pcm_runtime_t
*runtime
= substream
->runtime
;
2222 snd_pcm_sframes_t appl_ptr
;
2223 snd_pcm_sframes_t ret
;
2224 snd_pcm_sframes_t avail
;
2229 snd_pcm_stream_lock_irq(substream
);
2230 switch (runtime
->status
->state
) {
2231 case SNDRV_PCM_STATE_PREPARED
:
2232 case SNDRV_PCM_STATE_PAUSED
:
2234 case SNDRV_PCM_STATE_DRAINING
:
2235 case SNDRV_PCM_STATE_RUNNING
:
2236 if (snd_pcm_update_hw_ptr(substream
) >= 0)
2239 case SNDRV_PCM_STATE_XRUN
:
2247 avail
= snd_pcm_playback_avail(runtime
);
2252 if (frames
> (snd_pcm_uframes_t
)avail
)
2255 frames
-= frames
% runtime
->xfer_align
;
2256 appl_ptr
= runtime
->control
->appl_ptr
+ frames
;
2257 if (appl_ptr
>= (snd_pcm_sframes_t
)runtime
->boundary
)
2258 appl_ptr
-= runtime
->boundary
;
2259 runtime
->control
->appl_ptr
= appl_ptr
;
2260 if (runtime
->status
->state
== SNDRV_PCM_STATE_RUNNING
&&
2262 snd_pcm_tick_prepare(substream
);
2265 snd_pcm_stream_unlock_irq(substream
);
2269 static snd_pcm_sframes_t
snd_pcm_capture_forward(snd_pcm_substream_t
*substream
, snd_pcm_uframes_t frames
)
2271 snd_pcm_runtime_t
*runtime
= substream
->runtime
;
2272 snd_pcm_sframes_t appl_ptr
;
2273 snd_pcm_sframes_t ret
;
2274 snd_pcm_sframes_t avail
;
2279 snd_pcm_stream_lock_irq(substream
);
2280 switch (runtime
->status
->state
) {
2281 case SNDRV_PCM_STATE_PREPARED
:
2282 case SNDRV_PCM_STATE_DRAINING
:
2283 case SNDRV_PCM_STATE_PAUSED
:
2285 case SNDRV_PCM_STATE_RUNNING
:
2286 if (snd_pcm_update_hw_ptr(substream
) >= 0)
2289 case SNDRV_PCM_STATE_XRUN
:
2297 avail
= snd_pcm_capture_avail(runtime
);
2302 if (frames
> (snd_pcm_uframes_t
)avail
)
2305 frames
-= frames
% runtime
->xfer_align
;
2306 appl_ptr
= runtime
->control
->appl_ptr
+ frames
;
2307 if (appl_ptr
>= (snd_pcm_sframes_t
)runtime
->boundary
)
2308 appl_ptr
-= runtime
->boundary
;
2309 runtime
->control
->appl_ptr
= appl_ptr
;
2310 if (runtime
->status
->state
== SNDRV_PCM_STATE_RUNNING
&&
2312 snd_pcm_tick_prepare(substream
);
2315 snd_pcm_stream_unlock_irq(substream
);
2319 static int snd_pcm_hwsync(snd_pcm_substream_t
*substream
)
2321 snd_pcm_runtime_t
*runtime
= substream
->runtime
;
2324 snd_pcm_stream_lock_irq(substream
);
2325 switch (runtime
->status
->state
) {
2326 case SNDRV_PCM_STATE_DRAINING
:
2327 if (substream
->stream
== SNDRV_PCM_STREAM_CAPTURE
)
2329 case SNDRV_PCM_STATE_RUNNING
:
2330 if ((err
= snd_pcm_update_hw_ptr(substream
)) < 0)
2333 case SNDRV_PCM_STATE_PREPARED
:
2334 case SNDRV_PCM_STATE_SUSPENDED
:
2337 case SNDRV_PCM_STATE_XRUN
:
2345 snd_pcm_stream_unlock_irq(substream
);
2349 static int snd_pcm_delay(snd_pcm_substream_t
*substream
, snd_pcm_sframes_t __user
*res
)
2351 snd_pcm_runtime_t
*runtime
= substream
->runtime
;
2353 snd_pcm_sframes_t n
= 0;
2355 snd_pcm_stream_lock_irq(substream
);
2356 switch (runtime
->status
->state
) {
2357 case SNDRV_PCM_STATE_DRAINING
:
2358 if (substream
->stream
== SNDRV_PCM_STREAM_CAPTURE
)
2360 case SNDRV_PCM_STATE_RUNNING
:
2361 if ((err
= snd_pcm_update_hw_ptr(substream
)) < 0)
2364 case SNDRV_PCM_STATE_PREPARED
:
2365 case SNDRV_PCM_STATE_SUSPENDED
:
2367 if (substream
->stream
== SNDRV_PCM_STREAM_PLAYBACK
)
2368 n
= snd_pcm_playback_hw_avail(runtime
);
2370 n
= snd_pcm_capture_avail(runtime
);
2372 case SNDRV_PCM_STATE_XRUN
:
2380 snd_pcm_stream_unlock_irq(substream
);
2382 if (put_user(n
, res
))
2387 static int snd_pcm_sync_ptr(snd_pcm_substream_t
*substream
, struct sndrv_pcm_sync_ptr __user
*_sync_ptr
)
2389 snd_pcm_runtime_t
*runtime
= substream
->runtime
;
2390 struct sndrv_pcm_sync_ptr sync_ptr
;
2391 volatile struct sndrv_pcm_mmap_status
*status
;
2392 volatile struct sndrv_pcm_mmap_control
*control
;
2395 memset(&sync_ptr
, 0, sizeof(sync_ptr
));
2396 if (get_user(sync_ptr
.flags
, (unsigned __user
*)&(_sync_ptr
->flags
)))
2398 if (copy_from_user(&sync_ptr
.c
.control
, &(_sync_ptr
->c
.control
), sizeof(struct sndrv_pcm_mmap_control
)))
2400 status
= runtime
->status
;
2401 control
= runtime
->control
;
2402 if (sync_ptr
.flags
& SNDRV_PCM_SYNC_PTR_HWSYNC
) {
2403 err
= snd_pcm_hwsync(substream
);
2407 snd_pcm_stream_lock_irq(substream
);
2408 if (!(sync_ptr
.flags
& SNDRV_PCM_SYNC_PTR_APPL
))
2409 control
->appl_ptr
= sync_ptr
.c
.control
.appl_ptr
;
2411 sync_ptr
.c
.control
.appl_ptr
= control
->appl_ptr
;
2412 if (!(sync_ptr
.flags
& SNDRV_PCM_SYNC_PTR_AVAIL_MIN
))
2413 control
->avail_min
= sync_ptr
.c
.control
.avail_min
;
2415 sync_ptr
.c
.control
.avail_min
= control
->avail_min
;
2416 sync_ptr
.s
.status
.state
= status
->state
;
2417 sync_ptr
.s
.status
.hw_ptr
= status
->hw_ptr
;
2418 sync_ptr
.s
.status
.tstamp
= status
->tstamp
;
2419 sync_ptr
.s
.status
.suspended_state
= status
->suspended_state
;
2420 snd_pcm_stream_unlock_irq(substream
);
2421 if (copy_to_user(_sync_ptr
, &sync_ptr
, sizeof(sync_ptr
)))
2426 static int snd_pcm_playback_ioctl1(snd_pcm_substream_t
*substream
,
2427 unsigned int cmd
, void __user
*arg
);
2428 static int snd_pcm_capture_ioctl1(snd_pcm_substream_t
*substream
,
2429 unsigned int cmd
, void __user
*arg
);
2431 static int snd_pcm_common_ioctl1(snd_pcm_substream_t
*substream
,
2432 unsigned int cmd
, void __user
*arg
)
2434 snd_assert(substream
!= NULL
, return -ENXIO
);
2437 case SNDRV_PCM_IOCTL_PVERSION
:
2438 return put_user(SNDRV_PCM_VERSION
, (int __user
*)arg
) ? -EFAULT
: 0;
2439 case SNDRV_PCM_IOCTL_INFO
:
2440 return snd_pcm_info_user(substream
, arg
);
2441 case SNDRV_PCM_IOCTL_TSTAMP
:
2444 if (get_user(xarg
, (int __user
*)arg
))
2446 substream
->runtime
->tstamp_timespec
= xarg
? 1 : 0;
2449 case SNDRV_PCM_IOCTL_HW_REFINE
:
2450 return snd_pcm_hw_refine_user(substream
, arg
);
2451 case SNDRV_PCM_IOCTL_HW_PARAMS
:
2452 return snd_pcm_hw_params_user(substream
, arg
);
2453 case SNDRV_PCM_IOCTL_HW_FREE
:
2454 return snd_pcm_hw_free(substream
);
2455 case SNDRV_PCM_IOCTL_SW_PARAMS
:
2456 return snd_pcm_sw_params_user(substream
, arg
);
2457 case SNDRV_PCM_IOCTL_STATUS
:
2458 return snd_pcm_status_user(substream
, arg
);
2459 case SNDRV_PCM_IOCTL_CHANNEL_INFO
:
2460 return snd_pcm_channel_info_user(substream
, arg
);
2461 case SNDRV_PCM_IOCTL_PREPARE
:
2462 return snd_pcm_prepare(substream
);
2463 case SNDRV_PCM_IOCTL_RESET
:
2464 return snd_pcm_reset(substream
);
2465 case SNDRV_PCM_IOCTL_START
:
2466 return snd_pcm_action_lock_irq(&snd_pcm_action_start
, substream
, SNDRV_PCM_STATE_RUNNING
);
2467 case SNDRV_PCM_IOCTL_LINK
:
2468 return snd_pcm_link(substream
, (int)(unsigned long) arg
);
2469 case SNDRV_PCM_IOCTL_UNLINK
:
2470 return snd_pcm_unlink(substream
);
2471 case SNDRV_PCM_IOCTL_RESUME
:
2472 return snd_pcm_resume(substream
);
2473 case SNDRV_PCM_IOCTL_XRUN
:
2474 return snd_pcm_xrun(substream
);
2475 case SNDRV_PCM_IOCTL_HWSYNC
:
2476 return snd_pcm_hwsync(substream
);
2477 case SNDRV_PCM_IOCTL_DELAY
:
2478 return snd_pcm_delay(substream
, arg
);
2479 case SNDRV_PCM_IOCTL_SYNC_PTR
:
2480 return snd_pcm_sync_ptr(substream
, arg
);
2481 case SNDRV_PCM_IOCTL_HW_REFINE_OLD
:
2482 return snd_pcm_hw_refine_old_user(substream
, arg
);
2483 case SNDRV_PCM_IOCTL_HW_PARAMS_OLD
:
2484 return snd_pcm_hw_params_old_user(substream
, arg
);
2485 case SNDRV_PCM_IOCTL_DRAIN
:
2486 return snd_pcm_drain(substream
);
2487 case SNDRV_PCM_IOCTL_DROP
:
2488 return snd_pcm_drop(substream
);
2490 snd_printd("unknown ioctl = 0x%x\n", cmd
);
2494 static int snd_pcm_playback_ioctl1(snd_pcm_substream_t
*substream
,
2495 unsigned int cmd
, void __user
*arg
)
2497 snd_assert(substream
!= NULL
, return -ENXIO
);
2498 snd_assert(substream
->stream
== SNDRV_PCM_STREAM_PLAYBACK
, return -EINVAL
);
2500 case SNDRV_PCM_IOCTL_WRITEI_FRAMES
:
2503 snd_xferi_t __user
*_xferi
= arg
;
2504 snd_pcm_runtime_t
*runtime
= substream
->runtime
;
2505 snd_pcm_sframes_t result
;
2506 if (runtime
->status
->state
== SNDRV_PCM_STATE_OPEN
)
2508 if (put_user(0, &_xferi
->result
))
2510 if (copy_from_user(&xferi
, _xferi
, sizeof(xferi
)))
2512 result
= snd_pcm_lib_write(substream
, xferi
.buf
, xferi
.frames
);
2513 __put_user(result
, &_xferi
->result
);
2514 return result
< 0 ? result
: 0;
2516 case SNDRV_PCM_IOCTL_WRITEN_FRAMES
:
2519 snd_xfern_t __user
*_xfern
= arg
;
2520 snd_pcm_runtime_t
*runtime
= substream
->runtime
;
2522 snd_pcm_sframes_t result
;
2523 if (runtime
->status
->state
== SNDRV_PCM_STATE_OPEN
)
2525 if (runtime
->channels
> 128)
2527 if (put_user(0, &_xfern
->result
))
2529 if (copy_from_user(&xfern
, _xfern
, sizeof(xfern
)))
2531 bufs
= kmalloc(sizeof(void *) * runtime
->channels
, GFP_KERNEL
);
2534 if (copy_from_user(bufs
, xfern
.bufs
, sizeof(void *) * runtime
->channels
)) {
2538 result
= snd_pcm_lib_writev(substream
, bufs
, xfern
.frames
);
2540 __put_user(result
, &_xfern
->result
);
2541 return result
< 0 ? result
: 0;
2543 case SNDRV_PCM_IOCTL_REWIND
:
2545 snd_pcm_uframes_t frames
;
2546 snd_pcm_uframes_t __user
*_frames
= arg
;
2547 snd_pcm_sframes_t result
;
2548 if (get_user(frames
, _frames
))
2550 if (put_user(0, _frames
))
2552 result
= snd_pcm_playback_rewind(substream
, frames
);
2553 __put_user(result
, _frames
);
2554 return result
< 0 ? result
: 0;
2556 case SNDRV_PCM_IOCTL_FORWARD
:
2558 snd_pcm_uframes_t frames
;
2559 snd_pcm_uframes_t __user
*_frames
= arg
;
2560 snd_pcm_sframes_t result
;
2561 if (get_user(frames
, _frames
))
2563 if (put_user(0, _frames
))
2565 result
= snd_pcm_playback_forward(substream
, frames
);
2566 __put_user(result
, _frames
);
2567 return result
< 0 ? result
: 0;
2569 case SNDRV_PCM_IOCTL_PAUSE
:
2572 snd_pcm_stream_lock_irq(substream
);
2573 res
= snd_pcm_pause(substream
, (int)(unsigned long)arg
);
2574 snd_pcm_stream_unlock_irq(substream
);
2578 return snd_pcm_common_ioctl1(substream
, cmd
, arg
);
2581 static int snd_pcm_capture_ioctl1(snd_pcm_substream_t
*substream
,
2582 unsigned int cmd
, void __user
*arg
)
2584 snd_assert(substream
!= NULL
, return -ENXIO
);
2585 snd_assert(substream
->stream
== SNDRV_PCM_STREAM_CAPTURE
, return -EINVAL
);
2587 case SNDRV_PCM_IOCTL_READI_FRAMES
:
2590 snd_xferi_t __user
*_xferi
= arg
;
2591 snd_pcm_runtime_t
*runtime
= substream
->runtime
;
2592 snd_pcm_sframes_t result
;
2593 if (runtime
->status
->state
== SNDRV_PCM_STATE_OPEN
)
2595 if (put_user(0, &_xferi
->result
))
2597 if (copy_from_user(&xferi
, _xferi
, sizeof(xferi
)))
2599 result
= snd_pcm_lib_read(substream
, xferi
.buf
, xferi
.frames
);
2600 __put_user(result
, &_xferi
->result
);
2601 return result
< 0 ? result
: 0;
2603 case SNDRV_PCM_IOCTL_READN_FRAMES
:
2606 snd_xfern_t __user
*_xfern
= arg
;
2607 snd_pcm_runtime_t
*runtime
= substream
->runtime
;
2609 snd_pcm_sframes_t result
;
2610 if (runtime
->status
->state
== SNDRV_PCM_STATE_OPEN
)
2612 if (runtime
->channels
> 128)
2614 if (put_user(0, &_xfern
->result
))
2616 if (copy_from_user(&xfern
, _xfern
, sizeof(xfern
)))
2618 bufs
= kmalloc(sizeof(void *) * runtime
->channels
, GFP_KERNEL
);
2621 if (copy_from_user(bufs
, xfern
.bufs
, sizeof(void *) * runtime
->channels
)) {
2625 result
= snd_pcm_lib_readv(substream
, bufs
, xfern
.frames
);
2627 __put_user(result
, &_xfern
->result
);
2628 return result
< 0 ? result
: 0;
2630 case SNDRV_PCM_IOCTL_REWIND
:
2632 snd_pcm_uframes_t frames
;
2633 snd_pcm_uframes_t __user
*_frames
= arg
;
2634 snd_pcm_sframes_t result
;
2635 if (get_user(frames
, _frames
))
2637 if (put_user(0, _frames
))
2639 result
= snd_pcm_capture_rewind(substream
, frames
);
2640 __put_user(result
, _frames
);
2641 return result
< 0 ? result
: 0;
2643 case SNDRV_PCM_IOCTL_FORWARD
:
2645 snd_pcm_uframes_t frames
;
2646 snd_pcm_uframes_t __user
*_frames
= arg
;
2647 snd_pcm_sframes_t result
;
2648 if (get_user(frames
, _frames
))
2650 if (put_user(0, _frames
))
2652 result
= snd_pcm_capture_forward(substream
, frames
);
2653 __put_user(result
, _frames
);
2654 return result
< 0 ? result
: 0;
2657 return snd_pcm_common_ioctl1(substream
, cmd
, arg
);
2660 static long snd_pcm_playback_ioctl(struct file
*file
, unsigned int cmd
, unsigned long arg
)
2662 snd_pcm_file_t
*pcm_file
;
2664 pcm_file
= file
->private_data
;
2666 if (((cmd
>> 8) & 0xff) != 'A')
2669 return snd_pcm_playback_ioctl1(pcm_file
->substream
, cmd
, (void __user
*)arg
);
2672 static long snd_pcm_capture_ioctl(struct file
*file
, unsigned int cmd
, unsigned long arg
)
2674 snd_pcm_file_t
*pcm_file
;
2676 pcm_file
= file
->private_data
;
2678 if (((cmd
>> 8) & 0xff) != 'A')
2681 return snd_pcm_capture_ioctl1(pcm_file
->substream
, cmd
, (void __user
*)arg
);
2684 int snd_pcm_kernel_playback_ioctl(snd_pcm_substream_t
*substream
,
2685 unsigned int cmd
, void *arg
)
2690 fs
= snd_enter_user();
2691 result
= snd_pcm_playback_ioctl1(substream
, cmd
, (void __user
*)arg
);
2696 int snd_pcm_kernel_capture_ioctl(snd_pcm_substream_t
*substream
,
2697 unsigned int cmd
, void *arg
)
2702 fs
= snd_enter_user();
2703 result
= snd_pcm_capture_ioctl1(substream
, cmd
, (void __user
*)arg
);
2708 int snd_pcm_kernel_ioctl(snd_pcm_substream_t
*substream
,
2709 unsigned int cmd
, void *arg
)
2711 switch (substream
->stream
) {
2712 case SNDRV_PCM_STREAM_PLAYBACK
:
2713 return snd_pcm_kernel_playback_ioctl(substream
, cmd
, arg
);
2714 case SNDRV_PCM_STREAM_CAPTURE
:
2715 return snd_pcm_kernel_capture_ioctl(substream
, cmd
, arg
);
2721 static ssize_t
snd_pcm_read(struct file
*file
, char __user
*buf
, size_t count
, loff_t
* offset
)
2723 snd_pcm_file_t
*pcm_file
;
2724 snd_pcm_substream_t
*substream
;
2725 snd_pcm_runtime_t
*runtime
;
2726 snd_pcm_sframes_t result
;
2728 pcm_file
= file
->private_data
;
2729 substream
= pcm_file
->substream
;
2730 snd_assert(substream
!= NULL
, return -ENXIO
);
2731 runtime
= substream
->runtime
;
2732 if (runtime
->status
->state
== SNDRV_PCM_STATE_OPEN
)
2734 if (!frame_aligned(runtime
, count
))
2736 count
= bytes_to_frames(runtime
, count
);
2737 result
= snd_pcm_lib_read(substream
, buf
, count
);
2739 result
= frames_to_bytes(runtime
, result
);
2743 static ssize_t
snd_pcm_write(struct file
*file
, const char __user
*buf
, size_t count
, loff_t
* offset
)
2745 snd_pcm_file_t
*pcm_file
;
2746 snd_pcm_substream_t
*substream
;
2747 snd_pcm_runtime_t
*runtime
;
2748 snd_pcm_sframes_t result
;
2750 pcm_file
= file
->private_data
;
2751 substream
= pcm_file
->substream
;
2752 snd_assert(substream
!= NULL
, result
= -ENXIO
; goto end
);
2753 runtime
= substream
->runtime
;
2754 if (runtime
->status
->state
== SNDRV_PCM_STATE_OPEN
) {
2758 if (!frame_aligned(runtime
, count
)) {
2762 count
= bytes_to_frames(runtime
, count
);
2763 result
= snd_pcm_lib_write(substream
, buf
, count
);
2765 result
= frames_to_bytes(runtime
, result
);
2770 static ssize_t
snd_pcm_readv(struct file
*file
, const struct iovec
*_vector
,
2771 unsigned long count
, loff_t
* offset
)
2774 snd_pcm_file_t
*pcm_file
;
2775 snd_pcm_substream_t
*substream
;
2776 snd_pcm_runtime_t
*runtime
;
2777 snd_pcm_sframes_t result
;
2780 snd_pcm_uframes_t frames
;
2782 pcm_file
= file
->private_data
;
2783 substream
= pcm_file
->substream
;
2784 snd_assert(substream
!= NULL
, return -ENXIO
);
2785 runtime
= substream
->runtime
;
2786 if (runtime
->status
->state
== SNDRV_PCM_STATE_OPEN
)
2788 if (count
> 1024 || count
!= runtime
->channels
)
2790 if (!frame_aligned(runtime
, _vector
->iov_len
))
2792 frames
= bytes_to_samples(runtime
, _vector
->iov_len
);
2793 bufs
= kmalloc(sizeof(void *) * count
, GFP_KERNEL
);
2796 for (i
= 0; i
< count
; ++i
)
2797 bufs
[i
] = _vector
[i
].iov_base
;
2798 result
= snd_pcm_lib_readv(substream
, bufs
, frames
);
2800 result
= frames_to_bytes(runtime
, result
);
2805 static ssize_t
snd_pcm_writev(struct file
*file
, const struct iovec
*_vector
,
2806 unsigned long count
, loff_t
* offset
)
2808 snd_pcm_file_t
*pcm_file
;
2809 snd_pcm_substream_t
*substream
;
2810 snd_pcm_runtime_t
*runtime
;
2811 snd_pcm_sframes_t result
;
2814 snd_pcm_uframes_t frames
;
2816 pcm_file
= file
->private_data
;
2817 substream
= pcm_file
->substream
;
2818 snd_assert(substream
!= NULL
, result
= -ENXIO
; goto end
);
2819 runtime
= substream
->runtime
;
2820 if (runtime
->status
->state
== SNDRV_PCM_STATE_OPEN
) {
2824 if (count
> 128 || count
!= runtime
->channels
||
2825 !frame_aligned(runtime
, _vector
->iov_len
)) {
2829 frames
= bytes_to_samples(runtime
, _vector
->iov_len
);
2830 bufs
= kmalloc(sizeof(void *) * count
, GFP_KERNEL
);
2833 for (i
= 0; i
< count
; ++i
)
2834 bufs
[i
] = _vector
[i
].iov_base
;
2835 result
= snd_pcm_lib_writev(substream
, bufs
, frames
);
2837 result
= frames_to_bytes(runtime
, result
);
2843 static unsigned int snd_pcm_playback_poll(struct file
*file
, poll_table
* wait
)
2845 snd_pcm_file_t
*pcm_file
;
2846 snd_pcm_substream_t
*substream
;
2847 snd_pcm_runtime_t
*runtime
;
2849 snd_pcm_uframes_t avail
;
2851 pcm_file
= file
->private_data
;
2853 substream
= pcm_file
->substream
;
2854 snd_assert(substream
!= NULL
, return -ENXIO
);
2855 runtime
= substream
->runtime
;
2857 poll_wait(file
, &runtime
->sleep
, wait
);
2859 snd_pcm_stream_lock_irq(substream
);
2860 avail
= snd_pcm_playback_avail(runtime
);
2861 switch (runtime
->status
->state
) {
2862 case SNDRV_PCM_STATE_RUNNING
:
2863 case SNDRV_PCM_STATE_PREPARED
:
2864 case SNDRV_PCM_STATE_PAUSED
:
2865 if (avail
>= runtime
->control
->avail_min
) {
2866 mask
= POLLOUT
| POLLWRNORM
;
2870 case SNDRV_PCM_STATE_DRAINING
:
2874 mask
= POLLOUT
| POLLWRNORM
| POLLERR
;
2877 snd_pcm_stream_unlock_irq(substream
);
2881 static unsigned int snd_pcm_capture_poll(struct file
*file
, poll_table
* wait
)
2883 snd_pcm_file_t
*pcm_file
;
2884 snd_pcm_substream_t
*substream
;
2885 snd_pcm_runtime_t
*runtime
;
2887 snd_pcm_uframes_t avail
;
2889 pcm_file
= file
->private_data
;
2891 substream
= pcm_file
->substream
;
2892 snd_assert(substream
!= NULL
, return -ENXIO
);
2893 runtime
= substream
->runtime
;
2895 poll_wait(file
, &runtime
->sleep
, wait
);
2897 snd_pcm_stream_lock_irq(substream
);
2898 avail
= snd_pcm_capture_avail(runtime
);
2899 switch (runtime
->status
->state
) {
2900 case SNDRV_PCM_STATE_RUNNING
:
2901 case SNDRV_PCM_STATE_PREPARED
:
2902 case SNDRV_PCM_STATE_PAUSED
:
2903 if (avail
>= runtime
->control
->avail_min
) {
2904 mask
= POLLIN
| POLLRDNORM
;
2909 case SNDRV_PCM_STATE_DRAINING
:
2911 mask
= POLLIN
| POLLRDNORM
;
2916 mask
= POLLIN
| POLLRDNORM
| POLLERR
;
2919 snd_pcm_stream_unlock_irq(substream
);
2928 * Only on coherent architectures, we can mmap the status and the control records
2929 * for effcient data transfer. On others, we have to use HWSYNC ioctl...
2931 #if defined(CONFIG_X86) || defined(CONFIG_PPC) || defined(CONFIG_ALPHA)
2933 * mmap status record
2935 static struct page
* snd_pcm_mmap_status_nopage(struct vm_area_struct
*area
, unsigned long address
, int *type
)
2937 snd_pcm_substream_t
*substream
= (snd_pcm_substream_t
*)area
->vm_private_data
;
2938 snd_pcm_runtime_t
*runtime
;
2941 if (substream
== NULL
)
2943 runtime
= substream
->runtime
;
2944 page
= virt_to_page(runtime
->status
);
2945 if (!PageReserved(page
))
2948 *type
= VM_FAULT_MINOR
;
2952 static struct vm_operations_struct snd_pcm_vm_ops_status
=
2954 .nopage
= snd_pcm_mmap_status_nopage
,
2957 static int snd_pcm_mmap_status(snd_pcm_substream_t
*substream
, struct file
*file
,
2958 struct vm_area_struct
*area
)
2960 snd_pcm_runtime_t
*runtime
;
2962 if (!(area
->vm_flags
& VM_READ
))
2964 runtime
= substream
->runtime
;
2965 snd_assert(runtime
!= NULL
, return -EAGAIN
);
2966 size
= area
->vm_end
- area
->vm_start
;
2967 if (size
!= PAGE_ALIGN(sizeof(snd_pcm_mmap_status_t
)))
2969 area
->vm_ops
= &snd_pcm_vm_ops_status
;
2970 area
->vm_private_data
= substream
;
2971 area
->vm_flags
|= VM_RESERVED
;
2976 * mmap control record
2978 static struct page
* snd_pcm_mmap_control_nopage(struct vm_area_struct
*area
, unsigned long address
, int *type
)
2980 snd_pcm_substream_t
*substream
= (snd_pcm_substream_t
*)area
->vm_private_data
;
2981 snd_pcm_runtime_t
*runtime
;
2984 if (substream
== NULL
)
2986 runtime
= substream
->runtime
;
2987 page
= virt_to_page(runtime
->control
);
2988 if (!PageReserved(page
))
2991 *type
= VM_FAULT_MINOR
;
2995 static struct vm_operations_struct snd_pcm_vm_ops_control
=
2997 .nopage
= snd_pcm_mmap_control_nopage
,
3000 static int snd_pcm_mmap_control(snd_pcm_substream_t
*substream
, struct file
*file
,
3001 struct vm_area_struct
*area
)
3003 snd_pcm_runtime_t
*runtime
;
3005 if (!(area
->vm_flags
& VM_READ
))
3007 runtime
= substream
->runtime
;
3008 snd_assert(runtime
!= NULL
, return -EAGAIN
);
3009 size
= area
->vm_end
- area
->vm_start
;
3010 if (size
!= PAGE_ALIGN(sizeof(snd_pcm_mmap_control_t
)))
3012 area
->vm_ops
= &snd_pcm_vm_ops_control
;
3013 area
->vm_private_data
= substream
;
3014 area
->vm_flags
|= VM_RESERVED
;
3017 #else /* ! coherent mmap */
3019 * don't support mmap for status and control records.
3021 static int snd_pcm_mmap_status(snd_pcm_substream_t
*substream
, struct file
*file
,
3022 struct vm_area_struct
*area
)
3026 static int snd_pcm_mmap_control(snd_pcm_substream_t
*substream
, struct file
*file
,
3027 struct vm_area_struct
*area
)
3031 #endif /* coherent mmap */
3034 * nopage callback for mmapping a RAM page
3036 static struct page
*snd_pcm_mmap_data_nopage(struct vm_area_struct
*area
, unsigned long address
, int *type
)
3038 snd_pcm_substream_t
*substream
= (snd_pcm_substream_t
*)area
->vm_private_data
;
3039 snd_pcm_runtime_t
*runtime
;
3040 unsigned long offset
;
3045 if (substream
== NULL
)
3047 runtime
= substream
->runtime
;
3048 offset
= area
->vm_pgoff
<< PAGE_SHIFT
;
3049 offset
+= address
- area
->vm_start
;
3050 snd_assert((offset
% PAGE_SIZE
) == 0, return NOPAGE_OOM
);
3051 dma_bytes
= PAGE_ALIGN(runtime
->dma_bytes
);
3052 if (offset
> dma_bytes
- PAGE_SIZE
)
3053 return NOPAGE_SIGBUS
;
3054 if (substream
->ops
->page
) {
3055 page
= substream
->ops
->page(substream
, offset
);
3059 vaddr
= runtime
->dma_area
+ offset
;
3060 page
= virt_to_page(vaddr
);
3062 if (!PageReserved(page
))
3065 *type
= VM_FAULT_MINOR
;
3069 static struct vm_operations_struct snd_pcm_vm_ops_data
=
3071 .open
= snd_pcm_mmap_data_open
,
3072 .close
= snd_pcm_mmap_data_close
,
3073 .nopage
= snd_pcm_mmap_data_nopage
,
3077 * mmap the DMA buffer on RAM
3079 static int snd_pcm_default_mmap(snd_pcm_substream_t
*substream
, struct vm_area_struct
*area
)
3081 area
->vm_ops
= &snd_pcm_vm_ops_data
;
3082 area
->vm_private_data
= substream
;
3083 area
->vm_flags
|= VM_RESERVED
;
3084 atomic_inc(&substream
->runtime
->mmap_count
);
3089 * mmap the DMA buffer on I/O memory area
3091 #if SNDRV_PCM_INFO_MMAP_IOMEM
3092 static struct vm_operations_struct snd_pcm_vm_ops_data_mmio
=
3094 .open
= snd_pcm_mmap_data_open
,
3095 .close
= snd_pcm_mmap_data_close
,
3098 int snd_pcm_lib_mmap_iomem(snd_pcm_substream_t
*substream
, struct vm_area_struct
*area
)
3101 unsigned long offset
;
3103 #ifdef pgprot_noncached
3104 area
->vm_page_prot
= pgprot_noncached(area
->vm_page_prot
);
3106 area
->vm_ops
= &snd_pcm_vm_ops_data_mmio
;
3107 area
->vm_private_data
= substream
;
3108 area
->vm_flags
|= VM_IO
;
3109 size
= area
->vm_end
- area
->vm_start
;
3110 offset
= area
->vm_pgoff
<< PAGE_SHIFT
;
3111 if (io_remap_pfn_range(area
, area
->vm_start
,
3112 (substream
->runtime
->dma_addr
+ offset
) >> PAGE_SHIFT
,
3113 size
, area
->vm_page_prot
))
3115 atomic_inc(&substream
->runtime
->mmap_count
);
3118 #endif /* SNDRV_PCM_INFO_MMAP */
3123 int snd_pcm_mmap_data(snd_pcm_substream_t
*substream
, struct file
*file
,
3124 struct vm_area_struct
*area
)
3126 snd_pcm_runtime_t
*runtime
;
3128 unsigned long offset
;
3131 if (substream
->stream
== SNDRV_PCM_STREAM_PLAYBACK
) {
3132 if (!(area
->vm_flags
& (VM_WRITE
|VM_READ
)))
3135 if (!(area
->vm_flags
& VM_READ
))
3138 runtime
= substream
->runtime
;
3139 snd_assert(runtime
!= NULL
, return -EAGAIN
);
3140 if (runtime
->status
->state
== SNDRV_PCM_STATE_OPEN
)
3142 if (!(runtime
->info
& SNDRV_PCM_INFO_MMAP
))
3144 if (runtime
->access
== SNDRV_PCM_ACCESS_RW_INTERLEAVED
||
3145 runtime
->access
== SNDRV_PCM_ACCESS_RW_NONINTERLEAVED
)
3147 size
= area
->vm_end
- area
->vm_start
;
3148 offset
= area
->vm_pgoff
<< PAGE_SHIFT
;
3149 dma_bytes
= PAGE_ALIGN(runtime
->dma_bytes
);
3150 if ((size_t)size
> dma_bytes
)
3152 if (offset
> dma_bytes
- size
)
3155 if (substream
->ops
->mmap
)
3156 return substream
->ops
->mmap(substream
, area
);
3158 return snd_pcm_default_mmap(substream
, area
);
3161 static int snd_pcm_mmap(struct file
*file
, struct vm_area_struct
*area
)
3163 snd_pcm_file_t
* pcm_file
;
3164 snd_pcm_substream_t
*substream
;
3165 unsigned long offset
;
3167 pcm_file
= file
->private_data
;
3168 substream
= pcm_file
->substream
;
3169 snd_assert(substream
!= NULL
, return -ENXIO
);
3171 offset
= area
->vm_pgoff
<< PAGE_SHIFT
;
3173 case SNDRV_PCM_MMAP_OFFSET_STATUS
:
3174 if (substream
->no_mmap_ctrl
)
3176 return snd_pcm_mmap_status(substream
, file
, area
);
3177 case SNDRV_PCM_MMAP_OFFSET_CONTROL
:
3178 if (substream
->no_mmap_ctrl
)
3180 return snd_pcm_mmap_control(substream
, file
, area
);
3182 return snd_pcm_mmap_data(substream
, file
, area
);
3187 static int snd_pcm_fasync(int fd
, struct file
* file
, int on
)
3189 snd_pcm_file_t
* pcm_file
;
3190 snd_pcm_substream_t
*substream
;
3191 snd_pcm_runtime_t
*runtime
;
3194 pcm_file
= file
->private_data
;
3195 substream
= pcm_file
->substream
;
3196 snd_assert(substream
!= NULL
, return -ENXIO
);
3197 runtime
= substream
->runtime
;
3199 err
= fasync_helper(fd
, file
, on
, &runtime
->fasync
);
3208 #ifdef CONFIG_COMPAT
3209 #include "pcm_compat.c"
3211 #define snd_pcm_ioctl_compat NULL
3215 * To be removed helpers to keep binary compatibility
3218 #define __OLD_TO_NEW_MASK(x) ((x&7)|((x&0x07fffff8)<<5))
3219 #define __NEW_TO_OLD_MASK(x) ((x&7)|((x&0xffffff00)>>5))
3221 static void snd_pcm_hw_convert_from_old_params(snd_pcm_hw_params_t
*params
, struct sndrv_pcm_hw_params_old
*oparams
)
3225 memset(params
, 0, sizeof(*params
));
3226 params
->flags
= oparams
->flags
;
3227 for (i
= 0; i
< ARRAY_SIZE(oparams
->masks
); i
++)
3228 params
->masks
[i
].bits
[0] = oparams
->masks
[i
];
3229 memcpy(params
->intervals
, oparams
->intervals
, sizeof(oparams
->intervals
));
3230 params
->rmask
= __OLD_TO_NEW_MASK(oparams
->rmask
);
3231 params
->cmask
= __OLD_TO_NEW_MASK(oparams
->cmask
);
3232 params
->info
= oparams
->info
;
3233 params
->msbits
= oparams
->msbits
;
3234 params
->rate_num
= oparams
->rate_num
;
3235 params
->rate_den
= oparams
->rate_den
;
3236 params
->fifo_size
= oparams
->fifo_size
;
3239 static void snd_pcm_hw_convert_to_old_params(struct sndrv_pcm_hw_params_old
*oparams
, snd_pcm_hw_params_t
*params
)
3243 memset(oparams
, 0, sizeof(*oparams
));
3244 oparams
->flags
= params
->flags
;
3245 for (i
= 0; i
< ARRAY_SIZE(oparams
->masks
); i
++)
3246 oparams
->masks
[i
] = params
->masks
[i
].bits
[0];
3247 memcpy(oparams
->intervals
, params
->intervals
, sizeof(oparams
->intervals
));
3248 oparams
->rmask
= __NEW_TO_OLD_MASK(params
->rmask
);
3249 oparams
->cmask
= __NEW_TO_OLD_MASK(params
->cmask
);
3250 oparams
->info
= params
->info
;
3251 oparams
->msbits
= params
->msbits
;
3252 oparams
->rate_num
= params
->rate_num
;
3253 oparams
->rate_den
= params
->rate_den
;
3254 oparams
->fifo_size
= params
->fifo_size
;
3257 static int snd_pcm_hw_refine_old_user(snd_pcm_substream_t
* substream
, struct sndrv_pcm_hw_params_old __user
* _oparams
)
3259 snd_pcm_hw_params_t
*params
;
3260 struct sndrv_pcm_hw_params_old
*oparams
= NULL
;
3263 params
= kmalloc(sizeof(*params
), GFP_KERNEL
);
3268 oparams
= kmalloc(sizeof(*oparams
), GFP_KERNEL
);
3274 if (copy_from_user(oparams
, _oparams
, sizeof(*oparams
))) {
3278 snd_pcm_hw_convert_from_old_params(params
, oparams
);
3279 err
= snd_pcm_hw_refine(substream
, params
);
3280 snd_pcm_hw_convert_to_old_params(oparams
, params
);
3281 if (copy_to_user(_oparams
, oparams
, sizeof(*oparams
))) {
3291 static int snd_pcm_hw_params_old_user(snd_pcm_substream_t
* substream
, struct sndrv_pcm_hw_params_old __user
* _oparams
)
3293 snd_pcm_hw_params_t
*params
;
3294 struct sndrv_pcm_hw_params_old
*oparams
= NULL
;
3297 params
= kmalloc(sizeof(*params
), GFP_KERNEL
);
3302 oparams
= kmalloc(sizeof(*oparams
), GFP_KERNEL
);
3307 if (copy_from_user(oparams
, _oparams
, sizeof(*oparams
))) {
3311 snd_pcm_hw_convert_from_old_params(params
, oparams
);
3312 err
= snd_pcm_hw_params(substream
, params
);
3313 snd_pcm_hw_convert_to_old_params(oparams
, params
);
3314 if (copy_to_user(_oparams
, oparams
, sizeof(*oparams
))) {
3328 static struct file_operations snd_pcm_f_ops_playback
= {
3329 .owner
= THIS_MODULE
,
3330 .write
= snd_pcm_write
,
3331 .writev
= snd_pcm_writev
,
3332 .open
= snd_pcm_open
,
3333 .release
= snd_pcm_release
,
3334 .poll
= snd_pcm_playback_poll
,
3335 .unlocked_ioctl
= snd_pcm_playback_ioctl
,
3336 .compat_ioctl
= snd_pcm_ioctl_compat
,
3337 .mmap
= snd_pcm_mmap
,
3338 .fasync
= snd_pcm_fasync
,
3341 static struct file_operations snd_pcm_f_ops_capture
= {
3342 .owner
= THIS_MODULE
,
3343 .read
= snd_pcm_read
,
3344 .readv
= snd_pcm_readv
,
3345 .open
= snd_pcm_open
,
3346 .release
= snd_pcm_release
,
3347 .poll
= snd_pcm_capture_poll
,
3348 .unlocked_ioctl
= snd_pcm_capture_ioctl
,
3349 .compat_ioctl
= snd_pcm_ioctl_compat
,
3350 .mmap
= snd_pcm_mmap
,
3351 .fasync
= snd_pcm_fasync
,
3354 snd_minor_t snd_pcm_reg
[2] =
3357 .comment
= "digital audio playback",
3358 .f_ops
= &snd_pcm_f_ops_playback
,
3361 .comment
= "digital audio capture",
3362 .f_ops
= &snd_pcm_f_ops_capture
,