2 * Advanced Linux Sound Architecture
3 * Copyright (c) by Jaroslav Kysela <perex@suse.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 #include <sound/driver.h>
24 #ifdef CONFIG_SND_OSSEMUL
26 #if !defined(CONFIG_SOUND) && !(defined(MODULE) && defined(CONFIG_SOUND_MODULE))
27 #error "Enable the OSS soundcore multiplexer (CONFIG_SOUND) in the kernel."
30 #include <linux/init.h>
31 #include <linux/slab.h>
32 #include <linux/time.h>
33 #include <sound/core.h>
34 #include <sound/minors.h>
35 #include <sound/info.h>
36 #include <linux/sound.h>
37 #include <linux/mutex.h>
39 #define SNDRV_OSS_MINORS 128
41 static struct snd_minor
*snd_oss_minors
[SNDRV_OSS_MINORS
];
42 static DEFINE_MUTEX(sound_oss_mutex
);
44 void *snd_lookup_oss_minor_data(unsigned int minor
, int type
)
46 struct snd_minor
*mreg
;
49 if (minor
>= ARRAY_SIZE(snd_oss_minors
))
51 mutex_lock(&sound_oss_mutex
);
52 mreg
= snd_oss_minors
[minor
];
53 if (mreg
&& mreg
->type
== type
)
54 private_data
= mreg
->private_data
;
57 mutex_unlock(&sound_oss_mutex
);
61 static int snd_oss_kernel_minor(int type
, struct snd_card
*card
, int dev
)
66 case SNDRV_OSS_DEVICE_TYPE_MIXER
:
67 snd_assert(card
!= NULL
&& dev
<= 1, return -EINVAL
);
68 minor
= SNDRV_MINOR_OSS(card
->number
, (dev
? SNDRV_MINOR_OSS_MIXER1
: SNDRV_MINOR_OSS_MIXER
));
70 case SNDRV_OSS_DEVICE_TYPE_SEQUENCER
:
71 minor
= SNDRV_MINOR_OSS_SEQUENCER
;
73 case SNDRV_OSS_DEVICE_TYPE_MUSIC
:
74 minor
= SNDRV_MINOR_OSS_MUSIC
;
76 case SNDRV_OSS_DEVICE_TYPE_PCM
:
77 snd_assert(card
!= NULL
&& dev
<= 1, return -EINVAL
);
78 minor
= SNDRV_MINOR_OSS(card
->number
, (dev
? SNDRV_MINOR_OSS_PCM1
: SNDRV_MINOR_OSS_PCM
));
80 case SNDRV_OSS_DEVICE_TYPE_MIDI
:
81 snd_assert(card
!= NULL
&& dev
<= 1, return -EINVAL
);
82 minor
= SNDRV_MINOR_OSS(card
->number
, (dev
? SNDRV_MINOR_OSS_MIDI1
: SNDRV_MINOR_OSS_MIDI
));
84 case SNDRV_OSS_DEVICE_TYPE_DMFM
:
85 minor
= SNDRV_MINOR_OSS(card
->number
, SNDRV_MINOR_OSS_DMFM
);
87 case SNDRV_OSS_DEVICE_TYPE_SNDSTAT
:
88 minor
= SNDRV_MINOR_OSS_SNDSTAT
;
93 snd_assert(minor
>= 0 && minor
< SNDRV_OSS_MINORS
, return -EINVAL
);
97 int snd_register_oss_device(int type
, struct snd_card
*card
, int dev
,
98 const struct file_operations
*f_ops
, void *private_data
,
101 int minor
= snd_oss_kernel_minor(type
, card
, dev
);
103 struct snd_minor
*preg
;
104 int cidx
= SNDRV_MINOR_OSS_CARD(minor
);
106 int register1
= -1, register2
= -1;
107 struct device
*carddev
= NULL
;
109 if (card
&& card
->number
>= 8)
110 return 0; /* ignore silently */
113 preg
= kmalloc(sizeof(struct snd_minor
), GFP_KERNEL
);
117 preg
->card
= card
? card
->number
: -1;
120 preg
->private_data
= private_data
;
121 mutex_lock(&sound_oss_mutex
);
122 snd_oss_minors
[minor
] = preg
;
123 minor_unit
= SNDRV_MINOR_OSS_DEVICE(minor
);
124 switch (minor_unit
) {
125 case SNDRV_MINOR_OSS_PCM
:
126 track2
= SNDRV_MINOR_OSS(cidx
, SNDRV_MINOR_OSS_AUDIO
);
128 case SNDRV_MINOR_OSS_MIDI
:
129 track2
= SNDRV_MINOR_OSS(cidx
, SNDRV_MINOR_OSS_DMMIDI
);
131 case SNDRV_MINOR_OSS_MIDI1
:
132 track2
= SNDRV_MINOR_OSS(cidx
, SNDRV_MINOR_OSS_DMMIDI1
);
137 register1
= register_sound_special_device(f_ops
, minor
, carddev
);
138 if (register1
!= minor
)
141 register2
= register_sound_special_device(f_ops
, track2
,
143 if (register2
!= track2
)
145 snd_oss_minors
[track2
] = preg
;
147 mutex_unlock(&sound_oss_mutex
);
152 unregister_sound_special(register2
);
154 unregister_sound_special(register1
);
155 snd_oss_minors
[minor
] = NULL
;
156 mutex_unlock(&sound_oss_mutex
);
161 int snd_unregister_oss_device(int type
, struct snd_card
*card
, int dev
)
163 int minor
= snd_oss_kernel_minor(type
, card
, dev
);
164 int cidx
= SNDRV_MINOR_OSS_CARD(minor
);
166 struct snd_minor
*mptr
;
168 if (card
&& card
->number
>= 8)
172 mutex_lock(&sound_oss_mutex
);
173 mptr
= snd_oss_minors
[minor
];
175 mutex_unlock(&sound_oss_mutex
);
178 unregister_sound_special(minor
);
179 switch (SNDRV_MINOR_OSS_DEVICE(minor
)) {
180 case SNDRV_MINOR_OSS_PCM
:
181 track2
= SNDRV_MINOR_OSS(cidx
, SNDRV_MINOR_OSS_AUDIO
);
183 case SNDRV_MINOR_OSS_MIDI
:
184 track2
= SNDRV_MINOR_OSS(cidx
, SNDRV_MINOR_OSS_DMMIDI
);
186 case SNDRV_MINOR_OSS_MIDI1
:
187 track2
= SNDRV_MINOR_OSS(cidx
, SNDRV_MINOR_OSS_DMMIDI1
);
191 unregister_sound_special(track2
);
192 snd_oss_minors
[track2
] = NULL
;
194 snd_oss_minors
[minor
] = NULL
;
195 mutex_unlock(&sound_oss_mutex
);
204 #ifdef CONFIG_PROC_FS
206 static struct snd_info_entry
*snd_minor_info_oss_entry
= NULL
;
208 static const char *snd_oss_device_type_name(int type
)
211 case SNDRV_OSS_DEVICE_TYPE_MIXER
:
213 case SNDRV_OSS_DEVICE_TYPE_SEQUENCER
:
214 case SNDRV_OSS_DEVICE_TYPE_MUSIC
:
216 case SNDRV_OSS_DEVICE_TYPE_PCM
:
217 return "digital audio";
218 case SNDRV_OSS_DEVICE_TYPE_MIDI
:
220 case SNDRV_OSS_DEVICE_TYPE_DMFM
:
221 return "hardware dependent";
227 static void snd_minor_info_oss_read(struct snd_info_entry
*entry
,
228 struct snd_info_buffer
*buffer
)
231 struct snd_minor
*mptr
;
233 mutex_lock(&sound_oss_mutex
);
234 for (minor
= 0; minor
< SNDRV_OSS_MINORS
; ++minor
) {
235 if (!(mptr
= snd_oss_minors
[minor
]))
238 snd_iprintf(buffer
, "%3i: [%i-%2i]: %s\n", minor
,
239 mptr
->card
, mptr
->device
,
240 snd_oss_device_type_name(mptr
->type
));
242 snd_iprintf(buffer
, "%3i: : %s\n", minor
,
243 snd_oss_device_type_name(mptr
->type
));
245 mutex_unlock(&sound_oss_mutex
);
249 int __init
snd_minor_info_oss_init(void)
251 struct snd_info_entry
*entry
;
253 entry
= snd_info_create_module_entry(THIS_MODULE
, "devices", snd_oss_root
);
255 entry
->c
.text
.read_size
= PAGE_SIZE
;
256 entry
->c
.text
.read
= snd_minor_info_oss_read
;
257 if (snd_info_register(entry
) < 0) {
258 snd_info_free_entry(entry
);
262 snd_minor_info_oss_entry
= entry
;
266 int __exit
snd_minor_info_oss_done(void)
268 if (snd_minor_info_oss_entry
)
269 snd_info_unregister(snd_minor_info_oss_entry
);
272 #endif /* CONFIG_PROC_FS */
274 #endif /* CONFIG_SND_OSSEMUL */