init.c 19.3 KB
Newer Older
L
Linus Torvalds 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30
/*
 *  Initialization routines
 *  Copyright (c) by Jaroslav Kysela <perex@suse.cz>
 *
 *
 *   This program is free software; you can redistribute it and/or modify
 *   it under the terms of the GNU General Public License as published by
 *   the Free Software Foundation; either version 2 of the License, or
 *   (at your option) any later version.
 *
 *   This program is distributed in the hope that it will be useful,
 *   but WITHOUT ANY WARRANTY; without even the implied warranty of
 *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 *   GNU General Public License for more details.
 *
 *   You should have received a copy of the GNU General Public License
 *   along with this program; if not, write to the Free Software
 *   Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
 *
 */

#include <sound/driver.h>
#include <linux/init.h>
#include <linux/sched.h>
#include <linux/file.h>
#include <linux/slab.h>
#include <linux/time.h>
#include <linux/ctype.h>
#include <linux/pci.h>
#include <linux/pm.h>
31

L
Linus Torvalds 已提交
32 33 34 35 36 37 38 39 40
#include <sound/core.h>
#include <sound/control.h>
#include <sound/info.h>

struct snd_shutdown_f_ops {
	struct file_operations f_ops;
	struct snd_shutdown_f_ops *next;
};

41 42
static unsigned int snd_cards_lock;	/* locked for registering/using */
struct snd_card *snd_cards[SNDRV_CARDS];
43 44
EXPORT_SYMBOL(snd_cards);

45
static DEFINE_MUTEX(snd_card_mutex);
L
Linus Torvalds 已提交
46 47

#if defined(CONFIG_SND_MIXER_OSS) || defined(CONFIG_SND_MIXER_OSS_MODULE)
48
int (*snd_mixer_oss_notify_callback)(struct snd_card *card, int free_flag);
49
EXPORT_SYMBOL(snd_mixer_oss_notify_callback);
L
Linus Torvalds 已提交
50 51
#endif

52
#ifdef CONFIG_PROC_FS
53 54
static void snd_card_id_read(struct snd_info_entry *entry,
			     struct snd_info_buffer *buffer)
L
Linus Torvalds 已提交
55 56 57 58
{
	snd_iprintf(buffer, "%s\n", entry->card->id);
}

59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83
static inline int init_info_for_card(struct snd_card *card)
{
	int err;
	struct snd_info_entry *entry;

	if ((err = snd_info_card_register(card)) < 0) {
		snd_printd("unable to create card info\n");
		return err;
	}
	if ((entry = snd_info_create_card_entry(card, "id", card->proc_root)) == NULL) {
		snd_printd("unable to create card entry\n");
		return err;
	}
	entry->c.text.read = snd_card_id_read;
	if (snd_info_register(entry) < 0) {
		snd_info_free_entry(entry);
		entry = NULL;
	}
	card->proc_id = entry;
	return 0;
}
#else /* !CONFIG_PROC_FS */
#define init_info_for_card(card)
#endif

L
Linus Torvalds 已提交
84 85 86 87 88 89 90 91 92
/**
 *  snd_card_new - create and initialize a soundcard structure
 *  @idx: card index (address) [0 ... (SNDRV_CARDS-1)]
 *  @xid: card identification (ASCII string)
 *  @module: top level module for locking
 *  @extra_size: allocate this extra size after the main soundcard structure
 *
 *  Creates and initializes a soundcard structure.
 *
93
 *  Returns kmallocated snd_card structure. Creates the ALSA control interface
L
Linus Torvalds 已提交
94 95
 *  (which is blocked until snd_card_register function is called).
 */
96
struct snd_card *snd_card_new(int idx, const char *xid,
L
Linus Torvalds 已提交
97 98
			 struct module *module, int extra_size)
{
99
	struct snd_card *card;
L
Linus Torvalds 已提交
100 101 102 103
	int err;

