]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - sys/dev/sound/pcm/fake.c
unfinished sblive driver, playback/mixer only for now - not enabled in
[FreeBSD/FreeBSD.git] / sys / dev / sound / pcm / fake.c
1 /*
2  * Copyright (c) 1999 Cameron Grant <gandalf@vilnya.demon.co.uk>
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$
27  */
28
29 #include <dev/sound/pcm/sound.h>
30
31 /* channel interface */
32 static void *fkchan_init(void *devinfo, snd_dbuf *b, pcm_channel *c, int dir);
33 static int fkchan_setdir(void *data, int dir);
34 static int fkchan_setformat(void *data, u_int32_t format);
35 static int fkchan_setspeed(void *data, u_int32_t speed);
36 static int fkchan_setblocksize(void *data, u_int32_t blocksize);
37 static int fkchan_trigger(void *data, int go);
38 static int fkchan_getptr(void *data);
39 static pcmchan_caps *fkchan_getcaps(void *data);
40
41 static pcmchan_caps fk_caps = {
42         4000, 48000,
43         AFMT_STEREO | AFMT_U8 | AFMT_S8 | AFMT_S16_LE | AFMT_S16_BE | AFMT_U16_LE | AFMT_U16_BE
44 };
45
46 static pcm_channel fk_chantemplate = {
47         fkchan_init,
48         fkchan_setdir,
49         fkchan_setformat,
50         fkchan_setspeed,
51         fkchan_setblocksize,
52         fkchan_trigger,
53         fkchan_getptr,
54         fkchan_getcaps,
55 };
56
57 /* channel interface */
58 static void *
59 fkchan_init(void *devinfo, snd_dbuf *b, pcm_channel *c, int dir)
60 {
61         b->bufsize = 16384;
62         b->buf = malloc(b->bufsize, M_DEVBUF, M_NOWAIT);
63         return (void *)0xbabef00d;
64 }
65
66 static int
67 fkchan_setdir(void *data, int dir)
68 {
69         return 0;
70 }
71
72 static int
73 fkchan_setformat(void *data, u_int32_t format)
74 {
75         return 0;
76 }
77
78 static int
79 fkchan_setspeed(void *data, u_int32_t speed)
80 {
81         return speed;
82 }
83
84 static int
85 fkchan_setblocksize(void *data, u_int32_t blocksize)
86 {
87         return blocksize;
88 }
89
90 static int
91 fkchan_trigger(void *data, int go)
92 {
93         return 0;
94 }
95
96 static int
97 fkchan_getptr(void *data)
98 {
99         return 0;
100 }
101
102 static pcmchan_caps *
103 fkchan_getcaps(void *data)
104 {
105         return &fk_caps;
106 }
107
108 int
109 fkchan_setup(pcm_channel *c)
110 {
111         *c = fk_chantemplate;
112         return 0;
113 }