init.c 23.3 KB
Newer Older
L
Linus Torvalds 已提交
1 2
/*
 *  Initialization routines
3
 *  Copyright (c) by Jaroslav Kysela <perex@perex.cz>
L
Linus Torvalds 已提交
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
 *
 *
 *   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 <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/pm.h>
29

L
Linus Torvalds 已提交
30 31 32 33
#include <sound/core.h>
#include <sound/control.h>
#include <sound/info.h>

34 35 36
static DEFINE_SPINLOCK(shutdown_lock);
static LIST_HEAD(shutdown_files);

37
static const struct file_operations snd_shutdown_f_ops;
L
Linus Torvalds 已提交
38

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

43
static DEFINE_MUTEX(snd_card_mutex);
L
Linus Torvalds 已提交
44

45 46 47 48
static char *slots[SNDRV_CARDS];
module_param_array(slots, charp, NULL, 0444);
MODULE_PARM_DESC(slots, "Module names assigned to the slots.");

49
/* return non-zero if the given index is reserved for the given
50 51
 * module via slots option
 */
52
static int module_slot_match(struct module *module, int idx)
53
{
54
	int match = 1;
55
#ifdef MODULE
56 57
	const char *s1, *s2;

58 59
	if (!module || !module->name || !slots[idx])
		return 0;
60 61 62 63 64 65 66

	s1 = module->name;
	s2 = slots[idx];
	if (*s2 == '!') {
		match = 0; /* negative match */
		s2++;
	}
67 68 69 70 71 72 73 74 75 76 77
	/* compare module name strings
	 * hyphens are handled as equivalent with underscore
	 */
	for (;;) {
		char c1 = *s1++;
		char c2 = *s2++;
		if (c1 == '-')
			c1 = '_';
		if (c2 == '-')
			c2 = '_';
		if (c1 != c2)
78
			return !match;
79 80 81
		if (!c1)
			break;
	}
82 83
#endif /* MODULE */
	return match;
84 85
}

L
Linus Torvalds 已提交
86
#if defined(CONFIG_SND_MIXER_OSS) || defined(CONFIG_SND_MIXER_OSS_MODULE)
87
int (*snd_mixer_oss_notify_callback)(struct snd_card *card, int free_flag);
88
EXPORT_SYMBOL(snd_mixer_oss_notify_callback);
L
Linus Torvalds 已提交
89 90
#endif

91
#ifdef CONFIG_PROC_FS
92 93
static void snd_card_id_read(struct snd_info_entry *entry,
			     struct snd_info_buffer *buffer)
L
Linus Torvalds 已提交
94 95 96 97
{
	snd_iprintf(buffer, "%s\n", entry->card->id);
}

98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122
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 已提交
123
/**
T
Takashi Iwai 已提交
124
 *  snd_card_create - create and initialize a soundcard structure
L
Linus Torvalds 已提交
125 126 127 128
 *  @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
T
Takashi Iwai 已提交
129
 *  @card_ret: the pointer to store the created card instance
L
Linus Torvalds 已提交
130 131 132
 *
 *  Creates and initializes a soundcard structure.
 *
T
Takashi Iwai 已提交
133 134 135 136 137
 *  The function allocates snd_card instance via kzalloc with the given
 *  space for the driver to use freely.  The allocated struct is stored
 *  in the given card_ret pointer.
 *
 *  Returns zero if successful or a negative error code.
L
Linus Torvalds 已提交
138
 */
T
Takashi Iwai 已提交
139 140 141
int snd_card_create(int idx, const char *xid,
		    struct module *module, int extra_size,
		    struct snd_card **card_ret)
