blob: 497bad9f27898a1d4ff0ee70b4b64621dd5d1030 [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#include <linux/init.h>
Stephen Rothwell9966dda2010-03-29 19:01:48 +110018#include <linux/slab.h>
Daniel Mack44dcbbb2013-04-17 00:01:39 +080019#include <linux/bitrev.h>
Daniel Mackedcd3632012-04-12 13:51:12 +020020#include <linux/ratelimit.h>
Daniel Macke5779992010-03-04 19:46:13 +010021#include <linux/usb.h>
22#include <linux/usb/audio.h>
Daniel Mack7e847892010-03-11 21:13:20 +010023#include <linux/usb/audio-v2.h>
Daniel Macke5779992010-03-04 19:46:13 +010024
25#include <sound/core.h>
26#include <sound/pcm.h>
27#include <sound/pcm_params.h>
28
29#include "usbaudio.h"
30#include "card.h"
31#include "quirks.h"
32#include "debug.h"
Daniel Mackc731bc92011-09-14 12:46:57 +020033#include "endpoint.h"
Daniel Macke5779992010-03-04 19:46:13 +010034#include "helper.h"
35#include "pcm.h"
Daniel Mack79f920f2010-05-31 14:51:31 +020036#include "clock.h"
Oliver Neukum88a85162011-03-11 14:51:12 +010037#include "power.h"
Daniel Macke5779992010-03-04 19:46:13 +010038
Daniel Mackedcd3632012-04-12 13:51:12 +020039#define SUBSTREAM_FLAG_DATA_EP_STARTED 0
40#define SUBSTREAM_FLAG_SYNC_EP_STARTED 1
41
Pierre-Louis Bossart294c4fb2011-09-06 19:15:34 -050042/* return the estimated delay based on USB frame counters */
43snd_pcm_uframes_t snd_usb_pcm_delay(struct snd_usb_substream *subs,
44 unsigned int rate)
45{
46 int current_frame_number;
47 int frame_diff;
48 int est_delay;
49
Takashi Iwai48779a02012-11-23 16:00:37 +010050 if (!subs->last_delay)
51 return 0; /* short path */
52
Pierre-Louis Bossart294c4fb2011-09-06 19:15:34 -050053 current_frame_number = usb_get_current_frame_number(subs->dev);
54 /*
55 * HCD implementations use different widths, use lower 8 bits.
56 * The delay will be managed up to 256ms, which is more than
57 * enough
58 */
59 frame_diff = (current_frame_number - subs->last_frame_number) & 0xff;
60
61 /* Approximation based on number of samples per USB frame (ms),
62 some truncation for 44.1 but the estimate is good enough */
Pierre-Louis Bossarte4cc6152012-12-19 11:39:05 -060063 est_delay = frame_diff * rate / 1000;
64 if (subs->direction == SNDRV_PCM_STREAM_PLAYBACK)
65 est_delay = subs->last_delay - est_delay;
66 else
67 est_delay = subs->last_delay + est_delay;
68
Pierre-Louis Bossart294c4fb2011-09-06 19:15:34 -050069 if (est_delay < 0)
70 est_delay = 0;
71 return est_delay;
72}
73
Daniel Macke5779992010-03-04 19:46:13 +010074/*
75 * return the current pcm pointer. just based on the hwptr_done value.
76 */
77static snd_pcm_uframes_t snd_usb_pcm_pointer(struct snd_pcm_substream *substream)
78{
79 struct snd_usb_substream *subs;
80 unsigned int hwptr_done;
81
82 subs = (struct snd_usb_substream *)substream->runtime->private_data;
Takashi Iwai47ab1542015-08-25 16:09:00 +020083 if (atomic_read(&subs->stream->chip->shutdown))
Takashi Iwai978520b2012-10-12 15:12:55 +020084 return SNDRV_PCM_POS_XRUN;
Daniel Macke5779992010-03-04 19:46:13 +010085 spin_lock(&subs->lock);
86 hwptr_done = subs->hwptr_done;
Pierre-Louis Bossarte4cc6152012-12-19 11:39:05 -060087 substream->runtime->delay = snd_usb_pcm_delay(subs,
Pierre-Louis Bossart294c4fb2011-09-06 19:15:34 -050088 substream->runtime->rate);
Daniel Macke5779992010-03-04 19:46:13 +010089 spin_unlock(&subs->lock);
90 return hwptr_done / (substream->runtime->frame_bits >> 3);
91}
92
93/*
94 * find a matching audio format
95 */
Dylan Reid61a70952012-09-18 09:49:48 -070096static struct audioformat *find_format(struct snd_usb_substream *subs)
Daniel Macke5779992010-03-04 19:46:13 +010097{
Eldad Zack88766f02013-04-03 23:18:49 +020098 struct audioformat *fp;
Daniel Macke5779992010-03-04 19:46:13 +010099 struct audioformat *found = NULL;
100 int cur_attr = 0, attr;
101
Eldad Zack88766f02013-04-03 23:18:49 +0200102 list_for_each_entry(fp, &subs->fmt_list, list) {
Eldad Zack74c34ca2013-04-23 01:00:41 +0200103 if (!(fp->formats & pcm_format_to_bits(subs->pcm_format)))
Clemens Ladisch015eb0b2010-03-04 19:46:15 +0100104 continue;
Dylan Reid61a70952012-09-18 09:49:48 -0700105 if (fp->channels != subs->channels)
Daniel Macke5779992010-03-04 19:46:13 +0100106 continue;
Dylan Reid61a70952012-09-18 09:49:48 -0700107 if (subs->cur_rate < fp->rate_min ||
108 subs->cur_rate > fp->rate_max)
Daniel Macke5779992010-03-04 19:46:13 +0100109 continue;
110 if (! (fp->rates & SNDRV_PCM_RATE_CONTINUOUS)) {
111 unsigned int i;
112 for (i = 0; i < fp->nr_rates; i++)
Dylan Reid61a70952012-09-18 09:49:48 -0700113 if (fp->rate_table[i] == subs->cur_rate)
Daniel Macke5779992010-03-04 19:46:13 +0100114 break;
115 if (i >= fp->nr_rates)
116 continue;
117 }
118 attr = fp->ep_attr & USB_ENDPOINT_SYNCTYPE;
119 if (! found) {
120 found = fp;
121 cur_attr = attr;
122 continue;
123 }
124 /* avoid async out and adaptive in if the other method
125 * supports the same format.
126 * this is a workaround for the case like
127 * M-audio audiophile USB.
128 */
129 if (attr != cur_attr) {
130 if ((attr == USB_ENDPOINT_SYNC_ASYNC &&
131 subs->direction == SNDRV_PCM_STREAM_PLAYBACK) ||
132 (attr == USB_ENDPOINT_SYNC_ADAPTIVE &&
133 subs->direction == SNDRV_PCM_STREAM_CAPTURE))
134 continue;
135 if ((cur_attr == USB_ENDPOINT_SYNC_ASYNC &&
136 subs->direction == SNDRV_PCM_STREAM_PLAYBACK) ||
137 (cur_attr == USB_ENDPOINT_SYNC_ADAPTIVE &&
138 subs->direction == SNDRV_PCM_STREAM_CAPTURE)) {
139 found = fp;
140 cur_attr = attr;
141 continue;
142 }
143 }
144 /* find the format with the largest max. packet size */
145 if (fp->maxpacksize > found->maxpacksize) {
146 found = fp;
147 cur_attr = attr;
148 }
149 }
150 return found;
151}
152
Daniel Mack767d75a2010-03-04 19:46:17 +0100153static int init_pitch_v1(struct snd_usb_audio *chip, int iface,
154 struct usb_host_interface *alts,
155 struct audioformat *fmt)
Daniel Macke5779992010-03-04 19:46:13 +0100156{
Daniel Mack767d75a2010-03-04 19:46:17 +0100157 struct usb_device *dev = chip->dev;
Daniel Macke5779992010-03-04 19:46:13 +0100158 unsigned int ep;
159 unsigned char data[1];
160 int err;
161
Takashi Iwai447d6272016-03-15 15:20:58 +0100162 if (get_iface_desc(alts)->bNumEndpoints < 1)
163 return -EINVAL;
Daniel Macke5779992010-03-04 19:46:13 +0100164 ep = get_endpoint(alts, 0)->bEndpointAddress;
Daniel Mack767d75a2010-03-04 19:46:17 +0100165
Daniel Mack767d75a2010-03-04 19:46:17 +0100166 data[0] = 1;
167 if ((err = snd_usb_ctl_msg(dev, usb_sndctrlpipe(dev, 0), UAC_SET_CUR,
168 USB_TYPE_CLASS|USB_RECIP_ENDPOINT|USB_DIR_OUT,
169 UAC_EP_CS_ATTR_PITCH_CONTROL << 8, ep,
Clemens Ladisch17d900c2011-09-26 21:15:27 +0200170 data, sizeof(data))) < 0) {
Takashi Iwai0ba41d92014-02-26 13:02:17 +0100171 usb_audio_err(chip, "%d:%d: cannot set enable PITCH\n",
172 iface, ep);
Daniel Mack767d75a2010-03-04 19:46:17 +0100173 return err;
Daniel Macke5779992010-03-04 19:46:13 +0100174 }
Daniel Mack767d75a2010-03-04 19:46:17 +0100175
Daniel Macke5779992010-03-04 19:46:13 +0100176 return 0;
177}
178
Daniel Mack92c25612010-05-26 18:11:39 +0200179static int init_pitch_v2(struct snd_usb_audio *chip, int iface,
180 struct usb_host_interface *alts,
181 struct audioformat *fmt)
182{
183 struct usb_device *dev = chip->dev;
184 unsigned char data[1];
Daniel Mack92c25612010-05-26 18:11:39 +0200185 int err;
186
Daniel Mack92c25612010-05-26 18:11:39 +0200187 data[0] = 1;
188 if ((err = snd_usb_ctl_msg(dev, usb_sndctrlpipe(dev, 0), UAC2_CS_CUR,
189 USB_TYPE_CLASS | USB_RECIP_ENDPOINT | USB_DIR_OUT,
190 UAC2_EP_CS_PITCH << 8, 0,
Clemens Ladisch17d900c2011-09-26 21:15:27 +0200191 data, sizeof(data))) < 0) {
Takashi Iwai0ba41d92014-02-26 13:02:17 +0100192 usb_audio_err(chip, "%d:%d: cannot set enable PITCH (v2)\n",
193 iface, fmt->altsetting);
Daniel Mack92c25612010-05-26 18:11:39 +0200194 return err;
195 }
196
197 return 0;
198}
199
Daniel Mack767d75a2010-03-04 19:46:17 +0100200/*
Daniel Mack92c25612010-05-26 18:11:39 +0200201 * initialize the pitch control and sample rate
Daniel Mack767d75a2010-03-04 19:46:17 +0100202 */
203int snd_usb_init_pitch(struct snd_usb_audio *chip, int iface,
204 struct usb_host_interface *alts,
205 struct audioformat *fmt)
206{
Daniel Mack92c25612010-05-26 18:11:39 +0200207 /* if endpoint doesn't have pitch control, bail out */
208 if (!(fmt->attributes & UAC_EP_CS_ATTR_PITCH_CONTROL))
209 return 0;
210
Clemens Ladisch8f898e92013-01-31 21:39:17 +0100211 switch (fmt->protocol) {
Daniel Mack767d75a2010-03-04 19:46:17 +0100212 case UAC_VERSION_1:
Clemens Ladischa2acad82010-09-03 10:53:11 +0200213 default:
Daniel Mack767d75a2010-03-04 19:46:17 +0100214 return init_pitch_v1(chip, iface, alts, fmt);
215
216 case UAC_VERSION_2:
Daniel Mack92c25612010-05-26 18:11:39 +0200217 return init_pitch_v2(chip, iface, alts, fmt);
Daniel Mack767d75a2010-03-04 19:46:17 +0100218 }
Daniel Mack767d75a2010-03-04 19:46:17 +0100219}
220
Ioan-Adrian Ratiube4e3ae2017-01-05 00:37:46 +0200221static int start_endpoints(struct snd_usb_substream *subs)
Daniel Mackedcd3632012-04-12 13:51:12 +0200222{
223 int err;
224
225 if (!subs->data_endpoint)
226 return -EINVAL;
227
228 if (!test_and_set_bit(SUBSTREAM_FLAG_DATA_EP_STARTED, &subs->flags)) {
229 struct snd_usb_endpoint *ep = subs->data_endpoint;
230
Takashi Iwai0ba41d92014-02-26 13:02:17 +0100231 dev_dbg(&subs->dev->dev, "Starting data EP @%p\n", ep);
Daniel Mackedcd3632012-04-12 13:51:12 +0200232
233 ep->data_subs = subs;
Ioan-Adrian Ratiube4e3ae2017-01-05 00:37:46 +0200234 err = snd_usb_endpoint_start(ep);
Daniel Mackedcd3632012-04-12 13:51:12 +0200235 if (err < 0) {
236 clear_bit(SUBSTREAM_FLAG_DATA_EP_STARTED, &subs->flags);
237 return err;
238 }
239 }
240
241 if (subs->sync_endpoint &&
242 !test_and_set_bit(SUBSTREAM_FLAG_SYNC_EP_STARTED, &subs->flags)) {
243 struct snd_usb_endpoint *ep = subs->sync_endpoint;
244
Daniel Mack2e4a2632012-08-30 18:52:31 +0200245 if (subs->data_endpoint->iface != subs->sync_endpoint->iface ||
Eldad Zackdf23a242013-10-06 22:31:13 +0200246 subs->data_endpoint->altsetting != subs->sync_endpoint->altsetting) {
Daniel Mack2e4a2632012-08-30 18:52:31 +0200247 err = usb_set_interface(subs->dev,
248 subs->sync_endpoint->iface,
Eldad Zackdf23a242013-10-06 22:31:13 +0200249 subs->sync_endpoint->altsetting);
Daniel Mack2e4a2632012-08-30 18:52:31 +0200250 if (err < 0) {
Eldad Zack06613f52013-10-06 22:31:11 +0200251 clear_bit(SUBSTREAM_FLAG_SYNC_EP_STARTED, &subs->flags);
Takashi Iwai0ba41d92014-02-26 13:02:17 +0100252 dev_err(&subs->dev->dev,
253 "%d:%d: cannot set interface (%d)\n",
Daniel Mack2e4a2632012-08-30 18:52:31 +0200254 subs->sync_endpoint->iface,
Eldad Zackdf23a242013-10-06 22:31:13 +0200255 subs->sync_endpoint->altsetting, err);
Daniel Mack2e4a2632012-08-30 18:52:31 +0200256 return -EIO;
257 }
258 }
259
Takashi Iwai0ba41d92014-02-26 13:02:17 +0100260 dev_dbg(&subs->dev->dev, "Starting sync EP @%p\n", ep);
Daniel Mackedcd3632012-04-12 13:51:12 +0200261
262 ep->sync_slave = subs->data_endpoint;
Ioan-Adrian Ratiube4e3ae2017-01-05 00:37:46 +0200263 err = snd_usb_endpoint_start(ep);
Daniel Mackedcd3632012-04-12 13:51:12 +0200264 if (err < 0) {
265 clear_bit(SUBSTREAM_FLAG_SYNC_EP_STARTED, &subs->flags);
266 return err;
267 }
268 }
269
270 return 0;
271}
272
Takashi Iwaia9bb3622012-11-20 18:32:06 +0100273static void stop_endpoints(struct snd_usb_substream *subs, bool wait)
Daniel Mackedcd3632012-04-12 13:51:12 +0200274{
275 if (test_and_clear_bit(SUBSTREAM_FLAG_SYNC_EP_STARTED, &subs->flags))
Takashi Iwaib2eb9502012-11-21 08:30:48 +0100276 snd_usb_endpoint_stop(subs->sync_endpoint);
Daniel Mackedcd3632012-04-12 13:51:12 +0200277
278 if (test_and_clear_bit(SUBSTREAM_FLAG_DATA_EP_STARTED, &subs->flags))
Takashi Iwaib2eb9502012-11-21 08:30:48 +0100279 snd_usb_endpoint_stop(subs->data_endpoint);
280
281 if (wait) {
282 snd_usb_endpoint_sync_pending_stop(subs->sync_endpoint);
283 snd_usb_endpoint_sync_pending_stop(subs->data_endpoint);
284 }
Daniel Mackedcd3632012-04-12 13:51:12 +0200285}
286
Clemens Ladischba7c2be2013-02-03 22:31:20 +0100287static int search_roland_implicit_fb(struct usb_device *dev, int ifnum,
288 unsigned int altsetting,
289 struct usb_host_interface **alts,
290 unsigned int *ep)
291{
292 struct usb_interface *iface;
293 struct usb_interface_descriptor *altsd;
294 struct usb_endpoint_descriptor *epd;
295
296 iface = usb_ifnum_to_if(dev, ifnum);
297 if (!iface || iface->num_altsetting < altsetting + 1)
298 return -ENOENT;
299 *alts = &iface->altsetting[altsetting];
300 altsd = get_iface_desc(*alts);
301 if (altsd->bAlternateSetting != altsetting ||
302 altsd->bInterfaceClass != USB_CLASS_VENDOR_SPEC ||
303 (altsd->bInterfaceSubClass != 2 &&
304 altsd->bInterfaceProtocol != 2 ) ||
305 altsd->bNumEndpoints < 1)
306 return -ENOENT;
307 epd = get_endpoint(*alts, 0);
308 if (!usb_endpoint_is_isoc_in(epd) ||
309 (epd->bmAttributes & USB_ENDPOINT_USAGE_MASK) !=
310 USB_ENDPOINT_USAGE_IMPLICIT_FB)
311 return -ENOENT;
312 *ep = epd->bEndpointAddress;
313 return 0;
314}
315
Manuel Reinhardtc504b842019-01-31 15:32:35 +0100316/* Setup an implicit feedback endpoint from a quirk. Returns 0 if no quirk
317 * applies. Returns 1 if a quirk was found.
318 */
Eldad Zacka60945f2013-08-03 10:50:18 +0200319static int set_sync_ep_implicit_fb_quirk(struct snd_usb_substream *subs,
320 struct usb_device *dev,
321 struct usb_interface_descriptor *altsd,
322 unsigned int attr)
Daniel Macke5779992010-03-04 19:46:13 +0100323{
Eldad Zacka60945f2013-08-03 10:50:18 +0200324 struct usb_host_interface *alts;
Daniel Macke5779992010-03-04 19:46:13 +0100325 struct usb_interface *iface;
Eldad Zacka60945f2013-08-03 10:50:18 +0200326 unsigned int ep;
Daniel Mackc75a8a72012-04-12 13:51:14 +0200327
Eldad Zack914273c2013-08-03 10:50:21 +0200328 /* Implicit feedback sync EPs consumers are always playback EPs */
329 if (subs->direction != SNDRV_PCM_STREAM_PLAYBACK)
330 return 0;
331
Daniel Mackc75a8a72012-04-12 13:51:14 +0200332 switch (subs->stream->chip->usb_id) {
Eldad Zackca10a7e2012-11-28 23:55:41 +0100333 case USB_ID(0x0763, 0x2030): /* M-Audio Fast Track C400 */
Matt Gruskine9a25e02013-02-09 12:56:35 -0500334 case USB_ID(0x0763, 0x2031): /* M-Audio Fast Track C600 */
Eldad Zack914273c2013-08-03 10:50:21 +0200335 ep = 0x81;
336 iface = usb_ifnum_to_if(dev, 3);
Eldad Zackca10a7e2012-11-28 23:55:41 +0100337
Eldad Zack914273c2013-08-03 10:50:21 +0200338 if (!iface || iface->num_altsetting == 0)
339 return -EINVAL;
Eldad Zackca10a7e2012-11-28 23:55:41 +0100340
Eldad Zack914273c2013-08-03 10:50:21 +0200341 alts = &iface->altsetting[1];
342 goto add_sync_ep;
Eldad Zackca10a7e2012-11-28 23:55:41 +0100343 break;
Daniel Mackc75a8a72012-04-12 13:51:14 +0200344 case USB_ID(0x0763, 0x2080): /* M-Audio FastTrack Ultra */
345 case USB_ID(0x0763, 0x2081):
Eldad Zack914273c2013-08-03 10:50:21 +0200346 ep = 0x81;
347 iface = usb_ifnum_to_if(dev, 2);
Daniel Mackc75a8a72012-04-12 13:51:14 +0200348
Eldad Zack914273c2013-08-03 10:50:21 +0200349 if (!iface || iface->num_altsetting == 0)
350 return -EINVAL;
Daniel Mackc75a8a72012-04-12 13:51:14 +0200351
Eldad Zack914273c2013-08-03 10:50:21 +0200352 alts = &iface->altsetting[1];
353 goto add_sync_ep;
Alberto Aguirrec0aac1b2017-04-04 19:32:13 +0000354 case USB_ID(0x2466, 0x8003):
355 ep = 0x86;
356 iface = usb_ifnum_to_if(dev, 2);
357
358 if (!iface || iface->num_altsetting == 0)
359 return -EINVAL;
360
361 alts = &iface->altsetting[1];
362 goto add_sync_ep;
Lassi Ylikojola344c9ac2018-02-09 16:51:36 +0200363 case USB_ID(0x1397, 0x0002):
364 ep = 0x81;
365 iface = usb_ifnum_to_if(dev, 1);
366
367 if (!iface || iface->num_altsetting == 0)
368 return -EINVAL;
369
370 alts = &iface->altsetting[1];
371 goto add_sync_ep;
Alberto Aguirrec0aac1b2017-04-04 19:32:13 +0000372
Daniel Mackc75a8a72012-04-12 13:51:14 +0200373 }
Eldad Zack914273c2013-08-03 10:50:21 +0200374 if (attr == USB_ENDPOINT_SYNC_ASYNC &&
Clemens Ladischba7c2be2013-02-03 22:31:20 +0100375 altsd->bInterfaceClass == USB_CLASS_VENDOR_SPEC &&
376 altsd->bInterfaceProtocol == 2 &&
377 altsd->bNumEndpoints == 1 &&
378 USB_ID_VENDOR(subs->stream->chip->usb_id) == 0x0582 /* Roland */ &&
379 search_roland_implicit_fb(dev, altsd->bInterfaceNumber + 1,
380 altsd->bAlternateSetting,
381 &alts, &ep) >= 0) {
Clemens Ladischba7c2be2013-02-03 22:31:20 +0100382 goto add_sync_ep;
383 }
Daniel Mackedcd3632012-04-12 13:51:12 +0200384
Eldad Zacka60945f2013-08-03 10:50:18 +0200385 /* No quirk */
386 return 0;
387
388add_sync_ep:
389 subs->sync_endpoint = snd_usb_add_endpoint(subs->stream->chip,
390 alts, ep, !subs->direction,
Eldad Zack88abb8e2013-08-03 10:51:14 +0200391 SND_USB_ENDPOINT_TYPE_DATA);
Eldad Zacka60945f2013-08-03 10:50:18 +0200392 if (!subs->sync_endpoint)
393 return -EINVAL;
394
395 subs->data_endpoint->sync_master = subs->sync_endpoint;
396
Manuel Reinhardtc504b842019-01-31 15:32:35 +0100397 return 1;
Eldad Zacka60945f2013-08-03 10:50:18 +0200398}
399
400static int set_sync_endpoint(struct snd_usb_substream *subs,
401 struct audioformat *fmt,
402 struct usb_device *dev,
403 struct usb_host_interface *alts,
404 struct usb_interface_descriptor *altsd)
405{
406 int is_playback = subs->direction == SNDRV_PCM_STREAM_PLAYBACK;
407 unsigned int ep, attr;
Eldad Zack95fec882013-08-03 10:50:20 +0200408 bool implicit_fb;
Eldad Zacka60945f2013-08-03 10:50:18 +0200409 int err;
410
411 /* we need a sync pipe in async OUT or adaptive IN mode */
412 /* check the number of EP, since some devices have broken
413 * descriptors which fool us. if it has only one EP,
414 * assume it as adaptive-out or sync-in.
415 */
416 attr = fmt->ep_attr & USB_ENDPOINT_SYNCTYPE;
417
Pierre-Louis Bossart63018442015-08-14 17:19:42 -0500418 if ((is_playback && (attr != USB_ENDPOINT_SYNC_ASYNC)) ||
419 (!is_playback && (attr != USB_ENDPOINT_SYNC_ADAPTIVE))) {
420
421 /*
422 * In these modes the notion of sync_endpoint is irrelevant.
423 * Reset pointers to avoid using stale data from previously
424 * used settings, e.g. when configuration and endpoints were
425 * changed
426 */
427
428 subs->sync_endpoint = NULL;
429 subs->data_endpoint->sync_master = NULL;
430 }
431
Eldad Zacka60945f2013-08-03 10:50:18 +0200432 err = set_sync_ep_implicit_fb_quirk(subs, dev, altsd, attr);
433 if (err < 0)
434 return err;
435
Manuel Reinhardtc504b842019-01-31 15:32:35 +0100436 /* endpoint set by quirk */
437 if (err > 0)
438 return 0;
439
Eldad Zackf34d0652013-08-03 10:50:19 +0200440 if (altsd->bNumEndpoints < 2)
441 return 0;
Daniel Mackc75a8a72012-04-12 13:51:14 +0200442
Pierre-Louis Bossart395ae542015-08-14 17:19:43 -0500443 if ((is_playback && (attr == USB_ENDPOINT_SYNC_SYNC ||
444 attr == USB_ENDPOINT_SYNC_ADAPTIVE)) ||
Eldad Zackf34d0652013-08-03 10:50:19 +0200445 (!is_playback && attr != USB_ENDPOINT_SYNC_ADAPTIVE))
446 return 0;
Daniel Mackc75a8a72012-04-12 13:51:14 +0200447
Pierre-Louis Bossart395ae542015-08-14 17:19:43 -0500448 /*
449 * In case of illegal SYNC_NONE for OUT endpoint, we keep going to see
450 * if we don't find a sync endpoint, as on M-Audio Transit. In case of
451 * error fall back to SYNC mode and don't create sync endpoint
452 */
453
Eldad Zackf34d0652013-08-03 10:50:19 +0200454 /* check sync-pipe endpoint */
455 /* ... and check descriptor size before accessing bSynchAddress
456 because there is a version of the SB Audigy 2 NX firmware lacking
457 the audio fields in the endpoint descriptors */
458 if ((get_endpoint(alts, 1)->bmAttributes & USB_ENDPOINT_XFERTYPE_MASK) != USB_ENDPOINT_XFER_ISOC ||
459 (get_endpoint(alts, 1)->bLength >= USB_DT_ENDPOINT_AUDIO_SIZE &&
Eldad Zack95fec882013-08-03 10:50:20 +0200460 get_endpoint(alts, 1)->bSynchAddress != 0)) {
Takashi Iwai0ba41d92014-02-26 13:02:17 +0100461 dev_err(&dev->dev,
462 "%d:%d : invalid sync pipe. bmAttributes %02x, bLength %d, bSynchAddress %02x\n",
463 fmt->iface, fmt->altsetting,
Eldad Zackf34d0652013-08-03 10:50:19 +0200464 get_endpoint(alts, 1)->bmAttributes,
465 get_endpoint(alts, 1)->bLength,
466 get_endpoint(alts, 1)->bSynchAddress);
Pierre-Louis Bossart395ae542015-08-14 17:19:43 -0500467 if (is_playback && attr == USB_ENDPOINT_SYNC_NONE)
468 return 0;
Eldad Zackf34d0652013-08-03 10:50:19 +0200469 return -EINVAL;
Daniel Mackedcd3632012-04-12 13:51:12 +0200470 }
Eldad Zackf34d0652013-08-03 10:50:19 +0200471 ep = get_endpoint(alts, 1)->bEndpointAddress;
Eldad Zack95fec882013-08-03 10:50:20 +0200472 if (get_endpoint(alts, 0)->bLength >= USB_DT_ENDPOINT_AUDIO_SIZE &&
Eldad Zackf34d0652013-08-03 10:50:19 +0200473 ((is_playback && ep != (unsigned int)(get_endpoint(alts, 0)->bSynchAddress | USB_DIR_IN)) ||
474 (!is_playback && ep != (unsigned int)(get_endpoint(alts, 0)->bSynchAddress & ~USB_DIR_IN)))) {
Takashi Iwai0ba41d92014-02-26 13:02:17 +0100475 dev_err(&dev->dev,
476 "%d:%d : invalid sync pipe. is_playback %d, ep %02x, bSynchAddress %02x\n",
477 fmt->iface, fmt->altsetting,
Eldad Zackf34d0652013-08-03 10:50:19 +0200478 is_playback, ep, get_endpoint(alts, 0)->bSynchAddress);
Pierre-Louis Bossart395ae542015-08-14 17:19:43 -0500479 if (is_playback && attr == USB_ENDPOINT_SYNC_NONE)
480 return 0;
Eldad Zackf34d0652013-08-03 10:50:19 +0200481 return -EINVAL;
482 }
483
484 implicit_fb = (get_endpoint(alts, 1)->bmAttributes & USB_ENDPOINT_USAGE_MASK)
485 == USB_ENDPOINT_USAGE_IMPLICIT_FB;
486
487 subs->sync_endpoint = snd_usb_add_endpoint(subs->stream->chip,
488 alts, ep, !subs->direction,
489 implicit_fb ?
490 SND_USB_ENDPOINT_TYPE_DATA :
491 SND_USB_ENDPOINT_TYPE_SYNC);
Pierre-Louis Bossart395ae542015-08-14 17:19:43 -0500492 if (!subs->sync_endpoint) {
493 if (is_playback && attr == USB_ENDPOINT_SYNC_NONE)
494 return 0;
Eldad Zackf34d0652013-08-03 10:50:19 +0200495 return -EINVAL;
Pierre-Louis Bossart395ae542015-08-14 17:19:43 -0500496 }
Eldad Zackf34d0652013-08-03 10:50:19 +0200497
498 subs->data_endpoint->sync_master = subs->sync_endpoint;
Daniel Macke5779992010-03-04 19:46:13 +0100499
Eldad Zack71bb64c2013-08-03 10:50:17 +0200500 return 0;
501}
502
503/*
504 * find a matching format and set up the interface
505 */
506static int set_format(struct snd_usb_substream *subs, struct audioformat *fmt)
507{
508 struct usb_device *dev = subs->dev;
509 struct usb_host_interface *alts;
510 struct usb_interface_descriptor *altsd;
511 struct usb_interface *iface;
512 int err;
513
514 iface = usb_ifnum_to_if(dev, fmt->iface);
515 if (WARN_ON(!iface))
516 return -EINVAL;
517 alts = &iface->altsetting[fmt->altset_idx];
518 altsd = get_iface_desc(alts);
519 if (WARN_ON(altsd->bAlternateSetting != fmt->altsetting))
520 return -EINVAL;
521
522 if (fmt == subs->cur_audiofmt)
523 return 0;
524
525 /* close the old interface */
526 if (subs->interface >= 0 && subs->interface != fmt->iface) {
527 err = usb_set_interface(subs->dev, subs->interface, 0);
528 if (err < 0) {
Takashi Iwai0ba41d92014-02-26 13:02:17 +0100529 dev_err(&dev->dev,
530 "%d:%d: return to setting 0 failed (%d)\n",
531 fmt->iface, fmt->altsetting, err);
Eldad Zack71bb64c2013-08-03 10:50:17 +0200532 return -EIO;
533 }
534 subs->interface = -1;
535 subs->altset_idx = 0;
536 }
537
538 /* set interface */
539 if (subs->interface != fmt->iface ||
540 subs->altset_idx != fmt->altset_idx) {
Jurgen Kramer6874daa2014-11-28 17:32:54 +0100541
542 err = snd_usb_select_mode_quirk(subs, fmt);
543 if (err < 0)
544 return -EIO;
545
Eldad Zack71bb64c2013-08-03 10:50:17 +0200546 err = usb_set_interface(dev, fmt->iface, fmt->altsetting);
547 if (err < 0) {
Takashi Iwai0ba41d92014-02-26 13:02:17 +0100548 dev_err(&dev->dev,
549 "%d:%d: usb_set_interface failed (%d)\n",
550 fmt->iface, fmt->altsetting, err);
Eldad Zack71bb64c2013-08-03 10:50:17 +0200551 return -EIO;
552 }
Takashi Iwai0ba41d92014-02-26 13:02:17 +0100553 dev_dbg(&dev->dev, "setting usb interface %d:%d\n",
554 fmt->iface, fmt->altsetting);
Eldad Zack71bb64c2013-08-03 10:50:17 +0200555 subs->interface = fmt->iface;
556 subs->altset_idx = fmt->altset_idx;
557
558 snd_usb_set_interface_quirk(dev);
559 }
560
561 subs->data_endpoint = snd_usb_add_endpoint(subs->stream->chip,
562 alts, fmt->endpoint, subs->direction,
563 SND_USB_ENDPOINT_TYPE_DATA);
564
565 if (!subs->data_endpoint)
566 return -EINVAL;
567
568 err = set_sync_endpoint(subs, fmt, dev, alts, altsd);
569 if (err < 0)
570 return err;
571
Eldad Zackd133f2c2013-08-03 10:50:16 +0200572 err = snd_usb_init_pitch(subs->stream->chip, fmt->iface, alts, fmt);
573 if (err < 0)
Daniel Macke5779992010-03-04 19:46:13 +0100574 return err;
575
576 subs->cur_audiofmt = fmt;
577
578 snd_usb_set_format_quirk(subs, fmt);
579
Daniel Macke5779992010-03-04 19:46:13 +0100580 return 0;
581}
582
583/*
Eldad Zack0d9741c2012-12-03 20:30:09 +0100584 * Return the score of matching two audioformats.
585 * Veto the audioformat if:
586 * - It has no channels for some reason.
587 * - Requested PCM format is not supported.
588 * - Requested sample rate is not supported.
589 */
Takashi Iwai0ba41d92014-02-26 13:02:17 +0100590static int match_endpoint_audioformats(struct snd_usb_substream *subs,
591 struct audioformat *fp,
592 struct audioformat *match, int rate,
593 snd_pcm_format_t pcm_format)
Eldad Zack0d9741c2012-12-03 20:30:09 +0100594{
595 int i;
596 int score = 0;
597
598 if (fp->channels < 1) {
Takashi Iwai0ba41d92014-02-26 13:02:17 +0100599 dev_dbg(&subs->dev->dev,
600 "%s: (fmt @%p) no channels\n", __func__, fp);
Eldad Zack0d9741c2012-12-03 20:30:09 +0100601 return 0;
602 }
603
Eldad Zack74c34ca2013-04-23 01:00:41 +0200604 if (!(fp->formats & pcm_format_to_bits(pcm_format))) {
Takashi Iwai0ba41d92014-02-26 13:02:17 +0100605 dev_dbg(&subs->dev->dev,
606 "%s: (fmt @%p) no match for format %d\n", __func__,
Eldad Zack0d9741c2012-12-03 20:30:09 +0100607 fp, pcm_format);
608 return 0;
609 }
610
611 for (i = 0; i < fp->nr_rates; i++) {
612 if (fp->rate_table[i] == rate) {
613 score++;
614 break;
615 }
616 }
617 if (!score) {
Takashi Iwai0ba41d92014-02-26 13:02:17 +0100618 dev_dbg(&subs->dev->dev,
619 "%s: (fmt @%p) no match for rate %d\n", __func__,
Eldad Zack0d9741c2012-12-03 20:30:09 +0100620 fp, rate);
621 return 0;
622 }
623
624 if (fp->channels == match->channels)
625 score++;
626
Takashi Iwai0ba41d92014-02-26 13:02:17 +0100627 dev_dbg(&subs->dev->dev,
628 "%s: (fmt @%p) score %d\n", __func__, fp, score);
Eldad Zack0d9741c2012-12-03 20:30:09 +0100629
630 return score;
631}
632
633/*
634 * Configure the sync ep using the rate and pcm format of the data ep.
635 */
636static int configure_sync_endpoint(struct snd_usb_substream *subs)
637{
638 int ret;
639 struct audioformat *fp;
640 struct audioformat *sync_fp = NULL;
641 int cur_score = 0;
642 int sync_period_bytes = subs->period_bytes;
643 struct snd_usb_substream *sync_subs =
644 &subs->stream->substream[subs->direction ^ 1];
645
Takashi Iwai31be5422013-01-10 14:06:38 +0100646 if (subs->sync_endpoint->type != SND_USB_ENDPOINT_TYPE_DATA ||
647 !subs->stream)
648 return snd_usb_endpoint_set_params(subs->sync_endpoint,
649 subs->pcm_format,
650 subs->channels,
651 subs->period_bytes,
Alan Stern976b6c02013-09-24 15:51:58 -0400652 0, 0,
Takashi Iwai31be5422013-01-10 14:06:38 +0100653 subs->cur_rate,
654 subs->cur_audiofmt,
655 NULL);
656
Eldad Zack0d9741c2012-12-03 20:30:09 +0100657 /* Try to find the best matching audioformat. */
658 list_for_each_entry(fp, &sync_subs->fmt_list, list) {
Takashi Iwai0ba41d92014-02-26 13:02:17 +0100659 int score = match_endpoint_audioformats(subs,
660 fp, subs->cur_audiofmt,
Eldad Zack0d9741c2012-12-03 20:30:09 +0100661 subs->cur_rate, subs->pcm_format);
662
663 if (score > cur_score) {
664 sync_fp = fp;
665 cur_score = score;
666 }
667 }
668
669 if (unlikely(sync_fp == NULL)) {
Takashi Iwai0ba41d92014-02-26 13:02:17 +0100670 dev_err(&subs->dev->dev,
671 "%s: no valid audioformat for sync ep %x found\n",
Eldad Zack0d9741c2012-12-03 20:30:09 +0100672 __func__, sync_subs->ep_num);
673 return -EINVAL;
674 }
675
676 /*
677 * Recalculate the period bytes if channel number differ between
678 * data and sync ep audioformat.
679 */
680 if (sync_fp->channels != subs->channels) {
681 sync_period_bytes = (subs->period_bytes / subs->channels) *
682 sync_fp->channels;
Takashi Iwai0ba41d92014-02-26 13:02:17 +0100683 dev_dbg(&subs->dev->dev,
684 "%s: adjusted sync ep period bytes (%d -> %d)\n",
Eldad Zack0d9741c2012-12-03 20:30:09 +0100685 __func__, subs->period_bytes, sync_period_bytes);
686 }
687
688 ret = snd_usb_endpoint_set_params(subs->sync_endpoint,
689 subs->pcm_format,
690 sync_fp->channels,
691 sync_period_bytes,
Alan Stern976b6c02013-09-24 15:51:58 -0400692 0, 0,
Eldad Zack0d9741c2012-12-03 20:30:09 +0100693 subs->cur_rate,
694 sync_fp,
695 NULL);
696
697 return ret;
698}
699
700/*
Dylan Reid61a70952012-09-18 09:49:48 -0700701 * configure endpoint params
702 *
703 * called during initial setup and upon resume
704 */
705static int configure_endpoint(struct snd_usb_substream *subs)
706{
707 int ret;
708
Dylan Reid61a70952012-09-18 09:49:48 -0700709 /* format changed */
Takashi Iwaib0db6062012-11-21 08:35:42 +0100710 stop_endpoints(subs, true);
Dylan Reid61a70952012-09-18 09:49:48 -0700711 ret = snd_usb_endpoint_set_params(subs->data_endpoint,
712 subs->pcm_format,
713 subs->channels,
714 subs->period_bytes,
Alan Stern976b6c02013-09-24 15:51:58 -0400715 subs->period_frames,
716 subs->buffer_periods,
Dylan Reid61a70952012-09-18 09:49:48 -0700717 subs->cur_rate,
718 subs->cur_audiofmt,
719 subs->sync_endpoint);
720 if (ret < 0)
Takashi Iwai978520b2012-10-12 15:12:55 +0200721 return ret;
Dylan Reid61a70952012-09-18 09:49:48 -0700722
723 if (subs->sync_endpoint)
Eldad Zack0d9741c2012-12-03 20:30:09 +0100724 ret = configure_sync_endpoint(subs);
725
Dylan Reid61a70952012-09-18 09:49:48 -0700726 return ret;
727}
728
729/*
Daniel Macke5779992010-03-04 19:46:13 +0100730 * hw_params callback
731 *
732 * allocate a buffer and set the given audio format.
733 *
734 * so far we use a physically linear buffer although packetize transfer
735 * doesn't need a continuous area.
736 * if sg buffer is supported on the later version of alsa, we'll follow
737 * that.
738 */
739static int snd_usb_hw_params(struct snd_pcm_substream *substream,
740 struct snd_pcm_hw_params *hw_params)
741{
742 struct snd_usb_substream *subs = substream->runtime->private_data;
743 struct audioformat *fmt;
Dylan Reid61a70952012-09-18 09:49:48 -0700744 int ret;
Daniel Macke5779992010-03-04 19:46:13 +0100745
746 ret = snd_pcm_lib_alloc_vmalloc_buffer(substream,
747 params_buffer_bytes(hw_params));
748 if (ret < 0)
Mauro Carvalho Chehabc89178f2016-03-31 09:57:29 -0300749 return ret;
Daniel Macke5779992010-03-04 19:46:13 +0100750
Dylan Reid61a70952012-09-18 09:49:48 -0700751 subs->pcm_format = params_format(hw_params);
752 subs->period_bytes = params_period_bytes(hw_params);
Alan Stern976b6c02013-09-24 15:51:58 -0400753 subs->period_frames = params_period_size(hw_params);
754 subs->buffer_periods = params_periods(hw_params);
Dylan Reid61a70952012-09-18 09:49:48 -0700755 subs->channels = params_channels(hw_params);
756 subs->cur_rate = params_rate(hw_params);
757
758 fmt = find_format(subs);
Daniel Macke5779992010-03-04 19:46:13 +0100759 if (!fmt) {
Takashi Iwai0ba41d92014-02-26 13:02:17 +0100760 dev_dbg(&subs->dev->dev,
761 "cannot set format: format = %#x, rate = %d, channels = %d\n",
Dylan Reid61a70952012-09-18 09:49:48 -0700762 subs->pcm_format, subs->cur_rate, subs->channels);
Mauro Carvalho Chehabc89178f2016-03-31 09:57:29 -0300763 return -EINVAL;
Daniel Macke5779992010-03-04 19:46:13 +0100764 }
765
Takashi Iwai47ab1542015-08-25 16:09:00 +0200766 ret = snd_usb_lock_shutdown(subs->stream->chip);
767 if (ret < 0)
Mauro Carvalho Chehabc89178f2016-03-31 09:57:29 -0300768 return ret;
Takashi Iwai47ab1542015-08-25 16:09:00 +0200769 ret = set_format(subs, fmt);
770 snd_usb_unlock_shutdown(subs->stream->chip);
Takashi Iwai978520b2012-10-12 15:12:55 +0200771 if (ret < 0)
Mauro Carvalho Chehabc89178f2016-03-31 09:57:29 -0300772 return ret;
Daniel Macke5779992010-03-04 19:46:13 +0100773
Dylan Reid61a70952012-09-18 09:49:48 -0700774 subs->interface = fmt->iface;
775 subs->altset_idx = fmt->altset_idx;
Takashi Iwai384dc0852012-09-18 14:49:31 +0200776 subs->need_setup_ep = true;
Daniel Macke5779992010-03-04 19:46:13 +0100777
Dylan Reid61a70952012-09-18 09:49:48 -0700778 return 0;
Daniel Macke5779992010-03-04 19:46:13 +0100779}
780
781/*
782 * hw_free callback
783 *
784 * reset the audio format and release the buffer
785 */
786static int snd_usb_hw_free(struct snd_pcm_substream *substream)
787{
788 struct snd_usb_substream *subs = substream->runtime->private_data;
789
790 subs->cur_audiofmt = NULL;
791 subs->cur_rate = 0;
792 subs->period_bytes = 0;
Takashi Iwai47ab1542015-08-25 16:09:00 +0200793 if (!snd_usb_lock_shutdown(subs->stream->chip)) {
Takashi Iwaia9bb3622012-11-20 18:32:06 +0100794 stop_endpoints(subs, true);
Eldad Zack26de5d02013-10-06 22:31:07 +0200795 snd_usb_endpoint_deactivate(subs->sync_endpoint);
796 snd_usb_endpoint_deactivate(subs->data_endpoint);
Takashi Iwai47ab1542015-08-25 16:09:00 +0200797 snd_usb_unlock_shutdown(subs->stream->chip);
Takashi Iwai978520b2012-10-12 15:12:55 +0200798 }
Daniel Macke5779992010-03-04 19:46:13 +0100799 return snd_pcm_lib_free_vmalloc_buffer(substream);
800}
801
802/*
803 * prepare callback
804 *
805 * only a few subtle things...
806 */
807static int snd_usb_pcm_prepare(struct snd_pcm_substream *substream)
808{
809 struct snd_pcm_runtime *runtime = substream->runtime;
810 struct snd_usb_substream *subs = runtime->private_data;
Dylan Reid61a70952012-09-18 09:49:48 -0700811 struct usb_host_interface *alts;
812 struct usb_interface *iface;
813 int ret;
Daniel Macke5779992010-03-04 19:46:13 +0100814
815 if (! subs->cur_audiofmt) {
Takashi Iwai0ba41d92014-02-26 13:02:17 +0100816 dev_err(&subs->dev->dev, "no format is specified!\n");
Daniel Macke5779992010-03-04 19:46:13 +0100817 return -ENXIO;
818 }
819
Takashi Iwai47ab1542015-08-25 16:09:00 +0200820 ret = snd_usb_lock_shutdown(subs->stream->chip);
821 if (ret < 0)
822 return ret;
Takashi Iwai978520b2012-10-12 15:12:55 +0200823 if (snd_BUG_ON(!subs->data_endpoint)) {
824 ret = -EIO;
825 goto unlock;
826 }
Daniel Mackedcd3632012-04-12 13:51:12 +0200827
Takashi Iwaif58161b2012-11-08 08:52:45 +0100828 snd_usb_endpoint_sync_pending_stop(subs->sync_endpoint);
829 snd_usb_endpoint_sync_pending_stop(subs->data_endpoint);
830
Dylan Reid61a70952012-09-18 09:49:48 -0700831 ret = set_format(subs, subs->cur_audiofmt);
832 if (ret < 0)
Takashi Iwai978520b2012-10-12 15:12:55 +0200833 goto unlock;
Dylan Reid61a70952012-09-18 09:49:48 -0700834
835 iface = usb_ifnum_to_if(subs->dev, subs->cur_audiofmt->iface);
836 alts = &iface->altsetting[subs->cur_audiofmt->altset_idx];
837 ret = snd_usb_init_sample_rate(subs->stream->chip,
838 subs->cur_audiofmt->iface,
839 alts,
840 subs->cur_audiofmt,
841 subs->cur_rate);
842 if (ret < 0)
Takashi Iwai978520b2012-10-12 15:12:55 +0200843 goto unlock;
Dylan Reid61a70952012-09-18 09:49:48 -0700844
Takashi Iwai384dc0852012-09-18 14:49:31 +0200845 if (subs->need_setup_ep) {
846 ret = configure_endpoint(subs);
847 if (ret < 0)
Takashi Iwai978520b2012-10-12 15:12:55 +0200848 goto unlock;
Takashi Iwai384dc0852012-09-18 14:49:31 +0200849 subs->need_setup_ep = false;
850 }
Dylan Reid61a70952012-09-18 09:49:48 -0700851
Daniel Macke5779992010-03-04 19:46:13 +0100852 /* some unit conversions in runtime */
Daniel Mackedcd3632012-04-12 13:51:12 +0200853 subs->data_endpoint->maxframesize =
854 bytes_to_frames(runtime, subs->data_endpoint->maxpacksize);
855 subs->data_endpoint->curframesize =
856 bytes_to_frames(runtime, subs->data_endpoint->curpacksize);
Daniel Macke5779992010-03-04 19:46:13 +0100857
858 /* reset the pointer */
859 subs->hwptr_done = 0;
860 subs->transfer_done = 0;
Pierre-Louis Bossart294c4fb2011-09-06 19:15:34 -0500861 subs->last_delay = 0;
862 subs->last_frame_number = 0;
Daniel Macke5779992010-03-04 19:46:13 +0100863 runtime->delay = 0;
864
Daniel Mackedcd3632012-04-12 13:51:12 +0200865 /* for playback, submit the URBs now; otherwise, the first hwptr_done
866 * updates for all URBs would happen at the same time when starting */
867 if (subs->direction == SNDRV_PCM_STREAM_PLAYBACK)
Ioan-Adrian Ratiube4e3ae2017-01-05 00:37:46 +0200868 ret = start_endpoints(subs);
Daniel Mackedcd3632012-04-12 13:51:12 +0200869
Takashi Iwai978520b2012-10-12 15:12:55 +0200870 unlock:
Takashi Iwai47ab1542015-08-25 16:09:00 +0200871 snd_usb_unlock_shutdown(subs->stream->chip);
Takashi Iwai978520b2012-10-12 15:12:55 +0200872 return ret;
Daniel Macke5779992010-03-04 19:46:13 +0100873}
874
875static struct snd_pcm_hardware snd_usb_hardware =
876{
877 .info = SNDRV_PCM_INFO_MMAP |
878 SNDRV_PCM_INFO_MMAP_VALID |
879 SNDRV_PCM_INFO_BATCH |
880 SNDRV_PCM_INFO_INTERLEAVED |
881 SNDRV_PCM_INFO_BLOCK_TRANSFER |
882 SNDRV_PCM_INFO_PAUSE,
883 .buffer_bytes_max = 1024 * 1024,
884 .period_bytes_min = 64,
885 .period_bytes_max = 512 * 1024,
886 .periods_min = 2,
887 .periods_max = 1024,
888};
889
890static int hw_check_valid_format(struct snd_usb_substream *subs,
891 struct snd_pcm_hw_params *params,
892 struct audioformat *fp)
893{
894 struct snd_interval *it = hw_param_interval(params, SNDRV_PCM_HW_PARAM_RATE);
895 struct snd_interval *ct = hw_param_interval(params, SNDRV_PCM_HW_PARAM_CHANNELS);
896 struct snd_mask *fmts = hw_param_mask(params, SNDRV_PCM_HW_PARAM_FORMAT);
897 struct snd_interval *pt = hw_param_interval(params, SNDRV_PCM_HW_PARAM_PERIOD_TIME);
Clemens Ladisch015eb0b2010-03-04 19:46:15 +0100898 struct snd_mask check_fmts;
Daniel Macke5779992010-03-04 19:46:13 +0100899 unsigned int ptime;
900
901 /* check the format */
Clemens Ladisch015eb0b2010-03-04 19:46:15 +0100902 snd_mask_none(&check_fmts);
903 check_fmts.bits[0] = (u32)fp->formats;
904 check_fmts.bits[1] = (u32)(fp->formats >> 32);
905 snd_mask_intersect(&check_fmts, fmts);
906 if (snd_mask_empty(&check_fmts)) {
Daniel Macke5779992010-03-04 19:46:13 +0100907 hwc_debug(" > check: no supported format %d\n", fp->format);
908 return 0;
909 }
910 /* check the channels */
911 if (fp->channels < ct->min || fp->channels > ct->max) {
912 hwc_debug(" > check: no valid channels %d (%d/%d)\n", fp->channels, ct->min, ct->max);
913 return 0;
914 }
915 /* check the rate is within the range */
916 if (fp->rate_min > it->max || (fp->rate_min == it->max && it->openmax)) {
917 hwc_debug(" > check: rate_min %d > max %d\n", fp->rate_min, it->max);
918 return 0;
919 }
920 if (fp->rate_max < it->min || (fp->rate_max == it->min && it->openmin)) {
921 hwc_debug(" > check: rate_max %d < min %d\n", fp->rate_max, it->min);
922 return 0;
923 }
924 /* check whether the period time is >= the data packet interval */
Takashi Iwai978520b2012-10-12 15:12:55 +0200925 if (subs->speed != USB_SPEED_FULL) {
Daniel Macke5779992010-03-04 19:46:13 +0100926 ptime = 125 * (1 << fp->datainterval);
927 if (ptime > pt->max || (ptime == pt->max && pt->openmax)) {
928 hwc_debug(" > check: ptime %u > max %u\n", ptime, pt->max);
929 return 0;
930 }
931 }
932 return 1;
933}
934
935static int hw_rule_rate(struct snd_pcm_hw_params *params,
936 struct snd_pcm_hw_rule *rule)
937{
938 struct snd_usb_substream *subs = rule->private;
Eldad Zack88766f02013-04-03 23:18:49 +0200939 struct audioformat *fp;
Daniel Macke5779992010-03-04 19:46:13 +0100940 struct snd_interval *it = hw_param_interval(params, SNDRV_PCM_HW_PARAM_RATE);
941 unsigned int rmin, rmax;
942 int changed;
943
944 hwc_debug("hw_rule_rate: (%d,%d)\n", it->min, it->max);
945 changed = 0;
946 rmin = rmax = 0;
Eldad Zack88766f02013-04-03 23:18:49 +0200947 list_for_each_entry(fp, &subs->fmt_list, list) {
Daniel Macke5779992010-03-04 19:46:13 +0100948 if (!hw_check_valid_format(subs, params, fp))
949 continue;
950 if (changed++) {
951 if (rmin > fp->rate_min)
952 rmin = fp->rate_min;
953 if (rmax < fp->rate_max)
954 rmax = fp->rate_max;
955 } else {
956 rmin = fp->rate_min;
957 rmax = fp->rate_max;
958 }
959 }
960
961 if (!changed) {
962 hwc_debug(" --> get empty\n");
963 it->empty = 1;
964 return -EINVAL;
965 }
966
967 changed = 0;
968 if (it->min < rmin) {
969 it->min = rmin;
970 it->openmin = 0;
971 changed = 1;
972 }
973 if (it->max > rmax) {
974 it->max = rmax;
975 it->openmax = 0;
976 changed = 1;
977 }
978 if (snd_interval_checkempty(it)) {
979 it->empty = 1;
980 return -EINVAL;
981 }
982 hwc_debug(" --> (%d, %d) (changed = %d)\n", it->min, it->max, changed);
983 return changed;
984}
985
986
987static int hw_rule_channels(struct snd_pcm_hw_params *params,
988 struct snd_pcm_hw_rule *rule)
989{
990 struct snd_usb_substream *subs = rule->private;
Eldad Zack88766f02013-04-03 23:18:49 +0200991 struct audioformat *fp;
Daniel Macke5779992010-03-04 19:46:13 +0100992 struct snd_interval *it = hw_param_interval(params, SNDRV_PCM_HW_PARAM_CHANNELS);
993 unsigned int rmin, rmax;
994 int changed;
995
996 hwc_debug("hw_rule_channels: (%d,%d)\n", it->min, it->max);
997 changed = 0;
998 rmin = rmax = 0;
Eldad Zack88766f02013-04-03 23:18:49 +0200999 list_for_each_entry(fp, &subs->fmt_list, list) {
Daniel Macke5779992010-03-04 19:46:13 +01001000 if (!hw_check_valid_format(subs, params, fp))
1001 continue;
1002 if (changed++) {
1003 if (rmin > fp->channels)
1004 rmin = fp->channels;
1005 if (rmax < fp->channels)
1006 rmax = fp->channels;
1007 } else {
1008 rmin = fp->channels;
1009 rmax = fp->channels;
1010 }
1011 }
1012
1013 if (!changed) {
1014 hwc_debug(" --> get empty\n");
1015 it->empty = 1;
1016 return -EINVAL;
1017 }
1018
1019 changed = 0;
1020 if (it->min < rmin) {
1021 it->min = rmin;
1022 it->openmin = 0;
1023 changed = 1;
1024 }
1025 if (it->max > rmax) {
1026 it->max = rmax;
1027 it->openmax = 0;
1028 changed = 1;
1029 }
1030 if (snd_interval_checkempty(it)) {
1031 it->empty = 1;
1032 return -EINVAL;
1033 }
1034 hwc_debug(" --> (%d, %d) (changed = %d)\n", it->min, it->max, changed);
1035 return changed;
1036}
1037
1038static int hw_rule_format(struct snd_pcm_hw_params *params,
1039 struct snd_pcm_hw_rule *rule)
1040{
1041 struct snd_usb_substream *subs = rule->private;
Eldad Zack88766f02013-04-03 23:18:49 +02001042 struct audioformat *fp;
Daniel Macke5779992010-03-04 19:46:13 +01001043 struct snd_mask *fmt = hw_param_mask(params, SNDRV_PCM_HW_PARAM_FORMAT);
1044 u64 fbits;
1045 u32 oldbits[2];
1046 int changed;
1047
1048 hwc_debug("hw_rule_format: %x:%x\n", fmt->bits[0], fmt->bits[1]);
1049 fbits = 0;
Eldad Zack88766f02013-04-03 23:18:49 +02001050 list_for_each_entry(fp, &subs->fmt_list, list) {
Daniel Macke5779992010-03-04 19:46:13 +01001051 if (!hw_check_valid_format(subs, params, fp))
1052 continue;
Clemens Ladisch015eb0b2010-03-04 19:46:15 +01001053 fbits |= fp->formats;
Daniel Macke5779992010-03-04 19:46:13 +01001054 }
1055
1056 oldbits[0] = fmt->bits[0];
1057 oldbits[1] = fmt->bits[1];
1058 fmt->bits[0] &= (u32)fbits;
1059 fmt->bits[1] &= (u32)(fbits >> 32);
1060 if (!fmt->bits[0] && !fmt->bits[1]) {
1061 hwc_debug(" --> get empty\n");
1062 return -EINVAL;
1063 }
1064 changed = (oldbits[0] != fmt->bits[0] || oldbits[1] != fmt->bits[1]);
1065 hwc_debug(" --> %x:%x (changed = %d)\n", fmt->bits[0], fmt->bits[1], changed);
1066 return changed;
1067}
1068
1069static int hw_rule_period_time(struct snd_pcm_hw_params *params,
1070 struct snd_pcm_hw_rule *rule)
1071{
1072 struct snd_usb_substream *subs = rule->private;
1073 struct audioformat *fp;
1074 struct snd_interval *it;
1075 unsigned char min_datainterval;
1076 unsigned int pmin;
1077 int changed;
1078
1079 it = hw_param_interval(params, SNDRV_PCM_HW_PARAM_PERIOD_TIME);
1080 hwc_debug("hw_rule_period_time: (%u,%u)\n", it->min, it->max);
1081 min_datainterval = 0xff;
1082 list_for_each_entry(fp, &subs->fmt_list, list) {
1083 if (!hw_check_valid_format(subs, params, fp))
1084 continue;
1085 min_datainterval = min(min_datainterval, fp->datainterval);
1086 }
1087 if (min_datainterval == 0xff) {
Uwe Kleine-Königa7ce2e02010-07-12 17:15:44 +02001088 hwc_debug(" --> get empty\n");
Daniel Macke5779992010-03-04 19:46:13 +01001089 it->empty = 1;
1090 return -EINVAL;
1091 }
1092 pmin = 125 * (1 << min_datainterval);
1093 changed = 0;
1094 if (it->min < pmin) {
1095 it->min = pmin;
1096 it->openmin = 0;
1097 changed = 1;
1098 }
1099 if (snd_interval_checkempty(it)) {
1100 it->empty = 1;
1101 return -EINVAL;
1102 }
1103 hwc_debug(" --> (%u,%u) (changed = %d)\n", it->min, it->max, changed);
1104 return changed;
1105}
1106
1107/*
1108 * If the device supports unusual bit rates, does the request meet these?
1109 */
1110static int snd_usb_pcm_check_knot(struct snd_pcm_runtime *runtime,
1111 struct snd_usb_substream *subs)
1112{
1113 struct audioformat *fp;
Takashi Iwai0717d0f2012-03-15 16:14:38 +01001114 int *rate_list;
Daniel Macke5779992010-03-04 19:46:13 +01001115 int count = 0, needs_knot = 0;
1116 int err;
1117
Clemens Ladisch5cd5d7c2012-05-18 18:00:43 +02001118 kfree(subs->rate_list.list);
1119 subs->rate_list.list = NULL;
1120
Daniel Macke5779992010-03-04 19:46:13 +01001121 list_for_each_entry(fp, &subs->fmt_list, list) {
1122 if (fp->rates & SNDRV_PCM_RATE_CONTINUOUS)
1123 return 0;
1124 count += fp->nr_rates;
1125 if (fp->rates & SNDRV_PCM_RATE_KNOT)
1126 needs_knot = 1;
1127 }
1128 if (!needs_knot)
1129 return 0;
1130
Takashi Iwai0717d0f2012-03-15 16:14:38 +01001131 subs->rate_list.list = rate_list =
1132 kmalloc(sizeof(int) * count, GFP_KERNEL);
Jesper Juhl8a8d56b2010-10-29 20:40:23 +02001133 if (!subs->rate_list.list)
1134 return -ENOMEM;
1135 subs->rate_list.count = count;
Daniel Macke5779992010-03-04 19:46:13 +01001136 subs->rate_list.mask = 0;
1137 count = 0;
1138 list_for_each_entry(fp, &subs->fmt_list, list) {
1139 int i;
1140 for (i = 0; i < fp->nr_rates; i++)
Takashi Iwai0717d0f2012-03-15 16:14:38 +01001141 rate_list[count++] = fp->rate_table[i];
Daniel Macke5779992010-03-04 19:46:13 +01001142 }
1143 err = snd_pcm_hw_constraint_list(runtime, 0, SNDRV_PCM_HW_PARAM_RATE,
1144 &subs->rate_list);
1145 if (err < 0)
1146 return err;
1147
1148 return 0;
1149}
1150
1151
1152/*
1153 * set up the runtime hardware information.
1154 */
1155
1156static int setup_hw_info(struct snd_pcm_runtime *runtime, struct snd_usb_substream *subs)
1157{
Eldad Zack88766f02013-04-03 23:18:49 +02001158 struct audioformat *fp;
Daniel Macke5779992010-03-04 19:46:13 +01001159 unsigned int pt, ptmin;
1160 int param_period_time_if_needed;
1161 int err;
1162
1163 runtime->hw.formats = subs->formats;
1164
1165 runtime->hw.rate_min = 0x7fffffff;
1166 runtime->hw.rate_max = 0;
1167 runtime->hw.channels_min = 256;
1168 runtime->hw.channels_max = 0;
1169 runtime->hw.rates = 0;
1170 ptmin = UINT_MAX;
1171 /* check min/max rates and channels */
Eldad Zack88766f02013-04-03 23:18:49 +02001172 list_for_each_entry(fp, &subs->fmt_list, list) {
Daniel Macke5779992010-03-04 19:46:13 +01001173 runtime->hw.rates |= fp->rates;
1174 if (runtime->hw.rate_min > fp->rate_min)
1175 runtime->hw.rate_min = fp->rate_min;
1176 if (runtime->hw.rate_max < fp->rate_max)
1177 runtime->hw.rate_max = fp->rate_max;
1178 if (runtime->hw.channels_min > fp->channels)
1179 runtime->hw.channels_min = fp->channels;
1180 if (runtime->hw.channels_max < fp->channels)
1181 runtime->hw.channels_max = fp->channels;
1182 if (fp->fmt_type == UAC_FORMAT_TYPE_II && fp->frame_size > 0) {
1183 /* FIXME: there might be more than one audio formats... */
1184 runtime->hw.period_bytes_min = runtime->hw.period_bytes_max =
1185 fp->frame_size;
1186 }
1187 pt = 125 * (1 << fp->datainterval);
1188 ptmin = min(ptmin, pt);
1189 }
Oliver Neukum88a85162011-03-11 14:51:12 +01001190 err = snd_usb_autoresume(subs->stream->chip);
1191 if (err < 0)
1192 return err;
Daniel Macke5779992010-03-04 19:46:13 +01001193
1194 param_period_time_if_needed = SNDRV_PCM_HW_PARAM_PERIOD_TIME;
Takashi Iwai978520b2012-10-12 15:12:55 +02001195 if (subs->speed == USB_SPEED_FULL)
Daniel Macke5779992010-03-04 19:46:13 +01001196 /* full speed devices have fixed data packet interval */
1197 ptmin = 1000;
1198 if (ptmin == 1000)
1199 /* if period time doesn't go below 1 ms, no rules needed */
1200 param_period_time_if_needed = -1;
1201 snd_pcm_hw_constraint_minmax(runtime, SNDRV_PCM_HW_PARAM_PERIOD_TIME,
1202 ptmin, UINT_MAX);
1203
1204 if ((err = snd_pcm_hw_rule_add(runtime, 0, SNDRV_PCM_HW_PARAM_RATE,
1205 hw_rule_rate, subs,
1206 SNDRV_PCM_HW_PARAM_FORMAT,
1207 SNDRV_PCM_HW_PARAM_CHANNELS,
1208 param_period_time_if_needed,
1209 -1)) < 0)
Oliver Neukum88a85162011-03-11 14:51:12 +01001210 goto rep_err;
Daniel Macke5779992010-03-04 19:46:13 +01001211 if ((err = snd_pcm_hw_rule_add(runtime, 0, SNDRV_PCM_HW_PARAM_CHANNELS,
1212 hw_rule_channels, subs,
1213 SNDRV_PCM_HW_PARAM_FORMAT,
1214 SNDRV_PCM_HW_PARAM_RATE,
1215 param_period_time_if_needed,
1216 -1)) < 0)
Oliver Neukum88a85162011-03-11 14:51:12 +01001217 goto rep_err;
Daniel Macke5779992010-03-04 19:46:13 +01001218 if ((err = snd_pcm_hw_rule_add(runtime, 0, SNDRV_PCM_HW_PARAM_FORMAT,
1219 hw_rule_format, subs,
1220 SNDRV_PCM_HW_PARAM_RATE,
1221 SNDRV_PCM_HW_PARAM_CHANNELS,
1222 param_period_time_if_needed,
1223 -1)) < 0)
Oliver Neukum88a85162011-03-11 14:51:12 +01001224 goto rep_err;
Daniel Macke5779992010-03-04 19:46:13 +01001225 if (param_period_time_if_needed >= 0) {
1226 err = snd_pcm_hw_rule_add(runtime, 0,
1227 SNDRV_PCM_HW_PARAM_PERIOD_TIME,
1228 hw_rule_period_time, subs,
1229 SNDRV_PCM_HW_PARAM_FORMAT,
1230 SNDRV_PCM_HW_PARAM_CHANNELS,
1231 SNDRV_PCM_HW_PARAM_RATE,
1232 -1);
1233 if (err < 0)
Oliver Neukum88a85162011-03-11 14:51:12 +01001234 goto rep_err;
Daniel Macke5779992010-03-04 19:46:13 +01001235 }
1236 if ((err = snd_usb_pcm_check_knot(runtime, subs)) < 0)
Oliver Neukum88a85162011-03-11 14:51:12 +01001237 goto rep_err;
Daniel Macke5779992010-03-04 19:46:13 +01001238 return 0;
Oliver Neukum88a85162011-03-11 14:51:12 +01001239
1240rep_err:
1241 snd_usb_autosuspend(subs->stream->chip);
1242 return err;
Daniel Macke5779992010-03-04 19:46:13 +01001243}
1244
1245static int snd_usb_pcm_open(struct snd_pcm_substream *substream, int direction)
1246{
1247 struct snd_usb_stream *as = snd_pcm_substream_chip(substream);
1248 struct snd_pcm_runtime *runtime = substream->runtime;
1249 struct snd_usb_substream *subs = &as->substream[direction];
1250
1251 subs->interface = -1;
Clemens Ladische11b4e02010-03-04 19:46:14 +01001252 subs->altset_idx = 0;
Daniel Macke5779992010-03-04 19:46:13 +01001253 runtime->hw = snd_usb_hardware;
1254 runtime->private_data = subs;
1255 subs->pcm_substream = substream;
Oliver Neukum88a85162011-03-11 14:51:12 +01001256 /* runtime PM is also done there */
Daniel Mackd24f5062013-04-17 00:01:38 +08001257
1258 /* initialize DSD/DOP context */
1259 subs->dsd_dop.byte_idx = 0;
1260 subs->dsd_dop.channel = 0;
1261 subs->dsd_dop.marker = 1;
1262
Mauro Carvalho Chehabc89178f2016-03-31 09:57:29 -03001263 return setup_hw_info(runtime, subs);
Daniel Macke5779992010-03-04 19:46:13 +01001264}
1265
1266static int snd_usb_pcm_close(struct snd_pcm_substream *substream, int direction)
1267{
1268 struct snd_usb_stream *as = snd_pcm_substream_chip(substream);
1269 struct snd_usb_substream *subs = &as->substream[direction];
1270
Takashi Iwaib0db6062012-11-21 08:35:42 +01001271 stop_endpoints(subs, true);
Daniel Mack68e67f42012-07-12 13:08:40 +02001272
Takashi Iwai47ab1542015-08-25 16:09:00 +02001273 if (subs->interface >= 0 &&
1274 !snd_usb_lock_shutdown(subs->stream->chip)) {
Daniel Mack68e67f42012-07-12 13:08:40 +02001275 usb_set_interface(subs->dev, subs->interface, 0);
1276 subs->interface = -1;
Takashi Iwai47ab1542015-08-25 16:09:00 +02001277 snd_usb_unlock_shutdown(subs->stream->chip);
Daniel Mack68e67f42012-07-12 13:08:40 +02001278 }
1279
Daniel Macke5779992010-03-04 19:46:13 +01001280 subs->pcm_substream = NULL;
Oliver Neukum88a85162011-03-11 14:51:12 +01001281 snd_usb_autosuspend(subs->stream->chip);
Daniel Mackedcd3632012-04-12 13:51:12 +02001282
Daniel Mack68e67f42012-07-12 13:08:40 +02001283 return 0;
Daniel Mackedcd3632012-04-12 13:51:12 +02001284}
1285
1286/* Since a URB can handle only a single linear buffer, we must use double
1287 * buffering when the data to be transferred overflows the buffer boundary.
1288 * To avoid inconsistencies when updating hwptr_done, we use double buffering
1289 * for all URBs.
1290 */
1291static void retire_capture_urb(struct snd_usb_substream *subs,
1292 struct urb *urb)
1293{
1294 struct snd_pcm_runtime *runtime = subs->pcm_substream->runtime;
1295 unsigned int stride, frames, bytes, oldptr;
1296 int i, period_elapsed = 0;
1297 unsigned long flags;
1298 unsigned char *cp;
Pierre-Louis Bossarte4cc6152012-12-19 11:39:05 -06001299 int current_frame_number;
1300
1301 /* read frame number here, update pointer in critical section */
1302 current_frame_number = usb_get_current_frame_number(subs->dev);
Daniel Mackedcd3632012-04-12 13:51:12 +02001303
1304 stride = runtime->frame_bits >> 3;
1305
1306 for (i = 0; i < urb->number_of_packets; i++) {
Calvin Owens1539d4f2013-04-12 22:33:59 -05001307 cp = (unsigned char *)urb->transfer_buffer + urb->iso_frame_desc[i].offset + subs->pkt_offset_adj;
Daniel Mackedcd3632012-04-12 13:51:12 +02001308 if (urb->iso_frame_desc[i].status && printk_ratelimit()) {
Takashi Iwai0ba41d92014-02-26 13:02:17 +01001309 dev_dbg(&subs->dev->dev, "frame %d active: %d\n",
1310 i, urb->iso_frame_desc[i].status);
Daniel Mackedcd3632012-04-12 13:51:12 +02001311 // continue;
1312 }
1313 bytes = urb->iso_frame_desc[i].actual_length;
1314 frames = bytes / stride;
1315 if (!subs->txfr_quirk)
1316 bytes = frames * stride;
1317 if (bytes % (runtime->sample_bits >> 3) != 0) {
Daniel Mackedcd3632012-04-12 13:51:12 +02001318 int oldbytes = bytes;
Daniel Mackedcd3632012-04-12 13:51:12 +02001319 bytes = frames * stride;
Takashi Iwai03df65a2018-05-16 20:07:18 +02001320 dev_warn_ratelimited(&subs->dev->dev,
Takashi Iwai0ba41d92014-02-26 13:02:17 +01001321 "Corrected urb data len. %d->%d\n",
Daniel Mackedcd3632012-04-12 13:51:12 +02001322 oldbytes, bytes);
1323 }
1324 /* update the current pointer */
1325 spin_lock_irqsave(&subs->lock, flags);
1326 oldptr = subs->hwptr_done;
1327 subs->hwptr_done += bytes;
1328 if (subs->hwptr_done >= runtime->buffer_size * stride)
1329 subs->hwptr_done -= runtime->buffer_size * stride;
1330 frames = (bytes + (oldptr % stride)) / stride;
1331 subs->transfer_done += frames;
1332 if (subs->transfer_done >= runtime->period_size) {
1333 subs->transfer_done -= runtime->period_size;
1334 period_elapsed = 1;
1335 }
Pierre-Louis Bossarte4cc6152012-12-19 11:39:05 -06001336 /* capture delay is by construction limited to one URB,
1337 * reset delays here
1338 */
1339 runtime->delay = subs->last_delay = 0;
1340
1341 /* realign last_frame_number */
1342 subs->last_frame_number = current_frame_number;
1343 subs->last_frame_number &= 0xFF; /* keep 8 LSBs */
1344
Daniel Mackedcd3632012-04-12 13:51:12 +02001345 spin_unlock_irqrestore(&subs->lock, flags);
1346 /* copy a data chunk */
1347 if (oldptr + bytes > runtime->buffer_size * stride) {
1348 unsigned int bytes1 =
1349 runtime->buffer_size * stride - oldptr;
1350 memcpy(runtime->dma_area + oldptr, cp, bytes1);
1351 memcpy(runtime->dma_area, cp + bytes1, bytes - bytes1);
1352 } else {
1353 memcpy(runtime->dma_area + oldptr, cp, bytes);
1354 }
1355 }
1356
1357 if (period_elapsed)
1358 snd_pcm_period_elapsed(subs->pcm_substream);
1359}
1360
Daniel Mackd24f5062013-04-17 00:01:38 +08001361static inline void fill_playback_urb_dsd_dop(struct snd_usb_substream *subs,
1362 struct urb *urb, unsigned int bytes)
1363{
1364 struct snd_pcm_runtime *runtime = subs->pcm_substream->runtime;
1365 unsigned int stride = runtime->frame_bits >> 3;
1366 unsigned int dst_idx = 0;
1367 unsigned int src_idx = subs->hwptr_done;
1368 unsigned int wrap = runtime->buffer_size * stride;
1369 u8 *dst = urb->transfer_buffer;
1370 u8 *src = runtime->dma_area;
1371 u8 marker[] = { 0x05, 0xfa };
1372
1373 /*
1374 * The DSP DOP format defines a way to transport DSD samples over
1375 * normal PCM data endpoints. It requires stuffing of marker bytes
1376 * (0x05 and 0xfa, alternating per sample frame), and then expects
1377 * 2 additional bytes of actual payload. The whole frame is stored
1378 * LSB.
1379 *
1380 * Hence, for a stereo transport, the buffer layout looks like this,
1381 * where L refers to left channel samples and R to right.
1382 *
1383 * L1 L2 0x05 R1 R2 0x05 L3 L4 0xfa R3 R4 0xfa
1384 * L5 L6 0x05 R5 R6 0x05 L7 L8 0xfa R7 R8 0xfa
1385 * .....
1386 *
1387 */
1388
1389 while (bytes--) {
1390 if (++subs->dsd_dop.byte_idx == 3) {
1391 /* frame boundary? */
1392 dst[dst_idx++] = marker[subs->dsd_dop.marker];
1393 src_idx += 2;
1394 subs->dsd_dop.byte_idx = 0;
1395
1396 if (++subs->dsd_dop.channel % runtime->channels == 0) {
1397 /* alternate the marker */
1398 subs->dsd_dop.marker++;
1399 subs->dsd_dop.marker %= ARRAY_SIZE(marker);
1400 subs->dsd_dop.channel = 0;
1401 }
1402 } else {
1403 /* stuff the DSD payload */
1404 int idx = (src_idx + subs->dsd_dop.byte_idx - 1) % wrap;
Daniel Mack44dcbbb2013-04-17 00:01:39 +08001405
1406 if (subs->cur_audiofmt->dsd_bitrev)
1407 dst[dst_idx++] = bitrev8(src[idx]);
1408 else
1409 dst[dst_idx++] = src[idx];
1410
Daniel Mackd24f5062013-04-17 00:01:38 +08001411 subs->hwptr_done++;
1412 }
1413 }
Ricard Wanderlof4c4e4392015-10-19 08:52:50 +02001414 if (subs->hwptr_done >= runtime->buffer_size * stride)
1415 subs->hwptr_done -= runtime->buffer_size * stride;
Daniel Mackd24f5062013-04-17 00:01:38 +08001416}
1417
Ricard Wanderlofb97a9362015-10-19 08:52:52 +02001418static void copy_to_urb(struct snd_usb_substream *subs, struct urb *urb,
1419 int offset, int stride, unsigned int bytes)
Ricard Wanderlof07a40c2f2015-10-19 08:52:49 +02001420{
1421 struct snd_pcm_runtime *runtime = subs->pcm_substream->runtime;
1422
1423 if (subs->hwptr_done + bytes > runtime->buffer_size * stride) {
1424 /* err, the transferred area goes over buffer boundary. */
1425 unsigned int bytes1 =
1426 runtime->buffer_size * stride - subs->hwptr_done;
Ricard Wanderlofb97a9362015-10-19 08:52:52 +02001427 memcpy(urb->transfer_buffer + offset,
Ricard Wanderlof07a40c2f2015-10-19 08:52:49 +02001428 runtime->dma_area + subs->hwptr_done, bytes1);
Ricard Wanderlofb97a9362015-10-19 08:52:52 +02001429 memcpy(urb->transfer_buffer + offset + bytes1,
Ricard Wanderlof07a40c2f2015-10-19 08:52:49 +02001430 runtime->dma_area, bytes - bytes1);
1431 } else {
Ricard Wanderlofb97a9362015-10-19 08:52:52 +02001432 memcpy(urb->transfer_buffer + offset,
Ricard Wanderlof07a40c2f2015-10-19 08:52:49 +02001433 runtime->dma_area + subs->hwptr_done, bytes);
1434 }
1435 subs->hwptr_done += bytes;
Ricard Wanderlof4c4e4392015-10-19 08:52:50 +02001436 if (subs->hwptr_done >= runtime->buffer_size * stride)
1437 subs->hwptr_done -= runtime->buffer_size * stride;
Ricard Wanderlof07a40c2f2015-10-19 08:52:49 +02001438}
1439
Ricard Wanderlofe0570442015-10-19 08:52:53 +02001440static unsigned int copy_to_urb_quirk(struct snd_usb_substream *subs,
1441 struct urb *urb, int stride,
1442 unsigned int bytes)
1443{
1444 __le32 packet_length;
1445 int i;
1446
1447 /* Put __le32 length descriptor at start of each packet. */
1448 for (i = 0; i < urb->number_of_packets; i++) {
1449 unsigned int length = urb->iso_frame_desc[i].length;
1450 unsigned int offset = urb->iso_frame_desc[i].offset;
1451
1452 packet_length = cpu_to_le32(length);
1453 offset += i * sizeof(packet_length);
1454 urb->iso_frame_desc[i].offset = offset;
1455 urb->iso_frame_desc[i].length += sizeof(packet_length);
1456 memcpy(urb->transfer_buffer + offset,
1457 &packet_length, sizeof(packet_length));
1458 copy_to_urb(subs, urb, offset + sizeof(packet_length),
1459 stride, length);
1460 }
1461 /* Adjust transfer size accordingly. */
1462 bytes += urb->number_of_packets * sizeof(packet_length);
1463 return bytes;
1464}
1465
Daniel Mackedcd3632012-04-12 13:51:12 +02001466static void prepare_playback_urb(struct snd_usb_substream *subs,
1467 struct urb *urb)
1468{
1469 struct snd_pcm_runtime *runtime = subs->pcm_substream->runtime;
Daniel Mack245baf92012-08-30 18:52:30 +02001470 struct snd_usb_endpoint *ep = subs->data_endpoint;
Daniel Mackedcd3632012-04-12 13:51:12 +02001471 struct snd_urb_ctx *ctx = urb->context;
1472 unsigned int counts, frames, bytes;
1473 int i, stride, period_elapsed = 0;
1474 unsigned long flags;
1475
1476 stride = runtime->frame_bits >> 3;
1477
1478 frames = 0;
1479 urb->number_of_packets = 0;
1480 spin_lock_irqsave(&subs->lock, flags);
Alan Stern976b6c02013-09-24 15:51:58 -04001481 subs->frame_limit += ep->max_urb_frames;
Daniel Mackedcd3632012-04-12 13:51:12 +02001482 for (i = 0; i < ctx->packets; i++) {
Daniel Mack245baf92012-08-30 18:52:30 +02001483 if (ctx->packet_size[i])
1484 counts = ctx->packet_size[i];
1485 else
1486 counts = snd_usb_endpoint_next_packet_size(ep);
1487
Daniel Mackedcd3632012-04-12 13:51:12 +02001488 /* set up descriptor */
Daniel Mack8a2a74d2013-04-17 00:01:37 +08001489 urb->iso_frame_desc[i].offset = frames * ep->stride;
1490 urb->iso_frame_desc[i].length = counts * ep->stride;
Daniel Mackedcd3632012-04-12 13:51:12 +02001491 frames += counts;
1492 urb->number_of_packets++;
1493 subs->transfer_done += counts;
1494 if (subs->transfer_done >= runtime->period_size) {
1495 subs->transfer_done -= runtime->period_size;
Alan Stern976b6c02013-09-24 15:51:58 -04001496 subs->frame_limit = 0;
Daniel Mackedcd3632012-04-12 13:51:12 +02001497 period_elapsed = 1;
1498 if (subs->fmt_type == UAC_FORMAT_TYPE_II) {
1499 if (subs->transfer_done > 0) {
1500 /* FIXME: fill-max mode is not
1501 * supported yet */
1502 frames -= subs->transfer_done;
1503 counts -= subs->transfer_done;
1504 urb->iso_frame_desc[i].length =
Daniel Mack8a2a74d2013-04-17 00:01:37 +08001505 counts * ep->stride;
Daniel Mackedcd3632012-04-12 13:51:12 +02001506 subs->transfer_done = 0;
1507 }
1508 i++;
1509 if (i < ctx->packets) {
1510 /* add a transfer delimiter */
1511 urb->iso_frame_desc[i].offset =
Daniel Mack8a2a74d2013-04-17 00:01:37 +08001512 frames * ep->stride;
Daniel Mackedcd3632012-04-12 13:51:12 +02001513 urb->iso_frame_desc[i].length = 0;
1514 urb->number_of_packets++;
1515 }
1516 break;
1517 }
1518 }
Alan Stern976b6c02013-09-24 15:51:58 -04001519 /* finish at the period boundary or after enough frames */
1520 if ((period_elapsed ||
1521 subs->transfer_done >= subs->frame_limit) &&
1522 !snd_usb_endpoint_implicit_feedback_sink(ep))
Daniel Mackedcd3632012-04-12 13:51:12 +02001523 break;
1524 }
Daniel Mack8a2a74d2013-04-17 00:01:37 +08001525 bytes = frames * ep->stride;
Daniel Mackd24f5062013-04-17 00:01:38 +08001526
1527 if (unlikely(subs->pcm_format == SNDRV_PCM_FORMAT_DSD_U16_LE &&
1528 subs->cur_audiofmt->dsd_dop)) {
1529 fill_playback_urb_dsd_dop(subs, urb, bytes);
Daniel Mack44dcbbb2013-04-17 00:01:39 +08001530 } else if (unlikely(subs->pcm_format == SNDRV_PCM_FORMAT_DSD_U8 &&
1531 subs->cur_audiofmt->dsd_bitrev)) {
1532 /* bit-reverse the bytes */
1533 u8 *buf = urb->transfer_buffer;
1534 for (i = 0; i < bytes; i++) {
1535 int idx = (subs->hwptr_done + i)
1536 % (runtime->buffer_size * stride);
1537 buf[i] = bitrev8(runtime->dma_area[idx]);
1538 }
1539
1540 subs->hwptr_done += bytes;
Ricard Wanderlof4c4e4392015-10-19 08:52:50 +02001541 if (subs->hwptr_done >= runtime->buffer_size * stride)
1542 subs->hwptr_done -= runtime->buffer_size * stride;
Daniel Mackedcd3632012-04-12 13:51:12 +02001543 } else {
Daniel Mackd24f5062013-04-17 00:01:38 +08001544 /* usual PCM */
Ricard Wanderlofe0570442015-10-19 08:52:53 +02001545 if (!subs->tx_length_quirk)
1546 copy_to_urb(subs, urb, 0, stride, bytes);
1547 else
1548 bytes = copy_to_urb_quirk(subs, urb, stride, bytes);
1549 /* bytes is now amount of outgoing data */
Daniel Mackedcd3632012-04-12 13:51:12 +02001550 }
Daniel Mackd24f5062013-04-17 00:01:38 +08001551
Daniel Mackfbcfbf52012-08-30 18:52:29 +02001552 /* update delay with exact number of samples queued */
1553 runtime->delay = subs->last_delay;
Daniel Mackedcd3632012-04-12 13:51:12 +02001554 runtime->delay += frames;
Daniel Mackfbcfbf52012-08-30 18:52:29 +02001555 subs->last_delay = runtime->delay;
1556
1557 /* realign last_frame_number */
1558 subs->last_frame_number = usb_get_current_frame_number(subs->dev);
1559 subs->last_frame_number &= 0xFF; /* keep 8 LSBs */
1560
Pierre-Louis Bossartea33d352015-02-06 15:55:53 -06001561 if (subs->trigger_tstamp_pending_update) {
1562 /* this is the first actual URB submitted,
1563 * update trigger timestamp to reflect actual start time
1564 */
1565 snd_pcm_gettime(runtime, &runtime->trigger_tstamp);
1566 subs->trigger_tstamp_pending_update = false;
1567 }
1568
Daniel Mackedcd3632012-04-12 13:51:12 +02001569 spin_unlock_irqrestore(&subs->lock, flags);
1570 urb->transfer_buffer_length = bytes;
1571 if (period_elapsed)
1572 snd_pcm_period_elapsed(subs->pcm_substream);
1573}
1574
1575/*
1576 * process after playback data complete
1577 * - decrease the delay count again
1578 */
1579static void retire_playback_urb(struct snd_usb_substream *subs,
1580 struct urb *urb)
1581{
1582 unsigned long flags;
1583 struct snd_pcm_runtime *runtime = subs->pcm_substream->runtime;
Daniel Mack8a2a74d2013-04-17 00:01:37 +08001584 struct snd_usb_endpoint *ep = subs->data_endpoint;
1585 int processed = urb->transfer_buffer_length / ep->stride;
Daniel Mackfbcfbf52012-08-30 18:52:29 +02001586 int est_delay;
Daniel Mackedcd3632012-04-12 13:51:12 +02001587
Takashi Iwai1213a202012-09-06 14:58:00 +02001588 /* ignore the delay accounting when procssed=0 is given, i.e.
1589 * silent payloads are procssed before handling the actual data
1590 */
1591 if (!processed)
1592 return;
1593
Daniel Mackedcd3632012-04-12 13:51:12 +02001594 spin_lock_irqsave(&subs->lock, flags);
Takashi Iwai48779a02012-11-23 16:00:37 +01001595 if (!subs->last_delay)
1596 goto out; /* short path */
1597
Daniel Mackfbcfbf52012-08-30 18:52:29 +02001598 est_delay = snd_usb_pcm_delay(subs, runtime->rate);
1599 /* update delay with exact number of samples played */
1600 if (processed > subs->last_delay)
1601 subs->last_delay = 0;
Daniel Mackedcd3632012-04-12 13:51:12 +02001602 else
Daniel Mackfbcfbf52012-08-30 18:52:29 +02001603 subs->last_delay -= processed;
1604 runtime->delay = subs->last_delay;
1605
1606 /*
1607 * Report when delay estimate is off by more than 2ms.
1608 * The error should be lower than 2ms since the estimate relies
1609 * on two reads of a counter updated every ms.
1610 */
Sander Eikelenboomb7a77232014-05-02 15:09:27 +02001611 if (abs(est_delay - subs->last_delay) * 1000 > runtime->rate * 2)
1612 dev_dbg_ratelimited(&subs->dev->dev,
Takashi Iwai0ba41d92014-02-26 13:02:17 +01001613 "delay: estimated %d, actual %d\n",
Daniel Mackfbcfbf52012-08-30 18:52:29 +02001614 est_delay, subs->last_delay);
1615
Takashi Iwai48779a02012-11-23 16:00:37 +01001616 if (!subs->running) {
1617 /* update last_frame_number for delay counting here since
1618 * prepare_playback_urb won't be called during pause
1619 */
1620 subs->last_frame_number =
1621 usb_get_current_frame_number(subs->dev) & 0xff;
1622 }
1623
1624 out:
Daniel Mackedcd3632012-04-12 13:51:12 +02001625 spin_unlock_irqrestore(&subs->lock, flags);
Daniel Macke5779992010-03-04 19:46:13 +01001626}
1627
1628static int snd_usb_playback_open(struct snd_pcm_substream *substream)
1629{
1630 return snd_usb_pcm_open(substream, SNDRV_PCM_STREAM_PLAYBACK);
1631}
1632
1633static int snd_usb_playback_close(struct snd_pcm_substream *substream)
1634{
1635 return snd_usb_pcm_close(substream, SNDRV_PCM_STREAM_PLAYBACK);
1636}
1637
1638static int snd_usb_capture_open(struct snd_pcm_substream *substream)
1639{
1640 return snd_usb_pcm_open(substream, SNDRV_PCM_STREAM_CAPTURE);
1641}
1642
1643static int snd_usb_capture_close(struct snd_pcm_substream *substream)
1644{
1645 return snd_usb_pcm_close(substream, SNDRV_PCM_STREAM_CAPTURE);
1646}
1647
Daniel Mackedcd3632012-04-12 13:51:12 +02001648static int snd_usb_substream_playback_trigger(struct snd_pcm_substream *substream,
1649 int cmd)
1650{
1651 struct snd_usb_substream *subs = substream->runtime->private_data;
1652
1653 switch (cmd) {
1654 case SNDRV_PCM_TRIGGER_START:
Pierre-Louis Bossartea33d352015-02-06 15:55:53 -06001655 subs->trigger_tstamp_pending_update = true;
Daniel Mackedcd3632012-04-12 13:51:12 +02001656 case SNDRV_PCM_TRIGGER_PAUSE_RELEASE:
1657 subs->data_endpoint->prepare_data_urb = prepare_playback_urb;
1658 subs->data_endpoint->retire_data_urb = retire_playback_urb;
Daniel Mack97f8d3b2012-05-21 12:47:36 +02001659 subs->running = 1;
Daniel Mackedcd3632012-04-12 13:51:12 +02001660 return 0;
1661 case SNDRV_PCM_TRIGGER_STOP:
Takashi Iwaia9bb3622012-11-20 18:32:06 +01001662 stop_endpoints(subs, false);
Daniel Mack97f8d3b2012-05-21 12:47:36 +02001663 subs->running = 0;
Daniel Mackedcd3632012-04-12 13:51:12 +02001664 return 0;
1665 case SNDRV_PCM_TRIGGER_PAUSE_PUSH:
1666 subs->data_endpoint->prepare_data_urb = NULL;
Takashi Iwai48779a02012-11-23 16:00:37 +01001667 /* keep retire_data_urb for delay calculation */
1668 subs->data_endpoint->retire_data_urb = retire_playback_urb;
Daniel Mack97f8d3b2012-05-21 12:47:36 +02001669 subs->running = 0;
Daniel Mackedcd3632012-04-12 13:51:12 +02001670 return 0;
1671 }
1672
1673 return -EINVAL;
1674}
1675
Daniel Mackafe25962012-06-16 16:58:04 +02001676static int snd_usb_substream_capture_trigger(struct snd_pcm_substream *substream,
1677 int cmd)
Daniel Mackedcd3632012-04-12 13:51:12 +02001678{
1679 int err;
1680 struct snd_usb_substream *subs = substream->runtime->private_data;
1681
1682 switch (cmd) {
1683 case SNDRV_PCM_TRIGGER_START:
Ioan-Adrian Ratiube4e3ae2017-01-05 00:37:46 +02001684 err = start_endpoints(subs);
Daniel Mackedcd3632012-04-12 13:51:12 +02001685 if (err < 0)
1686 return err;
1687
1688 subs->data_endpoint->retire_data_urb = retire_capture_urb;
Daniel Mack97f8d3b2012-05-21 12:47:36 +02001689 subs->running = 1;
Daniel Mackedcd3632012-04-12 13:51:12 +02001690 return 0;
1691 case SNDRV_PCM_TRIGGER_STOP:
Takashi Iwaia9bb3622012-11-20 18:32:06 +01001692 stop_endpoints(subs, false);
Daniel Mack97f8d3b2012-05-21 12:47:36 +02001693 subs->running = 0;
Daniel Mackedcd3632012-04-12 13:51:12 +02001694 return 0;
1695 case SNDRV_PCM_TRIGGER_PAUSE_PUSH:
1696 subs->data_endpoint->retire_data_urb = NULL;
Daniel Mack97f8d3b2012-05-21 12:47:36 +02001697 subs->running = 0;
Daniel Mackedcd3632012-04-12 13:51:12 +02001698 return 0;
1699 case SNDRV_PCM_TRIGGER_PAUSE_RELEASE:
1700 subs->data_endpoint->retire_data_urb = retire_capture_urb;
Daniel Mack97f8d3b2012-05-21 12:47:36 +02001701 subs->running = 1;
Daniel Mackedcd3632012-04-12 13:51:12 +02001702 return 0;
1703 }
1704
1705 return -EINVAL;
1706}
1707
Daniel Macke5779992010-03-04 19:46:13 +01001708static struct snd_pcm_ops snd_usb_playback_ops = {
1709 .open = snd_usb_playback_open,
1710 .close = snd_usb_playback_close,
1711 .ioctl = snd_pcm_lib_ioctl,
1712 .hw_params = snd_usb_hw_params,
1713 .hw_free = snd_usb_hw_free,
1714 .prepare = snd_usb_pcm_prepare,
1715 .trigger = snd_usb_substream_playback_trigger,
1716 .pointer = snd_usb_pcm_pointer,
1717 .page = snd_pcm_lib_get_vmalloc_page,
1718 .mmap = snd_pcm_lib_mmap_vmalloc,
1719};
1720
1721static struct snd_pcm_ops snd_usb_capture_ops = {
1722 .open = snd_usb_capture_open,
1723 .close = snd_usb_capture_close,
1724 .ioctl = snd_pcm_lib_ioctl,
1725 .hw_params = snd_usb_hw_params,
1726 .hw_free = snd_usb_hw_free,
1727 .prepare = snd_usb_pcm_prepare,
1728 .trigger = snd_usb_substream_capture_trigger,
1729 .pointer = snd_usb_pcm_pointer,
1730 .page = snd_pcm_lib_get_vmalloc_page,
1731 .mmap = snd_pcm_lib_mmap_vmalloc,
1732};
1733
1734void snd_usb_set_pcm_ops(struct snd_pcm *pcm, int stream)
1735{
1736 snd_pcm_set_ops(pcm, stream,
1737 stream == SNDRV_PCM_STREAM_PLAYBACK ?
1738 &snd_usb_playback_ops : &snd_usb_capture_ops);
1739}