blob: efa476c5210ac52832d8e7154984d42717d8588b [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * Advanced Linux Sound Architecture
3 * Copyright (c) by Jaroslav Kysela <perex@suse.cz>
4 *
5 *
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.
10 *
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.
15 *
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
19 *
20 */
21
22#include <sound/driver.h>
23#include <linux/init.h>
24#include <linux/slab.h>
25#include <linux/time.h>
Takashi Iwai9a1a2a12005-11-22 15:46:41 +010026#include <linux/device.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070027#include <linux/moduleparam.h>
28#include <sound/core.h>
29#include <sound/minors.h>
30#include <sound/info.h>
31#include <sound/version.h>
32#include <sound/control.h>
33#include <sound/initval.h>
34#include <linux/kmod.h>
Ingo Molnar1a60d4c2006-01-16 16:29:08 +010035#include <linux/mutex.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070036
37#define SNDRV_OS_MINORS 256
38
39static int major = CONFIG_SND_MAJOR;
40int snd_major;
Takashi Iwaic0d3fb32006-04-28 15:13:39 +020041EXPORT_SYMBOL(snd_major);
42
Linus Torvalds1da177e2005-04-16 15:20:36 -070043static int cards_limit = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -070044
45MODULE_AUTHOR("Jaroslav Kysela <perex@suse.cz>");
46MODULE_DESCRIPTION("Advanced Linux Sound Architecture driver for soundcards.");
47MODULE_LICENSE("GPL");
48module_param(major, int, 0444);
49MODULE_PARM_DESC(major, "Major # for sound driver.");
50module_param(cards_limit, int, 0444);
51MODULE_PARM_DESC(cards_limit, "Count of auto-loadable soundcards.");
Linus Torvalds1da177e2005-04-16 15:20:36 -070052MODULE_ALIAS_CHARDEV_MAJOR(CONFIG_SND_MAJOR);
53
54/* this one holds the actual max. card number currently available.
55 * as default, it's identical with cards_limit option. when more
56 * modules are loaded manually, this limit number increases, too.
57 */
58int snd_ecards_limit;
Takashi Iwaic0d3fb32006-04-28 15:13:39 +020059EXPORT_SYMBOL(snd_ecards_limit);
Linus Torvalds1da177e2005-04-16 15:20:36 -070060
Clemens Ladisch6983b722005-11-20 14:05:49 +010061static struct snd_minor *snd_minors[SNDRV_OS_MINORS];
Ingo Molnar1a60d4c2006-01-16 16:29:08 +010062static DEFINE_MUTEX(sound_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -070063
gregkh@suse.de619e6662005-03-23 09:51:41 -080064extern struct class *sound_class;
Linus Torvalds1da177e2005-04-16 15:20:36 -070065
66
67#ifdef CONFIG_KMOD
68
69/**
70 * snd_request_card - try to load the card module
71 * @card: the card number
72 *
73 * Tries to load the module "snd-card-X" for the given card number
74 * via KMOD. Returns immediately if already loaded.
75 */
76void snd_request_card(int card)
77{
Linus Torvalds1da177e2005-04-16 15:20:36 -070078 if (! current->fs->root)
79 return;
Takashi Iwai746df942006-05-15 19:49:05 +020080 if (snd_card_locked(card))
Linus Torvalds1da177e2005-04-16 15:20:36 -070081 return;
82 if (card < 0 || card >= cards_limit)
83 return;
84 request_module("snd-card-%i", card);
85}
86
Takashi Iwaic0d3fb32006-04-28 15:13:39 +020087EXPORT_SYMBOL(snd_request_card);
88
Linus Torvalds1da177e2005-04-16 15:20:36 -070089static void snd_request_other(int minor)
90{
91 char *str;
92
93 if (! current->fs->root)
94 return;
95 switch (minor) {
96 case SNDRV_MINOR_SEQUENCER: str = "snd-seq"; break;
97 case SNDRV_MINOR_TIMER: str = "snd-timer"; break;
98 default: return;
99 }
100 request_module(str);
101}
102
103#endif /* request_module support */
104
Clemens Ladischf87135f2005-11-20 14:06:59 +0100105/**
106 * snd_lookup_minor_data - get user data of a registered device
107 * @minor: the minor number
108 * @type: device type (SNDRV_DEVICE_TYPE_XXX)
109 *
110 * Checks that a minor device with the specified type is registered, and returns
111 * its user data pointer.
112 */
113void *snd_lookup_minor_data(unsigned int minor, int type)
114{
115 struct snd_minor *mreg;
116 void *private_data;
117
Adrian Bunk3a63e4442006-03-13 14:14:10 +0100118 if (minor >= ARRAY_SIZE(snd_minors))
Clemens Ladischf87135f2005-11-20 14:06:59 +0100119 return NULL;
Ingo Molnar1a60d4c2006-01-16 16:29:08 +0100120 mutex_lock(&sound_mutex);
Clemens Ladischf87135f2005-11-20 14:06:59 +0100121 mreg = snd_minors[minor];
122 if (mreg && mreg->type == type)
123 private_data = mreg->private_data;
124 else
125 private_data = NULL;
Ingo Molnar1a60d4c2006-01-16 16:29:08 +0100126 mutex_unlock(&sound_mutex);
Clemens Ladischf87135f2005-11-20 14:06:59 +0100127 return private_data;
128}
129
Takashi Iwaic0d3fb32006-04-28 15:13:39 +0200130EXPORT_SYMBOL(snd_lookup_minor_data);
131
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132static int snd_open(struct inode *inode, struct file *file)
133{
Clemens Ladisch332682b2005-11-20 14:07:47 +0100134 unsigned int minor = iminor(inode);
Takashi Iwai512bbd62005-11-17 13:51:18 +0100135 struct snd_minor *mptr = NULL;
Arjan van de Ven99ac48f2006-03-28 01:56:41 -0800136 const struct file_operations *old_fops;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137 int err = 0;
138
Adrian Bunk3a63e4442006-03-13 14:14:10 +0100139 if (minor >= ARRAY_SIZE(snd_minors))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140 return -ENODEV;
Clemens Ladisch332682b2005-11-20 14:07:47 +0100141 mptr = snd_minors[minor];
142 if (mptr == NULL) {
143#ifdef CONFIG_KMOD
144 int dev = SNDRV_MINOR_DEVICE(minor);
145 if (dev == SNDRV_MINOR_CONTROL) {
146 /* /dev/aloadC? */
147 int card = SNDRV_MINOR_CARD(minor);
148 if (snd_cards[card] == NULL)
149 snd_request_card(card);
150 } else if (dev == SNDRV_MINOR_GLOBAL) {
151 /* /dev/aloadSEQ */
152 snd_request_other(minor);
153 }
154#ifndef CONFIG_SND_DYNAMIC_MINORS
155 /* /dev/snd/{controlC?,seq} */
156 mptr = snd_minors[minor];
157 if (mptr == NULL)
158#endif
159#endif
160 return -ENODEV;
161 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162 old_fops = file->f_op;
163 file->f_op = fops_get(mptr->f_ops);
164 if (file->f_op->open)
165 err = file->f_op->open(inode, file);
166 if (err) {
167 fops_put(file->f_op);
168 file->f_op = fops_get(old_fops);
169 }
170 fops_put(old_fops);
171 return err;
172}
173
174static struct file_operations snd_fops =
175{
176 .owner = THIS_MODULE,
177 .open = snd_open
178};
179
Clemens Ladisch332682b2005-11-20 14:07:47 +0100180#ifdef CONFIG_SND_DYNAMIC_MINORS
181static int snd_find_free_minor(void)
182{
183 int minor;
184
185 for (minor = 0; minor < ARRAY_SIZE(snd_minors); ++minor) {
186 /* skip minors still used statically for autoloading devices */
187 if (SNDRV_MINOR_DEVICE(minor) == SNDRV_MINOR_CONTROL ||
188 minor == SNDRV_MINOR_SEQUENCER)
189 continue;
190 if (!snd_minors[minor])
191 return minor;
192 }
193 return -EBUSY;
194}
195#else
Takashi Iwai512bbd62005-11-17 13:51:18 +0100196static int snd_kernel_minor(int type, struct snd_card *card, int dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197{
198 int minor;
199
200 switch (type) {
201 case SNDRV_DEVICE_TYPE_SEQUENCER:
202 case SNDRV_DEVICE_TYPE_TIMER:
203 minor = type;
204 break;
205 case SNDRV_DEVICE_TYPE_CONTROL:
206 snd_assert(card != NULL, return -EINVAL);
207 minor = SNDRV_MINOR(card->number, type);
208 break;
209 case SNDRV_DEVICE_TYPE_HWDEP:
210 case SNDRV_DEVICE_TYPE_RAWMIDI:
211 case SNDRV_DEVICE_TYPE_PCM_PLAYBACK:
212 case SNDRV_DEVICE_TYPE_PCM_CAPTURE:
213 snd_assert(card != NULL, return -EINVAL);
214 minor = SNDRV_MINOR(card->number, type + dev);
215 break;
216 default:
217 return -EINVAL;
218 }
219 snd_assert(minor >= 0 && minor < SNDRV_OS_MINORS, return -EINVAL);
220 return minor;
221}
Clemens Ladisch332682b2005-11-20 14:07:47 +0100222#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223
224/**
225 * snd_register_device - Register the ALSA device file for the card
226 * @type: the device type, SNDRV_DEVICE_TYPE_XXX
227 * @card: the card instance
228 * @dev: the device index
Clemens Ladisch2af677f2005-11-20 14:03:48 +0100229 * @f_ops: the file operations
Clemens Ladischf87135f2005-11-20 14:06:59 +0100230 * @private_data: user pointer for f_ops->open()
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231 * @name: the device file name
232 *
233 * Registers an ALSA device file for the given card.
234 * The operators have to be set in reg parameter.
235 *
236 * Retrurns zero if successful, or a negative error code on failure.
237 */
Clemens Ladisch2af677f2005-11-20 14:03:48 +0100238int snd_register_device(int type, struct snd_card *card, int dev,
Arjan van de Ven99ac48f2006-03-28 01:56:41 -0800239 const struct file_operations *f_ops, void *private_data,
Clemens Ladischf87135f2005-11-20 14:06:59 +0100240 const char *name)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241{
Clemens Ladisch332682b2005-11-20 14:07:47 +0100242 int minor;
Takashi Iwai512bbd62005-11-17 13:51:18 +0100243 struct snd_minor *preg;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244 struct device *device = NULL;
245
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246 snd_assert(name, return -EINVAL);
Clemens Ladisch562b5902006-07-05 11:24:22 +0200247 preg = kmalloc(sizeof *preg, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248 if (preg == NULL)
249 return -ENOMEM;
Clemens Ladisch2af677f2005-11-20 14:03:48 +0100250 preg->type = type;
Clemens Ladisch6983b722005-11-20 14:05:49 +0100251 preg->card = card ? card->number : -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700252 preg->device = dev;
Clemens Ladisch2af677f2005-11-20 14:03:48 +0100253 preg->f_ops = f_ops;
Clemens Ladischf87135f2005-11-20 14:06:59 +0100254 preg->private_data = private_data;
Ingo Molnar1a60d4c2006-01-16 16:29:08 +0100255 mutex_lock(&sound_mutex);
Clemens Ladisch332682b2005-11-20 14:07:47 +0100256#ifdef CONFIG_SND_DYNAMIC_MINORS
257 minor = snd_find_free_minor();
258#else
259 minor = snd_kernel_minor(type, card, dev);
260 if (minor >= 0 && snd_minors[minor])
261 minor = -EBUSY;
262#endif
263 if (minor < 0) {
Ingo Molnar1a60d4c2006-01-16 16:29:08 +0100264 mutex_unlock(&sound_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265 kfree(preg);
Clemens Ladisch332682b2005-11-20 14:07:47 +0100266 return minor;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267 }
Clemens Ladisch6983b722005-11-20 14:05:49 +0100268 snd_minors[minor] = preg;
Takashi Iwai3e23c652006-01-03 19:54:44 +0100269 if (card)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700270 device = card->dev;
Takashi Iwai9d19f482006-09-06 14:27:46 +0200271 preg->class_dev = class_device_create(sound_class, NULL,
272 MKDEV(major, minor),
273 device, "%s", name);
274 if (preg->class_dev)
275 class_set_devdata(preg->class_dev, private_data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276
Ingo Molnar1a60d4c2006-01-16 16:29:08 +0100277 mutex_unlock(&sound_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278 return 0;
279}
280
Takashi Iwaic0d3fb32006-04-28 15:13:39 +0200281EXPORT_SYMBOL(snd_register_device);
282
Takashi Iwai9d19f482006-09-06 14:27:46 +0200283/* find the matching minor record
284 * return the index of snd_minor, or -1 if not found
285 */
286static int find_snd_minor(int type, struct snd_card *card, int dev)
287{
288 int cardnum, minor;
289 struct snd_minor *mptr;
290
291 cardnum = card ? card->number : -1;
292 for (minor = 0; minor < ARRAY_SIZE(snd_minors); ++minor)
293 if ((mptr = snd_minors[minor]) != NULL &&
294 mptr->type == type &&
295 mptr->card == cardnum &&
296 mptr->device == dev)
297 return minor;
298 return -1;
299}
300
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301/**
302 * snd_unregister_device - unregister the device on the given card
303 * @type: the device type, SNDRV_DEVICE_TYPE_XXX
304 * @card: the card instance
305 * @dev: the device index
306 *
307 * Unregisters the device file already registered via
308 * snd_register_device().
309 *
310 * Returns zero if sucecessful, or a negative error code on failure
311 */
Takashi Iwai512bbd62005-11-17 13:51:18 +0100312int snd_unregister_device(int type, struct snd_card *card, int dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313{
Takashi Iwai9d19f482006-09-06 14:27:46 +0200314 int minor;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700315
Ingo Molnar1a60d4c2006-01-16 16:29:08 +0100316 mutex_lock(&sound_mutex);
Takashi Iwai9d19f482006-09-06 14:27:46 +0200317 minor = find_snd_minor(type, card, dev);
318 if (minor < 0) {
Ingo Molnar1a60d4c2006-01-16 16:29:08 +0100319 mutex_unlock(&sound_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320 return -EINVAL;
321 }
322
gregkh@suse.de619e6662005-03-23 09:51:41 -0800323 class_device_destroy(sound_class, MKDEV(major, minor));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324
Takashi Iwai9d19f482006-09-06 14:27:46 +0200325 kfree(snd_minors[minor]);
Clemens Ladisch6983b722005-11-20 14:05:49 +0100326 snd_minors[minor] = NULL;
Ingo Molnar1a60d4c2006-01-16 16:29:08 +0100327 mutex_unlock(&sound_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328 return 0;
329}
330
Takashi Iwaic0d3fb32006-04-28 15:13:39 +0200331EXPORT_SYMBOL(snd_unregister_device);
332
Takashi Iwai9d19f482006-09-06 14:27:46 +0200333int snd_add_device_sysfs_file(int type, struct snd_card *card, int dev,
334 const struct class_device_attribute *attr)
335{
336 int minor, ret = -EINVAL;
337 struct class_device *cdev;
338
339 mutex_lock(&sound_mutex);
340 minor = find_snd_minor(type, card, dev);
341 if (minor >= 0 && (cdev = snd_minors[minor]->class_dev) != NULL)
342 ret = class_device_create_file(cdev, attr);
343 mutex_unlock(&sound_mutex);
344 return ret;
345
346}
347
348EXPORT_SYMBOL(snd_add_device_sysfs_file);
349
Takashi Iwaie28563c2005-12-01 10:42:42 +0100350#ifdef CONFIG_PROC_FS
Linus Torvalds1da177e2005-04-16 15:20:36 -0700351/*
352 * INFO PART
353 */
354
Takashi Iwai6581f4e2006-05-17 17:14:51 +0200355static struct snd_info_entry *snd_minor_info_entry;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356
Clemens Ladisch2af677f2005-11-20 14:03:48 +0100357static const char *snd_device_type_name(int type)
358{
359 switch (type) {
360 case SNDRV_DEVICE_TYPE_CONTROL:
361 return "control";
362 case SNDRV_DEVICE_TYPE_HWDEP:
363 return "hardware dependent";
364 case SNDRV_DEVICE_TYPE_RAWMIDI:
365 return "raw midi";
366 case SNDRV_DEVICE_TYPE_PCM_PLAYBACK:
367 return "digital audio playback";
368 case SNDRV_DEVICE_TYPE_PCM_CAPTURE:
369 return "digital audio capture";
370 case SNDRV_DEVICE_TYPE_SEQUENCER:
371 return "sequencer";
372 case SNDRV_DEVICE_TYPE_TIMER:
373 return "timer";
374 default:
375 return "?";
376 }
377}
378
Takashi Iwai512bbd62005-11-17 13:51:18 +0100379static void snd_minor_info_read(struct snd_info_entry *entry, struct snd_info_buffer *buffer)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380{
Clemens Ladisch6983b722005-11-20 14:05:49 +0100381 int minor;
Takashi Iwai512bbd62005-11-17 13:51:18 +0100382 struct snd_minor *mptr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383
Ingo Molnar1a60d4c2006-01-16 16:29:08 +0100384 mutex_lock(&sound_mutex);
Clemens Ladisch6983b722005-11-20 14:05:49 +0100385 for (minor = 0; minor < SNDRV_OS_MINORS; ++minor) {
386 if (!(mptr = snd_minors[minor]))
387 continue;
388 if (mptr->card >= 0) {
389 if (mptr->device >= 0)
Clemens Ladischd0015442005-11-20 14:09:05 +0100390 snd_iprintf(buffer, "%3i: [%2i-%2i]: %s\n",
Clemens Ladisch6983b722005-11-20 14:05:49 +0100391 minor, mptr->card, mptr->device,
392 snd_device_type_name(mptr->type));
393 else
Clemens Ladischd0015442005-11-20 14:09:05 +0100394 snd_iprintf(buffer, "%3i: [%2i] : %s\n",
Clemens Ladisch6983b722005-11-20 14:05:49 +0100395 minor, mptr->card,
396 snd_device_type_name(mptr->type));
397 } else
Clemens Ladischd0015442005-11-20 14:09:05 +0100398 snd_iprintf(buffer, "%3i: : %s\n", minor,
Clemens Ladisch6983b722005-11-20 14:05:49 +0100399 snd_device_type_name(mptr->type));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700400 }
Ingo Molnar1a60d4c2006-01-16 16:29:08 +0100401 mutex_unlock(&sound_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700402}
403
404int __init snd_minor_info_init(void)
405{
Takashi Iwai512bbd62005-11-17 13:51:18 +0100406 struct snd_info_entry *entry;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700407
408 entry = snd_info_create_module_entry(THIS_MODULE, "devices", NULL);
409 if (entry) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700410 entry->c.text.read = snd_minor_info_read;
411 if (snd_info_register(entry) < 0) {
412 snd_info_free_entry(entry);
413 entry = NULL;
414 }
415 }
416 snd_minor_info_entry = entry;
417 return 0;
418}
419
420int __exit snd_minor_info_done(void)
421{
Takashi Iwai746d4a02006-06-23 14:37:59 +0200422 snd_info_free_entry(snd_minor_info_entry);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700423 return 0;
424}
Takashi Iwaie28563c2005-12-01 10:42:42 +0100425#endif /* CONFIG_PROC_FS */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700426
427/*
428 * INIT PART
429 */
430
431static int __init alsa_sound_init(void)
432{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433 snd_major = major;
434 snd_ecards_limit = cards_limit;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700435 if (register_chrdev(major, "alsa", &snd_fops)) {
436 snd_printk(KERN_ERR "unable to register native major device number %d\n", major);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700437 return -EIO;
438 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700439 if (snd_info_init() < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440 unregister_chrdev(major, "alsa");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441 return -ENOMEM;
442 }
443 snd_info_minor_register();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700444#ifndef MODULE
445 printk(KERN_INFO "Advanced Linux Sound Architecture Driver Version " CONFIG_SND_VERSION CONFIG_SND_DATE ".\n");
446#endif
447 return 0;
448}
449
450static void __exit alsa_sound_exit(void)
451{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452 snd_info_minor_unregister();
453 snd_info_done();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700454 if (unregister_chrdev(major, "alsa") != 0)
455 snd_printk(KERN_ERR "unable to unregister major device number %d\n", major);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700456}
457
458module_init(alsa_sound_init)
459module_exit(alsa_sound_exit)