L
Linus Torvalds 已提交
142
{
143
	struct snd_card *card;
144
	int err, idx2;
L
Linus Torvalds 已提交
145

T
Takashi Iwai 已提交
146 147 148 149
	if (snd_BUG_ON(!card_ret))
		return -EINVAL;
	*card_ret = NULL;

L
Linus Torvalds 已提交
150 151
	if (extra_size < 0)
		extra_size = 0;
152
	card = kzalloc(sizeof(*card) + extra_size, GFP_KERNEL);
T
Takashi Iwai 已提交
153 154
	if (!card)
		return -ENOMEM;
155 156
	if (xid)
		snd_card_set_id(card, xid);
L
Linus Torvalds 已提交
157
	err = 0;
158
	mutex_lock(&snd_card_mutex);
L
Linus Torvalds 已提交
159 160
	if (idx < 0) {
		for (idx2 = 0; idx2 < SNDRV_CARDS; idx2++)
161
			/* idx == -1 == 0xffff means: take any free slot */
L
Linus Torvalds 已提交
162
			if (~snd_cards_lock & idx & 1<<idx2) {
163 164 165 166 167 168 169 170 171 172 173 174 175 176
				if (module_slot_match(module, idx2)) {
					idx = idx2;
					break;
				}
			}
	}
	if (idx < 0) {
		for (idx2 = 0; idx2 < SNDRV_CARDS; idx2++)
			/* idx == -1 == 0xffff means: take any free slot */
			if (~snd_cards_lock & idx & 1<<idx2) {
				if (!slots[idx2] || !*slots[idx2]) {
					idx = idx2;
					break;
				}
L
Linus Torvalds 已提交
177
			}
178
	}
179 180 181 182 183 184 185 186
	if (idx < 0)
		err = -ENODEV;
	else if (idx < snd_ecards_limit) {
		if (snd_cards_lock & (1 << idx))
			err = -EBUSY;	/* invalid */
	} else if (idx >= SNDRV_CARDS)
		err = -ENODEV;
	if (err < 0) {
187
		mutex_unlock(&snd_card_mutex);
188 189
		snd_printk(KERN_ERR "cannot find the slot for index %d (range 0-%i), error: %d\n",
			 idx, snd_ecards_limit - 1, err);
L
Linus Torvalds 已提交
190 191 192
		goto __error;
	}
	snd_cards_lock |= 1 << idx;		/* lock it */
193 194
	if (idx >= snd_ecards_limit)
		snd_ecards_limit = idx + 1; /* increase the limit */
195
	mutex_unlock(&snd_card_mutex);
L
Linus Torvalds 已提交
196 197 198 199 200 201 202 203
	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);
204
	INIT_LIST_HEAD(&card->files_list);
L
Linus Torvalds 已提交
205 206
	init_waitqueue_head(&card->shutdown_sleep);
#ifdef CONFIG_PM
207
	mutex_init(&card->power_lock);
L
Linus Torvalds 已提交
208 209 210 211
	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 */
T
Takashi Iwai 已提交
212 213 214
	err = snd_ctl_create(card);
	if (err < 0) {
		snd_printk(KERN_ERR "unable to register control minors\n");
L
Linus Torvalds 已提交
215 216
		goto __error;
	}
T
Takashi Iwai 已提交
217 218 219
	err = snd_info_card_create(card);
	if (err < 0) {
		snd_printk(KERN_ERR "unable to create card info\n");
L
Linus Torvalds 已提交
220 221 222
		goto __error_ctl;
	}
	if (extra_size > 0)
223
		card->private_data = (char *)card + sizeof(struct snd_card);
T
Takashi Iwai 已提交
224 225
	*card_ret = card;
	return 0;
L
Linus Torvalds 已提交
226 227 228 229 230

      __error_ctl:
	snd_device_free_all(card, SNDRV_DEV_CMD_PRE);
      __error:
	kfree(card);
T
Takashi Iwai 已提交
231
  	return err;
L
Linus Torvalds 已提交
232
}
T
Takashi Iwai 已提交
233
EXPORT_SYMBOL(snd_card_create);
234

235 236 237 238 239 240 241 242 243 244 245
/* 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;
}

246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262
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;
}

263 264 265 266 267 268 269 270
static int snd_disconnect_release(struct inode *inode, struct file *file)
{
	struct snd_monitor_file *df = NULL, *_df;

	spin_lock(&shutdown_lock);
	list_for_each_entry(_df, &shutdown_files, shutdown_list) {
		if (_df->file == file) {
			df = _df;
271
			list_del_init(&df->shutdown_list);
272 273 274 275 276
			break;
		}
	}
	spin_unlock(&shutdown_lock);

A
Al Viro 已提交
277 278 279
	if (likely(df)) {
		if ((file->f_flags & FASYNC) && df->disconnected_f_op->fasync)
			df->disconnected_f_op->fasync(-1, file, 0);
280
		return df->disconnected_f_op->release(inode, file);
A
Al Viro 已提交
281
	}
282

283
	panic("%s(%p, %p) failed!", __func__, inode, file);
284 285
}

L
Linus Torvalds 已提交
286 287 288 289 290
static unsigned int snd_disconnect_poll(struct file * file, poll_table * wait)
{
	return POLLERR | POLLNVAL;
}

291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306
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;
}

307
static const struct file_operations snd_shutdown_f_ops =
308 309 310 311 312 313 314 315 316 317 318 319 320 321 322
{
	.owner = 	THIS_MODULE,
	.llseek =	snd_disconnect_llseek,
	.read = 	snd_disconnect_read,
	.write =	snd_disconnect_write,
	.release =	snd_disconnect_release,
	.poll =		snd_disconnect_poll,
	.unlocked_ioctl = snd_disconnect_ioctl,
#ifdef CONFIG_COMPAT
	.compat_ioctl = snd_disconnect_ioctl,
#endif
	.mmap =		snd_disconnect_mmap,
	.fasync =	snd_disconnect_fasync
};

L
Linus Torvalds 已提交
323 324 325 326 327 328 329 330 331 332 333
/**
 *  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).
 */
