blob: 897a2cbef6de146f56a6cebc8917b74cad429de0 [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{
Takashi Iwaie92be812018-05-27 15:09:15 +020079 struct snd_usb_substream *subs = substream->runtime->private_data;
Daniel Macke5779992010-03-04 19:46:13 +010080 unsigned int hwptr_done;
81
Takashi Iwai47ab1542015-08-25 16:09:00 +020082 if (atomic_read(&subs->stream->chip->shutdown))
Takashi Iwai978520b2012-10-12 15:12:55 +020083 return SNDRV_PCM_POS_XRUN;
Daniel Macke5779992010-03-04 19:46:13 +010084 spin_lock(&subs->lock);
85 hwptr_done = subs->hwptr_done;
Pierre-Louis Bossarte4cc6152012-12-19 11:39:05 -060086 substream->runtime->delay = snd_usb_pcm_delay(subs,
Pierre-Louis Bossart294c4fb2011-09-06 19:15:34 -050087 substream->runtime->rate);
Daniel Macke5779992010-03-04 19:46:13 +010088 spin_unlock(&subs->lock);
89 return hwptr_done / (substream->runtime->frame_bits >> 3);
90}
91
92/*
93 * find a matching audio format
94 */
Dylan Reid61a70952012-09-18 09:49:48 -070095static struct audioformat *find_format(struct snd_usb_substream *subs)
Daniel Macke5779992010-03-04 19:46:13 +010096{
Eldad Zack88766f02013-04-03 23:18:49 +020097 struct audioformat *fp;
Daniel Macke5779992010-03-04 19:46:13 +010098 struct audioformat *found = NULL;
99 int cur_attr = 0, attr;
100
Eldad Zack88766f02013-04-03 23:18:49 +0200101 list_for_each_entry(fp, &subs->fmt_list, list) {
Eldad Zack74c34ca2013-04-23 01:00:41 +0200102 if (!(fp->formats & pcm_format_to_bits(subs->pcm_format)))
Clemens Ladisch015eb0b2010-03-04 19:46:15 +0100103 continue;
Dylan Reid61a70952012-09-18 09:49:48 -0700104 if (fp->channels != subs->channels)
Daniel Macke5779992010-03-04 19:46:13 +0100105 continue;
Dylan Reid61a70952012-09-18 09:49:48 -0700106 if (subs->cur_rate < fp->rate_min ||
107 subs->cur_rate > fp->rate_max)
Daniel Macke5779992010-03-04 19:46:13 +0100108 continue;
109 if (! (fp->rates & SNDRV_PCM_RATE_CONTINUOUS)) {
110 unsigned int i;
111 for (i = 0; i < fp->nr_rates; i++)
Dylan Reid61a70952012-09-18 09:49:48 -0700112 if (fp->rate_table[i] == subs->cur_rate)
Daniel Macke5779992010-03-04 19:46:13 +0100113 break;
114 if (i >= fp->nr_rates)
115 continue;
116 }
117 attr = fp->ep_attr & USB_ENDPOINT_SYNCTYPE;
118 if (! found) {
119 found = fp;
120 cur_attr = attr;
121 continue;
122 }
123 /* avoid async out and adaptive in if the other method
124 * supports the same format.
125 * this is a workaround for the case like
126 * M-audio audiophile USB.
127 */
128 if (attr != cur_attr) {
129 if ((attr == USB_ENDPOINT_SYNC_ASYNC &&
130 subs->direction == SNDRV_PCM_STREAM_PLAYBACK) ||
131 (attr == USB_ENDPOINT_SYNC_ADAPTIVE &&
132 subs->direction == SNDRV_PCM_STREAM_CAPTURE))
133 continue;
134 if ((cur_attr == USB_ENDPOINT_SYNC_ASYNC &&
135 subs->direction == SNDRV_PCM_STREAM_PLAYBACK) ||
136 (cur_attr == USB_ENDPOINT_SYNC_ADAPTIVE &&
137 subs->direction == SNDRV_PCM_STREAM_CAPTURE)) {
138 found = fp;
139 cur_attr = attr;
140 continue;
141 }
142 }
143 /* find the format with the largest max. packet size */
144 if (fp->maxpacksize > found->maxpacksize) {
145 found = fp;
146 cur_attr = attr;
147 }
148 }
149 return found;
150}
151
Daniel Mack767d75a2010-03-04 19:46:17 +0100152static int init_pitch_v1(struct snd_usb_audio *chip, int iface,
153 struct usb_host_interface *alts,
154 struct audioformat *fmt)
Daniel Macke5779992010-03-04 19:46:13 +0100155{
Daniel Mack767d75a2010-03-04 19:46:17 +0100156 struct usb_device *dev = chip->dev;
Daniel Macke5779992010-03-04 19:46:13 +0100157 unsigned int ep;
158 unsigned char data[1];
159 int err;
160
Takashi Iwai447d6272016-03-15 15:20:58 +0100161 if (get_iface_desc(alts)->bNumEndpoints < 1)
162 return -EINVAL;
Daniel Macke5779992010-03-04 19:46:13 +0100163 ep = get_endpoint(alts, 0)->bEndpointAddress;
Daniel Mack767d75a2010-03-04 19:46:17 +0100164
Daniel Mack767d75a2010-03-04 19:46:17 +0100165 data[0] = 1;
Takashi Iwaif25ecf82018-05-27 15:18:22 +0200166 err = snd_usb_ctl_msg(dev, usb_sndctrlpipe(dev, 0), UAC_SET_CUR,
167 USB_TYPE_CLASS|USB_RECIP_ENDPOINT|USB_DIR_OUT,
168 UAC_EP_CS_ATTR_PITCH_CONTROL << 8, ep,
169 data, sizeof(data));
170 if (err < 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;
Takashi Iwaif25ecf82018-05-27 15:18:22 +0200188 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,
191 data, sizeof(data));
192 if (err < 0) {
Takashi Iwai0ba41d92014-02-26 13:02:17 +0100193 usb_audio_err(chip, "%d:%d: cannot set enable PITCH (v2)\n",
194 iface, fmt->altsetting);
Daniel Mack92c25612010-05-26 18:11:39 +0200195 return err;
196 }
197
198 return 0;
199}
200
Daniel Mack767d75a2010-03-04 19:46:17 +0100201/*
Daniel Mack92c25612010-05-26 18:11:39 +0200202 * initialize the pitch control and sample rate
Daniel Mack767d75a2010-03-04 19:46:17 +0100203 */
204int snd_usb_init_pitch(struct snd_usb_audio *chip, int iface,
205 struct usb_host_interface *alts,
206 struct audioformat *fmt)
207{
Daniel Mack92c25612010-05-26 18:11:39 +0200208 /* if endpoint doesn't have pitch control, bail out */
209 if (!(fmt->attributes & UAC_EP_CS_ATTR_PITCH_CONTROL))
210 return 0;
211
Clemens Ladisch8f898e92013-01-31 21:39:17 +0100212 switch (fmt->protocol) {
Daniel Mack767d75a2010-03-04 19:46:17 +0100213 case UAC_VERSION_1:
Clemens Ladischa2acad82010-09-03 10:53:11 +0200214 default:
Daniel Mack767d75a2010-03-04 19:46:17 +0100215 return init_pitch_v1(chip, iface, alts, fmt);
216
217 case UAC_VERSION_2:
Daniel Mack92c25612010-05-26 18:11:39 +0200218 return init_pitch_v2(chip, iface, alts, fmt);
Daniel Mack767d75a2010-03-04 19:46:17 +0100219 }
Daniel Mack767d75a2010-03-04 19:46:17 +0100220}
221
Ioan-Adrian Ratiu1d0f9532017-01-05 00:37:46 +0200222static int start_endpoints(struct snd_usb_substream *subs)
Daniel Mackedcd3632012-04-12 13:51:12 +0200223{
224 int err;
225
226 if (!subs->data_endpoint)
227 return -EINVAL;
228
229 if (!test_and_set_bit(SUBSTREAM_FLAG_DATA_EP_STARTED, &subs->flags)) {
230 struct snd_usb_endpoint *ep = subs->data_endpoint;
231
Takashi Iwai0ba41d92014-02-26 13:02:17 +0100232 dev_dbg(&subs->dev->dev, "Starting data EP @%p\n", ep);
Daniel Mackedcd3632012-04-12 13:51:12 +0200233
234 ep->data_subs = subs;
Ioan-Adrian Ratiu1d0f9532017-01-05 00:37:46 +0200235 err = snd_usb_endpoint_start(ep);
Daniel Mackedcd3632012-04-12 13:51:12 +0200236 if (err < 0) {
237 clear_bit(SUBSTREAM_FLAG_DATA_EP_STARTED, &subs->flags);
238 return err;
239 }
240 }
241
242 if (subs->sync_endpoint &&
243 !test_and_set_bit(SUBSTREAM_FLAG_SYNC_EP_STARTED, &subs->flags)) {
244 struct snd_usb_endpoint *ep = subs->sync_endpoint;
245
Daniel Mack2e4a2632012-08-30 18:52:31 +0200246 if (subs->data_endpoint->iface != subs->sync_endpoint->iface ||
Eldad Zackdf23a242013-10-06 22:31:13 +0200247 subs->data_endpoint->altsetting != subs->sync_endpoint->altsetting) {
Daniel Mack2e4a2632012-08-30 18:52:31 +0200248 err = usb_set_interface(subs->dev,
249 subs->sync_endpoint->iface,
Eldad Zackdf23a242013-10-06 22:31:13 +0200250 subs->sync_endpoint->altsetting);
Daniel Mack2e4a2632012-08-30 18:52:31 +0200251 if (err < 0) {
Eldad Zack06613f52013-10-06 22:31:11 +0200252 clear_bit(SUBSTREAM_FLAG_SYNC_EP_STARTED, &subs->flags);
Takashi Iwai0ba41d92014-02-26 13:02:17 +0100253 dev_err(&subs->dev->dev,
254 "%d:%d: cannot set interface (%d)\n",
Daniel Mack2e4a2632012-08-30 18:52:31 +0200255 subs->sync_endpoint->iface,
Eldad Zackdf23a242013-10-06 22:31:13 +0200256 subs->sync_endpoint->altsetting, err);
Daniel Mack2e4a2632012-08-30 18:52:31 +0200257 return -EIO;
258 }
259 }
260
Takashi Iwai0ba41d92014-02-26 13:02:17 +0100261 dev_dbg(&subs->dev->dev, "Starting sync EP @%p\n", ep);
Daniel Mackedcd3632012-04-12 13:51:12 +0200262
263 ep->sync_slave = subs->data_endpoint;
Ioan-Adrian Ratiu1d0f9532017-01-05 00:37:46 +0200264 err = snd_usb_endpoint_start(ep);
Daniel Mackedcd3632012-04-12 13:51:12 +0200265 if (err < 0) {
266 clear_bit(SUBSTREAM_FLAG_SYNC_EP_STARTED, &subs->flags);
267 return err;
268 }
269 }
270
271 return 0;
272}
273
Takashi Iwaia9bb3622012-11-20 18:32:06 +0100274static void stop_endpoints(struct snd_usb_substream *subs, bool wait)
Daniel Mackedcd3632012-04-12 13:51:12 +0200275{
276 if (test_and_clear_bit(SUBSTREAM_FLAG_SYNC_EP_STARTED, &subs->flags))
Takashi Iwaib2eb9502012-11-21 08:30:48 +0100277 snd_usb_endpoint_stop(subs->sync_endpoint);
Daniel Mackedcd3632012-04-12 13:51:12 +0200278
279 if (test_and_clear_bit(SUBSTREAM_FLAG_DATA_EP_STARTED, &subs->flags))
Takashi Iwaib2eb9502012-11-21 08:30:48 +0100280 snd_usb_endpoint_stop(subs->data_endpoint);
281
282 if (wait) {
283 snd_usb_endpoint_sync_pending_stop(subs->sync_endpoint);
284 snd_usb_endpoint_sync_pending_stop(subs->data_endpoint);
285 }
Daniel Mackedcd3632012-04-12 13:51:12 +0200286}
287
Clemens Ladischba7c2be2013-02-03 22:31:20 +0100288static int search_roland_implicit_fb(struct usb_device *dev, int ifnum,
289 unsigned int altsetting,
290 struct usb_host_interface **alts,
291 unsigned int *ep)
292{
293 struct usb_interface *iface;
294 struct usb_interface_descriptor *altsd;
295 struct usb_endpoint_descriptor *epd;
296
297 iface = usb_ifnum_to_if(dev, ifnum);
298 if (!iface || iface->num_altsetting < altsetting + 1)
299 return -ENOENT;
300 *alts = &iface->altsetting[altsetting];
301 altsd = get_iface_desc(*alts);
302 if (altsd->bAlternateSetting != altsetting ||
303 altsd->bInterfaceClass != USB_CLASS_VENDOR_SPEC ||
304 (altsd->bInterfaceSubClass != 2 &&
305 altsd->bInterfaceProtocol != 2 ) ||
306 altsd->bNumEndpoints < 1)
307 return -ENOENT;
308 epd = get_endpoint(*alts, 0);
309 if (!usb_endpoint_is_isoc_in(epd) ||
310 (epd->bmAttributes & USB_ENDPOINT_USAGE_MASK) !=
311 USB_ENDPOINT_USAGE_IMPLICIT_FB)
312 return -ENOENT;
313 *ep = epd->bEndpointAddress;
314 return 0;
315}
316
Eldad Zacka60945f2013-08-03 10:50:18 +0200317static int set_sync_ep_implicit_fb_quirk(struct snd_usb_substream *subs,
318 struct usb_device *dev,
319 struct usb_interface_descriptor *altsd,
320 unsigned int attr)
Daniel Macke5779992010-03-04 19:46:13 +0100321{
Eldad Zacka60945f2013-08-03 10:50:18 +0200322 struct usb_host_interface *alts;
Daniel Macke5779992010-03-04 19:46:13 +0100323 struct usb_interface *iface;
Eldad Zacka60945f2013-08-03 10:50:18 +0200324 unsigned int ep;
Alberto Aguirre103e9622018-04-18 09:35:34 -0500325 unsigned int ifnum;
Daniel Mackc75a8a72012-04-12 13:51:14 +0200326
Eldad Zack914273c2013-08-03 10:50:21 +0200327 /* Implicit feedback sync EPs consumers are always playback EPs */
328 if (subs->direction != SNDRV_PCM_STREAM_PLAYBACK)
329 return 0;
330
Daniel Mackc75a8a72012-04-12 13:51:14 +0200331 switch (subs->stream->chip->usb_id) {
Eldad Zackca10a7e2012-11-28 23:55:41 +0100332 case USB_ID(0x0763, 0x2030): /* M-Audio Fast Track C400 */
Matt Gruskine9a25e02013-02-09 12:56:35 -0500333 case USB_ID(0x0763, 0x2031): /* M-Audio Fast Track C600 */
Eldad Zack914273c2013-08-03 10:50:21 +0200334 ep = 0x81;
Alberto Aguirre103e9622018-04-18 09:35:34 -0500335 ifnum = 3;
336 goto add_sync_ep_from_ifnum;
Daniel Mackc75a8a72012-04-12 13:51:14 +0200337 case USB_ID(0x0763, 0x2080): /* M-Audio FastTrack Ultra */
338 case USB_ID(0x0763, 0x2081):
Eldad Zack914273c2013-08-03 10:50:21 +0200339 ep = 0x81;
Alberto Aguirre103e9622018-04-18 09:35:34 -0500340 ifnum = 2;
341 goto add_sync_ep_from_ifnum;
342 case USB_ID(0x2466, 0x8003): /* Fractal Audio Axe-Fx II */
Alberto Aguirre17f08b02016-12-08 00:36:48 -0600343 ep = 0x86;
Alberto Aguirre103e9622018-04-18 09:35:34 -0500344 ifnum = 2;
345 goto add_sync_ep_from_ifnum;
Alberto Aguirre91a85612018-04-18 09:35:35 -0500346 case USB_ID(0x2466, 0x8010): /* Fractal Audio Axe-Fx III */
347 ep = 0x81;
348 ifnum = 2;
349 goto add_sync_ep_from_ifnum;
Alberto Aguirre103e9622018-04-18 09:35:34 -0500350 case USB_ID(0x1397, 0x0002): /* Behringer UFX1204 */
Lassi Ylikojola5e35dc02018-02-09 16:51:36 +0200351 ep = 0x81;
Alberto Aguirre103e9622018-04-18 09:35:34 -0500352 ifnum = 1;
353 goto add_sync_ep_from_ifnum;
Daniel Mackc75a8a72012-04-12 13:51:14 +0200354 }
Alberto Aguirre103e9622018-04-18 09:35:34 -0500355
Eldad Zack914273c2013-08-03 10:50:21 +0200356 if (attr == USB_ENDPOINT_SYNC_ASYNC &&
Clemens Ladischba7c2be2013-02-03 22:31:20 +0100357 altsd->bInterfaceClass == USB_CLASS_VENDOR_SPEC &&
358 altsd->bInterfaceProtocol == 2 &&
359 altsd->bNumEndpoints == 1 &&
360 USB_ID_VENDOR(subs->stream->chip->usb_id) == 0x0582 /* Roland */ &&
361 search_roland_implicit_fb(dev, altsd->bInterfaceNumber + 1,
362 altsd->bAlternateSetting,
363 &alts, &ep) >= 0) {
Clemens Ladischba7c2be2013-02-03 22:31:20 +0100364 goto add_sync_ep;
365 }
Daniel Mackedcd3632012-04-12 13:51:12 +0200366
Eldad Zacka60945f2013-08-03 10:50:18 +0200367 /* No quirk */
368 return 0;
369
Alberto Aguirre103e9622018-04-18 09:35:34 -0500370add_sync_ep_from_ifnum:
371 iface = usb_ifnum_to_if(dev, ifnum);
372
373 if (!iface || iface->num_altsetting == 0)
374 return -EINVAL;
375
376 alts = &iface->altsetting[1];
377
Eldad Zacka60945f2013-08-03 10:50:18 +0200378add_sync_ep:
379 subs->sync_endpoint = snd_usb_add_endpoint(subs->stream->chip,
380 alts, ep, !subs->direction,
Eldad Zack88abb8e2013-08-03 10:51:14 +0200381 SND_USB_ENDPOINT_TYPE_DATA);
Eldad Zacka60945f2013-08-03 10:50:18 +0200382 if (!subs->sync_endpoint)
383 return -EINVAL;
384
385 subs->data_endpoint->sync_master = subs->sync_endpoint;
386
387 return 0;
388}
389
390static int set_sync_endpoint(struct snd_usb_substream *subs,
391 struct audioformat *fmt,
392 struct usb_device *dev,
393 struct usb_host_interface *alts,
394 struct usb_interface_descriptor *altsd)
395{
396 int is_playback = subs->direction == SNDRV_PCM_STREAM_PLAYBACK;
397 unsigned int ep, attr;
Eldad Zack95fec882013-08-03 10:50:20 +0200398 bool implicit_fb;
Eldad Zacka60945f2013-08-03 10:50:18 +0200399 int err;
400
401 /* we need a sync pipe in async OUT or adaptive IN mode */
402 /* check the number of EP, since some devices have broken
403 * descriptors which fool us. if it has only one EP,
404 * assume it as adaptive-out or sync-in.
405 */
406 attr = fmt->ep_attr & USB_ENDPOINT_SYNCTYPE;
407
Pierre-Louis Bossart63018442015-08-14 17:19:42 -0500408 if ((is_playback && (attr != USB_ENDPOINT_SYNC_ASYNC)) ||
409 (!is_playback && (attr != USB_ENDPOINT_SYNC_ADAPTIVE))) {
410
411 /*
412 * In these modes the notion of sync_endpoint is irrelevant.
413 * Reset pointers to avoid using stale data from previously
414 * used settings, e.g. when configuration and endpoints were
415 * changed
416 */
417
418 subs->sync_endpoint = NULL;
419 subs->data_endpoint->sync_master = NULL;
420 }
421
Eldad Zacka60945f2013-08-03 10:50:18 +0200422 err = set_sync_ep_implicit_fb_quirk(subs, dev, altsd, attr);
423 if (err < 0)
424 return err;
425
Eldad Zackf34d0652013-08-03 10:50:19 +0200426 if (altsd->bNumEndpoints < 2)
427 return 0;
Daniel Mackc75a8a72012-04-12 13:51:14 +0200428
Pierre-Louis Bossart395ae542015-08-14 17:19:43 -0500429 if ((is_playback && (attr == USB_ENDPOINT_SYNC_SYNC ||
430 attr == USB_ENDPOINT_SYNC_ADAPTIVE)) ||
Eldad Zackf34d0652013-08-03 10:50:19 +0200431 (!is_playback && attr != USB_ENDPOINT_SYNC_ADAPTIVE))
432 return 0;
Daniel Mackc75a8a72012-04-12 13:51:14 +0200433
Pierre-Louis Bossart395ae542015-08-14 17:19:43 -0500434 /*
435 * In case of illegal SYNC_NONE for OUT endpoint, we keep going to see
436 * if we don't find a sync endpoint, as on M-Audio Transit. In case of
437 * error fall back to SYNC mode and don't create sync endpoint
438 */
439
Eldad Zackf34d0652013-08-03 10:50:19 +0200440 /* check sync-pipe endpoint */
441 /* ... and check descriptor size before accessing bSynchAddress
442 because there is a version of the SB Audigy 2 NX firmware lacking
443 the audio fields in the endpoint descriptors */
444 if ((get_endpoint(alts, 1)->bmAttributes & USB_ENDPOINT_XFERTYPE_MASK) != USB_ENDPOINT_XFER_ISOC ||
445 (get_endpoint(alts, 1)->bLength >= USB_DT_ENDPOINT_AUDIO_SIZE &&
Eldad Zack95fec882013-08-03 10:50:20 +0200446 get_endpoint(alts, 1)->bSynchAddress != 0)) {
Takashi Iwai0ba41d92014-02-26 13:02:17 +0100447 dev_err(&dev->dev,
448 "%d:%d : invalid sync pipe. bmAttributes %02x, bLength %d, bSynchAddress %02x\n",
449 fmt->iface, fmt->altsetting,
Eldad Zackf34d0652013-08-03 10:50:19 +0200450 get_endpoint(alts, 1)->bmAttributes,
451 get_endpoint(alts, 1)->bLength,
452 get_endpoint(alts, 1)->bSynchAddress);
Pierre-Louis Bossart395ae542015-08-14 17:19:43 -0500453 if (is_playback && attr == USB_ENDPOINT_SYNC_NONE)
454 return 0;
Eldad Zackf34d0652013-08-03 10:50:19 +0200455 return -EINVAL;
Daniel Mackedcd3632012-04-12 13:51:12 +0200456 }
Eldad Zackf34d0652013-08-03 10:50:19 +0200457 ep = get_endpoint(alts, 1)->bEndpointAddress;
Eldad Zack95fec882013-08-03 10:50:20 +0200458 if (get_endpoint(alts, 0)->bLength >= USB_DT_ENDPOINT_AUDIO_SIZE &&
Eldad Zackf34d0652013-08-03 10:50:19 +0200459 ((is_playback && ep != (unsigned int)(get_endpoint(alts, 0)->bSynchAddress | USB_DIR_IN)) ||
460 (!is_playback && ep != (unsigned int)(get_endpoint(alts, 0)->bSynchAddress & ~USB_DIR_IN)))) {
Takashi Iwai0ba41d92014-02-26 13:02:17 +0100461 dev_err(&dev->dev,
462 "%d:%d : invalid sync pipe. is_playback %d, ep %02x, bSynchAddress %02x\n",
463 fmt->iface, fmt->altsetting,
Eldad Zackf34d0652013-08-03 10:50:19 +0200464 is_playback, ep, get_endpoint(alts, 0)->bSynchAddress);
Pierre-Louis Bossart395ae542015-08-14 17:19:43 -0500465 if (is_playback && attr == USB_ENDPOINT_SYNC_NONE)
466 return 0;
Eldad Zackf34d0652013-08-03 10:50:19 +0200467 return -EINVAL;
468 }
469
470 implicit_fb = (get_endpoint(alts, 1)->bmAttributes & USB_ENDPOINT_USAGE_MASK)
471 == USB_ENDPOINT_USAGE_IMPLICIT_FB;
472
473 subs->sync_endpoint = snd_usb_add_endpoint(subs->stream->chip,
474 alts, ep, !subs->direction,
475 implicit_fb ?
476 SND_USB_ENDPOINT_TYPE_DATA :
477 SND_USB_ENDPOINT_TYPE_SYNC);
Pierre-Louis Bossart395ae542015-08-14 17:19:43 -0500478 if (!subs->sync_endpoint) {
479 if (is_playback && attr == USB_ENDPOINT_SYNC_NONE)
480 return 0;
Eldad Zackf34d0652013-08-03 10:50:19 +0200481 return -EINVAL;
Pierre-Louis Bossart395ae542015-08-14 17:19:43 -0500482 }
Eldad Zackf34d0652013-08-03 10:50:19 +0200483
484 subs->data_endpoint->sync_master = subs->sync_endpoint;
Daniel Macke5779992010-03-04 19:46:13 +0100485
Eldad Zack71bb64c2013-08-03 10:50:17 +0200486 return 0;
487}
488
489/*
490 * find a matching format and set up the interface
491 */
492static int set_format(struct snd_usb_substream *subs, struct audioformat *fmt)
493{
494 struct usb_device *dev = subs->dev;
495 struct usb_host_interface *alts;
496 struct usb_interface_descriptor *altsd;
497 struct usb_interface *iface;
498 int err;
499
500 iface = usb_ifnum_to_if(dev, fmt->iface);
501 if (WARN_ON(!iface))
502 return -EINVAL;
Takashi Iwaib099b962018-05-02 09:36:28 +0200503 alts = usb_altnum_to_altsetting(iface, fmt->altsetting);
Eldad Zack71bb64c2013-08-03 10:50:17 +0200504 altsd = get_iface_desc(alts);
505 if (WARN_ON(altsd->bAlternateSetting != fmt->altsetting))
506 return -EINVAL;
507
508 if (fmt == subs->cur_audiofmt)
509 return 0;
510
511 /* close the old interface */
512 if (subs->interface >= 0 && subs->interface != fmt->iface) {
Takashi Iwai8a463222018-05-02 10:04:27 +0200513 if (!subs->stream->chip->keep_iface) {
514 err = usb_set_interface(subs->dev, subs->interface, 0);
515 if (err < 0) {
516 dev_err(&dev->dev,
517 "%d:%d: return to setting 0 failed (%d)\n",
518 fmt->iface, fmt->altsetting, err);
519 return -EIO;
520 }
Eldad Zack71bb64c2013-08-03 10:50:17 +0200521 }
522 subs->interface = -1;
523 subs->altset_idx = 0;
524 }
525
526 /* set interface */
Takashi Iwaib099b962018-05-02 09:36:28 +0200527 if (iface->cur_altsetting != alts) {
Jurgen Kramer6874daa2014-11-28 17:32:54 +0100528 err = snd_usb_select_mode_quirk(subs, fmt);
529 if (err < 0)
530 return -EIO;
531
Eldad Zack71bb64c2013-08-03 10:50:17 +0200532 err = usb_set_interface(dev, fmt->iface, fmt->altsetting);
533 if (err < 0) {
Takashi Iwai0ba41d92014-02-26 13:02:17 +0100534 dev_err(&dev->dev,
535 "%d:%d: usb_set_interface failed (%d)\n",
536 fmt->iface, fmt->altsetting, err);
Eldad Zack71bb64c2013-08-03 10:50:17 +0200537 return -EIO;
538 }
Takashi Iwai0ba41d92014-02-26 13:02:17 +0100539 dev_dbg(&dev->dev, "setting usb interface %d:%d\n",
540 fmt->iface, fmt->altsetting);
Eldad Zack71bb64c2013-08-03 10:50:17 +0200541 snd_usb_set_interface_quirk(dev);
542 }
543
Takashi Iwaib099b962018-05-02 09:36:28 +0200544 subs->interface = fmt->iface;
545 subs->altset_idx = fmt->altset_idx;
Eldad Zack71bb64c2013-08-03 10:50:17 +0200546 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 }
1176
1177 param_period_time_if_needed = SNDRV_PCM_HW_PARAM_PERIOD_TIME;
Takashi Iwai978520b2012-10-12 15:12:55 +02001178 if (subs->speed == USB_SPEED_FULL)
Daniel Macke5779992010-03-04 19:46:13 +01001179 /* full speed devices have fixed data packet interval */
1180 ptmin = 1000;
1181 if (ptmin == 1000)
1182 /* if period time doesn't go below 1 ms, no rules needed */
1183 param_period_time_if_needed = -1;
Daniel Macke5779992010-03-04 19:46:13 +01001184
Takashi Iwaie92be812018-05-27 15:09:15 +02001185 err = snd_pcm_hw_constraint_minmax(runtime,
1186 SNDRV_PCM_HW_PARAM_PERIOD_TIME,
1187 ptmin, UINT_MAX);
1188 if (err < 0)
1189 return err;
1190
1191 err = snd_pcm_hw_rule_add(runtime, 0, SNDRV_PCM_HW_PARAM_RATE,
1192 hw_rule_rate, subs,
1193 SNDRV_PCM_HW_PARAM_FORMAT,
1194 SNDRV_PCM_HW_PARAM_CHANNELS,
1195 param_period_time_if_needed,
1196 -1);
1197 if (err < 0)
1198 return err;
1199 err = snd_pcm_hw_rule_add(runtime, 0, SNDRV_PCM_HW_PARAM_CHANNELS,
1200 hw_rule_channels, subs,
1201 SNDRV_PCM_HW_PARAM_FORMAT,
1202 SNDRV_PCM_HW_PARAM_RATE,
1203 param_period_time_if_needed,
1204 -1);
1205 if (err < 0)
1206 return err;
1207 err = snd_pcm_hw_rule_add(runtime, 0, SNDRV_PCM_HW_PARAM_FORMAT,
1208 hw_rule_format, subs,
1209 SNDRV_PCM_HW_PARAM_RATE,
1210 SNDRV_PCM_HW_PARAM_CHANNELS,
1211 param_period_time_if_needed,
1212 -1);
1213 if (err < 0)
1214 return err;
Daniel Macke5779992010-03-04 19:46:13 +01001215 if (param_period_time_if_needed >= 0) {
1216 err = snd_pcm_hw_rule_add(runtime, 0,
1217 SNDRV_PCM_HW_PARAM_PERIOD_TIME,
1218 hw_rule_period_time, subs,
1219 SNDRV_PCM_HW_PARAM_FORMAT,
1220 SNDRV_PCM_HW_PARAM_CHANNELS,
1221 SNDRV_PCM_HW_PARAM_RATE,
1222 -1);
1223 if (err < 0)
Takashi Iwaie92be812018-05-27 15:09:15 +02001224 return err;
Daniel Macke5779992010-03-04 19:46:13 +01001225 }
Takashi Iwaie92be812018-05-27 15:09:15 +02001226 err = snd_usb_pcm_check_knot(runtime, subs);
1227 if (err < 0)
1228 return err;
Oliver Neukum88a85162011-03-11 14:51:12 +01001229
Takashi Iwaie92be812018-05-27 15:09:15 +02001230 return snd_usb_autoresume(subs->stream->chip);
Daniel Macke5779992010-03-04 19:46:13 +01001231}
1232
Takashi Iwai6fddc792018-05-27 13:59:03 +02001233static int snd_usb_pcm_open(struct snd_pcm_substream *substream)
Daniel Macke5779992010-03-04 19:46:13 +01001234{
Takashi Iwai6fddc792018-05-27 13:59:03 +02001235 int direction = substream->stream;
Daniel Macke5779992010-03-04 19:46:13 +01001236 struct snd_usb_stream *as = snd_pcm_substream_chip(substream);
1237 struct snd_pcm_runtime *runtime = substream->runtime;
1238 struct snd_usb_substream *subs = &as->substream[direction];
1239
1240 subs->interface = -1;
Clemens Ladische11b4e02010-03-04 19:46:14 +01001241 subs->altset_idx = 0;
Daniel Macke5779992010-03-04 19:46:13 +01001242 runtime->hw = snd_usb_hardware;
1243 runtime->private_data = subs;
1244 subs->pcm_substream = substream;
Oliver Neukum88a85162011-03-11 14:51:12 +01001245 /* runtime PM is also done there */
Daniel Mackd24f5062013-04-17 00:01:38 +08001246
1247 /* initialize DSD/DOP context */
1248 subs->dsd_dop.byte_idx = 0;
1249 subs->dsd_dop.channel = 0;
1250 subs->dsd_dop.marker = 1;
1251
Mauro Carvalho Chehabc89178f2016-03-31 09:57:29 -03001252 return setup_hw_info(runtime, subs);
Daniel Macke5779992010-03-04 19:46:13 +01001253}
1254
Takashi Iwai6fddc792018-05-27 13:59:03 +02001255static int snd_usb_pcm_close(struct snd_pcm_substream *substream)
Daniel Macke5779992010-03-04 19:46:13 +01001256{
Takashi Iwai6fddc792018-05-27 13:59:03 +02001257 int direction = substream->stream;
Daniel Macke5779992010-03-04 19:46:13 +01001258 struct snd_usb_stream *as = snd_pcm_substream_chip(substream);
1259 struct snd_usb_substream *subs = &as->substream[direction];
1260
Takashi Iwaib0db6062012-11-21 08:35:42 +01001261 stop_endpoints(subs, true);
Daniel Mack68e67f42012-07-12 13:08:40 +02001262
Takashi Iwai8a463222018-05-02 10:04:27 +02001263 if (!as->chip->keep_iface &&
1264 subs->interface >= 0 &&
Takashi Iwai47ab1542015-08-25 16:09:00 +02001265 !snd_usb_lock_shutdown(subs->stream->chip)) {
Daniel Mack68e67f42012-07-12 13:08:40 +02001266 usb_set_interface(subs->dev, subs->interface, 0);
1267 subs->interface = -1;
Takashi Iwai47ab1542015-08-25 16:09:00 +02001268 snd_usb_unlock_shutdown(subs->stream->chip);
Daniel Mack68e67f42012-07-12 13:08:40 +02001269 }
1270
Daniel Macke5779992010-03-04 19:46:13 +01001271 subs->pcm_substream = NULL;
Oliver Neukum88a85162011-03-11 14:51:12 +01001272 snd_usb_autosuspend(subs->stream->chip);
Daniel Mackedcd3632012-04-12 13:51:12 +02001273
Daniel Mack68e67f42012-07-12 13:08:40 +02001274 return 0;
Daniel Mackedcd3632012-04-12 13:51:12 +02001275}
1276
1277/* Since a URB can handle only a single linear buffer, we must use double
1278 * buffering when the data to be transferred overflows the buffer boundary.
1279 * To avoid inconsistencies when updating hwptr_done, we use double buffering
1280 * for all URBs.
1281 */
1282static void retire_capture_urb(struct snd_usb_substream *subs,
1283 struct urb *urb)
1284{
1285 struct snd_pcm_runtime *runtime = subs->pcm_substream->runtime;
1286 unsigned int stride, frames, bytes, oldptr;
1287 int i, period_elapsed = 0;
1288 unsigned long flags;
1289 unsigned char *cp;
Pierre-Louis Bossarte4cc6152012-12-19 11:39:05 -06001290 int current_frame_number;
1291
1292 /* read frame number here, update pointer in critical section */
1293 current_frame_number = usb_get_current_frame_number(subs->dev);
Daniel Mackedcd3632012-04-12 13:51:12 +02001294
1295 stride = runtime->frame_bits >> 3;
1296
1297 for (i = 0; i < urb->number_of_packets; i++) {
Calvin Owens1539d4f2013-04-12 22:33:59 -05001298 cp = (unsigned char *)urb->transfer_buffer + urb->iso_frame_desc[i].offset + subs->pkt_offset_adj;
Daniel Mackedcd3632012-04-12 13:51:12 +02001299 if (urb->iso_frame_desc[i].status && printk_ratelimit()) {
Takashi Iwai0ba41d92014-02-26 13:02:17 +01001300 dev_dbg(&subs->dev->dev, "frame %d active: %d\n",
1301 i, urb->iso_frame_desc[i].status);
Daniel Mackedcd3632012-04-12 13:51:12 +02001302 // continue;
1303 }
1304 bytes = urb->iso_frame_desc[i].actual_length;
1305 frames = bytes / stride;
1306 if (!subs->txfr_quirk)
1307 bytes = frames * stride;
1308 if (bytes % (runtime->sample_bits >> 3) != 0) {
Daniel Mackedcd3632012-04-12 13:51:12 +02001309 int oldbytes = bytes;
Daniel Mackedcd3632012-04-12 13:51:12 +02001310 bytes = frames * stride;
Takashi Iwai377a8792018-05-16 20:07:18 +02001311 dev_warn_ratelimited(&subs->dev->dev,
Takashi Iwai0ba41d92014-02-26 13:02:17 +01001312 "Corrected urb data len. %d->%d\n",
Daniel Mackedcd3632012-04-12 13:51:12 +02001313 oldbytes, bytes);
1314 }
1315 /* update the current pointer */
1316 spin_lock_irqsave(&subs->lock, flags);
1317 oldptr = subs->hwptr_done;
1318 subs->hwptr_done += bytes;
1319 if (subs->hwptr_done >= runtime->buffer_size * stride)
1320 subs->hwptr_done -= runtime->buffer_size * stride;
1321 frames = (bytes + (oldptr % stride)) / stride;
1322 subs->transfer_done += frames;
1323 if (subs->transfer_done >= runtime->period_size) {
1324 subs->transfer_done -= runtime->period_size;
1325 period_elapsed = 1;
1326 }
Pierre-Louis Bossarte4cc6152012-12-19 11:39:05 -06001327 /* capture delay is by construction limited to one URB,
1328 * reset delays here
1329 */
1330 runtime->delay = subs->last_delay = 0;
1331
1332 /* realign last_frame_number */
1333 subs->last_frame_number = current_frame_number;
1334 subs->last_frame_number &= 0xFF; /* keep 8 LSBs */
1335
Daniel Mackedcd3632012-04-12 13:51:12 +02001336 spin_unlock_irqrestore(&subs->lock, flags);
1337 /* copy a data chunk */
1338 if (oldptr + bytes > runtime->buffer_size * stride) {
1339 unsigned int bytes1 =
1340 runtime->buffer_size * stride - oldptr;
1341 memcpy(runtime->dma_area + oldptr, cp, bytes1);
1342 memcpy(runtime->dma_area, cp + bytes1, bytes - bytes1);
1343 } else {
1344 memcpy(runtime->dma_area + oldptr, cp, bytes);
1345 }
1346 }
1347
1348 if (period_elapsed)
1349 snd_pcm_period_elapsed(subs->pcm_substream);
1350}
1351
Daniel Mackd24f5062013-04-17 00:01:38 +08001352static inline void fill_playback_urb_dsd_dop(struct snd_usb_substream *subs,
1353 struct urb *urb, unsigned int bytes)
1354{
1355 struct snd_pcm_runtime *runtime = subs->pcm_substream->runtime;
1356 unsigned int stride = runtime->frame_bits >> 3;
1357 unsigned int dst_idx = 0;
1358 unsigned int src_idx = subs->hwptr_done;
1359 unsigned int wrap = runtime->buffer_size * stride;
1360 u8 *dst = urb->transfer_buffer;
1361 u8 *src = runtime->dma_area;
1362 u8 marker[] = { 0x05, 0xfa };
1363
1364 /*
1365 * The DSP DOP format defines a way to transport DSD samples over
1366 * normal PCM data endpoints. It requires stuffing of marker bytes
1367 * (0x05 and 0xfa, alternating per sample frame), and then expects
1368 * 2 additional bytes of actual payload. The whole frame is stored
1369 * LSB.
1370 *
1371 * Hence, for a stereo transport, the buffer layout looks like this,
1372 * where L refers to left channel samples and R to right.
1373 *
1374 * L1 L2 0x05 R1 R2 0x05 L3 L4 0xfa R3 R4 0xfa
1375 * L5 L6 0x05 R5 R6 0x05 L7 L8 0xfa R7 R8 0xfa
1376 * .....
1377 *
1378 */
1379
1380 while (bytes--) {
1381 if (++subs->dsd_dop.byte_idx == 3) {
1382 /* frame boundary? */
1383 dst[dst_idx++] = marker[subs->dsd_dop.marker];
1384 src_idx += 2;
1385 subs->dsd_dop.byte_idx = 0;
1386
1387 if (++subs->dsd_dop.channel % runtime->channels == 0) {
1388 /* alternate the marker */
1389 subs->dsd_dop.marker++;
1390 subs->dsd_dop.marker %= ARRAY_SIZE(marker);
1391 subs->dsd_dop.channel = 0;
1392 }
1393 } else {
1394 /* stuff the DSD payload */
1395 int idx = (src_idx + subs->dsd_dop.byte_idx - 1) % wrap;
Daniel Mack44dcbbb2013-04-17 00:01:39 +08001396
1397 if (subs->cur_audiofmt->dsd_bitrev)
1398 dst[dst_idx++] = bitrev8(src[idx]);
1399 else
1400 dst[dst_idx++] = src[idx];
1401
Daniel Mackd24f5062013-04-17 00:01:38 +08001402 subs->hwptr_done++;
1403 }
1404 }
Ricard Wanderlof4c4e4392015-10-19 08:52:50 +02001405 if (subs->hwptr_done >= runtime->buffer_size * stride)
1406 subs->hwptr_done -= runtime->buffer_size * stride;
Daniel Mackd24f5062013-04-17 00:01:38 +08001407}
1408
Ricard Wanderlofb97a9362015-10-19 08:52:52 +02001409static void copy_to_urb(struct snd_usb_substream *subs, struct urb *urb,
1410 int offset, int stride, unsigned int bytes)
Ricard Wanderlof07a40c2f2015-10-19 08:52:49 +02001411{
1412 struct snd_pcm_runtime *runtime = subs->pcm_substream->runtime;
1413
1414 if (subs->hwptr_done + bytes > runtime->buffer_size * stride) {
1415 /* err, the transferred area goes over buffer boundary. */
1416 unsigned int bytes1 =
1417 runtime->buffer_size * stride - subs->hwptr_done;
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, bytes1);
Ricard Wanderlofb97a9362015-10-19 08:52:52 +02001420 memcpy(urb->transfer_buffer + offset + bytes1,
Ricard Wanderlof07a40c2f2015-10-19 08:52:49 +02001421 runtime->dma_area, bytes - bytes1);
1422 } else {
Ricard Wanderlofb97a9362015-10-19 08:52:52 +02001423 memcpy(urb->transfer_buffer + offset,
Ricard Wanderlof07a40c2f2015-10-19 08:52:49 +02001424 runtime->dma_area + subs->hwptr_done, bytes);
1425 }
1426 subs->hwptr_done += bytes;
Ricard Wanderlof4c4e4392015-10-19 08:52:50 +02001427 if (subs->hwptr_done >= runtime->buffer_size * stride)
1428 subs->hwptr_done -= runtime->buffer_size * stride;
Ricard Wanderlof07a40c2f2015-10-19 08:52:49 +02001429}
1430
Ricard Wanderlofe0570442015-10-19 08:52:53 +02001431static unsigned int copy_to_urb_quirk(struct snd_usb_substream *subs,
1432 struct urb *urb, int stride,
1433 unsigned int bytes)
1434{
1435 __le32 packet_length;
1436 int i;
1437
1438 /* Put __le32 length descriptor at start of each packet. */
1439 for (i = 0; i < urb->number_of_packets; i++) {
1440 unsigned int length = urb->iso_frame_desc[i].length;
1441 unsigned int offset = urb->iso_frame_desc[i].offset;
1442
1443 packet_length = cpu_to_le32(length);
1444 offset += i * sizeof(packet_length);
1445 urb->iso_frame_desc[i].offset = offset;
1446 urb->iso_frame_desc[i].length += sizeof(packet_length);
1447 memcpy(urb->transfer_buffer + offset,
1448 &packet_length, sizeof(packet_length));
1449 copy_to_urb(subs, urb, offset + sizeof(packet_length),
1450 stride, length);
1451 }
1452 /* Adjust transfer size accordingly. */
1453 bytes += urb->number_of_packets * sizeof(packet_length);
1454 return bytes;
1455}
1456
Daniel Mackedcd3632012-04-12 13:51:12 +02001457static void prepare_playback_urb(struct snd_usb_substream *subs,
1458 struct urb *urb)
1459{
1460 struct snd_pcm_runtime *runtime = subs->pcm_substream->runtime;
Daniel Mack245baf92012-08-30 18:52:30 +02001461 struct snd_usb_endpoint *ep = subs->data_endpoint;
Daniel Mackedcd3632012-04-12 13:51:12 +02001462 struct snd_urb_ctx *ctx = urb->context;
1463 unsigned int counts, frames, bytes;
1464 int i, stride, period_elapsed = 0;
1465 unsigned long flags;
1466
1467 stride = runtime->frame_bits >> 3;
1468
1469 frames = 0;
1470 urb->number_of_packets = 0;
1471 spin_lock_irqsave(&subs->lock, flags);
Alan Stern976b6c02013-09-24 15:51:58 -04001472 subs->frame_limit += ep->max_urb_frames;
Daniel Mackedcd3632012-04-12 13:51:12 +02001473 for (i = 0; i < ctx->packets; i++) {
Daniel Mack245baf92012-08-30 18:52:30 +02001474 if (ctx->packet_size[i])
1475 counts = ctx->packet_size[i];
1476 else
1477 counts = snd_usb_endpoint_next_packet_size(ep);
1478
Daniel Mackedcd3632012-04-12 13:51:12 +02001479 /* set up descriptor */
Daniel Mack8a2a74d2013-04-17 00:01:37 +08001480 urb->iso_frame_desc[i].offset = frames * ep->stride;
1481 urb->iso_frame_desc[i].length = counts * ep->stride;
Daniel Mackedcd3632012-04-12 13:51:12 +02001482 frames += counts;
1483 urb->number_of_packets++;
1484 subs->transfer_done += counts;
1485 if (subs->transfer_done >= runtime->period_size) {
1486 subs->transfer_done -= runtime->period_size;
Alan Stern976b6c02013-09-24 15:51:58 -04001487 subs->frame_limit = 0;
Daniel Mackedcd3632012-04-12 13:51:12 +02001488 period_elapsed = 1;
1489 if (subs->fmt_type == UAC_FORMAT_TYPE_II) {
1490 if (subs->transfer_done > 0) {
1491 /* FIXME: fill-max mode is not
1492 * supported yet */
1493 frames -= subs->transfer_done;
1494 counts -= subs->transfer_done;
1495 urb->iso_frame_desc[i].length =
Daniel Mack8a2a74d2013-04-17 00:01:37 +08001496 counts * ep->stride;
Daniel Mackedcd3632012-04-12 13:51:12 +02001497 subs->transfer_done = 0;
1498 }
1499 i++;
1500 if (i < ctx->packets) {
1501 /* add a transfer delimiter */
1502 urb->iso_frame_desc[i].offset =
Daniel Mack8a2a74d2013-04-17 00:01:37 +08001503 frames * ep->stride;
Daniel Mackedcd3632012-04-12 13:51:12 +02001504 urb->iso_frame_desc[i].length = 0;
1505 urb->number_of_packets++;
1506 }
1507 break;
1508 }
1509 }
Alan Stern976b6c02013-09-24 15:51:58 -04001510 /* finish at the period boundary or after enough frames */
1511 if ((period_elapsed ||
1512 subs->transfer_done >= subs->frame_limit) &&
1513 !snd_usb_endpoint_implicit_feedback_sink(ep))
Daniel Mackedcd3632012-04-12 13:51:12 +02001514 break;
1515 }
Daniel Mack8a2a74d2013-04-17 00:01:37 +08001516 bytes = frames * ep->stride;
Daniel Mackd24f5062013-04-17 00:01:38 +08001517
1518 if (unlikely(subs->pcm_format == SNDRV_PCM_FORMAT_DSD_U16_LE &&
1519 subs->cur_audiofmt->dsd_dop)) {
1520 fill_playback_urb_dsd_dop(subs, urb, bytes);
Daniel Mack44dcbbb2013-04-17 00:01:39 +08001521 } else if (unlikely(subs->pcm_format == SNDRV_PCM_FORMAT_DSD_U8 &&
1522 subs->cur_audiofmt->dsd_bitrev)) {
1523 /* bit-reverse the bytes */
1524 u8 *buf = urb->transfer_buffer;
1525 for (i = 0; i < bytes; i++) {
1526 int idx = (subs->hwptr_done + i)
1527 % (runtime->buffer_size * stride);
1528 buf[i] = bitrev8(runtime->dma_area[idx]);
1529 }
1530
1531 subs->hwptr_done += bytes;
Ricard Wanderlof4c4e4392015-10-19 08:52:50 +02001532 if (subs->hwptr_done >= runtime->buffer_size * stride)
1533 subs->hwptr_done -= runtime->buffer_size * stride;
Daniel Mackedcd3632012-04-12 13:51:12 +02001534 } else {
Daniel Mackd24f5062013-04-17 00:01:38 +08001535 /* usual PCM */
Ricard Wanderlofe0570442015-10-19 08:52:53 +02001536 if (!subs->tx_length_quirk)
1537 copy_to_urb(subs, urb, 0, stride, bytes);
1538 else
1539 bytes = copy_to_urb_quirk(subs, urb, stride, bytes);
1540 /* bytes is now amount of outgoing data */
Daniel Mackedcd3632012-04-12 13:51:12 +02001541 }
Daniel Mackd24f5062013-04-17 00:01:38 +08001542
Daniel Mackfbcfbf52012-08-30 18:52:29 +02001543 /* update delay with exact number of samples queued */
1544 runtime->delay = subs->last_delay;
Daniel Mackedcd3632012-04-12 13:51:12 +02001545 runtime->delay += frames;
Daniel Mackfbcfbf52012-08-30 18:52:29 +02001546 subs->last_delay = runtime->delay;
1547
1548 /* realign last_frame_number */
1549 subs->last_frame_number = usb_get_current_frame_number(subs->dev);
1550 subs->last_frame_number &= 0xFF; /* keep 8 LSBs */
1551
Pierre-Louis Bossartea33d352015-02-06 15:55:53 -06001552 if (subs->trigger_tstamp_pending_update) {
1553 /* this is the first actual URB submitted,
1554 * update trigger timestamp to reflect actual start time
1555 */
1556 snd_pcm_gettime(runtime, &runtime->trigger_tstamp);
1557 subs->trigger_tstamp_pending_update = false;
1558 }
1559
Daniel Mackedcd3632012-04-12 13:51:12 +02001560 spin_unlock_irqrestore(&subs->lock, flags);
1561 urb->transfer_buffer_length = bytes;
1562 if (period_elapsed)
1563 snd_pcm_period_elapsed(subs->pcm_substream);
1564}
1565
1566/*
1567 * process after playback data complete
1568 * - decrease the delay count again
1569 */
1570static void retire_playback_urb(struct snd_usb_substream *subs,
1571 struct urb *urb)
1572{
1573 unsigned long flags;
1574 struct snd_pcm_runtime *runtime = subs->pcm_substream->runtime;
Daniel Mack8a2a74d2013-04-17 00:01:37 +08001575 struct snd_usb_endpoint *ep = subs->data_endpoint;
1576 int processed = urb->transfer_buffer_length / ep->stride;
Daniel Mackfbcfbf52012-08-30 18:52:29 +02001577 int est_delay;
Daniel Mackedcd3632012-04-12 13:51:12 +02001578
Takashi Iwai1213a202012-09-06 14:58:00 +02001579 /* ignore the delay accounting when procssed=0 is given, i.e.
1580 * silent payloads are procssed before handling the actual data
1581 */
1582 if (!processed)
1583 return;
1584
Daniel Mackedcd3632012-04-12 13:51:12 +02001585 spin_lock_irqsave(&subs->lock, flags);
Takashi Iwai48779a02012-11-23 16:00:37 +01001586 if (!subs->last_delay)
1587 goto out; /* short path */
1588
Daniel Mackfbcfbf52012-08-30 18:52:29 +02001589 est_delay = snd_usb_pcm_delay(subs, runtime->rate);
1590 /* update delay with exact number of samples played */
1591 if (processed > subs->last_delay)
1592 subs->last_delay = 0;
Daniel Mackedcd3632012-04-12 13:51:12 +02001593 else
Daniel Mackfbcfbf52012-08-30 18:52:29 +02001594 subs->last_delay -= processed;
1595 runtime->delay = subs->last_delay;
1596
1597 /*
1598 * Report when delay estimate is off by more than 2ms.
1599 * The error should be lower than 2ms since the estimate relies
1600 * on two reads of a counter updated every ms.
1601 */
Sander Eikelenboomb7a77232014-05-02 15:09:27 +02001602 if (abs(est_delay - subs->last_delay) * 1000 > runtime->rate * 2)
1603 dev_dbg_ratelimited(&subs->dev->dev,
Takashi Iwai0ba41d92014-02-26 13:02:17 +01001604 "delay: estimated %d, actual %d\n",
Daniel Mackfbcfbf52012-08-30 18:52:29 +02001605 est_delay, subs->last_delay);
1606
Takashi Iwai48779a02012-11-23 16:00:37 +01001607 if (!subs->running) {
1608 /* update last_frame_number for delay counting here since
1609 * prepare_playback_urb won't be called during pause
1610 */
1611 subs->last_frame_number =
1612 usb_get_current_frame_number(subs->dev) & 0xff;
1613 }
1614
1615 out:
Daniel Mackedcd3632012-04-12 13:51:12 +02001616 spin_unlock_irqrestore(&subs->lock, flags);
Daniel Macke5779992010-03-04 19:46:13 +01001617}
1618
Daniel Mackedcd3632012-04-12 13:51:12 +02001619static int snd_usb_substream_playback_trigger(struct snd_pcm_substream *substream,
1620 int cmd)
1621{
1622 struct snd_usb_substream *subs = substream->runtime->private_data;
1623
1624 switch (cmd) {
1625 case SNDRV_PCM_TRIGGER_START:
Pierre-Louis Bossartea33d352015-02-06 15:55:53 -06001626 subs->trigger_tstamp_pending_update = true;
Daniel Mackedcd3632012-04-12 13:51:12 +02001627 case SNDRV_PCM_TRIGGER_PAUSE_RELEASE:
1628 subs->data_endpoint->prepare_data_urb = prepare_playback_urb;
1629 subs->data_endpoint->retire_data_urb = retire_playback_urb;
Daniel Mack97f8d3b2012-05-21 12:47:36 +02001630 subs->running = 1;
Daniel Mackedcd3632012-04-12 13:51:12 +02001631 return 0;
1632 case SNDRV_PCM_TRIGGER_STOP:
Takashi Iwaia9bb3622012-11-20 18:32:06 +01001633 stop_endpoints(subs, false);
Daniel Mack97f8d3b2012-05-21 12:47:36 +02001634 subs->running = 0;
Daniel Mackedcd3632012-04-12 13:51:12 +02001635 return 0;
1636 case SNDRV_PCM_TRIGGER_PAUSE_PUSH:
1637 subs->data_endpoint->prepare_data_urb = NULL;
Takashi Iwai48779a02012-11-23 16:00:37 +01001638 /* keep retire_data_urb for delay calculation */
1639 subs->data_endpoint->retire_data_urb = retire_playback_urb;
Daniel Mack97f8d3b2012-05-21 12:47:36 +02001640 subs->running = 0;
Daniel Mackedcd3632012-04-12 13:51:12 +02001641 return 0;
1642 }
1643
1644 return -EINVAL;
1645}
1646
Daniel Mackafe25962012-06-16 16:58:04 +02001647static int snd_usb_substream_capture_trigger(struct snd_pcm_substream *substream,
1648 int cmd)
Daniel Mackedcd3632012-04-12 13:51:12 +02001649{
1650 int err;
1651 struct snd_usb_substream *subs = substream->runtime->private_data;
1652
1653 switch (cmd) {
1654 case SNDRV_PCM_TRIGGER_START:
Ioan-Adrian Ratiu1d0f9532017-01-05 00:37:46 +02001655 err = start_endpoints(subs);
Daniel Mackedcd3632012-04-12 13:51:12 +02001656 if (err < 0)
1657 return err;
1658
1659 subs->data_endpoint->retire_data_urb = retire_capture_urb;
Daniel Mack97f8d3b2012-05-21 12:47:36 +02001660 subs->running = 1;
Daniel Mackedcd3632012-04-12 13:51:12 +02001661 return 0;
1662 case SNDRV_PCM_TRIGGER_STOP:
Takashi Iwaia9bb3622012-11-20 18:32:06 +01001663 stop_endpoints(subs, false);
Daniel Mack97f8d3b2012-05-21 12:47:36 +02001664 subs->running = 0;
Daniel Mackedcd3632012-04-12 13:51:12 +02001665 return 0;
1666 case SNDRV_PCM_TRIGGER_PAUSE_PUSH:
1667 subs->data_endpoint->retire_data_urb = NULL;
Daniel Mack97f8d3b2012-05-21 12:47:36 +02001668 subs->running = 0;
Daniel Mackedcd3632012-04-12 13:51:12 +02001669 return 0;
1670 case SNDRV_PCM_TRIGGER_PAUSE_RELEASE:
1671 subs->data_endpoint->retire_data_urb = retire_capture_urb;
Daniel Mack97f8d3b2012-05-21 12:47:36 +02001672 subs->running = 1;
Daniel Mackedcd3632012-04-12 13:51:12 +02001673 return 0;
1674 }
1675
1676 return -EINVAL;
1677}
1678
Arvind Yadav31cb1fb2017-08-18 13:15:21 +05301679static const struct snd_pcm_ops snd_usb_playback_ops = {
Takashi Iwai6fddc792018-05-27 13:59:03 +02001680 .open = snd_usb_pcm_open,
1681 .close = snd_usb_pcm_close,
Daniel Macke5779992010-03-04 19:46:13 +01001682 .ioctl = snd_pcm_lib_ioctl,
1683 .hw_params = snd_usb_hw_params,
1684 .hw_free = snd_usb_hw_free,
1685 .prepare = snd_usb_pcm_prepare,
1686 .trigger = snd_usb_substream_playback_trigger,
1687 .pointer = snd_usb_pcm_pointer,
1688 .page = snd_pcm_lib_get_vmalloc_page,
1689 .mmap = snd_pcm_lib_mmap_vmalloc,
1690};
1691
Arvind Yadav31cb1fb2017-08-18 13:15:21 +05301692static const struct snd_pcm_ops snd_usb_capture_ops = {
Takashi Iwai6fddc792018-05-27 13:59:03 +02001693 .open = snd_usb_pcm_open,
1694 .close = snd_usb_pcm_close,
Daniel Macke5779992010-03-04 19:46:13 +01001695 .ioctl = snd_pcm_lib_ioctl,
1696 .hw_params = snd_usb_hw_params,
1697 .hw_free = snd_usb_hw_free,
1698 .prepare = snd_usb_pcm_prepare,
1699 .trigger = snd_usb_substream_capture_trigger,
1700 .pointer = snd_usb_pcm_pointer,
1701 .page = snd_pcm_lib_get_vmalloc_page,
1702 .mmap = snd_pcm_lib_mmap_vmalloc,
1703};
1704
1705void snd_usb_set_pcm_ops(struct snd_pcm *pcm, int stream)
1706{
1707 snd_pcm_set_ops(pcm, stream,
1708 stream == SNDRV_PCM_STREAM_PLAYBACK ?
1709 &snd_usb_playback_ops : &snd_usb_capture_ops);
1710}