blob: ad39b3cca2476b778e4be5d1227b5255587043a3 [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 Ratiu1d0f9532017-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 Ratiu1d0f9532017-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 Ratiu1d0f9532017-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
Eldad Zacka60945f2013-08-03 10:50:18 +0200316static int set_sync_ep_implicit_fb_quirk(struct snd_usb_substream *subs,
317 struct usb_device *dev,
318 struct usb_interface_descriptor *altsd,
319 unsigned int attr)
Daniel Macke5779992010-03-04 19:46:13 +0100320{
Eldad Zacka60945f2013-08-03 10:50:18 +0200321 struct usb_host_interface *alts;
Daniel Macke5779992010-03-04 19:46:13 +0100322 struct usb_interface *iface;
Eldad Zacka60945f2013-08-03 10:50:18 +0200323 unsigned int ep;
Alberto Aguirre103e9622018-04-18 09:35:34 -0500324 unsigned int ifnum;
Daniel Mackc75a8a72012-04-12 13:51:14 +0200325
Eldad Zack914273c2013-08-03 10:50:21 +0200326 /* Implicit feedback sync EPs consumers are always playback EPs */
327 if (subs->direction != SNDRV_PCM_STREAM_PLAYBACK)
328 return 0;
329
Daniel Mackc75a8a72012-04-12 13:51:14 +0200330 switch (subs->stream->chip->usb_id) {
Eldad Zackca10a7e2012-11-28 23:55:41 +0100331 case USB_ID(0x0763, 0x2030): /* M-Audio Fast Track C400 */
Matt Gruskine9a25e02013-02-09 12:56:35 -0500332 case USB_ID(0x0763, 0x2031): /* M-Audio Fast Track C600 */
Eldad Zack914273c2013-08-03 10:50:21 +0200333 ep = 0x81;
Alberto Aguirre103e9622018-04-18 09:35:34 -0500334 ifnum = 3;
335 goto add_sync_ep_from_ifnum;
Daniel Mackc75a8a72012-04-12 13:51:14 +0200336 case USB_ID(0x0763, 0x2080): /* M-Audio FastTrack Ultra */
337 case USB_ID(0x0763, 0x2081):
Eldad Zack914273c2013-08-03 10:50:21 +0200338 ep = 0x81;
Alberto Aguirre103e9622018-04-18 09:35:34 -0500339 ifnum = 2;
340 goto add_sync_ep_from_ifnum;
341 case USB_ID(0x2466, 0x8003): /* Fractal Audio Axe-Fx II */
Alberto Aguirre17f08b02016-12-08 00:36:48 -0600342 ep = 0x86;
Alberto Aguirre103e9622018-04-18 09:35:34 -0500343 ifnum = 2;
344 goto add_sync_ep_from_ifnum;
Alberto Aguirre91a85612018-04-18 09:35:35 -0500345 case USB_ID(0x2466, 0x8010): /* Fractal Audio Axe-Fx III */
346 ep = 0x81;
347 ifnum = 2;
348 goto add_sync_ep_from_ifnum;
Alberto Aguirre103e9622018-04-18 09:35:34 -0500349 case USB_ID(0x1397, 0x0002): /* Behringer UFX1204 */
Lassi Ylikojola5e35dc02018-02-09 16:51:36 +0200350 ep = 0x81;
Alberto Aguirre103e9622018-04-18 09:35:34 -0500351 ifnum = 1;
352 goto add_sync_ep_from_ifnum;
Daniel Mackc75a8a72012-04-12 13:51:14 +0200353 }
Alberto Aguirre103e9622018-04-18 09:35:34 -0500354
Eldad Zack914273c2013-08-03 10:50:21 +0200355 if (attr == USB_ENDPOINT_SYNC_ASYNC &&
Clemens Ladischba7c2be2013-02-03 22:31:20 +0100356 altsd->bInterfaceClass == USB_CLASS_VENDOR_SPEC &&
357 altsd->bInterfaceProtocol == 2 &&
358 altsd->bNumEndpoints == 1 &&
359 USB_ID_VENDOR(subs->stream->chip->usb_id) == 0x0582 /* Roland */ &&
360 search_roland_implicit_fb(dev, altsd->bInterfaceNumber + 1,
361 altsd->bAlternateSetting,
362 &alts, &ep) >= 0) {
Clemens Ladischba7c2be2013-02-03 22:31:20 +0100363 goto add_sync_ep;
364 }
Daniel Mackedcd3632012-04-12 13:51:12 +0200365
Eldad Zacka60945f2013-08-03 10:50:18 +0200366 /* No quirk */
367 return 0;
368
Alberto Aguirre103e9622018-04-18 09:35:34 -0500369add_sync_ep_from_ifnum:
370 iface = usb_ifnum_to_if(dev, ifnum);
371
372 if (!iface || iface->num_altsetting == 0)
373 return -EINVAL;
374
375 alts = &iface->altsetting[1];
376
Eldad Zacka60945f2013-08-03 10:50:18 +0200377add_sync_ep:
378 subs->sync_endpoint = snd_usb_add_endpoint(subs->stream->chip,
379 alts, ep, !subs->direction,
Eldad Zack88abb8e2013-08-03 10:51:14 +0200380 SND_USB_ENDPOINT_TYPE_DATA);
Eldad Zacka60945f2013-08-03 10:50:18 +0200381 if (!subs->sync_endpoint)
382 return -EINVAL;
383
384 subs->data_endpoint->sync_master = subs->sync_endpoint;
385
386 return 0;
387}
388
389static int set_sync_endpoint(struct snd_usb_substream *subs,
390 struct audioformat *fmt,
391 struct usb_device *dev,
392 struct usb_host_interface *alts,
393 struct usb_interface_descriptor *altsd)
394{
395 int is_playback = subs->direction == SNDRV_PCM_STREAM_PLAYBACK;
396 unsigned int ep, attr;
Eldad Zack95fec882013-08-03 10:50:20 +0200397 bool implicit_fb;
Eldad Zacka60945f2013-08-03 10:50:18 +0200398 int err;
399
400 /* we need a sync pipe in async OUT or adaptive IN mode */
401 /* check the number of EP, since some devices have broken
402 * descriptors which fool us. if it has only one EP,
403 * assume it as adaptive-out or sync-in.
404 */
405 attr = fmt->ep_attr & USB_ENDPOINT_SYNCTYPE;
406
Pierre-Louis Bossart63018442015-08-14 17:19:42 -0500407 if ((is_playback && (attr != USB_ENDPOINT_SYNC_ASYNC)) ||
408 (!is_playback && (attr != USB_ENDPOINT_SYNC_ADAPTIVE))) {
409
410 /*
411 * In these modes the notion of sync_endpoint is irrelevant.
412 * Reset pointers to avoid using stale data from previously
413 * used settings, e.g. when configuration and endpoints were
414 * changed
415 */
416
417 subs->sync_endpoint = NULL;
418 subs->data_endpoint->sync_master = NULL;
419 }
420
Eldad Zacka60945f2013-08-03 10:50:18 +0200421 err = set_sync_ep_implicit_fb_quirk(subs, dev, altsd, attr);
422 if (err < 0)
423 return err;
424
Eldad Zackf34d0652013-08-03 10:50:19 +0200425 if (altsd->bNumEndpoints < 2)
426 return 0;
Daniel Mackc75a8a72012-04-12 13:51:14 +0200427
Pierre-Louis Bossart395ae542015-08-14 17:19:43 -0500428 if ((is_playback && (attr == USB_ENDPOINT_SYNC_SYNC ||
429 attr == USB_ENDPOINT_SYNC_ADAPTIVE)) ||
Eldad Zackf34d0652013-08-03 10:50:19 +0200430 (!is_playback && attr != USB_ENDPOINT_SYNC_ADAPTIVE))
431 return 0;
Daniel Mackc75a8a72012-04-12 13:51:14 +0200432
Pierre-Louis Bossart395ae542015-08-14 17:19:43 -0500433 /*
434 * In case of illegal SYNC_NONE for OUT endpoint, we keep going to see
435 * if we don't find a sync endpoint, as on M-Audio Transit. In case of
436 * error fall back to SYNC mode and don't create sync endpoint
437 */
438
Eldad Zackf34d0652013-08-03 10:50:19 +0200439 /* check sync-pipe endpoint */
440 /* ... and check descriptor size before accessing bSynchAddress
441 because there is a version of the SB Audigy 2 NX firmware lacking
442 the audio fields in the endpoint descriptors */
443 if ((get_endpoint(alts, 1)->bmAttributes & USB_ENDPOINT_XFERTYPE_MASK) != USB_ENDPOINT_XFER_ISOC ||
444 (get_endpoint(alts, 1)->bLength >= USB_DT_ENDPOINT_AUDIO_SIZE &&
Eldad Zack95fec882013-08-03 10:50:20 +0200445 get_endpoint(alts, 1)->bSynchAddress != 0)) {
Takashi Iwai0ba41d92014-02-26 13:02:17 +0100446 dev_err(&dev->dev,
447 "%d:%d : invalid sync pipe. bmAttributes %02x, bLength %d, bSynchAddress %02x\n",
448 fmt->iface, fmt->altsetting,
Eldad Zackf34d0652013-08-03 10:50:19 +0200449 get_endpoint(alts, 1)->bmAttributes,
450 get_endpoint(alts, 1)->bLength,
451 get_endpoint(alts, 1)->bSynchAddress);
Pierre-Louis Bossart395ae542015-08-14 17:19:43 -0500452 if (is_playback && attr == USB_ENDPOINT_SYNC_NONE)
453 return 0;
Eldad Zackf34d0652013-08-03 10:50:19 +0200454 return -EINVAL;
Daniel Mackedcd3632012-04-12 13:51:12 +0200455 }
Eldad Zackf34d0652013-08-03 10:50:19 +0200456 ep = get_endpoint(alts, 1)->bEndpointAddress;
Eldad Zack95fec882013-08-03 10:50:20 +0200457 if (get_endpoint(alts, 0)->bLength >= USB_DT_ENDPOINT_AUDIO_SIZE &&
Eldad Zackf34d0652013-08-03 10:50:19 +0200458 ((is_playback && ep != (unsigned int)(get_endpoint(alts, 0)->bSynchAddress | USB_DIR_IN)) ||
459 (!is_playback && ep != (unsigned int)(get_endpoint(alts, 0)->bSynchAddress & ~USB_DIR_IN)))) {
Takashi Iwai0ba41d92014-02-26 13:02:17 +0100460 dev_err(&dev->dev,
461 "%d:%d : invalid sync pipe. is_playback %d, ep %02x, bSynchAddress %02x\n",
462 fmt->iface, fmt->altsetting,
Eldad Zackf34d0652013-08-03 10:50:19 +0200463 is_playback, ep, get_endpoint(alts, 0)->bSynchAddress);
Pierre-Louis Bossart395ae542015-08-14 17:19:43 -0500464 if (is_playback && attr == USB_ENDPOINT_SYNC_NONE)
465 return 0;
Eldad Zackf34d0652013-08-03 10:50:19 +0200466 return -EINVAL;
467 }
468
469 implicit_fb = (get_endpoint(alts, 1)->bmAttributes & USB_ENDPOINT_USAGE_MASK)
470 == USB_ENDPOINT_USAGE_IMPLICIT_FB;
471
472 subs->sync_endpoint = snd_usb_add_endpoint(subs->stream->chip,
473 alts, ep, !subs->direction,
474 implicit_fb ?
475 SND_USB_ENDPOINT_TYPE_DATA :
476 SND_USB_ENDPOINT_TYPE_SYNC);
Pierre-Louis Bossart395ae542015-08-14 17:19:43 -0500477 if (!subs->sync_endpoint) {
478 if (is_playback && attr == USB_ENDPOINT_SYNC_NONE)
479 return 0;
Eldad Zackf34d0652013-08-03 10:50:19 +0200480 return -EINVAL;
Pierre-Louis Bossart395ae542015-08-14 17:19:43 -0500481 }
Eldad Zackf34d0652013-08-03 10:50:19 +0200482
483 subs->data_endpoint->sync_master = subs->sync_endpoint;
Daniel Macke5779992010-03-04 19:46:13 +0100484
Eldad Zack71bb64c2013-08-03 10:50:17 +0200485 return 0;
486}
487
488/*
489 * find a matching format and set up the interface
490 */
491static int set_format(struct snd_usb_substream *subs, struct audioformat *fmt)
492{
493 struct usb_device *dev = subs->dev;
494 struct usb_host_interface *alts;
495 struct usb_interface_descriptor *altsd;
496 struct usb_interface *iface;
497 int err;
498
499 iface = usb_ifnum_to_if(dev, fmt->iface);
500 if (WARN_ON(!iface))
501 return -EINVAL;
502 alts = &iface->altsetting[fmt->altset_idx];
503 altsd = get_iface_desc(alts);
504 if (WARN_ON(altsd->bAlternateSetting != fmt->altsetting))
505 return -EINVAL;
506
507 if (fmt == subs->cur_audiofmt)
508 return 0;
509
510 /* close the old interface */
511 if (subs->interface >= 0 && subs->interface != fmt->iface) {
512 err = usb_set_interface(subs->dev, subs->interface, 0);
513 if (err < 0) {
Takashi Iwai0ba41d92014-02-26 13:02:17 +0100514 dev_err(&dev->dev,
515 "%d:%d: return to setting 0 failed (%d)\n",
516 fmt->iface, fmt->altsetting, err);
Eldad Zack71bb64c2013-08-03 10:50:17 +0200517 return -EIO;
518 }
519 subs->interface = -1;
520 subs->altset_idx = 0;
521 }
522
523 /* set interface */
524 if (subs->interface != fmt->iface ||
525 subs->altset_idx != fmt->altset_idx) {
Jurgen Kramer6874daa2014-11-28 17:32:54 +0100526
527 err = snd_usb_select_mode_quirk(subs, fmt);
528 if (err < 0)
529 return -EIO;
530
Eldad Zack71bb64c2013-08-03 10:50:17 +0200531 err = usb_set_interface(dev, fmt->iface, fmt->altsetting);
532 if (err < 0) {
Takashi Iwai0ba41d92014-02-26 13:02:17 +0100533 dev_err(&dev->dev,
534 "%d:%d: usb_set_interface failed (%d)\n",
535 fmt->iface, fmt->altsetting, err);
Eldad Zack71bb64c2013-08-03 10:50:17 +0200536 return -EIO;
537 }
Takashi Iwai0ba41d92014-02-26 13:02:17 +0100538 dev_dbg(&dev->dev, "setting usb interface %d:%d\n",
539 fmt->iface, fmt->altsetting);
Eldad Zack71bb64c2013-08-03 10:50:17 +0200540 subs->interface = fmt->iface;
541 subs->altset_idx = fmt->altset_idx;
542
543 snd_usb_set_interface_quirk(dev);
544 }
545
546 subs->data_endpoint = snd_usb_add_endpoint(subs->stream->chip,
547 alts, fmt->endpoint, subs->direction,
548 SND_USB_ENDPOINT_TYPE_DATA);
549
550 if (!subs->data_endpoint)
551 return -EINVAL;
552
553 err = set_sync_endpoint(subs, fmt, dev, alts, altsd);
554 if (err < 0)
555 return err;
556
Eldad Zackd133f2c2013-08-03 10:50:16 +0200557 err = snd_usb_init_pitch(subs->stream->chip, fmt->iface, alts, fmt);
558 if (err < 0)
Daniel Macke5779992010-03-04 19:46:13 +0100559 return err;
560
561 subs->cur_audiofmt = fmt;
562
563 snd_usb_set_format_quirk(subs, fmt);
564
Daniel Macke5779992010-03-04 19:46:13 +0100565 return 0;
566}
567
568/*
Eldad Zack0d9741c2012-12-03 20:30:09 +0100569 * Return the score of matching two audioformats.
570 * Veto the audioformat if:
571 * - It has no channels for some reason.
572 * - Requested PCM format is not supported.
573 * - Requested sample rate is not supported.
574 */
Takashi Iwai0ba41d92014-02-26 13:02:17 +0100575static int match_endpoint_audioformats(struct snd_usb_substream *subs,
576 struct audioformat *fp,
577 struct audioformat *match, int rate,
578 snd_pcm_format_t pcm_format)
Eldad Zack0d9741c2012-12-03 20:30:09 +0100579{
580 int i;
581 int score = 0;
582
583 if (fp->channels < 1) {
Takashi Iwai0ba41d92014-02-26 13:02:17 +0100584 dev_dbg(&subs->dev->dev,
585 "%s: (fmt @%p) no channels\n", __func__, fp);
Eldad Zack0d9741c2012-12-03 20:30:09 +0100586 return 0;
587 }
588
Eldad Zack74c34ca2013-04-23 01:00:41 +0200589 if (!(fp->formats & pcm_format_to_bits(pcm_format))) {
Takashi Iwai0ba41d92014-02-26 13:02:17 +0100590 dev_dbg(&subs->dev->dev,
591 "%s: (fmt @%p) no match for format %d\n", __func__,
Eldad Zack0d9741c2012-12-03 20:30:09 +0100592 fp, pcm_format);
593 return 0;
594 }
595
596 for (i = 0; i < fp->nr_rates; i++) {
597 if (fp->rate_table[i] == rate) {
598 score++;
599 break;
600 }
601 }
602 if (!score) {
Takashi Iwai0ba41d92014-02-26 13:02:17 +0100603 dev_dbg(&subs->dev->dev,
604 "%s: (fmt @%p) no match for rate %d\n", __func__,
Eldad Zack0d9741c2012-12-03 20:30:09 +0100605 fp, rate);
606 return 0;
607 }
608
609 if (fp->channels == match->channels)
610 score++;
611
Takashi Iwai0ba41d92014-02-26 13:02:17 +0100612 dev_dbg(&subs->dev->dev,
613 "%s: (fmt @%p) score %d\n", __func__, fp, score);
Eldad Zack0d9741c2012-12-03 20:30:09 +0100614
615 return score;
616}
617
618/*
619 * Configure the sync ep using the rate and pcm format of the data ep.
620 */
621static int configure_sync_endpoint(struct snd_usb_substream *subs)
622{
623 int ret;
624 struct audioformat *fp;
625 struct audioformat *sync_fp = NULL;
626 int cur_score = 0;
627 int sync_period_bytes = subs->period_bytes;
628 struct snd_usb_substream *sync_subs =
629 &subs->stream->substream[subs->direction ^ 1];
630
Takashi Iwai31be5422013-01-10 14:06:38 +0100631 if (subs->sync_endpoint->type != SND_USB_ENDPOINT_TYPE_DATA ||
632 !subs->stream)
633 return snd_usb_endpoint_set_params(subs->sync_endpoint,
634 subs->pcm_format,
635 subs->channels,
636 subs->period_bytes,
Alan Stern976b6c02013-09-24 15:51:58 -0400637 0, 0,
Takashi Iwai31be5422013-01-10 14:06:38 +0100638 subs->cur_rate,
639 subs->cur_audiofmt,
640 NULL);
641
Eldad Zack0d9741c2012-12-03 20:30:09 +0100642 /* Try to find the best matching audioformat. */
643 list_for_each_entry(fp, &sync_subs->fmt_list, list) {
Takashi Iwai0ba41d92014-02-26 13:02:17 +0100644 int score = match_endpoint_audioformats(subs,
645 fp, subs->cur_audiofmt,
Eldad Zack0d9741c2012-12-03 20:30:09 +0100646 subs->cur_rate, subs->pcm_format);
647
648 if (score > cur_score) {
649 sync_fp = fp;
650 cur_score = score;
651 }
652 }
653
654 if (unlikely(sync_fp == NULL)) {
Takashi Iwai0ba41d92014-02-26 13:02:17 +0100655 dev_err(&subs->dev->dev,
656 "%s: no valid audioformat for sync ep %x found\n",
Eldad Zack0d9741c2012-12-03 20:30:09 +0100657 __func__, sync_subs->ep_num);
658 return -EINVAL;
659 }
660
661 /*
662 * Recalculate the period bytes if channel number differ between
663 * data and sync ep audioformat.
664 */
665 if (sync_fp->channels != subs->channels) {
666 sync_period_bytes = (subs->period_bytes / subs->channels) *
667 sync_fp->channels;
Takashi Iwai0ba41d92014-02-26 13:02:17 +0100668 dev_dbg(&subs->dev->dev,
669 "%s: adjusted sync ep period bytes (%d -> %d)\n",
Eldad Zack0d9741c2012-12-03 20:30:09 +0100670 __func__, subs->period_bytes, sync_period_bytes);
671 }
672
673 ret = snd_usb_endpoint_set_params(subs->sync_endpoint,
674 subs->pcm_format,
675 sync_fp->channels,
676 sync_period_bytes,
Alan Stern976b6c02013-09-24 15:51:58 -0400677 0, 0,
Eldad Zack0d9741c2012-12-03 20:30:09 +0100678 subs->cur_rate,
679 sync_fp,
680 NULL);
681
682 return ret;
683}
684
685/*
Dylan Reid61a70952012-09-18 09:49:48 -0700686 * configure endpoint params
687 *
688 * called during initial setup and upon resume
689 */
690static int configure_endpoint(struct snd_usb_substream *subs)
691{
692 int ret;
693
Dylan Reid61a70952012-09-18 09:49:48 -0700694 /* format changed */
Takashi Iwaib0db6062012-11-21 08:35:42 +0100695 stop_endpoints(subs, true);
Dylan Reid61a70952012-09-18 09:49:48 -0700696 ret = snd_usb_endpoint_set_params(subs->data_endpoint,
697 subs->pcm_format,
698 subs->channels,
699 subs->period_bytes,
Alan Stern976b6c02013-09-24 15:51:58 -0400700 subs->period_frames,
701 subs->buffer_periods,
Dylan Reid61a70952012-09-18 09:49:48 -0700702 subs->cur_rate,
703 subs->cur_audiofmt,
704 subs->sync_endpoint);
705 if (ret < 0)
Takashi Iwai978520b2012-10-12 15:12:55 +0200706 return ret;
Dylan Reid61a70952012-09-18 09:49:48 -0700707
708 if (subs->sync_endpoint)
Eldad Zack0d9741c2012-12-03 20:30:09 +0100709 ret = configure_sync_endpoint(subs);
710
Dylan Reid61a70952012-09-18 09:49:48 -0700711 return ret;
712}
713
714/*
Daniel Macke5779992010-03-04 19:46:13 +0100715 * hw_params callback
716 *
717 * allocate a buffer and set the given audio format.
718 *
719 * so far we use a physically linear buffer although packetize transfer
720 * doesn't need a continuous area.
721 * if sg buffer is supported on the later version of alsa, we'll follow
722 * that.
723 */
724static int snd_usb_hw_params(struct snd_pcm_substream *substream,
725 struct snd_pcm_hw_params *hw_params)
726{
727 struct snd_usb_substream *subs = substream->runtime->private_data;
728 struct audioformat *fmt;
Dylan Reid61a70952012-09-18 09:49:48 -0700729 int ret;
Daniel Macke5779992010-03-04 19:46:13 +0100730
731 ret = snd_pcm_lib_alloc_vmalloc_buffer(substream,
732 params_buffer_bytes(hw_params));
733 if (ret < 0)
Mauro Carvalho Chehabc89178f2016-03-31 09:57:29 -0300734 return ret;
Daniel Macke5779992010-03-04 19:46:13 +0100735
Dylan Reid61a70952012-09-18 09:49:48 -0700736 subs->pcm_format = params_format(hw_params);
737 subs->period_bytes = params_period_bytes(hw_params);
Alan Stern976b6c02013-09-24 15:51:58 -0400738 subs->period_frames = params_period_size(hw_params);
739 subs->buffer_periods = params_periods(hw_params);
Dylan Reid61a70952012-09-18 09:49:48 -0700740 subs->channels = params_channels(hw_params);
741 subs->cur_rate = params_rate(hw_params);
742
743 fmt = find_format(subs);
Daniel Macke5779992010-03-04 19:46:13 +0100744 if (!fmt) {
Takashi Iwai0ba41d92014-02-26 13:02:17 +0100745 dev_dbg(&subs->dev->dev,
746 "cannot set format: format = %#x, rate = %d, channels = %d\n",
Dylan Reid61a70952012-09-18 09:49:48 -0700747 subs->pcm_format, subs->cur_rate, subs->channels);
Mauro Carvalho Chehabc89178f2016-03-31 09:57:29 -0300748 return -EINVAL;
Daniel Macke5779992010-03-04 19:46:13 +0100749 }
750
Takashi Iwai47ab1542015-08-25 16:09:00 +0200751 ret = snd_usb_lock_shutdown(subs->stream->chip);
752 if (ret < 0)
Mauro Carvalho Chehabc89178f2016-03-31 09:57:29 -0300753 return ret;
Takashi Iwai47ab1542015-08-25 16:09:00 +0200754 ret = set_format(subs, fmt);
755 snd_usb_unlock_shutdown(subs->stream->chip);
Takashi Iwai978520b2012-10-12 15:12:55 +0200756 if (ret < 0)
Mauro Carvalho Chehabc89178f2016-03-31 09:57:29 -0300757 return ret;
Daniel Macke5779992010-03-04 19:46:13 +0100758
Dylan Reid61a70952012-09-18 09:49:48 -0700759 subs->interface = fmt->iface;
760 subs->altset_idx = fmt->altset_idx;
Takashi Iwai384dc0852012-09-18 14:49:31 +0200761 subs->need_setup_ep = true;
Daniel Macke5779992010-03-04 19:46:13 +0100762
Dylan Reid61a70952012-09-18 09:49:48 -0700763 return 0;
Daniel Macke5779992010-03-04 19:46:13 +0100764}
765
766/*
767 * hw_free callback
768 *
769 * reset the audio format and release the buffer
770 */
771static int snd_usb_hw_free(struct snd_pcm_substream *substream)
772{
773 struct snd_usb_substream *subs = substream->runtime->private_data;
774
775 subs->cur_audiofmt = NULL;
776 subs->cur_rate = 0;
777 subs->period_bytes = 0;
Takashi Iwai47ab1542015-08-25 16:09:00 +0200778 if (!snd_usb_lock_shutdown(subs->stream->chip)) {
Takashi Iwaia9bb3622012-11-20 18:32:06 +0100779 stop_endpoints(subs, true);
Eldad Zack26de5d02013-10-06 22:31:07 +0200780 snd_usb_endpoint_deactivate(subs->sync_endpoint);
781 snd_usb_endpoint_deactivate(subs->data_endpoint);
Takashi Iwai47ab1542015-08-25 16:09:00 +0200782 snd_usb_unlock_shutdown(subs->stream->chip);
Takashi Iwai978520b2012-10-12 15:12:55 +0200783 }
Daniel Macke5779992010-03-04 19:46:13 +0100784 return snd_pcm_lib_free_vmalloc_buffer(substream);
785}
786
787/*
788 * prepare callback
789 *
790 * only a few subtle things...
791 */
792static int snd_usb_pcm_prepare(struct snd_pcm_substream *substream)
793{
794 struct snd_pcm_runtime *runtime = substream->runtime;
795 struct snd_usb_substream *subs = runtime->private_data;
Dylan Reid61a70952012-09-18 09:49:48 -0700796 struct usb_host_interface *alts;
797 struct usb_interface *iface;
798 int ret;
Daniel Macke5779992010-03-04 19:46:13 +0100799
800 if (! subs->cur_audiofmt) {
Takashi Iwai0ba41d92014-02-26 13:02:17 +0100801 dev_err(&subs->dev->dev, "no format is specified!\n");
Daniel Macke5779992010-03-04 19:46:13 +0100802 return -ENXIO;
803 }
804
Takashi Iwai47ab1542015-08-25 16:09:00 +0200805 ret = snd_usb_lock_shutdown(subs->stream->chip);
806 if (ret < 0)
807 return ret;
Takashi Iwai978520b2012-10-12 15:12:55 +0200808 if (snd_BUG_ON(!subs->data_endpoint)) {
809 ret = -EIO;
810 goto unlock;
811 }
Daniel Mackedcd3632012-04-12 13:51:12 +0200812
Takashi Iwaif58161b2012-11-08 08:52:45 +0100813 snd_usb_endpoint_sync_pending_stop(subs->sync_endpoint);
814 snd_usb_endpoint_sync_pending_stop(subs->data_endpoint);
815
Dylan Reid61a70952012-09-18 09:49:48 -0700816 ret = set_format(subs, subs->cur_audiofmt);
817 if (ret < 0)
Takashi Iwai978520b2012-10-12 15:12:55 +0200818 goto unlock;
Dylan Reid61a70952012-09-18 09:49:48 -0700819
Takashi Iwai384dc0852012-09-18 14:49:31 +0200820 if (subs->need_setup_ep) {
Daniel Girnus1e2e3fe2016-12-06 14:46:15 +0900821
822 iface = usb_ifnum_to_if(subs->dev, subs->cur_audiofmt->iface);
823 alts = &iface->altsetting[subs->cur_audiofmt->altset_idx];
824 ret = snd_usb_init_sample_rate(subs->stream->chip,
825 subs->cur_audiofmt->iface,
826 alts,
827 subs->cur_audiofmt,
828 subs->cur_rate);
829 if (ret < 0)
830 goto unlock;
831
Takashi Iwai384dc0852012-09-18 14:49:31 +0200832 ret = configure_endpoint(subs);
833 if (ret < 0)
Takashi Iwai978520b2012-10-12 15:12:55 +0200834 goto unlock;
Takashi Iwai384dc0852012-09-18 14:49:31 +0200835 subs->need_setup_ep = false;
836 }
Dylan Reid61a70952012-09-18 09:49:48 -0700837
Daniel Macke5779992010-03-04 19:46:13 +0100838 /* some unit conversions in runtime */
Daniel Mackedcd3632012-04-12 13:51:12 +0200839 subs->data_endpoint->maxframesize =
840 bytes_to_frames(runtime, subs->data_endpoint->maxpacksize);
841 subs->data_endpoint->curframesize =
842 bytes_to_frames(runtime, subs->data_endpoint->curpacksize);
Daniel Macke5779992010-03-04 19:46:13 +0100843
844 /* reset the pointer */
845 subs->hwptr_done = 0;
846 subs->transfer_done = 0;
Pierre-Louis Bossart294c4fb2011-09-06 19:15:34 -0500847 subs->last_delay = 0;
848 subs->last_frame_number = 0;
Daniel Macke5779992010-03-04 19:46:13 +0100849 runtime->delay = 0;
850
Daniel Mackedcd3632012-04-12 13:51:12 +0200851 /* for playback, submit the URBs now; otherwise, the first hwptr_done
852 * updates for all URBs would happen at the same time when starting */
853 if (subs->direction == SNDRV_PCM_STREAM_PLAYBACK)
Ioan-Adrian Ratiu1d0f9532017-01-05 00:37:46 +0200854 ret = start_endpoints(subs);
Daniel Mackedcd3632012-04-12 13:51:12 +0200855
Takashi Iwai978520b2012-10-12 15:12:55 +0200856 unlock:
Takashi Iwai47ab1542015-08-25 16:09:00 +0200857 snd_usb_unlock_shutdown(subs->stream->chip);
Takashi Iwai978520b2012-10-12 15:12:55 +0200858 return ret;
Daniel Macke5779992010-03-04 19:46:13 +0100859}
860
Bhumika Goyalaaffbf72017-08-17 14:45:59 +0530861static const struct snd_pcm_hardware snd_usb_hardware =
Daniel Macke5779992010-03-04 19:46:13 +0100862{
863 .info = SNDRV_PCM_INFO_MMAP |
864 SNDRV_PCM_INFO_MMAP_VALID |
865 SNDRV_PCM_INFO_BATCH |
866 SNDRV_PCM_INFO_INTERLEAVED |
867 SNDRV_PCM_INFO_BLOCK_TRANSFER |
868 SNDRV_PCM_INFO_PAUSE,
869 .buffer_bytes_max = 1024 * 1024,
870 .period_bytes_min = 64,
871 .period_bytes_max = 512 * 1024,
872 .periods_min = 2,
873 .periods_max = 1024,
874};
875
876static int hw_check_valid_format(struct snd_usb_substream *subs,
877 struct snd_pcm_hw_params *params,
878 struct audioformat *fp)
879{
880 struct snd_interval *it = hw_param_interval(params, SNDRV_PCM_HW_PARAM_RATE);
881 struct snd_interval *ct = hw_param_interval(params, SNDRV_PCM_HW_PARAM_CHANNELS);
882 struct snd_mask *fmts = hw_param_mask(params, SNDRV_PCM_HW_PARAM_FORMAT);
883 struct snd_interval *pt = hw_param_interval(params, SNDRV_PCM_HW_PARAM_PERIOD_TIME);
Clemens Ladisch015eb0b2010-03-04 19:46:15 +0100884 struct snd_mask check_fmts;
Daniel Macke5779992010-03-04 19:46:13 +0100885 unsigned int ptime;
886
887 /* check the format */
Clemens Ladisch015eb0b2010-03-04 19:46:15 +0100888 snd_mask_none(&check_fmts);
889 check_fmts.bits[0] = (u32)fp->formats;
890 check_fmts.bits[1] = (u32)(fp->formats >> 32);
891 snd_mask_intersect(&check_fmts, fmts);
892 if (snd_mask_empty(&check_fmts)) {
Daniel Macke5779992010-03-04 19:46:13 +0100893 hwc_debug(" > check: no supported format %d\n", fp->format);
894 return 0;
895 }
896 /* check the channels */
897 if (fp->channels < ct->min || fp->channels > ct->max) {
898 hwc_debug(" > check: no valid channels %d (%d/%d)\n", fp->channels, ct->min, ct->max);
899 return 0;
900 }
901 /* check the rate is within the range */
902 if (fp->rate_min > it->max || (fp->rate_min == it->max && it->openmax)) {
903 hwc_debug(" > check: rate_min %d > max %d\n", fp->rate_min, it->max);
904 return 0;
905 }
906 if (fp->rate_max < it->min || (fp->rate_max == it->min && it->openmin)) {
907 hwc_debug(" > check: rate_max %d < min %d\n", fp->rate_max, it->min);
908 return 0;
909 }
910 /* check whether the period time is >= the data packet interval */
Takashi Iwai978520b2012-10-12 15:12:55 +0200911 if (subs->speed != USB_SPEED_FULL) {
Daniel Macke5779992010-03-04 19:46:13 +0100912 ptime = 125 * (1 << fp->datainterval);
913 if (ptime > pt->max || (ptime == pt->max && pt->openmax)) {
914 hwc_debug(" > check: ptime %u > max %u\n", ptime, pt->max);
915 return 0;
916 }
917 }
918 return 1;
919}
920
921static int hw_rule_rate(struct snd_pcm_hw_params *params,
922 struct snd_pcm_hw_rule *rule)
923{
924 struct snd_usb_substream *subs = rule->private;
Eldad Zack88766f02013-04-03 23:18:49 +0200925 struct audioformat *fp;
Daniel Macke5779992010-03-04 19:46:13 +0100926 struct snd_interval *it = hw_param_interval(params, SNDRV_PCM_HW_PARAM_RATE);
927 unsigned int rmin, rmax;
928 int changed;
929
930 hwc_debug("hw_rule_rate: (%d,%d)\n", it->min, it->max);
931 changed = 0;
932 rmin = rmax = 0;
Eldad Zack88766f02013-04-03 23:18:49 +0200933 list_for_each_entry(fp, &subs->fmt_list, list) {
Daniel Macke5779992010-03-04 19:46:13 +0100934 if (!hw_check_valid_format(subs, params, fp))
935 continue;
936 if (changed++) {
937 if (rmin > fp->rate_min)
938 rmin = fp->rate_min;
939 if (rmax < fp->rate_max)
940 rmax = fp->rate_max;
941 } else {
942 rmin = fp->rate_min;
943 rmax = fp->rate_max;
944 }
945 }
946
947 if (!changed) {
948 hwc_debug(" --> get empty\n");
949 it->empty = 1;
950 return -EINVAL;
951 }
952
953 changed = 0;
954 if (it->min < rmin) {
955 it->min = rmin;
956 it->openmin = 0;
957 changed = 1;
958 }
959 if (it->max > rmax) {
960 it->max = rmax;
961 it->openmax = 0;
962 changed = 1;
963 }
964 if (snd_interval_checkempty(it)) {
965 it->empty = 1;
966 return -EINVAL;
967 }
968 hwc_debug(" --> (%d, %d) (changed = %d)\n", it->min, it->max, changed);
969 return changed;
970}
971
972
973static int hw_rule_channels(struct snd_pcm_hw_params *params,
974 struct snd_pcm_hw_rule *rule)
975{
976 struct snd_usb_substream *subs = rule->private;
Eldad Zack88766f02013-04-03 23:18:49 +0200977 struct audioformat *fp;
Daniel Macke5779992010-03-04 19:46:13 +0100978 struct snd_interval *it = hw_param_interval(params, SNDRV_PCM_HW_PARAM_CHANNELS);
979 unsigned int rmin, rmax;
980 int changed;
981
982 hwc_debug("hw_rule_channels: (%d,%d)\n", it->min, it->max);
983 changed = 0;
984 rmin = rmax = 0;
Eldad Zack88766f02013-04-03 23:18:49 +0200985 list_for_each_entry(fp, &subs->fmt_list, list) {
Daniel Macke5779992010-03-04 19:46:13 +0100986 if (!hw_check_valid_format(subs, params, fp))
987 continue;
988 if (changed++) {
989 if (rmin > fp->channels)
990 rmin = fp->channels;
991 if (rmax < fp->channels)
992 rmax = fp->channels;
993 } else {
994 rmin = fp->channels;
995 rmax = fp->channels;
996 }
997 }
998
999 if (!changed) {
1000 hwc_debug(" --> get empty\n");
1001 it->empty = 1;
1002 return -EINVAL;
1003 }
1004
1005 changed = 0;
1006 if (it->min < rmin) {
1007 it->min = rmin;
1008 it->openmin = 0;
1009 changed = 1;
1010 }
1011 if (it->max > rmax) {
1012 it->max = rmax;
1013 it->openmax = 0;
1014 changed = 1;
1015 }
1016 if (snd_interval_checkempty(it)) {
1017 it->empty = 1;
1018 return -EINVAL;
1019 }
1020 hwc_debug(" --> (%d, %d) (changed = %d)\n", it->min, it->max, changed);
1021 return changed;
1022}
1023
1024static int hw_rule_format(struct snd_pcm_hw_params *params,
1025 struct snd_pcm_hw_rule *rule)
1026{
1027 struct snd_usb_substream *subs = rule->private;
Eldad Zack88766f02013-04-03 23:18:49 +02001028 struct audioformat *fp;
Daniel Macke5779992010-03-04 19:46:13 +01001029 struct snd_mask *fmt = hw_param_mask(params, SNDRV_PCM_HW_PARAM_FORMAT);
1030 u64 fbits;
1031 u32 oldbits[2];
1032 int changed;
1033
1034 hwc_debug("hw_rule_format: %x:%x\n", fmt->bits[0], fmt->bits[1]);
1035 fbits = 0;
Eldad Zack88766f02013-04-03 23:18:49 +02001036 list_for_each_entry(fp, &subs->fmt_list, list) {
Daniel Macke5779992010-03-04 19:46:13 +01001037 if (!hw_check_valid_format(subs, params, fp))
1038 continue;
Clemens Ladisch015eb0b2010-03-04 19:46:15 +01001039 fbits |= fp->formats;
Daniel Macke5779992010-03-04 19:46:13 +01001040 }
1041
1042 oldbits[0] = fmt->bits[0];
1043 oldbits[1] = fmt->bits[1];
1044 fmt->bits[0] &= (u32)fbits;
1045 fmt->bits[1] &= (u32)(fbits >> 32);
1046 if (!fmt->bits[0] && !fmt->bits[1]) {
1047 hwc_debug(" --> get empty\n");
1048 return -EINVAL;
1049 }
1050 changed = (oldbits[0] != fmt->bits[0] || oldbits[1] != fmt->bits[1]);
1051 hwc_debug(" --> %x:%x (changed = %d)\n", fmt->bits[0], fmt->bits[1], changed);
1052 return changed;
1053}
1054
1055static int hw_rule_period_time(struct snd_pcm_hw_params *params,
1056 struct snd_pcm_hw_rule *rule)
1057{
1058 struct snd_usb_substream *subs = rule->private;
1059 struct audioformat *fp;
1060 struct snd_interval *it;
1061 unsigned char min_datainterval;
1062 unsigned int pmin;
1063 int changed;
1064
1065 it = hw_param_interval(params, SNDRV_PCM_HW_PARAM_PERIOD_TIME);
1066 hwc_debug("hw_rule_period_time: (%u,%u)\n", it->min, it->max);
1067 min_datainterval = 0xff;
1068 list_for_each_entry(fp, &subs->fmt_list, list) {
1069 if (!hw_check_valid_format(subs, params, fp))
1070 continue;
1071 min_datainterval = min(min_datainterval, fp->datainterval);
1072 }
1073 if (min_datainterval == 0xff) {
Uwe Kleine-Königa7ce2e02010-07-12 17:15:44 +02001074 hwc_debug(" --> get empty\n");
Daniel Macke5779992010-03-04 19:46:13 +01001075 it->empty = 1;
1076 return -EINVAL;
1077 }
1078 pmin = 125 * (1 << min_datainterval);
1079 changed = 0;
1080 if (it->min < pmin) {
1081 it->min = pmin;
1082 it->openmin = 0;
1083 changed = 1;
1084 }
1085 if (snd_interval_checkempty(it)) {
1086 it->empty = 1;
1087 return -EINVAL;
1088 }
1089 hwc_debug(" --> (%u,%u) (changed = %d)\n", it->min, it->max, changed);
1090 return changed;
1091}
1092
1093/*
1094 * If the device supports unusual bit rates, does the request meet these?
1095 */
1096static int snd_usb_pcm_check_knot(struct snd_pcm_runtime *runtime,
1097 struct snd_usb_substream *subs)
1098{
1099 struct audioformat *fp;
Takashi Iwai0717d0f2012-03-15 16:14:38 +01001100 int *rate_list;
Daniel Macke5779992010-03-04 19:46:13 +01001101 int count = 0, needs_knot = 0;
1102 int err;
1103
Clemens Ladisch5cd5d7c2012-05-18 18:00:43 +02001104 kfree(subs->rate_list.list);
1105 subs->rate_list.list = NULL;
1106
Daniel Macke5779992010-03-04 19:46:13 +01001107 list_for_each_entry(fp, &subs->fmt_list, list) {
1108 if (fp->rates & SNDRV_PCM_RATE_CONTINUOUS)
1109 return 0;
1110 count += fp->nr_rates;
1111 if (fp->rates & SNDRV_PCM_RATE_KNOT)
1112 needs_knot = 1;
1113 }
1114 if (!needs_knot)
1115 return 0;
1116
Takashi Iwai0717d0f2012-03-15 16:14:38 +01001117 subs->rate_list.list = rate_list =
1118 kmalloc(sizeof(int) * count, GFP_KERNEL);
Jesper Juhl8a8d56b2010-10-29 20:40:23 +02001119 if (!subs->rate_list.list)
1120 return -ENOMEM;
1121 subs->rate_list.count = count;
Daniel Macke5779992010-03-04 19:46:13 +01001122 subs->rate_list.mask = 0;
1123 count = 0;
1124 list_for_each_entry(fp, &subs->fmt_list, list) {
1125 int i;
1126 for (i = 0; i < fp->nr_rates; i++)
Takashi Iwai0717d0f2012-03-15 16:14:38 +01001127 rate_list[count++] = fp->rate_table[i];
Daniel Macke5779992010-03-04 19:46:13 +01001128 }
1129 err = snd_pcm_hw_constraint_list(runtime, 0, SNDRV_PCM_HW_PARAM_RATE,
1130 &subs->rate_list);
1131 if (err < 0)
1132 return err;
1133
1134 return 0;
1135}
1136
1137
1138/*
1139 * set up the runtime hardware information.
1140 */
1141
1142static int setup_hw_info(struct snd_pcm_runtime *runtime, struct snd_usb_substream *subs)
1143{
Eldad Zack88766f02013-04-03 23:18:49 +02001144 struct audioformat *fp;
Daniel Macke5779992010-03-04 19:46:13 +01001145 unsigned int pt, ptmin;
1146 int param_period_time_if_needed;
1147 int err;
1148
1149 runtime->hw.formats = subs->formats;
1150
1151 runtime->hw.rate_min = 0x7fffffff;
1152 runtime->hw.rate_max = 0;
1153 runtime->hw.channels_min = 256;
1154 runtime->hw.channels_max = 0;
1155 runtime->hw.rates = 0;
1156 ptmin = UINT_MAX;
1157 /* check min/max rates and channels */
Eldad Zack88766f02013-04-03 23:18:49 +02001158 list_for_each_entry(fp, &subs->fmt_list, list) {
Daniel Macke5779992010-03-04 19:46:13 +01001159 runtime->hw.rates |= fp->rates;
1160 if (runtime->hw.rate_min > fp->rate_min)
1161 runtime->hw.rate_min = fp->rate_min;
1162 if (runtime->hw.rate_max < fp->rate_max)
1163 runtime->hw.rate_max = fp->rate_max;
1164 if (runtime->hw.channels_min > fp->channels)
1165 runtime->hw.channels_min = fp->channels;
1166 if (runtime->hw.channels_max < fp->channels)
1167 runtime->hw.channels_max = fp->channels;
1168 if (fp->fmt_type == UAC_FORMAT_TYPE_II && fp->frame_size > 0) {
1169 /* FIXME: there might be more than one audio formats... */
1170 runtime->hw.period_bytes_min = runtime->hw.period_bytes_max =
1171 fp->frame_size;
1172 }
1173 pt = 125 * (1 << fp->datainterval);
1174 ptmin = min(ptmin, pt);
1175 }
Oliver Neukum88a85162011-03-11 14:51:12 +01001176 err = snd_usb_autoresume(subs->stream->chip);
1177 if (err < 0)
1178 return err;
Daniel Macke5779992010-03-04 19:46:13 +01001179
1180 param_period_time_if_needed = SNDRV_PCM_HW_PARAM_PERIOD_TIME;
Takashi Iwai978520b2012-10-12 15:12:55 +02001181 if (subs->speed == USB_SPEED_FULL)
Daniel Macke5779992010-03-04 19:46:13 +01001182 /* full speed devices have fixed data packet interval */
1183 ptmin = 1000;
1184 if (ptmin == 1000)
1185 /* if period time doesn't go below 1 ms, no rules needed */
1186 param_period_time_if_needed = -1;
1187 snd_pcm_hw_constraint_minmax(runtime, SNDRV_PCM_HW_PARAM_PERIOD_TIME,
1188 ptmin, UINT_MAX);
1189
1190 if ((err = snd_pcm_hw_rule_add(runtime, 0, SNDRV_PCM_HW_PARAM_RATE,
1191 hw_rule_rate, subs,
1192 SNDRV_PCM_HW_PARAM_FORMAT,
1193 SNDRV_PCM_HW_PARAM_CHANNELS,
1194 param_period_time_if_needed,
1195 -1)) < 0)
Oliver Neukum88a85162011-03-11 14:51:12 +01001196 goto rep_err;
Daniel Macke5779992010-03-04 19:46:13 +01001197 if ((err = snd_pcm_hw_rule_add(runtime, 0, SNDRV_PCM_HW_PARAM_CHANNELS,
1198 hw_rule_channels, subs,
1199 SNDRV_PCM_HW_PARAM_FORMAT,
1200 SNDRV_PCM_HW_PARAM_RATE,
1201 param_period_time_if_needed,
1202 -1)) < 0)
Oliver Neukum88a85162011-03-11 14:51:12 +01001203 goto rep_err;
Daniel Macke5779992010-03-04 19:46:13 +01001204 if ((err = snd_pcm_hw_rule_add(runtime, 0, SNDRV_PCM_HW_PARAM_FORMAT,
1205 hw_rule_format, subs,
1206 SNDRV_PCM_HW_PARAM_RATE,
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 (param_period_time_if_needed >= 0) {
1212 err = snd_pcm_hw_rule_add(runtime, 0,
1213 SNDRV_PCM_HW_PARAM_PERIOD_TIME,
1214 hw_rule_period_time, subs,
1215 SNDRV_PCM_HW_PARAM_FORMAT,
1216 SNDRV_PCM_HW_PARAM_CHANNELS,
1217 SNDRV_PCM_HW_PARAM_RATE,
1218 -1);
1219 if (err < 0)
Oliver Neukum88a85162011-03-11 14:51:12 +01001220 goto rep_err;
Daniel Macke5779992010-03-04 19:46:13 +01001221 }
1222 if ((err = snd_usb_pcm_check_knot(runtime, subs)) < 0)
Oliver Neukum88a85162011-03-11 14:51:12 +01001223 goto rep_err;
Daniel Macke5779992010-03-04 19:46:13 +01001224 return 0;
Oliver Neukum88a85162011-03-11 14:51:12 +01001225
1226rep_err:
1227 snd_usb_autosuspend(subs->stream->chip);
1228 return err;
Daniel Macke5779992010-03-04 19:46:13 +01001229}
1230
1231static int snd_usb_pcm_open(struct snd_pcm_substream *substream, int direction)
1232{
1233 struct snd_usb_stream *as = snd_pcm_substream_chip(substream);
1234 struct snd_pcm_runtime *runtime = substream->runtime;
1235 struct snd_usb_substream *subs = &as->substream[direction];
1236
1237 subs->interface = -1;
Clemens Ladische11b4e02010-03-04 19:46:14 +01001238 subs->altset_idx = 0;
Daniel Macke5779992010-03-04 19:46:13 +01001239 runtime->hw = snd_usb_hardware;
1240 runtime->private_data = subs;
1241 subs->pcm_substream = substream;
Oliver Neukum88a85162011-03-11 14:51:12 +01001242 /* runtime PM is also done there */
Daniel Mackd24f5062013-04-17 00:01:38 +08001243
1244 /* initialize DSD/DOP context */
1245 subs->dsd_dop.byte_idx = 0;
1246 subs->dsd_dop.channel = 0;
1247 subs->dsd_dop.marker = 1;
1248
Mauro Carvalho Chehabc89178f2016-03-31 09:57:29 -03001249 return setup_hw_info(runtime, subs);
Daniel Macke5779992010-03-04 19:46:13 +01001250}
1251
1252static int snd_usb_pcm_close(struct snd_pcm_substream *substream, int direction)
1253{
1254 struct snd_usb_stream *as = snd_pcm_substream_chip(substream);
1255 struct snd_usb_substream *subs = &as->substream[direction];
1256
Takashi Iwaib0db6062012-11-21 08:35:42 +01001257 stop_endpoints(subs, true);
Daniel Mack68e67f42012-07-12 13:08:40 +02001258
Takashi Iwai47ab1542015-08-25 16:09:00 +02001259 if (subs->interface >= 0 &&
1260 !snd_usb_lock_shutdown(subs->stream->chip)) {
Daniel Mack68e67f42012-07-12 13:08:40 +02001261 usb_set_interface(subs->dev, subs->interface, 0);
1262 subs->interface = -1;
Takashi Iwai47ab1542015-08-25 16:09:00 +02001263 snd_usb_unlock_shutdown(subs->stream->chip);
Daniel Mack68e67f42012-07-12 13:08:40 +02001264 }
1265
Daniel Macke5779992010-03-04 19:46:13 +01001266 subs->pcm_substream = NULL;
Oliver Neukum88a85162011-03-11 14:51:12 +01001267 snd_usb_autosuspend(subs->stream->chip);
Daniel Mackedcd3632012-04-12 13:51:12 +02001268
Daniel Mack68e67f42012-07-12 13:08:40 +02001269 return 0;
Daniel Mackedcd3632012-04-12 13:51:12 +02001270}
1271
1272/* Since a URB can handle only a single linear buffer, we must use double
1273 * buffering when the data to be transferred overflows the buffer boundary.
1274 * To avoid inconsistencies when updating hwptr_done, we use double buffering
1275 * for all URBs.
1276 */
1277static void retire_capture_urb(struct snd_usb_substream *subs,
1278 struct urb *urb)
1279{
1280 struct snd_pcm_runtime *runtime = subs->pcm_substream->runtime;
1281 unsigned int stride, frames, bytes, oldptr;
1282 int i, period_elapsed = 0;
1283 unsigned long flags;
1284 unsigned char *cp;
Pierre-Louis Bossarte4cc6152012-12-19 11:39:05 -06001285 int current_frame_number;
1286
1287 /* read frame number here, update pointer in critical section */
1288 current_frame_number = usb_get_current_frame_number(subs->dev);
Daniel Mackedcd3632012-04-12 13:51:12 +02001289
1290 stride = runtime->frame_bits >> 3;
1291
1292 for (i = 0; i < urb->number_of_packets; i++) {
Calvin Owens1539d4f2013-04-12 22:33:59 -05001293 cp = (unsigned char *)urb->transfer_buffer + urb->iso_frame_desc[i].offset + subs->pkt_offset_adj;
Daniel Mackedcd3632012-04-12 13:51:12 +02001294 if (urb->iso_frame_desc[i].status && printk_ratelimit()) {
Takashi Iwai0ba41d92014-02-26 13:02:17 +01001295 dev_dbg(&subs->dev->dev, "frame %d active: %d\n",
1296 i, urb->iso_frame_desc[i].status);
Daniel Mackedcd3632012-04-12 13:51:12 +02001297 // continue;
1298 }
1299 bytes = urb->iso_frame_desc[i].actual_length;
1300 frames = bytes / stride;
1301 if (!subs->txfr_quirk)
1302 bytes = frames * stride;
1303 if (bytes % (runtime->sample_bits >> 3) != 0) {
Daniel Mackedcd3632012-04-12 13:51:12 +02001304 int oldbytes = bytes;
Daniel Mackedcd3632012-04-12 13:51:12 +02001305 bytes = frames * stride;
Takashi Iwai0ba41d92014-02-26 13:02:17 +01001306 dev_warn(&subs->dev->dev,
1307 "Corrected urb data len. %d->%d\n",
Daniel Mackedcd3632012-04-12 13:51:12 +02001308 oldbytes, bytes);
1309 }
1310 /* update the current pointer */
1311 spin_lock_irqsave(&subs->lock, flags);
1312 oldptr = subs->hwptr_done;
1313 subs->hwptr_done += bytes;
1314 if (subs->hwptr_done >= runtime->buffer_size * stride)
1315 subs->hwptr_done -= runtime->buffer_size * stride;
1316 frames = (bytes + (oldptr % stride)) / stride;
1317 subs->transfer_done += frames;
1318 if (subs->transfer_done >= runtime->period_size) {
1319 subs->transfer_done -= runtime->period_size;
1320 period_elapsed = 1;
1321 }
Pierre-Louis Bossarte4cc6152012-12-19 11:39:05 -06001322 /* capture delay is by construction limited to one URB,
1323 * reset delays here
1324 */
1325 runtime->delay = subs->last_delay = 0;
1326
1327 /* realign last_frame_number */
1328 subs->last_frame_number = current_frame_number;
1329 subs->last_frame_number &= 0xFF; /* keep 8 LSBs */
1330
Daniel Mackedcd3632012-04-12 13:51:12 +02001331 spin_unlock_irqrestore(&subs->lock, flags);
1332 /* copy a data chunk */
1333 if (oldptr + bytes > runtime->buffer_size * stride) {
1334 unsigned int bytes1 =
1335 runtime->buffer_size * stride - oldptr;
1336 memcpy(runtime->dma_area + oldptr, cp, bytes1);
1337 memcpy(runtime->dma_area, cp + bytes1, bytes - bytes1);
1338 } else {
1339 memcpy(runtime->dma_area + oldptr, cp, bytes);
1340 }
1341 }
1342
1343 if (period_elapsed)
1344 snd_pcm_period_elapsed(subs->pcm_substream);
1345}
1346
Daniel Mackd24f5062013-04-17 00:01:38 +08001347static inline void fill_playback_urb_dsd_dop(struct snd_usb_substream *subs,
1348 struct urb *urb, unsigned int bytes)
1349{
1350 struct snd_pcm_runtime *runtime = subs->pcm_substream->runtime;
1351 unsigned int stride = runtime->frame_bits >> 3;
1352 unsigned int dst_idx = 0;
1353 unsigned int src_idx = subs->hwptr_done;
1354 unsigned int wrap = runtime->buffer_size * stride;
1355 u8 *dst = urb->transfer_buffer;
1356 u8 *src = runtime->dma_area;
1357 u8 marker[] = { 0x05, 0xfa };
1358
1359 /*
1360 * The DSP DOP format defines a way to transport DSD samples over
1361 * normal PCM data endpoints. It requires stuffing of marker bytes
1362 * (0x05 and 0xfa, alternating per sample frame), and then expects
1363 * 2 additional bytes of actual payload. The whole frame is stored
1364 * LSB.
1365 *
1366 * Hence, for a stereo transport, the buffer layout looks like this,
1367 * where L refers to left channel samples and R to right.
1368 *
1369 * L1 L2 0x05 R1 R2 0x05 L3 L4 0xfa R3 R4 0xfa
1370 * L5 L6 0x05 R5 R6 0x05 L7 L8 0xfa R7 R8 0xfa
1371 * .....
1372 *
1373 */
1374
1375 while (bytes--) {
1376 if (++subs->dsd_dop.byte_idx == 3) {
1377 /* frame boundary? */
1378 dst[dst_idx++] = marker[subs->dsd_dop.marker];
1379 src_idx += 2;
1380 subs->dsd_dop.byte_idx = 0;
1381
1382 if (++subs->dsd_dop.channel % runtime->channels == 0) {
1383 /* alternate the marker */
1384 subs->dsd_dop.marker++;
1385 subs->dsd_dop.marker %= ARRAY_SIZE(marker);
1386 subs->dsd_dop.channel = 0;
1387 }
1388 } else {
1389 /* stuff the DSD payload */
1390 int idx = (src_idx + subs->dsd_dop.byte_idx - 1) % wrap;
Daniel Mack44dcbbb2013-04-17 00:01:39 +08001391
1392 if (subs->cur_audiofmt->dsd_bitrev)
1393 dst[dst_idx++] = bitrev8(src[idx]);
1394 else
1395 dst[dst_idx++] = src[idx];
1396
Daniel Mackd24f5062013-04-17 00:01:38 +08001397 subs->hwptr_done++;
1398 }
1399 }
Ricard Wanderlof4c4e4392015-10-19 08:52:50 +02001400 if (subs->hwptr_done >= runtime->buffer_size * stride)
1401 subs->hwptr_done -= runtime->buffer_size * stride;
Daniel Mackd24f5062013-04-17 00:01:38 +08001402}
1403
Ricard Wanderlofb97a9362015-10-19 08:52:52 +02001404static void copy_to_urb(struct snd_usb_substream *subs, struct urb *urb,
1405 int offset, int stride, unsigned int bytes)
Ricard Wanderlof07a40c2f2015-10-19 08:52:49 +02001406{
1407 struct snd_pcm_runtime *runtime = subs->pcm_substream->runtime;
1408
1409 if (subs->hwptr_done + bytes > runtime->buffer_size * stride) {
1410 /* err, the transferred area goes over buffer boundary. */
1411 unsigned int bytes1 =
1412 runtime->buffer_size * stride - subs->hwptr_done;
Ricard Wanderlofb97a9362015-10-19 08:52:52 +02001413 memcpy(urb->transfer_buffer + offset,
Ricard Wanderlof07a40c2f2015-10-19 08:52:49 +02001414 runtime->dma_area + subs->hwptr_done, bytes1);
Ricard Wanderlofb97a9362015-10-19 08:52:52 +02001415 memcpy(urb->transfer_buffer + offset + bytes1,
Ricard Wanderlof07a40c2f2015-10-19 08:52:49 +02001416 runtime->dma_area, bytes - bytes1);
1417 } else {
Ricard Wanderlofb97a9362015-10-19 08:52:52 +02001418 memcpy(urb->transfer_buffer + offset,
Ricard Wanderlof07a40c2f2015-10-19 08:52:49 +02001419 runtime->dma_area + subs->hwptr_done, bytes);
1420 }
1421 subs->hwptr_done += bytes;
Ricard Wanderlof4c4e4392015-10-19 08:52:50 +02001422 if (subs->hwptr_done >= runtime->buffer_size * stride)
1423 subs->hwptr_done -= runtime->buffer_size * stride;
Ricard Wanderlof07a40c2f2015-10-19 08:52:49 +02001424}
1425
Ricard Wanderlofe0570442015-10-19 08:52:53 +02001426static unsigned int copy_to_urb_quirk(struct snd_usb_substream *subs,
1427 struct urb *urb, int stride,
1428 unsigned int bytes)
1429{
1430 __le32 packet_length;
1431 int i;
1432
1433 /* Put __le32 length descriptor at start of each packet. */
1434 for (i = 0; i < urb->number_of_packets; i++) {
1435 unsigned int length = urb->iso_frame_desc[i].length;
1436 unsigned int offset = urb->iso_frame_desc[i].offset;
1437
1438 packet_length = cpu_to_le32(length);
1439 offset += i * sizeof(packet_length);
1440 urb->iso_frame_desc[i].offset = offset;
1441 urb->iso_frame_desc[i].length += sizeof(packet_length);
1442 memcpy(urb->transfer_buffer + offset,
1443 &packet_length, sizeof(packet_length));
1444 copy_to_urb(subs, urb, offset + sizeof(packet_length),
1445 stride, length);
1446 }
1447 /* Adjust transfer size accordingly. */
1448 bytes += urb->number_of_packets * sizeof(packet_length);
1449 return bytes;
1450}
1451
Daniel Mackedcd3632012-04-12 13:51:12 +02001452static void prepare_playback_urb(struct snd_usb_substream *subs,
1453 struct urb *urb)
1454{
1455 struct snd_pcm_runtime *runtime = subs->pcm_substream->runtime;
Daniel Mack245baf92012-08-30 18:52:30 +02001456 struct snd_usb_endpoint *ep = subs->data_endpoint;
Daniel Mackedcd3632012-04-12 13:51:12 +02001457 struct snd_urb_ctx *ctx = urb->context;
1458 unsigned int counts, frames, bytes;
1459 int i, stride, period_elapsed = 0;
1460 unsigned long flags;
1461
1462 stride = runtime->frame_bits >> 3;
1463
1464 frames = 0;
1465 urb->number_of_packets = 0;
1466 spin_lock_irqsave(&subs->lock, flags);
Alan Stern976b6c02013-09-24 15:51:58 -04001467 subs->frame_limit += ep->max_urb_frames;
Daniel Mackedcd3632012-04-12 13:51:12 +02001468 for (i = 0; i < ctx->packets; i++) {
Daniel Mack245baf92012-08-30 18:52:30 +02001469 if (ctx->packet_size[i])
1470 counts = ctx->packet_size[i];
1471 else
1472 counts = snd_usb_endpoint_next_packet_size(ep);
1473
Daniel Mackedcd3632012-04-12 13:51:12 +02001474 /* set up descriptor */
Daniel Mack8a2a74d2013-04-17 00:01:37 +08001475 urb->iso_frame_desc[i].offset = frames * ep->stride;
1476 urb->iso_frame_desc[i].length = counts * ep->stride;
Daniel Mackedcd3632012-04-12 13:51:12 +02001477 frames += counts;
1478 urb->number_of_packets++;
1479 subs->transfer_done += counts;
1480 if (subs->transfer_done >= runtime->period_size) {
1481 subs->transfer_done -= runtime->period_size;
Alan Stern976b6c02013-09-24 15:51:58 -04001482 subs->frame_limit = 0;
Daniel Mackedcd3632012-04-12 13:51:12 +02001483 period_elapsed = 1;
1484 if (subs->fmt_type == UAC_FORMAT_TYPE_II) {
1485 if (subs->transfer_done > 0) {
1486 /* FIXME: fill-max mode is not
1487 * supported yet */
1488 frames -= subs->transfer_done;
1489 counts -= subs->transfer_done;
1490 urb->iso_frame_desc[i].length =
Daniel Mack8a2a74d2013-04-17 00:01:37 +08001491 counts * ep->stride;
Daniel Mackedcd3632012-04-12 13:51:12 +02001492 subs->transfer_done = 0;
1493 }
1494 i++;
1495 if (i < ctx->packets) {
1496 /* add a transfer delimiter */
1497 urb->iso_frame_desc[i].offset =
Daniel Mack8a2a74d2013-04-17 00:01:37 +08001498 frames * ep->stride;
Daniel Mackedcd3632012-04-12 13:51:12 +02001499 urb->iso_frame_desc[i].length = 0;
1500 urb->number_of_packets++;
1501 }
1502 break;
1503 }
1504 }
Alan Stern976b6c02013-09-24 15:51:58 -04001505 /* finish at the period boundary or after enough frames */
1506 if ((period_elapsed ||
1507 subs->transfer_done >= subs->frame_limit) &&
1508 !snd_usb_endpoint_implicit_feedback_sink(ep))
Daniel Mackedcd3632012-04-12 13:51:12 +02001509 break;
1510 }
Daniel Mack8a2a74d2013-04-17 00:01:37 +08001511 bytes = frames * ep->stride;
Daniel Mackd24f5062013-04-17 00:01:38 +08001512
1513 if (unlikely(subs->pcm_format == SNDRV_PCM_FORMAT_DSD_U16_LE &&
1514 subs->cur_audiofmt->dsd_dop)) {
1515 fill_playback_urb_dsd_dop(subs, urb, bytes);
Daniel Mack44dcbbb2013-04-17 00:01:39 +08001516 } else if (unlikely(subs->pcm_format == SNDRV_PCM_FORMAT_DSD_U8 &&
1517 subs->cur_audiofmt->dsd_bitrev)) {
1518 /* bit-reverse the bytes */
1519 u8 *buf = urb->transfer_buffer;
1520 for (i = 0; i < bytes; i++) {
1521 int idx = (subs->hwptr_done + i)
1522 % (runtime->buffer_size * stride);
1523 buf[i] = bitrev8(runtime->dma_area[idx]);
1524 }
1525
1526 subs->hwptr_done += bytes;
Ricard Wanderlof4c4e4392015-10-19 08:52:50 +02001527 if (subs->hwptr_done >= runtime->buffer_size * stride)
1528 subs->hwptr_done -= runtime->buffer_size * stride;
Daniel Mackedcd3632012-04-12 13:51:12 +02001529 } else {
Daniel Mackd24f5062013-04-17 00:01:38 +08001530 /* usual PCM */
Ricard Wanderlofe0570442015-10-19 08:52:53 +02001531 if (!subs->tx_length_quirk)
1532 copy_to_urb(subs, urb, 0, stride, bytes);
1533 else
1534 bytes = copy_to_urb_quirk(subs, urb, stride, bytes);
1535 /* bytes is now amount of outgoing data */
Daniel Mackedcd3632012-04-12 13:51:12 +02001536 }
Daniel Mackd24f5062013-04-17 00:01:38 +08001537
Daniel Mackfbcfbf52012-08-30 18:52:29 +02001538 /* update delay with exact number of samples queued */
1539 runtime->delay = subs->last_delay;
Daniel Mackedcd3632012-04-12 13:51:12 +02001540 runtime->delay += frames;
Daniel Mackfbcfbf52012-08-30 18:52:29 +02001541 subs->last_delay = runtime->delay;
1542
1543 /* realign last_frame_number */
1544 subs->last_frame_number = usb_get_current_frame_number(subs->dev);
1545 subs->last_frame_number &= 0xFF; /* keep 8 LSBs */
1546
Pierre-Louis Bossartea33d352015-02-06 15:55:53 -06001547 if (subs->trigger_tstamp_pending_update) {
1548 /* this is the first actual URB submitted,
1549 * update trigger timestamp to reflect actual start time
1550 */
1551 snd_pcm_gettime(runtime, &runtime->trigger_tstamp);
1552 subs->trigger_tstamp_pending_update = false;
1553 }
1554
Daniel Mackedcd3632012-04-12 13:51:12 +02001555 spin_unlock_irqrestore(&subs->lock, flags);
1556 urb->transfer_buffer_length = bytes;
1557 if (period_elapsed)
1558 snd_pcm_period_elapsed(subs->pcm_substream);
1559}
1560
1561/*
1562 * process after playback data complete
1563 * - decrease the delay count again
1564 */
1565static void retire_playback_urb(struct snd_usb_substream *subs,
1566 struct urb *urb)
1567{
1568 unsigned long flags;
1569 struct snd_pcm_runtime *runtime = subs->pcm_substream->runtime;
Daniel Mack8a2a74d2013-04-17 00:01:37 +08001570 struct snd_usb_endpoint *ep = subs->data_endpoint;
1571 int processed = urb->transfer_buffer_length / ep->stride;
Daniel Mackfbcfbf52012-08-30 18:52:29 +02001572 int est_delay;
Daniel Mackedcd3632012-04-12 13:51:12 +02001573
Takashi Iwai1213a202012-09-06 14:58:00 +02001574 /* ignore the delay accounting when procssed=0 is given, i.e.
1575 * silent payloads are procssed before handling the actual data
1576 */
1577 if (!processed)
1578 return;
1579
Daniel Mackedcd3632012-04-12 13:51:12 +02001580 spin_lock_irqsave(&subs->lock, flags);
Takashi Iwai48779a02012-11-23 16:00:37 +01001581 if (!subs->last_delay)
1582 goto out; /* short path */
1583
Daniel Mackfbcfbf52012-08-30 18:52:29 +02001584 est_delay = snd_usb_pcm_delay(subs, runtime->rate);
1585 /* update delay with exact number of samples played */
1586 if (processed > subs->last_delay)
1587 subs->last_delay = 0;
Daniel Mackedcd3632012-04-12 13:51:12 +02001588 else
Daniel Mackfbcfbf52012-08-30 18:52:29 +02001589 subs->last_delay -= processed;
1590 runtime->delay = subs->last_delay;
1591
1592 /*
1593 * Report when delay estimate is off by more than 2ms.
1594 * The error should be lower than 2ms since the estimate relies
1595 * on two reads of a counter updated every ms.
1596 */
Sander Eikelenboomb7a77232014-05-02 15:09:27 +02001597 if (abs(est_delay - subs->last_delay) * 1000 > runtime->rate * 2)
1598 dev_dbg_ratelimited(&subs->dev->dev,
Takashi Iwai0ba41d92014-02-26 13:02:17 +01001599 "delay: estimated %d, actual %d\n",
Daniel Mackfbcfbf52012-08-30 18:52:29 +02001600 est_delay, subs->last_delay);
1601
Takashi Iwai48779a02012-11-23 16:00:37 +01001602 if (!subs->running) {
1603 /* update last_frame_number for delay counting here since
1604 * prepare_playback_urb won't be called during pause
1605 */
1606 subs->last_frame_number =
1607 usb_get_current_frame_number(subs->dev) & 0xff;
1608 }
1609
1610 out:
Daniel Mackedcd3632012-04-12 13:51:12 +02001611 spin_unlock_irqrestore(&subs->lock, flags);
Daniel Macke5779992010-03-04 19:46:13 +01001612}
1613
1614static int snd_usb_playback_open(struct snd_pcm_substream *substream)
1615{
1616 return snd_usb_pcm_open(substream, SNDRV_PCM_STREAM_PLAYBACK);
1617}
1618
1619static int snd_usb_playback_close(struct snd_pcm_substream *substream)
1620{
1621 return snd_usb_pcm_close(substream, SNDRV_PCM_STREAM_PLAYBACK);
1622}
1623
1624static int snd_usb_capture_open(struct snd_pcm_substream *substream)
1625{
1626 return snd_usb_pcm_open(substream, SNDRV_PCM_STREAM_CAPTURE);
1627}
1628
1629static int snd_usb_capture_close(struct snd_pcm_substream *substream)
1630{
1631 return snd_usb_pcm_close(substream, SNDRV_PCM_STREAM_CAPTURE);
1632}
1633
Daniel Mackedcd3632012-04-12 13:51:12 +02001634static int snd_usb_substream_playback_trigger(struct snd_pcm_substream *substream,
1635 int cmd)
1636{
1637 struct snd_usb_substream *subs = substream->runtime->private_data;
1638
1639 switch (cmd) {
1640 case SNDRV_PCM_TRIGGER_START:
Pierre-Louis Bossartea33d352015-02-06 15:55:53 -06001641 subs->trigger_tstamp_pending_update = true;
Daniel Mackedcd3632012-04-12 13:51:12 +02001642 case SNDRV_PCM_TRIGGER_PAUSE_RELEASE:
1643 subs->data_endpoint->prepare_data_urb = prepare_playback_urb;
1644 subs->data_endpoint->retire_data_urb = retire_playback_urb;
Daniel Mack97f8d3b2012-05-21 12:47:36 +02001645 subs->running = 1;
Daniel Mackedcd3632012-04-12 13:51:12 +02001646 return 0;
1647 case SNDRV_PCM_TRIGGER_STOP:
Takashi Iwaia9bb3622012-11-20 18:32:06 +01001648 stop_endpoints(subs, false);
Daniel Mack97f8d3b2012-05-21 12:47:36 +02001649 subs->running = 0;
Daniel Mackedcd3632012-04-12 13:51:12 +02001650 return 0;
1651 case SNDRV_PCM_TRIGGER_PAUSE_PUSH:
1652 subs->data_endpoint->prepare_data_urb = NULL;
Takashi Iwai48779a02012-11-23 16:00:37 +01001653 /* keep retire_data_urb for delay calculation */
1654 subs->data_endpoint->retire_data_urb = retire_playback_urb;
Daniel Mack97f8d3b2012-05-21 12:47:36 +02001655 subs->running = 0;
Daniel Mackedcd3632012-04-12 13:51:12 +02001656 return 0;
1657 }
1658
1659 return -EINVAL;
1660}
1661
Daniel Mackafe25962012-06-16 16:58:04 +02001662static int snd_usb_substream_capture_trigger(struct snd_pcm_substream *substream,
1663 int cmd)
Daniel Mackedcd3632012-04-12 13:51:12 +02001664{
1665 int err;
1666 struct snd_usb_substream *subs = substream->runtime->private_data;
1667
1668 switch (cmd) {
1669 case SNDRV_PCM_TRIGGER_START:
Ioan-Adrian Ratiu1d0f9532017-01-05 00:37:46 +02001670 err = start_endpoints(subs);
Daniel Mackedcd3632012-04-12 13:51:12 +02001671 if (err < 0)
1672 return err;
1673
1674 subs->data_endpoint->retire_data_urb = retire_capture_urb;
Daniel Mack97f8d3b2012-05-21 12:47:36 +02001675 subs->running = 1;
Daniel Mackedcd3632012-04-12 13:51:12 +02001676 return 0;
1677 case SNDRV_PCM_TRIGGER_STOP:
Takashi Iwaia9bb3622012-11-20 18:32:06 +01001678 stop_endpoints(subs, false);
Daniel Mack97f8d3b2012-05-21 12:47:36 +02001679 subs->running = 0;
Daniel Mackedcd3632012-04-12 13:51:12 +02001680 return 0;
1681 case SNDRV_PCM_TRIGGER_PAUSE_PUSH:
1682 subs->data_endpoint->retire_data_urb = NULL;
Daniel Mack97f8d3b2012-05-21 12:47:36 +02001683 subs->running = 0;
Daniel Mackedcd3632012-04-12 13:51:12 +02001684 return 0;
1685 case SNDRV_PCM_TRIGGER_PAUSE_RELEASE:
1686 subs->data_endpoint->retire_data_urb = retire_capture_urb;
Daniel Mack97f8d3b2012-05-21 12:47:36 +02001687 subs->running = 1;
Daniel Mackedcd3632012-04-12 13:51:12 +02001688 return 0;
1689 }
1690
1691 return -EINVAL;
1692}
1693
Arvind Yadav31cb1fb2017-08-18 13:15:21 +05301694static const struct snd_pcm_ops snd_usb_playback_ops = {
Daniel Macke5779992010-03-04 19:46:13 +01001695 .open = snd_usb_playback_open,
1696 .close = snd_usb_playback_close,
1697 .ioctl = snd_pcm_lib_ioctl,
1698 .hw_params = snd_usb_hw_params,
1699 .hw_free = snd_usb_hw_free,
1700 .prepare = snd_usb_pcm_prepare,
1701 .trigger = snd_usb_substream_playback_trigger,
1702 .pointer = snd_usb_pcm_pointer,
1703 .page = snd_pcm_lib_get_vmalloc_page,
1704 .mmap = snd_pcm_lib_mmap_vmalloc,
1705};
1706
Arvind Yadav31cb1fb2017-08-18 13:15:21 +05301707static const struct snd_pcm_ops snd_usb_capture_ops = {
Daniel Macke5779992010-03-04 19:46:13 +01001708 .open = snd_usb_capture_open,
1709 .close = snd_usb_capture_close,
1710 .ioctl = snd_pcm_lib_ioctl,
1711 .hw_params = snd_usb_hw_params,
1712 .hw_free = snd_usb_hw_free,
1713 .prepare = snd_usb_pcm_prepare,
1714 .trigger = snd_usb_substream_capture_trigger,
1715 .pointer = snd_usb_pcm_pointer,
1716 .page = snd_pcm_lib_get_vmalloc_page,
1717 .mmap = snd_pcm_lib_mmap_vmalloc,
1718};
1719
1720void snd_usb_set_pcm_ops(struct snd_pcm *pcm, int stream)
1721{
1722 snd_pcm_set_ops(pcm, stream,
1723 stream == SNDRV_PCM_STREAM_PLAYBACK ?
1724 &snd_usb_playback_ops : &snd_usb_capture_ops);
1725}