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/module.h>
24 #include <linux/file.h>
25 #include <linux/slab.h>
26 #include <linux/time.h>
27 #include <linux/pm_qos.h>
28 #include <linux/aio.h>
29 #include <linux/dma-mapping.h>
30 #include <sound/core.h>
31 #include <sound/control.h>
32 #include <sound/info.h>
33 #include <sound/pcm.h>
34 #include <sound/pcm_params.h>
35 #include <sound/timer.h>
36 #include <sound/minors.h>
38 #if defined(CONFIG_MIPS) && defined(CONFIG_DMA_NONCOHERENT)
39 #include <dma-coherence.h>
46 struct snd_pcm_hw_params_old
{
48 unsigned int masks
[SNDRV_PCM_HW_PARAM_SUBFORMAT
-
49 SNDRV_PCM_HW_PARAM_ACCESS
+ 1];
50 struct snd_interval intervals
[SNDRV_PCM_HW_PARAM_TICK_TIME
-
51 SNDRV_PCM_HW_PARAM_SAMPLE_BITS
+ 1];
56 unsigned int rate_num
;
57 unsigned int rate_den
;
58 snd_pcm_uframes_t fifo_size
;
59 unsigned char reserved
[64];
62 #ifdef CONFIG_SND_SUPPORT_OLD_API
63 #define SNDRV_PCM_IOCTL_HW_REFINE_OLD _IOWR('A', 0x10, struct snd_pcm_hw_params_old)
64 #define SNDRV_PCM_IOCTL_HW_PARAMS_OLD _IOWR('A', 0x11, struct snd_pcm_hw_params_old)
66 static int snd_pcm_hw_refine_old_user(struct snd_pcm_substream
*substream
,
67 struct snd_pcm_hw_params_old __user
* _oparams
);
68 static int snd_pcm_hw_params_old_user(struct snd_pcm_substream
*substream
,
69 struct snd_pcm_hw_params_old __user
* _oparams
);
71 static int snd_pcm_open(struct file
*file
, struct snd_pcm
*pcm
, int stream
);
77 static DEFINE_RWLOCK(snd_pcm_link_rwlock
);
78 static DECLARE_RWSEM(snd_pcm_link_rwsem
);
80 void snd_pcm_stream_lock(struct snd_pcm_substream
*substream
)
82 if (substream
->pcm
->nonatomic
) {
83 down_read(&snd_pcm_link_rwsem
);
84 mutex_lock(&substream
->self_group
.mutex
);
86 read_lock(&snd_pcm_link_rwlock
);
87 spin_lock(&substream
->self_group
.lock
);
90 EXPORT_SYMBOL_GPL(snd_pcm_stream_lock
);
92 void snd_pcm_stream_unlock(struct snd_pcm_substream
*substream
)
94 if (substream
->pcm
->nonatomic
) {
95 mutex_unlock(&substream
->self_group
.mutex
);
96 up_read(&snd_pcm_link_rwsem
);
98 spin_unlock(&substream
->self_group
.lock
);
99 read_unlock(&snd_pcm_link_rwlock
);
102 EXPORT_SYMBOL_GPL(snd_pcm_stream_unlock
);
104 void snd_pcm_stream_lock_irq(struct snd_pcm_substream
*substream
)
106 if (!substream
->pcm
->nonatomic
)
108 snd_pcm_stream_lock(substream
);
110 EXPORT_SYMBOL_GPL(snd_pcm_stream_lock_irq
);
112 void snd_pcm_stream_unlock_irq(struct snd_pcm_substream
*substream
)
114 snd_pcm_stream_unlock(substream
);
115 if (!substream
->pcm
->nonatomic
)
118 EXPORT_SYMBOL_GPL(snd_pcm_stream_unlock_irq
);
120 unsigned long _snd_pcm_stream_lock_irqsave(struct snd_pcm_substream
*substream
)
122 unsigned long flags
= 0;
123 if (!substream
->pcm
->nonatomic
)
124 local_irq_save(flags
);
125 snd_pcm_stream_lock(substream
);
128 EXPORT_SYMBOL_GPL(_snd_pcm_stream_lock_irqsave
);
130 void snd_pcm_stream_unlock_irqrestore(struct snd_pcm_substream
*substream
,
133 snd_pcm_stream_unlock(substream
);
134 if (!substream
->pcm
->nonatomic
)
135 local_irq_restore(flags
);
137 EXPORT_SYMBOL_GPL(snd_pcm_stream_unlock_irqrestore
);
139 static inline mm_segment_t
snd_enter_user(void)
141 mm_segment_t fs
= get_fs();
146 static inline void snd_leave_user(mm_segment_t fs
)
153 int snd_pcm_info(struct snd_pcm_substream
*substream
, struct snd_pcm_info
*info
)
155 struct snd_pcm_runtime
*runtime
;
156 struct snd_pcm
*pcm
= substream
->pcm
;
157 struct snd_pcm_str
*pstr
= substream
->pstr
;
159 memset(info
, 0, sizeof(*info
));
160 info
->card
= pcm
->card
->number
;
161 info
->device
= pcm
->device
;
162 info
->stream
= substream
->stream
;
163 info
->subdevice
= substream
->number
;
164 strlcpy(info
->id
, pcm
->id
, sizeof(info
->id
));
165 strlcpy(info
->name
, pcm
->name
, sizeof(info
->name
));
166 info
->dev_class
= pcm
->dev_class
;
167 info
->dev_subclass
= pcm
->dev_subclass
;
168 info
->subdevices_count
= pstr
->substream_count
;
169 info
->subdevices_avail
= pstr
->substream_count
- pstr
->substream_opened
;
170 strlcpy(info
->subname
, substream
->name
, sizeof(info
->subname
));
171 runtime
= substream
->runtime
;
172 /* AB: FIXME!!! This is definitely nonsense */
174 info
->sync
= runtime
->sync
;
175 substream
->ops
->ioctl(substream
, SNDRV_PCM_IOCTL1_INFO
, info
);
180 int snd_pcm_info_user(struct snd_pcm_substream
*substream
,
181 struct snd_pcm_info __user
* _info
)
183 struct snd_pcm_info
*info
;
186 info
= kmalloc(sizeof(*info
), GFP_KERNEL
);
189 err
= snd_pcm_info(substream
, info
);
191 if (copy_to_user(_info
, info
, sizeof(*info
)))
201 #define HW_PARAM(v) [SNDRV_PCM_HW_PARAM_##v] = #v
202 static const char * const snd_pcm_hw_param_names
[] = {
206 HW_PARAM(SAMPLE_BITS
),
207 HW_PARAM(FRAME_BITS
),
210 HW_PARAM(PERIOD_TIME
),
211 HW_PARAM(PERIOD_SIZE
),
212 HW_PARAM(PERIOD_BYTES
),
214 HW_PARAM(BUFFER_TIME
),
215 HW_PARAM(BUFFER_SIZE
),
216 HW_PARAM(BUFFER_BYTES
),
221 int snd_pcm_hw_refine(struct snd_pcm_substream
*substream
,
222 struct snd_pcm_hw_params
*params
)
225 struct snd_pcm_hardware
*hw
;
226 struct snd_interval
*i
= NULL
;
227 struct snd_mask
*m
= NULL
;
228 struct snd_pcm_hw_constraints
*constrs
= &substream
->runtime
->hw_constraints
;
229 unsigned int rstamps
[constrs
->rules_num
];
230 unsigned int vstamps
[SNDRV_PCM_HW_PARAM_LAST_INTERVAL
+ 1];
231 unsigned int stamp
= 2;
235 params
->fifo_size
= 0;
236 if (params
->rmask
& (1 << SNDRV_PCM_HW_PARAM_SAMPLE_BITS
))
238 if (params
->rmask
& (1 << SNDRV_PCM_HW_PARAM_RATE
)) {
239 params
->rate_num
= 0;
240 params
->rate_den
= 0;
243 for (k
= SNDRV_PCM_HW_PARAM_FIRST_MASK
; k
<= SNDRV_PCM_HW_PARAM_LAST_MASK
; k
++) {
244 m
= hw_param_mask(params
, k
);
245 if (snd_mask_empty(m
))
247 if (!(params
->rmask
& (1 << k
)))
250 pr_debug("%s = ", snd_pcm_hw_param_names
[k
]);
251 pr_cont("%04x%04x%04x%04x -> ", m
->bits
[3], m
->bits
[2], m
->bits
[1], m
->bits
[0]);
253 changed
= snd_mask_refine(m
, constrs_mask(constrs
, k
));
255 pr_cont("%04x%04x%04x%04x\n", m
->bits
[3], m
->bits
[2], m
->bits
[1], m
->bits
[0]);
258 params
->cmask
|= 1 << k
;
263 for (k
= SNDRV_PCM_HW_PARAM_FIRST_INTERVAL
; k
<= SNDRV_PCM_HW_PARAM_LAST_INTERVAL
; k
++) {
264 i
= hw_param_interval(params
, k
);
265 if (snd_interval_empty(i
))
267 if (!(params
->rmask
& (1 << k
)))
270 pr_debug("%s = ", snd_pcm_hw_param_names
[k
]);
275 i
->openmin
? '(' : '[', i
->min
,
276 i
->max
, i
->openmax
? ')' : ']');
279 changed
= snd_interval_refine(i
, constrs_interval(constrs
, k
));
284 pr_cont("%c%u %u%c\n",
285 i
->openmin
? '(' : '[', i
->min
,
286 i
->max
, i
->openmax
? ')' : ']');
289 params
->cmask
|= 1 << k
;
294 for (k
= 0; k
< constrs
->rules_num
; k
++)
296 for (k
= 0; k
<= SNDRV_PCM_HW_PARAM_LAST_INTERVAL
; k
++)
297 vstamps
[k
] = (params
->rmask
& (1 << k
)) ? 1 : 0;
300 for (k
= 0; k
< constrs
->rules_num
; k
++) {
301 struct snd_pcm_hw_rule
*r
= &constrs
->rules
[k
];
304 if (r
->cond
&& !(r
->cond
& params
->flags
))
306 for (d
= 0; r
->deps
[d
] >= 0; d
++) {
307 if (vstamps
[r
->deps
[d
]] > rstamps
[k
]) {
315 pr_debug("Rule %d [%p]: ", k
, r
->func
);
317 pr_cont("%s = ", snd_pcm_hw_param_names
[r
->var
]);
318 if (hw_is_mask(r
->var
)) {
319 m
= hw_param_mask(params
, r
->var
);
320 pr_cont("%x", *m
->bits
);
322 i
= hw_param_interval(params
, r
->var
);
327 i
->openmin
? '(' : '[', i
->min
,
328 i
->max
, i
->openmax
? ')' : ']');
332 changed
= r
->func(params
, r
);
336 if (hw_is_mask(r
->var
))
337 pr_cont("%x", *m
->bits
);
343 i
->openmin
? '(' : '[', i
->min
,
344 i
->max
, i
->openmax
? ')' : ']');
350 if (changed
&& r
->var
>= 0) {
351 params
->cmask
|= (1 << r
->var
);
352 vstamps
[r
->var
] = stamp
;
360 if (!params
->msbits
) {
361 i
= hw_param_interval(params
, SNDRV_PCM_HW_PARAM_SAMPLE_BITS
);
362 if (snd_interval_single(i
))
363 params
->msbits
= snd_interval_value(i
);
366 if (!params
->rate_den
) {
367 i
= hw_param_interval(params
, SNDRV_PCM_HW_PARAM_RATE
);
368 if (snd_interval_single(i
)) {
369 params
->rate_num
= snd_interval_value(i
);
370 params
->rate_den
= 1;
374 hw
= &substream
->runtime
->hw
;
376 params
->info
= hw
->info
& ~SNDRV_PCM_INFO_FIFO_IN_FRAMES
;
377 if (!params
->fifo_size
) {
378 m
= hw_param_mask(params
, SNDRV_PCM_HW_PARAM_FORMAT
);
379 i
= hw_param_interval(params
, SNDRV_PCM_HW_PARAM_CHANNELS
);
380 if (snd_mask_min(m
) == snd_mask_max(m
) &&
381 snd_interval_min(i
) == snd_interval_max(i
)) {
382 changed
= substream
->ops
->ioctl(substream
,
383 SNDRV_PCM_IOCTL1_FIFO_SIZE
, params
);
392 EXPORT_SYMBOL(snd_pcm_hw_refine
);
394 static int snd_pcm_hw_refine_user(struct snd_pcm_substream
*substream
,
395 struct snd_pcm_hw_params __user
* _params
)
397 struct snd_pcm_hw_params
*params
;
400 params
= memdup_user(_params
, sizeof(*params
));
402 return PTR_ERR(params
);
404 err
= snd_pcm_hw_refine(substream
, params
);
405 if (copy_to_user(_params
, params
, sizeof(*params
))) {
414 static int period_to_usecs(struct snd_pcm_runtime
*runtime
)
419 return -1; /* invalid */
421 /* take 75% of period time as the deadline */
422 usecs
= (750000 / runtime
->rate
) * runtime
->period_size
;
423 usecs
+= ((750000 % runtime
->rate
) * runtime
->period_size
) /
429 static void snd_pcm_set_state(struct snd_pcm_substream
*substream
, int state
)
431 snd_pcm_stream_lock_irq(substream
);
432 if (substream
->runtime
->status
->state
!= SNDRV_PCM_STATE_DISCONNECTED
)
433 substream
->runtime
->status
->state
= state
;
434 snd_pcm_stream_unlock_irq(substream
);
437 static int snd_pcm_hw_params(struct snd_pcm_substream
*substream
,
438 struct snd_pcm_hw_params
*params
)
440 struct snd_pcm_runtime
*runtime
;
443 snd_pcm_uframes_t frames
;
445 if (PCM_RUNTIME_CHECK(substream
))
447 runtime
= substream
->runtime
;
448 snd_pcm_stream_lock_irq(substream
);
449 switch (runtime
->status
->state
) {
450 case SNDRV_PCM_STATE_OPEN
:
451 case SNDRV_PCM_STATE_SETUP
:
452 case SNDRV_PCM_STATE_PREPARED
:
455 snd_pcm_stream_unlock_irq(substream
);
458 snd_pcm_stream_unlock_irq(substream
);
459 #if IS_ENABLED(CONFIG_SND_PCM_OSS)
460 if (!substream
->oss
.oss
)
462 if (atomic_read(&substream
->mmap_count
))
466 err
= snd_pcm_hw_refine(substream
, params
);
470 err
= snd_pcm_hw_params_choose(substream
, params
);
474 if (substream
->ops
->hw_params
!= NULL
) {
475 err
= substream
->ops
->hw_params(substream
, params
);
480 runtime
->access
= params_access(params
);
481 runtime
->format
= params_format(params
);
482 runtime
->subformat
= params_subformat(params
);
483 runtime
->channels
= params_channels(params
);
484 runtime
->rate
= params_rate(params
);
485 runtime
->period_size
= params_period_size(params
);
486 runtime
->periods
= params_periods(params
);
487 runtime
->buffer_size
= params_buffer_size(params
);
488 runtime
->info
= params
->info
;
489 runtime
->rate_num
= params
->rate_num
;
490 runtime
->rate_den
= params
->rate_den
;
491 runtime
->no_period_wakeup
=
492 (params
->info
& SNDRV_PCM_INFO_NO_PERIOD_WAKEUP
) &&
493 (params
->flags
& SNDRV_PCM_HW_PARAMS_NO_PERIOD_WAKEUP
);
495 bits
= snd_pcm_format_physical_width(runtime
->format
);
496 runtime
->sample_bits
= bits
;
497 bits
*= runtime
->channels
;
498 runtime
->frame_bits
= bits
;
500 while (bits
% 8 != 0) {
504 runtime
->byte_align
= bits
/ 8;
505 runtime
->min_align
= frames
;
507 /* Default sw params */
508 runtime
->tstamp_mode
= SNDRV_PCM_TSTAMP_NONE
;
509 runtime
->period_step
= 1;
510 runtime
->control
->avail_min
= runtime
->period_size
;
511 runtime
->start_threshold
= 1;
512 runtime
->stop_threshold
= runtime
->buffer_size
;
513 runtime
->silence_threshold
= 0;
514 runtime
->silence_size
= 0;
515 runtime
->boundary
= runtime
->buffer_size
;
516 while (runtime
->boundary
* 2 <= LONG_MAX
- runtime
->buffer_size
)
517 runtime
->boundary
*= 2;
519 snd_pcm_timer_resolution_change(substream
);
520 snd_pcm_set_state(substream
, SNDRV_PCM_STATE_SETUP
);
522 if (pm_qos_request_active(&substream
->latency_pm_qos_req
))
523 pm_qos_remove_request(&substream
->latency_pm_qos_req
);
524 if ((usecs
= period_to_usecs(runtime
)) >= 0)
525 pm_qos_add_request(&substream
->latency_pm_qos_req
,
526 PM_QOS_CPU_DMA_LATENCY
, usecs
);
529 /* hardware might be unusable from this time,
530 so we force application to retry to set
531 the correct hardware parameter settings */
532 snd_pcm_set_state(substream
, SNDRV_PCM_STATE_OPEN
);
533 if (substream
->ops
->hw_free
!= NULL
)
534 substream
->ops
->hw_free(substream
);
538 static int snd_pcm_hw_params_user(struct snd_pcm_substream
*substream
,
539 struct snd_pcm_hw_params __user
* _params
)
541 struct snd_pcm_hw_params
*params
;
544 params
= memdup_user(_params
, sizeof(*params
));
546 return PTR_ERR(params
);
548 err
= snd_pcm_hw_params(substream
, params
);
549 if (copy_to_user(_params
, params
, sizeof(*params
))) {
558 static int snd_pcm_hw_free(struct snd_pcm_substream
*substream
)
560 struct snd_pcm_runtime
*runtime
;
563 if (PCM_RUNTIME_CHECK(substream
))
565 runtime
= substream
->runtime
;
566 snd_pcm_stream_lock_irq(substream
);
567 switch (runtime
->status
->state
) {
568 case SNDRV_PCM_STATE_SETUP
:
569 case SNDRV_PCM_STATE_PREPARED
:
572 snd_pcm_stream_unlock_irq(substream
);
575 snd_pcm_stream_unlock_irq(substream
);
576 if (atomic_read(&substream
->mmap_count
))
578 if (substream
->ops
->hw_free
)
579 result
= substream
->ops
->hw_free(substream
);
580 snd_pcm_set_state(substream
, SNDRV_PCM_STATE_OPEN
);
581 pm_qos_remove_request(&substream
->latency_pm_qos_req
);
585 static int snd_pcm_sw_params(struct snd_pcm_substream
*substream
,
586 struct snd_pcm_sw_params
*params
)
588 struct snd_pcm_runtime
*runtime
;
591 if (PCM_RUNTIME_CHECK(substream
))
593 runtime
= substream
->runtime
;
594 snd_pcm_stream_lock_irq(substream
);
595 if (runtime
->status
->state
== SNDRV_PCM_STATE_OPEN
) {
596 snd_pcm_stream_unlock_irq(substream
);
599 snd_pcm_stream_unlock_irq(substream
);
601 if (params
->tstamp_mode
> SNDRV_PCM_TSTAMP_LAST
)
603 if (params
->proto
>= SNDRV_PROTOCOL_VERSION(2, 0, 12) &&
604 params
->tstamp_type
> SNDRV_PCM_TSTAMP_TYPE_LAST
)
606 if (params
->avail_min
== 0)
608 if (params
->silence_size
>= runtime
->boundary
) {
609 if (params
->silence_threshold
!= 0)
612 if (params
->silence_size
> params
->silence_threshold
)
614 if (params
->silence_threshold
> runtime
->buffer_size
)
618 snd_pcm_stream_lock_irq(substream
);
619 runtime
->tstamp_mode
= params
->tstamp_mode
;
620 if (params
->proto
>= SNDRV_PROTOCOL_VERSION(2, 0, 12))
621 runtime
->tstamp_type
= params
->tstamp_type
;
622 runtime
->period_step
= params
->period_step
;
623 runtime
->control
->avail_min
= params
->avail_min
;
624 runtime
->start_threshold
= params
->start_threshold
;
625 runtime
->stop_threshold
= params
->stop_threshold
;
626 runtime
->silence_threshold
= params
->silence_threshold
;
627 runtime
->silence_size
= params
->silence_size
;
628 params
->boundary
= runtime
->boundary
;
629 if (snd_pcm_running(substream
)) {
630 if (substream
->stream
== SNDRV_PCM_STREAM_PLAYBACK
&&
631 runtime
->silence_size
> 0)
632 snd_pcm_playback_silence(substream
, ULONG_MAX
);
633 err
= snd_pcm_update_state(substream
, runtime
);
635 snd_pcm_stream_unlock_irq(substream
);
639 static int snd_pcm_sw_params_user(struct snd_pcm_substream
*substream
,
640 struct snd_pcm_sw_params __user
* _params
)
642 struct snd_pcm_sw_params params
;
644 if (copy_from_user(¶ms
, _params
, sizeof(params
)))
646 err
= snd_pcm_sw_params(substream
, ¶ms
);
647 if (copy_to_user(_params
, ¶ms
, sizeof(params
)))
652 int snd_pcm_status(struct snd_pcm_substream
*substream
,
653 struct snd_pcm_status
*status
)
655 struct snd_pcm_runtime
*runtime
= substream
->runtime
;
657 snd_pcm_stream_lock_irq(substream
);
658 status
->state
= runtime
->status
->state
;
659 status
->suspended_state
= runtime
->status
->suspended_state
;
660 if (status
->state
== SNDRV_PCM_STATE_OPEN
)
662 status
->trigger_tstamp
= runtime
->trigger_tstamp
;
663 if (snd_pcm_running(substream
)) {
664 snd_pcm_update_hw_ptr(substream
);
665 if (runtime
->tstamp_mode
== SNDRV_PCM_TSTAMP_ENABLE
) {
666 status
->tstamp
= runtime
->status
->tstamp
;
667 status
->audio_tstamp
=
668 runtime
->status
->audio_tstamp
;
672 snd_pcm_gettime(runtime
, &status
->tstamp
);
674 status
->appl_ptr
= runtime
->control
->appl_ptr
;
675 status
->hw_ptr
= runtime
->status
->hw_ptr
;
676 if (substream
->stream
== SNDRV_PCM_STREAM_PLAYBACK
) {
677 status
->avail
= snd_pcm_playback_avail(runtime
);
678 if (runtime
->status
->state
== SNDRV_PCM_STATE_RUNNING
||
679 runtime
->status
->state
== SNDRV_PCM_STATE_DRAINING
) {
680 status
->delay
= runtime
->buffer_size
- status
->avail
;
681 status
->delay
+= runtime
->delay
;
685 status
->avail
= snd_pcm_capture_avail(runtime
);
686 if (runtime
->status
->state
== SNDRV_PCM_STATE_RUNNING
)
687 status
->delay
= status
->avail
+ runtime
->delay
;
691 status
->avail_max
= runtime
->avail_max
;
692 status
->overrange
= runtime
->overrange
;
693 runtime
->avail_max
= 0;
694 runtime
->overrange
= 0;
696 snd_pcm_stream_unlock_irq(substream
);
700 static int snd_pcm_status_user(struct snd_pcm_substream
*substream
,
701 struct snd_pcm_status __user
* _status
)
703 struct snd_pcm_status status
;
706 memset(&status
, 0, sizeof(status
));
707 res
= snd_pcm_status(substream
, &status
);
710 if (copy_to_user(_status
, &status
, sizeof(status
)))
715 static int snd_pcm_channel_info(struct snd_pcm_substream
*substream
,
716 struct snd_pcm_channel_info
* info
)
718 struct snd_pcm_runtime
*runtime
;
719 unsigned int channel
;
721 channel
= info
->channel
;
722 runtime
= substream
->runtime
;
723 snd_pcm_stream_lock_irq(substream
);
724 if (runtime
->status
->state
== SNDRV_PCM_STATE_OPEN
) {
725 snd_pcm_stream_unlock_irq(substream
);
728 snd_pcm_stream_unlock_irq(substream
);
729 if (channel
>= runtime
->channels
)
731 memset(info
, 0, sizeof(*info
));
732 info
->channel
= channel
;
733 return substream
->ops
->ioctl(substream
, SNDRV_PCM_IOCTL1_CHANNEL_INFO
, info
);
736 static int snd_pcm_channel_info_user(struct snd_pcm_substream
*substream
,
737 struct snd_pcm_channel_info __user
* _info
)
739 struct snd_pcm_channel_info info
;
742 if (copy_from_user(&info
, _info
, sizeof(info
)))
744 res
= snd_pcm_channel_info(substream
, &info
);
747 if (copy_to_user(_info
, &info
, sizeof(info
)))
752 static void snd_pcm_trigger_tstamp(struct snd_pcm_substream
*substream
)
754 struct snd_pcm_runtime
*runtime
= substream
->runtime
;
755 if (runtime
->trigger_master
== NULL
)
757 if (runtime
->trigger_master
== substream
) {
758 snd_pcm_gettime(runtime
, &runtime
->trigger_tstamp
);
760 snd_pcm_trigger_tstamp(runtime
->trigger_master
);
761 runtime
->trigger_tstamp
= runtime
->trigger_master
->runtime
->trigger_tstamp
;
763 runtime
->trigger_master
= NULL
;
767 int (*pre_action
)(struct snd_pcm_substream
*substream
, int state
);
768 int (*do_action
)(struct snd_pcm_substream
*substream
, int state
);
769 void (*undo_action
)(struct snd_pcm_substream
*substream
, int state
);
770 void (*post_action
)(struct snd_pcm_substream
*substream
, int state
);
774 * this functions is core for handling of linked stream
775 * Note: the stream state might be changed also on failure
776 * Note2: call with calling stream lock + link lock
778 static int snd_pcm_action_group(struct action_ops
*ops
,
779 struct snd_pcm_substream
*substream
,
780 int state
, int do_lock
)
782 struct snd_pcm_substream
*s
= NULL
;
783 struct snd_pcm_substream
*s1
;
784 int res
= 0, depth
= 1;
786 snd_pcm_group_for_each_entry(s
, substream
) {
787 if (do_lock
&& s
!= substream
) {
788 if (s
->pcm
->nonatomic
)
789 mutex_lock_nested(&s
->self_group
.mutex
, depth
);
791 spin_lock_nested(&s
->self_group
.lock
, depth
);
794 res
= ops
->pre_action(s
, state
);
798 snd_pcm_group_for_each_entry(s
, substream
) {
799 res
= ops
->do_action(s
, state
);
801 if (ops
->undo_action
) {
802 snd_pcm_group_for_each_entry(s1
, substream
) {
803 if (s1
== s
) /* failed stream */
805 ops
->undo_action(s1
, state
);
808 s
= NULL
; /* unlock all */
812 snd_pcm_group_for_each_entry(s
, substream
) {
813 ops
->post_action(s
, state
);
818 snd_pcm_group_for_each_entry(s1
, substream
) {
819 if (s1
!= substream
) {
820 if (s1
->pcm
->nonatomic
)
821 mutex_unlock(&s1
->self_group
.mutex
);
823 spin_unlock(&s1
->self_group
.lock
);
825 if (s1
== s
) /* end */
833 * Note: call with stream lock
835 static int snd_pcm_action_single(struct action_ops
*ops
,
836 struct snd_pcm_substream
*substream
,
841 res
= ops
->pre_action(substream
, state
);
844 res
= ops
->do_action(substream
, state
);
846 ops
->post_action(substream
, state
);
847 else if (ops
->undo_action
)
848 ops
->undo_action(substream
, state
);
852 /* call in mutex-protected context */
853 static int snd_pcm_action_mutex(struct action_ops
*ops
,
854 struct snd_pcm_substream
*substream
,
859 if (snd_pcm_stream_linked(substream
)) {
860 if (!mutex_trylock(&substream
->group
->mutex
)) {
861 mutex_unlock(&substream
->self_group
.mutex
);
862 mutex_lock(&substream
->group
->mutex
);
863 mutex_lock(&substream
->self_group
.mutex
);
865 res
= snd_pcm_action_group(ops
, substream
, state
, 1);
866 mutex_unlock(&substream
->group
->mutex
);
868 res
= snd_pcm_action_single(ops
, substream
, state
);
874 * Note: call with stream lock
876 static int snd_pcm_action(struct action_ops
*ops
,
877 struct snd_pcm_substream
*substream
,
882 if (substream
->pcm
->nonatomic
)
883 return snd_pcm_action_mutex(ops
, substream
, state
);
885 if (snd_pcm_stream_linked(substream
)) {
886 if (!spin_trylock(&substream
->group
->lock
)) {
887 spin_unlock(&substream
->self_group
.lock
);
888 spin_lock(&substream
->group
->lock
);
889 spin_lock(&substream
->self_group
.lock
);
891 res
= snd_pcm_action_group(ops
, substream
, state
, 1);
892 spin_unlock(&substream
->group
->lock
);
894 res
= snd_pcm_action_single(ops
, substream
, state
);
899 static int snd_pcm_action_lock_mutex(struct action_ops
*ops
,
900 struct snd_pcm_substream
*substream
,
905 down_read(&snd_pcm_link_rwsem
);
906 if (snd_pcm_stream_linked(substream
)) {
907 mutex_lock(&substream
->group
->mutex
);
908 mutex_lock(&substream
->self_group
.mutex
);
909 res
= snd_pcm_action_group(ops
, substream
, state
, 1);
910 mutex_unlock(&substream
->self_group
.mutex
);
911 mutex_unlock(&substream
->group
->mutex
);
913 mutex_lock(&substream
->self_group
.mutex
);
914 res
= snd_pcm_action_single(ops
, substream
, state
);
915 mutex_unlock(&substream
->self_group
.mutex
);
917 up_read(&snd_pcm_link_rwsem
);
922 * Note: don't use any locks before
924 static int snd_pcm_action_lock_irq(struct action_ops
*ops
,
925 struct snd_pcm_substream
*substream
,
930 if (substream
->pcm
->nonatomic
)
931 return snd_pcm_action_lock_mutex(ops
, substream
, state
);
933 read_lock_irq(&snd_pcm_link_rwlock
);
934 if (snd_pcm_stream_linked(substream
)) {
935 spin_lock(&substream
->group
->lock
);
936 spin_lock(&substream
->self_group
.lock
);
937 res
= snd_pcm_action_group(ops
, substream
, state
, 1);
938 spin_unlock(&substream
->self_group
.lock
);
939 spin_unlock(&substream
->group
->lock
);
941 spin_lock(&substream
->self_group
.lock
);
942 res
= snd_pcm_action_single(ops
, substream
, state
);
943 spin_unlock(&substream
->self_group
.lock
);
945 read_unlock_irq(&snd_pcm_link_rwlock
);
951 static int snd_pcm_action_nonatomic(struct action_ops
*ops
,
952 struct snd_pcm_substream
*substream
,
957 down_read(&snd_pcm_link_rwsem
);
958 if (snd_pcm_stream_linked(substream
))
959 res
= snd_pcm_action_group(ops
, substream
, state
, 0);
961 res
= snd_pcm_action_single(ops
, substream
, state
);
962 up_read(&snd_pcm_link_rwsem
);
969 static int snd_pcm_pre_start(struct snd_pcm_substream
*substream
, int state
)
971 struct snd_pcm_runtime
*runtime
= substream
->runtime
;
972 if (runtime
->status
->state
!= SNDRV_PCM_STATE_PREPARED
)
974 if (substream
->stream
== SNDRV_PCM_STREAM_PLAYBACK
&&
975 !snd_pcm_playback_data(substream
))
977 runtime
->trigger_master
= substream
;
981 static int snd_pcm_do_start(struct snd_pcm_substream
*substream
, int state
)
983 if (substream
->runtime
->trigger_master
!= substream
)
985 return substream
->ops
->trigger(substream
, SNDRV_PCM_TRIGGER_START
);
988 static void snd_pcm_undo_start(struct snd_pcm_substream
*substream
, int state
)
990 if (substream
->runtime
->trigger_master
== substream
)
991 substream
->ops
->trigger(substream
, SNDRV_PCM_TRIGGER_STOP
);
994 static void snd_pcm_post_start(struct snd_pcm_substream
*substream
, int state
)
996 struct snd_pcm_runtime
*runtime
= substream
->runtime
;
997 snd_pcm_trigger_tstamp(substream
);
998 runtime
->hw_ptr_jiffies
= jiffies
;
999 runtime
->hw_ptr_buffer_jiffies
= (runtime
->buffer_size
* HZ
) /
1001 runtime
->status
->state
= state
;
1002 if (substream
->stream
== SNDRV_PCM_STREAM_PLAYBACK
&&
1003 runtime
->silence_size
> 0)
1004 snd_pcm_playback_silence(substream
, ULONG_MAX
);
1005 if (substream
->timer
)
1006 snd_timer_notify(substream
->timer
, SNDRV_TIMER_EVENT_MSTART
,
1007 &runtime
->trigger_tstamp
);
1010 static struct action_ops snd_pcm_action_start
= {
1011 .pre_action
= snd_pcm_pre_start
,
1012 .do_action
= snd_pcm_do_start
,
1013 .undo_action
= snd_pcm_undo_start
,
1014 .post_action
= snd_pcm_post_start
1018 * snd_pcm_start - start all linked streams
1019 * @substream: the PCM substream instance
1021 * Return: Zero if successful, or a negative error code.
1023 int snd_pcm_start(struct snd_pcm_substream
*substream
)
1025 return snd_pcm_action(&snd_pcm_action_start
, substream
,
1026 SNDRV_PCM_STATE_RUNNING
);
1032 static int snd_pcm_pre_stop(struct snd_pcm_substream
*substream
, int state
)
1034 struct snd_pcm_runtime
*runtime
= substream
->runtime
;
1035 if (runtime
->status
->state
== SNDRV_PCM_STATE_OPEN
)
1037 runtime
->trigger_master
= substream
;
1041 static int snd_pcm_do_stop(struct snd_pcm_substream
*substream
, int state
)
1043 if (substream
->runtime
->trigger_master
== substream
&&
1044 snd_pcm_running(substream
))
1045 substream
->ops
->trigger(substream
, SNDRV_PCM_TRIGGER_STOP
);
1046 return 0; /* unconditonally stop all substreams */
1049 static void snd_pcm_post_stop(struct snd_pcm_substream
*substream
, int state
)
1051 struct snd_pcm_runtime
*runtime
= substream
->runtime
;
1052 if (runtime
->status
->state
!= state
) {
1053 snd_pcm_trigger_tstamp(substream
);
1054 if (substream
->timer
)
1055 snd_timer_notify(substream
->timer
, SNDRV_TIMER_EVENT_MSTOP
,
1056 &runtime
->trigger_tstamp
);
1057 runtime
->status
->state
= state
;
1059 wake_up(&runtime
->sleep
);
1060 wake_up(&runtime
->tsleep
);
1063 static struct action_ops snd_pcm_action_stop
= {
1064 .pre_action
= snd_pcm_pre_stop
,
1065 .do_action
= snd_pcm_do_stop
,
1066 .post_action
= snd_pcm_post_stop
1070 * snd_pcm_stop - try to stop all running streams in the substream group
1071 * @substream: the PCM substream instance
1072 * @state: PCM state after stopping the stream
1074 * The state of each stream is then changed to the given state unconditionally.
1076 * Return: Zero if successful, or a negative error code.
1078 int snd_pcm_stop(struct snd_pcm_substream
*substream
, snd_pcm_state_t state
)
1080 return snd_pcm_action(&snd_pcm_action_stop
, substream
, state
);
1083 EXPORT_SYMBOL(snd_pcm_stop
);
1086 * snd_pcm_drain_done - stop the DMA only when the given stream is playback
1087 * @substream: the PCM substream
1089 * After stopping, the state is changed to SETUP.
1090 * Unlike snd_pcm_stop(), this affects only the given stream.
1092 * Return: Zero if succesful, or a negative error code.
1094 int snd_pcm_drain_done(struct snd_pcm_substream
*substream
)
1096 return snd_pcm_action_single(&snd_pcm_action_stop
, substream
,
1097 SNDRV_PCM_STATE_SETUP
);
1103 static int snd_pcm_pre_pause(struct snd_pcm_substream
*substream
, int push
)
1105 struct snd_pcm_runtime
*runtime
= substream
->runtime
;
1106 if (!(runtime
->info
& SNDRV_PCM_INFO_PAUSE
))
1109 if (runtime
->status
->state
!= SNDRV_PCM_STATE_RUNNING
)
1111 } else if (runtime
->status
->state
!= SNDRV_PCM_STATE_PAUSED
)
1113 runtime
->trigger_master
= substream
;
1117 static int snd_pcm_do_pause(struct snd_pcm_substream
*substream
, int push
)
1119 if (substream
->runtime
->trigger_master
!= substream
)
1121 /* some drivers might use hw_ptr to recover from the pause -
1122 update the hw_ptr now */
1124 snd_pcm_update_hw_ptr(substream
);
1125 /* The jiffies check in snd_pcm_update_hw_ptr*() is done by
1126 * a delta between the current jiffies, this gives a large enough
1127 * delta, effectively to skip the check once.
1129 substream
->runtime
->hw_ptr_jiffies
= jiffies
- HZ
* 1000;
1130 return substream
->ops
->trigger(substream
,
1131 push
? SNDRV_PCM_TRIGGER_PAUSE_PUSH
:
1132 SNDRV_PCM_TRIGGER_PAUSE_RELEASE
);
1135 static void snd_pcm_undo_pause(struct snd_pcm_substream
*substream
, int push
)
1137 if (substream
->runtime
->trigger_master
== substream
)
1138 substream
->ops
->trigger(substream
,
1139 push
? SNDRV_PCM_TRIGGER_PAUSE_RELEASE
:
1140 SNDRV_PCM_TRIGGER_PAUSE_PUSH
);
1143 static void snd_pcm_post_pause(struct snd_pcm_substream
*substream
, int push
)
1145 struct snd_pcm_runtime
*runtime
= substream
->runtime
;
1146 snd_pcm_trigger_tstamp(substream
);
1148 runtime
->status
->state
= SNDRV_PCM_STATE_PAUSED
;
1149 if (substream
->timer
)
1150 snd_timer_notify(substream
->timer
,
1151 SNDRV_TIMER_EVENT_MPAUSE
,
1152 &runtime
->trigger_tstamp
);
1153 wake_up(&runtime
->sleep
);
1154 wake_up(&runtime
->tsleep
);
1156 runtime
->status
->state
= SNDRV_PCM_STATE_RUNNING
;
1157 if (substream
->timer
)
1158 snd_timer_notify(substream
->timer
,
1159 SNDRV_TIMER_EVENT_MCONTINUE
,
1160 &runtime
->trigger_tstamp
);
1164 static struct action_ops snd_pcm_action_pause
= {
1165 .pre_action
= snd_pcm_pre_pause
,
1166 .do_action
= snd_pcm_do_pause
,
1167 .undo_action
= snd_pcm_undo_pause
,
1168 .post_action
= snd_pcm_post_pause
1172 * Push/release the pause for all linked streams.
1174 static int snd_pcm_pause(struct snd_pcm_substream
*substream
, int push
)
1176 return snd_pcm_action(&snd_pcm_action_pause
, substream
, push
);
1182 static int snd_pcm_pre_suspend(struct snd_pcm_substream
*substream
, int state
)
1184 struct snd_pcm_runtime
*runtime
= substream
->runtime
;
1185 if (runtime
->status
->state
== SNDRV_PCM_STATE_SUSPENDED
)
1187 runtime
->trigger_master
= substream
;
1191 static int snd_pcm_do_suspend(struct snd_pcm_substream
*substream
, int state
)
1193 struct snd_pcm_runtime
*runtime
= substream
->runtime
;
1194 if (runtime
->trigger_master
!= substream
)
1196 if (! snd_pcm_running(substream
))
1198 substream
->ops
->trigger(substream
, SNDRV_PCM_TRIGGER_SUSPEND
);
1199 return 0; /* suspend unconditionally */
1202 static void snd_pcm_post_suspend(struct snd_pcm_substream
*substream
, int state
)
1204 struct snd_pcm_runtime
*runtime
= substream
->runtime
;
1205 snd_pcm_trigger_tstamp(substream
);
1206 if (substream
->timer
)
1207 snd_timer_notify(substream
->timer
, SNDRV_TIMER_EVENT_MSUSPEND
,
1208 &runtime
->trigger_tstamp
);
1209 runtime
->status
->suspended_state
= runtime
->status
->state
;
1210 runtime
->status
->state
= SNDRV_PCM_STATE_SUSPENDED
;
1211 wake_up(&runtime
->sleep
);
1212 wake_up(&runtime
->tsleep
);
1215 static struct action_ops snd_pcm_action_suspend
= {
1216 .pre_action
= snd_pcm_pre_suspend
,
1217 .do_action
= snd_pcm_do_suspend
,
1218 .post_action
= snd_pcm_post_suspend
1222 * snd_pcm_suspend - trigger SUSPEND to all linked streams
1223 * @substream: the PCM substream
1225 * After this call, all streams are changed to SUSPENDED state.
1227 * Return: Zero if successful (or @substream is %NULL), or a negative error
1230 int snd_pcm_suspend(struct snd_pcm_substream
*substream
)
1233 unsigned long flags
;
1238 snd_pcm_stream_lock_irqsave(substream
, flags
);
1239 err
= snd_pcm_action(&snd_pcm_action_suspend
, substream
, 0);
1240 snd_pcm_stream_unlock_irqrestore(substream
, flags
);
1244 EXPORT_SYMBOL(snd_pcm_suspend
);
1247 * snd_pcm_suspend_all - trigger SUSPEND to all substreams in the given pcm
1248 * @pcm: the PCM instance
1250 * After this call, all streams are changed to SUSPENDED state.
1252 * Return: Zero if successful (or @pcm is %NULL), or a negative error code.
1254 int snd_pcm_suspend_all(struct snd_pcm
*pcm
)
1256 struct snd_pcm_substream
*substream
;
1257 int stream
, err
= 0;
1262 for (stream
= 0; stream
< 2; stream
++) {
1263 for (substream
= pcm
->streams
[stream
].substream
;
1264 substream
; substream
= substream
->next
) {
1265 /* FIXME: the open/close code should lock this as well */
1266 if (substream
->runtime
== NULL
)
1268 err
= snd_pcm_suspend(substream
);
1269 if (err
< 0 && err
!= -EBUSY
)
1276 EXPORT_SYMBOL(snd_pcm_suspend_all
);
1280 static int snd_pcm_pre_resume(struct snd_pcm_substream
*substream
, int state
)
1282 struct snd_pcm_runtime
*runtime
= substream
->runtime
;
1283 if (!(runtime
->info
& SNDRV_PCM_INFO_RESUME
))
1285 runtime
->trigger_master
= substream
;
1289 static int snd_pcm_do_resume(struct snd_pcm_substream
*substream
, int state
)
1291 struct snd_pcm_runtime
*runtime
= substream
->runtime
;
1292 if (runtime
->trigger_master
!= substream
)
1294 /* DMA not running previously? */
1295 if (runtime
->status
->suspended_state
!= SNDRV_PCM_STATE_RUNNING
&&
1296 (runtime
->status
->suspended_state
!= SNDRV_PCM_STATE_DRAINING
||
1297 substream
->stream
!= SNDRV_PCM_STREAM_PLAYBACK
))
1299 return substream
->ops
->trigger(substream
, SNDRV_PCM_TRIGGER_RESUME
);
1302 static void snd_pcm_undo_resume(struct snd_pcm_substream
*substream
, int state
)
1304 if (substream
->runtime
->trigger_master
== substream
&&
1305 snd_pcm_running(substream
))
1306 substream
->ops
->trigger(substream
, SNDRV_PCM_TRIGGER_SUSPEND
);
1309 static void snd_pcm_post_resume(struct snd_pcm_substream
*substream
, int state
)
1311 struct snd_pcm_runtime
*runtime
= substream
->runtime
;
1312 snd_pcm_trigger_tstamp(substream
);
1313 if (substream
->timer
)
1314 snd_timer_notify(substream
->timer
, SNDRV_TIMER_EVENT_MRESUME
,
1315 &runtime
->trigger_tstamp
);
1316 runtime
->status
->state
= runtime
->status
->suspended_state
;
1319 static struct action_ops snd_pcm_action_resume
= {
1320 .pre_action
= snd_pcm_pre_resume
,
1321 .do_action
= snd_pcm_do_resume
,
1322 .undo_action
= snd_pcm_undo_resume
,
1323 .post_action
= snd_pcm_post_resume
1326 static int snd_pcm_resume(struct snd_pcm_substream
*substream
)
1328 struct snd_card
*card
= substream
->pcm
->card
;
1331 snd_power_lock(card
);
1332 if ((res
= snd_power_wait(card
, SNDRV_CTL_POWER_D0
)) >= 0)
1333 res
= snd_pcm_action_lock_irq(&snd_pcm_action_resume
, substream
, 0);
1334 snd_power_unlock(card
);
1340 static int snd_pcm_resume(struct snd_pcm_substream
*substream
)
1345 #endif /* CONFIG_PM */
1350 * Change the RUNNING stream(s) to XRUN state.
1352 static int snd_pcm_xrun(struct snd_pcm_substream
*substream
)
1354 struct snd_card
*card
= substream
->pcm
->card
;
1355 struct snd_pcm_runtime
*runtime
= substream
->runtime
;
1358 snd_power_lock(card
);
1359 if (runtime
->status
->state
== SNDRV_PCM_STATE_SUSPENDED
) {
1360 result
= snd_power_wait(card
, SNDRV_CTL_POWER_D0
);
1365 snd_pcm_stream_lock_irq(substream
);
1366 switch (runtime
->status
->state
) {
1367 case SNDRV_PCM_STATE_XRUN
:
1368 result
= 0; /* already there */
1370 case SNDRV_PCM_STATE_RUNNING
:
1371 result
= snd_pcm_stop(substream
, SNDRV_PCM_STATE_XRUN
);
1376 snd_pcm_stream_unlock_irq(substream
);
1378 snd_power_unlock(card
);
1385 static int snd_pcm_pre_reset(struct snd_pcm_substream
*substream
, int state
)
1387 struct snd_pcm_runtime
*runtime
= substream
->runtime
;
1388 switch (runtime
->status
->state
) {
1389 case SNDRV_PCM_STATE_RUNNING
:
1390 case SNDRV_PCM_STATE_PREPARED
:
1391 case SNDRV_PCM_STATE_PAUSED
:
1392 case SNDRV_PCM_STATE_SUSPENDED
:
1399 static int snd_pcm_do_reset(struct snd_pcm_substream
*substream
, int state
)
1401 struct snd_pcm_runtime
*runtime
= substream
->runtime
;
1402 int err
= substream
->ops
->ioctl(substream
, SNDRV_PCM_IOCTL1_RESET
, NULL
);
1405 runtime
->hw_ptr_base
= 0;
1406 runtime
->hw_ptr_interrupt
= runtime
->status
->hw_ptr
-
1407 runtime
->status
->hw_ptr
% runtime
->period_size
;
1408 runtime
->silence_start
= runtime
->status
->hw_ptr
;
1409 runtime
->silence_filled
= 0;
1413 static void snd_pcm_post_reset(struct snd_pcm_substream
*substream
, int state
)
1415 struct snd_pcm_runtime
*runtime
= substream
->runtime
;
1416 runtime
->control
->appl_ptr
= runtime
->status
->hw_ptr
;
1417 if (substream
->stream
== SNDRV_PCM_STREAM_PLAYBACK
&&
1418 runtime
->silence_size
> 0)
1419 snd_pcm_playback_silence(substream
, ULONG_MAX
);
1422 static struct action_ops snd_pcm_action_reset
= {
1423 .pre_action
= snd_pcm_pre_reset
,
1424 .do_action
= snd_pcm_do_reset
,
1425 .post_action
= snd_pcm_post_reset
1428 static int snd_pcm_reset(struct snd_pcm_substream
*substream
)
1430 return snd_pcm_action_nonatomic(&snd_pcm_action_reset
, substream
, 0);
1436 /* we use the second argument for updating f_flags */
1437 static int snd_pcm_pre_prepare(struct snd_pcm_substream
*substream
,
1440 struct snd_pcm_runtime
*runtime
= substream
->runtime
;
1441 if (runtime
->status
->state
== SNDRV_PCM_STATE_OPEN
||
1442 runtime
->status
->state
== SNDRV_PCM_STATE_DISCONNECTED
)
1444 if (snd_pcm_running(substream
))
1446 substream
->f_flags
= f_flags
;
1450 static int snd_pcm_do_prepare(struct snd_pcm_substream
*substream
, int state
)
1453 err
= substream
->ops
->prepare(substream
);
1456 return snd_pcm_do_reset(substream
, 0);
1459 static void snd_pcm_post_prepare(struct snd_pcm_substream
*substream
, int state
)
1461 struct snd_pcm_runtime
*runtime
= substream
->runtime
;
1462 runtime
->control
->appl_ptr
= runtime
->status
->hw_ptr
;
1463 snd_pcm_set_state(substream
, SNDRV_PCM_STATE_PREPARED
);
1466 static struct action_ops snd_pcm_action_prepare
= {
1467 .pre_action
= snd_pcm_pre_prepare
,
1468 .do_action
= snd_pcm_do_prepare
,
1469 .post_action
= snd_pcm_post_prepare
1473 * snd_pcm_prepare - prepare the PCM substream to be triggerable
1474 * @substream: the PCM substream instance
1475 * @file: file to refer f_flags
1477 * Return: Zero if successful, or a negative error code.
1479 static int snd_pcm_prepare(struct snd_pcm_substream
*substream
,
1483 struct snd_card
*card
= substream
->pcm
->card
;
1487 f_flags
= file
->f_flags
;
1489 f_flags
= substream
->f_flags
;
1491 snd_power_lock(card
);
1492 if ((res
= snd_power_wait(card
, SNDRV_CTL_POWER_D0
)) >= 0)
1493 res
= snd_pcm_action_nonatomic(&snd_pcm_action_prepare
,
1494 substream
, f_flags
);
1495 snd_power_unlock(card
);
1503 static int snd_pcm_pre_drain_init(struct snd_pcm_substream
*substream
, int state
)
1505 struct snd_pcm_runtime
*runtime
= substream
->runtime
;
1506 switch (runtime
->status
->state
) {
1507 case SNDRV_PCM_STATE_OPEN
:
1508 case SNDRV_PCM_STATE_DISCONNECTED
:
1509 case SNDRV_PCM_STATE_SUSPENDED
:
1512 runtime
->trigger_master
= substream
;
1516 static int snd_pcm_do_drain_init(struct snd_pcm_substream
*substream
, int state
)
1518 struct snd_pcm_runtime
*runtime
= substream
->runtime
;
1519 if (substream
->stream
== SNDRV_PCM_STREAM_PLAYBACK
) {
1520 switch (runtime
->status
->state
) {
1521 case SNDRV_PCM_STATE_PREPARED
:
1522 /* start playback stream if possible */
1523 if (! snd_pcm_playback_empty(substream
)) {
1524 snd_pcm_do_start(substream
, SNDRV_PCM_STATE_DRAINING
);
1525 snd_pcm_post_start(substream
, SNDRV_PCM_STATE_DRAINING
);
1528 case SNDRV_PCM_STATE_RUNNING
:
1529 runtime
->status
->state
= SNDRV_PCM_STATE_DRAINING
;
1531 case SNDRV_PCM_STATE_XRUN
:
1532 runtime
->status
->state
= SNDRV_PCM_STATE_SETUP
;
1538 /* stop running stream */
1539 if (runtime
->status
->state
== SNDRV_PCM_STATE_RUNNING
) {
1540 int new_state
= snd_pcm_capture_avail(runtime
) > 0 ?
1541 SNDRV_PCM_STATE_DRAINING
: SNDRV_PCM_STATE_SETUP
;
1542 snd_pcm_do_stop(substream
, new_state
);
1543 snd_pcm_post_stop(substream
, new_state
);
1549 static void snd_pcm_post_drain_init(struct snd_pcm_substream
*substream
, int state
)
1553 static struct action_ops snd_pcm_action_drain_init
= {
1554 .pre_action
= snd_pcm_pre_drain_init
,
1555 .do_action
= snd_pcm_do_drain_init
,
1556 .post_action
= snd_pcm_post_drain_init
1559 static int snd_pcm_drop(struct snd_pcm_substream
*substream
);
1562 * Drain the stream(s).
1563 * When the substream is linked, sync until the draining of all playback streams
1565 * After this call, all streams are supposed to be either SETUP or DRAINING
1566 * (capture only) state.
1568 static int snd_pcm_drain(struct snd_pcm_substream
*substream
,
1571 struct snd_card
*card
;
1572 struct snd_pcm_runtime
*runtime
;
1573 struct snd_pcm_substream
*s
;
1578 card
= substream
->pcm
->card
;
1579 runtime
= substream
->runtime
;
1581 if (runtime
->status
->state
== SNDRV_PCM_STATE_OPEN
)
1584 snd_power_lock(card
);
1585 if (runtime
->status
->state
== SNDRV_PCM_STATE_SUSPENDED
) {
1586 result
= snd_power_wait(card
, SNDRV_CTL_POWER_D0
);
1588 snd_power_unlock(card
);
1594 if (file
->f_flags
& O_NONBLOCK
)
1596 } else if (substream
->f_flags
& O_NONBLOCK
)
1599 down_read(&snd_pcm_link_rwsem
);
1600 snd_pcm_stream_lock_irq(substream
);
1602 if (runtime
->status
->state
== SNDRV_PCM_STATE_PAUSED
)
1603 snd_pcm_pause(substream
, 0);
1605 /* pre-start/stop - all running streams are changed to DRAINING state */
1606 result
= snd_pcm_action(&snd_pcm_action_drain_init
, substream
, 0);
1609 /* in non-blocking, we don't wait in ioctl but let caller poll */
1617 struct snd_pcm_runtime
*to_check
;
1618 if (signal_pending(current
)) {
1619 result
= -ERESTARTSYS
;
1622 /* find a substream to drain */
1624 snd_pcm_group_for_each_entry(s
, substream
) {
1625 if (s
->stream
!= SNDRV_PCM_STREAM_PLAYBACK
)
1627 runtime
= s
->runtime
;
1628 if (runtime
->status
->state
== SNDRV_PCM_STATE_DRAINING
) {
1634 break; /* all drained */
1635 init_waitqueue_entry(&wait
, current
);
1636 add_wait_queue(&to_check
->sleep
, &wait
);
1637 snd_pcm_stream_unlock_irq(substream
);
1638 up_read(&snd_pcm_link_rwsem
);
1639 snd_power_unlock(card
);
1640 if (runtime
->no_period_wakeup
)
1641 tout
= MAX_SCHEDULE_TIMEOUT
;
1644 if (runtime
->rate
) {
1645 long t
= runtime
->period_size
* 2 / runtime
->rate
;
1646 tout
= max(t
, tout
);
1648 tout
= msecs_to_jiffies(tout
* 1000);
1650 tout
= schedule_timeout_interruptible(tout
);
1651 snd_power_lock(card
);
1652 down_read(&snd_pcm_link_rwsem
);
1653 snd_pcm_stream_lock_irq(substream
);
1654 remove_wait_queue(&to_check
->sleep
, &wait
);
1655 if (card
->shutdown
) {
1660 if (substream
->runtime
->status
->state
== SNDRV_PCM_STATE_SUSPENDED
)
1663 dev_dbg(substream
->pcm
->card
->dev
,
1664 "playback drain error (DMA or IRQ trouble?)\n");
1665 snd_pcm_stop(substream
, SNDRV_PCM_STATE_SETUP
);
1673 snd_pcm_stream_unlock_irq(substream
);
1674 up_read(&snd_pcm_link_rwsem
);
1675 snd_power_unlock(card
);
1683 * Immediately put all linked substreams into SETUP state.
1685 static int snd_pcm_drop(struct snd_pcm_substream
*substream
)
1687 struct snd_pcm_runtime
*runtime
;
1690 if (PCM_RUNTIME_CHECK(substream
))
1692 runtime
= substream
->runtime
;
1694 if (runtime
->status
->state
== SNDRV_PCM_STATE_OPEN
||
1695 runtime
->status
->state
== SNDRV_PCM_STATE_DISCONNECTED
||
1696 runtime
->status
->state
== SNDRV_PCM_STATE_SUSPENDED
)
1699 snd_pcm_stream_lock_irq(substream
);
1701 if (runtime
->status
->state
== SNDRV_PCM_STATE_PAUSED
)
1702 snd_pcm_pause(substream
, 0);
1704 snd_pcm_stop(substream
, SNDRV_PCM_STATE_SETUP
);
1705 /* runtime->control->appl_ptr = runtime->status->hw_ptr; */
1706 snd_pcm_stream_unlock_irq(substream
);
1712 static bool is_pcm_file(struct file
*file
)
1714 struct inode
*inode
= file_inode(file
);
1717 if (!S_ISCHR(inode
->i_mode
) || imajor(inode
) != snd_major
)
1719 minor
= iminor(inode
);
1720 return snd_lookup_minor_data(minor
, SNDRV_DEVICE_TYPE_PCM_PLAYBACK
) ||
1721 snd_lookup_minor_data(minor
, SNDRV_DEVICE_TYPE_PCM_CAPTURE
);
1727 static int snd_pcm_link(struct snd_pcm_substream
*substream
, int fd
)
1730 struct snd_pcm_file
*pcm_file
;
1731 struct snd_pcm_substream
*substream1
;
1732 struct snd_pcm_group
*group
;
1733 struct fd f
= fdget(fd
);
1737 if (!is_pcm_file(f
.file
)) {
1741 pcm_file
= f
.file
->private_data
;
1742 substream1
= pcm_file
->substream
;
1743 group
= kmalloc(sizeof(*group
), GFP_KERNEL
);
1748 down_write(&snd_pcm_link_rwsem
);
1749 write_lock_irq(&snd_pcm_link_rwlock
);
1750 if (substream
->runtime
->status
->state
== SNDRV_PCM_STATE_OPEN
||
1751 substream
->runtime
->status
->state
!= substream1
->runtime
->status
->state
||
1752 substream
->pcm
->nonatomic
!= substream1
->pcm
->nonatomic
) {
1756 if (snd_pcm_stream_linked(substream1
)) {
1760 if (!snd_pcm_stream_linked(substream
)) {
1761 substream
->group
= group
;
1763 spin_lock_init(&substream
->group
->lock
);
1764 mutex_init(&substream
->group
->mutex
);
1765 INIT_LIST_HEAD(&substream
->group
->substreams
);
1766 list_add_tail(&substream
->link_list
, &substream
->group
->substreams
);
1767 substream
->group
->count
= 1;
1769 list_add_tail(&substream1
->link_list
, &substream
->group
->substreams
);
1770 substream
->group
->count
++;
1771 substream1
->group
= substream
->group
;
1773 write_unlock_irq(&snd_pcm_link_rwlock
);
1774 up_write(&snd_pcm_link_rwsem
);
1776 snd_card_unref(substream1
->pcm
->card
);
1783 static void relink_to_local(struct snd_pcm_substream
*substream
)
1785 substream
->group
= &substream
->self_group
;
1786 INIT_LIST_HEAD(&substream
->self_group
.substreams
);
1787 list_add_tail(&substream
->link_list
, &substream
->self_group
.substreams
);
1790 static int snd_pcm_unlink(struct snd_pcm_substream
*substream
)
1792 struct snd_pcm_substream
*s
;
1795 down_write(&snd_pcm_link_rwsem
);
1796 write_lock_irq(&snd_pcm_link_rwlock
);
1797 if (!snd_pcm_stream_linked(substream
)) {
1801 list_del(&substream
->link_list
);
1802 substream
->group
->count
--;
1803 if (substream
->group
->count
== 1) { /* detach the last stream, too */
1804 snd_pcm_group_for_each_entry(s
, substream
) {
1808 kfree(substream
->group
);
1810 relink_to_local(substream
);
1812 write_unlock_irq(&snd_pcm_link_rwlock
);
1813 up_write(&snd_pcm_link_rwsem
);
1820 static int snd_pcm_hw_rule_mul(struct snd_pcm_hw_params
*params
,
1821 struct snd_pcm_hw_rule
*rule
)
1823 struct snd_interval t
;
1824 snd_interval_mul(hw_param_interval_c(params
, rule
->deps
[0]),
1825 hw_param_interval_c(params
, rule
->deps
[1]), &t
);
1826 return snd_interval_refine(hw_param_interval(params
, rule
->var
), &t
);
1829 static int snd_pcm_hw_rule_div(struct snd_pcm_hw_params
*params
,
1830 struct snd_pcm_hw_rule
*rule
)
1832 struct snd_interval t
;
1833 snd_interval_div(hw_param_interval_c(params
, rule
->deps
[0]),
1834 hw_param_interval_c(params
, rule
->deps
[1]), &t
);
1835 return snd_interval_refine(hw_param_interval(params
, rule
->var
), &t
);
1838 static int snd_pcm_hw_rule_muldivk(struct snd_pcm_hw_params
*params
,
1839 struct snd_pcm_hw_rule
*rule
)
1841 struct snd_interval t
;
1842 snd_interval_muldivk(hw_param_interval_c(params
, rule
->deps
[0]),
1843 hw_param_interval_c(params
, rule
->deps
[1]),
1844 (unsigned long) rule
->private, &t
);
1845 return snd_interval_refine(hw_param_interval(params
, rule
->var
), &t
);
1848 static int snd_pcm_hw_rule_mulkdiv(struct snd_pcm_hw_params
*params
,
1849 struct snd_pcm_hw_rule
*rule
)
1851 struct snd_interval t
;
1852 snd_interval_mulkdiv(hw_param_interval_c(params
, rule
->deps
[0]),
1853 (unsigned long) rule
->private,
1854 hw_param_interval_c(params
, rule
->deps
[1]), &t
);
1855 return snd_interval_refine(hw_param_interval(params
, rule
->var
), &t
);
1858 static int snd_pcm_hw_rule_format(struct snd_pcm_hw_params
*params
,
1859 struct snd_pcm_hw_rule
*rule
)
1862 struct snd_interval
*i
= hw_param_interval(params
, rule
->deps
[0]);
1864 struct snd_mask
*mask
= hw_param_mask(params
, SNDRV_PCM_HW_PARAM_FORMAT
);
1866 for (k
= 0; k
<= SNDRV_PCM_FORMAT_LAST
; ++k
) {
1868 if (! snd_mask_test(mask
, k
))
1870 bits
= snd_pcm_format_physical_width(k
);
1872 continue; /* ignore invalid formats */
1873 if ((unsigned)bits
< i
->min
|| (unsigned)bits
> i
->max
)
1874 snd_mask_reset(&m
, k
);
1876 return snd_mask_refine(mask
, &m
);
1879 static int snd_pcm_hw_rule_sample_bits(struct snd_pcm_hw_params
*params
,
1880 struct snd_pcm_hw_rule
*rule
)
1882 struct snd_interval t
;
1888 for (k
= 0; k
<= SNDRV_PCM_FORMAT_LAST
; ++k
) {
1890 if (! snd_mask_test(hw_param_mask(params
, SNDRV_PCM_HW_PARAM_FORMAT
), k
))
1892 bits
= snd_pcm_format_physical_width(k
);
1894 continue; /* ignore invalid formats */
1895 if (t
.min
> (unsigned)bits
)
1897 if (t
.max
< (unsigned)bits
)
1901 return snd_interval_refine(hw_param_interval(params
, rule
->var
), &t
);
1904 #if SNDRV_PCM_RATE_5512 != 1 << 0 || SNDRV_PCM_RATE_192000 != 1 << 12
1905 #error "Change this table"
1908 static unsigned int rates
[] = { 5512, 8000, 11025, 16000, 22050, 32000, 44100,
1909 48000, 64000, 88200, 96000, 176400, 192000 };
1911 const struct snd_pcm_hw_constraint_list snd_pcm_known_rates
= {
1912 .count
= ARRAY_SIZE(rates
),
1916 static int snd_pcm_hw_rule_rate(struct snd_pcm_hw_params
*params
,
1917 struct snd_pcm_hw_rule
*rule
)
1919 struct snd_pcm_hardware
*hw
= rule
->private;
1920 return snd_interval_list(hw_param_interval(params
, rule
->var
),
1921 snd_pcm_known_rates
.count
,
1922 snd_pcm_known_rates
.list
, hw
->rates
);
1925 static int snd_pcm_hw_rule_buffer_bytes_max(struct snd_pcm_hw_params
*params
,
1926 struct snd_pcm_hw_rule
*rule
)
1928 struct snd_interval t
;
1929 struct snd_pcm_substream
*substream
= rule
->private;
1931 t
.max
= substream
->buffer_bytes_max
;
1935 return snd_interval_refine(hw_param_interval(params
, rule
->var
), &t
);
1938 int snd_pcm_hw_constraints_init(struct snd_pcm_substream
*substream
)
1940 struct snd_pcm_runtime
*runtime
= substream
->runtime
;
1941 struct snd_pcm_hw_constraints
*constrs
= &runtime
->hw_constraints
;
1944 for (k
= SNDRV_PCM_HW_PARAM_FIRST_MASK
; k
<= SNDRV_PCM_HW_PARAM_LAST_MASK
; k
++) {
1945 snd_mask_any(constrs_mask(constrs
, k
));
1948 for (k
= SNDRV_PCM_HW_PARAM_FIRST_INTERVAL
; k
<= SNDRV_PCM_HW_PARAM_LAST_INTERVAL
; k
++) {
1949 snd_interval_any(constrs_interval(constrs
, k
));
1952 snd_interval_setinteger(constrs_interval(constrs
, SNDRV_PCM_HW_PARAM_CHANNELS
));
1953 snd_interval_setinteger(constrs_interval(constrs
, SNDRV_PCM_HW_PARAM_BUFFER_SIZE
));
1954 snd_interval_setinteger(constrs_interval(constrs
, SNDRV_PCM_HW_PARAM_BUFFER_BYTES
));
1955 snd_interval_setinteger(constrs_interval(constrs
, SNDRV_PCM_HW_PARAM_SAMPLE_BITS
));
1956 snd_interval_setinteger(constrs_interval(constrs
, SNDRV_PCM_HW_PARAM_FRAME_BITS
));
1958 err
= snd_pcm_hw_rule_add(runtime
, 0, SNDRV_PCM_HW_PARAM_FORMAT
,
1959 snd_pcm_hw_rule_format
, NULL
,
1960 SNDRV_PCM_HW_PARAM_SAMPLE_BITS
, -1);
1963 err
= snd_pcm_hw_rule_add(runtime
, 0, SNDRV_PCM_HW_PARAM_SAMPLE_BITS
,
1964 snd_pcm_hw_rule_sample_bits
, NULL
,
1965 SNDRV_PCM_HW_PARAM_FORMAT
,
1966 SNDRV_PCM_HW_PARAM_SAMPLE_BITS
, -1);
1969 err
= snd_pcm_hw_rule_add(runtime
, 0, SNDRV_PCM_HW_PARAM_SAMPLE_BITS
,
1970 snd_pcm_hw_rule_div
, NULL
,
1971 SNDRV_PCM_HW_PARAM_FRAME_BITS
, SNDRV_PCM_HW_PARAM_CHANNELS
, -1);
1974 err
= snd_pcm_hw_rule_add(runtime
, 0, SNDRV_PCM_HW_PARAM_FRAME_BITS
,
1975 snd_pcm_hw_rule_mul
, NULL
,
1976 SNDRV_PCM_HW_PARAM_SAMPLE_BITS
, SNDRV_PCM_HW_PARAM_CHANNELS
, -1);
1979 err
= snd_pcm_hw_rule_add(runtime
, 0, SNDRV_PCM_HW_PARAM_FRAME_BITS
,
1980 snd_pcm_hw_rule_mulkdiv
, (void*) 8,
1981 SNDRV_PCM_HW_PARAM_PERIOD_BYTES
, SNDRV_PCM_HW_PARAM_PERIOD_SIZE
, -1);
1984 err
= snd_pcm_hw_rule_add(runtime
, 0, SNDRV_PCM_HW_PARAM_FRAME_BITS
,
1985 snd_pcm_hw_rule_mulkdiv
, (void*) 8,
1986 SNDRV_PCM_HW_PARAM_BUFFER_BYTES
, SNDRV_PCM_HW_PARAM_BUFFER_SIZE
, -1);
1989 err
= snd_pcm_hw_rule_add(runtime
, 0, SNDRV_PCM_HW_PARAM_CHANNELS
,
1990 snd_pcm_hw_rule_div
, NULL
,
1991 SNDRV_PCM_HW_PARAM_FRAME_BITS
, SNDRV_PCM_HW_PARAM_SAMPLE_BITS
, -1);
1994 err
= snd_pcm_hw_rule_add(runtime
, 0, SNDRV_PCM_HW_PARAM_RATE
,
1995 snd_pcm_hw_rule_mulkdiv
, (void*) 1000000,
1996 SNDRV_PCM_HW_PARAM_PERIOD_SIZE
, SNDRV_PCM_HW_PARAM_PERIOD_TIME
, -1);
1999 err
= snd_pcm_hw_rule_add(runtime
, 0, SNDRV_PCM_HW_PARAM_RATE
,
2000 snd_pcm_hw_rule_mulkdiv
, (void*) 1000000,
2001 SNDRV_PCM_HW_PARAM_BUFFER_SIZE
, SNDRV_PCM_HW_PARAM_BUFFER_TIME
, -1);
2004 err
= snd_pcm_hw_rule_add(runtime
, 0, SNDRV_PCM_HW_PARAM_PERIODS
,
2005 snd_pcm_hw_rule_div
, NULL
,
2006 SNDRV_PCM_HW_PARAM_BUFFER_SIZE
, SNDRV_PCM_HW_PARAM_PERIOD_SIZE
, -1);
2009 err
= snd_pcm_hw_rule_add(runtime
, 0, SNDRV_PCM_HW_PARAM_PERIOD_SIZE
,
2010 snd_pcm_hw_rule_div
, NULL
,
2011 SNDRV_PCM_HW_PARAM_BUFFER_SIZE
, SNDRV_PCM_HW_PARAM_PERIODS
, -1);
2014 err
= snd_pcm_hw_rule_add(runtime
, 0, SNDRV_PCM_HW_PARAM_PERIOD_SIZE
,
2015 snd_pcm_hw_rule_mulkdiv
, (void*) 8,
2016 SNDRV_PCM_HW_PARAM_PERIOD_BYTES
, SNDRV_PCM_HW_PARAM_FRAME_BITS
, -1);
2019 err
= snd_pcm_hw_rule_add(runtime
, 0, SNDRV_PCM_HW_PARAM_PERIOD_SIZE
,
2020 snd_pcm_hw_rule_muldivk
, (void*) 1000000,
2021 SNDRV_PCM_HW_PARAM_PERIOD_TIME
, SNDRV_PCM_HW_PARAM_RATE
, -1);
2024 err
= snd_pcm_hw_rule_add(runtime
, 0, SNDRV_PCM_HW_PARAM_BUFFER_SIZE
,
2025 snd_pcm_hw_rule_mul
, NULL
,
2026 SNDRV_PCM_HW_PARAM_PERIOD_SIZE
, SNDRV_PCM_HW_PARAM_PERIODS
, -1);
2029 err
= snd_pcm_hw_rule_add(runtime
, 0, SNDRV_PCM_HW_PARAM_BUFFER_SIZE
,
2030 snd_pcm_hw_rule_mulkdiv
, (void*) 8,
2031 SNDRV_PCM_HW_PARAM_BUFFER_BYTES
, SNDRV_PCM_HW_PARAM_FRAME_BITS
, -1);
2034 err
= snd_pcm_hw_rule_add(runtime
, 0, SNDRV_PCM_HW_PARAM_BUFFER_SIZE
,
2035 snd_pcm_hw_rule_muldivk
, (void*) 1000000,
2036 SNDRV_PCM_HW_PARAM_BUFFER_TIME
, SNDRV_PCM_HW_PARAM_RATE
, -1);
2039 err
= snd_pcm_hw_rule_add(runtime
, 0, SNDRV_PCM_HW_PARAM_PERIOD_BYTES
,
2040 snd_pcm_hw_rule_muldivk
, (void*) 8,
2041 SNDRV_PCM_HW_PARAM_PERIOD_SIZE
, SNDRV_PCM_HW_PARAM_FRAME_BITS
, -1);
2044 err
= snd_pcm_hw_rule_add(runtime
, 0, SNDRV_PCM_HW_PARAM_BUFFER_BYTES
,
2045 snd_pcm_hw_rule_muldivk
, (void*) 8,
2046 SNDRV_PCM_HW_PARAM_BUFFER_SIZE
, SNDRV_PCM_HW_PARAM_FRAME_BITS
, -1);
2049 err
= snd_pcm_hw_rule_add(runtime
, 0, SNDRV_PCM_HW_PARAM_PERIOD_TIME
,
2050 snd_pcm_hw_rule_mulkdiv
, (void*) 1000000,
2051 SNDRV_PCM_HW_PARAM_PERIOD_SIZE
, SNDRV_PCM_HW_PARAM_RATE
, -1);
2054 err
= snd_pcm_hw_rule_add(runtime
, 0, SNDRV_PCM_HW_PARAM_BUFFER_TIME
,
2055 snd_pcm_hw_rule_mulkdiv
, (void*) 1000000,
2056 SNDRV_PCM_HW_PARAM_BUFFER_SIZE
, SNDRV_PCM_HW_PARAM_RATE
, -1);
2062 int snd_pcm_hw_constraints_complete(struct snd_pcm_substream
*substream
)
2064 struct snd_pcm_runtime
*runtime
= substream
->runtime
;
2065 struct snd_pcm_hardware
*hw
= &runtime
->hw
;
2067 unsigned int mask
= 0;
2069 if (hw
->info
& SNDRV_PCM_INFO_INTERLEAVED
)
2070 mask
|= 1 << SNDRV_PCM_ACCESS_RW_INTERLEAVED
;
2071 if (hw
->info
& SNDRV_PCM_INFO_NONINTERLEAVED
)
2072 mask
|= 1 << SNDRV_PCM_ACCESS_RW_NONINTERLEAVED
;
2073 if (hw
->info
& SNDRV_PCM_INFO_MMAP
) {
2074 if (hw
->info
& SNDRV_PCM_INFO_INTERLEAVED
)
2075 mask
|= 1 << SNDRV_PCM_ACCESS_MMAP_INTERLEAVED
;
2076 if (hw
->info
& SNDRV_PCM_INFO_NONINTERLEAVED
)
2077 mask
|= 1 << SNDRV_PCM_ACCESS_MMAP_NONINTERLEAVED
;
2078 if (hw
->info
& SNDRV_PCM_INFO_COMPLEX
)
2079 mask
|= 1 << SNDRV_PCM_ACCESS_MMAP_COMPLEX
;
2081 err
= snd_pcm_hw_constraint_mask(runtime
, SNDRV_PCM_HW_PARAM_ACCESS
, mask
);
2085 err
= snd_pcm_hw_constraint_mask64(runtime
, SNDRV_PCM_HW_PARAM_FORMAT
, hw
->formats
);
2089 err
= snd_pcm_hw_constraint_mask(runtime
, SNDRV_PCM_HW_PARAM_SUBFORMAT
, 1 << SNDRV_PCM_SUBFORMAT_STD
);
2093 err
= snd_pcm_hw_constraint_minmax(runtime
, SNDRV_PCM_HW_PARAM_CHANNELS
,
2094 hw
->channels_min
, hw
->channels_max
);
2098 err
= snd_pcm_hw_constraint_minmax(runtime
, SNDRV_PCM_HW_PARAM_RATE
,
2099 hw
->rate_min
, hw
->rate_max
);
2103 err
= snd_pcm_hw_constraint_minmax(runtime
, SNDRV_PCM_HW_PARAM_PERIOD_BYTES
,
2104 hw
->period_bytes_min
, hw
->period_bytes_max
);
2108 err
= snd_pcm_hw_constraint_minmax(runtime
, SNDRV_PCM_HW_PARAM_PERIODS
,
2109 hw
->periods_min
, hw
->periods_max
);
2113 err
= snd_pcm_hw_constraint_minmax(runtime
, SNDRV_PCM_HW_PARAM_BUFFER_BYTES
,
2114 hw
->period_bytes_min
, hw
->buffer_bytes_max
);
2118 err
= snd_pcm_hw_rule_add(runtime
, 0, SNDRV_PCM_HW_PARAM_BUFFER_BYTES
,
2119 snd_pcm_hw_rule_buffer_bytes_max
, substream
,
2120 SNDRV_PCM_HW_PARAM_BUFFER_BYTES
, -1);
2125 if (runtime
->dma_bytes
) {
2126 err
= snd_pcm_hw_constraint_minmax(runtime
, SNDRV_PCM_HW_PARAM_BUFFER_BYTES
, 0, runtime
->dma_bytes
);
2131 if (!(hw
->rates
& (SNDRV_PCM_RATE_KNOT
| SNDRV_PCM_RATE_CONTINUOUS
))) {
2132 err
= snd_pcm_hw_rule_add(runtime
, 0, SNDRV_PCM_HW_PARAM_RATE
,
2133 snd_pcm_hw_rule_rate
, hw
,
2134 SNDRV_PCM_HW_PARAM_RATE
, -1);
2139 /* FIXME: this belong to lowlevel */
2140 snd_pcm_hw_constraint_integer(runtime
, SNDRV_PCM_HW_PARAM_PERIOD_SIZE
);
2145 static void pcm_release_private(struct snd_pcm_substream
*substream
)
2147 snd_pcm_unlink(substream
);
2150 void snd_pcm_release_substream(struct snd_pcm_substream
*substream
)
2152 substream
->ref_count
--;
2153 if (substream
->ref_count
> 0)
2156 snd_pcm_drop(substream
);
2157 if (substream
->hw_opened
) {
2158 if (substream
->ops
->hw_free
!= NULL
)
2159 substream
->ops
->hw_free(substream
);
2160 substream
->ops
->close(substream
);
2161 substream
->hw_opened
= 0;
2163 if (pm_qos_request_active(&substream
->latency_pm_qos_req
))
2164 pm_qos_remove_request(&substream
->latency_pm_qos_req
);
2165 if (substream
->pcm_release
) {
2166 substream
->pcm_release(substream
);
2167 substream
->pcm_release
= NULL
;
2169 snd_pcm_detach_substream(substream
);
2172 EXPORT_SYMBOL(snd_pcm_release_substream
);
2174 int snd_pcm_open_substream(struct snd_pcm
*pcm
, int stream
,
2176 struct snd_pcm_substream
**rsubstream
)
2178 struct snd_pcm_substream
*substream
;
2181 err
= snd_pcm_attach_substream(pcm
, stream
, file
, &substream
);
2184 if (substream
->ref_count
> 1) {
2185 *rsubstream
= substream
;
2189 err
= snd_pcm_hw_constraints_init(substream
);
2191 pcm_dbg(pcm
, "snd_pcm_hw_constraints_init failed\n");
2195 if ((err
= substream
->ops
->open(substream
)) < 0)
2198 substream
->hw_opened
= 1;
2200 err
= snd_pcm_hw_constraints_complete(substream
);
2202 pcm_dbg(pcm
, "snd_pcm_hw_constraints_complete failed\n");
2206 *rsubstream
= substream
;
2210 snd_pcm_release_substream(substream
);
2214 EXPORT_SYMBOL(snd_pcm_open_substream
);
2216 static int snd_pcm_open_file(struct file
*file
,
2217 struct snd_pcm
*pcm
,
2220 struct snd_pcm_file
*pcm_file
;
2221 struct snd_pcm_substream
*substream
;
2224 err
= snd_pcm_open_substream(pcm
, stream
, file
, &substream
);
2228 pcm_file
= kzalloc(sizeof(*pcm_file
), GFP_KERNEL
);
2229 if (pcm_file
== NULL
) {
2230 snd_pcm_release_substream(substream
);
2233 pcm_file
->substream
= substream
;
2234 if (substream
->ref_count
== 1) {
2235 substream
->file
= pcm_file
;
2236 substream
->pcm_release
= pcm_release_private
;
2238 file
->private_data
= pcm_file
;
2243 static int snd_pcm_playback_open(struct inode
*inode
, struct file
*file
)
2245 struct snd_pcm
*pcm
;
2246 int err
= nonseekable_open(inode
, file
);
2249 pcm
= snd_lookup_minor_data(iminor(inode
),
2250 SNDRV_DEVICE_TYPE_PCM_PLAYBACK
);
2251 err
= snd_pcm_open(file
, pcm
, SNDRV_PCM_STREAM_PLAYBACK
);
2253 snd_card_unref(pcm
->card
);
2257 static int snd_pcm_capture_open(struct inode
*inode
, struct file
*file
)
2259 struct snd_pcm
*pcm
;
2260 int err
= nonseekable_open(inode
, file
);
2263 pcm
= snd_lookup_minor_data(iminor(inode
),
2264 SNDRV_DEVICE_TYPE_PCM_CAPTURE
);
2265 err
= snd_pcm_open(file
, pcm
, SNDRV_PCM_STREAM_CAPTURE
);
2267 snd_card_unref(pcm
->card
);
2271 static int snd_pcm_open(struct file
*file
, struct snd_pcm
*pcm
, int stream
)
2280 err
= snd_card_file_add(pcm
->card
, file
);
2283 if (!try_module_get(pcm
->card
->module
)) {
2287 init_waitqueue_entry(&wait
, current
);
2288 add_wait_queue(&pcm
->open_wait
, &wait
);
2289 mutex_lock(&pcm
->open_mutex
);
2291 err
= snd_pcm_open_file(file
, pcm
, stream
);
2294 if (err
== -EAGAIN
) {
2295 if (file
->f_flags
& O_NONBLOCK
) {
2301 set_current_state(TASK_INTERRUPTIBLE
);
2302 mutex_unlock(&pcm
->open_mutex
);
2304 mutex_lock(&pcm
->open_mutex
);
2305 if (pcm
->card
->shutdown
) {
2309 if (signal_pending(current
)) {
2314 remove_wait_queue(&pcm
->open_wait
, &wait
);
2315 mutex_unlock(&pcm
->open_mutex
);
2321 module_put(pcm
->card
->module
);
2323 snd_card_file_remove(pcm
->card
, file
);
2328 static int snd_pcm_release(struct inode
*inode
, struct file
*file
)
2330 struct snd_pcm
*pcm
;
2331 struct snd_pcm_substream
*substream
;
2332 struct snd_pcm_file
*pcm_file
;
2334 pcm_file
= file
->private_data
;
2335 substream
= pcm_file
->substream
;
2336 if (snd_BUG_ON(!substream
))
2338 pcm
= substream
->pcm
;
2339 mutex_lock(&pcm
->open_mutex
);
2340 snd_pcm_release_substream(substream
);
2342 mutex_unlock(&pcm
->open_mutex
);
2343 wake_up(&pcm
->open_wait
);
2344 module_put(pcm
->card
->module
);
2345 snd_card_file_remove(pcm
->card
, file
);
2349 static snd_pcm_sframes_t
snd_pcm_playback_rewind(struct snd_pcm_substream
*substream
,
2350 snd_pcm_uframes_t frames
)
2352 struct snd_pcm_runtime
*runtime
= substream
->runtime
;
2353 snd_pcm_sframes_t appl_ptr
;
2354 snd_pcm_sframes_t ret
;
2355 snd_pcm_sframes_t hw_avail
;
2360 snd_pcm_stream_lock_irq(substream
);
2361 switch (runtime
->status
->state
) {
2362 case SNDRV_PCM_STATE_PREPARED
:
2364 case SNDRV_PCM_STATE_DRAINING
:
2365 case SNDRV_PCM_STATE_RUNNING
:
2366 if (snd_pcm_update_hw_ptr(substream
) >= 0)
2369 case SNDRV_PCM_STATE_XRUN
:
2372 case SNDRV_PCM_STATE_SUSPENDED
:
2380 hw_avail
= snd_pcm_playback_hw_avail(runtime
);
2381 if (hw_avail
<= 0) {
2385 if (frames
> (snd_pcm_uframes_t
)hw_avail
)
2387 appl_ptr
= runtime
->control
->appl_ptr
- frames
;
2389 appl_ptr
+= runtime
->boundary
;
2390 runtime
->control
->appl_ptr
= appl_ptr
;
2393 snd_pcm_stream_unlock_irq(substream
);
2397 static snd_pcm_sframes_t
snd_pcm_capture_rewind(struct snd_pcm_substream
*substream
,
2398 snd_pcm_uframes_t frames
)
2400 struct snd_pcm_runtime
*runtime
= substream
->runtime
;
2401 snd_pcm_sframes_t appl_ptr
;
2402 snd_pcm_sframes_t ret
;
2403 snd_pcm_sframes_t hw_avail
;
2408 snd_pcm_stream_lock_irq(substream
);
2409 switch (runtime
->status
->state
) {
2410 case SNDRV_PCM_STATE_PREPARED
:
2411 case SNDRV_PCM_STATE_DRAINING
:
2413 case SNDRV_PCM_STATE_RUNNING
:
2414 if (snd_pcm_update_hw_ptr(substream
) >= 0)
2417 case SNDRV_PCM_STATE_XRUN
:
2420 case SNDRV_PCM_STATE_SUSPENDED
:
2428 hw_avail
= snd_pcm_capture_hw_avail(runtime
);
2429 if (hw_avail
<= 0) {
2433 if (frames
> (snd_pcm_uframes_t
)hw_avail
)
2435 appl_ptr
= runtime
->control
->appl_ptr
- frames
;
2437 appl_ptr
+= runtime
->boundary
;
2438 runtime
->control
->appl_ptr
= appl_ptr
;
2441 snd_pcm_stream_unlock_irq(substream
);
2445 static snd_pcm_sframes_t
snd_pcm_playback_forward(struct snd_pcm_substream
*substream
,
2446 snd_pcm_uframes_t frames
)
2448 struct snd_pcm_runtime
*runtime
= substream
->runtime
;
2449 snd_pcm_sframes_t appl_ptr
;
2450 snd_pcm_sframes_t ret
;
2451 snd_pcm_sframes_t avail
;
2456 snd_pcm_stream_lock_irq(substream
);
2457 switch (runtime
->status
->state
) {
2458 case SNDRV_PCM_STATE_PREPARED
:
2459 case SNDRV_PCM_STATE_PAUSED
:
2461 case SNDRV_PCM_STATE_DRAINING
:
2462 case SNDRV_PCM_STATE_RUNNING
:
2463 if (snd_pcm_update_hw_ptr(substream
) >= 0)
2466 case SNDRV_PCM_STATE_XRUN
:
2469 case SNDRV_PCM_STATE_SUSPENDED
:
2477 avail
= snd_pcm_playback_avail(runtime
);
2482 if (frames
> (snd_pcm_uframes_t
)avail
)
2484 appl_ptr
= runtime
->control
->appl_ptr
+ frames
;
2485 if (appl_ptr
>= (snd_pcm_sframes_t
)runtime
->boundary
)
2486 appl_ptr
-= runtime
->boundary
;
2487 runtime
->control
->appl_ptr
= appl_ptr
;
2490 snd_pcm_stream_unlock_irq(substream
);
2494 static snd_pcm_sframes_t
snd_pcm_capture_forward(struct snd_pcm_substream
*substream
,
2495 snd_pcm_uframes_t frames
)
2497 struct snd_pcm_runtime
*runtime
= substream
->runtime
;
2498 snd_pcm_sframes_t appl_ptr
;
2499 snd_pcm_sframes_t ret
;
2500 snd_pcm_sframes_t avail
;
2505 snd_pcm_stream_lock_irq(substream
);
2506 switch (runtime
->status
->state
) {
2507 case SNDRV_PCM_STATE_PREPARED
:
2508 case SNDRV_PCM_STATE_DRAINING
:
2509 case SNDRV_PCM_STATE_PAUSED
:
2511 case SNDRV_PCM_STATE_RUNNING
:
2512 if (snd_pcm_update_hw_ptr(substream
) >= 0)
2515 case SNDRV_PCM_STATE_XRUN
:
2518 case SNDRV_PCM_STATE_SUSPENDED
:
2526 avail
= snd_pcm_capture_avail(runtime
);
2531 if (frames
> (snd_pcm_uframes_t
)avail
)
2533 appl_ptr
= runtime
->control
->appl_ptr
+ frames
;
2534 if (appl_ptr
>= (snd_pcm_sframes_t
)runtime
->boundary
)
2535 appl_ptr
-= runtime
->boundary
;
2536 runtime
->control
->appl_ptr
= appl_ptr
;
2539 snd_pcm_stream_unlock_irq(substream
);
2543 static int snd_pcm_hwsync(struct snd_pcm_substream
*substream
)
2545 struct snd_pcm_runtime
*runtime
= substream
->runtime
;
2548 snd_pcm_stream_lock_irq(substream
);
2549 switch (runtime
->status
->state
) {
2550 case SNDRV_PCM_STATE_DRAINING
:
2551 if (substream
->stream
== SNDRV_PCM_STREAM_CAPTURE
)
2554 case SNDRV_PCM_STATE_RUNNING
:
2555 if ((err
= snd_pcm_update_hw_ptr(substream
)) < 0)
2558 case SNDRV_PCM_STATE_PREPARED
:
2559 case SNDRV_PCM_STATE_SUSPENDED
:
2562 case SNDRV_PCM_STATE_XRUN
:
2570 snd_pcm_stream_unlock_irq(substream
);
2574 static int snd_pcm_delay(struct snd_pcm_substream
*substream
,
2575 snd_pcm_sframes_t __user
*res
)
2577 struct snd_pcm_runtime
*runtime
= substream
->runtime
;
2579 snd_pcm_sframes_t n
= 0;
2581 snd_pcm_stream_lock_irq(substream
);
2582 switch (runtime
->status
->state
) {
2583 case SNDRV_PCM_STATE_DRAINING
:
2584 if (substream
->stream
== SNDRV_PCM_STREAM_CAPTURE
)
2587 case SNDRV_PCM_STATE_RUNNING
:
2588 if ((err
= snd_pcm_update_hw_ptr(substream
)) < 0)
2591 case SNDRV_PCM_STATE_PREPARED
:
2592 case SNDRV_PCM_STATE_SUSPENDED
:
2594 if (substream
->stream
== SNDRV_PCM_STREAM_PLAYBACK
)
2595 n
= snd_pcm_playback_hw_avail(runtime
);
2597 n
= snd_pcm_capture_avail(runtime
);
2598 n
+= runtime
->delay
;
2600 case SNDRV_PCM_STATE_XRUN
:
2608 snd_pcm_stream_unlock_irq(substream
);
2610 if (put_user(n
, res
))
2615 static int snd_pcm_sync_ptr(struct snd_pcm_substream
*substream
,
2616 struct snd_pcm_sync_ptr __user
*_sync_ptr
)
2618 struct snd_pcm_runtime
*runtime
= substream
->runtime
;
2619 struct snd_pcm_sync_ptr sync_ptr
;
2620 volatile struct snd_pcm_mmap_status
*status
;
2621 volatile struct snd_pcm_mmap_control
*control
;
2624 memset(&sync_ptr
, 0, sizeof(sync_ptr
));
2625 if (get_user(sync_ptr
.flags
, (unsigned __user
*)&(_sync_ptr
->flags
)))
2627 if (copy_from_user(&sync_ptr
.c
.control
, &(_sync_ptr
->c
.control
), sizeof(struct snd_pcm_mmap_control
)))
2629 status
= runtime
->status
;
2630 control
= runtime
->control
;
2631 if (sync_ptr
.flags
& SNDRV_PCM_SYNC_PTR_HWSYNC
) {
2632 err
= snd_pcm_hwsync(substream
);
2636 snd_pcm_stream_lock_irq(substream
);
2637 if (!(sync_ptr
.flags
& SNDRV_PCM_SYNC_PTR_APPL
))
2638 control
->appl_ptr
= sync_ptr
.c
.control
.appl_ptr
;
2640 sync_ptr
.c
.control
.appl_ptr
= control
->appl_ptr
;
2641 if (!(sync_ptr
.flags
& SNDRV_PCM_SYNC_PTR_AVAIL_MIN
))
2642 control
->avail_min
= sync_ptr
.c
.control
.avail_min
;
2644 sync_ptr
.c
.control
.avail_min
= control
->avail_min
;
2645 sync_ptr
.s
.status
.state
= status
->state
;
2646 sync_ptr
.s
.status
.hw_ptr
= status
->hw_ptr
;
2647 sync_ptr
.s
.status
.tstamp
= status
->tstamp
;
2648 sync_ptr
.s
.status
.suspended_state
= status
->suspended_state
;
2649 snd_pcm_stream_unlock_irq(substream
);
2650 if (copy_to_user(_sync_ptr
, &sync_ptr
, sizeof(sync_ptr
)))
2655 static int snd_pcm_tstamp(struct snd_pcm_substream
*substream
, int __user
*_arg
)
2657 struct snd_pcm_runtime
*runtime
= substream
->runtime
;
2660 if (get_user(arg
, _arg
))
2662 if (arg
< 0 || arg
> SNDRV_PCM_TSTAMP_TYPE_LAST
)
2664 runtime
->tstamp_type
= arg
;
2668 static int snd_pcm_common_ioctl1(struct file
*file
,
2669 struct snd_pcm_substream
*substream
,
2670 unsigned int cmd
, void __user
*arg
)
2673 case SNDRV_PCM_IOCTL_PVERSION
:
2674 return put_user(SNDRV_PCM_VERSION
, (int __user
*)arg
) ? -EFAULT
: 0;
2675 case SNDRV_PCM_IOCTL_INFO
:
2676 return snd_pcm_info_user(substream
, arg
);
2677 case SNDRV_PCM_IOCTL_TSTAMP
: /* just for compatibility */
2679 case SNDRV_PCM_IOCTL_TTSTAMP
:
2680 return snd_pcm_tstamp(substream
, arg
);
2681 case SNDRV_PCM_IOCTL_HW_REFINE
:
2682 return snd_pcm_hw_refine_user(substream
, arg
);
2683 case SNDRV_PCM_IOCTL_HW_PARAMS
:
2684 return snd_pcm_hw_params_user(substream
, arg
);
2685 case SNDRV_PCM_IOCTL_HW_FREE
:
2686 return snd_pcm_hw_free(substream
);
2687 case SNDRV_PCM_IOCTL_SW_PARAMS
:
2688 return snd_pcm_sw_params_user(substream
, arg
);
2689 case SNDRV_PCM_IOCTL_STATUS
:
2690 return snd_pcm_status_user(substream
, arg
);
2691 case SNDRV_PCM_IOCTL_CHANNEL_INFO
:
2692 return snd_pcm_channel_info_user(substream
, arg
);
2693 case SNDRV_PCM_IOCTL_PREPARE
:
2694 return snd_pcm_prepare(substream
, file
);
2695 case SNDRV_PCM_IOCTL_RESET
:
2696 return snd_pcm_reset(substream
);
2697 case SNDRV_PCM_IOCTL_START
:
2698 return snd_pcm_action_lock_irq(&snd_pcm_action_start
, substream
, SNDRV_PCM_STATE_RUNNING
);
2699 case SNDRV_PCM_IOCTL_LINK
:
2700 return snd_pcm_link(substream
, (int)(unsigned long) arg
);
2701 case SNDRV_PCM_IOCTL_UNLINK
:
2702 return snd_pcm_unlink(substream
);
2703 case SNDRV_PCM_IOCTL_RESUME
:
2704 return snd_pcm_resume(substream
);
2705 case SNDRV_PCM_IOCTL_XRUN
:
2706 return snd_pcm_xrun(substream
);
2707 case SNDRV_PCM_IOCTL_HWSYNC
:
2708 return snd_pcm_hwsync(substream
);
2709 case SNDRV_PCM_IOCTL_DELAY
:
2710 return snd_pcm_delay(substream
, arg
);
2711 case SNDRV_PCM_IOCTL_SYNC_PTR
:
2712 return snd_pcm_sync_ptr(substream
, arg
);
2713 #ifdef CONFIG_SND_SUPPORT_OLD_API
2714 case SNDRV_PCM_IOCTL_HW_REFINE_OLD
:
2715 return snd_pcm_hw_refine_old_user(substream
, arg
);
2716 case SNDRV_PCM_IOCTL_HW_PARAMS_OLD
:
2717 return snd_pcm_hw_params_old_user(substream
, arg
);
2719 case SNDRV_PCM_IOCTL_DRAIN
:
2720 return snd_pcm_drain(substream
, file
);
2721 case SNDRV_PCM_IOCTL_DROP
:
2722 return snd_pcm_drop(substream
);
2723 case SNDRV_PCM_IOCTL_PAUSE
:
2726 snd_pcm_stream_lock_irq(substream
);
2727 res
= snd_pcm_pause(substream
, (int)(unsigned long)arg
);
2728 snd_pcm_stream_unlock_irq(substream
);
2732 pcm_dbg(substream
->pcm
, "unknown ioctl = 0x%x\n", cmd
);
2736 static int snd_pcm_playback_ioctl1(struct file
*file
,
2737 struct snd_pcm_substream
*substream
,
2738 unsigned int cmd
, void __user
*arg
)
2740 if (snd_BUG_ON(!substream
))
2742 if (snd_BUG_ON(substream
->stream
!= SNDRV_PCM_STREAM_PLAYBACK
))
2745 case SNDRV_PCM_IOCTL_WRITEI_FRAMES
:
2747 struct snd_xferi xferi
;
2748 struct snd_xferi __user
*_xferi
= arg
;
2749 struct snd_pcm_runtime
*runtime
= substream
->runtime
;
2750 snd_pcm_sframes_t result
;
2751 if (runtime
->status
->state
== SNDRV_PCM_STATE_OPEN
)
2753 if (put_user(0, &_xferi
->result
))
2755 if (copy_from_user(&xferi
, _xferi
, sizeof(xferi
)))
2757 result
= snd_pcm_lib_write(substream
, xferi
.buf
, xferi
.frames
);
2758 __put_user(result
, &_xferi
->result
);
2759 return result
< 0 ? result
: 0;
2761 case SNDRV_PCM_IOCTL_WRITEN_FRAMES
:
2763 struct snd_xfern xfern
;
2764 struct snd_xfern __user
*_xfern
= arg
;
2765 struct snd_pcm_runtime
*runtime
= substream
->runtime
;
2767 snd_pcm_sframes_t result
;
2768 if (runtime
->status
->state
== SNDRV_PCM_STATE_OPEN
)
2770 if (runtime
->channels
> 128)
2772 if (put_user(0, &_xfern
->result
))
2774 if (copy_from_user(&xfern
, _xfern
, sizeof(xfern
)))
2777 bufs
= memdup_user(xfern
.bufs
,
2778 sizeof(void *) * runtime
->channels
);
2780 return PTR_ERR(bufs
);
2781 result
= snd_pcm_lib_writev(substream
, bufs
, xfern
.frames
);
2783 __put_user(result
, &_xfern
->result
);
2784 return result
< 0 ? result
: 0;
2786 case SNDRV_PCM_IOCTL_REWIND
:
2788 snd_pcm_uframes_t frames
;
2789 snd_pcm_uframes_t __user
*_frames
= arg
;
2790 snd_pcm_sframes_t result
;
2791 if (get_user(frames
, _frames
))
2793 if (put_user(0, _frames
))
2795 result
= snd_pcm_playback_rewind(substream
, frames
);
2796 __put_user(result
, _frames
);
2797 return result
< 0 ? result
: 0;
2799 case SNDRV_PCM_IOCTL_FORWARD
:
2801 snd_pcm_uframes_t frames
;
2802 snd_pcm_uframes_t __user
*_frames
= arg
;
2803 snd_pcm_sframes_t result
;
2804 if (get_user(frames
, _frames
))
2806 if (put_user(0, _frames
))
2808 result
= snd_pcm_playback_forward(substream
, frames
);
2809 __put_user(result
, _frames
);
2810 return result
< 0 ? result
: 0;
2813 return snd_pcm_common_ioctl1(file
, substream
, cmd
, arg
);
2816 static int snd_pcm_capture_ioctl1(struct file
*file
,
2817 struct snd_pcm_substream
*substream
,
2818 unsigned int cmd
, void __user
*arg
)
2820 if (snd_BUG_ON(!substream
))
2822 if (snd_BUG_ON(substream
->stream
!= SNDRV_PCM_STREAM_CAPTURE
))
2825 case SNDRV_PCM_IOCTL_READI_FRAMES
:
2827 struct snd_xferi xferi
;
2828 struct snd_xferi __user
*_xferi
= arg
;
2829 struct snd_pcm_runtime
*runtime
= substream
->runtime
;
2830 snd_pcm_sframes_t result
;
2831 if (runtime
->status
->state
== SNDRV_PCM_STATE_OPEN
)
2833 if (put_user(0, &_xferi
->result
))
2835 if (copy_from_user(&xferi
, _xferi
, sizeof(xferi
)))
2837 result
= snd_pcm_lib_read(substream
, xferi
.buf
, xferi
.frames
);
2838 __put_user(result
, &_xferi
->result
);
2839 return result
< 0 ? result
: 0;
2841 case SNDRV_PCM_IOCTL_READN_FRAMES
:
2843 struct snd_xfern xfern
;
2844 struct snd_xfern __user
*_xfern
= arg
;
2845 struct snd_pcm_runtime
*runtime
= substream
->runtime
;
2847 snd_pcm_sframes_t result
;
2848 if (runtime
->status
->state
== SNDRV_PCM_STATE_OPEN
)
2850 if (runtime
->channels
> 128)
2852 if (put_user(0, &_xfern
->result
))
2854 if (copy_from_user(&xfern
, _xfern
, sizeof(xfern
)))
2857 bufs
= memdup_user(xfern
.bufs
,
2858 sizeof(void *) * runtime
->channels
);
2860 return PTR_ERR(bufs
);
2861 result
= snd_pcm_lib_readv(substream
, bufs
, xfern
.frames
);
2863 __put_user(result
, &_xfern
->result
);
2864 return result
< 0 ? result
: 0;
2866 case SNDRV_PCM_IOCTL_REWIND
:
2868 snd_pcm_uframes_t frames
;
2869 snd_pcm_uframes_t __user
*_frames
= arg
;
2870 snd_pcm_sframes_t result
;
2871 if (get_user(frames
, _frames
))
2873 if (put_user(0, _frames
))
2875 result
= snd_pcm_capture_rewind(substream
, frames
);
2876 __put_user(result
, _frames
);
2877 return result
< 0 ? result
: 0;
2879 case SNDRV_PCM_IOCTL_FORWARD
:
2881 snd_pcm_uframes_t frames
;
2882 snd_pcm_uframes_t __user
*_frames
= arg
;
2883 snd_pcm_sframes_t result
;
2884 if (get_user(frames
, _frames
))
2886 if (put_user(0, _frames
))
2888 result
= snd_pcm_capture_forward(substream
, frames
);
2889 __put_user(result
, _frames
);
2890 return result
< 0 ? result
: 0;
2893 return snd_pcm_common_ioctl1(file
, substream
, cmd
, arg
);
2896 static long snd_pcm_playback_ioctl(struct file
*file
, unsigned int cmd
,
2899 struct snd_pcm_file
*pcm_file
;
2901 pcm_file
= file
->private_data
;
2903 if (((cmd
>> 8) & 0xff) != 'A')
2906 return snd_pcm_playback_ioctl1(file
, pcm_file
->substream
, cmd
,
2907 (void __user
*)arg
);
2910 static long snd_pcm_capture_ioctl(struct file
*file
, unsigned int cmd
,
2913 struct snd_pcm_file
*pcm_file
;
2915 pcm_file
= file
->private_data
;
2917 if (((cmd
>> 8) & 0xff) != 'A')
2920 return snd_pcm_capture_ioctl1(file
, pcm_file
->substream
, cmd
,
2921 (void __user
*)arg
);
2924 int snd_pcm_kernel_ioctl(struct snd_pcm_substream
*substream
,
2925 unsigned int cmd
, void *arg
)
2930 fs
= snd_enter_user();
2931 switch (substream
->stream
) {
2932 case SNDRV_PCM_STREAM_PLAYBACK
:
2933 result
= snd_pcm_playback_ioctl1(NULL
, substream
, cmd
,
2934 (void __user
*)arg
);
2936 case SNDRV_PCM_STREAM_CAPTURE
:
2937 result
= snd_pcm_capture_ioctl1(NULL
, substream
, cmd
,
2938 (void __user
*)arg
);
2948 EXPORT_SYMBOL(snd_pcm_kernel_ioctl
);
2950 static ssize_t
snd_pcm_read(struct file
*file
, char __user
*buf
, size_t count
,
2953 struct snd_pcm_file
*pcm_file
;
2954 struct snd_pcm_substream
*substream
;
2955 struct snd_pcm_runtime
*runtime
;
2956 snd_pcm_sframes_t result
;
2958 pcm_file
= file
->private_data
;
2959 substream
= pcm_file
->substream
;
2960 if (PCM_RUNTIME_CHECK(substream
))
2962 runtime
= substream
->runtime
;
2963 if (runtime
->status
->state
== SNDRV_PCM_STATE_OPEN
)
2965 if (!frame_aligned(runtime
, count
))
2967 count
= bytes_to_frames(runtime
, count
);
2968 result
= snd_pcm_lib_read(substream
, buf
, count
);
2970 result
= frames_to_bytes(runtime
, result
);
2974 static ssize_t
snd_pcm_write(struct file
*file
, const char __user
*buf
,
2975 size_t count
, loff_t
* offset
)
2977 struct snd_pcm_file
*pcm_file
;
2978 struct snd_pcm_substream
*substream
;
2979 struct snd_pcm_runtime
*runtime
;
2980 snd_pcm_sframes_t result
;
2982 pcm_file
= file
->private_data
;
2983 substream
= pcm_file
->substream
;
2984 if (PCM_RUNTIME_CHECK(substream
))
2986 runtime
= substream
->runtime
;
2987 if (runtime
->status
->state
== SNDRV_PCM_STATE_OPEN
)
2989 if (!frame_aligned(runtime
, count
))
2991 count
= bytes_to_frames(runtime
, count
);
2992 result
= snd_pcm_lib_write(substream
, buf
, count
);
2994 result
= frames_to_bytes(runtime
, result
);
2998 static ssize_t
snd_pcm_aio_read(struct kiocb
*iocb
, const struct iovec
*iov
,
2999 unsigned long nr_segs
, loff_t pos
)
3002 struct snd_pcm_file
*pcm_file
;
3003 struct snd_pcm_substream
*substream
;
3004 struct snd_pcm_runtime
*runtime
;
3005 snd_pcm_sframes_t result
;
3008 snd_pcm_uframes_t frames
;
3010 pcm_file
= iocb
->ki_filp
->private_data
;
3011 substream
= pcm_file
->substream
;
3012 if (PCM_RUNTIME_CHECK(substream
))
3014 runtime
= substream
->runtime
;
3015 if (runtime
->status
->state
== SNDRV_PCM_STATE_OPEN
)
3017 if (nr_segs
> 1024 || nr_segs
!= runtime
->channels
)
3019 if (!frame_aligned(runtime
, iov
->iov_len
))
3021 frames
= bytes_to_samples(runtime
, iov
->iov_len
);
3022 bufs
= kmalloc(sizeof(void *) * nr_segs
, GFP_KERNEL
);
3025 for (i
= 0; i
< nr_segs
; ++i
)
3026 bufs
[i
] = iov
[i
].iov_base
;
3027 result
= snd_pcm_lib_readv(substream
, bufs
, frames
);
3029 result
= frames_to_bytes(runtime
, result
);
3034 static ssize_t
snd_pcm_aio_write(struct kiocb
*iocb
, const struct iovec
*iov
,
3035 unsigned long nr_segs
, loff_t pos
)
3037 struct snd_pcm_file
*pcm_file
;
3038 struct snd_pcm_substream
*substream
;
3039 struct snd_pcm_runtime
*runtime
;
3040 snd_pcm_sframes_t result
;
3043 snd_pcm_uframes_t frames
;
3045 pcm_file
= iocb
->ki_filp
->private_data
;
3046 substream
= pcm_file
->substream
;
3047 if (PCM_RUNTIME_CHECK(substream
))
3049 runtime
= substream
->runtime
;
3050 if (runtime
->status
->state
== SNDRV_PCM_STATE_OPEN
)
3052 if (nr_segs
> 128 || nr_segs
!= runtime
->channels
||
3053 !frame_aligned(runtime
, iov
->iov_len
))
3055 frames
= bytes_to_samples(runtime
, iov
->iov_len
);
3056 bufs
= kmalloc(sizeof(void *) * nr_segs
, GFP_KERNEL
);
3059 for (i
= 0; i
< nr_segs
; ++i
)
3060 bufs
[i
] = iov
[i
].iov_base
;
3061 result
= snd_pcm_lib_writev(substream
, bufs
, frames
);
3063 result
= frames_to_bytes(runtime
, result
);
3068 static unsigned int snd_pcm_playback_poll(struct file
*file
, poll_table
* wait
)
3070 struct snd_pcm_file
*pcm_file
;
3071 struct snd_pcm_substream
*substream
;
3072 struct snd_pcm_runtime
*runtime
;
3074 snd_pcm_uframes_t avail
;
3076 pcm_file
= file
->private_data
;
3078 substream
= pcm_file
->substream
;
3079 if (PCM_RUNTIME_CHECK(substream
))
3081 runtime
= substream
->runtime
;
3083 poll_wait(file
, &runtime
->sleep
, wait
);
3085 snd_pcm_stream_lock_irq(substream
);
3086 avail
= snd_pcm_playback_avail(runtime
);
3087 switch (runtime
->status
->state
) {
3088 case SNDRV_PCM_STATE_RUNNING
:
3089 case SNDRV_PCM_STATE_PREPARED
:
3090 case SNDRV_PCM_STATE_PAUSED
:
3091 if (avail
>= runtime
->control
->avail_min
) {
3092 mask
= POLLOUT
| POLLWRNORM
;
3096 case SNDRV_PCM_STATE_DRAINING
:
3100 mask
= POLLOUT
| POLLWRNORM
| POLLERR
;
3103 snd_pcm_stream_unlock_irq(substream
);
3107 static unsigned int snd_pcm_capture_poll(struct file
*file
, poll_table
* wait
)
3109 struct snd_pcm_file
*pcm_file
;
3110 struct snd_pcm_substream
*substream
;
3111 struct snd_pcm_runtime
*runtime
;
3113 snd_pcm_uframes_t avail
;
3115 pcm_file
= file
->private_data
;
3117 substream
= pcm_file
->substream
;
3118 if (PCM_RUNTIME_CHECK(substream
))
3120 runtime
= substream
->runtime
;
3122 poll_wait(file
, &runtime
->sleep
, wait
);
3124 snd_pcm_stream_lock_irq(substream
);
3125 avail
= snd_pcm_capture_avail(runtime
);
3126 switch (runtime
->status
->state
) {
3127 case SNDRV_PCM_STATE_RUNNING
:
3128 case SNDRV_PCM_STATE_PREPARED
:
3129 case SNDRV_PCM_STATE_PAUSED
:
3130 if (avail
>= runtime
->control
->avail_min
) {
3131 mask
= POLLIN
| POLLRDNORM
;
3136 case SNDRV_PCM_STATE_DRAINING
:
3138 mask
= POLLIN
| POLLRDNORM
;
3143 mask
= POLLIN
| POLLRDNORM
| POLLERR
;
3146 snd_pcm_stream_unlock_irq(substream
);
3155 * Only on coherent architectures, we can mmap the status and the control records
3156 * for effcient data transfer. On others, we have to use HWSYNC ioctl...
3158 #if defined(CONFIG_X86) || defined(CONFIG_PPC) || defined(CONFIG_ALPHA)
3160 * mmap status record
3162 static int snd_pcm_mmap_status_fault(struct vm_area_struct
*area
,
3163 struct vm_fault
*vmf
)
3165 struct snd_pcm_substream
*substream
= area
->vm_private_data
;
3166 struct snd_pcm_runtime
*runtime
;
3168 if (substream
== NULL
)
3169 return VM_FAULT_SIGBUS
;
3170 runtime
= substream
->runtime
;
3171 vmf
->page
= virt_to_page(runtime
->status
);
3172 get_page(vmf
->page
);
3176 static const struct vm_operations_struct snd_pcm_vm_ops_status
=
3178 .fault
= snd_pcm_mmap_status_fault
,
3181 static int snd_pcm_mmap_status(struct snd_pcm_substream
*substream
, struct file
*file
,
3182 struct vm_area_struct
*area
)
3185 if (!(area
->vm_flags
& VM_READ
))
3187 size
= area
->vm_end
- area
->vm_start
;
3188 if (size
!= PAGE_ALIGN(sizeof(struct snd_pcm_mmap_status
)))
3190 area
->vm_ops
= &snd_pcm_vm_ops_status
;
3191 area
->vm_private_data
= substream
;
3192 area
->vm_flags
|= VM_DONTEXPAND
| VM_DONTDUMP
;
3197 * mmap control record
3199 static int snd_pcm_mmap_control_fault(struct vm_area_struct
*area
,
3200 struct vm_fault
*vmf
)
3202 struct snd_pcm_substream
*substream
= area
->vm_private_data
;
3203 struct snd_pcm_runtime
*runtime
;
3205 if (substream
== NULL
)
3206 return VM_FAULT_SIGBUS
;
3207 runtime
= substream
->runtime
;
3208 vmf
->page
= virt_to_page(runtime
->control
);
3209 get_page(vmf
->page
);
3213 static const struct vm_operations_struct snd_pcm_vm_ops_control
=
3215 .fault
= snd_pcm_mmap_control_fault
,
3218 static int snd_pcm_mmap_control(struct snd_pcm_substream
*substream
, struct file
*file
,
3219 struct vm_area_struct
*area
)
3222 if (!(area
->vm_flags
& VM_READ
))
3224 size
= area
->vm_end
- area
->vm_start
;
3225 if (size
!= PAGE_ALIGN(sizeof(struct snd_pcm_mmap_control
)))
3227 area
->vm_ops
= &snd_pcm_vm_ops_control
;
3228 area
->vm_private_data
= substream
;
3229 area
->vm_flags
|= VM_DONTEXPAND
| VM_DONTDUMP
;
3232 #else /* ! coherent mmap */
3234 * don't support mmap for status and control records.
3236 static int snd_pcm_mmap_status(struct snd_pcm_substream
*substream
, struct file
*file
,
3237 struct vm_area_struct
*area
)
3241 static int snd_pcm_mmap_control(struct snd_pcm_substream
*substream
, struct file
*file
,
3242 struct vm_area_struct
*area
)
3246 #endif /* coherent mmap */
3248 static inline struct page
*
3249 snd_pcm_default_page_ops(struct snd_pcm_substream
*substream
, unsigned long ofs
)
3251 void *vaddr
= substream
->runtime
->dma_area
+ ofs
;
3252 #if defined(CONFIG_MIPS) && defined(CONFIG_DMA_NONCOHERENT)
3253 if (substream
->dma_buffer
.dev
.type
== SNDRV_DMA_TYPE_DEV
)
3254 return virt_to_page(CAC_ADDR(vaddr
));
3256 #if defined(CONFIG_PPC32) && defined(CONFIG_NOT_COHERENT_CACHE)
3257 if (substream
->dma_buffer
.dev
.type
== SNDRV_DMA_TYPE_DEV
) {
3258 dma_addr_t addr
= substream
->runtime
->dma_addr
+ ofs
;
3259 addr
-= get_dma_offset(substream
->dma_buffer
.dev
.dev
);
3260 /* assume dma_handle set via pfn_to_phys() in
3261 * mm/dma-noncoherent.c
3263 return pfn_to_page(addr
>> PAGE_SHIFT
);
3266 return virt_to_page(vaddr
);
3270 * fault callback for mmapping a RAM page
3272 static int snd_pcm_mmap_data_fault(struct vm_area_struct
*area
,
3273 struct vm_fault
*vmf
)
3275 struct snd_pcm_substream
*substream
= area
->vm_private_data
;
3276 struct snd_pcm_runtime
*runtime
;
3277 unsigned long offset
;
3281 if (substream
== NULL
)
3282 return VM_FAULT_SIGBUS
;
3283 runtime
= substream
->runtime
;
3284 offset
= vmf
->pgoff
<< PAGE_SHIFT
;
3285 dma_bytes
= PAGE_ALIGN(runtime
->dma_bytes
);
3286 if (offset
> dma_bytes
- PAGE_SIZE
)
3287 return VM_FAULT_SIGBUS
;
3288 if (substream
->ops
->page
)
3289 page
= substream
->ops
->page(substream
, offset
);
3291 page
= snd_pcm_default_page_ops(substream
, offset
);
3293 return VM_FAULT_SIGBUS
;
3299 static const struct vm_operations_struct snd_pcm_vm_ops_data
= {
3300 .open
= snd_pcm_mmap_data_open
,
3301 .close
= snd_pcm_mmap_data_close
,
3304 static const struct vm_operations_struct snd_pcm_vm_ops_data_fault
= {
3305 .open
= snd_pcm_mmap_data_open
,
3306 .close
= snd_pcm_mmap_data_close
,
3307 .fault
= snd_pcm_mmap_data_fault
,
3310 #ifndef ARCH_HAS_DMA_MMAP_COHERENT
3311 /* This should be defined / handled globally! */
3312 #if defined(CONFIG_ARM) || defined(CONFIG_ARM64)
3313 #define ARCH_HAS_DMA_MMAP_COHERENT
3318 * mmap the DMA buffer on RAM
3320 int snd_pcm_lib_default_mmap(struct snd_pcm_substream
*substream
,
3321 struct vm_area_struct
*area
)
3323 area
->vm_flags
|= VM_DONTEXPAND
| VM_DONTDUMP
;
3324 #ifdef CONFIG_GENERIC_ALLOCATOR
3325 if (substream
->dma_buffer
.dev
.type
== SNDRV_DMA_TYPE_DEV_IRAM
) {
3326 area
->vm_page_prot
= pgprot_writecombine(area
->vm_page_prot
);
3327 return remap_pfn_range(area
, area
->vm_start
,
3328 substream
->dma_buffer
.addr
>> PAGE_SHIFT
,
3329 area
->vm_end
- area
->vm_start
, area
->vm_page_prot
);
3331 #endif /* CONFIG_GENERIC_ALLOCATOR */
3332 #ifdef ARCH_HAS_DMA_MMAP_COHERENT
3333 if (!substream
->ops
->page
&&
3334 substream
->dma_buffer
.dev
.type
== SNDRV_DMA_TYPE_DEV
)
3335 return dma_mmap_coherent(substream
->dma_buffer
.dev
.dev
,
3337 substream
->runtime
->dma_area
,
3338 substream
->runtime
->dma_addr
,
3339 area
->vm_end
- area
->vm_start
);
3340 #elif defined(CONFIG_MIPS) && defined(CONFIG_DMA_NONCOHERENT)
3341 if (substream
->dma_buffer
.dev
.type
== SNDRV_DMA_TYPE_DEV
&&
3342 !plat_device_is_coherent(substream
->dma_buffer
.dev
.dev
))
3343 area
->vm_page_prot
= pgprot_noncached(area
->vm_page_prot
);
3344 #endif /* ARCH_HAS_DMA_MMAP_COHERENT */
3345 /* mmap with fault handler */
3346 area
->vm_ops
= &snd_pcm_vm_ops_data_fault
;
3349 EXPORT_SYMBOL_GPL(snd_pcm_lib_default_mmap
);
3352 * mmap the DMA buffer on I/O memory area
3354 #if SNDRV_PCM_INFO_MMAP_IOMEM
3355 int snd_pcm_lib_mmap_iomem(struct snd_pcm_substream
*substream
,
3356 struct vm_area_struct
*area
)
3358 struct snd_pcm_runtime
*runtime
= substream
->runtime
;;
3360 area
->vm_page_prot
= pgprot_noncached(area
->vm_page_prot
);
3361 return vm_iomap_memory(area
, runtime
->dma_addr
, runtime
->dma_bytes
);
3364 EXPORT_SYMBOL(snd_pcm_lib_mmap_iomem
);
3365 #endif /* SNDRV_PCM_INFO_MMAP */
3370 int snd_pcm_mmap_data(struct snd_pcm_substream
*substream
, struct file
*file
,
3371 struct vm_area_struct
*area
)
3373 struct snd_pcm_runtime
*runtime
;
3375 unsigned long offset
;
3379 if (substream
->stream
== SNDRV_PCM_STREAM_PLAYBACK
) {
3380 if (!(area
->vm_flags
& (VM_WRITE
|VM_READ
)))
3383 if (!(area
->vm_flags
& VM_READ
))
3386 runtime
= substream
->runtime
;
3387 if (runtime
->status
->state
== SNDRV_PCM_STATE_OPEN
)
3389 if (!(runtime
->info
& SNDRV_PCM_INFO_MMAP
))
3391 if (runtime
->access
== SNDRV_PCM_ACCESS_RW_INTERLEAVED
||
3392 runtime
->access
== SNDRV_PCM_ACCESS_RW_NONINTERLEAVED
)
3394 size
= area
->vm_end
- area
->vm_start
;
3395 offset
= area
->vm_pgoff
<< PAGE_SHIFT
;
3396 dma_bytes
= PAGE_ALIGN(runtime
->dma_bytes
);
3397 if ((size_t)size
> dma_bytes
)
3399 if (offset
> dma_bytes
- size
)
3402 area
->vm_ops
= &snd_pcm_vm_ops_data
;
3403 area
->vm_private_data
= substream
;
3404 if (substream
->ops
->mmap
)
3405 err
= substream
->ops
->mmap(substream
, area
);
3407 err
= snd_pcm_lib_default_mmap(substream
, area
);
3409 atomic_inc(&substream
->mmap_count
);
3413 EXPORT_SYMBOL(snd_pcm_mmap_data
);
3415 static int snd_pcm_mmap(struct file
*file
, struct vm_area_struct
*area
)
3417 struct snd_pcm_file
* pcm_file
;
3418 struct snd_pcm_substream
*substream
;
3419 unsigned long offset
;
3421 pcm_file
= file
->private_data
;
3422 substream
= pcm_file
->substream
;
3423 if (PCM_RUNTIME_CHECK(substream
))
3426 offset
= area
->vm_pgoff
<< PAGE_SHIFT
;
3428 case SNDRV_PCM_MMAP_OFFSET_STATUS
:
3429 if (pcm_file
->no_compat_mmap
)
3431 return snd_pcm_mmap_status(substream
, file
, area
);
3432 case SNDRV_PCM_MMAP_OFFSET_CONTROL
:
3433 if (pcm_file
->no_compat_mmap
)
3435 return snd_pcm_mmap_control(substream
, file
, area
);
3437 return snd_pcm_mmap_data(substream
, file
, area
);
3442 static int snd_pcm_fasync(int fd
, struct file
* file
, int on
)
3444 struct snd_pcm_file
* pcm_file
;
3445 struct snd_pcm_substream
*substream
;
3446 struct snd_pcm_runtime
*runtime
;
3448 pcm_file
= file
->private_data
;
3449 substream
= pcm_file
->substream
;
3450 if (PCM_RUNTIME_CHECK(substream
))
3452 runtime
= substream
->runtime
;
3453 return fasync_helper(fd
, file
, on
, &runtime
->fasync
);
3459 #ifdef CONFIG_COMPAT
3460 #include "pcm_compat.c"
3462 #define snd_pcm_ioctl_compat NULL
3466 * To be removed helpers to keep binary compatibility
3469 #ifdef CONFIG_SND_SUPPORT_OLD_API
3470 #define __OLD_TO_NEW_MASK(x) ((x&7)|((x&0x07fffff8)<<5))
3471 #define __NEW_TO_OLD_MASK(x) ((x&7)|((x&0xffffff00)>>5))
3473 static void snd_pcm_hw_convert_from_old_params(struct snd_pcm_hw_params
*params
,
3474 struct snd_pcm_hw_params_old
*oparams
)
3478 memset(params
, 0, sizeof(*params
));
3479 params
->flags
= oparams
->flags
;
3480 for (i
= 0; i
< ARRAY_SIZE(oparams
->masks
); i
++)
3481 params
->masks
[i
].bits
[0] = oparams
->masks
[i
];
3482 memcpy(params
->intervals
, oparams
->intervals
, sizeof(oparams
->intervals
));
3483 params
->rmask
= __OLD_TO_NEW_MASK(oparams
->rmask
);
3484 params
->cmask
= __OLD_TO_NEW_MASK(oparams
->cmask
);
3485 params
->info
= oparams
->info
;
3486 params
->msbits
= oparams
->msbits
;
3487 params
->rate_num
= oparams
->rate_num
;
3488 params
->rate_den
= oparams
->rate_den
;
3489 params
->fifo_size
= oparams
->fifo_size
;
3492 static void snd_pcm_hw_convert_to_old_params(struct snd_pcm_hw_params_old
*oparams
,
3493 struct snd_pcm_hw_params
*params
)
3497 memset(oparams
, 0, sizeof(*oparams
));
3498 oparams
->flags
= params
->flags
;
3499 for (i
= 0; i
< ARRAY_SIZE(oparams
->masks
); i
++)
3500 oparams
->masks
[i
] = params
->masks
[i
].bits
[0];
3501 memcpy(oparams
->intervals
, params
->intervals
, sizeof(oparams
->intervals
));
3502 oparams
->rmask
= __NEW_TO_OLD_MASK(params
->rmask
);
3503 oparams
->cmask
= __NEW_TO_OLD_MASK(params
->cmask
);
3504 oparams
->info
= params
->info
;
3505 oparams
->msbits
= params
->msbits
;
3506 oparams
->rate_num
= params
->rate_num
;
3507 oparams
->rate_den
= params
->rate_den
;
3508 oparams
->fifo_size
= params
->fifo_size
;
3511 static int snd_pcm_hw_refine_old_user(struct snd_pcm_substream
*substream
,
3512 struct snd_pcm_hw_params_old __user
* _oparams
)
3514 struct snd_pcm_hw_params
*params
;
3515 struct snd_pcm_hw_params_old
*oparams
= NULL
;
3518 params
= kmalloc(sizeof(*params
), GFP_KERNEL
);
3522 oparams
= memdup_user(_oparams
, sizeof(*oparams
));
3523 if (IS_ERR(oparams
)) {
3524 err
= PTR_ERR(oparams
);
3527 snd_pcm_hw_convert_from_old_params(params
, oparams
);
3528 err
= snd_pcm_hw_refine(substream
, params
);
3529 snd_pcm_hw_convert_to_old_params(oparams
, params
);
3530 if (copy_to_user(_oparams
, oparams
, sizeof(*oparams
))) {
3541 static int snd_pcm_hw_params_old_user(struct snd_pcm_substream
*substream
,
3542 struct snd_pcm_hw_params_old __user
* _oparams
)
3544 struct snd_pcm_hw_params
*params
;
3545 struct snd_pcm_hw_params_old
*oparams
= NULL
;
3548 params
= kmalloc(sizeof(*params
), GFP_KERNEL
);
3552 oparams
= memdup_user(_oparams
, sizeof(*oparams
));
3553 if (IS_ERR(oparams
)) {
3554 err
= PTR_ERR(oparams
);
3557 snd_pcm_hw_convert_from_old_params(params
, oparams
);
3558 err
= snd_pcm_hw_params(substream
, params
);
3559 snd_pcm_hw_convert_to_old_params(oparams
, params
);
3560 if (copy_to_user(_oparams
, oparams
, sizeof(*oparams
))) {
3570 #endif /* CONFIG_SND_SUPPORT_OLD_API */
3573 static unsigned long snd_pcm_get_unmapped_area(struct file
*file
,
3576 unsigned long pgoff
,
3577 unsigned long flags
)
3579 struct snd_pcm_file
*pcm_file
= file
->private_data
;
3580 struct snd_pcm_substream
*substream
= pcm_file
->substream
;
3581 struct snd_pcm_runtime
*runtime
= substream
->runtime
;
3582 unsigned long offset
= pgoff
<< PAGE_SHIFT
;
3585 case SNDRV_PCM_MMAP_OFFSET_STATUS
:
3586 return (unsigned long)runtime
->status
;
3587 case SNDRV_PCM_MMAP_OFFSET_CONTROL
:
3588 return (unsigned long)runtime
->control
;
3590 return (unsigned long)runtime
->dma_area
+ offset
;
3594 # define snd_pcm_get_unmapped_area NULL
3601 const struct file_operations snd_pcm_f_ops
[2] = {
3603 .owner
= THIS_MODULE
,
3604 .write
= snd_pcm_write
,
3605 .aio_write
= snd_pcm_aio_write
,
3606 .open
= snd_pcm_playback_open
,
3607 .release
= snd_pcm_release
,
3608 .llseek
= no_llseek
,
3609 .poll
= snd_pcm_playback_poll
,
3610 .unlocked_ioctl
= snd_pcm_playback_ioctl
,
3611 .compat_ioctl
= snd_pcm_ioctl_compat
,
3612 .mmap
= snd_pcm_mmap
,
3613 .fasync
= snd_pcm_fasync
,
3614 .get_unmapped_area
= snd_pcm_get_unmapped_area
,
3617 .owner
= THIS_MODULE
,
3618 .read
= snd_pcm_read
,
3619 .aio_read
= snd_pcm_aio_read
,
3620 .open
= snd_pcm_capture_open
,
3621 .release
= snd_pcm_release
,
3622 .llseek
= no_llseek
,
3623 .poll
= snd_pcm_capture_poll
,
3624 .unlocked_ioctl
= snd_pcm_capture_ioctl
,
3625 .compat_ioctl
= snd_pcm_ioctl_compat
,
3626 .mmap
= snd_pcm_mmap
,
3627 .fasync
= snd_pcm_fasync
,
3628 .get_unmapped_area
= snd_pcm_get_unmapped_area
,