	if (extra_size < 0)
		extra_size = 0;
104
	card = kzalloc(sizeof(*card) + extra_size, GFP_KERNEL);
L
Linus Torvalds 已提交
105 106 107 108 109 110 111 112
	if (card == NULL)
		return NULL;
	if (xid) {
		if (!snd_info_check_reserved_words(xid))
			goto __error;
		strlcpy(card->id, xid, sizeof(card->id));
	}
	err = 0;
113
	mutex_lock(&snd_card_mutex);
L
Linus Torvalds 已提交
114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130
	if (idx < 0) {
		int idx2;
		for (idx2 = 0; idx2 < SNDRV_CARDS; idx2++)
			if (~snd_cards_lock & idx & 1<<idx2) {
				idx = idx2;
				if (idx >= snd_ecards_limit)
					snd_ecards_limit = idx + 1;
				break;
			}
	} else if (idx < snd_ecards_limit) {
		if (snd_cards_lock & (1 << idx))
			err = -ENODEV;	/* invalid */
	} else if (idx < SNDRV_CARDS)
		snd_ecards_limit = idx + 1; /* increase the limit */
	else
		err = -ENODEV;
	if (idx < 0 || err < 0) {
131
		mutex_unlock(&snd_card_mutex);
L
Linus Torvalds 已提交
132 133 134 135
		snd_printk(KERN_ERR "cannot find the slot for index %d (range 0-%i)\n", idx, snd_ecards_limit - 1);
		goto __error;
	}
	snd_cards_lock |= 1 << idx;		/* lock it */
136
	mutex_unlock(&snd_card_mutex);
L
Linus Torvalds 已提交
137 138 139 140 141 142 143 144 145 146
	card->number = idx;
	card->module = module;
	INIT_LIST_HEAD(&card->devices);
	init_rwsem(&card->controls_rwsem);
	rwlock_init(&card->ctl_files_rwlock);
	INIT_LIST_HEAD(&card->controls);
	INIT_LIST_HEAD(&card->ctl_files);
	spin_lock_init(&card->files_lock);
	init_waitqueue_head(&card->shutdown_sleep);
#ifdef CONFIG_PM
147
	mutex_init(&card->power_lock);
L
Linus Torvalds 已提交
148 149 150 151 152 153 154 155 156 157 158 159 160
	init_waitqueue_head(&card->power_sleep);
#endif
	/* the control interface cannot be accessed from the user space until */
	/* snd_cards_bitmask and snd_cards are set with snd_card_register */
	if ((err = snd_ctl_create(card)) < 0) {
		snd_printd("unable to register control minors\n");
		goto __error;
	}
	if ((err = snd_info_card_create(card)) < 0) {
		snd_printd("unable to create card info\n");
		goto __error_ctl;
	}
	if (extra_size > 0)
161
		card->private_data = (char *)card + sizeof(struct snd_card);
L
Linus Torvalds 已提交
162 163 164 165 166 167 168 169 170
	return card;

      __error_ctl:
	snd_device_free_all(card, SNDRV_DEV_CMD_PRE);
      __error:
	kfree(card);
      	return NULL;
}

171 172
EXPORT_SYMBOL(snd_card_new);

173 174 175 176 177 178 179 180 181 182 183
/* return non-zero if a card is already locked */
int snd_card_locked(int card)
{
	int locked;

	mutex_lock(&snd_card_mutex);
	locked = snd_cards_lock & (1 << card);
	mutex_unlock(&snd_card_mutex);
	return locked;
}

184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200
static loff_t snd_disconnect_llseek(struct file *file, loff_t offset, int orig)
{
	return -ENODEV;
}

static ssize_t snd_disconnect_read(struct file *file, char __user *buf,
				   size_t count, loff_t *offset)
{
	return -ENODEV;
}

static ssize_t snd_disconnect_write(struct file *file, const char __user *buf,
				    size_t count, loff_t *offset)
{
	return -ENODEV;
}

L
Linus Torvalds 已提交
201 202 203 204 205
static unsigned int snd_disconnect_poll(struct file * file, poll_table * wait)
{
	return POLLERR | POLLNVAL;
}

206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221
static long snd_disconnect_ioctl(struct file *file,
				 unsigned int cmd, unsigned long arg)
{
	return -ENODEV;
}

static int snd_disconnect_mmap(struct file *file, struct vm_area_struct *vma)
{
	return -ENODEV;
}

