2 * Digital Audio (PCM) abstract layer / OSS compatible
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
29 #include <linux/init.h>
30 #include <linux/slab.h>
31 #include <linux/time.h>
32 #include <linux/vmalloc.h>
33 #include <linux/moduleparam.h>
34 #include <linux/math64.h>
35 #include <linux/string.h>
36 #include <sound/core.h>
37 #include <sound/minors.h>
38 #include <sound/pcm.h>
39 #include <sound/pcm_params.h>
40 #include "pcm_plugin.h"
41 #include <sound/info.h>
42 #include <linux/soundcard.h>
43 #include <sound/initval.h>
45 #define OSS_ALSAEMULVER _SIOR ('M', 249, int)
47 static int dsp_map
[SNDRV_CARDS
];
48 static int adsp_map
[SNDRV_CARDS
] = {[0 ... (SNDRV_CARDS
-1)] = 1};
49 static int nonblock_open
= 1;
51 MODULE_AUTHOR("Jaroslav Kysela <perex@perex.cz>, Abramo Bagnara <abramo@alsa-project.org>");
52 MODULE_DESCRIPTION("PCM OSS emulation for ALSA.");
53 MODULE_LICENSE("GPL");
54 module_param_array(dsp_map
, int, NULL
, 0444);
55 MODULE_PARM_DESC(dsp_map
, "PCM device number assigned to 1st OSS device.");
56 module_param_array(adsp_map
, int, NULL
, 0444);
57 MODULE_PARM_DESC(adsp_map
, "PCM device number assigned to 2nd OSS device.");
58 module_param(nonblock_open
, bool, 0644);
59 MODULE_PARM_DESC(nonblock_open
, "Don't block opening busy PCM devices.");
60 MODULE_ALIAS_SNDRV_MINOR(SNDRV_MINOR_OSS_PCM
);
61 MODULE_ALIAS_SNDRV_MINOR(SNDRV_MINOR_OSS_PCM1
);
63 extern int snd_mixer_oss_ioctl_card(struct snd_card
*card
, unsigned int cmd
, unsigned long arg
);
64 static int snd_pcm_oss_get_rate(struct snd_pcm_oss_file
*pcm_oss_file
);
65 static int snd_pcm_oss_get_channels(struct snd_pcm_oss_file
*pcm_oss_file
);
66 static int snd_pcm_oss_get_format(struct snd_pcm_oss_file
*pcm_oss_file
);
68 static inline mm_segment_t
snd_enter_user(void)
70 mm_segment_t fs
= get_fs();
75 static inline void snd_leave_user(mm_segment_t fs
)
81 * helper functions to process hw_params
83 static int snd_interval_refine_min(struct snd_interval
*i
, unsigned int min
, int openmin
)
90 } else if (i
->min
== min
&& !i
->openmin
&& openmin
) {
100 if (snd_interval_checkempty(i
)) {
101 snd_interval_none(i
);
107 static int snd_interval_refine_max(struct snd_interval
*i
, unsigned int max
, int openmax
)
112 i
->openmax
= openmax
;
114 } else if (i
->max
== max
&& !i
->openmax
&& openmax
) {
124 if (snd_interval_checkempty(i
)) {
125 snd_interval_none(i
);
131 static int snd_interval_refine_set(struct snd_interval
*i
, unsigned int val
)
133 struct snd_interval t
;
136 t
.openmin
= t
.openmax
= 0;
138 return snd_interval_refine(i
, &t
);
142 * snd_pcm_hw_param_value_min
143 * @params: the hw_params instance
144 * @var: parameter to retrieve
145 * @dir: pointer to the direction (-1,0,1) or NULL
147 * Return the minimum value for field PAR.
150 snd_pcm_hw_param_value_min(const struct snd_pcm_hw_params
*params
,
151 snd_pcm_hw_param_t var
, int *dir
)
153 if (hw_is_mask(var
)) {
156 return snd_mask_min(hw_param_mask_c(params
, var
));
158 if (hw_is_interval(var
)) {
159 const struct snd_interval
*i
= hw_param_interval_c(params
, var
);
162 return snd_interval_min(i
);
168 * snd_pcm_hw_param_value_max
169 * @params: the hw_params instance
170 * @var: parameter to retrieve
171 * @dir: pointer to the direction (-1,0,1) or NULL
173 * Return the maximum value for field PAR.
176 snd_pcm_hw_param_value_max(const struct snd_pcm_hw_params
*params
,
177 snd_pcm_hw_param_t var
, int *dir
)
179 if (hw_is_mask(var
)) {
182 return snd_mask_max(hw_param_mask_c(params
, var
));
184 if (hw_is_interval(var
)) {
185 const struct snd_interval
*i
= hw_param_interval_c(params
, var
);
187 *dir
= - (int) i
->openmax
;
188 return snd_interval_max(i
);
193 static int _snd_pcm_hw_param_mask(struct snd_pcm_hw_params
*params
,
194 snd_pcm_hw_param_t var
,
195 const struct snd_mask
*val
)
198 changed
= snd_mask_refine(hw_param_mask(params
, var
), val
);
200 params
->cmask
|= 1 << var
;
201 params
->rmask
|= 1 << var
;
206 static int snd_pcm_hw_param_mask(struct snd_pcm_substream
*pcm
,
207 struct snd_pcm_hw_params
*params
,
208 snd_pcm_hw_param_t var
,
209 const struct snd_mask
*val
)
211 int changed
= _snd_pcm_hw_param_mask(params
, var
, val
);
215 int err
= snd_pcm_hw_refine(pcm
, params
);
222 static int _snd_pcm_hw_param_min(struct snd_pcm_hw_params
*params
,
223 snd_pcm_hw_param_t var
, unsigned int val
,
231 } else if (dir
< 0) {
239 changed
= snd_mask_refine_min(hw_param_mask(params
, var
),
241 else if (hw_is_interval(var
))
242 changed
= snd_interval_refine_min(hw_param_interval(params
, var
),
247 params
->cmask
|= 1 << var
;
248 params
->rmask
|= 1 << var
;
254 * snd_pcm_hw_param_min
256 * @params: the hw_params instance
257 * @var: parameter to retrieve
258 * @val: minimal value
259 * @dir: pointer to the direction (-1,0,1) or NULL
261 * Inside configuration space defined by PARAMS remove from PAR all
262 * values < VAL. Reduce configuration space accordingly.
263 * Return new minimum or -EINVAL if the configuration space is empty
265 static int snd_pcm_hw_param_min(struct snd_pcm_substream
*pcm
,
266 struct snd_pcm_hw_params
*params
,
267 snd_pcm_hw_param_t var
, unsigned int val
,
270 int changed
= _snd_pcm_hw_param_min(params
, var
, val
, dir
? *dir
: 0);
274 int err
= snd_pcm_hw_refine(pcm
, params
);
278 return snd_pcm_hw_param_value_min(params
, var
, dir
);
281 static int _snd_pcm_hw_param_max(struct snd_pcm_hw_params
*params
,
282 snd_pcm_hw_param_t var
, unsigned int val
,
290 } else if (dir
> 0) {
295 if (hw_is_mask(var
)) {
296 if (val
== 0 && open
) {
297 snd_mask_none(hw_param_mask(params
, var
));
300 changed
= snd_mask_refine_max(hw_param_mask(params
, var
),
302 } else if (hw_is_interval(var
))
303 changed
= snd_interval_refine_max(hw_param_interval(params
, var
),
308 params
->cmask
|= 1 << var
;
309 params
->rmask
|= 1 << var
;
315 * snd_pcm_hw_param_max
317 * @params: the hw_params instance
318 * @var: parameter to retrieve
319 * @val: maximal value
320 * @dir: pointer to the direction (-1,0,1) or NULL
322 * Inside configuration space defined by PARAMS remove from PAR all
323 * values >= VAL + 1. Reduce configuration space accordingly.
324 * Return new maximum or -EINVAL if the configuration space is empty
326 static int snd_pcm_hw_param_max(struct snd_pcm_substream
*pcm
,
327 struct snd_pcm_hw_params
*params
,
328 snd_pcm_hw_param_t var
, unsigned int val
,
331 int changed
= _snd_pcm_hw_param_max(params
, var
, val
, dir
? *dir
: 0);
335 int err
= snd_pcm_hw_refine(pcm
, params
);
339 return snd_pcm_hw_param_value_max(params
, var
, dir
);
342 static int boundary_sub(int a
, int adir
,
346 adir
= adir
< 0 ? -1 : (adir
> 0 ? 1 : 0);
347 bdir
= bdir
< 0 ? -1 : (bdir
> 0 ? 1 : 0);
352 } else if (*cdir
== 2) {
358 static int boundary_lt(unsigned int a
, int adir
,
359 unsigned int b
, int bdir
)
371 return a
< b
|| (a
== b
&& adir
< bdir
);
374 /* Return 1 if min is nearer to best than max */
375 static int boundary_nearer(int min
, int mindir
,
376 int best
, int bestdir
,
381 boundary_sub(best
, bestdir
, min
, mindir
, &dmin
, &dmindir
);
382 boundary_sub(max
, maxdir
, best
, bestdir
, &dmax
, &dmaxdir
);
383 return boundary_lt(dmin
, dmindir
, dmax
, dmaxdir
);
387 * snd_pcm_hw_param_near
389 * @params: the hw_params instance
390 * @var: parameter to retrieve
391 * @best: value to set
392 * @dir: pointer to the direction (-1,0,1) or NULL
394 * Inside configuration space defined by PARAMS set PAR to the available value
395 * nearest to VAL. Reduce configuration space accordingly.
396 * This function cannot be called for SNDRV_PCM_HW_PARAM_ACCESS,
397 * SNDRV_PCM_HW_PARAM_FORMAT, SNDRV_PCM_HW_PARAM_SUBFORMAT.
398 * Return the value found.
400 static int snd_pcm_hw_param_near(struct snd_pcm_substream
*pcm
,
401 struct snd_pcm_hw_params
*params
,
402 snd_pcm_hw_param_t var
, unsigned int best
,
405 struct snd_pcm_hw_params
*save
= NULL
;
407 unsigned int saved_min
;
411 int valdir
= dir
? *dir
: 0;
416 mindir
= maxdir
= valdir
;
419 else if (maxdir
== 0)
425 save
= kmalloc(sizeof(*save
), GFP_KERNEL
);
430 min
= snd_pcm_hw_param_min(pcm
, params
, var
, min
, &mindir
);
432 struct snd_pcm_hw_params
*params1
;
435 if ((unsigned int)min
== saved_min
&& mindir
== valdir
)
437 params1
= kmalloc(sizeof(*params1
), GFP_KERNEL
);
438 if (params1
== NULL
) {
443 max
= snd_pcm_hw_param_max(pcm
, params1
, var
, max
, &maxdir
);
448 if (boundary_nearer(max
, maxdir
, best
, valdir
, min
, mindir
)) {
455 max
= snd_pcm_hw_param_max(pcm
, params
, var
, max
, &maxdir
);
463 v
= snd_pcm_hw_param_last(pcm
, params
, var
, dir
);
465 v
= snd_pcm_hw_param_first(pcm
, params
, var
, dir
);
470 static int _snd_pcm_hw_param_set(struct snd_pcm_hw_params
*params
,
471 snd_pcm_hw_param_t var
, unsigned int val
,
475 if (hw_is_mask(var
)) {
476 struct snd_mask
*m
= hw_param_mask(params
, var
);
477 if (val
== 0 && dir
< 0) {
485 changed
= snd_mask_refine_set(hw_param_mask(params
, var
), val
);
487 } else if (hw_is_interval(var
)) {
488 struct snd_interval
*i
= hw_param_interval(params
, var
);
489 if (val
== 0 && dir
< 0) {
491 snd_interval_none(i
);
493 changed
= snd_interval_refine_set(i
, val
);
495 struct snd_interval t
;
507 changed
= snd_interval_refine(i
, &t
);
512 params
->cmask
|= 1 << var
;
513 params
->rmask
|= 1 << var
;
519 * snd_pcm_hw_param_set
521 * @params: the hw_params instance
522 * @var: parameter to retrieve
524 * @dir: pointer to the direction (-1,0,1) or NULL
526 * Inside configuration space defined by PARAMS remove from PAR all
527 * values != VAL. Reduce configuration space accordingly.
528 * Return VAL or -EINVAL if the configuration space is empty
530 static int snd_pcm_hw_param_set(struct snd_pcm_substream
*pcm
,
531 struct snd_pcm_hw_params
*params
,
532 snd_pcm_hw_param_t var
, unsigned int val
,
535 int changed
= _snd_pcm_hw_param_set(params
, var
, val
, dir
);
539 int err
= snd_pcm_hw_refine(pcm
, params
);
543 return snd_pcm_hw_param_value(params
, var
, NULL
);
546 static int _snd_pcm_hw_param_setinteger(struct snd_pcm_hw_params
*params
,
547 snd_pcm_hw_param_t var
)
550 changed
= snd_interval_setinteger(hw_param_interval(params
, var
));
552 params
->cmask
|= 1 << var
;
553 params
->rmask
|= 1 << var
;
562 #ifdef CONFIG_SND_PCM_OSS_PLUGINS
563 static int snd_pcm_oss_plugin_clear(struct snd_pcm_substream
*substream
)
565 struct snd_pcm_runtime
*runtime
= substream
->runtime
;
566 struct snd_pcm_plugin
*plugin
, *next
;
568 plugin
= runtime
->oss
.plugin_first
;
571 snd_pcm_plugin_free(plugin
);
574 runtime
->oss
.plugin_first
= runtime
->oss
.plugin_last
= NULL
;
578 static int snd_pcm_plugin_insert(struct snd_pcm_plugin
*plugin
)
580 struct snd_pcm_runtime
*runtime
= plugin
->plug
->runtime
;
581 plugin
->next
= runtime
->oss
.plugin_first
;
583 if (runtime
->oss
.plugin_first
) {
584 runtime
->oss
.plugin_first
->prev
= plugin
;
585 runtime
->oss
.plugin_first
= plugin
;
587 runtime
->oss
.plugin_last
=
588 runtime
->oss
.plugin_first
= plugin
;
593 int snd_pcm_plugin_append(struct snd_pcm_plugin
*plugin
)
595 struct snd_pcm_runtime
*runtime
= plugin
->plug
->runtime
;
597 plugin
->prev
= runtime
->oss
.plugin_last
;
598 if (runtime
->oss
.plugin_last
) {
599 runtime
->oss
.plugin_last
->next
= plugin
;
600 runtime
->oss
.plugin_last
= plugin
;
602 runtime
->oss
.plugin_last
=
603 runtime
->oss
.plugin_first
= plugin
;
607 #endif /* CONFIG_SND_PCM_OSS_PLUGINS */
609 static long snd_pcm_oss_bytes(struct snd_pcm_substream
*substream
, long frames
)
611 struct snd_pcm_runtime
*runtime
= substream
->runtime
;
612 long buffer_size
= snd_pcm_lib_buffer_bytes(substream
);
613 long bytes
= frames_to_bytes(runtime
, frames
);
614 if (buffer_size
== runtime
->oss
.buffer_bytes
)
616 #if BITS_PER_LONG >= 64
617 return runtime
->oss
.buffer_bytes
* bytes
/ buffer_size
;
620 u64 bsize
= (u64
)runtime
->oss
.buffer_bytes
* (u64
)bytes
;
621 return div_u64(bsize
, buffer_size
);
626 static long snd_pcm_alsa_frames(struct snd_pcm_substream
*substream
, long bytes
)
628 struct snd_pcm_runtime
*runtime
= substream
->runtime
;
629 long buffer_size
= snd_pcm_lib_buffer_bytes(substream
);
630 if (buffer_size
== runtime
->oss
.buffer_bytes
)
631 return bytes_to_frames(runtime
, bytes
);
632 return bytes_to_frames(runtime
, (buffer_size
* bytes
) / runtime
->oss
.buffer_bytes
);
635 /* define extended formats in the recent OSS versions (if any) */
637 #define AFMT_S32_LE 0x00001000
638 #define AFMT_S32_BE 0x00002000
639 #define AFMT_S24_LE 0x00008000
640 #define AFMT_S24_BE 0x00010000
641 #define AFMT_S24_PACKED 0x00040000
643 /* other supported formats */
644 #define AFMT_FLOAT 0x00004000
645 #define AFMT_SPDIF_RAW 0x00020000
647 /* unsupported formats */
648 #define AFMT_AC3 0x00000400
649 #define AFMT_VORBIS 0x00000800
651 static int snd_pcm_oss_format_from(int format
)
654 case AFMT_MU_LAW
: return SNDRV_PCM_FORMAT_MU_LAW
;
655 case AFMT_A_LAW
: return SNDRV_PCM_FORMAT_A_LAW
;
656 case AFMT_IMA_ADPCM
: return SNDRV_PCM_FORMAT_IMA_ADPCM
;
657 case AFMT_U8
: return SNDRV_PCM_FORMAT_U8
;
658 case AFMT_S16_LE
: return SNDRV_PCM_FORMAT_S16_LE
;
659 case AFMT_S16_BE
: return SNDRV_PCM_FORMAT_S16_BE
;
660 case AFMT_S8
: return SNDRV_PCM_FORMAT_S8
;
661 case AFMT_U16_LE
: return SNDRV_PCM_FORMAT_U16_LE
;
662 case AFMT_U16_BE
: return SNDRV_PCM_FORMAT_U16_BE
;
663 case AFMT_MPEG
: return SNDRV_PCM_FORMAT_MPEG
;
664 case AFMT_S32_LE
: return SNDRV_PCM_FORMAT_S32_LE
;
665 case AFMT_S32_BE
: return SNDRV_PCM_FORMAT_S32_BE
;
666 case AFMT_S24_LE
: return SNDRV_PCM_FORMAT_S24_LE
;
667 case AFMT_S24_BE
: return SNDRV_PCM_FORMAT_S24_BE
;
668 case AFMT_S24_PACKED
: return SNDRV_PCM_FORMAT_S24_3LE
;
669 case AFMT_FLOAT
: return SNDRV_PCM_FORMAT_FLOAT
;
670 case AFMT_SPDIF_RAW
: return SNDRV_PCM_FORMAT_IEC958_SUBFRAME
;
671 default: return SNDRV_PCM_FORMAT_U8
;
675 static int snd_pcm_oss_format_to(int format
)
678 case SNDRV_PCM_FORMAT_MU_LAW
: return AFMT_MU_LAW
;
679 case SNDRV_PCM_FORMAT_A_LAW
: return AFMT_A_LAW
;
680 case SNDRV_PCM_FORMAT_IMA_ADPCM
: return AFMT_IMA_ADPCM
;
681 case SNDRV_PCM_FORMAT_U8
: return AFMT_U8
;
682 case SNDRV_PCM_FORMAT_S16_LE
: return AFMT_S16_LE
;
683 case SNDRV_PCM_FORMAT_S16_BE
: return AFMT_S16_BE
;
684 case SNDRV_PCM_FORMAT_S8
: return AFMT_S8
;
685 case SNDRV_PCM_FORMAT_U16_LE
: return AFMT_U16_LE
;
686 case SNDRV_PCM_FORMAT_U16_BE
: return AFMT_U16_BE
;
687 case SNDRV_PCM_FORMAT_MPEG
: return AFMT_MPEG
;
688 case SNDRV_PCM_FORMAT_S32_LE
: return AFMT_S32_LE
;
689 case SNDRV_PCM_FORMAT_S32_BE
: return AFMT_S32_BE
;
690 case SNDRV_PCM_FORMAT_S24_LE
: return AFMT_S24_LE
;
691 case SNDRV_PCM_FORMAT_S24_BE
: return AFMT_S24_BE
;
692 case SNDRV_PCM_FORMAT_S24_3LE
: return AFMT_S24_PACKED
;
693 case SNDRV_PCM_FORMAT_FLOAT
: return AFMT_FLOAT
;
694 case SNDRV_PCM_FORMAT_IEC958_SUBFRAME
: return AFMT_SPDIF_RAW
;
695 default: return -EINVAL
;
699 static int snd_pcm_oss_period_size(struct snd_pcm_substream
*substream
,
700 struct snd_pcm_hw_params
*oss_params
,
701 struct snd_pcm_hw_params
*slave_params
)
704 size_t oss_buffer_size
, oss_period_size
, oss_periods
;
705 size_t min_period_size
, max_period_size
;
706 struct snd_pcm_runtime
*runtime
= substream
->runtime
;
707 size_t oss_frame_size
;
709 oss_frame_size
= snd_pcm_format_physical_width(params_format(oss_params
)) *
710 params_channels(oss_params
) / 8;
712 oss_buffer_size
= snd_pcm_plug_client_size(substream
,
713 snd_pcm_hw_param_value_max(slave_params
, SNDRV_PCM_HW_PARAM_BUFFER_SIZE
, NULL
)) * oss_frame_size
;
714 oss_buffer_size
= 1 << ld2(oss_buffer_size
);
715 if (atomic_read(&substream
->mmap_count
)) {
716 if (oss_buffer_size
> runtime
->oss
.mmap_bytes
)
717 oss_buffer_size
= runtime
->oss
.mmap_bytes
;
720 if (substream
->oss
.setup
.period_size
> 16)
721 oss_period_size
= substream
->oss
.setup
.period_size
;
722 else if (runtime
->oss
.fragshift
) {
723 oss_period_size
= 1 << runtime
->oss
.fragshift
;
724 if (oss_period_size
> oss_buffer_size
/ 2)
725 oss_period_size
= oss_buffer_size
/ 2;
728 size_t bytes_per_sec
= params_rate(oss_params
) * snd_pcm_format_physical_width(params_format(oss_params
)) * params_channels(oss_params
) / 8;
730 oss_period_size
= oss_buffer_size
;
732 oss_period_size
/= 2;
733 } while (oss_period_size
> bytes_per_sec
);
734 if (runtime
->oss
.subdivision
== 0) {
736 if (oss_period_size
/ sd
> 4096)
738 if (oss_period_size
/ sd
< 4096)
741 sd
= runtime
->oss
.subdivision
;
742 oss_period_size
/= sd
;
743 if (oss_period_size
< 16)
744 oss_period_size
= 16;
747 min_period_size
= snd_pcm_plug_client_size(substream
,
748 snd_pcm_hw_param_value_min(slave_params
, SNDRV_PCM_HW_PARAM_PERIOD_SIZE
, NULL
));
749 min_period_size
*= oss_frame_size
;
750 min_period_size
= 1 << (ld2(min_period_size
- 1) + 1);
751 if (oss_period_size
< min_period_size
)
752 oss_period_size
= min_period_size
;
754 max_period_size
= snd_pcm_plug_client_size(substream
,
755 snd_pcm_hw_param_value_max(slave_params
, SNDRV_PCM_HW_PARAM_PERIOD_SIZE
, NULL
));
756 max_period_size
*= oss_frame_size
;
757 max_period_size
= 1 << ld2(max_period_size
);
758 if (oss_period_size
> max_period_size
)
759 oss_period_size
= max_period_size
;
761 oss_periods
= oss_buffer_size
/ oss_period_size
;
763 if (substream
->oss
.setup
.periods
> 1)
764 oss_periods
= substream
->oss
.setup
.periods
;
766 s
= snd_pcm_hw_param_value_max(slave_params
, SNDRV_PCM_HW_PARAM_PERIODS
, NULL
);
767 if (runtime
->oss
.maxfrags
&& s
> runtime
->oss
.maxfrags
)
768 s
= runtime
->oss
.maxfrags
;
772 s
= snd_pcm_hw_param_value_min(slave_params
, SNDRV_PCM_HW_PARAM_PERIODS
, NULL
);
778 while (oss_period_size
* oss_periods
> oss_buffer_size
)
779 oss_period_size
/= 2;
781 if (oss_period_size
< 16)
783 runtime
->oss
.period_bytes
= oss_period_size
;
784 runtime
->oss
.period_frames
= 1;
785 runtime
->oss
.periods
= oss_periods
;
789 static int choose_rate(struct snd_pcm_substream
*substream
,
790 struct snd_pcm_hw_params
*params
, unsigned int best_rate
)
792 struct snd_interval
*it
;
793 struct snd_pcm_hw_params
*save
;
794 unsigned int rate
, prev
;
796 save
= kmalloc(sizeof(*save
), GFP_KERNEL
);
800 it
= hw_param_interval(save
, SNDRV_PCM_HW_PARAM_RATE
);
802 /* try multiples of the best rate */
805 if (it
->max
< rate
|| (it
->max
== rate
&& it
->openmax
))
807 if (it
->min
< rate
|| (it
->min
== rate
&& !it
->openmin
)) {
809 ret
= snd_pcm_hw_param_set(substream
, params
,
810 SNDRV_PCM_HW_PARAM_RATE
,
812 if (ret
== (int)rate
) {
824 /* not found, use the nearest rate */
826 return snd_pcm_hw_param_near(substream
, params
, SNDRV_PCM_HW_PARAM_RATE
, best_rate
, NULL
);
829 static int snd_pcm_oss_change_params(struct snd_pcm_substream
*substream
)
831 struct snd_pcm_runtime
*runtime
= substream
->runtime
;
832 struct snd_pcm_hw_params
*params
, *sparams
;
833 struct snd_pcm_sw_params
*sw_params
;
834 ssize_t oss_buffer_size
, oss_period_size
;
835 size_t oss_frame_size
;
838 int format
, sformat
, n
;
839 struct snd_mask sformat_mask
;
840 struct snd_mask mask
;
842 if (mutex_lock_interruptible(&runtime
->oss
.params_lock
))
844 sw_params
= kmalloc(sizeof(*sw_params
), GFP_KERNEL
);
845 params
= kmalloc(sizeof(*params
), GFP_KERNEL
);
846 sparams
= kmalloc(sizeof(*sparams
), GFP_KERNEL
);
847 if (!sw_params
|| !params
|| !sparams
) {
848 snd_printd("No memory\n");
853 if (atomic_read(&substream
->mmap_count
))
856 direct
= substream
->oss
.setup
.direct
;
858 _snd_pcm_hw_params_any(sparams
);
859 _snd_pcm_hw_param_setinteger(sparams
, SNDRV_PCM_HW_PARAM_PERIODS
);
860 _snd_pcm_hw_param_min(sparams
, SNDRV_PCM_HW_PARAM_PERIODS
, 2, 0);
861 snd_mask_none(&mask
);
862 if (atomic_read(&substream
->mmap_count
))
863 snd_mask_set(&mask
, SNDRV_PCM_ACCESS_MMAP_INTERLEAVED
);
865 snd_mask_set(&mask
, SNDRV_PCM_ACCESS_RW_INTERLEAVED
);
867 snd_mask_set(&mask
, SNDRV_PCM_ACCESS_RW_NONINTERLEAVED
);
869 err
= snd_pcm_hw_param_mask(substream
, sparams
, SNDRV_PCM_HW_PARAM_ACCESS
, &mask
);
871 snd_printd("No usable accesses\n");
875 choose_rate(substream
, sparams
, runtime
->oss
.rate
);
876 snd_pcm_hw_param_near(substream
, sparams
, SNDRV_PCM_HW_PARAM_CHANNELS
, runtime
->oss
.channels
, NULL
);
878 format
= snd_pcm_oss_format_from(runtime
->oss
.format
);
880 sformat_mask
= *hw_param_mask(sparams
, SNDRV_PCM_HW_PARAM_FORMAT
);
884 sformat
= snd_pcm_plug_slave_format(format
, &sformat_mask
);
886 if (sformat
< 0 || !snd_mask_test(&sformat_mask
, sformat
)) {
887 for (sformat
= 0; sformat
<= SNDRV_PCM_FORMAT_LAST
; sformat
++) {
888 if (snd_mask_test(&sformat_mask
, sformat
) &&
889 snd_pcm_oss_format_to(sformat
) >= 0)
892 if (sformat
> SNDRV_PCM_FORMAT_LAST
) {
893 snd_printd("Cannot find a format!!!\n");
898 err
= _snd_pcm_hw_param_set(sparams
, SNDRV_PCM_HW_PARAM_FORMAT
, sformat
, 0);
903 memcpy(params
, sparams
, sizeof(*params
));
905 _snd_pcm_hw_params_any(params
);
906 _snd_pcm_hw_param_set(params
, SNDRV_PCM_HW_PARAM_ACCESS
,
907 SNDRV_PCM_ACCESS_RW_INTERLEAVED
, 0);
908 _snd_pcm_hw_param_set(params
, SNDRV_PCM_HW_PARAM_FORMAT
,
909 snd_pcm_oss_format_from(runtime
->oss
.format
), 0);
910 _snd_pcm_hw_param_set(params
, SNDRV_PCM_HW_PARAM_CHANNELS
,
911 runtime
->oss
.channels
, 0);
912 _snd_pcm_hw_param_set(params
, SNDRV_PCM_HW_PARAM_RATE
,
913 runtime
->oss
.rate
, 0);
914 pdprintf("client: access = %i, format = %i, channels = %i, rate = %i\n",
915 params_access(params
), params_format(params
),
916 params_channels(params
), params_rate(params
));
918 pdprintf("slave: access = %i, format = %i, channels = %i, rate = %i\n",
919 params_access(sparams
), params_format(sparams
),
920 params_channels(sparams
), params_rate(sparams
));
922 oss_frame_size
= snd_pcm_format_physical_width(params_format(params
)) *
923 params_channels(params
) / 8;
925 #ifdef CONFIG_SND_PCM_OSS_PLUGINS
926 snd_pcm_oss_plugin_clear(substream
);
928 /* add necessary plugins */
929 snd_pcm_oss_plugin_clear(substream
);
930 if ((err
= snd_pcm_plug_format_plugins(substream
,
933 snd_printd("snd_pcm_plug_format_plugins failed: %i\n", err
);
934 snd_pcm_oss_plugin_clear(substream
);
937 if (runtime
->oss
.plugin_first
) {
938 struct snd_pcm_plugin
*plugin
;
939 if ((err
= snd_pcm_plugin_build_io(substream
, sparams
, &plugin
)) < 0) {
940 snd_printd("snd_pcm_plugin_build_io failed: %i\n", err
);
941 snd_pcm_oss_plugin_clear(substream
);
944 if (substream
->stream
== SNDRV_PCM_STREAM_PLAYBACK
) {
945 err
= snd_pcm_plugin_append(plugin
);
947 err
= snd_pcm_plugin_insert(plugin
);
950 snd_pcm_oss_plugin_clear(substream
);
957 err
= snd_pcm_oss_period_size(substream
, params
, sparams
);
961 n
= snd_pcm_plug_slave_size(substream
, runtime
->oss
.period_bytes
/ oss_frame_size
);
962 err
= snd_pcm_hw_param_near(substream
, sparams
, SNDRV_PCM_HW_PARAM_PERIOD_SIZE
, n
, NULL
);
966 err
= snd_pcm_hw_param_near(substream
, sparams
, SNDRV_PCM_HW_PARAM_PERIODS
,
967 runtime
->oss
.periods
, NULL
);
971 snd_pcm_kernel_ioctl(substream
, SNDRV_PCM_IOCTL_DROP
, NULL
);
973 if ((err
= snd_pcm_kernel_ioctl(substream
, SNDRV_PCM_IOCTL_HW_PARAMS
, sparams
)) < 0) {
974 snd_printd("HW_PARAMS failed: %i\n", err
);
978 memset(sw_params
, 0, sizeof(*sw_params
));
979 if (runtime
->oss
.trigger
) {
980 sw_params
->start_threshold
= 1;
982 sw_params
->start_threshold
= runtime
->boundary
;
984 if (atomic_read(&substream
->mmap_count
) ||
985 substream
->stream
== SNDRV_PCM_STREAM_CAPTURE
)
986 sw_params
->stop_threshold
= runtime
->boundary
;
988 sw_params
->stop_threshold
= runtime
->buffer_size
;
989 sw_params
->tstamp_mode
= SNDRV_PCM_TSTAMP_NONE
;
990 sw_params
->period_step
= 1;
991 sw_params
->avail_min
= substream
->stream
== SNDRV_PCM_STREAM_PLAYBACK
?
992 1 : runtime
->period_size
;
993 if (atomic_read(&substream
->mmap_count
) ||
994 substream
->oss
.setup
.nosilence
) {
995 sw_params
->silence_threshold
= 0;
996 sw_params
->silence_size
= 0;
998 snd_pcm_uframes_t frames
;
999 frames
= runtime
->period_size
+ 16;
1000 if (frames
> runtime
->buffer_size
)
1001 frames
= runtime
->buffer_size
;
1002 sw_params
->silence_threshold
= frames
;
1003 sw_params
->silence_size
= frames
;
1006 if ((err
= snd_pcm_kernel_ioctl(substream
, SNDRV_PCM_IOCTL_SW_PARAMS
, sw_params
)) < 0) {
1007 snd_printd("SW_PARAMS failed: %i\n", err
);
1011 runtime
->oss
.periods
= params_periods(sparams
);
1012 oss_period_size
= snd_pcm_plug_client_size(substream
, params_period_size(sparams
));
1013 if (oss_period_size
< 0) {
1017 #ifdef CONFIG_SND_PCM_OSS_PLUGINS
1018 if (runtime
->oss
.plugin_first
) {
1019 err
= snd_pcm_plug_alloc(substream
, oss_period_size
);
1024 oss_period_size
*= oss_frame_size
;
1026 oss_buffer_size
= oss_period_size
* runtime
->oss
.periods
;
1027 if (oss_buffer_size
< 0) {
1032 runtime
->oss
.period_bytes
= oss_period_size
;
1033 runtime
->oss
.buffer_bytes
= oss_buffer_size
;
1035 pdprintf("oss: period bytes = %i, buffer bytes = %i\n",
1036 runtime
->oss
.period_bytes
,
1037 runtime
->oss
.buffer_bytes
);
1038 pdprintf("slave: period_size = %i, buffer_size = %i\n",
1039 params_period_size(sparams
),
1040 params_buffer_size(sparams
));
1042 runtime
->oss
.format
= snd_pcm_oss_format_to(params_format(params
));
1043 runtime
->oss
.channels
= params_channels(params
);
1044 runtime
->oss
.rate
= params_rate(params
);
1046 runtime
->oss
.params
= 0;
1047 runtime
->oss
.prepare
= 1;
1048 vfree(runtime
->oss
.buffer
);
1049 runtime
->oss
.buffer
= vmalloc(runtime
->oss
.period_bytes
);
1050 runtime
->oss
.buffer_used
= 0;
1051 if (runtime
->dma_area
)
1052 snd_pcm_format_set_silence(runtime
->format
, runtime
->dma_area
, bytes_to_samples(runtime
, runtime
->dma_bytes
));
1054 runtime
->oss
.period_frames
= snd_pcm_alsa_frames(substream
, oss_period_size
);
1061 mutex_unlock(&runtime
->oss
.params_lock
);
1065 static int snd_pcm_oss_get_active_substream(struct snd_pcm_oss_file
*pcm_oss_file
, struct snd_pcm_substream
**r_substream
)
1068 struct snd_pcm_substream
*asubstream
= NULL
, *substream
;
1070 for (idx
= 0; idx
< 2; idx
++) {
1071 substream
= pcm_oss_file
->streams
[idx
];
1072 if (substream
== NULL
)
1074 if (asubstream
== NULL
)
1075 asubstream
= substream
;
1076 if (substream
->runtime
->oss
.params
) {
1077 err
= snd_pcm_oss_change_params(substream
);
1085 *r_substream
= asubstream
;
1089 static int snd_pcm_oss_prepare(struct snd_pcm_substream
*substream
)
1092 struct snd_pcm_runtime
*runtime
= substream
->runtime
;
1094 err
= snd_pcm_kernel_ioctl(substream
, SNDRV_PCM_IOCTL_PREPARE
, NULL
);
1096 snd_printd("snd_pcm_oss_prepare: SNDRV_PCM_IOCTL_PREPARE failed\n");
1099 runtime
->oss
.prepare
= 0;
1100 runtime
->oss
.prev_hw_ptr_interrupt
= 0;
1101 runtime
->oss
.period_ptr
= 0;
1102 runtime
->oss
.buffer_used
= 0;
1107 static int snd_pcm_oss_make_ready(struct snd_pcm_substream
*substream
)
1109 struct snd_pcm_runtime
*runtime
;
1112 if (substream
== NULL
)
1114 runtime
= substream
->runtime
;
1115 if (runtime
->oss
.params
) {
1116 err
= snd_pcm_oss_change_params(substream
);
1120 if (runtime
->oss
.prepare
) {
1121 err
= snd_pcm_oss_prepare(substream
);
1128 static int snd_pcm_oss_capture_position_fixup(struct snd_pcm_substream
*substream
, snd_pcm_sframes_t
*delay
)
1130 struct snd_pcm_runtime
*runtime
;
1131 snd_pcm_uframes_t frames
;
1135 err
= snd_pcm_kernel_ioctl(substream
, SNDRV_PCM_IOCTL_DELAY
, delay
);
1138 runtime
= substream
->runtime
;
1139 if (*delay
<= (snd_pcm_sframes_t
)runtime
->buffer_size
)
1141 /* in case of overrun, skip whole periods like OSS/Linux driver does */
1142 /* until avail(delay) <= buffer_size */
1143 frames
= (*delay
- runtime
->buffer_size
) + runtime
->period_size
- 1;
1144 frames
/= runtime
->period_size
;
1145 frames
*= runtime
->period_size
;
1146 err
= snd_pcm_kernel_ioctl(substream
, SNDRV_PCM_IOCTL_FORWARD
, &frames
);
1153 snd_pcm_sframes_t
snd_pcm_oss_write3(struct snd_pcm_substream
*substream
, const char *ptr
, snd_pcm_uframes_t frames
, int in_kernel
)
1155 struct snd_pcm_runtime
*runtime
= substream
->runtime
;
1158 if (runtime
->status
->state
== SNDRV_PCM_STATE_XRUN
||
1159 runtime
->status
->state
== SNDRV_PCM_STATE_SUSPENDED
) {
1161 if (runtime
->status
->state
== SNDRV_PCM_STATE_XRUN
)
1162 printk(KERN_DEBUG
"pcm_oss: write: "
1163 "recovering from XRUN\n");
1165 printk(KERN_DEBUG
"pcm_oss: write: "
1166 "recovering from SUSPEND\n");
1168 ret
= snd_pcm_oss_prepare(substream
);
1174 fs
= snd_enter_user();
1175 ret
= snd_pcm_lib_write(substream
, (void __user
*)ptr
, frames
);
1178 ret
= snd_pcm_lib_write(substream
, (void __user
*)ptr
, frames
);
1180 if (ret
!= -EPIPE
&& ret
!= -ESTRPIPE
)
1182 /* test, if we can't store new data, because the stream */
1183 /* has not been started */
1184 if (runtime
->status
->state
== SNDRV_PCM_STATE_PREPARED
)
1190 snd_pcm_sframes_t
snd_pcm_oss_read3(struct snd_pcm_substream
*substream
, char *ptr
, snd_pcm_uframes_t frames
, int in_kernel
)
1192 struct snd_pcm_runtime
*runtime
= substream
->runtime
;
1193 snd_pcm_sframes_t delay
;
1196 if (runtime
->status
->state
== SNDRV_PCM_STATE_XRUN
||
1197 runtime
->status
->state
== SNDRV_PCM_STATE_SUSPENDED
) {
1199 if (runtime
->status
->state
== SNDRV_PCM_STATE_XRUN
)
1200 printk(KERN_DEBUG
"pcm_oss: read: "
1201 "recovering from XRUN\n");
1203 printk(KERN_DEBUG
"pcm_oss: read: "
1204 "recovering from SUSPEND\n");
1206 ret
= snd_pcm_kernel_ioctl(substream
, SNDRV_PCM_IOCTL_DRAIN
, NULL
);
1209 } else if (runtime
->status
->state
== SNDRV_PCM_STATE_SETUP
) {
1210 ret
= snd_pcm_oss_prepare(substream
);
1214 ret
= snd_pcm_oss_capture_position_fixup(substream
, &delay
);
1219 fs
= snd_enter_user();
1220 ret
= snd_pcm_lib_read(substream
, (void __user
*)ptr
, frames
);
1223 ret
= snd_pcm_lib_read(substream
, (void __user
*)ptr
, frames
);
1225 if (ret
== -EPIPE
) {
1226 if (runtime
->status
->state
== SNDRV_PCM_STATE_DRAINING
) {
1227 ret
= snd_pcm_kernel_ioctl(substream
, SNDRV_PCM_IOCTL_DROP
, NULL
);
1233 if (ret
!= -ESTRPIPE
)
1239 snd_pcm_sframes_t
snd_pcm_oss_writev3(struct snd_pcm_substream
*substream
, void **bufs
, snd_pcm_uframes_t frames
, int in_kernel
)
1241 struct snd_pcm_runtime
*runtime
= substream
->runtime
;
1244 if (runtime
->status
->state
== SNDRV_PCM_STATE_XRUN
||
1245 runtime
->status
->state
== SNDRV_PCM_STATE_SUSPENDED
) {
1247 if (runtime
->status
->state
== SNDRV_PCM_STATE_XRUN
)
1248 printk(KERN_DEBUG
"pcm_oss: writev: "
1249 "recovering from XRUN\n");
1251 printk(KERN_DEBUG
"pcm_oss: writev: "
1252 "recovering from SUSPEND\n");
1254 ret
= snd_pcm_oss_prepare(substream
);
1260 fs
= snd_enter_user();
1261 ret
= snd_pcm_lib_writev(substream
, (void __user
**)bufs
, frames
);
1264 ret
= snd_pcm_lib_writev(substream
, (void __user
**)bufs
, frames
);
1266 if (ret
!= -EPIPE
&& ret
!= -ESTRPIPE
)
1269 /* test, if we can't store new data, because the stream */
1270 /* has not been started */
1271 if (runtime
->status
->state
== SNDRV_PCM_STATE_PREPARED
)
1277 snd_pcm_sframes_t
snd_pcm_oss_readv3(struct snd_pcm_substream
*substream
, void **bufs
, snd_pcm_uframes_t frames
, int in_kernel
)
1279 struct snd_pcm_runtime
*runtime
= substream
->runtime
;
1282 if (runtime
->status
->state
== SNDRV_PCM_STATE_XRUN
||
1283 runtime
->status
->state
== SNDRV_PCM_STATE_SUSPENDED
) {
1285 if (runtime
->status
->state
== SNDRV_PCM_STATE_XRUN
)
1286 printk(KERN_DEBUG
"pcm_oss: readv: "
1287 "recovering from XRUN\n");
1289 printk(KERN_DEBUG
"pcm_oss: readv: "
1290 "recovering from SUSPEND\n");
1292 ret
= snd_pcm_kernel_ioctl(substream
, SNDRV_PCM_IOCTL_DRAIN
, NULL
);
1295 } else if (runtime
->status
->state
== SNDRV_PCM_STATE_SETUP
) {
1296 ret
= snd_pcm_oss_prepare(substream
);
1302 fs
= snd_enter_user();
1303 ret
= snd_pcm_lib_readv(substream
, (void __user
**)bufs
, frames
);
1306 ret
= snd_pcm_lib_readv(substream
, (void __user
**)bufs
, frames
);
1308 if (ret
!= -EPIPE
&& ret
!= -ESTRPIPE
)
1314 static ssize_t
snd_pcm_oss_write2(struct snd_pcm_substream
*substream
, const char *buf
, size_t bytes
, int in_kernel
)
1316 struct snd_pcm_runtime
*runtime
= substream
->runtime
;
1317 snd_pcm_sframes_t frames
, frames1
;
1318 #ifdef CONFIG_SND_PCM_OSS_PLUGINS
1319 if (runtime
->oss
.plugin_first
) {
1320 struct snd_pcm_plugin_channel
*channels
;
1321 size_t oss_frame_bytes
= (runtime
->oss
.plugin_first
->src_width
* runtime
->oss
.plugin_first
->src_format
.channels
) / 8;
1323 if (copy_from_user(runtime
->oss
.buffer
, (const char __user
*)buf
, bytes
))
1325 buf
= runtime
->oss
.buffer
;
1327 frames
= bytes
/ oss_frame_bytes
;
1328 frames1
= snd_pcm_plug_client_channels_buf(substream
, (char *)buf
, frames
, &channels
);
1331 frames1
= snd_pcm_plug_write_transfer(substream
, channels
, frames1
);
1334 bytes
= frames1
* oss_frame_bytes
;
1338 frames
= bytes_to_frames(runtime
, bytes
);
1339 frames1
= snd_pcm_oss_write3(substream
, buf
, frames
, in_kernel
);
1342 bytes
= frames_to_bytes(runtime
, frames1
);
1347 static ssize_t
snd_pcm_oss_write1(struct snd_pcm_substream
*substream
, const char __user
*buf
, size_t bytes
)
1351 struct snd_pcm_runtime
*runtime
= substream
->runtime
;
1353 if (atomic_read(&substream
->mmap_count
))
1356 if ((tmp
= snd_pcm_oss_make_ready(substream
)) < 0)
1358 mutex_lock(&runtime
->oss
.params_lock
);
1360 if (bytes
< runtime
->oss
.period_bytes
|| runtime
->oss
.buffer_used
> 0) {
1362 if (tmp
+ runtime
->oss
.buffer_used
> runtime
->oss
.period_bytes
)
1363 tmp
= runtime
->oss
.period_bytes
- runtime
->oss
.buffer_used
;
1365 if (copy_from_user(runtime
->oss
.buffer
+ runtime
->oss
.buffer_used
, buf
, tmp
)) {
1370 runtime
->oss
.buffer_used
+= tmp
;
1374 if (substream
->oss
.setup
.partialfrag
||
1375 runtime
->oss
.buffer_used
== runtime
->oss
.period_bytes
) {
1376 tmp
= snd_pcm_oss_write2(substream
, runtime
->oss
.buffer
+ runtime
->oss
.period_ptr
,
1377 runtime
->oss
.buffer_used
- runtime
->oss
.period_ptr
, 1);
1380 runtime
->oss
.bytes
+= tmp
;
1381 runtime
->oss
.period_ptr
+= tmp
;
1382 runtime
->oss
.period_ptr
%= runtime
->oss
.period_bytes
;
1383 if (runtime
->oss
.period_ptr
== 0 ||
1384 runtime
->oss
.period_ptr
== runtime
->oss
.buffer_used
)
1385 runtime
->oss
.buffer_used
= 0;
1386 else if ((substream
->f_flags
& O_NONBLOCK
) != 0) {
1392 tmp
= snd_pcm_oss_write2(substream
,
1393 (const char __force
*)buf
,
1394 runtime
->oss
.period_bytes
, 0);
1397 runtime
->oss
.bytes
+= tmp
;
1401 if ((substream
->f_flags
& O_NONBLOCK
) != 0 &&
1402 tmp
!= runtime
->oss
.period_bytes
)
1406 mutex_unlock(&runtime
->oss
.params_lock
);
1410 mutex_unlock(&runtime
->oss
.params_lock
);
1411 return xfer
> 0 ? (snd_pcm_sframes_t
)xfer
: tmp
;
1414 static ssize_t
snd_pcm_oss_read2(struct snd_pcm_substream
*substream
, char *buf
, size_t bytes
, int in_kernel
)
1416 struct snd_pcm_runtime
*runtime
= substream
->runtime
;
1417 snd_pcm_sframes_t frames
, frames1
;
1418 #ifdef CONFIG_SND_PCM_OSS_PLUGINS
1419 char __user
*final_dst
= (char __user
*)buf
;
1420 if (runtime
->oss
.plugin_first
) {
1421 struct snd_pcm_plugin_channel
*channels
;
1422 size_t oss_frame_bytes
= (runtime
->oss
.plugin_last
->dst_width
* runtime
->oss
.plugin_last
->dst_format
.channels
) / 8;
1424 buf
= runtime
->oss
.buffer
;
1425 frames
= bytes
/ oss_frame_bytes
;
1426 frames1
= snd_pcm_plug_client_channels_buf(substream
, buf
, frames
, &channels
);
1429 frames1
= snd_pcm_plug_read_transfer(substream
, channels
, frames1
);
1432 bytes
= frames1
* oss_frame_bytes
;
1433 if (!in_kernel
&& copy_to_user(final_dst
, buf
, bytes
))
1438 frames
= bytes_to_frames(runtime
, bytes
);
1439 frames1
= snd_pcm_oss_read3(substream
, buf
, frames
, in_kernel
);
1442 bytes
= frames_to_bytes(runtime
, frames1
);
1447 static ssize_t
snd_pcm_oss_read1(struct snd_pcm_substream
*substream
, char __user
*buf
, size_t bytes
)
1451 struct snd_pcm_runtime
*runtime
= substream
->runtime
;
1453 if (atomic_read(&substream
->mmap_count
))
1456 if ((tmp
= snd_pcm_oss_make_ready(substream
)) < 0)
1458 mutex_lock(&runtime
->oss
.params_lock
);
1460 if (bytes
< runtime
->oss
.period_bytes
|| runtime
->oss
.buffer_used
> 0) {
1461 if (runtime
->oss
.buffer_used
== 0) {
1462 tmp
= snd_pcm_oss_read2(substream
, runtime
->oss
.buffer
, runtime
->oss
.period_bytes
, 1);
1465 runtime
->oss
.bytes
+= tmp
;
1466 runtime
->oss
.period_ptr
= tmp
;
1467 runtime
->oss
.buffer_used
= tmp
;
1470 if ((size_t) tmp
> runtime
->oss
.buffer_used
)
1471 tmp
= runtime
->oss
.buffer_used
;
1472 if (copy_to_user(buf
, runtime
->oss
.buffer
+ (runtime
->oss
.period_ptr
- runtime
->oss
.buffer_used
), tmp
)) {
1479 runtime
->oss
.buffer_used
-= tmp
;
1481 tmp
= snd_pcm_oss_read2(substream
, (char __force
*)buf
,
1482 runtime
->oss
.period_bytes
, 0);
1485 runtime
->oss
.bytes
+= tmp
;
1491 mutex_unlock(&runtime
->oss
.params_lock
);
1495 mutex_unlock(&runtime
->oss
.params_lock
);
1496 return xfer
> 0 ? (snd_pcm_sframes_t
)xfer
: tmp
;
1499 static int snd_pcm_oss_reset(struct snd_pcm_oss_file
*pcm_oss_file
)
1501 struct snd_pcm_substream
*substream
;
1503 substream
= pcm_oss_file
->streams
[SNDRV_PCM_STREAM_PLAYBACK
];
1504 if (substream
!= NULL
) {
1505 snd_pcm_kernel_ioctl(substream
, SNDRV_PCM_IOCTL_DROP
, NULL
);
1506 substream
->runtime
->oss
.prepare
= 1;
1508 substream
= pcm_oss_file
->streams
[SNDRV_PCM_STREAM_CAPTURE
];
1509 if (substream
!= NULL
) {
1510 snd_pcm_kernel_ioctl(substream
, SNDRV_PCM_IOCTL_DROP
, NULL
);
1511 substream
->runtime
->oss
.prepare
= 1;
1516 static int snd_pcm_oss_post(struct snd_pcm_oss_file
*pcm_oss_file
)
1518 struct snd_pcm_substream
*substream
;
1521 substream
= pcm_oss_file
->streams
[SNDRV_PCM_STREAM_PLAYBACK
];
1522 if (substream
!= NULL
) {
1523 if ((err
= snd_pcm_oss_make_ready(substream
)) < 0)
1525 snd_pcm_kernel_ioctl(substream
, SNDRV_PCM_IOCTL_START
, NULL
);
1527 /* note: all errors from the start action are ignored */
1528 /* OSS apps do not know, how to handle them */
1532 static int snd_pcm_oss_sync1(struct snd_pcm_substream
*substream
, size_t size
)
1534 struct snd_pcm_runtime
*runtime
;
1539 runtime
= substream
->runtime
;
1540 init_waitqueue_entry(&wait
, current
);
1541 add_wait_queue(&runtime
->sleep
, &wait
);
1543 printk(KERN_DEBUG
"sync1: size = %li\n", size
);
1546 result
= snd_pcm_oss_write2(substream
, runtime
->oss
.buffer
, size
, 1);
1548 runtime
->oss
.buffer_used
= 0;
1552 if (result
!= 0 && result
!= -EAGAIN
)
1555 set_current_state(TASK_INTERRUPTIBLE
);
1556 snd_pcm_stream_lock_irq(substream
);
1557 res
= runtime
->status
->state
;
1558 snd_pcm_stream_unlock_irq(substream
);
1559 if (res
!= SNDRV_PCM_STATE_RUNNING
) {
1560 set_current_state(TASK_RUNNING
);
1563 res
= schedule_timeout(10 * HZ
);
1564 if (signal_pending(current
)) {
1565 result
= -ERESTARTSYS
;
1569 snd_printk(KERN_ERR
"OSS sync error - DMA timeout\n");
1574 remove_wait_queue(&runtime
->sleep
, &wait
);
1578 static int snd_pcm_oss_sync(struct snd_pcm_oss_file
*pcm_oss_file
)
1581 unsigned int saved_f_flags
;
1582 struct snd_pcm_substream
*substream
;
1583 struct snd_pcm_runtime
*runtime
;
1584 snd_pcm_format_t format
;
1585 unsigned long width
;
1588 substream
= pcm_oss_file
->streams
[SNDRV_PCM_STREAM_PLAYBACK
];
1589 if (substream
!= NULL
) {
1590 runtime
= substream
->runtime
;
1591 if (atomic_read(&substream
->mmap_count
))
1593 if ((err
= snd_pcm_oss_make_ready(substream
)) < 0)
1595 format
= snd_pcm_oss_format_from(runtime
->oss
.format
);
1596 width
= snd_pcm_format_physical_width(format
);
1597 mutex_lock(&runtime
->oss
.params_lock
);
1598 if (runtime
->oss
.buffer_used
> 0) {
1600 printk(KERN_DEBUG
"sync: buffer_used\n");
1602 size
= (8 * (runtime
->oss
.period_bytes
- runtime
->oss
.buffer_used
) + 7) / width
;
1603 snd_pcm_format_set_silence(format
,
1604 runtime
->oss
.buffer
+ runtime
->oss
.buffer_used
,
1606 err
= snd_pcm_oss_sync1(substream
, runtime
->oss
.period_bytes
);
1608 mutex_unlock(&runtime
->oss
.params_lock
);
1611 } else if (runtime
->oss
.period_ptr
> 0) {
1613 printk(KERN_DEBUG
"sync: period_ptr\n");
1615 size
= runtime
->oss
.period_bytes
- runtime
->oss
.period_ptr
;
1616 snd_pcm_format_set_silence(format
,
1617 runtime
->oss
.buffer
,
1619 err
= snd_pcm_oss_sync1(substream
, size
);
1621 mutex_unlock(&runtime
->oss
.params_lock
);
1626 * The ALSA's period might be a bit large than OSS one.
1627 * Fill the remain portion of ALSA period with zeros.
1629 size
= runtime
->control
->appl_ptr
% runtime
->period_size
;
1631 size
= runtime
->period_size
- size
;
1632 if (runtime
->access
== SNDRV_PCM_ACCESS_RW_INTERLEAVED
) {
1633 size
= (runtime
->frame_bits
* size
) / 8;
1636 size_t size1
= size
< runtime
->oss
.period_bytes
? size
: runtime
->oss
.period_bytes
;
1639 size1
/= runtime
->sample_bits
;
1640 snd_pcm_format_set_silence(runtime
->format
,
1641 runtime
->oss
.buffer
,
1643 size1
/= runtime
->channels
; /* frames */
1644 fs
= snd_enter_user();
1645 snd_pcm_lib_write(substream
, (void __user
*)runtime
->oss
.buffer
, size1
);
1648 } else if (runtime
->access
== SNDRV_PCM_ACCESS_RW_NONINTERLEAVED
) {
1649 void __user
*buffers
[runtime
->channels
];
1650 memset(buffers
, 0, runtime
->channels
* sizeof(void *));
1651 snd_pcm_lib_writev(substream
, buffers
, size
);
1654 mutex_unlock(&runtime
->oss
.params_lock
);
1656 * finish sync: drain the buffer
1659 saved_f_flags
= substream
->f_flags
;
1660 substream
->f_flags
&= ~O_NONBLOCK
;
1661 err
= snd_pcm_kernel_ioctl(substream
, SNDRV_PCM_IOCTL_DRAIN
, NULL
);
1662 substream
->f_flags
= saved_f_flags
;
1665 runtime
->oss
.prepare
= 1;
1668 substream
= pcm_oss_file
->streams
[SNDRV_PCM_STREAM_CAPTURE
];
1669 if (substream
!= NULL
) {
1670 if ((err
= snd_pcm_oss_make_ready(substream
)) < 0)
1672 runtime
= substream
->runtime
;
1673 err
= snd_pcm_kernel_ioctl(substream
, SNDRV_PCM_IOCTL_DROP
, NULL
);
1676 runtime
->oss
.buffer_used
= 0;
1677 runtime
->oss
.prepare
= 1;
1682 static int snd_pcm_oss_set_rate(struct snd_pcm_oss_file
*pcm_oss_file
, int rate
)
1686 for (idx
= 1; idx
>= 0; --idx
) {
1687 struct snd_pcm_substream
*substream
= pcm_oss_file
->streams
[idx
];
1688 struct snd_pcm_runtime
*runtime
;
1689 if (substream
== NULL
)
1691 runtime
= substream
->runtime
;
1694 else if (rate
> 192000)
1696 if (runtime
->oss
.rate
!= rate
) {
1697 runtime
->oss
.params
= 1;
1698 runtime
->oss
.rate
= rate
;
1701 return snd_pcm_oss_get_rate(pcm_oss_file
);
1704 static int snd_pcm_oss_get_rate(struct snd_pcm_oss_file
*pcm_oss_file
)
1706 struct snd_pcm_substream
*substream
;
1709 if ((err
= snd_pcm_oss_get_active_substream(pcm_oss_file
, &substream
)) < 0)
1711 return substream
->runtime
->oss
.rate
;
1714 static int snd_pcm_oss_set_channels(struct snd_pcm_oss_file
*pcm_oss_file
, unsigned int channels
)
1721 for (idx
= 1; idx
>= 0; --idx
) {
1722 struct snd_pcm_substream
*substream
= pcm_oss_file
->streams
[idx
];
1723 struct snd_pcm_runtime
*runtime
;
1724 if (substream
== NULL
)
1726 runtime
= substream
->runtime
;
1727 if (runtime
->oss
.channels
!= channels
) {
1728 runtime
->oss
.params
= 1;
1729 runtime
->oss
.channels
= channels
;
1732 return snd_pcm_oss_get_channels(pcm_oss_file
);
1735 static int snd_pcm_oss_get_channels(struct snd_pcm_oss_file
*pcm_oss_file
)
1737 struct snd_pcm_substream
*substream
;
1740 if ((err
= snd_pcm_oss_get_active_substream(pcm_oss_file
, &substream
)) < 0)
1742 return substream
->runtime
->oss
.channels
;
1745 static int snd_pcm_oss_get_block_size(struct snd_pcm_oss_file
*pcm_oss_file
)
1747 struct snd_pcm_substream
*substream
;
1750 if ((err
= snd_pcm_oss_get_active_substream(pcm_oss_file
, &substream
)) < 0)
1752 return substream
->runtime
->oss
.period_bytes
;
1755 static int snd_pcm_oss_get_formats(struct snd_pcm_oss_file
*pcm_oss_file
)
1757 struct snd_pcm_substream
*substream
;
1760 struct snd_pcm_hw_params
*params
;
1761 unsigned int formats
= 0;
1762 struct snd_mask format_mask
;
1765 if ((err
= snd_pcm_oss_get_active_substream(pcm_oss_file
, &substream
)) < 0)
1767 if (atomic_read(&substream
->mmap_count
))
1770 direct
= substream
->oss
.setup
.direct
;
1772 return AFMT_MU_LAW
| AFMT_U8
|
1773 AFMT_S16_LE
| AFMT_S16_BE
|
1774 AFMT_S8
| AFMT_U16_LE
|
1776 AFMT_S32_LE
| AFMT_S32_BE
|
1777 AFMT_S24_LE
| AFMT_S24_BE
|
1779 params
= kmalloc(sizeof(*params
), GFP_KERNEL
);
1782 _snd_pcm_hw_params_any(params
);
1783 err
= snd_pcm_hw_refine(substream
, params
);
1784 format_mask
= *hw_param_mask(params
, SNDRV_PCM_HW_PARAM_FORMAT
);
1788 for (fmt
= 0; fmt
< 32; ++fmt
) {
1789 if (snd_mask_test(&format_mask
, fmt
)) {
1790 int f
= snd_pcm_oss_format_to(fmt
);
1798 static int snd_pcm_oss_set_format(struct snd_pcm_oss_file
*pcm_oss_file
, int format
)
1802 if (format
!= AFMT_QUERY
) {
1803 formats
= snd_pcm_oss_get_formats(pcm_oss_file
);
1806 if (!(formats
& format
))
1808 for (idx
= 1; idx
>= 0; --idx
) {
1809 struct snd_pcm_substream
*substream
= pcm_oss_file
->streams
[idx
];
1810 struct snd_pcm_runtime
*runtime
;
1811 if (substream
== NULL
)
1813 runtime
= substream
->runtime
;
1814 if (runtime
->oss
.format
!= format
) {
1815 runtime
->oss
.params
= 1;
1816 runtime
->oss
.format
= format
;
1820 return snd_pcm_oss_get_format(pcm_oss_file
);
1823 static int snd_pcm_oss_get_format(struct snd_pcm_oss_file
*pcm_oss_file
)
1825 struct snd_pcm_substream
*substream
;
1828 if ((err
= snd_pcm_oss_get_active_substream(pcm_oss_file
, &substream
)) < 0)
1830 return substream
->runtime
->oss
.format
;
1833 static int snd_pcm_oss_set_subdivide1(struct snd_pcm_substream
*substream
, int subdivide
)
1835 struct snd_pcm_runtime
*runtime
;
1837 if (substream
== NULL
)
1839 runtime
= substream
->runtime
;
1840 if (subdivide
== 0) {
1841 subdivide
= runtime
->oss
.subdivision
;
1846 if (runtime
->oss
.subdivision
|| runtime
->oss
.fragshift
)
1848 if (subdivide
!= 1 && subdivide
!= 2 && subdivide
!= 4 &&
1849 subdivide
!= 8 && subdivide
!= 16)
1851 runtime
->oss
.subdivision
= subdivide
;
1852 runtime
->oss
.params
= 1;
1856 static int snd_pcm_oss_set_subdivide(struct snd_pcm_oss_file
*pcm_oss_file
, int subdivide
)
1858 int err
= -EINVAL
, idx
;
1860 for (idx
= 1; idx
>= 0; --idx
) {
1861 struct snd_pcm_substream
*substream
= pcm_oss_file
->streams
[idx
];
1862 if (substream
== NULL
)
1864 if ((err
= snd_pcm_oss_set_subdivide1(substream
, subdivide
)) < 0)
1870 static int snd_pcm_oss_set_fragment1(struct snd_pcm_substream
*substream
, unsigned int val
)
1872 struct snd_pcm_runtime
*runtime
;
1874 if (substream
== NULL
)
1876 runtime
= substream
->runtime
;
1877 if (runtime
->oss
.subdivision
|| runtime
->oss
.fragshift
)
1879 runtime
->oss
.fragshift
= val
& 0xffff;
1880 runtime
->oss
.maxfrags
= (val
>> 16) & 0xffff;
1881 if (runtime
->oss
.fragshift
< 4) /* < 16 */
1882 runtime
->oss
.fragshift
= 4;
1883 if (runtime
->oss
.maxfrags
< 2)
1884 runtime
->oss
.maxfrags
= 2;
1885 runtime
->oss
.params
= 1;
1889 static int snd_pcm_oss_set_fragment(struct snd_pcm_oss_file
*pcm_oss_file
, unsigned int val
)
1891 int err
= -EINVAL
, idx
;
1893 for (idx
= 1; idx
>= 0; --idx
) {
1894 struct snd_pcm_substream
*substream
= pcm_oss_file
->streams
[idx
];
1895 if (substream
== NULL
)
1897 if ((err
= snd_pcm_oss_set_fragment1(substream
, val
)) < 0)
1903 static int snd_pcm_oss_nonblock(struct file
* file
)
1905 spin_lock(&file
->f_lock
);
1906 file
->f_flags
|= O_NONBLOCK
;
1907 spin_unlock(&file
->f_lock
);
1911 static int snd_pcm_oss_get_caps1(struct snd_pcm_substream
*substream
, int res
)
1914 if (substream
== NULL
) {
1915 res
&= ~DSP_CAP_DUPLEX
;
1918 #ifdef DSP_CAP_MULTI
1919 if (substream
->stream
== SNDRV_PCM_STREAM_PLAYBACK
)
1920 if (substream
->pstr
->substream_count
> 1)
1921 res
|= DSP_CAP_MULTI
;
1923 /* DSP_CAP_REALTIME is set all times: */
1924 /* all ALSA drivers can return actual pointer in ring buffer */
1925 #if defined(DSP_CAP_REALTIME) && 0
1927 struct snd_pcm_runtime
*runtime
= substream
->runtime
;
1928 if (runtime
->info
& (SNDRV_PCM_INFO_BLOCK_TRANSFER
|SNDRV_PCM_INFO_BATCH
))
1929 res
&= ~DSP_CAP_REALTIME
;
1935 static int snd_pcm_oss_get_caps(struct snd_pcm_oss_file
*pcm_oss_file
)
1939 result
= DSP_CAP_TRIGGER
| DSP_CAP_MMAP
| DSP_CAP_DUPLEX
| DSP_CAP_REALTIME
;
1940 for (idx
= 0; idx
< 2; idx
++) {
1941 struct snd_pcm_substream
*substream
= pcm_oss_file
->streams
[idx
];
1942 result
= snd_pcm_oss_get_caps1(substream
, result
);
1944 result
|= 0x0001; /* revision - same as SB AWE 64 */
1948 static void snd_pcm_oss_simulate_fill(struct snd_pcm_substream
*substream
, snd_pcm_uframes_t hw_ptr
)
1950 struct snd_pcm_runtime
*runtime
= substream
->runtime
;
1951 snd_pcm_uframes_t appl_ptr
;
1952 appl_ptr
= hw_ptr
+ runtime
->buffer_size
;
1953 appl_ptr
%= runtime
->boundary
;
1954 runtime
->control
->appl_ptr
= appl_ptr
;
1957 static int snd_pcm_oss_set_trigger(struct snd_pcm_oss_file
*pcm_oss_file
, int trigger
)
1959 struct snd_pcm_runtime
*runtime
;
1960 struct snd_pcm_substream
*psubstream
= NULL
, *csubstream
= NULL
;
1964 printk(KERN_DEBUG
"pcm_oss: trigger = 0x%x\n", trigger
);
1967 psubstream
= pcm_oss_file
->streams
[SNDRV_PCM_STREAM_PLAYBACK
];
1968 csubstream
= pcm_oss_file
->streams
[SNDRV_PCM_STREAM_CAPTURE
];
1971 if ((err
= snd_pcm_oss_make_ready(psubstream
)) < 0)
1975 if ((err
= snd_pcm_oss_make_ready(csubstream
)) < 0)
1979 runtime
= psubstream
->runtime
;
1980 if (trigger
& PCM_ENABLE_OUTPUT
) {
1981 if (runtime
->oss
.trigger
)
1983 if (atomic_read(&psubstream
->mmap_count
))
1984 snd_pcm_oss_simulate_fill(psubstream
, runtime
->hw_ptr_interrupt
);
1985 runtime
->oss
.trigger
= 1;
1986 runtime
->start_threshold
= 1;
1987 cmd
= SNDRV_PCM_IOCTL_START
;
1989 if (!runtime
->oss
.trigger
)
1991 runtime
->oss
.trigger
= 0;
1992 runtime
->start_threshold
= runtime
->boundary
;
1993 cmd
= SNDRV_PCM_IOCTL_DROP
;
1994 runtime
->oss
.prepare
= 1;
1996 err
= snd_pcm_kernel_ioctl(psubstream
, cmd
, NULL
);
2002 runtime
= csubstream
->runtime
;
2003 if (trigger
& PCM_ENABLE_INPUT
) {
2004 if (runtime
->oss
.trigger
)
2006 runtime
->oss
.trigger
= 1;
2007 runtime
->start_threshold
= 1;
2008 cmd
= SNDRV_PCM_IOCTL_START
;
2010 if (!runtime
->oss
.trigger
)
2012 runtime
->oss
.trigger
= 0;
2013 runtime
->start_threshold
= runtime
->boundary
;
2014 cmd
= SNDRV_PCM_IOCTL_DROP
;
2015 runtime
->oss
.prepare
= 1;
2017 err
= snd_pcm_kernel_ioctl(csubstream
, cmd
, NULL
);
2025 static int snd_pcm_oss_get_trigger(struct snd_pcm_oss_file
*pcm_oss_file
)
2027 struct snd_pcm_substream
*psubstream
= NULL
, *csubstream
= NULL
;
2030 psubstream
= pcm_oss_file
->streams
[SNDRV_PCM_STREAM_PLAYBACK
];
2031 csubstream
= pcm_oss_file
->streams
[SNDRV_PCM_STREAM_CAPTURE
];
2032 if (psubstream
&& psubstream
->runtime
&& psubstream
->runtime
->oss
.trigger
)
2033 result
|= PCM_ENABLE_OUTPUT
;
2034 if (csubstream
&& csubstream
->runtime
&& csubstream
->runtime
->oss
.trigger
)
2035 result
|= PCM_ENABLE_INPUT
;
2039 static int snd_pcm_oss_get_odelay(struct snd_pcm_oss_file
*pcm_oss_file
)
2041 struct snd_pcm_substream
*substream
;
2042 struct snd_pcm_runtime
*runtime
;
2043 snd_pcm_sframes_t delay
;
2046 substream
= pcm_oss_file
->streams
[SNDRV_PCM_STREAM_PLAYBACK
];
2047 if (substream
== NULL
)
2049 if ((err
= snd_pcm_oss_make_ready(substream
)) < 0)
2051 runtime
= substream
->runtime
;
2052 if (runtime
->oss
.params
|| runtime
->oss
.prepare
)
2054 err
= snd_pcm_kernel_ioctl(substream
, SNDRV_PCM_IOCTL_DELAY
, &delay
);
2056 delay
= 0; /* hack for broken OSS applications */
2059 return snd_pcm_oss_bytes(substream
, delay
);
2062 static int snd_pcm_oss_get_ptr(struct snd_pcm_oss_file
*pcm_oss_file
, int stream
, struct count_info __user
* _info
)
2064 struct snd_pcm_substream
*substream
;
2065 struct snd_pcm_runtime
*runtime
;
2066 snd_pcm_sframes_t delay
;
2068 struct count_info info
;
2073 substream
= pcm_oss_file
->streams
[stream
];
2074 if (substream
== NULL
)
2076 if ((err
= snd_pcm_oss_make_ready(substream
)) < 0)
2078 runtime
= substream
->runtime
;
2079 if (runtime
->oss
.params
|| runtime
->oss
.prepare
) {
2080 memset(&info
, 0, sizeof(info
));
2081 if (copy_to_user(_info
, &info
, sizeof(info
)))
2085 if (stream
== SNDRV_PCM_STREAM_PLAYBACK
) {
2086 err
= snd_pcm_kernel_ioctl(substream
, SNDRV_PCM_IOCTL_DELAY
, &delay
);
2087 if (err
== -EPIPE
|| err
== -ESTRPIPE
|| (! err
&& delay
< 0)) {
2092 fixup
= runtime
->oss
.buffer_used
;
2095 err
= snd_pcm_oss_capture_position_fixup(substream
, &delay
);
2096 fixup
= -runtime
->oss
.buffer_used
;
2100 info
.ptr
= snd_pcm_oss_bytes(substream
, runtime
->status
->hw_ptr
% runtime
->buffer_size
);
2101 if (atomic_read(&substream
->mmap_count
)) {
2102 snd_pcm_sframes_t n
;
2103 n
= (delay
= runtime
->hw_ptr_interrupt
) - runtime
->oss
.prev_hw_ptr_interrupt
;
2105 n
+= runtime
->boundary
;
2106 info
.blocks
= n
/ runtime
->period_size
;
2107 runtime
->oss
.prev_hw_ptr_interrupt
= delay
;
2108 if (substream
->stream
== SNDRV_PCM_STREAM_PLAYBACK
)
2109 snd_pcm_oss_simulate_fill(substream
, delay
);
2110 info
.bytes
= snd_pcm_oss_bytes(substream
, runtime
->status
->hw_ptr
) & INT_MAX
;
2112 delay
= snd_pcm_oss_bytes(substream
, delay
);
2113 if (stream
== SNDRV_PCM_STREAM_PLAYBACK
) {
2114 if (substream
->oss
.setup
.buggyptr
)
2115 info
.blocks
= (runtime
->oss
.buffer_bytes
- delay
- fixup
) / runtime
->oss
.period_bytes
;
2117 info
.blocks
= (delay
+ fixup
) / runtime
->oss
.period_bytes
;
2118 info
.bytes
= (runtime
->oss
.bytes
- delay
) & INT_MAX
;
2121 info
.blocks
= delay
/ runtime
->oss
.period_bytes
;
2122 info
.bytes
= (runtime
->oss
.bytes
+ delay
) & INT_MAX
;
2125 if (copy_to_user(_info
, &info
, sizeof(info
)))
2130 static int snd_pcm_oss_get_space(struct snd_pcm_oss_file
*pcm_oss_file
, int stream
, struct audio_buf_info __user
*_info
)
2132 struct snd_pcm_substream
*substream
;
2133 struct snd_pcm_runtime
*runtime
;
2134 snd_pcm_sframes_t avail
;
2136 struct audio_buf_info info
;
2141 substream
= pcm_oss_file
->streams
[stream
];
2142 if (substream
== NULL
)
2144 runtime
= substream
->runtime
;
2146 if (runtime
->oss
.params
&&
2147 (err
= snd_pcm_oss_change_params(substream
)) < 0)
2150 info
.fragsize
= runtime
->oss
.period_bytes
;
2151 info
.fragstotal
= runtime
->periods
;
2152 if (runtime
->oss
.prepare
) {
2153 if (stream
== SNDRV_PCM_STREAM_PLAYBACK
) {
2154 info
.bytes
= runtime
->oss
.period_bytes
* runtime
->oss
.periods
;
2155 info
.fragments
= runtime
->oss
.periods
;
2161 if (stream
== SNDRV_PCM_STREAM_PLAYBACK
) {
2162 err
= snd_pcm_kernel_ioctl(substream
, SNDRV_PCM_IOCTL_DELAY
, &avail
);
2163 if (err
== -EPIPE
|| err
== -ESTRPIPE
|| (! err
&& avail
< 0)) {
2164 avail
= runtime
->buffer_size
;
2168 avail
= runtime
->buffer_size
- avail
;
2169 fixup
= -runtime
->oss
.buffer_used
;
2172 err
= snd_pcm_oss_capture_position_fixup(substream
, &avail
);
2173 fixup
= runtime
->oss
.buffer_used
;
2177 info
.bytes
= snd_pcm_oss_bytes(substream
, avail
) + fixup
;
2178 info
.fragments
= info
.bytes
/ runtime
->oss
.period_bytes
;
2182 printk(KERN_DEBUG
"pcm_oss: space: bytes = %i, fragments = %i, "
2183 "fragstotal = %i, fragsize = %i\n",
2184 info
.bytes
, info
.fragments
, info
.fragstotal
, info
.fragsize
);
2186 if (copy_to_user(_info
, &info
, sizeof(info
)))
2191 static int snd_pcm_oss_get_mapbuf(struct snd_pcm_oss_file
*pcm_oss_file
, int stream
, struct buffmem_desc __user
* _info
)
2193 // it won't be probably implemented
2194 // snd_printd("TODO: snd_pcm_oss_get_mapbuf\n");
2198 static const char *strip_task_path(const char *path
)
2200 const char *ptr
, *ptrl
= NULL
;
2201 for (ptr
= path
; *ptr
; ptr
++) {
2208 static void snd_pcm_oss_look_for_setup(struct snd_pcm
*pcm
, int stream
,
2209 const char *task_name
,
2210 struct snd_pcm_oss_setup
*rsetup
)
2212 struct snd_pcm_oss_setup
*setup
;
2214 mutex_lock(&pcm
->streams
[stream
].oss
.setup_mutex
);
2216 for (setup
= pcm
->streams
[stream
].oss
.setup_list
; setup
;
2217 setup
= setup
->next
) {
2218 if (!strcmp(setup
->task_name
, task_name
))
2221 } while ((task_name
= strip_task_path(task_name
)) != NULL
);
2225 mutex_unlock(&pcm
->streams
[stream
].oss
.setup_mutex
);
2228 static void snd_pcm_oss_release_substream(struct snd_pcm_substream
*substream
)
2230 struct snd_pcm_runtime
*runtime
;
2231 runtime
= substream
->runtime
;
2232 vfree(runtime
->oss
.buffer
);
2233 runtime
->oss
.buffer
= NULL
;
2234 #ifdef CONFIG_SND_PCM_OSS_PLUGINS
2235 snd_pcm_oss_plugin_clear(substream
);
2237 substream
->oss
.oss
= 0;
2240 static void snd_pcm_oss_init_substream(struct snd_pcm_substream
*substream
,
2241 struct snd_pcm_oss_setup
*setup
,
2244 struct snd_pcm_runtime
*runtime
;
2246 substream
->oss
.oss
= 1;
2247 substream
->oss
.setup
= *setup
;
2248 if (setup
->nonblock
)
2249 substream
->f_flags
|= O_NONBLOCK
;
2250 else if (setup
->block
)
2251 substream
->f_flags
&= ~O_NONBLOCK
;
2252 runtime
= substream
->runtime
;
2253 runtime
->oss
.params
= 1;
2254 runtime
->oss
.trigger
= 1;
2255 runtime
->oss
.rate
= 8000;
2256 mutex_init(&runtime
->oss
.params_lock
);
2257 switch (SNDRV_MINOR_OSS_DEVICE(minor
)) {
2258 case SNDRV_MINOR_OSS_PCM_8
:
2259 runtime
->oss
.format
= AFMT_U8
;
2261 case SNDRV_MINOR_OSS_PCM_16
:
2262 runtime
->oss
.format
= AFMT_S16_LE
;
2265 runtime
->oss
.format
= AFMT_MU_LAW
;
2267 runtime
->oss
.channels
= 1;
2268 runtime
->oss
.fragshift
= 0;
2269 runtime
->oss
.maxfrags
= 0;
2270 runtime
->oss
.subdivision
= 0;
2271 substream
->pcm_release
= snd_pcm_oss_release_substream
;
2274 static int snd_pcm_oss_release_file(struct snd_pcm_oss_file
*pcm_oss_file
)
2279 for (cidx
= 0; cidx
< 2; ++cidx
) {
2280 struct snd_pcm_substream
*substream
= pcm_oss_file
->streams
[cidx
];
2282 snd_pcm_release_substream(substream
);
2284 kfree(pcm_oss_file
);
2288 static int snd_pcm_oss_open_file(struct file
*file
,
2289 struct snd_pcm
*pcm
,
2290 struct snd_pcm_oss_file
**rpcm_oss_file
,
2292 struct snd_pcm_oss_setup
*setup
)
2295 struct snd_pcm_oss_file
*pcm_oss_file
;
2296 struct snd_pcm_substream
*substream
;
2297 fmode_t f_mode
= file
->f_mode
;
2300 *rpcm_oss_file
= NULL
;
2302 pcm_oss_file
= kzalloc(sizeof(*pcm_oss_file
), GFP_KERNEL
);
2303 if (pcm_oss_file
== NULL
)
2306 if ((f_mode
& (FMODE_WRITE
|FMODE_READ
)) == (FMODE_WRITE
|FMODE_READ
) &&
2307 (pcm
->info_flags
& SNDRV_PCM_INFO_HALF_DUPLEX
))
2308 f_mode
= FMODE_WRITE
;
2310 file
->f_flags
&= ~O_APPEND
;
2311 for (idx
= 0; idx
< 2; idx
++) {
2312 if (setup
[idx
].disable
)
2314 if (! pcm
->streams
[idx
].substream_count
)
2315 continue; /* no matching substream */
2316 if (idx
== SNDRV_PCM_STREAM_PLAYBACK
) {
2317 if (! (f_mode
& FMODE_WRITE
))
2320 if (! (f_mode
& FMODE_READ
))
2323 err
= snd_pcm_open_substream(pcm
, idx
, file
, &substream
);
2325 snd_pcm_oss_release_file(pcm_oss_file
);
2329 pcm_oss_file
->streams
[idx
] = substream
;
2330 substream
->file
= pcm_oss_file
;
2331 snd_pcm_oss_init_substream(substream
, &setup
[idx
], minor
);
2334 if (!pcm_oss_file
->streams
[0] && !pcm_oss_file
->streams
[1]) {
2335 snd_pcm_oss_release_file(pcm_oss_file
);
2339 file
->private_data
= pcm_oss_file
;
2341 *rpcm_oss_file
= pcm_oss_file
;
2346 static int snd_task_name(struct task_struct
*task
, char *name
, size_t size
)
2350 if (snd_BUG_ON(!task
|| !name
|| size
< 2))
2352 for (idx
= 0; idx
< sizeof(task
->comm
) && idx
+ 1 < size
; idx
++)
2353 name
[idx
] = task
->comm
[idx
];
2358 static int snd_pcm_oss_open(struct inode
*inode
, struct file
*file
)
2362 struct snd_pcm
*pcm
;
2363 struct snd_pcm_oss_file
*pcm_oss_file
;
2364 struct snd_pcm_oss_setup setup
[2];
2368 pcm
= snd_lookup_oss_minor_data(iminor(inode
),
2369 SNDRV_OSS_DEVICE_TYPE_PCM
);
2374 err
= snd_card_file_add(pcm
->card
, file
);
2377 if (!try_module_get(pcm
->card
->module
)) {
2381 if (snd_task_name(current
, task_name
, sizeof(task_name
)) < 0) {
2385 memset(setup
, 0, sizeof(setup
));
2386 if (file
->f_mode
& FMODE_WRITE
)
2387 snd_pcm_oss_look_for_setup(pcm
, SNDRV_PCM_STREAM_PLAYBACK
,
2388 task_name
, &setup
[0]);
2389 if (file
->f_mode
& FMODE_READ
)
2390 snd_pcm_oss_look_for_setup(pcm
, SNDRV_PCM_STREAM_CAPTURE
,
2391 task_name
, &setup
[1]);
2393 nonblock
= !!(file
->f_flags
& O_NONBLOCK
);
2395 nonblock
= nonblock_open
;
2397 init_waitqueue_entry(&wait
, current
);
2398 add_wait_queue(&pcm
->open_wait
, &wait
);
2399 mutex_lock(&pcm
->open_mutex
);
2401 err
= snd_pcm_oss_open_file(file
, pcm
, &pcm_oss_file
,
2402 iminor(inode
), setup
);
2405 if (err
== -EAGAIN
) {
2412 set_current_state(TASK_INTERRUPTIBLE
);
2413 mutex_unlock(&pcm
->open_mutex
);
2415 mutex_lock(&pcm
->open_mutex
);
2416 if (signal_pending(current
)) {
2421 remove_wait_queue(&pcm
->open_wait
, &wait
);
2422 mutex_unlock(&pcm
->open_mutex
);
2428 module_put(pcm
->card
->module
);
2430 snd_card_file_remove(pcm
->card
, file
);
2435 static int snd_pcm_oss_release(struct inode
*inode
, struct file
*file
)
2437 struct snd_pcm
*pcm
;
2438 struct snd_pcm_substream
*substream
;
2439 struct snd_pcm_oss_file
*pcm_oss_file
;
2441 pcm_oss_file
= file
->private_data
;
2442 substream
= pcm_oss_file
->streams
[SNDRV_PCM_STREAM_PLAYBACK
];
2443 if (substream
== NULL
)
2444 substream
= pcm_oss_file
->streams
[SNDRV_PCM_STREAM_CAPTURE
];
2445 if (snd_BUG_ON(!substream
))
2447 pcm
= substream
->pcm
;
2448 if (!pcm
->card
->shutdown
)
2449 snd_pcm_oss_sync(pcm_oss_file
);
2450 mutex_lock(&pcm
->open_mutex
);
2451 snd_pcm_oss_release_file(pcm_oss_file
);
2452 mutex_unlock(&pcm
->open_mutex
);
2453 wake_up(&pcm
->open_wait
);
2454 module_put(pcm
->card
->module
);
2455 snd_card_file_remove(pcm
->card
, file
);
2459 static long snd_pcm_oss_ioctl(struct file
*file
, unsigned int cmd
, unsigned long arg
)
2461 struct snd_pcm_oss_file
*pcm_oss_file
;
2462 int __user
*p
= (int __user
*)arg
;
2465 pcm_oss_file
= file
->private_data
;
2466 if (cmd
== OSS_GETVERSION
)
2467 return put_user(SNDRV_OSS_VERSION
, p
);
2468 if (cmd
== OSS_ALSAEMULVER
)
2469 return put_user(1, p
);
2470 #if defined(CONFIG_SND_MIXER_OSS) || (defined(MODULE) && defined(CONFIG_SND_MIXER_OSS_MODULE))
2471 if (((cmd
>> 8) & 0xff) == 'M') { /* mixer ioctl - for OSS compatibility */
2472 struct snd_pcm_substream
*substream
;
2474 for (idx
= 0; idx
< 2; ++idx
) {
2475 substream
= pcm_oss_file
->streams
[idx
];
2476 if (substream
!= NULL
)
2479 if (snd_BUG_ON(idx
>= 2))
2481 return snd_mixer_oss_ioctl_card(substream
->pcm
->card
, cmd
, arg
);
2484 if (((cmd
>> 8) & 0xff) != 'P')
2487 printk(KERN_DEBUG
"pcm_oss: ioctl = 0x%x\n", cmd
);
2490 case SNDCTL_DSP_RESET
:
2491 return snd_pcm_oss_reset(pcm_oss_file
);
2492 case SNDCTL_DSP_SYNC
:
2493 return snd_pcm_oss_sync(pcm_oss_file
);
2494 case SNDCTL_DSP_SPEED
:
2495 if (get_user(res
, p
))
2497 if ((res
= snd_pcm_oss_set_rate(pcm_oss_file
, res
))<0)
2499 return put_user(res
, p
);
2500 case SOUND_PCM_READ_RATE
:
2501 res
= snd_pcm_oss_get_rate(pcm_oss_file
);
2504 return put_user(res
, p
);
2505 case SNDCTL_DSP_STEREO
:
2506 if (get_user(res
, p
))
2508 res
= res
> 0 ? 2 : 1;
2509 if ((res
= snd_pcm_oss_set_channels(pcm_oss_file
, res
)) < 0)
2511 return put_user(--res
, p
);
2512 case SNDCTL_DSP_GETBLKSIZE
:
2513 res
= snd_pcm_oss_get_block_size(pcm_oss_file
);
2516 return put_user(res
, p
);
2517 case SNDCTL_DSP_SETFMT
:
2518 if (get_user(res
, p
))
2520 res
= snd_pcm_oss_set_format(pcm_oss_file
, res
);
2523 return put_user(res
, p
);
2524 case SOUND_PCM_READ_BITS
:
2525 res
= snd_pcm_oss_get_format(pcm_oss_file
);
2528 return put_user(res
, p
);
2529 case SNDCTL_DSP_CHANNELS
:
2530 if (get_user(res
, p
))
2532 res
= snd_pcm_oss_set_channels(pcm_oss_file
, res
);
2535 return put_user(res
, p
);
2536 case SOUND_PCM_READ_CHANNELS
:
2537 res
= snd_pcm_oss_get_channels(pcm_oss_file
);
2540 return put_user(res
, p
);
2541 case SOUND_PCM_WRITE_FILTER
:
2542 case SOUND_PCM_READ_FILTER
:
2544 case SNDCTL_DSP_POST
:
2545 return snd_pcm_oss_post(pcm_oss_file
);
2546 case SNDCTL_DSP_SUBDIVIDE
:
2547 if (get_user(res
, p
))
2549 res
= snd_pcm_oss_set_subdivide(pcm_oss_file
, res
);
2552 return put_user(res
, p
);
2553 case SNDCTL_DSP_SETFRAGMENT
:
2554 if (get_user(res
, p
))
2556 return snd_pcm_oss_set_fragment(pcm_oss_file
, res
);
2557 case SNDCTL_DSP_GETFMTS
:
2558 res
= snd_pcm_oss_get_formats(pcm_oss_file
);
2561 return put_user(res
, p
);
2562 case SNDCTL_DSP_GETOSPACE
:
2563 case SNDCTL_DSP_GETISPACE
:
2564 return snd_pcm_oss_get_space(pcm_oss_file
,
2565 cmd
== SNDCTL_DSP_GETISPACE
?
2566 SNDRV_PCM_STREAM_CAPTURE
: SNDRV_PCM_STREAM_PLAYBACK
,
2567 (struct audio_buf_info __user
*) arg
);
2568 case SNDCTL_DSP_NONBLOCK
:
2569 return snd_pcm_oss_nonblock(file
);
2570 case SNDCTL_DSP_GETCAPS
:
2571 res
= snd_pcm_oss_get_caps(pcm_oss_file
);
2574 return put_user(res
, p
);
2575 case SNDCTL_DSP_GETTRIGGER
:
2576 res
= snd_pcm_oss_get_trigger(pcm_oss_file
);
2579 return put_user(res
, p
);
2580 case SNDCTL_DSP_SETTRIGGER
:
2581 if (get_user(res
, p
))
2583 return snd_pcm_oss_set_trigger(pcm_oss_file
, res
);
2584 case SNDCTL_DSP_GETIPTR
:
2585 case SNDCTL_DSP_GETOPTR
:
2586 return snd_pcm_oss_get_ptr(pcm_oss_file
,
2587 cmd
== SNDCTL_DSP_GETIPTR
?
2588 SNDRV_PCM_STREAM_CAPTURE
: SNDRV_PCM_STREAM_PLAYBACK
,
2589 (struct count_info __user
*) arg
);
2590 case SNDCTL_DSP_MAPINBUF
:
2591 case SNDCTL_DSP_MAPOUTBUF
:
2592 return snd_pcm_oss_get_mapbuf(pcm_oss_file
,
2593 cmd
== SNDCTL_DSP_MAPINBUF
?
2594 SNDRV_PCM_STREAM_CAPTURE
: SNDRV_PCM_STREAM_PLAYBACK
,
2595 (struct buffmem_desc __user
*) arg
);
2596 case SNDCTL_DSP_SETSYNCRO
:
2597 /* stop DMA now.. */
2599 case SNDCTL_DSP_SETDUPLEX
:
2600 if (snd_pcm_oss_get_caps(pcm_oss_file
) & DSP_CAP_DUPLEX
)
2603 case SNDCTL_DSP_GETODELAY
:
2604 res
= snd_pcm_oss_get_odelay(pcm_oss_file
);
2606 /* it's for sure, some broken apps don't check for error codes */
2610 return put_user(res
, p
);
2611 case SNDCTL_DSP_PROFILE
:
2612 return 0; /* silently ignore */
2614 snd_printd("pcm_oss: unknown command = 0x%x\n", cmd
);
2619 #ifdef CONFIG_COMPAT
2620 /* all compatible */
2621 #define snd_pcm_oss_ioctl_compat snd_pcm_oss_ioctl
2623 #define snd_pcm_oss_ioctl_compat NULL
2626 static ssize_t
snd_pcm_oss_read(struct file
*file
, char __user
*buf
, size_t count
, loff_t
*offset
)
2628 struct snd_pcm_oss_file
*pcm_oss_file
;
2629 struct snd_pcm_substream
*substream
;
2631 pcm_oss_file
= file
->private_data
;
2632 substream
= pcm_oss_file
->streams
[SNDRV_PCM_STREAM_CAPTURE
];
2633 if (substream
== NULL
)
2635 substream
->f_flags
= file
->f_flags
& O_NONBLOCK
;
2637 return snd_pcm_oss_read1(substream
, buf
, count
);
2640 ssize_t res
= snd_pcm_oss_read1(substream
, buf
, count
);
2641 printk(KERN_DEBUG
"pcm_oss: read %li bytes "
2642 "(returned %li bytes)\n", (long)count
, (long)res
);
2648 static ssize_t
snd_pcm_oss_write(struct file
*file
, const char __user
*buf
, size_t count
, loff_t
*offset
)
2650 struct snd_pcm_oss_file
*pcm_oss_file
;
2651 struct snd_pcm_substream
*substream
;
2654 pcm_oss_file
= file
->private_data
;
2655 substream
= pcm_oss_file
->streams
[SNDRV_PCM_STREAM_PLAYBACK
];
2656 if (substream
== NULL
)
2658 substream
->f_flags
= file
->f_flags
& O_NONBLOCK
;
2659 result
= snd_pcm_oss_write1(substream
, buf
, count
);
2661 printk(KERN_DEBUG
"pcm_oss: write %li bytes (wrote %li bytes)\n",
2662 (long)count
, (long)result
);
2667 static int snd_pcm_oss_playback_ready(struct snd_pcm_substream
*substream
)
2669 struct snd_pcm_runtime
*runtime
= substream
->runtime
;
2670 if (atomic_read(&substream
->mmap_count
))
2671 return runtime
->oss
.prev_hw_ptr_interrupt
!= runtime
->hw_ptr_interrupt
;
2673 return snd_pcm_playback_avail(runtime
) >= runtime
->oss
.period_frames
;
2676 static int snd_pcm_oss_capture_ready(struct snd_pcm_substream
*substream
)
2678 struct snd_pcm_runtime
*runtime
= substream
->runtime
;
2679 if (atomic_read(&substream
->mmap_count
))
2680 return runtime
->oss
.prev_hw_ptr_interrupt
!= runtime
->hw_ptr_interrupt
;
2682 return snd_pcm_capture_avail(runtime
) >= runtime
->oss
.period_frames
;
2685 static unsigned int snd_pcm_oss_poll(struct file
*file
, poll_table
* wait
)
2687 struct snd_pcm_oss_file
*pcm_oss_file
;
2689 struct snd_pcm_substream
*psubstream
= NULL
, *csubstream
= NULL
;
2691 pcm_oss_file
= file
->private_data
;
2693 psubstream
= pcm_oss_file
->streams
[SNDRV_PCM_STREAM_PLAYBACK
];
2694 csubstream
= pcm_oss_file
->streams
[SNDRV_PCM_STREAM_CAPTURE
];
2697 if (psubstream
!= NULL
) {
2698 struct snd_pcm_runtime
*runtime
= psubstream
->runtime
;
2699 poll_wait(file
, &runtime
->sleep
, wait
);
2700 snd_pcm_stream_lock_irq(psubstream
);
2701 if (runtime
->status
->state
!= SNDRV_PCM_STATE_DRAINING
&&
2702 (runtime
->status
->state
!= SNDRV_PCM_STATE_RUNNING
||
2703 snd_pcm_oss_playback_ready(psubstream
)))
2704 mask
|= POLLOUT
| POLLWRNORM
;
2705 snd_pcm_stream_unlock_irq(psubstream
);
2707 if (csubstream
!= NULL
) {
2708 struct snd_pcm_runtime
*runtime
= csubstream
->runtime
;
2709 snd_pcm_state_t ostate
;
2710 poll_wait(file
, &runtime
->sleep
, wait
);
2711 snd_pcm_stream_lock_irq(csubstream
);
2712 if ((ostate
= runtime
->status
->state
) != SNDRV_PCM_STATE_RUNNING
||
2713 snd_pcm_oss_capture_ready(csubstream
))
2714 mask
|= POLLIN
| POLLRDNORM
;
2715 snd_pcm_stream_unlock_irq(csubstream
);
2716 if (ostate
!= SNDRV_PCM_STATE_RUNNING
&& runtime
->oss
.trigger
) {
2717 struct snd_pcm_oss_file ofile
;
2718 memset(&ofile
, 0, sizeof(ofile
));
2719 ofile
.streams
[SNDRV_PCM_STREAM_CAPTURE
] = pcm_oss_file
->streams
[SNDRV_PCM_STREAM_CAPTURE
];
2720 runtime
->oss
.trigger
= 0;
2721 snd_pcm_oss_set_trigger(&ofile
, PCM_ENABLE_INPUT
);
2728 static int snd_pcm_oss_mmap(struct file
*file
, struct vm_area_struct
*area
)
2730 struct snd_pcm_oss_file
*pcm_oss_file
;
2731 struct snd_pcm_substream
*substream
= NULL
;
2732 struct snd_pcm_runtime
*runtime
;
2736 printk(KERN_DEBUG
"pcm_oss: mmap begin\n");
2738 pcm_oss_file
= file
->private_data
;
2739 switch ((area
->vm_flags
& (VM_READ
| VM_WRITE
))) {
2740 case VM_READ
| VM_WRITE
:
2741 substream
= pcm_oss_file
->streams
[SNDRV_PCM_STREAM_PLAYBACK
];
2746 substream
= pcm_oss_file
->streams
[SNDRV_PCM_STREAM_CAPTURE
];
2749 substream
= pcm_oss_file
->streams
[SNDRV_PCM_STREAM_PLAYBACK
];
2754 /* set VM_READ access as well to fix memset() routines that do
2755 reads before writes (to improve performance) */
2756 area
->vm_flags
|= VM_READ
;
2757 if (substream
== NULL
)
2759 runtime
= substream
->runtime
;
2760 if (!(runtime
->info
& SNDRV_PCM_INFO_MMAP_VALID
))
2762 if (runtime
->info
& SNDRV_PCM_INFO_INTERLEAVED
)
2763 runtime
->access
= SNDRV_PCM_ACCESS_MMAP_INTERLEAVED
;
2767 if (runtime
->oss
.params
) {
2768 if ((err
= snd_pcm_oss_change_params(substream
)) < 0)
2771 #ifdef CONFIG_SND_PCM_OSS_PLUGINS
2772 if (runtime
->oss
.plugin_first
!= NULL
)
2776 if (area
->vm_pgoff
!= 0)
2779 err
= snd_pcm_mmap_data(substream
, file
, area
);
2782 runtime
->oss
.mmap_bytes
= area
->vm_end
- area
->vm_start
;
2783 runtime
->silence_threshold
= 0;
2784 runtime
->silence_size
= 0;
2786 printk(KERN_DEBUG
"pcm_oss: mmap ok, bytes = 0x%x\n",
2787 runtime
->oss
.mmap_bytes
);
2789 /* In mmap mode we never stop */
2790 runtime
->stop_threshold
= runtime
->boundary
;
2795 #ifdef CONFIG_SND_VERBOSE_PROCFS
2800 static void snd_pcm_oss_proc_read(struct snd_info_entry
*entry
,
2801 struct snd_info_buffer
*buffer
)
2803 struct snd_pcm_str
*pstr
= entry
->private_data
;
2804 struct snd_pcm_oss_setup
*setup
= pstr
->oss
.setup_list
;
2805 mutex_lock(&pstr
->oss
.setup_mutex
);
2807 snd_iprintf(buffer
, "%s %u %u%s%s%s%s%s%s\n",
2811 setup
->disable
? " disable" : "",
2812 setup
->direct
? " direct" : "",
2813 setup
->block
? " block" : "",
2814 setup
->nonblock
? " non-block" : "",
2815 setup
->partialfrag
? " partial-frag" : "",
2816 setup
->nosilence
? " no-silence" : "");
2817 setup
= setup
->next
;
2819 mutex_unlock(&pstr
->oss
.setup_mutex
);
2822 static void snd_pcm_oss_proc_free_setup_list(struct snd_pcm_str
* pstr
)
2824 struct snd_pcm_oss_setup
*setup
, *setupn
;
2826 for (setup
= pstr
->oss
.setup_list
, pstr
->oss
.setup_list
= NULL
;
2827 setup
; setup
= setupn
) {
2828 setupn
= setup
->next
;
2829 kfree(setup
->task_name
);
2832 pstr
->oss
.setup_list
= NULL
;
2835 static void snd_pcm_oss_proc_write(struct snd_info_entry
*entry
,
2836 struct snd_info_buffer
*buffer
)
2838 struct snd_pcm_str
*pstr
= entry
->private_data
;
2839 char line
[128], str
[32], task_name
[32], *ptr
;
2841 struct snd_pcm_oss_setup
*setup
, *setup1
, template;
2843 while (!snd_info_get_line(buffer
, line
, sizeof(line
))) {
2844 mutex_lock(&pstr
->oss
.setup_mutex
);
2845 memset(&template, 0, sizeof(template));
2846 ptr
= snd_info_get_str(task_name
, line
, sizeof(task_name
));
2847 if (!strcmp(task_name
, "clear") || !strcmp(task_name
, "erase")) {
2848 snd_pcm_oss_proc_free_setup_list(pstr
);
2849 mutex_unlock(&pstr
->oss
.setup_mutex
);
2852 for (setup
= pstr
->oss
.setup_list
; setup
; setup
= setup
->next
) {
2853 if (!strcmp(setup
->task_name
, task_name
)) {
2858 ptr
= snd_info_get_str(str
, ptr
, sizeof(str
));
2859 template.periods
= simple_strtoul(str
, NULL
, 10);
2860 ptr
= snd_info_get_str(str
, ptr
, sizeof(str
));
2861 template.period_size
= simple_strtoul(str
, NULL
, 10);
2862 for (idx1
= 31; idx1
>= 0; idx1
--)
2863 if (template.period_size
& (1 << idx1
))
2865 for (idx1
--; idx1
>= 0; idx1
--)
2866 template.period_size
&= ~(1 << idx1
);
2868 ptr
= snd_info_get_str(str
, ptr
, sizeof(str
));
2869 if (!strcmp(str
, "disable")) {
2870 template.disable
= 1;
2871 } else if (!strcmp(str
, "direct")) {
2872 template.direct
= 1;
2873 } else if (!strcmp(str
, "block")) {
2875 } else if (!strcmp(str
, "non-block")) {
2876 template.nonblock
= 1;
2877 } else if (!strcmp(str
, "partial-frag")) {
2878 template.partialfrag
= 1;
2879 } else if (!strcmp(str
, "no-silence")) {
2880 template.nosilence
= 1;
2881 } else if (!strcmp(str
, "buggy-ptr")) {
2882 template.buggyptr
= 1;
2885 if (setup
== NULL
) {
2886 setup
= kmalloc(sizeof(*setup
), GFP_KERNEL
);
2888 buffer
->error
= -ENOMEM
;
2889 mutex_unlock(&pstr
->oss
.setup_mutex
);
2892 if (pstr
->oss
.setup_list
== NULL
)
2893 pstr
->oss
.setup_list
= setup
;
2895 for (setup1
= pstr
->oss
.setup_list
;
2896 setup1
->next
; setup1
= setup1
->next
);
2897 setup1
->next
= setup
;
2899 template.task_name
= kstrdup(task_name
, GFP_KERNEL
);
2900 if (! template.task_name
) {
2902 buffer
->error
= -ENOMEM
;
2903 mutex_unlock(&pstr
->oss
.setup_mutex
);
2908 mutex_unlock(&pstr
->oss
.setup_mutex
);
2912 static void snd_pcm_oss_proc_init(struct snd_pcm
*pcm
)
2915 for (stream
= 0; stream
< 2; ++stream
) {
2916 struct snd_info_entry
*entry
;
2917 struct snd_pcm_str
*pstr
= &pcm
->streams
[stream
];
2918 if (pstr
->substream_count
== 0)
2920 if ((entry
= snd_info_create_card_entry(pcm
->card
, "oss", pstr
->proc_root
)) != NULL
) {
2921 entry
->content
= SNDRV_INFO_CONTENT_TEXT
;
2922 entry
->mode
= S_IFREG
| S_IRUGO
| S_IWUSR
;
2923 entry
->c
.text
.read
= snd_pcm_oss_proc_read
;
2924 entry
->c
.text
.write
= snd_pcm_oss_proc_write
;
2925 entry
->private_data
= pstr
;
2926 if (snd_info_register(entry
) < 0) {
2927 snd_info_free_entry(entry
);
2931 pstr
->oss
.proc_entry
= entry
;
2935 static void snd_pcm_oss_proc_done(struct snd_pcm
*pcm
)
2938 for (stream
= 0; stream
< 2; ++stream
) {
2939 struct snd_pcm_str
*pstr
= &pcm
->streams
[stream
];
2940 snd_info_free_entry(pstr
->oss
.proc_entry
);
2941 pstr
->oss
.proc_entry
= NULL
;
2942 snd_pcm_oss_proc_free_setup_list(pstr
);
2945 #else /* !CONFIG_SND_VERBOSE_PROCFS */
2946 #define snd_pcm_oss_proc_init(pcm)
2947 #define snd_pcm_oss_proc_done(pcm)
2948 #endif /* CONFIG_SND_VERBOSE_PROCFS */
2954 static const struct file_operations snd_pcm_oss_f_reg
=
2956 .owner
= THIS_MODULE
,
2957 .read
= snd_pcm_oss_read
,
2958 .write
= snd_pcm_oss_write
,
2959 .open
= snd_pcm_oss_open
,
2960 .release
= snd_pcm_oss_release
,
2961 .poll
= snd_pcm_oss_poll
,
2962 .unlocked_ioctl
= snd_pcm_oss_ioctl
,
2963 .compat_ioctl
= snd_pcm_oss_ioctl_compat
,
2964 .mmap
= snd_pcm_oss_mmap
,
2967 static void register_oss_dsp(struct snd_pcm
*pcm
, int index
)
2970 sprintf(name
, "dsp%i%i", pcm
->card
->number
, pcm
->device
);
2971 if (snd_register_oss_device(SNDRV_OSS_DEVICE_TYPE_PCM
,
2972 pcm
->card
, index
, &snd_pcm_oss_f_reg
,
2974 snd_printk(KERN_ERR
"unable to register OSS PCM device %i:%i\n",
2975 pcm
->card
->number
, pcm
->device
);
2979 static int snd_pcm_oss_register_minor(struct snd_pcm
*pcm
)
2982 if (dsp_map
[pcm
->card
->number
] == (int)pcm
->device
) {
2985 register_oss_dsp(pcm
, 0);
2986 duplex
= (pcm
->streams
[SNDRV_PCM_STREAM_PLAYBACK
].substream_count
> 0 &&
2987 pcm
->streams
[SNDRV_PCM_STREAM_CAPTURE
].substream_count
&&
2988 !(pcm
->info_flags
& SNDRV_PCM_INFO_HALF_DUPLEX
));
2989 sprintf(name
, "%s%s", pcm
->name
, duplex
? " (DUPLEX)" : "");
2990 #ifdef SNDRV_OSS_INFO_DEV_AUDIO
2991 snd_oss_info_register(SNDRV_OSS_INFO_DEV_AUDIO
,
2996 pcm
->oss
.reg_mask
|= 1;
2998 if (adsp_map
[pcm
->card
->number
] == (int)pcm
->device
) {
2999 register_oss_dsp(pcm
, 1);
3001 pcm
->oss
.reg_mask
|= 2;
3005 snd_pcm_oss_proc_init(pcm
);
3010 static int snd_pcm_oss_disconnect_minor(struct snd_pcm
*pcm
)
3013 if (pcm
->oss
.reg_mask
& 1) {
3014 pcm
->oss
.reg_mask
&= ~1;
3015 snd_unregister_oss_device(SNDRV_OSS_DEVICE_TYPE_PCM
,
3018 if (pcm
->oss
.reg_mask
& 2) {
3019 pcm
->oss
.reg_mask
&= ~2;
3020 snd_unregister_oss_device(SNDRV_OSS_DEVICE_TYPE_PCM
,
3023 if (dsp_map
[pcm
->card
->number
] == (int)pcm
->device
) {
3024 #ifdef SNDRV_OSS_INFO_DEV_AUDIO
3025 snd_oss_info_unregister(SNDRV_OSS_INFO_DEV_AUDIO
, pcm
->card
->number
);
3033 static int snd_pcm_oss_unregister_minor(struct snd_pcm
*pcm
)
3035 snd_pcm_oss_disconnect_minor(pcm
);
3036 snd_pcm_oss_proc_done(pcm
);
3040 static struct snd_pcm_notify snd_pcm_oss_notify
=
3042 .n_register
= snd_pcm_oss_register_minor
,
3043 .n_disconnect
= snd_pcm_oss_disconnect_minor
,
3044 .n_unregister
= snd_pcm_oss_unregister_minor
,
3047 static int __init
alsa_pcm_oss_init(void)
3052 /* check device map table */
3053 for (i
= 0; i
< SNDRV_CARDS
; i
++) {
3054 if (dsp_map
[i
] < 0 || dsp_map
[i
] >= SNDRV_PCM_DEVICES
) {
3055 snd_printk(KERN_ERR
"invalid dsp_map[%d] = %d\n",
3059 if (adsp_map
[i
] < 0 || adsp_map
[i
] >= SNDRV_PCM_DEVICES
) {
3060 snd_printk(KERN_ERR
"invalid adsp_map[%d] = %d\n",
3065 if ((err
= snd_pcm_notify(&snd_pcm_oss_notify
, 0)) < 0)
3070 static void __exit
alsa_pcm_oss_exit(void)
3072 snd_pcm_notify(&snd_pcm_oss_notify
, 1);
3075 module_init(alsa_pcm_oss_init
)
3076 module_exit(alsa_pcm_oss_exit
)