334
int snd_card_disconnect(struct snd_card *card)
L
Linus Torvalds 已提交
335 336 337 338 339
{
	struct snd_monitor_file *mfile;
	struct file *file;
	int err;

T
Takashi Iwai 已提交
340 341 342
	if (!card)
		return -EINVAL;

L
Linus Torvalds 已提交
343 344 345 346 347 348 349 350 351
	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 */
352
	mutex_lock(&snd_card_mutex);
L
Linus Torvalds 已提交
353
	snd_cards[card->number] = NULL;
T
Takashi Iwai 已提交
354
	snd_cards_lock &= ~(1 << card->number);
355
	mutex_unlock(&snd_card_mutex);
L
Linus Torvalds 已提交
356 357 358 359
	
	/* phase 2: replace file->f_op with special dummy operations */
	
	spin_lock(&card->files_lock);
360
	list_for_each_entry(mfile, &card->files_list, list) {
L
Linus Torvalds 已提交
361 362 363 364
		file = mfile->file;

		/* it's critical part, use endless loop */
		/* we have no room to fail */
365
		mfile->disconnected_f_op = mfile->file->f_op;
L
Linus Torvalds 已提交
366

367 368 369
		spin_lock(&shutdown_lock);
		list_add(&mfile->shutdown_list, &shutdown_files);
		spin_unlock(&shutdown_lock);
L
Linus Torvalds 已提交
370

371
		mfile->file->f_op = &snd_shutdown_f_ops;
372
		fops_get(mfile->file->f_op);
L
Linus Torvalds 已提交
373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388
	}
	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);

389
	snd_info_card_disconnect(card);
390 391 392 393 394
#ifndef CONFIG_SYSFS_DEPRECATED
	if (card->card_dev) {
		device_unregister(card->card_dev);
		card->card_dev = NULL;
	}
T
Takashi Iwai 已提交
395 396 397
#endif
#ifdef CONFIG_PM
	wake_up(&card->power_sleep);
398
#endif
L
Linus Torvalds 已提交
399 400 401
	return 0;	
}

402 403
EXPORT_SYMBOL(snd_card_disconnect);

L
Linus Torvalds 已提交
404 405 406 407 408 409 410 411 412 413 414
/**
 *  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.
 */
415
static int snd_card_do_free(struct snd_card *card)
L
Linus Torvalds 已提交
416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434
{
#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);
435
	snd_info_free_entry(card->proc_id);
L
Linus Torvalds 已提交
436 437 438 439
	if (snd_info_card_free(card) < 0) {
		snd_printk(KERN_WARNING "unable to free card info\n");
		/* Not fatal error */
	}
440 441 442 443 444 445 446
	kfree(card);
	return 0;
}

int snd_card_free_when_closed(struct snd_card *card)
{
	int free_now = 0;
T
Takashi Iwai 已提交
447
	int ret = snd_card_disconnect(card);
448 449 450 451
	if (ret)
		return ret;

	spin_lock(&card->files_lock);
452
	if (list_empty(&card->files_list))
453 454 455 456 457 458 459 460 461 462 463 464 465 466
		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)
{
T
Takashi Iwai 已提交
467
	int ret = snd_card_disconnect(card);
468 469 470 471
	if (ret)
		return ret;

	/* wait, until all devices are ready for the free operation */
472
	wait_event(card->shutdown_sleep, list_empty(&card->files_list));
473
	snd_card_do_free(card);
L
Linus Torvalds 已提交
474 475 476
	return 0;
}

477 478
EXPORT_SYMBOL(snd_card_free);

479 480 481 482 483 484 485 486 487
/**
 *  snd_card_set_id - set card identification name
 *  @card: soundcard structure
 *  @nid: new identification string
 *
 *  This function sets the card identification and checks for name
 *  collisions.
 */