static int snd_disconnect_fasync(int fd, struct file *file, int on)
{
	return -ENODEV;
}

L
Linus Torvalds 已提交
222 223 224 225 226 227 228 229 230 231 232
/**
 *  snd_card_disconnect - disconnect all APIs from the file-operations (user space)
 *  @card: soundcard structure
 *
 *  Disconnects all APIs from the file-operations (user space).
 *
 *  Returns zero, otherwise a negative error code.
 *
 *  Note: The current implementation replaces all active file->f_op with special
 *        dummy file operations (they do nothing except release).
 */
233
int snd_card_disconnect(struct snd_card *card)
L
Linus Torvalds 已提交
234 235 236 237
{
	struct snd_monitor_file *mfile;
	struct file *file;
	struct snd_shutdown_f_ops *s_f_ops;
238 239
	struct file_operations *f_ops;
	const struct file_operations *old_f_ops;
L
Linus Torvalds 已提交
240 241 242 243 244 245 246 247 248 249 250
	int err;

	spin_lock(&card->files_lock);
	if (card->shutdown) {
		spin_unlock(&card->files_lock);
		return 0;
	}
	card->shutdown = 1;
	spin_unlock(&card->files_lock);

	/* phase 1: disable fops (user space) operations for ALSA API */
251
	mutex_lock(&snd_card_mutex);
L
Linus Torvalds 已提交
252
	snd_cards[card->number] = NULL;
253
	mutex_unlock(&snd_card_mutex);
L
Linus Torvalds 已提交
254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272
	
	/* phase 2: replace file->f_op with special dummy operations */
	
	spin_lock(&card->files_lock);
	mfile = card->files;
	while (mfile) {
		file = mfile->file;

		/* it's critical part, use endless loop */
		/* we have no room to fail */
		s_f_ops = kmalloc(sizeof(struct snd_shutdown_f_ops), GFP_ATOMIC);
		if (s_f_ops == NULL)
			panic("Atomic allocation failed for snd_shutdown_f_ops!");

		f_ops = &s_f_ops->f_ops;

		memset(f_ops, 0, sizeof(*f_ops));
		f_ops->owner = file->f_op->owner;
		f_ops->release = file->f_op->release;
273 274 275
		f_ops->llseek = snd_disconnect_llseek;
		f_ops->read = snd_disconnect_read;
		f_ops->write = snd_disconnect_write;
L
Linus Torvalds 已提交
276
		f_ops->poll = snd_disconnect_poll;
277 278 279 280 281 282
		f_ops->unlocked_ioctl = snd_disconnect_ioctl;
#ifdef CONFIG_COMPAT
		f_ops->compat_ioctl = snd_disconnect_ioctl;
#endif
		f_ops->mmap = snd_disconnect_mmap;
		f_ops->fasync = snd_disconnect_fasync;
L
Linus Torvalds 已提交
283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309

		s_f_ops->next = card->s_f_ops;
		card->s_f_ops = s_f_ops;
		
		f_ops = fops_get(f_ops);

		old_f_ops = file->f_op;
		file->f_op = f_ops;	/* must be atomic */
		fops_put(old_f_ops);
		
		mfile = mfile->next;
	}
	spin_unlock(&card->files_lock);	

	/* phase 3: notify all connected devices about disconnection */
	/* at this point, they cannot respond to any calls except release() */

#if defined(CONFIG_SND_MIXER_OSS) || defined(CONFIG_SND_MIXER_OSS_MODULE)
	if (snd_mixer_oss_notify_callback)
		snd_mixer_oss_notify_callback(card, SND_MIXER_OSS_NOTIFY_DISCONNECT);
#endif

	/* notify all devices that we are disconnected */
	err = snd_device_disconnect_all(card);
	if (err < 0)
		snd_printk(KERN_ERR "not all devices for card %i can be disconnected\n", card->number);

310
	snd_info_card_disconnect(card);
L
Linus Torvalds 已提交
311 312 313
	return 0;	
}

314 315
EXPORT_SYMBOL(snd_card_disconnect);

