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/time.h>
26 #include <linux/latency.h>
27 #include <linux/uio.h>
28 #include <sound/core.h>
29 #include <sound/control.h>
30 #include <sound/info.h>
31 #include <sound/pcm.h>
32 #include <sound/pcm_params.h>
33 #include <sound/timer.h>
34 #include <sound/minors.h>
41 struct snd_pcm_hw_params_old
{
43 unsigned int masks
[SNDRV_PCM_HW_PARAM_SUBFORMAT
-
44 SNDRV_PCM_HW_PARAM_ACCESS
+ 1];
45 struct snd_interval intervals
[SNDRV_PCM_HW_PARAM_TICK_TIME
-
46 SNDRV_PCM_HW_PARAM_SAMPLE_BITS
+ 1];
51 unsigned int rate_num
;
52 unsigned int rate_den
;
53 snd_pcm_uframes_t fifo_size
;
54 unsigned char reserved
[64];
57 #ifdef CONFIG_SND_SUPPORT_OLD_API
58 #define SNDRV_PCM_IOCTL_HW_REFINE_OLD _IOWR('A', 0x10, struct snd_pcm_hw_params_old)
59 #define SNDRV_PCM_IOCTL_HW_PARAMS_OLD _IOWR('A', 0x11, struct snd_pcm_hw_params_old)
61 static int snd_pcm_hw_refine_old_user(struct snd_pcm_substream
*substream
,
62 struct snd_pcm_hw_params_old __user
* _oparams
);
63 static int snd_pcm_hw_params_old_user(struct snd_pcm_substream
*substream
,
64 struct snd_pcm_hw_params_old __user
* _oparams
);
66 static int snd_pcm_open(struct file
*file
, struct snd_pcm
*pcm
, int stream
);
72 DEFINE_RWLOCK(snd_pcm_link_rwlock
);
73 EXPORT_SYMBOL(snd_pcm_link_rwlock
);
75 static DECLARE_RWSEM(snd_pcm_link_rwsem
);
77 static inline mm_segment_t
snd_enter_user(void)
79 mm_segment_t fs
= get_fs();
84 static inline void snd_leave_user(mm_segment_t fs
)
91 int snd_pcm_info(struct snd_pcm_substream
*substream
, struct snd_pcm_info
*info
)
93 struct snd_pcm_runtime
*runtime
;
94 struct snd_pcm
*pcm
= substream
->pcm
;
95 struct snd_pcm_str
*pstr
= substream
->pstr
;
97 snd_assert(substream
!= NULL
, return -ENXIO
);
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 snd_assert(substream
!= NULL
, return -ENXIO
);
373 runtime
= substream
->runtime
;
374 snd_assert(runtime
!= NULL
, return -ENXIO
);
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 remove_acceptable_latency(substream
->latency_id
);
447 if ((usecs
= period_to_usecs(runtime
)) >= 0)
448 set_acceptable_latency(substream
->latency_id
, usecs
);
451 /* hardware might be unuseable from this time,
452 so we force application to retry to set
453 the correct hardware parameter settings */
454 runtime
->status
->state
= SNDRV_PCM_STATE_OPEN
;
455 if (substream
->ops
->hw_free
!= NULL
)
456 substream
->ops
->hw_free(substream
);
460 static int snd_pcm_hw_params_user(struct snd_pcm_substream
*substream
,
461 struct snd_pcm_hw_params __user
* _params
)
463 struct snd_pcm_hw_params
*params
;
466 params
= kmalloc(sizeof(*params
), GFP_KERNEL
);
471 if (copy_from_user(params
, _params
, sizeof(*params
))) {
475 err
= snd_pcm_hw_params(substream
, params
);
476 if (copy_to_user(_params
, params
, sizeof(*params
))) {
485 static int snd_pcm_hw_free(struct snd_pcm_substream
*substream
)
487 struct snd_pcm_runtime
*runtime
;
490 snd_assert(substream
!= NULL
, return -ENXIO
);
491 runtime
= substream
->runtime
;
492 snd_assert(runtime
!= NULL
, return -ENXIO
);
493 snd_pcm_stream_lock_irq(substream
);
494 switch (runtime
->status
->state
) {
495 case SNDRV_PCM_STATE_SETUP
:
496 case SNDRV_PCM_STATE_PREPARED
:
499 snd_pcm_stream_unlock_irq(substream
);
502 snd_pcm_stream_unlock_irq(substream
);
503 if (atomic_read(&substream
->mmap_count
))
505 if (substream
->ops
->hw_free
)
506 result
= substream
->ops
->hw_free(substream
);
507 runtime
->status
->state
= SNDRV_PCM_STATE_OPEN
;
508 remove_acceptable_latency(substream
->latency_id
);
512 static int snd_pcm_sw_params(struct snd_pcm_substream
*substream
,
513 struct snd_pcm_sw_params
*params
)
515 struct snd_pcm_runtime
*runtime
;
517 snd_assert(substream
!= NULL
, return -ENXIO
);
518 runtime
= substream
->runtime
;
519 snd_assert(runtime
!= NULL
, return -ENXIO
);
520 snd_pcm_stream_lock_irq(substream
);
521 if (runtime
->status
->state
== SNDRV_PCM_STATE_OPEN
) {
522 snd_pcm_stream_unlock_irq(substream
);
525 snd_pcm_stream_unlock_irq(substream
);
527 if (params
->tstamp_mode
> SNDRV_PCM_TSTAMP_LAST
)
529 if (params
->avail_min
== 0)
531 if (params
->silence_size
>= runtime
->boundary
) {
532 if (params
->silence_threshold
!= 0)
535 if (params
->silence_size
> params
->silence_threshold
)
537 if (params
->silence_threshold
> runtime
->buffer_size
)
540 snd_pcm_stream_lock_irq(substream
);
541 runtime
->tstamp_mode
= params
->tstamp_mode
;
542 runtime
->period_step
= params
->period_step
;
543 runtime
->control
->avail_min
= params
->avail_min
;
544 runtime
->start_threshold
= params
->start_threshold
;
545 runtime
->stop_threshold
= params
->stop_threshold
;
546 runtime
->silence_threshold
= params
->silence_threshold
;
547 runtime
->silence_size
= params
->silence_size
;
548 params
->boundary
= runtime
->boundary
;
549 if (snd_pcm_running(substream
)) {
550 if (substream
->stream
== SNDRV_PCM_STREAM_PLAYBACK
&&
551 runtime
->silence_size
> 0)
552 snd_pcm_playback_silence(substream
, ULONG_MAX
);
553 wake_up(&runtime
->sleep
);
555 snd_pcm_stream_unlock_irq(substream
);
559 static int snd_pcm_sw_params_user(struct snd_pcm_substream
*substream
,
560 struct snd_pcm_sw_params __user
* _params
)
562 struct snd_pcm_sw_params params
;
564 if (copy_from_user(¶ms
, _params
, sizeof(params
)))
566 err
= snd_pcm_sw_params(substream
, ¶ms
);
567 if (copy_to_user(_params
, ¶ms
, sizeof(params
)))
572 int snd_pcm_status(struct snd_pcm_substream
*substream
,
573 struct snd_pcm_status
*status
)
575 struct snd_pcm_runtime
*runtime
= substream
->runtime
;
577 snd_pcm_stream_lock_irq(substream
);
578 status
->state
= runtime
->status
->state
;
579 status
->suspended_state
= runtime
->status
->suspended_state
;
580 if (status
->state
== SNDRV_PCM_STATE_OPEN
)
582 status
->trigger_tstamp
= runtime
->trigger_tstamp
;
583 if (snd_pcm_running(substream
)) {
584 snd_pcm_update_hw_ptr(substream
);
585 if (runtime
->tstamp_mode
== SNDRV_PCM_TSTAMP_ENABLE
) {
586 status
->tstamp
= runtime
->status
->tstamp
;
590 snd_pcm_gettime(runtime
, &status
->tstamp
);
592 status
->appl_ptr
= runtime
->control
->appl_ptr
;
593 status
->hw_ptr
= runtime
->status
->hw_ptr
;
594 if (substream
->stream
== SNDRV_PCM_STREAM_PLAYBACK
) {
595 status
->avail
= snd_pcm_playback_avail(runtime
);
596 if (runtime
->status
->state
== SNDRV_PCM_STATE_RUNNING
||
597 runtime
->status
->state
== SNDRV_PCM_STATE_DRAINING
)
598 status
->delay
= runtime
->buffer_size
- status
->avail
;
602 status
->avail
= snd_pcm_capture_avail(runtime
);
603 if (runtime
->status
->state
== SNDRV_PCM_STATE_RUNNING
)
604 status
->delay
= status
->avail
;
608 status
->avail_max
= runtime
->avail_max
;
609 status
->overrange
= runtime
->overrange
;
610 runtime
->avail_max
= 0;
611 runtime
->overrange
= 0;
613 snd_pcm_stream_unlock_irq(substream
);
617 static int snd_pcm_status_user(struct snd_pcm_substream
*substream
,
618 struct snd_pcm_status __user
* _status
)
620 struct snd_pcm_status status
;
621 struct snd_pcm_runtime
*runtime
;
624 snd_assert(substream
!= NULL
, return -ENXIO
);
625 runtime
= substream
->runtime
;
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 snd_assert(substream
!= NULL
, return -ENXIO
);
642 channel
= info
->channel
;
643 runtime
= substream
->runtime
;
644 snd_pcm_stream_lock_irq(substream
);
645 if (runtime
->status
->state
== SNDRV_PCM_STATE_OPEN
) {
646 snd_pcm_stream_unlock_irq(substream
);
649 snd_pcm_stream_unlock_irq(substream
);
650 if (channel
>= runtime
->channels
)
652 memset(info
, 0, sizeof(*info
));
653 info
->channel
= channel
;
654 return substream
->ops
->ioctl(substream
, SNDRV_PCM_IOCTL1_CHANNEL_INFO
, info
);
657 static int snd_pcm_channel_info_user(struct snd_pcm_substream
*substream
,
658 struct snd_pcm_channel_info __user
* _info
)
660 struct snd_pcm_channel_info info
;
663 if (copy_from_user(&info
, _info
, sizeof(info
)))
665 res
= snd_pcm_channel_info(substream
, &info
);
668 if (copy_to_user(_info
, &info
, sizeof(info
)))
673 static void snd_pcm_trigger_tstamp(struct snd_pcm_substream
*substream
)
675 struct snd_pcm_runtime
*runtime
= substream
->runtime
;
676 if (runtime
->trigger_master
== NULL
)
678 if (runtime
->trigger_master
== substream
) {
679 snd_pcm_gettime(runtime
, &runtime
->trigger_tstamp
);
681 snd_pcm_trigger_tstamp(runtime
->trigger_master
);
682 runtime
->trigger_tstamp
= runtime
->trigger_master
->runtime
->trigger_tstamp
;
684 runtime
->trigger_master
= NULL
;
688 int (*pre_action
)(struct snd_pcm_substream
*substream
, int state
);
689 int (*do_action
)(struct snd_pcm_substream
*substream
, int state
);
690 void (*undo_action
)(struct snd_pcm_substream
*substream
, int state
);
691 void (*post_action
)(struct snd_pcm_substream
*substream
, int state
);
695 * this functions is core for handling of linked stream
696 * Note: the stream state might be changed also on failure
697 * Note2: call with calling stream lock + link lock
699 static int snd_pcm_action_group(struct action_ops
*ops
,
700 struct snd_pcm_substream
*substream
,
701 int state
, int do_lock
)
703 struct snd_pcm_substream
*s
= NULL
;
704 struct snd_pcm_substream
*s1
;
707 snd_pcm_group_for_each_entry(s
, substream
) {
708 if (do_lock
&& s
!= substream
)
709 spin_lock_nested(&s
->self_group
.lock
,
710 SINGLE_DEPTH_NESTING
);
711 res
= ops
->pre_action(s
, state
);
715 snd_pcm_group_for_each_entry(s
, substream
) {
716 res
= ops
->do_action(s
, state
);
718 if (ops
->undo_action
) {
719 snd_pcm_group_for_each_entry(s1
, substream
) {
720 if (s1
== s
) /* failed stream */
722 ops
->undo_action(s1
, state
);
725 s
= NULL
; /* unlock all */
729 snd_pcm_group_for_each_entry(s
, substream
) {
730 ops
->post_action(s
, state
);
735 snd_pcm_group_for_each_entry(s1
, substream
) {
737 spin_unlock(&s1
->self_group
.lock
);
738 if (s1
== s
) /* end */
746 * Note: call with stream lock
748 static int snd_pcm_action_single(struct action_ops
*ops
,
749 struct snd_pcm_substream
*substream
,
754 res
= ops
->pre_action(substream
, state
);
757 res
= ops
->do_action(substream
, state
);
759 ops
->post_action(substream
, state
);
760 else if (ops
->undo_action
)
761 ops
->undo_action(substream
, state
);
766 * Note: call with stream lock
768 static int snd_pcm_action(struct action_ops
*ops
,
769 struct snd_pcm_substream
*substream
,
774 if (snd_pcm_stream_linked(substream
)) {
775 if (!spin_trylock(&substream
->group
->lock
)) {
776 spin_unlock(&substream
->self_group
.lock
);
777 spin_lock(&substream
->group
->lock
);
778 spin_lock(&substream
->self_group
.lock
);
780 res
= snd_pcm_action_group(ops
, substream
, state
, 1);
781 spin_unlock(&substream
->group
->lock
);
783 res
= snd_pcm_action_single(ops
, substream
, state
);
789 * Note: don't use any locks before
791 static int snd_pcm_action_lock_irq(struct action_ops
*ops
,
792 struct snd_pcm_substream
*substream
,
797 read_lock_irq(&snd_pcm_link_rwlock
);
798 if (snd_pcm_stream_linked(substream
)) {
799 spin_lock(&substream
->group
->lock
);
800 spin_lock(&substream
->self_group
.lock
);
801 res
= snd_pcm_action_group(ops
, substream
, state
, 1);
802 spin_unlock(&substream
->self_group
.lock
);
803 spin_unlock(&substream
->group
->lock
);
805 spin_lock(&substream
->self_group
.lock
);
806 res
= snd_pcm_action_single(ops
, substream
, state
);
807 spin_unlock(&substream
->self_group
.lock
);
809 read_unlock_irq(&snd_pcm_link_rwlock
);
815 static int snd_pcm_action_nonatomic(struct action_ops
*ops
,
816 struct snd_pcm_substream
*substream
,
821 down_read(&snd_pcm_link_rwsem
);
822 if (snd_pcm_stream_linked(substream
))
823 res
= snd_pcm_action_group(ops
, substream
, state
, 0);
825 res
= snd_pcm_action_single(ops
, substream
, state
);
826 up_read(&snd_pcm_link_rwsem
);
833 static int snd_pcm_pre_start(struct snd_pcm_substream
*substream
, int state
)
835 struct snd_pcm_runtime
*runtime
= substream
->runtime
;
836 if (runtime
->status
->state
!= SNDRV_PCM_STATE_PREPARED
)
838 if (substream
->stream
== SNDRV_PCM_STREAM_PLAYBACK
&&
839 !snd_pcm_playback_data(substream
))
841 runtime
->trigger_master
= substream
;
845 static int snd_pcm_do_start(struct snd_pcm_substream
*substream
, int state
)
847 if (substream
->runtime
->trigger_master
!= substream
)
849 return substream
->ops
->trigger(substream
, SNDRV_PCM_TRIGGER_START
);
852 static void snd_pcm_undo_start(struct snd_pcm_substream
*substream
, int state
)
854 if (substream
->runtime
->trigger_master
== substream
)
855 substream
->ops
->trigger(substream
, SNDRV_PCM_TRIGGER_STOP
);
858 static void snd_pcm_post_start(struct snd_pcm_substream
*substream
, int state
)
860 struct snd_pcm_runtime
*runtime
= substream
->runtime
;
861 snd_pcm_trigger_tstamp(substream
);
862 runtime
->status
->state
= state
;
863 if (substream
->stream
== SNDRV_PCM_STREAM_PLAYBACK
&&
864 runtime
->silence_size
> 0)
865 snd_pcm_playback_silence(substream
, ULONG_MAX
);
866 if (substream
->timer
)
867 snd_timer_notify(substream
->timer
, SNDRV_TIMER_EVENT_MSTART
,
868 &runtime
->trigger_tstamp
);
871 static struct action_ops snd_pcm_action_start
= {
872 .pre_action
= snd_pcm_pre_start
,
873 .do_action
= snd_pcm_do_start
,
874 .undo_action
= snd_pcm_undo_start
,
875 .post_action
= snd_pcm_post_start
880 * @substream: the PCM substream instance
882 * Start all linked streams.
884 int snd_pcm_start(struct snd_pcm_substream
*substream
)
886 return snd_pcm_action(&snd_pcm_action_start
, substream
,
887 SNDRV_PCM_STATE_RUNNING
);
893 static int snd_pcm_pre_stop(struct snd_pcm_substream
*substream
, int state
)
895 struct snd_pcm_runtime
*runtime
= substream
->runtime
;
896 if (runtime
->status
->state
== SNDRV_PCM_STATE_OPEN
)
898 runtime
->trigger_master
= substream
;
902 static int snd_pcm_do_stop(struct snd_pcm_substream
*substream
, int state
)
904 if (substream
->runtime
->trigger_master
== substream
&&
905 snd_pcm_running(substream
))
906 substream
->ops
->trigger(substream
, SNDRV_PCM_TRIGGER_STOP
);
907 return 0; /* unconditonally stop all substreams */
910 static void snd_pcm_post_stop(struct snd_pcm_substream
*substream
, int state
)
912 struct snd_pcm_runtime
*runtime
= substream
->runtime
;
913 if (runtime
->status
->state
!= state
) {
914 snd_pcm_trigger_tstamp(substream
);
915 if (substream
->timer
)
916 snd_timer_notify(substream
->timer
, SNDRV_TIMER_EVENT_MSTOP
,
917 &runtime
->trigger_tstamp
);
918 runtime
->status
->state
= state
;
920 wake_up(&runtime
->sleep
);
923 static struct action_ops snd_pcm_action_stop
= {
924 .pre_action
= snd_pcm_pre_stop
,
925 .do_action
= snd_pcm_do_stop
,
926 .post_action
= snd_pcm_post_stop
931 * @substream: the PCM substream instance
932 * @state: PCM state after stopping the stream
934 * Try to stop all running streams in the substream group.
935 * The state of each stream is changed to the given value after that unconditionally.
937 int snd_pcm_stop(struct snd_pcm_substream
*substream
, int state
)
939 return snd_pcm_action(&snd_pcm_action_stop
, substream
, state
);
942 EXPORT_SYMBOL(snd_pcm_stop
);
946 * @substream: the PCM substream
948 * Stop the DMA only when the given stream is playback.
949 * The state is changed to SETUP.
950 * Unlike snd_pcm_stop(), this affects only the given stream.
952 int snd_pcm_drain_done(struct snd_pcm_substream
*substream
)
954 return snd_pcm_action_single(&snd_pcm_action_stop
, substream
,
955 SNDRV_PCM_STATE_SETUP
);
961 static int snd_pcm_pre_pause(struct snd_pcm_substream
*substream
, int push
)
963 struct snd_pcm_runtime
*runtime
= substream
->runtime
;
964 if (!(runtime
->info
& SNDRV_PCM_INFO_PAUSE
))
967 if (runtime
->status
->state
!= SNDRV_PCM_STATE_RUNNING
)
969 } else if (runtime
->status
->state
!= SNDRV_PCM_STATE_PAUSED
)
971 runtime
->trigger_master
= substream
;
975 static int snd_pcm_do_pause(struct snd_pcm_substream
*substream
, int push
)
977 if (substream
->runtime
->trigger_master
!= substream
)
979 return substream
->ops
->trigger(substream
,
980 push
? SNDRV_PCM_TRIGGER_PAUSE_PUSH
:
981 SNDRV_PCM_TRIGGER_PAUSE_RELEASE
);
984 static void snd_pcm_undo_pause(struct snd_pcm_substream
*substream
, int push
)
986 if (substream
->runtime
->trigger_master
== substream
)
987 substream
->ops
->trigger(substream
,
988 push
? SNDRV_PCM_TRIGGER_PAUSE_RELEASE
:
989 SNDRV_PCM_TRIGGER_PAUSE_PUSH
);
992 static void snd_pcm_post_pause(struct snd_pcm_substream
*substream
, int push
)
994 struct snd_pcm_runtime
*runtime
= substream
->runtime
;
995 snd_pcm_trigger_tstamp(substream
);
997 runtime
->status
->state
= SNDRV_PCM_STATE_PAUSED
;
998 if (substream
->timer
)
999 snd_timer_notify(substream
->timer
,
1000 SNDRV_TIMER_EVENT_MPAUSE
,
1001 &runtime
->trigger_tstamp
);
1002 wake_up(&runtime
->sleep
);
1004 runtime
->status
->state
= SNDRV_PCM_STATE_RUNNING
;
1005 if (substream
->timer
)
1006 snd_timer_notify(substream
->timer
,
1007 SNDRV_TIMER_EVENT_MCONTINUE
,
1008 &runtime
->trigger_tstamp
);
1012 static struct action_ops snd_pcm_action_pause
= {
1013 .pre_action
= snd_pcm_pre_pause
,
1014 .do_action
= snd_pcm_do_pause
,
1015 .undo_action
= snd_pcm_undo_pause
,
1016 .post_action
= snd_pcm_post_pause
1020 * Push/release the pause for all linked streams.
1022 static int snd_pcm_pause(struct snd_pcm_substream
*substream
, int push
)
1024 return snd_pcm_action(&snd_pcm_action_pause
, substream
, push
);
1030 static int snd_pcm_pre_suspend(struct snd_pcm_substream
*substream
, int state
)
1032 struct snd_pcm_runtime
*runtime
= substream
->runtime
;
1033 if (runtime
->status
->state
== SNDRV_PCM_STATE_SUSPENDED
)
1035 runtime
->trigger_master
= substream
;
1039 static int snd_pcm_do_suspend(struct snd_pcm_substream
*substream
, int state
)
1041 struct snd_pcm_runtime
*runtime
= substream
->runtime
;
1042 if (runtime
->trigger_master
!= substream
)
1044 if (! snd_pcm_running(substream
))
1046 substream
->ops
->trigger(substream
, SNDRV_PCM_TRIGGER_SUSPEND
);
1047 return 0; /* suspend unconditionally */
1050 static void snd_pcm_post_suspend(struct snd_pcm_substream
*substream
, int state
)
1052 struct snd_pcm_runtime
*runtime
= substream
->runtime
;
1053 snd_pcm_trigger_tstamp(substream
);
1054 if (substream
->timer
)
1055 snd_timer_notify(substream
->timer
, SNDRV_TIMER_EVENT_MSUSPEND
,
1056 &runtime
->trigger_tstamp
);
1057 runtime
->status
->suspended_state
= runtime
->status
->state
;
1058 runtime
->status
->state
= SNDRV_PCM_STATE_SUSPENDED
;
1059 wake_up(&runtime
->sleep
);
1062 static struct action_ops snd_pcm_action_suspend
= {
1063 .pre_action
= snd_pcm_pre_suspend
,
1064 .do_action
= snd_pcm_do_suspend
,
1065 .post_action
= snd_pcm_post_suspend
1070 * @substream: the PCM substream
1072 * Trigger SUSPEND to all linked streams.
1073 * After this call, all streams are changed to SUSPENDED state.
1075 int snd_pcm_suspend(struct snd_pcm_substream
*substream
)
1078 unsigned long flags
;
1083 snd_pcm_stream_lock_irqsave(substream
, flags
);
1084 err
= snd_pcm_action(&snd_pcm_action_suspend
, substream
, 0);
1085 snd_pcm_stream_unlock_irqrestore(substream
, flags
);
1089 EXPORT_SYMBOL(snd_pcm_suspend
);
1092 * snd_pcm_suspend_all
1093 * @pcm: the PCM instance
1095 * Trigger SUSPEND to all substreams in the given pcm.
1096 * After this call, all streams are changed to SUSPENDED state.
1098 int snd_pcm_suspend_all(struct snd_pcm
*pcm
)
1100 struct snd_pcm_substream
*substream
;
1101 int stream
, err
= 0;
1106 for (stream
= 0; stream
< 2; stream
++) {
1107 for (substream
= pcm
->streams
[stream
].substream
;
1108 substream
; substream
= substream
->next
) {
1109 /* FIXME: the open/close code should lock this as well */
1110 if (substream
->runtime
== NULL
)
1112 err
= snd_pcm_suspend(substream
);
1113 if (err
< 0 && err
!= -EBUSY
)
1120 EXPORT_SYMBOL(snd_pcm_suspend_all
);
1124 static int snd_pcm_pre_resume(struct snd_pcm_substream
*substream
, int state
)
1126 struct snd_pcm_runtime
*runtime
= substream
->runtime
;
1127 if (!(runtime
->info
& SNDRV_PCM_INFO_RESUME
))
1129 runtime
->trigger_master
= substream
;
1133 static int snd_pcm_do_resume(struct snd_pcm_substream
*substream
, int state
)
1135 struct snd_pcm_runtime
*runtime
= substream
->runtime
;
1136 if (runtime
->trigger_master
!= substream
)
1138 /* DMA not running previously? */
1139 if (runtime
->status
->suspended_state
!= SNDRV_PCM_STATE_RUNNING
&&
1140 (runtime
->status
->suspended_state
!= SNDRV_PCM_STATE_DRAINING
||
1141 substream
->stream
!= SNDRV_PCM_STREAM_PLAYBACK
))
1143 return substream
->ops
->trigger(substream
, SNDRV_PCM_TRIGGER_RESUME
);
1146 static void snd_pcm_undo_resume(struct snd_pcm_substream
*substream
, int state
)
1148 if (substream
->runtime
->trigger_master
== substream
&&
1149 snd_pcm_running(substream
))
1150 substream
->ops
->trigger(substream
, SNDRV_PCM_TRIGGER_SUSPEND
);
1153 static void snd_pcm_post_resume(struct snd_pcm_substream
*substream
, int state
)
1155 struct snd_pcm_runtime
*runtime
= substream
->runtime
;
1156 snd_pcm_trigger_tstamp(substream
);
1157 if (substream
->timer
)
1158 snd_timer_notify(substream
->timer
, SNDRV_TIMER_EVENT_MRESUME
,
1159 &runtime
->trigger_tstamp
);
1160 runtime
->status
->state
= runtime
->status
->suspended_state
;
1163 static struct action_ops snd_pcm_action_resume
= {
1164 .pre_action
= snd_pcm_pre_resume
,
1165 .do_action
= snd_pcm_do_resume
,
1166 .undo_action
= snd_pcm_undo_resume
,
1167 .post_action
= snd_pcm_post_resume
1170 static int snd_pcm_resume(struct snd_pcm_substream
*substream
)
1172 struct snd_card
*card
= substream
->pcm
->card
;
1175 snd_power_lock(card
);
1176 if ((res
= snd_power_wait(card
, SNDRV_CTL_POWER_D0
)) >= 0)
1177 res
= snd_pcm_action_lock_irq(&snd_pcm_action_resume
, substream
, 0);
1178 snd_power_unlock(card
);
1184 static int snd_pcm_resume(struct snd_pcm_substream
*substream
)
1189 #endif /* CONFIG_PM */
1194 * Change the RUNNING stream(s) to XRUN state.
1196 static int snd_pcm_xrun(struct snd_pcm_substream
*substream
)
1198 struct snd_card
*card
= substream
->pcm
->card
;
1199 struct snd_pcm_runtime
*runtime
= substream
->runtime
;
1202 snd_power_lock(card
);
1203 if (runtime
->status
->state
== SNDRV_PCM_STATE_SUSPENDED
) {
1204 result
= snd_power_wait(card
, SNDRV_CTL_POWER_D0
);
1209 snd_pcm_stream_lock_irq(substream
);
1210 switch (runtime
->status
->state
) {
1211 case SNDRV_PCM_STATE_XRUN
:
1212 result
= 0; /* already there */
1214 case SNDRV_PCM_STATE_RUNNING
:
1215 result
= snd_pcm_stop(substream
, SNDRV_PCM_STATE_XRUN
);
1220 snd_pcm_stream_unlock_irq(substream
);
1222 snd_power_unlock(card
);
1229 static int snd_pcm_pre_reset(struct snd_pcm_substream
*substream
, int state
)
1231 struct snd_pcm_runtime
*runtime
= substream
->runtime
;
1232 switch (runtime
->status
->state
) {
1233 case SNDRV_PCM_STATE_RUNNING
:
1234 case SNDRV_PCM_STATE_PREPARED
:
1235 case SNDRV_PCM_STATE_PAUSED
:
1236 case SNDRV_PCM_STATE_SUSPENDED
:
1243 static int snd_pcm_do_reset(struct snd_pcm_substream
*substream
, int state
)
1245 struct snd_pcm_runtime
*runtime
= substream
->runtime
;
1246 int err
= substream
->ops
->ioctl(substream
, SNDRV_PCM_IOCTL1_RESET
, NULL
);
1249 // snd_assert(runtime->status->hw_ptr < runtime->buffer_size, );
1250 runtime
->hw_ptr_base
= 0;
1251 runtime
->hw_ptr_interrupt
= runtime
->status
->hw_ptr
-
1252 runtime
->status
->hw_ptr
% runtime
->period_size
;
1253 runtime
->silence_start
= runtime
->status
->hw_ptr
;
1254 runtime
->silence_filled
= 0;
1258 static void snd_pcm_post_reset(struct snd_pcm_substream
*substream
, int state
)
1260 struct snd_pcm_runtime
*runtime
= substream
->runtime
;
1261 runtime
->control
->appl_ptr
= runtime
->status
->hw_ptr
;
1262 if (substream
->stream
== SNDRV_PCM_STREAM_PLAYBACK
&&
1263 runtime
->silence_size
> 0)
1264 snd_pcm_playback_silence(substream
, ULONG_MAX
);
1267 static struct action_ops snd_pcm_action_reset
= {
1268 .pre_action
= snd_pcm_pre_reset
,
1269 .do_action
= snd_pcm_do_reset
,
1270 .post_action
= snd_pcm_post_reset
1273 static int snd_pcm_reset(struct snd_pcm_substream
*substream
)
1275 return snd_pcm_action_nonatomic(&snd_pcm_action_reset
, substream
, 0);
1281 /* we use the second argument for updating f_flags */
1282 static int snd_pcm_pre_prepare(struct snd_pcm_substream
*substream
,
1285 struct snd_pcm_runtime
*runtime
= substream
->runtime
;
1286 if (runtime
->status
->state
== SNDRV_PCM_STATE_OPEN
||
1287 runtime
->status
->state
== SNDRV_PCM_STATE_DISCONNECTED
)
1289 if (snd_pcm_running(substream
))
1291 substream
->f_flags
= f_flags
;
1295 static int snd_pcm_do_prepare(struct snd_pcm_substream
*substream
, int state
)
1298 err
= substream
->ops
->prepare(substream
);
1301 return snd_pcm_do_reset(substream
, 0);
1304 static void snd_pcm_post_prepare(struct snd_pcm_substream
*substream
, int state
)
1306 struct snd_pcm_runtime
*runtime
= substream
->runtime
;
1307 runtime
->control
->appl_ptr
= runtime
->status
->hw_ptr
;
1308 runtime
->status
->state
= SNDRV_PCM_STATE_PREPARED
;
1311 static struct action_ops snd_pcm_action_prepare
= {
1312 .pre_action
= snd_pcm_pre_prepare
,
1313 .do_action
= snd_pcm_do_prepare
,
1314 .post_action
= snd_pcm_post_prepare
1319 * @substream: the PCM substream instance
1320 * @file: file to refer f_flags
1322 * Prepare the PCM substream to be triggerable.
1324 static int snd_pcm_prepare(struct snd_pcm_substream
*substream
,
1328 struct snd_card
*card
= substream
->pcm
->card
;
1332 f_flags
= file
->f_flags
;
1334 f_flags
= substream
->f_flags
;
1336 snd_power_lock(card
);
1337 if ((res
= snd_power_wait(card
, SNDRV_CTL_POWER_D0
)) >= 0)
1338 res
= snd_pcm_action_nonatomic(&snd_pcm_action_prepare
,
1339 substream
, f_flags
);
1340 snd_power_unlock(card
);
1348 static int snd_pcm_pre_drain_init(struct snd_pcm_substream
*substream
, int state
)
1350 if (substream
->f_flags
& O_NONBLOCK
)
1352 substream
->runtime
->trigger_master
= substream
;
1356 static int snd_pcm_do_drain_init(struct snd_pcm_substream
*substream
, int state
)
1358 struct snd_pcm_runtime
*runtime
= substream
->runtime
;
1359 if (substream
->stream
== SNDRV_PCM_STREAM_PLAYBACK
) {
1360 switch (runtime
->status
->state
) {
1361 case SNDRV_PCM_STATE_PREPARED
:
1362 /* start playback stream if possible */
1363 if (! snd_pcm_playback_empty(substream
)) {
1364 snd_pcm_do_start(substream
, SNDRV_PCM_STATE_DRAINING
);
1365 snd_pcm_post_start(substream
, SNDRV_PCM_STATE_DRAINING
);
1368 case SNDRV_PCM_STATE_RUNNING
:
1369 runtime
->status
->state
= SNDRV_PCM_STATE_DRAINING
;
1375 /* stop running stream */
1376 if (runtime
->status
->state
== SNDRV_PCM_STATE_RUNNING
) {
1377 int new_state
= snd_pcm_capture_avail(runtime
) > 0 ?
1378 SNDRV_PCM_STATE_DRAINING
: SNDRV_PCM_STATE_SETUP
;
1379 snd_pcm_do_stop(substream
, new_state
);
1380 snd_pcm_post_stop(substream
, new_state
);
1386 static void snd_pcm_post_drain_init(struct snd_pcm_substream
*substream
, int state
)
1390 static struct action_ops snd_pcm_action_drain_init
= {
1391 .pre_action
= snd_pcm_pre_drain_init
,
1392 .do_action
= snd_pcm_do_drain_init
,
1393 .post_action
= snd_pcm_post_drain_init
1397 struct snd_pcm_substream
*substream
;
1399 snd_pcm_uframes_t stop_threshold
;
1402 static int snd_pcm_drop(struct snd_pcm_substream
*substream
);
1405 * Drain the stream(s).
1406 * When the substream is linked, sync until the draining of all playback streams
1408 * After this call, all streams are supposed to be either SETUP or DRAINING
1409 * (capture only) state.
1411 static int snd_pcm_drain(struct snd_pcm_substream
*substream
)
1413 struct snd_card
*card
;
1414 struct snd_pcm_runtime
*runtime
;
1415 struct snd_pcm_substream
*s
;
1418 struct drain_rec
*drec
, drec_tmp
, *d
;
1420 snd_assert(substream
!= NULL
, return -ENXIO
);
1421 card
= substream
->pcm
->card
;
1422 runtime
= substream
->runtime
;
1424 if (runtime
->status
->state
== SNDRV_PCM_STATE_OPEN
)
1427 snd_power_lock(card
);
1428 if (runtime
->status
->state
== SNDRV_PCM_STATE_SUSPENDED
) {
1429 result
= snd_power_wait(card
, SNDRV_CTL_POWER_D0
);
1431 snd_power_unlock(card
);
1436 /* allocate temporary record for drain sync */
1437 down_read(&snd_pcm_link_rwsem
);
1438 if (snd_pcm_stream_linked(substream
)) {
1439 drec
= kmalloc(substream
->group
->count
* sizeof(*drec
), GFP_KERNEL
);
1441 up_read(&snd_pcm_link_rwsem
);
1442 snd_power_unlock(card
);
1448 /* count only playback streams */
1450 snd_pcm_group_for_each_entry(s
, substream
) {
1451 runtime
= s
->runtime
;
1452 if (s
->stream
== SNDRV_PCM_STREAM_PLAYBACK
) {
1453 d
= &drec
[num_drecs
++];
1455 init_waitqueue_entry(&d
->wait
, current
);
1456 add_wait_queue(&runtime
->sleep
, &d
->wait
);
1457 /* stop_threshold fixup to avoid endless loop when
1458 * stop_threshold > buffer_size
1460 d
->stop_threshold
= runtime
->stop_threshold
;
1461 if (runtime
->stop_threshold
> runtime
->buffer_size
)
1462 runtime
->stop_threshold
= runtime
->buffer_size
;
1465 up_read(&snd_pcm_link_rwsem
);
1467 snd_pcm_stream_lock_irq(substream
);
1469 if (substream
->runtime
->status
->state
== SNDRV_PCM_STATE_PAUSED
)
1470 snd_pcm_pause(substream
, 0);
1472 /* pre-start/stop - all running streams are changed to DRAINING state */
1473 result
= snd_pcm_action(&snd_pcm_action_drain_init
, substream
, 0);
1475 snd_pcm_stream_unlock_irq(substream
);
1481 if (signal_pending(current
)) {
1482 result
= -ERESTARTSYS
;
1486 for (i
= 0; i
< num_drecs
; i
++) {
1487 runtime
= drec
[i
].substream
->runtime
;
1488 if (runtime
->status
->state
== SNDRV_PCM_STATE_DRAINING
)
1492 break; /* yes, all drained */
1494 set_current_state(TASK_INTERRUPTIBLE
);
1495 snd_pcm_stream_unlock_irq(substream
);
1496 snd_power_unlock(card
);
1497 tout
= schedule_timeout(10 * HZ
);
1498 snd_power_lock(card
);
1499 snd_pcm_stream_lock_irq(substream
);
1501 if (substream
->runtime
->status
->state
== SNDRV_PCM_STATE_SUSPENDED
)
1504 snd_printd("playback drain error (DMA or IRQ trouble?)\n");
1505 snd_pcm_stop(substream
, SNDRV_PCM_STATE_SETUP
);
1512 snd_pcm_stream_unlock_irq(substream
);
1515 for (i
= 0; i
< num_drecs
; i
++) {
1517 runtime
= d
->substream
->runtime
;
1518 remove_wait_queue(&runtime
->sleep
, &d
->wait
);
1519 runtime
->stop_threshold
= d
->stop_threshold
;
1522 if (drec
!= &drec_tmp
)
1524 snd_power_unlock(card
);
1532 * Immediately put all linked substreams into SETUP state.
1534 static int snd_pcm_drop(struct snd_pcm_substream
*substream
)
1536 struct snd_pcm_runtime
*runtime
;
1537 struct snd_card
*card
;
1540 snd_assert(substream
!= NULL
, return -ENXIO
);
1541 runtime
= substream
->runtime
;
1542 card
= substream
->pcm
->card
;
1544 if (runtime
->status
->state
== SNDRV_PCM_STATE_OPEN
||
1545 runtime
->status
->state
== SNDRV_PCM_STATE_DISCONNECTED
)
1548 snd_power_lock(card
);
1549 if (runtime
->status
->state
== SNDRV_PCM_STATE_SUSPENDED
) {
1550 result
= snd_power_wait(card
, SNDRV_CTL_POWER_D0
);
1555 snd_pcm_stream_lock_irq(substream
);
1557 if (runtime
->status
->state
== SNDRV_PCM_STATE_PAUSED
)
1558 snd_pcm_pause(substream
, 0);
1560 snd_pcm_stop(substream
, SNDRV_PCM_STATE_SETUP
);
1561 /* runtime->control->appl_ptr = runtime->status->hw_ptr; */
1562 snd_pcm_stream_unlock_irq(substream
);
1564 snd_power_unlock(card
);
1569 /* WARNING: Don't forget to fput back the file */
1570 static struct file
*snd_pcm_file_fd(int fd
)
1573 struct inode
*inode
;
1579 inode
= file
->f_path
.dentry
->d_inode
;
1580 if (!S_ISCHR(inode
->i_mode
) ||
1581 imajor(inode
) != snd_major
) {
1585 minor
= iminor(inode
);
1586 if (!snd_lookup_minor_data(minor
, SNDRV_DEVICE_TYPE_PCM_PLAYBACK
) &&
1587 !snd_lookup_minor_data(minor
, SNDRV_DEVICE_TYPE_PCM_CAPTURE
)) {
1597 static int snd_pcm_link(struct snd_pcm_substream
*substream
, int fd
)
1601 struct snd_pcm_file
*pcm_file
;
1602 struct snd_pcm_substream
*substream1
;
1604 file
= snd_pcm_file_fd(fd
);
1607 pcm_file
= file
->private_data
;
1608 substream1
= pcm_file
->substream
;
1609 down_write(&snd_pcm_link_rwsem
);
1610 write_lock_irq(&snd_pcm_link_rwlock
);
1611 if (substream
->runtime
->status
->state
== SNDRV_PCM_STATE_OPEN
||
1612 substream
->runtime
->status
->state
!= substream1
->runtime
->status
->state
) {
1616 if (snd_pcm_stream_linked(substream1
)) {
1620 if (!snd_pcm_stream_linked(substream
)) {
1621 substream
->group
= kmalloc(sizeof(struct snd_pcm_group
), GFP_ATOMIC
);
1622 if (substream
->group
== NULL
) {
1626 spin_lock_init(&substream
->group
->lock
);
1627 INIT_LIST_HEAD(&substream
->group
->substreams
);
1628 list_add_tail(&substream
->link_list
, &substream
->group
->substreams
);
1629 substream
->group
->count
= 1;
1631 list_add_tail(&substream1
->link_list
, &substream
->group
->substreams
);
1632 substream
->group
->count
++;
1633 substream1
->group
= substream
->group
;
1635 write_unlock_irq(&snd_pcm_link_rwlock
);
1636 up_write(&snd_pcm_link_rwsem
);
1641 static void relink_to_local(struct snd_pcm_substream
*substream
)
1643 substream
->group
= &substream
->self_group
;
1644 INIT_LIST_HEAD(&substream
->self_group
.substreams
);
1645 list_add_tail(&substream
->link_list
, &substream
->self_group
.substreams
);
1648 static int snd_pcm_unlink(struct snd_pcm_substream
*substream
)
1650 struct snd_pcm_substream
*s
;
1653 down_write(&snd_pcm_link_rwsem
);
1654 write_lock_irq(&snd_pcm_link_rwlock
);
1655 if (!snd_pcm_stream_linked(substream
)) {
1659 list_del(&substream
->link_list
);
1660 substream
->group
->count
--;
1661 if (substream
->group
->count
== 1) { /* detach the last stream, too */
1662 snd_pcm_group_for_each_entry(s
, substream
) {
1666 kfree(substream
->group
);
1668 relink_to_local(substream
);
1670 write_unlock_irq(&snd_pcm_link_rwlock
);
1671 up_write(&snd_pcm_link_rwsem
);
1678 static int snd_pcm_hw_rule_mul(struct snd_pcm_hw_params
*params
,
1679 struct snd_pcm_hw_rule
*rule
)
1681 struct snd_interval t
;
1682 snd_interval_mul(hw_param_interval_c(params
, rule
->deps
[0]),
1683 hw_param_interval_c(params
, rule
->deps
[1]), &t
);
1684 return snd_interval_refine(hw_param_interval(params
, rule
->var
), &t
);
1687 static int snd_pcm_hw_rule_div(struct snd_pcm_hw_params
*params
,
1688 struct snd_pcm_hw_rule
*rule
)
1690 struct snd_interval t
;
1691 snd_interval_div(hw_param_interval_c(params
, rule
->deps
[0]),
1692 hw_param_interval_c(params
, rule
->deps
[1]), &t
);
1693 return snd_interval_refine(hw_param_interval(params
, rule
->var
), &t
);
1696 static int snd_pcm_hw_rule_muldivk(struct snd_pcm_hw_params
*params
,
1697 struct snd_pcm_hw_rule
*rule
)
1699 struct snd_interval t
;
1700 snd_interval_muldivk(hw_param_interval_c(params
, rule
->deps
[0]),
1701 hw_param_interval_c(params
, rule
->deps
[1]),
1702 (unsigned long) rule
->private, &t
);
1703 return snd_interval_refine(hw_param_interval(params
, rule
->var
), &t
);
1706 static int snd_pcm_hw_rule_mulkdiv(struct snd_pcm_hw_params
*params
,
1707 struct snd_pcm_hw_rule
*rule
)
1709 struct snd_interval t
;
1710 snd_interval_mulkdiv(hw_param_interval_c(params
, rule
->deps
[0]),
1711 (unsigned long) rule
->private,
1712 hw_param_interval_c(params
, rule
->deps
[1]), &t
);
1713 return snd_interval_refine(hw_param_interval(params
, rule
->var
), &t
);
1716 static int snd_pcm_hw_rule_format(struct snd_pcm_hw_params
*params
,
1717 struct snd_pcm_hw_rule
*rule
)
1720 struct snd_interval
*i
= hw_param_interval(params
, rule
->deps
[0]);
1722 struct snd_mask
*mask
= hw_param_mask(params
, SNDRV_PCM_HW_PARAM_FORMAT
);
1724 for (k
= 0; k
<= SNDRV_PCM_FORMAT_LAST
; ++k
) {
1726 if (! snd_mask_test(mask
, k
))
1728 bits
= snd_pcm_format_physical_width(k
);
1730 continue; /* ignore invalid formats */
1731 if ((unsigned)bits
< i
->min
|| (unsigned)bits
> i
->max
)
1732 snd_mask_reset(&m
, k
);
1734 return snd_mask_refine(mask
, &m
);
1737 static int snd_pcm_hw_rule_sample_bits(struct snd_pcm_hw_params
*params
,
1738 struct snd_pcm_hw_rule
*rule
)
1740 struct snd_interval t
;
1746 for (k
= 0; k
<= SNDRV_PCM_FORMAT_LAST
; ++k
) {
1748 if (! snd_mask_test(hw_param_mask(params
, SNDRV_PCM_HW_PARAM_FORMAT
), k
))
1750 bits
= snd_pcm_format_physical_width(k
);
1752 continue; /* ignore invalid formats */
1753 if (t
.min
> (unsigned)bits
)
1755 if (t
.max
< (unsigned)bits
)
1759 return snd_interval_refine(hw_param_interval(params
, rule
->var
), &t
);
1762 #if SNDRV_PCM_RATE_5512 != 1 << 0 || SNDRV_PCM_RATE_192000 != 1 << 12
1763 #error "Change this table"
1766 static unsigned int rates
[] = { 5512, 8000, 11025, 16000, 22050, 32000, 44100,
1767 48000, 64000, 88200, 96000, 176400, 192000 };
1769 const struct snd_pcm_hw_constraint_list snd_pcm_known_rates
= {
1770 .count
= ARRAY_SIZE(rates
),
1774 static int snd_pcm_hw_rule_rate(struct snd_pcm_hw_params
*params
,
1775 struct snd_pcm_hw_rule
*rule
)
1777 struct snd_pcm_hardware
*hw
= rule
->private;
1778 return snd_interval_list(hw_param_interval(params
, rule
->var
),
1779 snd_pcm_known_rates
.count
,
1780 snd_pcm_known_rates
.list
, hw
->rates
);
1783 static int snd_pcm_hw_rule_buffer_bytes_max(struct snd_pcm_hw_params
*params
,
1784 struct snd_pcm_hw_rule
*rule
)
1786 struct snd_interval t
;
1787 struct snd_pcm_substream
*substream
= rule
->private;
1789 t
.max
= substream
->buffer_bytes_max
;
1793 return snd_interval_refine(hw_param_interval(params
, rule
->var
), &t
);
1796 int snd_pcm_hw_constraints_init(struct snd_pcm_substream
*substream
)
1798 struct snd_pcm_runtime
*runtime
= substream
->runtime
;
1799 struct snd_pcm_hw_constraints
*constrs
= &runtime
->hw_constraints
;
1802 for (k
= SNDRV_PCM_HW_PARAM_FIRST_MASK
; k
<= SNDRV_PCM_HW_PARAM_LAST_MASK
; k
++) {
1803 snd_mask_any(constrs_mask(constrs
, k
));
1806 for (k
= SNDRV_PCM_HW_PARAM_FIRST_INTERVAL
; k
<= SNDRV_PCM_HW_PARAM_LAST_INTERVAL
; k
++) {
1807 snd_interval_any(constrs_interval(constrs
, k
));
1810 snd_interval_setinteger(constrs_interval(constrs
, SNDRV_PCM_HW_PARAM_CHANNELS
));
1811 snd_interval_setinteger(constrs_interval(constrs
, SNDRV_PCM_HW_PARAM_BUFFER_SIZE
));
1812 snd_interval_setinteger(constrs_interval(constrs
, SNDRV_PCM_HW_PARAM_BUFFER_BYTES
));
1813 snd_interval_setinteger(constrs_interval(constrs
, SNDRV_PCM_HW_PARAM_SAMPLE_BITS
));
1814 snd_interval_setinteger(constrs_interval(constrs
, SNDRV_PCM_HW_PARAM_FRAME_BITS
));
1816 err
= snd_pcm_hw_rule_add(runtime
, 0, SNDRV_PCM_HW_PARAM_FORMAT
,
1817 snd_pcm_hw_rule_format
, NULL
,
1818 SNDRV_PCM_HW_PARAM_SAMPLE_BITS
, -1);
1821 err
= snd_pcm_hw_rule_add(runtime
, 0, SNDRV_PCM_HW_PARAM_SAMPLE_BITS
,
1822 snd_pcm_hw_rule_sample_bits
, NULL
,
1823 SNDRV_PCM_HW_PARAM_FORMAT
,
1824 SNDRV_PCM_HW_PARAM_SAMPLE_BITS
, -1);
1827 err
= snd_pcm_hw_rule_add(runtime
, 0, SNDRV_PCM_HW_PARAM_SAMPLE_BITS
,
1828 snd_pcm_hw_rule_div
, NULL
,
1829 SNDRV_PCM_HW_PARAM_FRAME_BITS
, SNDRV_PCM_HW_PARAM_CHANNELS
, -1);
1832 err
= snd_pcm_hw_rule_add(runtime
, 0, SNDRV_PCM_HW_PARAM_FRAME_BITS
,
1833 snd_pcm_hw_rule_mul
, NULL
,
1834 SNDRV_PCM_HW_PARAM_SAMPLE_BITS
, SNDRV_PCM_HW_PARAM_CHANNELS
, -1);
1837 err
= snd_pcm_hw_rule_add(runtime
, 0, SNDRV_PCM_HW_PARAM_FRAME_BITS
,
1838 snd_pcm_hw_rule_mulkdiv
, (void*) 8,
1839 SNDRV_PCM_HW_PARAM_PERIOD_BYTES
, SNDRV_PCM_HW_PARAM_PERIOD_SIZE
, -1);
1842 err
= snd_pcm_hw_rule_add(runtime
, 0, SNDRV_PCM_HW_PARAM_FRAME_BITS
,
1843 snd_pcm_hw_rule_mulkdiv
, (void*) 8,
1844 SNDRV_PCM_HW_PARAM_BUFFER_BYTES
, SNDRV_PCM_HW_PARAM_BUFFER_SIZE
, -1);
1847 err
= snd_pcm_hw_rule_add(runtime
, 0, SNDRV_PCM_HW_PARAM_CHANNELS
,
1848 snd_pcm_hw_rule_div
, NULL
,
1849 SNDRV_PCM_HW_PARAM_FRAME_BITS
, SNDRV_PCM_HW_PARAM_SAMPLE_BITS
, -1);
1852 err
= snd_pcm_hw_rule_add(runtime
, 0, SNDRV_PCM_HW_PARAM_RATE
,
1853 snd_pcm_hw_rule_mulkdiv
, (void*) 1000000,
1854 SNDRV_PCM_HW_PARAM_PERIOD_SIZE
, SNDRV_PCM_HW_PARAM_PERIOD_TIME
, -1);
1857 err
= snd_pcm_hw_rule_add(runtime
, 0, SNDRV_PCM_HW_PARAM_RATE
,
1858 snd_pcm_hw_rule_mulkdiv
, (void*) 1000000,
1859 SNDRV_PCM_HW_PARAM_BUFFER_SIZE
, SNDRV_PCM_HW_PARAM_BUFFER_TIME
, -1);
1862 err
= snd_pcm_hw_rule_add(runtime
, 0, SNDRV_PCM_HW_PARAM_PERIODS
,
1863 snd_pcm_hw_rule_div
, NULL
,
1864 SNDRV_PCM_HW_PARAM_BUFFER_SIZE
, SNDRV_PCM_HW_PARAM_PERIOD_SIZE
, -1);
1867 err
= snd_pcm_hw_rule_add(runtime
, 0, SNDRV_PCM_HW_PARAM_PERIOD_SIZE
,
1868 snd_pcm_hw_rule_div
, NULL
,
1869 SNDRV_PCM_HW_PARAM_BUFFER_SIZE
, SNDRV_PCM_HW_PARAM_PERIODS
, -1);
1872 err
= snd_pcm_hw_rule_add(runtime
, 0, SNDRV_PCM_HW_PARAM_PERIOD_SIZE
,
1873 snd_pcm_hw_rule_mulkdiv
, (void*) 8,
1874 SNDRV_PCM_HW_PARAM_PERIOD_BYTES
, SNDRV_PCM_HW_PARAM_FRAME_BITS
, -1);
1877 err
= snd_pcm_hw_rule_add(runtime
, 0, SNDRV_PCM_HW_PARAM_PERIOD_SIZE
,
1878 snd_pcm_hw_rule_muldivk
, (void*) 1000000,
1879 SNDRV_PCM_HW_PARAM_PERIOD_TIME
, SNDRV_PCM_HW_PARAM_RATE
, -1);
1882 err
= snd_pcm_hw_rule_add(runtime
, 0, SNDRV_PCM_HW_PARAM_BUFFER_SIZE
,
1883 snd_pcm_hw_rule_mul
, NULL
,
1884 SNDRV_PCM_HW_PARAM_PERIOD_SIZE
, SNDRV_PCM_HW_PARAM_PERIODS
, -1);
1887 err
= snd_pcm_hw_rule_add(runtime
, 0, SNDRV_PCM_HW_PARAM_BUFFER_SIZE
,
1888 snd_pcm_hw_rule_mulkdiv
, (void*) 8,
1889 SNDRV_PCM_HW_PARAM_BUFFER_BYTES
, SNDRV_PCM_HW_PARAM_FRAME_BITS
, -1);
1892 err
= snd_pcm_hw_rule_add(runtime
, 0, SNDRV_PCM_HW_PARAM_BUFFER_SIZE
,
1893 snd_pcm_hw_rule_muldivk
, (void*) 1000000,
1894 SNDRV_PCM_HW_PARAM_BUFFER_TIME
, SNDRV_PCM_HW_PARAM_RATE
, -1);
1897 err
= snd_pcm_hw_rule_add(runtime
, 0, SNDRV_PCM_HW_PARAM_PERIOD_BYTES
,
1898 snd_pcm_hw_rule_muldivk
, (void*) 8,
1899 SNDRV_PCM_HW_PARAM_PERIOD_SIZE
, SNDRV_PCM_HW_PARAM_FRAME_BITS
, -1);
1902 err
= snd_pcm_hw_rule_add(runtime
, 0, SNDRV_PCM_HW_PARAM_BUFFER_BYTES
,
1903 snd_pcm_hw_rule_muldivk
, (void*) 8,
1904 SNDRV_PCM_HW_PARAM_BUFFER_SIZE
, SNDRV_PCM_HW_PARAM_FRAME_BITS
, -1);
1907 err
= snd_pcm_hw_rule_add(runtime
, 0, SNDRV_PCM_HW_PARAM_PERIOD_TIME
,
1908 snd_pcm_hw_rule_mulkdiv
, (void*) 1000000,
1909 SNDRV_PCM_HW_PARAM_PERIOD_SIZE
, SNDRV_PCM_HW_PARAM_RATE
, -1);
1912 err
= snd_pcm_hw_rule_add(runtime
, 0, SNDRV_PCM_HW_PARAM_BUFFER_TIME
,
1913 snd_pcm_hw_rule_mulkdiv
, (void*) 1000000,
1914 SNDRV_PCM_HW_PARAM_BUFFER_SIZE
, SNDRV_PCM_HW_PARAM_RATE
, -1);
1920 int snd_pcm_hw_constraints_complete(struct snd_pcm_substream
*substream
)
1922 struct snd_pcm_runtime
*runtime
= substream
->runtime
;
1923 struct snd_pcm_hardware
*hw
= &runtime
->hw
;
1925 unsigned int mask
= 0;
1927 if (hw
->info
& SNDRV_PCM_INFO_INTERLEAVED
)
1928 mask
|= 1 << SNDRV_PCM_ACCESS_RW_INTERLEAVED
;
1929 if (hw
->info
& SNDRV_PCM_INFO_NONINTERLEAVED
)
1930 mask
|= 1 << SNDRV_PCM_ACCESS_RW_NONINTERLEAVED
;
1931 if (hw
->info
& SNDRV_PCM_INFO_MMAP
) {
1932 if (hw
->info
& SNDRV_PCM_INFO_INTERLEAVED
)
1933 mask
|= 1 << SNDRV_PCM_ACCESS_MMAP_INTERLEAVED
;
1934 if (hw
->info
& SNDRV_PCM_INFO_NONINTERLEAVED
)
1935 mask
|= 1 << SNDRV_PCM_ACCESS_MMAP_NONINTERLEAVED
;
1936 if (hw
->info
& SNDRV_PCM_INFO_COMPLEX
)
1937 mask
|= 1 << SNDRV_PCM_ACCESS_MMAP_COMPLEX
;
1939 err
= snd_pcm_hw_constraint_mask(runtime
, SNDRV_PCM_HW_PARAM_ACCESS
, mask
);
1940 snd_assert(err
>= 0, return -EINVAL
);
1942 err
= snd_pcm_hw_constraint_mask64(runtime
, SNDRV_PCM_HW_PARAM_FORMAT
, hw
->formats
);
1943 snd_assert(err
>= 0, return -EINVAL
);
1945 err
= snd_pcm_hw_constraint_mask(runtime
, SNDRV_PCM_HW_PARAM_SUBFORMAT
, 1 << SNDRV_PCM_SUBFORMAT_STD
);
1946 snd_assert(err
>= 0, return -EINVAL
);
1948 err
= snd_pcm_hw_constraint_minmax(runtime
, SNDRV_PCM_HW_PARAM_CHANNELS
,
1949 hw
->channels_min
, hw
->channels_max
);
1950 snd_assert(err
>= 0, return -EINVAL
);
1952 err
= snd_pcm_hw_constraint_minmax(runtime
, SNDRV_PCM_HW_PARAM_RATE
,
1953 hw
->rate_min
, hw
->rate_max
);
1954 snd_assert(err
>= 0, return -EINVAL
);
1956 err
= snd_pcm_hw_constraint_minmax(runtime
, SNDRV_PCM_HW_PARAM_PERIOD_BYTES
,
1957 hw
->period_bytes_min
, hw
->period_bytes_max
);
1958 snd_assert(err
>= 0, return -EINVAL
);
1960 err
= snd_pcm_hw_constraint_minmax(runtime
, SNDRV_PCM_HW_PARAM_PERIODS
,
1961 hw
->periods_min
, hw
->periods_max
);
1962 snd_assert(err
>= 0, return -EINVAL
);
1964 err
= snd_pcm_hw_constraint_minmax(runtime
, SNDRV_PCM_HW_PARAM_BUFFER_BYTES
,
1965 hw
->period_bytes_min
, hw
->buffer_bytes_max
);
1966 snd_assert(err
>= 0, return -EINVAL
);
1968 err
= snd_pcm_hw_rule_add(runtime
, 0, SNDRV_PCM_HW_PARAM_BUFFER_BYTES
,
1969 snd_pcm_hw_rule_buffer_bytes_max
, substream
,
1970 SNDRV_PCM_HW_PARAM_BUFFER_BYTES
, -1);
1975 if (runtime
->dma_bytes
) {
1976 err
= snd_pcm_hw_constraint_minmax(runtime
, SNDRV_PCM_HW_PARAM_BUFFER_BYTES
, 0, runtime
->dma_bytes
);
1977 snd_assert(err
>= 0, return -EINVAL
);
1980 if (!(hw
->rates
& (SNDRV_PCM_RATE_KNOT
| SNDRV_PCM_RATE_CONTINUOUS
))) {
1981 err
= snd_pcm_hw_rule_add(runtime
, 0, SNDRV_PCM_HW_PARAM_RATE
,
1982 snd_pcm_hw_rule_rate
, hw
,
1983 SNDRV_PCM_HW_PARAM_RATE
, -1);
1988 /* FIXME: this belong to lowlevel */
1989 snd_pcm_hw_constraint_integer(runtime
, SNDRV_PCM_HW_PARAM_PERIOD_SIZE
);
1994 static void pcm_release_private(struct snd_pcm_substream
*substream
)
1996 snd_pcm_unlink(substream
);
1999 void snd_pcm_release_substream(struct snd_pcm_substream
*substream
)
2001 substream
->ref_count
--;
2002 if (substream
->ref_count
> 0)
2005 snd_pcm_drop(substream
);
2006 if (substream
->hw_opened
) {
2007 if (substream
->ops
->hw_free
!= NULL
)
2008 substream
->ops
->hw_free(substream
);
2009 substream
->ops
->close(substream
);
2010 substream
->hw_opened
= 0;
2012 if (substream
->pcm_release
) {
2013 substream
->pcm_release(substream
);
2014 substream
->pcm_release
= NULL
;
2016 snd_pcm_detach_substream(substream
);
2019 EXPORT_SYMBOL(snd_pcm_release_substream
);
2021 int snd_pcm_open_substream(struct snd_pcm
*pcm
, int stream
,
2023 struct snd_pcm_substream
**rsubstream
)
2025 struct snd_pcm_substream
*substream
;
2028 err
= snd_pcm_attach_substream(pcm
, stream
, file
, &substream
);
2031 if (substream
->ref_count
> 1) {
2032 *rsubstream
= substream
;
2036 err
= snd_pcm_hw_constraints_init(substream
);
2038 snd_printd("snd_pcm_hw_constraints_init failed\n");
2042 if ((err
= substream
->ops
->open(substream
)) < 0)
2045 substream
->hw_opened
= 1;
2047 err
= snd_pcm_hw_constraints_complete(substream
);
2049 snd_printd("snd_pcm_hw_constraints_complete failed\n");
2053 *rsubstream
= substream
;
2057 snd_pcm_release_substream(substream
);
2061 EXPORT_SYMBOL(snd_pcm_open_substream
);
2063 static int snd_pcm_open_file(struct file
*file
,
2064 struct snd_pcm
*pcm
,
2066 struct snd_pcm_file
**rpcm_file
)
2068 struct snd_pcm_file
*pcm_file
;
2069 struct snd_pcm_substream
*substream
;
2070 struct snd_pcm_str
*str
;
2073 snd_assert(rpcm_file
!= NULL
, return -EINVAL
);
2076 err
= snd_pcm_open_substream(pcm
, stream
, file
, &substream
);
2080 pcm_file
= kzalloc(sizeof(*pcm_file
), GFP_KERNEL
);
2081 if (pcm_file
== NULL
) {
2082 snd_pcm_release_substream(substream
);
2085 pcm_file
->substream
= substream
;
2086 if (substream
->ref_count
== 1) {
2087 str
= substream
->pstr
;
2088 substream
->file
= pcm_file
;
2089 substream
->pcm_release
= pcm_release_private
;
2091 file
->private_data
= pcm_file
;
2092 *rpcm_file
= pcm_file
;
2096 static int snd_pcm_playback_open(struct inode
*inode
, struct file
*file
)
2098 struct snd_pcm
*pcm
;
2100 pcm
= snd_lookup_minor_data(iminor(inode
),
2101 SNDRV_DEVICE_TYPE_PCM_PLAYBACK
);
2102 return snd_pcm_open(file
, pcm
, SNDRV_PCM_STREAM_PLAYBACK
);
2105 static int snd_pcm_capture_open(struct inode
*inode
, struct file
*file
)
2107 struct snd_pcm
*pcm
;
2109 pcm
= snd_lookup_minor_data(iminor(inode
),
2110 SNDRV_DEVICE_TYPE_PCM_CAPTURE
);
2111 return snd_pcm_open(file
, pcm
, SNDRV_PCM_STREAM_CAPTURE
);
2114 static int snd_pcm_open(struct file
*file
, struct snd_pcm
*pcm
, int stream
)
2117 struct snd_pcm_file
*pcm_file
;
2124 err
= snd_card_file_add(pcm
->card
, file
);
2127 if (!try_module_get(pcm
->card
->module
)) {
2131 init_waitqueue_entry(&wait
, current
);
2132 add_wait_queue(&pcm
->open_wait
, &wait
);
2133 mutex_lock(&pcm
->open_mutex
);
2135 err
= snd_pcm_open_file(file
, pcm
, stream
, &pcm_file
);
2138 if (err
== -EAGAIN
) {
2139 if (file
->f_flags
& O_NONBLOCK
) {
2145 set_current_state(TASK_INTERRUPTIBLE
);
2146 mutex_unlock(&pcm
->open_mutex
);
2148 mutex_lock(&pcm
->open_mutex
);
2149 if (signal_pending(current
)) {
2154 remove_wait_queue(&pcm
->open_wait
, &wait
);
2155 mutex_unlock(&pcm
->open_mutex
);
2161 module_put(pcm
->card
->module
);
2163 snd_card_file_remove(pcm
->card
, file
);
2168 static int snd_pcm_release(struct inode
*inode
, struct file
*file
)
2170 struct snd_pcm
*pcm
;
2171 struct snd_pcm_substream
*substream
;
2172 struct snd_pcm_file
*pcm_file
;
2174 pcm_file
= file
->private_data
;
2175 substream
= pcm_file
->substream
;
2176 snd_assert(substream
!= NULL
, return -ENXIO
);
2177 pcm
= substream
->pcm
;
2178 fasync_helper(-1, file
, 0, &substream
->runtime
->fasync
);
2179 mutex_lock(&pcm
->open_mutex
);
2180 snd_pcm_release_substream(substream
);
2182 mutex_unlock(&pcm
->open_mutex
);
2183 wake_up(&pcm
->open_wait
);
2184 module_put(pcm
->card
->module
);
2185 snd_card_file_remove(pcm
->card
, file
);
2189 static snd_pcm_sframes_t
snd_pcm_playback_rewind(struct snd_pcm_substream
*substream
,
2190 snd_pcm_uframes_t frames
)
2192 struct snd_pcm_runtime
*runtime
= substream
->runtime
;
2193 snd_pcm_sframes_t appl_ptr
;
2194 snd_pcm_sframes_t ret
;
2195 snd_pcm_sframes_t hw_avail
;
2200 snd_pcm_stream_lock_irq(substream
);
2201 switch (runtime
->status
->state
) {
2202 case SNDRV_PCM_STATE_PREPARED
:
2204 case SNDRV_PCM_STATE_DRAINING
:
2205 case SNDRV_PCM_STATE_RUNNING
:
2206 if (snd_pcm_update_hw_ptr(substream
) >= 0)
2209 case SNDRV_PCM_STATE_XRUN
:
2217 hw_avail
= snd_pcm_playback_hw_avail(runtime
);
2218 if (hw_avail
<= 0) {
2222 if (frames
> (snd_pcm_uframes_t
)hw_avail
)
2224 appl_ptr
= runtime
->control
->appl_ptr
- frames
;
2226 appl_ptr
+= runtime
->boundary
;
2227 runtime
->control
->appl_ptr
= appl_ptr
;
2230 snd_pcm_stream_unlock_irq(substream
);
2234 static snd_pcm_sframes_t
snd_pcm_capture_rewind(struct snd_pcm_substream
*substream
,
2235 snd_pcm_uframes_t frames
)
2237 struct snd_pcm_runtime
*runtime
= substream
->runtime
;
2238 snd_pcm_sframes_t appl_ptr
;
2239 snd_pcm_sframes_t ret
;
2240 snd_pcm_sframes_t hw_avail
;
2245 snd_pcm_stream_lock_irq(substream
);
2246 switch (runtime
->status
->state
) {
2247 case SNDRV_PCM_STATE_PREPARED
:
2248 case SNDRV_PCM_STATE_DRAINING
:
2250 case SNDRV_PCM_STATE_RUNNING
:
2251 if (snd_pcm_update_hw_ptr(substream
) >= 0)
2254 case SNDRV_PCM_STATE_XRUN
:
2262 hw_avail
= snd_pcm_capture_hw_avail(runtime
);
2263 if (hw_avail
<= 0) {
2267 if (frames
> (snd_pcm_uframes_t
)hw_avail
)
2269 appl_ptr
= runtime
->control
->appl_ptr
- frames
;
2271 appl_ptr
+= runtime
->boundary
;
2272 runtime
->control
->appl_ptr
= appl_ptr
;
2275 snd_pcm_stream_unlock_irq(substream
);
2279 static snd_pcm_sframes_t
snd_pcm_playback_forward(struct snd_pcm_substream
*substream
,
2280 snd_pcm_uframes_t frames
)
2282 struct snd_pcm_runtime
*runtime
= substream
->runtime
;
2283 snd_pcm_sframes_t appl_ptr
;
2284 snd_pcm_sframes_t ret
;
2285 snd_pcm_sframes_t avail
;
2290 snd_pcm_stream_lock_irq(substream
);
2291 switch (runtime
->status
->state
) {
2292 case SNDRV_PCM_STATE_PREPARED
:
2293 case SNDRV_PCM_STATE_PAUSED
:
2295 case SNDRV_PCM_STATE_DRAINING
:
2296 case SNDRV_PCM_STATE_RUNNING
:
2297 if (snd_pcm_update_hw_ptr(substream
) >= 0)
2300 case SNDRV_PCM_STATE_XRUN
:
2308 avail
= snd_pcm_playback_avail(runtime
);
2313 if (frames
> (snd_pcm_uframes_t
)avail
)
2315 appl_ptr
= runtime
->control
->appl_ptr
+ frames
;
2316 if (appl_ptr
>= (snd_pcm_sframes_t
)runtime
->boundary
)
2317 appl_ptr
-= runtime
->boundary
;
2318 runtime
->control
->appl_ptr
= appl_ptr
;
2321 snd_pcm_stream_unlock_irq(substream
);
2325 static snd_pcm_sframes_t
snd_pcm_capture_forward(struct snd_pcm_substream
*substream
,
2326 snd_pcm_uframes_t frames
)
2328 struct snd_pcm_runtime
*runtime
= substream
->runtime
;
2329 snd_pcm_sframes_t appl_ptr
;
2330 snd_pcm_sframes_t ret
;
2331 snd_pcm_sframes_t avail
;
2336 snd_pcm_stream_lock_irq(substream
);
2337 switch (runtime
->status
->state
) {
2338 case SNDRV_PCM_STATE_PREPARED
:
2339 case SNDRV_PCM_STATE_DRAINING
:
2340 case SNDRV_PCM_STATE_PAUSED
:
2342 case SNDRV_PCM_STATE_RUNNING
:
2343 if (snd_pcm_update_hw_ptr(substream
) >= 0)
2346 case SNDRV_PCM_STATE_XRUN
:
2354 avail
= snd_pcm_capture_avail(runtime
);
2359 if (frames
> (snd_pcm_uframes_t
)avail
)
2361 appl_ptr
= runtime
->control
->appl_ptr
+ frames
;
2362 if (appl_ptr
>= (snd_pcm_sframes_t
)runtime
->boundary
)
2363 appl_ptr
-= runtime
->boundary
;
2364 runtime
->control
->appl_ptr
= appl_ptr
;
2367 snd_pcm_stream_unlock_irq(substream
);
2371 static int snd_pcm_hwsync(struct snd_pcm_substream
*substream
)
2373 struct snd_pcm_runtime
*runtime
= substream
->runtime
;
2376 snd_pcm_stream_lock_irq(substream
);
2377 switch (runtime
->status
->state
) {
2378 case SNDRV_PCM_STATE_DRAINING
:
2379 if (substream
->stream
== SNDRV_PCM_STREAM_CAPTURE
)
2381 case SNDRV_PCM_STATE_RUNNING
:
2382 if ((err
= snd_pcm_update_hw_ptr(substream
)) < 0)
2385 case SNDRV_PCM_STATE_PREPARED
:
2386 case SNDRV_PCM_STATE_SUSPENDED
:
2389 case SNDRV_PCM_STATE_XRUN
:
2397 snd_pcm_stream_unlock_irq(substream
);
2401 static int snd_pcm_delay(struct snd_pcm_substream
*substream
,
2402 snd_pcm_sframes_t __user
*res
)
2404 struct snd_pcm_runtime
*runtime
= substream
->runtime
;
2406 snd_pcm_sframes_t n
= 0;
2408 snd_pcm_stream_lock_irq(substream
);
2409 switch (runtime
->status
->state
) {
2410 case SNDRV_PCM_STATE_DRAINING
:
2411 if (substream
->stream
== SNDRV_PCM_STREAM_CAPTURE
)
2413 case SNDRV_PCM_STATE_RUNNING
:
2414 if ((err
= snd_pcm_update_hw_ptr(substream
)) < 0)
2417 case SNDRV_PCM_STATE_PREPARED
:
2418 case SNDRV_PCM_STATE_SUSPENDED
:
2420 if (substream
->stream
== SNDRV_PCM_STREAM_PLAYBACK
)
2421 n
= snd_pcm_playback_hw_avail(runtime
);
2423 n
= snd_pcm_capture_avail(runtime
);
2425 case SNDRV_PCM_STATE_XRUN
:
2433 snd_pcm_stream_unlock_irq(substream
);
2435 if (put_user(n
, res
))
2440 static int snd_pcm_sync_ptr(struct snd_pcm_substream
*substream
,
2441 struct snd_pcm_sync_ptr __user
*_sync_ptr
)
2443 struct snd_pcm_runtime
*runtime
= substream
->runtime
;
2444 struct snd_pcm_sync_ptr sync_ptr
;
2445 volatile struct snd_pcm_mmap_status
*status
;
2446 volatile struct snd_pcm_mmap_control
*control
;
2449 memset(&sync_ptr
, 0, sizeof(sync_ptr
));
2450 if (get_user(sync_ptr
.flags
, (unsigned __user
*)&(_sync_ptr
->flags
)))
2452 if (copy_from_user(&sync_ptr
.c
.control
, &(_sync_ptr
->c
.control
), sizeof(struct snd_pcm_mmap_control
)))
2454 status
= runtime
->status
;
2455 control
= runtime
->control
;
2456 if (sync_ptr
.flags
& SNDRV_PCM_SYNC_PTR_HWSYNC
) {
2457 err
= snd_pcm_hwsync(substream
);
2461 snd_pcm_stream_lock_irq(substream
);
2462 if (!(sync_ptr
.flags
& SNDRV_PCM_SYNC_PTR_APPL
))
2463 control
->appl_ptr
= sync_ptr
.c
.control
.appl_ptr
;
2465 sync_ptr
.c
.control
.appl_ptr
= control
->appl_ptr
;
2466 if (!(sync_ptr
.flags
& SNDRV_PCM_SYNC_PTR_AVAIL_MIN
))
2467 control
->avail_min
= sync_ptr
.c
.control
.avail_min
;
2469 sync_ptr
.c
.control
.avail_min
= control
->avail_min
;
2470 sync_ptr
.s
.status
.state
= status
->state
;
2471 sync_ptr
.s
.status
.hw_ptr
= status
->hw_ptr
;
2472 sync_ptr
.s
.status
.tstamp
= status
->tstamp
;
2473 sync_ptr
.s
.status
.suspended_state
= status
->suspended_state
;
2474 snd_pcm_stream_unlock_irq(substream
);
2475 if (copy_to_user(_sync_ptr
, &sync_ptr
, sizeof(sync_ptr
)))
2480 static int snd_pcm_tstamp(struct snd_pcm_substream
*substream
, int __user
*_arg
)
2482 struct snd_pcm_runtime
*runtime
= substream
->runtime
;
2485 if (get_user(arg
, _arg
))
2487 if (arg
< 0 || arg
> SNDRV_PCM_TSTAMP_TYPE_LAST
)
2489 runtime
->tstamp_type
= SNDRV_PCM_TSTAMP_TYPE_GETTIMEOFDAY
;
2490 if (arg
== SNDRV_PCM_TSTAMP_TYPE_MONOTONIC
)
2491 runtime
->tstamp_type
= SNDRV_PCM_TSTAMP_TYPE_MONOTONIC
;
2495 static int snd_pcm_common_ioctl1(struct file
*file
,
2496 struct snd_pcm_substream
*substream
,
2497 unsigned int cmd
, void __user
*arg
)
2499 snd_assert(substream
!= NULL
, return -ENXIO
);
2502 case SNDRV_PCM_IOCTL_PVERSION
:
2503 return put_user(SNDRV_PCM_VERSION
, (int __user
*)arg
) ? -EFAULT
: 0;
2504 case SNDRV_PCM_IOCTL_INFO
:
2505 return snd_pcm_info_user(substream
, arg
);
2506 case SNDRV_PCM_IOCTL_TSTAMP
: /* just for compatibility */
2508 case SNDRV_PCM_IOCTL_TTSTAMP
:
2509 return snd_pcm_tstamp(substream
, arg
);
2510 case SNDRV_PCM_IOCTL_HW_REFINE
:
2511 return snd_pcm_hw_refine_user(substream
, arg
);
2512 case SNDRV_PCM_IOCTL_HW_PARAMS
:
2513 return snd_pcm_hw_params_user(substream
, arg
);
2514 case SNDRV_PCM_IOCTL_HW_FREE
:
2515 return snd_pcm_hw_free(substream
);
2516 case SNDRV_PCM_IOCTL_SW_PARAMS
:
2517 return snd_pcm_sw_params_user(substream
, arg
);
2518 case SNDRV_PCM_IOCTL_STATUS
:
2519 return snd_pcm_status_user(substream
, arg
);
2520 case SNDRV_PCM_IOCTL_CHANNEL_INFO
:
2521 return snd_pcm_channel_info_user(substream
, arg
);
2522 case SNDRV_PCM_IOCTL_PREPARE
:
2523 return snd_pcm_prepare(substream
, file
);
2524 case SNDRV_PCM_IOCTL_RESET
:
2525 return snd_pcm_reset(substream
);
2526 case SNDRV_PCM_IOCTL_START
:
2527 return snd_pcm_action_lock_irq(&snd_pcm_action_start
, substream
, SNDRV_PCM_STATE_RUNNING
);
2528 case SNDRV_PCM_IOCTL_LINK
:
2529 return snd_pcm_link(substream
, (int)(unsigned long) arg
);
2530 case SNDRV_PCM_IOCTL_UNLINK
:
2531 return snd_pcm_unlink(substream
);
2532 case SNDRV_PCM_IOCTL_RESUME
:
2533 return snd_pcm_resume(substream
);
2534 case SNDRV_PCM_IOCTL_XRUN
:
2535 return snd_pcm_xrun(substream
);
2536 case SNDRV_PCM_IOCTL_HWSYNC
:
2537 return snd_pcm_hwsync(substream
);
2538 case SNDRV_PCM_IOCTL_DELAY
:
2539 return snd_pcm_delay(substream
, arg
);
2540 case SNDRV_PCM_IOCTL_SYNC_PTR
:
2541 return snd_pcm_sync_ptr(substream
, arg
);
2542 #ifdef CONFIG_SND_SUPPORT_OLD_API
2543 case SNDRV_PCM_IOCTL_HW_REFINE_OLD
:
2544 return snd_pcm_hw_refine_old_user(substream
, arg
);
2545 case SNDRV_PCM_IOCTL_HW_PARAMS_OLD
:
2546 return snd_pcm_hw_params_old_user(substream
, arg
);
2548 case SNDRV_PCM_IOCTL_DRAIN
:
2549 return snd_pcm_drain(substream
);
2550 case SNDRV_PCM_IOCTL_DROP
:
2551 return snd_pcm_drop(substream
);
2552 case SNDRV_PCM_IOCTL_PAUSE
:
2555 snd_pcm_stream_lock_irq(substream
);
2556 res
= snd_pcm_pause(substream
, (int)(unsigned long)arg
);
2557 snd_pcm_stream_unlock_irq(substream
);
2561 snd_printd("unknown ioctl = 0x%x\n", cmd
);
2565 static int snd_pcm_playback_ioctl1(struct file
*file
,
2566 struct snd_pcm_substream
*substream
,
2567 unsigned int cmd
, void __user
*arg
)
2569 snd_assert(substream
!= NULL
, return -ENXIO
);
2570 snd_assert(substream
->stream
== SNDRV_PCM_STREAM_PLAYBACK
, return -EINVAL
);
2572 case SNDRV_PCM_IOCTL_WRITEI_FRAMES
:
2574 struct snd_xferi xferi
;
2575 struct snd_xferi __user
*_xferi
= arg
;
2576 struct snd_pcm_runtime
*runtime
= substream
->runtime
;
2577 snd_pcm_sframes_t result
;
2578 if (runtime
->status
->state
== SNDRV_PCM_STATE_OPEN
)
2580 if (put_user(0, &_xferi
->result
))
2582 if (copy_from_user(&xferi
, _xferi
, sizeof(xferi
)))
2584 result
= snd_pcm_lib_write(substream
, xferi
.buf
, xferi
.frames
);
2585 __put_user(result
, &_xferi
->result
);
2586 return result
< 0 ? result
: 0;
2588 case SNDRV_PCM_IOCTL_WRITEN_FRAMES
:
2590 struct snd_xfern xfern
;
2591 struct snd_xfern __user
*_xfern
= arg
;
2592 struct snd_pcm_runtime
*runtime
= substream
->runtime
;
2594 snd_pcm_sframes_t result
;
2595 if (runtime
->status
->state
== SNDRV_PCM_STATE_OPEN
)
2597 if (runtime
->channels
> 128)
2599 if (put_user(0, &_xfern
->result
))
2601 if (copy_from_user(&xfern
, _xfern
, sizeof(xfern
)))
2603 bufs
= kmalloc(sizeof(void *) * runtime
->channels
, GFP_KERNEL
);
2606 if (copy_from_user(bufs
, xfern
.bufs
, sizeof(void *) * runtime
->channels
)) {
2610 result
= snd_pcm_lib_writev(substream
, bufs
, xfern
.frames
);
2612 __put_user(result
, &_xfern
->result
);
2613 return result
< 0 ? result
: 0;
2615 case SNDRV_PCM_IOCTL_REWIND
:
2617 snd_pcm_uframes_t frames
;
2618 snd_pcm_uframes_t __user
*_frames
= arg
;
2619 snd_pcm_sframes_t result
;
2620 if (get_user(frames
, _frames
))
2622 if (put_user(0, _frames
))
2624 result
= snd_pcm_playback_rewind(substream
, frames
);
2625 __put_user(result
, _frames
);
2626 return result
< 0 ? result
: 0;
2628 case SNDRV_PCM_IOCTL_FORWARD
:
2630 snd_pcm_uframes_t frames
;
2631 snd_pcm_uframes_t __user
*_frames
= arg
;
2632 snd_pcm_sframes_t result
;
2633 if (get_user(frames
, _frames
))
2635 if (put_user(0, _frames
))
2637 result
= snd_pcm_playback_forward(substream
, frames
);
2638 __put_user(result
, _frames
);
2639 return result
< 0 ? result
: 0;
2642 return snd_pcm_common_ioctl1(file
, substream
, cmd
, arg
);
2645 static int snd_pcm_capture_ioctl1(struct file
*file
,
2646 struct snd_pcm_substream
*substream
,
2647 unsigned int cmd
, void __user
*arg
)
2649 snd_assert(substream
!= NULL
, return -ENXIO
);
2650 snd_assert(substream
->stream
== SNDRV_PCM_STREAM_CAPTURE
, return -EINVAL
);
2652 case SNDRV_PCM_IOCTL_READI_FRAMES
:
2654 struct snd_xferi xferi
;
2655 struct snd_xferi __user
*_xferi
= arg
;
2656 struct snd_pcm_runtime
*runtime
= substream
->runtime
;
2657 snd_pcm_sframes_t result
;
2658 if (runtime
->status
->state
== SNDRV_PCM_STATE_OPEN
)
2660 if (put_user(0, &_xferi
->result
))
2662 if (copy_from_user(&xferi
, _xferi
, sizeof(xferi
)))
2664 result
= snd_pcm_lib_read(substream
, xferi
.buf
, xferi
.frames
);
2665 __put_user(result
, &_xferi
->result
);
2666 return result
< 0 ? result
: 0;
2668 case SNDRV_PCM_IOCTL_READN_FRAMES
:
2670 struct snd_xfern xfern
;
2671 struct snd_xfern __user
*_xfern
= arg
;
2672 struct snd_pcm_runtime
*runtime
= substream
->runtime
;
2674 snd_pcm_sframes_t result
;
2675 if (runtime
->status
->state
== SNDRV_PCM_STATE_OPEN
)
2677 if (runtime
->channels
> 128)
2679 if (put_user(0, &_xfern
->result
))
2681 if (copy_from_user(&xfern
, _xfern
, sizeof(xfern
)))
2683 bufs
= kmalloc(sizeof(void *) * runtime
->channels
, GFP_KERNEL
);
2686 if (copy_from_user(bufs
, xfern
.bufs
, sizeof(void *) * runtime
->channels
)) {
2690 result
= snd_pcm_lib_readv(substream
, bufs
, xfern
.frames
);
2692 __put_user(result
, &_xfern
->result
);
2693 return result
< 0 ? result
: 0;
2695 case SNDRV_PCM_IOCTL_REWIND
:
2697 snd_pcm_uframes_t frames
;
2698 snd_pcm_uframes_t __user
*_frames
= arg
;
2699 snd_pcm_sframes_t result
;
2700 if (get_user(frames
, _frames
))
2702 if (put_user(0, _frames
))
2704 result
= snd_pcm_capture_rewind(substream
, frames
);
2705 __put_user(result
, _frames
);
2706 return result
< 0 ? result
: 0;
2708 case SNDRV_PCM_IOCTL_FORWARD
:
2710 snd_pcm_uframes_t frames
;
2711 snd_pcm_uframes_t __user
*_frames
= arg
;
2712 snd_pcm_sframes_t result
;
2713 if (get_user(frames
, _frames
))
2715 if (put_user(0, _frames
))
2717 result
= snd_pcm_capture_forward(substream
, frames
);
2718 __put_user(result
, _frames
);
2719 return result
< 0 ? result
: 0;
2722 return snd_pcm_common_ioctl1(file
, substream
, cmd
, arg
);
2725 static long snd_pcm_playback_ioctl(struct file
*file
, unsigned int cmd
,
2728 struct snd_pcm_file
*pcm_file
;
2730 pcm_file
= file
->private_data
;
2732 if (((cmd
>> 8) & 0xff) != 'A')
2735 return snd_pcm_playback_ioctl1(file
, pcm_file
->substream
, cmd
,
2736 (void __user
*)arg
);
2739 static long snd_pcm_capture_ioctl(struct file
*file
, unsigned int cmd
,
2742 struct snd_pcm_file
*pcm_file
;
2744 pcm_file
= file
->private_data
;
2746 if (((cmd
>> 8) & 0xff) != 'A')
2749 return snd_pcm_capture_ioctl1(file
, pcm_file
->substream
, cmd
,
2750 (void __user
*)arg
);
2753 int snd_pcm_kernel_ioctl(struct snd_pcm_substream
*substream
,
2754 unsigned int cmd
, void *arg
)
2759 fs
= snd_enter_user();
2760 switch (substream
->stream
) {
2761 case SNDRV_PCM_STREAM_PLAYBACK
:
2762 result
= snd_pcm_playback_ioctl1(NULL
, substream
, cmd
,
2763 (void __user
*)arg
);
2765 case SNDRV_PCM_STREAM_CAPTURE
:
2766 result
= snd_pcm_capture_ioctl1(NULL
, substream
, cmd
,
2767 (void __user
*)arg
);
2777 EXPORT_SYMBOL(snd_pcm_kernel_ioctl
);
2779 static ssize_t
snd_pcm_read(struct file
*file
, char __user
*buf
, size_t count
,
2782 struct snd_pcm_file
*pcm_file
;
2783 struct snd_pcm_substream
*substream
;
2784 struct snd_pcm_runtime
*runtime
;
2785 snd_pcm_sframes_t result
;
2787 pcm_file
= file
->private_data
;
2788 substream
= pcm_file
->substream
;
2789 snd_assert(substream
!= NULL
, return -ENXIO
);
2790 runtime
= substream
->runtime
;
2791 if (runtime
->status
->state
== SNDRV_PCM_STATE_OPEN
)
2793 if (!frame_aligned(runtime
, count
))
2795 count
= bytes_to_frames(runtime
, count
);
2796 result
= snd_pcm_lib_read(substream
, buf
, count
);
2798 result
= frames_to_bytes(runtime
, result
);
2802 static ssize_t
snd_pcm_write(struct file
*file
, const char __user
*buf
,
2803 size_t count
, loff_t
* offset
)
2805 struct snd_pcm_file
*pcm_file
;
2806 struct snd_pcm_substream
*substream
;
2807 struct snd_pcm_runtime
*runtime
;
2808 snd_pcm_sframes_t result
;
2810 pcm_file
= file
->private_data
;
2811 substream
= pcm_file
->substream
;
2812 snd_assert(substream
!= NULL
, result
= -ENXIO
; goto end
);
2813 runtime
= substream
->runtime
;
2814 if (runtime
->status
->state
== SNDRV_PCM_STATE_OPEN
) {
2818 if (!frame_aligned(runtime
, count
)) {
2822 count
= bytes_to_frames(runtime
, count
);
2823 result
= snd_pcm_lib_write(substream
, buf
, count
);
2825 result
= frames_to_bytes(runtime
, result
);
2830 static ssize_t
snd_pcm_aio_read(struct kiocb
*iocb
, const struct iovec
*iov
,
2831 unsigned long nr_segs
, loff_t pos
)
2834 struct snd_pcm_file
*pcm_file
;
2835 struct snd_pcm_substream
*substream
;
2836 struct snd_pcm_runtime
*runtime
;
2837 snd_pcm_sframes_t result
;
2840 snd_pcm_uframes_t frames
;
2842 pcm_file
= iocb
->ki_filp
->private_data
;
2843 substream
= pcm_file
->substream
;
2844 snd_assert(substream
!= NULL
, return -ENXIO
);
2845 runtime
= substream
->runtime
;
2846 if (runtime
->status
->state
== SNDRV_PCM_STATE_OPEN
)
2848 if (nr_segs
> 1024 || nr_segs
!= runtime
->channels
)
2850 if (!frame_aligned(runtime
, iov
->iov_len
))
2852 frames
= bytes_to_samples(runtime
, iov
->iov_len
);
2853 bufs
= kmalloc(sizeof(void *) * nr_segs
, GFP_KERNEL
);
2856 for (i
= 0; i
< nr_segs
; ++i
)
2857 bufs
[i
] = iov
[i
].iov_base
;
2858 result
= snd_pcm_lib_readv(substream
, bufs
, frames
);
2860 result
= frames_to_bytes(runtime
, result
);
2865 static ssize_t
snd_pcm_aio_write(struct kiocb
*iocb
, const struct iovec
*iov
,
2866 unsigned long nr_segs
, loff_t pos
)
2868 struct snd_pcm_file
*pcm_file
;
2869 struct snd_pcm_substream
*substream
;
2870 struct snd_pcm_runtime
*runtime
;
2871 snd_pcm_sframes_t result
;
2874 snd_pcm_uframes_t frames
;
2876 pcm_file
= iocb
->ki_filp
->private_data
;
2877 substream
= pcm_file
->substream
;
2878 snd_assert(substream
!= NULL
, result
= -ENXIO
; goto end
);
2879 runtime
= substream
->runtime
;
2880 if (runtime
->status
->state
== SNDRV_PCM_STATE_OPEN
) {
2884 if (nr_segs
> 128 || nr_segs
!= runtime
->channels
||
2885 !frame_aligned(runtime
, iov
->iov_len
)) {
2889 frames
= bytes_to_samples(runtime
, iov
->iov_len
);
2890 bufs
= kmalloc(sizeof(void *) * nr_segs
, GFP_KERNEL
);
2893 for (i
= 0; i
< nr_segs
; ++i
)
2894 bufs
[i
] = iov
[i
].iov_base
;
2895 result
= snd_pcm_lib_writev(substream
, bufs
, frames
);
2897 result
= frames_to_bytes(runtime
, result
);
2903 static unsigned int snd_pcm_playback_poll(struct file
*file
, poll_table
* wait
)
2905 struct snd_pcm_file
*pcm_file
;
2906 struct snd_pcm_substream
*substream
;
2907 struct snd_pcm_runtime
*runtime
;
2909 snd_pcm_uframes_t avail
;
2911 pcm_file
= file
->private_data
;
2913 substream
= pcm_file
->substream
;
2914 snd_assert(substream
!= NULL
, return -ENXIO
);
2915 runtime
= substream
->runtime
;
2917 poll_wait(file
, &runtime
->sleep
, wait
);
2919 snd_pcm_stream_lock_irq(substream
);
2920 avail
= snd_pcm_playback_avail(runtime
);
2921 switch (runtime
->status
->state
) {
2922 case SNDRV_PCM_STATE_RUNNING
:
2923 case SNDRV_PCM_STATE_PREPARED
:
2924 case SNDRV_PCM_STATE_PAUSED
:
2925 if (avail
>= runtime
->control
->avail_min
) {
2926 mask
= POLLOUT
| POLLWRNORM
;
2930 case SNDRV_PCM_STATE_DRAINING
:
2934 mask
= POLLOUT
| POLLWRNORM
| POLLERR
;
2937 snd_pcm_stream_unlock_irq(substream
);
2941 static unsigned int snd_pcm_capture_poll(struct file
*file
, poll_table
* wait
)
2943 struct snd_pcm_file
*pcm_file
;
2944 struct snd_pcm_substream
*substream
;
2945 struct snd_pcm_runtime
*runtime
;
2947 snd_pcm_uframes_t avail
;
2949 pcm_file
= file
->private_data
;
2951 substream
= pcm_file
->substream
;
2952 snd_assert(substream
!= NULL
, return -ENXIO
);
2953 runtime
= substream
->runtime
;
2955 poll_wait(file
, &runtime
->sleep
, wait
);
2957 snd_pcm_stream_lock_irq(substream
);
2958 avail
= snd_pcm_capture_avail(runtime
);
2959 switch (runtime
->status
->state
) {
2960 case SNDRV_PCM_STATE_RUNNING
:
2961 case SNDRV_PCM_STATE_PREPARED
:
2962 case SNDRV_PCM_STATE_PAUSED
:
2963 if (avail
>= runtime
->control
->avail_min
) {
2964 mask
= POLLIN
| POLLRDNORM
;
2969 case SNDRV_PCM_STATE_DRAINING
:
2971 mask
= POLLIN
| POLLRDNORM
;
2976 mask
= POLLIN
| POLLRDNORM
| POLLERR
;
2979 snd_pcm_stream_unlock_irq(substream
);
2988 * Only on coherent architectures, we can mmap the status and the control records
2989 * for effcient data transfer. On others, we have to use HWSYNC ioctl...
2991 #if defined(CONFIG_X86) || defined(CONFIG_PPC) || defined(CONFIG_ALPHA)
2993 * mmap status record
2995 static int snd_pcm_mmap_status_fault(struct vm_area_struct
*area
,
2996 struct vm_fault
*vmf
)
2998 struct snd_pcm_substream
*substream
= area
->vm_private_data
;
2999 struct snd_pcm_runtime
*runtime
;
3001 if (substream
== NULL
)
3002 return VM_FAULT_SIGBUS
;
3003 runtime
= substream
->runtime
;
3004 vmf
->page
= virt_to_page(runtime
->status
);
3005 get_page(vmf
->page
);
3009 static struct vm_operations_struct snd_pcm_vm_ops_status
=
3011 .fault
= snd_pcm_mmap_status_fault
,
3014 static int snd_pcm_mmap_status(struct snd_pcm_substream
*substream
, struct file
*file
,
3015 struct vm_area_struct
*area
)
3017 struct snd_pcm_runtime
*runtime
;
3019 if (!(area
->vm_flags
& VM_READ
))
3021 runtime
= substream
->runtime
;
3022 snd_assert(runtime
!= NULL
, return -EAGAIN
);
3023 size
= area
->vm_end
- area
->vm_start
;
3024 if (size
!= PAGE_ALIGN(sizeof(struct snd_pcm_mmap_status
)))
3026 area
->vm_ops
= &snd_pcm_vm_ops_status
;
3027 area
->vm_private_data
= substream
;
3028 area
->vm_flags
|= VM_RESERVED
;
3033 * mmap control record
3035 static int snd_pcm_mmap_control_fault(struct vm_area_struct
*area
,
3036 struct vm_fault
*vmf
)
3038 struct snd_pcm_substream
*substream
= area
->vm_private_data
;
3039 struct snd_pcm_runtime
*runtime
;
3041 if (substream
== NULL
)
3042 return VM_FAULT_SIGBUS
;
3043 runtime
= substream
->runtime
;
3044 vmf
->page
= virt_to_page(runtime
->control
);
3045 get_page(vmf
->page
);
3049 static struct vm_operations_struct snd_pcm_vm_ops_control
=
3051 .fault
= snd_pcm_mmap_control_fault
,
3054 static int snd_pcm_mmap_control(struct snd_pcm_substream
*substream
, struct file
*file
,
3055 struct vm_area_struct
*area
)
3057 struct snd_pcm_runtime
*runtime
;
3059 if (!(area
->vm_flags
& VM_READ
))
3061 runtime
= substream
->runtime
;
3062 snd_assert(runtime
!= NULL
, return -EAGAIN
);
3063 size
= area
->vm_end
- area
->vm_start
;
3064 if (size
!= PAGE_ALIGN(sizeof(struct snd_pcm_mmap_control
)))
3066 area
->vm_ops
= &snd_pcm_vm_ops_control
;
3067 area
->vm_private_data
= substream
;
3068 area
->vm_flags
|= VM_RESERVED
;
3071 #else /* ! coherent mmap */
3073 * don't support mmap for status and control records.
3075 static int snd_pcm_mmap_status(struct snd_pcm_substream
*substream
, struct file
*file
,
3076 struct vm_area_struct
*area
)
3080 static int snd_pcm_mmap_control(struct snd_pcm_substream
*substream
, struct file
*file
,
3081 struct vm_area_struct
*area
)
3085 #endif /* coherent mmap */
3088 * fault callback for mmapping a RAM page
3090 static int snd_pcm_mmap_data_fault(struct vm_area_struct
*area
,
3091 struct vm_fault
*vmf
)
3093 struct snd_pcm_substream
*substream
= area
->vm_private_data
;
3094 struct snd_pcm_runtime
*runtime
;
3095 unsigned long offset
;
3100 if (substream
== NULL
)
3101 return VM_FAULT_SIGBUS
;
3102 runtime
= substream
->runtime
;
3103 offset
= vmf
->pgoff
<< PAGE_SHIFT
;
3104 dma_bytes
= PAGE_ALIGN(runtime
->dma_bytes
);
3105 if (offset
> dma_bytes
- PAGE_SIZE
)
3106 return VM_FAULT_SIGBUS
;
3107 if (substream
->ops
->page
) {
3108 page
= substream
->ops
->page(substream
, offset
);
3110 return VM_FAULT_SIGBUS
;
3112 vaddr
= runtime
->dma_area
+ offset
;
3113 page
= virt_to_page(vaddr
);
3120 static struct vm_operations_struct snd_pcm_vm_ops_data
=
3122 .open
= snd_pcm_mmap_data_open
,
3123 .close
= snd_pcm_mmap_data_close
,
3124 .fault
= snd_pcm_mmap_data_fault
,
3128 * mmap the DMA buffer on RAM
3130 static int snd_pcm_default_mmap(struct snd_pcm_substream
*substream
,
3131 struct vm_area_struct
*area
)
3133 area
->vm_ops
= &snd_pcm_vm_ops_data
;
3134 area
->vm_private_data
= substream
;
3135 area
->vm_flags
|= VM_RESERVED
;
3136 atomic_inc(&substream
->mmap_count
);
3141 * mmap the DMA buffer on I/O memory area
3143 #if SNDRV_PCM_INFO_MMAP_IOMEM
3144 static struct vm_operations_struct snd_pcm_vm_ops_data_mmio
=
3146 .open
= snd_pcm_mmap_data_open
,
3147 .close
= snd_pcm_mmap_data_close
,
3150 int snd_pcm_lib_mmap_iomem(struct snd_pcm_substream
*substream
,
3151 struct vm_area_struct
*area
)
3154 unsigned long offset
;
3156 #ifdef pgprot_noncached
3157 area
->vm_page_prot
= pgprot_noncached(area
->vm_page_prot
);
3159 area
->vm_ops
= &snd_pcm_vm_ops_data_mmio
;
3160 area
->vm_private_data
= substream
;
3161 area
->vm_flags
|= VM_IO
;
3162 size
= area
->vm_end
- area
->vm_start
;
3163 offset
= area
->vm_pgoff
<< PAGE_SHIFT
;
3164 if (io_remap_pfn_range(area
, area
->vm_start
,
3165 (substream
->runtime
->dma_addr
+ offset
) >> PAGE_SHIFT
,
3166 size
, area
->vm_page_prot
))
3168 atomic_inc(&substream
->mmap_count
);
3172 EXPORT_SYMBOL(snd_pcm_lib_mmap_iomem
);
3173 #endif /* SNDRV_PCM_INFO_MMAP */
3178 int snd_pcm_mmap_data(struct snd_pcm_substream
*substream
, struct file
*file
,
3179 struct vm_area_struct
*area
)
3181 struct snd_pcm_runtime
*runtime
;
3183 unsigned long offset
;
3186 if (substream
->stream
== SNDRV_PCM_STREAM_PLAYBACK
) {
3187 if (!(area
->vm_flags
& (VM_WRITE
|VM_READ
)))
3190 if (!(area
->vm_flags
& VM_READ
))
3193 runtime
= substream
->runtime
;
3194 snd_assert(runtime
!= NULL
, return -EAGAIN
);
3195 if (runtime
->status
->state
== SNDRV_PCM_STATE_OPEN
)
3197 if (!(runtime
->info
& SNDRV_PCM_INFO_MMAP
))
3199 if (runtime
->access
== SNDRV_PCM_ACCESS_RW_INTERLEAVED
||
3200 runtime
->access
== SNDRV_PCM_ACCESS_RW_NONINTERLEAVED
)
3202 size
= area
->vm_end
- area
->vm_start
;
3203 offset
= area
->vm_pgoff
<< PAGE_SHIFT
;
3204 dma_bytes
= PAGE_ALIGN(runtime
->dma_bytes
);
3205 if ((size_t)size
> dma_bytes
)
3207 if (offset
> dma_bytes
- size
)
3210 if (substream
->ops
->mmap
)
3211 return substream
->ops
->mmap(substream
, area
);
3213 return snd_pcm_default_mmap(substream
, area
);
3216 EXPORT_SYMBOL(snd_pcm_mmap_data
);
3218 static int snd_pcm_mmap(struct file
*file
, struct vm_area_struct
*area
)
3220 struct snd_pcm_file
* pcm_file
;
3221 struct snd_pcm_substream
*substream
;
3222 unsigned long offset
;
3224 pcm_file
= file
->private_data
;
3225 substream
= pcm_file
->substream
;
3226 snd_assert(substream
!= NULL
, return -ENXIO
);
3228 offset
= area
->vm_pgoff
<< PAGE_SHIFT
;
3230 case SNDRV_PCM_MMAP_OFFSET_STATUS
:
3231 if (pcm_file
->no_compat_mmap
)
3233 return snd_pcm_mmap_status(substream
, file
, area
);
3234 case SNDRV_PCM_MMAP_OFFSET_CONTROL
:
3235 if (pcm_file
->no_compat_mmap
)
3237 return snd_pcm_mmap_control(substream
, file
, area
);
3239 return snd_pcm_mmap_data(substream
, file
, area
);
3244 static int snd_pcm_fasync(int fd
, struct file
* file
, int on
)
3246 struct snd_pcm_file
* pcm_file
;
3247 struct snd_pcm_substream
*substream
;
3248 struct snd_pcm_runtime
*runtime
;
3251 pcm_file
= file
->private_data
;
3252 substream
= pcm_file
->substream
;
3253 snd_assert(substream
!= NULL
, return -ENXIO
);
3254 runtime
= substream
->runtime
;
3256 err
= fasync_helper(fd
, file
, on
, &runtime
->fasync
);
3265 #ifdef CONFIG_COMPAT
3266 #include "pcm_compat.c"
3268 #define snd_pcm_ioctl_compat NULL
3272 * To be removed helpers to keep binary compatibility
3275 #ifdef CONFIG_SND_SUPPORT_OLD_API
3276 #define __OLD_TO_NEW_MASK(x) ((x&7)|((x&0x07fffff8)<<5))
3277 #define __NEW_TO_OLD_MASK(x) ((x&7)|((x&0xffffff00)>>5))
3279 static void snd_pcm_hw_convert_from_old_params(struct snd_pcm_hw_params
*params
,
3280 struct snd_pcm_hw_params_old
*oparams
)
3284 memset(params
, 0, sizeof(*params
));
3285 params
->flags
= oparams
->flags
;
3286 for (i
= 0; i
< ARRAY_SIZE(oparams
->masks
); i
++)
3287 params
->masks
[i
].bits
[0] = oparams
->masks
[i
];
3288 memcpy(params
->intervals
, oparams
->intervals
, sizeof(oparams
->intervals
));
3289 params
->rmask
= __OLD_TO_NEW_MASK(oparams
->rmask
);
3290 params
->cmask
= __OLD_TO_NEW_MASK(oparams
->cmask
);
3291 params
->info
= oparams
->info
;
3292 params
->msbits
= oparams
->msbits
;
3293 params
->rate_num
= oparams
->rate_num
;
3294 params
->rate_den
= oparams
->rate_den
;
3295 params
->fifo_size
= oparams
->fifo_size
;
3298 static void snd_pcm_hw_convert_to_old_params(struct snd_pcm_hw_params_old
*oparams
,
3299 struct snd_pcm_hw_params
*params
)
3303 memset(oparams
, 0, sizeof(*oparams
));
3304 oparams
->flags
= params
->flags
;
3305 for (i
= 0; i
< ARRAY_SIZE(oparams
->masks
); i
++)
3306 oparams
->masks
[i
] = params
->masks
[i
].bits
[0];
3307 memcpy(oparams
->intervals
, params
->intervals
, sizeof(oparams
->intervals
));
3308 oparams
->rmask
= __NEW_TO_OLD_MASK(params
->rmask
);
3309 oparams
->cmask
= __NEW_TO_OLD_MASK(params
->cmask
);
3310 oparams
->info
= params
->info
;
3311 oparams
->msbits
= params
->msbits
;
3312 oparams
->rate_num
= params
->rate_num
;
3313 oparams
->rate_den
= params
->rate_den
;
3314 oparams
->fifo_size
= params
->fifo_size
;
3317 static int snd_pcm_hw_refine_old_user(struct snd_pcm_substream
*substream
,
3318 struct snd_pcm_hw_params_old __user
* _oparams
)
3320 struct snd_pcm_hw_params
*params
;
3321 struct snd_pcm_hw_params_old
*oparams
= NULL
;
3324 params
= kmalloc(sizeof(*params
), GFP_KERNEL
);
3329 oparams
= kmalloc(sizeof(*oparams
), GFP_KERNEL
);
3335 if (copy_from_user(oparams
, _oparams
, sizeof(*oparams
))) {
3339 snd_pcm_hw_convert_from_old_params(params
, oparams
);
3340 err
= snd_pcm_hw_refine(substream
, params
);
3341 snd_pcm_hw_convert_to_old_params(oparams
, params
);
3342 if (copy_to_user(_oparams
, oparams
, sizeof(*oparams
))) {
3352 static int snd_pcm_hw_params_old_user(struct snd_pcm_substream
*substream
,
3353 struct snd_pcm_hw_params_old __user
* _oparams
)
3355 struct snd_pcm_hw_params
*params
;
3356 struct snd_pcm_hw_params_old
*oparams
= NULL
;
3359 params
= kmalloc(sizeof(*params
), GFP_KERNEL
);
3364 oparams
= kmalloc(sizeof(*oparams
), GFP_KERNEL
);
3369 if (copy_from_user(oparams
, _oparams
, sizeof(*oparams
))) {
3373 snd_pcm_hw_convert_from_old_params(params
, oparams
);
3374 err
= snd_pcm_hw_params(substream
, params
);
3375 snd_pcm_hw_convert_to_old_params(oparams
, params
);
3376 if (copy_to_user(_oparams
, oparams
, sizeof(*oparams
))) {
3385 #endif /* CONFIG_SND_SUPPORT_OLD_API */
3391 const struct file_operations snd_pcm_f_ops
[2] = {
3393 .owner
= THIS_MODULE
,
3394 .write
= snd_pcm_write
,
3395 .aio_write
= snd_pcm_aio_write
,
3396 .open
= snd_pcm_playback_open
,
3397 .release
= snd_pcm_release
,
3398 .poll
= snd_pcm_playback_poll
,
3399 .unlocked_ioctl
= snd_pcm_playback_ioctl
,
3400 .compat_ioctl
= snd_pcm_ioctl_compat
,
3401 .mmap
= snd_pcm_mmap
,
3402 .fasync
= snd_pcm_fasync
,
3405 .owner
= THIS_MODULE
,
3406 .read
= snd_pcm_read
,
3407 .aio_read
= snd_pcm_aio_read
,
3408 .open
= snd_pcm_capture_open
,
3409 .release
= snd_pcm_release
,
3410 .poll
= snd_pcm_capture_poll
,
3411 .unlocked_ioctl
= snd_pcm_capture_ioctl
,
3412 .compat_ioctl
= snd_pcm_ioctl_compat
,
3413 .mmap
= snd_pcm_mmap
,
3414 .fasync
= snd_pcm_fasync
,