blob: 6dad51596b701df7ed6c4e77232ad1f2c07f24d0 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Uwe Zeisbergerf30c2262006-10-03 23:01:26 +02002 * sound/oss/dev_table.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003 *
4 * Device call tables.
5 *
6 *
7 * Copyright (C) by Hannu Savolainen 1993-1997
8 *
9 * OSS/Free for Linux is distributed under the GNU GENERAL PUBLIC LICENSE (GPL)
10 * Version 2 (June 1991). See the "COPYING" file distributed with this software
11 * for more info.
12 */
13
14#include <linux/init.h>
15
Linus Torvalds1da177e2005-04-16 15:20:36 -070016#include "sound_config.h"
17
Adrian Bunkece7f772006-10-04 02:17:31 -070018struct audio_operations *audio_devs[MAX_AUDIO_DEV];
19EXPORT_SYMBOL(audio_devs);
20
21int num_audiodevs;
22EXPORT_SYMBOL(num_audiodevs);
23
24struct mixer_operations *mixer_devs[MAX_MIXER_DEV];
25EXPORT_SYMBOL(mixer_devs);
26
27int num_mixers;
28EXPORT_SYMBOL(num_mixers);
29
30struct synth_operations *synth_devs[MAX_SYNTH_DEV+MAX_MIDI_DEV];
31EXPORT_SYMBOL(synth_devs);
32
33int num_synths;
34
35struct midi_operations *midi_devs[MAX_MIDI_DEV];
36EXPORT_SYMBOL(midi_devs);
37
38int num_midis;
39EXPORT_SYMBOL(num_midis);
40
41struct sound_timer_operations *sound_timer_devs[MAX_TIMER_DEV] = {
42 &default_sound_timer, NULL
43};
44EXPORT_SYMBOL(sound_timer_devs);
45
46int num_sound_timers = 1;
47
48
Linus Torvalds1da177e2005-04-16 15:20:36 -070049static int sound_alloc_audiodev(void);
50
51int sound_install_audiodrv(int vers, char *name, struct audio_driver *driver,
52 int driver_size, int flags, unsigned int format_mask,
53 void *devc, int dma1, int dma2)
54{
55 struct audio_driver *d;
56 struct audio_operations *op;
57 int num;
58
59 if (vers != AUDIO_DRIVER_VERSION || driver_size > sizeof(struct audio_driver)) {
60 printk(KERN_ERR "Sound: Incompatible audio driver for %s\n", name);
Joe Perches9a303dc2015-03-23 12:44:49 -070061 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -070062 }
63 num = sound_alloc_audiodev();
64
65 if (num == -1) {
66 printk(KERN_ERR "sound: Too many audio drivers\n");
Joe Perches9a303dc2015-03-23 12:44:49 -070067 return -EBUSY;
Linus Torvalds1da177e2005-04-16 15:20:36 -070068 }
69 d = (struct audio_driver *) (sound_mem_blocks[sound_nblocks] = vmalloc(sizeof(struct audio_driver)));
Dan Carpenter444c1952010-01-03 12:39:27 +010070 sound_nblocks++;
71 if (sound_nblocks >= MAX_MEM_BLOCKS)
72 sound_nblocks = MAX_MEM_BLOCKS - 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -070073
Joe Perchesf724bd22010-11-04 20:08:12 -070074 op = (struct audio_operations *) (sound_mem_blocks[sound_nblocks] = vzalloc(sizeof(struct audio_operations)));
Dan Carpenter444c1952010-01-03 12:39:27 +010075 sound_nblocks++;
76 if (sound_nblocks >= MAX_MEM_BLOCKS)
77 sound_nblocks = MAX_MEM_BLOCKS - 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -070078
Linus Torvalds1da177e2005-04-16 15:20:36 -070079 if (d == NULL || op == NULL) {
80 printk(KERN_ERR "Sound: Can't allocate driver for (%s)\n", name);
81 sound_unload_audiodev(num);
Joe Perches9a303dc2015-03-23 12:44:49 -070082 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -070083 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070084 init_waitqueue_head(&op->in_sleeper);
85 init_waitqueue_head(&op->out_sleeper);
86 init_waitqueue_head(&op->poll_sleeper);
87 if (driver_size < sizeof(struct audio_driver))
88 memset((char *) d, 0, sizeof(struct audio_driver));
89
90 memcpy((char *) d, (char *) driver, driver_size);
91
92 op->d = d;
93 strlcpy(op->name, name, sizeof(op->name));
94 op->flags = flags;
95 op->format_mask = format_mask;
96 op->devc = devc;
97
98 /*
99 * Hardcoded defaults
100 */
101 audio_devs[num] = op;
102
103 DMAbuf_init(num, dma1, dma2);
104
105 audio_init_devices();
106 return num;
107}
Adrian Bunkece7f772006-10-04 02:17:31 -0700108EXPORT_SYMBOL(sound_install_audiodrv);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109
110int sound_install_mixer(int vers, char *name, struct mixer_operations *driver,
111 int driver_size, void *devc)
112{
113 struct mixer_operations *op;
114
115 int n = sound_alloc_mixerdev();
116
117 if (n == -1) {
118 printk(KERN_ERR "Sound: Too many mixer drivers\n");
119 return -EBUSY;
120 }
121 if (vers != MIXER_DRIVER_VERSION ||
122 driver_size > sizeof(struct mixer_operations)) {
123 printk(KERN_ERR "Sound: Incompatible mixer driver for %s\n", name);
124 return -EINVAL;
125 }
126
127 /* FIXME: This leaks a mixer_operations struct every time its called
128 until you unload sound! */
129
Joe Perchesf724bd22010-11-04 20:08:12 -0700130 op = (struct mixer_operations *) (sound_mem_blocks[sound_nblocks] = vzalloc(sizeof(struct mixer_operations)));
Dan Carpenter444c1952010-01-03 12:39:27 +0100131 sound_nblocks++;
132 if (sound_nblocks >= MAX_MEM_BLOCKS)
133 sound_nblocks = MAX_MEM_BLOCKS - 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135 if (op == NULL) {
136 printk(KERN_ERR "Sound: Can't allocate mixer driver for (%s)\n", name);
137 return -ENOMEM;
138 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139 memcpy((char *) op, (char *) driver, driver_size);
140
141 strlcpy(op->name, name, sizeof(op->name));
142 op->devc = devc;
143
144 mixer_devs[n] = op;
145 return n;
146}
Adrian Bunkece7f772006-10-04 02:17:31 -0700147EXPORT_SYMBOL(sound_install_mixer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148
149void sound_unload_audiodev(int dev)
150{
151 if (dev != -1) {
152 DMAbuf_deinit(dev);
153 audio_devs[dev] = NULL;
154 unregister_sound_dsp((dev<<4)+3);
155 }
156}
Adrian Bunkece7f772006-10-04 02:17:31 -0700157EXPORT_SYMBOL(sound_unload_audiodev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158
159static int sound_alloc_audiodev(void)
160{
161 int i = register_sound_dsp(&oss_sound_fops, -1);
162 if(i==-1)
163 return i;
164 i>>=4;
165 if(i>=num_audiodevs)
166 num_audiodevs = i + 1;
167 return i;
168}
169
170int sound_alloc_mididev(void)
171{
172 int i = register_sound_midi(&oss_sound_fops, -1);
173 if(i==-1)
174 return i;
175 i>>=4;
176 if(i>=num_midis)
177 num_midis = i + 1;
178 return i;
179}
Adrian Bunkece7f772006-10-04 02:17:31 -0700180EXPORT_SYMBOL(sound_alloc_mididev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181
182int sound_alloc_synthdev(void)
183{
184 int i;
185
186 for (i = 0; i < MAX_SYNTH_DEV; i++) {
187 if (synth_devs[i] == NULL) {
188 if (i >= num_synths)
189 num_synths++;
190 return i;
191 }
192 }
193 return -1;
194}
Adrian Bunkece7f772006-10-04 02:17:31 -0700195EXPORT_SYMBOL(sound_alloc_synthdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196
197int sound_alloc_mixerdev(void)
198{
199 int i = register_sound_mixer(&oss_sound_fops, -1);
200 if(i==-1)
201 return -1;
202 i>>=4;
203 if(i>=num_mixers)
204 num_mixers = i + 1;
205 return i;
206}
Adrian Bunkece7f772006-10-04 02:17:31 -0700207EXPORT_SYMBOL(sound_alloc_mixerdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208
209int sound_alloc_timerdev(void)
210{
211 int i;
212
213 for (i = 0; i < MAX_TIMER_DEV; i++) {
214 if (sound_timer_devs[i] == NULL) {
215 if (i >= num_sound_timers)
216 num_sound_timers++;
217 return i;
218 }
219 }
220 return -1;
221}
Adrian Bunkece7f772006-10-04 02:17:31 -0700222EXPORT_SYMBOL(sound_alloc_timerdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223
224void sound_unload_mixerdev(int dev)
225{
226 if (dev != -1) {
227 mixer_devs[dev] = NULL;
228 unregister_sound_mixer(dev<<4);
229 num_mixers--;
230 }
231}
Adrian Bunkece7f772006-10-04 02:17:31 -0700232EXPORT_SYMBOL(sound_unload_mixerdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233
234void sound_unload_mididev(int dev)
235{
236 if (dev != -1) {
237 midi_devs[dev] = NULL;
238 unregister_sound_midi((dev<<4)+2);
239 }
240}
Adrian Bunkece7f772006-10-04 02:17:31 -0700241EXPORT_SYMBOL(sound_unload_mididev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242
243void sound_unload_synthdev(int dev)
244{
245 if (dev != -1)
246 synth_devs[dev] = NULL;
247}
Adrian Bunkece7f772006-10-04 02:17:31 -0700248EXPORT_SYMBOL(sound_unload_synthdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249
250void sound_unload_timerdev(int dev)
251{
252 if (dev != -1)
253 sound_timer_devs[dev] = NULL;
254}
Adrian Bunkece7f772006-10-04 02:17:31 -0700255EXPORT_SYMBOL(sound_unload_timerdev);
256