L
Linus Torvalds 已提交
316 317 318 319 320 321 322 323 324 325 326
/**
 *  snd_card_free - frees given soundcard structure
 *  @card: soundcard structure
 *
 *  This function releases the soundcard structure and the all assigned
 *  devices automatically.  That is, you don't have to release the devices
 *  by yourself.
 *
 *  Returns zero. Frees all associated devices and frees the control
 *  interface associated to given soundcard.
 */
327
static int snd_card_do_free(struct snd_card *card)
L
Linus Torvalds 已提交
328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348
{
	struct snd_shutdown_f_ops *s_f_ops;

#if defined(CONFIG_SND_MIXER_OSS) || defined(CONFIG_SND_MIXER_OSS_MODULE)
	if (snd_mixer_oss_notify_callback)
		snd_mixer_oss_notify_callback(card, SND_MIXER_OSS_NOTIFY_FREE);
#endif
	if (snd_device_free_all(card, SNDRV_DEV_CMD_PRE) < 0) {
		snd_printk(KERN_ERR "unable to free all devices (pre)\n");
		/* Fatal, but this situation should never occur */
	}
	if (snd_device_free_all(card, SNDRV_DEV_CMD_NORMAL) < 0) {
		snd_printk(KERN_ERR "unable to free all devices (normal)\n");
		/* Fatal, but this situation should never occur */
	}
	if (snd_device_free_all(card, SNDRV_DEV_CMD_POST) < 0) {
		snd_printk(KERN_ERR "unable to free all devices (post)\n");
		/* Fatal, but this situation should never occur */
	}
	if (card->private_free)
		card->private_free(card);
349
	snd_info_free_entry(card->proc_id);
L
Linus Torvalds 已提交
350 351 352 353 354 355 356 357 358
	if (snd_info_card_free(card) < 0) {
		snd_printk(KERN_WARNING "unable to free card info\n");
		/* Not fatal error */
	}
	while (card->s_f_ops) {
		s_f_ops = card->s_f_ops;
		card->s_f_ops = s_f_ops->next;
		kfree(s_f_ops);
	}
359 360 361 362 363 364 365 366 367
	kfree(card);
	return 0;
}

static int snd_card_free_prepare(struct snd_card *card)
{
	if (card == NULL)
		return -EINVAL;
	(void) snd_card_disconnect(card);
368
	mutex_lock(&snd_card_mutex);
369
	snd_cards[card->number] = NULL;
L
Linus Torvalds 已提交
370
	snd_cards_lock &= ~(1 << card->number);
371
	mutex_unlock(&snd_card_mutex);
372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407
#ifdef CONFIG_PM
	wake_up(&card->power_sleep);
#endif
	return 0;
}

int snd_card_free_when_closed(struct snd_card *card)
{
	int free_now = 0;
	int ret = snd_card_free_prepare(card);
	if (ret)
		return ret;

	spin_lock(&card->files_lock);
	if (card->files == NULL)
		free_now = 1;
	else
		card->free_on_last_close = 1;
	spin_unlock(&card->files_lock);

	if (free_now)
		snd_card_do_free(card);
	return 0;
}

EXPORT_SYMBOL(snd_card_free_when_closed);

int snd_card_free(struct snd_card *card)
{
	int ret = snd_card_free_prepare(card);
	if (ret)
		return ret;

	/* wait, until all devices are ready for the free operation */
	wait_event(card->shutdown_sleep, card->files == NULL);
	snd_card_do_free(card);
L
Linus Torvalds 已提交
408 409 410
	return 0;
}

411 412
EXPORT_SYMBOL(snd_card_free);

