[ARM] Support register switch in nommu mode
[linux-2.6/verdex.git] / sound / core / seq / seq_device.c
blob9ece443fba5599058c5e71e564f5af21159f38c3
1 /*
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
25 * MP3s.
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");
53 /* driver state */
54 #define DRIVER_EMPTY 0
55 #define DRIVER_LOADED (1<<0)
56 #define DRIVER_REQUESTED (1<<1)
57 #define DRIVER_LOCKED (1<<2)
59 struct ops_list {
60 char id[ID_LEN]; /* driver id */
61 int driver; /* driver state */
62 int used; /* reference counter */
63 int argsize; /* argument size */
65 /* operators */
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);
79 static int num_ops;
80 static DECLARE_MUTEX(ops_mutex);
81 #ifdef CONFIG_PROC_FS
82 static struct snd_info_entry *info_entry = NULL;
83 #endif
86 * prototypes
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;
111 down(&ops_mutex);
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",
115 ops->id,
116 ops->driver & DRIVER_LOADED ? ",loaded" : (ops->driver == DRIVER_EMPTY ? ",empty" : ""),
117 ops->driver & DRIVER_REQUESTED ? ",requested" : "",
118 ops->driver & DRIVER_LOCKED ? ",locked" : "",
119 ops->num_devices);
121 up(&ops_mutex);
123 #endif
126 * load all registered drivers (called from seq_clientmgr.c)
129 #ifdef CONFIG_KMOD
130 /* avoid auto-loading during module_init() */
131 static int snd_seq_in_init;
132 void snd_seq_autoload_lock(void)
134 snd_seq_in_init++;
137 void snd_seq_autoload_unlock(void)
139 snd_seq_in_init--;
141 #endif
143 void snd_seq_device_load_drivers(void)
145 #ifdef CONFIG_KMOD
146 struct list_head *head;
148 /* Calling request_module during module_init()
149 * may cause blocking.
151 if (snd_seq_in_init)
152 return;
154 if (! current->fs->root)
155 return;
157 down(&ops_mutex);
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)) {
162 ops->used++;
163 up(&ops_mutex);
164 ops->driver |= DRIVER_REQUESTED;
165 request_module("snd-%s", ops->id);
166 down(&ops_mutex);
167 ops->used--;
170 up(&ops_mutex);
171 #endif
175 * register a sequencer device
176 * card = card info (NULL allowed)
177 * device = device number (if any)
178 * id = id of driver
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;
186 int err;
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
194 if (result)
195 *result = NULL;
197 snd_assert(id != NULL, return -EINVAL);
199 ops = find_driver(id, 1);
200 if (ops == NULL)
201 return -ENOMEM;
203 dev = kzalloc(sizeof(*dev)*2 + argsize, GFP_KERNEL);
204 if (dev == NULL) {
205 unlock_driver(ops);
206 return -ENOMEM;
209 /* set up device info */
210 dev->card = card;
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);
219 ops->num_devices++;
220 up(&ops->reg_mutex);
222 unlock_driver(ops);
224 if ((err = snd_device_new(card, SNDRV_DEV_SEQUENCER, dev, &dops)) < 0) {
225 snd_seq_device_free(dev);
226 return err;
229 if (result)
230 *result = dev;
232 return 0;
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);
245 if (ops == NULL)
246 return -ENXIO;
248 /* remove the device from the list */
249 down(&ops->reg_mutex);
250 list_del(&dev->list);
251 ops->num_devices--;
252 up(&ops->reg_mutex);
254 free_device(dev, ops);
255 if (dev->private_free)
256 dev->private_free(dev);
257 kfree(dev);
259 unlock_driver(ops);
261 return 0;
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);
279 if (ops == NULL)
280 return -ENOENT;
282 /* initialize this device if the corresponding driver was
283 * already loaded
285 if (ops->driver & DRIVER_LOADED)
286 init_device(dev, ops);
288 unlock_driver(ops);
289 return 0;
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);
301 if (ops == NULL)
302 return -ENOENT;
304 free_device(dev, ops);
306 unlock_driver(ops);
307 return 0;
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
321 * id = driver id
322 * entry = driver operators - duplicated to each instance
324 int snd_seq_device_register_driver(char *id, struct snd_seq_dev_ops *entry,
325 int argsize)
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)
332 return -EINVAL;
334 snd_seq_autoload_lock();
335 ops = find_driver(id, 1);
336 if (ops == NULL) {
337 snd_seq_autoload_unlock();
338 return -ENOMEM;
340 if (ops->driver & DRIVER_LOADED) {
341 snd_printk(KERN_WARNING "driver_register: driver '%s' already exists\n", id);
342 unlock_driver(ops);
343 snd_seq_autoload_unlock();
344 return -EBUSY;
347 down(&ops->reg_mutex);
348 /* copy driver operators */
349 ops->ops = *entry;
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);
358 up(&ops->reg_mutex);
360 unlock_driver(ops);
361 snd_seq_autoload_unlock();
363 return 0;
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);
375 if (ops == NULL)
376 return ops;
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 */
385 ops->used = 1;
387 /* register driver entry */
388 down(&ops_mutex);
389 list_add_tail(&ops->list, &opslist);
390 num_ops++;
391 up(&ops_mutex);
393 return ops;
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);
406 if (ops == NULL)
407 return -ENXIO;
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",
411 id, ops->driver);
412 unlock_driver(ops);
413 return -EBUSY;
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);
424 ops->driver = 0;
425 if (ops->num_init_devices > 0)
426 snd_printk(KERN_ERR "free_driver: init_devices > 0!! (%d)\n",
427 ops->num_init_devices);
428 up(&ops->reg_mutex);
430 unlock_driver(ops);
432 /* remove empty driver entries */
433 remove_drivers();
435 return 0;
440 * remove empty driver entries
442 static void remove_drivers(void)
444 struct list_head *head;
446 down(&ops_mutex);
447 head = opslist.next;
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) {
452 head = head->next;
453 list_del(&ops->list);
454 kfree(ops);
455 num_ops--;
456 } else
457 head = head->next;
459 up(&ops_mutex);
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);
474 return -EINVAL;
476 if (ops->ops.init_device(dev) >= 0) {
477 dev->status = SNDRV_SEQ_DEVICE_REGISTERED;
478 ops->num_init_devices++;
479 } else {
480 snd_printk(KERN_ERR "init_device failed: %s: %s\n",
481 dev->name, dev->id);
484 return 0;
488 * release the device - call free_device operator
490 static int free_device(struct snd_seq_device *dev, struct ops_list *ops)
492 int result;
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);
501 return -EINVAL;
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--;
507 } else {
508 snd_printk(KERN_ERR "free_device failed: %s: %s\n",
509 dev->name, dev->id);
512 return 0;
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;
522 down(&ops_mutex);
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) {
526 ops->used++;
527 up(&ops_mutex);
528 return ops;
531 up(&ops_mutex);
532 if (create_if_empty)
533 return create_driver(id);
534 return NULL;
537 static void unlock_driver(struct ops_list *ops)
539 down(&ops_mutex);
540 ops->used--;
541 up(&ops_mutex);
546 * module part
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",
553 snd_seq_root);
554 if (info_entry == NULL)
555 return -ENOMEM;
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);
561 return -ENOMEM;
563 #endif
564 return 0;
567 static void __exit alsa_seq_device_exit(void)
569 remove_drivers();
570 #ifdef CONFIG_PROC_FS
571 snd_info_unregister(info_entry);
572 #endif
573 if (num_ops)
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);
584 #ifdef CONFIG_KMOD
585 EXPORT_SYMBOL(snd_seq_autoload_lock);
586 EXPORT_SYMBOL(snd_seq_autoload_unlock);
587 #endif