54fffca8a8e309546597902e42543f3e680093df
[dragonfly.git] / sys / dev / sound / pcm / channel.c
1 /*-
2  * Copyright (c) 1999 Cameron Grant <cg@freebsd.org>
3  * Portions Copyright by Luigi Rizzo - 1997-99
4  * All rights reserved.
5  *
6  * Redistribution and use in source and binary forms, with or without
7  * modification, are permitted provided that the following conditions
8  * are met:
9  * 1. Redistributions of source code must retain the above copyright
10  *    notice, this list of conditions and the following disclaimer.
11  * 2. Redistributions in binary form must reproduce the above copyright
12  *    notice, this list of conditions and the following disclaimer in the
13  *    documentation and/or other materials provided with the distribution.
14  *
15  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
16  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
17  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
18  * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
19  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
20  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
21  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
22  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
23  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
24  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
25  * SUCH DAMAGE.
26  *
27  * $FreeBSD: src/sys/dev/sound/pcm/channel.c,v 1.99.2.5 2007/05/13 20:53:39 ariff Exp $
28  * $DragonFly: src/sys/dev/sound/pcm/channel.c,v 1.15 2008/01/05 13:34:22 corecode Exp $
29  */
30
31 #include "use_isa.h"
32
33 #include <dev/sound/pcm/sound.h>
34 #include <sys/vnode.h>          /* IO_NDELAY */
35
36 #include "feeder_if.h"
37
38 SND_DECLARE_FILE("$DragonFly: src/sys/dev/sound/pcm/channel.c,v 1.15 2008/01/05 13:34:22 corecode Exp $");
39
40 #define MIN_CHUNK_SIZE          256     /* for uiomove etc. */
41 #if 0
42 #define DMA_ALIGN_THRESHOLD     4
43 #define DMA_ALIGN_MASK          (~(DMA_ALIGN_THRESHOLD - 1))
44 #endif
45
46 #define CANCHANGE(c) (!(c->flags & CHN_F_TRIGGERED))
47
48 /*
49 #define DEB(x) x
50 */
51
52 static int chn_targetirqrate = 32;
53 TUNABLE_INT("hw.snd.targetirqrate", &chn_targetirqrate);
54
55 static int
56 sysctl_hw_snd_targetirqrate(SYSCTL_HANDLER_ARGS)
57 {
58         int err, val;
59
60         val = chn_targetirqrate;
61         err = sysctl_handle_int(oidp, &val, sizeof(val), req);
62         if (val < 16 || val > 512)
63                 err = EINVAL;
64         else
65                 chn_targetirqrate = val;
66
67         return err;
68 }
69 SYSCTL_PROC(_hw_snd, OID_AUTO, targetirqrate, CTLTYPE_INT | CTLFLAG_RW,
70         0, sizeof(int), sysctl_hw_snd_targetirqrate, "I", "");
71 static int report_soft_formats = 1;
72 SYSCTL_INT(_hw_snd, OID_AUTO, report_soft_formats, CTLFLAG_RW,
73         &report_soft_formats, 1, "report software-emulated formats");
74
75 static int chn_buildfeeder(struct pcm_channel *c);
76
77 static void
78 chn_lockinit(struct pcm_channel *c, int dir)
79 {
80         switch(dir) {
81         case PCMDIR_PLAY:
82                 c->lock = snd_mtxcreate(c->name, "pcm play channel");
83                 break;
84         case PCMDIR_REC:
85                 c->lock = snd_mtxcreate(c->name, "pcm record channel");
86                 break;
87         case PCMDIR_VIRTUAL:
88                 c->lock = snd_mtxcreate(c->name, "pcm virtual play channel");
89                 break;
90         case 0:
91                 c->lock = snd_mtxcreate(c->name, "pcm fake channel");
92                 break;
93         }
94 }
95
96 static void
97 chn_lockdestroy(struct pcm_channel *c)
98 {
99         snd_mtxfree(c->lock);
100 }
101
102 static int
103 chn_polltrigger(struct pcm_channel *c)
104 {
105         struct snd_dbuf *bs = c->bufsoft;
106         unsigned amt, lim;
107
108         CHN_LOCKASSERT(c);
109         if (c->flags & CHN_F_MAPPED) {
110                 if (sndbuf_getprevblocks(bs) == 0)
111                         return 1;
112                 else
113                         return (sndbuf_getblocks(bs) > sndbuf_getprevblocks(bs))? 1 : 0;
114         } else {
115                 amt = (c->direction == PCMDIR_PLAY)? sndbuf_getfree(bs) : sndbuf_getready(bs);
116 #if 0
117                 lim = (c->flags & CHN_F_HAS_SIZE)? sndbuf_getblksz(bs) : 1;
118 #endif
119                 lim = 1;
120                 return (amt >= lim)? 1 : 0;
121         }
122         return 0;
123 }
124
125 static int
126 chn_pollreset(struct pcm_channel *c)
127 {
128         struct snd_dbuf *bs = c->bufsoft;
129
130         CHN_LOCKASSERT(c);
131         sndbuf_updateprevtotal(bs);
132         return 1;
133 }
134
135 static void
136 chn_wakeup(struct pcm_channel *c)
137 {
138         struct snd_dbuf *bs = c->bufsoft;
139         struct pcmchan_children *pce;
140
141         CHN_LOCKASSERT(c);
142         if (SLIST_EMPTY(&c->children)) {
143                 /*if (SEL_WAITING(sndbuf_getsel(bs)) && chn_polltrigger(c))*/
144                 if (sndbuf_getsel(bs)->si_pid && chn_polltrigger(c)) {
145                         /*
146                          * We would call selwakeup() here, but as we
147                          * are in interrupt context, we'd have to
148                          * acquire the MP lock before.
149                          * Instead, we'll queue a task in a software
150                          * interrupt, which will run with the MP lock
151                          * held.
152                          *
153                          * buffer.c:sndbuf_seltask will then call
154                          * selwakeup() from safer context.
155                          */
156                         taskqueue_enqueue(taskqueue_swi, &bs->seltask);
157                 }
158         } else {
159                 SLIST_FOREACH(pce, &c->children, link) {
160                         CHN_LOCK(pce->channel);
161                         chn_wakeup(pce->channel);
162                         CHN_UNLOCK(pce->channel);
163                 }
164         }
165
166         wakeup(bs);
167 }
168
169 static int
170 chn_sleep(struct pcm_channel *c, char *str, int timeout)
171 {
172         struct snd_dbuf *bs = c->bufsoft;
173         int ret;
174
175         CHN_LOCKASSERT(c);
176 #ifdef USING_MUTEX
177         ret = snd_mtxsleep(bs, c->lock, PCATCH, str, timeout);
178 #else
179         ret = tsleep(bs, PRIBIO | PCATCH, str, timeout);
180 #endif
181
182         return ret;
183 }
184
185 /*
186  * chn_dmaupdate() tracks the status of a dma transfer,
187  * updating pointers.
188  */
189
190 static unsigned int
191 chn_dmaupdate(struct pcm_channel *c)
192 {
193         struct snd_dbuf *b = c->bufhard;
194         unsigned int delta, old, hwptr, amt;
195
196         KASSERT(sndbuf_getsize(b) > 0, ("bufsize == 0"));
197         CHN_LOCKASSERT(c);
198
199         old = sndbuf_gethwptr(b);
200         hwptr = chn_getptr(c);
201         delta = (sndbuf_getsize(b) + hwptr - old) % sndbuf_getsize(b);
202         sndbuf_sethwptr(b, hwptr);
203
204         DEB(
205         if (delta >= ((sndbuf_getsize(b) * 15) / 16)) {
206                 if (!(c->flags & (CHN_F_CLOSING | CHN_F_ABORTING)))
207                         device_printf(c->dev, "hwptr went backwards %d -> %d\n", old, hwptr);
208         }
209         );
210
211         if (c->direction == PCMDIR_PLAY) {
212                 amt = MIN(delta, sndbuf_getready(b));
213                 if (amt > 0)
214                         sndbuf_dispose(b, NULL, amt);
215         } else {
216                 amt = MIN(delta, sndbuf_getfree(b));
217                 if (amt > 0)
218                        sndbuf_acquire(b, NULL, amt);
219         }
220
221         return delta;
222 }
223
224 void
225 chn_wrupdate(struct pcm_channel *c)
226 {
227         int ret;
228
229         CHN_LOCKASSERT(c);
230         KASSERT(c->direction == PCMDIR_PLAY, ("chn_wrupdate on bad channel"));
231
232         if ((c->flags & (CHN_F_MAPPED | CHN_F_VIRTUAL)) || !(c->flags & CHN_F_TRIGGERED))
233                 return;
234         chn_dmaupdate(c);
235         ret = chn_wrfeed(c);
236         /* tell the driver we've updated the primary buffer */
237         chn_trigger(c, PCMTRIG_EMLDMAWR);
238         DEB(if (ret)
239                 kprintf("chn_wrupdate: chn_wrfeed returned %d\n", ret);)
240
241 }
242
243 int
244 chn_wrfeed(struct pcm_channel *c)
245 {
246         struct snd_dbuf *b = c->bufhard;
247         struct snd_dbuf *bs = c->bufsoft;
248         unsigned int ret, amt;
249
250         CHN_LOCKASSERT(c);
251 #if 0
252         DEB(
253         if (c->flags & CHN_F_CLOSING) {
254                 sndbuf_dump(b, "b", 0x02);
255                 sndbuf_dump(bs, "bs", 0x02);
256         })
257 #endif
258
259         if (c->flags & CHN_F_MAPPED)
260                 sndbuf_acquire(bs, NULL, sndbuf_getfree(bs));
261
262         amt = sndbuf_getfree(b);
263         KASSERT(amt <= sndbuf_getsize(bs),
264             ("%s(%s): amt %d > source size %d, flags 0x%x", __func__, c->name,
265            amt, sndbuf_getsize(bs), c->flags));
266
267         ret = (amt > 0) ? sndbuf_feed(bs, b, c, c->feeder, amt) : ENOSPC;
268         /*
269          * Possible xruns. There should be no empty space left in buffer.
270          */
271         if (sndbuf_getfree(b) > 0)
272                 c->xruns++;
273
274         if (ret == 0 && sndbuf_getfree(b) < amt)
275                 chn_wakeup(c);
276
277         return ret;
278 }
279
280 static void
281 chn_wrintr(struct pcm_channel *c)
282 {
283         int ret;
284
285         CHN_LOCKASSERT(c);
286         /* update pointers in primary buffer */
287         chn_dmaupdate(c);
288         /* ...and feed from secondary to primary */
289         ret = chn_wrfeed(c);
290         /* tell the driver we've updated the primary buffer */
291         chn_trigger(c, PCMTRIG_EMLDMAWR);
292         DEB(if (ret)
293                 kprintf("chn_wrintr: chn_wrfeed returned %d\n", ret);)
294 }
295
296 /*
297  * user write routine - uiomove data into secondary buffer, trigger if necessary
298  * if blocking, sleep, rinse and repeat.
299  *
300  * called externally, so must handle locking
301  */
302
303 int
304 chn_write(struct pcm_channel *c, struct uio *buf, int ioflags)
305 {
306         int ret, timeout, newsize, count, sz;
307         int nbio;
308         struct snd_dbuf *bs = c->bufsoft;
309         void *off;
310         int t, x,togo,p;
311
312         CHN_LOCKASSERT(c);
313         /*
314          * XXX Certain applications attempt to write larger size
315          * of pcm data than c->blocksize2nd without blocking,
316          * resulting partial write. Expand the block size so that
317          * the write operation avoids blocking.
318          */
319         nbio = (c->flags & CHN_F_NBIO) || (ioflags & IO_NDELAY);
320         if (nbio && buf->uio_resid > (size_t)sndbuf_getblksz(bs)) {
321                 DEB(device_printf(c->dev, "broken app, nbio and tried to write %ld bytes with fragsz %d\n",
322                         buf->uio_resid, sndbuf_getblksz(bs)));
323                 newsize = 16;
324                 while (newsize < (int)szmin(buf->uio_resid, CHN_2NDBUFMAXSIZE / 2))
325                         newsize <<= 1;
326                 chn_setblocksize(c, sndbuf_getblkcnt(bs), newsize);
327                 DEB(device_printf(c->dev, "frags reset to %d x %d\n", sndbuf_getblkcnt(bs), sndbuf_getblksz(bs)));
328         }
329
330         ret = 0;
331         count = hz;
332         while (!ret && (buf->uio_resid > 0) && (count > 0)) {
333                 sz = sndbuf_getfree(bs);
334                 if (sz == 0) {
335                         if (nbio)
336                                 ret = EWOULDBLOCK;
337                         else {
338                                 timeout = (hz * sndbuf_getblksz(bs)) / (sndbuf_getspd(bs) * sndbuf_getbps(bs));
339                                 if (timeout < 1)
340                                         timeout = 1;
341                                 timeout = 1;
342                                 ret = chn_sleep(c, "pcmwr", timeout);
343                                 if (ret == EWOULDBLOCK) {
344                                         count -= timeout;
345                                         ret = 0;
346                                 } else if (ret == 0)
347                                         count = hz;
348                         }
349                 } else {
350                         sz = (int)szmin(sz, buf->uio_resid);
351                         KASSERT(sz > 0, ("confusion in chn_write"));
352                         /* kprintf("sz: %d\n", sz); */
353
354                         /*
355                          * The following assumes that the free space in
356                          * the buffer can never be less around the
357                          * unlock-uiomove-lock sequence.
358                          */
359                         togo = sz;
360                         while (ret == 0 && togo> 0) {
361                                 p = sndbuf_getfreeptr(bs);
362                                 t = MIN(togo, sndbuf_getsize(bs) - p);
363                                 off = sndbuf_getbufofs(bs, p);
364                                 CHN_UNLOCK(c);
365                                 ret = uiomove(off, t, buf);
366                                 CHN_LOCK(c);
367                                 togo -= t;
368                                 x = sndbuf_acquire(bs, NULL, t);
369                         }
370                         ret = 0;
371                         if (ret == 0 && !(c->flags & CHN_F_TRIGGERED))
372                                 chn_start(c, 0);
373                 }
374         }
375         /* kprintf("ret: %d left: %d\n", ret, buf->uio_resid); */
376
377         if (count <= 0) {
378                 c->flags |= CHN_F_DEAD;
379                 kprintf("%s: play interrupt timeout, channel dead\n", c->name);
380         }
381
382         return ret;
383 }
384
385 #if 0
386 static int
387 chn_rddump(struct pcm_channel *c, unsigned int cnt)
388 {
389         struct snd_dbuf *b = c->bufhard;
390
391         CHN_LOCKASSERT(c);
392 #if 0
393         static uint32_t kk = 0;
394         printf("%u: dumping %d bytes\n", ++kk, cnt);
395 #endif
396         c->xruns++;
397         sndbuf_setxrun(b, sndbuf_getxrun(b) + cnt);
398         return sndbuf_dispose(b, NULL, cnt);
399 }
400 #endif
401
402 /*
403  * Feed new data from the read buffer. Can be called in the bottom half.
404  */
405 int
406 chn_rdfeed(struct pcm_channel *c)
407 {
408         struct snd_dbuf *b = c->bufhard;
409         struct snd_dbuf *bs = c->bufsoft;
410         unsigned int ret, amt;
411
412         CHN_LOCKASSERT(c);
413         DEB(
414         if (c->flags & CHN_F_CLOSING) {
415                 sndbuf_dump(b, "b", 0x02);
416                 sndbuf_dump(bs, "bs", 0x02);
417         })
418
419 #if 0
420         amt = sndbuf_getready(b);
421         if (sndbuf_getfree(bs) < amt) {
422                 c->xruns++;
423                 amt = sndbuf_getfree(bs);
424         }
425 #endif
426         amt = sndbuf_getfree(bs);
427         ret = (amt > 0)? sndbuf_feed(b, bs, c, c->feeder, amt) : 0;
428
429         amt = sndbuf_getready(b);
430         if (amt > 0) {
431                 c->xruns++;
432                 sndbuf_dispose(b, NULL, amt);
433         }
434
435         chn_wakeup(c);
436
437         return ret;
438 }
439
440 void
441 chn_rdupdate(struct pcm_channel *c)
442 {
443         int ret;
444
445         CHN_LOCKASSERT(c);
446         KASSERT(c->direction == PCMDIR_REC, ("chn_rdupdate on bad channel"));
447
448         if ((c->flags & CHN_F_MAPPED) || !(c->flags & CHN_F_TRIGGERED))
449                 return;
450         chn_trigger(c, PCMTRIG_EMLDMARD);
451         chn_dmaupdate(c);
452         ret = chn_rdfeed(c);
453         DEB(if (ret)
454                 kprintf("chn_rdfeed: %d\n", ret);)
455 }
456
457 /* read interrupt routine. Must be called with interrupts blocked. */
458 static void
459 chn_rdintr(struct pcm_channel *c)
460 {
461         int ret;
462
463         CHN_LOCKASSERT(c);
464         /* tell the driver to update the primary buffer if non-dma */
465         chn_trigger(c, PCMTRIG_EMLDMARD);
466         /* update pointers in primary buffer */
467         chn_dmaupdate(c);
468         /* ...and feed from primary to secondary */
469         ret = chn_rdfeed(c);
470 }
471
472 /*
473  * user read routine - trigger if necessary, uiomove data from secondary buffer
474  * if blocking, sleep, rinse and repeat.
475  *
476  * called externally, so must handle locking
477  */
478
479 int
480 chn_read(struct pcm_channel *c, struct uio *buf, int ioflags)
481 {
482         int             ret, timeout, sz, count;
483         int nbio;
484         struct snd_dbuf       *bs = c->bufsoft;
485         void *off;
486         int t, x,togo,p;
487
488         CHN_LOCKASSERT(c);
489         nbio = (c->flags & CHN_F_NBIO) || (ioflags & IO_NDELAY);
490         if (!(c->flags & CHN_F_TRIGGERED))
491                 chn_start(c, 0);
492
493         ret = 0;
494         count = hz;
495         while (!ret && (buf->uio_resid > 0) && (count > 0)) {
496                 sz = (int)szmin(buf->uio_resid, sndbuf_getready(bs));
497
498                 if (sz > 0) {
499                         /*
500                          * The following assumes that the free space in
501                          * the buffer can never be less around the
502                          * unlock-uiomove-lock sequence.
503                          */
504                         togo = sz;
505                         while (ret == 0 && togo> 0) {
506                                 p = sndbuf_getreadyptr(bs);
507                                 t = MIN(togo, sndbuf_getsize(bs) - p);
508                                 off = sndbuf_getbufofs(bs, p);
509                                 CHN_UNLOCK(c);
510                                 ret = uiomove(off, t, buf);
511                                 CHN_LOCK(c);
512                                 togo -= t;
513                                 x = sndbuf_dispose(bs, NULL, t);
514                         }
515                         ret = 0;
516                 } else {
517                         if (nbio) {
518                                 ret = EWOULDBLOCK;
519                         } else {
520                                 timeout = (hz * sndbuf_getblksz(bs)) / (sndbuf_getspd(bs) * sndbuf_getbps(bs));
521                                 if (timeout < 1)
522                                         timeout = 1;
523                                 ret = chn_sleep(c, "pcmrd", timeout);
524                                 if (ret == EWOULDBLOCK) {
525                                         count -= timeout;
526                                         ret = 0;
527                                 } else {
528                                         count = hz;
529                                 }
530
531                         }
532                 }
533         }
534
535         if (count <= 0) {
536                 c->flags |= CHN_F_DEAD;
537                 kprintf("%s: record interrupt timeout, channel dead\n", c->name);
538         }
539
540         return ret;
541 }
542
543 void
544 chn_intr(struct pcm_channel *c)
545 {
546         CHN_LOCK(c);
547         c->interrupts++;
548         if (c->direction == PCMDIR_PLAY)
549                 chn_wrintr(c);
550         else
551                 chn_rdintr(c);
552         CHN_UNLOCK(c);
553 }
554
555 u_int32_t
556 chn_start(struct pcm_channel *c, int force)
557 {
558         u_int32_t i, j;
559         struct snd_dbuf *b = c->bufhard;
560         struct snd_dbuf *bs = c->bufsoft;
561
562         CHN_LOCKASSERT(c);
563         /* if we're running, or if we're prevented from triggering, bail */
564         if ((c->flags & CHN_F_TRIGGERED) || ((c->flags & CHN_F_NOTRIGGER) && !force))
565                 return EINVAL;
566
567         i = (c->direction == PCMDIR_PLAY)? sndbuf_getready(bs) : sndbuf_getfree(bs);
568         j = (c->direction == PCMDIR_PLAY)? sndbuf_getfree(b) : sndbuf_getready(b);
569         if (force || (i >= j)) {
570                 c->flags |= CHN_F_TRIGGERED;
571                 /*
572                  * if we're starting because a vchan started, don't feed any data
573                  * or it becomes impossible to start vchans synchronised with the
574                  * first one.  the hardbuf should be empty so we top it up with
575                  * silence to give it something to chew.  the real data will be
576                  * fed at the first irq.
577                  */
578                 if (c->direction == PCMDIR_PLAY) {
579                         /*
580                          * Reduce pops during playback startup.
581                          */
582                         sndbuf_fillsilence(b);
583                         if (SLIST_EMPTY(&c->children))
584                                 chn_wrfeed(c);
585                 }
586                 sndbuf_setrun(b, 1);
587                 c->xruns = 0;
588                 chn_trigger(c, PCMTRIG_START);
589                 return 0;
590         }
591
592         return 0;
593 }
594
595 void
596 chn_resetbuf(struct pcm_channel *c)
597 {
598         struct snd_dbuf *b = c->bufhard;
599         struct snd_dbuf *bs = c->bufsoft;
600
601         c->blocks = 0;
602         sndbuf_reset(b);
603         sndbuf_reset(bs);
604 }
605
606 /*
607  * chn_sync waits until the space in the given channel goes above
608  * a threshold. The threshold is checked against fl or rl respectively.
609  * Assume that the condition can become true, do not check here...
610  */
611 int
612 chn_sync(struct pcm_channel *c, int threshold)
613 {
614         u_long rdy;
615         int ret;
616         struct snd_dbuf *bs = c->bufsoft;
617
618         CHN_LOCKASSERT(c);
619
620         /* if we haven't yet started and nothing is buffered, else start*/
621         if (!(c->flags & CHN_F_TRIGGERED)) {
622                 if (sndbuf_getready(bs) > 0) {
623                         ret = chn_start(c, 1);
624                         if (ret)
625                                 return ret;
626                 } else {
627                         return 0;
628                 }
629         }
630
631         for (;;) {
632                 rdy = (c->direction == PCMDIR_PLAY)? sndbuf_getfree(bs) : sndbuf_getready(bs);
633                 if (rdy <= threshold) {
634                         ret = chn_sleep(c, "pcmsyn", 1);
635                         if (ret == ERESTART || ret == EINTR) {
636                                 DEB(kprintf("chn_sync: tsleep returns %d\n", ret));
637                                 return -1;
638                         }
639                 } else
640                         break;
641         }
642         return 0;
643 }
644
645 /* called externally, handle locking */
646 int
647 chn_poll(struct pcm_channel *c, int ev, struct thread *td)
648 {
649         struct snd_dbuf *bs = c->bufsoft;
650         int ret;
651
652         CHN_LOCKASSERT(c);
653         if (!(c->flags & CHN_F_MAPPED) && !(c->flags & CHN_F_TRIGGERED))
654                 chn_start(c, 1);
655         ret = 0;
656         if (chn_polltrigger(c) && chn_pollreset(c))
657                 ret = ev;
658         return ret;
659 }
660
661 /*
662  * chn_abort terminates a running dma transfer.  it may sleep up to 200ms.
663  * it returns the number of bytes that have not been transferred.
664  *
665  * called from: dsp_close, dsp_ioctl, with channel locked
666  */
667 int
668 chn_abort(struct pcm_channel *c)
669 {
670         int missing = 0;
671         struct snd_dbuf *b = c->bufhard;
672         struct snd_dbuf *bs = c->bufsoft;
673
674         CHN_LOCKASSERT(c);
675         if (!(c->flags & CHN_F_TRIGGERED))
676                 return 0;
677         c->flags |= CHN_F_ABORTING;
678
679         c->flags &= ~CHN_F_TRIGGERED;
680         /* kill the channel */
681         chn_trigger(c, PCMTRIG_ABORT);
682         sndbuf_setrun(b, 0);
683         if (!(c->flags & CHN_F_VIRTUAL))
684                 chn_dmaupdate(c);
685         missing = sndbuf_getready(bs) + sndbuf_getready(b);
686
687         c->flags &= ~CHN_F_ABORTING;
688         return missing;
689 }
690
691 /*
692  * this routine tries to flush the dma transfer. It is called
693  * on a close of a playback channel.
694  * first, if there is data in the buffer, but the dma has not yet
695  * begun, we need to start it.
696  * next, we wait for the play buffer to drain
697  * finally, we stop the dma.
698  *
699  * called from: dsp_close, not valid for record channels.
700  */
701
702 int
703 chn_flush(struct pcm_channel *c)
704 {
705         int ret, count, resid, resid_p;
706         struct snd_dbuf *b = c->bufhard;
707         struct snd_dbuf *bs = c->bufsoft;
708
709         CHN_LOCKASSERT(c);
710         KASSERT(c->direction == PCMDIR_PLAY, ("chn_flush on bad channel"));
711         DEB(kprintf("chn_flush: c->flags 0x%08x\n", c->flags));
712
713         /* if we haven't yet started and nothing is buffered, else start*/
714         if (!(c->flags & CHN_F_TRIGGERED)) {
715                 if (sndbuf_getready(bs) > 0) {
716                         ret = chn_start(c, 1);
717                         if (ret)
718                                 return ret;
719                 } else {
720                         return 0;
721                 }
722         }
723
724         c->flags |= CHN_F_CLOSING;
725         resid = sndbuf_getready(bs) + sndbuf_getready(b);
726         resid_p = resid;
727         count = 10;
728         ret = 0;
729         while ((count > 0) && (resid > sndbuf_getsize(b)) && (ret == 0)) {
730                 /* still pending output data. */
731                 ret = chn_sleep(c, "pcmflu", hz / 10);
732                 if (ret == EWOULDBLOCK)
733                         ret = 0;
734                 if (ret == 0) {
735                         resid = sndbuf_getready(bs) + sndbuf_getready(b);
736                         if (resid == resid_p)
737                                 count--;
738                         if (resid > resid_p)
739                                 DEB(printf("chn_flush: buffer length increasind %d -> %d\n", resid_p, resid));
740                         resid_p = resid;
741                 }
742         }
743         if (count == 0)
744                 DEB(kprintf("chn_flush: timeout, hw %d, sw %d\n",
745                         sndbuf_getready(b), sndbuf_getready(bs)));
746
747         c->flags &= ~CHN_F_TRIGGERED;
748         /* kill the channel */
749         chn_trigger(c, PCMTRIG_ABORT);
750         sndbuf_setrun(b, 0);
751
752         c->flags &= ~CHN_F_CLOSING;
753         return 0;
754 }
755
756 int
757 fmtvalid(u_int32_t fmt, u_int32_t *fmtlist)
758 {
759         int i;
760
761         for (i = 0; fmtlist[i]; i++)
762                 if (fmt == fmtlist[i])
763                         return 1;
764         return 0;
765 }
766
767 int
768 chn_reset(struct pcm_channel *c, u_int32_t fmt)
769 {
770         int hwspd, r;
771
772         CHN_LOCKASSERT(c);
773         c->flags &= CHN_F_RESET;
774         c->interrupts = 0;
775         c->xruns = 0;
776
777         r = CHANNEL_RESET(c->methods, c->devinfo);
778         if (fmt != 0) {
779 #if 0
780                 hwspd = DSP_DEFAULT_SPEED;
781                 /* only do this on a record channel until feederbuilder works */
782                 if (c->direction == PCMDIR_REC)
783                         RANGE(hwspd, chn_getcaps(c)->minspeed, chn_getcaps(c)->maxspeed);
784                 c->speed = hwspd;
785 #endif
786                 hwspd = chn_getcaps(c)->minspeed;
787                 c->speed = hwspd;
788
789                 if (r == 0)
790                         r = chn_setformat(c, fmt);
791                 if (r == 0)
792                         r = chn_setspeed(c, hwspd);
793 #if 0
794                 if (r == 0)
795                         r = chn_setvolume(c, 100, 100);
796 #endif
797         }
798         if (r == 0)
799                 r = chn_setblocksize(c, 0, 0);
800         if (r == 0) {
801                 chn_resetbuf(c);
802                 r = CHANNEL_RESETDONE(c->methods, c->devinfo);
803         }
804         return r;
805 }
806
807 int
808 chn_init(struct pcm_channel *c, void *devinfo, int dir, int direction)
809 {
810         struct feeder_class *fc;
811         struct snd_dbuf *b, *bs;
812         int ret;
813
814         chn_lockinit(c, dir);
815
816         b = NULL;
817         bs = NULL;
818         c->devinfo = NULL;
819         c->feeder = NULL;
820
821         ret = ENOMEM;
822         b = sndbuf_create(c->dev, c->name, "primary", c);
823         if (b == NULL)
824                 goto out;
825         bs = sndbuf_create(c->dev, c->name, "secondary", c);
826         if (bs == NULL)
827                 goto out;
828
829         CHN_LOCK(c);
830
831         ret = EINVAL;
832         fc = feeder_getclass(NULL);
833         if (fc == NULL)
834                 goto out;
835         if (chn_addfeeder(c, fc, NULL))
836                 goto out;
837
838         /*
839          * XXX - sndbuf_setup() & sndbuf_resize() expect to be called
840          *       with the channel unlocked because they are also called
841          *       from driver methods that don't know about locking
842          */
843         CHN_UNLOCK(c);
844         sndbuf_setup(bs, NULL, 0);
845         CHN_LOCK(c);
846         c->bufhard = b;
847         c->bufsoft = bs;
848         c->flags = 0;
849         c->feederflags = 0;
850
851         ret = ENODEV;
852         CHN_UNLOCK(c); /* XXX - Unlock for CHANNEL_INIT() kmalloc() call */
853         c->devinfo = CHANNEL_INIT(c->methods, devinfo, b, c, direction);
854         CHN_LOCK(c);
855         if (c->devinfo == NULL)
856                 goto out;
857
858         ret = ENOMEM;
859         if ((sndbuf_getsize(b) == 0) && ((c->flags & CHN_F_VIRTUAL) == 0))
860                 goto out;
861
862         ret = chn_setdir(c, direction);
863         if (ret)
864                 goto out;
865
866         ret = sndbuf_setfmt(b, AFMT_U8);
867         if (ret)
868                 goto out;
869
870         ret = sndbuf_setfmt(bs, AFMT_U8);
871         if (ret)
872                 goto out;
873
874         ret = chn_setvolume(c, 100, 100);
875         if (ret)
876                 goto out;
877
878
879 out:
880         CHN_UNLOCK(c);
881         if (ret) {
882                 if (c->devinfo) {
883                         if (CHANNEL_FREE(c->methods, c->devinfo))
884                                 sndbuf_free(b);
885                 }
886                 if (bs)
887                         sndbuf_destroy(bs);
888                 if (b)
889                         sndbuf_destroy(b);
890                 c->flags |= CHN_F_DEAD;
891                 chn_lockdestroy(c);
892
893                 return ret;
894         }
895
896         return 0;
897 }
898
899 int
900 chn_kill(struct pcm_channel *c)
901 {
902         struct snd_dbuf *b = c->bufhard;
903         struct snd_dbuf *bs = c->bufsoft;
904
905         if (c->flags & CHN_F_TRIGGERED)
906                 chn_trigger(c, PCMTRIG_ABORT);
907         while (chn_removefeeder(c) == 0);
908         if (CHANNEL_FREE(c->methods, c->devinfo))
909                 sndbuf_free(b);
910         c->flags |= CHN_F_DEAD;
911         sndbuf_destroy(bs);
912         sndbuf_destroy(b);
913         chn_lockdestroy(c);
914         return 0;
915 }
916
917 int
918 chn_setdir(struct pcm_channel *c, int dir)
919 {
920 #if NISA > 0
921         struct snd_dbuf *b = c->bufhard;
922 #endif
923         int r;
924
925         CHN_LOCKASSERT(c);
926         c->direction = dir;
927         r = CHANNEL_SETDIR(c->methods, c->devinfo, c->direction);
928 #if NISA > 0
929         if (!r && SND_DMA(b))
930                 sndbuf_dmasetdir(b, c->direction);
931 #endif
932         return r;
933 }
934
935 int
936 chn_setvolume(struct pcm_channel *c, int left, int right)
937 {
938         CHN_LOCKASSERT(c);
939         /* should add a feeder for volume changing if channel returns -1 */
940         if (left > 100)
941                 left = 100;
942         if (left < 0)
943                 left = 0;
944         if (right > 100)
945                 right = 100;
946         if (right < 0)
947                 right = 0;
948         c->volume = left | (right << 8);
949         return 0;
950 }
951
952 static int
953 chn_tryspeed(struct pcm_channel *c, int speed)
954 {
955         struct pcm_feeder *f;
956         struct snd_dbuf *b = c->bufhard;
957         struct snd_dbuf *bs = c->bufsoft;
958         struct snd_dbuf *x;
959         int r, delta;
960
961         CHN_LOCKASSERT(c);
962         DEB(kprintf("setspeed, channel %s\n", c->name));
963         DEB(kprintf("want speed %d, ", speed));
964         if (speed <= 0)
965                 return EINVAL;
966         if (CANCHANGE(c)) {
967                 r = 0;
968                 c->speed = speed;
969                 sndbuf_setspd(bs, speed);
970                 RANGE(speed, chn_getcaps(c)->minspeed, chn_getcaps(c)->maxspeed);
971                 DEB(kprintf("try speed %d, ", speed));
972                 sndbuf_setspd(b, CHANNEL_SETSPEED(c->methods, c->devinfo, speed));
973                 DEB(kprintf("got speed %d\n", sndbuf_getspd(b)));
974
975                 delta = sndbuf_getspd(b) - sndbuf_getspd(bs);
976                 if (delta < 0)
977                         delta = -delta;
978
979                 c->feederflags &= ~(1 << FEEDER_RATE);
980                 /*
981                  * Used to be 500. It was too big!
982                  */
983                 if (delta > 25)
984                         c->feederflags |= 1 << FEEDER_RATE;
985                 else
986                         sndbuf_setspd(bs, sndbuf_getspd(b));
987
988                 r = chn_buildfeeder(c);
989                 DEB(kprintf("r = %d\n", r));
990                 if (r)
991                         goto out;
992
993                 r = chn_setblocksize(c, 0, 0);
994                 if (r)
995                         goto out;
996
997                 if (!(c->feederflags & (1 << FEEDER_RATE)))
998                         goto out;
999
1000                 r = EINVAL;
1001                 f = chn_findfeeder(c, FEEDER_RATE);
1002                 DEB(kprintf("feedrate = %p\n", f));
1003                 if (f == NULL)
1004                         goto out;
1005
1006                 x = (c->direction == PCMDIR_REC)? b : bs;
1007                 r = FEEDER_SET(f, FEEDRATE_SRC, sndbuf_getspd(x));
1008                 DEB(kprintf("feeder_set(FEEDRATE_SRC, %d) = %d\n", sndbuf_getspd(x), r));
1009                 if (r)
1010                         goto out;
1011
1012                 x = (c->direction == PCMDIR_REC)? bs : b;
1013                 r = FEEDER_SET(f, FEEDRATE_DST, sndbuf_getspd(x));
1014                 DEB(kprintf("feeder_set(FEEDRATE_DST, %d) = %d\n", sndbuf_getspd(x), r));
1015 out:
1016                 if (!r)
1017                         r = CHANNEL_SETFORMAT(c->methods, c->devinfo,
1018                                                         sndbuf_getfmt(b));
1019                 if (!r)
1020                         sndbuf_setfmt(bs, c->format);
1021                 DEB(kprintf("setspeed done, r = %d\n", r));
1022                 return r;
1023         } else
1024                 return EINVAL;
1025 }
1026
1027 int
1028 chn_setspeed(struct pcm_channel *c, int speed)
1029 {
1030         int r, oldspeed = c->speed;
1031
1032         r = chn_tryspeed(c, speed);
1033         if (r) {
1034                 DEB(kprintf("Failed to set speed %d falling back to %d\n", speed, oldspeed));
1035                 r = chn_tryspeed(c, oldspeed);
1036         }
1037         return r;
1038 }
1039
1040 static int
1041 chn_tryformat(struct pcm_channel *c, u_int32_t fmt)
1042 {
1043         struct snd_dbuf *b = c->bufhard;
1044         struct snd_dbuf *bs = c->bufsoft;
1045         int r;
1046
1047         CHN_LOCKASSERT(c);
1048         if (CANCHANGE(c)) {
1049                 DEB(kprintf("want format %d\n", fmt));
1050                 c->format = fmt;
1051                 r = chn_buildfeeder(c);
1052                 if (r == 0) {
1053                         sndbuf_setfmt(bs, c->format);
1054                         chn_resetbuf(c);
1055                         r = CHANNEL_SETFORMAT(c->methods, c->devinfo, sndbuf_getfmt(b));
1056                         if (r == 0)
1057                                 r = chn_tryspeed(c, c->speed);
1058                 }
1059                 return r;
1060         } else
1061                 return EINVAL;
1062 }
1063
1064 int
1065 chn_setformat(struct pcm_channel *c, u_int32_t fmt)
1066 {
1067         u_int32_t oldfmt = c->format;
1068         int r;
1069
1070         r = chn_tryformat(c, fmt);
1071         if (r) {
1072                 DEB(kprintf("Format change %d failed, reverting to %d\n", fmt, oldfmt));
1073                 chn_tryformat(c, oldfmt);
1074         }
1075         return r;
1076 }
1077
1078 /*
1079  * given a bufsz value, round it to a power of 2 in the min-max range
1080  * XXX only works if min and max are powers of 2
1081  */
1082 static int
1083 round_bufsz(int bufsz, int min, int max)
1084 {
1085         int tmp = min * 2;
1086
1087         KASSERT((min & (min-1)) == 0, ("min %d must be power of 2\n", min));
1088         KASSERT((max & (max-1)) == 0, ("max %d must be power of 2\n", max));
1089         while (tmp <= bufsz)
1090                 tmp <<= 1;
1091         tmp >>= 1;
1092         if (tmp > max)
1093                 tmp = max;
1094         return tmp;
1095 }
1096
1097 /*
1098  * set the channel's blocksize both for soft and hard buffers.
1099  *
1100  * blksz should be a power of 2 between 2**4 and 2**16 -- it is useful
1101  * that it has the same value for both bufsoft and bufhard.
1102  * blksz == -1 computes values according to a target irq rate.
1103  * blksz == 0 reuses previous values if available, otherwise
1104  * behaves as for -1
1105  *
1106  * blkcnt is set by the user, between 2 and (2**17)/blksz for bufsoft,
1107  * but should be a power of 2 for bufhard to simplify life to low
1108  * level drivers.
1109  * Note, for the rec channel a large blkcnt is ok,
1110  * but for the play channel we want blksz as small as possible to keep
1111  * the delay small, because routines in the write path always try to
1112  * keep bufhard full.
1113  *
1114  * Unless we have good reason to, use the values suggested by the caller.
1115  */
1116 int
1117 chn_setblocksize(struct pcm_channel *c, int blkcnt, int blksz)
1118 {
1119         struct snd_dbuf *b = c->bufhard;
1120         struct snd_dbuf *bs = c->bufsoft;
1121         int irqhz, ret, maxsz, maxsize, reqblksz;
1122
1123         CHN_LOCKASSERT(c);
1124         if (!CANCHANGE(c) || (c->flags & CHN_F_MAPPED)) {
1125                 KASSERT(sndbuf_getsize(bs) ==  0 ||
1126                     sndbuf_getsize(bs) >= sndbuf_getsize(b),
1127                     ("%s(%s): bufsoft size %d < bufhard size %d", __func__,
1128                     c->name, sndbuf_getsize(bs), sndbuf_getsize(b)));
1129                 return EINVAL;
1130         }
1131         c->flags |= CHN_F_SETBLOCKSIZE;
1132
1133         ret = 0;
1134         DEB(kprintf("%s(%d, %d)\n", __func__, blkcnt, blksz));
1135         if (blksz == 0 || blksz == -1) { /* let the driver choose values */
1136                 if (blksz == -1)        /* delete previous values */
1137                         c->flags &= ~CHN_F_HAS_SIZE;
1138                 if (!(c->flags & CHN_F_HAS_SIZE)) { /* no previous value */
1139                         /*
1140                          * compute a base blksz according to the target irq
1141                          * rate, then round to a suitable power of 2
1142                          * in the range 16.. 2^17/2.
1143                          * Finally compute a suitable blkcnt.
1144                          */
1145                         blksz = round_bufsz( (sndbuf_getbps(bs) *
1146                                 sndbuf_getspd(bs)) / chn_targetirqrate,
1147                                 16, CHN_2NDBUFMAXSIZE / 2);
1148                         blkcnt = CHN_2NDBUFMAXSIZE / blksz;
1149                 } else { /* use previously defined value */
1150                         blkcnt = sndbuf_getblkcnt(bs);
1151                         blksz = sndbuf_getblksz(bs);
1152                 }
1153         } else {
1154                 /*
1155                  * use supplied values if reasonable. Note that here we
1156                  * might have blksz which is not a power of 2 if the
1157                  * ioctl() to compute it allows such values.
1158                  */
1159                 ret = EINVAL;
1160                 if ((blksz < 16) || (blkcnt < 2) || (blkcnt * blksz > CHN_2NDBUFMAXSIZE))
1161                         goto out;
1162                 ret = 0;
1163                 c->flags |= CHN_F_HAS_SIZE;
1164         }
1165
1166         reqblksz = blksz;
1167         if (reqblksz < sndbuf_getbps(bs))
1168                 reqblksz = sndbuf_getbps(bs);
1169         if (reqblksz % sndbuf_getbps(bs))
1170                 reqblksz -= reqblksz % sndbuf_getbps(bs);
1171
1172         /* adjust for different hw format/speed */
1173         /*
1174          * Now compute the approx irq rate for the given (soft) blksz,
1175          * reduce to the acceptable range and compute a corresponding blksz
1176          * for the hard buffer. Then set the channel's blocksize and
1177          * corresponding hardbuf value. The number of blocks used should
1178          * be set by the device-specific routine. In fact, even the
1179          * call to sndbuf_setblksz() should not be here! XXX
1180          */
1181
1182         irqhz = (sndbuf_getbps(bs) * sndbuf_getspd(bs)) / blksz;
1183         RANGE(irqhz, 16, 512);
1184
1185         maxsz = sndbuf_getmaxsize(b);
1186         if (maxsz == 0) /* virtual channels don't appear to allocate bufhard */
1187                 maxsz = CHN_2NDBUFMAXSIZE;
1188         blksz = round_bufsz( (sndbuf_getbps(b) * sndbuf_getspd(b)) / irqhz,
1189                         16, maxsz / 2);
1190
1191         /* Increase the size of bufsoft if before increasing bufhard. */
1192         maxsize = sndbuf_getsize(b);
1193         if (sndbuf_getsize(bs) > maxsize)
1194                 maxsize = sndbuf_getsize(bs);
1195         if (reqblksz * blkcnt > maxsize)
1196                 maxsize = reqblksz * blkcnt;
1197         if (sndbuf_getsize(bs) != maxsize || sndbuf_getblksz(bs) != reqblksz) {
1198                 ret = sndbuf_remalloc(bs, maxsize/reqblksz, reqblksz);
1199                 if (ret)
1200                         goto out1;
1201         }
1202
1203         CHN_UNLOCK(c);
1204         sndbuf_setblksz(b, CHANNEL_SETBLOCKSIZE(c->methods, c->devinfo, blksz));
1205         CHN_LOCK(c);
1206
1207         /* Decrease the size of bufsoft after decreasing bufhard. */
1208         maxsize = sndbuf_getsize(b);
1209         if (reqblksz * blkcnt > maxsize)
1210                 maxsize = reqblksz * blkcnt;
1211         if (maxsize > sndbuf_getsize(bs))
1212                 kprintf("Danger! %s bufsoft size increasing from %d to %d after CHANNEL_SETBLOCKSIZE()\n",
1213                     c->name, sndbuf_getsize(bs), maxsize);
1214         if (sndbuf_getsize(bs) != maxsize || sndbuf_getblksz(bs) != reqblksz) {
1215                 ret = sndbuf_remalloc(bs, maxsize/reqblksz, reqblksz);
1216                 if (ret)
1217                         goto out1;
1218         }
1219
1220         chn_resetbuf(c);
1221 out1:
1222         KASSERT(sndbuf_getsize(bs) ==  0 ||
1223             sndbuf_getsize(bs) >= sndbuf_getsize(b),
1224             ("%s(%s): bufsoft size %d < bufhard size %d, reqblksz=%d blksz=%d maxsize=%d blkcnt=%d",
1225             __func__, c->name, sndbuf_getsize(bs), sndbuf_getsize(b), reqblksz,
1226             blksz, maxsize, blkcnt));
1227 out:
1228         c->flags &= ~CHN_F_SETBLOCKSIZE;
1229 #if 0
1230         if (1) {
1231                 static uint32_t kk = 0;
1232                 printf("%u: b %d/%d/%d : (%d)%d/0x%0x | bs %d/%d/%d : (%d)%d/0x%0x\n", ++kk,
1233                         sndbuf_getsize(b), sndbuf_getblksz(b), sndbuf_getblkcnt(b),
1234                         sndbuf_getbps(b),
1235                         sndbuf_getspd(b), sndbuf_getfmt(b),
1236                         sndbuf_getsize(bs), sndbuf_getblksz(bs), sndbuf_getblkcnt(bs),
1237                         sndbuf_getbps(bs),
1238                         sndbuf_getspd(bs), sndbuf_getfmt(bs));
1239                 if (sndbuf_getsize(b) % sndbuf_getbps(b) ||
1240                                 sndbuf_getblksz(b) % sndbuf_getbps(b) ||
1241                                 sndbuf_getsize(bs) % sndbuf_getbps(bs) ||
1242                                 sndbuf_getblksz(b) % sndbuf_getbps(b)) {
1243                         printf("%u: bps/blksz alignment screwed!\n", kk);
1244                 }
1245         }
1246 #endif
1247         return ret;
1248 }
1249
1250 int
1251 chn_trigger(struct pcm_channel *c, int go)
1252 {
1253 #if NISA > 0
1254         struct snd_dbuf *b = c->bufhard;
1255 #endif
1256         int ret;
1257
1258         CHN_LOCKASSERT(c);
1259 #if NISA > 0
1260         if (SND_DMA(b) && (go == PCMTRIG_EMLDMAWR || go == PCMTRIG_EMLDMARD))
1261                 sndbuf_dmabounce(b);
1262 #endif
1263         ret = CHANNEL_TRIGGER(c->methods, c->devinfo, go);
1264
1265         return ret;
1266 }
1267
1268 int
1269 chn_getptr(struct pcm_channel *c)
1270 {
1271 #if 0
1272         int hwptr;
1273         int a = (1 << c->align) - 1;
1274
1275         CHN_LOCKASSERT(c);
1276         hwptr = (c->flags & CHN_F_TRIGGERED)? CHANNEL_GETPTR(c->methods, c->devinfo) : 0;
1277         /* don't allow unaligned values in the hwa ptr */
1278 #if 1
1279         hwptr &= ~a ; /* Apply channel align mask */
1280 #endif
1281         hwptr &= DMA_ALIGN_MASK; /* Apply DMA align mask */
1282         return hwptr;
1283 #endif
1284         int hwptr;
1285
1286         CHN_LOCKASSERT(c);
1287         hwptr = (c->flags & CHN_F_TRIGGERED)? CHANNEL_GETPTR(c->methods, c->devinfo) : 0;
1288         return (hwptr - (hwptr % sndbuf_getbps(c->bufhard)));
1289 }
1290
1291 struct pcmchan_caps *
1292 chn_getcaps(struct pcm_channel *c)
1293 {
1294         CHN_LOCKASSERT(c);
1295         return CHANNEL_GETCAPS(c->methods, c->devinfo);
1296 }
1297
1298 u_int32_t
1299 chn_getformats(struct pcm_channel *c)
1300 {
1301         u_int32_t *fmtlist, fmts;
1302         int i;
1303
1304         fmtlist = chn_getcaps(c)->fmtlist;
1305         fmts = 0;
1306         for (i = 0; fmtlist[i]; i++)
1307                 fmts |= fmtlist[i];
1308
1309         /* report software-supported formats */
1310         if (report_soft_formats)
1311                 fmts |= AFMT_MU_LAW|AFMT_A_LAW|AFMT_U32_LE|AFMT_U32_BE|
1312                     AFMT_S32_LE|AFMT_S32_BE|AFMT_U24_LE|AFMT_U24_BE|
1313                     AFMT_S24_LE|AFMT_S24_BE|AFMT_U16_LE|AFMT_U16_BE|
1314                     AFMT_S16_LE|AFMT_S16_BE|AFMT_U8|AFMT_S8;
1315
1316         return fmts;
1317 }
1318
1319 static int
1320 chn_buildfeeder(struct pcm_channel *c)
1321 {
1322         struct feeder_class *fc;
1323         struct pcm_feederdesc desc;
1324         u_int32_t tmp[2], type, flags, hwfmt, *fmtlist;
1325         int err;
1326
1327         CHN_LOCKASSERT(c);
1328         while (chn_removefeeder(c) == 0);
1329         KASSERT((c->feeder == NULL), ("feeder chain not empty"));
1330
1331         c->align = sndbuf_getalign(c->bufsoft);
1332
1333         if (SLIST_EMPTY(&c->children)) {
1334                 fc = feeder_getclass(NULL);
1335                 KASSERT(fc != NULL, ("can't find root feeder"));
1336
1337                 err = chn_addfeeder(c, fc, NULL);
1338                 if (err) {
1339                         DEB(kprintf("can't add root feeder, err %d\n", err));
1340
1341                         return err;
1342                 }
1343                 c->feeder->desc->out = c->format;
1344         } else {
1345                 if (c->flags & CHN_F_HAS_VCHAN) {
1346                         desc.type = FEEDER_MIXER;
1347                         desc.in = 0;
1348                 } else {
1349                         DEB(printf("can't decide which feeder type to use!\n"));
1350                         return EOPNOTSUPP;
1351                 }
1352                 desc.out = c->format;
1353                 desc.flags = 0;
1354                 fc = feeder_getclass(&desc);
1355                 if (fc == NULL) {
1356                         DEB(kprintf("can't find vchan feeder\n"));
1357
1358                         return EOPNOTSUPP;
1359                 }
1360
1361                 err = chn_addfeeder(c, fc, &desc);
1362                 if (err) {
1363                         DEB(kprintf("can't add vchan feeder, err %d\n", err));
1364
1365                         return err;
1366                 }
1367         }
1368         c->feederflags &= ~(1 << FEEDER_VOLUME);
1369         if (c->direction == PCMDIR_PLAY &&
1370                         !(c->flags & CHN_F_VIRTUAL) &&
1371                         c->parentsnddev && (c->parentsnddev->flags & SD_F_SOFTPCMVOL) &&
1372                         c->parentsnddev->mixer_dev)
1373                 c->feederflags |= 1 << FEEDER_VOLUME;
1374         flags = c->feederflags;
1375         fmtlist = chn_getcaps(c)->fmtlist;
1376
1377         DEB(kprintf("feederflags %x\n", flags));
1378
1379         for (type = FEEDER_RATE; type <= FEEDER_LAST; type++) {
1380                 if (flags & (1 << type)) {
1381                         desc.type = type;
1382                         desc.in = 0;
1383                         desc.out = 0;
1384                         desc.flags = 0;
1385                         DEB(kprintf("find feeder type %d, ", type));
1386                         fc = feeder_getclass(&desc);
1387                         DEB(kprintf("got %p\n", fc));
1388                         if (fc == NULL) {
1389                                 DEB(kprintf("can't find required feeder type %d\n", type));
1390
1391                                 return EOPNOTSUPP;
1392                         }
1393
1394                         DEB(kprintf("build fmtchain from 0x%08x to 0x%08x: ", c->feeder->desc->out, fc->desc->in));
1395                         tmp[0] = fc->desc->in;
1396                         tmp[1] = 0;
1397                         if (chn_fmtchain(c, tmp) == 0) {
1398                                 DEB(printf("failed\n"));
1399
1400                                 return ENODEV;
1401                         }
1402                         DEB(printf("ok\n"));
1403
1404                         err = chn_addfeeder(c, fc, fc->desc);
1405                         if (err) {
1406                                 DEB(kprintf("can't add feeder %p, output 0x%x, err %d\n", fc, fc->desc->out, err));
1407
1408                                 return err;
1409                         }
1410                         DEB(kprintf("added feeder %p, output 0x%x\n", fc, c->feeder->desc->out));
1411                 }
1412         }
1413
1414         if (c->direction == PCMDIR_REC) {
1415                 tmp[0] = c->format;
1416                 tmp[1] = 0;
1417                 hwfmt = chn_fmtchain(c, tmp);
1418         } else
1419                 hwfmt = chn_fmtchain(c, fmtlist);
1420
1421         if (hwfmt == 0 || !fmtvalid(hwfmt, fmtlist)) {
1422                 DEB(printf("Invalid hardware format: 0x%08x\n", hwfmt));
1423                 return ENODEV;
1424         }
1425
1426         sndbuf_setfmt(c->bufhard, hwfmt);
1427
1428         if ((flags & (1 << FEEDER_VOLUME))) {
1429                 struct dev_ioctl_args map;
1430                 u_int32_t parent = SOUND_MIXER_NONE;
1431                 int vol, left, right;
1432
1433                 vol = 100 | (100 << 8);
1434
1435                 CHN_UNLOCK(c);
1436                 /*
1437                  * XXX This is ugly! The way mixer subs being so secretive
1438                  * about its own internals force us to use this silly
1439                  * monkey trick.
1440                  */
1441                 map.a_head.a_dev = c->parentsnddev->mixer_dev;
1442                 map.a_cmd = MIXER_READ(SOUND_MIXER_PCM);
1443                 map.a_data = (caddr_t)&vol;
1444                 map.a_fflag = -1;
1445                 map.a_cred = NULL;
1446                 map.a_sysmsg = NULL;
1447                 if (mixer_ioctl(&map) != 0)
1448                         device_printf(c->dev, "Soft PCM Volume: Failed to read default value\n");
1449                 left = vol & 0x7f;
1450                 right = (vol >> 8) & 0x7f;
1451                 if (c->parentsnddev != NULL &&
1452                     c->parentsnddev->mixer_dev != NULL &&
1453                     c->parentsnddev->mixer_dev->si_drv1 != NULL)
1454                         parent = mix_getparent(
1455                             c->parentsnddev->mixer_dev->si_drv1,
1456                             SOUND_MIXER_PCM);
1457                 if (parent != SOUND_MIXER_NONE) {
1458                         vol = 100 | (100 << 8);
1459                         map.a_head.a_dev = c->parentsnddev->mixer_dev;
1460                         map.a_cmd = MIXER_READ(parent);
1461                         map.a_data = (caddr_t)&vol;
1462                         map.a_fflag = -1;
1463                         map.a_cred = NULL;
1464                         if (mixer_ioctl(&map) != 0)
1465                                 device_printf(c->dev, "Soft Volume: Failed to read parent default value\n");
1466                         left = (left * (vol & 0x7f)) / 100;
1467                         right = (right * ((vol >> 8) & 0x7f)) / 100;
1468                 }
1469
1470                 CHN_LOCK(c);
1471                 chn_setvolume(c, left, right);
1472         }
1473
1474         return 0;
1475 }
1476
1477 int
1478 chn_notify(struct pcm_channel *c, u_int32_t flags)
1479 {
1480         struct pcmchan_children *pce;
1481         struct pcm_channel *child;
1482         int run;
1483
1484         CHN_LOCK(c);
1485
1486         if (SLIST_EMPTY(&c->children)) {
1487                 CHN_UNLOCK(c);
1488                 return ENODEV;
1489         }
1490
1491         run = (c->flags & CHN_F_TRIGGERED)? 1 : 0;
1492         /*
1493          * if the hwchan is running, we can't change its rate, format or
1494          * blocksize
1495          */
1496         if (run)
1497                 flags &= CHN_N_VOLUME | CHN_N_TRIGGER;
1498
1499         if (flags & CHN_N_RATE) {
1500                 /*
1501                  * we could do something here, like scan children and decide on
1502                  * the most appropriate rate to mix at, but we don't for now
1503                  */
1504         }
1505         if (flags & CHN_N_FORMAT) {
1506                 /*
1507                  * we could do something here, like scan children and decide on
1508                  * the most appropriate mixer feeder to use, but we don't for now
1509                  */
1510         }
1511         if (flags & CHN_N_VOLUME) {
1512                 /*
1513                  * we could do something here but we don't for now
1514                  */
1515         }
1516         if (flags & CHN_N_BLOCKSIZE) {
1517                 int blksz;
1518                 /*
1519                  * scan the children, find the lowest blocksize and use that
1520                  * for the hard blocksize
1521                  */
1522                 blksz = sndbuf_getmaxsize(c->bufhard) / 2;
1523                 SLIST_FOREACH(pce, &c->children, link) {
1524                         child = pce->channel;
1525                         CHN_LOCK(child);
1526                         if (sndbuf_getblksz(child->bufhard) < blksz)
1527                                 blksz = sndbuf_getblksz(child->bufhard);
1528                         CHN_UNLOCK(child);
1529                 }
1530                 chn_setblocksize(c, 2, blksz);
1531         }
1532         if (flags & CHN_N_TRIGGER) {
1533                 int nrun;
1534                 /*
1535                  * scan the children, and figure out if any are running
1536                  * if so, we need to be running, otherwise we need to be stopped
1537                  * if we aren't in our target sstate, move to it
1538                  */
1539                 nrun = 0;
1540                 SLIST_FOREACH(pce, &c->children, link) {
1541                         child = pce->channel;
1542                         CHN_LOCK(child);
1543                         if (child->flags & CHN_F_TRIGGERED)
1544                                 nrun = 1;
1545                         CHN_UNLOCK(child);
1546                 }
1547                 if (nrun && !run)
1548                         chn_start(c, 1);
1549                 if (!nrun && run)
1550                         chn_abort(c);
1551         }
1552         CHN_UNLOCK(c);
1553         return 0;
1554 }
1555
1556 void
1557 chn_lock(struct pcm_channel *c)
1558 {
1559         CHN_LOCK(c);
1560 }
1561
1562 void
1563 chn_unlock(struct pcm_channel *c)
1564 {
1565         CHN_UNLOCK(c);
1566 }