413
static void choose_default_id(struct snd_card *card)
L
Linus Torvalds 已提交
414
{
415
	int i, len, idx_flag = 0, loops = SNDRV_CARDS;
L
Linus Torvalds 已提交
416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456
	char *id, *spos;
	
	id = spos = card->shortname;	
	while (*id != '\0') {
		if (*id == ' ')
			spos = id + 1;
		id++;
	}
	id = card->id;
	while (*spos != '\0' && !isalnum(*spos))
		spos++;
	if (isdigit(*spos))
		*id++ = isalpha(card->shortname[0]) ? card->shortname[0] : 'D';
	while (*spos != '\0' && (size_t)(id - card->id) < sizeof(card->id) - 1) {
		if (isalnum(*spos))
			*id++ = *spos;
		spos++;
	}
	*id = '\0';

	id = card->id;
	
	if (*id == '\0')
		strcpy(id, "default");

	while (1) {
	      	if (loops-- == 0) {
      			snd_printk(KERN_ERR "unable to choose default card id (%s)\n", id);
      			strcpy(card->id, card->proc_root->name);
      			return;
      		}
	      	if (!snd_info_check_reserved_words(id))
      			goto __change;
		for (i = 0; i < snd_ecards_limit; i++) {
			if (snd_cards[i] && !strcmp(snd_cards[i]->id, id))
				goto __change;
		}
		break;

	      __change:
		len = strlen(id);
457 458 459 460 461 462
		if (idx_flag) {
			if (id[len-1] != '9')
				id[len-1]++;
			else
				id[len-1] = 'A';
		} else if ((size_t)len <= sizeof(card->id) - 3) {
L
Linus Torvalds 已提交
463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487
			strcat(id, "_1");
			idx_flag++;
		} else {
			spos = id + len - 2;
			if ((size_t)len <= sizeof(card->id) - 2)
				spos++;
			*spos++ = '_';
			*spos++ = '1';
			*spos++ = '\0';
			idx_flag++;
		}
	}
}

/**
 *  snd_card_register - register the soundcard
 *  @card: soundcard structure
 *
 *  This function registers all the devices assigned to the soundcard.
 *  Until calling this, the ALSA control interface is blocked from the
 *  external accesses.  Thus, you should call this function at the end
 *  of the initialization of the card.
 *
 *  Returns zero otherwise a negative error code if the registrain failed.
 */
488
int snd_card_register(struct snd_card *card)
L
Linus Torvalds 已提交
489 490 491
{
	int err;

492
	snd_assert(card != NULL, return -EINVAL);
L
Linus Torvalds 已提交
493 494
	if ((err = snd_device_register_all(card)) < 0)
		return err;
495
	mutex_lock(&snd_card_mutex);
L
Linus Torvalds 已提交
496 497
	if (snd_cards[card->number]) {
		/* already registered */
498
		mutex_unlock(&snd_card_mutex);
L
Linus Torvalds 已提交
499 500 501 502 503
		return 0;
	}
	if (card->id[0] == '\0')
		choose_default_id(card);
	snd_cards[card->number] = card;
504
	mutex_unlock(&snd_card_mutex);
505
	init_info_for_card(card);
L
Linus Torvalds 已提交
506 507 508 509 510 511 512
#if defined(CONFIG_SND_MIXER_OSS) || defined(CONFIG_SND_MIXER_OSS_MODULE)
	if (snd_mixer_oss_notify_callback)
		snd_mixer_oss_notify_callback(card, SND_MIXER_OSS_NOTIFY_REGISTER);
#endif
	return 0;
}

513 514
EXPORT_SYMBOL(snd_card_register);

515
#ifdef CONFIG_PROC_FS
516
static struct snd_info_entry *snd_card_info_entry;
L
Linus Torvalds 已提交
517

T
Takashi Iwai 已提交
518 519
static void snd_card_info_read(struct snd_info_entry *entry,
			       struct snd_info_buffer *buffer)
L
Linus Torvalds 已提交
520 521
{
	int idx, count;
522
	struct snd_card *card;
L
Linus Torvalds 已提交
523 524

	for (idx = count = 0; idx < SNDRV_CARDS; idx++) {
525
		mutex_lock(&snd_card_mutex);
L
Linus Torvalds 已提交
526 527
		if ((card = snd_cards[idx]) != NULL) {
			count++;
528
			snd_iprintf(buffer, "%2i [%-15s]: %s - %s\n",
L
Linus Torvalds 已提交
529 530 531 532
					idx,
					card->id,
					card->driver,
					card->shortname);
533
			snd_iprintf(buffer, "                      %s\n",
L
Linus Torvalds 已提交
534 535
					card->longname);
		}
536
		mutex_unlock(&snd_card_mutex);
L
Linus Torvalds 已提交
537 538 539 540 541
	}
	if (!count)
		snd_iprintf(buffer, "--- no soundcards ---\n");
}

