Merge tag 'acpi-5.16-rc1-2' of git://git.kernel.org/pub/scm/linux/kernel/git/rafael...
[linux-block.git] / sound / usb / endpoint.c
CommitLineData
1a59d1b8 1// SPDX-License-Identifier: GPL-2.0-or-later
e5779998 2/*
e5779998
DM
3 */
4
c731bc96
DM
5#include <linux/gfp.h>
6#include <linux/init.h>
80c8a2a3 7#include <linux/ratelimit.h>
c731bc96
DM
8#include <linux/usb.h>
9#include <linux/usb/audio.h>
8fdff6a3 10#include <linux/slab.h>
c731bc96
DM
11
12#include <sound/core.h>
13#include <sound/pcm.h>
8fdff6a3 14#include <sound/pcm_params.h>
c731bc96
DM
15
16#include "usbaudio.h"
17#include "helper.h"
18#include "card.h"
19#include "endpoint.h"
20#include "pcm.h"
bf6313a0 21#include "clock.h"
2b58fd5b 22#include "quirks.h"
c731bc96 23
5c2b3014
TI
24enum {
25 EP_STATE_STOPPED,
26 EP_STATE_RUNNING,
27 EP_STATE_STOPPING,
28};
8fdff6a3 29
00272c61
TI
30/* interface refcounting */
31struct snd_usb_iface_ref {
32 unsigned char iface;
33 bool need_setup;
34 int opened;
35 struct list_head list;
36};
37
94c27215
DM
38/*
39 * 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
07a5e9d4 43 * optional callbacks to let the pcm logic handle the actual content of the
94c27215
DM
44 * packets for playback and record. Thus, the bus streaming and the audio
45 * handlers are fully decoupled.
46 *
07a5e9d4 47 * There are two different types of endpoints in audio applications.
94c27215
DM
48 *
49 * SND_USB_ENDPOINT_TYPE_DATA handles full audio data payload for both
50 * inbound and outbound traffic.
51 *
07a5e9d4
DM
52 * SND_USB_ENDPOINT_TYPE_SYNC endpoints are for inbound traffic only and
53 * expect the payload to carry Q10.14 / Q16.16 formatted sync information
54 * (3 or 4 bytes).
94c27215 55 *
07a5e9d4
DM
56 * Each endpoint has to be configured prior to being used by calling
57 * snd_usb_endpoint_set_params().
94c27215
DM
58 *
59 * The model incorporates a reference counting, so that multiple users
60 * can call snd_usb_endpoint_start() and snd_usb_endpoint_stop(), and
61 * only the first user will effectively start the URBs, and only the last
07a5e9d4 62 * one to stop it will tear the URBs down again.
94c27215
DM
63 */
64
c731bc96
DM
65/*
66 * convert a sampling rate into our full speed format (fs/1000 in Q16.16)
67 * this will overflow at approx 524 kHz
68 */
69static inline unsigned get_usb_full_speed_rate(unsigned int rate)
70{
71 return ((rate << 13) + 62) / 125;
72}
73
74/*
75 * convert a sampling rate into USB high speed format (fs/8000 in Q16.16)
76 * this will overflow at approx 4 MHz
77 */
78static inline unsigned get_usb_high_speed_rate(unsigned int rate)
79{
80 return ((rate << 10) + 62) / 125;
81}
82
c731bc96
DM
83/*
84 * release a urb data
85 */
86static void release_urb_ctx(struct snd_urb_ctx *u)
87{
d399ff95
DM
88 if (u->buffer_size)
89 usb_free_coherent(u->ep->chip->dev, u->buffer_size,
90 u->urb->transfer_buffer,
91 u->urb->transfer_dma);
92 usb_free_urb(u->urb);
93 u->urb = NULL;
c731bc96
DM
94}
95
96static const char *usb_error_string(int err)
97{
98 switch (err) {
99 case -ENODEV:
100 return "no device";
101 case -ENOENT:
102 return "endpoint not enabled";
103 case -EPIPE:
104 return "endpoint stalled";
105 case -ENOSPC:
106 return "not enough bandwidth";
107 case -ESHUTDOWN:
108 return "device disabled";
109 case -EHOSTUNREACH:
110 return "device suspended";
111 case -EINVAL:
112 case -EAGAIN:
113 case -EFBIG:
114 case -EMSGSIZE:
115 return "internal error";
116 default:
117 return "unknown error";
118 }
119}
120
5c2b3014
TI
121static inline bool ep_state_running(struct snd_usb_endpoint *ep)
122{
123 return atomic_read(&ep->state) == EP_STATE_RUNNING;
124}
125
126static inline bool ep_state_update(struct snd_usb_endpoint *ep, int old, int new)
127{
128 return atomic_cmpxchg(&ep->state, old, new) == old;
129}
130
94c27215
DM
131/**
132 * snd_usb_endpoint_implicit_feedback_sink: Report endpoint usage type
133 *
07a5e9d4 134 * @ep: The snd_usb_endpoint
94c27215
DM
135 *
136 * Determine whether an endpoint is driven by an implicit feedback
137 * data endpoint source.
138 */
98ae472b 139int snd_usb_endpoint_implicit_feedback_sink(struct snd_usb_endpoint *ep)
8fdff6a3 140{
bf6313a0 141 return ep->implicit_fb_sync && usb_pipeout(ep->pipe);
8fdff6a3
DM
142}
143
94c27215 144/*
3d58760f
TI
145 * Return the number of samples to be sent in the next packet
146 * for streaming based on information derived from sync endpoints
94c27215 147 *
3d58760f
TI
148 * This won't be used for implicit feedback which takes the packet size
149 * returned from the sync source
94c27215 150 */
d215f63d
TI
151static int slave_next_packet_size(struct snd_usb_endpoint *ep,
152 unsigned int avail)
8fdff6a3
DM
153{
154 unsigned long flags;
d215f63d 155 unsigned int phase;
8fdff6a3
DM
156 int ret;
157
158 if (ep->fill_max)
159 return ep->maxframesize;
160
161 spin_lock_irqsave(&ep->lock, flags);
d215f63d
TI
162 phase = (ep->phase & 0xffff) + (ep->freqm << ep->datainterval);
163 ret = min(phase >> 16, ep->maxframesize);
164 if (avail && ret >= avail)
165 ret = -EAGAIN;
166 else
167 ep->phase = phase;
8fdff6a3
DM
168 spin_unlock_irqrestore(&ep->lock, flags);
169
170 return ret;
171}
172
f0bd62b6 173/*
3d58760f
TI
174 * Return the number of samples to be sent in the next packet
175 * for adaptive and synchronous endpoints
f0bd62b6 176 */
d215f63d 177static int next_packet_size(struct snd_usb_endpoint *ep, unsigned int avail)
f0bd62b6 178{
d215f63d 179 unsigned int sample_accum;
f0bd62b6
AT
180 int ret;
181
182 if (ep->fill_max)
183 return ep->maxframesize;
184
23939115 185 sample_accum = ep->sample_accum + ep->sample_rem;
d215f63d
TI
186 if (sample_accum >= ep->pps) {
187 sample_accum -= ep->pps;
b9fd2007 188 ret = ep->packsize[1];
f0bd62b6 189 } else {
b9fd2007 190 ret = ep->packsize[0];
f0bd62b6 191 }
d215f63d
TI
192 if (avail && ret >= avail)
193 ret = -EAGAIN;
194 else
195 ep->sample_accum = sample_accum;
f0bd62b6
AT
196
197 return ret;
198}
199
3d58760f
TI
200/*
201 * snd_usb_endpoint_next_packet_size: Return the number of samples to be sent
202 * in the next packet
d215f63d
TI
203 *
204 * If the size is equal or exceeds @avail, don't proceed but return -EAGAIN
205 * Exception: @avail = 0 for skipping the check.
3d58760f
TI
206 */
207int snd_usb_endpoint_next_packet_size(struct snd_usb_endpoint *ep,
d215f63d
TI
208 struct snd_urb_ctx *ctx, int idx,
209 unsigned int avail)
3d58760f 210{
d215f63d
TI
211 unsigned int packet;
212
213 packet = ctx->packet_size[idx];
214 if (packet) {
215 if (avail && packet >= avail)
216 return -EAGAIN;
217 return packet;
218 }
219
220 if (ep->sync_source)
221 return slave_next_packet_size(ep, avail);
3d58760f 222 else
d215f63d 223 return next_packet_size(ep, avail);
3d58760f
TI
224}
225
96e221f3
TI
226static void call_retire_callback(struct snd_usb_endpoint *ep,
227 struct urb *urb)
228{
229 struct snd_usb_substream *data_subs;
230
231 data_subs = READ_ONCE(ep->data_subs);
232 if (data_subs && ep->retire_data_urb)
233 ep->retire_data_urb(data_subs, urb);
234}
235
8fdff6a3
DM
236static void retire_outbound_urb(struct snd_usb_endpoint *ep,
237 struct snd_urb_ctx *urb_ctx)
238{
96e221f3 239 call_retire_callback(ep, urb_ctx->urb);
8fdff6a3
DM
240}
241
bf6313a0
TI
242static void snd_usb_handle_sync_urb(struct snd_usb_endpoint *ep,
243 struct snd_usb_endpoint *sender,
244 const struct urb *urb);
245
8fdff6a3
DM
246static void retire_inbound_urb(struct snd_usb_endpoint *ep,
247 struct snd_urb_ctx *urb_ctx)
248{
249 struct urb *urb = urb_ctx->urb;
53837b4a 250 struct snd_usb_endpoint *sync_sink;
8fdff6a3 251
2b58fd5b
DM
252 if (unlikely(ep->skip_packets > 0)) {
253 ep->skip_packets--;
254 return;
255 }
256
53837b4a
TI
257 sync_sink = READ_ONCE(ep->sync_sink);
258 if (sync_sink)
259 snd_usb_handle_sync_urb(sync_sink, ep, urb);
8fdff6a3 260
96e221f3 261 call_retire_callback(ep, urb);
8fdff6a3
DM
262}
263
c1b034a4
TI
264static inline bool has_tx_length_quirk(struct snd_usb_audio *chip)
265{
266 return chip->quirk_flags & QUIRK_FLAG_TX_LENGTH;
267}
268
5cf310e9
RW
269static void prepare_silent_urb(struct snd_usb_endpoint *ep,
270 struct snd_urb_ctx *ctx)
271{
272 struct urb *urb = ctx->urb;
273 unsigned int offs = 0;
e0570446
RW
274 unsigned int extra = 0;
275 __le32 packet_length;
5cf310e9
RW
276 int i;
277
e0570446 278 /* For tx_length_quirk, put packet length at start of packet */
c1b034a4 279 if (has_tx_length_quirk(ep->chip))
e0570446
RW
280 extra = sizeof(packet_length);
281
5cf310e9 282 for (i = 0; i < ctx->packets; ++i) {
e0570446
RW
283 unsigned int offset;
284 unsigned int length;
5cf310e9
RW
285 int counts;
286
d215f63d 287 counts = snd_usb_endpoint_next_packet_size(ep, ctx, i, 0);
e0570446
RW
288 length = counts * ep->stride; /* number of silent bytes */
289 offset = offs * ep->stride + extra * i;
290 urb->iso_frame_desc[i].offset = offset;
291 urb->iso_frame_desc[i].length = length + extra;
292 if (extra) {
293 packet_length = cpu_to_le32(length);
294 memcpy(urb->transfer_buffer + offset,
295 &packet_length, sizeof(packet_length));
296 }
297 memset(urb->transfer_buffer + offset + extra,
298 ep->silence_value, length);
5cf310e9
RW
299 offs += counts;
300 }
301
302 urb->number_of_packets = ctx->packets;
e0570446 303 urb->transfer_buffer_length = offs * ep->stride + ctx->packets * extra;
e8a8f09c 304 ctx->queued = 0;
5cf310e9
RW
305}
306
8fdff6a3
DM
307/*
308 * Prepare a PLAYBACK urb for submission to the bus.
309 */
d5f871f8
TI
310static int prepare_outbound_urb(struct snd_usb_endpoint *ep,
311 struct snd_urb_ctx *ctx,
312 bool in_stream_lock)
8fdff6a3 313{
8fdff6a3
DM
314 struct urb *urb = ctx->urb;
315 unsigned char *cp = urb->transfer_buffer;
96e221f3 316 struct snd_usb_substream *data_subs;
8fdff6a3
DM
317
318 urb->dev = ep->chip->dev; /* we need to set this at each time */
319
320 switch (ep->type) {
321 case SND_USB_ENDPOINT_TYPE_DATA:
96e221f3
TI
322 data_subs = READ_ONCE(ep->data_subs);
323 if (data_subs && ep->prepare_data_urb)
d5f871f8
TI
324 return ep->prepare_data_urb(data_subs, urb, in_stream_lock);
325 /* no data provider, so send silence */
326 prepare_silent_urb(ep, ctx);
8fdff6a3
DM
327 break;
328
329 case SND_USB_ENDPOINT_TYPE_SYNC:
330 if (snd_usb_get_speed(ep->chip->dev) >= USB_SPEED_HIGH) {
331 /*
332 * fill the length and offset of each urb descriptor.
333 * the fixed 12.13 frequency is passed as 16.16 through the pipe.
334 */
335 urb->iso_frame_desc[0].length = 4;
336 urb->iso_frame_desc[0].offset = 0;
337 cp[0] = ep->freqn;
338 cp[1] = ep->freqn >> 8;
339 cp[2] = ep->freqn >> 16;
340 cp[3] = ep->freqn >> 24;
341 } else {
342 /*
343 * fill the length and offset of each urb descriptor.
344 * the fixed 10.14 frequency is passed through the pipe.
345 */
346 urb->iso_frame_desc[0].length = 3;
347 urb->iso_frame_desc[0].offset = 0;
348 cp[0] = ep->freqn >> 2;
349 cp[1] = ep->freqn >> 10;
350 cp[2] = ep->freqn >> 18;
351 }
352
353 break;
354 }
d5f871f8 355 return 0;
8fdff6a3
DM
356}
357
358/*
359 * Prepare a CAPTURE or SYNC urb for submission to the bus.
360 */
d5f871f8
TI
361static int prepare_inbound_urb(struct snd_usb_endpoint *ep,
362 struct snd_urb_ctx *urb_ctx)
8fdff6a3
DM
363{
364 int i, offs;
365 struct urb *urb = urb_ctx->urb;
366
367 urb->dev = ep->chip->dev; /* we need to set this at each time */
368
369 switch (ep->type) {
370 case SND_USB_ENDPOINT_TYPE_DATA:
371 offs = 0;
372 for (i = 0; i < urb_ctx->packets; i++) {
373 urb->iso_frame_desc[i].offset = offs;
374 urb->iso_frame_desc[i].length = ep->curpacksize;
375 offs += ep->curpacksize;
376 }
377
378 urb->transfer_buffer_length = offs;
379 urb->number_of_packets = urb_ctx->packets;
380 break;
381
382 case SND_USB_ENDPOINT_TYPE_SYNC:
383 urb->iso_frame_desc[0].length = min(4u, ep->syncmaxsize);
384 urb->iso_frame_desc[0].offset = 0;
385 break;
386 }
d5f871f8 387 return 0;
8fdff6a3
DM
388}
389
c15871e1
TI
390/* notify an error as XRUN to the assigned PCM data substream */
391static void notify_xrun(struct snd_usb_endpoint *ep)
392{
393 struct snd_usb_substream *data_subs;
394
395 data_subs = READ_ONCE(ep->data_subs);
396 if (data_subs && data_subs->pcm_substream)
397 snd_pcm_stop_xrun(data_subs->pcm_substream);
398}
399
400static struct snd_usb_packet_info *
401next_packet_fifo_enqueue(struct snd_usb_endpoint *ep)
402{
403 struct snd_usb_packet_info *p;
404
405 p = ep->next_packet + (ep->next_packet_head + ep->next_packet_queued) %
406 ARRAY_SIZE(ep->next_packet);
407 ep->next_packet_queued++;
408 return p;
409}
410
411static struct snd_usb_packet_info *
412next_packet_fifo_dequeue(struct snd_usb_endpoint *ep)
413{
414 struct snd_usb_packet_info *p;
415
416 p = ep->next_packet + ep->next_packet_head;
417 ep->next_packet_head++;
418 ep->next_packet_head %= ARRAY_SIZE(ep->next_packet);
419 ep->next_packet_queued--;
420 return p;
421}
422
d5f871f8
TI
423static void push_back_to_ready_list(struct snd_usb_endpoint *ep,
424 struct snd_urb_ctx *ctx)
425{
426 unsigned long flags;
427
428 spin_lock_irqsave(&ep->lock, flags);
429 list_add_tail(&ctx->ready_list, &ep->ready_playback_urbs);
430 spin_unlock_irqrestore(&ep->lock, flags);
431}
432
94c27215 433/*
07a5e9d4 434 * Send output urbs that have been prepared previously. URBs are dequeued
0569b3d8 435 * from ep->ready_playback_urbs and in case there aren't any available
94c27215
DM
436 * or there are no packets that have been prepared, this function does
437 * nothing.
438 *
07a5e9d4
DM
439 * The reason why the functionality of sending and preparing URBs is separated
440 * is that host controllers don't guarantee the order in which they return
441 * inbound and outbound packets to their submitters.
94c27215 442 *
d5f871f8
TI
443 * This function is used both for implicit feedback endpoints and in low-
444 * latency playback mode.
94c27215 445 */
d5f871f8
TI
446void snd_usb_queue_pending_output_urbs(struct snd_usb_endpoint *ep,
447 bool in_stream_lock)
8fdff6a3 448{
d5f871f8
TI
449 bool implicit_fb = snd_usb_endpoint_implicit_feedback_sink(ep);
450
5c2b3014 451 while (ep_state_running(ep)) {
8fdff6a3
DM
452
453 unsigned long flags;
3f649ab7 454 struct snd_usb_packet_info *packet;
8fdff6a3 455 struct snd_urb_ctx *ctx = NULL;
8fdff6a3
DM
456 int err, i;
457
458 spin_lock_irqsave(&ep->lock, flags);
d5f871f8 459 if ((!implicit_fb || ep->next_packet_queued > 0) &&
c15871e1 460 !list_empty(&ep->ready_playback_urbs)) {
8fdff6a3 461 /* take URB out of FIFO */
c15871e1 462 ctx = list_first_entry(&ep->ready_playback_urbs,
8fdff6a3 463 struct snd_urb_ctx, ready_list);
c15871e1 464 list_del_init(&ctx->ready_list);
d5f871f8
TI
465 if (implicit_fb)
466 packet = next_packet_fifo_dequeue(ep);
8fdff6a3
DM
467 }
468 spin_unlock_irqrestore(&ep->lock, flags);
469
470 if (ctx == NULL)
471 return;
472
8fdff6a3 473 /* copy over the length information */
d5f871f8
TI
474 if (implicit_fb) {
475 for (i = 0; i < packet->packets; i++)
476 ctx->packet_size[i] = packet->packet_size[i];
477 }
8fdff6a3 478
94c27215 479 /* call the data handler to fill in playback data */
d5f871f8
TI
480 err = prepare_outbound_urb(ep, ctx, in_stream_lock);
481 /* can be stopped during prepare callback */
482 if (unlikely(!ep_state_running(ep)))
483 break;
484 if (err < 0) {
485 /* push back to ready list again for -EAGAIN */
486 if (err == -EAGAIN)
487 push_back_to_ready_list(ep, ctx);
488 else
489 notify_xrun(ep);
490 return;
491 }
8fdff6a3
DM
492
493 err = usb_submit_urb(ctx->urb, GFP_ATOMIC);
c15871e1 494 if (err < 0) {
0ba41d91 495 usb_audio_err(ep->chip,
e93e890e
TI
496 "Unable to submit urb #%d: %d at %s\n",
497 ctx->index, err, __func__);
c15871e1
TI
498 notify_xrun(ep);
499 return;
500 }
501
502 set_bit(ctx->index, &ep->active_mask);
86a42ad0 503 atomic_inc(&ep->submitted_urbs);
8fdff6a3
DM
504 }
505}
506
507/*
508 * complete callback for urbs
509 */
510static void snd_complete_urb(struct urb *urb)
511{
512 struct snd_urb_ctx *ctx = urb->context;
513 struct snd_usb_endpoint *ep = ctx->ep;
514 int err;
515
516 if (unlikely(urb->status == -ENOENT || /* unlinked */
517 urb->status == -ENODEV || /* device removed */
518 urb->status == -ECONNRESET || /* unlinked */
47ab1545
TI
519 urb->status == -ESHUTDOWN)) /* device disabled */
520 goto exit_clear;
521 /* device disconnected */
522 if (unlikely(atomic_read(&ep->chip->shutdown)))
8fdff6a3
DM
523 goto exit_clear;
524
5c2b3014 525 if (unlikely(!ep_state_running(ep)))
13a6c832
IAR
526 goto exit_clear;
527
8fdff6a3
DM
528 if (usb_pipeout(ep->pipe)) {
529 retire_outbound_urb(ep, ctx);
530 /* can be stopped during retire callback */
5c2b3014 531 if (unlikely(!ep_state_running(ep)))
8fdff6a3
DM
532 goto exit_clear;
533
d5f871f8
TI
534 /* in low-latency and implicit-feedback modes, push back the
535 * URB to ready list at first, then process as much as possible
536 */
537 if (ep->lowlatency_playback ||
538 snd_usb_endpoint_implicit_feedback_sink(ep)) {
539 push_back_to_ready_list(ep, ctx);
c15871e1 540 clear_bit(ctx->index, &ep->active_mask);
d5f871f8 541 snd_usb_queue_pending_output_urbs(ep, false);
86a42ad0 542 atomic_dec(&ep->submitted_urbs); /* decrement at last */
c15871e1 543 return;
8fdff6a3
DM
544 }
545
d5f871f8
TI
546 /* in non-lowlatency mode, no error handling for prepare */
547 prepare_outbound_urb(ep, ctx, false);
52869931 548 /* can be stopped during prepare callback */
5c2b3014 549 if (unlikely(!ep_state_running(ep)))
52869931 550 goto exit_clear;
8fdff6a3
DM
551 } else {
552 retire_inbound_urb(ep, ctx);
553 /* can be stopped during retire callback */
5c2b3014 554 if (unlikely(!ep_state_running(ep)))
8fdff6a3
DM
555 goto exit_clear;
556
557 prepare_inbound_urb(ep, ctx);
558 }
559
560 err = usb_submit_urb(urb, GFP_ATOMIC);
561 if (err == 0)
562 return;
563
0ba41d91 564 usb_audio_err(ep->chip, "cannot submit urb (err = %d)\n", err);
c15871e1 565 notify_xrun(ep);
8fdff6a3
DM
566
567exit_clear:
568 clear_bit(ctx->index, &ep->active_mask);
86a42ad0 569 atomic_dec(&ep->submitted_urbs);
8fdff6a3
DM
570}
571
00272c61
TI
572/*
573 * Find or create a refcount object for the given interface
574 *
575 * The objects are released altogether in snd_usb_endpoint_free_all()
576 */
577static struct snd_usb_iface_ref *
578iface_ref_find(struct snd_usb_audio *chip, int iface)
579{
580 struct snd_usb_iface_ref *ip;
581
582 list_for_each_entry(ip, &chip->iface_ref_list, list)
583 if (ip->iface == iface)
584 return ip;
585
586 ip = kzalloc(sizeof(*ip), GFP_KERNEL);
587 if (!ip)
588 return NULL;
589 ip->iface = iface;
590 list_add_tail(&ip->list, &chip->iface_ref_list);
591 return ip;
592}
593
c7474d09 594/*
54cb3190 595 * Get the existing endpoint object corresponding EP
c7474d09 596 * Returns NULL if not present.
c7474d09
TI
597 */
598struct snd_usb_endpoint *
54cb3190 599snd_usb_get_endpoint(struct snd_usb_audio *chip, int ep_num)
c7474d09
TI
600{
601 struct snd_usb_endpoint *ep;
602
603 list_for_each_entry(ep, &chip->ep_list, list) {
54cb3190 604 if (ep->ep_num == ep_num)
c7474d09
TI
605 return ep;
606 }
54cb3190 607
c7474d09
TI
608 return NULL;
609}
610
5a6c3e11
TI
611#define ep_type_name(type) \
612 (type == SND_USB_ENDPOINT_TYPE_DATA ? "data" : "sync")
613
94c27215 614/**
07a5e9d4 615 * snd_usb_add_endpoint: Add an endpoint to an USB audio chip
94c27215
DM
616 *
617 * @chip: The chip
94c27215 618 * @ep_num: The number of the endpoint to use
94c27215
DM
619 * @type: SND_USB_ENDPOINT_TYPE_DATA or SND_USB_ENDPOINT_TYPE_SYNC
620 *
621 * If the requested endpoint has not been added to the given chip before,
54cb3190
TI
622 * a new instance is created.
623 *
624 * Returns zero on success or a negative error code.
94c27215 625 *
00272c61
TI
626 * New endpoints will be added to chip->ep_list and freed by
627 * calling snd_usb_endpoint_free_all().
447d6275
TI
628 *
629 * For SND_USB_ENDPOINT_TYPE_SYNC, the caller needs to guarantee that
630 * bNumEndpoints > 1 beforehand.
94c27215 631 */
54cb3190 632int snd_usb_add_endpoint(struct snd_usb_audio *chip, int ep_num, int type)
8fdff6a3 633{
8fdff6a3 634 struct snd_usb_endpoint *ep;
54cb3190 635 bool is_playback;
e7e58df8 636
54cb3190
TI
637 ep = snd_usb_get_endpoint(chip, ep_num);
638 if (ep)
639 return 0;
8fdff6a3 640
54cb3190 641 usb_audio_dbg(chip, "Creating new %s endpoint #%x\n",
5a6c3e11
TI
642 ep_type_name(type),
643 ep_num);
8fdff6a3
DM
644 ep = kzalloc(sizeof(*ep), GFP_KERNEL);
645 if (!ep)
54cb3190 646 return -ENOMEM;
8fdff6a3
DM
647
648 ep->chip = chip;
649 spin_lock_init(&ep->lock);
650 ep->type = type;
651 ep->ep_num = ep_num;
8fdff6a3 652 INIT_LIST_HEAD(&ep->ready_playback_urbs);
86a42ad0 653 atomic_set(&ep->submitted_urbs, 0);
8fdff6a3 654
54cb3190
TI
655 is_playback = ((ep_num & USB_ENDPOINT_DIR_MASK) == USB_DIR_OUT);
656 ep_num &= USB_ENDPOINT_NUMBER_MASK;
8fdff6a3
DM
657 if (is_playback)
658 ep->pipe = usb_sndisocpipe(chip->dev, ep_num);
659 else
660 ep->pipe = usb_rcvisocpipe(chip->dev, ep_num);
661
54cb3190
TI
662 list_add_tail(&ep->list, &chip->ep_list);
663 return 0;
664}
665
666/* Set up syncinterval and maxsyncsize for a sync EP */
bf6313a0
TI
667static void endpoint_set_syncinterval(struct snd_usb_audio *chip,
668 struct snd_usb_endpoint *ep)
54cb3190 669{
bf6313a0
TI
670 struct usb_host_interface *alts;
671 struct usb_endpoint_descriptor *desc;
672
673 alts = snd_usb_get_host_interface(chip, ep->iface, ep->altsetting);
674 if (!alts)
675 return;
676
677 desc = get_endpoint(alts, ep->ep_idx);
678 if (desc->bLength >= USB_DT_ENDPOINT_AUDIO_SIZE &&
679 desc->bRefresh >= 1 && desc->bRefresh <= 9)
680 ep->syncinterval = desc->bRefresh;
681 else if (snd_usb_get_speed(chip->dev) == USB_SPEED_FULL)
682 ep->syncinterval = 1;
683 else if (desc->bInterval >= 1 && desc->bInterval <= 16)
684 ep->syncinterval = desc->bInterval - 1;
685 else
686 ep->syncinterval = 3;
687
688 ep->syncmaxsize = le16_to_cpu(desc->wMaxPacketSize);
689}
690
691static bool endpoint_compatible(struct snd_usb_endpoint *ep,
692 const struct audioformat *fp,
693 const struct snd_pcm_hw_params *params)
694{
695 if (!ep->opened)
696 return false;
697 if (ep->cur_audiofmt != fp)
698 return false;
699 if (ep->cur_rate != params_rate(params) ||
700 ep->cur_format != params_format(params) ||
701 ep->cur_period_frames != params_period_size(params) ||
702 ep->cur_buffer_periods != params_periods(params))
703 return false;
704 return true;
705}
706
707/*
ff630b6a 708 * Check whether the given fp and hw params are compatible with the current
bf6313a0
TI
709 * setup of the target EP for implicit feedback sync
710 */
711bool snd_usb_endpoint_compatible(struct snd_usb_audio *chip,
712 struct snd_usb_endpoint *ep,
713 const struct audioformat *fp,
714 const struct snd_pcm_hw_params *params)
715{
716 bool ret;
717
718 mutex_lock(&chip->mutex);
719 ret = endpoint_compatible(ep, fp, params);
720 mutex_unlock(&chip->mutex);
721 return ret;
722}
723
724/*
725 * snd_usb_endpoint_open: Open the endpoint
726 *
727 * Called from hw_params to assign the endpoint to the substream.
728 * It's reference-counted, and only the first opener is allowed to set up
729 * arbitrary parameters. The later opener must be compatible with the
730 * former opened parameters.
731 * The endpoint needs to be closed via snd_usb_endpoint_close() later.
732 *
733 * Note that this function doesn't configure the endpoint. The substream
734 * needs to set it up later via snd_usb_endpoint_configure().
735 */
736struct snd_usb_endpoint *
737snd_usb_endpoint_open(struct snd_usb_audio *chip,
cab941b7 738 const struct audioformat *fp,
bf6313a0
TI
739 const struct snd_pcm_hw_params *params,
740 bool is_sync_ep)
741{
742 struct snd_usb_endpoint *ep;
743 int ep_num = is_sync_ep ? fp->sync_ep : fp->endpoint;
8fdff6a3 744
bf6313a0
TI
745 mutex_lock(&chip->mutex);
746 ep = snd_usb_get_endpoint(chip, ep_num);
747 if (!ep) {
748 usb_audio_err(chip, "Cannot find EP 0x%x to open\n", ep_num);
749 goto unlock;
8fdff6a3 750 }
bf6313a0
TI
751
752 if (!ep->opened) {
753 if (is_sync_ep) {
754 ep->iface = fp->sync_iface;
755 ep->altsetting = fp->sync_altsetting;
756 ep->ep_idx = fp->sync_ep_idx;
757 } else {
758 ep->iface = fp->iface;
759 ep->altsetting = fp->altsetting;
eae4d054 760 ep->ep_idx = fp->ep_idx;
bf6313a0
TI
761 }
762 usb_audio_dbg(chip, "Open EP 0x%x, iface=%d:%d, idx=%d\n",
763 ep_num, ep->iface, ep->altsetting, ep->ep_idx);
764
00272c61
TI
765 ep->iface_ref = iface_ref_find(chip, ep->iface);
766 if (!ep->iface_ref) {
767 ep = NULL;
768 goto unlock;
769 }
770
bf6313a0
TI
771 ep->cur_audiofmt = fp;
772 ep->cur_channels = fp->channels;
773 ep->cur_rate = params_rate(params);
774 ep->cur_format = params_format(params);
775 ep->cur_frame_bytes = snd_pcm_format_physical_width(ep->cur_format) *
776 ep->cur_channels / 8;
777 ep->cur_period_frames = params_period_size(params);
778 ep->cur_period_bytes = ep->cur_period_frames * ep->cur_frame_bytes;
779 ep->cur_buffer_periods = params_periods(params);
4e7cf1fb 780 ep->cur_clock = fp->clock;
bf6313a0
TI
781
782 if (ep->type == SND_USB_ENDPOINT_TYPE_SYNC)
783 endpoint_set_syncinterval(chip, ep);
784
785 ep->implicit_fb_sync = fp->implicit_fb;
786 ep->need_setup = true;
787
788 usb_audio_dbg(chip, " channels=%d, rate=%d, format=%s, period_bytes=%d, periods=%d, implicit_fb=%d\n",
789 ep->cur_channels, ep->cur_rate,
790 snd_pcm_format_name(ep->cur_format),
791 ep->cur_period_bytes, ep->cur_buffer_periods,
792 ep->implicit_fb_sync);
793
794 } else {
00272c61
TI
795 if (WARN_ON(!ep->iface_ref)) {
796 ep = NULL;
797 goto unlock;
798 }
799
bf6313a0
TI
800 if (!endpoint_compatible(ep, fp, params)) {
801 usb_audio_err(chip, "Incompatible EP setup for 0x%x\n",
802 ep_num);
803 ep = NULL;
804 goto unlock;
805 }
806
807 usb_audio_dbg(chip, "Reopened EP 0x%x (count %d)\n",
808 ep_num, ep->opened);
809 }
810
00272c61
TI
811 if (!ep->iface_ref->opened++)
812 ep->iface_ref->need_setup = true;
813
bf6313a0
TI
814 ep->opened++;
815
816 unlock:
817 mutex_unlock(&chip->mutex);
818 return ep;
819}
820
821/*
822 * snd_usb_endpoint_set_sync: Link data and sync endpoints
823 *
824 * Pass NULL to sync_ep to unlink again
825 */
826void snd_usb_endpoint_set_sync(struct snd_usb_audio *chip,
827 struct snd_usb_endpoint *data_ep,
828 struct snd_usb_endpoint *sync_ep)
829{
53837b4a 830 data_ep->sync_source = sync_ep;
8fdff6a3
DM
831}
832
96e221f3
TI
833/*
834 * Set data endpoint callbacks and the assigned data stream
835 *
836 * Called at PCM trigger and cleanups.
837 * Pass NULL to deactivate each callback.
838 */
839void snd_usb_endpoint_set_callback(struct snd_usb_endpoint *ep,
d5f871f8
TI
840 int (*prepare)(struct snd_usb_substream *subs,
841 struct urb *urb,
842 bool in_stream_lock),
96e221f3
TI
843 void (*retire)(struct snd_usb_substream *subs,
844 struct urb *urb),
845 struct snd_usb_substream *data_subs)
846{
847 ep->prepare_data_urb = prepare;
848 ep->retire_data_urb = retire;
9c9a3b9d
TI
849 if (data_subs)
850 ep->lowlatency_playback = data_subs->lowlatency_playback;
851 else
852 ep->lowlatency_playback = false;
96e221f3
TI
853 WRITE_ONCE(ep->data_subs, data_subs);
854}
855
bf6313a0
TI
856static int endpoint_set_interface(struct snd_usb_audio *chip,
857 struct snd_usb_endpoint *ep,
858 bool set)
859{
860 int altset = set ? ep->altsetting : 0;
861 int err;
862
863 usb_audio_dbg(chip, "Setting usb interface %d:%d for EP 0x%x\n",
864 ep->iface, altset, ep->ep_num);
865 err = usb_set_interface(chip->dev, ep->iface, altset);
866 if (err < 0) {
867 usb_audio_err(chip, "%d:%d: usb_set_interface failed (%d)\n",
868 ep->iface, altset, err);
869 return err;
870 }
871
1f074fe5
TI
872 if (chip->quirk_flags & QUIRK_FLAG_IFACE_DELAY)
873 msleep(50);
bf6313a0
TI
874 return 0;
875}
876
877/*
878 * snd_usb_endpoint_close: Close the endpoint
879 *
880 * Unreference the already opened endpoint via snd_usb_endpoint_open().
881 */
882void snd_usb_endpoint_close(struct snd_usb_audio *chip,
883 struct snd_usb_endpoint *ep)
884{
885 mutex_lock(&chip->mutex);
886 usb_audio_dbg(chip, "Closing EP 0x%x (count %d)\n",
887 ep->ep_num, ep->opened);
00272c61
TI
888
889 if (!--ep->iface_ref->opened)
bf6313a0 890 endpoint_set_interface(chip, ep, false);
00272c61
TI
891
892 if (!--ep->opened) {
89fa3f68 893 ep->iface = 0;
bf6313a0
TI
894 ep->altsetting = 0;
895 ep->cur_audiofmt = NULL;
896 ep->cur_rate = 0;
4e7cf1fb 897 ep->cur_clock = 0;
00272c61 898 ep->iface_ref = NULL;
bf6313a0
TI
899 usb_audio_dbg(chip, "EP 0x%x closed\n", ep->ep_num);
900 }
901 mutex_unlock(&chip->mutex);
902}
903
904/* Prepare for suspening EP, called from the main suspend handler */
905void snd_usb_endpoint_suspend(struct snd_usb_endpoint *ep)
906{
907 ep->need_setup = true;
00272c61
TI
908 if (ep->iface_ref)
909 ep->iface_ref->need_setup = true;
bf6313a0
TI
910}
911
8fdff6a3
DM
912/*
913 * wait until all urbs are processed.
914 */
915static int wait_clear_urbs(struct snd_usb_endpoint *ep)
916{
917 unsigned long end_time = jiffies + msecs_to_jiffies(1000);
8fdff6a3
DM
918 int alive;
919
5c2b3014 920 if (atomic_read(&ep->state) != EP_STATE_STOPPING)
d0f09d1e
TI
921 return 0;
922
8fdff6a3 923 do {
86a42ad0 924 alive = atomic_read(&ep->submitted_urbs);
8fdff6a3
DM
925 if (!alive)
926 break;
927
928 schedule_timeout_uninterruptible(1);
929 } while (time_before(jiffies, end_time));
930
931 if (alive)
0ba41d91
TI
932 usb_audio_err(ep->chip,
933 "timeout: still %d active urbs on EP #%x\n",
934 alive, ep->ep_num);
8fdff6a3 935
5c2b3014
TI
936 if (ep_state_update(ep, EP_STATE_STOPPING, EP_STATE_STOPPED)) {
937 ep->sync_sink = NULL;
938 snd_usb_endpoint_set_callback(ep, NULL, NULL, NULL);
939 }
1d0f9530 940
8fdff6a3
DM
941 return 0;
942}
943
f58161ba
TI
944/* sync the pending stop operation;
945 * this function itself doesn't trigger the stop operation
946 */
947void snd_usb_endpoint_sync_pending_stop(struct snd_usb_endpoint *ep)
948{
d0f09d1e 949 if (ep)
f58161ba
TI
950 wait_clear_urbs(ep);
951}
952
8fdff6a3 953/*
d6cda465 954 * Stop active urbs
d0f09d1e 955 *
d6cda465 956 * This function moves the EP to STOPPING state if it's being RUNNING.
8fdff6a3 957 */
813a17ca 958static int stop_urbs(struct snd_usb_endpoint *ep, bool force, bool keep_pending)
8fdff6a3 959{
8fdff6a3 960 unsigned int i;
0ef74366 961 unsigned long flags;
8fdff6a3 962
d6cda465 963 if (!force && atomic_read(&ep->running))
d0f09d1e
TI
964 return -EBUSY;
965
5c2b3014 966 if (!ep_state_update(ep, EP_STATE_RUNNING, EP_STATE_STOPPING))
d6cda465 967 return 0;
8fdff6a3 968
0ef74366 969 spin_lock_irqsave(&ep->lock, flags);
8fdff6a3 970 INIT_LIST_HEAD(&ep->ready_playback_urbs);
c15871e1
TI
971 ep->next_packet_head = 0;
972 ep->next_packet_queued = 0;
0ef74366 973 spin_unlock_irqrestore(&ep->lock, flags);
8fdff6a3 974
813a17ca
TI
975 if (keep_pending)
976 return 0;
977
8fdff6a3
DM
978 for (i = 0; i < ep->nurbs; i++) {
979 if (test_bit(i, &ep->active_mask)) {
980 if (!test_and_set_bit(i, &ep->unlink_mask)) {
981 struct urb *u = ep->urb[i].urb;
ccc1696d 982 usb_unlink_urb(u);
8fdff6a3
DM
983 }
984 }
985 }
986
987 return 0;
988}
989
990/*
991 * release an endpoint's urbs
992 */
d6cda465 993static int release_urbs(struct snd_usb_endpoint *ep, bool force)
8fdff6a3 994{
d6cda465 995 int i, err;
8fdff6a3
DM
996
997 /* route incoming urbs to nirvana */
96e221f3 998 snd_usb_endpoint_set_callback(ep, NULL, NULL, NULL);
8fdff6a3 999
d6cda465 1000 /* stop and unlink urbs */
813a17ca 1001 err = stop_urbs(ep, force, false);
d6cda465
TI
1002 if (err)
1003 return err;
1004
1005 wait_clear_urbs(ep);
8fdff6a3
DM
1006
1007 for (i = 0; i < ep->nurbs; i++)
1008 release_urb_ctx(&ep->urb[i]);
1009
2e5a8e15
XW
1010 usb_free_coherent(ep->chip->dev, SYNC_URBS * 4,
1011 ep->syncbuf, ep->sync_dma);
8fdff6a3
DM
1012
1013 ep->syncbuf = NULL;
1014 ep->nurbs = 0;
d6cda465 1015 return 0;
8fdff6a3
DM
1016}
1017
94c27215
DM
1018/*
1019 * configure a data endpoint
1020 */
bf6313a0 1021static int data_ep_set_params(struct snd_usb_endpoint *ep)
8fdff6a3 1022{
bf6313a0 1023 struct snd_usb_audio *chip = ep->chip;
976b6c06
AS
1024 unsigned int maxsize, minsize, packs_per_ms, max_packs_per_urb;
1025 unsigned int max_packs_per_period, urbs_per_period, urb_packs;
1026 unsigned int max_urbs, i;
bf6313a0
TI
1027 const struct audioformat *fmt = ep->cur_audiofmt;
1028 int frame_bits = ep->cur_frame_bytes * 8;
c1b034a4 1029 int tx_length_quirk = (has_tx_length_quirk(chip) &&
759c90fe 1030 usb_pipeout(ep->pipe));
8fdff6a3 1031
bf6313a0
TI
1032 usb_audio_dbg(chip, "Setting params for data EP 0x%x, pipe 0x%x\n",
1033 ep->ep_num, ep->pipe);
1034
1035 if (ep->cur_format == SNDRV_PCM_FORMAT_DSD_U16_LE && fmt->dsd_dop) {
d24f5061
DM
1036 /*
1037 * When operating in DSD DOP mode, the size of a sample frame
1038 * in hardware differs from the actual physical format width
1039 * because we need to make room for the DOP markers.
1040 */
bf6313a0 1041 frame_bits += ep->cur_channels << 3;
d24f5061
DM
1042 }
1043
8fdff6a3
DM
1044 ep->datainterval = fmt->datainterval;
1045 ep->stride = frame_bits >> 3;
01200730 1046
bf6313a0 1047 switch (ep->cur_format) {
01200730
NO
1048 case SNDRV_PCM_FORMAT_U8:
1049 ep->silence_value = 0x80;
1050 break;
1051 case SNDRV_PCM_FORMAT_DSD_U8:
1052 case SNDRV_PCM_FORMAT_DSD_U16_LE:
1053 case SNDRV_PCM_FORMAT_DSD_U32_LE:
1054 case SNDRV_PCM_FORMAT_DSD_U16_BE:
1055 case SNDRV_PCM_FORMAT_DSD_U32_BE:
1056 ep->silence_value = 0x69;
1057 break;
1058 default:
1059 ep->silence_value = 0;
1060 }
8fdff6a3 1061
fd1a5059
AP
1062 /* assume max. frequency is 50% higher than nominal */
1063 ep->freqmax = ep->freqn + (ep->freqn >> 1);
ab30965d
RW
1064 /* Round up freqmax to nearest integer in order to calculate maximum
1065 * packet size, which must represent a whole number of frames.
1066 * This is accomplished by adding 0x0.ffff before converting the
1067 * Q16.16 format into integer.
1068 * In order to accurately calculate the maximum packet size when
1069 * the data interval is more than 1 (i.e. ep->datainterval > 0),
1070 * multiply by the data interval prior to rounding. For instance,
1071 * a freqmax of 41 kHz will result in a max packet size of 6 (5.125)
1072 * frames with a data interval of 1, but 11 (10.25) frames with a
1073 * data interval of 2.
1074 * (ep->freqmax << ep->datainterval overflows at 8.192 MHz for the
1075 * maximum datainterval value of 3, at USB full speed, higher for
1076 * USB high speed, noting that ep->freqmax is in units of
1077 * frames per packet in Q16.16 format.)
1078 */
1079 maxsize = (((ep->freqmax << ep->datainterval) + 0xffff) >> 16) *
1080 (frame_bits >> 3);
759c90fe
RW
1081 if (tx_length_quirk)
1082 maxsize += sizeof(__le32); /* Space for length descriptor */
57e6dae1
CL
1083 /* but wMaxPacketSize might reduce this */
1084 if (ep->maxpacksize && ep->maxpacksize < maxsize) {
8fdff6a3 1085 /* whatever fits into a max. size packet */
759c90fe
RW
1086 unsigned int data_maxsize = maxsize = ep->maxpacksize;
1087
1088 if (tx_length_quirk)
1089 /* Need to remove the length descriptor to calc freq */
1090 data_maxsize -= sizeof(__le32);
1091 ep->freqmax = (data_maxsize / (frame_bits >> 3))
8fdff6a3 1092 << (16 - ep->datainterval);
8fdff6a3
DM
1093 }
1094
1095 if (ep->fill_max)
1096 ep->curpacksize = ep->maxpacksize;
1097 else
1098 ep->curpacksize = maxsize;
1099
bf6313a0 1100 if (snd_usb_get_speed(chip->dev) != USB_SPEED_FULL) {
8fdff6a3 1101 packs_per_ms = 8 >> ep->datainterval;
976b6c06 1102 max_packs_per_urb = MAX_PACKS_HS;
8fdff6a3 1103 } else {
976b6c06
AS
1104 packs_per_ms = 1;
1105 max_packs_per_urb = MAX_PACKS;
8fdff6a3 1106 }
53837b4a 1107 if (ep->sync_source && !ep->implicit_fb_sync)
976b6c06 1108 max_packs_per_urb = min(max_packs_per_urb,
53837b4a 1109 1U << ep->sync_source->syncinterval);
976b6c06
AS
1110 max_packs_per_urb = max(1u, max_packs_per_urb >> ep->datainterval);
1111
1112 /*
1113 * Capture endpoints need to use small URBs because there's no way
1114 * to tell in advance where the next period will end, and we don't
1115 * want the next URB to complete much after the period ends.
1116 *
1117 * Playback endpoints with implicit sync much use the same parameters
1118 * as their corresponding capture endpoint.
1119 */
bf6313a0 1120 if (usb_pipein(ep->pipe) || ep->implicit_fb_sync) {
976b6c06 1121
a93455e1
TP
1122 urb_packs = packs_per_ms;
1123 /*
1124 * Wireless devices can poll at a max rate of once per 4ms.
1125 * For dataintervals less than 5, increase the packet count to
1126 * allow the host controller to use bursting to fill in the
1127 * gaps.
1128 */
bf6313a0 1129 if (snd_usb_get_speed(chip->dev) == USB_SPEED_WIRELESS) {
a93455e1
TP
1130 int interval = ep->datainterval;
1131 while (interval < 5) {
1132 urb_packs <<= 1;
1133 ++interval;
1134 }
1135 }
976b6c06 1136 /* make capture URBs <= 1 ms and smaller than a period */
a93455e1 1137 urb_packs = min(max_packs_per_urb, urb_packs);
bf6313a0 1138 while (urb_packs > 1 && urb_packs * maxsize >= ep->cur_period_bytes)
976b6c06
AS
1139 urb_packs >>= 1;
1140 ep->nurbs = MAX_URBS;
8fdff6a3 1141
976b6c06
AS
1142 /*
1143 * Playback endpoints without implicit sync are adjusted so that
1144 * a period fits as evenly as possible in the smallest number of
1145 * URBs. The total number of URBs is adjusted to the size of the
1146 * ALSA buffer, subject to the MAX_URBS and MAX_QUEUE limits.
1147 */
1148 } else {
8fdff6a3 1149 /* determine how small a packet can be */
976b6c06
AS
1150 minsize = (ep->freqn >> (16 - ep->datainterval)) *
1151 (frame_bits >> 3);
8fdff6a3 1152 /* with sync from device, assume it can be 12% lower */
53837b4a 1153 if (ep->sync_source)
8fdff6a3
DM
1154 minsize -= minsize >> 3;
1155 minsize = max(minsize, 1u);
8fdff6a3 1156
976b6c06 1157 /* how many packets will contain an entire ALSA period? */
bf6313a0 1158 max_packs_per_period = DIV_ROUND_UP(ep->cur_period_bytes, minsize);
976b6c06
AS
1159
1160 /* how many URBs will contain a period? */
1161 urbs_per_period = DIV_ROUND_UP(max_packs_per_period,
1162 max_packs_per_urb);
1163 /* how many packets are needed in each URB? */
1164 urb_packs = DIV_ROUND_UP(max_packs_per_period, urbs_per_period);
1165
1166 /* limit the number of frames in a single URB */
bf6313a0
TI
1167 ep->max_urb_frames = DIV_ROUND_UP(ep->cur_period_frames,
1168 urbs_per_period);
976b6c06
AS
1169
1170 /* try to use enough URBs to contain an entire ALSA buffer */
1171 max_urbs = min((unsigned) MAX_URBS,
1172 MAX_QUEUE * packs_per_ms / urb_packs);
bf6313a0 1173 ep->nurbs = min(max_urbs, urbs_per_period * ep->cur_buffer_periods);
8fdff6a3
DM
1174 }
1175
1176 /* allocate and initialize data urbs */
1177 for (i = 0; i < ep->nurbs; i++) {
1178 struct snd_urb_ctx *u = &ep->urb[i];
1179 u->index = i;
1180 u->ep = ep;
976b6c06 1181 u->packets = urb_packs;
8fdff6a3
DM
1182 u->buffer_size = maxsize * u->packets;
1183
1184 if (fmt->fmt_type == UAC_FORMAT_TYPE_II)
1185 u->packets++; /* for transfer delimiter */
1186 u->urb = usb_alloc_urb(u->packets, GFP_KERNEL);
1187 if (!u->urb)
1188 goto out_of_memory;
1189
1190 u->urb->transfer_buffer =
bf6313a0 1191 usb_alloc_coherent(chip->dev, u->buffer_size,
8fdff6a3
DM
1192 GFP_KERNEL, &u->urb->transfer_dma);
1193 if (!u->urb->transfer_buffer)
1194 goto out_of_memory;
1195 u->urb->pipe = ep->pipe;
c75c5ab5 1196 u->urb->transfer_flags = URB_NO_TRANSFER_DMA_MAP;
8fdff6a3
DM
1197 u->urb->interval = 1 << ep->datainterval;
1198 u->urb->context = u;
1199 u->urb->complete = snd_complete_urb;
1200 INIT_LIST_HEAD(&u->ready_list);
1201 }
1202
1203 return 0;
1204
1205out_of_memory:
d6cda465 1206 release_urbs(ep, false);
8fdff6a3
DM
1207 return -ENOMEM;
1208}
1209
94c27215
DM
1210/*
1211 * configure a sync endpoint
1212 */
93721039 1213static int sync_ep_set_params(struct snd_usb_endpoint *ep)
8fdff6a3 1214{
bf6313a0 1215 struct snd_usb_audio *chip = ep->chip;
8fdff6a3
DM
1216 int i;
1217
bf6313a0
TI
1218 usb_audio_dbg(chip, "Setting params for sync EP 0x%x, pipe 0x%x\n",
1219 ep->ep_num, ep->pipe);
1220
1221 ep->syncbuf = usb_alloc_coherent(chip->dev, SYNC_URBS * 4,
8fdff6a3
DM
1222 GFP_KERNEL, &ep->sync_dma);
1223 if (!ep->syncbuf)
1224 return -ENOMEM;
1225
1226 for (i = 0; i < SYNC_URBS; i++) {
1227 struct snd_urb_ctx *u = &ep->urb[i];
1228 u->index = i;
1229 u->ep = ep;
1230 u->packets = 1;
1231 u->urb = usb_alloc_urb(1, GFP_KERNEL);
1232 if (!u->urb)
1233 goto out_of_memory;
1234 u->urb->transfer_buffer = ep->syncbuf + i * 4;
1235 u->urb->transfer_dma = ep->sync_dma + i * 4;
1236 u->urb->transfer_buffer_length = 4;
1237 u->urb->pipe = ep->pipe;
c75c5ab5 1238 u->urb->transfer_flags = URB_NO_TRANSFER_DMA_MAP;
8fdff6a3
DM
1239 u->urb->number_of_packets = 1;
1240 u->urb->interval = 1 << ep->syncinterval;
1241 u->urb->context = u;
1242 u->urb->complete = snd_complete_urb;
1243 }
1244
1245 ep->nurbs = SYNC_URBS;
1246
1247 return 0;
1248
1249out_of_memory:
d6cda465 1250 release_urbs(ep, false);
8fdff6a3
DM
1251 return -ENOMEM;
1252}
1253
bf6313a0 1254/*
07a5e9d4 1255 * snd_usb_endpoint_set_params: configure an snd_usb_endpoint
94c27215 1256 *
07a5e9d4 1257 * Determine the number of URBs to be used on this endpoint.
94c27215
DM
1258 * An endpoint must be configured before it can be started.
1259 * An endpoint that is already running can not be reconfigured.
1260 */
bf6313a0
TI
1261static int snd_usb_endpoint_set_params(struct snd_usb_audio *chip,
1262 struct snd_usb_endpoint *ep)
8fdff6a3 1263{
bf6313a0 1264 const struct audioformat *fmt = ep->cur_audiofmt;
8fdff6a3
DM
1265 int err;
1266
8fdff6a3 1267 /* release old buffers, if any */
d6cda465
TI
1268 err = release_urbs(ep, false);
1269 if (err < 0)
1270 return err;
8fdff6a3
DM
1271
1272 ep->datainterval = fmt->datainterval;
1273 ep->maxpacksize = fmt->maxpacksize;
85f71932 1274 ep->fill_max = !!(fmt->attributes & UAC_EP_CS_ATTR_FILL_MAX);
8fdff6a3 1275
bf6313a0
TI
1276 if (snd_usb_get_speed(chip->dev) == USB_SPEED_FULL) {
1277 ep->freqn = get_usb_full_speed_rate(ep->cur_rate);
b9fd2007 1278 ep->pps = 1000 >> ep->datainterval;
f0bd62b6 1279 } else {
bf6313a0 1280 ep->freqn = get_usb_high_speed_rate(ep->cur_rate);
b9fd2007 1281 ep->pps = 8000 >> ep->datainterval;
f0bd62b6
AT
1282 }
1283
bf6313a0
TI
1284 ep->sample_rem = ep->cur_rate % ep->pps;
1285 ep->packsize[0] = ep->cur_rate / ep->pps;
1286 ep->packsize[1] = (ep->cur_rate + (ep->pps - 1)) / ep->pps;
8fdff6a3
DM
1287
1288 /* calculate the frequency in 16.16 format */
1289 ep->freqm = ep->freqn;
1290 ep->freqshift = INT_MIN;
1291
1292 ep->phase = 0;
1293
1294 switch (ep->type) {
1295 case SND_USB_ENDPOINT_TYPE_DATA:
bf6313a0 1296 err = data_ep_set_params(ep);
8fdff6a3
DM
1297 break;
1298 case SND_USB_ENDPOINT_TYPE_SYNC:
93721039 1299 err = sync_ep_set_params(ep);
8fdff6a3
DM
1300 break;
1301 default:
1302 err = -EINVAL;
1303 }
1304
bf6313a0 1305 usb_audio_dbg(chip, "Set up %d URBS, ret=%d\n", ep->nurbs, err);
8fdff6a3 1306
5a6c3e11
TI
1307 if (err < 0)
1308 return err;
1309
bf6313a0
TI
1310 /* some unit conversions in runtime */
1311 ep->maxframesize = ep->maxpacksize / ep->cur_frame_bytes;
1312 ep->curframesize = ep->curpacksize / ep->cur_frame_bytes;
5a6c3e11
TI
1313
1314 return 0;
8fdff6a3
DM
1315}
1316
bf6313a0
TI
1317/*
1318 * snd_usb_endpoint_configure: Configure the endpoint
1319 *
1320 * This function sets up the EP to be fully usable state.
1321 * It's called either from hw_params or prepare callback.
ff630b6a 1322 * The function checks need_setup flag, and performs nothing unless needed,
bf6313a0
TI
1323 * so it's safe to call this multiple times.
1324 *
1325 * This returns zero if unchanged, 1 if the configuration has changed,
1326 * or a negative error code.
1327 */
1328int snd_usb_endpoint_configure(struct snd_usb_audio *chip,
1329 struct snd_usb_endpoint *ep)
1330{
1331 bool iface_first;
1332 int err = 0;
1333
1334 mutex_lock(&chip->mutex);
00272c61
TI
1335 if (WARN_ON(!ep->iface_ref))
1336 goto unlock;
bf6313a0
TI
1337 if (!ep->need_setup)
1338 goto unlock;
1339
00272c61
TI
1340 /* If the interface has been already set up, just set EP parameters */
1341 if (!ep->iface_ref->need_setup) {
3784d449
TI
1342 /* sample rate setup of UAC1 is per endpoint, and we need
1343 * to update at each EP configuration
1344 */
1345 if (ep->cur_audiofmt->protocol == UAC_VERSION_1) {
1346 err = snd_usb_init_sample_rate(chip, ep->cur_audiofmt,
1347 ep->cur_rate);
1348 if (err < 0)
1349 goto unlock;
1350 }
bf6313a0
TI
1351 err = snd_usb_endpoint_set_params(chip, ep);
1352 if (err < 0)
1353 goto unlock;
1354 goto done;
1355 }
1356
1357 /* Need to deselect altsetting at first */
1358 endpoint_set_interface(chip, ep, false);
1359
1360 /* Some UAC1 devices (e.g. Yamaha THR10) need the host interface
1361 * to be set up before parameter setups
1362 */
1363 iface_first = ep->cur_audiofmt->protocol == UAC_VERSION_1;
6e413409
TI
1364 /* Workaround for devices that require the interface setup at first like UAC1 */
1365 if (chip->quirk_flags & QUIRK_FLAG_SET_IFACE_FIRST)
7af5a143 1366 iface_first = true;
bf6313a0
TI
1367 if (iface_first) {
1368 err = endpoint_set_interface(chip, ep, true);
1369 if (err < 0)
1370 goto unlock;
1371 }
1372
1373 err = snd_usb_init_pitch(chip, ep->cur_audiofmt);
1374 if (err < 0)
1375 goto unlock;
1376
1377 err = snd_usb_init_sample_rate(chip, ep->cur_audiofmt, ep->cur_rate);
1378 if (err < 0)
1379 goto unlock;
1380
1381 err = snd_usb_endpoint_set_params(chip, ep);
1382 if (err < 0)
1383 goto unlock;
1384
1385 err = snd_usb_select_mode_quirk(chip, ep->cur_audiofmt);
1386 if (err < 0)
1387 goto unlock;
1388
1389 /* for UAC2/3, enable the interface altset here at last */
1390 if (!iface_first) {
1391 err = endpoint_set_interface(chip, ep, true);
1392 if (err < 0)
1393 goto unlock;
1394 }
1395
00272c61
TI
1396 ep->iface_ref->need_setup = false;
1397
bf6313a0
TI
1398 done:
1399 ep->need_setup = false;
1400 err = 1;
1401
1402unlock:
1403 mutex_unlock(&chip->mutex);
1404 return err;
1405}
1406
4e7cf1fb
TI
1407/* get the current rate set to the given clock by any endpoint */
1408int snd_usb_endpoint_get_clock_rate(struct snd_usb_audio *chip, int clock)
1409{
1410 struct snd_usb_endpoint *ep;
1411 int rate = 0;
1412
1413 if (!clock)
1414 return 0;
1415 mutex_lock(&chip->mutex);
1416 list_for_each_entry(ep, &chip->ep_list, list) {
1417 if (ep->cur_clock == clock && ep->cur_rate) {
1418 rate = ep->cur_rate;
1419 break;
1420 }
1421 }
1422 mutex_unlock(&chip->mutex);
1423 return rate;
1424}
1425
94c27215
DM
1426/**
1427 * snd_usb_endpoint_start: start an snd_usb_endpoint
1428 *
1d0f9530 1429 * @ep: the endpoint to start
94c27215 1430 *
43b81e84 1431 * A call to this function will increment the running count of the endpoint.
07a5e9d4 1432 * In case it is not already running, the URBs for this endpoint will be
94c27215
DM
1433 * submitted. Otherwise, this function does nothing.
1434 *
1435 * Must be balanced to calls of snd_usb_endpoint_stop().
1436 *
1437 * Returns an error if the URB submission failed, 0 in all other cases.
1438 */
1d0f9530 1439int snd_usb_endpoint_start(struct snd_usb_endpoint *ep)
8fdff6a3 1440{
d5f871f8 1441 bool is_playback = usb_pipeout(ep->pipe);
8fdff6a3
DM
1442 int err;
1443 unsigned int i;
1444
47ab1545 1445 if (atomic_read(&ep->chip->shutdown))
8fdff6a3
DM
1446 return -EBADFD;
1447
53837b4a
TI
1448 if (ep->sync_source)
1449 WRITE_ONCE(ep->sync_source->sync_sink, ep);
bf6313a0 1450
43b81e84
TI
1451 usb_audio_dbg(ep->chip, "Starting %s EP 0x%x (running %d)\n",
1452 ep_type_name(ep->type), ep->ep_num,
1453 atomic_read(&ep->running));
57234bc1 1454
8fdff6a3 1455 /* already running? */
43b81e84 1456 if (atomic_inc_return(&ep->running) != 1)
8fdff6a3
DM
1457 return 0;
1458
8fdff6a3
DM
1459 ep->active_mask = 0;
1460 ep->unlink_mask = 0;
1461 ep->phase = 0;
f0bd62b6 1462 ep->sample_accum = 0;
8fdff6a3 1463
2b58fd5b
DM
1464 snd_usb_endpoint_start_quirk(ep);
1465
8fdff6a3
DM
1466 /*
1467 * If this endpoint has a data endpoint as implicit feedback source,
1468 * don't start the urbs here. Instead, mark them all as available,
07a5e9d4
DM
1469 * wait for the record urbs to return and queue the playback urbs
1470 * from that context.
8fdff6a3
DM
1471 */
1472
5c2b3014
TI
1473 if (!ep_state_update(ep, EP_STATE_STOPPED, EP_STATE_RUNNING))
1474 goto __error;
8fdff6a3 1475
ebe8dc5a 1476 if (snd_usb_endpoint_implicit_feedback_sink(ep) &&
019c7f91 1477 !(ep->chip->quirk_flags & QUIRK_FLAG_PLAYBACK_FIRST)) {
bf6313a0 1478 usb_audio_dbg(ep->chip, "No URB submission due to implicit fb sync\n");
d5f871f8
TI
1479 i = 0;
1480 goto fill_rest;
8fdff6a3
DM
1481 }
1482
1483 for (i = 0; i < ep->nurbs; i++) {
1484 struct urb *urb = ep->urb[i].urb;
1485
1486 if (snd_BUG_ON(!urb))
1487 goto __error;
1488
d5f871f8
TI
1489 if (is_playback)
1490 err = prepare_outbound_urb(ep, urb->context, true);
1491 else
1492 err = prepare_inbound_urb(ep, urb->context);
1493 if (err < 0) {
1494 /* stop filling at applptr */
1495 if (err == -EAGAIN)
1496 break;
1497 usb_audio_dbg(ep->chip,
1498 "EP 0x%x: failed to prepare urb: %d\n",
1499 ep->ep_num, err);
1500 goto __error;
8fdff6a3
DM
1501 }
1502
1503 err = usb_submit_urb(urb, GFP_ATOMIC);
1504 if (err < 0) {
0ba41d91
TI
1505 usb_audio_err(ep->chip,
1506 "cannot submit urb %d, error %d: %s\n",
1507 i, err, usb_error_string(err));
8fdff6a3
DM
1508 goto __error;
1509 }
1510 set_bit(i, &ep->active_mask);
86a42ad0 1511 atomic_inc(&ep->submitted_urbs);
8fdff6a3
DM
1512 }
1513
d5f871f8
TI
1514 if (!i) {
1515 usb_audio_dbg(ep->chip, "XRUN at starting EP 0x%x\n",
1516 ep->ep_num);
1517 goto __error;
1518 }
1519
bf6313a0 1520 usb_audio_dbg(ep->chip, "%d URBs submitted for EP 0x%x\n",
d5f871f8
TI
1521 i, ep->ep_num);
1522
1523 fill_rest:
1524 /* put the remaining URBs to ready list */
1525 if (is_playback) {
1526 for (; i < ep->nurbs; i++)
1527 push_back_to_ready_list(ep, ep->urb + i);
1528 }
1529
8fdff6a3
DM
1530 return 0;
1531
1532__error:
813a17ca 1533 snd_usb_endpoint_stop(ep, false);
8fdff6a3
DM
1534 return -EPIPE;
1535}
1536
94c27215
DM
1537/**
1538 * snd_usb_endpoint_stop: stop an snd_usb_endpoint
1539 *
1540 * @ep: the endpoint to stop (may be NULL)
813a17ca 1541 * @keep_pending: keep in-flight URBs
94c27215 1542 *
43b81e84 1543 * A call to this function will decrement the running count of the endpoint.
94c27215 1544 * In case the last user has requested the endpoint stop, the URBs will
07a5e9d4 1545 * actually be deactivated.
94c27215
DM
1546 *
1547 * Must be balanced to calls of snd_usb_endpoint_start().
b2eb950d
TI
1548 *
1549 * The caller needs to synchronize the pending stop operation via
1550 * snd_usb_endpoint_sync_pending_stop().
94c27215 1551 */
813a17ca 1552void snd_usb_endpoint_stop(struct snd_usb_endpoint *ep, bool keep_pending)
8fdff6a3
DM
1553{
1554 if (!ep)
1555 return;
1556
43b81e84
TI
1557 usb_audio_dbg(ep->chip, "Stopping %s EP 0x%x (running %d)\n",
1558 ep_type_name(ep->type), ep->ep_num,
1559 atomic_read(&ep->running));
57234bc1 1560
43b81e84 1561 if (snd_BUG_ON(!atomic_read(&ep->running)))
8fdff6a3
DM
1562 return;
1563
988cc175
TI
1564 if (!atomic_dec_return(&ep->running)) {
1565 if (ep->sync_source)
1566 WRITE_ONCE(ep->sync_source->sync_sink, NULL);
813a17ca 1567 stop_urbs(ep, false, keep_pending);
988cc175 1568 }
8fdff6a3
DM
1569}
1570
92a586bd
TI
1571/**
1572 * snd_usb_endpoint_release: Tear down an snd_usb_endpoint
1573 *
1574 * @ep: the endpoint to release
1575 *
43b81e84 1576 * This function does not care for the endpoint's running count but will tear
92a586bd
TI
1577 * down all the streaming URBs immediately.
1578 */
1579void snd_usb_endpoint_release(struct snd_usb_endpoint *ep)
1580{
d6cda465 1581 release_urbs(ep, true);
92a586bd
TI
1582}
1583
07a5e9d4 1584/**
00272c61 1585 * snd_usb_endpoint_free_all: Free the resources of an snd_usb_endpoint
036f90dd 1586 * @chip: The chip
94c27215 1587 *
00272c61 1588 * This free all endpoints and those resources
94c27215 1589 */
00272c61 1590void snd_usb_endpoint_free_all(struct snd_usb_audio *chip)
8fdff6a3 1591{
00272c61
TI
1592 struct snd_usb_endpoint *ep, *en;
1593 struct snd_usb_iface_ref *ip, *in;
1594
1595 list_for_each_entry_safe(ep, en, &chip->ep_list, list)
1596 kfree(ep);
1597
1598 list_for_each_entry_safe(ip, in, &chip->iface_ref_list, list)
1599 kfree(ip);
8fdff6a3
DM
1600}
1601
bf6313a0 1602/*
94c27215
DM
1603 * snd_usb_handle_sync_urb: parse an USB sync packet
1604 *
1605 * @ep: the endpoint to handle the packet
1606 * @sender: the sending endpoint
1607 * @urb: the received packet
1608 *
1609 * This function is called from the context of an endpoint that received
1610 * the packet and is used to let another endpoint object handle the payload.
8fdff6a3 1611 */
bf6313a0
TI
1612static void snd_usb_handle_sync_urb(struct snd_usb_endpoint *ep,
1613 struct snd_usb_endpoint *sender,
1614 const struct urb *urb)
8fdff6a3
DM
1615{
1616 int shift;
1617 unsigned int f;
1618 unsigned long flags;
1619
1620 snd_BUG_ON(ep == sender);
1621
94c27215
DM
1622 /*
1623 * In case the endpoint is operating in implicit feedback mode, prepare
07a5e9d4
DM
1624 * a new outbound URB that has the same layout as the received packet
1625 * and add it to the list of pending urbs. queue_pending_output_urbs()
1626 * will take care of them later.
94c27215 1627 */
98ae472b 1628 if (snd_usb_endpoint_implicit_feedback_sink(ep) &&
43b81e84 1629 atomic_read(&ep->running)) {
8fdff6a3
DM
1630
1631 /* implicit feedback case */
1632 int i, bytes = 0;
1633 struct snd_urb_ctx *in_ctx;
1634 struct snd_usb_packet_info *out_packet;
1635
1636 in_ctx = urb->context;
1637
1638 /* Count overall packet size */
1639 for (i = 0; i < in_ctx->packets; i++)
1640 if (urb->iso_frame_desc[i].status == 0)
1641 bytes += urb->iso_frame_desc[i].actual_length;
1642
1643 /*
1644 * skip empty packets. At least M-Audio's Fast Track Ultra stops
1645 * streaming once it received a 0-byte OUT URB
1646 */
1647 if (bytes == 0)
1648 return;
1649
1650 spin_lock_irqsave(&ep->lock, flags);
c15871e1
TI
1651 if (ep->next_packet_queued >= ARRAY_SIZE(ep->next_packet)) {
1652 spin_unlock_irqrestore(&ep->lock, flags);
1653 usb_audio_err(ep->chip,
1654 "next package FIFO overflow EP 0x%x\n",
1655 ep->ep_num);
1656 notify_xrun(ep);
1657 return;
1658 }
1659
1660 out_packet = next_packet_fifo_enqueue(ep);
8fdff6a3
DM
1661
1662 /*
1663 * Iterate through the inbound packet and prepare the lengths
1664 * for the output packet. The OUT packet we are about to send
28acb120
EZ
1665 * will have the same amount of payload bytes per stride as the
1666 * IN packet we just received. Since the actual size is scaled
1667 * by the stride, use the sender stride to calculate the length
1668 * in case the number of channels differ between the implicitly
1669 * fed-back endpoint and the synchronizing endpoint.
8fdff6a3
DM
1670 */
1671
1672 out_packet->packets = in_ctx->packets;
1673 for (i = 0; i < in_ctx->packets; i++) {
1674 if (urb->iso_frame_desc[i].status == 0)
1675 out_packet->packet_size[i] =
28acb120 1676 urb->iso_frame_desc[i].actual_length / sender->stride;
8fdff6a3
DM
1677 else
1678 out_packet->packet_size[i] = 0;
1679 }
1680
8fdff6a3 1681 spin_unlock_irqrestore(&ep->lock, flags);
d5f871f8 1682 snd_usb_queue_pending_output_urbs(ep, false);
8fdff6a3
DM
1683
1684 return;
1685 }
1686
94c27215
DM
1687 /*
1688 * process after playback sync complete
1689 *
1690 * Full speed devices report feedback values in 10.14 format as samples
1691 * per frame, high speed devices in 16.16 format as samples per
1692 * microframe.
1693 *
1694 * Because the Audio Class 1 spec was written before USB 2.0, many high
1695 * speed devices use a wrong interpretation, some others use an
1696 * entirely different format.
1697 *
1698 * Therefore, we cannot predict what format any particular device uses
1699 * and must detect it automatically.
1700 */
8fdff6a3
DM
1701
1702 if (urb->iso_frame_desc[0].status != 0 ||
1703 urb->iso_frame_desc[0].actual_length < 3)
1704 return;
1705
1706 f = le32_to_cpup(urb->transfer_buffer);
1707 if (urb->iso_frame_desc[0].actual_length == 3)
1708 f &= 0x00ffffff;
1709 else
1710 f &= 0x0fffffff;
1711
1712 if (f == 0)
1713 return;
1714
ca0dd273 1715 if (unlikely(sender->tenor_fb_quirk)) {
7040b6d1 1716 /*
ca0dd273
DM
1717 * Devices based on Tenor 8802 chipsets (TEAC UD-H01
1718 * and others) sometimes change the feedback value
7040b6d1
CL
1719 * by +/- 0x1.0000.
1720 */
1721 if (f < ep->freqn - 0x8000)
36e1ac3c 1722 f += 0xf000;
7040b6d1 1723 else if (f > ep->freqn + 0x8000)
36e1ac3c 1724 f -= 0xf000;
7040b6d1 1725 } else if (unlikely(ep->freqshift == INT_MIN)) {
8fdff6a3
DM
1726 /*
1727 * The first time we see a feedback value, determine its format
1728 * by shifting it left or right until it matches the nominal
1729 * frequency value. This assumes that the feedback does not
1730 * differ from the nominal value more than +50% or -25%.
1731 */
1732 shift = 0;
1733 while (f < ep->freqn - ep->freqn / 4) {
1734 f <<= 1;
1735 shift++;
1736 }
1737 while (f > ep->freqn + ep->freqn / 2) {
1738 f >>= 1;
1739 shift--;
1740 }
1741 ep->freqshift = shift;
1742 } else if (ep->freqshift >= 0)
1743 f <<= ep->freqshift;
1744 else
1745 f >>= -ep->freqshift;
1746
1747 if (likely(f >= ep->freqn - ep->freqn / 8 && f <= ep->freqmax)) {
1748 /*
1749 * If the frequency looks valid, set it.
1750 * This value is referred to in prepare_playback_urb().
1751 */
1752 spin_lock_irqsave(&ep->lock, flags);
1753 ep->freqm = f;
1754 spin_unlock_irqrestore(&ep->lock, flags);
1755 } else {
1756 /*
1757 * Out of range; maybe the shift value is wrong.
1758 * Reset it so that we autodetect again the next time.
1759 */
1760 ep->freqshift = INT_MIN;
1761 }
1762}
1763