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");
54 #define DRIVER_EMPTY 0
55 #define DRIVER_LOADED (1<<0)
56 #define DRIVER_REQUESTED (1<<1)
57 #define DRIVER_LOCKED (1<<2)
60 char id
[ID_LEN
]; /* driver id */
61 int driver
; /* driver state */
62 int used
; /* reference counter */
63 int argsize
; /* argument size */
66 struct snd_seq_dev_ops ops
;
68 /* registred devices */
69 struct list_head dev_list
; /* list of devices */
70 int num_devices
; /* number of associated devices */
71 int num_init_devices
; /* number of initialized devices */
72 struct semaphore reg_mutex
;
74 struct list_head list
; /* next driver */
78 static LIST_HEAD(opslist
);
80 static DECLARE_MUTEX(ops_mutex
);
82 static struct snd_info_entry
*info_entry
= NULL
;
88 static int snd_seq_device_free(struct snd_seq_device
*dev
);
89 static int snd_seq_device_dev_free(struct snd_device
*device
);
90 static int snd_seq_device_dev_register(struct snd_device
*device
);
91 static int snd_seq_device_dev_disconnect(struct snd_device
*device
);
92 static int snd_seq_device_dev_unregister(struct snd_device
*device
);
94 static int init_device(struct snd_seq_device
*dev
, struct ops_list
*ops
);
95 static int free_device(struct snd_seq_device
*dev
, struct ops_list
*ops
);
96 static struct ops_list
*find_driver(char *id
, int create_if_empty
);
97 static struct ops_list
*create_driver(char *id
);
98 static void unlock_driver(struct ops_list
*ops
);
99 static void remove_drivers(void);
102 * show all drivers and their status
105 #ifdef CONFIG_PROC_FS
106 static void snd_seq_device_info(struct snd_info_entry
*entry
,
107 struct snd_info_buffer
*buffer
)
109 struct list_head
*head
;
112 list_for_each(head
, &opslist
) {
113 struct ops_list
*ops
= list_entry(head
, struct ops_list
, list
);
114 snd_iprintf(buffer
, "snd-%s%s%s%s,%d\n",
116 ops
->driver
& DRIVER_LOADED
? ",loaded" : (ops
->driver
== DRIVER_EMPTY
? ",empty" : ""),
117 ops
->driver
& DRIVER_REQUESTED
? ",requested" : "",
118 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 struct ops_list
*ops
= list_entry(head
, struct ops_list
, 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(struct snd_card
*card
, int device
, char *id
, int argsize
,
182 struct snd_seq_device
**result
)
184 struct snd_seq_device
*dev
;
185 struct ops_list
*ops
;
187 static struct snd_device_ops 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
= kzalloc(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(struct snd_seq_device
*dev
)
240 struct ops_list
*ops
;
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(struct snd_device
*device
)
266 struct snd_seq_device
*dev
= device
->device_data
;
267 return snd_seq_device_free(dev
);
271 * register the device
273 static int snd_seq_device_dev_register(struct snd_device
*device
)
275 struct snd_seq_device
*dev
= device
->device_data
;
276 struct ops_list
*ops
;
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(struct snd_device
*device
)
297 struct snd_seq_device
*dev
= device
->device_data
;
298 struct ops_list
*ops
;
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(struct snd_device
*device
)
315 struct snd_seq_device
*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
, struct snd_seq_dev_ops
*entry
,
327 struct list_head
*head
;
328 struct ops_list
*ops
;
330 if (id
== NULL
|| entry
== NULL
||
331 entry
->init_device
== NULL
|| entry
->free_device
== NULL
)
334 snd_seq_autoload_lock();
335 ops
= find_driver(id
, 1);
337 snd_seq_autoload_unlock();
340 if (ops
->driver
& DRIVER_LOADED
) {
341 snd_printk(KERN_WARNING
"driver_register: driver '%s' already exists\n", id
);
343 snd_seq_autoload_unlock();
347 down(&ops
->reg_mutex
);
348 /* copy driver operators */
350 ops
->driver
|= DRIVER_LOADED
;
351 ops
->argsize
= argsize
;
353 /* initialize existing devices if necessary */
354 list_for_each(head
, &ops
->dev_list
) {
355 struct snd_seq_device
*dev
= list_entry(head
, struct snd_seq_device
, list
);
356 init_device(dev
, ops
);
361 snd_seq_autoload_unlock();
368 * create driver record
370 static struct ops_list
* create_driver(char *id
)
372 struct ops_list
*ops
;
374 ops
= kmalloc(sizeof(*ops
), GFP_KERNEL
);
377 memset(ops
, 0, sizeof(*ops
));
379 /* set up driver entry */
380 strlcpy(ops
->id
, id
, sizeof(ops
->id
));
381 init_MUTEX(&ops
->reg_mutex
);
382 ops
->driver
= DRIVER_EMPTY
;
383 INIT_LIST_HEAD(&ops
->dev_list
);
384 /* lock this instance */
387 /* register driver entry */
389 list_add_tail(&ops
->list
, &opslist
);
398 * unregister the specified driver
400 int snd_seq_device_unregister_driver(char *id
)
402 struct list_head
*head
;
403 struct ops_list
*ops
;
405 ops
= find_driver(id
, 0);
408 if (! (ops
->driver
& DRIVER_LOADED
) ||
409 (ops
->driver
& DRIVER_LOCKED
)) {
410 snd_printk(KERN_ERR
"driver_unregister: cannot unload driver '%s': status=%x\n",
416 /* close and release all devices associated with this driver */
417 down(&ops
->reg_mutex
);
418 ops
->driver
|= DRIVER_LOCKED
; /* do not remove this driver recursively */
419 list_for_each(head
, &ops
->dev_list
) {
420 struct snd_seq_device
*dev
= list_entry(head
, struct snd_seq_device
, list
);
421 free_device(dev
, ops
);
425 if (ops
->num_init_devices
> 0)
426 snd_printk(KERN_ERR
"free_driver: init_devices > 0!! (%d)\n",
427 ops
->num_init_devices
);
432 /* remove empty driver entries */
440 * remove empty driver entries
442 static void remove_drivers(void)
444 struct list_head
*head
;
448 while (head
!= &opslist
) {
449 struct ops_list
*ops
= list_entry(head
, struct ops_list
, list
);
450 if (! (ops
->driver
& DRIVER_LOADED
) &&
451 ops
->used
== 0 && ops
->num_devices
== 0) {
453 list_del(&ops
->list
);
463 * initialize the device - call init_device operator
465 static int init_device(struct snd_seq_device
*dev
, struct ops_list
*ops
)
467 if (! (ops
->driver
& DRIVER_LOADED
))
468 return 0; /* driver is not loaded yet */
469 if (dev
->status
!= SNDRV_SEQ_DEVICE_FREE
)
470 return 0; /* already initialized */
471 if (ops
->argsize
!= dev
->argsize
) {
472 snd_printk(KERN_ERR
"incompatible device '%s' for plug-in '%s' (%d %d)\n",
473 dev
->name
, ops
->id
, ops
->argsize
, dev
->argsize
);
476 if (ops
->ops
.init_device(dev
) >= 0) {
477 dev
->status
= SNDRV_SEQ_DEVICE_REGISTERED
;
478 ops
->num_init_devices
++;
480 snd_printk(KERN_ERR
"init_device failed: %s: %s\n",
488 * release the device - call free_device operator
490 static int free_device(struct snd_seq_device
*dev
, struct ops_list
*ops
)
494 if (! (ops
->driver
& DRIVER_LOADED
))
495 return 0; /* driver is not loaded yet */
496 if (dev
->status
!= SNDRV_SEQ_DEVICE_REGISTERED
)
497 return 0; /* not registered */
498 if (ops
->argsize
!= dev
->argsize
) {
499 snd_printk(KERN_ERR
"incompatible device '%s' for plug-in '%s' (%d %d)\n",
500 dev
->name
, ops
->id
, ops
->argsize
, dev
->argsize
);
503 if ((result
= ops
->ops
.free_device(dev
)) >= 0 || result
== -ENXIO
) {
504 dev
->status
= SNDRV_SEQ_DEVICE_FREE
;
505 dev
->driver_data
= NULL
;
506 ops
->num_init_devices
--;
508 snd_printk(KERN_ERR
"free_device failed: %s: %s\n",
516 * find the matching driver with given id
518 static struct ops_list
* find_driver(char *id
, int create_if_empty
)
520 struct list_head
*head
;
523 list_for_each(head
, &opslist
) {
524 struct ops_list
*ops
= list_entry(head
, struct ops_list
, list
);
525 if (strcmp(ops
->id
, id
) == 0) {
533 return create_driver(id
);
537 static void unlock_driver(struct ops_list
*ops
)
549 static int __init
alsa_seq_device_init(void)
551 #ifdef CONFIG_PROC_FS
552 info_entry
= snd_info_create_module_entry(THIS_MODULE
, "drivers",
554 if (info_entry
== NULL
)
556 info_entry
->content
= SNDRV_INFO_CONTENT_TEXT
;
557 info_entry
->c
.text
.read_size
= 2048;
558 info_entry
->c
.text
.read
= snd_seq_device_info
;
559 if (snd_info_register(info_entry
) < 0) {
560 snd_info_free_entry(info_entry
);
567 static void __exit
alsa_seq_device_exit(void)
570 #ifdef CONFIG_PROC_FS
571 snd_info_unregister(info_entry
);
574 snd_printk(KERN_ERR
"drivers not released (%d)\n", num_ops
);
577 module_init(alsa_seq_device_init
)
578 module_exit(alsa_seq_device_exit
)
580 EXPORT_SYMBOL(snd_seq_device_load_drivers
);
581 EXPORT_SYMBOL(snd_seq_device_new
);
582 EXPORT_SYMBOL(snd_seq_device_register_driver
);
583 EXPORT_SYMBOL(snd_seq_device_unregister_driver
);
585 EXPORT_SYMBOL(snd_seq_autoload_lock
);
586 EXPORT_SYMBOL(snd_seq_autoload_unlock
);