drivers: power: report battery voltage in AOSP compatible format
[GitHub/mt8127/android_kernel_alcatel_ttab.git] / sound / usb / usx2y / usbusx2yaudio.c
CommitLineData
1da177e4
LT
1/*
2 * US-X2Y AUDIO
3 * Copyright (c) 2002-2004 by Karsten Wiese
4 *
5 * based on
6 *
7 * (Tentative) USB Audio Driver for ALSA
8 *
9 * Main and PCM part
10 *
11 * Copyright (c) 2002 by Takashi Iwai <tiwai@suse.de>
12 *
13 * Many codes borrowed from audio.c by
14 * Alan Cox (alan@lxorguk.ukuu.org.uk)
15 * Thomas Sailer (sailer@ife.ee.ethz.ch)
16 *
17 *
18 * This program is free software; you can redistribute it and/or modify
19 * it under the terms of the GNU General Public License as published by
20 * the Free Software Foundation; either version 2 of the License, or
21 * (at your option) any later version.
22 *
23 * This program is distributed in the hope that it will be useful,
24 * but WITHOUT ANY WARRANTY; without even the implied warranty of
25 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
26 * GNU General Public License for more details.
27 *
28 * You should have received a copy of the GNU General Public License
29 * along with this program; if not, write to the Free Software
30 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
31 */
32
33
1da177e4 34#include <linux/interrupt.h>
5a0e3ad6 35#include <linux/slab.h>
1da177e4 36#include <linux/usb.h>
31623caa 37#include <linux/moduleparam.h>
1da177e4
LT
38#include <sound/core.h>
39#include <sound/info.h>
40#include <sound/pcm.h>
41#include <sound/pcm_params.h>
42#include "usx2y.h"
43#include "usbusx2y.h"
44
45#define USX2Y_NRPACKS 4 /* Default value used for nr of packs per urb.
46 1 to 4 have been tested ok on uhci.
47 To use 3 on ohci, you'd need a patch:
48 look for "0000425-linux-2.6.9-rc4-mm1_ohci-hcd.patch.gz" on
49 "https://bugtrack.alsa-project.org/alsa-bug/bug_view_page.php?bug_id=0000425"
50 .
51 1, 2 and 4 work out of the box on ohci, if I recall correctly.
52 Bigger is safer operation,
53 smaller gives lower latencies.
54 */
55#define USX2Y_NRPACKS_VARIABLE y /* If your system works ok with this module's parameter
56 nrpacks set to 1, you might as well comment
57 this #define out, and thereby produce smaller, faster code.
58 You'd also set USX2Y_NRPACKS to 1 then.
59 */
60
61#ifdef USX2Y_NRPACKS_VARIABLE
62 static int nrpacks = USX2Y_NRPACKS; /* number of packets per urb */
63 #define nr_of_packs() nrpacks
64 module_param(nrpacks, int, 0444);
65 MODULE_PARM_DESC(nrpacks, "Number of packets per URB.");
66#else
67 #define nr_of_packs() USX2Y_NRPACKS
68#endif
69
70
bbe85bbd 71static int usX2Y_urb_capt_retire(struct snd_usX2Y_substream *subs)
1da177e4
LT
72{
73 struct urb *urb = subs->completed_urb;
bbe85bbd 74 struct snd_pcm_runtime *runtime = subs->pcm_substream->runtime;
1da177e4
LT
75 unsigned char *cp;
76 int i, len, lens = 0, hwptr_done = subs->hwptr_done;
bbe85bbd 77 struct usX2Ydev *usX2Y = subs->usX2Y;
1da177e4
LT
78
79 for (i = 0; i < nr_of_packs(); i++) {
80 cp = (unsigned char*)urb->transfer_buffer + urb->iso_frame_desc[i].offset;
81 if (urb->iso_frame_desc[i].status) { /* active? hmm, skip this */
bbe85bbd 82 snd_printk(KERN_ERR "active frame status %i. "
6e8d5d2f 83 "Most probably some hardware problem.\n",
bbe85bbd 84 urb->iso_frame_desc[i].status);
1da177e4
LT
85 return urb->iso_frame_desc[i].status;
86 }
87 len = urb->iso_frame_desc[i].actual_length / usX2Y->stride;
88 if (! len) {
89 snd_printd("0 == len ERROR!\n");
90 continue;
91 }
92
93 /* copy a data chunk */
94 if ((hwptr_done + len) > runtime->buffer_size) {
95 int cnt = runtime->buffer_size - hwptr_done;
96 int blen = cnt * usX2Y->stride;
97 memcpy(runtime->dma_area + hwptr_done * usX2Y->stride, cp, blen);
98 memcpy(runtime->dma_area, cp + blen, len * usX2Y->stride - blen);
99 } else {
bbe85bbd
TI
100 memcpy(runtime->dma_area + hwptr_done * usX2Y->stride, cp,
101 len * usX2Y->stride);
1da177e4
LT
102 }
103 lens += len;
104 if ((hwptr_done += len) >= runtime->buffer_size)
105 hwptr_done -= runtime->buffer_size;
106 }
107
108 subs->hwptr_done = hwptr_done;
109 subs->transfer_done += lens;
110 /* update the pointer, call callback if necessary */
111 if (subs->transfer_done >= runtime->period_size) {
112 subs->transfer_done -= runtime->period_size;
113 snd_pcm_period_elapsed(subs->pcm_substream);
114 }
115 return 0;
116}
117/*
118 * prepare urb for playback data pipe
119 *
120 * we copy the data directly from the pcm buffer.
121 * the current position to be copied is held in hwptr field.
122 * since a urb can handle only a single linear buffer, if the total
123 * transferred area overflows the buffer boundary, we cannot send
124 * it directly from the buffer. thus the data is once copied to
125 * a temporary buffer and urb points to that.
126 */
bbe85bbd 127static int usX2Y_urb_play_prepare(struct snd_usX2Y_substream *subs,
1da177e4
LT
128 struct urb *cap_urb,
129 struct urb *urb)
130{
131 int count, counts, pack;
bbe85bbd
TI
132 struct usX2Ydev *usX2Y = subs->usX2Y;
133 struct snd_pcm_runtime *runtime = subs->pcm_substream->runtime;
1da177e4
LT
134
135 count = 0;
136 for (pack = 0; pack < nr_of_packs(); pack++) {
137 /* calculate the size of a packet */
138 counts = cap_urb->iso_frame_desc[pack].actual_length / usX2Y->stride;
139 count += counts;
140 if (counts < 43 || counts > 50) {
d3d579f8 141 snd_printk(KERN_ERR "should not be here with counts=%i\n", counts);
1da177e4
LT
142 return -EPIPE;
143 }
144 /* set up descriptor */
145 urb->iso_frame_desc[pack].offset = pack ?
bbe85bbd
TI
146 urb->iso_frame_desc[pack - 1].offset +
147 urb->iso_frame_desc[pack - 1].length :
1da177e4
LT
148 0;
149 urb->iso_frame_desc[pack].length = cap_urb->iso_frame_desc[pack].actual_length;
150 }
151 if (atomic_read(&subs->state) >= state_PRERUNNING)
152 if (subs->hwptr + count > runtime->buffer_size) {
153 /* err, the transferred area goes over buffer boundary.
154 * copy the data to the temp buffer.
155 */
156 int len;
157 len = runtime->buffer_size - subs->hwptr;
158 urb->transfer_buffer = subs->tmpbuf;
bbe85bbd
TI
159 memcpy(subs->tmpbuf, runtime->dma_area +
160 subs->hwptr * usX2Y->stride, len * usX2Y->stride);
161 memcpy(subs->tmpbuf + len * usX2Y->stride,
162 runtime->dma_area, (count - len) * usX2Y->stride);
1da177e4
LT
163 subs->hwptr += count;
164 subs->hwptr -= runtime->buffer_size;
165 } else {
166 /* set the buffer pointer */
167 urb->transfer_buffer = runtime->dma_area + subs->hwptr * usX2Y->stride;
168 if ((subs->hwptr += count) >= runtime->buffer_size)
169 subs->hwptr -= runtime->buffer_size;
170 }
171 else
172 urb->transfer_buffer = subs->tmpbuf;
173 urb->transfer_buffer_length = count * usX2Y->stride;
174 return 0;
175}
176
177/*
178 * process after playback data complete
179 *
180 * update the current position and call callback if a period is processed.
181 */
bbe85bbd 182static void usX2Y_urb_play_retire(struct snd_usX2Y_substream *subs, struct urb *urb)
1da177e4 183{
bbe85bbd 184 struct snd_pcm_runtime *runtime = subs->pcm_substream->runtime;
1da177e4
LT
185 int len = urb->actual_length / subs->usX2Y->stride;
186
187 subs->transfer_done += len;
188 subs->hwptr_done += len;
189 if (subs->hwptr_done >= runtime->buffer_size)
190 subs->hwptr_done -= runtime->buffer_size;
191 if (subs->transfer_done >= runtime->period_size) {
192 subs->transfer_done -= runtime->period_size;
193 snd_pcm_period_elapsed(subs->pcm_substream);
194 }
195}
196
bbe85bbd 197static int usX2Y_urb_submit(struct snd_usX2Y_substream *subs, struct urb *urb, int frame)
1da177e4
LT
198{
199 int err;
200 if (!urb)
201 return -ENODEV;
202 urb->start_frame = (frame + NRURBS * nr_of_packs()); // let hcd do rollover sanity checks
203 urb->hcpriv = NULL;
a014bbad 204 urb->dev = subs->usX2Y->dev; /* we need to set this at each time */
1da177e4 205 if ((err = usb_submit_urb(urb, GFP_ATOMIC)) < 0) {
d3d579f8 206 snd_printk(KERN_ERR "usb_submit_urb() returned %i\n", err);
1da177e4
LT
207 return err;
208 }
209 return 0;
210}
211
bbe85bbd
TI
212static inline int usX2Y_usbframe_complete(struct snd_usX2Y_substream *capsubs,
213 struct snd_usX2Y_substream *playbacksubs,
214 int frame)
1da177e4
LT
215{
216 int err, state;
cb432379
TI
217 struct urb *urb = playbacksubs->completed_urb;
218
219 state = atomic_read(&playbacksubs->state);
220 if (NULL != urb) {
221 if (state == state_RUNNING)
222 usX2Y_urb_play_retire(playbacksubs, urb);
bbe85bbd
TI
223 else if (state >= state_PRERUNNING)
224 atomic_inc(&playbacksubs->state);
cb432379
TI
225 } else {
226 switch (state) {
227 case state_STARTING1:
228 urb = playbacksubs->urb[0];
229 atomic_inc(&playbacksubs->state);
230 break;
231 case state_STARTING2:
232 urb = playbacksubs->urb[1];
233 atomic_inc(&playbacksubs->state);
234 break;
1da177e4 235 }
1da177e4 236 }
cb432379
TI
237 if (urb) {
238 if ((err = usX2Y_urb_play_prepare(playbacksubs, capsubs->completed_urb, urb)) ||
bbe85bbd 239 (err = usX2Y_urb_submit(playbacksubs, urb, frame))) {
cb432379 240 return err;
bbe85bbd 241 }
cb432379
TI
242 }
243
244 playbacksubs->completed_urb = NULL;
245
1da177e4
LT
246 state = atomic_read(&capsubs->state);
247 if (state >= state_PREPARED) {
248 if (state == state_RUNNING) {
249 if ((err = usX2Y_urb_capt_retire(capsubs)))
250 return err;
cb432379
TI
251 } else if (state >= state_PRERUNNING)
252 atomic_inc(&capsubs->state);
1da177e4
LT
253 if ((err = usX2Y_urb_submit(capsubs, capsubs->completed_urb, frame)))
254 return err;
255 }
256 capsubs->completed_urb = NULL;
257 return 0;
258}
259
260
bbe85bbd 261static void usX2Y_clients_stop(struct usX2Ydev *usX2Y)
1da177e4
LT
262{
263 int s, u;
bbe85bbd 264
1da177e4 265 for (s = 0; s < 4; s++) {
bbe85bbd 266 struct snd_usX2Y_substream *subs = usX2Y->subs[s];
1da177e4
LT
267 if (subs) {
268 snd_printdd("%i %p state=%i\n", s, subs, atomic_read(&subs->state));
269 atomic_set(&subs->state, state_STOPPED);
270 }
271 }
272 for (s = 0; s < 4; s++) {
bbe85bbd 273 struct snd_usX2Y_substream *subs = usX2Y->subs[s];
1da177e4
LT
274 if (subs) {
275 if (atomic_read(&subs->state) >= state_PRERUNNING) {
1ef08eb2
TI
276 unsigned long flags;
277
278 snd_pcm_stream_lock_irqsave(subs->pcm_substream, flags);
1da177e4 279 snd_pcm_stop(subs->pcm_substream, SNDRV_PCM_STATE_XRUN);
1ef08eb2 280 snd_pcm_stream_unlock_irqrestore(subs->pcm_substream, flags);
1da177e4
LT
281 }
282 for (u = 0; u < NRURBS; u++) {
283 struct urb *urb = subs->urb[u];
284 if (NULL != urb)
bbe85bbd
TI
285 snd_printdd("%i status=%i start_frame=%i\n",
286 u, urb->status, urb->start_frame);
1da177e4
LT
287 }
288 }
289 }
290 usX2Y->prepare_subs = NULL;
291 wake_up(&usX2Y->prepare_wait_queue);
292}
293
bbe85bbd
TI
294static void usX2Y_error_urb_status(struct usX2Ydev *usX2Y,
295 struct snd_usX2Y_substream *subs, struct urb *urb)
1da177e4 296{
d3d579f8 297 snd_printk(KERN_ERR "ep=%i stalled with status=%i\n", subs->endpoint, urb->status);
1da177e4
LT
298 urb->status = 0;
299 usX2Y_clients_stop(usX2Y);
300}
301
7d12e780 302static void i_usX2Y_urb_complete(struct urb *urb)
1da177e4 303{
bbe85bbd
TI
304 struct snd_usX2Y_substream *subs = urb->context;
305 struct usX2Ydev *usX2Y = subs->usX2Y;
1da177e4
LT
306
307 if (unlikely(atomic_read(&subs->state) < state_PREPARED)) {
bbe85bbd 308 snd_printdd("hcd_frame=%i ep=%i%s status=%i start_frame=%i\n",
a014bbad 309 usb_get_current_frame_number(usX2Y->dev),
bbe85bbd
TI
310 subs->endpoint, usb_pipein(urb->pipe) ? "in" : "out",
311 urb->status, urb->start_frame);
1da177e4
LT
312 return;
313 }
314 if (unlikely(urb->status)) {
315 usX2Y_error_urb_status(usX2Y, subs, urb);
316 return;
317 }
044dde0a
DM
318
319 subs->completed_urb = urb;
320
1da177e4 321 {
bbe85bbd 322 struct snd_usX2Y_substream *capsubs = usX2Y->subs[SNDRV_PCM_STREAM_CAPTURE],
1da177e4 323 *playbacksubs = usX2Y->subs[SNDRV_PCM_STREAM_PLAYBACK];
bbe85bbd
TI
324 if (capsubs->completed_urb &&
325 atomic_read(&capsubs->state) >= state_PREPARED &&
326 (playbacksubs->completed_urb ||
327 atomic_read(&playbacksubs->state) < state_PREPARED)) {
635bbb35
KW
328 if (!usX2Y_usbframe_complete(capsubs, playbacksubs, urb->start_frame))
329 usX2Y->wait_iso_frame += nr_of_packs();
330 else {
1da177e4
LT
331 snd_printdd("\n");
332 usX2Y_clients_stop(usX2Y);
333 }
334 }
335 }
336}
337
bbe85bbd 338static void usX2Y_urbs_set_complete(struct usX2Ydev * usX2Y,
7d12e780 339 void (*complete)(struct urb *))
1da177e4
LT
340{
341 int s, u;
342 for (s = 0; s < 4; s++) {
bbe85bbd 343 struct snd_usX2Y_substream *subs = usX2Y->subs[s];
1da177e4
LT
344 if (NULL != subs)
345 for (u = 0; u < NRURBS; u++) {
346 struct urb * urb = subs->urb[u];
347 if (NULL != urb)
348 urb->complete = complete;
349 }
350 }
351}
352
bbe85bbd 353static void usX2Y_subs_startup_finish(struct usX2Ydev * usX2Y)
1da177e4
LT
354{
355 usX2Y_urbs_set_complete(usX2Y, i_usX2Y_urb_complete);
356 usX2Y->prepare_subs = NULL;
357}
358
7d12e780 359static void i_usX2Y_subs_startup(struct urb *urb)
1da177e4 360{
bbe85bbd
TI
361 struct snd_usX2Y_substream *subs = urb->context;
362 struct usX2Ydev *usX2Y = subs->usX2Y;
363 struct snd_usX2Y_substream *prepare_subs = usX2Y->prepare_subs;
1da177e4
LT
364 if (NULL != prepare_subs)
365 if (urb->start_frame == prepare_subs->urb[0]->start_frame) {
366 usX2Y_subs_startup_finish(usX2Y);
367 atomic_inc(&prepare_subs->state);
368 wake_up(&usX2Y->prepare_wait_queue);
369 }
370
7d12e780 371 i_usX2Y_urb_complete(urb);
1da177e4
LT
372}
373
bbe85bbd 374static void usX2Y_subs_prepare(struct snd_usX2Y_substream *subs)
1da177e4 375{
bbe85bbd
TI
376 snd_printdd("usX2Y_substream_prepare(%p) ep=%i urb0=%p urb1=%p\n",
377 subs, subs->endpoint, subs->urb[0], subs->urb[1]);
1da177e4
LT
378 /* reset the pointer */
379 subs->hwptr = 0;
380 subs->hwptr_done = 0;
381 subs->transfer_done = 0;
382}
383
384
bbe85bbd 385static void usX2Y_urb_release(struct urb **urb, int free_tb)
1da177e4
LT
386{
387 if (*urb) {
388 usb_kill_urb(*urb);
389 if (free_tb)
390 kfree((*urb)->transfer_buffer);
391 usb_free_urb(*urb);
392 *urb = NULL;
393 }
394}
395/*
396 * release a substreams urbs
397 */
bbe85bbd 398static void usX2Y_urbs_release(struct snd_usX2Y_substream *subs)
1da177e4
LT
399{
400 int i;
401 snd_printdd("usX2Y_urbs_release() %i\n", subs->endpoint);
402 for (i = 0; i < NRURBS; i++)
bbe85bbd
TI
403 usX2Y_urb_release(subs->urb + i,
404 subs != subs->usX2Y->subs[SNDRV_PCM_STREAM_PLAYBACK]);
1da177e4 405
4d572776
JJ
406 kfree(subs->tmpbuf);
407 subs->tmpbuf = NULL;
1da177e4
LT
408}
409/*
410 * initialize a substream's urbs
411 */
bbe85bbd 412static int usX2Y_urbs_allocate(struct snd_usX2Y_substream *subs)
1da177e4
LT
413{
414 int i;
415 unsigned int pipe;
416 int is_playback = subs == subs->usX2Y->subs[SNDRV_PCM_STREAM_PLAYBACK];
a014bbad 417 struct usb_device *dev = subs->usX2Y->dev;
1da177e4
LT
418
419 pipe = is_playback ? usb_sndisocpipe(dev, subs->endpoint) :
420 usb_rcvisocpipe(dev, subs->endpoint);
421 subs->maxpacksize = usb_maxpacket(dev, pipe, is_playback);
422 if (!subs->maxpacksize)
423 return -EINVAL;
424
425 if (is_playback && NULL == subs->tmpbuf) { /* allocate a temporary buffer for playback */
426 subs->tmpbuf = kcalloc(nr_of_packs(), subs->maxpacksize, GFP_KERNEL);
427 if (NULL == subs->tmpbuf) {
428 snd_printk(KERN_ERR "cannot malloc tmpbuf\n");
429 return -ENOMEM;
430 }
431 }
432 /* allocate and initialize data urbs */
433 for (i = 0; i < NRURBS; i++) {
cb432379 434 struct urb **purb = subs->urb + i;
1da177e4
LT
435 if (*purb) {
436 usb_kill_urb(*purb);
437 continue;
438 }
439 *purb = usb_alloc_urb(nr_of_packs(), GFP_KERNEL);
440 if (NULL == *purb) {
441 usX2Y_urbs_release(subs);
442 return -ENOMEM;
443 }
444 if (!is_playback && !(*purb)->transfer_buffer) {
445 /* allocate a capture buffer per urb */
446 (*purb)->transfer_buffer = kmalloc(subs->maxpacksize * nr_of_packs(), GFP_KERNEL);
447 if (NULL == (*purb)->transfer_buffer) {
448 usX2Y_urbs_release(subs);
449 return -ENOMEM;
450 }
451 }
452 (*purb)->dev = dev;
453 (*purb)->pipe = pipe;
454 (*purb)->number_of_packets = nr_of_packs();
455 (*purb)->context = subs;
456 (*purb)->interval = 1;
457 (*purb)->complete = i_usX2Y_subs_startup;
458 }
459 return 0;
460}
461
bbe85bbd 462static void usX2Y_subs_startup(struct snd_usX2Y_substream *subs)
1da177e4 463{
bbe85bbd 464 struct usX2Ydev *usX2Y = subs->usX2Y;
1da177e4
LT
465 usX2Y->prepare_subs = subs;
466 subs->urb[0]->start_frame = -1;
467 wmb();
468 usX2Y_urbs_set_complete(usX2Y, i_usX2Y_subs_startup);
469}
470
bbe85bbd 471static int usX2Y_urbs_start(struct snd_usX2Y_substream *subs)
1da177e4
LT
472{
473 int i, err;
bbe85bbd 474 struct usX2Ydev *usX2Y = subs->usX2Y;
1da177e4
LT
475
476 if ((err = usX2Y_urbs_allocate(subs)) < 0)
477 return err;
478 subs->completed_urb = NULL;
479 for (i = 0; i < 4; i++) {
bbe85bbd 480 struct snd_usX2Y_substream *subs = usX2Y->subs[i];
1da177e4
LT
481 if (subs != NULL && atomic_read(&subs->state) >= state_PREPARED)
482 goto start;
483 }
cb432379 484
1da177e4 485 start:
cb432379
TI
486 usX2Y_subs_startup(subs);
487 for (i = 0; i < NRURBS; i++) {
488 struct urb *urb = subs->urb[i];
489 if (usb_pipein(urb->pipe)) {
490 unsigned long pack;
491 if (0 == i)
492 atomic_set(&subs->state, state_STARTING3);
a014bbad 493 urb->dev = usX2Y->dev;
cb432379
TI
494 for (pack = 0; pack < nr_of_packs(); pack++) {
495 urb->iso_frame_desc[pack].offset = subs->maxpacksize * pack;
496 urb->iso_frame_desc[pack].length = subs->maxpacksize;
497 }
498 urb->transfer_buffer_length = subs->maxpacksize * nr_of_packs();
499 if ((err = usb_submit_urb(urb, GFP_ATOMIC)) < 0) {
500 snd_printk (KERN_ERR "cannot submit datapipe for urb %d, err = %d\n", i, err);
501 err = -EPIPE;
502 goto cleanup;
635bbb35
KW
503 } else
504 if (i == 0)
cb432379 505 usX2Y->wait_iso_frame = urb->start_frame;
cb432379
TI
506 urb->transfer_flags = 0;
507 } else {
508 atomic_set(&subs->state, state_STARTING1);
509 break;
1da177e4 510 }
cb432379
TI
511 }
512 err = 0;
513 wait_event(usX2Y->prepare_wait_queue, NULL == usX2Y->prepare_subs);
514 if (atomic_read(&subs->state) != state_PREPARED)
515 err = -EPIPE;
516
517 cleanup:
518 if (err) {
519 usX2Y_subs_startup_finish(usX2Y);
520 usX2Y_clients_stop(usX2Y); // something is completely wroong > stop evrything
1da177e4
LT
521 }
522 return err;
523}
524
525/*
526 * return the current pcm pointer. just return the hwptr_done value.
527 */
bbe85bbd 528static snd_pcm_uframes_t snd_usX2Y_pcm_pointer(struct snd_pcm_substream *substream)
1da177e4 529{
bbe85bbd 530 struct snd_usX2Y_substream *subs = substream->runtime->private_data;
1da177e4
LT
531 return subs->hwptr_done;
532}
533/*
534 * start/stop substream
535 */
bbe85bbd 536static int snd_usX2Y_pcm_trigger(struct snd_pcm_substream *substream, int cmd)
1da177e4 537{
bbe85bbd 538 struct snd_usX2Y_substream *subs = substream->runtime->private_data;
1da177e4
LT
539
540 switch (cmd) {
541 case SNDRV_PCM_TRIGGER_START:
542 snd_printdd("snd_usX2Y_pcm_trigger(START)\n");
543 if (atomic_read(&subs->state) == state_PREPARED &&
544 atomic_read(&subs->usX2Y->subs[SNDRV_PCM_STREAM_CAPTURE]->state) >= state_PREPARED) {
545 atomic_set(&subs->state, state_PRERUNNING);
546 } else {
547 snd_printdd("\n");
548 return -EPIPE;
549 }
550 break;
551 case SNDRV_PCM_TRIGGER_STOP:
552 snd_printdd("snd_usX2Y_pcm_trigger(STOP)\n");
553 if (atomic_read(&subs->state) >= state_PRERUNNING)
554 atomic_set(&subs->state, state_PREPARED);
555 break;
556 default:
557 return -EINVAL;
558 }
559 return 0;
560}
561
562
563/*
564 * allocate a buffer, setup samplerate
565 *
566 * so far we use a physically linear buffer although packetize transfer
567 * doesn't need a continuous area.
568 * if sg buffer is supported on the later version of alsa, we'll follow
569 * that.
570 */
571static struct s_c2
572{
573 char c1, c2;
574}
575 SetRate44100[] =
576{
577 { 0x14, 0x08}, // this line sets 44100, well actually a little less
578 { 0x18, 0x40}, // only tascam / frontier design knows the further lines .......
579 { 0x18, 0x42},
580 { 0x18, 0x45},
581 { 0x18, 0x46},
582 { 0x18, 0x48},
583 { 0x18, 0x4A},
584 { 0x18, 0x4C},
585 { 0x18, 0x4E},
586 { 0x18, 0x50},
587 { 0x18, 0x52},
588 { 0x18, 0x54},
589 { 0x18, 0x56},
590 { 0x18, 0x58},
591 { 0x18, 0x5A},
592 { 0x18, 0x5C},
593 { 0x18, 0x5E},
594 { 0x18, 0x60},
595 { 0x18, 0x62},
596 { 0x18, 0x64},
597 { 0x18, 0x66},
598 { 0x18, 0x68},
599 { 0x18, 0x6A},
600 { 0x18, 0x6C},
601 { 0x18, 0x6E},
602 { 0x18, 0x70},
603 { 0x18, 0x72},
604 { 0x18, 0x74},
605 { 0x18, 0x76},
606 { 0x18, 0x78},
607 { 0x18, 0x7A},
608 { 0x18, 0x7C},
609 { 0x18, 0x7E}
610};
611static struct s_c2 SetRate48000[] =
612{
613 { 0x14, 0x09}, // this line sets 48000, well actually a little less
614 { 0x18, 0x40}, // only tascam / frontier design knows the further lines .......
615 { 0x18, 0x42},
616 { 0x18, 0x45},
617 { 0x18, 0x46},
618 { 0x18, 0x48},
619 { 0x18, 0x4A},
620 { 0x18, 0x4C},
621 { 0x18, 0x4E},
622 { 0x18, 0x50},
623 { 0x18, 0x52},
624 { 0x18, 0x54},
625 { 0x18, 0x56},
626 { 0x18, 0x58},
627 { 0x18, 0x5A},
628 { 0x18, 0x5C},
629 { 0x18, 0x5E},
630 { 0x18, 0x60},
631 { 0x18, 0x62},
632 { 0x18, 0x64},
633 { 0x18, 0x66},
634 { 0x18, 0x68},
635 { 0x18, 0x6A},
636 { 0x18, 0x6C},
637 { 0x18, 0x6E},
638 { 0x18, 0x70},
639 { 0x18, 0x73},
640 { 0x18, 0x74},
641 { 0x18, 0x76},
642 { 0x18, 0x78},
643 { 0x18, 0x7A},
644 { 0x18, 0x7C},
645 { 0x18, 0x7E}
646};
647#define NOOF_SETRATE_URBS ARRAY_SIZE(SetRate48000)
648
7d12e780 649static void i_usX2Y_04Int(struct urb *urb)
1da177e4 650{
bbe85bbd 651 struct usX2Ydev *usX2Y = urb->context;
1da177e4 652
d3d579f8
TI
653 if (urb->status)
654 snd_printk(KERN_ERR "snd_usX2Y_04Int() urb->status=%i\n", urb->status);
1da177e4
LT
655 if (0 == --usX2Y->US04->len)
656 wake_up(&usX2Y->In04WaitQueue);
657}
658
bbe85bbd 659static int usX2Y_rate_set(struct usX2Ydev *usX2Y, int rate)
1da177e4
LT
660{
661 int err = 0, i;
bbe85bbd 662 struct snd_usX2Y_urbSeq *us = NULL;
1da177e4
LT
663 int *usbdata = NULL;
664 struct s_c2 *ra = rate == 48000 ? SetRate48000 : SetRate44100;
665
666 if (usX2Y->rate != rate) {
cb432379 667 us = kzalloc(sizeof(*us) + sizeof(struct urb*) * NOOF_SETRATE_URBS, GFP_KERNEL);
1da177e4
LT
668 if (NULL == us) {
669 err = -ENOMEM;
670 goto cleanup;
671 }
cb432379 672 usbdata = kmalloc(sizeof(int) * NOOF_SETRATE_URBS, GFP_KERNEL);
1da177e4
LT
673 if (NULL == usbdata) {
674 err = -ENOMEM;
675 goto cleanup;
676 }
677 for (i = 0; i < NOOF_SETRATE_URBS; ++i) {
678 if (NULL == (us->urb[i] = usb_alloc_urb(0, GFP_KERNEL))) {
679 err = -ENOMEM;
680 goto cleanup;
681 }
682 ((char*)(usbdata + i))[0] = ra[i].c1;
683 ((char*)(usbdata + i))[1] = ra[i].c2;
a014bbad 684 usb_fill_bulk_urb(us->urb[i], usX2Y->dev, usb_sndbulkpipe(usX2Y->dev, 4),
1da177e4
LT
685 usbdata + i, 2, i_usX2Y_04Int, usX2Y);
686#ifdef OLD_USB
687 us->urb[i]->transfer_flags = USB_QUEUE_BULK;
688#endif
689 }
690 us->submitted = 0;
691 us->len = NOOF_SETRATE_URBS;
692 usX2Y->US04 = us;
693 wait_event_timeout(usX2Y->In04WaitQueue, 0 == us->len, HZ);
694 usX2Y->US04 = NULL;
695 if (us->len)
696 err = -ENODEV;
697 cleanup:
698 if (us) {
699 us->submitted = 2*NOOF_SETRATE_URBS;
700 for (i = 0; i < NOOF_SETRATE_URBS; ++i) {
701 struct urb *urb = us->urb[i];
702 if (urb->status) {
703 if (!err)
704 err = -ENODEV;
705 usb_kill_urb(urb);
706 }
707 usb_free_urb(urb);
708 }
709 usX2Y->US04 = NULL;
710 kfree(usbdata);
711 kfree(us);
cb432379 712 if (!err)
1da177e4 713 usX2Y->rate = rate;
1da177e4
LT
714 }
715 }
716
717 return err;
718}
719
720
bbe85bbd 721static int usX2Y_format_set(struct usX2Ydev *usX2Y, snd_pcm_format_t format)
1da177e4
LT
722{
723 int alternate, err;
724 struct list_head* p;
725 if (format == SNDRV_PCM_FORMAT_S24_3LE) {
726 alternate = 2;
727 usX2Y->stride = 6;
728 } else {
729 alternate = 1;
730 usX2Y->stride = 4;
731 }
d82af9f9 732 list_for_each(p, &usX2Y->midi_list) {
1da177e4
LT
733 snd_usbmidi_input_stop(p);
734 }
735 usb_kill_urb(usX2Y->In04urb);
a014bbad 736 if ((err = usb_set_interface(usX2Y->dev, 0, alternate))) {
d3d579f8 737 snd_printk(KERN_ERR "usb_set_interface error \n");
1da177e4
LT
738 return err;
739 }
a014bbad 740 usX2Y->In04urb->dev = usX2Y->dev;
1da177e4 741 err = usb_submit_urb(usX2Y->In04urb, GFP_KERNEL);
d82af9f9 742 list_for_each(p, &usX2Y->midi_list) {
1da177e4
LT
743 snd_usbmidi_input_start(p);
744 }
745 usX2Y->format = format;
746 usX2Y->rate = 0;
747 return err;
748}
749
750
bbe85bbd
TI
751static int snd_usX2Y_pcm_hw_params(struct snd_pcm_substream *substream,
752 struct snd_pcm_hw_params *hw_params)
1da177e4
LT
753{
754 int err = 0;
755 unsigned int rate = params_rate(hw_params);
756 snd_pcm_format_t format = params_format(hw_params);
bbe85bbd
TI
757 struct snd_card *card = substream->pstr->pcm->card;
758 struct list_head *list;
cb432379
TI
759
760 snd_printdd("snd_usX2Y_hw_params(%p, %p)\n", substream, hw_params);
761 // all pcm substreams off one usX2Y have to operate at the same rate & format
762 list_for_each(list, &card->devices) {
bbe85bbd
TI
763 struct snd_device *dev;
764 struct snd_pcm *pcm;
cb432379
TI
765 int s;
766 dev = snd_device(list);
767 if (dev->type != SNDRV_DEV_PCM)
768 continue;
769 pcm = dev->device_data;
770 for (s = 0; s < 2; ++s) {
bbe85bbd 771 struct snd_pcm_substream *test_substream;
cb432379
TI
772 test_substream = pcm->streams[s].substream;
773 if (test_substream && test_substream != substream &&
774 test_substream->runtime &&
775 ((test_substream->runtime->format &&
776 test_substream->runtime->format != format) ||
777 (test_substream->runtime->rate &&
778 test_substream->runtime->rate != rate)))
779 return -EINVAL;
1da177e4
LT
780 }
781 }
782 if (0 > (err = snd_pcm_lib_malloc_pages(substream, params_buffer_bytes(hw_params)))) {
bbe85bbd
TI
783 snd_printk(KERN_ERR "snd_pcm_lib_malloc_pages(%p, %i) returned %i\n",
784 substream, params_buffer_bytes(hw_params), err);
1da177e4
LT
785 return err;
786 }
787 return 0;
788}
789
790/*
791 * free the buffer
792 */
bbe85bbd 793static int snd_usX2Y_pcm_hw_free(struct snd_pcm_substream *substream)
1da177e4 794{
bbe85bbd
TI
795 struct snd_pcm_runtime *runtime = substream->runtime;
796 struct snd_usX2Y_substream *subs = runtime->private_data;
12aa7579 797 mutex_lock(&subs->usX2Y->prepare_mutex);
1da177e4
LT
798 snd_printdd("snd_usX2Y_hw_free(%p)\n", substream);
799
800 if (SNDRV_PCM_STREAM_PLAYBACK == substream->stream) {
bbe85bbd 801 struct snd_usX2Y_substream *cap_subs = subs->usX2Y->subs[SNDRV_PCM_STREAM_CAPTURE];
1da177e4
LT
802 atomic_set(&subs->state, state_STOPPED);
803 usX2Y_urbs_release(subs);
804 if (!cap_subs->pcm_substream ||
805 !cap_subs->pcm_substream->runtime ||
806 !cap_subs->pcm_substream->runtime->status ||
807 cap_subs->pcm_substream->runtime->status->state < SNDRV_PCM_STATE_PREPARED) {
808 atomic_set(&cap_subs->state, state_STOPPED);
809 usX2Y_urbs_release(cap_subs);
810 }
811 } else {
bbe85bbd 812 struct snd_usX2Y_substream *playback_subs = subs->usX2Y->subs[SNDRV_PCM_STREAM_PLAYBACK];
1da177e4
LT
813 if (atomic_read(&playback_subs->state) < state_PREPARED) {
814 atomic_set(&subs->state, state_STOPPED);
815 usX2Y_urbs_release(subs);
816 }
817 }
12aa7579 818 mutex_unlock(&subs->usX2Y->prepare_mutex);
1da177e4
LT
819 return snd_pcm_lib_free_pages(substream);
820}
821/*
822 * prepare callback
823 *
824 * set format and initialize urbs
825 */
bbe85bbd 826static int snd_usX2Y_pcm_prepare(struct snd_pcm_substream *substream)
1da177e4 827{
bbe85bbd
TI
828 struct snd_pcm_runtime *runtime = substream->runtime;
829 struct snd_usX2Y_substream *subs = runtime->private_data;
830 struct usX2Ydev *usX2Y = subs->usX2Y;
831 struct snd_usX2Y_substream *capsubs = subs->usX2Y->subs[SNDRV_PCM_STREAM_CAPTURE];
1da177e4
LT
832 int err = 0;
833 snd_printdd("snd_usX2Y_pcm_prepare(%p)\n", substream);
834
12aa7579 835 mutex_lock(&usX2Y->prepare_mutex);
1da177e4
LT
836 usX2Y_subs_prepare(subs);
837// Start hardware streams
838// SyncStream first....
839 if (atomic_read(&capsubs->state) < state_PREPARED) {
840 if (usX2Y->format != runtime->format)
841 if ((err = usX2Y_format_set(usX2Y, runtime->format)) < 0)
842 goto up_prepare_mutex;
843 if (usX2Y->rate != runtime->rate)
844 if ((err = usX2Y_rate_set(usX2Y, runtime->rate)) < 0)
845 goto up_prepare_mutex;
846 snd_printdd("starting capture pipe for %s\n", subs == capsubs ? "self" : "playpipe");
847 if (0 > (err = usX2Y_urbs_start(capsubs)))
848 goto up_prepare_mutex;
849 }
850
851 if (subs != capsubs && atomic_read(&subs->state) < state_PREPARED)
852 err = usX2Y_urbs_start(subs);
853
854 up_prepare_mutex:
12aa7579 855 mutex_unlock(&usX2Y->prepare_mutex);
1da177e4
LT
856 return err;
857}
858
bbe85bbd 859static struct snd_pcm_hardware snd_usX2Y_2c =
1da177e4
LT
860{
861 .info = (SNDRV_PCM_INFO_MMAP | SNDRV_PCM_INFO_INTERLEAVED |
862 SNDRV_PCM_INFO_BLOCK_TRANSFER |
2008f137
TI
863 SNDRV_PCM_INFO_MMAP_VALID |
864 SNDRV_PCM_INFO_BATCH),
1da177e4
LT
865 .formats = SNDRV_PCM_FMTBIT_S16_LE | SNDRV_PCM_FMTBIT_S24_3LE,
866 .rates = SNDRV_PCM_RATE_44100 | SNDRV_PCM_RATE_48000,
867 .rate_min = 44100,
868 .rate_max = 48000,
869 .channels_min = 2,
870 .channels_max = 2,
871 .buffer_bytes_max = (2*128*1024),
872 .period_bytes_min = 64,
873 .period_bytes_max = (128*1024),
874 .periods_min = 2,
875 .periods_max = 1024,
876 .fifo_size = 0
877};
878
879
880
bbe85bbd 881static int snd_usX2Y_pcm_open(struct snd_pcm_substream *substream)
1da177e4 882{
bbe85bbd 883 struct snd_usX2Y_substream *subs = ((struct snd_usX2Y_substream **)
1da177e4 884 snd_pcm_substream_chip(substream))[substream->stream];
bbe85bbd 885 struct snd_pcm_runtime *runtime = substream->runtime;
1da177e4
LT
886
887 if (subs->usX2Y->chip_status & USX2Y_STAT_CHIP_MMAP_PCM_URBS)
888 return -EBUSY;
889
890 runtime->hw = snd_usX2Y_2c;
891 runtime->private_data = subs;
892 subs->pcm_substream = substream;
893 snd_pcm_hw_constraint_minmax(runtime, SNDRV_PCM_HW_PARAM_PERIOD_TIME, 1000, 200000);
894 return 0;
895}
896
897
898
bbe85bbd 899static int snd_usX2Y_pcm_close(struct snd_pcm_substream *substream)
1da177e4 900{
bbe85bbd
TI
901 struct snd_pcm_runtime *runtime = substream->runtime;
902 struct snd_usX2Y_substream *subs = runtime->private_data;
1da177e4
LT
903
904 subs->pcm_substream = NULL;
905
bbe85bbd 906 return 0;
1da177e4
LT
907}
908
909
bbe85bbd 910static struct snd_pcm_ops snd_usX2Y_pcm_ops =
1da177e4
LT
911{
912 .open = snd_usX2Y_pcm_open,
913 .close = snd_usX2Y_pcm_close,
914 .ioctl = snd_pcm_lib_ioctl,
915 .hw_params = snd_usX2Y_pcm_hw_params,
916 .hw_free = snd_usX2Y_pcm_hw_free,
917 .prepare = snd_usX2Y_pcm_prepare,
918 .trigger = snd_usX2Y_pcm_trigger,
919 .pointer = snd_usX2Y_pcm_pointer,
920};
921
922
923/*
924 * free a usb stream instance
925 */
bbe85bbd 926static void usX2Y_audio_stream_free(struct snd_usX2Y_substream **usX2Y_substream)
1da177e4 927{
c111b8de
RK
928 kfree(usX2Y_substream[SNDRV_PCM_STREAM_PLAYBACK]);
929 usX2Y_substream[SNDRV_PCM_STREAM_PLAYBACK] = NULL;
930
1da177e4
LT
931 kfree(usX2Y_substream[SNDRV_PCM_STREAM_CAPTURE]);
932 usX2Y_substream[SNDRV_PCM_STREAM_CAPTURE] = NULL;
933}
934
bbe85bbd 935static void snd_usX2Y_pcm_private_free(struct snd_pcm *pcm)
1da177e4 936{
bbe85bbd 937 struct snd_usX2Y_substream **usX2Y_stream = pcm->private_data;
c3e6f7d8 938 if (usX2Y_stream)
1da177e4 939 usX2Y_audio_stream_free(usX2Y_stream);
1da177e4
LT
940}
941
bbe85bbd 942static int usX2Y_audio_stream_new(struct snd_card *card, int playback_endpoint, int capture_endpoint)
1da177e4 943{
bbe85bbd 944 struct snd_pcm *pcm;
1da177e4 945 int err, i;
bbe85bbd 946 struct snd_usX2Y_substream **usX2Y_substream =
a014bbad 947 usX2Y(card)->subs + 2 * usX2Y(card)->pcm_devs;
1da177e4
LT
948
949 for (i = playback_endpoint ? SNDRV_PCM_STREAM_PLAYBACK : SNDRV_PCM_STREAM_CAPTURE;
950 i <= SNDRV_PCM_STREAM_CAPTURE; ++i) {
bbe85bbd 951 usX2Y_substream[i] = kzalloc(sizeof(struct snd_usX2Y_substream), GFP_KERNEL);
1da177e4
LT
952 if (NULL == usX2Y_substream[i]) {
953 snd_printk(KERN_ERR "cannot malloc\n");
954 return -ENOMEM;
955 }
956 usX2Y_substream[i]->usX2Y = usX2Y(card);
957 }
958
959 if (playback_endpoint)
960 usX2Y_substream[SNDRV_PCM_STREAM_PLAYBACK]->endpoint = playback_endpoint;
961 usX2Y_substream[SNDRV_PCM_STREAM_CAPTURE]->endpoint = capture_endpoint;
962
a014bbad 963 err = snd_pcm_new(card, NAME_ALLCAPS" Audio", usX2Y(card)->pcm_devs,
1da177e4
LT
964 playback_endpoint ? 1 : 0, 1,
965 &pcm);
966 if (err < 0) {
967 usX2Y_audio_stream_free(usX2Y_substream);
968 return err;
969 }
970
971 if (playback_endpoint)
972 snd_pcm_set_ops(pcm, SNDRV_PCM_STREAM_PLAYBACK, &snd_usX2Y_pcm_ops);
973 snd_pcm_set_ops(pcm, SNDRV_PCM_STREAM_CAPTURE, &snd_usX2Y_pcm_ops);
974
975 pcm->private_data = usX2Y_substream;
976 pcm->private_free = snd_usX2Y_pcm_private_free;
977 pcm->info_flags = 0;
978
a014bbad 979 sprintf(pcm->name, NAME_ALLCAPS" Audio #%d", usX2Y(card)->pcm_devs);
1da177e4
LT
980
981 if ((playback_endpoint &&
982 0 > (err = snd_pcm_lib_preallocate_pages(pcm->streams[SNDRV_PCM_STREAM_PLAYBACK].substream,
983 SNDRV_DMA_TYPE_CONTINUOUS,
984 snd_dma_continuous_data(GFP_KERNEL),
985 64*1024, 128*1024))) ||
986 0 > (err = snd_pcm_lib_preallocate_pages(pcm->streams[SNDRV_PCM_STREAM_CAPTURE].substream,
987 SNDRV_DMA_TYPE_CONTINUOUS,
988 snd_dma_continuous_data(GFP_KERNEL),
989 64*1024, 128*1024))) {
990 snd_usX2Y_pcm_private_free(pcm);
991 return err;
992 }
a014bbad 993 usX2Y(card)->pcm_devs++;
1da177e4
LT
994
995 return 0;
996}
997
998/*
999 * create a chip instance and set its names.
1000 */
bbe85bbd 1001int usX2Y_audio_create(struct snd_card *card)
1da177e4
LT
1002{
1003 int err = 0;
1004
a014bbad 1005 INIT_LIST_HEAD(&usX2Y(card)->pcm_list);
1da177e4
LT
1006
1007 if (0 > (err = usX2Y_audio_stream_new(card, 0xA, 0x8)))
1008 return err;
a014bbad 1009 if (le16_to_cpu(usX2Y(card)->dev->descriptor.idProduct) == USB_ID_US428)
1da177e4
LT
1010 if (0 > (err = usX2Y_audio_stream_new(card, 0, 0xA)))
1011 return err;
a014bbad 1012 if (le16_to_cpu(usX2Y(card)->dev->descriptor.idProduct) != USB_ID_US122)
1da177e4
LT
1013 err = usX2Y_rate_set(usX2Y(card), 44100); // Lets us428 recognize output-volume settings, disturbs us122.
1014 return err;
1015}