blob: d1ef3048dbba218f158f1bc55c510ea535563cde [file] [log] [blame]
Daniel Macke5779992010-03-04 19:46:13 +01001/*
2 * This program is free software; you can redistribute it and/or modify
3 * it under the terms of the GNU General Public License as published by
4 * the Free Software Foundation; either version 2 of the License, or
5 * (at your option) any later version.
6 *
7 * This program is distributed in the hope that it will be useful,
8 * but WITHOUT ANY WARRANTY; without even the implied warranty of
9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
10 * GNU General Public License for more details.
11 *
12 * You should have received a copy of the GNU General Public License
13 * along with this program; if not, write to the Free Software
14 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
15 *
16 */
17
Daniel Mackc731bc92011-09-14 12:46:57 +020018#include <linux/gfp.h>
19#include <linux/init.h>
Takashi Iwai80c8a2a2012-01-09 11:37:20 +010020#include <linux/ratelimit.h>
Daniel Mackc731bc92011-09-14 12:46:57 +020021#include <linux/usb.h>
22#include <linux/usb/audio.h>
Daniel Mack8fdff6a2012-04-12 13:51:11 +020023#include <linux/slab.h>
Daniel Mackc731bc92011-09-14 12:46:57 +020024
25#include <sound/core.h>
26#include <sound/pcm.h>
Daniel Mack8fdff6a2012-04-12 13:51:11 +020027#include <sound/pcm_params.h>
Daniel Mackc731bc92011-09-14 12:46:57 +020028
29#include "usbaudio.h"
30#include "helper.h"
31#include "card.h"
32#include "endpoint.h"
33#include "pcm.h"
34
Daniel Mack8fdff6a2012-04-12 13:51:11 +020035#define EP_FLAG_ACTIVATED 0
36#define EP_FLAG_RUNNING 1
37
Daniel Mackc731bc92011-09-14 12:46:57 +020038/*
Daniel Mack94c27212012-04-12 13:51:15 +020039 * snd_usb_endpoint is a model that abstracts everything related to an
40 * USB endpoint and its streaming.
41 *
42 * There are functions to activate and deactivate the streaming URBs and
43 * optinal callbacks to let the pcm logic handle the actual content of the
44 * packets for playback and record. Thus, the bus streaming and the audio
45 * handlers are fully decoupled.
46 *
47 * There are two different types of endpoints in for audio applications.
48 *
49 * SND_USB_ENDPOINT_TYPE_DATA handles full audio data payload for both
50 * inbound and outbound traffic.
51 *
52 * SND_USB_ENDPOINT_TYPE_SYNC are for inbound traffic only and expect the
53 * payload to carry Q16.16 formatted sync information (3 or 4 bytes).
54 *
55 * Each endpoint has to be configured (by calling
56 * snd_usb_endpoint_set_params()) before it can be used.
57 *
58 * The model incorporates a reference counting, so that multiple users
59 * can call snd_usb_endpoint_start() and snd_usb_endpoint_stop(), and
60 * only the first user will effectively start the URBs, and only the last
61 * one will tear them down again.
62 */
63
64/*
Daniel Mackc731bc92011-09-14 12:46:57 +020065 * convert a sampling rate into our full speed format (fs/1000 in Q16.16)
66 * this will overflow at approx 524 kHz
67 */
68static inline unsigned get_usb_full_speed_rate(unsigned int rate)
69{
70 return ((rate << 13) + 62) / 125;
71}
72
73/*
74 * convert a sampling rate into USB high speed format (fs/8000 in Q16.16)
75 * this will overflow at approx 4 MHz
76 */
77static inline unsigned get_usb_high_speed_rate(unsigned int rate)
78{
79 return ((rate << 10) + 62) / 125;
80}
81
82/*
Daniel Mackc731bc92011-09-14 12:46:57 +020083 * release a urb data
84 */
85static void release_urb_ctx(struct snd_urb_ctx *u)
86{
Daniel Mackd399ff92012-04-12 13:51:13 +020087 if (u->buffer_size)
88 usb_free_coherent(u->ep->chip->dev, u->buffer_size,
89 u->urb->transfer_buffer,
90 u->urb->transfer_dma);
91 usb_free_urb(u->urb);
92 u->urb = NULL;
Daniel Mackc731bc92011-09-14 12:46:57 +020093}
94
95static const char *usb_error_string(int err)
96{
97 switch (err) {
98 case -ENODEV:
99 return "no device";
100 case -ENOENT:
101 return "endpoint not enabled";
102 case -EPIPE:
103 return "endpoint stalled";
104 case -ENOSPC:
105 return "not enough bandwidth";
106 case -ESHUTDOWN:
107 return "device disabled";
108 case -EHOSTUNREACH:
109 return "device suspended";
110 case -EINVAL:
111 case -EAGAIN:
112 case -EFBIG:
113 case -EMSGSIZE:
114 return "internal error";
115 default:
116 return "unknown error";
117 }
118}
119
Daniel Mack94c27212012-04-12 13:51:15 +0200120/**
121 * snd_usb_endpoint_implicit_feedback_sink: Report endpoint usage type
122 *
123 * @ep: The endpoint
124 *
125 * Determine whether an endpoint is driven by an implicit feedback
126 * data endpoint source.
127 */
Daniel Mack8fdff6a2012-04-12 13:51:11 +0200128int snd_usb_endpoint_implict_feedback_sink(struct snd_usb_endpoint *ep)
129{
130 return ep->sync_master &&
131 ep->sync_master->type == SND_USB_ENDPOINT_TYPE_DATA &&
132 ep->type == SND_USB_ENDPOINT_TYPE_DATA &&
133 usb_pipeout(ep->pipe);
134}
135
Daniel Mack94c27212012-04-12 13:51:15 +0200136/*
137 * For streaming based on information derived from sync endpoints,
138 * prepare_outbound_urb_sizes() will call next_packet_size() to
139 * determine the number of samples to be sent in the next packet.
140 *
141 * For implicit feedback, next_packet_size() is unused.
142 */
Daniel Mack8fdff6a2012-04-12 13:51:11 +0200143static int next_packet_size(struct snd_usb_endpoint *ep)
144{
145 unsigned long flags;
146 int ret;
147
148 if (ep->fill_max)
149 return ep->maxframesize;
150
151 spin_lock_irqsave(&ep->lock, flags);
152 ep->phase = (ep->phase & 0xffff)
153 + (ep->freqm << ep->datainterval);
154 ret = min(ep->phase >> 16, ep->maxframesize);
155 spin_unlock_irqrestore(&ep->lock, flags);
156
157 return ret;
158}
159
160static void retire_outbound_urb(struct snd_usb_endpoint *ep,
161 struct snd_urb_ctx *urb_ctx)
162{
163 if (ep->retire_data_urb)
164 ep->retire_data_urb(ep->data_subs, urb_ctx->urb);
165}
166
167static void retire_inbound_urb(struct snd_usb_endpoint *ep,
168 struct snd_urb_ctx *urb_ctx)
169{
170 struct urb *urb = urb_ctx->urb;
171
172 if (ep->sync_slave)
173 snd_usb_handle_sync_urb(ep->sync_slave, ep, urb);
174
175 if (ep->retire_data_urb)
176 ep->retire_data_urb(ep->data_subs, urb);
177}
178
179static void prepare_outbound_urb_sizes(struct snd_usb_endpoint *ep,
180 struct snd_urb_ctx *ctx)
181{
182 int i;
183
184 for (i = 0; i < ctx->packets; ++i)
185 ctx->packet_size[i] = next_packet_size(ep);
186}
187
188/*
189 * Prepare a PLAYBACK urb for submission to the bus.
190 */
191static void prepare_outbound_urb(struct snd_usb_endpoint *ep,
192 struct snd_urb_ctx *ctx)
193{
194 int i;
195 struct urb *urb = ctx->urb;
196 unsigned char *cp = urb->transfer_buffer;
197
198 urb->dev = ep->chip->dev; /* we need to set this at each time */
199
200 switch (ep->type) {
201 case SND_USB_ENDPOINT_TYPE_DATA:
202 if (ep->prepare_data_urb) {
203 ep->prepare_data_urb(ep->data_subs, urb);
204 } else {
205 /* no data provider, so send silence */
206 unsigned int offs = 0;
207 for (i = 0; i < ctx->packets; ++i) {
208 int counts = ctx->packet_size[i];
209 urb->iso_frame_desc[i].offset = offs * ep->stride;
210 urb->iso_frame_desc[i].length = counts * ep->stride;
211 offs += counts;
212 }
213
214 urb->number_of_packets = ctx->packets;
215 urb->transfer_buffer_length = offs * ep->stride;
216 memset(urb->transfer_buffer, ep->silence_value,
217 offs * ep->stride);
218 }
219 break;
220
221 case SND_USB_ENDPOINT_TYPE_SYNC:
222 if (snd_usb_get_speed(ep->chip->dev) >= USB_SPEED_HIGH) {
223 /*
224 * fill the length and offset of each urb descriptor.
225 * the fixed 12.13 frequency is passed as 16.16 through the pipe.
226 */
227 urb->iso_frame_desc[0].length = 4;
228 urb->iso_frame_desc[0].offset = 0;
229 cp[0] = ep->freqn;
230 cp[1] = ep->freqn >> 8;
231 cp[2] = ep->freqn >> 16;
232 cp[3] = ep->freqn >> 24;
233 } else {
234 /*
235 * fill the length and offset of each urb descriptor.
236 * the fixed 10.14 frequency is passed through the pipe.
237 */
238 urb->iso_frame_desc[0].length = 3;
239 urb->iso_frame_desc[0].offset = 0;
240 cp[0] = ep->freqn >> 2;
241 cp[1] = ep->freqn >> 10;
242 cp[2] = ep->freqn >> 18;
243 }
244
245 break;
246 }
247}
248
249/*
250 * Prepare a CAPTURE or SYNC urb for submission to the bus.
251 */
252static inline void prepare_inbound_urb(struct snd_usb_endpoint *ep,
253 struct snd_urb_ctx *urb_ctx)
254{
255 int i, offs;
256 struct urb *urb = urb_ctx->urb;
257
258 urb->dev = ep->chip->dev; /* we need to set this at each time */
259
260 switch (ep->type) {
261 case SND_USB_ENDPOINT_TYPE_DATA:
262 offs = 0;
263 for (i = 0; i < urb_ctx->packets; i++) {
264 urb->iso_frame_desc[i].offset = offs;
265 urb->iso_frame_desc[i].length = ep->curpacksize;
266 offs += ep->curpacksize;
267 }
268
269 urb->transfer_buffer_length = offs;
270 urb->number_of_packets = urb_ctx->packets;
271 break;
272
273 case SND_USB_ENDPOINT_TYPE_SYNC:
274 urb->iso_frame_desc[0].length = min(4u, ep->syncmaxsize);
275 urb->iso_frame_desc[0].offset = 0;
276 break;
277 }
278}
279
Daniel Mack94c27212012-04-12 13:51:15 +0200280/*
281 * Send output urbs that have been prepared previously. Urbs are dequeued
282 * from ep->ready_playback_urbs and in case there there aren't any available
283 * or there are no packets that have been prepared, this function does
284 * nothing.
285 *
286 * The reason why the functionality of sending and preparing urbs is separated
287 * is that host controllers don't guarantee an ordering in returing inbound
288 * and outbound packets to their submitters.
289 *
290 * This function is only used for implicit feedback endpoints. For endpoints
291 * driven by sync endpoints, urbs are submitted from their completion handler.
292 */
Daniel Mack8fdff6a2012-04-12 13:51:11 +0200293static void queue_pending_output_urbs(struct snd_usb_endpoint *ep)
294{
295 while (test_bit(EP_FLAG_RUNNING, &ep->flags)) {
296
297 unsigned long flags;
298 struct snd_usb_packet_info *packet;
299 struct snd_urb_ctx *ctx = NULL;
300 struct urb *urb;
301 int err, i;
302
303 spin_lock_irqsave(&ep->lock, flags);
304 if (ep->next_packet_read_pos != ep->next_packet_write_pos) {
305 packet = ep->next_packet + ep->next_packet_read_pos;
306 ep->next_packet_read_pos++;
307 ep->next_packet_read_pos %= MAX_URBS;
308
309 /* take URB out of FIFO */
310 if (!list_empty(&ep->ready_playback_urbs))
311 ctx = list_first_entry(&ep->ready_playback_urbs,
312 struct snd_urb_ctx, ready_list);
313 }
314 spin_unlock_irqrestore(&ep->lock, flags);
315
316 if (ctx == NULL)
317 return;
318
319 list_del_init(&ctx->ready_list);
320 urb = ctx->urb;
321
322 /* copy over the length information */
323 for (i = 0; i < packet->packets; i++)
324 ctx->packet_size[i] = packet->packet_size[i];
325
Daniel Mack94c27212012-04-12 13:51:15 +0200326 /* call the data handler to fill in playback data */
Daniel Mack8fdff6a2012-04-12 13:51:11 +0200327 prepare_outbound_urb(ep, ctx);
328
329 err = usb_submit_urb(ctx->urb, GFP_ATOMIC);
330 if (err < 0)
331 snd_printk(KERN_ERR "Unable to submit urb #%d: %d (urb %p)\n",
332 ctx->index, err, ctx->urb);
333 else
334 set_bit(ctx->index, &ep->active_mask);
335 }
336}
337
338/*
339 * complete callback for urbs
340 */
341static void snd_complete_urb(struct urb *urb)
342{
343 struct snd_urb_ctx *ctx = urb->context;
344 struct snd_usb_endpoint *ep = ctx->ep;
345 int err;
346
347 if (unlikely(urb->status == -ENOENT || /* unlinked */
348 urb->status == -ENODEV || /* device removed */
349 urb->status == -ECONNRESET || /* unlinked */
350 urb->status == -ESHUTDOWN || /* device disabled */
351 ep->chip->shutdown)) /* device disconnected */
352 goto exit_clear;
353
354 if (usb_pipeout(ep->pipe)) {
355 retire_outbound_urb(ep, ctx);
356 /* can be stopped during retire callback */
357 if (unlikely(!test_bit(EP_FLAG_RUNNING, &ep->flags)))
358 goto exit_clear;
359
360 if (snd_usb_endpoint_implict_feedback_sink(ep)) {
361 unsigned long flags;
362
363 spin_lock_irqsave(&ep->lock, flags);
364 list_add_tail(&ctx->ready_list, &ep->ready_playback_urbs);
365 spin_unlock_irqrestore(&ep->lock, flags);
366 queue_pending_output_urbs(ep);
367
368 goto exit_clear;
369 }
370
371 prepare_outbound_urb_sizes(ep, ctx);
372 prepare_outbound_urb(ep, ctx);
373 } else {
374 retire_inbound_urb(ep, ctx);
375 /* can be stopped during retire callback */
376 if (unlikely(!test_bit(EP_FLAG_RUNNING, &ep->flags)))
377 goto exit_clear;
378
379 prepare_inbound_urb(ep, ctx);
380 }
381
382 err = usb_submit_urb(urb, GFP_ATOMIC);
383 if (err == 0)
384 return;
385
386 snd_printk(KERN_ERR "cannot submit urb (err = %d)\n", err);
387 //snd_pcm_stop(substream, SNDRV_PCM_STATE_XRUN);
388
389exit_clear:
390 clear_bit(ctx->index, &ep->active_mask);
391}
392
Daniel Mack94c27212012-04-12 13:51:15 +0200393/**
394 * snd_usb_add_endpoint: Add an endpoint to an audio chip
395 *
396 * @chip: The chip
397 * @alts: The USB host interface
398 * @ep_num: The number of the endpoint to use
399 * @direction: SNDRV_PCM_STREAM_PLAYBACK or SNDRV_PCM_STREAM_CAPTURE
400 * @type: SND_USB_ENDPOINT_TYPE_DATA or SND_USB_ENDPOINT_TYPE_SYNC
401 *
402 * If the requested endpoint has not been added to the given chip before,
403 * a new instance is created. Otherwise, a pointer to the previoulsy
404 * created instance is returned. In case of any error, NULL is returned.
405 *
406 * New endpoints will be added to chip->ep_list and must be freed by
407 * calling snd_usb_endpoint_free().
408 */
Daniel Mack8fdff6a2012-04-12 13:51:11 +0200409struct snd_usb_endpoint *snd_usb_add_endpoint(struct snd_usb_audio *chip,
410 struct usb_host_interface *alts,
411 int ep_num, int direction, int type)
412{
413 struct list_head *p;
414 struct snd_usb_endpoint *ep;
415 int ret, is_playback = direction == SNDRV_PCM_STREAM_PLAYBACK;
416
417 mutex_lock(&chip->mutex);
418
419 list_for_each(p, &chip->ep_list) {
420 ep = list_entry(p, struct snd_usb_endpoint, list);
421 if (ep->ep_num == ep_num &&
422 ep->iface == alts->desc.bInterfaceNumber &&
423 ep->alt_idx == alts->desc.bAlternateSetting) {
424 snd_printdd(KERN_DEBUG "Re-using EP %x in iface %d,%d @%p\n",
425 ep_num, ep->iface, ep->alt_idx, ep);
426 goto __exit_unlock;
427 }
428 }
429
430 snd_printdd(KERN_DEBUG "Creating new %s %s endpoint #%x\n",
431 is_playback ? "playback" : "capture",
432 type == SND_USB_ENDPOINT_TYPE_DATA ? "data" : "sync",
433 ep_num);
434
435 /* select the alt setting once so the endpoints become valid */
436 ret = usb_set_interface(chip->dev, alts->desc.bInterfaceNumber,
437 alts->desc.bAlternateSetting);
438 if (ret < 0) {
439 snd_printk(KERN_ERR "%s(): usb_set_interface() failed, ret = %d\n",
440 __func__, ret);
441 ep = NULL;
442 goto __exit_unlock;
443 }
444
445 ep = kzalloc(sizeof(*ep), GFP_KERNEL);
446 if (!ep)
447 goto __exit_unlock;
448
449 ep->chip = chip;
450 spin_lock_init(&ep->lock);
451 ep->type = type;
452 ep->ep_num = ep_num;
453 ep->iface = alts->desc.bInterfaceNumber;
454 ep->alt_idx = alts->desc.bAlternateSetting;
455 INIT_LIST_HEAD(&ep->ready_playback_urbs);
456 ep_num &= USB_ENDPOINT_NUMBER_MASK;
457
458 if (is_playback)
459 ep->pipe = usb_sndisocpipe(chip->dev, ep_num);
460 else
461 ep->pipe = usb_rcvisocpipe(chip->dev, ep_num);
462
463 if (type == SND_USB_ENDPOINT_TYPE_SYNC) {
464 if (get_endpoint(alts, 1)->bLength >= USB_DT_ENDPOINT_AUDIO_SIZE &&
465 get_endpoint(alts, 1)->bRefresh >= 1 &&
466 get_endpoint(alts, 1)->bRefresh <= 9)
467 ep->syncinterval = get_endpoint(alts, 1)->bRefresh;
468 else if (snd_usb_get_speed(chip->dev) == USB_SPEED_FULL)
469 ep->syncinterval = 1;
470 else if (get_endpoint(alts, 1)->bInterval >= 1 &&
471 get_endpoint(alts, 1)->bInterval <= 16)
472 ep->syncinterval = get_endpoint(alts, 1)->bInterval - 1;
473 else
474 ep->syncinterval = 3;
475
476 ep->syncmaxsize = le16_to_cpu(get_endpoint(alts, 1)->wMaxPacketSize);
477 }
478
479 list_add_tail(&ep->list, &chip->ep_list);
480
481__exit_unlock:
482 mutex_unlock(&chip->mutex);
483
484 return ep;
485}
486
487/*
488 * wait until all urbs are processed.
489 */
490static int wait_clear_urbs(struct snd_usb_endpoint *ep)
491{
492 unsigned long end_time = jiffies + msecs_to_jiffies(1000);
493 unsigned int i;
494 int alive;
495
496 do {
497 alive = 0;
498 for (i = 0; i < ep->nurbs; i++)
499 if (test_bit(i, &ep->active_mask))
500 alive++;
501
502 if (!alive)
503 break;
504
505 schedule_timeout_uninterruptible(1);
506 } while (time_before(jiffies, end_time));
507
508 if (alive)
509 snd_printk(KERN_ERR "timeout: still %d active urbs on EP #%x\n",
510 alive, ep->ep_num);
511
512 return 0;
513}
514
515/*
516 * unlink active urbs.
517 */
518static int deactivate_urbs(struct snd_usb_endpoint *ep, int force, int can_sleep)
519{
520 unsigned long flags;
521 unsigned int i;
522 int async;
523
524 if (!force && ep->chip->shutdown) /* to be sure... */
525 return -EBADFD;
526
527 async = !can_sleep && ep->chip->async_unlink;
528
529 clear_bit(EP_FLAG_RUNNING, &ep->flags);
530
531 INIT_LIST_HEAD(&ep->ready_playback_urbs);
532 ep->next_packet_read_pos = 0;
533 ep->next_packet_write_pos = 0;
534
535 if (!async && in_interrupt())
536 return 0;
537
538 for (i = 0; i < ep->nurbs; i++) {
539 if (test_bit(i, &ep->active_mask)) {
540 if (!test_and_set_bit(i, &ep->unlink_mask)) {
541 struct urb *u = ep->urb[i].urb;
542 if (async)
543 usb_unlink_urb(u);
544 else
545 usb_kill_urb(u);
546 }
547 }
548 }
549
550 return 0;
551}
552
553/*
554 * release an endpoint's urbs
555 */
556static void release_urbs(struct snd_usb_endpoint *ep, int force)
557{
558 int i;
559
560 /* route incoming urbs to nirvana */
561 ep->retire_data_urb = NULL;
562 ep->prepare_data_urb = NULL;
563
564 /* stop urbs */
565 deactivate_urbs(ep, force, 1);
566 wait_clear_urbs(ep);
567
568 for (i = 0; i < ep->nurbs; i++)
569 release_urb_ctx(&ep->urb[i]);
570
571 if (ep->syncbuf)
572 usb_free_coherent(ep->chip->dev, SYNC_URBS * 4,
573 ep->syncbuf, ep->sync_dma);
574
575 ep->syncbuf = NULL;
576 ep->nurbs = 0;
577}
578
Daniel Mack94c27212012-04-12 13:51:15 +0200579/*
580 * configure a data endpoint
581 */
Daniel Mack8fdff6a2012-04-12 13:51:11 +0200582static int data_ep_set_params(struct snd_usb_endpoint *ep,
583 struct snd_pcm_hw_params *hw_params,
584 struct audioformat *fmt,
585 struct snd_usb_endpoint *sync_ep)
586{
587 unsigned int maxsize, i, urb_packs, total_packs, packs_per_ms;
588 int period_bytes = params_period_bytes(hw_params);
589 int format = params_format(hw_params);
590 int is_playback = usb_pipeout(ep->pipe);
591 int frame_bits = snd_pcm_format_physical_width(params_format(hw_params)) *
592 params_channels(hw_params);
593
594 ep->datainterval = fmt->datainterval;
595 ep->stride = frame_bits >> 3;
596 ep->silence_value = format == SNDRV_PCM_FORMAT_U8 ? 0x80 : 0;
597
598 /* calculate max. frequency */
599 if (ep->maxpacksize) {
600 /* whatever fits into a max. size packet */
601 maxsize = ep->maxpacksize;
602 ep->freqmax = (maxsize / (frame_bits >> 3))
603 << (16 - ep->datainterval);
604 } else {
605 /* no max. packet size: just take 25% higher than nominal */
606 ep->freqmax = ep->freqn + (ep->freqn >> 2);
607 maxsize = ((ep->freqmax + 0xffff) * (frame_bits >> 3))
608 >> (16 - ep->datainterval);
609 }
610
611 if (ep->fill_max)
612 ep->curpacksize = ep->maxpacksize;
613 else
614 ep->curpacksize = maxsize;
615
616 if (snd_usb_get_speed(ep->chip->dev) != USB_SPEED_FULL)
617 packs_per_ms = 8 >> ep->datainterval;
618 else
619 packs_per_ms = 1;
620
621 if (is_playback && !snd_usb_endpoint_implict_feedback_sink(ep)) {
622 urb_packs = max(ep->chip->nrpacks, 1);
623 urb_packs = min(urb_packs, (unsigned int) MAX_PACKS);
624 } else {
625 urb_packs = 1;
626 }
627
628 urb_packs *= packs_per_ms;
629
630 if (sync_ep && !snd_usb_endpoint_implict_feedback_sink(ep))
631 urb_packs = min(urb_packs, 1U << sync_ep->syncinterval);
632
633 /* decide how many packets to be used */
634 if (is_playback && !snd_usb_endpoint_implict_feedback_sink(ep)) {
635 unsigned int minsize, maxpacks;
636 /* determine how small a packet can be */
637 minsize = (ep->freqn >> (16 - ep->datainterval))
638 * (frame_bits >> 3);
639 /* with sync from device, assume it can be 12% lower */
640 if (sync_ep)
641 minsize -= minsize >> 3;
642 minsize = max(minsize, 1u);
643 total_packs = (period_bytes + minsize - 1) / minsize;
644 /* we need at least two URBs for queueing */
645 if (total_packs < 2) {
646 total_packs = 2;
647 } else {
648 /* and we don't want too long a queue either */
649 maxpacks = max(MAX_QUEUE * packs_per_ms, urb_packs * 2);
650 total_packs = min(total_packs, maxpacks);
651 }
652 } else {
653 while (urb_packs > 1 && urb_packs * maxsize >= period_bytes)
654 urb_packs >>= 1;
655 total_packs = MAX_URBS * urb_packs;
656 }
657
658 ep->nurbs = (total_packs + urb_packs - 1) / urb_packs;
659 if (ep->nurbs > MAX_URBS) {
660 /* too much... */
661 ep->nurbs = MAX_URBS;
662 total_packs = MAX_URBS * urb_packs;
663 } else if (ep->nurbs < 2) {
664 /* too little - we need at least two packets
665 * to ensure contiguous playback/capture
666 */
667 ep->nurbs = 2;
668 }
669
670 /* allocate and initialize data urbs */
671 for (i = 0; i < ep->nurbs; i++) {
672 struct snd_urb_ctx *u = &ep->urb[i];
673 u->index = i;
674 u->ep = ep;
675 u->packets = (i + 1) * total_packs / ep->nurbs
676 - i * total_packs / ep->nurbs;
677 u->buffer_size = maxsize * u->packets;
678
679 if (fmt->fmt_type == UAC_FORMAT_TYPE_II)
680 u->packets++; /* for transfer delimiter */
681 u->urb = usb_alloc_urb(u->packets, GFP_KERNEL);
682 if (!u->urb)
683 goto out_of_memory;
684
685 u->urb->transfer_buffer =
686 usb_alloc_coherent(ep->chip->dev, u->buffer_size,
687 GFP_KERNEL, &u->urb->transfer_dma);
688 if (!u->urb->transfer_buffer)
689 goto out_of_memory;
690 u->urb->pipe = ep->pipe;
691 u->urb->transfer_flags = URB_ISO_ASAP | URB_NO_TRANSFER_DMA_MAP;
692 u->urb->interval = 1 << ep->datainterval;
693 u->urb->context = u;
694 u->urb->complete = snd_complete_urb;
695 INIT_LIST_HEAD(&u->ready_list);
696 }
697
698 return 0;
699
700out_of_memory:
701 release_urbs(ep, 0);
702 return -ENOMEM;
703}
704
Daniel Mack94c27212012-04-12 13:51:15 +0200705/*
706 * configure a sync endpoint
707 */
Daniel Mack8fdff6a2012-04-12 13:51:11 +0200708static int sync_ep_set_params(struct snd_usb_endpoint *ep,
709 struct snd_pcm_hw_params *hw_params,
710 struct audioformat *fmt)
711{
712 int i;
713
714 ep->syncbuf = usb_alloc_coherent(ep->chip->dev, SYNC_URBS * 4,
715 GFP_KERNEL, &ep->sync_dma);
716 if (!ep->syncbuf)
717 return -ENOMEM;
718
719 for (i = 0; i < SYNC_URBS; i++) {
720 struct snd_urb_ctx *u = &ep->urb[i];
721 u->index = i;
722 u->ep = ep;
723 u->packets = 1;
724 u->urb = usb_alloc_urb(1, GFP_KERNEL);
725 if (!u->urb)
726 goto out_of_memory;
727 u->urb->transfer_buffer = ep->syncbuf + i * 4;
728 u->urb->transfer_dma = ep->sync_dma + i * 4;
729 u->urb->transfer_buffer_length = 4;
730 u->urb->pipe = ep->pipe;
731 u->urb->transfer_flags = URB_ISO_ASAP |
732 URB_NO_TRANSFER_DMA_MAP;
733 u->urb->number_of_packets = 1;
734 u->urb->interval = 1 << ep->syncinterval;
735 u->urb->context = u;
736 u->urb->complete = snd_complete_urb;
737 }
738
739 ep->nurbs = SYNC_URBS;
740
741 return 0;
742
743out_of_memory:
744 release_urbs(ep, 0);
745 return -ENOMEM;
746}
747
Daniel Mack94c27212012-04-12 13:51:15 +0200748/**
749 * snd_usb_endpoint_set_params: configure an snd_endpoint
750 *
751 * @ep: the endpoint to configure
752 *
753 * Determine the number of of URBs to be used on this endpoint.
754 * An endpoint must be configured before it can be started.
755 * An endpoint that is already running can not be reconfigured.
756 */
Daniel Mack8fdff6a2012-04-12 13:51:11 +0200757int snd_usb_endpoint_set_params(struct snd_usb_endpoint *ep,
758 struct snd_pcm_hw_params *hw_params,
759 struct audioformat *fmt,
760 struct snd_usb_endpoint *sync_ep)
761{
762 int err;
763
764 if (ep->use_count != 0) {
765 snd_printk(KERN_WARNING "Unable to change format on ep #%x: already in use\n",
766 ep->ep_num);
767 return -EBUSY;
768 }
769
770 /* release old buffers, if any */
771 release_urbs(ep, 0);
772
773 ep->datainterval = fmt->datainterval;
774 ep->maxpacksize = fmt->maxpacksize;
775 ep->fill_max = fmt->attributes & UAC_EP_CS_ATTR_FILL_MAX;
776
777 if (snd_usb_get_speed(ep->chip->dev) == USB_SPEED_FULL)
778 ep->freqn = get_usb_full_speed_rate(params_rate(hw_params));
779 else
780 ep->freqn = get_usb_high_speed_rate(params_rate(hw_params));
781
782 /* calculate the frequency in 16.16 format */
783 ep->freqm = ep->freqn;
784 ep->freqshift = INT_MIN;
785
786 ep->phase = 0;
787
788 switch (ep->type) {
789 case SND_USB_ENDPOINT_TYPE_DATA:
790 err = data_ep_set_params(ep, hw_params, fmt, sync_ep);
791 break;
792 case SND_USB_ENDPOINT_TYPE_SYNC:
793 err = sync_ep_set_params(ep, hw_params, fmt);
794 break;
795 default:
796 err = -EINVAL;
797 }
798
799 snd_printdd(KERN_DEBUG "Setting params for ep #%x (type %d, %d urbs), ret=%d\n",
800 ep->ep_num, ep->type, ep->nurbs, err);
801
802 return err;
803}
804
Daniel Mack94c27212012-04-12 13:51:15 +0200805/**
806 * snd_usb_endpoint_start: start an snd_usb_endpoint
807 *
808 * @ep: the endpoint to start
809 *
810 * A call to this function will increment the use count of the endpoint.
811 * In case this not already running, the URBs for this endpoint will be
812 * submitted. Otherwise, this function does nothing.
813 *
814 * Must be balanced to calls of snd_usb_endpoint_stop().
815 *
816 * Returns an error if the URB submission failed, 0 in all other cases.
817 */
Daniel Mack8fdff6a2012-04-12 13:51:11 +0200818int snd_usb_endpoint_start(struct snd_usb_endpoint *ep)
819{
820 int err;
821 unsigned int i;
822
823 if (ep->chip->shutdown)
824 return -EBADFD;
825
826 /* already running? */
827 if (++ep->use_count != 1)
828 return 0;
829
830 if (snd_BUG_ON(!test_bit(EP_FLAG_ACTIVATED, &ep->flags)))
831 return -EINVAL;
832
833 /* just to be sure */
834 deactivate_urbs(ep, 0, 1);
835 wait_clear_urbs(ep);
836
837 ep->active_mask = 0;
838 ep->unlink_mask = 0;
839 ep->phase = 0;
840
841 /*
842 * If this endpoint has a data endpoint as implicit feedback source,
843 * don't start the urbs here. Instead, mark them all as available,
844 * wait for the record urbs to arrive and queue from that context.
845 */
846
847 set_bit(EP_FLAG_RUNNING, &ep->flags);
848
849 if (snd_usb_endpoint_implict_feedback_sink(ep)) {
850 for (i = 0; i < ep->nurbs; i++) {
851 struct snd_urb_ctx *ctx = ep->urb + i;
852 list_add_tail(&ctx->ready_list, &ep->ready_playback_urbs);
853 }
854
855 return 0;
856 }
857
858 for (i = 0; i < ep->nurbs; i++) {
859 struct urb *urb = ep->urb[i].urb;
860
861 if (snd_BUG_ON(!urb))
862 goto __error;
863
864 if (usb_pipeout(ep->pipe)) {
865 prepare_outbound_urb_sizes(ep, urb->context);
866 prepare_outbound_urb(ep, urb->context);
867 } else {
868 prepare_inbound_urb(ep, urb->context);
869 }
870
871 err = usb_submit_urb(urb, GFP_ATOMIC);
872 if (err < 0) {
873 snd_printk(KERN_ERR "cannot submit urb %d, error %d: %s\n",
874 i, err, usb_error_string(err));
875 goto __error;
876 }
877 set_bit(i, &ep->active_mask);
878 }
879
880 return 0;
881
882__error:
883 clear_bit(EP_FLAG_RUNNING, &ep->flags);
884 ep->use_count--;
885 deactivate_urbs(ep, 0, 0);
886 return -EPIPE;
887}
888
Daniel Mack94c27212012-04-12 13:51:15 +0200889/**
890 * snd_usb_endpoint_stop: stop an snd_usb_endpoint
891 *
892 * @ep: the endpoint to stop (may be NULL)
893 *
894 * A call to this function will decrement the use count of the endpoint.
895 * In case the last user has requested the endpoint stop, the URBs will
896 * actually deactivated.
897 *
898 * Must be balanced to calls of snd_usb_endpoint_start().
899 */
Daniel Mack8fdff6a2012-04-12 13:51:11 +0200900void snd_usb_endpoint_stop(struct snd_usb_endpoint *ep,
901 int force, int can_sleep, int wait)
902{
903 if (!ep)
904 return;
905
906 if (snd_BUG_ON(ep->use_count == 0))
907 return;
908
909 if (snd_BUG_ON(!test_bit(EP_FLAG_ACTIVATED, &ep->flags)))
910 return;
911
912 if (--ep->use_count == 0) {
913 deactivate_urbs(ep, force, can_sleep);
914 ep->data_subs = NULL;
915 ep->sync_slave = NULL;
916 ep->retire_data_urb = NULL;
917 ep->prepare_data_urb = NULL;
918
919 if (wait)
920 wait_clear_urbs(ep);
921 }
922}
923
Daniel Mack94c27212012-04-12 13:51:15 +0200924/**
925 * snd_usb_endpoint_activate: activate an snd_usb_endpoint
926 *
927 * @ep: the endpoint to activate
928 *
929 * If the endpoint is not currently in use, this functions will select the
930 * correct alternate interface setting for the interface of this endpoint.
931 *
932 * In case of any active users, this functions does nothing.
933 *
934 * Returns an error if usb_set_interface() failed, 0 in all other
935 * cases.
936 */
Daniel Mack8fdff6a2012-04-12 13:51:11 +0200937int snd_usb_endpoint_activate(struct snd_usb_endpoint *ep)
938{
939 if (ep->use_count != 0)
940 return 0;
941
942 if (!ep->chip->shutdown &&
943 !test_and_set_bit(EP_FLAG_ACTIVATED, &ep->flags)) {
944 int ret;
945
946 ret = usb_set_interface(ep->chip->dev, ep->iface, ep->alt_idx);
947 if (ret < 0) {
948 snd_printk(KERN_ERR "%s() usb_set_interface() failed, ret = %d\n",
949 __func__, ret);
950 clear_bit(EP_FLAG_ACTIVATED, &ep->flags);
951 return ret;
952 }
953
954 return 0;
955 }
956
957 return -EBUSY;
958}
959
Daniel Mack94c27212012-04-12 13:51:15 +0200960/**
961 * snd_usb_endpoint_deactivate: deactivate an snd_usb_endpoint
962 *
963 * @ep: the endpoint to deactivate
964 *
965 * If the endpoint is not currently in use, this functions will select the
966 * alternate interface setting 0 for the interface of this endpoint.
967 *
968 * In case of any active users, this functions does nothing.
969 *
970 * Returns an error if usb_set_interface() failed, 0 in all other
971 * cases.
972 */
Daniel Mack8fdff6a2012-04-12 13:51:11 +0200973int snd_usb_endpoint_deactivate(struct snd_usb_endpoint *ep)
974{
975 if (!ep)
976 return -EINVAL;
977
978 if (ep->use_count != 0)
979 return 0;
980
981 if (!ep->chip->shutdown &&
982 test_and_clear_bit(EP_FLAG_ACTIVATED, &ep->flags)) {
983 int ret;
984
985 ret = usb_set_interface(ep->chip->dev, ep->iface, 0);
986 if (ret < 0) {
987 snd_printk(KERN_ERR "%s(): usb_set_interface() failed, ret = %d\n",
988 __func__, ret);
989 return ret;
990 }
991
992 return 0;
993 }
994
995 return -EBUSY;
996}
997
Daniel Mack94c27212012-04-12 13:51:15 +0200998/** snd_usb_endpoint_free: Free the resources of an snd_usb_endpoint
999 *
1000 * @ep: the list header of the endpoint to free
1001 *
1002 * This function does not care for the endpoint's use count but will tear
1003 * down all the streaming URBs immediately and free all resources.
1004 */
Daniel Mack8fdff6a2012-04-12 13:51:11 +02001005void snd_usb_endpoint_free(struct list_head *head)
1006{
1007 struct snd_usb_endpoint *ep;
1008
1009 ep = list_entry(head, struct snd_usb_endpoint, list);
1010 release_urbs(ep, 1);
1011 kfree(ep);
1012}
1013
Daniel Mack94c27212012-04-12 13:51:15 +02001014/**
1015 * snd_usb_handle_sync_urb: parse an USB sync packet
Daniel Mack8fdff6a2012-04-12 13:51:11 +02001016 *
Daniel Mack94c27212012-04-12 13:51:15 +02001017 * @ep: the endpoint to handle the packet
1018 * @sender: the sending endpoint
1019 * @urb: the received packet
1020 *
1021 * This function is called from the context of an endpoint that received
1022 * the packet and is used to let another endpoint object handle the payload.
Daniel Mack8fdff6a2012-04-12 13:51:11 +02001023 */
1024void snd_usb_handle_sync_urb(struct snd_usb_endpoint *ep,
1025 struct snd_usb_endpoint *sender,
1026 const struct urb *urb)
1027{
1028 int shift;
1029 unsigned int f;
1030 unsigned long flags;
1031
1032 snd_BUG_ON(ep == sender);
1033
Daniel Mack94c27212012-04-12 13:51:15 +02001034 /*
1035 * In case the endpoint is operating in implicit feedback mode, prepare
1036 * and a new outbound URB that has the same layout as the received
1037 * packet and add it to the list of pending urbs.
1038 */
Daniel Mack8fdff6a2012-04-12 13:51:11 +02001039 if (snd_usb_endpoint_implict_feedback_sink(ep) &&
1040 ep->use_count != 0) {
1041
1042 /* implicit feedback case */
1043 int i, bytes = 0;
1044 struct snd_urb_ctx *in_ctx;
1045 struct snd_usb_packet_info *out_packet;
1046
1047 in_ctx = urb->context;
1048
1049 /* Count overall packet size */
1050 for (i = 0; i < in_ctx->packets; i++)
1051 if (urb->iso_frame_desc[i].status == 0)
1052 bytes += urb->iso_frame_desc[i].actual_length;
1053
1054 /*
1055 * skip empty packets. At least M-Audio's Fast Track Ultra stops
1056 * streaming once it received a 0-byte OUT URB
1057 */
1058 if (bytes == 0)
1059 return;
1060
1061 spin_lock_irqsave(&ep->lock, flags);
1062 out_packet = ep->next_packet + ep->next_packet_write_pos;
1063
1064 /*
1065 * Iterate through the inbound packet and prepare the lengths
1066 * for the output packet. The OUT packet we are about to send
1067 * will have the same amount of payload than the IN packet we
1068 * just received.
1069 */
1070
1071 out_packet->packets = in_ctx->packets;
1072 for (i = 0; i < in_ctx->packets; i++) {
1073 if (urb->iso_frame_desc[i].status == 0)
1074 out_packet->packet_size[i] =
1075 urb->iso_frame_desc[i].actual_length / ep->stride;
1076 else
1077 out_packet->packet_size[i] = 0;
1078 }
1079
1080 ep->next_packet_write_pos++;
1081 ep->next_packet_write_pos %= MAX_URBS;
1082 spin_unlock_irqrestore(&ep->lock, flags);
1083 queue_pending_output_urbs(ep);
1084
1085 return;
1086 }
1087
Daniel Mack94c27212012-04-12 13:51:15 +02001088 /*
1089 * process after playback sync complete
1090 *
1091 * Full speed devices report feedback values in 10.14 format as samples
1092 * per frame, high speed devices in 16.16 format as samples per
1093 * microframe.
1094 *
1095 * Because the Audio Class 1 spec was written before USB 2.0, many high
1096 * speed devices use a wrong interpretation, some others use an
1097 * entirely different format.
1098 *
1099 * Therefore, we cannot predict what format any particular device uses
1100 * and must detect it automatically.
1101 */
Daniel Mack8fdff6a2012-04-12 13:51:11 +02001102
1103 if (urb->iso_frame_desc[0].status != 0 ||
1104 urb->iso_frame_desc[0].actual_length < 3)
1105 return;
1106
1107 f = le32_to_cpup(urb->transfer_buffer);
1108 if (urb->iso_frame_desc[0].actual_length == 3)
1109 f &= 0x00ffffff;
1110 else
1111 f &= 0x0fffffff;
1112
1113 if (f == 0)
1114 return;
1115
1116 if (unlikely(ep->freqshift == INT_MIN)) {
1117 /*
1118 * The first time we see a feedback value, determine its format
1119 * by shifting it left or right until it matches the nominal
1120 * frequency value. This assumes that the feedback does not
1121 * differ from the nominal value more than +50% or -25%.
1122 */
1123 shift = 0;
1124 while (f < ep->freqn - ep->freqn / 4) {
1125 f <<= 1;
1126 shift++;
1127 }
1128 while (f > ep->freqn + ep->freqn / 2) {
1129 f >>= 1;
1130 shift--;
1131 }
1132 ep->freqshift = shift;
1133 } else if (ep->freqshift >= 0)
1134 f <<= ep->freqshift;
1135 else
1136 f >>= -ep->freqshift;
1137
1138 if (likely(f >= ep->freqn - ep->freqn / 8 && f <= ep->freqmax)) {
1139 /*
1140 * If the frequency looks valid, set it.
1141 * This value is referred to in prepare_playback_urb().
1142 */
1143 spin_lock_irqsave(&ep->lock, flags);
1144 ep->freqm = f;
1145 spin_unlock_irqrestore(&ep->lock, flags);
1146 } else {
1147 /*
1148 * Out of range; maybe the shift value is wrong.
1149 * Reset it so that we autodetect again the next time.
1150 */
1151 ep->freqshift = INT_MIN;
1152 }
1153}
1154