542
#ifdef CONFIG_SND_OSSEMUL
L
Linus Torvalds 已提交
543

544
void snd_card_info_read_oss(struct snd_info_buffer *buffer)
L
Linus Torvalds 已提交
545 546
{
	int idx, count;
547
	struct snd_card *card;
L
Linus Torvalds 已提交
548 549

	for (idx = count = 0; idx < SNDRV_CARDS; idx++) {
550
		mutex_lock(&snd_card_mutex);
L
Linus Torvalds 已提交
551 552 553 554
		if ((card = snd_cards[idx]) != NULL) {
			count++;
			snd_iprintf(buffer, "%s\n", card->longname);
		}
555
		mutex_unlock(&snd_card_mutex);
L
Linus Torvalds 已提交
556 557 558 559 560 561 562 563 564
	}
	if (!count) {
		snd_iprintf(buffer, "--- no soundcards ---\n");
	}
}

#endif

#ifdef MODULE
565 566 567
static struct snd_info_entry *snd_card_module_info_entry;
static void snd_card_module_info_read(struct snd_info_entry *entry,
				      struct snd_info_buffer *buffer)
L
Linus Torvalds 已提交
568 569
{
	int idx;
570
	struct snd_card *card;
L
Linus Torvalds 已提交
571 572

	for (idx = 0; idx < SNDRV_CARDS; idx++) {
573
		mutex_lock(&snd_card_mutex);
L
Linus Torvalds 已提交
574
		if ((card = snd_cards[idx]) != NULL)
575 576
			snd_iprintf(buffer, "%2i %s\n",
				    idx, card->module->name);
577
		mutex_unlock(&snd_card_mutex);
L
Linus Torvalds 已提交
578 579 580 581 582 583
	}
}
#endif

int __init snd_card_info_init(void)
{
584
	struct snd_info_entry *entry;
L
Linus Torvalds 已提交
585 586

	entry = snd_info_create_module_entry(THIS_MODULE, "cards", NULL);
587 588
	if (! entry)
		return -ENOMEM;
L
Linus Torvalds 已提交
589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611
	entry->c.text.read = snd_card_info_read;
	if (snd_info_register(entry) < 0) {
		snd_info_free_entry(entry);
		return -ENOMEM;
	}
	snd_card_info_entry = entry;

#ifdef MODULE
	entry = snd_info_create_module_entry(THIS_MODULE, "modules", NULL);
	if (entry) {
		entry->c.text.read = snd_card_module_info_read;
		if (snd_info_register(entry) < 0)
			snd_info_free_entry(entry);
		else
			snd_card_module_info_entry = entry;
	}
#endif

	return 0;
}

int __exit snd_card_info_done(void)
{
612
	snd_info_free_entry(snd_card_info_entry);
L
Linus Torvalds 已提交
613
#ifdef MODULE
614
	snd_info_free_entry(snd_card_module_info_entry);
L
Linus Torvalds 已提交
615 616 617 618
#endif
	return 0;
}

619 620
#endif /* CONFIG_PROC_FS */

L
Linus Torvalds 已提交
621 622 623 624 625 626 627 628 629 630 631
/**
 *  snd_component_add - add a component string
 *  @card: soundcard structure
 *  @component: the component id string
 *
 *  This function adds the component id string to the supported list.
 *  The component can be referred from the alsa-lib.
 *
 *  Returns zero otherwise a negative error code.
 */
  
632
int snd_component_add(struct snd_card *card, const char *component)
L
Linus Torvalds 已提交
633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651
{
	char *ptr;
	int len = strlen(component);

	ptr = strstr(card->components, component);
	if (ptr != NULL) {
		if (ptr[len] == '\0' || ptr[len] == ' ')	/* already there */
			return 1;
	}
	if (strlen(card->components) + 1 + len + 1 > sizeof(card->components)) {
		snd_BUG();
		return -ENOMEM;
	}
	if (card->components[0] != '\0')
		strcat(card->components, " ");
	strcat(card->components, component);
	return 0;
}

652 653
EXPORT_SYMBOL(snd_component_add);

