[PATCH] DVB: Add static firmware compilation again
[linux-2.6/history.git] / sound / core / init.c
blobed83ba1dc2511a7687192105ae5e86b7efcdbbac
1 /*
2 * Initialization routines
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/sched.h>
25 #include <linux/file.h>
26 #include <linux/slab.h>
27 #include <linux/time.h>
28 #include <linux/ctype.h>
29 #include <sound/core.h>
30 #include <sound/control.h>
31 #include <sound/info.h>
33 struct snd_shutdown_f_ops {
34 struct file_operations f_ops;
35 struct snd_shutdown_f_ops *next;
38 int snd_cards_count = 0;
39 unsigned int snd_cards_lock = 0; /* locked for registering/using */
40 snd_card_t *snd_cards[SNDRV_CARDS] = {[0 ... (SNDRV_CARDS-1)] = NULL};
41 rwlock_t snd_card_rwlock = RW_LOCK_UNLOCKED;
43 #if defined(CONFIG_SND_MIXER_OSS) || defined(CONFIG_SND_MIXER_OSS_MODULE)
44 int (*snd_mixer_oss_notify_callback)(snd_card_t *card, int free_flag);
45 #endif
47 static void snd_card_id_read(snd_info_entry_t *entry, snd_info_buffer_t * buffer)
49 snd_iprintf(buffer, "%s\n", entry->card->id);
52 static void snd_card_free_thread(void * __card);
54 /**
55 * snd_card_new - create and initialize a soundcard structure
56 * @idx: card index (address) [0 ... (SNDRV_CARDS-1)]
57 * @xid: card identification (ASCII string)
58 * @module: top level module for locking
59 * @extra_size: allocate this extra size after the main soundcard structure
61 * Creates and initializes a soundcard structure.
63 * Returns kmallocated snd_card_t structure. Creates the ALSA control interface
64 * (which is blocked until snd_card_register function is called).
66 snd_card_t *snd_card_new(int idx, const char *xid,
67 struct module *module, int extra_size)
69 snd_card_t *card;
70 int err;
72 if (extra_size < 0)
73 extra_size = 0;
74 card = (snd_card_t *) snd_kcalloc(sizeof(snd_card_t) + extra_size, GFP_KERNEL);
75 if (card == NULL)
76 return NULL;
77 if (xid) {
78 if (!snd_info_check_reserved_words(xid))
79 goto __error;
80 strlcpy(card->id, xid, sizeof(card->id));
82 write_lock(&snd_card_rwlock);
83 if (idx < 0) {
84 int idx2;
85 for (idx2 = 0; idx2 < snd_ecards_limit; idx2++)
86 if (!(snd_cards_lock & (1 << idx2))) {
87 idx = idx2;
88 break;
90 if (idx < 0 && snd_ecards_limit < SNDRV_CARDS)
91 /* for dynamically additional devices like hotplug:
92 * increment the limit if still free slot exists.
94 idx = snd_ecards_limit++;
95 } else if (idx < snd_ecards_limit) {
96 if (snd_cards_lock & (1 << idx))
97 idx = -1; /* invalid */
98 } else if (idx < SNDRV_CARDS)
99 snd_ecards_limit = idx + 1; /* increase the limit */
100 else
101 idx = -1;
102 if (idx < 0) {
103 write_unlock(&snd_card_rwlock);
104 if (idx >= snd_ecards_limit)
105 snd_printk(KERN_ERR "card %i is out of range (0-%i)\n", idx, snd_ecards_limit-1);
106 goto __error;
108 snd_cards_lock |= 1 << idx; /* lock it */
109 write_unlock(&snd_card_rwlock);
110 card->number = idx;
111 card->module = module;
112 INIT_LIST_HEAD(&card->devices);
113 init_rwsem(&card->controls_rwsem);
114 rwlock_init(&card->ctl_files_rwlock);
115 INIT_LIST_HEAD(&card->controls);
116 INIT_LIST_HEAD(&card->ctl_files);
117 spin_lock_init(&card->files_lock);
118 init_waitqueue_head(&card->shutdown_sleep);
119 INIT_WORK(&card->free_workq, snd_card_free_thread, card);
120 #ifdef CONFIG_PM
121 init_MUTEX(&card->power_lock);
122 init_waitqueue_head(&card->power_sleep);
123 #endif
124 /* the control interface cannot be accessed from the user space until */
125 /* snd_cards_bitmask and snd_cards are set with snd_card_register */
126 if ((err = snd_ctl_register(card)) < 0) {
127 snd_printd("unable to register control minors\n");
128 goto __error;
130 if ((err = snd_info_card_create(card)) < 0) {
131 snd_printd("unable to create card info\n");
132 goto __error_ctl;
134 if (extra_size > 0)
135 card->private_data = (char *)card + sizeof(snd_card_t);
136 return card;
138 __error_ctl:
139 snd_ctl_unregister(card);
140 __error:
141 kfree(card);
142 return NULL;
145 static unsigned int snd_disconnect_poll(struct file * file, poll_table * wait)
147 return POLLERR | POLLNVAL;
151 * snd_card_disconnect - disconnect all APIs from the file-operations (user space)
152 * @card: soundcard structure
154 * Disconnects all APIs from the file-operations (user space).
156 * Returns zero, otherwise a negative error code.
158 * Note: The current implementation replaces all active file->f_op with special
159 * dummy file operations (they do nothing except release).
161 int snd_card_disconnect(snd_card_t * card)
163 struct snd_monitor_file *mfile;
164 struct file *file;
165 struct snd_shutdown_f_ops *s_f_ops;
166 struct file_operations *f_ops, *old_f_ops;
167 int err;
169 spin_lock(&card->files_lock);
170 if (card->shutdown) {
171 spin_unlock(&card->files_lock);
172 return 0;
174 card->shutdown = 1;
175 spin_unlock(&card->files_lock);
177 /* phase 1: disable fops (user space) operations for ALSA API */
178 write_lock(&snd_card_rwlock);
179 snd_cards[card->number] = NULL;
180 write_unlock(&snd_card_rwlock);
182 /* phase 2: replace file->f_op with special dummy operations */
184 spin_lock(&card->files_lock);
185 mfile = card->files;
186 while (mfile) {
187 file = mfile->file;
189 /* it's critical part, use endless loop */
190 /* we have no room to fail */
191 s_f_ops = kmalloc(sizeof(struct snd_shutdown_f_ops), GFP_ATOMIC);
192 if (s_f_ops == NULL)
193 panic("Atomic allocation failed for snd_shutdown_f_ops!");
195 f_ops = &s_f_ops->f_ops;
197 memset(f_ops, 0, sizeof(*f_ops));
198 f_ops->owner = file->f_op->owner;
199 f_ops->release = file->f_op->release;
200 f_ops->poll = snd_disconnect_poll;
202 s_f_ops->next = card->s_f_ops;
203 card->s_f_ops = s_f_ops;
205 f_ops = fops_get(f_ops);
207 old_f_ops = file->f_op;
208 file->f_op = f_ops; /* must be atomic */
209 fops_put(old_f_ops);
211 mfile = mfile->next;
213 spin_unlock(&card->files_lock);
215 /* phase 3: notify all connected devices about disconnection */
216 /* at this point, they cannot respond to any calls except release() */
218 snd_ctl_disconnect(card);
220 #if defined(CONFIG_SND_MIXER_OSS) || defined(CONFIG_SND_MIXER_OSS_MODULE)
221 if (snd_mixer_oss_notify_callback)
222 snd_mixer_oss_notify_callback(card, SND_MIXER_OSS_NOTIFY_DISCONNECT);
223 #endif
225 /* notify all devices that we are disconnected */
226 err = snd_device_disconnect_all(card);
227 if (err < 0)
228 snd_printk(KERN_ERR "not all devices for card %i can be disconnected\n", card->number);
230 return 0;
234 * snd_card_free - frees given soundcard structure
235 * @card: soundcard structure
237 * This function releases the soundcard structure and the all assigned
238 * devices automatically. That is, you don't have to release the devices
239 * by yourself.
241 * Returns zero. Frees all associated devices and frees the control
242 * interface associated to given soundcard.
244 int snd_card_free(snd_card_t * card)
246 struct snd_shutdown_f_ops *s_f_ops;
248 if (card == NULL)
249 return -EINVAL;
250 write_lock(&snd_card_rwlock);
251 snd_cards[card->number] = NULL;
252 snd_cards_count--;
253 write_unlock(&snd_card_rwlock);
255 #ifdef CONFIG_PM
256 wake_up(&card->power_sleep);
257 #endif
259 /* wait, until all devices are ready for the free operation */
260 wait_event(card->shutdown_sleep, card->files == NULL);
262 #if defined(CONFIG_SND_MIXER_OSS) || defined(CONFIG_SND_MIXER_OSS_MODULE)
263 if (snd_mixer_oss_notify_callback)
264 snd_mixer_oss_notify_callback(card, SND_MIXER_OSS_NOTIFY_FREE);
265 #endif
266 if (snd_device_free_all(card, SNDRV_DEV_CMD_PRE) < 0) {
267 snd_printk(KERN_ERR "unable to free all devices (pre)\n");
268 /* Fatal, but this situation should never occur */
270 if (snd_device_free_all(card, SNDRV_DEV_CMD_NORMAL) < 0) {
271 snd_printk(KERN_ERR "unable to free all devices (normal)\n");
272 /* Fatal, but this situation should never occur */
274 if (snd_ctl_unregister(card) < 0) {
275 snd_printk(KERN_ERR "unable to unregister control minors\n");
276 /* Not fatal error */
278 if (snd_device_free_all(card, SNDRV_DEV_CMD_POST) < 0) {
279 snd_printk(KERN_ERR "unable to free all devices (post)\n");
280 /* Fatal, but this situation should never occur */
282 if (card->private_free)
283 card->private_free(card);
284 snd_info_free_entry(card->proc_id);
285 if (snd_info_card_free(card) < 0) {
286 snd_printk(KERN_WARNING "unable to free card info\n");
287 /* Not fatal error */
289 while (card->s_f_ops) {
290 s_f_ops = card->s_f_ops;
291 card->s_f_ops = s_f_ops->next;
292 kfree(s_f_ops);
294 write_lock(&snd_card_rwlock);
295 snd_cards_lock &= ~(1 << card->number);
296 write_unlock(&snd_card_rwlock);
297 kfree(card);
298 return 0;
301 static void snd_card_free_thread(void * __card)
303 snd_card_t *card = __card;
304 struct module * module = card->module;
306 if (!try_module_get(module)) {
307 snd_printk(KERN_ERR "unable to lock toplevel module for card %i in free thread\n", card->number);
308 module = NULL;
311 snd_card_free(card);
313 module_put(module);
317 * snd_card_free_in_thread - call snd_card_free() in thread
318 * @card: soundcard structure
320 * This function schedules the call of snd_card_free() function in a
321 * work queue. When all devices are released (non-busy), the work
322 * is woken up and calls snd_card_free().
324 * When a card can be disconnected at any time by hotplug service,
325 * this function should be used in disconnect (or detach) callback
326 * instead of calling snd_card_free() directly.
328 * Returns - zero otherwise a negative error code if the start of thread failed.
330 int snd_card_free_in_thread(snd_card_t * card)
332 if (card->files == NULL) {
333 snd_card_free(card);
334 return 0;
337 if (schedule_work(&card->free_workq))
338 return 0;
340 snd_printk(KERN_ERR "schedule_work() failed in snd_card_free_in_thread for card %i\n", card->number);
341 /* try to free the structure immediately */
342 snd_card_free(card);
343 return -EFAULT;
346 static void choose_default_id(snd_card_t * card)
348 int i, len, idx_flag = 0, loops = 8;
349 char *id, *spos;
351 id = spos = card->shortname;
352 while (*id != '\0') {
353 if (*id == ' ')
354 spos = id + 1;
355 id++;
357 id = card->id;
358 while (*spos != '\0' && !isalnum(*spos))
359 spos++;
360 if (isdigit(*spos))
361 *id++ = isalpha(card->shortname[0]) ? card->shortname[0] : 'D';
362 while (*spos != '\0' && (size_t)(id - card->id) < sizeof(card->id) - 1) {
363 if (isalnum(*spos))
364 *id++ = *spos;
365 spos++;
367 *id = '\0';
369 id = card->id;
371 if (*id == '\0')
372 strcpy(id, "default");
374 while (1) {
375 if (loops-- == 0) {
376 snd_printk(KERN_ERR "unable to choose default card id (%s)", id);
377 strcpy(card->id, card->proc_root->name);
378 return;
380 if (!snd_info_check_reserved_words(id))
381 goto __change;
382 for (i = 0; i < snd_ecards_limit; i++) {
383 if (snd_cards[i] && !strcmp(snd_cards[i]->id, id))
384 goto __change;
386 break;
388 __change:
389 len = strlen(id);
390 if (idx_flag)
391 id[len-1]++;
392 else if ((size_t)len <= sizeof(card->id) - 3) {
393 strcat(id, "_1");
394 idx_flag++;
395 } else {
396 spos = id + len - 2;
397 if ((size_t)len <= sizeof(card->id) - 2)
398 spos++;
399 *spos++ = '_';
400 *spos++ = '1';
401 *spos++ = '\0';
402 idx_flag++;
408 * snd_card_register - register the soundcard
409 * @card: soundcard structure
411 * This function registers all the devices assigned to the soundcard.
412 * Until calling this, the ALSA control interface is blocked from the
413 * external accesses. Thus, you should call this function at the end
414 * of the initialization of the card.
416 * Returns zero otherwise a negative error code if the registrain failed.
418 int snd_card_register(snd_card_t * card)
420 int err;
421 snd_info_entry_t *entry;
423 snd_runtime_check(card != NULL, return -EINVAL);
424 if ((err = snd_device_register_all(card)) < 0)
425 return err;
426 write_lock(&snd_card_rwlock);
427 if (snd_cards[card->number]) {
428 /* already registered */
429 write_unlock(&snd_card_rwlock);
430 return 0;
432 if (card->id[0] == '\0')
433 choose_default_id(card);
434 snd_cards[card->number] = card;
435 snd_cards_count++;
436 write_unlock(&snd_card_rwlock);
437 if ((err = snd_info_card_register(card)) < 0) {
438 snd_printd("unable to create card info\n");
439 goto __skip_info;
441 if ((entry = snd_info_create_card_entry(card, "id", card->proc_root)) == NULL) {
442 snd_printd("unable to create card entry\n");
443 goto __skip_info;
445 entry->content = SNDRV_INFO_CONTENT_TEXT;
446 entry->c.text.read_size = PAGE_SIZE;
447 entry->c.text.read = snd_card_id_read;
448 if (snd_info_register(entry) < 0) {
449 snd_info_free_entry(entry);
450 entry = NULL;
452 card->proc_id = entry;
453 __skip_info:
454 #if defined(CONFIG_SND_MIXER_OSS) || defined(CONFIG_SND_MIXER_OSS_MODULE)
455 if (snd_mixer_oss_notify_callback)
456 snd_mixer_oss_notify_callback(card, SND_MIXER_OSS_NOTIFY_REGISTER);
457 #endif
458 return 0;
461 static snd_info_entry_t *snd_card_info_entry = NULL;
463 static void snd_card_info_read(snd_info_entry_t *entry, snd_info_buffer_t * buffer)
465 int idx, count;
466 snd_card_t *card;
468 for (idx = count = 0; idx < SNDRV_CARDS; idx++) {
469 read_lock(&snd_card_rwlock);
470 if ((card = snd_cards[idx]) != NULL) {
471 count++;
472 snd_iprintf(buffer, "%i [%-15s]: %s - %s\n",
473 idx,
474 card->id,
475 card->driver,
476 card->shortname);
477 snd_iprintf(buffer, " %s\n",
478 card->longname);
480 read_unlock(&snd_card_rwlock);
482 if (!count)
483 snd_iprintf(buffer, "--- no soundcards ---\n");
486 #if defined(CONFIG_SND_OSSEMUL) && defined(CONFIG_PROC_FS)
488 void snd_card_info_read_oss(snd_info_buffer_t * buffer)
490 int idx, count;
491 snd_card_t *card;
493 for (idx = count = 0; idx < SNDRV_CARDS; idx++) {
494 read_lock(&snd_card_rwlock);
495 if ((card = snd_cards[idx]) != NULL) {
496 count++;
497 snd_iprintf(buffer, "%s\n", card->longname);
499 read_unlock(&snd_card_rwlock);
501 if (!count) {
502 snd_iprintf(buffer, "--- no soundcards ---\n");
506 #endif
508 #ifdef MODULE
509 static snd_info_entry_t *snd_card_module_info_entry;
510 static void snd_card_module_info_read(snd_info_entry_t *entry, snd_info_buffer_t * buffer)
512 int idx;
513 snd_card_t *card;
515 for (idx = 0; idx < SNDRV_CARDS; idx++) {
516 read_lock(&snd_card_rwlock);
517 if ((card = snd_cards[idx]) != NULL)
518 snd_iprintf(buffer, "%i %s\n", idx, card->module->name);
519 read_unlock(&snd_card_rwlock);
522 #endif
524 int __init snd_card_info_init(void)
526 snd_info_entry_t *entry;
528 entry = snd_info_create_module_entry(THIS_MODULE, "cards", NULL);
529 snd_runtime_check(entry != NULL, return -ENOMEM);
530 entry->content = SNDRV_INFO_CONTENT_TEXT;
531 entry->c.text.read_size = PAGE_SIZE;
532 entry->c.text.read = snd_card_info_read;
533 if (snd_info_register(entry) < 0) {
534 snd_info_free_entry(entry);
535 return -ENOMEM;
537 snd_card_info_entry = entry;
539 #ifdef MODULE
540 entry = snd_info_create_module_entry(THIS_MODULE, "modules", NULL);
541 if (entry) {
542 entry->content = SNDRV_INFO_CONTENT_TEXT;
543 entry->c.text.read_size = PAGE_SIZE;
544 entry->c.text.read = snd_card_module_info_read;
545 if (snd_info_register(entry) < 0)
546 snd_info_free_entry(entry);
547 else
548 snd_card_module_info_entry = entry;
550 #endif
552 return 0;
555 int __exit snd_card_info_done(void)
557 if (snd_card_info_entry)
558 snd_info_unregister(snd_card_info_entry);
559 #ifdef MODULE
560 if (snd_card_module_info_entry)
561 snd_info_unregister(snd_card_module_info_entry);
562 #endif
563 return 0;
567 * snd_component_add - add a component string
568 * @card: soundcard structure
569 * @component: the component id string
571 * This function adds the component id string to the supported list.
572 * The component can be referred from the alsa-lib.
574 * Returns zero otherwise a negative error code.
577 int snd_component_add(snd_card_t *card, const char *component)
579 char *ptr;
580 int len = strlen(component);
582 ptr = strstr(card->components, component);
583 if (ptr != NULL) {
584 if (ptr[len] == '\0' || ptr[len] == ' ') /* already there */
585 return 1;
587 if (strlen(card->components) + 1 + len + 1 > sizeof(card->components)) {
588 snd_BUG();
589 return -ENOMEM;
591 if (card->components[0] != '\0')
592 strcat(card->components, " ");
593 strcat(card->components, component);
594 return 0;
598 * snd_card_file_add - add the file to the file list of the card
599 * @card: soundcard structure
600 * @file: file pointer
602 * This function adds the file to the file linked-list of the card.
603 * This linked-list is used to keep tracking the connection state,
604 * and to avoid the release of busy resources by hotplug.
606 * Returns zero or a negative error code.
608 int snd_card_file_add(snd_card_t *card, struct file *file)
610 struct snd_monitor_file *mfile;
612 mfile = kmalloc(sizeof(*mfile), GFP_KERNEL);
613 if (mfile == NULL)
614 return -ENOMEM;
615 mfile->file = file;
616 mfile->next = NULL;
617 spin_lock(&card->files_lock);
618 if (card->shutdown) {
619 spin_unlock(&card->files_lock);
620 kfree(mfile);
621 return -ENODEV;
623 mfile->next = card->files;
624 card->files = mfile;
625 spin_unlock(&card->files_lock);
626 return 0;
630 * snd_card_file_remove - remove the file from the file list
631 * @card: soundcard structure
632 * @file: file pointer
634 * This function removes the file formerly added to the card via
635 * snd_card_file_add() function.
636 * If all files are removed and the release of the card is
637 * scheduled, it will wake up the the thread to call snd_card_free()
638 * (see snd_card_free_in_thread() function).
640 * Returns zero or a negative error code.
642 int snd_card_file_remove(snd_card_t *card, struct file *file)
644 struct snd_monitor_file *mfile, *pfile = NULL;
646 spin_lock(&card->files_lock);
647 mfile = card->files;
648 while (mfile) {
649 if (mfile->file == file) {
650 if (pfile)
651 pfile->next = mfile->next;
652 else
653 card->files = mfile->next;
654 break;
656 pfile = mfile;
657 mfile = mfile->next;
659 spin_unlock(&card->files_lock);
660 if (card->files == NULL)
661 wake_up(&card->shutdown_sleep);
662 if (mfile) {
663 kfree(mfile);
664 } else {
665 snd_printk(KERN_ERR "ALSA card file remove problem (%p)\n", file);
666 return -ENOENT;
668 return 0;
671 #ifdef CONFIG_PM
673 * snd_power_wait - wait until the power-state is changed.
674 * @card: soundcard structure
675 * @power_state: expected power state
676 * @file: file structure for the O_NONBLOCK check (optional)
678 * Waits until the power-state is changed.
680 * Note: the power lock must be active before call.
682 int snd_power_wait(snd_card_t *card, unsigned int power_state, struct file *file)
684 wait_queue_t wait;
686 /* fastpath */
687 if (snd_power_get_state(card) == power_state)
688 return 0;
689 init_waitqueue_entry(&wait, current);
690 add_wait_queue(&card->power_sleep, &wait);
691 while (1) {
692 if (card->shutdown)
693 return -ENODEV;
694 if (snd_power_get_state(card) == power_state) {
695 remove_wait_queue(&card->power_sleep, &wait);
696 return 0;
698 if (file && (file->f_flags & O_NONBLOCK))
699 return -EAGAIN;
700 set_current_state(TASK_UNINTERRUPTIBLE);
701 snd_power_unlock(card);
702 schedule_timeout(30 * HZ);
703 snd_power_lock(card);
706 #endif /* CONFIG_PM */