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>
23 #include <linux/init.h>
24 #include <linux/slab.h>
25 #include <linux/time.h>
26 #include <linux/device.h>
27 #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>
35 #include <linux/devfs_fs_kernel.h>
36 #include <linux/mutex.h>
38 #define SNDRV_OS_MINORS 256
40 static int major
= CONFIG_SND_MAJOR
;
42 static int cards_limit
= 1;
43 static int device_mode
= S_IFCHR
| S_IRUGO
| S_IWUGO
;
45 MODULE_AUTHOR("Jaroslav Kysela <perex@suse.cz>");
46 MODULE_DESCRIPTION("Advanced Linux Sound Architecture driver for soundcards.");
47 MODULE_LICENSE("GPL");
48 module_param(major
, int, 0444);
49 MODULE_PARM_DESC(major
, "Major # for sound driver.");
50 module_param(cards_limit
, int, 0444);
51 MODULE_PARM_DESC(cards_limit
, "Count of auto-loadable soundcards.");
52 #ifdef CONFIG_DEVFS_FS
53 module_param(device_mode
, int, 0444);
54 MODULE_PARM_DESC(device_mode
, "Device file permission mask for devfs.");
56 MODULE_ALIAS_CHARDEV_MAJOR(CONFIG_SND_MAJOR
);
58 /* this one holds the actual max. card number currently available.
59 * as default, it's identical with cards_limit option. when more
60 * modules are loaded manually, this limit number increases, too.
64 static struct snd_minor
*snd_minors
[SNDRV_OS_MINORS
];
65 static DEFINE_MUTEX(sound_mutex
);
67 extern struct class *sound_class
;
73 * snd_request_card - try to load the card module
74 * @card: the card number
76 * Tries to load the module "snd-card-X" for the given card number
77 * via KMOD. Returns immediately if already loaded.
79 void snd_request_card(int card
)
83 if (! current
->fs
->root
)
85 read_lock(&snd_card_rwlock
);
86 locked
= snd_cards_lock
& (1 << card
);
87 read_unlock(&snd_card_rwlock
);
90 if (card
< 0 || card
>= cards_limit
)
92 request_module("snd-card-%i", card
);
95 static void snd_request_other(int minor
)
99 if (! current
->fs
->root
)
102 case SNDRV_MINOR_SEQUENCER
: str
= "snd-seq"; break;
103 case SNDRV_MINOR_TIMER
: str
= "snd-timer"; break;
109 #endif /* request_module support */
112 * snd_lookup_minor_data - get user data of a registered device
113 * @minor: the minor number
114 * @type: device type (SNDRV_DEVICE_TYPE_XXX)
116 * Checks that a minor device with the specified type is registered, and returns
117 * its user data pointer.
119 void *snd_lookup_minor_data(unsigned int minor
, int type
)
121 struct snd_minor
*mreg
;
124 if (minor
>= ARRAY_SIZE(snd_minors
))
126 mutex_lock(&sound_mutex
);
127 mreg
= snd_minors
[minor
];
128 if (mreg
&& mreg
->type
== type
)
129 private_data
= mreg
->private_data
;
132 mutex_unlock(&sound_mutex
);
136 static int snd_open(struct inode
*inode
, struct file
*file
)
138 unsigned int minor
= iminor(inode
);
139 struct snd_minor
*mptr
= NULL
;
140 const struct file_operations
*old_fops
;
143 if (minor
>= ARRAY_SIZE(snd_minors
))
145 mptr
= snd_minors
[minor
];
148 int dev
= SNDRV_MINOR_DEVICE(minor
);
149 if (dev
== SNDRV_MINOR_CONTROL
) {
151 int card
= SNDRV_MINOR_CARD(minor
);
152 if (snd_cards
[card
] == NULL
)
153 snd_request_card(card
);
154 } else if (dev
== SNDRV_MINOR_GLOBAL
) {
156 snd_request_other(minor
);
158 #ifndef CONFIG_SND_DYNAMIC_MINORS
159 /* /dev/snd/{controlC?,seq} */
160 mptr
= snd_minors
[minor
];
166 old_fops
= file
->f_op
;
167 file
->f_op
= fops_get(mptr
->f_ops
);
168 if (file
->f_op
->open
)
169 err
= file
->f_op
->open(inode
, file
);
171 fops_put(file
->f_op
);
172 file
->f_op
= fops_get(old_fops
);
178 static struct file_operations snd_fops
=
180 .owner
= THIS_MODULE
,
184 #ifdef CONFIG_SND_DYNAMIC_MINORS
185 static int snd_find_free_minor(void)
189 for (minor
= 0; minor
< ARRAY_SIZE(snd_minors
); ++minor
) {
190 /* skip minors still used statically for autoloading devices */
191 if (SNDRV_MINOR_DEVICE(minor
) == SNDRV_MINOR_CONTROL
||
192 minor
== SNDRV_MINOR_SEQUENCER
)
194 if (!snd_minors
[minor
])
200 static int snd_kernel_minor(int type
, struct snd_card
*card
, int dev
)
205 case SNDRV_DEVICE_TYPE_SEQUENCER
:
206 case SNDRV_DEVICE_TYPE_TIMER
:
209 case SNDRV_DEVICE_TYPE_CONTROL
:
210 snd_assert(card
!= NULL
, return -EINVAL
);
211 minor
= SNDRV_MINOR(card
->number
, type
);
213 case SNDRV_DEVICE_TYPE_HWDEP
:
214 case SNDRV_DEVICE_TYPE_RAWMIDI
:
215 case SNDRV_DEVICE_TYPE_PCM_PLAYBACK
:
216 case SNDRV_DEVICE_TYPE_PCM_CAPTURE
:
217 snd_assert(card
!= NULL
, return -EINVAL
);
218 minor
= SNDRV_MINOR(card
->number
, type
+ dev
);
223 snd_assert(minor
>= 0 && minor
< SNDRV_OS_MINORS
, return -EINVAL
);
229 * snd_register_device - Register the ALSA device file for the card
230 * @type: the device type, SNDRV_DEVICE_TYPE_XXX
231 * @card: the card instance
232 * @dev: the device index
233 * @f_ops: the file operations
234 * @private_data: user pointer for f_ops->open()
235 * @name: the device file name
237 * Registers an ALSA device file for the given card.
238 * The operators have to be set in reg parameter.
240 * Retrurns zero if successful, or a negative error code on failure.
242 int snd_register_device(int type
, struct snd_card
*card
, int dev
,
243 const struct file_operations
*f_ops
, void *private_data
,
247 struct snd_minor
*preg
;
248 struct device
*device
= NULL
;
250 snd_assert(name
, return -EINVAL
);
251 preg
= kmalloc(sizeof(struct snd_minor
) + strlen(name
) + 1, GFP_KERNEL
);
255 preg
->card
= card
? card
->number
: -1;
258 preg
->private_data
= private_data
;
259 strcpy(preg
->name
, name
);
260 mutex_lock(&sound_mutex
);
261 #ifdef CONFIG_SND_DYNAMIC_MINORS
262 minor
= snd_find_free_minor();
264 minor
= snd_kernel_minor(type
, card
, dev
);
265 if (minor
>= 0 && snd_minors
[minor
])
269 mutex_unlock(&sound_mutex
);
273 snd_minors
[minor
] = preg
;
274 if (type
!= SNDRV_DEVICE_TYPE_CONTROL
|| preg
->card
>= cards_limit
)
275 devfs_mk_cdev(MKDEV(major
, minor
), S_IFCHR
| device_mode
, "snd/%s", name
);
278 class_device_create(sound_class
, NULL
, MKDEV(major
, minor
), device
, "%s", name
);
280 mutex_unlock(&sound_mutex
);
285 * snd_unregister_device - unregister the device on the given card
286 * @type: the device type, SNDRV_DEVICE_TYPE_XXX
287 * @card: the card instance
288 * @dev: the device index
290 * Unregisters the device file already registered via
291 * snd_register_device().
293 * Returns zero if sucecessful, or a negative error code on failure
295 int snd_unregister_device(int type
, struct snd_card
*card
, int dev
)
298 struct snd_minor
*mptr
;
300 cardnum
= card
? card
->number
: -1;
301 mutex_lock(&sound_mutex
);
302 for (minor
= 0; minor
< ARRAY_SIZE(snd_minors
); ++minor
)
303 if ((mptr
= snd_minors
[minor
]) != NULL
&&
304 mptr
->type
== type
&&
305 mptr
->card
== cardnum
&&
308 if (minor
== ARRAY_SIZE(snd_minors
)) {
309 mutex_unlock(&sound_mutex
);
313 if (mptr
->type
!= SNDRV_DEVICE_TYPE_CONTROL
||
314 mptr
->card
>= cards_limit
) /* created in sound.c */
315 devfs_remove("snd/%s", mptr
->name
);
316 class_device_destroy(sound_class
, MKDEV(major
, minor
));
318 snd_minors
[minor
] = NULL
;
319 mutex_unlock(&sound_mutex
);
324 #ifdef CONFIG_PROC_FS
329 static struct snd_info_entry
*snd_minor_info_entry
= NULL
;
331 static const char *snd_device_type_name(int type
)
334 case SNDRV_DEVICE_TYPE_CONTROL
:
336 case SNDRV_DEVICE_TYPE_HWDEP
:
337 return "hardware dependent";
338 case SNDRV_DEVICE_TYPE_RAWMIDI
:
340 case SNDRV_DEVICE_TYPE_PCM_PLAYBACK
:
341 return "digital audio playback";
342 case SNDRV_DEVICE_TYPE_PCM_CAPTURE
:
343 return "digital audio capture";
344 case SNDRV_DEVICE_TYPE_SEQUENCER
:
346 case SNDRV_DEVICE_TYPE_TIMER
:
353 static void snd_minor_info_read(struct snd_info_entry
*entry
, struct snd_info_buffer
*buffer
)
356 struct snd_minor
*mptr
;
358 mutex_lock(&sound_mutex
);
359 for (minor
= 0; minor
< SNDRV_OS_MINORS
; ++minor
) {
360 if (!(mptr
= snd_minors
[minor
]))
362 if (mptr
->card
>= 0) {
363 if (mptr
->device
>= 0)
364 snd_iprintf(buffer
, "%3i: [%2i-%2i]: %s\n",
365 minor
, mptr
->card
, mptr
->device
,
366 snd_device_type_name(mptr
->type
));
368 snd_iprintf(buffer
, "%3i: [%2i] : %s\n",
370 snd_device_type_name(mptr
->type
));
372 snd_iprintf(buffer
, "%3i: : %s\n", minor
,
373 snd_device_type_name(mptr
->type
));
375 mutex_unlock(&sound_mutex
);
378 int __init
snd_minor_info_init(void)
380 struct snd_info_entry
*entry
;
382 entry
= snd_info_create_module_entry(THIS_MODULE
, "devices", NULL
);
384 entry
->c
.text
.read_size
= PAGE_SIZE
;
385 entry
->c
.text
.read
= snd_minor_info_read
;
386 if (snd_info_register(entry
) < 0) {
387 snd_info_free_entry(entry
);
391 snd_minor_info_entry
= entry
;
395 int __exit
snd_minor_info_done(void)
397 if (snd_minor_info_entry
)
398 snd_info_unregister(snd_minor_info_entry
);
401 #endif /* CONFIG_PROC_FS */
407 static int __init
alsa_sound_init(void)
412 snd_ecards_limit
= cards_limit
;
414 if (register_chrdev(major
, "alsa", &snd_fops
)) {
415 snd_printk(KERN_ERR
"unable to register native major device number %d\n", major
);
419 if (snd_info_init() < 0) {
420 unregister_chrdev(major
, "alsa");
424 snd_info_minor_register();
425 for (controlnum
= 0; controlnum
< cards_limit
; controlnum
++)
426 devfs_mk_cdev(MKDEV(major
, controlnum
<<5), S_IFCHR
| device_mode
, "snd/controlC%d", controlnum
);
428 printk(KERN_INFO
"Advanced Linux Sound Architecture Driver Version " CONFIG_SND_VERSION CONFIG_SND_DATE
".\n");
433 static void __exit
alsa_sound_exit(void)
437 for (controlnum
= 0; controlnum
< cards_limit
; controlnum
++)
438 devfs_remove("snd/controlC%d", controlnum
);
440 snd_info_minor_unregister();
442 if (unregister_chrdev(major
, "alsa") != 0)
443 snd_printk(KERN_ERR
"unable to unregister major device number %d\n", major
);
447 module_init(alsa_sound_init
)
448 module_exit(alsa_sound_exit
)
451 EXPORT_SYMBOL(snd_major
);
452 EXPORT_SYMBOL(snd_ecards_limit
);
453 #if defined(CONFIG_KMOD)
454 EXPORT_SYMBOL(snd_request_card
);
456 EXPORT_SYMBOL(snd_register_device
);
457 EXPORT_SYMBOL(snd_unregister_device
);
458 EXPORT_SYMBOL(snd_lookup_minor_data
);
459 #if defined(CONFIG_SND_OSSEMUL)
460 EXPORT_SYMBOL(snd_register_oss_device
);
461 EXPORT_SYMBOL(snd_unregister_oss_device
);
462 EXPORT_SYMBOL(snd_lookup_oss_minor_data
);
465 EXPORT_SYMBOL(copy_to_user_fromio
);
466 EXPORT_SYMBOL(copy_from_user_toio
);
468 EXPORT_SYMBOL(snd_cards
);
469 #if defined(CONFIG_SND_MIXER_OSS) || defined(CONFIG_SND_MIXER_OSS_MODULE)
470 EXPORT_SYMBOL(snd_mixer_oss_notify_callback
);
472 EXPORT_SYMBOL(snd_card_new
);
473 EXPORT_SYMBOL(snd_card_disconnect
);
474 EXPORT_SYMBOL(snd_card_free
);
475 EXPORT_SYMBOL(snd_card_free_in_thread
);
476 EXPORT_SYMBOL(snd_card_register
);
477 EXPORT_SYMBOL(snd_component_add
);
478 EXPORT_SYMBOL(snd_card_file_add
);
479 EXPORT_SYMBOL(snd_card_file_remove
);
481 EXPORT_SYMBOL(snd_power_wait
);
484 EXPORT_SYMBOL(snd_device_new
);
485 EXPORT_SYMBOL(snd_device_register
);
486 EXPORT_SYMBOL(snd_device_free
);
488 #ifdef CONFIG_ISA_DMA_API
489 EXPORT_SYMBOL(snd_dma_program
);
490 EXPORT_SYMBOL(snd_dma_disable
);
491 EXPORT_SYMBOL(snd_dma_pointer
);
494 #ifdef CONFIG_PROC_FS
495 EXPORT_SYMBOL(snd_seq_root
);
496 EXPORT_SYMBOL(snd_iprintf
);
497 EXPORT_SYMBOL(snd_info_get_line
);
498 EXPORT_SYMBOL(snd_info_get_str
);
499 EXPORT_SYMBOL(snd_info_create_module_entry
);
500 EXPORT_SYMBOL(snd_info_create_card_entry
);
501 EXPORT_SYMBOL(snd_info_free_entry
);
502 EXPORT_SYMBOL(snd_info_register
);
503 EXPORT_SYMBOL(snd_info_unregister
);
504 EXPORT_SYMBOL(snd_card_proc_new
);
507 #if defined(CONFIG_SND_OSSEMUL) && defined(CONFIG_PROC_FS)
508 EXPORT_SYMBOL(snd_oss_info_register
);
511 EXPORT_SYMBOL(snd_ctl_new
);
512 EXPORT_SYMBOL(snd_ctl_new1
);
513 EXPORT_SYMBOL(snd_ctl_free_one
);
514 EXPORT_SYMBOL(snd_ctl_add
);
515 EXPORT_SYMBOL(snd_ctl_remove
);
516 EXPORT_SYMBOL(snd_ctl_remove_id
);
517 EXPORT_SYMBOL(snd_ctl_rename_id
);
518 EXPORT_SYMBOL(snd_ctl_find_numid
);
519 EXPORT_SYMBOL(snd_ctl_find_id
);
520 EXPORT_SYMBOL(snd_ctl_notify
);
521 EXPORT_SYMBOL(snd_ctl_register_ioctl
);
522 EXPORT_SYMBOL(snd_ctl_unregister_ioctl
);
524 EXPORT_SYMBOL(snd_ctl_register_ioctl_compat
);
525 EXPORT_SYMBOL(snd_ctl_unregister_ioctl_compat
);
527 EXPORT_SYMBOL(snd_ctl_elem_read
);
528 EXPORT_SYMBOL(snd_ctl_elem_write
);
530 EXPORT_SYMBOL(release_and_free_resource
);
531 #ifdef CONFIG_SND_VERBOSE_PRINTK
532 EXPORT_SYMBOL(snd_verbose_printk
);
534 #if defined(CONFIG_SND_DEBUG) && defined(CONFIG_SND_VERBOSE_PRINTK)
535 EXPORT_SYMBOL(snd_verbose_printd
);