2 * Digital Audio (PCM) abstract layer
3 * Copyright (c) by Jaroslav Kysela <perex@perex.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 <linux/init.h>
23 #include <linux/slab.h>
24 #include <linux/module.h>
25 #include <linux/time.h>
26 #include <linux/mutex.h>
27 #include <linux/device.h>
28 #include <linux/nospec.h>
29 #include <sound/core.h>
30 #include <sound/minors.h>
31 #include <sound/pcm.h>
32 #include <sound/timer.h>
33 #include <sound/control.h>
34 #include <sound/info.h>
36 MODULE_AUTHOR("Jaroslav Kysela <perex@perex.cz>, Abramo Bagnara <abramo@alsa-project.org>");
37 MODULE_DESCRIPTION("Midlevel PCM code for ALSA.");
38 MODULE_LICENSE("GPL");
40 static LIST_HEAD(snd_pcm_devices
);
41 static LIST_HEAD(snd_pcm_notify_list
);
42 static DEFINE_MUTEX(register_mutex
);
44 static int snd_pcm_free(struct snd_pcm
*pcm
);
45 static int snd_pcm_dev_free(struct snd_device
*device
);
46 static int snd_pcm_dev_register(struct snd_device
*device
);
47 static int snd_pcm_dev_disconnect(struct snd_device
*device
);
49 static struct snd_pcm
*snd_pcm_get(struct snd_card
*card
, int device
)
53 list_for_each_entry(pcm
, &snd_pcm_devices
, list
) {
54 if (pcm
->card
== card
&& pcm
->device
== device
)
60 static int snd_pcm_next(struct snd_card
*card
, int device
)
64 list_for_each_entry(pcm
, &snd_pcm_devices
, list
) {
65 if (pcm
->card
== card
&& pcm
->device
> device
)
67 else if (pcm
->card
->number
> card
->number
)
73 static int snd_pcm_add(struct snd_pcm
*newpcm
)
80 list_for_each_entry(pcm
, &snd_pcm_devices
, list
) {
81 if (pcm
->card
== newpcm
->card
&& pcm
->device
== newpcm
->device
)
83 if (pcm
->card
->number
> newpcm
->card
->number
||
84 (pcm
->card
== newpcm
->card
&&
85 pcm
->device
> newpcm
->device
)) {
86 list_add(&newpcm
->list
, pcm
->list
.prev
);
90 list_add_tail(&newpcm
->list
, &snd_pcm_devices
);
94 static int snd_pcm_control_ioctl(struct snd_card
*card
,
95 struct snd_ctl_file
*control
,
96 unsigned int cmd
, unsigned long arg
)
99 case SNDRV_CTL_IOCTL_PCM_NEXT_DEVICE
:
103 if (get_user(device
, (int __user
*)arg
))
105 mutex_lock(®ister_mutex
);
106 device
= snd_pcm_next(card
, device
);
107 mutex_unlock(®ister_mutex
);
108 if (put_user(device
, (int __user
*)arg
))
112 case SNDRV_CTL_IOCTL_PCM_INFO
:
114 struct snd_pcm_info __user
*info
;
115 unsigned int device
, subdevice
;
118 struct snd_pcm_str
*pstr
;
119 struct snd_pcm_substream
*substream
;
122 info
= (struct snd_pcm_info __user
*)arg
;
123 if (get_user(device
, &info
->device
))
125 if (get_user(stream
, &info
->stream
))
127 if (stream
< 0 || stream
> 1)
129 stream
= array_index_nospec(stream
, 2);
130 if (get_user(subdevice
, &info
->subdevice
))
132 mutex_lock(®ister_mutex
);
133 pcm
= snd_pcm_get(card
, device
);
138 pstr
= &pcm
->streams
[stream
];
139 if (pstr
->substream_count
== 0) {
143 if (subdevice
>= pstr
->substream_count
) {
147 for (substream
= pstr
->substream
; substream
;
148 substream
= substream
->next
)
149 if (substream
->number
== (int)subdevice
)
151 if (substream
== NULL
) {
155 mutex_lock(&pcm
->open_mutex
);
156 err
= snd_pcm_info_user(substream
, info
);
157 mutex_unlock(&pcm
->open_mutex
);
159 mutex_unlock(®ister_mutex
);
162 case SNDRV_CTL_IOCTL_PCM_PREFER_SUBDEVICE
:
166 if (get_user(val
, (int __user
*)arg
))
168 control
->preferred_subdevice
[SND_CTL_SUBDEV_PCM
] = val
;
175 #define FORMAT(v) [SNDRV_PCM_FORMAT_##v] = #v
177 static char *snd_pcm_format_names
[] = {
196 FORMAT(IEC958_SUBFRAME_LE
),
197 FORMAT(IEC958_SUBFRAME_BE
),
228 * snd_pcm_format_name - Return a name string for the given PCM format
229 * @format: PCM format
231 const char *snd_pcm_format_name(snd_pcm_format_t format
)
233 if ((__force
unsigned int)format
>= ARRAY_SIZE(snd_pcm_format_names
))
235 return snd_pcm_format_names
[(__force
unsigned int)format
];
237 EXPORT_SYMBOL_GPL(snd_pcm_format_name
);
239 #ifdef CONFIG_SND_VERBOSE_PROCFS
241 #define STATE(v) [SNDRV_PCM_STATE_##v] = #v
242 #define STREAM(v) [SNDRV_PCM_STREAM_##v] = #v
243 #define READY(v) [SNDRV_PCM_READY_##v] = #v
244 #define XRUN(v) [SNDRV_PCM_XRUN_##v] = #v
245 #define SILENCE(v) [SNDRV_PCM_SILENCE_##v] = #v
246 #define TSTAMP(v) [SNDRV_PCM_TSTAMP_##v] = #v
247 #define ACCESS(v) [SNDRV_PCM_ACCESS_##v] = #v
248 #define START(v) [SNDRV_PCM_START_##v] = #v
249 #define SUBFORMAT(v) [SNDRV_PCM_SUBFORMAT_##v] = #v
251 static char *snd_pcm_stream_names
[] = {
256 static char *snd_pcm_state_names
[] = {
267 static char *snd_pcm_access_names
[] = {
268 ACCESS(MMAP_INTERLEAVED
),
269 ACCESS(MMAP_NONINTERLEAVED
),
270 ACCESS(MMAP_COMPLEX
),
271 ACCESS(RW_INTERLEAVED
),
272 ACCESS(RW_NONINTERLEAVED
),
275 static char *snd_pcm_subformat_names
[] = {
279 static char *snd_pcm_tstamp_mode_names
[] = {
284 static const char *snd_pcm_stream_name(int stream
)
286 return snd_pcm_stream_names
[stream
];
289 static const char *snd_pcm_access_name(snd_pcm_access_t access
)
291 return snd_pcm_access_names
[(__force
int)access
];
294 static const char *snd_pcm_subformat_name(snd_pcm_subformat_t subformat
)
296 return snd_pcm_subformat_names
[(__force
int)subformat
];
299 static const char *snd_pcm_tstamp_mode_name(int mode
)
301 return snd_pcm_tstamp_mode_names
[mode
];
304 static const char *snd_pcm_state_name(snd_pcm_state_t state
)
306 return snd_pcm_state_names
[(__force
int)state
];
309 #if IS_ENABLED(CONFIG_SND_PCM_OSS)
310 #include <linux/soundcard.h>
312 static const char *snd_pcm_oss_format_name(int format
)
341 static void snd_pcm_proc_info_read(struct snd_pcm_substream
*substream
,
342 struct snd_info_buffer
*buffer
)
344 struct snd_pcm_info
*info
;
350 info
= kmalloc(sizeof(*info
), GFP_KERNEL
);
354 err
= snd_pcm_info(substream
, info
);
356 snd_iprintf(buffer
, "error %d\n", err
);
360 snd_iprintf(buffer
, "card: %d\n", info
->card
);
361 snd_iprintf(buffer
, "device: %d\n", info
->device
);
362 snd_iprintf(buffer
, "subdevice: %d\n", info
->subdevice
);
363 snd_iprintf(buffer
, "stream: %s\n", snd_pcm_stream_name(info
->stream
));
364 snd_iprintf(buffer
, "id: %s\n", info
->id
);
365 snd_iprintf(buffer
, "name: %s\n", info
->name
);
366 snd_iprintf(buffer
, "subname: %s\n", info
->subname
);
367 snd_iprintf(buffer
, "class: %d\n", info
->dev_class
);
368 snd_iprintf(buffer
, "subclass: %d\n", info
->dev_subclass
);
369 snd_iprintf(buffer
, "subdevices_count: %d\n", info
->subdevices_count
);
370 snd_iprintf(buffer
, "subdevices_avail: %d\n", info
->subdevices_avail
);
374 static void snd_pcm_stream_proc_info_read(struct snd_info_entry
*entry
,
375 struct snd_info_buffer
*buffer
)
377 snd_pcm_proc_info_read(((struct snd_pcm_str
*)entry
->private_data
)->substream
,
381 static void snd_pcm_substream_proc_info_read(struct snd_info_entry
*entry
,
382 struct snd_info_buffer
*buffer
)
384 snd_pcm_proc_info_read(entry
->private_data
, buffer
);
387 static void snd_pcm_substream_proc_hw_params_read(struct snd_info_entry
*entry
,
388 struct snd_info_buffer
*buffer
)
390 struct snd_pcm_substream
*substream
= entry
->private_data
;
391 struct snd_pcm_runtime
*runtime
;
393 mutex_lock(&substream
->pcm
->open_mutex
);
394 runtime
= substream
->runtime
;
396 snd_iprintf(buffer
, "closed\n");
399 if (runtime
->status
->state
== SNDRV_PCM_STATE_OPEN
) {
400 snd_iprintf(buffer
, "no setup\n");
403 snd_iprintf(buffer
, "access: %s\n", snd_pcm_access_name(runtime
->access
));
404 snd_iprintf(buffer
, "format: %s\n", snd_pcm_format_name(runtime
->format
));
405 snd_iprintf(buffer
, "subformat: %s\n", snd_pcm_subformat_name(runtime
->subformat
));
406 snd_iprintf(buffer
, "channels: %u\n", runtime
->channels
);
407 snd_iprintf(buffer
, "rate: %u (%u/%u)\n", runtime
->rate
, runtime
->rate_num
, runtime
->rate_den
);
408 snd_iprintf(buffer
, "period_size: %lu\n", runtime
->period_size
);
409 snd_iprintf(buffer
, "buffer_size: %lu\n", runtime
->buffer_size
);
410 #if IS_ENABLED(CONFIG_SND_PCM_OSS)
411 if (substream
->oss
.oss
) {
412 snd_iprintf(buffer
, "OSS format: %s\n", snd_pcm_oss_format_name(runtime
->oss
.format
));
413 snd_iprintf(buffer
, "OSS channels: %u\n", runtime
->oss
.channels
);
414 snd_iprintf(buffer
, "OSS rate: %u\n", runtime
->oss
.rate
);
415 snd_iprintf(buffer
, "OSS period bytes: %lu\n", (unsigned long)runtime
->oss
.period_bytes
);
416 snd_iprintf(buffer
, "OSS periods: %u\n", runtime
->oss
.periods
);
417 snd_iprintf(buffer
, "OSS period frames: %lu\n", (unsigned long)runtime
->oss
.period_frames
);
421 mutex_unlock(&substream
->pcm
->open_mutex
);
424 static void snd_pcm_substream_proc_sw_params_read(struct snd_info_entry
*entry
,
425 struct snd_info_buffer
*buffer
)
427 struct snd_pcm_substream
*substream
= entry
->private_data
;
428 struct snd_pcm_runtime
*runtime
;
430 mutex_lock(&substream
->pcm
->open_mutex
);
431 runtime
= substream
->runtime
;
433 snd_iprintf(buffer
, "closed\n");
436 if (runtime
->status
->state
== SNDRV_PCM_STATE_OPEN
) {
437 snd_iprintf(buffer
, "no setup\n");
440 snd_iprintf(buffer
, "tstamp_mode: %s\n", snd_pcm_tstamp_mode_name(runtime
->tstamp_mode
));
441 snd_iprintf(buffer
, "period_step: %u\n", runtime
->period_step
);
442 snd_iprintf(buffer
, "avail_min: %lu\n", runtime
->control
->avail_min
);
443 snd_iprintf(buffer
, "start_threshold: %lu\n", runtime
->start_threshold
);
444 snd_iprintf(buffer
, "stop_threshold: %lu\n", runtime
->stop_threshold
);
445 snd_iprintf(buffer
, "silence_threshold: %lu\n", runtime
->silence_threshold
);
446 snd_iprintf(buffer
, "silence_size: %lu\n", runtime
->silence_size
);
447 snd_iprintf(buffer
, "boundary: %lu\n", runtime
->boundary
);
449 mutex_unlock(&substream
->pcm
->open_mutex
);
452 static void snd_pcm_substream_proc_status_read(struct snd_info_entry
*entry
,
453 struct snd_info_buffer
*buffer
)
455 struct snd_pcm_substream
*substream
= entry
->private_data
;
456 struct snd_pcm_runtime
*runtime
;
457 struct snd_pcm_status status
;
460 mutex_lock(&substream
->pcm
->open_mutex
);
461 runtime
= substream
->runtime
;
463 snd_iprintf(buffer
, "closed\n");
466 memset(&status
, 0, sizeof(status
));
467 err
= snd_pcm_status(substream
, &status
);
469 snd_iprintf(buffer
, "error %d\n", err
);
472 snd_iprintf(buffer
, "state: %s\n", snd_pcm_state_name(status
.state
));
473 snd_iprintf(buffer
, "owner_pid : %d\n", pid_vnr(substream
->pid
));
474 snd_iprintf(buffer
, "trigger_time: %ld.%09ld\n",
475 status
.trigger_tstamp
.tv_sec
, status
.trigger_tstamp
.tv_nsec
);
476 snd_iprintf(buffer
, "tstamp : %ld.%09ld\n",
477 status
.tstamp
.tv_sec
, status
.tstamp
.tv_nsec
);
478 snd_iprintf(buffer
, "delay : %ld\n", status
.delay
);
479 snd_iprintf(buffer
, "avail : %ld\n", status
.avail
);
480 snd_iprintf(buffer
, "avail_max : %ld\n", status
.avail_max
);
481 snd_iprintf(buffer
, "-----\n");
482 snd_iprintf(buffer
, "hw_ptr : %ld\n", runtime
->status
->hw_ptr
);
483 snd_iprintf(buffer
, "appl_ptr : %ld\n", runtime
->control
->appl_ptr
);
485 mutex_unlock(&substream
->pcm
->open_mutex
);
488 #ifdef CONFIG_SND_PCM_XRUN_DEBUG
489 static void snd_pcm_xrun_injection_write(struct snd_info_entry
*entry
,
490 struct snd_info_buffer
*buffer
)
492 struct snd_pcm_substream
*substream
= entry
->private_data
;
493 struct snd_pcm_runtime
*runtime
;
495 snd_pcm_stream_lock_irq(substream
);
496 runtime
= substream
->runtime
;
497 if (runtime
&& runtime
->status
->state
== SNDRV_PCM_STATE_RUNNING
)
498 snd_pcm_stop(substream
, SNDRV_PCM_STATE_XRUN
);
499 snd_pcm_stream_unlock_irq(substream
);
502 static void snd_pcm_xrun_debug_read(struct snd_info_entry
*entry
,
503 struct snd_info_buffer
*buffer
)
505 struct snd_pcm_str
*pstr
= entry
->private_data
;
506 snd_iprintf(buffer
, "%d\n", pstr
->xrun_debug
);
509 static void snd_pcm_xrun_debug_write(struct snd_info_entry
*entry
,
510 struct snd_info_buffer
*buffer
)
512 struct snd_pcm_str
*pstr
= entry
->private_data
;
514 if (!snd_info_get_line(buffer
, line
, sizeof(line
)))
515 pstr
->xrun_debug
= simple_strtoul(line
, NULL
, 10);
519 static int snd_pcm_stream_proc_init(struct snd_pcm_str
*pstr
)
521 struct snd_pcm
*pcm
= pstr
->pcm
;
522 struct snd_info_entry
*entry
;
525 sprintf(name
, "pcm%i%c", pcm
->device
,
526 pstr
->stream
== SNDRV_PCM_STREAM_PLAYBACK
? 'p' : 'c');
527 if ((entry
= snd_info_create_card_entry(pcm
->card
, name
, pcm
->card
->proc_root
)) == NULL
)
529 entry
->mode
= S_IFDIR
| S_IRUGO
| S_IXUGO
;
530 if (snd_info_register(entry
) < 0) {
531 snd_info_free_entry(entry
);
534 pstr
->proc_root
= entry
;
536 if ((entry
= snd_info_create_card_entry(pcm
->card
, "info", pstr
->proc_root
)) != NULL
) {
537 snd_info_set_text_ops(entry
, pstr
, snd_pcm_stream_proc_info_read
);
538 if (snd_info_register(entry
) < 0) {
539 snd_info_free_entry(entry
);
543 pstr
->proc_info_entry
= entry
;
545 #ifdef CONFIG_SND_PCM_XRUN_DEBUG
546 if ((entry
= snd_info_create_card_entry(pcm
->card
, "xrun_debug",
547 pstr
->proc_root
)) != NULL
) {
548 entry
->c
.text
.read
= snd_pcm_xrun_debug_read
;
549 entry
->c
.text
.write
= snd_pcm_xrun_debug_write
;
550 entry
->mode
|= S_IWUSR
;
551 entry
->private_data
= pstr
;
552 if (snd_info_register(entry
) < 0) {
553 snd_info_free_entry(entry
);
557 pstr
->proc_xrun_debug_entry
= entry
;
562 static int snd_pcm_stream_proc_done(struct snd_pcm_str
*pstr
)
564 #ifdef CONFIG_SND_PCM_XRUN_DEBUG
565 snd_info_free_entry(pstr
->proc_xrun_debug_entry
);
566 pstr
->proc_xrun_debug_entry
= NULL
;
568 snd_info_free_entry(pstr
->proc_info_entry
);
569 pstr
->proc_info_entry
= NULL
;
570 snd_info_free_entry(pstr
->proc_root
);
571 pstr
->proc_root
= NULL
;
575 static int snd_pcm_substream_proc_init(struct snd_pcm_substream
*substream
)
577 struct snd_info_entry
*entry
;
578 struct snd_card
*card
;
581 card
= substream
->pcm
->card
;
583 sprintf(name
, "sub%i", substream
->number
);
584 if ((entry
= snd_info_create_card_entry(card
, name
, substream
->pstr
->proc_root
)) == NULL
)
586 entry
->mode
= S_IFDIR
| S_IRUGO
| S_IXUGO
;
587 if (snd_info_register(entry
) < 0) {
588 snd_info_free_entry(entry
);
591 substream
->proc_root
= entry
;
593 if ((entry
= snd_info_create_card_entry(card
, "info", substream
->proc_root
)) != NULL
) {
594 snd_info_set_text_ops(entry
, substream
,
595 snd_pcm_substream_proc_info_read
);
596 if (snd_info_register(entry
) < 0) {
597 snd_info_free_entry(entry
);
601 substream
->proc_info_entry
= entry
;
603 if ((entry
= snd_info_create_card_entry(card
, "hw_params", substream
->proc_root
)) != NULL
) {
604 snd_info_set_text_ops(entry
, substream
,
605 snd_pcm_substream_proc_hw_params_read
);
606 if (snd_info_register(entry
) < 0) {
607 snd_info_free_entry(entry
);
611 substream
->proc_hw_params_entry
= entry
;
613 if ((entry
= snd_info_create_card_entry(card
, "sw_params", substream
->proc_root
)) != NULL
) {
614 snd_info_set_text_ops(entry
, substream
,
615 snd_pcm_substream_proc_sw_params_read
);
616 if (snd_info_register(entry
) < 0) {
617 snd_info_free_entry(entry
);
621 substream
->proc_sw_params_entry
= entry
;
623 if ((entry
= snd_info_create_card_entry(card
, "status", substream
->proc_root
)) != NULL
) {
624 snd_info_set_text_ops(entry
, substream
,
625 snd_pcm_substream_proc_status_read
);
626 if (snd_info_register(entry
) < 0) {
627 snd_info_free_entry(entry
);
631 substream
->proc_status_entry
= entry
;
633 #ifdef CONFIG_SND_PCM_XRUN_DEBUG
634 entry
= snd_info_create_card_entry(card
, "xrun_injection",
635 substream
->proc_root
);
637 entry
->private_data
= substream
;
638 entry
->c
.text
.read
= NULL
;
639 entry
->c
.text
.write
= snd_pcm_xrun_injection_write
;
640 entry
->mode
= S_IFREG
| S_IWUSR
;
641 if (snd_info_register(entry
) < 0) {
642 snd_info_free_entry(entry
);
646 substream
->proc_xrun_injection_entry
= entry
;
647 #endif /* CONFIG_SND_PCM_XRUN_DEBUG */
652 static int snd_pcm_substream_proc_done(struct snd_pcm_substream
*substream
)
654 snd_info_free_entry(substream
->proc_info_entry
);
655 substream
->proc_info_entry
= NULL
;
656 snd_info_free_entry(substream
->proc_hw_params_entry
);
657 substream
->proc_hw_params_entry
= NULL
;
658 snd_info_free_entry(substream
->proc_sw_params_entry
);
659 substream
->proc_sw_params_entry
= NULL
;
660 snd_info_free_entry(substream
->proc_status_entry
);
661 substream
->proc_status_entry
= NULL
;
662 #ifdef CONFIG_SND_PCM_XRUN_DEBUG
663 snd_info_free_entry(substream
->proc_xrun_injection_entry
);
664 substream
->proc_xrun_injection_entry
= NULL
;
666 snd_info_free_entry(substream
->proc_root
);
667 substream
->proc_root
= NULL
;
670 #else /* !CONFIG_SND_VERBOSE_PROCFS */
671 static inline int snd_pcm_stream_proc_init(struct snd_pcm_str
*pstr
) { return 0; }
672 static inline int snd_pcm_stream_proc_done(struct snd_pcm_str
*pstr
) { return 0; }
673 static inline int snd_pcm_substream_proc_init(struct snd_pcm_substream
*substream
) { return 0; }
674 static inline int snd_pcm_substream_proc_done(struct snd_pcm_substream
*substream
) { return 0; }
675 #endif /* CONFIG_SND_VERBOSE_PROCFS */
677 static const struct attribute_group
*pcm_dev_attr_groups
[];
680 * snd_pcm_new_stream - create a new PCM stream
681 * @pcm: the pcm instance
682 * @stream: the stream direction, SNDRV_PCM_STREAM_XXX
683 * @substream_count: the number of substreams
685 * Creates a new stream for the pcm.
686 * The corresponding stream on the pcm must have been empty before
687 * calling this, i.e. zero must be given to the argument of
690 * Return: Zero if successful, or a negative error code on failure.
692 int snd_pcm_new_stream(struct snd_pcm
*pcm
, int stream
, int substream_count
)
695 struct snd_pcm_str
*pstr
= &pcm
->streams
[stream
];
696 struct snd_pcm_substream
*substream
, *prev
;
698 #if IS_ENABLED(CONFIG_SND_PCM_OSS)
699 mutex_init(&pstr
->oss
.setup_mutex
);
701 pstr
->stream
= stream
;
703 pstr
->substream_count
= substream_count
;
704 if (!substream_count
)
707 snd_device_initialize(&pstr
->dev
, pcm
->card
);
708 pstr
->dev
.groups
= pcm_dev_attr_groups
;
709 dev_set_name(&pstr
->dev
, "pcmC%iD%i%c", pcm
->card
->number
, pcm
->device
,
710 stream
== SNDRV_PCM_STREAM_PLAYBACK
? 'p' : 'c');
712 if (!pcm
->internal
) {
713 err
= snd_pcm_stream_proc_init(pstr
);
715 pcm_err(pcm
, "Error in snd_pcm_stream_proc_init\n");
720 for (idx
= 0, prev
= NULL
; idx
< substream_count
; idx
++) {
721 substream
= kzalloc(sizeof(*substream
), GFP_KERNEL
);
724 substream
->pcm
= pcm
;
725 substream
->pstr
= pstr
;
726 substream
->number
= idx
;
727 substream
->stream
= stream
;
728 sprintf(substream
->name
, "subdevice #%i", idx
);
729 substream
->buffer_bytes_max
= UINT_MAX
;
731 pstr
->substream
= substream
;
733 prev
->next
= substream
;
735 if (!pcm
->internal
) {
736 err
= snd_pcm_substream_proc_init(substream
);
739 "Error in snd_pcm_stream_proc_init\n");
741 pstr
->substream
= NULL
;
748 substream
->group
= &substream
->self_group
;
749 spin_lock_init(&substream
->self_group
.lock
);
750 mutex_init(&substream
->self_group
.mutex
);
751 INIT_LIST_HEAD(&substream
->self_group
.substreams
);
752 list_add_tail(&substream
->link_list
, &substream
->self_group
.substreams
);
753 atomic_set(&substream
->mmap_count
, 0);
758 EXPORT_SYMBOL(snd_pcm_new_stream
);
760 static int _snd_pcm_new(struct snd_card
*card
, const char *id
, int device
,
761 int playback_count
, int capture_count
, bool internal
,
762 struct snd_pcm
**rpcm
)
766 static struct snd_device_ops ops
= {
767 .dev_free
= snd_pcm_dev_free
,
768 .dev_register
= snd_pcm_dev_register
,
769 .dev_disconnect
= snd_pcm_dev_disconnect
,
772 if (snd_BUG_ON(!card
))
776 pcm
= kzalloc(sizeof(*pcm
), GFP_KERNEL
);
780 pcm
->device
= device
;
781 pcm
->internal
= internal
;
782 mutex_init(&pcm
->open_mutex
);
783 init_waitqueue_head(&pcm
->open_wait
);
784 INIT_LIST_HEAD(&pcm
->list
);
786 strlcpy(pcm
->id
, id
, sizeof(pcm
->id
));
787 if ((err
= snd_pcm_new_stream(pcm
, SNDRV_PCM_STREAM_PLAYBACK
, playback_count
)) < 0) {
791 if ((err
= snd_pcm_new_stream(pcm
, SNDRV_PCM_STREAM_CAPTURE
, capture_count
)) < 0) {
795 if ((err
= snd_device_new(card
, SNDRV_DEV_PCM
, pcm
, &ops
)) < 0) {
805 * snd_pcm_new - create a new PCM instance
806 * @card: the card instance
808 * @device: the device index (zero based)
809 * @playback_count: the number of substreams for playback
810 * @capture_count: the number of substreams for capture
811 * @rpcm: the pointer to store the new pcm instance
813 * Creates a new PCM instance.
815 * The pcm operators have to be set afterwards to the new instance
816 * via snd_pcm_set_ops().
818 * Return: Zero if successful, or a negative error code on failure.
820 int snd_pcm_new(struct snd_card
*card
, const char *id
, int device
,
821 int playback_count
, int capture_count
, struct snd_pcm
**rpcm
)
823 return _snd_pcm_new(card
, id
, device
, playback_count
, capture_count
,
826 EXPORT_SYMBOL(snd_pcm_new
);
829 * snd_pcm_new_internal - create a new internal PCM instance
830 * @card: the card instance
832 * @device: the device index (zero based - shared with normal PCMs)
833 * @playback_count: the number of substreams for playback
834 * @capture_count: the number of substreams for capture
835 * @rpcm: the pointer to store the new pcm instance
837 * Creates a new internal PCM instance with no userspace device or procfs
838 * entries. This is used by ASoC Back End PCMs in order to create a PCM that
839 * will only be used internally by kernel drivers. i.e. it cannot be opened
840 * by userspace. It provides existing ASoC components drivers with a substream
841 * and access to any private data.
843 * The pcm operators have to be set afterwards to the new instance
844 * via snd_pcm_set_ops().
846 * Return: Zero if successful, or a negative error code on failure.
848 int snd_pcm_new_internal(struct snd_card
*card
, const char *id
, int device
,
849 int playback_count
, int capture_count
,
850 struct snd_pcm
**rpcm
)
852 return _snd_pcm_new(card
, id
, device
, playback_count
, capture_count
,
855 EXPORT_SYMBOL(snd_pcm_new_internal
);
857 static void free_chmap(struct snd_pcm_str
*pstr
)
859 if (pstr
->chmap_kctl
) {
860 snd_ctl_remove(pstr
->pcm
->card
, pstr
->chmap_kctl
);
861 pstr
->chmap_kctl
= NULL
;
865 static void snd_pcm_free_stream(struct snd_pcm_str
* pstr
)
867 struct snd_pcm_substream
*substream
, *substream_next
;
868 #if IS_ENABLED(CONFIG_SND_PCM_OSS)
869 struct snd_pcm_oss_setup
*setup
, *setupn
;
871 substream
= pstr
->substream
;
873 substream_next
= substream
->next
;
874 snd_pcm_timer_done(substream
);
875 snd_pcm_substream_proc_done(substream
);
877 substream
= substream_next
;
879 snd_pcm_stream_proc_done(pstr
);
880 #if IS_ENABLED(CONFIG_SND_PCM_OSS)
881 for (setup
= pstr
->oss
.setup_list
; setup
; setup
= setupn
) {
882 setupn
= setup
->next
;
883 kfree(setup
->task_name
);
888 if (pstr
->substream_count
)
889 put_device(&pstr
->dev
);
892 static int snd_pcm_free(struct snd_pcm
*pcm
)
894 struct snd_pcm_notify
*notify
;
898 if (!pcm
->internal
) {
899 list_for_each_entry(notify
, &snd_pcm_notify_list
, list
)
900 notify
->n_unregister(pcm
);
902 if (pcm
->private_free
)
903 pcm
->private_free(pcm
);
904 snd_pcm_lib_preallocate_free_for_all(pcm
);
905 snd_pcm_free_stream(&pcm
->streams
[SNDRV_PCM_STREAM_PLAYBACK
]);
906 snd_pcm_free_stream(&pcm
->streams
[SNDRV_PCM_STREAM_CAPTURE
]);
911 static int snd_pcm_dev_free(struct snd_device
*device
)
913 struct snd_pcm
*pcm
= device
->device_data
;
914 return snd_pcm_free(pcm
);
917 int snd_pcm_attach_substream(struct snd_pcm
*pcm
, int stream
,
919 struct snd_pcm_substream
**rsubstream
)
921 struct snd_pcm_str
* pstr
;
922 struct snd_pcm_substream
*substream
;
923 struct snd_pcm_runtime
*runtime
;
924 struct snd_card
*card
;
925 int prefer_subdevice
;
928 if (snd_BUG_ON(!pcm
|| !rsubstream
))
930 if (snd_BUG_ON(stream
!= SNDRV_PCM_STREAM_PLAYBACK
&&
931 stream
!= SNDRV_PCM_STREAM_CAPTURE
))
934 pstr
= &pcm
->streams
[stream
];
935 if (pstr
->substream
== NULL
|| pstr
->substream_count
== 0)
939 prefer_subdevice
= snd_ctl_get_preferred_subdevice(card
, SND_CTL_SUBDEV_PCM
);
941 if (pcm
->info_flags
& SNDRV_PCM_INFO_HALF_DUPLEX
) {
942 int opposite
= !stream
;
944 for (substream
= pcm
->streams
[opposite
].substream
; substream
;
945 substream
= substream
->next
) {
946 if (SUBSTREAM_BUSY(substream
))
951 if (file
->f_flags
& O_APPEND
) {
952 if (prefer_subdevice
< 0) {
953 if (pstr
->substream_count
> 1)
954 return -EINVAL
; /* must be unique */
955 substream
= pstr
->substream
;
957 for (substream
= pstr
->substream
; substream
;
958 substream
= substream
->next
)
959 if (substream
->number
== prefer_subdevice
)
964 if (! SUBSTREAM_BUSY(substream
))
966 substream
->ref_count
++;
967 *rsubstream
= substream
;
971 for (substream
= pstr
->substream
; substream
; substream
= substream
->next
) {
972 if (!SUBSTREAM_BUSY(substream
) &&
973 (prefer_subdevice
== -1 ||
974 substream
->number
== prefer_subdevice
))
977 if (substream
== NULL
)
980 runtime
= kzalloc(sizeof(*runtime
), GFP_KERNEL
);
984 size
= PAGE_ALIGN(sizeof(struct snd_pcm_mmap_status
));
985 runtime
->status
= snd_malloc_pages(size
, GFP_KERNEL
);
986 if (runtime
->status
== NULL
) {
990 memset((void*)runtime
->status
, 0, size
);
992 size
= PAGE_ALIGN(sizeof(struct snd_pcm_mmap_control
));
993 runtime
->control
= snd_malloc_pages(size
, GFP_KERNEL
);
994 if (runtime
->control
== NULL
) {
995 snd_free_pages((void*)runtime
->status
,
996 PAGE_ALIGN(sizeof(struct snd_pcm_mmap_status
)));
1000 memset((void*)runtime
->control
, 0, size
);
1002 init_waitqueue_head(&runtime
->sleep
);
1003 init_waitqueue_head(&runtime
->tsleep
);
1005 runtime
->status
->state
= SNDRV_PCM_STATE_OPEN
;
1007 substream
->runtime
= runtime
;
1008 substream
->private_data
= pcm
->private_data
;
1009 substream
->ref_count
= 1;
1010 substream
->f_flags
= file
->f_flags
;
1011 substream
->pid
= get_pid(task_pid(current
));
1012 pstr
->substream_opened
++;
1013 *rsubstream
= substream
;
1017 void snd_pcm_detach_substream(struct snd_pcm_substream
*substream
)
1019 struct snd_pcm_runtime
*runtime
;
1021 if (PCM_RUNTIME_CHECK(substream
))
1023 runtime
= substream
->runtime
;
1024 if (runtime
->private_free
!= NULL
)
1025 runtime
->private_free(runtime
);
1026 snd_free_pages((void*)runtime
->status
,
1027 PAGE_ALIGN(sizeof(struct snd_pcm_mmap_status
)));
1028 snd_free_pages((void*)runtime
->control
,
1029 PAGE_ALIGN(sizeof(struct snd_pcm_mmap_control
)));
1030 kfree(runtime
->hw_constraints
.rules
);
1031 /* Avoid concurrent access to runtime via PCM timer interface */
1032 if (substream
->timer
)
1033 spin_lock_irq(&substream
->timer
->lock
);
1034 substream
->runtime
= NULL
;
1035 if (substream
->timer
)
1036 spin_unlock_irq(&substream
->timer
->lock
);
1038 put_pid(substream
->pid
);
1039 substream
->pid
= NULL
;
1040 substream
->pstr
->substream_opened
--;
1043 static ssize_t
show_pcm_class(struct device
*dev
,
1044 struct device_attribute
*attr
, char *buf
)
1046 struct snd_pcm_str
*pstr
= container_of(dev
, struct snd_pcm_str
, dev
);
1047 struct snd_pcm
*pcm
= pstr
->pcm
;
1049 static const char *strs
[SNDRV_PCM_CLASS_LAST
+ 1] = {
1050 [SNDRV_PCM_CLASS_GENERIC
] = "generic",
1051 [SNDRV_PCM_CLASS_MULTI
] = "multi",
1052 [SNDRV_PCM_CLASS_MODEM
] = "modem",
1053 [SNDRV_PCM_CLASS_DIGITIZER
] = "digitizer",
1056 if (pcm
->dev_class
> SNDRV_PCM_CLASS_LAST
)
1059 str
= strs
[pcm
->dev_class
];
1060 return snprintf(buf
, PAGE_SIZE
, "%s\n", str
);
1063 static DEVICE_ATTR(pcm_class
, S_IRUGO
, show_pcm_class
, NULL
);
1064 static struct attribute
*pcm_dev_attrs
[] = {
1065 &dev_attr_pcm_class
.attr
,
1069 static struct attribute_group pcm_dev_attr_group
= {
1070 .attrs
= pcm_dev_attrs
,
1073 static const struct attribute_group
*pcm_dev_attr_groups
[] = {
1074 &pcm_dev_attr_group
,
1078 static int snd_pcm_dev_register(struct snd_device
*device
)
1081 struct snd_pcm_substream
*substream
;
1082 struct snd_pcm_notify
*notify
;
1083 struct snd_pcm
*pcm
;
1085 if (snd_BUG_ON(!device
|| !device
->device_data
))
1087 pcm
= device
->device_data
;
1091 mutex_lock(®ister_mutex
);
1092 err
= snd_pcm_add(pcm
);
1095 for (cidx
= 0; cidx
< 2; cidx
++) {
1097 if (pcm
->streams
[cidx
].substream
== NULL
)
1100 case SNDRV_PCM_STREAM_PLAYBACK
:
1101 devtype
= SNDRV_DEVICE_TYPE_PCM_PLAYBACK
;
1103 case SNDRV_PCM_STREAM_CAPTURE
:
1104 devtype
= SNDRV_DEVICE_TYPE_PCM_CAPTURE
;
1108 err
= snd_register_device(devtype
, pcm
->card
, pcm
->device
,
1109 &snd_pcm_f_ops
[cidx
], pcm
,
1110 &pcm
->streams
[cidx
].dev
);
1112 list_del_init(&pcm
->list
);
1116 for (substream
= pcm
->streams
[cidx
].substream
; substream
; substream
= substream
->next
)
1117 snd_pcm_timer_init(substream
);
1120 list_for_each_entry(notify
, &snd_pcm_notify_list
, list
)
1121 notify
->n_register(pcm
);
1124 mutex_unlock(®ister_mutex
);
1128 static int snd_pcm_dev_disconnect(struct snd_device
*device
)
1130 struct snd_pcm
*pcm
= device
->device_data
;
1131 struct snd_pcm_notify
*notify
;
1132 struct snd_pcm_substream
*substream
;
1135 mutex_lock(®ister_mutex
);
1136 mutex_lock(&pcm
->open_mutex
);
1137 wake_up(&pcm
->open_wait
);
1138 list_del_init(&pcm
->list
);
1139 for (cidx
= 0; cidx
< 2; cidx
++) {
1140 for (substream
= pcm
->streams
[cidx
].substream
; substream
; substream
= substream
->next
) {
1141 snd_pcm_stream_lock_irq(substream
);
1142 if (substream
->runtime
) {
1143 substream
->runtime
->status
->state
= SNDRV_PCM_STATE_DISCONNECTED
;
1144 wake_up(&substream
->runtime
->sleep
);
1145 wake_up(&substream
->runtime
->tsleep
);
1147 snd_pcm_stream_unlock_irq(substream
);
1150 if (!pcm
->internal
) {
1151 list_for_each_entry(notify
, &snd_pcm_notify_list
, list
)
1152 notify
->n_disconnect(pcm
);
1154 for (cidx
= 0; cidx
< 2; cidx
++) {
1156 snd_unregister_device(&pcm
->streams
[cidx
].dev
);
1157 free_chmap(&pcm
->streams
[cidx
]);
1159 mutex_unlock(&pcm
->open_mutex
);
1160 mutex_unlock(®ister_mutex
);
1165 * snd_pcm_notify - Add/remove the notify list
1166 * @notify: PCM notify list
1167 * @nfree: 0 = register, 1 = unregister
1169 * This adds the given notifier to the global list so that the callback is
1170 * called for each registered PCM devices. This exists only for PCM OSS
1171 * emulation, so far.
1173 int snd_pcm_notify(struct snd_pcm_notify
*notify
, int nfree
)
1175 struct snd_pcm
*pcm
;
1177 if (snd_BUG_ON(!notify
||
1178 !notify
->n_register
||
1179 !notify
->n_unregister
||
1180 !notify
->n_disconnect
))
1182 mutex_lock(®ister_mutex
);
1184 list_del(¬ify
->list
);
1185 list_for_each_entry(pcm
, &snd_pcm_devices
, list
)
1186 notify
->n_unregister(pcm
);
1188 list_add_tail(¬ify
->list
, &snd_pcm_notify_list
);
1189 list_for_each_entry(pcm
, &snd_pcm_devices
, list
)
1190 notify
->n_register(pcm
);
1192 mutex_unlock(®ister_mutex
);
1195 EXPORT_SYMBOL(snd_pcm_notify
);
1197 #ifdef CONFIG_SND_PROC_FS
1202 static void snd_pcm_proc_read(struct snd_info_entry
*entry
,
1203 struct snd_info_buffer
*buffer
)
1205 struct snd_pcm
*pcm
;
1207 mutex_lock(®ister_mutex
);
1208 list_for_each_entry(pcm
, &snd_pcm_devices
, list
) {
1209 snd_iprintf(buffer
, "%02i-%02i: %s : %s",
1210 pcm
->card
->number
, pcm
->device
, pcm
->id
, pcm
->name
);
1211 if (pcm
->streams
[SNDRV_PCM_STREAM_PLAYBACK
].substream
)
1212 snd_iprintf(buffer
, " : playback %i",
1213 pcm
->streams
[SNDRV_PCM_STREAM_PLAYBACK
].substream_count
);
1214 if (pcm
->streams
[SNDRV_PCM_STREAM_CAPTURE
].substream
)
1215 snd_iprintf(buffer
, " : capture %i",
1216 pcm
->streams
[SNDRV_PCM_STREAM_CAPTURE
].substream_count
);
1217 snd_iprintf(buffer
, "\n");
1219 mutex_unlock(®ister_mutex
);
1222 static struct snd_info_entry
*snd_pcm_proc_entry
;
1224 static void snd_pcm_proc_init(void)
1226 struct snd_info_entry
*entry
;
1228 if ((entry
= snd_info_create_module_entry(THIS_MODULE
, "pcm", NULL
)) != NULL
) {
1229 snd_info_set_text_ops(entry
, NULL
, snd_pcm_proc_read
);
1230 if (snd_info_register(entry
) < 0) {
1231 snd_info_free_entry(entry
);
1235 snd_pcm_proc_entry
= entry
;
1238 static void snd_pcm_proc_done(void)
1240 snd_info_free_entry(snd_pcm_proc_entry
);
1243 #else /* !CONFIG_SND_PROC_FS */
1244 #define snd_pcm_proc_init()
1245 #define snd_pcm_proc_done()
1246 #endif /* CONFIG_SND_PROC_FS */
1253 static int __init
alsa_pcm_init(void)
1255 snd_ctl_register_ioctl(snd_pcm_control_ioctl
);
1256 snd_ctl_register_ioctl_compat(snd_pcm_control_ioctl
);
1257 snd_pcm_proc_init();
1261 static void __exit
alsa_pcm_exit(void)
1263 snd_ctl_unregister_ioctl(snd_pcm_control_ioctl
);
1264 snd_ctl_unregister_ioctl_compat(snd_pcm_control_ioctl
);
1265 snd_pcm_proc_done();
1268 module_init(alsa_pcm_init
)
1269 module_exit(alsa_pcm_exit
)