2 * Advanced Linux Sound Architecture
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
22 #ifdef CONFIG_SND_OSSEMUL
24 #if !defined(CONFIG_SOUND) && !(defined(MODULE) && defined(CONFIG_SOUND_MODULE))
25 #error "Enable the OSS soundcore multiplexer (CONFIG_SOUND) in the kernel."
28 #include <linux/init.h>
29 #include <linux/slab.h>
30 #include <linux/time.h>
31 #include <sound/core.h>
32 #include <sound/minors.h>
33 #include <sound/info.h>
34 #include <linux/sound.h>
35 #include <linux/mutex.h>
37 #define SNDRV_OSS_MINORS 128
39 static struct snd_minor
*snd_oss_minors
[SNDRV_OSS_MINORS
];
40 static DEFINE_MUTEX(sound_oss_mutex
);
42 void *snd_lookup_oss_minor_data(unsigned int minor
, int type
)
44 struct snd_minor
*mreg
;
47 if (minor
>= ARRAY_SIZE(snd_oss_minors
))
49 mutex_lock(&sound_oss_mutex
);
50 mreg
= snd_oss_minors
[minor
];
51 if (mreg
&& mreg
->type
== type
)
52 private_data
= mreg
->private_data
;
55 mutex_unlock(&sound_oss_mutex
);
59 EXPORT_SYMBOL(snd_lookup_oss_minor_data
);
61 static int snd_oss_kernel_minor(int type
, struct snd_card
*card
, int dev
)
66 case SNDRV_OSS_DEVICE_TYPE_MIXER
:
67 if (snd_BUG_ON(!card
|| dev
< 0 || dev
> 1))
69 minor
= SNDRV_MINOR_OSS(card
->number
, (dev
? SNDRV_MINOR_OSS_MIXER1
: SNDRV_MINOR_OSS_MIXER
));
71 case SNDRV_OSS_DEVICE_TYPE_SEQUENCER
:
72 minor
= SNDRV_MINOR_OSS_SEQUENCER
;
74 case SNDRV_OSS_DEVICE_TYPE_MUSIC
:
75 minor
= SNDRV_MINOR_OSS_MUSIC
;
77 case SNDRV_OSS_DEVICE_TYPE_PCM
:
78 if (snd_BUG_ON(!card
|| dev
< 0 || dev
> 1))
80 minor
= SNDRV_MINOR_OSS(card
->number
, (dev
? SNDRV_MINOR_OSS_PCM1
: SNDRV_MINOR_OSS_PCM
));
82 case SNDRV_OSS_DEVICE_TYPE_MIDI
:
83 if (snd_BUG_ON(!card
|| dev
< 0 || dev
> 1))
85 minor
= SNDRV_MINOR_OSS(card
->number
, (dev
? SNDRV_MINOR_OSS_MIDI1
: SNDRV_MINOR_OSS_MIDI
));
87 case SNDRV_OSS_DEVICE_TYPE_DMFM
:
88 minor
= SNDRV_MINOR_OSS(card
->number
, SNDRV_MINOR_OSS_DMFM
);
90 case SNDRV_OSS_DEVICE_TYPE_SNDSTAT
:
91 minor
= SNDRV_MINOR_OSS_SNDSTAT
;
96 if (snd_BUG_ON(minor
< 0 || minor
>= SNDRV_OSS_MINORS
))
101 int snd_register_oss_device(int type
, struct snd_card
*card
, int dev
,
102 const struct file_operations
*f_ops
, void *private_data
,
105 int minor
= snd_oss_kernel_minor(type
, card
, dev
);
107 struct snd_minor
*preg
;
108 int cidx
= SNDRV_MINOR_OSS_CARD(minor
);
110 int register1
= -1, register2
= -1;
111 struct device
*carddev
= snd_card_get_device_link(card
);
113 if (card
&& card
->number
>= 8)
114 return 0; /* ignore silently */
117 preg
= kmalloc(sizeof(struct snd_minor
), GFP_KERNEL
);
121 preg
->card
= card
? card
->number
: -1;
124 preg
->private_data
= private_data
;
125 mutex_lock(&sound_oss_mutex
);
126 snd_oss_minors
[minor
] = preg
;
127 minor_unit
= SNDRV_MINOR_OSS_DEVICE(minor
);
128 switch (minor_unit
) {
129 case SNDRV_MINOR_OSS_PCM
:
130 track2
= SNDRV_MINOR_OSS(cidx
, SNDRV_MINOR_OSS_AUDIO
);
132 case SNDRV_MINOR_OSS_MIDI
:
133 track2
= SNDRV_MINOR_OSS(cidx
, SNDRV_MINOR_OSS_DMMIDI
);
135 case SNDRV_MINOR_OSS_MIDI1
:
136 track2
= SNDRV_MINOR_OSS(cidx
, SNDRV_MINOR_OSS_DMMIDI1
);
139 register1
= register_sound_special_device(f_ops
, minor
, carddev
);
140 if (register1
!= minor
)
143 register2
= register_sound_special_device(f_ops
, track2
,
145 if (register2
!= track2
)
147 snd_oss_minors
[track2
] = preg
;
149 mutex_unlock(&sound_oss_mutex
);
154 unregister_sound_special(register2
);
156 unregister_sound_special(register1
);
157 snd_oss_minors
[minor
] = NULL
;
158 mutex_unlock(&sound_oss_mutex
);
163 EXPORT_SYMBOL(snd_register_oss_device
);
165 int snd_unregister_oss_device(int type
, struct snd_card
*card
, int dev
)
167 int minor
= snd_oss_kernel_minor(type
, card
, dev
);
168 int cidx
= SNDRV_MINOR_OSS_CARD(minor
);
170 struct snd_minor
*mptr
;
172 if (card
&& card
->number
>= 8)
176 mutex_lock(&sound_oss_mutex
);
177 mptr
= snd_oss_minors
[minor
];
179 mutex_unlock(&sound_oss_mutex
);
182 unregister_sound_special(minor
);
183 switch (SNDRV_MINOR_OSS_DEVICE(minor
)) {
184 case SNDRV_MINOR_OSS_PCM
:
185 track2
= SNDRV_MINOR_OSS(cidx
, SNDRV_MINOR_OSS_AUDIO
);
187 case SNDRV_MINOR_OSS_MIDI
:
188 track2
= SNDRV_MINOR_OSS(cidx
, SNDRV_MINOR_OSS_DMMIDI
);
190 case SNDRV_MINOR_OSS_MIDI1
:
191 track2
= SNDRV_MINOR_OSS(cidx
, SNDRV_MINOR_OSS_DMMIDI1
);
195 unregister_sound_special(track2
);
196 snd_oss_minors
[track2
] = NULL
;
198 snd_oss_minors
[minor
] = NULL
;
199 mutex_unlock(&sound_oss_mutex
);
204 EXPORT_SYMBOL(snd_unregister_oss_device
);
210 #ifdef CONFIG_PROC_FS
212 static struct snd_info_entry
*snd_minor_info_oss_entry
;
214 static const char *snd_oss_device_type_name(int type
)
217 case SNDRV_OSS_DEVICE_TYPE_MIXER
:
219 case SNDRV_OSS_DEVICE_TYPE_SEQUENCER
:
220 case SNDRV_OSS_DEVICE_TYPE_MUSIC
:
222 case SNDRV_OSS_DEVICE_TYPE_PCM
:
223 return "digital audio";
224 case SNDRV_OSS_DEVICE_TYPE_MIDI
:
226 case SNDRV_OSS_DEVICE_TYPE_DMFM
:
227 return "hardware dependent";
233 static void snd_minor_info_oss_read(struct snd_info_entry
*entry
,
234 struct snd_info_buffer
*buffer
)
237 struct snd_minor
*mptr
;
239 mutex_lock(&sound_oss_mutex
);
240 for (minor
= 0; minor
< SNDRV_OSS_MINORS
; ++minor
) {
241 if (!(mptr
= snd_oss_minors
[minor
]))
244 snd_iprintf(buffer
, "%3i: [%i-%2i]: %s\n", minor
,
245 mptr
->card
, mptr
->device
,
246 snd_oss_device_type_name(mptr
->type
));
248 snd_iprintf(buffer
, "%3i: : %s\n", minor
,
249 snd_oss_device_type_name(mptr
->type
));
251 mutex_unlock(&sound_oss_mutex
);
255 int __init
snd_minor_info_oss_init(void)
257 struct snd_info_entry
*entry
;
259 entry
= snd_info_create_module_entry(THIS_MODULE
, "devices", snd_oss_root
);
261 entry
->c
.text
.read
= snd_minor_info_oss_read
;
262 if (snd_info_register(entry
) < 0) {
263 snd_info_free_entry(entry
);
267 snd_minor_info_oss_entry
= entry
;
271 int __exit
snd_minor_info_oss_done(void)
273 snd_info_free_entry(snd_minor_info_oss_entry
);
276 #endif /* CONFIG_PROC_FS */
278 #endif /* CONFIG_SND_OSSEMUL */