]> git.proxmox.com Git - mirror_ubuntu-jammy-kernel.git/blame - sound/core/init.c
ALSA: hda - Set up GPIO for Toshiba Satellite S50D
[mirror_ubuntu-jammy-kernel.git] / sound / core / init.c
CommitLineData
1da177e4
LT
1/*
2 * Initialization routines
c1017a4c 3 * Copyright (c) by Jaroslav Kysela <perex@perex.cz>
1da177e4
LT
4 *
5 *
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.
10 *
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.
15 *
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
19 *
20 */
21
1da177e4
LT
22#include <linux/init.h>
23#include <linux/sched.h>
da155d5b 24#include <linux/module.h>
51990e82 25#include <linux/device.h>
1da177e4
LT
26#include <linux/file.h>
27#include <linux/slab.h>
28#include <linux/time.h>
29#include <linux/ctype.h>
1da177e4 30#include <linux/pm.h>
f2464064 31#include <linux/completion.h>
d052d1be 32
1da177e4
LT
33#include <sound/core.h>
34#include <sound/control.h>
35#include <sound/info.h>
36
82a783f4
TI
37/* monitor files for graceful shutdown (hotplug) */
38struct snd_monitor_file {
39 struct file *file;
40 const struct file_operations *disconnected_f_op;
41 struct list_head shutdown_list; /* still need to shutdown */
42 struct list_head list; /* link of monitor files */
43};
44
a9edfc60
KW
45static DEFINE_SPINLOCK(shutdown_lock);
46static LIST_HEAD(shutdown_files);
47
9c2e08c5 48static const struct file_operations snd_shutdown_f_ops;
1da177e4 49
7bb2491b
TI
50/* locked for registering/using */
51static DECLARE_BITMAP(snd_cards_lock, SNDRV_CARDS);
6581f4e7 52struct snd_card *snd_cards[SNDRV_CARDS];
c0d3fb39
TI
53EXPORT_SYMBOL(snd_cards);
54
746df948 55static DEFINE_MUTEX(snd_card_mutex);
1da177e4 56
304cd07f
TI
57static char *slots[SNDRV_CARDS];
58module_param_array(slots, charp, NULL, 0444);
59MODULE_PARM_DESC(slots, "Module names assigned to the slots.");
60
a93bbaa7 61/* return non-zero if the given index is reserved for the given
304cd07f
TI
62 * module via slots option
63 */
a93bbaa7 64static int module_slot_match(struct module *module, int idx)
304cd07f 65{
a93bbaa7 66 int match = 1;
304cd07f 67#ifdef MODULE
a93bbaa7
TI
68 const char *s1, *s2;
69
60f6fef8 70 if (!module || !*module->name || !slots[idx])
304cd07f 71 return 0;
a93bbaa7
TI
72
73 s1 = module->name;
74 s2 = slots[idx];
75 if (*s2 == '!') {
76 match = 0; /* negative match */
77 s2++;
78 }
304cd07f
TI
79 /* compare module name strings
80 * hyphens are handled as equivalent with underscore
81 */
82 for (;;) {
83 char c1 = *s1++;
84 char c2 = *s2++;
85 if (c1 == '-')
86 c1 = '_';
87 if (c2 == '-')
88 c2 = '_';
89 if (c1 != c2)
a93bbaa7 90 return !match;
304cd07f
TI
91 if (!c1)
92 break;
93 }
a93bbaa7
TI
94#endif /* MODULE */
95 return match;
304cd07f
TI
96}
97
8eeaa2f9 98#if IS_ENABLED(CONFIG_SND_MIXER_OSS)
512bbd6a 99int (*snd_mixer_oss_notify_callback)(struct snd_card *card, int free_flag);
c0d3fb39 100EXPORT_SYMBOL(snd_mixer_oss_notify_callback);
1da177e4
LT
101#endif
102
e28563cc 103#ifdef CONFIG_PROC_FS
512bbd6a
TI
104static void snd_card_id_read(struct snd_info_entry *entry,
105 struct snd_info_buffer *buffer)
1da177e4
LT
106{
107 snd_iprintf(buffer, "%s\n", entry->card->id);
108}
109
e28563cc
TI
110static inline int init_info_for_card(struct snd_card *card)
111{
112 int err;
113 struct snd_info_entry *entry;
114
115 if ((err = snd_info_card_register(card)) < 0) {
f2f9307a 116 dev_dbg(card->dev, "unable to create card info\n");
e28563cc
TI
117 return err;
118 }
119 if ((entry = snd_info_create_card_entry(card, "id", card->proc_root)) == NULL) {
f2f9307a 120 dev_dbg(card->dev, "unable to create card entry\n");
e28563cc
TI
121 return err;
122 }
e28563cc
TI
123 entry->c.text.read = snd_card_id_read;
124 if (snd_info_register(entry) < 0) {
125 snd_info_free_entry(entry);
126 entry = NULL;
127 }
128 card->proc_id = entry;
129 return 0;
130}
131#else /* !CONFIG_PROC_FS */
132#define init_info_for_card(card)
133#endif
134
deb6596f
TI
135static int check_empty_slot(struct module *module, int slot)
136{
137 return !slots[slot] || !*slots[slot];
138}
139
140/* return an empty slot number (>= 0) found in the given bitmask @mask.
141 * @mask == -1 == 0xffffffff means: take any free slot up to 32
142 * when no slot is available, return the original @mask as is.
143 */
144static int get_slot_from_bitmask(int mask, int (*check)(struct module *, int),
145 struct module *module)
146{
147 int slot;
148
149 for (slot = 0; slot < SNDRV_CARDS; slot++) {
150 if (slot < 32 && !(mask & (1U << slot)))
151 continue;
152 if (!test_bit(slot, snd_cards_lock)) {
153 if (check(module, slot))
154 return slot; /* found */
155 }
156 }
157 return mask; /* unchanged */
158}
159
4b440be6
TI
160/* the default release callback set in snd_device_initialize() below;
161 * this is just NOP for now, as almost all jobs are already done in
162 * dev_free callback of snd_device chain instead.
163 */
164static void default_release(struct device *dev)
165{
166}
167
168/**
169 * snd_device_initialize - Initialize struct device for sound devices
170 * @dev: device to initialize
171 * @card: card to assign, optional
172 */
173void snd_device_initialize(struct device *dev, struct snd_card *card)
174{
175 device_initialize(dev);
176 if (card)
177 dev->parent = &card->card_dev;
178 dev->class = sound_class;
179 dev->release = default_release;
180}
181EXPORT_SYMBOL_GPL(snd_device_initialize);
182
8bfb181c 183static int snd_card_do_free(struct snd_card *card);
34356dbd 184static const struct attribute_group *card_dev_attr_groups[];
8bfb181c
TI
185
186static void release_card_device(struct device *dev)
187{
188 snd_card_do_free(dev_to_snd_card(dev));
189}
190
1da177e4 191/**
393aa9c1
TI
192 * snd_card_new - create and initialize a soundcard structure
193 * @parent: the parent device object
1da177e4
LT
194 * @idx: card index (address) [0 ... (SNDRV_CARDS-1)]
195 * @xid: card identification (ASCII string)
196 * @module: top level module for locking
197 * @extra_size: allocate this extra size after the main soundcard structure
53fb1e63 198 * @card_ret: the pointer to store the created card instance
1da177e4
LT
199 *
200 * Creates and initializes a soundcard structure.
201 *
53fb1e63
TI
202 * The function allocates snd_card instance via kzalloc with the given
203 * space for the driver to use freely. The allocated struct is stored
204 * in the given card_ret pointer.
205 *
eb7c06e8 206 * Return: Zero if successful or a negative error code.
1da177e4 207 */
393aa9c1 208int snd_card_new(struct device *parent, int idx, const char *xid,
53fb1e63
TI
209 struct module *module, int extra_size,
210 struct snd_card **card_ret)
1da177e4 211{
512bbd6a 212 struct snd_card *card;
deb6596f 213 int err;
1da177e4 214
53fb1e63
TI
215 if (snd_BUG_ON(!card_ret))
216 return -EINVAL;
217 *card_ret = NULL;
218
1da177e4
LT
219 if (extra_size < 0)
220 extra_size = 0;
ca2c0966 221 card = kzalloc(sizeof(*card) + extra_size, GFP_KERNEL);
53fb1e63
TI
222 if (!card)
223 return -ENOMEM;
8bfb181c
TI
224 if (extra_size > 0)
225 card->private_data = (char *)card + sizeof(struct snd_card);
10a8ebbb 226 if (xid)
5fdc18d9 227 strlcpy(card->id, xid, sizeof(card->id));
1da177e4 228 err = 0;
746df948 229 mutex_lock(&snd_card_mutex);
deb6596f
TI
230 if (idx < 0) /* first check the matching module-name slot */
231 idx = get_slot_from_bitmask(idx, module_slot_match, module);
232 if (idx < 0) /* if not matched, assign an empty slot */
233 idx = get_slot_from_bitmask(idx, check_empty_slot, module);
a93bbaa7
TI
234 if (idx < 0)
235 err = -ENODEV;
236 else if (idx < snd_ecards_limit) {
7bb2491b 237 if (test_bit(idx, snd_cards_lock))
a93bbaa7
TI
238 err = -EBUSY; /* invalid */
239 } else if (idx >= SNDRV_CARDS)
240 err = -ENODEV;
241 if (err < 0) {
746df948 242 mutex_unlock(&snd_card_mutex);
f2f9307a 243 dev_err(parent, "cannot find the slot for index %d (range 0-%i), error: %d\n",
5c33dd70 244 idx, snd_ecards_limit - 1, err);
8bfb181c
TI
245 kfree(card);
246 return err;
1da177e4 247 }
7bb2491b 248 set_bit(idx, snd_cards_lock); /* lock it */
a93bbaa7
TI
249 if (idx >= snd_ecards_limit)
250 snd_ecards_limit = idx + 1; /* increase the limit */
746df948 251 mutex_unlock(&snd_card_mutex);
393aa9c1 252 card->dev = parent;
1da177e4
LT
253 card->number = idx;
254 card->module = module;
255 INIT_LIST_HEAD(&card->devices);
256 init_rwsem(&card->controls_rwsem);
257 rwlock_init(&card->ctl_files_rwlock);
07f4d9d7 258 mutex_init(&card->user_ctl_lock);
1da177e4
LT
259 INIT_LIST_HEAD(&card->controls);
260 INIT_LIST_HEAD(&card->ctl_files);
261 spin_lock_init(&card->files_lock);
118dd6bf 262 INIT_LIST_HEAD(&card->files_list);
1da177e4 263#ifdef CONFIG_PM
1a60d4c5 264 mutex_init(&card->power_lock);
1da177e4
LT
265 init_waitqueue_head(&card->power_sleep);
266#endif
8bfb181c
TI
267
268 device_initialize(&card->card_dev);
269 card->card_dev.parent = parent;
270 card->card_dev.class = sound_class;
271 card->card_dev.release = release_card_device;
34356dbd 272 card->card_dev.groups = card_dev_attr_groups;
8bfb181c
TI
273 err = kobject_set_name(&card->card_dev.kobj, "card%d", idx);
274 if (err < 0)
275 goto __error;
276
1da177e4
LT
277 /* the control interface cannot be accessed from the user space until */
278 /* snd_cards_bitmask and snd_cards are set with snd_card_register */
53fb1e63
TI
279 err = snd_ctl_create(card);
280 if (err < 0) {
f2f9307a 281 dev_err(parent, "unable to register control minors\n");
1da177e4
LT
282 goto __error;
283 }
53fb1e63
TI
284 err = snd_info_card_create(card);
285 if (err < 0) {
f2f9307a 286 dev_err(parent, "unable to create card info\n");
1da177e4
LT
287 goto __error_ctl;
288 }
53fb1e63
TI
289 *card_ret = card;
290 return 0;
1da177e4
LT
291
292 __error_ctl:
289ca025 293 snd_device_free_all(card);
1da177e4 294 __error:
8bfb181c 295 put_device(&card->card_dev);
53fb1e63 296 return err;
1da177e4 297}
393aa9c1 298EXPORT_SYMBOL(snd_card_new);
c0d3fb39 299
746df948
TI
300/* return non-zero if a card is already locked */
301int snd_card_locked(int card)
302{
303 int locked;
304
305 mutex_lock(&snd_card_mutex);
7bb2491b 306 locked = test_bit(card, snd_cards_lock);
746df948
TI
307 mutex_unlock(&snd_card_mutex);
308 return locked;
309}
310
b3b0abe1
CL
311static loff_t snd_disconnect_llseek(struct file *file, loff_t offset, int orig)
312{
313 return -ENODEV;
314}
315
316static ssize_t snd_disconnect_read(struct file *file, char __user *buf,
317 size_t count, loff_t *offset)
318{
319 return -ENODEV;
320}
321
322static ssize_t snd_disconnect_write(struct file *file, const char __user *buf,
323 size_t count, loff_t *offset)
324{
325 return -ENODEV;
326}
327
a9edfc60
KW
328static int snd_disconnect_release(struct inode *inode, struct file *file)
329{
330 struct snd_monitor_file *df = NULL, *_df;
331
332 spin_lock(&shutdown_lock);
333 list_for_each_entry(_df, &shutdown_files, shutdown_list) {
334 if (_df->file == file) {
335 df = _df;
118dd6bf 336 list_del_init(&df->shutdown_list);
a9edfc60
KW
337 break;
338 }
339 }
340 spin_unlock(&shutdown_lock);
341
233e70f4
AV
342 if (likely(df)) {
343 if ((file->f_flags & FASYNC) && df->disconnected_f_op->fasync)
344 df->disconnected_f_op->fasync(-1, file, 0);
a9edfc60 345 return df->disconnected_f_op->release(inode, file);
233e70f4 346 }
a9edfc60 347
9bf8e7dd 348 panic("%s(%p, %p) failed!", __func__, inode, file);
a9edfc60
KW
349}
350
1da177e4
LT
351static unsigned int snd_disconnect_poll(struct file * file, poll_table * wait)
352{
353 return POLLERR | POLLNVAL;
354}
355
b3b0abe1
CL
356static long snd_disconnect_ioctl(struct file *file,
357 unsigned int cmd, unsigned long arg)
358{
359 return -ENODEV;
360}
361
362static int snd_disconnect_mmap(struct file *file, struct vm_area_struct *vma)
363{
364 return -ENODEV;
365}
366
367static int snd_disconnect_fasync(int fd, struct file *file, int on)
368{
369 return -ENODEV;
370}
371
9c2e08c5 372static const struct file_operations snd_shutdown_f_ops =
a9edfc60
KW
373{
374 .owner = THIS_MODULE,
375 .llseek = snd_disconnect_llseek,
376 .read = snd_disconnect_read,
377 .write = snd_disconnect_write,
378 .release = snd_disconnect_release,
379 .poll = snd_disconnect_poll,
380 .unlocked_ioctl = snd_disconnect_ioctl,
381#ifdef CONFIG_COMPAT
382 .compat_ioctl = snd_disconnect_ioctl,
383#endif
384 .mmap = snd_disconnect_mmap,
385 .fasync = snd_disconnect_fasync
386};
387
1da177e4
LT
388/**
389 * snd_card_disconnect - disconnect all APIs from the file-operations (user space)
390 * @card: soundcard structure
391 *
392 * Disconnects all APIs from the file-operations (user space).
393 *
eb7c06e8 394 * Return: Zero, otherwise a negative error code.
1da177e4
LT
395 *
396 * Note: The current implementation replaces all active file->f_op with special
397 * dummy file operations (they do nothing except release).
398 */
512bbd6a 399int snd_card_disconnect(struct snd_card *card)
1da177e4
LT
400{
401 struct snd_monitor_file *mfile;
1da177e4
LT
402 int err;
403
f18638dc
TI
404 if (!card)
405 return -EINVAL;
406
1da177e4
LT
407 spin_lock(&card->files_lock);
408 if (card->shutdown) {
409 spin_unlock(&card->files_lock);
410 return 0;
411 }
412 card->shutdown = 1;
413 spin_unlock(&card->files_lock);
414
415 /* phase 1: disable fops (user space) operations for ALSA API */
746df948 416 mutex_lock(&snd_card_mutex);
1da177e4 417 snd_cards[card->number] = NULL;
7bb2491b 418 clear_bit(card->number, snd_cards_lock);
746df948 419 mutex_unlock(&snd_card_mutex);
1da177e4
LT
420
421 /* phase 2: replace file->f_op with special dummy operations */
422
423 spin_lock(&card->files_lock);
118dd6bf 424 list_for_each_entry(mfile, &card->files_list, list) {
1da177e4
LT
425 /* it's critical part, use endless loop */
426 /* we have no room to fail */
a9edfc60 427 mfile->disconnected_f_op = mfile->file->f_op;
1da177e4 428
a9edfc60
KW
429 spin_lock(&shutdown_lock);
430 list_add(&mfile->shutdown_list, &shutdown_files);
431 spin_unlock(&shutdown_lock);
1da177e4 432
a9edfc60 433 mfile->file->f_op = &snd_shutdown_f_ops;
bc9abce0 434 fops_get(mfile->file->f_op);
1da177e4
LT
435 }
436 spin_unlock(&card->files_lock);
437
438 /* phase 3: notify all connected devices about disconnection */
439 /* at this point, they cannot respond to any calls except release() */
440
8eeaa2f9 441#if IS_ENABLED(CONFIG_SND_MIXER_OSS)
1da177e4
LT
442 if (snd_mixer_oss_notify_callback)
443 snd_mixer_oss_notify_callback(card, SND_MIXER_OSS_NOTIFY_DISCONNECT);
444#endif
445
446 /* notify all devices that we are disconnected */
447 err = snd_device_disconnect_all(card);
448 if (err < 0)
f2f9307a 449 dev_err(card->dev, "not all devices for card %i can be disconnected\n", card->number);
1da177e4 450
746d4a02 451 snd_info_card_disconnect(card);
8bfb181c
TI
452 if (card->registered) {
453 device_del(&card->card_dev);
454 card->registered = false;
73d38b13 455 }
f18638dc
TI
456#ifdef CONFIG_PM
457 wake_up(&card->power_sleep);
73d38b13 458#endif
1da177e4
LT
459 return 0;
460}
461
c0d3fb39
TI
462EXPORT_SYMBOL(snd_card_disconnect);
463
c461482c 464static int snd_card_do_free(struct snd_card *card)
1da177e4 465{
8eeaa2f9 466#if IS_ENABLED(CONFIG_SND_MIXER_OSS)
1da177e4
LT
467 if (snd_mixer_oss_notify_callback)
468 snd_mixer_oss_notify_callback(card, SND_MIXER_OSS_NOTIFY_FREE);
469#endif
72620d60 470 snd_device_free_all(card);
1da177e4
LT
471 if (card->private_free)
472 card->private_free(card);
746d4a02 473 snd_info_free_entry(card->proc_id);
1da177e4 474 if (snd_info_card_free(card) < 0) {
f2f9307a 475 dev_warn(card->dev, "unable to free card info\n");
1da177e4
LT
476 /* Not fatal error */
477 }
f2464064
TI
478 if (card->release_completion)
479 complete(card->release_completion);
c461482c
TI
480 kfree(card);
481 return 0;
482}
483
eb9c38d5
TI
484/**
485 * snd_card_free_when_closed - Disconnect the card, free it later eventually
486 * @card: soundcard structure
487 *
488 * Unlike snd_card_free(), this function doesn't try to release the card
489 * resource immediately, but tries to disconnect at first. When the card
490 * is still in use, the function returns before freeing the resources.
491 * The card resources will be freed when the refcount gets to zero.
492 */
c461482c
TI
493int snd_card_free_when_closed(struct snd_card *card)
494{
f2464064
TI
495 int ret = snd_card_disconnect(card);
496 if (ret)
a0830dbd 497 return ret;
f2464064 498 put_device(&card->card_dev);
c461482c
TI
499 return 0;
500}
c461482c
TI
501EXPORT_SYMBOL(snd_card_free_when_closed);
502
eb9c38d5
TI
503/**
504 * snd_card_free - frees given soundcard structure
505 * @card: soundcard structure
506 *
507 * This function releases the soundcard structure and the all assigned
508 * devices automatically. That is, you don't have to release the devices
509 * by yourself.
510 *
511 * This function waits until the all resources are properly released.
512 *
513 * Return: Zero. Frees all associated devices and frees the control
514 * interface associated to given soundcard.
515 */
c461482c
TI
516int snd_card_free(struct snd_card *card)
517{
f2464064
TI
518 struct completion released;
519 int ret;
520
521 init_completion(&released);
522 card->release_completion = &released;
523 ret = snd_card_free_when_closed(card);
c461482c
TI
524 if (ret)
525 return ret;
c461482c 526 /* wait, until all devices are ready for the free operation */
f2464064 527 wait_for_completion(&released);
1da177e4
LT
528 return 0;
529}
c0d3fb39
TI
530EXPORT_SYMBOL(snd_card_free);
531
e7df2a3a
TI
532/* retrieve the last word of shortname or longname */
533static const char *retrieve_id_from_card_name(const char *name)
1da177e4 534{
e7df2a3a
TI
535 const char *spos = name;
536
537 while (*name) {
538 if (isspace(*name) && isalnum(name[1]))
539 spos = name + 1;
540 name++;
1da177e4 541 }
e7df2a3a
TI
542 return spos;
543}
544
545/* return true if the given id string doesn't conflict any other card ids */
546static bool card_id_ok(struct snd_card *card, const char *id)
547{
548 int i;
549 if (!snd_info_check_reserved_words(id))
550 return false;
551 for (i = 0; i < snd_ecards_limit; i++) {
552 if (snd_cards[i] && snd_cards[i] != card &&
553 !strcmp(snd_cards[i]->id, id))
554 return false;
1da177e4 555 }
e7df2a3a
TI
556 return true;
557}
1da177e4 558
e7df2a3a
TI
559/* copy to card->id only with valid letters from nid */
560static void copy_valid_id_string(struct snd_card *card, const char *src,
561 const char *nid)
562{
563 char *id = card->id;
564
565 while (*nid && !isalnum(*nid))
566 nid++;
567 if (isdigit(*nid))
568 *id++ = isalpha(*src) ? *src : 'D';
569 while (*nid && (size_t)(id - card->id) < sizeof(card->id) - 1) {
570 if (isalnum(*nid))
571 *id++ = *nid;
572 nid++;
573 }
574 *id = 0;
575}
576
577/* Set card->id from the given string
578 * If the string conflicts with other ids, add a suffix to make it unique.
579 */
580static void snd_card_set_id_no_lock(struct snd_card *card, const char *src,
581 const char *nid)
582{
583 int len, loops;
e7df2a3a
TI
584 bool is_default = false;
585 char *id;
1da177e4 586
e7df2a3a
TI
587 copy_valid_id_string(card, src, nid);
588 id = card->id;
589
590 again:
591 /* use "Default" for obviously invalid strings
592 * ("card" conflicts with proc directories)
593 */
594 if (!*id || !strncmp(id, "card", 4)) {
d8e4f9ae 595 strcpy(id, "Default");
e7df2a3a
TI
596 is_default = true;
597 }
1da177e4 598
8edbb198 599 len = strlen(id);
e7df2a3a 600 for (loops = 0; loops < SNDRV_CARDS; loops++) {
8edbb198
TI
601 char *spos;
602 char sfxstr[5]; /* "_012" */
603 int sfxlen;
604
e7df2a3a
TI
605 if (card_id_ok(card, id))
606 return; /* OK */
1da177e4 607
8edbb198
TI
608 /* Add _XYZ suffix */
609 sprintf(sfxstr, "_%X", loops + 1);
610 sfxlen = strlen(sfxstr);
611 if (len + sfxlen >= sizeof(card->id))
612 spos = id + sizeof(card->id) - sfxlen - 1;
613 else
614 spos = id + len;
615 strcpy(spos, sfxstr);
1da177e4 616 }
e7df2a3a
TI
617 /* fallback to the default id */
618 if (!is_default) {
619 *id = 0;
620 goto again;
621 }
622 /* last resort... */
f2f9307a 623 dev_err(card->dev, "unable to set card id (%s)\n", id);
e7df2a3a 624 if (card->proc_root->name)
97f44f56 625 strlcpy(card->id, card->proc_root->name, sizeof(card->id));
1da177e4
LT
626}
627
872c7820
MB
628/**
629 * snd_card_set_id - set card identification name
630 * @card: soundcard structure
631 * @nid: new identification string
632 *
633 * This function sets the card identification and checks for name
634 * collisions.
635 */
636void snd_card_set_id(struct snd_card *card, const char *nid)
637{
5fdc18d9
JK
638 /* check if user specified own card->id */
639 if (card->id[0] != '\0')
640 return;
641 mutex_lock(&snd_card_mutex);
e7df2a3a 642 snd_card_set_id_no_lock(card, nid, nid);
5fdc18d9 643 mutex_unlock(&snd_card_mutex);
872c7820 644}
10a8ebbb
JK
645EXPORT_SYMBOL(snd_card_set_id);
646
9fb6198e
JK
647static ssize_t
648card_id_show_attr(struct device *dev,
649 struct device_attribute *attr, char *buf)
650{
b203dbab
TI
651 struct snd_card *card = container_of(dev, struct snd_card, card_dev);
652 return snprintf(buf, PAGE_SIZE, "%s\n", card->id);
9fb6198e
JK
653}
654
655static ssize_t
656card_id_store_attr(struct device *dev, struct device_attribute *attr,
657 const char *buf, size_t count)
658{
b203dbab 659 struct snd_card *card = container_of(dev, struct snd_card, card_dev);
9fb6198e
JK
660 char buf1[sizeof(card->id)];
661 size_t copy = count > sizeof(card->id) - 1 ?
662 sizeof(card->id) - 1 : count;
663 size_t idx;
664 int c;
665
666 for (idx = 0; idx < copy; idx++) {
667 c = buf[idx];
668 if (!isalnum(c) && c != '_' && c != '-')
669 return -EINVAL;
670 }
671 memcpy(buf1, buf, copy);
672 buf1[copy] = '\0';
673 mutex_lock(&snd_card_mutex);
e7df2a3a 674 if (!card_id_ok(NULL, buf1)) {
9fb6198e
JK
675 mutex_unlock(&snd_card_mutex);
676 return -EEXIST;
677 }
9fb6198e 678 strcpy(card->id, buf1);
c2eb9c4e 679 snd_info_card_id_change(card);
9fb6198e
JK
680 mutex_unlock(&snd_card_mutex);
681
682 return count;
683}
684
34356dbd 685static DEVICE_ATTR(id, S_IRUGO | S_IWUSR, card_id_show_attr, card_id_store_attr);
9fb6198e
JK
686
687static ssize_t
688card_number_show_attr(struct device *dev,
689 struct device_attribute *attr, char *buf)
690{
b203dbab
TI
691 struct snd_card *card = container_of(dev, struct snd_card, card_dev);
692 return snprintf(buf, PAGE_SIZE, "%i\n", card->number);
9fb6198e
JK
693}
694
34356dbd
TI
695static DEVICE_ATTR(number, S_IRUGO, card_number_show_attr, NULL);
696
697static struct attribute *card_dev_attrs[] = {
698 &dev_attr_id.attr,
699 &dev_attr_number.attr,
700 NULL
701};
702
703static struct attribute_group card_dev_attr_group = {
704 .attrs = card_dev_attrs,
705};
706
707static const struct attribute_group *card_dev_attr_groups[] = {
708 &card_dev_attr_group,
709 NULL
710};
9fb6198e 711
1da177e4
LT
712/**
713 * snd_card_register - register the soundcard
714 * @card: soundcard structure
715 *
716 * This function registers all the devices assigned to the soundcard.
717 * Until calling this, the ALSA control interface is blocked from the
718 * external accesses. Thus, you should call this function at the end
719 * of the initialization of the card.
720 *
eb7c06e8 721 * Return: Zero otherwise a negative error code if the registration failed.
1da177e4 722 */
512bbd6a 723int snd_card_register(struct snd_card *card)
1da177e4
LT
724{
725 int err;
1da177e4 726
7eaa943c
TI
727 if (snd_BUG_ON(!card))
728 return -EINVAL;
39aba963 729
8bfb181c
TI
730 if (!card->registered) {
731 err = device_add(&card->card_dev);
732 if (err < 0)
733 return err;
734 card->registered = true;
d80f19fa 735 }
39aba963 736
1da177e4
LT
737 if ((err = snd_device_register_all(card)) < 0)
738 return err;
746df948 739 mutex_lock(&snd_card_mutex);
1da177e4
LT
740 if (snd_cards[card->number]) {
741 /* already registered */
746df948 742 mutex_unlock(&snd_card_mutex);
1da177e4
LT
743 return 0;
744 }
e7df2a3a
TI
745 if (*card->id) {
746 /* make a unique id name from the given string */
747 char tmpid[sizeof(card->id)];
748 memcpy(tmpid, card->id, sizeof(card->id));
749 snd_card_set_id_no_lock(card, tmpid, tmpid);
750 } else {
751 /* create an id from either shortname or longname */
752 const char *src;
753 src = *card->shortname ? card->shortname : card->longname;
754 snd_card_set_id_no_lock(card, src,
755 retrieve_id_from_card_name(src));
756 }
1da177e4 757 snd_cards[card->number] = card;
746df948 758 mutex_unlock(&snd_card_mutex);
e28563cc 759 init_info_for_card(card);
8eeaa2f9 760#if IS_ENABLED(CONFIG_SND_MIXER_OSS)
1da177e4
LT
761 if (snd_mixer_oss_notify_callback)
762 snd_mixer_oss_notify_callback(card, SND_MIXER_OSS_NOTIFY_REGISTER);
9fb6198e 763#endif
1da177e4
LT
764 return 0;
765}
766
c0d3fb39
TI
767EXPORT_SYMBOL(snd_card_register);
768
e28563cc 769#ifdef CONFIG_PROC_FS
6581f4e7 770static struct snd_info_entry *snd_card_info_entry;
1da177e4 771
a381a7a6
TI
772static void snd_card_info_read(struct snd_info_entry *entry,
773 struct snd_info_buffer *buffer)
1da177e4
LT
774{
775 int idx, count;
512bbd6a 776 struct snd_card *card;
1da177e4
LT
777
778 for (idx = count = 0; idx < SNDRV_CARDS; idx++) {
746df948 779 mutex_lock(&snd_card_mutex);
1da177e4
LT
780 if ((card = snd_cards[idx]) != NULL) {
781 count++;
d001544d 782 snd_iprintf(buffer, "%2i [%-15s]: %s - %s\n",
1da177e4
LT
783 idx,
784 card->id,
785 card->driver,
786 card->shortname);
d001544d 787 snd_iprintf(buffer, " %s\n",
1da177e4
LT
788 card->longname);
789 }
746df948 790 mutex_unlock(&snd_card_mutex);
1da177e4
LT
791 }
792 if (!count)
793 snd_iprintf(buffer, "--- no soundcards ---\n");
794}
795
e28563cc 796#ifdef CONFIG_SND_OSSEMUL
1da177e4 797
512bbd6a 798void snd_card_info_read_oss(struct snd_info_buffer *buffer)
1da177e4
LT
799{
800 int idx, count;
512bbd6a 801 struct snd_card *card;
1da177e4
LT
802
803 for (idx = count = 0; idx < SNDRV_CARDS; idx++) {
746df948 804 mutex_lock(&snd_card_mutex);
1da177e4
LT
805 if ((card = snd_cards[idx]) != NULL) {
806 count++;
807 snd_iprintf(buffer, "%s\n", card->longname);
808 }
746df948 809 mutex_unlock(&snd_card_mutex);
1da177e4
LT
810 }
811 if (!count) {
812 snd_iprintf(buffer, "--- no soundcards ---\n");
813 }
814}
815
816#endif
817
818#ifdef MODULE
512bbd6a
TI
819static struct snd_info_entry *snd_card_module_info_entry;
820static void snd_card_module_info_read(struct snd_info_entry *entry,
821 struct snd_info_buffer *buffer)
1da177e4
LT
822{
823 int idx;
512bbd6a 824 struct snd_card *card;
1da177e4
LT
825
826 for (idx = 0; idx < SNDRV_CARDS; idx++) {
746df948 827 mutex_lock(&snd_card_mutex);
1da177e4 828 if ((card = snd_cards[idx]) != NULL)
d001544d
CL
829 snd_iprintf(buffer, "%2i %s\n",
830 idx, card->module->name);
746df948 831 mutex_unlock(&snd_card_mutex);
1da177e4
LT
832 }
833}
834#endif
835
836int __init snd_card_info_init(void)
837{
512bbd6a 838 struct snd_info_entry *entry;
1da177e4
LT
839
840 entry = snd_info_create_module_entry(THIS_MODULE, "cards", NULL);
7c22f1aa
TI
841 if (! entry)
842 return -ENOMEM;
1da177e4
LT
843 entry->c.text.read = snd_card_info_read;
844 if (snd_info_register(entry) < 0) {
845 snd_info_free_entry(entry);
846 return -ENOMEM;
847 }
848 snd_card_info_entry = entry;
849
850#ifdef MODULE
851 entry = snd_info_create_module_entry(THIS_MODULE, "modules", NULL);
852 if (entry) {
1da177e4
LT
853 entry->c.text.read = snd_card_module_info_read;
854 if (snd_info_register(entry) < 0)
855 snd_info_free_entry(entry);
856 else
857 snd_card_module_info_entry = entry;
858 }
859#endif
860
861 return 0;
862}
863
864int __exit snd_card_info_done(void)
865{
746d4a02 866 snd_info_free_entry(snd_card_info_entry);
1da177e4 867#ifdef MODULE
746d4a02 868 snd_info_free_entry(snd_card_module_info_entry);
1da177e4
LT
869#endif
870 return 0;
871}
872
e28563cc
TI
873#endif /* CONFIG_PROC_FS */
874
1da177e4
LT
875/**
876 * snd_component_add - add a component string
877 * @card: soundcard structure
878 * @component: the component id string
879 *
880 * This function adds the component id string to the supported list.
881 * The component can be referred from the alsa-lib.
882 *
eb7c06e8 883 * Return: Zero otherwise a negative error code.
1da177e4
LT
884 */
885
512bbd6a 886int snd_component_add(struct snd_card *card, const char *component)
1da177e4
LT
887{
888 char *ptr;
889 int len = strlen(component);
890
891 ptr = strstr(card->components, component);
892 if (ptr != NULL) {
893 if (ptr[len] == '\0' || ptr[len] == ' ') /* already there */
894 return 1;
895 }
896 if (strlen(card->components) + 1 + len + 1 > sizeof(card->components)) {
897 snd_BUG();
898 return -ENOMEM;
899 }
900 if (card->components[0] != '\0')
901 strcat(card->components, " ");
902 strcat(card->components, component);
903 return 0;
904}
905
c0d3fb39
TI
906EXPORT_SYMBOL(snd_component_add);
907
1da177e4
LT
908/**
909 * snd_card_file_add - add the file to the file list of the card
910 * @card: soundcard structure
911 * @file: file pointer
912 *
913 * This function adds the file to the file linked-list of the card.
914 * This linked-list is used to keep tracking the connection state,
915 * and to avoid the release of busy resources by hotplug.
916 *
eb7c06e8 917 * Return: zero or a negative error code.
1da177e4 918 */
512bbd6a 919int snd_card_file_add(struct snd_card *card, struct file *file)
1da177e4
LT
920{
921 struct snd_monitor_file *mfile;
922
923 mfile = kmalloc(sizeof(*mfile), GFP_KERNEL);
924 if (mfile == NULL)
925 return -ENOMEM;
926 mfile->file = file;
a9edfc60 927 mfile->disconnected_f_op = NULL;
a45e3d6b 928 INIT_LIST_HEAD(&mfile->shutdown_list);
1da177e4
LT
929 spin_lock(&card->files_lock);
930 if (card->shutdown) {
931 spin_unlock(&card->files_lock);
932 kfree(mfile);
933 return -ENODEV;
934 }
118dd6bf 935 list_add(&mfile->list, &card->files_list);
f2464064 936 get_device(&card->card_dev);
1da177e4
LT
937 spin_unlock(&card->files_lock);
938 return 0;
939}
940
c0d3fb39
TI
941EXPORT_SYMBOL(snd_card_file_add);
942
1da177e4
LT
943/**
944 * snd_card_file_remove - remove the file from the file list
945 * @card: soundcard structure
946 * @file: file pointer
947 *
948 * This function removes the file formerly added to the card via
949 * snd_card_file_add() function.
2b29b13c
TI
950 * If all files are removed and snd_card_free_when_closed() was
951 * called beforehand, it processes the pending release of
952 * resources.
1da177e4 953 *
eb7c06e8 954 * Return: Zero or a negative error code.
1da177e4 955 */
512bbd6a 956int snd_card_file_remove(struct snd_card *card, struct file *file)
1da177e4 957{
118dd6bf 958 struct snd_monitor_file *mfile, *found = NULL;
1da177e4
LT
959
960 spin_lock(&card->files_lock);
118dd6bf 961 list_for_each_entry(mfile, &card->files_list, list) {
1da177e4 962 if (mfile->file == file) {
118dd6bf 963 list_del(&mfile->list);
a45e3d6b
TI
964 spin_lock(&shutdown_lock);
965 list_del(&mfile->shutdown_list);
966 spin_unlock(&shutdown_lock);
118dd6bf
TI
967 if (mfile->disconnected_f_op)
968 fops_put(mfile->disconnected_f_op);
969 found = mfile;
1da177e4
LT
970 break;
971 }
a9edfc60 972 }
c461482c 973 spin_unlock(&card->files_lock);
118dd6bf 974 if (!found) {
f2f9307a 975 dev_err(card->dev, "card file remove problem (%p)\n", file);
1da177e4
LT
976 return -ENOENT;
977 }
118dd6bf 978 kfree(found);
f2464064 979 put_device(&card->card_dev);
1da177e4
LT
980 return 0;
981}
982
c0d3fb39
TI
983EXPORT_SYMBOL(snd_card_file_remove);
984
1da177e4
LT
985#ifdef CONFIG_PM
986/**
987 * snd_power_wait - wait until the power-state is changed.
988 * @card: soundcard structure
989 * @power_state: expected power state
1da177e4
LT
990 *
991 * Waits until the power-state is changed.
992 *
eb7c06e8
YB
993 * Return: Zero if successful, or a negative error code.
994 *
1da177e4
LT
995 * Note: the power lock must be active before call.
996 */
cbac4b0c 997int snd_power_wait(struct snd_card *card, unsigned int power_state)
1da177e4
LT
998{
999 wait_queue_t wait;
1000 int result = 0;
1001
1002 /* fastpath */
1003 if (snd_power_get_state(card) == power_state)
1004 return 0;
1005 init_waitqueue_entry(&wait, current);
1006 add_wait_queue(&card->power_sleep, &wait);
1007 while (1) {
1008 if (card->shutdown) {
1009 result = -ENODEV;
1010 break;
1011 }
1012 if (snd_power_get_state(card) == power_state)
1013 break;
1da177e4
LT
1014 set_current_state(TASK_UNINTERRUPTIBLE);
1015 snd_power_unlock(card);
1016 schedule_timeout(30 * HZ);
1017 snd_power_lock(card);
1018 }
1019 remove_wait_queue(&card->power_sleep, &wait);
1020 return result;
1021}
1022
c0d3fb39 1023EXPORT_SYMBOL(snd_power_wait);
1da177e4 1024#endif /* CONFIG_PM */