1 /*-
2 * SPDX-License-Identifier: BSD-2-Clause-FreeBSD
3 *
4 * Copyright (c) 2005-2009 Ariff Abdullah <[email protected]>
5 * Portions Copyright (c) Ryan Beasley <[email protected]> - GSoC 2006
6 * Copyright (c) 1999 Cameron Grant <[email protected]>
7 * All rights reserved.
8 *
9 * Redistribution and use in source and binary forms, with or without
10 * modification, are permitted provided that the following conditions
11 * are met:
12 * 1. Redistributions of source code must retain the above copyright
13 * notice, this list of conditions and the following disclaimer.
14 * 2. Redistributions in binary form must reproduce the above copyright
15 * notice, this list of conditions and the following disclaimer in the
16 * documentation and/or other materials provided with the distribution.
17 *
18 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
19 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
20 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
21 * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
22 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
23 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
24 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
25 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
26 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
27 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
28 * SUCH DAMAGE.
29 */
30
31 #ifdef HAVE_KERNEL_OPTION_HEADERS
32 #include "opt_snd.h"
33 #endif
34
35 #include <dev/sound/pcm/sound.h>
36 #include <sys/ctype.h>
37 #include <sys/lock.h>
38 #include <sys/rwlock.h>
39 #include <sys/sysent.h>
40
41 #include <vm/vm.h>
42 #include <vm/vm_object.h>
43 #include <vm/vm_page.h>
44 #include <vm/vm_pager.h>
45
46 SND_DECLARE_FILE("$FreeBSD$");
47
48 static int dsp_mmap_allow_prot_exec = 0;
49 SYSCTL_INT(_hw_snd, OID_AUTO, compat_linux_mmap, CTLFLAG_RWTUN,
50 &dsp_mmap_allow_prot_exec, 0,
51 "linux mmap compatibility (-1=force disable 0=auto 1=force enable)");
52
53 static int dsp_basename_clone = 1;
54 SYSCTL_INT(_hw_snd, OID_AUTO, basename_clone, CTLFLAG_RWTUN,
55 &dsp_basename_clone, 0,
56 "DSP basename cloning (0: Disable; 1: Enabled)");
57
58 struct dsp_cdevinfo {
59 struct pcm_channel *rdch, *wrch;
60 struct pcm_channel *volch;
61 int busy, simplex;
62 TAILQ_ENTRY(dsp_cdevinfo) link;
63 };
64
65 #define PCM_RDCH(x) (((struct dsp_cdevinfo *)(x)->si_drv1)->rdch)
66 #define PCM_WRCH(x) (((struct dsp_cdevinfo *)(x)->si_drv1)->wrch)
67 #define PCM_VOLCH(x) (((struct dsp_cdevinfo *)(x)->si_drv1)->volch)
68 #define PCM_SIMPLEX(x) (((struct dsp_cdevinfo *)(x)->si_drv1)->simplex)
69
70 #define DSP_CDEVINFO_CACHESIZE 8
71
72 #define DSP_REGISTERED(x, y) (PCM_REGISTERED(x) && \
73 (y) != NULL && (y)->si_drv1 != NULL)
74
75 #define OLDPCM_IOCTL
76
77 static d_open_t dsp_open;
78 static d_close_t dsp_close;
79 static d_read_t dsp_read;
80 static d_write_t dsp_write;
81 static d_ioctl_t dsp_ioctl;
82 static d_poll_t dsp_poll;
83 static d_mmap_t dsp_mmap;
84 static d_mmap_single_t dsp_mmap_single;
85
86 struct cdevsw dsp_cdevsw = {
87 .d_version = D_VERSION,
88 .d_open = dsp_open,
89 .d_close = dsp_close,
90 .d_read = dsp_read,
91 .d_write = dsp_write,
92 .d_ioctl = dsp_ioctl,
93 .d_poll = dsp_poll,
94 .d_mmap = dsp_mmap,
95 .d_mmap_single = dsp_mmap_single,
96 .d_name = "dsp",
97 };
98
99 static eventhandler_tag dsp_ehtag = NULL;
100 static int dsp_umax = -1;
101 static int dsp_cmax = -1;
102
103 static int dsp_oss_syncgroup(struct pcm_channel *wrch, struct pcm_channel *rdch, oss_syncgroup *group);
104 static int dsp_oss_syncstart(int sg_id);
105 static int dsp_oss_policy(struct pcm_channel *wrch, struct pcm_channel *rdch, int policy);
106 static int dsp_oss_cookedmode(struct pcm_channel *wrch, struct pcm_channel *rdch, int enabled);
107 static int dsp_oss_getchnorder(struct pcm_channel *wrch, struct pcm_channel *rdch, unsigned long long *map);
108 static int dsp_oss_setchnorder(struct pcm_channel *wrch, struct pcm_channel *rdch, unsigned long long *map);
109 static int dsp_oss_getchannelmask(struct pcm_channel *wrch, struct pcm_channel *rdch, int *mask);
110 #ifdef OSSV4_EXPERIMENT
111 static int dsp_oss_getlabel(struct pcm_channel *wrch, struct pcm_channel *rdch, oss_label_t *label);
112 static int dsp_oss_setlabel(struct pcm_channel *wrch, struct pcm_channel *rdch, oss_label_t *label);
113 static int dsp_oss_getsong(struct pcm_channel *wrch, struct pcm_channel *rdch, oss_longname_t *song);
114 static int dsp_oss_setsong(struct pcm_channel *wrch, struct pcm_channel *rdch, oss_longname_t *song);
115 static int dsp_oss_setname(struct pcm_channel *wrch, struct pcm_channel *rdch, oss_longname_t *name);
116 #endif
117
118 static struct snddev_info *
dsp_get_info(struct cdev * dev)119 dsp_get_info(struct cdev *dev)
120 {
121 return (devclass_get_softc(pcm_devclass, PCMUNIT(dev)));
122 }
123
124 static uint32_t
dsp_get_flags(struct cdev * dev)125 dsp_get_flags(struct cdev *dev)
126 {
127 device_t bdev;
128
129 bdev = devclass_get_device(pcm_devclass, PCMUNIT(dev));
130
131 return ((bdev != NULL) ? pcm_getflags(bdev) : 0xffffffff);
132 }
133
134 static void
dsp_set_flags(struct cdev * dev,uint32_t flags)135 dsp_set_flags(struct cdev *dev, uint32_t flags)
136 {
137 device_t bdev;
138
139 bdev = devclass_get_device(pcm_devclass, PCMUNIT(dev));
140
141 if (bdev != NULL)
142 pcm_setflags(bdev, flags);
143 }
144
145 /*
146 * return the channels associated with an open device instance.
147 * lock channels specified.
148 */
149 static int
getchns(struct cdev * dev,struct pcm_channel ** rdch,struct pcm_channel ** wrch,uint32_t prio)150 getchns(struct cdev *dev, struct pcm_channel **rdch, struct pcm_channel **wrch,
151 uint32_t prio)
152 {
153 struct snddev_info *d;
154 struct pcm_channel *ch;
155 uint32_t flags;
156
157 if (PCM_SIMPLEX(dev) != 0) {
158 d = dsp_get_info(dev);
159 if (!PCM_REGISTERED(d))
160 return (ENXIO);
161 PCM_LOCK(d);
162 PCM_WAIT(d);
163 PCM_ACQUIRE(d);
164 /*
165 * Note: order is important -
166 * pcm flags -> prio query flags -> wild guess
167 */
168 ch = NULL;
169 flags = dsp_get_flags(dev);
170 if (flags & SD_F_PRIO_WR) {
171 ch = PCM_RDCH(dev);
172 PCM_RDCH(dev) = NULL;
173 } else if (flags & SD_F_PRIO_RD) {
174 ch = PCM_WRCH(dev);
175 PCM_WRCH(dev) = NULL;
176 } else if (prio & SD_F_PRIO_WR) {
177 ch = PCM_RDCH(dev);
178 PCM_RDCH(dev) = NULL;
179 flags |= SD_F_PRIO_WR;
180 } else if (prio & SD_F_PRIO_RD) {
181 ch = PCM_WRCH(dev);
182 PCM_WRCH(dev) = NULL;
183 flags |= SD_F_PRIO_RD;
184 } else if (PCM_WRCH(dev) != NULL) {
185 ch = PCM_RDCH(dev);
186 PCM_RDCH(dev) = NULL;
187 flags |= SD_F_PRIO_WR;
188 } else if (PCM_RDCH(dev) != NULL) {
189 ch = PCM_WRCH(dev);
190 PCM_WRCH(dev) = NULL;
191 flags |= SD_F_PRIO_RD;
192 }
193 PCM_SIMPLEX(dev) = 0;
194 dsp_set_flags(dev, flags);
195 if (ch != NULL) {
196 CHN_LOCK(ch);
197 pcm_chnref(ch, -1);
198 pcm_chnrelease(ch);
199 }
200 PCM_RELEASE(d);
201 PCM_UNLOCK(d);
202 }
203
204 *rdch = PCM_RDCH(dev);
205 *wrch = PCM_WRCH(dev);
206
207 if (*rdch != NULL && (prio & SD_F_PRIO_RD))
208 CHN_LOCK(*rdch);
209 if (*wrch != NULL && (prio & SD_F_PRIO_WR))
210 CHN_LOCK(*wrch);
211
212 return (0);
213 }
214
215 /* unlock specified channels */
216 static void
relchns(struct cdev * dev,struct pcm_channel * rdch,struct pcm_channel * wrch,uint32_t prio)217 relchns(struct cdev *dev, struct pcm_channel *rdch, struct pcm_channel *wrch,
218 uint32_t prio)
219 {
220 if (wrch != NULL && (prio & SD_F_PRIO_WR))
221 CHN_UNLOCK(wrch);
222 if (rdch != NULL && (prio & SD_F_PRIO_RD))
223 CHN_UNLOCK(rdch);
224 }
225
226 static void
dsp_cdevinfo_alloc(struct cdev * dev,struct pcm_channel * rdch,struct pcm_channel * wrch,struct pcm_channel * volch)227 dsp_cdevinfo_alloc(struct cdev *dev,
228 struct pcm_channel *rdch, struct pcm_channel *wrch,
229 struct pcm_channel *volch)
230 {
231 struct snddev_info *d;
232 struct dsp_cdevinfo *cdi;
233 int simplex;
234
235 d = dsp_get_info(dev);
236
237 KASSERT(PCM_REGISTERED(d) && dev != NULL && dev->si_drv1 == NULL &&
238 ((rdch == NULL && wrch == NULL) || rdch != wrch),
239 ("bogus %s(), what are you trying to accomplish here?", __func__));
240 PCM_BUSYASSERT(d);
241 PCM_LOCKASSERT(d);
242
243 simplex = (dsp_get_flags(dev) & SD_F_SIMPLEX) ? 1 : 0;
244
245 /*
246 * Scan for free instance entry and put it into the end of list.
247 * Create new one if necessary.
248 */
249 TAILQ_FOREACH(cdi, &d->dsp_cdevinfo_pool, link) {
250 if (cdi->busy != 0)
251 break;
252 cdi->rdch = rdch;
253 cdi->wrch = wrch;
254 cdi->volch = volch;
255 cdi->simplex = simplex;
256 cdi->busy = 1;
257 TAILQ_REMOVE(&d->dsp_cdevinfo_pool, cdi, link);
258 TAILQ_INSERT_TAIL(&d->dsp_cdevinfo_pool, cdi, link);
259 dev->si_drv1 = cdi;
260 return;
261 }
262 PCM_UNLOCK(d);
263 cdi = malloc(sizeof(*cdi), M_DEVBUF, M_WAITOK | M_ZERO);
264 PCM_LOCK(d);
265 cdi->rdch = rdch;
266 cdi->wrch = wrch;
267 cdi->volch = volch;
268 cdi->simplex = simplex;
269 cdi->busy = 1;
270 TAILQ_INSERT_TAIL(&d->dsp_cdevinfo_pool, cdi, link);
271 dev->si_drv1 = cdi;
272 }
273
274 static void
dsp_cdevinfo_free(struct cdev * dev)275 dsp_cdevinfo_free(struct cdev *dev)
276 {
277 struct snddev_info *d;
278 struct dsp_cdevinfo *cdi, *tmp;
279 uint32_t flags;
280 int i;
281
282 d = dsp_get_info(dev);
283
284 KASSERT(PCM_REGISTERED(d) && dev != NULL && dev->si_drv1 != NULL &&
285 PCM_RDCH(dev) == NULL && PCM_WRCH(dev) == NULL &&
286 PCM_VOLCH(dev) == NULL,
287 ("bogus %s(), what are you trying to accomplish here?", __func__));
288 PCM_BUSYASSERT(d);
289 PCM_LOCKASSERT(d);
290
291 cdi = dev->si_drv1;
292 dev->si_drv1 = NULL;
293 cdi->rdch = NULL;
294 cdi->wrch = NULL;
295 cdi->volch = NULL;
296 cdi->simplex = 0;
297 cdi->busy = 0;
298
299 /*
300 * Once it is free, move it back to the beginning of list for
301 * faster new entry allocation.
302 */
303 TAILQ_REMOVE(&d->dsp_cdevinfo_pool, cdi, link);
304 TAILQ_INSERT_HEAD(&d->dsp_cdevinfo_pool, cdi, link);
305
306 /*
307 * Scan the list, cache free entries up to DSP_CDEVINFO_CACHESIZE.
308 * Reset simplex flags.
309 */
310 flags = dsp_get_flags(dev) & ~SD_F_PRIO_SET;
311 i = DSP_CDEVINFO_CACHESIZE;
312 TAILQ_FOREACH_SAFE(cdi, &d->dsp_cdevinfo_pool, link, tmp) {
313 if (cdi->busy != 0) {
314 if (cdi->simplex == 0) {
315 if (cdi->rdch != NULL)
316 flags |= SD_F_PRIO_RD;
317 if (cdi->wrch != NULL)
318 flags |= SD_F_PRIO_WR;
319 }
320 } else {
321 if (i == 0) {
322 TAILQ_REMOVE(&d->dsp_cdevinfo_pool, cdi, link);
323 free(cdi, M_DEVBUF);
324 } else
325 i--;
326 }
327 }
328 dsp_set_flags(dev, flags);
329 }
330
331 void
dsp_cdevinfo_init(struct snddev_info * d)332 dsp_cdevinfo_init(struct snddev_info *d)
333 {
334 struct dsp_cdevinfo *cdi;
335 int i;
336
337 KASSERT(d != NULL, ("NULL snddev_info"));
338 PCM_BUSYASSERT(d);
339 PCM_UNLOCKASSERT(d);
340
341 TAILQ_INIT(&d->dsp_cdevinfo_pool);
342 for (i = 0; i < DSP_CDEVINFO_CACHESIZE; i++) {
343 cdi = malloc(sizeof(*cdi), M_DEVBUF, M_WAITOK | M_ZERO);
344 TAILQ_INSERT_HEAD(&d->dsp_cdevinfo_pool, cdi, link);
345 }
346 }
347
348 void
dsp_cdevinfo_flush(struct snddev_info * d)349 dsp_cdevinfo_flush(struct snddev_info *d)
350 {
351 struct dsp_cdevinfo *cdi, *tmp;
352
353 KASSERT(d != NULL, ("NULL snddev_info"));
354 PCM_BUSYASSERT(d);
355 PCM_UNLOCKASSERT(d);
356
357 cdi = TAILQ_FIRST(&d->dsp_cdevinfo_pool);
358 while (cdi != NULL) {
359 tmp = TAILQ_NEXT(cdi, link);
360 free(cdi, M_DEVBUF);
361 cdi = tmp;
362 }
363 TAILQ_INIT(&d->dsp_cdevinfo_pool);
364 }
365
366 /* duplex / simplex cdev type */
367 enum {
368 DSP_CDEV_TYPE_RDONLY, /* simplex read-only (record) */
369 DSP_CDEV_TYPE_WRONLY, /* simplex write-only (play) */
370 DSP_CDEV_TYPE_RDWR /* duplex read, write, or both */
371 };
372
373 enum {
374 DSP_CDEV_VOLCTL_NONE,
375 DSP_CDEV_VOLCTL_READ,
376 DSP_CDEV_VOLCTL_WRITE
377 };
378
379 #define DSP_F_VALID(x) ((x) & (FREAD | FWRITE))
380 #define DSP_F_DUPLEX(x) (((x) & (FREAD | FWRITE)) == (FREAD | FWRITE))
381 #define DSP_F_SIMPLEX(x) (!DSP_F_DUPLEX(x))
382 #define DSP_F_READ(x) ((x) & FREAD)
383 #define DSP_F_WRITE(x) ((x) & FWRITE)
384
385 static const struct {
386 int type;
387 char *name;
388 char *sep;
389 char *alias;
390 int use_sep;
391 int hw;
392 int max;
393 int volctl;
394 uint32_t fmt, spd;
395 int query;
396 } dsp_cdevs[] = {
397 { SND_DEV_DSP, "dsp", ".", NULL, 0, 0, 0, 0,
398 SND_FORMAT(AFMT_U8, 1, 0), DSP_DEFAULT_SPEED,
399 DSP_CDEV_TYPE_RDWR },
400 { SND_DEV_AUDIO, "audio", ".", NULL, 0, 0, 0, 0,
401 SND_FORMAT(AFMT_MU_LAW, 1, 0), DSP_DEFAULT_SPEED,
402 DSP_CDEV_TYPE_RDWR },
403 { SND_DEV_DSP16, "dspW", ".", NULL, 0, 0, 0, 0,
404 SND_FORMAT(AFMT_S16_LE, 1, 0), DSP_DEFAULT_SPEED,
405 DSP_CDEV_TYPE_RDWR },
406 { SND_DEV_DSPHW_PLAY, "dsp", ".p", NULL, 1, 1, SND_MAXHWCHAN, 1,
407 SND_FORMAT(AFMT_S16_LE, 2, 0), 48000, DSP_CDEV_TYPE_WRONLY },
408 { SND_DEV_DSPHW_VPLAY, "dsp", ".vp", NULL, 1, 1, SND_MAXVCHANS, 1,
409 SND_FORMAT(AFMT_S16_LE, 2, 0), 48000, DSP_CDEV_TYPE_WRONLY },
410 { SND_DEV_DSPHW_REC, "dsp", ".r", NULL, 1, 1, SND_MAXHWCHAN, 1,
411 SND_FORMAT(AFMT_S16_LE, 2, 0), 48000, DSP_CDEV_TYPE_RDONLY },
412 { SND_DEV_DSPHW_VREC, "dsp", ".vr", NULL, 1, 1, SND_MAXVCHANS, 1,
413 SND_FORMAT(AFMT_S16_LE, 2, 0), 48000, DSP_CDEV_TYPE_RDONLY },
414 { SND_DEV_DSPHW_CD, "dspcd", ".", NULL, 0, 0, 0, 0,
415 SND_FORMAT(AFMT_S16_LE, 2, 0), 44100, DSP_CDEV_TYPE_RDWR },
416 /* Low priority, OSSv4 aliases. */
417 { SND_DEV_DSP, "dsp_ac3", ".", "dsp", 0, 0, 0, 0,
418 SND_FORMAT(AFMT_U8, 1, 0), DSP_DEFAULT_SPEED,
419 DSP_CDEV_TYPE_RDWR },
420 { SND_DEV_DSP, "dsp_mmap", ".", "dsp", 0, 0, 0, 0,
421 SND_FORMAT(AFMT_U8, 1, 0), DSP_DEFAULT_SPEED,
422 DSP_CDEV_TYPE_RDWR },
423 { SND_DEV_DSP, "dsp_multich", ".", "dsp", 0, 0, 0, 0,
424 SND_FORMAT(AFMT_U8, 1, 0), DSP_DEFAULT_SPEED,
425 DSP_CDEV_TYPE_RDWR },
426 { SND_DEV_DSP, "dsp_spdifout", ".", "dsp", 0, 0, 0, 0,
427 SND_FORMAT(AFMT_U8, 1, 0), DSP_DEFAULT_SPEED,
428 DSP_CDEV_TYPE_RDWR },
429 { SND_DEV_DSP, "dsp_spdifin", ".", "dsp", 0, 0, 0, 0,
430 SND_FORMAT(AFMT_U8, 1, 0), DSP_DEFAULT_SPEED,
431 DSP_CDEV_TYPE_RDWR },
432 };
433
434 #define DSP_FIXUP_ERROR() do { \
435 prio = dsp_get_flags(i_dev); \
436 if (!DSP_F_VALID(flags)) \
437 error = EINVAL; \
438 if (!DSP_F_DUPLEX(flags) && \
439 ((DSP_F_READ(flags) && d->reccount == 0) || \
440 (DSP_F_WRITE(flags) && d->playcount == 0))) \
441 error = ENOTSUP; \
442 else if (!DSP_F_DUPLEX(flags) && (prio & SD_F_SIMPLEX) && \
443 ((DSP_F_READ(flags) && (prio & SD_F_PRIO_WR)) || \
444 (DSP_F_WRITE(flags) && (prio & SD_F_PRIO_RD)))) \
445 error = EBUSY; \
446 else if (DSP_REGISTERED(d, i_dev)) \
447 error = EBUSY; \
448 } while (0)
449
450 static int
dsp_open(struct cdev * i_dev,int flags,int mode,struct thread * td)451 dsp_open(struct cdev *i_dev, int flags, int mode, struct thread *td)
452 {
453 struct pcm_channel *rdch, *wrch;
454 struct snddev_info *d;
455 uint32_t fmt, spd, prio, volctl;
456 int i, error, rderror, wrerror, devtype, wdevunit, rdevunit;
457
458 /* Kind of impossible.. */
459 if (i_dev == NULL || td == NULL)
460 return (ENODEV);
461
462 d = dsp_get_info(i_dev);
463 if (!PCM_REGISTERED(d))
464 return (EBADF);
465
466 PCM_GIANT_ENTER(d);
467
468 /* Lock snddev so nobody else can monkey with it. */
469 PCM_LOCK(d);
470 PCM_WAIT(d);
471
472 /*
473 * Try to acquire cloned device before someone else pick it.
474 * ENODEV means this is not a cloned droids.
475 */
476 error = snd_clone_acquire(i_dev);
477 if (!(error == 0 || error == ENODEV)) {
478 DSP_FIXUP_ERROR();
479 PCM_UNLOCK(d);
480 PCM_GIANT_EXIT(d);
481 return (error);
482 }
483
484 error = 0;
485 DSP_FIXUP_ERROR();
486
487 if (error != 0) {
488 (void)snd_clone_release(i_dev);
489 PCM_UNLOCK(d);
490 PCM_GIANT_EXIT(d);
491 return (error);
492 }
493
494 /*
495 * That is just enough. Acquire and unlock pcm lock so
496 * the other will just have to wait until we finish doing
497 * everything.
498 */
499 PCM_ACQUIRE(d);
500 PCM_UNLOCK(d);
501
502 devtype = PCMDEV(i_dev);
503 wdevunit = -1;
504 rdevunit = -1;
505 fmt = 0;
506 spd = 0;
507 volctl = DSP_CDEV_VOLCTL_NONE;
508
509 for (i = 0; i < (sizeof(dsp_cdevs) / sizeof(dsp_cdevs[0])); i++) {
510 if (devtype != dsp_cdevs[i].type || dsp_cdevs[i].alias != NULL)
511 continue;
512 /*
513 * Volume control only valid for DSPHW devices,
514 * and it must be opened in opposite direction be it
515 * simplex or duplex. Anything else will be handled
516 * as usual.
517 */
518 if (dsp_cdevs[i].query == DSP_CDEV_TYPE_WRONLY) {
519 if (dsp_cdevs[i].volctl != 0 &&
520 DSP_F_READ(flags)) {
521 volctl = DSP_CDEV_VOLCTL_WRITE;
522 flags &= ~FREAD;
523 flags |= FWRITE;
524 }
525 if (DSP_F_READ(flags)) {
526 (void)snd_clone_release(i_dev);
527 PCM_RELEASE_QUICK(d);
528 PCM_GIANT_EXIT(d);
529 return (ENOTSUP);
530 }
531 wdevunit = dev2unit(i_dev);
532 } else if (dsp_cdevs[i].query == DSP_CDEV_TYPE_RDONLY) {
533 if (dsp_cdevs[i].volctl != 0 &&
534 DSP_F_WRITE(flags)) {
535 volctl = DSP_CDEV_VOLCTL_READ;
536 flags &= ~FWRITE;
537 flags |= FREAD;
538 }
539 if (DSP_F_WRITE(flags)) {
540 (void)snd_clone_release(i_dev);
541 PCM_RELEASE_QUICK(d);
542 PCM_GIANT_EXIT(d);
543 return (ENOTSUP);
544 }
545 rdevunit = dev2unit(i_dev);
546 }
547 fmt = dsp_cdevs[i].fmt;
548 spd = dsp_cdevs[i].spd;
549 break;
550 }
551
552 /* No matching devtype? */
553 if (fmt == 0 || spd == 0)
554 panic("impossible devtype %d", devtype);
555
556 rdch = NULL;
557 wrch = NULL;
558 rderror = 0;
559 wrerror = 0;
560
561 /*
562 * if we get here, the open request is valid- either:
563 * * we were previously not open
564 * * we were open for play xor record and the opener wants
565 * the non-open direction
566 */
567 if (DSP_F_READ(flags)) {
568 /* open for read */
569 rderror = pcm_chnalloc(d, &rdch, PCMDIR_REC,
570 td->td_proc->p_pid, td->td_proc->p_comm, rdevunit);
571
572 if (rderror == 0 && chn_reset(rdch, fmt, spd) != 0)
573 rderror = ENXIO;
574
575 if (volctl == DSP_CDEV_VOLCTL_READ)
576 rderror = 0;
577
578 if (rderror != 0) {
579 if (rdch != NULL)
580 pcm_chnrelease(rdch);
581 if (!DSP_F_DUPLEX(flags)) {
582 (void)snd_clone_release(i_dev);
583 PCM_RELEASE_QUICK(d);
584 PCM_GIANT_EXIT(d);
585 return (rderror);
586 }
587 rdch = NULL;
588 } else if (volctl == DSP_CDEV_VOLCTL_READ) {
589 if (rdch != NULL) {
590 pcm_chnref(rdch, 1);
591 pcm_chnrelease(rdch);
592 }
593 } else {
594 if (flags & O_NONBLOCK)
595 rdch->flags |= CHN_F_NBIO;
596 if (flags & O_EXCL)
597 rdch->flags |= CHN_F_EXCLUSIVE;
598 pcm_chnref(rdch, 1);
599 if (volctl == DSP_CDEV_VOLCTL_NONE)
600 chn_vpc_reset(rdch, SND_VOL_C_PCM, 0);
601 CHN_UNLOCK(rdch);
602 }
603 }
604
605 if (DSP_F_WRITE(flags)) {
606 /* open for write */
607 wrerror = pcm_chnalloc(d, &wrch, PCMDIR_PLAY,
608 td->td_proc->p_pid, td->td_proc->p_comm, wdevunit);
609
610 if (wrerror == 0 && chn_reset(wrch, fmt, spd) != 0)
611 wrerror = ENXIO;
612
613 if (volctl == DSP_CDEV_VOLCTL_WRITE)
614 wrerror = 0;
615
616 if (wrerror != 0) {
617 if (wrch != NULL)
618 pcm_chnrelease(wrch);
619 if (!DSP_F_DUPLEX(flags)) {
620 if (rdch != NULL) {
621 /*
622 * Lock, deref and release previously
623 * created record channel
624 */
625 CHN_LOCK(rdch);
626 pcm_chnref(rdch, -1);
627 pcm_chnrelease(rdch);
628 }
629 (void)snd_clone_release(i_dev);
630 PCM_RELEASE_QUICK(d);
631 PCM_GIANT_EXIT(d);
632 return (wrerror);
633 }
634 wrch = NULL;
635 } else if (volctl == DSP_CDEV_VOLCTL_WRITE) {
636 if (wrch != NULL) {
637 pcm_chnref(wrch, 1);
638 pcm_chnrelease(wrch);
639 }
640 } else {
641 if (flags & O_NONBLOCK)
642 wrch->flags |= CHN_F_NBIO;
643 if (flags & O_EXCL)
644 wrch->flags |= CHN_F_EXCLUSIVE;
645 pcm_chnref(wrch, 1);
646 if (volctl == DSP_CDEV_VOLCTL_NONE)
647 chn_vpc_reset(wrch, SND_VOL_C_PCM, 0);
648 CHN_UNLOCK(wrch);
649 }
650 }
651
652
653 PCM_LOCK(d);
654
655 /*
656 * We're done. Allocate channels information for this cdev.
657 */
658 switch (volctl) {
659 case DSP_CDEV_VOLCTL_READ:
660 KASSERT(wrch == NULL, ("wrch=%p not null!", wrch));
661 dsp_cdevinfo_alloc(i_dev, NULL, NULL, rdch);
662 break;
663 case DSP_CDEV_VOLCTL_WRITE:
664 KASSERT(rdch == NULL, ("rdch=%p not null!", rdch));
665 dsp_cdevinfo_alloc(i_dev, NULL, NULL, wrch);
666 break;
667 case DSP_CDEV_VOLCTL_NONE:
668 default:
669 if (wrch == NULL && rdch == NULL) {
670 (void)snd_clone_release(i_dev);
671 PCM_RELEASE(d);
672 PCM_UNLOCK(d);
673 PCM_GIANT_EXIT(d);
674 if (wrerror != 0)
675 return (wrerror);
676 if (rderror != 0)
677 return (rderror);
678 return (EINVAL);
679 }
680 dsp_cdevinfo_alloc(i_dev, rdch, wrch, NULL);
681 if (rdch != NULL)
682 CHN_INSERT_HEAD(d, rdch, channels.pcm.opened);
683 if (wrch != NULL)
684 CHN_INSERT_HEAD(d, wrch, channels.pcm.opened);
685 break;
686 }
687
688 /*
689 * Increase clone refcount for its automatic garbage collector.
690 */
691 (void)snd_clone_ref(i_dev);
692
693 PCM_RELEASE(d);
694 PCM_UNLOCK(d);
695
696 PCM_GIANT_LEAVE(d);
697
698 return (0);
699 }
700
701 static int
dsp_close(struct cdev * i_dev,int flags,int mode,struct thread * td)702 dsp_close(struct cdev *i_dev, int flags, int mode, struct thread *td)
703 {
704 struct pcm_channel *rdch, *wrch, *volch;
705 struct snddev_info *d;
706 int sg_ids, rdref, wdref;
707
708 d = dsp_get_info(i_dev);
709 if (!DSP_REGISTERED(d, i_dev))
710 return (EBADF);
711
712 PCM_GIANT_ENTER(d);
713
714 PCM_LOCK(d);
715 PCM_WAIT(d);
716 PCM_ACQUIRE(d);
717
718 rdch = PCM_RDCH(i_dev);
719 wrch = PCM_WRCH(i_dev);
720 volch = PCM_VOLCH(i_dev);
721
722 PCM_RDCH(i_dev) = NULL;
723 PCM_WRCH(i_dev) = NULL;
724 PCM_VOLCH(i_dev) = NULL;
725
726 rdref = -1;
727 wdref = -1;
728
729 if (volch != NULL) {
730 if (volch == rdch)
731 rdref--;
732 else if (volch == wrch)
733 wdref--;
734 else {
735 CHN_LOCK(volch);
736 pcm_chnref(volch, -1);
737 CHN_UNLOCK(volch);
738 }
739 }
740
741 if (rdch != NULL)
742 CHN_REMOVE(d, rdch, channels.pcm.opened);
743 if (wrch != NULL)
744 CHN_REMOVE(d, wrch, channels.pcm.opened);
745
746 if (rdch != NULL || wrch != NULL) {
747 PCM_UNLOCK(d);
748 if (rdch != NULL) {
749 /*
750 * The channel itself need not be locked because:
751 * a) Adding a channel to a syncgroup happens only
752 * in dsp_ioctl(), which cannot run concurrently
753 * to dsp_close().
754 * b) The syncmember pointer (sm) is protected by
755 * the global syncgroup list lock.
756 * c) A channel can't just disappear, invalidating
757 * pointers, unless it's closed/dereferenced
758 * first.
759 */
760 PCM_SG_LOCK();
761 sg_ids = chn_syncdestroy(rdch);
762 PCM_SG_UNLOCK();
763 if (sg_ids != 0)
764 free_unr(pcmsg_unrhdr, sg_ids);
765
766 CHN_LOCK(rdch);
767 pcm_chnref(rdch, rdref);
768 chn_abort(rdch); /* won't sleep */
769 rdch->flags &= ~(CHN_F_RUNNING | CHN_F_MMAP |
770 CHN_F_DEAD | CHN_F_EXCLUSIVE);
771 chn_reset(rdch, 0, 0);
772 pcm_chnrelease(rdch);
773 }
774 if (wrch != NULL) {
775 /*
776 * Please see block above.
777 */
778 PCM_SG_LOCK();
779 sg_ids = chn_syncdestroy(wrch);
780 PCM_SG_UNLOCK();
781 if (sg_ids != 0)
782 free_unr(pcmsg_unrhdr, sg_ids);
783
784 CHN_LOCK(wrch);
785 pcm_chnref(wrch, wdref);
786 chn_flush(wrch); /* may sleep */
787 wrch->flags &= ~(CHN_F_RUNNING | CHN_F_MMAP |
788 CHN_F_DEAD | CHN_F_EXCLUSIVE);
789 chn_reset(wrch, 0, 0);
790 pcm_chnrelease(wrch);
791 }
792 PCM_LOCK(d);
793 }
794
795 dsp_cdevinfo_free(i_dev);
796 /*
797 * Release clone busy state and unref it so the automatic
798 * garbage collector will get the hint and do the remaining
799 * cleanup process.
800 */
801 (void)snd_clone_release(i_dev);
802
803 /*
804 * destroy_dev() might sleep, so release pcm lock
805 * here and rely on pcm cv serialization.
806 */
807 PCM_UNLOCK(d);
808 (void)snd_clone_unref(i_dev);
809 PCM_LOCK(d);
810
811 PCM_RELEASE(d);
812 PCM_UNLOCK(d);
813
814 PCM_GIANT_LEAVE(d);
815
816 return (0);
817 }
818
819 static __inline int
dsp_io_ops(struct cdev * i_dev,struct uio * buf)820 dsp_io_ops(struct cdev *i_dev, struct uio *buf)
821 {
822 struct snddev_info *d;
823 struct pcm_channel **ch, *rdch, *wrch;
824 int (*chn_io)(struct pcm_channel *, struct uio *);
825 int prio, ret;
826 pid_t runpid;
827
828 KASSERT(i_dev != NULL && buf != NULL &&
829 (buf->uio_rw == UIO_READ || buf->uio_rw == UIO_WRITE),
830 ("%s(): io train wreck!", __func__));
831
832 d = dsp_get_info(i_dev);
833 if (!DSP_REGISTERED(d, i_dev))
834 return (EBADF);
835
836 PCM_GIANT_ENTER(d);
837
838 switch (buf->uio_rw) {
839 case UIO_READ:
840 prio = SD_F_PRIO_RD;
841 ch = &rdch;
842 chn_io = chn_read;
843 break;
844 case UIO_WRITE:
845 prio = SD_F_PRIO_WR;
846 ch = &wrch;
847 chn_io = chn_write;
848 break;
849 default:
850 panic("invalid/corrupted uio direction: %d", buf->uio_rw);
851 break;
852 }
853
854 rdch = NULL;
855 wrch = NULL;
856 runpid = buf->uio_td->td_proc->p_pid;
857
858 getchns(i_dev, &rdch, &wrch, prio);
859
860 if (*ch == NULL || !((*ch)->flags & CHN_F_BUSY)) {
861 PCM_GIANT_EXIT(d);
862 return (EBADF);
863 }
864
865 if (((*ch)->flags & (CHN_F_MMAP | CHN_F_DEAD)) ||
866 (((*ch)->flags & CHN_F_RUNNING) && (*ch)->pid != runpid)) {
867 relchns(i_dev, rdch, wrch, prio);
868 PCM_GIANT_EXIT(d);
869 return (EINVAL);
870 } else if (!((*ch)->flags & CHN_F_RUNNING)) {
871 (*ch)->flags |= CHN_F_RUNNING;
872 (*ch)->pid = runpid;
873 }
874
875 /*
876 * chn_read/write must give up channel lock in order to copy bytes
877 * from/to userland, so up the "in progress" counter to make sure
878 * someone else doesn't come along and muss up the buffer.
879 */
880 ++(*ch)->inprog;
881 ret = chn_io(*ch, buf);
882 --(*ch)->inprog;
883
884 CHN_BROADCAST(&(*ch)->cv);
885
886 relchns(i_dev, rdch, wrch, prio);
887
888 PCM_GIANT_LEAVE(d);
889
890 return (ret);
891 }
892
893 static int
dsp_read(struct cdev * i_dev,struct uio * buf,int flag)894 dsp_read(struct cdev *i_dev, struct uio *buf, int flag)
895 {
896 return (dsp_io_ops(i_dev, buf));
897 }
898
899 static int
dsp_write(struct cdev * i_dev,struct uio * buf,int flag)900 dsp_write(struct cdev *i_dev, struct uio *buf, int flag)
901 {
902 return (dsp_io_ops(i_dev, buf));
903 }
904
905 static int
dsp_get_volume_channel(struct cdev * dev,struct pcm_channel ** volch)906 dsp_get_volume_channel(struct cdev *dev, struct pcm_channel **volch)
907 {
908 struct snddev_info *d;
909 struct pcm_channel *c;
910 int unit;
911
912 KASSERT(dev != NULL && volch != NULL,
913 ("%s(): NULL query dev=%p volch=%p", __func__, dev, volch));
914
915 d = dsp_get_info(dev);
916 if (!PCM_REGISTERED(d)) {
917 *volch = NULL;
918 return (EINVAL);
919 }
920
921 PCM_UNLOCKASSERT(d);
922
923 *volch = NULL;
924
925 c = PCM_VOLCH(dev);
926 if (c != NULL) {
927 if (!(c->feederflags & (1 << FEEDER_VOLUME)))
928 return (-1);
929 *volch = c;
930 return (0);
931 }
932
933 PCM_LOCK(d);
934 PCM_WAIT(d);
935 PCM_ACQUIRE(d);
936
937 unit = dev2unit(dev);
938
939 CHN_FOREACH(c, d, channels.pcm) {
940 CHN_LOCK(c);
941 if (c->unit != unit) {
942 CHN_UNLOCK(c);
943 continue;
944 }
945 *volch = c;
946 pcm_chnref(c, 1);
947 PCM_VOLCH(dev) = c;
948 CHN_UNLOCK(c);
949 PCM_RELEASE(d);
950 PCM_UNLOCK(d);
951 return ((c->feederflags & (1 << FEEDER_VOLUME)) ? 0 : -1);
952 }
953
954 PCM_RELEASE(d);
955 PCM_UNLOCK(d);
956
957 return (EINVAL);
958 }
959
960 static int
dsp_ioctl_channel(struct cdev * dev,struct pcm_channel * volch,u_long cmd,caddr_t arg)961 dsp_ioctl_channel(struct cdev *dev, struct pcm_channel *volch, u_long cmd,
962 caddr_t arg)
963 {
964 struct snddev_info *d;
965 struct pcm_channel *rdch, *wrch;
966 int j, devtype, ret;
967
968 d = dsp_get_info(dev);
969 if (!PCM_REGISTERED(d) || !(dsp_get_flags(dev) & SD_F_VPC))
970 return (-1);
971
972 PCM_UNLOCKASSERT(d);
973
974 j = cmd & 0xff;
975
976 rdch = PCM_RDCH(dev);
977 wrch = PCM_WRCH(dev);
978
979 /* No specific channel, look into cache */
980 if (volch == NULL)
981 volch = PCM_VOLCH(dev);
982
983 /* Look harder */
984 if (volch == NULL) {
985 if (j == SOUND_MIXER_RECLEV && rdch != NULL)
986 volch = rdch;
987 else if (j == SOUND_MIXER_PCM && wrch != NULL)
988 volch = wrch;
989 }
990
991 devtype = PCMDEV(dev);
992
993 /* Look super harder */
994 if (volch == NULL &&
995 (devtype == SND_DEV_DSPHW_PLAY || devtype == SND_DEV_DSPHW_VPLAY ||
996 devtype == SND_DEV_DSPHW_REC || devtype == SND_DEV_DSPHW_VREC)) {
997 ret = dsp_get_volume_channel(dev, &volch);
998 if (ret != 0)
999 return (ret);
1000 if (volch == NULL)
1001 return (EINVAL);
1002 }
1003
1004 /* Final validation */
1005 if (volch != NULL) {
1006 CHN_LOCK(volch);
1007 if (!(volch->feederflags & (1 << FEEDER_VOLUME))) {
1008 CHN_UNLOCK(volch);
1009 return (-1);
1010 }
1011 if (volch->direction == PCMDIR_PLAY)
1012 wrch = volch;
1013 else
1014 rdch = volch;
1015 }
1016
1017 ret = EINVAL;
1018
1019 if (volch != NULL &&
1020 ((j == SOUND_MIXER_PCM && volch->direction == PCMDIR_PLAY) ||
1021 (j == SOUND_MIXER_RECLEV && volch->direction == PCMDIR_REC))) {
1022 if ((cmd & ~0xff) == MIXER_WRITE(0)) {
1023 int left, right, center;
1024
1025 left = *(int *)arg & 0x7f;
1026 right = ((*(int *)arg) >> 8) & 0x7f;
1027 center = (left + right) >> 1;
1028 chn_setvolume_multi(volch, SND_VOL_C_PCM, left, right,
1029 center);
1030 } else if ((cmd & ~0xff) == MIXER_READ(0)) {
1031 *(int *)arg = CHN_GETVOLUME(volch,
1032 SND_VOL_C_PCM, SND_CHN_T_FL);
1033 *(int *)arg |= CHN_GETVOLUME(volch,
1034 SND_VOL_C_PCM, SND_CHN_T_FR) << 8;
1035 }
1036 ret = 0;
1037 } else if (rdch != NULL || wrch != NULL) {
1038 switch (j) {
1039 case SOUND_MIXER_DEVMASK:
1040 case SOUND_MIXER_CAPS:
1041 case SOUND_MIXER_STEREODEVS:
1042 if ((cmd & ~0xff) == MIXER_READ(0)) {
1043 *(int *)arg = 0;
1044 if (rdch != NULL)
1045 *(int *)arg |= SOUND_MASK_RECLEV;
1046 if (wrch != NULL)
1047 *(int *)arg |= SOUND_MASK_PCM;
1048 }
1049 ret = 0;
1050 break;
1051 case SOUND_MIXER_RECMASK:
1052 case SOUND_MIXER_RECSRC:
1053 if ((cmd & ~0xff) == MIXER_READ(0))
1054 *(int *)arg = 0;
1055 ret = 0;
1056 break;
1057 default:
1058 break;
1059 }
1060 }
1061
1062 if (volch != NULL)
1063 CHN_UNLOCK(volch);
1064
1065 return (ret);
1066 }
1067
1068 static int
dsp_ioctl(struct cdev * i_dev,u_long cmd,caddr_t arg,int mode,struct thread * td)1069 dsp_ioctl(struct cdev *i_dev, u_long cmd, caddr_t arg, int mode,
1070 struct thread *td)
1071 {
1072 struct pcm_channel *chn, *rdch, *wrch;
1073 struct snddev_info *d;
1074 u_long xcmd;
1075 int *arg_i, ret, tmp;
1076
1077 d = dsp_get_info(i_dev);
1078 if (!DSP_REGISTERED(d, i_dev))
1079 return (EBADF);
1080
1081 PCM_GIANT_ENTER(d);
1082
1083 arg_i = (int *)arg;
1084 ret = 0;
1085 xcmd = 0;
1086 chn = NULL;
1087
1088 if (IOCGROUP(cmd) == 'M') {
1089 if (cmd == OSS_GETVERSION) {
1090 *arg_i = SOUND_VERSION;
1091 PCM_GIANT_EXIT(d);
1092 return (0);
1093 }
1094 ret = dsp_ioctl_channel(i_dev, PCM_VOLCH(i_dev), cmd, arg);
1095 if (ret != -1) {
1096 PCM_GIANT_EXIT(d);
1097 return (ret);
1098 }
1099
1100 if (d->mixer_dev != NULL) {
1101 PCM_ACQUIRE_QUICK(d);
1102 ret = mixer_ioctl_cmd(d->mixer_dev, cmd, arg, -1, td,
1103 MIXER_CMD_DIRECT);
1104 PCM_RELEASE_QUICK(d);
1105 } else
1106 ret = EBADF;
1107
1108 PCM_GIANT_EXIT(d);
1109
1110 return (ret);
1111 }
1112
1113 /*
1114 * Certain ioctls may be made on any type of device (audio, mixer,
1115 * and MIDI). Handle those special cases here.
1116 */
1117 if (IOCGROUP(cmd) == 'X') {
1118 PCM_ACQUIRE_QUICK(d);
1119 switch(cmd) {
1120 case SNDCTL_SYSINFO:
1121 sound_oss_sysinfo((oss_sysinfo *)arg);
1122 break;
1123 case SNDCTL_CARDINFO:
1124 ret = sound_oss_card_info((oss_card_info *)arg);
1125 break;
1126 case SNDCTL_AUDIOINFO:
1127 case SNDCTL_AUDIOINFO_EX:
1128 case SNDCTL_ENGINEINFO:
1129 ret = dsp_oss_audioinfo(i_dev, (oss_audioinfo *)arg);
1130 break;
1131 case SNDCTL_MIXERINFO:
1132 ret = mixer_oss_mixerinfo(i_dev, (oss_mixerinfo *)arg);
1133 break;
1134 default:
1135 ret = EINVAL;
1136 }
1137 PCM_RELEASE_QUICK(d);
1138 PCM_GIANT_EXIT(d);
1139 return (ret);
1140 }
1141
1142 getchns(i_dev, &rdch, &wrch, 0);
1143
1144 if (wrch != NULL && (wrch->flags & CHN_F_DEAD))
1145 wrch = NULL;
1146 if (rdch != NULL && (rdch->flags & CHN_F_DEAD))
1147 rdch = NULL;
1148
1149 if (wrch == NULL && rdch == NULL) {
1150 PCM_GIANT_EXIT(d);
1151 return (EINVAL);
1152 }
1153
1154 switch(cmd) {
1155 #ifdef OLDPCM_IOCTL
1156 /*
1157 * we start with the new ioctl interface.
1158 */
1159 case AIONWRITE: /* how many bytes can write ? */
1160 if (wrch) {
1161 CHN_LOCK(wrch);
1162 /*
1163 if (wrch && wrch->bufhard.dl)
1164 while (chn_wrfeed(wrch) == 0);
1165 */
1166 *arg_i = sndbuf_getfree(wrch->bufsoft);
1167 CHN_UNLOCK(wrch);
1168 } else {
1169 *arg_i = 0;
1170 ret = EINVAL;
1171 }
1172 break;
1173
1174 case AIOSSIZE: /* set the current blocksize */
1175 {
1176 struct snd_size *p = (struct snd_size *)arg;
1177
1178 p->play_size = 0;
1179 p->rec_size = 0;
1180 PCM_ACQUIRE_QUICK(d);
1181 if (wrch) {
1182 CHN_LOCK(wrch);
1183 chn_setblocksize(wrch, 2, p->play_size);
1184 p->play_size = sndbuf_getblksz(wrch->bufsoft);
1185 CHN_UNLOCK(wrch);
1186 }
1187 if (rdch) {
1188 CHN_LOCK(rdch);
1189 chn_setblocksize(rdch, 2, p->rec_size);
1190 p->rec_size = sndbuf_getblksz(rdch->bufsoft);
1191 CHN_UNLOCK(rdch);
1192 }
1193 PCM_RELEASE_QUICK(d);
1194 }
1195 break;
1196 case AIOGSIZE: /* get the current blocksize */
1197 {
1198 struct snd_size *p = (struct snd_size *)arg;
1199
1200 if (wrch) {
1201 CHN_LOCK(wrch);
1202 p->play_size = sndbuf_getblksz(wrch->bufsoft);
1203 CHN_UNLOCK(wrch);
1204 }
1205 if (rdch) {
1206 CHN_LOCK(rdch);
1207 p->rec_size = sndbuf_getblksz(rdch->bufsoft);
1208 CHN_UNLOCK(rdch);
1209 }
1210 }
1211 break;
1212
1213 case AIOSFMT:
1214 case AIOGFMT:
1215 {
1216 snd_chan_param *p = (snd_chan_param *)arg;
1217
1218 if (cmd == AIOSFMT &&
1219 ((p->play_format != 0 && p->play_rate == 0) ||
1220 (p->rec_format != 0 && p->rec_rate == 0))) {
1221 ret = EINVAL;
1222 break;
1223 }
1224 PCM_ACQUIRE_QUICK(d);
1225 if (wrch) {
1226 CHN_LOCK(wrch);
1227 if (cmd == AIOSFMT && p->play_format != 0) {
1228 chn_setformat(wrch,
1229 SND_FORMAT(p->play_format,
1230 AFMT_CHANNEL(wrch->format),
1231 AFMT_EXTCHANNEL(wrch->format)));
1232 chn_setspeed(wrch, p->play_rate);
1233 }
1234 p->play_rate = wrch->speed;
1235 p->play_format = AFMT_ENCODING(wrch->format);
1236 CHN_UNLOCK(wrch);
1237 } else {
1238 p->play_rate = 0;
1239 p->play_format = 0;
1240 }
1241 if (rdch) {
1242 CHN_LOCK(rdch);
1243 if (cmd == AIOSFMT && p->rec_format != 0) {
1244 chn_setformat(rdch,
1245 SND_FORMAT(p->rec_format,
1246 AFMT_CHANNEL(rdch->format),
1247 AFMT_EXTCHANNEL(rdch->format)));
1248 chn_setspeed(rdch, p->rec_rate);
1249 }
1250 p->rec_rate = rdch->speed;
1251 p->rec_format = AFMT_ENCODING(rdch->format);
1252 CHN_UNLOCK(rdch);
1253 } else {
1254 p->rec_rate = 0;
1255 p->rec_format = 0;
1256 }
1257 PCM_RELEASE_QUICK(d);
1258 }
1259 break;
1260
1261 case AIOGCAP: /* get capabilities */
1262 {
1263 snd_capabilities *p = (snd_capabilities *)arg;
1264 struct pcmchan_caps *pcaps = NULL, *rcaps = NULL;
1265 struct cdev *pdev;
1266
1267 PCM_LOCK(d);
1268 if (rdch) {
1269 CHN_LOCK(rdch);
1270 rcaps = chn_getcaps(rdch);
1271 }
1272 if (wrch) {
1273 CHN_LOCK(wrch);
1274 pcaps = chn_getcaps(wrch);
1275 }
1276 p->rate_min = max(rcaps? rcaps->minspeed : 0,
1277 pcaps? pcaps->minspeed : 0);
1278 p->rate_max = min(rcaps? rcaps->maxspeed : 1000000,
1279 pcaps? pcaps->maxspeed : 1000000);
1280 p->bufsize = min(rdch? sndbuf_getsize(rdch->bufsoft) : 1000000,
1281 wrch? sndbuf_getsize(wrch->bufsoft) : 1000000);
1282 /* XXX bad on sb16 */
1283 p->formats = (rdch? chn_getformats(rdch) : 0xffffffff) &
1284 (wrch? chn_getformats(wrch) : 0xffffffff);
1285 if (rdch && wrch)
1286 p->formats |= (dsp_get_flags(i_dev) & SD_F_SIMPLEX)? 0 : AFMT_FULLDUPLEX;
1287 pdev = d->mixer_dev;
1288 p->mixers = 1; /* default: one mixer */
1289 p->inputs = pdev->si_drv1? mix_getdevs(pdev->si_drv1) : 0;
1290 p->left = p->right = 100;
1291 if (wrch)
1292 CHN_UNLOCK(wrch);
1293 if (rdch)
1294 CHN_UNLOCK(rdch);
1295 PCM_UNLOCK(d);
1296 }
1297 break;
1298
1299 case AIOSTOP:
1300 if (*arg_i == AIOSYNC_PLAY && wrch) {
1301 CHN_LOCK(wrch);
1302 *arg_i = chn_abort(wrch);
1303 CHN_UNLOCK(wrch);
1304 } else if (*arg_i == AIOSYNC_CAPTURE && rdch) {
1305 CHN_LOCK(rdch);
1306 *arg_i = chn_abort(rdch);
1307 CHN_UNLOCK(rdch);
1308 } else {
1309 printf("AIOSTOP: bad channel 0x%x\n", *arg_i);
1310 *arg_i = 0;
1311 }
1312 break;
1313
1314 case AIOSYNC:
1315 printf("AIOSYNC chan 0x%03lx pos %lu unimplemented\n",
1316 ((snd_sync_parm *)arg)->chan, ((snd_sync_parm *)arg)->pos);
1317 break;
1318 #endif
1319 /*
1320 * here follow the standard ioctls (filio.h etc.)
1321 */
1322 case FIONREAD: /* get # bytes to read */
1323 if (rdch) {
1324 CHN_LOCK(rdch);
1325 /* if (rdch && rdch->bufhard.dl)
1326 while (chn_rdfeed(rdch) == 0);
1327 */
1328 *arg_i = sndbuf_getready(rdch->bufsoft);
1329 CHN_UNLOCK(rdch);
1330 } else {
1331 *arg_i = 0;
1332 ret = EINVAL;
1333 }
1334 break;
1335
1336 case FIOASYNC: /*set/clear async i/o */
1337 DEB( printf("FIOASYNC\n") ; )
1338 break;
1339
1340 case SNDCTL_DSP_NONBLOCK: /* set non-blocking i/o */
1341 case FIONBIO: /* set/clear non-blocking i/o */
1342 if (rdch) {
1343 CHN_LOCK(rdch);
1344 if (cmd == SNDCTL_DSP_NONBLOCK || *arg_i)
1345 rdch->flags |= CHN_F_NBIO;
1346 else
1347 rdch->flags &= ~CHN_F_NBIO;
1348 CHN_UNLOCK(rdch);
1349 }
1350 if (wrch) {
1351 CHN_LOCK(wrch);
1352 if (cmd == SNDCTL_DSP_NONBLOCK || *arg_i)
1353 wrch->flags |= CHN_F_NBIO;
1354 else
1355 wrch->flags &= ~CHN_F_NBIO;
1356 CHN_UNLOCK(wrch);
1357 }
1358 break;
1359
1360 /*
1361 * Finally, here is the linux-compatible ioctl interface
1362 */
1363 #define THE_REAL_SNDCTL_DSP_GETBLKSIZE _IOWR('P', 4, int)
1364 case THE_REAL_SNDCTL_DSP_GETBLKSIZE:
1365 case SNDCTL_DSP_GETBLKSIZE:
1366 chn = wrch ? wrch : rdch;
1367 if (chn) {
1368 CHN_LOCK(chn);
1369 *arg_i = sndbuf_getblksz(chn->bufsoft);
1370 CHN_UNLOCK(chn);
1371 } else {
1372 *arg_i = 0;
1373 ret = EINVAL;
1374 }
1375 break;
1376
1377 case SNDCTL_DSP_SETBLKSIZE:
1378 RANGE(*arg_i, 16, 65536);
1379 PCM_ACQUIRE_QUICK(d);
1380 if (wrch) {
1381 CHN_LOCK(wrch);
1382 chn_setblocksize(wrch, 2, *arg_i);
1383 CHN_UNLOCK(wrch);
1384 }
1385 if (rdch) {
1386 CHN_LOCK(rdch);
1387 chn_setblocksize(rdch, 2, *arg_i);
1388 CHN_UNLOCK(rdch);
1389 }
1390 PCM_RELEASE_QUICK(d);
1391 break;
1392
1393 case SNDCTL_DSP_RESET:
1394 DEB(printf("dsp reset\n"));
1395 if (wrch) {
1396 CHN_LOCK(wrch);
1397 chn_abort(wrch);
1398 chn_resetbuf(wrch);
1399 CHN_UNLOCK(wrch);
1400 }
1401 if (rdch) {
1402 CHN_LOCK(rdch);
1403 chn_abort(rdch);
1404 chn_resetbuf(rdch);
1405 CHN_UNLOCK(rdch);
1406 }
1407 break;
1408
1409 case SNDCTL_DSP_SYNC:
1410 DEB(printf("dsp sync\n"));
1411 /* chn_sync may sleep */
1412 if (wrch) {
1413 CHN_LOCK(wrch);
1414 chn_sync(wrch, 0);
1415 CHN_UNLOCK(wrch);
1416 }
1417 break;
1418
1419 case SNDCTL_DSP_SPEED:
1420 /* chn_setspeed may sleep */
1421 tmp = 0;
1422 PCM_ACQUIRE_QUICK(d);
1423 if (wrch) {
1424 CHN_LOCK(wrch);
1425 ret = chn_setspeed(wrch, *arg_i);
1426 tmp = wrch->speed;
1427 CHN_UNLOCK(wrch);
1428 }
1429 if (rdch && ret == 0) {
1430 CHN_LOCK(rdch);
1431 ret = chn_setspeed(rdch, *arg_i);
1432 if (tmp == 0)
1433 tmp = rdch->speed;
1434 CHN_UNLOCK(rdch);
1435 }
1436 PCM_RELEASE_QUICK(d);
1437 *arg_i = tmp;
1438 break;
1439
1440 case SOUND_PCM_READ_RATE:
1441 chn = wrch ? wrch : rdch;
1442 if (chn) {
1443 CHN_LOCK(chn);
1444 *arg_i = chn->speed;
1445 CHN_UNLOCK(chn);
1446 } else {
1447 *arg_i = 0;
1448 ret = EINVAL;
1449 }
1450 break;
1451
1452 case SNDCTL_DSP_STEREO:
1453 tmp = -1;
1454 *arg_i = (*arg_i)? 2 : 1;
1455 PCM_ACQUIRE_QUICK(d);
1456 if (wrch) {
1457 CHN_LOCK(wrch);
1458 ret = chn_setformat(wrch,
1459 SND_FORMAT(wrch->format, *arg_i, 0));
1460 tmp = (AFMT_CHANNEL(wrch->format) > 1)? 1 : 0;
1461 CHN_UNLOCK(wrch);
1462 }
1463 if (rdch && ret == 0) {
1464 CHN_LOCK(rdch);
1465 ret = chn_setformat(rdch,
1466 SND_FORMAT(rdch->format, *arg_i, 0));
1467 if (tmp == -1)
1468 tmp = (AFMT_CHANNEL(rdch->format) > 1)? 1 : 0;
1469 CHN_UNLOCK(rdch);
1470 }
1471 PCM_RELEASE_QUICK(d);
1472 *arg_i = tmp;
1473 break;
1474
1475 case SOUND_PCM_WRITE_CHANNELS:
1476 /* case SNDCTL_DSP_CHANNELS: ( == SOUND_PCM_WRITE_CHANNELS) */
1477 if (*arg_i < 0) {
1478 *arg_i = 0;
1479 ret = EINVAL;
1480 break;
1481 }
1482 if (*arg_i != 0) {
1483 struct pcmchan_matrix *m;
1484 uint32_t ext;
1485
1486 tmp = 0;
1487 if (*arg_i > SND_CHN_MAX)
1488 *arg_i = SND_CHN_MAX;
1489
1490 m = feeder_matrix_default_channel_map(*arg_i);
1491 if (m != NULL)
1492 ext = m->ext;
1493 else
1494 ext = 0;
1495
1496 PCM_ACQUIRE_QUICK(d);
1497 if (wrch) {
1498 CHN_LOCK(wrch);
1499 ret = chn_setformat(wrch,
1500 SND_FORMAT(wrch->format, *arg_i, ext));
1501 tmp = AFMT_CHANNEL(wrch->format);
1502 CHN_UNLOCK(wrch);
1503 }
1504 if (rdch && ret == 0) {
1505 CHN_LOCK(rdch);
1506 ret = chn_setformat(rdch,
1507 SND_FORMAT(rdch->format, *arg_i, ext));
1508 if (tmp == 0)
1509 tmp = AFMT_CHANNEL(rdch->format);
1510 CHN_UNLOCK(rdch);
1511 }
1512 PCM_RELEASE_QUICK(d);
1513 *arg_i = tmp;
1514 } else {
1515 chn = wrch ? wrch : rdch;
1516 CHN_LOCK(chn);
1517 *arg_i = AFMT_CHANNEL(chn->format);
1518 CHN_UNLOCK(chn);
1519 }
1520 break;
1521
1522 case SOUND_PCM_READ_CHANNELS:
1523 chn = wrch ? wrch : rdch;
1524 if (chn) {
1525 CHN_LOCK(chn);
1526 *arg_i = AFMT_CHANNEL(chn->format);
1527 CHN_UNLOCK(chn);
1528 } else {
1529 *arg_i = 0;
1530 ret = EINVAL;
1531 }
1532 break;
1533
1534 case SNDCTL_DSP_GETFMTS: /* returns a mask of supported fmts */
1535 chn = wrch ? wrch : rdch;
1536 if (chn) {
1537 CHN_LOCK(chn);
1538 *arg_i = chn_getformats(chn);
1539 CHN_UNLOCK(chn);
1540 } else {
1541 *arg_i = 0;
1542 ret = EINVAL;
1543 }
1544 break;
1545
1546 case SNDCTL_DSP_SETFMT: /* sets _one_ format */
1547 if (*arg_i != AFMT_QUERY) {
1548 tmp = 0;
1549 PCM_ACQUIRE_QUICK(d);
1550 if (wrch) {
1551 CHN_LOCK(wrch);
1552 ret = chn_setformat(wrch, SND_FORMAT(*arg_i,
1553 AFMT_CHANNEL(wrch->format),
1554 AFMT_EXTCHANNEL(wrch->format)));
1555 tmp = wrch->format;
1556 CHN_UNLOCK(wrch);
1557 }
1558 if (rdch && ret == 0) {
1559 CHN_LOCK(rdch);
1560 ret = chn_setformat(rdch, SND_FORMAT(*arg_i,
1561 AFMT_CHANNEL(rdch->format),
1562 AFMT_EXTCHANNEL(rdch->format)));
1563 if (tmp == 0)
1564 tmp = rdch->format;
1565 CHN_UNLOCK(rdch);
1566 }
1567 PCM_RELEASE_QUICK(d);
1568 *arg_i = AFMT_ENCODING(tmp);
1569 } else {
1570 chn = wrch ? wrch : rdch;
1571 CHN_LOCK(chn);
1572 *arg_i = AFMT_ENCODING(chn->format);
1573 CHN_UNLOCK(chn);
1574 }
1575 break;
1576
1577 case SNDCTL_DSP_SETFRAGMENT:
1578 DEB(printf("SNDCTL_DSP_SETFRAGMENT 0x%08x\n", *(int *)arg));
1579 {
1580 uint32_t fragln = (*arg_i) & 0x0000ffff;
1581 uint32_t maxfrags = ((*arg_i) & 0xffff0000) >> 16;
1582 uint32_t fragsz;
1583 uint32_t r_maxfrags, r_fragsz;
1584
1585 RANGE(fragln, 4, 16);
1586 fragsz = 1 << fragln;
1587
1588 if (maxfrags == 0)
1589 maxfrags = CHN_2NDBUFMAXSIZE / fragsz;
1590 if (maxfrags < 2)
1591 maxfrags = 2;
1592 if (maxfrags * fragsz > CHN_2NDBUFMAXSIZE)
1593 maxfrags = CHN_2NDBUFMAXSIZE / fragsz;
1594
1595 DEB(printf("SNDCTL_DSP_SETFRAGMENT %d frags, %d sz\n", maxfrags, fragsz));
1596 PCM_ACQUIRE_QUICK(d);
1597 if (rdch) {
1598 CHN_LOCK(rdch);
1599 ret = chn_setblocksize(rdch, maxfrags, fragsz);
1600 r_maxfrags = sndbuf_getblkcnt(rdch->bufsoft);
1601 r_fragsz = sndbuf_getblksz(rdch->bufsoft);
1602 CHN_UNLOCK(rdch);
1603 } else {
1604 r_maxfrags = maxfrags;
1605 r_fragsz = fragsz;
1606 }
1607 if (wrch && ret == 0) {
1608 CHN_LOCK(wrch);
1609 ret = chn_setblocksize(wrch, maxfrags, fragsz);
1610 maxfrags = sndbuf_getblkcnt(wrch->bufsoft);
1611 fragsz = sndbuf_getblksz(wrch->bufsoft);
1612 CHN_UNLOCK(wrch);
1613 } else { /* use whatever came from the read channel */
1614 maxfrags = r_maxfrags;
1615 fragsz = r_fragsz;
1616 }
1617 PCM_RELEASE_QUICK(d);
1618
1619 fragln = 0;
1620 while (fragsz > 1) {
1621 fragln++;
1622 fragsz >>= 1;
1623 }
1624 *arg_i = (maxfrags << 16) | fragln;
1625 }
1626 break;
1627
1628 case SNDCTL_DSP_GETISPACE:
1629 /* return the size of data available in the input queue */
1630 {
1631 audio_buf_info *a = (audio_buf_info *)arg;
1632 if (rdch) {
1633 struct snd_dbuf *bs = rdch->bufsoft;
1634
1635 CHN_LOCK(rdch);
1636 a->bytes = sndbuf_getready(bs);
1637 a->fragments = a->bytes / sndbuf_getblksz(bs);
1638 a->fragstotal = sndbuf_getblkcnt(bs);
1639 a->fragsize = sndbuf_getblksz(bs);
1640 CHN_UNLOCK(rdch);
1641 } else
1642 ret = EINVAL;
1643 }
1644 break;
1645
1646 case SNDCTL_DSP_GETOSPACE:
1647 /* return space available in the output queue */
1648 {
1649 audio_buf_info *a = (audio_buf_info *)arg;
1650 if (wrch) {
1651 struct snd_dbuf *bs = wrch->bufsoft;
1652
1653 CHN_LOCK(wrch);
1654 /* XXX abusive DMA update: chn_wrupdate(wrch); */
1655 a->bytes = sndbuf_getfree(bs);
1656 a->fragments = a->bytes / sndbuf_getblksz(bs);
1657 a->fragstotal = sndbuf_getblkcnt(bs);
1658 a->fragsize = sndbuf_getblksz(bs);
1659 CHN_UNLOCK(wrch);
1660 } else
1661 ret = EINVAL;
1662 }
1663 break;
1664
1665 case SNDCTL_DSP_GETIPTR:
1666 {
1667 count_info *a = (count_info *)arg;
1668 if (rdch) {
1669 struct snd_dbuf *bs = rdch->bufsoft;
1670
1671 CHN_LOCK(rdch);
1672 /* XXX abusive DMA update: chn_rdupdate(rdch); */
1673 a->bytes = sndbuf_gettotal(bs);
1674 a->blocks = sndbuf_getblocks(bs) - rdch->blocks;
1675 a->ptr = sndbuf_getfreeptr(bs);
1676 rdch->blocks = sndbuf_getblocks(bs);
1677 CHN_UNLOCK(rdch);
1678 } else
1679 ret = EINVAL;
1680 }
1681 break;
1682
1683 case SNDCTL_DSP_GETOPTR:
1684 {
1685 count_info *a = (count_info *)arg;
1686 if (wrch) {
1687 struct snd_dbuf *bs = wrch->bufsoft;
1688
1689 CHN_LOCK(wrch);
1690 /* XXX abusive DMA update: chn_wrupdate(wrch); */
1691 a->bytes = sndbuf_gettotal(bs);
1692 a->blocks = sndbuf_getblocks(bs) - wrch->blocks;
1693 a->ptr = sndbuf_getreadyptr(bs);
1694 wrch->blocks = sndbuf_getblocks(bs);
1695 CHN_UNLOCK(wrch);
1696 } else
1697 ret = EINVAL;
1698 }
1699 break;
1700
1701 case SNDCTL_DSP_GETCAPS:
1702 PCM_LOCK(d);
1703 *arg_i = PCM_CAP_REALTIME | PCM_CAP_MMAP | PCM_CAP_TRIGGER;
1704 if (rdch && wrch && !(dsp_get_flags(i_dev) & SD_F_SIMPLEX))
1705 *arg_i |= PCM_CAP_DUPLEX;
1706 PCM_UNLOCK(d);
1707 break;
1708
1709 case SOUND_PCM_READ_BITS:
1710 chn = wrch ? wrch : rdch;
1711 if (chn) {
1712 CHN_LOCK(chn);
1713 if (chn->format & AFMT_8BIT)
1714 *arg_i = 8;
1715 else if (chn->format & AFMT_16BIT)
1716 *arg_i = 16;
1717 else if (chn->format & AFMT_24BIT)
1718 *arg_i = 24;
1719 else if (chn->format & AFMT_32BIT)
1720 *arg_i = 32;
1721 else
1722 ret = EINVAL;
1723 CHN_UNLOCK(chn);
1724 } else {
1725 *arg_i = 0;
1726 ret = EINVAL;
1727 }
1728 break;
1729
1730 case SNDCTL_DSP_SETTRIGGER:
1731 if (rdch) {
1732 CHN_LOCK(rdch);
1733 rdch->flags &= ~CHN_F_NOTRIGGER;
1734 if (*arg_i & PCM_ENABLE_INPUT)
1735 chn_start(rdch, 1);
1736 else {
1737 chn_abort(rdch);
1738 chn_resetbuf(rdch);
1739 rdch->flags |= CHN_F_NOTRIGGER;
1740 }
1741 CHN_UNLOCK(rdch);
1742 }
1743 if (wrch) {
1744 CHN_LOCK(wrch);
1745 wrch->flags &= ~CHN_F_NOTRIGGER;
1746 if (*arg_i & PCM_ENABLE_OUTPUT)
1747 chn_start(wrch, 1);
1748 else {
1749 chn_abort(wrch);
1750 chn_resetbuf(wrch);
1751 wrch->flags |= CHN_F_NOTRIGGER;
1752 }
1753 CHN_UNLOCK(wrch);
1754 }
1755 break;
1756
1757 case SNDCTL_DSP_GETTRIGGER:
1758 *arg_i = 0;
1759 if (wrch) {
1760 CHN_LOCK(wrch);
1761 if (wrch->flags & CHN_F_TRIGGERED)
1762 *arg_i |= PCM_ENABLE_OUTPUT;
1763 CHN_UNLOCK(wrch);
1764 }
1765 if (rdch) {
1766 CHN_LOCK(rdch);
1767 if (rdch->flags & CHN_F_TRIGGERED)
1768 *arg_i |= PCM_ENABLE_INPUT;
1769 CHN_UNLOCK(rdch);
1770 }
1771 break;
1772
1773 case SNDCTL_DSP_GETODELAY:
1774 if (wrch) {
1775 struct snd_dbuf *bs = wrch->bufsoft;
1776
1777 CHN_LOCK(wrch);
1778 /* XXX abusive DMA update: chn_wrupdate(wrch); */
1779 *arg_i = sndbuf_getready(bs);
1780 CHN_UNLOCK(wrch);
1781 } else
1782 ret = EINVAL;
1783 break;
1784
1785 case SNDCTL_DSP_POST:
1786 if (wrch) {
1787 CHN_LOCK(wrch);
1788 wrch->flags &= ~CHN_F_NOTRIGGER;
1789 chn_start(wrch, 1);
1790 CHN_UNLOCK(wrch);
1791 }
1792 break;
1793
1794 case SNDCTL_DSP_SETDUPLEX:
1795 /*
1796 * switch to full-duplex mode if card is in half-duplex
1797 * mode and is able to work in full-duplex mode
1798 */
1799 PCM_LOCK(d);
1800 if (rdch && wrch && (dsp_get_flags(i_dev) & SD_F_SIMPLEX))
1801 dsp_set_flags(i_dev, dsp_get_flags(i_dev)^SD_F_SIMPLEX);
1802 PCM_UNLOCK(d);
1803 break;
1804
1805 /*
1806 * The following four ioctls are simple wrappers around mixer_ioctl
1807 * with no further processing. xcmd is short for "translated
1808 * command".
1809 */
1810 case SNDCTL_DSP_GETRECVOL:
1811 if (xcmd == 0) {
1812 xcmd = SOUND_MIXER_READ_RECLEV;
1813 chn = rdch;
1814 }
1815 /* FALLTHROUGH */
1816 case SNDCTL_DSP_SETRECVOL:
1817 if (xcmd == 0) {
1818 xcmd = SOUND_MIXER_WRITE_RECLEV;
1819 chn = rdch;
1820 }
1821 /* FALLTHROUGH */
1822 case SNDCTL_DSP_GETPLAYVOL:
1823 if (xcmd == 0) {
1824 xcmd = SOUND_MIXER_READ_PCM;
1825 chn = wrch;
1826 }
1827 /* FALLTHROUGH */
1828 case SNDCTL_DSP_SETPLAYVOL:
1829 if (xcmd == 0) {
1830 xcmd = SOUND_MIXER_WRITE_PCM;
1831 chn = wrch;
1832 }
1833
1834 ret = dsp_ioctl_channel(i_dev, chn, xcmd, arg);
1835 if (ret != -1) {
1836 PCM_GIANT_EXIT(d);
1837 return (ret);
1838 }
1839
1840 if (d->mixer_dev != NULL) {
1841 PCM_ACQUIRE_QUICK(d);
1842 ret = mixer_ioctl_cmd(d->mixer_dev, xcmd, arg, -1, td,
1843 MIXER_CMD_DIRECT);
1844 PCM_RELEASE_QUICK(d);
1845 } else
1846 ret = ENOTSUP;
1847
1848 break;
1849
1850 case SNDCTL_DSP_GET_RECSRC_NAMES:
1851 case SNDCTL_DSP_GET_RECSRC:
1852 case SNDCTL_DSP_SET_RECSRC:
1853 if (d->mixer_dev != NULL) {
1854 PCM_ACQUIRE_QUICK(d);
1855 ret = mixer_ioctl_cmd(d->mixer_dev, cmd, arg, -1, td,
1856 MIXER_CMD_DIRECT);
1857 PCM_RELEASE_QUICK(d);
1858 } else
1859 ret = ENOTSUP;
1860 break;
1861
1862 /*
1863 * The following 3 ioctls aren't very useful at the moment. For
1864 * now, only a single channel is associated with a cdev (/dev/dspN
1865 * instance), so there's only a single output routing to use (i.e.,
1866 * the wrch bound to this cdev).
1867 */
1868 case SNDCTL_DSP_GET_PLAYTGT_NAMES:
1869 {
1870 oss_mixer_enuminfo *ei;
1871 ei = (oss_mixer_enuminfo *)arg;
1872 ei->dev = 0;
1873 ei->ctrl = 0;
1874 ei->version = 0; /* static for now */
1875 ei->strindex[0] = 0;
1876
1877 if (wrch != NULL) {
1878 ei->nvalues = 1;
1879 strlcpy(ei->strings, wrch->name,
1880 sizeof(ei->strings));
1881 } else {
1882 ei->nvalues = 0;
1883 ei->strings[0] = '\0';
1884 }
1885 }
1886 break;
1887 case SNDCTL_DSP_GET_PLAYTGT:
1888 case SNDCTL_DSP_SET_PLAYTGT: /* yes, they are the same for now */
1889 /*
1890 * Re: SET_PLAYTGT
1891 * OSSv4: "The value that was accepted by the device will
1892 * be returned back in the variable pointed by the
1893 * argument."
1894 */
1895 if (wrch != NULL)
1896 *arg_i = 0;
1897 else
1898 ret = EINVAL;
1899 break;
1900
1901 case SNDCTL_DSP_SILENCE:
1902 /*
1903 * Flush the software (pre-feed) buffer, but try to minimize playback
1904 * interruption. (I.e., record unplayed samples with intent to
1905 * restore by SNDCTL_DSP_SKIP.) Intended for application "pause"
1906 * functionality.
1907 */
1908 if (wrch == NULL)
1909 ret = EINVAL;
1910 else {
1911 struct snd_dbuf *bs;
1912 CHN_LOCK(wrch);
1913 while (wrch->inprog != 0)
1914 cv_wait(&wrch->cv, wrch->lock);
1915 bs = wrch->bufsoft;
1916 if ((bs->shadbuf != NULL) && (sndbuf_getready(bs) > 0)) {
1917 bs->sl = sndbuf_getready(bs);
1918 sndbuf_dispose(bs, bs->shadbuf, sndbuf_getready(bs));
1919 sndbuf_fillsilence(bs);
1920 chn_start(wrch, 0);
1921 }
1922 CHN_UNLOCK(wrch);
1923 }
1924 break;
1925
1926 case SNDCTL_DSP_SKIP:
1927 /*
1928 * OSSv4 docs: "This ioctl call discards all unplayed samples in the
1929 * playback buffer by moving the current write position immediately
1930 * before the point where the device is currently reading the samples."
1931 */
1932 if (wrch == NULL)
1933 ret = EINVAL;
1934 else {
1935 struct snd_dbuf *bs;
1936 CHN_LOCK(wrch);
1937 while (wrch->inprog != 0)
1938 cv_wait(&wrch->cv, wrch->lock);
1939 bs = wrch->bufsoft;
1940 if ((bs->shadbuf != NULL) && (bs->sl > 0)) {
1941 sndbuf_softreset(bs);
1942 sndbuf_acquire(bs, bs->shadbuf, bs->sl);
1943 bs->sl = 0;
1944 chn_start(wrch, 0);
1945 }
1946 CHN_UNLOCK(wrch);
1947 }
1948 break;
1949
1950 case SNDCTL_DSP_CURRENT_OPTR:
1951 case SNDCTL_DSP_CURRENT_IPTR:
1952 /**
1953 * @note Changing formats resets the buffer counters, which differs
1954 * from the 4Front drivers. However, I don't expect this to be
1955 * much of a problem.
1956 *
1957 * @note In a test where @c CURRENT_OPTR is called immediately after write
1958 * returns, this driver is about 32K samples behind whereas
1959 * 4Front's is about 8K samples behind. Should determine source
1960 * of discrepancy, even if only out of curiosity.
1961 *
1962 * @todo Actually test SNDCTL_DSP_CURRENT_IPTR.
1963 */
1964 chn = (cmd == SNDCTL_DSP_CURRENT_OPTR) ? wrch : rdch;
1965 if (chn == NULL)
1966 ret = EINVAL;
1967 else {
1968 struct snd_dbuf *bs;
1969 /* int tmp; */
1970
1971 oss_count_t *oc = (oss_count_t *)arg;
1972
1973 CHN_LOCK(chn);
1974 bs = chn->bufsoft;
1975 #if 0
1976 tmp = (sndbuf_getsize(b) + chn_getptr(chn) - sndbuf_gethwptr(b)) % sndbuf_getsize(b);
1977 oc->samples = (sndbuf_gettotal(b) + tmp) / sndbuf_getalign(b);
1978 oc->fifo_samples = (sndbuf_getready(b) - tmp) / sndbuf_getalign(b);
1979 #else
1980 oc->samples = sndbuf_gettotal(bs) / sndbuf_getalign(bs);
1981 oc->fifo_samples = sndbuf_getready(bs) / sndbuf_getalign(bs);
1982 #endif
1983 CHN_UNLOCK(chn);
1984 }
1985 break;
1986
1987 case SNDCTL_DSP_HALT_OUTPUT:
1988 case SNDCTL_DSP_HALT_INPUT:
1989 chn = (cmd == SNDCTL_DSP_HALT_OUTPUT) ? wrch : rdch;
1990 if (chn == NULL)
1991 ret = EINVAL;
1992 else {
1993 CHN_LOCK(chn);
1994 chn_abort(chn);
1995 CHN_UNLOCK(chn);
1996 }
1997 break;
1998
1999 case SNDCTL_DSP_LOW_WATER:
2000 /*
2001 * Set the number of bytes required to attract attention by
2002 * select/poll.
2003 */
2004 if (wrch != NULL) {
2005 CHN_LOCK(wrch);
2006 wrch->lw = (*arg_i > 1) ? *arg_i : 1;
2007 CHN_UNLOCK(wrch);
2008 }
2009 if (rdch != NULL) {
2010 CHN_LOCK(rdch);
2011 rdch->lw = (*arg_i > 1) ? *arg_i : 1;
2012 CHN_UNLOCK(rdch);
2013 }
2014 break;
2015
2016 case SNDCTL_DSP_GETERROR:
2017 /*
2018 * OSSv4 docs: "All errors and counters will automatically be
2019 * cleared to zeroes after the call so each call will return only
2020 * the errors that occurred after the previous invocation. ... The
2021 * play_underruns and rec_overrun fields are the only useful fields
2022 * returned by OSS 4.0."
2023 */
2024 {
2025 audio_errinfo *ei = (audio_errinfo *)arg;
2026
2027 bzero((void *)ei, sizeof(*ei));
2028
2029 if (wrch != NULL) {
2030 CHN_LOCK(wrch);
2031 ei->play_underruns = wrch->xruns;
2032 wrch->xruns = 0;
2033 CHN_UNLOCK(wrch);
2034 }
2035 if (rdch != NULL) {
2036 CHN_LOCK(rdch);
2037 ei->rec_overruns = rdch->xruns;
2038 rdch->xruns = 0;
2039 CHN_UNLOCK(rdch);
2040 }
2041 }
2042 break;
2043
2044 case SNDCTL_DSP_SYNCGROUP:
2045 PCM_ACQUIRE_QUICK(d);
2046 ret = dsp_oss_syncgroup(wrch, rdch, (oss_syncgroup *)arg);
2047 PCM_RELEASE_QUICK(d);
2048 break;
2049
2050 case SNDCTL_DSP_SYNCSTART:
2051 PCM_ACQUIRE_QUICK(d);
2052 ret = dsp_oss_syncstart(*arg_i);
2053 PCM_RELEASE_QUICK(d);
2054 break;
2055
2056 case SNDCTL_DSP_POLICY:
2057 PCM_ACQUIRE_QUICK(d);
2058 ret = dsp_oss_policy(wrch, rdch, *arg_i);
2059 PCM_RELEASE_QUICK(d);
2060 break;
2061
2062 case SNDCTL_DSP_COOKEDMODE:
2063 PCM_ACQUIRE_QUICK(d);
2064 if (!(dsp_get_flags(i_dev) & SD_F_BITPERFECT))
2065 ret = dsp_oss_cookedmode(wrch, rdch, *arg_i);
2066 PCM_RELEASE_QUICK(d);
2067 break;
2068 case SNDCTL_DSP_GET_CHNORDER:
2069 PCM_ACQUIRE_QUICK(d);
2070 ret = dsp_oss_getchnorder(wrch, rdch, (unsigned long long *)arg);
2071 PCM_RELEASE_QUICK(d);
2072 break;
2073 case SNDCTL_DSP_SET_CHNORDER:
2074 PCM_ACQUIRE_QUICK(d);
2075 ret = dsp_oss_setchnorder(wrch, rdch, (unsigned long long *)arg);
2076 PCM_RELEASE_QUICK(d);
2077 break;
2078 case SNDCTL_DSP_GETCHANNELMASK: /* XXX vlc */
2079 PCM_ACQUIRE_QUICK(d);
2080 ret = dsp_oss_getchannelmask(wrch, rdch, (int *)arg);
2081 PCM_RELEASE_QUICK(d);
2082 break;
2083 case SNDCTL_DSP_BIND_CHANNEL: /* XXX what?!? */
2084 ret = EINVAL;
2085 break;
2086 #ifdef OSSV4_EXPERIMENT
2087 /*
2088 * XXX The following ioctls are not yet supported and just return
2089 * EINVAL.
2090 */
2091 case SNDCTL_DSP_GETOPEAKS:
2092 case SNDCTL_DSP_GETIPEAKS:
2093 chn = (cmd == SNDCTL_DSP_GETOPEAKS) ? wrch : rdch;
2094 if (chn == NULL)
2095 ret = EINVAL;
2096 else {
2097 oss_peaks_t *op = (oss_peaks_t *)arg;
2098 int lpeak, rpeak;
2099
2100 CHN_LOCK(chn);
2101 ret = chn_getpeaks(chn, &lpeak, &rpeak);
2102 if (ret == -1)
2103 ret = EINVAL;
2104 else {
2105 (*op)[0] = lpeak;
2106 (*op)[1] = rpeak;
2107 }
2108 CHN_UNLOCK(chn);
2109 }
2110 break;
2111
2112 /*
2113 * XXX Once implemented, revisit this for proper cv protection
2114 * (if necessary).
2115 */
2116 case SNDCTL_GETLABEL:
2117 ret = dsp_oss_getlabel(wrch, rdch, (oss_label_t *)arg);
2118 break;
2119 case SNDCTL_SETLABEL:
2120 ret = dsp_oss_setlabel(wrch, rdch, (oss_label_t *)arg);
2121 break;
2122 case SNDCTL_GETSONG:
2123 ret = dsp_oss_getsong(wrch, rdch, (oss_longname_t *)arg);
2124 break;
2125 case SNDCTL_SETSONG:
2126 ret = dsp_oss_setsong(wrch, rdch, (oss_longname_t *)arg);
2127 break;
2128 case SNDCTL_SETNAME:
2129 ret = dsp_oss_setname(wrch, rdch, (oss_longname_t *)arg);
2130 break;
2131 #if 0
2132 /**
2133 * @note The S/PDIF interface ioctls, @c SNDCTL_DSP_READCTL and
2134 * @c SNDCTL_DSP_WRITECTL have been omitted at the suggestion of
2135 * 4Front Technologies.
2136 */
2137 case SNDCTL_DSP_READCTL:
2138 case SNDCTL_DSP_WRITECTL:
2139 ret = EINVAL;
2140 break;
2141 #endif /* !0 (explicitly omitted ioctls) */
2142
2143 #endif /* !OSSV4_EXPERIMENT */
2144 case SNDCTL_DSP_MAPINBUF:
2145 case SNDCTL_DSP_MAPOUTBUF:
2146 case SNDCTL_DSP_SETSYNCRO:
2147 /* undocumented */
2148
2149 case SNDCTL_DSP_SUBDIVIDE:
2150 case SOUND_PCM_WRITE_FILTER:
2151 case SOUND_PCM_READ_FILTER:
2152 /* dunno what these do, don't sound important */
2153
2154 default:
2155 DEB(printf("default ioctl fn 0x%08lx fail\n", cmd));
2156 ret = EINVAL;
2157 break;
2158 }
2159
2160 PCM_GIANT_LEAVE(d);
2161
2162 return (ret);
2163 }
2164
2165 static int
dsp_poll(struct cdev * i_dev,int events,struct thread * td)2166 dsp_poll(struct cdev *i_dev, int events, struct thread *td)
2167 {
2168 struct snddev_info *d;
2169 struct pcm_channel *wrch, *rdch;
2170 int ret, e;
2171
2172 d = dsp_get_info(i_dev);
2173 if (!DSP_REGISTERED(d, i_dev))
2174 return (EBADF);
2175
2176 PCM_GIANT_ENTER(d);
2177
2178 wrch = NULL;
2179 rdch = NULL;
2180 ret = 0;
2181
2182 getchns(i_dev, &rdch, &wrch, SD_F_PRIO_RD | SD_F_PRIO_WR);
2183
2184 if (wrch != NULL && !(wrch->flags & CHN_F_DEAD)) {
2185 e = (events & (POLLOUT | POLLWRNORM));
2186 if (e)
2187 ret |= chn_poll(wrch, e, td);
2188 }
2189
2190 if (rdch != NULL && !(rdch->flags & CHN_F_DEAD)) {
2191 e = (events & (POLLIN | POLLRDNORM));
2192 if (e)
2193 ret |= chn_poll(rdch, e, td);
2194 }
2195
2196 relchns(i_dev, rdch, wrch, SD_F_PRIO_RD | SD_F_PRIO_WR);
2197
2198 PCM_GIANT_LEAVE(d);
2199
2200 return (ret);
2201 }
2202
2203 static int
dsp_mmap(struct cdev * i_dev,vm_ooffset_t offset,vm_paddr_t * paddr,int nprot,vm_memattr_t * memattr)2204 dsp_mmap(struct cdev *i_dev, vm_ooffset_t offset, vm_paddr_t *paddr,
2205 int nprot, vm_memattr_t *memattr)
2206 {
2207
2208 /*
2209 * offset is in range due to checks in dsp_mmap_single().
2210 * XXX memattr is not honored.
2211 */
2212 *paddr = vtophys(offset);
2213 return (0);
2214 }
2215
2216 static int
dsp_mmap_single(struct cdev * i_dev,vm_ooffset_t * offset,vm_size_t size,struct vm_object ** object,int nprot)2217 dsp_mmap_single(struct cdev *i_dev, vm_ooffset_t *offset,
2218 vm_size_t size, struct vm_object **object, int nprot)
2219 {
2220 struct snddev_info *d;
2221 struct pcm_channel *wrch, *rdch, *c;
2222
2223 /*
2224 * Reject PROT_EXEC by default. It just doesn't makes sense.
2225 * Unfortunately, we have to give up this one due to linux_mmap
2226 * changes.
2227 *
2228 * https://lists.freebsd.org/pipermail/freebsd-emulation/2007-June/003698.html
2229 *
2230 */
2231 #ifdef SV_ABI_LINUX
2232 if ((nprot & PROT_EXEC) && (dsp_mmap_allow_prot_exec < 0 ||
2233 (dsp_mmap_allow_prot_exec == 0 &&
2234 SV_CURPROC_ABI() != SV_ABI_LINUX)))
2235 #else
2236 if ((nprot & PROT_EXEC) && dsp_mmap_allow_prot_exec < 1)
2237 #endif
2238 return (EINVAL);
2239
2240 /*
2241 * PROT_READ (alone) selects the input buffer.
2242 * PROT_WRITE (alone) selects the output buffer.
2243 * PROT_WRITE|PROT_READ together select the output buffer.
2244 */
2245 if ((nprot & (PROT_READ | PROT_WRITE)) == 0)
2246 return (EINVAL);
2247
2248 d = dsp_get_info(i_dev);
2249 if (!DSP_REGISTERED(d, i_dev))
2250 return (EINVAL);
2251
2252 PCM_GIANT_ENTER(d);
2253
2254 getchns(i_dev, &rdch, &wrch, SD_F_PRIO_RD | SD_F_PRIO_WR);
2255
2256 c = ((nprot & PROT_WRITE) != 0) ? wrch : rdch;
2257 if (c == NULL || (c->flags & CHN_F_MMAP_INVALID) ||
2258 (*offset + size) > sndbuf_getsize(c->bufsoft) ||
2259 (wrch != NULL && (wrch->flags & CHN_F_MMAP_INVALID)) ||
2260 (rdch != NULL && (rdch->flags & CHN_F_MMAP_INVALID))) {
2261 relchns(i_dev, rdch, wrch, SD_F_PRIO_RD | SD_F_PRIO_WR);
2262 PCM_GIANT_EXIT(d);
2263 return (EINVAL);
2264 }
2265
2266 if (wrch != NULL)
2267 wrch->flags |= CHN_F_MMAP;
2268 if (rdch != NULL)
2269 rdch->flags |= CHN_F_MMAP;
2270
2271 *offset = (uintptr_t)sndbuf_getbufofs(c->bufsoft, *offset);
2272 relchns(i_dev, rdch, wrch, SD_F_PRIO_RD | SD_F_PRIO_WR);
2273 *object = vm_pager_allocate(OBJT_DEVICE, i_dev,
2274 size, nprot, *offset, curthread->td_ucred);
2275
2276 PCM_GIANT_LEAVE(d);
2277
2278 if (*object == NULL)
2279 return (EINVAL);
2280 return (0);
2281 }
2282
2283 /* So much for dev_stdclone() */
2284 static int
dsp_stdclone(char * name,char * namep,char * sep,int use_sep,int * u,int * c)2285 dsp_stdclone(char *name, char *namep, char *sep, int use_sep, int *u, int *c)
2286 {
2287 size_t len;
2288
2289 len = strlen(namep);
2290
2291 if (bcmp(name, namep, len) != 0)
2292 return (ENODEV);
2293
2294 name += len;
2295
2296 if (isdigit(*name) == 0)
2297 return (ENODEV);
2298
2299 len = strlen(sep);
2300
2301 if (*name == '0' && !(name[1] == '\0' || bcmp(name + 1, sep, len) == 0))
2302 return (ENODEV);
2303
2304 for (*u = 0; isdigit(*name) != 0; name++) {
2305 *u *= 10;
2306 *u += *name - '0';
2307 if (*u > dsp_umax)
2308 return (ENODEV);
2309 }
2310
2311 if (*name == '\0')
2312 return ((use_sep == 0) ? 0 : ENODEV);
2313
2314 if (bcmp(name, sep, len) != 0 || isdigit(name[len]) == 0)
2315 return (ENODEV);
2316
2317 name += len;
2318
2319 if (*name == '0' && name[1] != '\0')
2320 return (ENODEV);
2321
2322 for (*c = 0; isdigit(*name) != 0; name++) {
2323 *c *= 10;
2324 *c += *name - '0';
2325 if (*c > dsp_cmax)
2326 return (ENODEV);
2327 }
2328
2329 if (*name != '\0')
2330 return (ENODEV);
2331
2332 return (0);
2333 }
2334
2335 static void
dsp_clone(void * arg,struct ucred * cred,char * name,int namelen,struct cdev ** dev)2336 dsp_clone(void *arg,
2337 struct ucred *cred,
2338 char *name, int namelen, struct cdev **dev)
2339 {
2340 struct snddev_info *d;
2341 struct snd_clone_entry *ce;
2342 struct pcm_channel *c;
2343 int i, unit, udcmask, cunit, devtype, devhw, devcmax, tumax;
2344 char *devname, *devcmp, *devsep;
2345
2346 KASSERT(dsp_umax >= 0 && dsp_cmax >= 0, ("Uninitialized unit!"));
2347
2348 if (*dev != NULL)
2349 return;
2350
2351 unit = -1;
2352 cunit = -1;
2353 devtype = -1;
2354 devhw = 0;
2355 devcmax = -1;
2356 tumax = -1;
2357 devname = NULL;
2358 devsep = NULL;
2359
2360 for (i = 0; unit == -1 &&
2361 i < (sizeof(dsp_cdevs) / sizeof(dsp_cdevs[0])); i++) {
2362 devtype = dsp_cdevs[i].type;
2363 devcmp = dsp_cdevs[i].name;
2364 devsep = dsp_cdevs[i].sep;
2365 devname = dsp_cdevs[i].alias;
2366 if (devname == NULL)
2367 devname = devcmp;
2368 devhw = dsp_cdevs[i].hw;
2369 devcmax = dsp_cdevs[i].max - 1;
2370 if (strcmp(name, devcmp) == 0) {
2371 if (dsp_basename_clone != 0)
2372 unit = snd_unit;
2373 } else if (dsp_stdclone(name, devcmp, devsep,
2374 dsp_cdevs[i].use_sep, &unit, &cunit) != 0) {
2375 unit = -1;
2376 cunit = -1;
2377 }
2378 }
2379
2380 d = devclass_get_softc(pcm_devclass, unit);
2381 if (!PCM_REGISTERED(d) || d->clones == NULL)
2382 return;
2383
2384 /* XXX Need Giant magic entry ??? */
2385
2386 PCM_LOCK(d);
2387 if (snd_clone_disabled(d->clones)) {
2388 PCM_UNLOCK(d);
2389 return;
2390 }
2391
2392 PCM_WAIT(d);
2393 PCM_ACQUIRE(d);
2394 PCM_UNLOCK(d);
2395
2396 udcmask = snd_u2unit(unit) | snd_d2unit(devtype);
2397
2398 if (devhw != 0) {
2399 KASSERT(devcmax <= dsp_cmax,
2400 ("overflow: devcmax=%d, dsp_cmax=%d", devcmax, dsp_cmax));
2401 if (cunit > devcmax) {
2402 PCM_RELEASE_QUICK(d);
2403 return;
2404 }
2405 udcmask |= snd_c2unit(cunit);
2406 CHN_FOREACH(c, d, channels.pcm) {
2407 CHN_LOCK(c);
2408 if (c->unit != udcmask) {
2409 CHN_UNLOCK(c);
2410 continue;
2411 }
2412 CHN_UNLOCK(c);
2413 udcmask &= ~snd_c2unit(cunit);
2414 /*
2415 * Temporarily increase clone maxunit to overcome
2416 * vchan flexibility.
2417 *
2418 * # sysctl dev.pcm.0.play.vchans=256
2419 * dev.pcm.0.play.vchans: 1 -> 256
2420 * # cat /dev/zero > /dev/dsp0.vp255 &
2421 * [1] 17296
2422 * # sysctl dev.pcm.0.play.vchans=0
2423 * dev.pcm.0.play.vchans: 256 -> 1
2424 * # fg
2425 * [1] + running cat /dev/zero > /dev/dsp0.vp255
2426 * ^C
2427 * # cat /dev/zero > /dev/dsp0.vp255
2428 * zsh: operation not supported: /dev/dsp0.vp255
2429 */
2430 tumax = snd_clone_getmaxunit(d->clones);
2431 if (cunit > tumax)
2432 snd_clone_setmaxunit(d->clones, cunit);
2433 else
2434 tumax = -1;
2435 goto dsp_clone_alloc;
2436 }
2437 /*
2438 * Ok, so we're requesting unallocated vchan, but still
2439 * within maximum vchan limit.
2440 */
2441 if (((devtype == SND_DEV_DSPHW_VPLAY && d->pvchancount > 0) ||
2442 (devtype == SND_DEV_DSPHW_VREC && d->rvchancount > 0)) &&
2443 cunit < snd_maxautovchans) {
2444 udcmask &= ~snd_c2unit(cunit);
2445 tumax = snd_clone_getmaxunit(d->clones);
2446 if (cunit > tumax)
2447 snd_clone_setmaxunit(d->clones, cunit);
2448 else
2449 tumax = -1;
2450 goto dsp_clone_alloc;
2451 }
2452 PCM_RELEASE_QUICK(d);
2453 return;
2454 }
2455
2456 dsp_clone_alloc:
2457 ce = snd_clone_alloc(d->clones, dev, &cunit, udcmask);
2458 if (tumax != -1)
2459 snd_clone_setmaxunit(d->clones, tumax);
2460 if (ce != NULL) {
2461 udcmask |= snd_c2unit(cunit);
2462 *dev = make_dev(&dsp_cdevsw, PCMMINOR(udcmask),
2463 UID_ROOT, GID_WHEEL, 0666, "%s%d%s%d",
2464 devname, unit, devsep, cunit);
2465 snd_clone_register(ce, *dev);
2466 }
2467
2468 PCM_RELEASE_QUICK(d);
2469
2470 if (*dev != NULL)
2471 dev_ref(*dev);
2472 }
2473
2474 static void
dsp_sysinit(void * p)2475 dsp_sysinit(void *p)
2476 {
2477 if (dsp_ehtag != NULL)
2478 return;
2479 /* initialize unit numbering */
2480 snd_unit_init();
2481 dsp_umax = PCMMAXUNIT;
2482 dsp_cmax = PCMMAXCHAN;
2483 dsp_ehtag = EVENTHANDLER_REGISTER(dev_clone, dsp_clone, 0, 1000);
2484 }
2485
2486 static void
dsp_sysuninit(void * p)2487 dsp_sysuninit(void *p)
2488 {
2489 if (dsp_ehtag == NULL)
2490 return;
2491 EVENTHANDLER_DEREGISTER(dev_clone, dsp_ehtag);
2492 dsp_ehtag = NULL;
2493 }
2494
2495 SYSINIT(dsp_sysinit, SI_SUB_DRIVERS, SI_ORDER_MIDDLE, dsp_sysinit, NULL);
2496 SYSUNINIT(dsp_sysuninit, SI_SUB_DRIVERS, SI_ORDER_MIDDLE, dsp_sysuninit, NULL);
2497
2498 char *
dsp_unit2name(char * buf,size_t len,int unit)2499 dsp_unit2name(char *buf, size_t len, int unit)
2500 {
2501 int i, dtype;
2502
2503 KASSERT(buf != NULL && len != 0,
2504 ("bogus buf=%p len=%ju", buf, (uintmax_t)len));
2505
2506 dtype = snd_unit2d(unit);
2507
2508 for (i = 0; i < (sizeof(dsp_cdevs) / sizeof(dsp_cdevs[0])); i++) {
2509 if (dtype != dsp_cdevs[i].type || dsp_cdevs[i].alias != NULL)
2510 continue;
2511 snprintf(buf, len, "%s%d%s%d", dsp_cdevs[i].name,
2512 snd_unit2u(unit), dsp_cdevs[i].sep, snd_unit2c(unit));
2513 return (buf);
2514 }
2515
2516 return (NULL);
2517 }
2518
2519 /**
2520 * @brief Handler for SNDCTL_AUDIOINFO.
2521 *
2522 * Gathers information about the audio device specified in ai->dev. If
2523 * ai->dev == -1, then this function gathers information about the current
2524 * device. If the call comes in on a non-audio device and ai->dev == -1,
2525 * return EINVAL.
2526 *
2527 * This routine is supposed to go practically straight to the hardware,
2528 * getting capabilities directly from the sound card driver, side-stepping
2529 * the intermediate channel interface.
2530 *
2531 * Note, however, that the usefulness of this command is significantly
2532 * decreased when requesting info about any device other than the one serving
2533 * the request. While each snddev_channel refers to a specific device node,
2534 * the converse is *not* true. Currently, when a sound device node is opened,
2535 * the sound subsystem scans for an available audio channel (or channels, if
2536 * opened in read+write) and then assigns them to the si_drv[12] private
2537 * data fields. As a result, any information returned linking a channel to
2538 * a specific character device isn't necessarily accurate.
2539 *
2540 * @note
2541 * Calling threads must not hold any snddev_info or pcm_channel locks.
2542 *
2543 * @param dev device on which the ioctl was issued
2544 * @param ai ioctl request data container
2545 *
2546 * @retval 0 success
2547 * @retval EINVAL ai->dev specifies an invalid device
2548 *
2549 * @todo Verify correctness of Doxygen tags. ;)
2550 */
2551 int
dsp_oss_audioinfo(struct cdev * i_dev,oss_audioinfo * ai)2552 dsp_oss_audioinfo(struct cdev *i_dev, oss_audioinfo *ai)
2553 {
2554 struct pcmchan_caps *caps;
2555 struct pcm_channel *ch;
2556 struct snddev_info *d;
2557 uint32_t fmts;
2558 int i, nchan, *rates, minch, maxch;
2559 char *devname, buf[CHN_NAMELEN];
2560
2561 /*
2562 * If probing the device that received the ioctl, make sure it's a
2563 * DSP device. (Users may use this ioctl with /dev/mixer and
2564 * /dev/midi.)
2565 */
2566 if (ai->dev == -1 && i_dev->si_devsw != &dsp_cdevsw)
2567 return (EINVAL);
2568
2569 ch = NULL;
2570 devname = NULL;
2571 nchan = 0;
2572 bzero(buf, sizeof(buf));
2573
2574 /*
2575 * Search for the requested audio device (channel). Start by
2576 * iterating over pcm devices.
2577 */
2578 for (i = 0; pcm_devclass != NULL &&
2579 i < devclass_get_maxunit(pcm_devclass); i++) {
2580 d = devclass_get_softc(pcm_devclass, i);
2581 if (!PCM_REGISTERED(d))
2582 continue;
2583
2584 /* XXX Need Giant magic entry ??? */
2585
2586 /* See the note in function docblock */
2587 PCM_UNLOCKASSERT(d);
2588 PCM_LOCK(d);
2589
2590 CHN_FOREACH(ch, d, channels.pcm) {
2591 CHN_UNLOCKASSERT(ch);
2592 CHN_LOCK(ch);
2593 if (ai->dev == -1) {
2594 if (DSP_REGISTERED(d, i_dev) &&
2595 (ch == PCM_RDCH(i_dev) || /* record ch */
2596 ch == PCM_WRCH(i_dev))) { /* playback ch */
2597 devname = dsp_unit2name(buf,
2598 sizeof(buf), ch->unit);
2599 }
2600 } else if (ai->dev == nchan) {
2601 devname = dsp_unit2name(buf, sizeof(buf),
2602 ch->unit);
2603 }
2604 if (devname != NULL)
2605 break;
2606 CHN_UNLOCK(ch);
2607 ++nchan;
2608 }
2609
2610 if (devname != NULL) {
2611 /*
2612 * At this point, the following synchronization stuff
2613 * has happened:
2614 * - a specific PCM device is locked.
2615 * - a specific audio channel has been locked, so be
2616 * sure to unlock when exiting;
2617 */
2618
2619 caps = chn_getcaps(ch);
2620
2621 /*
2622 * With all handles collected, zero out the user's
2623 * container and begin filling in its fields.
2624 */
2625 bzero((void *)ai, sizeof(oss_audioinfo));
2626
2627 ai->dev = nchan;
2628 strlcpy(ai->name, ch->name, sizeof(ai->name));
2629
2630 if ((ch->flags & CHN_F_BUSY) == 0)
2631 ai->busy = 0;
2632 else
2633 ai->busy = (ch->direction == PCMDIR_PLAY) ? OPEN_WRITE : OPEN_READ;
2634
2635 /**
2636 * @note
2637 * @c cmd - OSSv4 docs: "Only supported under Linux at
2638 * this moment." Cop-out, I know, but I'll save
2639 * running around in the process table for later.
2640 * Is there a risk of leaking information?
2641 */
2642 ai->pid = ch->pid;
2643
2644 /*
2645 * These flags stolen from SNDCTL_DSP_GETCAPS handler.
2646 * Note, however, that a single channel operates in
2647 * only one direction, so PCM_CAP_DUPLEX is out.
2648 */
2649 /**
2650 * @todo @c SNDCTL_AUDIOINFO::caps - Make drivers keep
2651 * these in pcmchan::caps?
2652 */
2653 ai->caps = PCM_CAP_REALTIME | PCM_CAP_MMAP | PCM_CAP_TRIGGER |
2654 ((ch->direction == PCMDIR_PLAY) ? PCM_CAP_OUTPUT : PCM_CAP_INPUT);
2655
2656 /*
2657 * Collect formats supported @b natively by the
2658 * device. Also determine min/max channels. (I.e.,
2659 * mono, stereo, or both?)
2660 *
2661 * If any channel is stereo, maxch = 2;
2662 * if all channels are stereo, minch = 2, too;
2663 * if any channel is mono, minch = 1;
2664 * and if all channels are mono, maxch = 1.
2665 */
2666 minch = 0;
2667 maxch = 0;
2668 fmts = 0;
2669 for (i = 0; caps->fmtlist[i]; i++) {
2670 fmts |= caps->fmtlist[i];
2671 if (AFMT_CHANNEL(caps->fmtlist[i]) > 1) {
2672 minch = (minch == 0) ? 2 : minch;
2673 maxch = 2;
2674 } else {
2675 minch = 1;
2676 maxch = (maxch == 0) ? 1 : maxch;
2677 }
2678 }
2679
2680 if (ch->direction == PCMDIR_PLAY)
2681 ai->oformats = fmts;
2682 else
2683 ai->iformats = fmts;
2684
2685 /**
2686 * @note
2687 * @c magic - OSSv4 docs: "Reserved for internal use
2688 * by OSS."
2689 *
2690 * @par
2691 * @c card_number - OSSv4 docs: "Number of the sound
2692 * card where this device belongs or -1 if this
2693 * information is not available. Applications
2694 * should normally not use this field for any
2695 * purpose."
2696 */
2697 ai->card_number = -1;
2698 /**
2699 * @todo @c song_name - depends first on
2700 * SNDCTL_[GS]ETSONG @todo @c label - depends
2701 * on SNDCTL_[GS]ETLABEL
2702 * @todo @c port_number - routing information?
2703 */
2704 ai->port_number = -1;
2705 ai->mixer_dev = (d->mixer_dev != NULL) ? PCMUNIT(d->mixer_dev) : -1;
2706 /**
2707 * @note
2708 * @c real_device - OSSv4 docs: "Obsolete."
2709 */
2710 ai->real_device = -1;
2711 strlcpy(ai->devnode, "/dev/", sizeof(ai->devnode));
2712 strlcat(ai->devnode, devname, sizeof(ai->devnode));
2713 ai->enabled = device_is_attached(d->dev) ? 1 : 0;
2714 /**
2715 * @note
2716 * @c flags - OSSv4 docs: "Reserved for future use."
2717 *
2718 * @note
2719 * @c binding - OSSv4 docs: "Reserved for future use."
2720 *
2721 * @todo @c handle - haven't decided how to generate
2722 * this yet; bus, vendor, device IDs?
2723 */
2724 ai->min_rate = caps->minspeed;
2725 ai->max_rate = caps->maxspeed;
2726
2727 ai->min_channels = minch;
2728 ai->max_channels = maxch;
2729
2730 ai->nrates = chn_getrates(ch, &rates);
2731 if (ai->nrates > OSS_MAX_SAMPLE_RATES)
2732 ai->nrates = OSS_MAX_SAMPLE_RATES;
2733
2734 for (i = 0; i < ai->nrates; i++)
2735 ai->rates[i] = rates[i];
2736
2737 ai->next_play_engine = 0;
2738 ai->next_rec_engine = 0;
2739
2740 CHN_UNLOCK(ch);
2741 }
2742
2743 PCM_UNLOCK(d);
2744
2745 if (devname != NULL)
2746 return (0);
2747 }
2748
2749 /* Exhausted the search -- nothing is locked, so return. */
2750 return (EINVAL);
2751 }
2752
2753 /**
2754 * @brief Assigns a PCM channel to a sync group.
2755 *
2756 * Sync groups are used to enable audio operations on multiple devices
2757 * simultaneously. They may be used with any number of devices and may
2758 * span across applications. Devices are added to groups with
2759 * the SNDCTL_DSP_SYNCGROUP ioctl, and operations are triggered with the
2760 * SNDCTL_DSP_SYNCSTART ioctl.
2761 *
2762 * If the @c id field of the @c group parameter is set to zero, then a new
2763 * sync group is created. Otherwise, wrch and rdch (if set) are added to
2764 * the group specified.
2765 *
2766 * @todo As far as memory allocation, should we assume that things are
2767 * okay and allocate with M_WAITOK before acquiring channel locks,
2768 * freeing later if not?
2769 *
2770 * @param wrch output channel associated w/ device (if any)
2771 * @param rdch input channel associated w/ device (if any)
2772 * @param group Sync group parameters
2773 *
2774 * @retval 0 success
2775 * @retval non-zero error to be propagated upstream
2776 */
2777 static int
dsp_oss_syncgroup(struct pcm_channel * wrch,struct pcm_channel * rdch,oss_syncgroup * group)2778 dsp_oss_syncgroup(struct pcm_channel *wrch, struct pcm_channel *rdch, oss_syncgroup *group)
2779 {
2780 struct pcmchan_syncmember *smrd, *smwr;
2781 struct pcmchan_syncgroup *sg;
2782 int ret, sg_ids[3];
2783
2784 smrd = NULL;
2785 smwr = NULL;
2786 sg = NULL;
2787 ret = 0;
2788
2789 /*
2790 * Free_unr() may sleep, so store released syncgroup IDs until after
2791 * all locks are released.
2792 */
2793 sg_ids[0] = sg_ids[1] = sg_ids[2] = 0;
2794
2795 PCM_SG_LOCK();
2796
2797 /*
2798 * - Insert channel(s) into group's member list.
2799 * - Set CHN_F_NOTRIGGER on channel(s).
2800 * - Stop channel(s).
2801 */
2802
2803 /*
2804 * If device's channels are already mapped to a group, unmap them.
2805 */
2806 if (wrch) {
2807 CHN_LOCK(wrch);
2808 sg_ids[0] = chn_syncdestroy(wrch);
2809 }
2810
2811 if (rdch) {
2812 CHN_LOCK(rdch);
2813 sg_ids[1] = chn_syncdestroy(rdch);
2814 }
2815
2816 /*
2817 * Verify that mode matches character device properites.
2818 * - Bail if PCM_ENABLE_OUTPUT && wrch == NULL.
2819 * - Bail if PCM_ENABLE_INPUT && rdch == NULL.
2820 */
2821 if (((wrch == NULL) && (group->mode & PCM_ENABLE_OUTPUT)) ||
2822 ((rdch == NULL) && (group->mode & PCM_ENABLE_INPUT))) {
2823 ret = EINVAL;
2824 goto out;
2825 }
2826
2827 /*
2828 * An id of zero indicates the user wants to create a new
2829 * syncgroup.
2830 */
2831 if (group->id == 0) {
2832 sg = (struct pcmchan_syncgroup *)malloc(sizeof(*sg), M_DEVBUF, M_NOWAIT);
2833 if (sg != NULL) {
2834 SLIST_INIT(&sg->members);
2835 sg->id = alloc_unr(pcmsg_unrhdr);
2836
2837 group->id = sg->id;
2838 SLIST_INSERT_HEAD(&snd_pcm_syncgroups, sg, link);
2839 } else
2840 ret = ENOMEM;
2841 } else {
2842 SLIST_FOREACH(sg, &snd_pcm_syncgroups, link) {
2843 if (sg->id == group->id)
2844 break;
2845 }
2846 if (sg == NULL)
2847 ret = EINVAL;
2848 }
2849
2850 /* Couldn't create or find a syncgroup. Fail. */
2851 if (sg == NULL)
2852 goto out;
2853
2854 /*
2855 * Allocate a syncmember, assign it and a channel together, and
2856 * insert into syncgroup.
2857 */
2858 if (group->mode & PCM_ENABLE_INPUT) {
2859 smrd = (struct pcmchan_syncmember *)malloc(sizeof(*smrd), M_DEVBUF, M_NOWAIT);
2860 if (smrd == NULL) {
2861 ret = ENOMEM;
2862 goto out;
2863 }
2864
2865 SLIST_INSERT_HEAD(&sg->members, smrd, link);
2866 smrd->parent = sg;
2867 smrd->ch = rdch;
2868
2869 chn_abort(rdch);
2870 rdch->flags |= CHN_F_NOTRIGGER;
2871 rdch->sm = smrd;
2872 }
2873
2874 if (group->mode & PCM_ENABLE_OUTPUT) {
2875 smwr = (struct pcmchan_syncmember *)malloc(sizeof(*smwr), M_DEVBUF, M_NOWAIT);
2876 if (smwr == NULL) {
2877 ret = ENOMEM;
2878 goto out;
2879 }
2880
2881 SLIST_INSERT_HEAD(&sg->members, smwr, link);
2882 smwr->parent = sg;
2883 smwr->ch = wrch;
2884
2885 chn_abort(wrch);
2886 wrch->flags |= CHN_F_NOTRIGGER;
2887 wrch->sm = smwr;
2888 }
2889
2890
2891 out:
2892 if (ret != 0) {
2893 if (smrd != NULL)
2894 free(smrd, M_DEVBUF);
2895 if ((sg != NULL) && SLIST_EMPTY(&sg->members)) {
2896 sg_ids[2] = sg->id;
2897 SLIST_REMOVE(&snd_pcm_syncgroups, sg, pcmchan_syncgroup, link);
2898 free(sg, M_DEVBUF);
2899 }
2900
2901 if (wrch)
2902 wrch->sm = NULL;
2903 if (rdch)
2904 rdch->sm = NULL;
2905 }
2906
2907 if (wrch)
2908 CHN_UNLOCK(wrch);
2909 if (rdch)
2910 CHN_UNLOCK(rdch);
2911
2912 PCM_SG_UNLOCK();
2913
2914 if (sg_ids[0])
2915 free_unr(pcmsg_unrhdr, sg_ids[0]);
2916 if (sg_ids[1])
2917 free_unr(pcmsg_unrhdr, sg_ids[1]);
2918 if (sg_ids[2])
2919 free_unr(pcmsg_unrhdr, sg_ids[2]);
2920
2921 return (ret);
2922 }
2923
2924 /**
2925 * @brief Launch a sync group into action
2926 *
2927 * Sync groups are established via SNDCTL_DSP_SYNCGROUP. This function
2928 * iterates over all members, triggering them along the way.
2929 *
2930 * @note Caller must not hold any channel locks.
2931 *
2932 * @param sg_id sync group identifier
2933 *
2934 * @retval 0 success
2935 * @retval non-zero error worthy of propagating upstream to user
2936 */
2937 static int
dsp_oss_syncstart(int sg_id)2938 dsp_oss_syncstart(int sg_id)
2939 {
2940 struct pcmchan_syncmember *sm, *sm_tmp;
2941 struct pcmchan_syncgroup *sg;
2942 struct pcm_channel *c;
2943 int ret, needlocks;
2944
2945 /* Get the synclists lock */
2946 PCM_SG_LOCK();
2947
2948 do {
2949 ret = 0;
2950 needlocks = 0;
2951
2952 /* Search for syncgroup by ID */
2953 SLIST_FOREACH(sg, &snd_pcm_syncgroups, link) {
2954 if (sg->id == sg_id)
2955 break;
2956 }
2957
2958 /* Return EINVAL if not found */
2959 if (sg == NULL) {
2960 ret = EINVAL;
2961 break;
2962 }
2963
2964 /* Any removals resulting in an empty group should've handled this */
2965 KASSERT(!SLIST_EMPTY(&sg->members), ("found empty syncgroup"));
2966
2967 /*
2968 * Attempt to lock all member channels - if any are already
2969 * locked, unlock those acquired, sleep for a bit, and try
2970 * again.
2971 */
2972 SLIST_FOREACH(sm, &sg->members, link) {
2973 if (CHN_TRYLOCK(sm->ch) == 0) {
2974 int timo = hz * 5/1000;
2975 if (timo < 1)
2976 timo = 1;
2977
2978 /* Release all locked channels so far, retry */
2979 SLIST_FOREACH(sm_tmp, &sg->members, link) {
2980 /* sm is the member already locked */
2981 if (sm == sm_tmp)
2982 break;
2983 CHN_UNLOCK(sm_tmp->ch);
2984 }
2985
2986 /** @todo Is PRIBIO correct/ */
2987 ret = msleep(sm, &snd_pcm_syncgroups_mtx,
2988 PRIBIO | PCATCH, "pcmsg", timo);
2989 if (ret == EINTR || ret == ERESTART)
2990 break;
2991
2992 needlocks = 1;
2993 ret = 0; /* Assumes ret == EAGAIN... */
2994 }
2995 }
2996 } while (needlocks && ret == 0);
2997
2998 /* Proceed only if no errors encountered. */
2999 if (ret == 0) {
3000 /* Launch channels */
3001 while ((sm = SLIST_FIRST(&sg->members)) != NULL) {
3002 SLIST_REMOVE_HEAD(&sg->members, link);
3003
3004 c = sm->ch;
3005 c->sm = NULL;
3006 chn_start(c, 1);
3007 c->flags &= ~CHN_F_NOTRIGGER;
3008 CHN_UNLOCK(c);
3009
3010 free(sm, M_DEVBUF);
3011 }
3012
3013 SLIST_REMOVE(&snd_pcm_syncgroups, sg, pcmchan_syncgroup, link);
3014 free(sg, M_DEVBUF);
3015 }
3016
3017 PCM_SG_UNLOCK();
3018
3019 /*
3020 * Free_unr() may sleep, so be sure to give up the syncgroup lock
3021 * first.
3022 */
3023 if (ret == 0)
3024 free_unr(pcmsg_unrhdr, sg_id);
3025
3026 return (ret);
3027 }
3028
3029 /**
3030 * @brief Handler for SNDCTL_DSP_POLICY
3031 *
3032 * The SNDCTL_DSP_POLICY ioctl is a simpler interface to control fragment
3033 * size and count like with SNDCTL_DSP_SETFRAGMENT. Instead of the user
3034 * specifying those two parameters, s/he simply selects a number from 0..10
3035 * which corresponds to a buffer size. Smaller numbers request smaller
3036 * buffers with lower latencies (at greater overhead from more frequent
3037 * interrupts), while greater numbers behave in the opposite manner.
3038 *
3039 * The 4Front spec states that a value of 5 should be the default. However,
3040 * this implementation deviates slightly by using a linear scale without
3041 * consulting drivers. I.e., even though drivers may have different default
3042 * buffer sizes, a policy argument of 5 will have the same result across
3043 * all drivers.
3044 *
3045 * See http://manuals.opensound.com/developer/SNDCTL_DSP_POLICY.html for
3046 * more information.
3047 *
3048 * @todo When SNDCTL_DSP_COOKEDMODE is supported, it'll be necessary to
3049 * work with hardware drivers directly.
3050 *
3051 * @note PCM channel arguments must not be locked by caller.
3052 *
3053 * @param wrch Pointer to opened playback channel (optional; may be NULL)
3054 * @param rdch " recording channel (optional; may be NULL)
3055 * @param policy Integer from [0:10]
3056 *
3057 * @retval 0 constant (for now)
3058 */
3059 static int
dsp_oss_policy(struct pcm_channel * wrch,struct pcm_channel * rdch,int policy)3060 dsp_oss_policy(struct pcm_channel *wrch, struct pcm_channel *rdch, int policy)
3061 {
3062 int ret;
3063
3064 if (policy < CHN_POLICY_MIN || policy > CHN_POLICY_MAX)
3065 return (EIO);
3066
3067 /* Default: success */
3068 ret = 0;
3069
3070 if (rdch) {
3071 CHN_LOCK(rdch);
3072 ret = chn_setlatency(rdch, policy);
3073 CHN_UNLOCK(rdch);
3074 }
3075
3076 if (wrch && ret == 0) {
3077 CHN_LOCK(wrch);
3078 ret = chn_setlatency(wrch, policy);
3079 CHN_UNLOCK(wrch);
3080 }
3081
3082 if (ret)
3083 ret = EIO;
3084
3085 return (ret);
3086 }
3087
3088 /**
3089 * @brief Enable or disable "cooked" mode
3090 *
3091 * This is a handler for @c SNDCTL_DSP_COOKEDMODE. When in cooked mode, which
3092 * is the default, the sound system handles rate and format conversions
3093 * automatically (ex: user writing 11025Hz/8 bit/unsigned but card only
3094 * operates with 44100Hz/16bit/signed samples).
3095 *
3096 * Disabling cooked mode is intended for applications wanting to mmap()
3097 * a sound card's buffer space directly, bypassing the FreeBSD 2-stage
3098 * feeder architecture, presumably to gain as much control over audio
3099 * hardware as possible.
3100 *
3101 * See @c http://manuals.opensound.com/developer/SNDCTL_DSP_COOKEDMODE.html
3102 * for more details.
3103 *
3104 * @param wrch playback channel (optional; may be NULL)
3105 * @param rdch recording channel (optional; may be NULL)
3106 * @param enabled 0 = raw mode, 1 = cooked mode
3107 *
3108 * @retval EINVAL Operation not yet supported.
3109 */
3110 static int
dsp_oss_cookedmode(struct pcm_channel * wrch,struct pcm_channel * rdch,int enabled)3111 dsp_oss_cookedmode(struct pcm_channel *wrch, struct pcm_channel *rdch, int enabled)
3112 {
3113
3114 /*
3115 * XXX I just don't get it. Why don't they call it
3116 * "BITPERFECT" ~ SNDCTL_DSP_BITPERFECT !?!?.
3117 * This is just plain so confusing, incoherent,
3118 * <insert any non-printable characters here>.
3119 */
3120 if (!(enabled == 1 || enabled == 0))
3121 return (EINVAL);
3122
3123 /*
3124 * I won't give in. I'm inverting its logic here and now.
3125 * Brag all you want, but "BITPERFECT" should be the better
3126 * term here.
3127 */
3128 enabled ^= 0x00000001;
3129
3130 if (wrch != NULL) {
3131 CHN_LOCK(wrch);
3132 wrch->flags &= ~CHN_F_BITPERFECT;
3133 wrch->flags |= (enabled != 0) ? CHN_F_BITPERFECT : 0x00000000;
3134 CHN_UNLOCK(wrch);
3135 }
3136
3137 if (rdch != NULL) {
3138 CHN_LOCK(rdch);
3139 rdch->flags &= ~CHN_F_BITPERFECT;
3140 rdch->flags |= (enabled != 0) ? CHN_F_BITPERFECT : 0x00000000;
3141 CHN_UNLOCK(rdch);
3142 }
3143
3144 return (0);
3145 }
3146
3147 /**
3148 * @brief Retrieve channel interleaving order
3149 *
3150 * This is the handler for @c SNDCTL_DSP_GET_CHNORDER.
3151 *
3152 * See @c http://manuals.opensound.com/developer/SNDCTL_DSP_GET_CHNORDER.html
3153 * for more details.
3154 *
3155 * @note As the ioctl definition is still under construction, FreeBSD
3156 * does not currently support SNDCTL_DSP_GET_CHNORDER.
3157 *
3158 * @param wrch playback channel (optional; may be NULL)
3159 * @param rdch recording channel (optional; may be NULL)
3160 * @param map channel map (result will be stored there)
3161 *
3162 * @retval EINVAL Operation not yet supported.
3163 */
3164 static int
dsp_oss_getchnorder(struct pcm_channel * wrch,struct pcm_channel * rdch,unsigned long long * map)3165 dsp_oss_getchnorder(struct pcm_channel *wrch, struct pcm_channel *rdch, unsigned long long *map)
3166 {
3167 struct pcm_channel *ch;
3168 int ret;
3169
3170 ch = (wrch != NULL) ? wrch : rdch;
3171 if (ch != NULL) {
3172 CHN_LOCK(ch);
3173 ret = chn_oss_getorder(ch, map);
3174 CHN_UNLOCK(ch);
3175 } else
3176 ret = EINVAL;
3177
3178 return (ret);
3179 }
3180
3181 /**
3182 * @brief Specify channel interleaving order
3183 *
3184 * This is the handler for @c SNDCTL_DSP_SET_CHNORDER.
3185 *
3186 * @note As the ioctl definition is still under construction, FreeBSD
3187 * does not currently support @c SNDCTL_DSP_SET_CHNORDER.
3188 *
3189 * @param wrch playback channel (optional; may be NULL)
3190 * @param rdch recording channel (optional; may be NULL)
3191 * @param map channel map
3192 *
3193 * @retval EINVAL Operation not yet supported.
3194 */
3195 static int
dsp_oss_setchnorder(struct pcm_channel * wrch,struct pcm_channel * rdch,unsigned long long * map)3196 dsp_oss_setchnorder(struct pcm_channel *wrch, struct pcm_channel *rdch, unsigned long long *map)
3197 {
3198 int ret;
3199
3200 ret = 0;
3201
3202 if (wrch != NULL) {
3203 CHN_LOCK(wrch);
3204 ret = chn_oss_setorder(wrch, map);
3205 CHN_UNLOCK(wrch);
3206 }
3207
3208 if (ret == 0 && rdch != NULL) {
3209 CHN_LOCK(rdch);
3210 ret = chn_oss_setorder(rdch, map);
3211 CHN_UNLOCK(rdch);
3212 }
3213
3214 return (ret);
3215 }
3216
3217 static int
dsp_oss_getchannelmask(struct pcm_channel * wrch,struct pcm_channel * rdch,int * mask)3218 dsp_oss_getchannelmask(struct pcm_channel *wrch, struct pcm_channel *rdch,
3219 int *mask)
3220 {
3221 struct pcm_channel *ch;
3222 uint32_t chnmask;
3223 int ret;
3224
3225 chnmask = 0;
3226 ch = (wrch != NULL) ? wrch : rdch;
3227
3228 if (ch != NULL) {
3229 CHN_LOCK(ch);
3230 ret = chn_oss_getmask(ch, &chnmask);
3231 CHN_UNLOCK(ch);
3232 } else
3233 ret = EINVAL;
3234
3235 if (ret == 0)
3236 *mask = chnmask;
3237
3238 return (ret);
3239 }
3240
3241 #ifdef OSSV4_EXPERIMENT
3242 /**
3243 * @brief Retrieve an audio device's label
3244 *
3245 * This is a handler for the @c SNDCTL_GETLABEL ioctl.
3246 *
3247 * See @c http://manuals.opensound.com/developer/SNDCTL_GETLABEL.html
3248 * for more details.
3249 *
3250 * From Hannu@4Front: "For example ossxmix (just like some HW mixer
3251 * consoles) can show variable "labels" for certain controls. By default
3252 * the application name (say quake) is shown as the label but
3253 * applications may change the labels themselves."
3254 *
3255 * @note As the ioctl definition is still under construction, FreeBSD
3256 * does not currently support @c SNDCTL_GETLABEL.
3257 *
3258 * @param wrch playback channel (optional; may be NULL)
3259 * @param rdch recording channel (optional; may be NULL)
3260 * @param label label gets copied here
3261 *
3262 * @retval EINVAL Operation not yet supported.
3263 */
3264 static int
dsp_oss_getlabel(struct pcm_channel * wrch,struct pcm_channel * rdch,oss_label_t * label)3265 dsp_oss_getlabel(struct pcm_channel *wrch, struct pcm_channel *rdch, oss_label_t *label)
3266 {
3267 return (EINVAL);
3268 }
3269
3270 /**
3271 * @brief Specify an audio device's label
3272 *
3273 * This is a handler for the @c SNDCTL_SETLABEL ioctl. Please see the
3274 * comments for @c dsp_oss_getlabel immediately above.
3275 *
3276 * See @c http://manuals.opensound.com/developer/SNDCTL_GETLABEL.html
3277 * for more details.
3278 *
3279 * @note As the ioctl definition is still under construction, FreeBSD
3280 * does not currently support SNDCTL_SETLABEL.
3281 *
3282 * @param wrch playback channel (optional; may be NULL)
3283 * @param rdch recording channel (optional; may be NULL)
3284 * @param label label gets copied from here
3285 *
3286 * @retval EINVAL Operation not yet supported.
3287 */
3288 static int
dsp_oss_setlabel(struct pcm_channel * wrch,struct pcm_channel * rdch,oss_label_t * label)3289 dsp_oss_setlabel(struct pcm_channel *wrch, struct pcm_channel *rdch, oss_label_t *label)
3290 {
3291 return (EINVAL);
3292 }
3293
3294 /**
3295 * @brief Retrieve name of currently played song
3296 *
3297 * This is a handler for the @c SNDCTL_GETSONG ioctl. Audio players could
3298 * tell the system the name of the currently playing song, which would be
3299 * visible in @c /dev/sndstat.
3300 *
3301 * See @c http://manuals.opensound.com/developer/SNDCTL_GETSONG.html
3302 * for more details.
3303 *
3304 * @note As the ioctl definition is still under construction, FreeBSD
3305 * does not currently support SNDCTL_GETSONG.
3306 *
3307 * @param wrch playback channel (optional; may be NULL)
3308 * @param rdch recording channel (optional; may be NULL)
3309 * @param song song name gets copied here
3310 *
3311 * @retval EINVAL Operation not yet supported.
3312 */
3313 static int
dsp_oss_getsong(struct pcm_channel * wrch,struct pcm_channel * rdch,oss_longname_t * song)3314 dsp_oss_getsong(struct pcm_channel *wrch, struct pcm_channel *rdch, oss_longname_t *song)
3315 {
3316 return (EINVAL);
3317 }
3318
3319 /**
3320 * @brief Retrieve name of currently played song
3321 *
3322 * This is a handler for the @c SNDCTL_SETSONG ioctl. Audio players could
3323 * tell the system the name of the currently playing song, which would be
3324 * visible in @c /dev/sndstat.
3325 *
3326 * See @c http://manuals.opensound.com/developer/SNDCTL_SETSONG.html
3327 * for more details.
3328 *
3329 * @note As the ioctl definition is still under construction, FreeBSD
3330 * does not currently support SNDCTL_SETSONG.
3331 *
3332 * @param wrch playback channel (optional; may be NULL)
3333 * @param rdch recording channel (optional; may be NULL)
3334 * @param song song name gets copied from here
3335 *
3336 * @retval EINVAL Operation not yet supported.
3337 */
3338 static int
dsp_oss_setsong(struct pcm_channel * wrch,struct pcm_channel * rdch,oss_longname_t * song)3339 dsp_oss_setsong(struct pcm_channel *wrch, struct pcm_channel *rdch, oss_longname_t *song)
3340 {
3341 return (EINVAL);
3342 }
3343
3344 /**
3345 * @brief Rename a device
3346 *
3347 * This is a handler for the @c SNDCTL_SETNAME ioctl.
3348 *
3349 * See @c http://manuals.opensound.com/developer/SNDCTL_SETNAME.html for
3350 * more details.
3351 *
3352 * From Hannu@4Front: "This call is used to change the device name
3353 * reported in /dev/sndstat and ossinfo. So instead of using some generic
3354 * 'OSS loopback audio (MIDI) driver' the device may be given a meaningfull
3355 * name depending on the current context (for example 'OSS virtual wave table
3356 * synth' or 'VoIP link to London')."
3357 *
3358 * @note As the ioctl definition is still under construction, FreeBSD
3359 * does not currently support SNDCTL_SETNAME.
3360 *
3361 * @param wrch playback channel (optional; may be NULL)
3362 * @param rdch recording channel (optional; may be NULL)
3363 * @param name new device name gets copied from here
3364 *
3365 * @retval EINVAL Operation not yet supported.
3366 */
3367 static int
dsp_oss_setname(struct pcm_channel * wrch,struct pcm_channel * rdch,oss_longname_t * name)3368 dsp_oss_setname(struct pcm_channel *wrch, struct pcm_channel *rdch, oss_longname_t *name)
3369 {
3370 return (EINVAL);
3371 }
3372 #endif /* !OSSV4_EXPERIMENT */
3373