Merge branch 'vendor/LESS'
[dragonfly.git] / sys / dev / sound / usb / uaudio_pcm.c
1 /* $FreeBSD: src/sys/dev/sound/usb/uaudio_pcm.c,v 1.15.2.2 2007/05/13 20:53:40 ariff Exp $ */
2 /* $DragonFly: src/sys/dev/sound/usb/uaudio_pcm.c,v 1.8 2007/06/16 19:48:05 hasso Exp $ */
3
4 /*-
5  * Copyright (c) 2000-2002 Hiroyuki Aizu <aizu@navi.org>
6  *
7  * Redistribution and use in source and binary forms, with or without
8  * modification, are permitted provided that the following conditions
9  * are met:
10  * 1. Redistributions of source code must retain the above copyright
11  *    notice, this list of conditions and the following disclaimer.
12  * 2. Redistributions in binary form must reproduce the above copyright
13  *    notice, this list of conditions and the following disclaimer in the
14  *    documentation and/or other materials provided with the distribution.
15  *
16  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
17  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
18  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
19  * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
20  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
21  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
22  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
23  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
24  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
25  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
26  * SUCH DAMAGE.
27  */
28
29
30 #include <sys/soundcard.h>
31 #include <dev/sound/pcm/sound.h>
32 #include <dev/sound/chip.h>
33
34 #include <dev/sound/usb/uaudio.h>
35
36 #include "mixer_if.h"
37
38 struct ua_info;
39
40 struct ua_chinfo {
41         struct ua_info *parent;
42         struct pcm_channel *channel;
43         struct snd_dbuf *buffer;
44         u_char *buf;
45         int dir, hwch;
46         u_int32_t fmt, spd, blksz;      /* XXXXX */
47 };
48
49 struct ua_info {
50         device_t sc_dev;
51         u_int32_t bufsz;
52         struct ua_chinfo pch, rch;
53 #define FORMAT_NUM      32
54         u_int32_t ua_playfmt[FORMAT_NUM*2+1]; /* FORMAT_NUM format * (stereo or mono) + endptr */
55         u_int32_t ua_recfmt[FORMAT_NUM*2+1]; /* FORMAT_NUM format * (stereo or mono) + endptr */
56         struct pcmchan_caps ua_playcaps;
57         struct pcmchan_caps ua_reccaps;
58 };
59
60 #define UAUDIO_DEFAULT_BUFSZ            16*1024
61
62 /************************************************************/
63 static void *
64 ua_chan_init(kobj_t obj, void *devinfo, struct snd_dbuf *b, struct pcm_channel *c, int dir)
65 {
66         device_t pa_dev;
67
68         struct ua_info *sc = devinfo;
69         struct ua_chinfo *ch = (dir == PCMDIR_PLAY)? &sc->pch : &sc->rch;
70
71         ch->parent = sc;
72         ch->channel = c;
73         ch->buffer = b;
74         ch->dir = dir;
75
76         pa_dev = device_get_parent(sc->sc_dev);
77
78         ch->buf = kmalloc(sc->bufsz, M_DEVBUF, M_WAITOK);
79         if (sndbuf_setup(b, ch->buf, sc->bufsz) != 0) {
80                 kfree(ch->buf, M_DEVBUF);
81                 return NULL;
82         }
83         uaudio_chan_set_param_pcm_dma_buff(pa_dev, ch->buf, ch->buf+sc->bufsz, ch->channel, dir);
84         if (bootverbose)
85                 device_printf(pa_dev, "%s buf %p\n", (dir == PCMDIR_PLAY)?
86                               "play" : "rec", sndbuf_getbuf(ch->buffer));
87
88         ch->dir = dir;
89 #ifndef NO_RECORDING
90         ch->hwch = 1;
91         if (dir == PCMDIR_PLAY)
92                 ch->hwch = 2;
93 #else
94         ch->hwch = 2;
95 #endif
96
97         return ch;
98 }
99
100 static int
101 ua_chan_free(kobj_t obj, void *data)
102 {
103         struct ua_chinfo *ua = data;
104
105         if (ua->buf != NULL)
106                 kfree(ua->buf, M_DEVBUF);
107         return 0;
108 }
109
110 static int
111 ua_chan_setformat(kobj_t obj, void *data, u_int32_t format)
112 {
113         device_t pa_dev;
114         struct ua_info *ua;
115
116         struct ua_chinfo *ch = data;
117
118         /*
119          * At this point, no need to query as we shouldn't select an unsorted format
120          */
121         ua = ch->parent;
122         pa_dev = device_get_parent(ua->sc_dev);
123         uaudio_chan_set_param_format(pa_dev, format, ch->dir);
124
125         ch->fmt = format;
126         return 0;
127 }
128
129 static int
130 ua_chan_setspeed(kobj_t obj, void *data, u_int32_t speed)
131 {
132         struct ua_chinfo *ch;
133         device_t pa_dev;
134         int bestspeed;
135
136         ch = data;
137         pa_dev = device_get_parent(ch->parent->sc_dev);
138
139         if ((bestspeed = uaudio_chan_set_param_speed(pa_dev, speed, ch->dir)))
140                 ch->spd = bestspeed;
141
142         return ch->spd;
143 }
144
145 static int
146 ua_chan_setblocksize(kobj_t obj, void *data, u_int32_t blocksize)
147 {
148         device_t pa_dev;
149         struct ua_chinfo *ch = data;
150         struct ua_info *ua = ch->parent;
151
152         if (blocksize) {
153                 RANGE(blocksize, 128, ua->bufsz / 2);
154                 if (sndbuf_resize(ch->buffer, ua->bufsz/blocksize, blocksize) != 0) {
155                         ch->blksz = blocksize;
156                 }
157         }
158         pa_dev = device_get_parent(ua->sc_dev);
159         uaudio_chan_set_param_blocksize(pa_dev, blocksize, ch->dir);
160
161         return ch->blksz;
162 }
163
164 static int
165 ua_chan_trigger(kobj_t obj, void *data, int go)
166 {
167         device_t pa_dev;
168         struct ua_info *ua;
169         struct ua_chinfo *ch = data;
170
171         if (go == PCMTRIG_EMLDMAWR || go == PCMTRIG_EMLDMARD)
172                 return 0;
173
174         ua = ch->parent;
175         pa_dev = device_get_parent(ua->sc_dev);
176
177         /* XXXXX */
178         if (ch->dir == PCMDIR_PLAY) {
179                 if (go == PCMTRIG_START) {
180                         uaudio_trigger_output(pa_dev);
181                 } else {
182                         uaudio_halt_out_dma(pa_dev);
183                 }
184         } else {
185 #ifndef NO_RECORDING
186                 if (go == PCMTRIG_START)
187                         uaudio_trigger_input(pa_dev);
188                 else
189                         uaudio_halt_in_dma(pa_dev);
190 #endif
191         }
192
193         return 0;
194 }
195
196 static int
197 ua_chan_getptr(kobj_t obj, void *data)
198 {
199         device_t pa_dev;
200         struct ua_info *ua;
201         struct ua_chinfo *ch = data;
202
203         ua = ch->parent;
204         pa_dev = device_get_parent(ua->sc_dev);
205
206         return uaudio_chan_getptr(pa_dev, ch->dir);
207 }
208
209 static struct pcmchan_caps *
210 ua_chan_getcaps(kobj_t obj, void *data)
211 {
212         struct ua_chinfo *ch;
213
214         ch = data;
215         return (ch->dir == PCMDIR_PLAY) ? &(ch->parent->ua_playcaps) : &(ch->parent->ua_reccaps);
216 }
217
218 static kobj_method_t ua_chan_methods[] = {
219         KOBJMETHOD(channel_init,                ua_chan_init),
220         KOBJMETHOD(channel_free,                ua_chan_free),
221         KOBJMETHOD(channel_setformat,           ua_chan_setformat),
222         KOBJMETHOD(channel_setspeed,            ua_chan_setspeed),
223         KOBJMETHOD(channel_setblocksize,        ua_chan_setblocksize),
224         KOBJMETHOD(channel_trigger,             ua_chan_trigger),
225         KOBJMETHOD(channel_getptr,              ua_chan_getptr),
226         KOBJMETHOD(channel_getcaps,             ua_chan_getcaps),
227         { 0, 0 }
228 };
229
230 CHANNEL_DECLARE(ua_chan);
231
232 /************************************************************/
233 static int
234 ua_mixer_init(struct snd_mixer *m)
235 {
236         u_int32_t mask;
237         device_t pa_dev;
238         struct snddev_info *d;
239         struct ua_info *ua = mix_getdevinfo(m);
240
241         pa_dev = device_get_parent(ua->sc_dev);
242         d = device_get_softc(ua->sc_dev);
243
244         mask = uaudio_query_mix_info(pa_dev);
245         if (d != NULL) {
246                 if (!(mask & SOUND_MASK_PCM)) {
247                         /*
248                          * Emulate missing pcm mixer controller
249                          * through FEEDER_VOLUME
250                          */
251                          d->flags |= SD_F_SOFTPCMVOL;
252                 }
253                 if (!(mask & SOUND_MASK_VOLUME)) {
254                         mix_setparentchild(m, SOUND_MIXER_VOLUME,
255                             SOUND_MASK_PCM);
256                         mix_setrealdev(m, SOUND_MIXER_VOLUME,
257                             SOUND_MIXER_NONE);
258                 }
259         }
260         mix_setdevs(m,  mask);
261
262         mask = uaudio_query_recsrc_info(pa_dev);
263         mix_setrecdevs(m, mask);
264
265         return 0;
266 }
267
268 static int
269 ua_mixer_set(struct snd_mixer *m, unsigned type, unsigned left, unsigned right)
270 {
271         device_t pa_dev;
272         struct ua_info *ua = mix_getdevinfo(m);
273
274         pa_dev = device_get_parent(ua->sc_dev);
275         uaudio_mixer_set(pa_dev, type, left, right);
276
277         return left | (right << 8);
278 }
279
280 static int
281 ua_mixer_setrecsrc(struct snd_mixer *m, u_int32_t src)
282 {
283         device_t pa_dev;
284         struct ua_info *ua = mix_getdevinfo(m);
285
286         pa_dev = device_get_parent(ua->sc_dev);
287         return uaudio_mixer_setrecsrc(pa_dev, src);
288 }
289
290 static kobj_method_t ua_mixer_methods[] = {
291         KOBJMETHOD(mixer_init,          ua_mixer_init),
292         KOBJMETHOD(mixer_set,           ua_mixer_set),
293         KOBJMETHOD(mixer_setrecsrc,     ua_mixer_setrecsrc),
294
295         { 0, 0 }
296 };
297 MIXER_DECLARE(ua_mixer);
298 /************************************************************/
299
300
301 static int
302 ua_probe(device_t dev)
303 {
304         char *s;
305         struct sndcard_func *func;
306
307         /* The parent device has already been probed. */
308
309         func = device_get_ivars(dev);
310         if (func == NULL || func->func != SCF_PCM)
311                 return (ENXIO);
312
313         s = "USB Audio";
314
315         device_set_desc(dev, s);
316         return BUS_PROBE_DEFAULT;
317 }
318
319 static int
320 ua_attach(device_t dev)
321 {
322         struct ua_info *ua;
323         char status[SND_STATUSLEN];
324         device_t pa_dev;
325         u_int32_t nplay, nrec;
326         int i;
327
328         ua = kmalloc(sizeof *ua, M_DEVBUF, M_ZERO | M_WAITOK);
329
330         ua->sc_dev = dev;
331
332         pa_dev = device_get_parent(dev);
333
334         ua->bufsz = pcm_getbuffersize(dev, 4096, UAUDIO_DEFAULT_BUFSZ, 65536);
335         if (bootverbose)
336                 device_printf(dev, "using a default buffer size of %jd\n", (intmax_t)ua->bufsz);
337
338         if (mixer_init(dev, &ua_mixer_class, ua)) {
339                 goto bad;
340         }
341
342         ksnprintf(status, SND_STATUSLEN, "at ? %s", PCM_KLDSTRING(snd_uaudio));
343
344         ua->ua_playcaps.fmtlist = ua->ua_playfmt;
345         ua->ua_reccaps.fmtlist = ua->ua_recfmt;
346         nplay = uaudio_query_formats(pa_dev, PCMDIR_PLAY, FORMAT_NUM * 2, &ua->ua_playcaps);
347         nrec = uaudio_query_formats(pa_dev, PCMDIR_REC, FORMAT_NUM * 2, &ua->ua_reccaps);
348
349         if (nplay > 1)
350                 nplay = 1;
351         if (nrec > 1)
352                 nrec = 1;
353
354 #ifndef NO_RECORDING
355         if (pcm_register(dev, ua, nplay, nrec)) {
356 #else
357         if (pcm_register(dev, ua, nplay, 0)) {
358 #endif
359                 goto bad;
360         }
361
362         sndstat_unregister(dev);
363         uaudio_sndstat_register(dev);
364
365         for (i = 0; i < nplay; i++) {
366                 pcm_addchan(dev, PCMDIR_PLAY, &ua_chan_class, ua);
367         }
368 #ifndef NO_RECORDING
369         for (i = 0; i < nrec; i++) {
370                 pcm_addchan(dev, PCMDIR_REC, &ua_chan_class, ua);
371         }
372 #endif
373         pcm_setstatus(dev, status);
374
375         return 0;
376
377 bad:    kfree(ua, M_DEVBUF);
378         return ENXIO;
379 }
380
381 static int
382 ua_detach(device_t dev)
383 {
384         int r;
385         struct ua_info *sc;
386
387         r = pcm_unregister(dev);
388         if (r)
389                 return r;
390
391         sc = pcm_getdevinfo(dev);
392         kfree(sc, M_DEVBUF);
393
394         return 0;
395 }
396
397 /************************************************************/
398
399 static device_method_t ua_pcm_methods[] = {
400         /* Device interface */
401         DEVMETHOD(device_probe,         ua_probe),
402         DEVMETHOD(device_attach,        ua_attach),
403         DEVMETHOD(device_detach,        ua_detach),
404
405         { 0, 0 }
406 };
407
408 static driver_t ua_pcm_driver = {
409         "pcm",
410         ua_pcm_methods,
411         PCM_SOFTC_SIZE,
412 };
413
414
415 DRIVER_MODULE(ua_pcm, uaudio, ua_pcm_driver, pcm_devclass, 0, 0);
416 MODULE_DEPEND(ua_pcm, uaudio, 1, 1, 1);
417 MODULE_DEPEND(ua_pcm, sound, SOUND_MINVER, SOUND_PREFVER, SOUND_MAXVER);
418 MODULE_VERSION(ua_pcm, 1);