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/string.h>
35 #include <sound/core.h>
36 #include <sound/minors.h>
37 #include <sound/pcm.h>
38 #include <sound/pcm_params.h>
39 #include "pcm_plugin.h"
40 #include <sound/info.h>
41 #include <linux/soundcard.h>
42 #include <sound/initval.h>
44 #define OSS_ALSAEMULVER _SIOR ('M', 249, int)
46 static int dsp_map[SNDRV_CARDS];
47 static int adsp_map[SNDRV_CARDS] = {[0 ... (SNDRV_CARDS-1)] = 1};
48 static int nonblock_open = 1;
50 MODULE_AUTHOR("Jaroslav Kysela <perex@perex.cz>, Abramo Bagnara <abramo@alsa-project.org>");
51 MODULE_DESCRIPTION("PCM OSS emulation for ALSA.");
52 MODULE_LICENSE("GPL");
53 module_param_array(dsp_map, int, NULL, 0444);
54 MODULE_PARM_DESC(dsp_map, "PCM device number assigned to 1st OSS device.");
55 module_param_array(adsp_map, int, NULL, 0444);
56 MODULE_PARM_DESC(adsp_map, "PCM device number assigned to 2nd OSS device.");
57 module_param(nonblock_open, bool, 0644);
58 MODULE_PARM_DESC(nonblock_open, "Don't block opening busy PCM devices.");
59 MODULE_ALIAS_SNDRV_MINOR(SNDRV_MINOR_OSS_PCM);
60 MODULE_ALIAS_SNDRV_MINOR(SNDRV_MINOR_OSS_PCM1);
62 extern int snd_mixer_oss_ioctl_card(struct snd_card *card, unsigned int cmd, unsigned long arg);
63 static int snd_pcm_oss_get_rate(struct snd_pcm_oss_file *pcm_oss_file);
64 static int snd_pcm_oss_get_channels(struct snd_pcm_oss_file *pcm_oss_file);
65 static int snd_pcm_oss_get_format(struct snd_pcm_oss_file *pcm_oss_file);
67 static inline mm_segment_t snd_enter_user(void)
69 mm_segment_t fs = get_fs();
74 static inline void snd_leave_user(mm_segment_t fs)
80 * helper functions to process hw_params
82 static int snd_interval_refine_min(struct snd_interval *i, unsigned int min, int openmin)
89 } else if (i->min == min && !i->openmin && openmin) {
99 if (snd_interval_checkempty(i)) {
100 snd_interval_none(i);
106 static int snd_interval_refine_max(struct snd_interval *i, unsigned int max, int openmax)
111 i->openmax = openmax;
113 } else if (i->max == max && !i->openmax && openmax) {
123 if (snd_interval_checkempty(i)) {
124 snd_interval_none(i);
130 static int snd_interval_refine_set(struct snd_interval *i, unsigned int val)
132 struct snd_interval t;
135 t.openmin = t.openmax = 0;
137 return snd_interval_refine(i, &t);
141 * snd_pcm_hw_param_value_min
142 * @params: the hw_params instance
143 * @var: parameter to retrieve
144 * @dir: pointer to the direction (-1,0,1) or NULL
146 * Return the minimum value for field PAR.
149 snd_pcm_hw_param_value_min(const struct snd_pcm_hw_params *params,
150 snd_pcm_hw_param_t var, int *dir)
152 if (hw_is_mask(var)) {
155 return snd_mask_min(hw_param_mask_c(params, var));
157 if (hw_is_interval(var)) {
158 const struct snd_interval *i = hw_param_interval_c(params, var);
161 return snd_interval_min(i);
167 * snd_pcm_hw_param_value_max
168 * @params: the hw_params instance
169 * @var: parameter to retrieve
170 * @dir: pointer to the direction (-1,0,1) or NULL
172 * Return the maximum value for field PAR.
175 snd_pcm_hw_param_value_max(const struct snd_pcm_hw_params *params,
176 snd_pcm_hw_param_t var, int *dir)
178 if (hw_is_mask(var)) {
181 return snd_mask_max(hw_param_mask_c(params, var));
183 if (hw_is_interval(var)) {
184 const struct snd_interval *i = hw_param_interval_c(params, var);
186 *dir = - (int) i->openmax;
187 return snd_interval_max(i);
192 static int _snd_pcm_hw_param_mask(struct snd_pcm_hw_params *params,
193 snd_pcm_hw_param_t var,
194 const struct snd_mask *val)
197 changed = snd_mask_refine(hw_param_mask(params, var), val);
199 params->cmask |= 1 << var;
200 params->rmask |= 1 << var;
205 static int snd_pcm_hw_param_mask(struct snd_pcm_substream *pcm,
206 struct snd_pcm_hw_params *params,
207 snd_pcm_hw_param_t var,
208 const struct snd_mask *val)
210 int changed = _snd_pcm_hw_param_mask(params, var, val);
214 int err = snd_pcm_hw_refine(pcm, params);
221 static int _snd_pcm_hw_param_min(struct snd_pcm_hw_params *params,
222 snd_pcm_hw_param_t var, unsigned int val,
230 } else if (dir < 0) {
238 changed = snd_mask_refine_min(hw_param_mask(params, var),
240 else if (hw_is_interval(var))
241 changed = snd_interval_refine_min(hw_param_interval(params, var),
246 params->cmask |= 1 << var;
247 params->rmask |= 1 << var;
253 * snd_pcm_hw_param_min
255 * @params: the hw_params instance
256 * @var: parameter to retrieve
257 * @val: minimal value
258 * @dir: pointer to the direction (-1,0,1) or NULL
260 * Inside configuration space defined by PARAMS remove from PAR all
261 * values < VAL. Reduce configuration space accordingly.
262 * Return new minimum or -EINVAL if the configuration space is empty
264 static int snd_pcm_hw_param_min(struct snd_pcm_substream *pcm,
265 struct snd_pcm_hw_params *params,
266 snd_pcm_hw_param_t var, unsigned int val,
269 int changed = _snd_pcm_hw_param_min(params, var, val, dir ? *dir : 0);
273 int err = snd_pcm_hw_refine(pcm, params);
277 return snd_pcm_hw_param_value_min(params, var, dir);
280 static int _snd_pcm_hw_param_max(struct snd_pcm_hw_params *params,
281 snd_pcm_hw_param_t var, unsigned int val,
289 } else if (dir > 0) {
294 if (hw_is_mask(var)) {
295 if (val == 0 && open) {
296 snd_mask_none(hw_param_mask(params, var));
299 changed = snd_mask_refine_max(hw_param_mask(params, var),
301 } else if (hw_is_interval(var))
302 changed = snd_interval_refine_max(hw_param_interval(params, var),
307 params->cmask |= 1 << var;
308 params->rmask |= 1 << var;
314 * snd_pcm_hw_param_max
316 * @params: the hw_params instance
317 * @var: parameter to retrieve
318 * @val: maximal value
319 * @dir: pointer to the direction (-1,0,1) or NULL
321 * Inside configuration space defined by PARAMS remove from PAR all
322 * values >= VAL + 1. Reduce configuration space accordingly.
323 * Return new maximum or -EINVAL if the configuration space is empty
325 static int snd_pcm_hw_param_max(struct snd_pcm_substream *pcm,
326 struct snd_pcm_hw_params *params,
327 snd_pcm_hw_param_t var, unsigned int val,
330 int changed = _snd_pcm_hw_param_max(params, var, val, dir ? *dir : 0);
334 int err = snd_pcm_hw_refine(pcm, params);
338 return snd_pcm_hw_param_value_max(params, var, dir);
341 static int boundary_sub(int a, int adir,
345 adir = adir < 0 ? -1 : (adir > 0 ? 1 : 0);
346 bdir = bdir < 0 ? -1 : (bdir > 0 ? 1 : 0);
351 } else if (*cdir == 2) {
357 static int boundary_lt(unsigned int a, int adir,
358 unsigned int b, int bdir)
370 return a < b || (a == b && adir < bdir);
373 /* Return 1 if min is nearer to best than max */
374 static int boundary_nearer(int min, int mindir,
375 int best, int bestdir,
380 boundary_sub(best, bestdir, min, mindir, &dmin, &dmindir);
381 boundary_sub(max, maxdir, best, bestdir, &dmax, &dmaxdir);
382 return boundary_lt(dmin, dmindir, dmax, dmaxdir);
386 * snd_pcm_hw_param_near
388 * @params: the hw_params instance
389 * @var: parameter to retrieve
390 * @best: value to set
391 * @dir: pointer to the direction (-1,0,1) or NULL
393 * Inside configuration space defined by PARAMS set PAR to the available value
394 * nearest to VAL. Reduce configuration space accordingly.
395 * This function cannot be called for SNDRV_PCM_HW_PARAM_ACCESS,
396 * SNDRV_PCM_HW_PARAM_FORMAT, SNDRV_PCM_HW_PARAM_SUBFORMAT.
397 * Return the value found.
399 static int snd_pcm_hw_param_near(struct snd_pcm_substream *pcm,
400 struct snd_pcm_hw_params *params,
401 snd_pcm_hw_param_t var, unsigned int best,
404 struct snd_pcm_hw_params *save = NULL;
406 unsigned int saved_min;
410 int valdir = dir ? *dir : 0;
415 mindir = maxdir = valdir;
418 else if (maxdir == 0)
424 save = kmalloc(sizeof(*save), GFP_KERNEL);
429 min = snd_pcm_hw_param_min(pcm, params, var, min, &mindir);
431 struct snd_pcm_hw_params *params1;
434 if ((unsigned int)min == saved_min && mindir == valdir)
436 params1 = kmalloc(sizeof(*params1), GFP_KERNEL);
437 if (params1 == NULL) {
442 max = snd_pcm_hw_param_max(pcm, params1, var, max, &maxdir);
447 if (boundary_nearer(max, maxdir, best, valdir, min, mindir)) {
454 max = snd_pcm_hw_param_max(pcm, params, var, max, &maxdir);
455 snd_assert(max >= 0, return -EINVAL);
461 v = snd_pcm_hw_param_last(pcm, params, var, dir);
463 v = snd_pcm_hw_param_first(pcm, params, var, dir);
464 snd_assert(v >= 0, return -EINVAL);
468 static int _snd_pcm_hw_param_set(struct snd_pcm_hw_params *params,
469 snd_pcm_hw_param_t var, unsigned int val,
473 if (hw_is_mask(var)) {
474 struct snd_mask *m = hw_param_mask(params, var);
475 if (val == 0 && dir < 0) {
483 changed = snd_mask_refine_set(hw_param_mask(params, var), val);
485 } else if (hw_is_interval(var)) {
486 struct snd_interval *i = hw_param_interval(params, var);
487 if (val == 0 && dir < 0) {
489 snd_interval_none(i);
491 changed = snd_interval_refine_set(i, val);
493 struct snd_interval t;
505 changed = snd_interval_refine(i, &t);
510 params->cmask |= 1 << var;
511 params->rmask |= 1 << var;
517 * snd_pcm_hw_param_set
519 * @params: the hw_params instance
520 * @var: parameter to retrieve
522 * @dir: pointer to the direction (-1,0,1) or NULL
524 * Inside configuration space defined by PARAMS remove from PAR all
525 * values != VAL. Reduce configuration space accordingly.
526 * Return VAL or -EINVAL if the configuration space is empty
528 static int snd_pcm_hw_param_set(struct snd_pcm_substream *pcm,
529 struct snd_pcm_hw_params *params,
530 snd_pcm_hw_param_t var, unsigned int val,
533 int changed = _snd_pcm_hw_param_set(params, var, val, dir);
537 int err = snd_pcm_hw_refine(pcm, params);
541 return snd_pcm_hw_param_value(params, var, NULL);
544 static int _snd_pcm_hw_param_setinteger(struct snd_pcm_hw_params *params,
545 snd_pcm_hw_param_t var)
548 changed = snd_interval_setinteger(hw_param_interval(params, var));
550 params->cmask |= 1 << var;
551 params->rmask |= 1 << var;
560 #ifdef CONFIG_SND_PCM_OSS_PLUGINS
561 static int snd_pcm_oss_plugin_clear(struct snd_pcm_substream *substream)
563 struct snd_pcm_runtime *runtime = substream->runtime;
564 struct snd_pcm_plugin *plugin, *next;
566 plugin = runtime->oss.plugin_first;
569 snd_pcm_plugin_free(plugin);
572 runtime->oss.plugin_first = runtime->oss.plugin_last = NULL;
576 static int snd_pcm_plugin_insert(struct snd_pcm_plugin *plugin)
578 struct snd_pcm_runtime *runtime = plugin->plug->runtime;
579 plugin->next = runtime->oss.plugin_first;
581 if (runtime->oss.plugin_first) {
582 runtime->oss.plugin_first->prev = plugin;
583 runtime->oss.plugin_first = plugin;
585 runtime->oss.plugin_last =
586 runtime->oss.plugin_first = plugin;
591 int snd_pcm_plugin_append(struct snd_pcm_plugin *plugin)
593 struct snd_pcm_runtime *runtime = plugin->plug->runtime;
595 plugin->prev = runtime->oss.plugin_last;
596 if (runtime->oss.plugin_last) {
597 runtime->oss.plugin_last->next = plugin;
598 runtime->oss.plugin_last = plugin;
600 runtime->oss.plugin_last =
601 runtime->oss.plugin_first = plugin;
605 #endif /* CONFIG_SND_PCM_OSS_PLUGINS */
607 static long snd_pcm_oss_bytes(struct snd_pcm_substream *substream, long frames)
609 struct snd_pcm_runtime *runtime = substream->runtime;
610 long buffer_size = snd_pcm_lib_buffer_bytes(substream);
611 long bytes = frames_to_bytes(runtime, frames);
612 if (buffer_size == runtime->oss.buffer_bytes)
614 #if BITS_PER_LONG >= 64
615 return runtime->oss.buffer_bytes * bytes / buffer_size;
618 u64 bsize = (u64)runtime->oss.buffer_bytes * (u64)bytes;
620 div64_32(&bsize, buffer_size, &rem);
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 snd_assert(oss_period_size >= 16, return -EINVAL);
782 runtime->oss.period_bytes = oss_period_size;
783 runtime->oss.period_frames = 1;
784 runtime->oss.periods = oss_periods;
788 static int choose_rate(struct snd_pcm_substream *substream,
789 struct snd_pcm_hw_params *params, unsigned int best_rate)
791 struct snd_interval *it;
792 struct snd_pcm_hw_params *save;
793 unsigned int rate, prev;
795 save = kmalloc(sizeof(*save), GFP_KERNEL);
799 it = hw_param_interval(save, SNDRV_PCM_HW_PARAM_RATE);
801 /* try multiples of the best rate */
804 if (it->max < rate || (it->max == rate && it->openmax))
806 if (it->min < rate || (it->min == rate && !it->openmin)) {
808 ret = snd_pcm_hw_param_set(substream, params,
809 SNDRV_PCM_HW_PARAM_RATE,
811 if (ret == (int)rate) {
823 /* not found, use the nearest rate */
825 return snd_pcm_hw_param_near(substream, params, SNDRV_PCM_HW_PARAM_RATE, best_rate, NULL);
828 static int snd_pcm_oss_change_params(struct snd_pcm_substream *substream)
830 struct snd_pcm_runtime *runtime = substream->runtime;
831 struct snd_pcm_hw_params *params, *sparams;
832 struct snd_pcm_sw_params *sw_params;
833 ssize_t oss_buffer_size, oss_period_size;
834 size_t oss_frame_size;
837 int format, sformat, n;
838 struct snd_mask sformat_mask;
839 struct snd_mask mask;
841 if (mutex_lock_interruptible(&runtime->oss.params_lock))
843 sw_params = kmalloc(sizeof(*sw_params), GFP_KERNEL);
844 params = kmalloc(sizeof(*params), GFP_KERNEL);
845 sparams = kmalloc(sizeof(*sparams), GFP_KERNEL);
846 if (!sw_params || !params || !sparams) {
847 snd_printd("No memory\n");
852 if (atomic_read(&substream->mmap_count))
855 direct = substream->oss.setup.direct;
857 _snd_pcm_hw_params_any(sparams);
858 _snd_pcm_hw_param_setinteger(sparams, SNDRV_PCM_HW_PARAM_PERIODS);
859 _snd_pcm_hw_param_min(sparams, SNDRV_PCM_HW_PARAM_PERIODS, 2, 0);
860 snd_mask_none(&mask);
861 if (atomic_read(&substream->mmap_count))
862 snd_mask_set(&mask, SNDRV_PCM_ACCESS_MMAP_INTERLEAVED);
864 snd_mask_set(&mask, SNDRV_PCM_ACCESS_RW_INTERLEAVED);
866 snd_mask_set(&mask, SNDRV_PCM_ACCESS_RW_NONINTERLEAVED);
868 err = snd_pcm_hw_param_mask(substream, sparams, SNDRV_PCM_HW_PARAM_ACCESS, &mask);
870 snd_printd("No usable accesses\n");
874 choose_rate(substream, sparams, runtime->oss.rate);
875 snd_pcm_hw_param_near(substream, sparams, SNDRV_PCM_HW_PARAM_CHANNELS, runtime->oss.channels, NULL);
877 format = snd_pcm_oss_format_from(runtime->oss.format);
879 sformat_mask = *hw_param_mask(sparams, SNDRV_PCM_HW_PARAM_FORMAT);
883 sformat = snd_pcm_plug_slave_format(format, &sformat_mask);
885 if (sformat < 0 || !snd_mask_test(&sformat_mask, sformat)) {
886 for (sformat = 0; sformat <= SNDRV_PCM_FORMAT_LAST; sformat++) {
887 if (snd_mask_test(&sformat_mask, sformat) &&
888 snd_pcm_oss_format_to(sformat) >= 0)
891 if (sformat > SNDRV_PCM_FORMAT_LAST) {
892 snd_printd("Cannot find a format!!!\n");
897 err = _snd_pcm_hw_param_set(sparams, SNDRV_PCM_HW_PARAM_FORMAT, sformat, 0);
898 snd_assert(err >= 0, goto failure);
901 memcpy(params, sparams, sizeof(*params));
903 _snd_pcm_hw_params_any(params);
904 _snd_pcm_hw_param_set(params, SNDRV_PCM_HW_PARAM_ACCESS,
905 SNDRV_PCM_ACCESS_RW_INTERLEAVED, 0);
906 _snd_pcm_hw_param_set(params, SNDRV_PCM_HW_PARAM_FORMAT,
907 snd_pcm_oss_format_from(runtime->oss.format), 0);
908 _snd_pcm_hw_param_set(params, SNDRV_PCM_HW_PARAM_CHANNELS,
909 runtime->oss.channels, 0);
910 _snd_pcm_hw_param_set(params, SNDRV_PCM_HW_PARAM_RATE,
911 runtime->oss.rate, 0);
912 pdprintf("client: access = %i, format = %i, channels = %i, rate = %i\n",
913 params_access(params), params_format(params),
914 params_channels(params), params_rate(params));
916 pdprintf("slave: access = %i, format = %i, channels = %i, rate = %i\n",
917 params_access(sparams), params_format(sparams),
918 params_channels(sparams), params_rate(sparams));
920 oss_frame_size = snd_pcm_format_physical_width(params_format(params)) *
921 params_channels(params) / 8;
923 #ifdef CONFIG_SND_PCM_OSS_PLUGINS
924 snd_pcm_oss_plugin_clear(substream);
926 /* add necessary plugins */
927 snd_pcm_oss_plugin_clear(substream);
928 if ((err = snd_pcm_plug_format_plugins(substream,
931 snd_printd("snd_pcm_plug_format_plugins failed: %i\n", err);
932 snd_pcm_oss_plugin_clear(substream);
935 if (runtime->oss.plugin_first) {
936 struct snd_pcm_plugin *plugin;
937 if ((err = snd_pcm_plugin_build_io(substream, sparams, &plugin)) < 0) {
938 snd_printd("snd_pcm_plugin_build_io failed: %i\n", err);
939 snd_pcm_oss_plugin_clear(substream);
942 if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK) {
943 err = snd_pcm_plugin_append(plugin);
945 err = snd_pcm_plugin_insert(plugin);
948 snd_pcm_oss_plugin_clear(substream);
955 err = snd_pcm_oss_period_size(substream, params, sparams);
959 n = snd_pcm_plug_slave_size(substream, runtime->oss.period_bytes / oss_frame_size);
960 err = snd_pcm_hw_param_near(substream, sparams, SNDRV_PCM_HW_PARAM_PERIOD_SIZE, n, NULL);
961 snd_assert(err >= 0, goto failure);
963 err = snd_pcm_hw_param_near(substream, sparams, SNDRV_PCM_HW_PARAM_PERIODS,
964 runtime->oss.periods, NULL);
965 snd_assert(err >= 0, goto failure);
967 snd_pcm_kernel_ioctl(substream, SNDRV_PCM_IOCTL_DROP, NULL);
969 if ((err = snd_pcm_kernel_ioctl(substream, SNDRV_PCM_IOCTL_HW_PARAMS, sparams)) < 0) {
970 snd_printd("HW_PARAMS failed: %i\n", err);
974 memset(sw_params, 0, sizeof(*sw_params));
975 if (runtime->oss.trigger) {
976 sw_params->start_threshold = 1;
978 sw_params->start_threshold = runtime->boundary;
980 if (atomic_read(&substream->mmap_count) ||
981 substream->stream == SNDRV_PCM_STREAM_CAPTURE)
982 sw_params->stop_threshold = runtime->boundary;
984 sw_params->stop_threshold = runtime->buffer_size;
985 sw_params->tstamp_mode = SNDRV_PCM_TSTAMP_NONE;
986 sw_params->period_step = 1;
987 sw_params->avail_min = substream->stream == SNDRV_PCM_STREAM_PLAYBACK ?
988 1 : runtime->period_size;
989 if (atomic_read(&substream->mmap_count) ||
990 substream->oss.setup.nosilence) {
991 sw_params->silence_threshold = 0;
992 sw_params->silence_size = 0;
994 snd_pcm_uframes_t frames;
995 frames = runtime->period_size + 16;
996 if (frames > runtime->buffer_size)
997 frames = runtime->buffer_size;
998 sw_params->silence_threshold = frames;
999 sw_params->silence_size = frames;
1002 if ((err = snd_pcm_kernel_ioctl(substream, SNDRV_PCM_IOCTL_SW_PARAMS, sw_params)) < 0) {
1003 snd_printd("SW_PARAMS failed: %i\n", err);
1007 runtime->oss.periods = params_periods(sparams);
1008 oss_period_size = snd_pcm_plug_client_size(substream, params_period_size(sparams));
1009 snd_assert(oss_period_size >= 0, err = -EINVAL; goto failure);
1010 #ifdef CONFIG_SND_PCM_OSS_PLUGINS
1011 if (runtime->oss.plugin_first) {
1012 err = snd_pcm_plug_alloc(substream, oss_period_size);
1017 oss_period_size *= oss_frame_size;
1019 oss_buffer_size = oss_period_size * runtime->oss.periods;
1020 snd_assert(oss_buffer_size >= 0, err = -EINVAL; goto failure);
1022 runtime->oss.period_bytes = oss_period_size;
1023 runtime->oss.buffer_bytes = oss_buffer_size;
1025 pdprintf("oss: period bytes = %i, buffer bytes = %i\n",
1026 runtime->oss.period_bytes,
1027 runtime->oss.buffer_bytes);
1028 pdprintf("slave: period_size = %i, buffer_size = %i\n",
1029 params_period_size(sparams),
1030 params_buffer_size(sparams));
1032 runtime->oss.format = snd_pcm_oss_format_to(params_format(params));
1033 runtime->oss.channels = params_channels(params);
1034 runtime->oss.rate = params_rate(params);
1036 runtime->oss.params = 0;
1037 runtime->oss.prepare = 1;
1038 vfree(runtime->oss.buffer);
1039 runtime->oss.buffer = vmalloc(runtime->oss.period_bytes);
1040 runtime->oss.buffer_used = 0;
1041 if (runtime->dma_area)
1042 snd_pcm_format_set_silence(runtime->format, runtime->dma_area, bytes_to_samples(runtime, runtime->dma_bytes));
1044 runtime->oss.period_frames = snd_pcm_alsa_frames(substream, oss_period_size);
1051 mutex_unlock(&runtime->oss.params_lock);
1055 static int snd_pcm_oss_get_active_substream(struct snd_pcm_oss_file *pcm_oss_file, struct snd_pcm_substream **r_substream)
1058 struct snd_pcm_substream *asubstream = NULL, *substream;
1060 for (idx = 0; idx < 2; idx++) {
1061 substream = pcm_oss_file->streams[idx];
1062 if (substream == NULL)
1064 if (asubstream == NULL)
1065 asubstream = substream;
1066 if (substream->runtime->oss.params) {
1067 err = snd_pcm_oss_change_params(substream);
1072 snd_assert(asubstream != NULL, return -EIO);
1074 *r_substream = asubstream;
1078 static int snd_pcm_oss_prepare(struct snd_pcm_substream *substream)
1081 struct snd_pcm_runtime *runtime = substream->runtime;
1083 err = snd_pcm_kernel_ioctl(substream, SNDRV_PCM_IOCTL_PREPARE, NULL);
1085 snd_printd("snd_pcm_oss_prepare: SNDRV_PCM_IOCTL_PREPARE failed\n");
1088 runtime->oss.prepare = 0;
1089 runtime->oss.prev_hw_ptr_interrupt = 0;
1090 runtime->oss.period_ptr = 0;
1091 runtime->oss.buffer_used = 0;
1096 static int snd_pcm_oss_make_ready(struct snd_pcm_substream *substream)
1098 struct snd_pcm_runtime *runtime;
1101 if (substream == NULL)
1103 runtime = substream->runtime;
1104 if (runtime->oss.params) {
1105 err = snd_pcm_oss_change_params(substream);
1109 if (runtime->oss.prepare) {
1110 err = snd_pcm_oss_prepare(substream);
1117 static int snd_pcm_oss_capture_position_fixup(struct snd_pcm_substream *substream, snd_pcm_sframes_t *delay)
1119 struct snd_pcm_runtime *runtime;
1120 snd_pcm_uframes_t frames;
1124 err = snd_pcm_kernel_ioctl(substream, SNDRV_PCM_IOCTL_DELAY, delay);
1127 runtime = substream->runtime;
1128 if (*delay <= (snd_pcm_sframes_t)runtime->buffer_size)
1130 /* in case of overrun, skip whole periods like OSS/Linux driver does */
1131 /* until avail(delay) <= buffer_size */
1132 frames = (*delay - runtime->buffer_size) + runtime->period_size - 1;
1133 frames /= runtime->period_size;
1134 frames *= runtime->period_size;
1135 err = snd_pcm_kernel_ioctl(substream, SNDRV_PCM_IOCTL_FORWARD, &frames);
1142 snd_pcm_sframes_t snd_pcm_oss_write3(struct snd_pcm_substream *substream, const char *ptr, snd_pcm_uframes_t frames, int in_kernel)
1144 struct snd_pcm_runtime *runtime = substream->runtime;
1147 if (runtime->status->state == SNDRV_PCM_STATE_XRUN ||
1148 runtime->status->state == SNDRV_PCM_STATE_SUSPENDED) {
1150 if (runtime->status->state == SNDRV_PCM_STATE_XRUN)
1151 printk("pcm_oss: write: recovering from XRUN\n");
1153 printk("pcm_oss: write: recovering from SUSPEND\n");
1155 ret = snd_pcm_oss_prepare(substream);
1161 fs = snd_enter_user();
1162 ret = snd_pcm_lib_write(substream, (void __user *)ptr, frames);
1165 ret = snd_pcm_lib_write(substream, (void __user *)ptr, frames);
1167 if (ret != -EPIPE && ret != -ESTRPIPE)
1169 /* test, if we can't store new data, because the stream */
1170 /* has not been started */
1171 if (runtime->status->state == SNDRV_PCM_STATE_PREPARED)
1177 snd_pcm_sframes_t snd_pcm_oss_read3(struct snd_pcm_substream *substream, char *ptr, snd_pcm_uframes_t frames, int in_kernel)
1179 struct snd_pcm_runtime *runtime = substream->runtime;
1180 snd_pcm_sframes_t delay;
1183 if (runtime->status->state == SNDRV_PCM_STATE_XRUN ||
1184 runtime->status->state == SNDRV_PCM_STATE_SUSPENDED) {
1186 if (runtime->status->state == SNDRV_PCM_STATE_XRUN)
1187 printk("pcm_oss: read: recovering from XRUN\n");
1189 printk("pcm_oss: read: recovering from SUSPEND\n");
1191 ret = snd_pcm_kernel_ioctl(substream, SNDRV_PCM_IOCTL_DRAIN, NULL);
1194 } else if (runtime->status->state == SNDRV_PCM_STATE_SETUP) {
1195 ret = snd_pcm_oss_prepare(substream);
1199 ret = snd_pcm_oss_capture_position_fixup(substream, &delay);
1204 fs = snd_enter_user();
1205 ret = snd_pcm_lib_read(substream, (void __user *)ptr, frames);
1208 ret = snd_pcm_lib_read(substream, (void __user *)ptr, frames);
1210 if (ret == -EPIPE) {
1211 if (runtime->status->state == SNDRV_PCM_STATE_DRAINING) {
1212 ret = snd_pcm_kernel_ioctl(substream, SNDRV_PCM_IOCTL_DROP, NULL);
1218 if (ret != -ESTRPIPE)
1224 snd_pcm_sframes_t snd_pcm_oss_writev3(struct snd_pcm_substream *substream, void **bufs, snd_pcm_uframes_t frames, int in_kernel)
1226 struct snd_pcm_runtime *runtime = substream->runtime;
1229 if (runtime->status->state == SNDRV_PCM_STATE_XRUN ||
1230 runtime->status->state == SNDRV_PCM_STATE_SUSPENDED) {
1232 if (runtime->status->state == SNDRV_PCM_STATE_XRUN)
1233 printk("pcm_oss: writev: recovering from XRUN\n");
1235 printk("pcm_oss: writev: recovering from SUSPEND\n");
1237 ret = snd_pcm_oss_prepare(substream);
1243 fs = snd_enter_user();
1244 ret = snd_pcm_lib_writev(substream, (void __user **)bufs, frames);
1247 ret = snd_pcm_lib_writev(substream, (void __user **)bufs, frames);
1249 if (ret != -EPIPE && ret != -ESTRPIPE)
1252 /* test, if we can't store new data, because the stream */
1253 /* has not been started */
1254 if (runtime->status->state == SNDRV_PCM_STATE_PREPARED)
1260 snd_pcm_sframes_t snd_pcm_oss_readv3(struct snd_pcm_substream *substream, void **bufs, snd_pcm_uframes_t frames, int in_kernel)
1262 struct snd_pcm_runtime *runtime = substream->runtime;
1265 if (runtime->status->state == SNDRV_PCM_STATE_XRUN ||
1266 runtime->status->state == SNDRV_PCM_STATE_SUSPENDED) {
1268 if (runtime->status->state == SNDRV_PCM_STATE_XRUN)
1269 printk("pcm_oss: readv: recovering from XRUN\n");
1271 printk("pcm_oss: readv: recovering from SUSPEND\n");
1273 ret = snd_pcm_kernel_ioctl(substream, SNDRV_PCM_IOCTL_DRAIN, NULL);
1276 } else if (runtime->status->state == SNDRV_PCM_STATE_SETUP) {
1277 ret = snd_pcm_oss_prepare(substream);
1283 fs = snd_enter_user();
1284 ret = snd_pcm_lib_readv(substream, (void __user **)bufs, frames);
1287 ret = snd_pcm_lib_readv(substream, (void __user **)bufs, frames);
1289 if (ret != -EPIPE && ret != -ESTRPIPE)
1295 static ssize_t snd_pcm_oss_write2(struct snd_pcm_substream *substream, const char *buf, size_t bytes, int in_kernel)
1297 struct snd_pcm_runtime *runtime = substream->runtime;
1298 snd_pcm_sframes_t frames, frames1;
1299 #ifdef CONFIG_SND_PCM_OSS_PLUGINS
1300 if (runtime->oss.plugin_first) {
1301 struct snd_pcm_plugin_channel *channels;
1302 size_t oss_frame_bytes = (runtime->oss.plugin_first->src_width * runtime->oss.plugin_first->src_format.channels) / 8;
1304 if (copy_from_user(runtime->oss.buffer, (const char __user *)buf, bytes))
1306 buf = runtime->oss.buffer;
1308 frames = bytes / oss_frame_bytes;
1309 frames1 = snd_pcm_plug_client_channels_buf(substream, (char *)buf, frames, &channels);
1312 frames1 = snd_pcm_plug_write_transfer(substream, channels, frames1);
1315 bytes = frames1 * oss_frame_bytes;
1319 frames = bytes_to_frames(runtime, bytes);
1320 frames1 = snd_pcm_oss_write3(substream, buf, frames, in_kernel);
1323 bytes = frames_to_bytes(runtime, frames1);
1328 static ssize_t snd_pcm_oss_write1(struct snd_pcm_substream *substream, const char __user *buf, size_t bytes)
1332 struct snd_pcm_runtime *runtime = substream->runtime;
1334 if (atomic_read(&substream->mmap_count))
1337 if ((tmp = snd_pcm_oss_make_ready(substream)) < 0)
1339 mutex_lock(&runtime->oss.params_lock);
1341 if (bytes < runtime->oss.period_bytes || runtime->oss.buffer_used > 0) {
1343 if (tmp + runtime->oss.buffer_used > runtime->oss.period_bytes)
1344 tmp = runtime->oss.period_bytes - runtime->oss.buffer_used;
1346 if (copy_from_user(runtime->oss.buffer + runtime->oss.buffer_used, buf, tmp)) {
1351 runtime->oss.buffer_used += tmp;
1355 if (substream->oss.setup.partialfrag ||
1356 runtime->oss.buffer_used == runtime->oss.period_bytes) {
1357 tmp = snd_pcm_oss_write2(substream, runtime->oss.buffer + runtime->oss.period_ptr,
1358 runtime->oss.buffer_used - runtime->oss.period_ptr, 1);
1361 runtime->oss.bytes += tmp;
1362 runtime->oss.period_ptr += tmp;
1363 runtime->oss.period_ptr %= runtime->oss.period_bytes;
1364 if (runtime->oss.period_ptr == 0 ||
1365 runtime->oss.period_ptr == runtime->oss.buffer_used)
1366 runtime->oss.buffer_used = 0;
1367 else if ((substream->f_flags & O_NONBLOCK) != 0) {
1373 tmp = snd_pcm_oss_write2(substream,
1374 (const char __force *)buf,
1375 runtime->oss.period_bytes, 0);
1378 runtime->oss.bytes += tmp;
1382 if ((substream->f_flags & O_NONBLOCK) != 0 &&
1383 tmp != runtime->oss.period_bytes)
1387 mutex_unlock(&runtime->oss.params_lock);
1391 mutex_unlock(&runtime->oss.params_lock);
1392 return xfer > 0 ? (snd_pcm_sframes_t)xfer : tmp;
1395 static ssize_t snd_pcm_oss_read2(struct snd_pcm_substream *substream, char *buf, size_t bytes, int in_kernel)
1397 struct snd_pcm_runtime *runtime = substream->runtime;
1398 snd_pcm_sframes_t frames, frames1;
1399 #ifdef CONFIG_SND_PCM_OSS_PLUGINS
1400 char __user *final_dst = (char __user *)buf;
1401 if (runtime->oss.plugin_first) {
1402 struct snd_pcm_plugin_channel *channels;
1403 size_t oss_frame_bytes = (runtime->oss.plugin_last->dst_width * runtime->oss.plugin_last->dst_format.channels) / 8;
1405 buf = runtime->oss.buffer;
1406 frames = bytes / oss_frame_bytes;
1407 frames1 = snd_pcm_plug_client_channels_buf(substream, buf, frames, &channels);
1410 frames1 = snd_pcm_plug_read_transfer(substream, channels, frames1);
1413 bytes = frames1 * oss_frame_bytes;
1414 if (!in_kernel && copy_to_user(final_dst, buf, bytes))
1419 frames = bytes_to_frames(runtime, bytes);
1420 frames1 = snd_pcm_oss_read3(substream, buf, frames, in_kernel);
1423 bytes = frames_to_bytes(runtime, frames1);
1428 static ssize_t snd_pcm_oss_read1(struct snd_pcm_substream *substream, char __user *buf, size_t bytes)
1432 struct snd_pcm_runtime *runtime = substream->runtime;
1434 if (atomic_read(&substream->mmap_count))
1437 if ((tmp = snd_pcm_oss_make_ready(substream)) < 0)
1439 mutex_lock(&runtime->oss.params_lock);
1441 if (bytes < runtime->oss.period_bytes || runtime->oss.buffer_used > 0) {
1442 if (runtime->oss.buffer_used == 0) {
1443 tmp = snd_pcm_oss_read2(substream, runtime->oss.buffer, runtime->oss.period_bytes, 1);
1446 runtime->oss.bytes += tmp;
1447 runtime->oss.period_ptr = tmp;
1448 runtime->oss.buffer_used = tmp;
1451 if ((size_t) tmp > runtime->oss.buffer_used)
1452 tmp = runtime->oss.buffer_used;
1453 if (copy_to_user(buf, runtime->oss.buffer + (runtime->oss.period_ptr - runtime->oss.buffer_used), tmp)) {
1460 runtime->oss.buffer_used -= tmp;
1462 tmp = snd_pcm_oss_read2(substream, (char __force *)buf,
1463 runtime->oss.period_bytes, 0);
1466 runtime->oss.bytes += tmp;
1472 mutex_unlock(&runtime->oss.params_lock);
1476 mutex_unlock(&runtime->oss.params_lock);
1477 return xfer > 0 ? (snd_pcm_sframes_t)xfer : tmp;
1480 static int snd_pcm_oss_reset(struct snd_pcm_oss_file *pcm_oss_file)
1482 struct snd_pcm_substream *substream;
1484 substream = pcm_oss_file->streams[SNDRV_PCM_STREAM_PLAYBACK];
1485 if (substream != NULL) {
1486 snd_pcm_kernel_ioctl(substream, SNDRV_PCM_IOCTL_DROP, NULL);
1487 substream->runtime->oss.prepare = 1;
1489 substream = pcm_oss_file->streams[SNDRV_PCM_STREAM_CAPTURE];
1490 if (substream != NULL) {
1491 snd_pcm_kernel_ioctl(substream, SNDRV_PCM_IOCTL_DROP, NULL);
1492 substream->runtime->oss.prepare = 1;
1497 static int snd_pcm_oss_post(struct snd_pcm_oss_file *pcm_oss_file)
1499 struct snd_pcm_substream *substream;
1502 substream = pcm_oss_file->streams[SNDRV_PCM_STREAM_PLAYBACK];
1503 if (substream != NULL) {
1504 if ((err = snd_pcm_oss_make_ready(substream)) < 0)
1506 snd_pcm_kernel_ioctl(substream, SNDRV_PCM_IOCTL_START, NULL);
1508 /* note: all errors from the start action are ignored */
1509 /* OSS apps do not know, how to handle them */
1513 static int snd_pcm_oss_sync1(struct snd_pcm_substream *substream, size_t size)
1515 struct snd_pcm_runtime *runtime;
1520 runtime = substream->runtime;
1521 init_waitqueue_entry(&wait, current);
1522 add_wait_queue(&runtime->sleep, &wait);
1524 printk("sync1: size = %li\n", size);
1527 result = snd_pcm_oss_write2(substream, runtime->oss.buffer, size, 1);
1529 runtime->oss.buffer_used = 0;
1533 if (result != 0 && result != -EAGAIN)
1536 set_current_state(TASK_INTERRUPTIBLE);
1537 snd_pcm_stream_lock_irq(substream);
1538 res = runtime->status->state;
1539 snd_pcm_stream_unlock_irq(substream);
1540 if (res != SNDRV_PCM_STATE_RUNNING) {
1541 set_current_state(TASK_RUNNING);
1544 res = schedule_timeout(10 * HZ);
1545 if (signal_pending(current)) {
1546 result = -ERESTARTSYS;
1550 snd_printk(KERN_ERR "OSS sync error - DMA timeout\n");
1555 remove_wait_queue(&runtime->sleep, &wait);
1559 static int snd_pcm_oss_sync(struct snd_pcm_oss_file *pcm_oss_file)
1562 unsigned int saved_f_flags;
1563 struct snd_pcm_substream *substream;
1564 struct snd_pcm_runtime *runtime;
1565 snd_pcm_format_t format;
1566 unsigned long width;
1569 substream = pcm_oss_file->streams[SNDRV_PCM_STREAM_PLAYBACK];
1570 if (substream != NULL) {
1571 runtime = substream->runtime;
1572 if (atomic_read(&substream->mmap_count))
1574 if ((err = snd_pcm_oss_make_ready(substream)) < 0)
1576 format = snd_pcm_oss_format_from(runtime->oss.format);
1577 width = snd_pcm_format_physical_width(format);
1578 mutex_lock(&runtime->oss.params_lock);
1579 if (runtime->oss.buffer_used > 0) {
1581 printk("sync: buffer_used\n");
1583 size = (8 * (runtime->oss.period_bytes - runtime->oss.buffer_used) + 7) / width;
1584 snd_pcm_format_set_silence(format,
1585 runtime->oss.buffer + runtime->oss.buffer_used,
1587 err = snd_pcm_oss_sync1(substream, runtime->oss.period_bytes);
1589 mutex_unlock(&runtime->oss.params_lock);
1592 } else if (runtime->oss.period_ptr > 0) {
1594 printk("sync: period_ptr\n");
1596 size = runtime->oss.period_bytes - runtime->oss.period_ptr;
1597 snd_pcm_format_set_silence(format,
1598 runtime->oss.buffer,
1600 err = snd_pcm_oss_sync1(substream, size);
1602 mutex_unlock(&runtime->oss.params_lock);
1607 * The ALSA's period might be a bit large than OSS one.
1608 * Fill the remain portion of ALSA period with zeros.
1610 size = runtime->control->appl_ptr % runtime->period_size;
1612 size = runtime->period_size - size;
1613 if (runtime->access == SNDRV_PCM_ACCESS_RW_INTERLEAVED) {
1614 size = (runtime->frame_bits * size) / 8;
1617 size_t size1 = size < runtime->oss.period_bytes ? size : runtime->oss.period_bytes;
1620 size1 /= runtime->sample_bits;
1621 snd_pcm_format_set_silence(runtime->format,
1622 runtime->oss.buffer,
1624 size1 /= runtime->channels; /* frames */
1625 fs = snd_enter_user();
1626 snd_pcm_lib_write(substream, (void __user *)runtime->oss.buffer, size1);
1629 } else if (runtime->access == SNDRV_PCM_ACCESS_RW_NONINTERLEAVED) {
1630 void __user *buffers[runtime->channels];
1631 memset(buffers, 0, runtime->channels * sizeof(void *));
1632 snd_pcm_lib_writev(substream, buffers, size);
1635 mutex_unlock(&runtime->oss.params_lock);
1637 * finish sync: drain the buffer
1640 saved_f_flags = substream->f_flags;
1641 substream->f_flags &= ~O_NONBLOCK;
1642 err = snd_pcm_kernel_ioctl(substream, SNDRV_PCM_IOCTL_DRAIN, NULL);
1643 substream->f_flags = saved_f_flags;
1646 runtime->oss.prepare = 1;
1649 substream = pcm_oss_file->streams[SNDRV_PCM_STREAM_CAPTURE];
1650 if (substream != NULL) {
1651 if ((err = snd_pcm_oss_make_ready(substream)) < 0)
1653 runtime = substream->runtime;
1654 err = snd_pcm_kernel_ioctl(substream, SNDRV_PCM_IOCTL_DROP, NULL);
1657 runtime->oss.buffer_used = 0;
1658 runtime->oss.prepare = 1;
1663 static int snd_pcm_oss_set_rate(struct snd_pcm_oss_file *pcm_oss_file, int rate)
1667 for (idx = 1; idx >= 0; --idx) {
1668 struct snd_pcm_substream *substream = pcm_oss_file->streams[idx];
1669 struct snd_pcm_runtime *runtime;
1670 if (substream == NULL)
1672 runtime = substream->runtime;
1675 else if (rate > 192000)
1677 if (runtime->oss.rate != rate) {
1678 runtime->oss.params = 1;
1679 runtime->oss.rate = rate;
1682 return snd_pcm_oss_get_rate(pcm_oss_file);
1685 static int snd_pcm_oss_get_rate(struct snd_pcm_oss_file *pcm_oss_file)
1687 struct snd_pcm_substream *substream;
1690 if ((err = snd_pcm_oss_get_active_substream(pcm_oss_file, &substream)) < 0)
1692 return substream->runtime->oss.rate;
1695 static int snd_pcm_oss_set_channels(struct snd_pcm_oss_file *pcm_oss_file, unsigned int channels)
1702 for (idx = 1; idx >= 0; --idx) {
1703 struct snd_pcm_substream *substream = pcm_oss_file->streams[idx];
1704 struct snd_pcm_runtime *runtime;
1705 if (substream == NULL)
1707 runtime = substream->runtime;
1708 if (runtime->oss.channels != channels) {
1709 runtime->oss.params = 1;
1710 runtime->oss.channels = channels;
1713 return snd_pcm_oss_get_channels(pcm_oss_file);
1716 static int snd_pcm_oss_get_channels(struct snd_pcm_oss_file *pcm_oss_file)
1718 struct snd_pcm_substream *substream;
1721 if ((err = snd_pcm_oss_get_active_substream(pcm_oss_file, &substream)) < 0)
1723 return substream->runtime->oss.channels;
1726 static int snd_pcm_oss_get_block_size(struct snd_pcm_oss_file *pcm_oss_file)
1728 struct snd_pcm_substream *substream;
1731 if ((err = snd_pcm_oss_get_active_substream(pcm_oss_file, &substream)) < 0)
1733 return substream->runtime->oss.period_bytes;
1736 static int snd_pcm_oss_get_formats(struct snd_pcm_oss_file *pcm_oss_file)
1738 struct snd_pcm_substream *substream;
1741 struct snd_pcm_hw_params *params;
1742 unsigned int formats = 0;
1743 struct snd_mask format_mask;
1746 if ((err = snd_pcm_oss_get_active_substream(pcm_oss_file, &substream)) < 0)
1748 if (atomic_read(&substream->mmap_count))
1751 direct = substream->oss.setup.direct;
1753 return AFMT_MU_LAW | AFMT_U8 |
1754 AFMT_S16_LE | AFMT_S16_BE |
1755 AFMT_S8 | AFMT_U16_LE |
1757 AFMT_S32_LE | AFMT_S32_BE |
1758 AFMT_S24_LE | AFMT_S24_LE |
1760 params = kmalloc(sizeof(*params), GFP_KERNEL);
1763 _snd_pcm_hw_params_any(params);
1764 err = snd_pcm_hw_refine(substream, params);
1765 format_mask = *hw_param_mask(params, SNDRV_PCM_HW_PARAM_FORMAT);
1767 snd_assert(err >= 0, return err);
1768 for (fmt = 0; fmt < 32; ++fmt) {
1769 if (snd_mask_test(&format_mask, fmt)) {
1770 int f = snd_pcm_oss_format_to(fmt);
1778 static int snd_pcm_oss_set_format(struct snd_pcm_oss_file *pcm_oss_file, int format)
1782 if (format != AFMT_QUERY) {
1783 formats = snd_pcm_oss_get_formats(pcm_oss_file);
1786 if (!(formats & format))
1788 for (idx = 1; idx >= 0; --idx) {
1789 struct snd_pcm_substream *substream = pcm_oss_file->streams[idx];
1790 struct snd_pcm_runtime *runtime;
1791 if (substream == NULL)
1793 runtime = substream->runtime;
1794 if (runtime->oss.format != format) {
1795 runtime->oss.params = 1;
1796 runtime->oss.format = format;
1800 return snd_pcm_oss_get_format(pcm_oss_file);
1803 static int snd_pcm_oss_get_format(struct snd_pcm_oss_file *pcm_oss_file)
1805 struct snd_pcm_substream *substream;
1808 if ((err = snd_pcm_oss_get_active_substream(pcm_oss_file, &substream)) < 0)
1810 return substream->runtime->oss.format;
1813 static int snd_pcm_oss_set_subdivide1(struct snd_pcm_substream *substream, int subdivide)
1815 struct snd_pcm_runtime *runtime;
1817 if (substream == NULL)
1819 runtime = substream->runtime;
1820 if (subdivide == 0) {
1821 subdivide = runtime->oss.subdivision;
1826 if (runtime->oss.subdivision || runtime->oss.fragshift)
1828 if (subdivide != 1 && subdivide != 2 && subdivide != 4 &&
1829 subdivide != 8 && subdivide != 16)
1831 runtime->oss.subdivision = subdivide;
1832 runtime->oss.params = 1;
1836 static int snd_pcm_oss_set_subdivide(struct snd_pcm_oss_file *pcm_oss_file, int subdivide)
1838 int err = -EINVAL, idx;
1840 for (idx = 1; idx >= 0; --idx) {
1841 struct snd_pcm_substream *substream = pcm_oss_file->streams[idx];
1842 if (substream == NULL)
1844 if ((err = snd_pcm_oss_set_subdivide1(substream, subdivide)) < 0)
1850 static int snd_pcm_oss_set_fragment1(struct snd_pcm_substream *substream, unsigned int val)
1852 struct snd_pcm_runtime *runtime;
1854 if (substream == NULL)
1856 runtime = substream->runtime;
1857 if (runtime->oss.subdivision || runtime->oss.fragshift)
1859 runtime->oss.fragshift = val & 0xffff;
1860 runtime->oss.maxfrags = (val >> 16) & 0xffff;
1861 if (runtime->oss.fragshift < 4) /* < 16 */
1862 runtime->oss.fragshift = 4;
1863 if (runtime->oss.maxfrags < 2)
1864 runtime->oss.maxfrags = 2;
1865 runtime->oss.params = 1;
1869 static int snd_pcm_oss_set_fragment(struct snd_pcm_oss_file *pcm_oss_file, unsigned int val)
1871 int err = -EINVAL, idx;
1873 for (idx = 1; idx >= 0; --idx) {
1874 struct snd_pcm_substream *substream = pcm_oss_file->streams[idx];
1875 if (substream == NULL)
1877 if ((err = snd_pcm_oss_set_fragment1(substream, val)) < 0)
1883 static int snd_pcm_oss_nonblock(struct file * file)
1885 file->f_flags |= O_NONBLOCK;
1889 static int snd_pcm_oss_get_caps1(struct snd_pcm_substream *substream, int res)
1892 if (substream == NULL) {
1893 res &= ~DSP_CAP_DUPLEX;
1896 #ifdef DSP_CAP_MULTI
1897 if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK)
1898 if (substream->pstr->substream_count > 1)
1899 res |= DSP_CAP_MULTI;
1901 /* DSP_CAP_REALTIME is set all times: */
1902 /* all ALSA drivers can return actual pointer in ring buffer */
1903 #if defined(DSP_CAP_REALTIME) && 0
1905 struct snd_pcm_runtime *runtime = substream->runtime;
1906 if (runtime->info & (SNDRV_PCM_INFO_BLOCK_TRANSFER|SNDRV_PCM_INFO_BATCH))
1907 res &= ~DSP_CAP_REALTIME;
1913 static int snd_pcm_oss_get_caps(struct snd_pcm_oss_file *pcm_oss_file)
1917 result = DSP_CAP_TRIGGER | DSP_CAP_MMAP | DSP_CAP_DUPLEX | DSP_CAP_REALTIME;
1918 for (idx = 0; idx < 2; idx++) {
1919 struct snd_pcm_substream *substream = pcm_oss_file->streams[idx];
1920 result = snd_pcm_oss_get_caps1(substream, result);
1922 result |= 0x0001; /* revision - same as SB AWE 64 */
1926 static void snd_pcm_oss_simulate_fill(struct snd_pcm_substream *substream, snd_pcm_uframes_t hw_ptr)
1928 struct snd_pcm_runtime *runtime = substream->runtime;
1929 snd_pcm_uframes_t appl_ptr;
1930 appl_ptr = hw_ptr + runtime->buffer_size;
1931 appl_ptr %= runtime->boundary;
1932 runtime->control->appl_ptr = appl_ptr;
1935 static int snd_pcm_oss_set_trigger(struct snd_pcm_oss_file *pcm_oss_file, int trigger)
1937 struct snd_pcm_runtime *runtime;
1938 struct snd_pcm_substream *psubstream = NULL, *csubstream = NULL;
1942 printk("pcm_oss: trigger = 0x%x\n", trigger);
1945 psubstream = pcm_oss_file->streams[SNDRV_PCM_STREAM_PLAYBACK];
1946 csubstream = pcm_oss_file->streams[SNDRV_PCM_STREAM_CAPTURE];
1949 if ((err = snd_pcm_oss_make_ready(psubstream)) < 0)
1953 if ((err = snd_pcm_oss_make_ready(csubstream)) < 0)
1957 runtime = psubstream->runtime;
1958 if (trigger & PCM_ENABLE_OUTPUT) {
1959 if (runtime->oss.trigger)
1961 if (atomic_read(&psubstream->mmap_count))
1962 snd_pcm_oss_simulate_fill(psubstream, runtime->hw_ptr_interrupt);
1963 runtime->oss.trigger = 1;
1964 runtime->start_threshold = 1;
1965 cmd = SNDRV_PCM_IOCTL_START;
1967 if (!runtime->oss.trigger)
1969 runtime->oss.trigger = 0;
1970 runtime->start_threshold = runtime->boundary;
1971 cmd = SNDRV_PCM_IOCTL_DROP;
1972 runtime->oss.prepare = 1;
1974 err = snd_pcm_kernel_ioctl(psubstream, cmd, NULL);
1980 runtime = csubstream->runtime;
1981 if (trigger & PCM_ENABLE_INPUT) {
1982 if (runtime->oss.trigger)
1984 runtime->oss.trigger = 1;
1985 runtime->start_threshold = 1;
1986 cmd = SNDRV_PCM_IOCTL_START;
1988 if (!runtime->oss.trigger)
1990 runtime->oss.trigger = 0;
1991 runtime->start_threshold = runtime->boundary;
1992 cmd = SNDRV_PCM_IOCTL_DROP;
1993 runtime->oss.prepare = 1;
1995 err = snd_pcm_kernel_ioctl(csubstream, cmd, NULL);
2003 static int snd_pcm_oss_get_trigger(struct snd_pcm_oss_file *pcm_oss_file)
2005 struct snd_pcm_substream *psubstream = NULL, *csubstream = NULL;
2008 psubstream = pcm_oss_file->streams[SNDRV_PCM_STREAM_PLAYBACK];
2009 csubstream = pcm_oss_file->streams[SNDRV_PCM_STREAM_CAPTURE];
2010 if (psubstream && psubstream->runtime && psubstream->runtime->oss.trigger)
2011 result |= PCM_ENABLE_OUTPUT;
2012 if (csubstream && csubstream->runtime && csubstream->runtime->oss.trigger)
2013 result |= PCM_ENABLE_INPUT;
2017 static int snd_pcm_oss_get_odelay(struct snd_pcm_oss_file *pcm_oss_file)
2019 struct snd_pcm_substream *substream;
2020 struct snd_pcm_runtime *runtime;
2021 snd_pcm_sframes_t delay;
2024 substream = pcm_oss_file->streams[SNDRV_PCM_STREAM_PLAYBACK];
2025 if (substream == NULL)
2027 if ((err = snd_pcm_oss_make_ready(substream)) < 0)
2029 runtime = substream->runtime;
2030 if (runtime->oss.params || runtime->oss.prepare)
2032 err = snd_pcm_kernel_ioctl(substream, SNDRV_PCM_IOCTL_DELAY, &delay);
2034 delay = 0; /* hack for broken OSS applications */
2037 return snd_pcm_oss_bytes(substream, delay);
2040 static int snd_pcm_oss_get_ptr(struct snd_pcm_oss_file *pcm_oss_file, int stream, struct count_info __user * _info)
2042 struct snd_pcm_substream *substream;
2043 struct snd_pcm_runtime *runtime;
2044 snd_pcm_sframes_t delay;
2046 struct count_info info;
2051 substream = pcm_oss_file->streams[stream];
2052 if (substream == NULL)
2054 if ((err = snd_pcm_oss_make_ready(substream)) < 0)
2056 runtime = substream->runtime;
2057 if (runtime->oss.params || runtime->oss.prepare) {
2058 memset(&info, 0, sizeof(info));
2059 if (copy_to_user(_info, &info, sizeof(info)))
2063 if (stream == SNDRV_PCM_STREAM_PLAYBACK) {
2064 err = snd_pcm_kernel_ioctl(substream, SNDRV_PCM_IOCTL_DELAY, &delay);
2065 if (err == -EPIPE || err == -ESTRPIPE || (! err && delay < 0)) {
2070 fixup = runtime->oss.buffer_used;
2073 err = snd_pcm_oss_capture_position_fixup(substream, &delay);
2074 fixup = -runtime->oss.buffer_used;
2078 info.ptr = snd_pcm_oss_bytes(substream, runtime->status->hw_ptr % runtime->buffer_size);
2079 if (atomic_read(&substream->mmap_count)) {
2080 snd_pcm_sframes_t n;
2081 n = (delay = runtime->hw_ptr_interrupt) - runtime->oss.prev_hw_ptr_interrupt;
2083 n += runtime->boundary;
2084 info.blocks = n / runtime->period_size;
2085 runtime->oss.prev_hw_ptr_interrupt = delay;
2086 if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK)
2087 snd_pcm_oss_simulate_fill(substream, delay);
2088 info.bytes = snd_pcm_oss_bytes(substream, runtime->status->hw_ptr) & INT_MAX;
2090 delay = snd_pcm_oss_bytes(substream, delay);
2091 if (stream == SNDRV_PCM_STREAM_PLAYBACK) {
2092 if (substream->oss.setup.buggyptr)
2093 info.blocks = (runtime->oss.buffer_bytes - delay - fixup) / runtime->oss.period_bytes;
2095 info.blocks = (delay + fixup) / runtime->oss.period_bytes;
2096 info.bytes = (runtime->oss.bytes - delay) & INT_MAX;
2099 info.blocks = delay / runtime->oss.period_bytes;
2100 info.bytes = (runtime->oss.bytes + delay) & INT_MAX;
2103 if (copy_to_user(_info, &info, sizeof(info)))
2108 static int snd_pcm_oss_get_space(struct snd_pcm_oss_file *pcm_oss_file, int stream, struct audio_buf_info __user *_info)
2110 struct snd_pcm_substream *substream;
2111 struct snd_pcm_runtime *runtime;
2112 snd_pcm_sframes_t avail;
2114 struct audio_buf_info info;
2119 substream = pcm_oss_file->streams[stream];
2120 if (substream == NULL)
2122 runtime = substream->runtime;
2124 if (runtime->oss.params &&
2125 (err = snd_pcm_oss_change_params(substream)) < 0)
2128 info.fragsize = runtime->oss.period_bytes;
2129 info.fragstotal = runtime->periods;
2130 if (runtime->oss.prepare) {
2131 if (stream == SNDRV_PCM_STREAM_PLAYBACK) {
2132 info.bytes = runtime->oss.period_bytes * runtime->oss.periods;
2133 info.fragments = runtime->oss.periods;
2139 if (stream == SNDRV_PCM_STREAM_PLAYBACK) {
2140 err = snd_pcm_kernel_ioctl(substream, SNDRV_PCM_IOCTL_DELAY, &avail);
2141 if (err == -EPIPE || err == -ESTRPIPE || (! err && avail < 0)) {
2142 avail = runtime->buffer_size;
2146 avail = runtime->buffer_size - avail;
2147 fixup = -runtime->oss.buffer_used;
2150 err = snd_pcm_oss_capture_position_fixup(substream, &avail);
2151 fixup = runtime->oss.buffer_used;
2155 info.bytes = snd_pcm_oss_bytes(substream, avail) + fixup;
2156 info.fragments = info.bytes / runtime->oss.period_bytes;
2160 printk("pcm_oss: space: bytes = %i, fragments = %i, fragstotal = %i, fragsize = %i\n", info.bytes, info.fragments, info.fragstotal, info.fragsize);
2162 if (copy_to_user(_info, &info, sizeof(info)))
2167 static int snd_pcm_oss_get_mapbuf(struct snd_pcm_oss_file *pcm_oss_file, int stream, struct buffmem_desc __user * _info)
2169 // it won't be probably implemented
2170 // snd_printd("TODO: snd_pcm_oss_get_mapbuf\n");
2174 static const char *strip_task_path(const char *path)
2176 const char *ptr, *ptrl = NULL;
2177 for (ptr = path; *ptr; ptr++) {
2184 static void snd_pcm_oss_look_for_setup(struct snd_pcm *pcm, int stream,
2185 const char *task_name,
2186 struct snd_pcm_oss_setup *rsetup)
2188 struct snd_pcm_oss_setup *setup;
2190 mutex_lock(&pcm->streams[stream].oss.setup_mutex);
2192 for (setup = pcm->streams[stream].oss.setup_list; setup;
2193 setup = setup->next) {
2194 if (!strcmp(setup->task_name, task_name))
2197 } while ((task_name = strip_task_path(task_name)) != NULL);
2201 mutex_unlock(&pcm->streams[stream].oss.setup_mutex);
2204 static void snd_pcm_oss_release_substream(struct snd_pcm_substream *substream)
2206 struct snd_pcm_runtime *runtime;
2207 runtime = substream->runtime;
2208 vfree(runtime->oss.buffer);
2209 runtime->oss.buffer = NULL;
2210 #ifdef CONFIG_SND_PCM_OSS_PLUGINS
2211 snd_pcm_oss_plugin_clear(substream);
2213 substream->oss.oss = 0;
2216 static void snd_pcm_oss_init_substream(struct snd_pcm_substream *substream,
2217 struct snd_pcm_oss_setup *setup,
2220 struct snd_pcm_runtime *runtime;
2222 substream->oss.oss = 1;
2223 substream->oss.setup = *setup;
2224 if (setup->nonblock)
2225 substream->f_flags |= O_NONBLOCK;
2226 else if (setup->block)
2227 substream->f_flags &= ~O_NONBLOCK;
2228 runtime = substream->runtime;
2229 runtime->oss.params = 1;
2230 runtime->oss.trigger = 1;
2231 runtime->oss.rate = 8000;
2232 mutex_init(&runtime->oss.params_lock);
2233 switch (SNDRV_MINOR_OSS_DEVICE(minor)) {
2234 case SNDRV_MINOR_OSS_PCM_8:
2235 runtime->oss.format = AFMT_U8;
2237 case SNDRV_MINOR_OSS_PCM_16:
2238 runtime->oss.format = AFMT_S16_LE;
2241 runtime->oss.format = AFMT_MU_LAW;
2243 runtime->oss.channels = 1;
2244 runtime->oss.fragshift = 0;
2245 runtime->oss.maxfrags = 0;
2246 runtime->oss.subdivision = 0;
2247 substream->pcm_release = snd_pcm_oss_release_substream;
2250 static int snd_pcm_oss_release_file(struct snd_pcm_oss_file *pcm_oss_file)
2253 snd_assert(pcm_oss_file != NULL, return -ENXIO);
2254 for (cidx = 0; cidx < 2; ++cidx) {
2255 struct snd_pcm_substream *substream = pcm_oss_file->streams[cidx];
2257 snd_pcm_release_substream(substream);
2259 kfree(pcm_oss_file);
2263 static int snd_pcm_oss_open_file(struct file *file,
2264 struct snd_pcm *pcm,
2265 struct snd_pcm_oss_file **rpcm_oss_file,
2267 struct snd_pcm_oss_setup *setup)
2270 struct snd_pcm_oss_file *pcm_oss_file;
2271 struct snd_pcm_substream *substream;
2272 unsigned int f_mode = file->f_mode;
2274 snd_assert(rpcm_oss_file != NULL, return -EINVAL);
2275 *rpcm_oss_file = NULL;
2277 pcm_oss_file = kzalloc(sizeof(*pcm_oss_file), GFP_KERNEL);
2278 if (pcm_oss_file == NULL)
2281 if ((f_mode & (FMODE_WRITE|FMODE_READ)) == (FMODE_WRITE|FMODE_READ) &&
2282 (pcm->info_flags & SNDRV_PCM_INFO_HALF_DUPLEX))
2283 f_mode = FMODE_WRITE;
2285 file->f_flags &= ~O_APPEND;
2286 for (idx = 0; idx < 2; idx++) {
2287 if (setup[idx].disable)
2289 if (! pcm->streams[idx].substream_count)
2290 continue; /* no matching substream */
2291 if (idx == SNDRV_PCM_STREAM_PLAYBACK) {
2292 if (! (f_mode & FMODE_WRITE))
2295 if (! (f_mode & FMODE_READ))
2298 err = snd_pcm_open_substream(pcm, idx, file, &substream);
2300 snd_pcm_oss_release_file(pcm_oss_file);
2304 pcm_oss_file->streams[idx] = substream;
2305 substream->file = pcm_oss_file;
2306 snd_pcm_oss_init_substream(substream, &setup[idx], minor);
2309 if (!pcm_oss_file->streams[0] && !pcm_oss_file->streams[1]) {
2310 snd_pcm_oss_release_file(pcm_oss_file);
2314 file->private_data = pcm_oss_file;
2315 *rpcm_oss_file = pcm_oss_file;
2320 static int snd_task_name(struct task_struct *task, char *name, size_t size)
2324 snd_assert(task != NULL && name != NULL && size >= 2, return -EINVAL);
2325 for (idx = 0; idx < sizeof(task->comm) && idx + 1 < size; idx++)
2326 name[idx] = task->comm[idx];
2331 static int snd_pcm_oss_open(struct inode *inode, struct file *file)
2335 struct snd_pcm *pcm;
2336 struct snd_pcm_oss_file *pcm_oss_file;
2337 struct snd_pcm_oss_setup setup[2];
2341 pcm = snd_lookup_oss_minor_data(iminor(inode),
2342 SNDRV_OSS_DEVICE_TYPE_PCM);
2347 err = snd_card_file_add(pcm->card, file);
2350 if (!try_module_get(pcm->card->module)) {
2354 if (snd_task_name(current, task_name, sizeof(task_name)) < 0) {
2358 memset(setup, 0, sizeof(setup));
2359 if (file->f_mode & FMODE_WRITE)
2360 snd_pcm_oss_look_for_setup(pcm, SNDRV_PCM_STREAM_PLAYBACK,
2361 task_name, &setup[0]);
2362 if (file->f_mode & FMODE_READ)
2363 snd_pcm_oss_look_for_setup(pcm, SNDRV_PCM_STREAM_CAPTURE,
2364 task_name, &setup[1]);
2366 nonblock = !!(file->f_flags & O_NONBLOCK);
2368 nonblock = nonblock_open;
2370 init_waitqueue_entry(&wait, current);
2371 add_wait_queue(&pcm->open_wait, &wait);
2372 mutex_lock(&pcm->open_mutex);
2374 err = snd_pcm_oss_open_file(file, pcm, &pcm_oss_file,
2375 iminor(inode), setup);
2378 if (err == -EAGAIN) {
2385 set_current_state(TASK_INTERRUPTIBLE);
2386 mutex_unlock(&pcm->open_mutex);
2388 mutex_lock(&pcm->open_mutex);
2389 if (signal_pending(current)) {
2394 remove_wait_queue(&pcm->open_wait, &wait);
2395 mutex_unlock(&pcm->open_mutex);
2401 module_put(pcm->card->module);
2403 snd_card_file_remove(pcm->card, file);
2408 static int snd_pcm_oss_release(struct inode *inode, struct file *file)
2410 struct snd_pcm *pcm;
2411 struct snd_pcm_substream *substream;
2412 struct snd_pcm_oss_file *pcm_oss_file;
2414 pcm_oss_file = file->private_data;
2415 substream = pcm_oss_file->streams[SNDRV_PCM_STREAM_PLAYBACK];
2416 if (substream == NULL)
2417 substream = pcm_oss_file->streams[SNDRV_PCM_STREAM_CAPTURE];
2418 snd_assert(substream != NULL, return -ENXIO);
2419 pcm = substream->pcm;
2420 if (!pcm->card->shutdown)
2421 snd_pcm_oss_sync(pcm_oss_file);
2422 mutex_lock(&pcm->open_mutex);
2423 snd_pcm_oss_release_file(pcm_oss_file);
2424 mutex_unlock(&pcm->open_mutex);
2425 wake_up(&pcm->open_wait);
2426 module_put(pcm->card->module);
2427 snd_card_file_remove(pcm->card, file);
2431 static long snd_pcm_oss_ioctl(struct file *file, unsigned int cmd, unsigned long arg)
2433 struct snd_pcm_oss_file *pcm_oss_file;
2434 int __user *p = (int __user *)arg;
2437 pcm_oss_file = file->private_data;
2438 if (cmd == OSS_GETVERSION)
2439 return put_user(SNDRV_OSS_VERSION, p);
2440 if (cmd == OSS_ALSAEMULVER)
2441 return put_user(1, p);
2442 #if defined(CONFIG_SND_MIXER_OSS) || (defined(MODULE) && defined(CONFIG_SND_MIXER_OSS_MODULE))
2443 if (((cmd >> 8) & 0xff) == 'M') { /* mixer ioctl - for OSS compatibility */
2444 struct snd_pcm_substream *substream;
2446 for (idx = 0; idx < 2; ++idx) {
2447 substream = pcm_oss_file->streams[idx];
2448 if (substream != NULL)
2451 snd_assert(substream != NULL, return -ENXIO);
2452 return snd_mixer_oss_ioctl_card(substream->pcm->card, cmd, arg);
2455 if (((cmd >> 8) & 0xff) != 'P')
2458 printk("pcm_oss: ioctl = 0x%x\n", cmd);
2461 case SNDCTL_DSP_RESET:
2462 return snd_pcm_oss_reset(pcm_oss_file);
2463 case SNDCTL_DSP_SYNC:
2464 return snd_pcm_oss_sync(pcm_oss_file);
2465 case SNDCTL_DSP_SPEED:
2466 if (get_user(res, p))
2468 if ((res = snd_pcm_oss_set_rate(pcm_oss_file, res))<0)
2470 return put_user(res, p);
2471 case SOUND_PCM_READ_RATE:
2472 res = snd_pcm_oss_get_rate(pcm_oss_file);
2475 return put_user(res, p);
2476 case SNDCTL_DSP_STEREO:
2477 if (get_user(res, p))
2479 res = res > 0 ? 2 : 1;
2480 if ((res = snd_pcm_oss_set_channels(pcm_oss_file, res)) < 0)
2482 return put_user(--res, p);
2483 case SNDCTL_DSP_GETBLKSIZE:
2484 res = snd_pcm_oss_get_block_size(pcm_oss_file);
2487 return put_user(res, p);
2488 case SNDCTL_DSP_SETFMT:
2489 if (get_user(res, p))
2491 res = snd_pcm_oss_set_format(pcm_oss_file, res);
2494 return put_user(res, p);
2495 case SOUND_PCM_READ_BITS:
2496 res = snd_pcm_oss_get_format(pcm_oss_file);
2499 return put_user(res, p);
2500 case SNDCTL_DSP_CHANNELS:
2501 if (get_user(res, p))
2503 res = snd_pcm_oss_set_channels(pcm_oss_file, res);
2506 return put_user(res, p);
2507 case SOUND_PCM_READ_CHANNELS:
2508 res = snd_pcm_oss_get_channels(pcm_oss_file);
2511 return put_user(res, p);
2512 case SOUND_PCM_WRITE_FILTER:
2513 case SOUND_PCM_READ_FILTER:
2515 case SNDCTL_DSP_POST:
2516 return snd_pcm_oss_post(pcm_oss_file);
2517 case SNDCTL_DSP_SUBDIVIDE:
2518 if (get_user(res, p))
2520 res = snd_pcm_oss_set_subdivide(pcm_oss_file, res);
2523 return put_user(res, p);
2524 case SNDCTL_DSP_SETFRAGMENT:
2525 if (get_user(res, p))
2527 return snd_pcm_oss_set_fragment(pcm_oss_file, res);
2528 case SNDCTL_DSP_GETFMTS:
2529 res = snd_pcm_oss_get_formats(pcm_oss_file);
2532 return put_user(res, p);
2533 case SNDCTL_DSP_GETOSPACE:
2534 case SNDCTL_DSP_GETISPACE:
2535 return snd_pcm_oss_get_space(pcm_oss_file,
2536 cmd == SNDCTL_DSP_GETISPACE ?
2537 SNDRV_PCM_STREAM_CAPTURE : SNDRV_PCM_STREAM_PLAYBACK,
2538 (struct audio_buf_info __user *) arg);
2539 case SNDCTL_DSP_NONBLOCK:
2540 return snd_pcm_oss_nonblock(file);
2541 case SNDCTL_DSP_GETCAPS:
2542 res = snd_pcm_oss_get_caps(pcm_oss_file);
2545 return put_user(res, p);
2546 case SNDCTL_DSP_GETTRIGGER:
2547 res = snd_pcm_oss_get_trigger(pcm_oss_file);
2550 return put_user(res, p);
2551 case SNDCTL_DSP_SETTRIGGER:
2552 if (get_user(res, p))
2554 return snd_pcm_oss_set_trigger(pcm_oss_file, res);
2555 case SNDCTL_DSP_GETIPTR:
2556 case SNDCTL_DSP_GETOPTR:
2557 return snd_pcm_oss_get_ptr(pcm_oss_file,
2558 cmd == SNDCTL_DSP_GETIPTR ?
2559 SNDRV_PCM_STREAM_CAPTURE : SNDRV_PCM_STREAM_PLAYBACK,
2560 (struct count_info __user *) arg);
2561 case SNDCTL_DSP_MAPINBUF:
2562 case SNDCTL_DSP_MAPOUTBUF:
2563 return snd_pcm_oss_get_mapbuf(pcm_oss_file,
2564 cmd == SNDCTL_DSP_MAPINBUF ?
2565 SNDRV_PCM_STREAM_CAPTURE : SNDRV_PCM_STREAM_PLAYBACK,
2566 (struct buffmem_desc __user *) arg);
2567 case SNDCTL_DSP_SETSYNCRO:
2568 /* stop DMA now.. */
2570 case SNDCTL_DSP_SETDUPLEX:
2571 if (snd_pcm_oss_get_caps(pcm_oss_file) & DSP_CAP_DUPLEX)
2574 case SNDCTL_DSP_GETODELAY:
2575 res = snd_pcm_oss_get_odelay(pcm_oss_file);
2577 /* it's for sure, some broken apps don't check for error codes */
2581 return put_user(res, p);
2582 case SNDCTL_DSP_PROFILE:
2583 return 0; /* silently ignore */
2585 snd_printd("pcm_oss: unknown command = 0x%x\n", cmd);
2590 #ifdef CONFIG_COMPAT
2591 /* all compatible */
2592 #define snd_pcm_oss_ioctl_compat snd_pcm_oss_ioctl
2594 #define snd_pcm_oss_ioctl_compat NULL
2597 static ssize_t snd_pcm_oss_read(struct file *file, char __user *buf, size_t count, loff_t *offset)
2599 struct snd_pcm_oss_file *pcm_oss_file;
2600 struct snd_pcm_substream *substream;
2602 pcm_oss_file = file->private_data;
2603 substream = pcm_oss_file->streams[SNDRV_PCM_STREAM_CAPTURE];
2604 if (substream == NULL)
2606 substream->f_flags = file->f_flags & O_NONBLOCK;
2608 return snd_pcm_oss_read1(substream, buf, count);
2611 ssize_t res = snd_pcm_oss_read1(substream, buf, count);
2612 printk("pcm_oss: read %li bytes (returned %li bytes)\n", (long)count, (long)res);
2618 static ssize_t snd_pcm_oss_write(struct file *file, const char __user *buf, size_t count, loff_t *offset)
2620 struct snd_pcm_oss_file *pcm_oss_file;
2621 struct snd_pcm_substream *substream;
2624 pcm_oss_file = file->private_data;
2625 substream = pcm_oss_file->streams[SNDRV_PCM_STREAM_PLAYBACK];
2626 if (substream == NULL)
2628 substream->f_flags = file->f_flags & O_NONBLOCK;
2629 result = snd_pcm_oss_write1(substream, buf, count);
2631 printk("pcm_oss: write %li bytes (wrote %li bytes)\n", (long)count, (long)result);
2636 static int snd_pcm_oss_playback_ready(struct snd_pcm_substream *substream)
2638 struct snd_pcm_runtime *runtime = substream->runtime;
2639 if (atomic_read(&substream->mmap_count))
2640 return runtime->oss.prev_hw_ptr_interrupt != runtime->hw_ptr_interrupt;
2642 return snd_pcm_playback_avail(runtime) >= runtime->oss.period_frames;
2645 static int snd_pcm_oss_capture_ready(struct snd_pcm_substream *substream)
2647 struct snd_pcm_runtime *runtime = substream->runtime;
2648 if (atomic_read(&substream->mmap_count))
2649 return runtime->oss.prev_hw_ptr_interrupt != runtime->hw_ptr_interrupt;
2651 return snd_pcm_capture_avail(runtime) >= runtime->oss.period_frames;
2654 static unsigned int snd_pcm_oss_poll(struct file *file, poll_table * wait)
2656 struct snd_pcm_oss_file *pcm_oss_file;
2658 struct snd_pcm_substream *psubstream = NULL, *csubstream = NULL;
2660 pcm_oss_file = file->private_data;
2662 psubstream = pcm_oss_file->streams[SNDRV_PCM_STREAM_PLAYBACK];
2663 csubstream = pcm_oss_file->streams[SNDRV_PCM_STREAM_CAPTURE];
2666 if (psubstream != NULL) {
2667 struct snd_pcm_runtime *runtime = psubstream->runtime;
2668 poll_wait(file, &runtime->sleep, wait);
2669 snd_pcm_stream_lock_irq(psubstream);
2670 if (runtime->status->state != SNDRV_PCM_STATE_DRAINING &&
2671 (runtime->status->state != SNDRV_PCM_STATE_RUNNING ||
2672 snd_pcm_oss_playback_ready(psubstream)))
2673 mask |= POLLOUT | POLLWRNORM;
2674 snd_pcm_stream_unlock_irq(psubstream);
2676 if (csubstream != NULL) {
2677 struct snd_pcm_runtime *runtime = csubstream->runtime;
2678 snd_pcm_state_t ostate;
2679 poll_wait(file, &runtime->sleep, wait);
2680 snd_pcm_stream_lock_irq(csubstream);
2681 if ((ostate = runtime->status->state) != SNDRV_PCM_STATE_RUNNING ||
2682 snd_pcm_oss_capture_ready(csubstream))
2683 mask |= POLLIN | POLLRDNORM;
2684 snd_pcm_stream_unlock_irq(csubstream);
2685 if (ostate != SNDRV_PCM_STATE_RUNNING && runtime->oss.trigger) {
2686 struct snd_pcm_oss_file ofile;
2687 memset(&ofile, 0, sizeof(ofile));
2688 ofile.streams[SNDRV_PCM_STREAM_CAPTURE] = pcm_oss_file->streams[SNDRV_PCM_STREAM_CAPTURE];
2689 runtime->oss.trigger = 0;
2690 snd_pcm_oss_set_trigger(&ofile, PCM_ENABLE_INPUT);
2697 static int snd_pcm_oss_mmap(struct file *file, struct vm_area_struct *area)
2699 struct snd_pcm_oss_file *pcm_oss_file;
2700 struct snd_pcm_substream *substream = NULL;
2701 struct snd_pcm_runtime *runtime;
2705 printk("pcm_oss: mmap begin\n");
2707 pcm_oss_file = file->private_data;
2708 switch ((area->vm_flags & (VM_READ | VM_WRITE))) {
2709 case VM_READ | VM_WRITE:
2710 substream = pcm_oss_file->streams[SNDRV_PCM_STREAM_PLAYBACK];
2715 substream = pcm_oss_file->streams[SNDRV_PCM_STREAM_CAPTURE];
2718 substream = pcm_oss_file->streams[SNDRV_PCM_STREAM_PLAYBACK];
2723 /* set VM_READ access as well to fix memset() routines that do
2724 reads before writes (to improve performance) */
2725 area->vm_flags |= VM_READ;
2726 if (substream == NULL)
2728 runtime = substream->runtime;
2729 if (!(runtime->info & SNDRV_PCM_INFO_MMAP_VALID))
2731 if (runtime->info & SNDRV_PCM_INFO_INTERLEAVED)
2732 runtime->access = SNDRV_PCM_ACCESS_MMAP_INTERLEAVED;
2736 if (runtime->oss.params) {
2737 if ((err = snd_pcm_oss_change_params(substream)) < 0)
2740 #ifdef CONFIG_SND_PCM_OSS_PLUGINS
2741 if (runtime->oss.plugin_first != NULL)
2745 if (area->vm_pgoff != 0)
2748 err = snd_pcm_mmap_data(substream, file, area);
2751 runtime->oss.mmap_bytes = area->vm_end - area->vm_start;
2752 runtime->silence_threshold = 0;
2753 runtime->silence_size = 0;
2755 printk("pcm_oss: mmap ok, bytes = 0x%x\n", runtime->oss.mmap_bytes);
2757 /* In mmap mode we never stop */
2758 runtime->stop_threshold = runtime->boundary;
2763 #ifdef CONFIG_SND_VERBOSE_PROCFS
2768 static void snd_pcm_oss_proc_read(struct snd_info_entry *entry,
2769 struct snd_info_buffer *buffer)
2771 struct snd_pcm_str *pstr = entry->private_data;
2772 struct snd_pcm_oss_setup *setup = pstr->oss.setup_list;
2773 mutex_lock(&pstr->oss.setup_mutex);
2775 snd_iprintf(buffer, "%s %u %u%s%s%s%s%s%s\n",
2779 setup->disable ? " disable" : "",
2780 setup->direct ? " direct" : "",
2781 setup->block ? " block" : "",
2782 setup->nonblock ? " non-block" : "",
2783 setup->partialfrag ? " partial-frag" : "",
2784 setup->nosilence ? " no-silence" : "");
2785 setup = setup->next;
2787 mutex_unlock(&pstr->oss.setup_mutex);
2790 static void snd_pcm_oss_proc_free_setup_list(struct snd_pcm_str * pstr)
2792 struct snd_pcm_oss_setup *setup, *setupn;
2794 for (setup = pstr->oss.setup_list, pstr->oss.setup_list = NULL;
2795 setup; setup = setupn) {
2796 setupn = setup->next;
2797 kfree(setup->task_name);
2800 pstr->oss.setup_list = NULL;
2803 static void snd_pcm_oss_proc_write(struct snd_info_entry *entry,
2804 struct snd_info_buffer *buffer)
2806 struct snd_pcm_str *pstr = entry->private_data;
2807 char line[128], str[32], task_name[32], *ptr;
2809 struct snd_pcm_oss_setup *setup, *setup1, template;
2811 while (!snd_info_get_line(buffer, line, sizeof(line))) {
2812 mutex_lock(&pstr->oss.setup_mutex);
2813 memset(&template, 0, sizeof(template));
2814 ptr = snd_info_get_str(task_name, line, sizeof(task_name));
2815 if (!strcmp(task_name, "clear") || !strcmp(task_name, "erase")) {
2816 snd_pcm_oss_proc_free_setup_list(pstr);
2817 mutex_unlock(&pstr->oss.setup_mutex);
2820 for (setup = pstr->oss.setup_list; setup; setup = setup->next) {
2821 if (!strcmp(setup->task_name, task_name)) {
2826 ptr = snd_info_get_str(str, ptr, sizeof(str));
2827 template.periods = simple_strtoul(str, NULL, 10);
2828 ptr = snd_info_get_str(str, ptr, sizeof(str));
2829 template.period_size = simple_strtoul(str, NULL, 10);
2830 for (idx1 = 31; idx1 >= 0; idx1--)
2831 if (template.period_size & (1 << idx1))
2833 for (idx1--; idx1 >= 0; idx1--)
2834 template.period_size &= ~(1 << idx1);
2836 ptr = snd_info_get_str(str, ptr, sizeof(str));
2837 if (!strcmp(str, "disable")) {
2838 template.disable = 1;
2839 } else if (!strcmp(str, "direct")) {
2840 template.direct = 1;
2841 } else if (!strcmp(str, "block")) {
2843 } else if (!strcmp(str, "non-block")) {
2844 template.nonblock = 1;
2845 } else if (!strcmp(str, "partial-frag")) {
2846 template.partialfrag = 1;
2847 } else if (!strcmp(str, "no-silence")) {
2848 template.nosilence = 1;
2849 } else if (!strcmp(str, "buggy-ptr")) {
2850 template.buggyptr = 1;
2853 if (setup == NULL) {
2854 setup = kmalloc(sizeof(*setup), GFP_KERNEL);
2856 buffer->error = -ENOMEM;
2857 mutex_lock(&pstr->oss.setup_mutex);
2860 if (pstr->oss.setup_list == NULL)
2861 pstr->oss.setup_list = setup;
2863 for (setup1 = pstr->oss.setup_list;
2864 setup1->next; setup1 = setup1->next);
2865 setup1->next = setup;
2867 template.task_name = kstrdup(task_name, GFP_KERNEL);
2868 if (! template.task_name) {
2870 buffer->error = -ENOMEM;
2871 mutex_lock(&pstr->oss.setup_mutex);
2876 mutex_unlock(&pstr->oss.setup_mutex);
2880 static void snd_pcm_oss_proc_init(struct snd_pcm *pcm)
2883 for (stream = 0; stream < 2; ++stream) {
2884 struct snd_info_entry *entry;
2885 struct snd_pcm_str *pstr = &pcm->streams[stream];
2886 if (pstr->substream_count == 0)
2888 if ((entry = snd_info_create_card_entry(pcm->card, "oss", pstr->proc_root)) != NULL) {
2889 entry->content = SNDRV_INFO_CONTENT_TEXT;
2890 entry->mode = S_IFREG | S_IRUGO | S_IWUSR;
2891 entry->c.text.read = snd_pcm_oss_proc_read;
2892 entry->c.text.write = snd_pcm_oss_proc_write;
2893 entry->private_data = pstr;
2894 if (snd_info_register(entry) < 0) {
2895 snd_info_free_entry(entry);
2899 pstr->oss.proc_entry = entry;
2903 static void snd_pcm_oss_proc_done(struct snd_pcm *pcm)
2906 for (stream = 0; stream < 2; ++stream) {
2907 struct snd_pcm_str *pstr = &pcm->streams[stream];
2908 snd_info_free_entry(pstr->oss.proc_entry);
2909 pstr->oss.proc_entry = NULL;
2910 snd_pcm_oss_proc_free_setup_list(pstr);
2913 #else /* !CONFIG_SND_VERBOSE_PROCFS */
2914 #define snd_pcm_oss_proc_init(pcm)
2915 #define snd_pcm_oss_proc_done(pcm)
2916 #endif /* CONFIG_SND_VERBOSE_PROCFS */
2922 static const struct file_operations snd_pcm_oss_f_reg =
2924 .owner = THIS_MODULE,
2925 .read = snd_pcm_oss_read,
2926 .write = snd_pcm_oss_write,
2927 .open = snd_pcm_oss_open,
2928 .release = snd_pcm_oss_release,
2929 .poll = snd_pcm_oss_poll,
2930 .unlocked_ioctl = snd_pcm_oss_ioctl,
2931 .compat_ioctl = snd_pcm_oss_ioctl_compat,
2932 .mmap = snd_pcm_oss_mmap,
2935 static void register_oss_dsp(struct snd_pcm *pcm, int index)
2938 sprintf(name, "dsp%i%i", pcm->card->number, pcm->device);
2939 if (snd_register_oss_device(SNDRV_OSS_DEVICE_TYPE_PCM,
2940 pcm->card, index, &snd_pcm_oss_f_reg,
2942 snd_printk(KERN_ERR "unable to register OSS PCM device %i:%i\n",
2943 pcm->card->number, pcm->device);
2947 static int snd_pcm_oss_register_minor(struct snd_pcm *pcm)
2950 if (dsp_map[pcm->card->number] == (int)pcm->device) {
2953 register_oss_dsp(pcm, 0);
2954 duplex = (pcm->streams[SNDRV_PCM_STREAM_PLAYBACK].substream_count > 0 &&
2955 pcm->streams[SNDRV_PCM_STREAM_CAPTURE].substream_count &&
2956 !(pcm->info_flags & SNDRV_PCM_INFO_HALF_DUPLEX));
2957 sprintf(name, "%s%s", pcm->name, duplex ? " (DUPLEX)" : "");
2958 #ifdef SNDRV_OSS_INFO_DEV_AUDIO
2959 snd_oss_info_register(SNDRV_OSS_INFO_DEV_AUDIO,
2964 pcm->oss.reg_mask |= 1;
2966 if (adsp_map[pcm->card->number] == (int)pcm->device) {
2967 register_oss_dsp(pcm, 1);
2969 pcm->oss.reg_mask |= 2;
2973 snd_pcm_oss_proc_init(pcm);
2978 static int snd_pcm_oss_disconnect_minor(struct snd_pcm *pcm)
2981 if (pcm->oss.reg_mask & 1) {
2982 pcm->oss.reg_mask &= ~1;
2983 snd_unregister_oss_device(SNDRV_OSS_DEVICE_TYPE_PCM,
2986 if (pcm->oss.reg_mask & 2) {
2987 pcm->oss.reg_mask &= ~2;
2988 snd_unregister_oss_device(SNDRV_OSS_DEVICE_TYPE_PCM,
2991 if (dsp_map[pcm->card->number] == (int)pcm->device) {
2992 #ifdef SNDRV_OSS_INFO_DEV_AUDIO
2993 snd_oss_info_unregister(SNDRV_OSS_INFO_DEV_AUDIO, pcm->card->number);
3001 static int snd_pcm_oss_unregister_minor(struct snd_pcm *pcm)
3003 snd_pcm_oss_disconnect_minor(pcm);
3004 snd_pcm_oss_proc_done(pcm);
3008 static struct snd_pcm_notify snd_pcm_oss_notify =
3010 .n_register = snd_pcm_oss_register_minor,
3011 .n_disconnect = snd_pcm_oss_disconnect_minor,
3012 .n_unregister = snd_pcm_oss_unregister_minor,
3015 static int __init alsa_pcm_oss_init(void)
3020 /* check device map table */
3021 for (i = 0; i < SNDRV_CARDS; i++) {
3022 if (dsp_map[i] < 0 || dsp_map[i] >= SNDRV_PCM_DEVICES) {
3023 snd_printk(KERN_ERR "invalid dsp_map[%d] = %d\n",
3027 if (adsp_map[i] < 0 || adsp_map[i] >= SNDRV_PCM_DEVICES) {
3028 snd_printk(KERN_ERR "invalid adsp_map[%d] = %d\n",
3033 if ((err = snd_pcm_notify(&snd_pcm_oss_notify, 0)) < 0)
3038 static void __exit alsa_pcm_oss_exit(void)
3040 snd_pcm_notify(&snd_pcm_oss_notify, 1);
3043 module_init(alsa_pcm_oss_init)
3044 module_exit(alsa_pcm_oss_exit)