2 * ALSA sequencer device management
3 * Copyright (c) 1999 by Takashi Iwai <tiwai@suse.de>
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write to the Free Software
17 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
20 *----------------------------------------------------------------
22 * This device handler separates the card driver module from sequencer
23 * stuff (sequencer core, synth drivers, etc), so that user can avoid
24 * to spend unnecessary resources e.g. if he needs only listening to
27 * The card (or lowlevel) driver creates a sequencer device entry
28 * via snd_seq_device_new(). This is an entry pointer to communicate
29 * with the sequencer device "driver", which is involved with the
30 * actual part to communicate with the sequencer core.
31 * Each sequencer device entry has an id string and the corresponding
32 * driver with the same id is loaded when required. For example,
33 * lowlevel codes to access emu8000 chip on sbawe card are included in
34 * emu8000-synth module. To activate this module, the hardware
35 * resources like i/o port are passed via snd_seq_device argument.
39 #include <sound/driver.h>
40 #include <linux/init.h>
41 #include <sound/core.h>
42 #include <sound/info.h>
43 #include <sound/seq_device.h>
44 #include <sound/seq_kernel.h>
45 #include <sound/initval.h>
46 #include <linux/kmod.h>
47 #include <linux/slab.h>
49 MODULE_AUTHOR("Takashi Iwai <tiwai@suse.de>");
50 MODULE_DESCRIPTION("ALSA sequencer device management");
51 MODULE_LICENSE("GPL");
56 typedef struct ops_list ops_list_t
;
59 #define DRIVER_EMPTY 0
60 #define DRIVER_LOADED (1<<0)
61 #define DRIVER_REQUESTED (1<<1)
62 #define DRIVER_LOCKED (1<<2)
65 char id
[ID_LEN
]; /* driver id */
66 int driver
; /* driver state */
67 int used
; /* reference counter */
68 int argsize
; /* argument size */
71 snd_seq_dev_ops_t ops
;
73 /* registred devices */
74 struct list_head dev_list
; /* list of devices */
75 int num_devices
; /* number of associated devices */
76 int num_init_devices
; /* number of initialized devices */
77 struct semaphore reg_mutex
;
79 struct list_head list
; /* next driver */
83 static LIST_HEAD(opslist
);
85 static DECLARE_MUTEX(ops_mutex
);
86 static snd_info_entry_t
*info_entry
= NULL
;
91 static int snd_seq_device_free(snd_seq_device_t
*dev
);
92 static int snd_seq_device_dev_free(snd_device_t
*device
);
93 static int snd_seq_device_dev_register(snd_device_t
*device
);
94 static int snd_seq_device_dev_disconnect(snd_device_t
*device
);
95 static int snd_seq_device_dev_unregister(snd_device_t
*device
);
97 static int init_device(snd_seq_device_t
*dev
, ops_list_t
*ops
);
98 static int free_device(snd_seq_device_t
*dev
, ops_list_t
*ops
);
99 static ops_list_t
*find_driver(char *id
, int create_if_empty
);
100 static ops_list_t
*create_driver(char *id
);
101 static void unlock_driver(ops_list_t
*ops
);
102 static void remove_drivers(void);
105 * show all drivers and their status
108 static void snd_seq_device_info(snd_info_entry_t
*entry
, snd_info_buffer_t
* buffer
)
110 struct list_head
*head
;
113 list_for_each(head
, &opslist
) {
114 ops_list_t
*ops
= list_entry(head
, ops_list_t
, list
);
115 snd_iprintf(buffer
, "snd-%s%s%s%s,%d\n",
117 ops
->driver
& DRIVER_LOADED
? ",loaded" : (ops
->driver
== DRIVER_EMPTY
? ",empty" : ""),
118 ops
->driver
& DRIVER_REQUESTED
? ",requested" : "",
119 ops
->driver
& DRIVER_LOCKED
? ",locked" : "",
126 * load all registered drivers (called from seq_clientmgr.c)
130 /* avoid auto-loading during module_init() */
131 static int snd_seq_in_init
;
132 void snd_seq_autoload_lock(void)
137 void snd_seq_autoload_unlock(void)
143 void snd_seq_device_load_drivers(void)
146 struct list_head
*head
;
148 /* Calling request_module during module_init()
149 * may cause blocking.
154 if (! current
->fs
->root
)
158 list_for_each(head
, &opslist
) {
159 ops_list_t
*ops
= list_entry(head
, ops_list_t
, list
);
160 if (! (ops
->driver
& DRIVER_LOADED
) &&
161 ! (ops
->driver
& DRIVER_REQUESTED
)) {
164 ops
->driver
|= DRIVER_REQUESTED
;
165 request_module("snd-%s", ops
->id
);
175 * register a sequencer device
176 * card = card info (NULL allowed)
177 * device = device number (if any)
179 * result = return pointer (NULL allowed if unnecessary)
181 int snd_seq_device_new(snd_card_t
*card
, int device
, char *id
, int argsize
,
182 snd_seq_device_t
**result
)
184 snd_seq_device_t
*dev
;
187 static snd_device_ops_t dops
= {
188 .dev_free
= snd_seq_device_dev_free
,
189 .dev_register
= snd_seq_device_dev_register
,
190 .dev_disconnect
= snd_seq_device_dev_disconnect
,
191 .dev_unregister
= snd_seq_device_dev_unregister
197 snd_assert(id
!= NULL
, return -EINVAL
);
199 ops
= find_driver(id
, 1);
203 dev
= kcalloc(1, sizeof(*dev
)*2 + argsize
, GFP_KERNEL
);
209 /* set up device info */
211 dev
->device
= device
;
212 strlcpy(dev
->id
, id
, sizeof(dev
->id
));
213 dev
->argsize
= argsize
;
214 dev
->status
= SNDRV_SEQ_DEVICE_FREE
;
216 /* add this device to the list */
217 down(&ops
->reg_mutex
);
218 list_add_tail(&dev
->list
, &ops
->dev_list
);
224 if ((err
= snd_device_new(card
, SNDRV_DEV_SEQUENCER
, dev
, &dops
)) < 0) {
225 snd_seq_device_free(dev
);
236 * free the existing device
238 static int snd_seq_device_free(snd_seq_device_t
*dev
)
242 snd_assert(dev
!= NULL
, return -EINVAL
);
244 ops
= find_driver(dev
->id
, 0);
248 /* remove the device from the list */
249 down(&ops
->reg_mutex
);
250 list_del(&dev
->list
);
254 free_device(dev
, ops
);
255 if (dev
->private_free
)
256 dev
->private_free(dev
);
264 static int snd_seq_device_dev_free(snd_device_t
*device
)
266 snd_seq_device_t
*dev
= device
->device_data
;
267 return snd_seq_device_free(dev
);
271 * register the device
273 static int snd_seq_device_dev_register(snd_device_t
*device
)
275 snd_seq_device_t
*dev
= device
->device_data
;
278 ops
= find_driver(dev
->id
, 0);
282 /* initialize this device if the corresponding driver was
285 if (ops
->driver
& DRIVER_LOADED
)
286 init_device(dev
, ops
);
293 * disconnect the device
295 static int snd_seq_device_dev_disconnect(snd_device_t
*device
)
297 snd_seq_device_t
*dev
= device
->device_data
;
300 ops
= find_driver(dev
->id
, 0);
304 free_device(dev
, ops
);
311 * unregister the existing device
313 static int snd_seq_device_dev_unregister(snd_device_t
*device
)
315 snd_seq_device_t
*dev
= device
->device_data
;
316 return snd_seq_device_free(dev
);
320 * register device driver
322 * entry = driver operators - duplicated to each instance
324 int snd_seq_device_register_driver(char *id
, snd_seq_dev_ops_t
*entry
, int argsize
)
326 struct list_head
*head
;
329 if (id
== NULL
|| entry
== NULL
||
330 entry
->init_device
== NULL
|| entry
->free_device
== NULL
)
333 snd_seq_autoload_lock();
334 ops
= find_driver(id
, 1);
336 snd_seq_autoload_unlock();
339 if (ops
->driver
& DRIVER_LOADED
) {
340 snd_printk(KERN_WARNING
"driver_register: driver '%s' already exists\n", id
);
342 snd_seq_autoload_unlock();
346 down(&ops
->reg_mutex
);
347 /* copy driver operators */
349 ops
->driver
|= DRIVER_LOADED
;
350 ops
->argsize
= argsize
;
352 /* initialize existing devices if necessary */
353 list_for_each(head
, &ops
->dev_list
) {
354 snd_seq_device_t
*dev
= list_entry(head
, snd_seq_device_t
, list
);
355 init_device(dev
, ops
);
360 snd_seq_autoload_unlock();
367 * create driver record
369 static ops_list_t
* create_driver(char *id
)
373 ops
= kmalloc(sizeof(*ops
), GFP_KERNEL
);
376 memset(ops
, 0, sizeof(*ops
));
378 /* set up driver entry */
379 strlcpy(ops
->id
, id
, sizeof(ops
->id
));
380 init_MUTEX(&ops
->reg_mutex
);
381 ops
->driver
= DRIVER_EMPTY
;
382 INIT_LIST_HEAD(&ops
->dev_list
);
383 /* lock this instance */
386 /* register driver entry */
388 list_add_tail(&ops
->list
, &opslist
);
397 * unregister the specified driver
399 int snd_seq_device_unregister_driver(char *id
)
401 struct list_head
*head
;
404 ops
= find_driver(id
, 0);
407 if (! (ops
->driver
& DRIVER_LOADED
) ||
408 (ops
->driver
& DRIVER_LOCKED
)) {
409 snd_printk(KERN_ERR
"driver_unregister: cannot unload driver '%s': status=%x\n", id
, ops
->driver
);
414 /* close and release all devices associated with this driver */
415 down(&ops
->reg_mutex
);
416 ops
->driver
|= DRIVER_LOCKED
; /* do not remove this driver recursively */
417 list_for_each(head
, &ops
->dev_list
) {
418 snd_seq_device_t
*dev
= list_entry(head
, snd_seq_device_t
, list
);
419 free_device(dev
, ops
);
423 if (ops
->num_init_devices
> 0)
424 snd_printk(KERN_ERR
"free_driver: init_devices > 0!! (%d)\n", ops
->num_init_devices
);
429 /* remove empty driver entries */
437 * remove empty driver entries
439 static void remove_drivers(void)
441 struct list_head
*head
;
445 while (head
!= &opslist
) {
446 ops_list_t
*ops
= list_entry(head
, ops_list_t
, list
);
447 if (! (ops
->driver
& DRIVER_LOADED
) &&
448 ops
->used
== 0 && ops
->num_devices
== 0) {
450 list_del(&ops
->list
);
460 * initialize the device - call init_device operator
462 static int init_device(snd_seq_device_t
*dev
, ops_list_t
*ops
)
464 if (! (ops
->driver
& DRIVER_LOADED
))
465 return 0; /* driver is not loaded yet */
466 if (dev
->status
!= SNDRV_SEQ_DEVICE_FREE
)
467 return 0; /* already initialized */
468 if (ops
->argsize
!= dev
->argsize
) {
469 snd_printk(KERN_ERR
"incompatible device '%s' for plug-in '%s' (%d %d)\n", dev
->name
, ops
->id
, ops
->argsize
, dev
->argsize
);
472 if (ops
->ops
.init_device(dev
) >= 0) {
473 dev
->status
= SNDRV_SEQ_DEVICE_REGISTERED
;
474 ops
->num_init_devices
++;
476 snd_printk(KERN_ERR
"init_device failed: %s: %s\n", dev
->name
, dev
->id
);
483 * release the device - call free_device operator
485 static int free_device(snd_seq_device_t
*dev
, ops_list_t
*ops
)
489 if (! (ops
->driver
& DRIVER_LOADED
))
490 return 0; /* driver is not loaded yet */
491 if (dev
->status
!= SNDRV_SEQ_DEVICE_REGISTERED
)
492 return 0; /* not registered */
493 if (ops
->argsize
!= dev
->argsize
) {
494 snd_printk(KERN_ERR
"incompatible device '%s' for plug-in '%s' (%d %d)\n", dev
->name
, ops
->id
, ops
->argsize
, dev
->argsize
);
497 if ((result
= ops
->ops
.free_device(dev
)) >= 0 || result
== -ENXIO
) {
498 dev
->status
= SNDRV_SEQ_DEVICE_FREE
;
499 dev
->driver_data
= NULL
;
500 ops
->num_init_devices
--;
502 snd_printk(KERN_ERR
"free_device failed: %s: %s\n", dev
->name
, dev
->id
);
509 * find the matching driver with given id
511 static ops_list_t
* find_driver(char *id
, int create_if_empty
)
513 struct list_head
*head
;
516 list_for_each(head
, &opslist
) {
517 ops_list_t
*ops
= list_entry(head
, ops_list_t
, list
);
518 if (strcmp(ops
->id
, id
) == 0) {
526 return create_driver(id
);
530 static void unlock_driver(ops_list_t
*ops
)
542 static int __init
alsa_seq_device_init(void)
544 info_entry
= snd_info_create_module_entry(THIS_MODULE
, "drivers", snd_seq_root
);
545 if (info_entry
== NULL
)
547 info_entry
->content
= SNDRV_INFO_CONTENT_TEXT
;
548 info_entry
->c
.text
.read_size
= 2048;
549 info_entry
->c
.text
.read
= snd_seq_device_info
;
550 if (snd_info_register(info_entry
) < 0) {
551 snd_info_free_entry(info_entry
);
557 static void __exit
alsa_seq_device_exit(void)
560 snd_info_unregister(info_entry
);
562 snd_printk(KERN_ERR
"drivers not released (%d)\n", num_ops
);
565 module_init(alsa_seq_device_init
)
566 module_exit(alsa_seq_device_exit
)
568 EXPORT_SYMBOL(snd_seq_device_load_drivers
);
569 EXPORT_SYMBOL(snd_seq_device_new
);
570 EXPORT_SYMBOL(snd_seq_device_register_driver
);
571 EXPORT_SYMBOL(snd_seq_device_unregister_driver
);
573 EXPORT_SYMBOL(snd_seq_autoload_lock
);
574 EXPORT_SYMBOL(snd_seq_autoload_unlock
);