sound_oss.c 7.5 KB
Newer Older
L
Linus Torvalds 已提交
1 2
/*
 *  Advanced Linux Sound Architecture
3
 *  Copyright (c) by Jaroslav Kysela <perex@perex.cz>
L
Linus Torvalds 已提交
4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
 *
 *
 *   This program is free software; you can redistribute it and/or modify
 *   it under the terms of the GNU General Public License as published by
 *   the Free Software Foundation; either version 2 of the License, or
 *   (at your option) any later version.
 *
 *   This program is distributed in the hope that it will be useful,
 *   but WITHOUT ANY WARRANTY; without even the implied warranty of
 *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 *   GNU General Public License for more details.
 *
 *   You should have received a copy of the GNU General Public License
 *   along with this program; if not, write to the Free Software
 *   Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
 *
 */

#ifdef CONFIG_SND_OSSEMUL

T
Takashi Iwai 已提交
24
#if !IS_ENABLED(CONFIG_SOUND)
L
Linus Torvalds 已提交
25 26 27 28
#error "Enable the OSS soundcore multiplexer (CONFIG_SOUND) in the kernel."
#endif

#include <linux/init.h>
29
#include <linux/export.h>
L
Linus Torvalds 已提交
30 31 32 33 34 35
#include <linux/slab.h>
#include <linux/time.h>
#include <sound/core.h>
#include <sound/minors.h>
#include <sound/info.h>
#include <linux/sound.h>
36
#include <linux/mutex.h>
L
Linus Torvalds 已提交
37

38
#define SNDRV_OSS_MINORS 256
L
Linus Torvalds 已提交
39

40
static struct snd_minor *snd_oss_minors[SNDRV_OSS_MINORS];
41
static DEFINE_MUTEX(sound_oss_mutex);
L
Linus Torvalds 已提交
42

43 44 45
/* NOTE: This function increments the refcount of the associated card like
 * snd_lookup_minor_data(); the caller must call snd_card_unref() appropriately
 */
46 47 48 49 50
void *snd_lookup_oss_minor_data(unsigned int minor, int type)
{
	struct snd_minor *mreg;
	void *private_data;

51
	if (minor >= ARRAY_SIZE(snd_oss_minors))
52
		return NULL;
53
	mutex_lock(&sound_oss_mutex);
54
	mreg = snd_oss_minors[minor];
55
	if (mreg && mreg->type == type) {
56
		private_data = mreg->private_data;
T
Takashi Iwai 已提交
57
		if (private_data && mreg->card_ptr)
58 59
			atomic_inc(&mreg->card_ptr->refcount);
	} else
60
		private_data = NULL;
61
	mutex_unlock(&sound_oss_mutex);
62 63 64
	return private_data;
}

65 66
EXPORT_SYMBOL(snd_lookup_oss_minor_data);

67
static int snd_oss_kernel_minor(int type, struct snd_card *card, int dev)
L
Linus Torvalds 已提交
68 69 70 71 72
{
	int minor;

	switch (type) {
	case SNDRV_OSS_DEVICE_TYPE_MIXER:
73 74
		if (snd_BUG_ON(!card || dev < 0 || dev > 1))
			return -EINVAL;
L
Linus Torvalds 已提交
75 76 77 78 79 80 81 82 83
		minor = SNDRV_MINOR_OSS(card->number, (dev ? SNDRV_MINOR_OSS_MIXER1 : SNDRV_MINOR_OSS_MIXER));
		break;
	case SNDRV_OSS_DEVICE_TYPE_SEQUENCER:
		minor = SNDRV_MINOR_OSS_SEQUENCER;
		break;
	case SNDRV_OSS_DEVICE_TYPE_MUSIC:
		minor = SNDRV_MINOR_OSS_MUSIC;
		break;
	case SNDRV_OSS_DEVICE_TYPE_PCM:
84 85
		if (snd_BUG_ON(!card || dev < 0 || dev > 1))
			return -EINVAL;
L
Linus Torvalds 已提交
86 87 88
		minor = SNDRV_MINOR_OSS(card->number, (dev ? SNDRV_MINOR_OSS_PCM1 : SNDRV_MINOR_OSS_PCM));
		break;
	case SNDRV_OSS_DEVICE_TYPE_MIDI:
89 90
		if (snd_BUG_ON(!card || dev < 0 || dev > 1))
			return -EINVAL;
L
Linus Torvalds 已提交
91 92 93 94 95 96 97 98 99 100 101
		minor = SNDRV_MINOR_OSS(card->number, (dev ? SNDRV_MINOR_OSS_MIDI1 : SNDRV_MINOR_OSS_MIDI));
		break;
	case SNDRV_OSS_DEVICE_TYPE_DMFM:
		minor = SNDRV_MINOR_OSS(card->number, SNDRV_MINOR_OSS_DMFM);
		break;
	case SNDRV_OSS_DEVICE_TYPE_SNDSTAT:
		minor = SNDRV_MINOR_OSS_SNDSTAT;
		break;
	default:
		return -EINVAL;
	}
102
	if (minor < 0 || minor >= SNDRV_OSS_MINORS)
103
		return -EINVAL;
L
Linus Torvalds 已提交
104 105 106
	return minor;
}