void snd_card_set_id(struct snd_card *card, const char *nid)
L
Linus Torvalds 已提交
488
{
489
	int i, len, idx_flag = 0, loops = SNDRV_CARDS;
490 491
	const char *spos, *src;
	char *id;
L
Linus Torvalds 已提交
492
	
493 494 495 496 497 498 499 500 501 502 503 504 505
	/* check if user specified own card->id */
	if (card->id[0] != '\0')
		return;
	if (nid == NULL) {
		id = card->shortname;
		spos = src = id;
		while (*id != '\0') {
			if (*id == ' ')
				spos = id + 1;
			id++;
		}
	} else {
		spos = src = nid;
L
Linus Torvalds 已提交
506 507 508 509 510
	}
	id = card->id;
	while (*spos != '\0' && !isalnum(*spos))
		spos++;
	if (isdigit(*spos))
511
		*id++ = isalpha(src[0]) ? src[0] : 'D';
L
Linus Torvalds 已提交
512 513 514 515 516 517 518 519 520 521 522 523 524 525
	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) {
526
			snd_printk(KERN_ERR "unable to set card id (%s)\n", id);
L
Linus Torvalds 已提交
527 528 529 530 531
      			strcpy(card->id, card->proc_root->name);
      			return;
      		}
	      	if (!snd_info_check_reserved_words(id))
      			goto __change;
532
		mutex_lock(&snd_card_mutex);
L
Linus Torvalds 已提交
533
		for (i = 0; i < snd_ecards_limit; i++) {
534 535
			if (snd_cards[i] && !strcmp(snd_cards[i]->id, id)) {
				mutex_unlock(&snd_card_mutex);
L
Linus Torvalds 已提交
536
				goto __change;
537
			}
L
Linus Torvalds 已提交
538
		}
539
		mutex_unlock(&snd_card_mutex);
L
Linus Torvalds 已提交
540 541 542 543
		break;

	      __change:
		len = strlen(id);
544 545 546 547 548 549
		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 已提交
550 551 552 553 554 555
			strcat(id, "_1");
			idx_flag++;
		} else {
			spos = id + len - 2;
			if ((size_t)len <= sizeof(card->id) - 2)
				spos++;
556 557 558
			*(char *)spos++ = '_';
			*(char *)spos++ = '1';
			*(char *)spos++ = '\0';
L
Linus Torvalds 已提交
559 560 561 562 563
			idx_flag++;
		}
	}
}

564 565
EXPORT_SYMBOL(snd_card_set_id);

566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603
#ifndef CONFIG_SYSFS_DEPRECATED
static ssize_t
card_id_show_attr(struct device *dev,
		  struct device_attribute *attr, char *buf)
{
	struct snd_card *card = dev_get_drvdata(dev);
	return snprintf(buf, PAGE_SIZE, "%s\n", card ? card->id : "(null)");
}

static ssize_t
card_id_store_attr(struct device *dev, struct device_attribute *attr,
		   const char *buf, size_t count)
{
	struct snd_card *card = dev_get_drvdata(dev);
	char buf1[sizeof(card->id)];
	size_t copy = count > sizeof(card->id) - 1 ?
					sizeof(card->id) - 1 : count;
	size_t idx;
	int c;

	for (idx = 0; idx < copy; idx++) {
		c = buf[idx];
		if (!isalnum(c) && c != '_' && c != '-')
			return -EINVAL;
	}
	memcpy(buf1, buf, copy);
	buf1[copy] = '\0';
	mutex_lock(&snd_card_mutex);
	if (!snd_info_check_reserved_words(buf1)) {
	     __exist:
		mutex_unlock(&snd_card_mutex);
		return -EEXIST;
	}
	for (idx = 0; idx < snd_ecards_limit; idx++) {
		if (snd_cards[idx] && !strcmp(snd_cards[idx]->id, buf1))
			goto __exist;
	}
	strcpy(card->id, buf1);
604
	snd_info_card_id_change(card);
605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624
	mutex_unlock(&snd_card_mutex);

	return count;
}

static struct device_attribute card_id_attrs =
	__ATTR(id, S_IRUGO | S_IWUSR, card_id_show_attr, card_id_store_attr);

static ssize_t
card_number_show_attr(struct device *dev,
		     struct device_attribute *attr, char *buf)
{
	struct snd_card *card = dev_get_drvdata(dev);
	return snprintf(buf, PAGE_SIZE, "%i\n", card ? card->number : -1);
}

