ALSA: pcm: Add big-endian DSD sample formats and fix XMOS DSD sample format
[linux-2.6-block.git] / sound / core / pcm.c
CommitLineData
1da177e4
LT
1/*
2 * Digital Audio (PCM) abstract layer
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/slab.h>
da155d5b 24#include <linux/module.h>
1da177e4 25#include <linux/time.h>
1a60d4c5 26#include <linux/mutex.h>
51990e82 27#include <linux/device.h>
1da177e4
LT
28#include <sound/core.h>
29#include <sound/minors.h>
30#include <sound/pcm.h>
31#include <sound/control.h>
32#include <sound/info.h>
33
c1017a4c 34MODULE_AUTHOR("Jaroslav Kysela <perex@perex.cz>, Abramo Bagnara <abramo@alsa-project.org>");
1da177e4
LT
35MODULE_DESCRIPTION("Midlevel PCM code for ALSA.");
36MODULE_LICENSE("GPL");
37
f87135f5 38static LIST_HEAD(snd_pcm_devices);
1da177e4 39static LIST_HEAD(snd_pcm_notify_list);
1a60d4c5 40static DEFINE_MUTEX(register_mutex);
1da177e4 41
877211f5
TI
42static int snd_pcm_free(struct snd_pcm *pcm);
43static int snd_pcm_dev_free(struct snd_device *device);
44static int snd_pcm_dev_register(struct snd_device *device);
45static int snd_pcm_dev_disconnect(struct snd_device *device);
1da177e4 46
f90c06a2 47static struct snd_pcm *snd_pcm_get(struct snd_card *card, int device)
f87135f5 48{
f87135f5
CL
49 struct snd_pcm *pcm;
50
9244b2c3 51 list_for_each_entry(pcm, &snd_pcm_devices, list) {
a4461f41
RK
52 if (pcm->internal)
53 continue;
f87135f5
CL
54 if (pcm->card == card && pcm->device == device)
55 return pcm;
56 }
57 return NULL;
58}
59
f90c06a2
PM
60static int snd_pcm_next(struct snd_card *card, int device)
61{
62 struct snd_pcm *pcm;
63
64 list_for_each_entry(pcm, &snd_pcm_devices, list) {
a4461f41
RK
65 if (pcm->internal)
66 continue;
f90c06a2
PM
67 if (pcm->card == card && pcm->device > device)
68 return pcm->device;
69 else if (pcm->card->number > card->number)
70 return -1;
71 }
72 return -1;
73}
74
75static int snd_pcm_add(struct snd_pcm *newpcm)
76{
77 struct snd_pcm *pcm;
78
79 list_for_each_entry(pcm, &snd_pcm_devices, list) {
80 if (pcm->card == newpcm->card && pcm->device == newpcm->device)
81 return -EBUSY;
82 if (pcm->card->number > newpcm->card->number ||
83 (pcm->card == newpcm->card &&
84 pcm->device > newpcm->device)) {
85 list_add(&newpcm->list, pcm->list.prev);
86 return 0;
87 }
88 }
89 list_add_tail(&newpcm->list, &snd_pcm_devices);
90 return 0;
91}
92
877211f5
TI
93static int snd_pcm_control_ioctl(struct snd_card *card,
94 struct snd_ctl_file *control,
1da177e4
LT
95 unsigned int cmd, unsigned long arg)
96{
1da177e4
LT
97 switch (cmd) {
98 case SNDRV_CTL_IOCTL_PCM_NEXT_DEVICE:
99 {
100 int device;
101
102 if (get_user(device, (int __user *)arg))
103 return -EFAULT;
1a60d4c5 104 mutex_lock(&register_mutex);
f90c06a2 105 device = snd_pcm_next(card, device);
1a60d4c5 106 mutex_unlock(&register_mutex);
1da177e4
LT
107 if (put_user(device, (int __user *)arg))
108 return -EFAULT;
109 return 0;
110 }
111 case SNDRV_CTL_IOCTL_PCM_INFO:
112 {
877211f5 113 struct snd_pcm_info __user *info;
1da177e4 114 unsigned int device, subdevice;
877211f5
TI
115 int stream;
116 struct snd_pcm *pcm;
117 struct snd_pcm_str *pstr;
118 struct snd_pcm_substream *substream;
f87135f5
CL
119 int err;
120
877211f5 121 info = (struct snd_pcm_info __user *)arg;
1da177e4
LT
122 if (get_user(device, &info->device))
123 return -EFAULT;
1da177e4
LT
124 if (get_user(stream, &info->stream))
125 return -EFAULT;
126 if (stream < 0 || stream > 1)
127 return -EINVAL;
1da177e4
LT
128 if (get_user(subdevice, &info->subdevice))
129 return -EFAULT;
1a60d4c5 130 mutex_lock(&register_mutex);
f90c06a2 131 pcm = snd_pcm_get(card, device);
f87135f5
CL
132 if (pcm == NULL) {
133 err = -ENXIO;
134 goto _error;
135 }
136 pstr = &pcm->streams[stream];
137 if (pstr->substream_count == 0) {
138 err = -ENOENT;
139 goto _error;
140 }
141 if (subdevice >= pstr->substream_count) {
142 err = -ENXIO;
143 goto _error;
144 }
145 for (substream = pstr->substream; substream;
146 substream = substream->next)
1da177e4
LT
147 if (substream->number == (int)subdevice)
148 break;
f87135f5
CL
149 if (substream == NULL) {
150 err = -ENXIO;
151 goto _error;
152 }
153 err = snd_pcm_info_user(substream, info);
154 _error:
1a60d4c5 155 mutex_unlock(&register_mutex);
f87135f5 156 return err;
1da177e4
LT
157 }
158 case SNDRV_CTL_IOCTL_PCM_PREFER_SUBDEVICE:
159 {
160 int val;
161
162 if (get_user(val, (int __user *)arg))
163 return -EFAULT;
164 control->prefer_pcm_subdevice = val;
165 return 0;
166 }
167 }
168 return -ENOIOCTLCMD;
169}
21a3479a 170
1da177e4 171#define FORMAT(v) [SNDRV_PCM_FORMAT_##v] = #v
1da177e4 172
1da177e4
LT
173static char *snd_pcm_format_names[] = {
174 FORMAT(S8),
175 FORMAT(U8),
176 FORMAT(S16_LE),
177 FORMAT(S16_BE),
178 FORMAT(U16_LE),
179 FORMAT(U16_BE),
180 FORMAT(S24_LE),
181 FORMAT(S24_BE),
182 FORMAT(U24_LE),
183 FORMAT(U24_BE),
184 FORMAT(S32_LE),
185 FORMAT(S32_BE),
186 FORMAT(U32_LE),
187 FORMAT(U32_BE),
188 FORMAT(FLOAT_LE),
189 FORMAT(FLOAT_BE),
190 FORMAT(FLOAT64_LE),
191 FORMAT(FLOAT64_BE),
192 FORMAT(IEC958_SUBFRAME_LE),
193 FORMAT(IEC958_SUBFRAME_BE),
194 FORMAT(MU_LAW),
195 FORMAT(A_LAW),
196 FORMAT(IMA_ADPCM),
197 FORMAT(MPEG),
198 FORMAT(GSM),
199 FORMAT(SPECIAL),
200 FORMAT(S24_3LE),
201 FORMAT(S24_3BE),
202 FORMAT(U24_3LE),
203 FORMAT(U24_3BE),
204 FORMAT(S20_3LE),
205 FORMAT(S20_3BE),
206 FORMAT(U20_3LE),
207 FORMAT(U20_3BE),
208 FORMAT(S18_3LE),
209 FORMAT(S18_3BE),
210 FORMAT(U18_3LE),
211 FORMAT(U18_3BE),
7a28826a
DC
212 FORMAT(G723_24),
213 FORMAT(G723_24_1B),
214 FORMAT(G723_40),
215 FORMAT(G723_40_1B),
ef7a4f97
DM
216 FORMAT(DSD_U8),
217 FORMAT(DSD_U16_LE),
d4288d3f 218 FORMAT(DSD_U32_LE),
d42472ec
JL
219 FORMAT(DSD_U16_BE),
220 FORMAT(DSD_U32_BE),
1da177e4
LT
221};
222
6e5265ec 223const char *snd_pcm_format_name(snd_pcm_format_t format)
e28563cc 224{
fea952e5 225 if ((__force unsigned int)format >= ARRAY_SIZE(snd_pcm_format_names))
7a28826a 226 return "Unknown";
fea952e5 227 return snd_pcm_format_names[(__force unsigned int)format];
e28563cc 228}
6e5265ec
TI
229EXPORT_SYMBOL_GPL(snd_pcm_format_name);
230
231#ifdef CONFIG_SND_VERBOSE_PROCFS
232
233#define STATE(v) [SNDRV_PCM_STATE_##v] = #v
234#define STREAM(v) [SNDRV_PCM_STREAM_##v] = #v
235#define READY(v) [SNDRV_PCM_READY_##v] = #v
236#define XRUN(v) [SNDRV_PCM_XRUN_##v] = #v
237#define SILENCE(v) [SNDRV_PCM_SILENCE_##v] = #v
238#define TSTAMP(v) [SNDRV_PCM_TSTAMP_##v] = #v
239#define ACCESS(v) [SNDRV_PCM_ACCESS_##v] = #v
240#define START(v) [SNDRV_PCM_START_##v] = #v
241#define SUBFORMAT(v) [SNDRV_PCM_SUBFORMAT_##v] = #v
e28563cc 242
e28563cc
TI
243static char *snd_pcm_stream_names[] = {
244 STREAM(PLAYBACK),
245 STREAM(CAPTURE),
246};
247
248static char *snd_pcm_state_names[] = {
249 STATE(OPEN),
250 STATE(SETUP),
251 STATE(PREPARED),
252 STATE(RUNNING),
253 STATE(XRUN),
254 STATE(DRAINING),
255 STATE(PAUSED),
256 STATE(SUSPENDED),
257};
258
259static char *snd_pcm_access_names[] = {
260 ACCESS(MMAP_INTERLEAVED),
261 ACCESS(MMAP_NONINTERLEAVED),
262 ACCESS(MMAP_COMPLEX),
263 ACCESS(RW_INTERLEAVED),
264 ACCESS(RW_NONINTERLEAVED),
265};
266
1da177e4
LT
267static char *snd_pcm_subformat_names[] = {
268 SUBFORMAT(STD),
269};
270
271static char *snd_pcm_tstamp_mode_names[] = {
272 TSTAMP(NONE),
8c121586 273 TSTAMP(ENABLE),
1da177e4
LT
274};
275
877211f5 276static const char *snd_pcm_stream_name(int stream)
1da177e4 277{
1da177e4
LT
278 return snd_pcm_stream_names[stream];
279}
280
281static const char *snd_pcm_access_name(snd_pcm_access_t access)
282{
fea952e5 283 return snd_pcm_access_names[(__force int)access];
1da177e4
LT
284}
285
1da177e4
LT
286static const char *snd_pcm_subformat_name(snd_pcm_subformat_t subformat)
287{
fea952e5 288 return snd_pcm_subformat_names[(__force int)subformat];
1da177e4
LT
289}
290
877211f5 291static const char *snd_pcm_tstamp_mode_name(int mode)
1da177e4 292{
1da177e4
LT
293 return snd_pcm_tstamp_mode_names[mode];
294}
295
296static const char *snd_pcm_state_name(snd_pcm_state_t state)
297{
fea952e5 298 return snd_pcm_state_names[(__force int)state];
1da177e4
LT
299}
300
8eeaa2f9 301#if IS_ENABLED(CONFIG_SND_PCM_OSS)
1da177e4 302#include <linux/soundcard.h>
1a60d4c5 303
1da177e4
LT
304static const char *snd_pcm_oss_format_name(int format)
305{
306 switch (format) {
307 case AFMT_MU_LAW:
308 return "MU_LAW";
309 case AFMT_A_LAW:
310 return "A_LAW";
311 case AFMT_IMA_ADPCM:
312 return "IMA_ADPCM";
313 case AFMT_U8:
314 return "U8";
315 case AFMT_S16_LE:
316 return "S16_LE";
317 case AFMT_S16_BE:
318 return "S16_BE";
319 case AFMT_S8:
320 return "S8";
321 case AFMT_U16_LE:
322 return "U16_LE";
323 case AFMT_U16_BE:
324 return "U16_BE";
325 case AFMT_MPEG:
326 return "MPEG";
327 default:
328 return "unknown";
329 }
330}
331#endif
332
877211f5
TI
333static void snd_pcm_proc_info_read(struct snd_pcm_substream *substream,
334 struct snd_info_buffer *buffer)
1da177e4 335{
877211f5 336 struct snd_pcm_info *info;
1da177e4
LT
337 int err;
338
7c22f1aa
TI
339 if (! substream)
340 return;
1da177e4
LT
341
342 info = kmalloc(sizeof(*info), GFP_KERNEL);
343 if (! info) {
09e56df8
TI
344 pcm_dbg(substream->pcm,
345 "snd_pcm_proc_info_read: cannot malloc\n");
1da177e4
LT
346 return;
347 }
348
349 err = snd_pcm_info(substream, info);
350 if (err < 0) {
351 snd_iprintf(buffer, "error %d\n", err);
352 kfree(info);
353 return;
354 }
355 snd_iprintf(buffer, "card: %d\n", info->card);
356 snd_iprintf(buffer, "device: %d\n", info->device);
357 snd_iprintf(buffer, "subdevice: %d\n", info->subdevice);
358 snd_iprintf(buffer, "stream: %s\n", snd_pcm_stream_name(info->stream));
359 snd_iprintf(buffer, "id: %s\n", info->id);
360 snd_iprintf(buffer, "name: %s\n", info->name);
361 snd_iprintf(buffer, "subname: %s\n", info->subname);
362 snd_iprintf(buffer, "class: %d\n", info->dev_class);
363 snd_iprintf(buffer, "subclass: %d\n", info->dev_subclass);
364 snd_iprintf(buffer, "subdevices_count: %d\n", info->subdevices_count);
365 snd_iprintf(buffer, "subdevices_avail: %d\n", info->subdevices_avail);
366 kfree(info);
367}
368
877211f5
TI
369static void snd_pcm_stream_proc_info_read(struct snd_info_entry *entry,
370 struct snd_info_buffer *buffer)
1da177e4 371{
877211f5
TI
372 snd_pcm_proc_info_read(((struct snd_pcm_str *)entry->private_data)->substream,
373 buffer);
1da177e4
LT
374}
375
877211f5
TI
376static void snd_pcm_substream_proc_info_read(struct snd_info_entry *entry,
377 struct snd_info_buffer *buffer)
1da177e4 378{
9fe856e4 379 snd_pcm_proc_info_read(entry->private_data, buffer);
1da177e4
LT
380}
381
877211f5
TI
382static void snd_pcm_substream_proc_hw_params_read(struct snd_info_entry *entry,
383 struct snd_info_buffer *buffer)
1da177e4 384{
877211f5 385 struct snd_pcm_substream *substream = entry->private_data;
901d46d5
TI
386 struct snd_pcm_runtime *runtime;
387
388 mutex_lock(&substream->pcm->open_mutex);
389 runtime = substream->runtime;
1da177e4
LT
390 if (!runtime) {
391 snd_iprintf(buffer, "closed\n");
901d46d5 392 goto unlock;
1da177e4 393 }
1da177e4
LT
394 if (runtime->status->state == SNDRV_PCM_STATE_OPEN) {
395 snd_iprintf(buffer, "no setup\n");
901d46d5 396 goto unlock;
1da177e4
LT
397 }
398 snd_iprintf(buffer, "access: %s\n", snd_pcm_access_name(runtime->access));
399 snd_iprintf(buffer, "format: %s\n", snd_pcm_format_name(runtime->format));
400 snd_iprintf(buffer, "subformat: %s\n", snd_pcm_subformat_name(runtime->subformat));
401 snd_iprintf(buffer, "channels: %u\n", runtime->channels);
402 snd_iprintf(buffer, "rate: %u (%u/%u)\n", runtime->rate, runtime->rate_num, runtime->rate_den);
403 snd_iprintf(buffer, "period_size: %lu\n", runtime->period_size);
404 snd_iprintf(buffer, "buffer_size: %lu\n", runtime->buffer_size);
8eeaa2f9 405#if IS_ENABLED(CONFIG_SND_PCM_OSS)
1da177e4
LT
406 if (substream->oss.oss) {
407 snd_iprintf(buffer, "OSS format: %s\n", snd_pcm_oss_format_name(runtime->oss.format));
408 snd_iprintf(buffer, "OSS channels: %u\n", runtime->oss.channels);
409 snd_iprintf(buffer, "OSS rate: %u\n", runtime->oss.rate);
410 snd_iprintf(buffer, "OSS period bytes: %lu\n", (unsigned long)runtime->oss.period_bytes);
411 snd_iprintf(buffer, "OSS periods: %u\n", runtime->oss.periods);
412 snd_iprintf(buffer, "OSS period frames: %lu\n", (unsigned long)runtime->oss.period_frames);
413 }
414#endif
901d46d5
TI
415 unlock:
416 mutex_unlock(&substream->pcm->open_mutex);
1da177e4
LT
417}
418
877211f5
TI
419static void snd_pcm_substream_proc_sw_params_read(struct snd_info_entry *entry,
420 struct snd_info_buffer *buffer)
1da177e4 421{
877211f5 422 struct snd_pcm_substream *substream = entry->private_data;
901d46d5
TI
423 struct snd_pcm_runtime *runtime;
424
425 mutex_lock(&substream->pcm->open_mutex);
426 runtime = substream->runtime;
1da177e4
LT
427 if (!runtime) {
428 snd_iprintf(buffer, "closed\n");
901d46d5 429 goto unlock;
1da177e4 430 }
1da177e4
LT
431 if (runtime->status->state == SNDRV_PCM_STATE_OPEN) {
432 snd_iprintf(buffer, "no setup\n");
901d46d5 433 goto unlock;
1da177e4
LT
434 }
435 snd_iprintf(buffer, "tstamp_mode: %s\n", snd_pcm_tstamp_mode_name(runtime->tstamp_mode));
436 snd_iprintf(buffer, "period_step: %u\n", runtime->period_step);
1da177e4 437 snd_iprintf(buffer, "avail_min: %lu\n", runtime->control->avail_min);
1da177e4
LT
438 snd_iprintf(buffer, "start_threshold: %lu\n", runtime->start_threshold);
439 snd_iprintf(buffer, "stop_threshold: %lu\n", runtime->stop_threshold);
440 snd_iprintf(buffer, "silence_threshold: %lu\n", runtime->silence_threshold);
441 snd_iprintf(buffer, "silence_size: %lu\n", runtime->silence_size);
442 snd_iprintf(buffer, "boundary: %lu\n", runtime->boundary);
901d46d5
TI
443 unlock:
444 mutex_unlock(&substream->pcm->open_mutex);
1da177e4
LT
445}
446
877211f5
TI
447static void snd_pcm_substream_proc_status_read(struct snd_info_entry *entry,
448 struct snd_info_buffer *buffer)
1da177e4 449{
877211f5 450 struct snd_pcm_substream *substream = entry->private_data;
901d46d5 451 struct snd_pcm_runtime *runtime;
877211f5 452 struct snd_pcm_status status;
1da177e4 453 int err;
901d46d5
TI
454
455 mutex_lock(&substream->pcm->open_mutex);
456 runtime = substream->runtime;
1da177e4
LT
457 if (!runtime) {
458 snd_iprintf(buffer, "closed\n");
901d46d5 459 goto unlock;
1da177e4
LT
460 }
461 memset(&status, 0, sizeof(status));
462 err = snd_pcm_status(substream, &status);
463 if (err < 0) {
464 snd_iprintf(buffer, "error %d\n", err);
901d46d5 465 goto unlock;
1da177e4
LT
466 }
467 snd_iprintf(buffer, "state: %s\n", snd_pcm_state_name(status.state));
e7373b70 468 snd_iprintf(buffer, "owner_pid : %d\n", pid_vnr(substream->pid));
1da177e4
LT
469 snd_iprintf(buffer, "trigger_time: %ld.%09ld\n",
470 status.trigger_tstamp.tv_sec, status.trigger_tstamp.tv_nsec);
471 snd_iprintf(buffer, "tstamp : %ld.%09ld\n",
472 status.tstamp.tv_sec, status.tstamp.tv_nsec);
473 snd_iprintf(buffer, "delay : %ld\n", status.delay);
474 snd_iprintf(buffer, "avail : %ld\n", status.avail);
475 snd_iprintf(buffer, "avail_max : %ld\n", status.avail_max);
476 snd_iprintf(buffer, "-----\n");
477 snd_iprintf(buffer, "hw_ptr : %ld\n", runtime->status->hw_ptr);
478 snd_iprintf(buffer, "appl_ptr : %ld\n", runtime->control->appl_ptr);
901d46d5
TI
479 unlock:
480 mutex_unlock(&substream->pcm->open_mutex);
1da177e4 481}
1da177e4 482
61fb63c0 483#ifdef CONFIG_SND_PCM_XRUN_DEBUG
877211f5
TI
484static void snd_pcm_xrun_debug_read(struct snd_info_entry *entry,
485 struct snd_info_buffer *buffer)
1da177e4 486{
877211f5 487 struct snd_pcm_str *pstr = entry->private_data;
1da177e4
LT
488 snd_iprintf(buffer, "%d\n", pstr->xrun_debug);
489}
490
877211f5
TI
491static void snd_pcm_xrun_debug_write(struct snd_info_entry *entry,
492 struct snd_info_buffer *buffer)
1da177e4 493{
877211f5 494 struct snd_pcm_str *pstr = entry->private_data;
1da177e4
LT
495 char line[64];
496 if (!snd_info_get_line(buffer, line, sizeof(line)))
497 pstr->xrun_debug = simple_strtoul(line, NULL, 10);
498}
499#endif
500
877211f5 501static int snd_pcm_stream_proc_init(struct snd_pcm_str *pstr)
1da177e4 502{
877211f5
TI
503 struct snd_pcm *pcm = pstr->pcm;
504 struct snd_info_entry *entry;
1da177e4
LT
505 char name[16];
506
507 sprintf(name, "pcm%i%c", pcm->device,
508 pstr->stream == SNDRV_PCM_STREAM_PLAYBACK ? 'p' : 'c');
509 if ((entry = snd_info_create_card_entry(pcm->card, name, pcm->card->proc_root)) == NULL)
510 return -ENOMEM;
511 entry->mode = S_IFDIR | S_IRUGO | S_IXUGO;
512 if (snd_info_register(entry) < 0) {
513 snd_info_free_entry(entry);
514 return -ENOMEM;
515 }
516 pstr->proc_root = entry;
517
518 if ((entry = snd_info_create_card_entry(pcm->card, "info", pstr->proc_root)) != NULL) {
bf850204 519 snd_info_set_text_ops(entry, pstr, snd_pcm_stream_proc_info_read);
1da177e4
LT
520 if (snd_info_register(entry) < 0) {
521 snd_info_free_entry(entry);
522 entry = NULL;
523 }
524 }
525 pstr->proc_info_entry = entry;
526
61fb63c0 527#ifdef CONFIG_SND_PCM_XRUN_DEBUG
877211f5
TI
528 if ((entry = snd_info_create_card_entry(pcm->card, "xrun_debug",
529 pstr->proc_root)) != NULL) {
1da177e4 530 entry->c.text.read = snd_pcm_xrun_debug_read;
1da177e4 531 entry->c.text.write = snd_pcm_xrun_debug_write;
bd7bf042 532 entry->mode |= S_IWUSR;
1da177e4
LT
533 entry->private_data = pstr;
534 if (snd_info_register(entry) < 0) {
535 snd_info_free_entry(entry);
536 entry = NULL;
537 }
538 }
539 pstr->proc_xrun_debug_entry = entry;
540#endif
541 return 0;
542}
543
877211f5 544static int snd_pcm_stream_proc_done(struct snd_pcm_str *pstr)
1da177e4 545{
61fb63c0 546#ifdef CONFIG_SND_PCM_XRUN_DEBUG
746d4a02
TI
547 snd_info_free_entry(pstr->proc_xrun_debug_entry);
548 pstr->proc_xrun_debug_entry = NULL;
1da177e4 549#endif
746d4a02
TI
550 snd_info_free_entry(pstr->proc_info_entry);
551 pstr->proc_info_entry = NULL;
552 snd_info_free_entry(pstr->proc_root);
553 pstr->proc_root = NULL;
1da177e4
LT
554 return 0;
555}
556
877211f5 557static int snd_pcm_substream_proc_init(struct snd_pcm_substream *substream)
1da177e4 558{
877211f5
TI
559 struct snd_info_entry *entry;
560 struct snd_card *card;
1da177e4
LT
561 char name[16];
562
563 card = substream->pcm->card;
564
565 sprintf(name, "sub%i", substream->number);
566 if ((entry = snd_info_create_card_entry(card, name, substream->pstr->proc_root)) == NULL)
567 return -ENOMEM;
568 entry->mode = S_IFDIR | S_IRUGO | S_IXUGO;
569 if (snd_info_register(entry) < 0) {
570 snd_info_free_entry(entry);
571 return -ENOMEM;
572 }
573 substream->proc_root = entry;
574
575 if ((entry = snd_info_create_card_entry(card, "info", substream->proc_root)) != NULL) {
bf850204
TI
576 snd_info_set_text_ops(entry, substream,
577 snd_pcm_substream_proc_info_read);
1da177e4
LT
578 if (snd_info_register(entry) < 0) {
579 snd_info_free_entry(entry);
580 entry = NULL;
581 }
582 }
583 substream->proc_info_entry = entry;
584
585 if ((entry = snd_info_create_card_entry(card, "hw_params", substream->proc_root)) != NULL) {
bf850204
TI
586 snd_info_set_text_ops(entry, substream,
587 snd_pcm_substream_proc_hw_params_read);
1da177e4
LT
588 if (snd_info_register(entry) < 0) {
589 snd_info_free_entry(entry);
590 entry = NULL;
591 }
592 }
593 substream->proc_hw_params_entry = entry;
594
595 if ((entry = snd_info_create_card_entry(card, "sw_params", substream->proc_root)) != NULL) {
bf850204
TI
596 snd_info_set_text_ops(entry, substream,
597 snd_pcm_substream_proc_sw_params_read);
1da177e4
LT
598 if (snd_info_register(entry) < 0) {
599 snd_info_free_entry(entry);
600 entry = NULL;
601 }
602 }
603 substream->proc_sw_params_entry = entry;
604
605 if ((entry = snd_info_create_card_entry(card, "status", substream->proc_root)) != NULL) {
bf850204
TI
606 snd_info_set_text_ops(entry, substream,
607 snd_pcm_substream_proc_status_read);
1da177e4
LT
608 if (snd_info_register(entry) < 0) {
609 snd_info_free_entry(entry);
610 entry = NULL;
611 }
612 }
613 substream->proc_status_entry = entry;
614
615 return 0;
616}
746d4a02 617
877211f5 618static int snd_pcm_substream_proc_done(struct snd_pcm_substream *substream)
1da177e4 619{
746d4a02
TI
620 snd_info_free_entry(substream->proc_info_entry);
621 substream->proc_info_entry = NULL;
622 snd_info_free_entry(substream->proc_hw_params_entry);
623 substream->proc_hw_params_entry = NULL;
624 snd_info_free_entry(substream->proc_sw_params_entry);
625 substream->proc_sw_params_entry = NULL;
626 snd_info_free_entry(substream->proc_status_entry);
627 substream->proc_status_entry = NULL;
628 snd_info_free_entry(substream->proc_root);
629 substream->proc_root = NULL;
1da177e4
LT
630 return 0;
631}
b7d90a35 632#else /* !CONFIG_SND_VERBOSE_PROCFS */
e28563cc
TI
633static inline int snd_pcm_stream_proc_init(struct snd_pcm_str *pstr) { return 0; }
634static inline int snd_pcm_stream_proc_done(struct snd_pcm_str *pstr) { return 0; }
635static inline int snd_pcm_substream_proc_init(struct snd_pcm_substream *substream) { return 0; }
636static inline int snd_pcm_substream_proc_done(struct snd_pcm_substream *substream) { return 0; }
b7d90a35 637#endif /* CONFIG_SND_VERBOSE_PROCFS */
1da177e4
LT
638
639/**
640 * snd_pcm_new_stream - create a new PCM stream
641 * @pcm: the pcm instance
642 * @stream: the stream direction, SNDRV_PCM_STREAM_XXX
643 * @substream_count: the number of substreams
644 *
645 * Creates a new stream for the pcm.
646 * The corresponding stream on the pcm must have been empty before
647 * calling this, i.e. zero must be given to the argument of
648 * snd_pcm_new().
649 *
eb7c06e8 650 * Return: Zero if successful, or a negative error code on failure.
1da177e4 651 */
877211f5 652int snd_pcm_new_stream(struct snd_pcm *pcm, int stream, int substream_count)
1da177e4
LT
653{
654 int idx, err;
877211f5
TI
655 struct snd_pcm_str *pstr = &pcm->streams[stream];
656 struct snd_pcm_substream *substream, *prev;
1da177e4 657
8eeaa2f9 658#if IS_ENABLED(CONFIG_SND_PCM_OSS)
1a60d4c5 659 mutex_init(&pstr->oss.setup_mutex);
1da177e4
LT
660#endif
661 pstr->stream = stream;
662 pstr->pcm = pcm;
663 pstr->substream_count = substream_count;
945e5038 664 if (substream_count > 0 && !pcm->internal) {
1da177e4 665 err = snd_pcm_stream_proc_init(pstr);
73e77ba0 666 if (err < 0) {
09e56df8 667 pcm_err(pcm, "Error in snd_pcm_stream_proc_init\n");
1da177e4 668 return err;
73e77ba0 669 }
1da177e4
LT
670 }
671 prev = NULL;
672 for (idx = 0, prev = NULL; idx < substream_count; idx++) {
ca2c0966 673 substream = kzalloc(sizeof(*substream), GFP_KERNEL);
73e77ba0 674 if (substream == NULL) {
09e56df8 675 pcm_err(pcm, "Cannot allocate PCM substream\n");
1da177e4 676 return -ENOMEM;
73e77ba0 677 }
1da177e4
LT
678 substream->pcm = pcm;
679 substream->pstr = pstr;
680 substream->number = idx;
681 substream->stream = stream;
682 sprintf(substream->name, "subdevice #%i", idx);
683 substream->buffer_bytes_max = UINT_MAX;
684 if (prev == NULL)
685 pstr->substream = substream;
686 else
687 prev->next = substream;
945e5038
LG
688
689 if (!pcm->internal) {
690 err = snd_pcm_substream_proc_init(substream);
691 if (err < 0) {
09e56df8
TI
692 pcm_err(pcm,
693 "Error in snd_pcm_stream_proc_init\n");
945e5038
LG
694 if (prev == NULL)
695 pstr->substream = NULL;
696 else
697 prev->next = NULL;
698 kfree(substream);
699 return err;
700 }
1da177e4
LT
701 }
702 substream->group = &substream->self_group;
703 spin_lock_init(&substream->self_group.lock);
257f8cce 704 mutex_init(&substream->self_group.mutex);
1da177e4
LT
705 INIT_LIST_HEAD(&substream->self_group.substreams);
706 list_add_tail(&substream->link_list, &substream->self_group.substreams);
9c323fcb 707 atomic_set(&substream->mmap_count, 0);
1da177e4
LT
708 prev = substream;
709 }
710 return 0;
711}
712
e88e8ae6
TI
713EXPORT_SYMBOL(snd_pcm_new_stream);
714
945e5038
LG
715static int _snd_pcm_new(struct snd_card *card, const char *id, int device,
716 int playback_count, int capture_count, bool internal,
717 struct snd_pcm **rpcm)
1da177e4 718{
877211f5 719 struct snd_pcm *pcm;
1da177e4 720 int err;
877211f5 721 static struct snd_device_ops ops = {
1da177e4
LT
722 .dev_free = snd_pcm_dev_free,
723 .dev_register = snd_pcm_dev_register,
724 .dev_disconnect = snd_pcm_dev_disconnect,
1da177e4
LT
725 };
726
7eaa943c
TI
727 if (snd_BUG_ON(!card))
728 return -ENXIO;
729 if (rpcm)
730 *rpcm = NULL;
ca2c0966 731 pcm = kzalloc(sizeof(*pcm), GFP_KERNEL);
73e77ba0 732 if (pcm == NULL) {
09e56df8 733 dev_err(card->dev, "Cannot allocate PCM\n");
1da177e4 734 return -ENOMEM;
73e77ba0 735 }
1da177e4
LT
736 pcm->card = card;
737 pcm->device = device;
945e5038 738 pcm->internal = internal;
73e77ba0 739 if (id)
1da177e4 740 strlcpy(pcm->id, id, sizeof(pcm->id));
1da177e4
LT
741 if ((err = snd_pcm_new_stream(pcm, SNDRV_PCM_STREAM_PLAYBACK, playback_count)) < 0) {
742 snd_pcm_free(pcm);
743 return err;
744 }
745 if ((err = snd_pcm_new_stream(pcm, SNDRV_PCM_STREAM_CAPTURE, capture_count)) < 0) {
746 snd_pcm_free(pcm);
747 return err;
748 }
1a60d4c5 749 mutex_init(&pcm->open_mutex);
1da177e4
LT
750 init_waitqueue_head(&pcm->open_wait);
751 if ((err = snd_device_new(card, SNDRV_DEV_PCM, pcm, &ops)) < 0) {
752 snd_pcm_free(pcm);
753 return err;
754 }
7eaa943c
TI
755 if (rpcm)
756 *rpcm = pcm;
1da177e4
LT
757 return 0;
758}
759
945e5038
LG
760/**
761 * snd_pcm_new - create a new PCM instance
762 * @card: the card instance
763 * @id: the id string
764 * @device: the device index (zero based)
765 * @playback_count: the number of substreams for playback
766 * @capture_count: the number of substreams for capture
767 * @rpcm: the pointer to store the new pcm instance
768 *
769 * Creates a new PCM instance.
770 *
771 * The pcm operators have to be set afterwards to the new instance
772 * via snd_pcm_set_ops().
773 *
eb7c06e8 774 * Return: Zero if successful, or a negative error code on failure.
945e5038
LG
775 */
776int snd_pcm_new(struct snd_card *card, const char *id, int device,
777 int playback_count, int capture_count, struct snd_pcm **rpcm)
778{
779 return _snd_pcm_new(card, id, device, playback_count, capture_count,
780 false, rpcm);
781}
e88e8ae6
TI
782EXPORT_SYMBOL(snd_pcm_new);
783
945e5038
LG
784/**
785 * snd_pcm_new_internal - create a new internal PCM instance
786 * @card: the card instance
787 * @id: the id string
788 * @device: the device index (zero based - shared with normal PCMs)
789 * @playback_count: the number of substreams for playback
790 * @capture_count: the number of substreams for capture
791 * @rpcm: the pointer to store the new pcm instance
792 *
793 * Creates a new internal PCM instance with no userspace device or procfs
794 * entries. This is used by ASoC Back End PCMs in order to create a PCM that
795 * will only be used internally by kernel drivers. i.e. it cannot be opened
796 * by userspace. It provides existing ASoC components drivers with a substream
797 * and access to any private data.
798 *
799 * The pcm operators have to be set afterwards to the new instance
800 * via snd_pcm_set_ops().
801 *
eb7c06e8 802 * Return: Zero if successful, or a negative error code on failure.
945e5038
LG
803 */
804int snd_pcm_new_internal(struct snd_card *card, const char *id, int device,
805 int playback_count, int capture_count,
806 struct snd_pcm **rpcm)
807{
808 return _snd_pcm_new(card, id, device, playback_count, capture_count,
809 true, rpcm);
810}
811EXPORT_SYMBOL(snd_pcm_new_internal);
812
877211f5 813static void snd_pcm_free_stream(struct snd_pcm_str * pstr)
1da177e4 814{
877211f5 815 struct snd_pcm_substream *substream, *substream_next;
8eeaa2f9 816#if IS_ENABLED(CONFIG_SND_PCM_OSS)
877211f5 817 struct snd_pcm_oss_setup *setup, *setupn;
1da177e4
LT
818#endif
819 substream = pstr->substream;
820 while (substream) {
821 substream_next = substream->next;
c461482c 822 snd_pcm_timer_done(substream);
1da177e4
LT
823 snd_pcm_substream_proc_done(substream);
824 kfree(substream);
825 substream = substream_next;
826 }
827 snd_pcm_stream_proc_done(pstr);
8eeaa2f9 828#if IS_ENABLED(CONFIG_SND_PCM_OSS)
1da177e4
LT
829 for (setup = pstr->oss.setup_list; setup; setup = setupn) {
830 setupn = setup->next;
831 kfree(setup->task_name);
832 kfree(setup);
833 }
834#endif
835}
836
877211f5 837static int snd_pcm_free(struct snd_pcm *pcm)
1da177e4 838{
c461482c
TI
839 struct snd_pcm_notify *notify;
840
7eaa943c
TI
841 if (!pcm)
842 return 0;
c461482c
TI
843 list_for_each_entry(notify, &snd_pcm_notify_list, list) {
844 notify->n_unregister(pcm);
845 }
1da177e4
LT
846 if (pcm->private_free)
847 pcm->private_free(pcm);
848 snd_pcm_lib_preallocate_free_for_all(pcm);
849 snd_pcm_free_stream(&pcm->streams[SNDRV_PCM_STREAM_PLAYBACK]);
850 snd_pcm_free_stream(&pcm->streams[SNDRV_PCM_STREAM_CAPTURE]);
851 kfree(pcm);
852 return 0;
853}
854
877211f5 855static int snd_pcm_dev_free(struct snd_device *device)
1da177e4 856{
877211f5 857 struct snd_pcm *pcm = device->device_data;
1da177e4
LT
858 return snd_pcm_free(pcm);
859}
860
3bf75f9b
TI
861int snd_pcm_attach_substream(struct snd_pcm *pcm, int stream,
862 struct file *file,
863 struct snd_pcm_substream **rsubstream)
1da177e4 864{
877211f5
TI
865 struct snd_pcm_str * pstr;
866 struct snd_pcm_substream *substream;
867 struct snd_pcm_runtime *runtime;
868 struct snd_ctl_file *kctl;
869 struct snd_card *card;
1da177e4
LT
870 int prefer_subdevice = -1;
871 size_t size;
872
7eaa943c
TI
873 if (snd_BUG_ON(!pcm || !rsubstream))
874 return -ENXIO;
1da177e4 875 *rsubstream = NULL;
1da177e4 876 pstr = &pcm->streams[stream];
3bf75f9b 877 if (pstr->substream == NULL || pstr->substream_count == 0)
1da177e4
LT
878 return -ENODEV;
879
880 card = pcm->card;
399ccdc1 881 read_lock(&card->ctl_files_rwlock);
9244b2c3 882 list_for_each_entry(kctl, &card->ctl_files, list) {
25d27ede 883 if (kctl->pid == task_pid(current)) {
1da177e4 884 prefer_subdevice = kctl->prefer_pcm_subdevice;
2529bba7
TI
885 if (prefer_subdevice != -1)
886 break;
1da177e4
LT
887 }
888 }
399ccdc1 889 read_unlock(&card->ctl_files_rwlock);
1da177e4 890
1da177e4
LT
891 switch (stream) {
892 case SNDRV_PCM_STREAM_PLAYBACK:
893 if (pcm->info_flags & SNDRV_PCM_INFO_HALF_DUPLEX) {
894 for (substream = pcm->streams[SNDRV_PCM_STREAM_CAPTURE].substream; substream; substream = substream->next) {
895 if (SUBSTREAM_BUSY(substream))
896 return -EAGAIN;
897 }
898 }
899 break;
900 case SNDRV_PCM_STREAM_CAPTURE:
901 if (pcm->info_flags & SNDRV_PCM_INFO_HALF_DUPLEX) {
902 for (substream = pcm->streams[SNDRV_PCM_STREAM_PLAYBACK].substream; substream; substream = substream->next) {
903 if (SUBSTREAM_BUSY(substream))
904 return -EAGAIN;
905 }
906 }
907 break;
908 default:
909 return -EINVAL;
910 }
911
0df63e44
TI
912 if (file->f_flags & O_APPEND) {
913 if (prefer_subdevice < 0) {
914 if (pstr->substream_count > 1)
915 return -EINVAL; /* must be unique */
916 substream = pstr->substream;
917 } else {
918 for (substream = pstr->substream; substream;
919 substream = substream->next)
920 if (substream->number == prefer_subdevice)
921 break;
922 }
923 if (! substream)
924 return -ENODEV;
925 if (! SUBSTREAM_BUSY(substream))
926 return -EBADFD;
927 substream->ref_count++;
928 *rsubstream = substream;
929 return 0;
930 }
931
1da177e4
LT
932 if (prefer_subdevice >= 0) {
933 for (substream = pstr->substream; substream; substream = substream->next)
934 if (!SUBSTREAM_BUSY(substream) && substream->number == prefer_subdevice)
935 goto __ok;
936 }
937 for (substream = pstr->substream; substream; substream = substream->next)
938 if (!SUBSTREAM_BUSY(substream))
939 break;
940 __ok:
941 if (substream == NULL)
942 return -EAGAIN;
943
ca2c0966 944 runtime = kzalloc(sizeof(*runtime), GFP_KERNEL);
1da177e4
LT
945 if (runtime == NULL)
946 return -ENOMEM;
947
877211f5 948 size = PAGE_ALIGN(sizeof(struct snd_pcm_mmap_status));
1da177e4
LT
949 runtime->status = snd_malloc_pages(size, GFP_KERNEL);
950 if (runtime->status == NULL) {
951 kfree(runtime);
952 return -ENOMEM;
953 }
954 memset((void*)runtime->status, 0, size);
955
877211f5 956 size = PAGE_ALIGN(sizeof(struct snd_pcm_mmap_control));
1da177e4
LT
957 runtime->control = snd_malloc_pages(size, GFP_KERNEL);
958 if (runtime->control == NULL) {
877211f5
TI
959 snd_free_pages((void*)runtime->status,
960 PAGE_ALIGN(sizeof(struct snd_pcm_mmap_status)));
1da177e4
LT
961 kfree(runtime);
962 return -ENOMEM;
963 }
964 memset((void*)runtime->control, 0, size);
965
966 init_waitqueue_head(&runtime->sleep);
c91a988d 967 init_waitqueue_head(&runtime->tsleep);
1da177e4
LT
968
969 runtime->status->state = SNDRV_PCM_STATE_OPEN;
970
971 substream->runtime = runtime;
972 substream->private_data = pcm->private_data;
0df63e44
TI
973 substream->ref_count = 1;
974 substream->f_flags = file->f_flags;
e7373b70 975 substream->pid = get_pid(task_pid(current));
1da177e4
LT
976 pstr->substream_opened++;
977 *rsubstream = substream;
978 return 0;
979}
980
3bf75f9b 981void snd_pcm_detach_substream(struct snd_pcm_substream *substream)
1da177e4 982{
877211f5 983 struct snd_pcm_runtime *runtime;
0df63e44 984
7eaa943c
TI
985 if (PCM_RUNTIME_CHECK(substream))
986 return;
1da177e4 987 runtime = substream->runtime;
1da177e4
LT
988 if (runtime->private_free != NULL)
989 runtime->private_free(runtime);
877211f5
TI
990 snd_free_pages((void*)runtime->status,
991 PAGE_ALIGN(sizeof(struct snd_pcm_mmap_status)));
992 snd_free_pages((void*)runtime->control,
993 PAGE_ALIGN(sizeof(struct snd_pcm_mmap_control)));
1da177e4 994 kfree(runtime->hw_constraints.rules);
4d96eb25 995#ifdef CONFIG_SND_PCM_XRUN_DEBUG
51d503de 996 kfree(runtime->hwptr_log);
4d96eb25 997#endif
1da177e4
LT
998 kfree(runtime);
999 substream->runtime = NULL;
e7373b70
CL
1000 put_pid(substream->pid);
1001 substream->pid = NULL;
1da177e4
LT
1002 substream->pstr->substream_opened--;
1003}
1004
d80f19fa
GKH
1005static ssize_t show_pcm_class(struct device *dev,
1006 struct device_attribute *attr, char *buf)
9d19f48c
TI
1007{
1008 struct snd_pcm *pcm;
1009 const char *str;
1010 static const char *strs[SNDRV_PCM_CLASS_LAST + 1] = {
1011 [SNDRV_PCM_CLASS_GENERIC] = "generic",
1012 [SNDRV_PCM_CLASS_MULTI] = "multi",
1013 [SNDRV_PCM_CLASS_MODEM] = "modem",
1014 [SNDRV_PCM_CLASS_DIGITIZER] = "digitizer",
1015 };
1016
d80f19fa 1017 if (! (pcm = dev_get_drvdata(dev)) ||
9d19f48c
TI
1018 pcm->dev_class > SNDRV_PCM_CLASS_LAST)
1019 str = "none";
1020 else
1021 str = strs[pcm->dev_class];
1022 return snprintf(buf, PAGE_SIZE, "%s\n", str);
1023}
1024
caa751ba
TI
1025static DEVICE_ATTR(pcm_class, S_IRUGO, show_pcm_class, NULL);
1026static struct attribute *pcm_dev_attrs[] = {
1027 &dev_attr_pcm_class.attr,
1028 NULL
1029};
1030
1031static struct attribute_group pcm_dev_attr_group = {
1032 .attrs = pcm_dev_attrs,
1033};
1034
1035static const struct attribute_group *pcm_dev_attr_groups[] = {
1036 &pcm_dev_attr_group,
1037 NULL
1038};
9d19f48c 1039
877211f5 1040static int snd_pcm_dev_register(struct snd_device *device)
1da177e4 1041{
f87135f5 1042 int cidx, err;
877211f5 1043 struct snd_pcm_substream *substream;
9244b2c3 1044 struct snd_pcm_notify *notify;
1da177e4 1045 char str[16];
4b3be6af 1046 struct snd_pcm *pcm;
c78085fc 1047 struct device *dev;
1da177e4 1048
4b3be6af 1049 if (snd_BUG_ON(!device || !device->device_data))
7eaa943c 1050 return -ENXIO;
4b3be6af 1051 pcm = device->device_data;
1a60d4c5 1052 mutex_lock(&register_mutex);
f90c06a2
PM
1053 err = snd_pcm_add(pcm);
1054 if (err) {
1a60d4c5 1055 mutex_unlock(&register_mutex);
f90c06a2 1056 return err;
1da177e4 1057 }
1da177e4
LT
1058 for (cidx = 0; cidx < 2; cidx++) {
1059 int devtype = -1;
945e5038 1060 if (pcm->streams[cidx].substream == NULL || pcm->internal)
1da177e4
LT
1061 continue;
1062 switch (cidx) {
1063 case SNDRV_PCM_STREAM_PLAYBACK:
1064 sprintf(str, "pcmC%iD%ip", pcm->card->number, pcm->device);
1da177e4
LT
1065 devtype = SNDRV_DEVICE_TYPE_PCM_PLAYBACK;
1066 break;
1067 case SNDRV_PCM_STREAM_CAPTURE:
1068 sprintf(str, "pcmC%iD%ic", pcm->card->number, pcm->device);
1da177e4
LT
1069 devtype = SNDRV_DEVICE_TYPE_PCM_CAPTURE;
1070 break;
1071 }
c78085fc
JB
1072 /* device pointer to use, pcm->dev takes precedence if
1073 * it is assigned, otherwise fall back to card's device
1074 * if possible */
1075 dev = pcm->dev;
1076 if (!dev)
c2902c8a 1077 dev = snd_card_get_device_link(pcm->card);
c78085fc
JB
1078 /* register pcm */
1079 err = snd_register_device_for_dev(devtype, pcm->card,
1080 pcm->device,
1081 &snd_pcm_f_ops[cidx],
1082 pcm, str, dev);
1083 if (err < 0) {
f87135f5 1084 list_del(&pcm->list);
1a60d4c5 1085 mutex_unlock(&register_mutex);
1da177e4
LT
1086 return err;
1087 }
caa751ba
TI
1088
1089 dev = snd_get_device(devtype, pcm->card, pcm->device);
1090 if (dev) {
1091 err = sysfs_create_groups(&dev->kobj,
1092 pcm_dev_attr_groups);
1093 if (err < 0)
1094 dev_warn(dev,
1095 "pcm %d:%d: cannot create sysfs groups\n",
1096 pcm->card->number, pcm->device);
1097 put_device(dev);
1098 }
1099
1da177e4
LT
1100 for (substream = pcm->streams[cidx].substream; substream; substream = substream->next)
1101 snd_pcm_timer_init(substream);
1102 }
9244b2c3
JB
1103
1104 list_for_each_entry(notify, &snd_pcm_notify_list, list)
1da177e4 1105 notify->n_register(pcm);
9244b2c3 1106
1a60d4c5 1107 mutex_unlock(&register_mutex);
1da177e4
LT
1108 return 0;
1109}
1110
877211f5 1111static int snd_pcm_dev_disconnect(struct snd_device *device)
1da177e4 1112{
877211f5 1113 struct snd_pcm *pcm = device->device_data;
c461482c 1114 struct snd_pcm_notify *notify;
877211f5 1115 struct snd_pcm_substream *substream;
c461482c 1116 int cidx, devtype;
1da177e4 1117
1a60d4c5 1118 mutex_lock(&register_mutex);
c461482c
TI
1119 if (list_empty(&pcm->list))
1120 goto unlock;
1121
9b0573c0 1122 mutex_lock(&pcm->open_mutex);
0914f796 1123 wake_up(&pcm->open_wait);
f87135f5 1124 list_del_init(&pcm->list);
1da177e4 1125 for (cidx = 0; cidx < 2; cidx++)
9b0573c0
TI
1126 for (substream = pcm->streams[cidx].substream; substream; substream = substream->next) {
1127 snd_pcm_stream_lock_irq(substream);
0914f796 1128 if (substream->runtime) {
1da177e4 1129 substream->runtime->status->state = SNDRV_PCM_STATE_DISCONNECTED;
0914f796
TI
1130 wake_up(&substream->runtime->sleep);
1131 wake_up(&substream->runtime->tsleep);
1132 }
9b0573c0
TI
1133 snd_pcm_stream_unlock_irq(substream);
1134 }
c461482c 1135 list_for_each_entry(notify, &snd_pcm_notify_list, list) {
1da177e4
LT
1136 notify->n_disconnect(pcm);
1137 }
1da177e4
LT
1138 for (cidx = 0; cidx < 2; cidx++) {
1139 devtype = -1;
1140 switch (cidx) {
1141 case SNDRV_PCM_STREAM_PLAYBACK:
1142 devtype = SNDRV_DEVICE_TYPE_PCM_PLAYBACK;
1143 break;
1144 case SNDRV_PCM_STREAM_CAPTURE:
1145 devtype = SNDRV_DEVICE_TYPE_PCM_CAPTURE;
1146 break;
1147 }
1148 snd_unregister_device(devtype, pcm->card, pcm->device);
2d3391ec
TI
1149 if (pcm->streams[cidx].chmap_kctl) {
1150 snd_ctl_remove(pcm->card, pcm->streams[cidx].chmap_kctl);
1151 pcm->streams[cidx].chmap_kctl = NULL;
1152 }
1da177e4 1153 }
9b0573c0 1154 mutex_unlock(&pcm->open_mutex);
c461482c 1155 unlock:
1a60d4c5 1156 mutex_unlock(&register_mutex);
c461482c 1157 return 0;
1da177e4
LT
1158}
1159
877211f5 1160int snd_pcm_notify(struct snd_pcm_notify *notify, int nfree)
1da177e4 1161{
9244b2c3 1162 struct snd_pcm *pcm;
1da177e4 1163
7eaa943c
TI
1164 if (snd_BUG_ON(!notify ||
1165 !notify->n_register ||
1166 !notify->n_unregister ||
1167 !notify->n_disconnect))
1168 return -EINVAL;
1a60d4c5 1169 mutex_lock(&register_mutex);
1da177e4
LT
1170 if (nfree) {
1171 list_del(&notify->list);
9244b2c3
JB
1172 list_for_each_entry(pcm, &snd_pcm_devices, list)
1173 notify->n_unregister(pcm);
1da177e4
LT
1174 } else {
1175 list_add_tail(&notify->list, &snd_pcm_notify_list);
9244b2c3
JB
1176 list_for_each_entry(pcm, &snd_pcm_devices, list)
1177 notify->n_register(pcm);
1da177e4 1178 }
1a60d4c5 1179 mutex_unlock(&register_mutex);
1da177e4
LT
1180 return 0;
1181}
1182
e88e8ae6
TI
1183EXPORT_SYMBOL(snd_pcm_notify);
1184
e28563cc 1185#ifdef CONFIG_PROC_FS
1da177e4
LT
1186/*
1187 * Info interface
1188 */
1189
877211f5
TI
1190static void snd_pcm_proc_read(struct snd_info_entry *entry,
1191 struct snd_info_buffer *buffer)
1da177e4 1192{
877211f5 1193 struct snd_pcm *pcm;
1da177e4 1194
1a60d4c5 1195 mutex_lock(&register_mutex);
9244b2c3 1196 list_for_each_entry(pcm, &snd_pcm_devices, list) {
f87135f5
CL
1197 snd_iprintf(buffer, "%02i-%02i: %s : %s",
1198 pcm->card->number, pcm->device, pcm->id, pcm->name);
1da177e4 1199 if (pcm->streams[SNDRV_PCM_STREAM_PLAYBACK].substream)
877211f5
TI
1200 snd_iprintf(buffer, " : playback %i",
1201 pcm->streams[SNDRV_PCM_STREAM_PLAYBACK].substream_count);
1da177e4 1202 if (pcm->streams[SNDRV_PCM_STREAM_CAPTURE].substream)
877211f5
TI
1203 snd_iprintf(buffer, " : capture %i",
1204 pcm->streams[SNDRV_PCM_STREAM_CAPTURE].substream_count);
1da177e4
LT
1205 snd_iprintf(buffer, "\n");
1206 }
1a60d4c5 1207 mutex_unlock(&register_mutex);
1da177e4
LT
1208}
1209
6581f4e7 1210static struct snd_info_entry *snd_pcm_proc_entry;
1da177e4 1211
e28563cc 1212static void snd_pcm_proc_init(void)
1da177e4 1213{
877211f5 1214 struct snd_info_entry *entry;
1da177e4 1215
1da177e4 1216 if ((entry = snd_info_create_module_entry(THIS_MODULE, "pcm", NULL)) != NULL) {
bf850204 1217 snd_info_set_text_ops(entry, NULL, snd_pcm_proc_read);
1da177e4
LT
1218 if (snd_info_register(entry) < 0) {
1219 snd_info_free_entry(entry);
1220 entry = NULL;
1221 }
1222 }
1223 snd_pcm_proc_entry = entry;
e28563cc
TI
1224}
1225
1226static void snd_pcm_proc_done(void)
1227{
746d4a02 1228 snd_info_free_entry(snd_pcm_proc_entry);
e28563cc
TI
1229}
1230
1231#else /* !CONFIG_PROC_FS */
1232#define snd_pcm_proc_init()
1233#define snd_pcm_proc_done()
1234#endif /* CONFIG_PROC_FS */
1235
1236
1237/*
1238 * ENTRY functions
1239 */
1240
1241static int __init alsa_pcm_init(void)
1242{
1243 snd_ctl_register_ioctl(snd_pcm_control_ioctl);
1244 snd_ctl_register_ioctl_compat(snd_pcm_control_ioctl);
1245 snd_pcm_proc_init();
1da177e4
LT
1246 return 0;
1247}
1248
1249static void __exit alsa_pcm_exit(void)
1250{
1251 snd_ctl_unregister_ioctl(snd_pcm_control_ioctl);
1252 snd_ctl_unregister_ioctl_compat(snd_pcm_control_ioctl);
e28563cc 1253 snd_pcm_proc_done();
1da177e4
LT
1254}
1255
1256module_init(alsa_pcm_init)
1257module_exit(alsa_pcm_exit)