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 !IS_ENABLED(CONFIG_SOUND)
25 #error "Enable the OSS soundcore multiplexer (CONFIG_SOUND) in the kernel."
28 #include <linux/init.h>
29 #include <linux/export.h>
30 #include <linux/slab.h>
31 #include <linux/time.h>
32 #include <sound/core.h>
33 #include <sound/minors.h>
34 #include <sound/info.h>
35 #include <linux/sound.h>
36 #include <linux/mutex.h>
38 #define SNDRV_OSS_MINORS 256
40 static struct snd_minor
*snd_oss_minors
[SNDRV_OSS_MINORS
];
41 static DEFINE_MUTEX(sound_oss_mutex
);
43 /* NOTE: This function increments the refcount of the associated card like
44 * snd_lookup_minor_data(); the caller must call snd_card_unref() appropriately
46 void *snd_lookup_oss_minor_data(unsigned int minor
, int type
)
48 struct snd_minor
*mreg
;
51 if (minor
>= ARRAY_SIZE(snd_oss_minors
))
53 mutex_lock(&sound_oss_mutex
);
54 mreg
= snd_oss_minors
[minor
];
55 if (mreg
&& mreg
->type
== type
) {
56 private_data
= mreg
->private_data
;
57 if (private_data
&& mreg
->card_ptr
)
58 get_device(&mreg
->card_ptr
->card_dev
);
61 mutex_unlock(&sound_oss_mutex
);
65 EXPORT_SYMBOL(snd_lookup_oss_minor_data
);
67 static int snd_oss_kernel_minor(int type
, struct snd_card
*card
, int dev
)
72 case SNDRV_OSS_DEVICE_TYPE_MIXER
:
73 if (snd_BUG_ON(!card
|| dev
< 0 || dev
> 1))
75 minor
= SNDRV_MINOR_OSS(card
->number
, (dev
? SNDRV_MINOR_OSS_MIXER1
: SNDRV_MINOR_OSS_MIXER
));
77 case SNDRV_OSS_DEVICE_TYPE_SEQUENCER
:
78 minor
= SNDRV_MINOR_OSS_SEQUENCER
;
80 case SNDRV_OSS_DEVICE_TYPE_MUSIC
:
81 minor
= SNDRV_MINOR_OSS_MUSIC
;
83 case SNDRV_OSS_DEVICE_TYPE_PCM
:
84 if (snd_BUG_ON(!card
|| dev
< 0 || dev
> 1))
86 minor
= SNDRV_MINOR_OSS(card
->number
, (dev
? SNDRV_MINOR_OSS_PCM1
: SNDRV_MINOR_OSS_PCM
));
88 case SNDRV_OSS_DEVICE_TYPE_MIDI
:
89 if (snd_BUG_ON(!card
|| dev
< 0 || dev
> 1))
91 minor
= SNDRV_MINOR_OSS(card
->number
, (dev
? SNDRV_MINOR_OSS_MIDI1
: SNDRV_MINOR_OSS_MIDI
));
93 case SNDRV_OSS_DEVICE_TYPE_DMFM
:
94 minor
= SNDRV_MINOR_OSS(card
->number
, SNDRV_MINOR_OSS_DMFM
);
96 case SNDRV_OSS_DEVICE_TYPE_SNDSTAT
:
97 minor
= SNDRV_MINOR_OSS_SNDSTAT
;
102 if (minor
< 0 || minor
>= SNDRV_OSS_MINORS
)
107 int snd_register_oss_device(int type
, struct snd_card
*card
, int dev
,
108 const struct file_operations
*f_ops
, void *private_data
)
110 int minor
= snd_oss_kernel_minor(type
, card
, dev
);
112 struct snd_minor
*preg
;
113 int cidx
= SNDRV_MINOR_OSS_CARD(minor
);
115 int register1
= -1, register2
= -1;
116 struct device
*carddev
= snd_card_get_device_link(card
);
118 if (card
&& card
->number
>= SNDRV_MINOR_OSS_DEVICES
)
119 return 0; /* ignore silently */
122 preg
= kmalloc(sizeof(struct snd_minor
), GFP_KERNEL
);
126 preg
->card
= card
? card
->number
: -1;
129 preg
->private_data
= private_data
;
130 preg
->card_ptr
= card
;
131 mutex_lock(&sound_oss_mutex
);
132 snd_oss_minors
[minor
] = preg
;
133 minor_unit
= SNDRV_MINOR_OSS_DEVICE(minor
);
134 switch (minor_unit
) {
135 case SNDRV_MINOR_OSS_PCM
:
136 track2
= SNDRV_MINOR_OSS(cidx
, SNDRV_MINOR_OSS_AUDIO
);
138 case SNDRV_MINOR_OSS_MIDI
:
139 track2
= SNDRV_MINOR_OSS(cidx
, SNDRV_MINOR_OSS_DMMIDI
);
141 case SNDRV_MINOR_OSS_MIDI1
:
142 track2
= SNDRV_MINOR_OSS(cidx
, SNDRV_MINOR_OSS_DMMIDI1
);
145 register1
= register_sound_special_device(f_ops
, minor
, carddev
);
146 if (register1
!= minor
)
149 register2
= register_sound_special_device(f_ops
, track2
,
151 if (register2
!= track2
)
153 snd_oss_minors
[track2
] = preg
;
155 mutex_unlock(&sound_oss_mutex
);
160 unregister_sound_special(register2
);
162 unregister_sound_special(register1
);
163 snd_oss_minors
[minor
] = NULL
;
164 mutex_unlock(&sound_oss_mutex
);
169 EXPORT_SYMBOL(snd_register_oss_device
);
171 int snd_unregister_oss_device(int type
, struct snd_card
*card
, int dev
)
173 int minor
= snd_oss_kernel_minor(type
, card
, dev
);
174 int cidx
= SNDRV_MINOR_OSS_CARD(minor
);
176 struct snd_minor
*mptr
;
178 if (card
&& card
->number
>= SNDRV_MINOR_OSS_DEVICES
)
182 mutex_lock(&sound_oss_mutex
);
183 mptr
= snd_oss_minors
[minor
];
185 mutex_unlock(&sound_oss_mutex
);
188 unregister_sound_special(minor
);
189 switch (SNDRV_MINOR_OSS_DEVICE(minor
)) {
190 case SNDRV_MINOR_OSS_PCM
:
191 track2
= SNDRV_MINOR_OSS(cidx
, SNDRV_MINOR_OSS_AUDIO
);
193 case SNDRV_MINOR_OSS_MIDI
:
194 track2
= SNDRV_MINOR_OSS(cidx
, SNDRV_MINOR_OSS_DMMIDI
);
196 case SNDRV_MINOR_OSS_MIDI1
:
197 track2
= SNDRV_MINOR_OSS(cidx
, SNDRV_MINOR_OSS_DMMIDI1
);
201 unregister_sound_special(track2
);
202 snd_oss_minors
[track2
] = NULL
;
204 snd_oss_minors
[minor
] = NULL
;
205 mutex_unlock(&sound_oss_mutex
);
210 EXPORT_SYMBOL(snd_unregister_oss_device
);
216 #ifdef CONFIG_PROC_FS
218 static struct snd_info_entry
*snd_minor_info_oss_entry
;
220 static const char *snd_oss_device_type_name(int type
)
223 case SNDRV_OSS_DEVICE_TYPE_MIXER
:
225 case SNDRV_OSS_DEVICE_TYPE_SEQUENCER
:
226 case SNDRV_OSS_DEVICE_TYPE_MUSIC
:
228 case SNDRV_OSS_DEVICE_TYPE_PCM
:
229 return "digital audio";
230 case SNDRV_OSS_DEVICE_TYPE_MIDI
:
232 case SNDRV_OSS_DEVICE_TYPE_DMFM
:
233 return "hardware dependent";
239 static void snd_minor_info_oss_read(struct snd_info_entry
*entry
,
240 struct snd_info_buffer
*buffer
)
243 struct snd_minor
*mptr
;
245 mutex_lock(&sound_oss_mutex
);
246 for (minor
= 0; minor
< SNDRV_OSS_MINORS
; ++minor
) {
247 if (!(mptr
= snd_oss_minors
[minor
]))
250 snd_iprintf(buffer
, "%3i: [%i-%2i]: %s\n", minor
,
251 mptr
->card
, mptr
->device
,
252 snd_oss_device_type_name(mptr
->type
));
254 snd_iprintf(buffer
, "%3i: : %s\n", minor
,
255 snd_oss_device_type_name(mptr
->type
));
257 mutex_unlock(&sound_oss_mutex
);
261 int __init
snd_minor_info_oss_init(void)
263 struct snd_info_entry
*entry
;
265 entry
= snd_info_create_module_entry(THIS_MODULE
, "devices", snd_oss_root
);
267 entry
->c
.text
.read
= snd_minor_info_oss_read
;
268 if (snd_info_register(entry
) < 0) {
269 snd_info_free_entry(entry
);
273 snd_minor_info_oss_entry
= entry
;
277 int __exit
snd_minor_info_oss_done(void)
279 snd_info_free_entry(snd_minor_info_oss_entry
);
282 #endif /* CONFIG_PROC_FS */
284 #endif /* CONFIG_SND_OSSEMUL */