static struct device_attribute card_number_attrs =
	__ATTR(number, S_IRUGO, card_number_show_attr, NULL);
#endif /* CONFIG_SYSFS_DEPRECATED */

L
Linus Torvalds 已提交
625 626 627 628 629 630 631 632 633 634 635
/**
 *  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.
 */
636
int snd_card_register(struct snd_card *card)
L
Linus Torvalds 已提交
637 638 639
{
	int err;

640 641
	if (snd_BUG_ON(!card))
		return -EINVAL;
T
Takashi Iwai 已提交
642 643
#ifndef CONFIG_SYSFS_DEPRECATED
	if (!card->card_dev) {
644
		card->card_dev = device_create(sound_class, card->dev,
645
					       MKDEV(0, 0), card,
646
					       "card%i", card->number);
T
Takashi Iwai 已提交
647 648
		if (IS_ERR(card->card_dev))
			card->card_dev = NULL;
649
	}
T
Takashi Iwai 已提交
650
#endif
L
Linus Torvalds 已提交
651 652
	if ((err = snd_device_register_all(card)) < 0)
		return err;
653
	mutex_lock(&snd_card_mutex);
L
Linus Torvalds 已提交
654 655
	if (snd_cards[card->number]) {
		/* already registered */
656
		mutex_unlock(&snd_card_mutex);
L
Linus Torvalds 已提交
657 658 659
		return 0;
	}
	if (card->id[0] == '\0')
660
		snd_card_set_id(card, NULL);
L
Linus Torvalds 已提交
661
	snd_cards[card->number] = card;
662
	mutex_unlock(&snd_card_mutex);
663
	init_info_for_card(card);
L
Linus Torvalds 已提交
664 665 666
#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);
667 668 669
#endif
#ifndef CONFIG_SYSFS_DEPRECATED
	if (card->card_dev) {
670 671 672 673 674 675
		err = device_create_file(card->card_dev, &card_id_attrs);
		if (err < 0)
			return err;
		err = device_create_file(card->card_dev, &card_number_attrs);
		if (err < 0)
			return err;
676
	}
L
Linus Torvalds 已提交
677 678 679 680
#endif
	return 0;
}

681 682
EXPORT_SYMBOL(snd_card_register);

683
#ifdef CONFIG_PROC_FS
684
static struct snd_info_entry *snd_card_info_entry;
L
Linus Torvalds 已提交
685

T
Takashi Iwai 已提交
686 687
static void snd_card_info_read(struct snd_info_entry *entry,
			       struct snd_info_buffer *buffer)
L
Linus Torvalds 已提交
688 689
{
	int idx, count;
690
	struct snd_card *card;
L
Linus Torvalds 已提交
691 692

	for (idx = count = 0; idx < SNDRV_CARDS; idx++) {
693
		mutex_lock(&snd_card_mutex);
L
Linus Torvalds 已提交
694 695
		if ((card = snd_cards[idx]) != NULL) {
			count++;
696
			snd_iprintf(buffer, "%2i [%-15s]: %s - %s\n",
L
Linus Torvalds 已提交
697 698 699 700
					idx,
					card->id,
					card->driver,
					card->shortname);
701
			snd_iprintf(buffer, "                      %s\n",
L
Linus Torvalds 已提交
702 703
					card->longname);
		}
704
		mutex_unlock(&snd_card_mutex);
L
Linus Torvalds 已提交
705 706 707 708 709
	}
	if (!count)
		snd_iprintf(buffer, "--- no soundcards ---\n");
}

710
#ifdef CONFIG_SND_OSSEMUL
L
Linus Torvalds 已提交
711

712
void snd_card_info_read_oss(struct snd_info_buffer *buffer)
L
Linus Torvalds 已提交
713 714
{
	int idx, count;
715
	struct snd_card *card;
L
Linus Torvalds 已提交
716 717

	for (idx = count = 0; idx < SNDRV_CARDS; idx++) {
718
		mutex_lock(&snd_card_mutex);
L
Linus Torvalds 已提交
719 720 721 722
		if ((card = snd_cards[idx]) != NULL) {
			count++;
			snd_iprintf(buffer, "%s\n", card->longname);
		}
723
		mutex_unlock(&snd_card_mutex);
L
Linus Torvalds 已提交
724 725 726 727 728 729 730 731 732
	}
	if (!count) {
		snd_iprintf(buffer, "--- no soundcards ---\n");
	}
}

#endif