107
int snd_register_oss_device(int type, struct snd_card *card, int dev,
108
			    const struct file_operations *f_ops, void *private_data,
109
			    const char *name)
L
Linus Torvalds 已提交
110 111 112
{
	int minor = snd_oss_kernel_minor(type, card, dev);
	int minor_unit;
113
	struct snd_minor *preg;
L
Linus Torvalds 已提交
114 115 116
	int cidx = SNDRV_MINOR_OSS_CARD(minor);
	int track2 = -1;
	int register1 = -1, register2 = -1;
T
Takashi Iwai 已提交
117
	struct device *carddev = snd_card_get_device_link(card);
L
Linus Torvalds 已提交
118

119
	if (card && card->number >= SNDRV_MINOR_OSS_DEVICES)
120
		return 0; /* ignore silently */
L
Linus Torvalds 已提交
121 122
	if (minor < 0)
		return minor;
123
	preg = kmalloc(sizeof(struct snd_minor), GFP_KERNEL);
L
Linus Torvalds 已提交
124 125
	if (preg == NULL)
		return -ENOMEM;
126
	preg->type = type;
127
	preg->card = card ? card->number : -1;
L
Linus Torvalds 已提交
128
	preg->device = dev;
129
	preg->f_ops = f_ops;
130
	preg->private_data = private_data;
131
	preg->card_ptr = card;
132
	mutex_lock(&sound_oss_mutex);
133
	snd_oss_minors[minor] = preg;
L
Linus Torvalds 已提交
134 135 136 137 138 139 140 141 142 143 144 145
	minor_unit = SNDRV_MINOR_OSS_DEVICE(minor);
	switch (minor_unit) {
	case SNDRV_MINOR_OSS_PCM:
		track2 = SNDRV_MINOR_OSS(cidx, SNDRV_MINOR_OSS_AUDIO);
		break;
	case SNDRV_MINOR_OSS_MIDI:
		track2 = SNDRV_MINOR_OSS(cidx, SNDRV_MINOR_OSS_DMMIDI);
		break;
	case SNDRV_MINOR_OSS_MIDI1:
		track2 = SNDRV_MINOR_OSS(cidx, SNDRV_MINOR_OSS_DMMIDI1);
		break;
	}
146
	register1 = register_sound_special_device(f_ops, minor, carddev);
L
Linus Torvalds 已提交
147 148 149
	if (register1 != minor)
		goto __end;
	if (track2 >= 0) {
150 151
		register2 = register_sound_special_device(f_ops, track2,
							  carddev);
L
Linus Torvalds 已提交
152 153
		if (register2 != track2)
			goto __end;
154
		snd_oss_minors[track2] = preg;
L
Linus Torvalds 已提交
155
	}
156
	mutex_unlock(&sound_oss_mutex);
L
Linus Torvalds 已提交
157 158 159 160 161 162 163
	return 0;

      __end:
      	if (register2 >= 0)
      		unregister_sound_special(register2);
      	if (register1 >= 0)
      		unregister_sound_special(register1);
164
	snd_oss_minors[minor] = NULL;
165
	mutex_unlock(&sound_oss_mutex);
L
Linus Torvalds 已提交
166 167 168 169
	kfree(preg);
      	return -EBUSY;
}

170 171
EXPORT_SYMBOL(snd_register_oss_device);

