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 #include <linux/init.h>
23 #include <linux/slab.h>
24 #include <linux/time.h>
25 #include <linux/device.h>
26 #include <linux/module.h>
27 #include <sound/core.h>
28 #include <sound/minors.h>
29 #include <sound/info.h>
30 #include <sound/control.h>
31 #include <sound/initval.h>
32 #include <linux/kmod.h>
33 #include <linux/mutex.h>
35 static int major
= CONFIG_SND_MAJOR
;
37 EXPORT_SYMBOL(snd_major
);
39 static int cards_limit
= 1;
41 MODULE_AUTHOR("Jaroslav Kysela <perex@perex.cz>");
42 MODULE_DESCRIPTION("Advanced Linux Sound Architecture driver for soundcards.");
43 MODULE_LICENSE("GPL");
44 module_param(major
, int, 0444);
45 MODULE_PARM_DESC(major
, "Major # for sound driver.");
46 module_param(cards_limit
, int, 0444);
47 MODULE_PARM_DESC(cards_limit
, "Count of auto-loadable soundcards.");
48 MODULE_ALIAS_CHARDEV_MAJOR(CONFIG_SND_MAJOR
);
50 /* this one holds the actual max. card number currently available.
51 * as default, it's identical with cards_limit option. when more
52 * modules are loaded manually, this limit number increases, too.
55 EXPORT_SYMBOL(snd_ecards_limit
);
57 static struct snd_minor
*snd_minors
[SNDRV_OS_MINORS
];
58 static DEFINE_MUTEX(sound_mutex
);
63 * snd_request_card - try to load the card module
64 * @card: the card number
66 * Tries to load the module "snd-card-X" for the given card number
67 * via request_module. Returns immediately if already loaded.
69 void snd_request_card(int card
)
71 if (snd_card_locked(card
))
73 if (card
< 0 || card
>= cards_limit
)
75 request_module("snd-card-%i", card
);
77 EXPORT_SYMBOL(snd_request_card
);
79 static void snd_request_other(int minor
)
84 case SNDRV_MINOR_SEQUENCER
: str
= "snd-seq"; break;
85 case SNDRV_MINOR_TIMER
: str
= "snd-timer"; break;
91 #endif /* modular kernel */
94 * snd_lookup_minor_data - get user data of a registered device
95 * @minor: the minor number
96 * @type: device type (SNDRV_DEVICE_TYPE_XXX)
98 * Checks that a minor device with the specified type is registered, and returns
99 * its user data pointer.
101 * This function increments the reference counter of the card instance
102 * if an associated instance with the given minor number and type is found.
103 * The caller must call snd_card_unref() appropriately later.
105 * Return: The user data pointer if the specified device is found. %NULL
108 void *snd_lookup_minor_data(unsigned int minor
, int type
)
110 struct snd_minor
*mreg
;
113 if (minor
>= ARRAY_SIZE(snd_minors
))
115 mutex_lock(&sound_mutex
);
116 mreg
= snd_minors
[minor
];
117 if (mreg
&& mreg
->type
== type
) {
118 private_data
= mreg
->private_data
;
119 if (private_data
&& mreg
->card_ptr
)
120 get_device(&mreg
->card_ptr
->card_dev
);
123 mutex_unlock(&sound_mutex
);
126 EXPORT_SYMBOL(snd_lookup_minor_data
);
128 #ifdef CONFIG_MODULES
129 static struct snd_minor
*autoload_device(unsigned int minor
)
132 mutex_unlock(&sound_mutex
); /* release lock temporarily */
133 dev
= SNDRV_MINOR_DEVICE(minor
);
134 if (dev
== SNDRV_MINOR_CONTROL
) {
136 int card
= SNDRV_MINOR_CARD(minor
);
137 if (snd_cards
[card
] == NULL
)
138 snd_request_card(card
);
139 } else if (dev
== SNDRV_MINOR_GLOBAL
) {
141 snd_request_other(minor
);
143 mutex_lock(&sound_mutex
); /* reacuire lock */
144 return snd_minors
[minor
];
146 #else /* !CONFIG_MODULES */
147 #define autoload_device(minor) NULL
148 #endif /* CONFIG_MODULES */
150 static int snd_open(struct inode
*inode
, struct file
*file
)
152 unsigned int minor
= iminor(inode
);
153 struct snd_minor
*mptr
= NULL
;
154 const struct file_operations
*new_fops
;
157 if (minor
>= ARRAY_SIZE(snd_minors
))
159 mutex_lock(&sound_mutex
);
160 mptr
= snd_minors
[minor
];
162 mptr
= autoload_device(minor
);
164 mutex_unlock(&sound_mutex
);
168 new_fops
= fops_get(mptr
->f_ops
);
169 mutex_unlock(&sound_mutex
);
172 replace_fops(file
, new_fops
);
174 if (file
->f_op
->open
)
175 err
= file
->f_op
->open(inode
, file
);
179 static const struct file_operations snd_fops
=
181 .owner
= THIS_MODULE
,
183 .llseek
= noop_llseek
,
186 #ifdef CONFIG_SND_DYNAMIC_MINORS
187 static int snd_find_free_minor(int type
, struct snd_card
*card
, int dev
)
191 /* static minors for module auto loading */
192 if (type
== SNDRV_DEVICE_TYPE_SEQUENCER
)
193 return SNDRV_MINOR_SEQUENCER
;
194 if (type
== SNDRV_DEVICE_TYPE_TIMER
)
195 return SNDRV_MINOR_TIMER
;
197 for (minor
= 0; minor
< ARRAY_SIZE(snd_minors
); ++minor
) {
198 /* skip static minors still used for module auto loading */
199 if (SNDRV_MINOR_DEVICE(minor
) == SNDRV_MINOR_CONTROL
)
201 if (minor
== SNDRV_MINOR_SEQUENCER
||
202 minor
== SNDRV_MINOR_TIMER
)
204 if (!snd_minors
[minor
])
210 static int snd_find_free_minor(int type
, struct snd_card
*card
, int dev
)
215 case SNDRV_DEVICE_TYPE_SEQUENCER
:
216 case SNDRV_DEVICE_TYPE_TIMER
:
219 case SNDRV_DEVICE_TYPE_CONTROL
:
220 if (snd_BUG_ON(!card
))
222 minor
= SNDRV_MINOR(card
->number
, type
);
224 case SNDRV_DEVICE_TYPE_HWDEP
:
225 case SNDRV_DEVICE_TYPE_RAWMIDI
:
226 case SNDRV_DEVICE_TYPE_PCM_PLAYBACK
:
227 case SNDRV_DEVICE_TYPE_PCM_CAPTURE
:
228 case SNDRV_DEVICE_TYPE_COMPRESS
:
229 if (snd_BUG_ON(!card
))
231 minor
= SNDRV_MINOR(card
->number
, type
+ dev
);
236 if (snd_BUG_ON(minor
< 0 || minor
>= SNDRV_OS_MINORS
))
238 if (snd_minors
[minor
])
245 * snd_register_device - Register the ALSA device file for the card
246 * @type: the device type, SNDRV_DEVICE_TYPE_XXX
247 * @card: the card instance
248 * @dev: the device index
249 * @f_ops: the file operations
250 * @private_data: user pointer for f_ops->open()
251 * @device: the device to register
253 * Registers an ALSA device file for the given card.
254 * The operators have to be set in reg parameter.
256 * Return: Zero if successful, or a negative error code on failure.
258 int snd_register_device(int type
, struct snd_card
*card
, int dev
,
259 const struct file_operations
*f_ops
,
260 void *private_data
, struct device
*device
)
264 struct snd_minor
*preg
;
266 if (snd_BUG_ON(!device
))
269 preg
= kmalloc(sizeof *preg
, GFP_KERNEL
);
273 preg
->card
= card
? card
->number
: -1;
276 preg
->private_data
= private_data
;
277 preg
->card_ptr
= card
;
278 mutex_lock(&sound_mutex
);
279 minor
= snd_find_free_minor(type
, card
, dev
);
286 device
->devt
= MKDEV(major
, minor
);
287 err
= device_add(device
);
291 snd_minors
[minor
] = preg
;
293 mutex_unlock(&sound_mutex
);
298 EXPORT_SYMBOL(snd_register_device
);
301 * snd_unregister_device - unregister the device on the given card
302 * @dev: the device instance
304 * Unregisters the device file already registered via
305 * snd_register_device().
307 * Return: Zero if successful, or a negative error code on failure.
309 int snd_unregister_device(struct device
*dev
)
312 struct snd_minor
*preg
;
314 mutex_lock(&sound_mutex
);
315 for (minor
= 0; minor
< ARRAY_SIZE(snd_minors
); ++minor
) {
316 preg
= snd_minors
[minor
];
317 if (preg
&& preg
->dev
== dev
) {
318 snd_minors
[minor
] = NULL
;
324 mutex_unlock(&sound_mutex
);
325 if (minor
>= ARRAY_SIZE(snd_minors
))
329 EXPORT_SYMBOL(snd_unregister_device
);
331 #ifdef CONFIG_SND_PROC_FS
335 static const char *snd_device_type_name(int type
)
338 case SNDRV_DEVICE_TYPE_CONTROL
:
340 case SNDRV_DEVICE_TYPE_HWDEP
:
341 return "hardware dependent";
342 case SNDRV_DEVICE_TYPE_RAWMIDI
:
344 case SNDRV_DEVICE_TYPE_PCM_PLAYBACK
:
345 return "digital audio playback";
346 case SNDRV_DEVICE_TYPE_PCM_CAPTURE
:
347 return "digital audio capture";
348 case SNDRV_DEVICE_TYPE_SEQUENCER
:
350 case SNDRV_DEVICE_TYPE_TIMER
:
357 static void snd_minor_info_read(struct snd_info_entry
*entry
, struct snd_info_buffer
*buffer
)
360 struct snd_minor
*mptr
;
362 mutex_lock(&sound_mutex
);
363 for (minor
= 0; minor
< SNDRV_OS_MINORS
; ++minor
) {
364 if (!(mptr
= snd_minors
[minor
]))
366 if (mptr
->card
>= 0) {
367 if (mptr
->device
>= 0)
368 snd_iprintf(buffer
, "%3i: [%2i-%2i]: %s\n",
369 minor
, mptr
->card
, mptr
->device
,
370 snd_device_type_name(mptr
->type
));
372 snd_iprintf(buffer
, "%3i: [%2i] : %s\n",
374 snd_device_type_name(mptr
->type
));
376 snd_iprintf(buffer
, "%3i: : %s\n", minor
,
377 snd_device_type_name(mptr
->type
));
379 mutex_unlock(&sound_mutex
);
382 int __init
snd_minor_info_init(void)
384 struct snd_info_entry
*entry
;
386 entry
= snd_info_create_module_entry(THIS_MODULE
, "devices", NULL
);
389 entry
->c
.text
.read
= snd_minor_info_read
;
390 return snd_info_register(entry
); /* freed in error path */
392 #endif /* CONFIG_SND_PROC_FS */
398 static int __init
alsa_sound_init(void)
401 snd_ecards_limit
= cards_limit
;
402 if (register_chrdev(major
, "alsa", &snd_fops
)) {
403 pr_err("ALSA core: unable to register native major device number %d\n", major
);
406 if (snd_info_init() < 0) {
407 unregister_chrdev(major
, "alsa");
411 pr_info("Advanced Linux Sound Architecture Driver Initialized.\n");
416 static void __exit
alsa_sound_exit(void)
419 unregister_chrdev(major
, "alsa");
422 subsys_initcall(alsa_sound_init
);
423 module_exit(alsa_sound_exit
);