#ifdef MODULE
733 734 735
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 已提交
736 737
{
	int idx;
738
	struct snd_card *card;
L
Linus Torvalds 已提交
739 740

	for (idx = 0; idx < SNDRV_CARDS; idx++) {
741
		mutex_lock(&snd_card_mutex);
L
Linus Torvalds 已提交
742
		if ((card = snd_cards[idx]) != NULL)
743 744
			snd_iprintf(buffer, "%2i %s\n",
				    idx, card->module->name);
745
		mutex_unlock(&snd_card_mutex);
L
Linus Torvalds 已提交
746 747 748 749 750 751
	}
}
#endif

int __init snd_card_info_init(void)
{
752
	struct snd_info_entry *entry;
L
Linus Torvalds 已提交
753 754

	entry = snd_info_create_module_entry(THIS_MODULE, "cards", NULL);
755 756
	if (! entry)
		return -ENOMEM;
L
Linus Torvalds 已提交
757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779
	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)
{
780
	snd_info_free_entry(snd_card_info_entry);
L
Linus Torvalds 已提交
781
#ifdef MODULE
782
	snd_info_free_entry(snd_card_module_info_entry);
L
Linus Torvalds 已提交
783 784 785 786
#endif
	return 0;
}

787 788
#endif /* CONFIG_PROC_FS */

L
Linus Torvalds 已提交
789 790 791 792 793 794 795 796 797 798 799
/**
 *  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.
 */
  
800
int snd_component_add(struct snd_card *card, const char *component)
L
Linus Torvalds 已提交
801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819
{
	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;
}

820 821
EXPORT_SYMBOL(snd_component_add);

L
Linus Torvalds 已提交
822 823 824 825 826 827 828 829 830 831 832
/**
 *  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.
 */
833
int snd_card_file_add(struct snd_card *card, struct file *file)
L
Linus Torvalds 已提交
834 835 836 837 838 839 840
{
	struct snd_monitor_file *mfile;

	mfile = kmalloc(sizeof(*mfile), GFP_KERNEL);
	if (mfile == NULL)
		return -ENOMEM;
	mfile->file = file;
841
	mfile->disconnected_f_op = NULL;
L
Linus Torvalds 已提交
842 843 844 845 846 847
	spin_lock(&card->files_lock);
	if (card->shutdown) {
		spin_unlock(&card->files_lock);
		kfree(mfile);
		return -ENODEV;
	}
848
	list_add(&mfile->list, &card->files_list);
L
Linus Torvalds 已提交
849 850 851 852
	spin_unlock(&card->files_lock);
	return 0;
}

853 854
EXPORT_SYMBOL(snd_card_file_add);

L
Linus Torvalds 已提交
855 856 857 858 859 860 861
/**
 *  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.
862 863 864
 *  If all files are removed and snd_card_free_when_closed() was
 *  called beforehand, it processes the pending release of
 *  resources.
L
Linus Torvalds 已提交
865 866 867
 *
 *  Returns zero or a negative error code.
 */
868
int snd_card_file_remove(struct snd_card *card, struct file *file)
L
Linus Torvalds 已提交
869
{
870
	struct snd_monitor_file *mfile, *found = NULL;
871
	int last_close = 0;
L
Linus Torvalds 已提交
872 873

	spin_lock(&card->files_lock);
874
	list_for_each_entry(mfile, &card->files_list, list) {
L
Linus Torvalds 已提交
875
		if (mfile->file == file) {
876 877 878 879
			list_del(&mfile->list);
			if (mfile->disconnected_f_op)
				fops_put(mfile->disconnected_f_op);
			found = mfile;
L
Linus Torvalds 已提交
880 881
			break;
		}
882
	}
883
	if (list_empty(&card->files_list))
884 885 886
		last_close = 1;
	spin_unlock(&card->files_lock);
	if (last_close) {
L
Linus Torvalds 已提交
887
		wake_up(&card->shutdown_sleep);
888 889 890
		if (card->free_on_last_close)
			snd_card_do_free(card);
	}
891
	if (!found) {
L
Linus Torvalds 已提交
892 893 894
		snd_printk(KERN_ERR "ALSA card file remove problem (%p)\n", file);
		return -ENOENT;
	}
895
	kfree(found);
L
Linus Torvalds 已提交
896 897 898
	return 0;
}

899 900
EXPORT_SYMBOL(snd_card_file_remove);

L
Linus Torvalds 已提交
901 902 903 904 905 906 907 908 909 910
#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.
 */
911
int snd_power_wait(struct snd_card *card, unsigned int power_state)
L
Linus Torvalds 已提交
912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936
{
	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;
}

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