Say hello to a sound system update from FreeBSD. This includes the long
[dragonfly.git] / sys / dev / sound / isa / sndbuf_dma.c
1 /*-
2  * Copyright (c) 1999 Cameron Grant <cg@freebsd.org>
3  * All rights reserved.
4  *
5  * Redistribution and use in source and binary forms, with or without
6  * modification, are permitted provided that the following conditions
7  * are met:
8  * 1. Redistributions of source code must retain the above copyright
9  *    notice, this list of conditions and the following disclaimer.
10  * 2. Redistributions in binary form must reproduce the above copyright
11  *    notice, this list of conditions and the following disclaimer in the
12  *    documentation and/or other materials provided with the distribution.
13  *
14  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
15  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
16  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
17  * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
18  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
19  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
20  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
21  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
22  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
23  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
24  * SUCH DAMAGE.
25  *
26  * $FreeBSD: src/sys/dev/sound/isa/sndbuf_dma.c,v 1.3 2005/01/06 01:43:17 imp Exp $
27  * $DragonFly: src/sys/dev/sound/isa/sndbuf_dma.c,v 1.1 2007/01/04 21:47:02 corecode Exp $
28  */
29
30 #include <dev/sound/pcm/sound.h>
31
32 #include <bus/isa/isavar.h>
33
34 SND_DECLARE_FILE("$DragonFly: src/sys/dev/sound/isa/sndbuf_dma.c,v 1.1 2007/01/04 21:47:02 corecode Exp $");
35
36 int
37 sndbuf_dmasetup(struct snd_dbuf *b, struct resource *drq)
38 {
39         /* should do isa_dma_acquire/isa_dma_release here */
40         if (drq == NULL) {
41                 b->dmachan = -1;
42         } else {
43                 sndbuf_setflags(b, SNDBUF_F_DMA, 1);
44                 b->dmachan = rman_get_start(drq);
45         }
46         return 0;
47 }
48
49 int
50 sndbuf_dmasetdir(struct snd_dbuf *b, int dir)
51 {
52         KASSERT(b, ("sndbuf_dmasetdir called with b == NULL"));
53         KASSERT(sndbuf_getflags(b) & SNDBUF_F_DMA, ("sndbuf_dmasetdir called on non-ISA buffer"));
54
55         b->dir = (dir == PCMDIR_PLAY)? ISADMA_WRITE : ISADMA_READ;
56         return 0;
57 }
58
59 void
60 sndbuf_dma(struct snd_dbuf *b, int go)
61 {
62         KASSERT(b, ("sndbuf_dma called with b == NULL"));
63         KASSERT(sndbuf_getflags(b) & SNDBUF_F_DMA, ("sndbuf_dma called on non-ISA buffer"));
64
65         switch (go) {
66         case PCMTRIG_START:
67                 /* isa_dmainit(b->chan, size); */
68                 isa_dmastart(b->dir | ISADMA_RAW, b->buf, b->bufsize, b->dmachan);
69                 break;
70
71         case PCMTRIG_STOP:
72         case PCMTRIG_ABORT:
73                 isa_dmastop(b->dmachan);
74                 isa_dmadone(b->dir | ISADMA_RAW, b->buf, b->bufsize, b->dmachan);
75                 break;
76         }
77
78         DEB(printf("buf 0x%p ISA DMA %s, channel %d\n",
79                 b,
80                 (go == PCMTRIG_START)? "started" : "stopped",
81                 b->dmachan));
82 }
83
84 int
85 sndbuf_dmaptr(struct snd_dbuf *b)
86 {
87         int i;
88
89         KASSERT(b, ("sndbuf_dmaptr called with b == NULL"));
90         KASSERT(sndbuf_getflags(b) & SNDBUF_F_DMA, ("sndbuf_dmaptr called on non-ISA buffer"));
91
92         if (!sndbuf_runsz(b))
93                 return 0;
94         i = isa_dmastatus(b->dmachan);
95         KASSERT(i >= 0, ("isa_dmastatus returned %d", i));
96         return b->bufsize - i;
97 }
98
99 void
100 sndbuf_dmabounce(struct snd_dbuf *b)
101 {
102         KASSERT(b, ("sndbuf_dmabounce called with b == NULL"));
103         KASSERT(sndbuf_getflags(b) & SNDBUF_F_DMA, ("sndbuf_dmabounce called on non-ISA buffer"));
104
105         /* tell isa_dma to bounce data in/out */
106 }