L
Linus Torvalds 已提交
654 655 656 657 658 659 660 661 662 663 664
/**
 *  snd_card_file_add - add the file to the file list of the card
 *  @card: soundcard structure
 *  @file: file pointer
 *
 *  This function adds the file to the file linked-list of the card.
 *  This linked-list is used to keep tracking the connection state,
 *  and to avoid the release of busy resources by hotplug.
 *
 *  Returns zero or a negative error code.
 */
665
int snd_card_file_add(struct snd_card *card, struct file *file)
L
Linus Torvalds 已提交
666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685
{
	struct snd_monitor_file *mfile;

	mfile = kmalloc(sizeof(*mfile), GFP_KERNEL);
	if (mfile == NULL)
		return -ENOMEM;
	mfile->file = file;
	mfile->next = NULL;
	spin_lock(&card->files_lock);
	if (card->shutdown) {
		spin_unlock(&card->files_lock);
		kfree(mfile);
		return -ENODEV;
	}
	mfile->next = card->files;
	card->files = mfile;
	spin_unlock(&card->files_lock);
	return 0;
}

686 687
EXPORT_SYMBOL(snd_card_file_add);

L
Linus Torvalds 已提交
688 689 690 691 692 693 694
/**
 *  snd_card_file_remove - remove the file from the file list
 *  @card: soundcard structure
 *  @file: file pointer
 *
 *  This function removes the file formerly added to the card via
 *  snd_card_file_add() function.
695 696 697
 *  If all files are removed and snd_card_free_when_closed() was
 *  called beforehand, it processes the pending release of
 *  resources.
L
Linus Torvalds 已提交
698 699 700
 *
 *  Returns zero or a negative error code.
 */
701
int snd_card_file_remove(struct snd_card *card, struct file *file)
L
Linus Torvalds 已提交
702 703
{
	struct snd_monitor_file *mfile, *pfile = NULL;
704
	int last_close = 0;
L
Linus Torvalds 已提交
705 706 707 708 709 710 711 712 713 714 715 716 717 718 719

	spin_lock(&card->files_lock);
	mfile = card->files;
	while (mfile) {
		if (mfile->file == file) {
			if (pfile)
				pfile->next = mfile->next;
			else
				card->files = mfile->next;
			break;
		}
		pfile = mfile;
		mfile = mfile->next;
	}
	if (card->files == NULL)
720 721 722
		last_close = 1;
	spin_unlock(&card->files_lock);
	if (last_close) {
L
Linus Torvalds 已提交
723
		wake_up(&card->shutdown_sleep);
724 725 726
		if (card->free_on_last_close)
			snd_card_do_free(card);
	}
L
Linus Torvalds 已提交
727 728 729 730 731 732 733 734
	if (!mfile) {
		snd_printk(KERN_ERR "ALSA card file remove problem (%p)\n", file);
		return -ENOENT;
	}
	kfree(mfile);
	return 0;
}

735 736
EXPORT_SYMBOL(snd_card_file_remove);

L
Linus Torvalds 已提交
737 738 739 740 741 742 743 744 745 746
#ifdef CONFIG_PM
/**
 *  snd_power_wait - wait until the power-state is changed.
 *  @card: soundcard structure
 *  @power_state: expected power state
 *
 *  Waits until the power-state is changed.
 *
 *  Note: the power lock must be active before call.
 */
747
int snd_power_wait(struct snd_card *card, unsigned int power_state)
L
Linus Torvalds 已提交
748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772
{
	wait_queue_t wait;
	int result = 0;

	/* fastpath */
	if (snd_power_get_state(card) == power_state)
		return 0;
	init_waitqueue_entry(&wait, current);
	add_wait_queue(&card->power_sleep, &wait);
	while (1) {
		if (card->shutdown) {
			result = -ENODEV;
			break;
		}
		if (snd_power_get_state(card) == power_state)
			break;
		set_current_state(TASK_UNINTERRUPTIBLE);
		snd_power_unlock(card);
		schedule_timeout(30 * HZ);
		snd_power_lock(card);
	}
	remove_wait_queue(&card->power_sleep, &wait);
	return result;
}

773
EXPORT_SYMBOL(snd_power_wait);
L
Linus Torvalds 已提交
774
#endif /* CONFIG_PM */