172
int snd_unregister_oss_device(int type, struct snd_card *card, int dev)
L
Linus Torvalds 已提交
173 174 175 176
{
	int minor = snd_oss_kernel_minor(type, card, dev);
	int cidx = SNDRV_MINOR_OSS_CARD(minor);
	int track2 = -1;
177
	struct snd_minor *mptr;
L
Linus Torvalds 已提交
178

179
	if (card && card->number >= SNDRV_MINOR_OSS_DEVICES)
180
		return 0;
L
Linus Torvalds 已提交
181 182
	if (minor < 0)
		return minor;
183
	mutex_lock(&sound_oss_mutex);
184
	mptr = snd_oss_minors[minor];
L
Linus Torvalds 已提交
185
	if (mptr == NULL) {
186
		mutex_unlock(&sound_oss_mutex);
L
Linus Torvalds 已提交
187 188 189 190 191 192 193 194 195 196 197 198 199 200
		return -ENOENT;
	}
	unregister_sound_special(minor);
	switch (SNDRV_MINOR_OSS_DEVICE(minor)) {
	case SNDRV_MINOR_OSS_PCM:
		track2 = SNDRV_MINOR_OSS(cidx, SNDRV_MINOR_OSS_AUDIO);
		break;
	case SNDRV_MINOR_OSS_MIDI:
		track2 = SNDRV_MINOR_OSS(cidx, SNDRV_MINOR_OSS_DMMIDI);
		break;
	case SNDRV_MINOR_OSS_MIDI1:
		track2 = SNDRV_MINOR_OSS(cidx, SNDRV_MINOR_OSS_DMMIDI1);
		break;
	}
201
	if (track2 >= 0) {
L
Linus Torvalds 已提交
202
		unregister_sound_special(track2);
203 204
		snd_oss_minors[track2] = NULL;
	}
205
	snd_oss_minors[minor] = NULL;
206
	mutex_unlock(&sound_oss_mutex);
L
Linus Torvalds 已提交
207 208 209 210
	kfree(mptr);
	return 0;
}

211 212
EXPORT_SYMBOL(snd_unregister_oss_device);

L
Linus Torvalds 已提交
213 214 215 216 217 218
/*
 *  INFO PART
 */

#ifdef CONFIG_PROC_FS

219
static struct snd_info_entry *snd_minor_info_oss_entry;
L
Linus Torvalds 已提交
220

221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239
static const char *snd_oss_device_type_name(int type)
{
	switch (type) {
	case SNDRV_OSS_DEVICE_TYPE_MIXER:
		return "mixer";
	case SNDRV_OSS_DEVICE_TYPE_SEQUENCER:
	case SNDRV_OSS_DEVICE_TYPE_MUSIC:
		return "sequencer";
	case SNDRV_OSS_DEVICE_TYPE_PCM:
		return "digital audio";
	case SNDRV_OSS_DEVICE_TYPE_MIDI:
		return "raw midi";
	case SNDRV_OSS_DEVICE_TYPE_DMFM:
		return "hardware dependent";
	default:
		return "?";
	}
}

240 241
static void snd_minor_info_oss_read(struct snd_info_entry *entry,
				    struct snd_info_buffer *buffer)
L
Linus Torvalds 已提交
242
{
243
	int minor;
244
	struct snd_minor *mptr;
L
Linus Torvalds 已提交
245

246
	mutex_lock(&sound_oss_mutex);
247 248 249 250 251 252 253 254 255 256
	for (minor = 0; minor < SNDRV_OSS_MINORS; ++minor) {
		if (!(mptr = snd_oss_minors[minor]))
			continue;
		if (mptr->card >= 0)
			snd_iprintf(buffer, "%3i: [%i-%2i]: %s\n", minor,
				    mptr->card, mptr->device,
				    snd_oss_device_type_name(mptr->type));
		else
			snd_iprintf(buffer, "%3i:       : %s\n", minor,
				    snd_oss_device_type_name(mptr->type));
L
Linus Torvalds 已提交
257
	}
258
	mutex_unlock(&sound_oss_mutex);
L
Linus Torvalds 已提交
259 260 261 262 263
}


int __init snd_minor_info_oss_init(void)
{
264
	struct snd_info_entry *entry;
L
Linus Torvalds 已提交
265 266 267 268 269 270 271 272 273 274 275 276 277 278 279

	entry = snd_info_create_module_entry(THIS_MODULE, "devices", snd_oss_root);
	if (entry) {
		entry->c.text.read = snd_minor_info_oss_read;
		if (snd_info_register(entry) < 0) {
			snd_info_free_entry(entry);
			entry = NULL;
		}
	}
	snd_minor_info_oss_entry = entry;
	return 0;
}

int __exit snd_minor_info_oss_done(void)
{
280
	snd_info_free_entry(snd_minor_info_oss_entry);
L
Linus Torvalds 已提交
281 282
	return 0;
}
283
#endif /* CONFIG_PROC_FS */
L
Linus Torvalds 已提交
284 285

#endif /* CONFIG_SND_OSSEMUL */