blob: f71965bf815fd0e0152f78b448a094929ff4bb66 [file] [log] [blame]
Thomas Gleixner1a59d1b82019-05-27 08:55:05 +02001// SPDX-License-Identifier: GPL-2.0-or-later
Daniel Macke5779992010-03-04 19:46:13 +01002/*
Daniel Macke5779992010-03-04 19:46:13 +01003 */
4
5#include <linux/init.h>
Stephen Rothwell9966dda2010-03-29 19:01:48 +11006#include <linux/slab.h>
Daniel Mack44dcbbb2013-04-17 00:01:39 +08007#include <linux/bitrev.h>
Daniel Mackedcd3632012-04-12 13:51:12 +02008#include <linux/ratelimit.h>
Daniel Macke5779992010-03-04 19:46:13 +01009#include <linux/usb.h>
10#include <linux/usb/audio.h>
Daniel Mack7e847892010-03-11 21:13:20 +010011#include <linux/usb/audio-v2.h>
Daniel Macke5779992010-03-04 19:46:13 +010012
13#include <sound/core.h>
14#include <sound/pcm.h>
15#include <sound/pcm_params.h>
16
17#include "usbaudio.h"
18#include "card.h"
19#include "quirks.h"
Daniel Mackc731bc92011-09-14 12:46:57 +020020#include "endpoint.h"
Daniel Macke5779992010-03-04 19:46:13 +010021#include "helper.h"
22#include "pcm.h"
Daniel Mack79f920f2010-05-31 14:51:31 +020023#include "clock.h"
Oliver Neukum88a85162011-03-11 14:51:12 +010024#include "power.h"
Shuah Khan66354f12019-04-01 20:40:22 -040025#include "media.h"
Takashi Iwai9fddc152020-11-23 09:53:43 +010026#include "implicit.h"
Daniel Macke5779992010-03-04 19:46:13 +010027
Daniel Mackedcd3632012-04-12 13:51:12 +020028#define SUBSTREAM_FLAG_DATA_EP_STARTED 0
29#define SUBSTREAM_FLAG_SYNC_EP_STARTED 1
30
Pierre-Louis Bossart294c4fb2011-09-06 19:15:34 -050031/* return the estimated delay based on USB frame counters */
32snd_pcm_uframes_t snd_usb_pcm_delay(struct snd_usb_substream *subs,
33 unsigned int rate)
34{
35 int current_frame_number;
36 int frame_diff;
37 int est_delay;
38
Takashi Iwai48779a02012-11-23 16:00:37 +010039 if (!subs->last_delay)
40 return 0; /* short path */
41
Pierre-Louis Bossart294c4fb2011-09-06 19:15:34 -050042 current_frame_number = usb_get_current_frame_number(subs->dev);
43 /*
44 * HCD implementations use different widths, use lower 8 bits.
45 * The delay will be managed up to 256ms, which is more than
46 * enough
47 */
48 frame_diff = (current_frame_number - subs->last_frame_number) & 0xff;
49
50 /* Approximation based on number of samples per USB frame (ms),
51 some truncation for 44.1 but the estimate is good enough */
Pierre-Louis Bossarte4cc6152012-12-19 11:39:05 -060052 est_delay = frame_diff * rate / 1000;
53 if (subs->direction == SNDRV_PCM_STREAM_PLAYBACK)
54 est_delay = subs->last_delay - est_delay;
55 else
56 est_delay = subs->last_delay + est_delay;
57
Pierre-Louis Bossart294c4fb2011-09-06 19:15:34 -050058 if (est_delay < 0)
59 est_delay = 0;
60 return est_delay;
61}
62
Daniel Macke5779992010-03-04 19:46:13 +010063/*
64 * return the current pcm pointer. just based on the hwptr_done value.
65 */
66static snd_pcm_uframes_t snd_usb_pcm_pointer(struct snd_pcm_substream *substream)
67{
Takashi Iwaie92be812018-05-27 15:09:15 +020068 struct snd_usb_substream *subs = substream->runtime->private_data;
Daniel Macke5779992010-03-04 19:46:13 +010069 unsigned int hwptr_done;
70
Takashi Iwai47ab1542015-08-25 16:09:00 +020071 if (atomic_read(&subs->stream->chip->shutdown))
Takashi Iwai978520b2012-10-12 15:12:55 +020072 return SNDRV_PCM_POS_XRUN;
Daniel Macke5779992010-03-04 19:46:13 +010073 spin_lock(&subs->lock);
74 hwptr_done = subs->hwptr_done;
Pierre-Louis Bossarte4cc6152012-12-19 11:39:05 -060075 substream->runtime->delay = snd_usb_pcm_delay(subs,
Pierre-Louis Bossart294c4fb2011-09-06 19:15:34 -050076 substream->runtime->rate);
Daniel Macke5779992010-03-04 19:46:13 +010077 spin_unlock(&subs->lock);
78 return hwptr_done / (substream->runtime->frame_bits >> 3);
79}
80
81/*
82 * find a matching audio format
83 */
Takashi Iwaicab941b2020-11-23 09:53:33 +010084static const struct audioformat *
Takashi Iwaibf6313a2020-11-23 09:53:31 +010085find_format(struct list_head *fmt_list_head, snd_pcm_format_t format,
86 unsigned int rate, unsigned int channels, bool strict_match,
87 struct snd_usb_substream *subs)
Daniel Macke5779992010-03-04 19:46:13 +010088{
Takashi Iwaicab941b2020-11-23 09:53:33 +010089 const struct audioformat *fp;
90 const struct audioformat *found = NULL;
Daniel Macke5779992010-03-04 19:46:13 +010091 int cur_attr = 0, attr;
92
Takashi Iwai5a6c3e12020-11-23 09:53:16 +010093 list_for_each_entry(fp, fmt_list_head, list) {
Takashi Iwaibf6313a2020-11-23 09:53:31 +010094 if (strict_match) {
95 if (!(fp->formats & pcm_format_to_bits(format)))
96 continue;
97 if (fp->channels != channels)
98 continue;
99 }
Takashi Iwai5a6c3e12020-11-23 09:53:16 +0100100 if (rate < fp->rate_min || rate > fp->rate_max)
Daniel Macke5779992010-03-04 19:46:13 +0100101 continue;
Takashi Iwai5a6c3e12020-11-23 09:53:16 +0100102 if (!(fp->rates & SNDRV_PCM_RATE_CONTINUOUS)) {
Daniel Macke5779992010-03-04 19:46:13 +0100103 unsigned int i;
104 for (i = 0; i < fp->nr_rates; i++)
Takashi Iwai5a6c3e12020-11-23 09:53:16 +0100105 if (fp->rate_table[i] == rate)
Daniel Macke5779992010-03-04 19:46:13 +0100106 break;
107 if (i >= fp->nr_rates)
108 continue;
109 }
110 attr = fp->ep_attr & USB_ENDPOINT_SYNCTYPE;
Takashi Iwai5a6c3e12020-11-23 09:53:16 +0100111 if (!found) {
Daniel Macke5779992010-03-04 19:46:13 +0100112 found = fp;
113 cur_attr = attr;
114 continue;
115 }
116 /* avoid async out and adaptive in if the other method
117 * supports the same format.
118 * this is a workaround for the case like
119 * M-audio audiophile USB.
120 */
Takashi Iwai5a6c3e12020-11-23 09:53:16 +0100121 if (subs && attr != cur_attr) {
Daniel Macke5779992010-03-04 19:46:13 +0100122 if ((attr == USB_ENDPOINT_SYNC_ASYNC &&
123 subs->direction == SNDRV_PCM_STREAM_PLAYBACK) ||
124 (attr == USB_ENDPOINT_SYNC_ADAPTIVE &&
125 subs->direction == SNDRV_PCM_STREAM_CAPTURE))
126 continue;
127 if ((cur_attr == USB_ENDPOINT_SYNC_ASYNC &&
128 subs->direction == SNDRV_PCM_STREAM_PLAYBACK) ||
129 (cur_attr == USB_ENDPOINT_SYNC_ADAPTIVE &&
130 subs->direction == SNDRV_PCM_STREAM_CAPTURE)) {
131 found = fp;
132 cur_attr = attr;
133 continue;
134 }
135 }
136 /* find the format with the largest max. packet size */
137 if (fp->maxpacksize > found->maxpacksize) {
138 found = fp;
139 cur_attr = attr;
140 }
141 }
142 return found;
143}
144
Takashi Iwaicab941b2020-11-23 09:53:33 +0100145static const struct audioformat *
Takashi Iwaibf6313a2020-11-23 09:53:31 +0100146find_substream_format(struct snd_usb_substream *subs,
147 const struct snd_pcm_hw_params *params)
Takashi Iwai5a6c3e12020-11-23 09:53:16 +0100148{
Takashi Iwaibf6313a2020-11-23 09:53:31 +0100149 return find_format(&subs->fmt_list, params_format(params),
150 params_rate(params), params_channels(params),
151 true, subs);
Takashi Iwai5a6c3e12020-11-23 09:53:16 +0100152}
153
Takashi Iwaibf6313a2020-11-23 09:53:31 +0100154static int init_pitch_v1(struct snd_usb_audio *chip, int ep)
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 char data[1];
158 int err;
159
Daniel Mack767d75a2010-03-04 19:46:17 +0100160 data[0] = 1;
Takashi Iwaif25ecf82018-05-27 15:18:22 +0200161 err = snd_usb_ctl_msg(dev, usb_sndctrlpipe(dev, 0), UAC_SET_CUR,
162 USB_TYPE_CLASS|USB_RECIP_ENDPOINT|USB_DIR_OUT,
163 UAC_EP_CS_ATTR_PITCH_CONTROL << 8, ep,
164 data, sizeof(data));
Takashi Iwaibf6313a2020-11-23 09:53:31 +0100165 return err;
Daniel Macke5779992010-03-04 19:46:13 +0100166}
167
Takashi Iwaibf6313a2020-11-23 09:53:31 +0100168static int init_pitch_v2(struct snd_usb_audio *chip, int ep)
Daniel Mack92c25612010-05-26 18:11:39 +0200169{
170 struct usb_device *dev = chip->dev;
171 unsigned char data[1];
Daniel Mack92c25612010-05-26 18:11:39 +0200172 int err;
173
Daniel Mack92c25612010-05-26 18:11:39 +0200174 data[0] = 1;
Takashi Iwaif25ecf82018-05-27 15:18:22 +0200175 err = snd_usb_ctl_msg(dev, usb_sndctrlpipe(dev, 0), UAC2_CS_CUR,
176 USB_TYPE_CLASS | USB_RECIP_ENDPOINT | USB_DIR_OUT,
177 UAC2_EP_CS_PITCH << 8, 0,
178 data, sizeof(data));
Takashi Iwaibf6313a2020-11-23 09:53:31 +0100179 return err;
Daniel Mack92c25612010-05-26 18:11:39 +0200180}
181
Daniel Mack767d75a2010-03-04 19:46:17 +0100182/*
Daniel Mack92c25612010-05-26 18:11:39 +0200183 * initialize the pitch control and sample rate
Daniel Mack767d75a2010-03-04 19:46:17 +0100184 */
Takashi Iwai73037c82020-11-23 09:53:26 +0100185int snd_usb_init_pitch(struct snd_usb_audio *chip,
Takashi Iwaicab941b2020-11-23 09:53:33 +0100186 const struct audioformat *fmt)
Daniel Mack767d75a2010-03-04 19:46:17 +0100187{
Takashi Iwaibf6313a2020-11-23 09:53:31 +0100188 int err;
189
Daniel Mack92c25612010-05-26 18:11:39 +0200190 /* if endpoint doesn't have pitch control, bail out */
191 if (!(fmt->attributes & UAC_EP_CS_ATTR_PITCH_CONTROL))
192 return 0;
193
Takashi Iwaibf6313a2020-11-23 09:53:31 +0100194 usb_audio_dbg(chip, "enable PITCH for EP 0x%x\n", fmt->endpoint);
195
Clemens Ladisch8f898e92013-01-31 21:39:17 +0100196 switch (fmt->protocol) {
Daniel Mack767d75a2010-03-04 19:46:17 +0100197 case UAC_VERSION_1:
Takashi Iwaibf6313a2020-11-23 09:53:31 +0100198 err = init_pitch_v1(chip, fmt->endpoint);
199 break;
Daniel Mack767d75a2010-03-04 19:46:17 +0100200 case UAC_VERSION_2:
Takashi Iwaibf6313a2020-11-23 09:53:31 +0100201 err = init_pitch_v2(chip, fmt->endpoint);
202 break;
203 default:
204 return 0;
Daniel Mack767d75a2010-03-04 19:46:17 +0100205 }
Takashi Iwaibf6313a2020-11-23 09:53:31 +0100206
207 if (err < 0) {
208 usb_audio_err(chip, "failed to enable PITCH for EP 0x%x\n",
209 fmt->endpoint);
210 return err;
211 }
212
213 return 0;
Daniel Mack767d75a2010-03-04 19:46:17 +0100214}
215
Takashi Iwaibf6313a2020-11-23 09:53:31 +0100216static bool stop_endpoints(struct snd_usb_substream *subs)
Takashi Iwai57234bc2020-11-23 09:53:27 +0100217{
Takashi Iwaibf6313a2020-11-23 09:53:31 +0100218 bool stopped = 0;
219
Takashi Iwai57234bc2020-11-23 09:53:27 +0100220 if (test_and_clear_bit(SUBSTREAM_FLAG_SYNC_EP_STARTED, &subs->flags)) {
221 snd_usb_endpoint_stop(subs->sync_endpoint);
Takashi Iwaibf6313a2020-11-23 09:53:31 +0100222 stopped = true;
Takashi Iwai57234bc2020-11-23 09:53:27 +0100223 }
Takashi Iwaibf6313a2020-11-23 09:53:31 +0100224 if (test_and_clear_bit(SUBSTREAM_FLAG_DATA_EP_STARTED, &subs->flags)) {
Takashi Iwai57234bc2020-11-23 09:53:27 +0100225 snd_usb_endpoint_stop(subs->data_endpoint);
Takashi Iwaibf6313a2020-11-23 09:53:31 +0100226 stopped = true;
227 }
228 return stopped;
Takashi Iwai57234bc2020-11-23 09:53:27 +0100229}
230
Ioan-Adrian Ratiu1d0f9532017-01-05 00:37:46 +0200231static int start_endpoints(struct snd_usb_substream *subs)
Daniel Mackedcd3632012-04-12 13:51:12 +0200232{
233 int err;
234
235 if (!subs->data_endpoint)
236 return -EINVAL;
237
238 if (!test_and_set_bit(SUBSTREAM_FLAG_DATA_EP_STARTED, &subs->flags)) {
Takashi Iwaibf6313a2020-11-23 09:53:31 +0100239 err = snd_usb_endpoint_start(subs->data_endpoint);
Daniel Mackedcd3632012-04-12 13:51:12 +0200240 if (err < 0) {
241 clear_bit(SUBSTREAM_FLAG_DATA_EP_STARTED, &subs->flags);
Takashi Iwai57234bc2020-11-23 09:53:27 +0100242 goto error;
Daniel Mackedcd3632012-04-12 13:51:12 +0200243 }
244 }
245
246 if (subs->sync_endpoint &&
247 !test_and_set_bit(SUBSTREAM_FLAG_SYNC_EP_STARTED, &subs->flags)) {
Takashi Iwaibf6313a2020-11-23 09:53:31 +0100248 err = snd_usb_endpoint_start(subs->sync_endpoint);
Daniel Mackedcd3632012-04-12 13:51:12 +0200249 if (err < 0) {
250 clear_bit(SUBSTREAM_FLAG_SYNC_EP_STARTED, &subs->flags);
Takashi Iwai57234bc2020-11-23 09:53:27 +0100251 goto error;
Daniel Mackedcd3632012-04-12 13:51:12 +0200252 }
253 }
254
255 return 0;
Takashi Iwai57234bc2020-11-23 09:53:27 +0100256
257 error:
258 stop_endpoints(subs);
259 return err;
Daniel Mackedcd3632012-04-12 13:51:12 +0200260}
261
Takashi Iwaidc5eafe2019-12-10 07:34:54 +0100262static void sync_pending_stops(struct snd_usb_substream *subs)
263{
264 snd_usb_endpoint_sync_pending_stop(subs->sync_endpoint);
265 snd_usb_endpoint_sync_pending_stop(subs->data_endpoint);
266}
267
Takashi Iwaidc5eafe2019-12-10 07:34:54 +0100268/* PCM sync_stop callback */
269static int snd_usb_pcm_sync_stop(struct snd_pcm_substream *substream)
270{
271 struct snd_usb_substream *subs = substream->runtime->private_data;
272
273 if (!snd_usb_lock_shutdown(subs->stream->chip)) {
274 sync_pending_stops(subs);
275 snd_usb_unlock_shutdown(subs->stream->chip);
Takashi Iwaib2eb9502012-11-21 08:30:48 +0100276 }
Takashi Iwaidc5eafe2019-12-10 07:34:54 +0100277 return 0;
Daniel Mackedcd3632012-04-12 13:51:12 +0200278}
279
Takashi Iwai9fddc152020-11-23 09:53:43 +0100280/* Set up sync endpoint */
Takashi Iwaif6581c02020-11-23 09:53:14 +0100281int snd_usb_audioformat_set_sync_ep(struct snd_usb_audio *chip,
282 struct audioformat *fmt)
Eldad Zacka60945f2013-08-03 10:50:18 +0200283{
Takashi Iwaif6581c02020-11-23 09:53:14 +0100284 struct usb_device *dev = chip->dev;
Takashi Iwaif6581c02020-11-23 09:53:14 +0100285 struct usb_host_interface *alts;
286 struct usb_interface_descriptor *altsd;
287 unsigned int ep, attr, sync_attr;
288 bool is_playback;
Eldad Zacka60945f2013-08-03 10:50:18 +0200289 int err;
290
Takashi Iwaie42a09b2020-11-23 09:53:22 +0100291 alts = snd_usb_get_host_interface(chip, fmt->iface, fmt->altsetting);
Takashi Iwaif6581c02020-11-23 09:53:14 +0100292 if (!alts)
293 return 0;
294 altsd = get_iface_desc(alts);
295
Takashi Iwai9fddc152020-11-23 09:53:43 +0100296 err = snd_usb_parse_implicit_fb_quirk(chip, fmt, alts);
297 if (err > 0)
298 return 0; /* matched */
299
300 /*
301 * Generic sync EP handling
302 */
Manuel Reinhardt2bc16b92019-01-31 15:32:35 +0100303
Eldad Zackf34d0652013-08-03 10:50:19 +0200304 if (altsd->bNumEndpoints < 2)
305 return 0;
Daniel Mackc75a8a72012-04-12 13:51:14 +0200306
Takashi Iwai9fddc152020-11-23 09:53:43 +0100307 is_playback = !(get_endpoint(alts, 0)->bEndpointAddress & USB_DIR_IN);
Takashi Iwaif6581c02020-11-23 09:53:14 +0100308 attr = fmt->ep_attr & USB_ENDPOINT_SYNCTYPE;
Pierre-Louis Bossart395ae542015-08-14 17:19:43 -0500309 if ((is_playback && (attr == USB_ENDPOINT_SYNC_SYNC ||
310 attr == USB_ENDPOINT_SYNC_ADAPTIVE)) ||
Eldad Zackf34d0652013-08-03 10:50:19 +0200311 (!is_playback && attr != USB_ENDPOINT_SYNC_ADAPTIVE))
312 return 0;
Daniel Mackc75a8a72012-04-12 13:51:14 +0200313
Takashi Iwaif6581c02020-11-23 09:53:14 +0100314 sync_attr = get_endpoint(alts, 1)->bmAttributes;
315
Pierre-Louis Bossart395ae542015-08-14 17:19:43 -0500316 /*
317 * In case of illegal SYNC_NONE for OUT endpoint, we keep going to see
318 * if we don't find a sync endpoint, as on M-Audio Transit. In case of
319 * error fall back to SYNC mode and don't create sync endpoint
320 */
321
Eldad Zackf34d0652013-08-03 10:50:19 +0200322 /* check sync-pipe endpoint */
323 /* ... and check descriptor size before accessing bSynchAddress
324 because there is a version of the SB Audigy 2 NX firmware lacking
325 the audio fields in the endpoint descriptors */
Takashi Iwaif6581c02020-11-23 09:53:14 +0100326 if ((sync_attr & USB_ENDPOINT_XFERTYPE_MASK) != USB_ENDPOINT_XFER_ISOC ||
Eldad Zackf34d0652013-08-03 10:50:19 +0200327 (get_endpoint(alts, 1)->bLength >= USB_DT_ENDPOINT_AUDIO_SIZE &&
Eldad Zack95fec882013-08-03 10:50:20 +0200328 get_endpoint(alts, 1)->bSynchAddress != 0)) {
Takashi Iwai0ba41d92014-02-26 13:02:17 +0100329 dev_err(&dev->dev,
330 "%d:%d : invalid sync pipe. bmAttributes %02x, bLength %d, bSynchAddress %02x\n",
331 fmt->iface, fmt->altsetting,
Eldad Zackf34d0652013-08-03 10:50:19 +0200332 get_endpoint(alts, 1)->bmAttributes,
333 get_endpoint(alts, 1)->bLength,
334 get_endpoint(alts, 1)->bSynchAddress);
Pierre-Louis Bossart395ae542015-08-14 17:19:43 -0500335 if (is_playback && attr == USB_ENDPOINT_SYNC_NONE)
336 return 0;
Eldad Zackf34d0652013-08-03 10:50:19 +0200337 return -EINVAL;
Daniel Mackedcd3632012-04-12 13:51:12 +0200338 }
Eldad Zackf34d0652013-08-03 10:50:19 +0200339 ep = get_endpoint(alts, 1)->bEndpointAddress;
Eldad Zack95fec882013-08-03 10:50:20 +0200340 if (get_endpoint(alts, 0)->bLength >= USB_DT_ENDPOINT_AUDIO_SIZE &&
Ard van Breemen1b341212019-08-02 13:52:14 +0200341 get_endpoint(alts, 0)->bSynchAddress != 0 &&
Eldad Zackf34d0652013-08-03 10:50:19 +0200342 ((is_playback && ep != (unsigned int)(get_endpoint(alts, 0)->bSynchAddress | USB_DIR_IN)) ||
343 (!is_playback && ep != (unsigned int)(get_endpoint(alts, 0)->bSynchAddress & ~USB_DIR_IN)))) {
Takashi Iwai0ba41d92014-02-26 13:02:17 +0100344 dev_err(&dev->dev,
345 "%d:%d : invalid sync pipe. is_playback %d, ep %02x, bSynchAddress %02x\n",
346 fmt->iface, fmt->altsetting,
Eldad Zackf34d0652013-08-03 10:50:19 +0200347 is_playback, ep, get_endpoint(alts, 0)->bSynchAddress);
Pierre-Louis Bossart395ae542015-08-14 17:19:43 -0500348 if (is_playback && attr == USB_ENDPOINT_SYNC_NONE)
349 return 0;
Eldad Zackf34d0652013-08-03 10:50:19 +0200350 return -EINVAL;
351 }
352
Takashi Iwaif6581c02020-11-23 09:53:14 +0100353 fmt->sync_ep = ep;
354 fmt->sync_iface = altsd->bInterfaceNumber;
355 fmt->sync_altsetting = altsd->bAlternateSetting;
Takashi Iwaibf6313a2020-11-23 09:53:31 +0100356 fmt->sync_ep_idx = 1;
Takashi Iwaif6581c02020-11-23 09:53:14 +0100357 if ((sync_attr & USB_ENDPOINT_USAGE_MASK) == USB_ENDPOINT_USAGE_IMPLICIT_FB)
358 fmt->implicit_fb = 1;
359
360 dev_dbg(&dev->dev, "%d:%d: found sync_ep=0x%x, iface=%d, alt=%d, implicit_fb=%d\n",
361 fmt->iface, fmt->altsetting, fmt->sync_ep, fmt->sync_iface,
362 fmt->sync_altsetting, fmt->implicit_fb);
363
364 return 0;
365}
366
Jorge Sanjuan3f59aa12018-07-31 13:28:44 +0100367static int snd_usb_pcm_change_state(struct snd_usb_substream *subs, int state)
368{
369 int ret;
370
371 if (!subs->str_pd)
372 return 0;
373
374 ret = snd_usb_power_domain_set(subs->stream->chip, subs->str_pd, state);
375 if (ret < 0) {
376 dev_err(&subs->dev->dev,
377 "Cannot change Power Domain ID: %d to state: %d. Err: %d\n",
378 subs->str_pd->pd_id, state, ret);
379 return ret;
380 }
381
382 return 0;
383}
384
385int snd_usb_pcm_suspend(struct snd_usb_stream *as)
386{
387 int ret;
388
389 ret = snd_usb_pcm_change_state(&as->substream[0], UAC3_PD_STATE_D2);
390 if (ret < 0)
391 return ret;
392
393 ret = snd_usb_pcm_change_state(&as->substream[1], UAC3_PD_STATE_D2);
394 if (ret < 0)
395 return ret;
396
397 return 0;
398}
399
400int snd_usb_pcm_resume(struct snd_usb_stream *as)
401{
402 int ret;
403
Jorge Sanjuana0a49592018-07-31 13:28:45 +0100404 ret = snd_usb_pcm_change_state(&as->substream[0], UAC3_PD_STATE_D1);
Jorge Sanjuan3f59aa12018-07-31 13:28:44 +0100405 if (ret < 0)
406 return ret;
407
Jorge Sanjuana0a49592018-07-31 13:28:45 +0100408 ret = snd_usb_pcm_change_state(&as->substream[1], UAC3_PD_STATE_D1);
Jorge Sanjuan3f59aa12018-07-31 13:28:44 +0100409 if (ret < 0)
410 return ret;
411
412 return 0;
413}
414
Takashi Iwaibf6313a2020-11-23 09:53:31 +0100415static void close_endpoints(struct snd_usb_audio *chip,
416 struct snd_usb_substream *subs)
417{
418 if (subs->data_endpoint) {
419 snd_usb_endpoint_set_sync(chip, subs->data_endpoint, NULL);
420 snd_usb_endpoint_close(chip, subs->data_endpoint);
421 subs->data_endpoint = NULL;
422 }
423
424 if (subs->sync_endpoint) {
425 snd_usb_endpoint_close(chip, subs->sync_endpoint);
426 subs->sync_endpoint = NULL;
427 }
428}
429
430static int configure_endpoints(struct snd_usb_audio *chip,
431 struct snd_usb_substream *subs)
432{
433 int err;
434
435 if (subs->data_endpoint->need_setup) {
436 /* stop any running stream beforehand */
437 if (stop_endpoints(subs))
438 sync_pending_stops(subs);
439 err = snd_usb_endpoint_configure(chip, subs->data_endpoint);
440 if (err < 0)
441 return err;
442 snd_usb_set_format_quirk(subs, subs->cur_audiofmt);
443 }
444
445 if (subs->sync_endpoint) {
446 err = snd_usb_endpoint_configure(chip, subs->sync_endpoint);
447 if (err < 0)
448 return err;
449 }
450
451 return 0;
452}
453
Dylan Reid61a70952012-09-18 09:49:48 -0700454/*
Daniel Macke5779992010-03-04 19:46:13 +0100455 * hw_params callback
456 *
457 * allocate a buffer and set the given audio format.
458 *
459 * so far we use a physically linear buffer although packetize transfer
460 * doesn't need a continuous area.
461 * if sg buffer is supported on the later version of alsa, we'll follow
462 * that.
463 */
464static int snd_usb_hw_params(struct snd_pcm_substream *substream,
465 struct snd_pcm_hw_params *hw_params)
466{
467 struct snd_usb_substream *subs = substream->runtime->private_data;
Takashi Iwaibf6313a2020-11-23 09:53:31 +0100468 struct snd_usb_audio *chip = subs->stream->chip;
Takashi Iwaicab941b2020-11-23 09:53:33 +0100469 const struct audioformat *fmt;
470 const struct audioformat *sync_fmt;
Dylan Reid61a70952012-09-18 09:49:48 -0700471 int ret;
Daniel Macke5779992010-03-04 19:46:13 +0100472
Shuah Khan66354f12019-04-01 20:40:22 -0400473 ret = snd_media_start_pipeline(subs);
474 if (ret)
475 return ret;
476
Takashi Iwaibf6313a2020-11-23 09:53:31 +0100477 fmt = find_substream_format(subs, hw_params);
478 if (!fmt) {
479 usb_audio_dbg(chip,
480 "cannot find format: format=%s, rate=%d, channels=%d\n",
481 snd_pcm_format_name(params_format(hw_params)),
482 params_rate(hw_params), params_channels(hw_params));
483 ret = -EINVAL;
484 goto stop_pipeline;
485 }
486
Takashi Iwai9fddc152020-11-23 09:53:43 +0100487 if (fmt->implicit_fb) {
488 sync_fmt = snd_usb_find_implicit_fb_sync_format(chip, fmt,
489 hw_params,
490 !substream->stream);
Takashi Iwaibf6313a2020-11-23 09:53:31 +0100491 if (!sync_fmt) {
492 usb_audio_dbg(chip,
493 "cannot find sync format: ep=0x%x, iface=%d:%d, format=%s, rate=%d, channels=%d\n",
494 fmt->sync_ep, fmt->sync_iface,
495 fmt->sync_altsetting,
496 snd_pcm_format_name(params_format(hw_params)),
497 params_rate(hw_params), params_channels(hw_params));
498 ret = -EINVAL;
499 goto stop_pipeline;
500 }
501 } else {
502 sync_fmt = fmt;
503 }
504
505 ret = snd_usb_lock_shutdown(chip);
506 if (ret < 0)
507 goto stop_pipeline;
508
509 ret = snd_usb_pcm_change_state(subs, UAC3_PD_STATE_D0);
510 if (ret < 0)
511 goto unlock;
512
513 if (subs->data_endpoint) {
514 if (snd_usb_endpoint_compatible(chip, subs->data_endpoint,
515 fmt, hw_params))
516 goto unlock;
517 close_endpoints(chip, subs);
518 }
519
520 subs->data_endpoint = snd_usb_endpoint_open(chip, fmt, hw_params, false);
521 if (!subs->data_endpoint) {
522 ret = -EINVAL;
523 goto unlock;
524 }
525
526 if (fmt->sync_ep) {
527 subs->sync_endpoint = snd_usb_endpoint_open(chip, sync_fmt,
528 hw_params,
529 fmt == sync_fmt);
530 if (!subs->sync_endpoint) {
531 ret = -EINVAL;
532 goto unlock;
533 }
534
535 snd_usb_endpoint_set_sync(chip, subs->data_endpoint,
536 subs->sync_endpoint);
537 }
538
Takashi Iwai6aa719d2020-11-23 09:53:36 +0100539 mutex_lock(&chip->mutex);
Takashi Iwaibf6313a2020-11-23 09:53:31 +0100540 subs->cur_audiofmt = fmt;
Takashi Iwai6aa719d2020-11-23 09:53:36 +0100541 mutex_unlock(&chip->mutex);
Takashi Iwaibf6313a2020-11-23 09:53:31 +0100542
543 ret = configure_endpoints(chip, subs);
Dylan Reid61a70952012-09-18 09:49:48 -0700544
Jorge Sanjuana0a49592018-07-31 13:28:45 +0100545 unlock:
Shuah Khan66354f12019-04-01 20:40:22 -0400546 if (ret < 0)
Takashi Iwaibf6313a2020-11-23 09:53:31 +0100547 close_endpoints(chip, subs);
Shuah Khan66354f12019-04-01 20:40:22 -0400548
Takashi Iwaibf6313a2020-11-23 09:53:31 +0100549 snd_usb_unlock_shutdown(chip);
Shuah Khan66354f12019-04-01 20:40:22 -0400550 stop_pipeline:
Takashi Iwaibf6313a2020-11-23 09:53:31 +0100551 if (ret < 0)
552 snd_media_stop_pipeline(subs);
553
Jorge Sanjuana0a49592018-07-31 13:28:45 +0100554 return ret;
Daniel Macke5779992010-03-04 19:46:13 +0100555}
556
557/*
558 * hw_free callback
559 *
560 * reset the audio format and release the buffer
561 */
562static int snd_usb_hw_free(struct snd_pcm_substream *substream)
563{
564 struct snd_usb_substream *subs = substream->runtime->private_data;
Takashi Iwai5a6c3e12020-11-23 09:53:16 +0100565 struct snd_usb_audio *chip = subs->stream->chip;
Daniel Macke5779992010-03-04 19:46:13 +0100566
Shuah Khan66354f12019-04-01 20:40:22 -0400567 snd_media_stop_pipeline(subs);
Takashi Iwai6aa719d2020-11-23 09:53:36 +0100568 mutex_lock(&chip->mutex);
Daniel Macke5779992010-03-04 19:46:13 +0100569 subs->cur_audiofmt = NULL;
Takashi Iwai6aa719d2020-11-23 09:53:36 +0100570 mutex_unlock(&chip->mutex);
Takashi Iwai5a6c3e12020-11-23 09:53:16 +0100571 if (!snd_usb_lock_shutdown(chip)) {
Takashi Iwaibf6313a2020-11-23 09:53:31 +0100572 if (stop_endpoints(subs))
573 sync_pending_stops(subs);
574 close_endpoints(chip, subs);
Takashi Iwai5a6c3e12020-11-23 09:53:16 +0100575 snd_usb_unlock_shutdown(chip);
Takashi Iwai978520b2012-10-12 15:12:55 +0200576 }
Takashi Iwaif274baa2018-05-27 13:01:17 +0200577
Takashi Iwai6dd9486ca2019-12-09 10:49:42 +0100578 return 0;
Daniel Macke5779992010-03-04 19:46:13 +0100579}
580
581/*
582 * prepare callback
583 *
584 * only a few subtle things...
585 */
586static int snd_usb_pcm_prepare(struct snd_pcm_substream *substream)
587{
588 struct snd_pcm_runtime *runtime = substream->runtime;
589 struct snd_usb_substream *subs = runtime->private_data;
Takashi Iwaibf6313a2020-11-23 09:53:31 +0100590 struct snd_usb_audio *chip = subs->stream->chip;
Dylan Reid61a70952012-09-18 09:49:48 -0700591 int ret;
Daniel Macke5779992010-03-04 19:46:13 +0100592
Takashi Iwaibf6313a2020-11-23 09:53:31 +0100593 ret = snd_usb_lock_shutdown(chip);
Takashi Iwai47ab1542015-08-25 16:09:00 +0200594 if (ret < 0)
595 return ret;
Takashi Iwai978520b2012-10-12 15:12:55 +0200596 if (snd_BUG_ON(!subs->data_endpoint)) {
597 ret = -EIO;
598 goto unlock;
599 }
Daniel Mackedcd3632012-04-12 13:51:12 +0200600
Takashi Iwaibf6313a2020-11-23 09:53:31 +0100601 ret = configure_endpoints(chip, subs);
Jorge Sanjuana0a49592018-07-31 13:28:45 +0100602 if (ret < 0)
603 goto unlock;
604
Daniel Macke5779992010-03-04 19:46:13 +0100605 /* reset the pointer */
606 subs->hwptr_done = 0;
607 subs->transfer_done = 0;
Pierre-Louis Bossart294c4fb2011-09-06 19:15:34 -0500608 subs->last_delay = 0;
609 subs->last_frame_number = 0;
Daniel Macke5779992010-03-04 19:46:13 +0100610 runtime->delay = 0;
611
Daniel Mackedcd3632012-04-12 13:51:12 +0200612 /* for playback, submit the URBs now; otherwise, the first hwptr_done
613 * updates for all URBs would happen at the same time when starting */
614 if (subs->direction == SNDRV_PCM_STREAM_PLAYBACK)
Ioan-Adrian Ratiu1d0f9532017-01-05 00:37:46 +0200615 ret = start_endpoints(subs);
Daniel Mackedcd3632012-04-12 13:51:12 +0200616
Takashi Iwai978520b2012-10-12 15:12:55 +0200617 unlock:
Takashi Iwaibf6313a2020-11-23 09:53:31 +0100618 snd_usb_unlock_shutdown(chip);
Takashi Iwai978520b2012-10-12 15:12:55 +0200619 return ret;
Daniel Macke5779992010-03-04 19:46:13 +0100620}
621
Takashi Iwai7ec827b2020-11-23 09:53:18 +0100622/*
623 * h/w constraints
624 */
625
626#ifdef HW_CONST_DEBUG
627#define hwc_debug(fmt, args...) pr_debug(fmt, ##args)
628#else
629#define hwc_debug(fmt, args...) do { } while(0)
630#endif
631
Bhumika Goyalaaffbf72017-08-17 14:45:59 +0530632static const struct snd_pcm_hardware snd_usb_hardware =
Daniel Macke5779992010-03-04 19:46:13 +0100633{
634 .info = SNDRV_PCM_INFO_MMAP |
635 SNDRV_PCM_INFO_MMAP_VALID |
636 SNDRV_PCM_INFO_BATCH |
637 SNDRV_PCM_INFO_INTERLEAVED |
638 SNDRV_PCM_INFO_BLOCK_TRANSFER |
639 SNDRV_PCM_INFO_PAUSE,
Takashi Iwaibf6313a2020-11-23 09:53:31 +0100640 .channels_min = 1,
641 .channels_max = 256,
Daniel Macke5779992010-03-04 19:46:13 +0100642 .buffer_bytes_max = 1024 * 1024,
643 .period_bytes_min = 64,
644 .period_bytes_max = 512 * 1024,
645 .periods_min = 2,
646 .periods_max = 1024,
647};
648
649static int hw_check_valid_format(struct snd_usb_substream *subs,
650 struct snd_pcm_hw_params *params,
Takashi Iwaicab941b2020-11-23 09:53:33 +0100651 const struct audioformat *fp)
Daniel Macke5779992010-03-04 19:46:13 +0100652{
653 struct snd_interval *it = hw_param_interval(params, SNDRV_PCM_HW_PARAM_RATE);
654 struct snd_interval *ct = hw_param_interval(params, SNDRV_PCM_HW_PARAM_CHANNELS);
655 struct snd_mask *fmts = hw_param_mask(params, SNDRV_PCM_HW_PARAM_FORMAT);
656 struct snd_interval *pt = hw_param_interval(params, SNDRV_PCM_HW_PARAM_PERIOD_TIME);
Clemens Ladisch015eb0b2010-03-04 19:46:15 +0100657 struct snd_mask check_fmts;
Daniel Macke5779992010-03-04 19:46:13 +0100658 unsigned int ptime;
659
660 /* check the format */
Clemens Ladisch015eb0b2010-03-04 19:46:15 +0100661 snd_mask_none(&check_fmts);
662 check_fmts.bits[0] = (u32)fp->formats;
663 check_fmts.bits[1] = (u32)(fp->formats >> 32);
664 snd_mask_intersect(&check_fmts, fmts);
665 if (snd_mask_empty(&check_fmts)) {
Takashi Iwaie4ea77f2021-01-11 09:16:11 +0100666 hwc_debug(" > check: no supported format 0x%llx\n", fp->formats);
Daniel Macke5779992010-03-04 19:46:13 +0100667 return 0;
668 }
669 /* check the channels */
670 if (fp->channels < ct->min || fp->channels > ct->max) {
671 hwc_debug(" > check: no valid channels %d (%d/%d)\n", fp->channels, ct->min, ct->max);
672 return 0;
673 }
674 /* check the rate is within the range */
675 if (fp->rate_min > it->max || (fp->rate_min == it->max && it->openmax)) {
676 hwc_debug(" > check: rate_min %d > max %d\n", fp->rate_min, it->max);
677 return 0;
678 }
679 if (fp->rate_max < it->min || (fp->rate_max == it->min && it->openmin)) {
680 hwc_debug(" > check: rate_max %d < min %d\n", fp->rate_max, it->min);
681 return 0;
682 }
683 /* check whether the period time is >= the data packet interval */
Takashi Iwai978520b2012-10-12 15:12:55 +0200684 if (subs->speed != USB_SPEED_FULL) {
Daniel Macke5779992010-03-04 19:46:13 +0100685 ptime = 125 * (1 << fp->datainterval);
686 if (ptime > pt->max || (ptime == pt->max && pt->openmax)) {
687 hwc_debug(" > check: ptime %u > max %u\n", ptime, pt->max);
688 return 0;
689 }
690 }
691 return 1;
692}
693
Takashi Iwai7726dce2020-11-23 09:53:17 +0100694static int apply_hw_params_minmax(struct snd_interval *it, unsigned int rmin,
695 unsigned int rmax)
Daniel Macke5779992010-03-04 19:46:13 +0100696{
Daniel Macke5779992010-03-04 19:46:13 +0100697 int changed;
Daniel Macke5779992010-03-04 19:46:13 +0100698
Takashi Iwaibc4e94a2020-11-23 09:53:07 +0100699 if (rmin > rmax) {
Daniel Macke5779992010-03-04 19:46:13 +0100700 hwc_debug(" --> get empty\n");
701 it->empty = 1;
702 return -EINVAL;
703 }
704
705 changed = 0;
706 if (it->min < rmin) {
707 it->min = rmin;
708 it->openmin = 0;
709 changed = 1;
710 }
711 if (it->max > rmax) {
712 it->max = rmax;
713 it->openmax = 0;
714 changed = 1;
715 }
716 if (snd_interval_checkempty(it)) {
717 it->empty = 1;
718 return -EINVAL;
719 }
720 hwc_debug(" --> (%d, %d) (changed = %d)\n", it->min, it->max, changed);
721 return changed;
722}
723
Takashi Iwai7726dce2020-11-23 09:53:17 +0100724static int hw_rule_rate(struct snd_pcm_hw_params *params,
725 struct snd_pcm_hw_rule *rule)
726{
727 struct snd_usb_substream *subs = rule->private;
Takashi Iwaicab941b2020-11-23 09:53:33 +0100728 const struct audioformat *fp;
Takashi Iwai7726dce2020-11-23 09:53:17 +0100729 struct snd_interval *it = hw_param_interval(params, SNDRV_PCM_HW_PARAM_RATE);
730 unsigned int rmin, rmax, r;
731 int i;
732
733 hwc_debug("hw_rule_rate: (%d,%d)\n", it->min, it->max);
734 rmin = UINT_MAX;
735 rmax = 0;
736 list_for_each_entry(fp, &subs->fmt_list, list) {
737 if (!hw_check_valid_format(subs, params, fp))
738 continue;
739 if (fp->rate_table && fp->nr_rates) {
740 for (i = 0; i < fp->nr_rates; i++) {
741 r = fp->rate_table[i];
742 if (!snd_interval_test(it, r))
743 continue;
744 rmin = min(rmin, r);
745 rmax = max(rmax, r);
746 }
747 } else {
748 rmin = min(rmin, fp->rate_min);
749 rmax = max(rmax, fp->rate_max);
750 }
751 }
752
753 return apply_hw_params_minmax(it, rmin, rmax);
754}
755
Daniel Macke5779992010-03-04 19:46:13 +0100756
757static int hw_rule_channels(struct snd_pcm_hw_params *params,
758 struct snd_pcm_hw_rule *rule)
759{
760 struct snd_usb_substream *subs = rule->private;
Takashi Iwaicab941b2020-11-23 09:53:33 +0100761 const struct audioformat *fp;
Daniel Macke5779992010-03-04 19:46:13 +0100762 struct snd_interval *it = hw_param_interval(params, SNDRV_PCM_HW_PARAM_CHANNELS);
763 unsigned int rmin, rmax;
Daniel Macke5779992010-03-04 19:46:13 +0100764
765 hwc_debug("hw_rule_channels: (%d,%d)\n", it->min, it->max);
Takashi Iwai7726dce2020-11-23 09:53:17 +0100766 rmin = UINT_MAX;
767 rmax = 0;
Eldad Zack88766f02013-04-03 23:18:49 +0200768 list_for_each_entry(fp, &subs->fmt_list, list) {
Daniel Macke5779992010-03-04 19:46:13 +0100769 if (!hw_check_valid_format(subs, params, fp))
770 continue;
Takashi Iwai7726dce2020-11-23 09:53:17 +0100771 rmin = min(rmin, fp->channels);
772 rmax = max(rmax, fp->channels);
Daniel Macke5779992010-03-04 19:46:13 +0100773 }
774
Takashi Iwai7726dce2020-11-23 09:53:17 +0100775 return apply_hw_params_minmax(it, rmin, rmax);
Daniel Macke5779992010-03-04 19:46:13 +0100776}
777
Takashi Iwaie4ea77f2021-01-11 09:16:11 +0100778static int apply_hw_params_format_bits(struct snd_mask *fmt, u64 fbits)
Daniel Macke5779992010-03-04 19:46:13 +0100779{
Daniel Macke5779992010-03-04 19:46:13 +0100780 u32 oldbits[2];
781 int changed;
782
Daniel Macke5779992010-03-04 19:46:13 +0100783 oldbits[0] = fmt->bits[0];
784 oldbits[1] = fmt->bits[1];
785 fmt->bits[0] &= (u32)fbits;
786 fmt->bits[1] &= (u32)(fbits >> 32);
787 if (!fmt->bits[0] && !fmt->bits[1]) {
788 hwc_debug(" --> get empty\n");
789 return -EINVAL;
790 }
791 changed = (oldbits[0] != fmt->bits[0] || oldbits[1] != fmt->bits[1]);
792 hwc_debug(" --> %x:%x (changed = %d)\n", fmt->bits[0], fmt->bits[1], changed);
793 return changed;
794}
795
Takashi Iwaie4ea77f2021-01-11 09:16:11 +0100796static int hw_rule_format(struct snd_pcm_hw_params *params,
797 struct snd_pcm_hw_rule *rule)
798{
799 struct snd_usb_substream *subs = rule->private;
800 const struct audioformat *fp;
801 struct snd_mask *fmt = hw_param_mask(params, SNDRV_PCM_HW_PARAM_FORMAT);
802 u64 fbits;
803
804 hwc_debug("hw_rule_format: %x:%x\n", fmt->bits[0], fmt->bits[1]);
805 fbits = 0;
806 list_for_each_entry(fp, &subs->fmt_list, list) {
807 if (!hw_check_valid_format(subs, params, fp))
808 continue;
809 fbits |= fp->formats;
810 }
811 return apply_hw_params_format_bits(fmt, fbits);
812}
813
Daniel Macke5779992010-03-04 19:46:13 +0100814static int hw_rule_period_time(struct snd_pcm_hw_params *params,
815 struct snd_pcm_hw_rule *rule)
816{
817 struct snd_usb_substream *subs = rule->private;
Takashi Iwaicab941b2020-11-23 09:53:33 +0100818 const struct audioformat *fp;
Daniel Macke5779992010-03-04 19:46:13 +0100819 struct snd_interval *it;
820 unsigned char min_datainterval;
821 unsigned int pmin;
Daniel Macke5779992010-03-04 19:46:13 +0100822
823 it = hw_param_interval(params, SNDRV_PCM_HW_PARAM_PERIOD_TIME);
824 hwc_debug("hw_rule_period_time: (%u,%u)\n", it->min, it->max);
825 min_datainterval = 0xff;
826 list_for_each_entry(fp, &subs->fmt_list, list) {
827 if (!hw_check_valid_format(subs, params, fp))
828 continue;
829 min_datainterval = min(min_datainterval, fp->datainterval);
830 }
831 if (min_datainterval == 0xff) {
Uwe Kleine-Königa7ce2e02010-07-12 17:15:44 +0200832 hwc_debug(" --> get empty\n");
Daniel Macke5779992010-03-04 19:46:13 +0100833 it->empty = 1;
834 return -EINVAL;
835 }
836 pmin = 125 * (1 << min_datainterval);
Takashi Iwai7726dce2020-11-23 09:53:17 +0100837
838 return apply_hw_params_minmax(it, pmin, UINT_MAX);
Daniel Macke5779992010-03-04 19:46:13 +0100839}
840
Takashi Iwaie4ea77f2021-01-11 09:16:11 +0100841/* get the EP or the sync EP for implicit fb when it's already set up */
842static const struct snd_usb_endpoint *
843get_sync_ep_from_substream(struct snd_usb_substream *subs)
Takashi Iwai5a6c3e12020-11-23 09:53:16 +0100844{
845 struct snd_usb_audio *chip = subs->stream->chip;
Takashi Iwaicab941b2020-11-23 09:53:33 +0100846 const struct audioformat *fp;
Takashi Iwaie4ea77f2021-01-11 09:16:11 +0100847 const struct snd_usb_endpoint *ep;
Takashi Iwai5a6c3e12020-11-23 09:53:16 +0100848
Takashi Iwai5a6c3e12020-11-23 09:53:16 +0100849 list_for_each_entry(fp, &subs->fmt_list, list) {
Takashi Iwai54cb3192020-11-23 09:53:20 +0100850 ep = snd_usb_get_endpoint(chip, fp->endpoint);
Takashi Iwai5a6c3e12020-11-23 09:53:16 +0100851 if (ep && ep->cur_rate)
Takashi Iwaie4ea77f2021-01-11 09:16:11 +0100852 return ep;
Takashi Iwai5a6c3e12020-11-23 09:53:16 +0100853 if (!fp->implicit_fb)
854 continue;
855 /* for the implicit fb, check the sync ep as well */
Takashi Iwai54cb3192020-11-23 09:53:20 +0100856 ep = snd_usb_get_endpoint(chip, fp->sync_ep);
Takashi Iwai5a6c3e12020-11-23 09:53:16 +0100857 if (ep && ep->cur_rate)
Takashi Iwaie4ea77f2021-01-11 09:16:11 +0100858 return ep;
Takashi Iwai5a6c3e12020-11-23 09:53:16 +0100859 }
Takashi Iwaie4ea77f2021-01-11 09:16:11 +0100860 return NULL;
861}
Takashi Iwai5a6c3e12020-11-23 09:53:16 +0100862
Takashi Iwaie4ea77f2021-01-11 09:16:11 +0100863/* additional hw constraints for implicit feedback mode */
864static int hw_rule_format_implicit_fb(struct snd_pcm_hw_params *params,
865 struct snd_pcm_hw_rule *rule)
866{
867 struct snd_usb_substream *subs = rule->private;
868 const struct snd_usb_endpoint *ep;
869 struct snd_mask *fmt = hw_param_mask(params, SNDRV_PCM_HW_PARAM_FORMAT);
870
871 ep = get_sync_ep_from_substream(subs);
872 if (!ep)
Takashi Iwai5a6c3e12020-11-23 09:53:16 +0100873 return 0;
Takashi Iwai5a6c3e12020-11-23 09:53:16 +0100874
Takashi Iwaie4ea77f2021-01-11 09:16:11 +0100875 hwc_debug("applying %s\n", __func__);
876 return apply_hw_params_format_bits(fmt, pcm_format_to_bits(ep->cur_format));
877}
Takashi Iwai5a6c3e12020-11-23 09:53:16 +0100878
Takashi Iwaie4ea77f2021-01-11 09:16:11 +0100879static int hw_rule_rate_implicit_fb(struct snd_pcm_hw_params *params,
880 struct snd_pcm_hw_rule *rule)
881{
882 struct snd_usb_substream *subs = rule->private;
883 const struct snd_usb_endpoint *ep;
884 struct snd_interval *it;
Takashi Iwaibf6313a2020-11-23 09:53:31 +0100885
Takashi Iwaie4ea77f2021-01-11 09:16:11 +0100886 ep = get_sync_ep_from_substream(subs);
887 if (!ep)
888 return 0;
Takashi Iwai5a6c3e12020-11-23 09:53:16 +0100889
Takashi Iwaie4ea77f2021-01-11 09:16:11 +0100890 hwc_debug("applying %s\n", __func__);
891 it = hw_param_interval(params, SNDRV_PCM_HW_PARAM_RATE);
892 return apply_hw_params_minmax(it, ep->cur_rate, ep->cur_rate);
893}
Takashi Iwai5a6c3e12020-11-23 09:53:16 +0100894
Takashi Iwaie4ea77f2021-01-11 09:16:11 +0100895static int hw_rule_period_size_implicit_fb(struct snd_pcm_hw_params *params,
896 struct snd_pcm_hw_rule *rule)
897{
898 struct snd_usb_substream *subs = rule->private;
899 const struct snd_usb_endpoint *ep;
900 struct snd_interval *it;
901
902 ep = get_sync_ep_from_substream(subs);
903 if (!ep)
904 return 0;
905
906 hwc_debug("applying %s\n", __func__);
907 it = hw_param_interval(params, SNDRV_PCM_HW_PARAM_PERIOD_SIZE);
908 return apply_hw_params_minmax(it, ep->cur_period_frames,
909 ep->cur_period_frames);
910}
911
912static int hw_rule_periods_implicit_fb(struct snd_pcm_hw_params *params,
913 struct snd_pcm_hw_rule *rule)
914{
915 struct snd_usb_substream *subs = rule->private;
916 const struct snd_usb_endpoint *ep;
917 struct snd_interval *it;
918
919 ep = get_sync_ep_from_substream(subs);
920 if (!ep)
921 return 0;
922
923 hwc_debug("applying %s\n", __func__);
924 it = hw_param_interval(params, SNDRV_PCM_HW_PARAM_PERIODS);
925 return apply_hw_params_minmax(it, ep->cur_buffer_periods,
926 ep->cur_buffer_periods);
Takashi Iwai5a6c3e12020-11-23 09:53:16 +0100927}
Daniel Macke5779992010-03-04 19:46:13 +0100928
929/*
930 * set up the runtime hardware information.
931 */
932
933static int setup_hw_info(struct snd_pcm_runtime *runtime, struct snd_usb_substream *subs)
934{
Takashi Iwaicab941b2020-11-23 09:53:33 +0100935 const struct audioformat *fp;
Daniel Macke5779992010-03-04 19:46:13 +0100936 unsigned int pt, ptmin;
Takashi Iwai5a6c3e12020-11-23 09:53:16 +0100937 int param_period_time_if_needed = -1;
Daniel Macke5779992010-03-04 19:46:13 +0100938 int err;
939
940 runtime->hw.formats = subs->formats;
941
942 runtime->hw.rate_min = 0x7fffffff;
943 runtime->hw.rate_max = 0;
944 runtime->hw.channels_min = 256;
945 runtime->hw.channels_max = 0;
946 runtime->hw.rates = 0;
947 ptmin = UINT_MAX;
948 /* check min/max rates and channels */
Eldad Zack88766f02013-04-03 23:18:49 +0200949 list_for_each_entry(fp, &subs->fmt_list, list) {
Daniel Macke5779992010-03-04 19:46:13 +0100950 runtime->hw.rates |= fp->rates;
951 if (runtime->hw.rate_min > fp->rate_min)
952 runtime->hw.rate_min = fp->rate_min;
953 if (runtime->hw.rate_max < fp->rate_max)
954 runtime->hw.rate_max = fp->rate_max;
955 if (runtime->hw.channels_min > fp->channels)
956 runtime->hw.channels_min = fp->channels;
957 if (runtime->hw.channels_max < fp->channels)
958 runtime->hw.channels_max = fp->channels;
959 if (fp->fmt_type == UAC_FORMAT_TYPE_II && fp->frame_size > 0) {
960 /* FIXME: there might be more than one audio formats... */
961 runtime->hw.period_bytes_min = runtime->hw.period_bytes_max =
962 fp->frame_size;
963 }
964 pt = 125 * (1 << fp->datainterval);
965 ptmin = min(ptmin, pt);
966 }
967
968 param_period_time_if_needed = SNDRV_PCM_HW_PARAM_PERIOD_TIME;
Takashi Iwai978520b2012-10-12 15:12:55 +0200969 if (subs->speed == USB_SPEED_FULL)
Daniel Macke5779992010-03-04 19:46:13 +0100970 /* full speed devices have fixed data packet interval */
971 ptmin = 1000;
972 if (ptmin == 1000)
973 /* if period time doesn't go below 1 ms, no rules needed */
974 param_period_time_if_needed = -1;
Daniel Macke5779992010-03-04 19:46:13 +0100975
Takashi Iwaie92be812018-05-27 15:09:15 +0200976 err = snd_pcm_hw_constraint_minmax(runtime,
977 SNDRV_PCM_HW_PARAM_PERIOD_TIME,
978 ptmin, UINT_MAX);
979 if (err < 0)
980 return err;
981
982 err = snd_pcm_hw_rule_add(runtime, 0, SNDRV_PCM_HW_PARAM_RATE,
983 hw_rule_rate, subs,
984 SNDRV_PCM_HW_PARAM_FORMAT,
985 SNDRV_PCM_HW_PARAM_CHANNELS,
986 param_period_time_if_needed,
987 -1);
988 if (err < 0)
989 return err;
Takashi Iwai5a6c3e12020-11-23 09:53:16 +0100990
Takashi Iwaie92be812018-05-27 15:09:15 +0200991 err = snd_pcm_hw_rule_add(runtime, 0, SNDRV_PCM_HW_PARAM_CHANNELS,
992 hw_rule_channels, subs,
993 SNDRV_PCM_HW_PARAM_FORMAT,
994 SNDRV_PCM_HW_PARAM_RATE,
995 param_period_time_if_needed,
996 -1);
997 if (err < 0)
998 return err;
999 err = snd_pcm_hw_rule_add(runtime, 0, SNDRV_PCM_HW_PARAM_FORMAT,
1000 hw_rule_format, subs,
1001 SNDRV_PCM_HW_PARAM_RATE,
1002 SNDRV_PCM_HW_PARAM_CHANNELS,
1003 param_period_time_if_needed,
1004 -1);
1005 if (err < 0)
1006 return err;
Daniel Macke5779992010-03-04 19:46:13 +01001007 if (param_period_time_if_needed >= 0) {
1008 err = snd_pcm_hw_rule_add(runtime, 0,
1009 SNDRV_PCM_HW_PARAM_PERIOD_TIME,
1010 hw_rule_period_time, subs,
1011 SNDRV_PCM_HW_PARAM_FORMAT,
1012 SNDRV_PCM_HW_PARAM_CHANNELS,
1013 SNDRV_PCM_HW_PARAM_RATE,
1014 -1);
1015 if (err < 0)
Takashi Iwaie92be812018-05-27 15:09:15 +02001016 return err;
Daniel Macke5779992010-03-04 19:46:13 +01001017 }
Oliver Neukum88a85162011-03-11 14:51:12 +01001018
Takashi Iwaie4ea77f2021-01-11 09:16:11 +01001019 /* additional hw constraints for implicit fb */
1020 err = snd_pcm_hw_rule_add(runtime, 0, SNDRV_PCM_HW_PARAM_FORMAT,
1021 hw_rule_format_implicit_fb, subs,
1022 SNDRV_PCM_HW_PARAM_FORMAT, -1);
1023 if (err < 0)
1024 return err;
1025 err = snd_pcm_hw_rule_add(runtime, 0, SNDRV_PCM_HW_PARAM_RATE,
1026 hw_rule_rate_implicit_fb, subs,
1027 SNDRV_PCM_HW_PARAM_RATE, -1);
1028 if (err < 0)
1029 return err;
1030 err = snd_pcm_hw_rule_add(runtime, 0, SNDRV_PCM_HW_PARAM_PERIOD_SIZE,
1031 hw_rule_period_size_implicit_fb, subs,
1032 SNDRV_PCM_HW_PARAM_PERIOD_SIZE, -1);
1033 if (err < 0)
1034 return err;
1035 err = snd_pcm_hw_rule_add(runtime, 0, SNDRV_PCM_HW_PARAM_PERIODS,
1036 hw_rule_periods_implicit_fb, subs,
1037 SNDRV_PCM_HW_PARAM_PERIODS, -1);
1038 if (err < 0)
1039 return err;
1040
Takashi Iwai18652112020-11-23 09:53:15 +01001041 return 0;
Daniel Macke5779992010-03-04 19:46:13 +01001042}
1043
Takashi Iwai6fddc792018-05-27 13:59:03 +02001044static int snd_usb_pcm_open(struct snd_pcm_substream *substream)
Daniel Macke5779992010-03-04 19:46:13 +01001045{
Takashi Iwai6fddc792018-05-27 13:59:03 +02001046 int direction = substream->stream;
Daniel Macke5779992010-03-04 19:46:13 +01001047 struct snd_usb_stream *as = snd_pcm_substream_chip(substream);
1048 struct snd_pcm_runtime *runtime = substream->runtime;
1049 struct snd_usb_substream *subs = &as->substream[direction];
Shuah Khan66354f12019-04-01 20:40:22 -04001050 int ret;
Daniel Macke5779992010-03-04 19:46:13 +01001051
Daniel Macke5779992010-03-04 19:46:13 +01001052 runtime->hw = snd_usb_hardware;
1053 runtime->private_data = subs;
1054 subs->pcm_substream = substream;
Oliver Neukum88a85162011-03-11 14:51:12 +01001055 /* runtime PM is also done there */
Daniel Mackd24f5062013-04-17 00:01:38 +08001056
1057 /* initialize DSD/DOP context */
1058 subs->dsd_dop.byte_idx = 0;
1059 subs->dsd_dop.channel = 0;
1060 subs->dsd_dop.marker = 1;
1061
Shuah Khan66354f12019-04-01 20:40:22 -04001062 ret = setup_hw_info(runtime, subs);
Takashi Iwai18652112020-11-23 09:53:15 +01001063 if (ret < 0)
1064 return ret;
1065 ret = snd_usb_autoresume(subs->stream->chip);
1066 if (ret < 0)
1067 return ret;
1068 ret = snd_media_stream_init(subs, as->pcm, direction);
1069 if (ret < 0)
1070 snd_usb_autosuspend(subs->stream->chip);
Shuah Khan66354f12019-04-01 20:40:22 -04001071 return ret;
Daniel Macke5779992010-03-04 19:46:13 +01001072}
1073
Takashi Iwai6fddc792018-05-27 13:59:03 +02001074static int snd_usb_pcm_close(struct snd_pcm_substream *substream)
Daniel Macke5779992010-03-04 19:46:13 +01001075{
Takashi Iwai6fddc792018-05-27 13:59:03 +02001076 int direction = substream->stream;
Daniel Macke5779992010-03-04 19:46:13 +01001077 struct snd_usb_stream *as = snd_pcm_substream_chip(substream);
1078 struct snd_usb_substream *subs = &as->substream[direction];
Jorge Sanjuana0a49592018-07-31 13:28:45 +01001079 int ret;
Daniel Macke5779992010-03-04 19:46:13 +01001080
Shuah Khan66354f12019-04-01 20:40:22 -04001081 snd_media_stop_pipeline(subs);
Daniel Mack68e67f42012-07-12 13:08:40 +02001082
Takashi Iwaibf6313a2020-11-23 09:53:31 +01001083 if (!snd_usb_lock_shutdown(subs->stream->chip)) {
Jorge Sanjuana0a49592018-07-31 13:28:45 +01001084 ret = snd_usb_pcm_change_state(subs, UAC3_PD_STATE_D1);
Takashi Iwai47ab1542015-08-25 16:09:00 +02001085 snd_usb_unlock_shutdown(subs->stream->chip);
Jorge Sanjuana0a49592018-07-31 13:28:45 +01001086 if (ret < 0)
1087 return ret;
Daniel Mack68e67f42012-07-12 13:08:40 +02001088 }
1089
Daniel Macke5779992010-03-04 19:46:13 +01001090 subs->pcm_substream = NULL;
Oliver Neukum88a85162011-03-11 14:51:12 +01001091 snd_usb_autosuspend(subs->stream->chip);
Daniel Mackedcd3632012-04-12 13:51:12 +02001092
Daniel Mack68e67f42012-07-12 13:08:40 +02001093 return 0;
Daniel Mackedcd3632012-04-12 13:51:12 +02001094}
1095
1096/* Since a URB can handle only a single linear buffer, we must use double
1097 * buffering when the data to be transferred overflows the buffer boundary.
1098 * To avoid inconsistencies when updating hwptr_done, we use double buffering
1099 * for all URBs.
1100 */
1101static void retire_capture_urb(struct snd_usb_substream *subs,
1102 struct urb *urb)
1103{
1104 struct snd_pcm_runtime *runtime = subs->pcm_substream->runtime;
1105 unsigned int stride, frames, bytes, oldptr;
1106 int i, period_elapsed = 0;
1107 unsigned long flags;
1108 unsigned char *cp;
Pierre-Louis Bossarte4cc6152012-12-19 11:39:05 -06001109 int current_frame_number;
1110
1111 /* read frame number here, update pointer in critical section */
1112 current_frame_number = usb_get_current_frame_number(subs->dev);
Daniel Mackedcd3632012-04-12 13:51:12 +02001113
1114 stride = runtime->frame_bits >> 3;
1115
1116 for (i = 0; i < urb->number_of_packets; i++) {
Calvin Owens1539d4f2013-04-12 22:33:59 -05001117 cp = (unsigned char *)urb->transfer_buffer + urb->iso_frame_desc[i].offset + subs->pkt_offset_adj;
Daniel Mackedcd3632012-04-12 13:51:12 +02001118 if (urb->iso_frame_desc[i].status && printk_ratelimit()) {
Takashi Iwai0ba41d92014-02-26 13:02:17 +01001119 dev_dbg(&subs->dev->dev, "frame %d active: %d\n",
1120 i, urb->iso_frame_desc[i].status);
Daniel Mackedcd3632012-04-12 13:51:12 +02001121 // continue;
1122 }
1123 bytes = urb->iso_frame_desc[i].actual_length;
Hector Martin1b7ecc22020-08-10 17:24:00 +09001124 if (subs->stream_offset_adj > 0) {
1125 unsigned int adj = min(subs->stream_offset_adj, bytes);
1126 cp += adj;
1127 bytes -= adj;
1128 subs->stream_offset_adj -= adj;
1129 }
Daniel Mackedcd3632012-04-12 13:51:12 +02001130 frames = bytes / stride;
1131 if (!subs->txfr_quirk)
1132 bytes = frames * stride;
1133 if (bytes % (runtime->sample_bits >> 3) != 0) {
Daniel Mackedcd3632012-04-12 13:51:12 +02001134 int oldbytes = bytes;
Daniel Mackedcd3632012-04-12 13:51:12 +02001135 bytes = frames * stride;
Takashi Iwai377a8792018-05-16 20:07:18 +02001136 dev_warn_ratelimited(&subs->dev->dev,
Takashi Iwai0ba41d92014-02-26 13:02:17 +01001137 "Corrected urb data len. %d->%d\n",
Daniel Mackedcd3632012-04-12 13:51:12 +02001138 oldbytes, bytes);
1139 }
1140 /* update the current pointer */
1141 spin_lock_irqsave(&subs->lock, flags);
1142 oldptr = subs->hwptr_done;
1143 subs->hwptr_done += bytes;
1144 if (subs->hwptr_done >= runtime->buffer_size * stride)
1145 subs->hwptr_done -= runtime->buffer_size * stride;
1146 frames = (bytes + (oldptr % stride)) / stride;
1147 subs->transfer_done += frames;
1148 if (subs->transfer_done >= runtime->period_size) {
1149 subs->transfer_done -= runtime->period_size;
1150 period_elapsed = 1;
1151 }
Pierre-Louis Bossarte4cc6152012-12-19 11:39:05 -06001152 /* capture delay is by construction limited to one URB,
1153 * reset delays here
1154 */
1155 runtime->delay = subs->last_delay = 0;
1156
1157 /* realign last_frame_number */
1158 subs->last_frame_number = current_frame_number;
1159 subs->last_frame_number &= 0xFF; /* keep 8 LSBs */
1160
Daniel Mackedcd3632012-04-12 13:51:12 +02001161 spin_unlock_irqrestore(&subs->lock, flags);
1162 /* copy a data chunk */
1163 if (oldptr + bytes > runtime->buffer_size * stride) {
1164 unsigned int bytes1 =
1165 runtime->buffer_size * stride - oldptr;
1166 memcpy(runtime->dma_area + oldptr, cp, bytes1);
1167 memcpy(runtime->dma_area, cp + bytes1, bytes - bytes1);
1168 } else {
1169 memcpy(runtime->dma_area + oldptr, cp, bytes);
1170 }
1171 }
1172
1173 if (period_elapsed)
1174 snd_pcm_period_elapsed(subs->pcm_substream);
1175}
1176
Daniel Mackd24f5062013-04-17 00:01:38 +08001177static inline void fill_playback_urb_dsd_dop(struct snd_usb_substream *subs,
1178 struct urb *urb, unsigned int bytes)
1179{
1180 struct snd_pcm_runtime *runtime = subs->pcm_substream->runtime;
1181 unsigned int stride = runtime->frame_bits >> 3;
1182 unsigned int dst_idx = 0;
1183 unsigned int src_idx = subs->hwptr_done;
1184 unsigned int wrap = runtime->buffer_size * stride;
1185 u8 *dst = urb->transfer_buffer;
1186 u8 *src = runtime->dma_area;
1187 u8 marker[] = { 0x05, 0xfa };
1188
1189 /*
1190 * The DSP DOP format defines a way to transport DSD samples over
1191 * normal PCM data endpoints. It requires stuffing of marker bytes
1192 * (0x05 and 0xfa, alternating per sample frame), and then expects
1193 * 2 additional bytes of actual payload. The whole frame is stored
1194 * LSB.
1195 *
1196 * Hence, for a stereo transport, the buffer layout looks like this,
1197 * where L refers to left channel samples and R to right.
1198 *
1199 * L1 L2 0x05 R1 R2 0x05 L3 L4 0xfa R3 R4 0xfa
1200 * L5 L6 0x05 R5 R6 0x05 L7 L8 0xfa R7 R8 0xfa
1201 * .....
1202 *
1203 */
1204
1205 while (bytes--) {
1206 if (++subs->dsd_dop.byte_idx == 3) {
1207 /* frame boundary? */
1208 dst[dst_idx++] = marker[subs->dsd_dop.marker];
1209 src_idx += 2;
1210 subs->dsd_dop.byte_idx = 0;
1211
1212 if (++subs->dsd_dop.channel % runtime->channels == 0) {
1213 /* alternate the marker */
1214 subs->dsd_dop.marker++;
1215 subs->dsd_dop.marker %= ARRAY_SIZE(marker);
1216 subs->dsd_dop.channel = 0;
1217 }
1218 } else {
1219 /* stuff the DSD payload */
1220 int idx = (src_idx + subs->dsd_dop.byte_idx - 1) % wrap;
Daniel Mack44dcbbb2013-04-17 00:01:39 +08001221
1222 if (subs->cur_audiofmt->dsd_bitrev)
1223 dst[dst_idx++] = bitrev8(src[idx]);
1224 else
1225 dst[dst_idx++] = src[idx];
1226
Daniel Mackd24f5062013-04-17 00:01:38 +08001227 subs->hwptr_done++;
1228 }
1229 }
Ricard Wanderlof4c4e4392015-10-19 08:52:50 +02001230 if (subs->hwptr_done >= runtime->buffer_size * stride)
1231 subs->hwptr_done -= runtime->buffer_size * stride;
Daniel Mackd24f5062013-04-17 00:01:38 +08001232}
1233
Ricard Wanderlofb97a9362015-10-19 08:52:52 +02001234static void copy_to_urb(struct snd_usb_substream *subs, struct urb *urb,
1235 int offset, int stride, unsigned int bytes)
Ricard Wanderlof07a40c2f2015-10-19 08:52:49 +02001236{
1237 struct snd_pcm_runtime *runtime = subs->pcm_substream->runtime;
1238
1239 if (subs->hwptr_done + bytes > runtime->buffer_size * stride) {
1240 /* err, the transferred area goes over buffer boundary. */
1241 unsigned int bytes1 =
1242 runtime->buffer_size * stride - subs->hwptr_done;
Ricard Wanderlofb97a9362015-10-19 08:52:52 +02001243 memcpy(urb->transfer_buffer + offset,
Ricard Wanderlof07a40c2f2015-10-19 08:52:49 +02001244 runtime->dma_area + subs->hwptr_done, bytes1);
Ricard Wanderlofb97a9362015-10-19 08:52:52 +02001245 memcpy(urb->transfer_buffer + offset + bytes1,
Ricard Wanderlof07a40c2f2015-10-19 08:52:49 +02001246 runtime->dma_area, bytes - bytes1);
1247 } else {
Ricard Wanderlofb97a9362015-10-19 08:52:52 +02001248 memcpy(urb->transfer_buffer + offset,
Ricard Wanderlof07a40c2f2015-10-19 08:52:49 +02001249 runtime->dma_area + subs->hwptr_done, bytes);
1250 }
1251 subs->hwptr_done += bytes;
Ricard Wanderlof4c4e4392015-10-19 08:52:50 +02001252 if (subs->hwptr_done >= runtime->buffer_size * stride)
1253 subs->hwptr_done -= runtime->buffer_size * stride;
Ricard Wanderlof07a40c2f2015-10-19 08:52:49 +02001254}
1255
Ricard Wanderlofe0570442015-10-19 08:52:53 +02001256static unsigned int copy_to_urb_quirk(struct snd_usb_substream *subs,
1257 struct urb *urb, int stride,
1258 unsigned int bytes)
1259{
1260 __le32 packet_length;
1261 int i;
1262
1263 /* Put __le32 length descriptor at start of each packet. */
1264 for (i = 0; i < urb->number_of_packets; i++) {
1265 unsigned int length = urb->iso_frame_desc[i].length;
1266 unsigned int offset = urb->iso_frame_desc[i].offset;
1267
1268 packet_length = cpu_to_le32(length);
1269 offset += i * sizeof(packet_length);
1270 urb->iso_frame_desc[i].offset = offset;
1271 urb->iso_frame_desc[i].length += sizeof(packet_length);
1272 memcpy(urb->transfer_buffer + offset,
1273 &packet_length, sizeof(packet_length));
1274 copy_to_urb(subs, urb, offset + sizeof(packet_length),
1275 stride, length);
1276 }
1277 /* Adjust transfer size accordingly. */
1278 bytes += urb->number_of_packets * sizeof(packet_length);
1279 return bytes;
1280}
1281
Daniel Mackedcd3632012-04-12 13:51:12 +02001282static void prepare_playback_urb(struct snd_usb_substream *subs,
1283 struct urb *urb)
1284{
1285 struct snd_pcm_runtime *runtime = subs->pcm_substream->runtime;
Daniel Mack245baf92012-08-30 18:52:30 +02001286 struct snd_usb_endpoint *ep = subs->data_endpoint;
Daniel Mackedcd3632012-04-12 13:51:12 +02001287 struct snd_urb_ctx *ctx = urb->context;
1288 unsigned int counts, frames, bytes;
1289 int i, stride, period_elapsed = 0;
1290 unsigned long flags;
1291
1292 stride = runtime->frame_bits >> 3;
1293
1294 frames = 0;
1295 urb->number_of_packets = 0;
1296 spin_lock_irqsave(&subs->lock, flags);
Alan Stern976b6c02013-09-24 15:51:58 -04001297 subs->frame_limit += ep->max_urb_frames;
Daniel Mackedcd3632012-04-12 13:51:12 +02001298 for (i = 0; i < ctx->packets; i++) {
Takashi Iwai3d587602020-11-23 09:53:37 +01001299 counts = snd_usb_endpoint_next_packet_size(ep, ctx, i);
Daniel Mackedcd3632012-04-12 13:51:12 +02001300 /* set up descriptor */
Daniel Mack8a2a74d2013-04-17 00:01:37 +08001301 urb->iso_frame_desc[i].offset = frames * ep->stride;
1302 urb->iso_frame_desc[i].length = counts * ep->stride;
Daniel Mackedcd3632012-04-12 13:51:12 +02001303 frames += counts;
1304 urb->number_of_packets++;
1305 subs->transfer_done += counts;
1306 if (subs->transfer_done >= runtime->period_size) {
1307 subs->transfer_done -= runtime->period_size;
Alan Stern976b6c02013-09-24 15:51:58 -04001308 subs->frame_limit = 0;
Daniel Mackedcd3632012-04-12 13:51:12 +02001309 period_elapsed = 1;
1310 if (subs->fmt_type == UAC_FORMAT_TYPE_II) {
1311 if (subs->transfer_done > 0) {
1312 /* FIXME: fill-max mode is not
1313 * supported yet */
1314 frames -= subs->transfer_done;
1315 counts -= subs->transfer_done;
1316 urb->iso_frame_desc[i].length =
Daniel Mack8a2a74d2013-04-17 00:01:37 +08001317 counts * ep->stride;
Daniel Mackedcd3632012-04-12 13:51:12 +02001318 subs->transfer_done = 0;
1319 }
1320 i++;
1321 if (i < ctx->packets) {
1322 /* add a transfer delimiter */
1323 urb->iso_frame_desc[i].offset =
Daniel Mack8a2a74d2013-04-17 00:01:37 +08001324 frames * ep->stride;
Daniel Mackedcd3632012-04-12 13:51:12 +02001325 urb->iso_frame_desc[i].length = 0;
1326 urb->number_of_packets++;
1327 }
1328 break;
1329 }
1330 }
Alan Stern976b6c02013-09-24 15:51:58 -04001331 /* finish at the period boundary or after enough frames */
1332 if ((period_elapsed ||
1333 subs->transfer_done >= subs->frame_limit) &&
1334 !snd_usb_endpoint_implicit_feedback_sink(ep))
Daniel Mackedcd3632012-04-12 13:51:12 +02001335 break;
1336 }
Daniel Mack8a2a74d2013-04-17 00:01:37 +08001337 bytes = frames * ep->stride;
Daniel Mackd24f5062013-04-17 00:01:38 +08001338
Takashi Iwai6aa719d2020-11-23 09:53:36 +01001339 if (unlikely(ep->cur_format == SNDRV_PCM_FORMAT_DSD_U16_LE &&
Daniel Mackd24f5062013-04-17 00:01:38 +08001340 subs->cur_audiofmt->dsd_dop)) {
1341 fill_playback_urb_dsd_dop(subs, urb, bytes);
Takashi Iwai6aa719d2020-11-23 09:53:36 +01001342 } else if (unlikely(ep->cur_format == SNDRV_PCM_FORMAT_DSD_U8 &&
Daniel Mack44dcbbb2013-04-17 00:01:39 +08001343 subs->cur_audiofmt->dsd_bitrev)) {
1344 /* bit-reverse the bytes */
1345 u8 *buf = urb->transfer_buffer;
1346 for (i = 0; i < bytes; i++) {
1347 int idx = (subs->hwptr_done + i)
1348 % (runtime->buffer_size * stride);
1349 buf[i] = bitrev8(runtime->dma_area[idx]);
1350 }
1351
1352 subs->hwptr_done += bytes;
Ricard Wanderlof4c4e4392015-10-19 08:52:50 +02001353 if (subs->hwptr_done >= runtime->buffer_size * stride)
1354 subs->hwptr_done -= runtime->buffer_size * stride;
Daniel Mackedcd3632012-04-12 13:51:12 +02001355 } else {
Daniel Mackd24f5062013-04-17 00:01:38 +08001356 /* usual PCM */
Ricard Wanderlofe0570442015-10-19 08:52:53 +02001357 if (!subs->tx_length_quirk)
1358 copy_to_urb(subs, urb, 0, stride, bytes);
1359 else
1360 bytes = copy_to_urb_quirk(subs, urb, stride, bytes);
1361 /* bytes is now amount of outgoing data */
Daniel Mackedcd3632012-04-12 13:51:12 +02001362 }
Daniel Mackd24f5062013-04-17 00:01:38 +08001363
Daniel Mackfbcfbf52012-08-30 18:52:29 +02001364 /* update delay with exact number of samples queued */
1365 runtime->delay = subs->last_delay;
Daniel Mackedcd3632012-04-12 13:51:12 +02001366 runtime->delay += frames;
Daniel Mackfbcfbf52012-08-30 18:52:29 +02001367 subs->last_delay = runtime->delay;
1368
1369 /* realign last_frame_number */
1370 subs->last_frame_number = usb_get_current_frame_number(subs->dev);
1371 subs->last_frame_number &= 0xFF; /* keep 8 LSBs */
1372
Pierre-Louis Bossartea33d352015-02-06 15:55:53 -06001373 if (subs->trigger_tstamp_pending_update) {
1374 /* this is the first actual URB submitted,
1375 * update trigger timestamp to reflect actual start time
1376 */
1377 snd_pcm_gettime(runtime, &runtime->trigger_tstamp);
1378 subs->trigger_tstamp_pending_update = false;
1379 }
1380
Daniel Mackedcd3632012-04-12 13:51:12 +02001381 spin_unlock_irqrestore(&subs->lock, flags);
1382 urb->transfer_buffer_length = bytes;
1383 if (period_elapsed)
1384 snd_pcm_period_elapsed(subs->pcm_substream);
1385}
1386
1387/*
1388 * process after playback data complete
1389 * - decrease the delay count again
1390 */
1391static void retire_playback_urb(struct snd_usb_substream *subs,
1392 struct urb *urb)
1393{
1394 unsigned long flags;
1395 struct snd_pcm_runtime *runtime = subs->pcm_substream->runtime;
Daniel Mack8a2a74d2013-04-17 00:01:37 +08001396 struct snd_usb_endpoint *ep = subs->data_endpoint;
1397 int processed = urb->transfer_buffer_length / ep->stride;
Daniel Mackfbcfbf52012-08-30 18:52:29 +02001398 int est_delay;
Daniel Mackedcd3632012-04-12 13:51:12 +02001399
Alexander Tsoy5ff40e62020-06-29 06:26:07 +03001400 /* ignore the delay accounting when processed=0 is given, i.e.
1401 * silent payloads are processed before handling the actual data
Takashi Iwai1213a202012-09-06 14:58:00 +02001402 */
1403 if (!processed)
1404 return;
1405
Daniel Mackedcd3632012-04-12 13:51:12 +02001406 spin_lock_irqsave(&subs->lock, flags);
Takashi Iwai48779a02012-11-23 16:00:37 +01001407 if (!subs->last_delay)
1408 goto out; /* short path */
1409
Daniel Mackfbcfbf52012-08-30 18:52:29 +02001410 est_delay = snd_usb_pcm_delay(subs, runtime->rate);
1411 /* update delay with exact number of samples played */
1412 if (processed > subs->last_delay)
1413 subs->last_delay = 0;
Daniel Mackedcd3632012-04-12 13:51:12 +02001414 else
Daniel Mackfbcfbf52012-08-30 18:52:29 +02001415 subs->last_delay -= processed;
1416 runtime->delay = subs->last_delay;
1417
1418 /*
1419 * Report when delay estimate is off by more than 2ms.
1420 * The error should be lower than 2ms since the estimate relies
1421 * on two reads of a counter updated every ms.
1422 */
Sander Eikelenboomb7a77232014-05-02 15:09:27 +02001423 if (abs(est_delay - subs->last_delay) * 1000 > runtime->rate * 2)
1424 dev_dbg_ratelimited(&subs->dev->dev,
Takashi Iwai0ba41d92014-02-26 13:02:17 +01001425 "delay: estimated %d, actual %d\n",
Daniel Mackfbcfbf52012-08-30 18:52:29 +02001426 est_delay, subs->last_delay);
1427
Takashi Iwai48779a02012-11-23 16:00:37 +01001428 if (!subs->running) {
1429 /* update last_frame_number for delay counting here since
1430 * prepare_playback_urb won't be called during pause
1431 */
1432 subs->last_frame_number =
1433 usb_get_current_frame_number(subs->dev) & 0xff;
1434 }
1435
1436 out:
Daniel Mackedcd3632012-04-12 13:51:12 +02001437 spin_unlock_irqrestore(&subs->lock, flags);
Daniel Macke5779992010-03-04 19:46:13 +01001438}
1439
Daniel Mackedcd3632012-04-12 13:51:12 +02001440static int snd_usb_substream_playback_trigger(struct snd_pcm_substream *substream,
1441 int cmd)
1442{
1443 struct snd_usb_substream *subs = substream->runtime->private_data;
1444
1445 switch (cmd) {
1446 case SNDRV_PCM_TRIGGER_START:
Pierre-Louis Bossartea33d352015-02-06 15:55:53 -06001447 subs->trigger_tstamp_pending_update = true;
Gustavo A. R. Silvac0dbbda2020-07-08 15:32:36 -05001448 fallthrough;
Daniel Mackedcd3632012-04-12 13:51:12 +02001449 case SNDRV_PCM_TRIGGER_PAUSE_RELEASE:
Takashi Iwai96e221f2020-11-23 09:53:28 +01001450 snd_usb_endpoint_set_callback(subs->data_endpoint,
1451 prepare_playback_urb,
1452 retire_playback_urb,
1453 subs);
Daniel Mack97f8d3b2012-05-21 12:47:36 +02001454 subs->running = 1;
Takashi Iwaibf6313a2020-11-23 09:53:31 +01001455 dev_dbg(&subs->dev->dev, "%d:%d Start Playback PCM\n",
1456 subs->cur_audiofmt->iface,
1457 subs->cur_audiofmt->altsetting);
Daniel Mackedcd3632012-04-12 13:51:12 +02001458 return 0;
Takashi Iwai75c16b52020-11-23 09:53:29 +01001459 case SNDRV_PCM_TRIGGER_SUSPEND:
Daniel Mackedcd3632012-04-12 13:51:12 +02001460 case SNDRV_PCM_TRIGGER_STOP:
Takashi Iwaidc5eafe2019-12-10 07:34:54 +01001461 stop_endpoints(subs);
Takashi Iwai96e221f2020-11-23 09:53:28 +01001462 snd_usb_endpoint_set_callback(subs->data_endpoint,
1463 NULL, NULL, NULL);
Daniel Mack97f8d3b2012-05-21 12:47:36 +02001464 subs->running = 0;
Takashi Iwaibf6313a2020-11-23 09:53:31 +01001465 dev_dbg(&subs->dev->dev, "%d:%d Stop Playback PCM\n",
1466 subs->cur_audiofmt->iface,
1467 subs->cur_audiofmt->altsetting);
Daniel Mackedcd3632012-04-12 13:51:12 +02001468 return 0;
1469 case SNDRV_PCM_TRIGGER_PAUSE_PUSH:
Takashi Iwai48779a02012-11-23 16:00:37 +01001470 /* keep retire_data_urb for delay calculation */
Takashi Iwai96e221f2020-11-23 09:53:28 +01001471 snd_usb_endpoint_set_callback(subs->data_endpoint,
1472 NULL,
1473 retire_playback_urb,
1474 subs);
Daniel Mack97f8d3b2012-05-21 12:47:36 +02001475 subs->running = 0;
Takashi Iwaibf6313a2020-11-23 09:53:31 +01001476 dev_dbg(&subs->dev->dev, "%d:%d Pause Playback PCM\n",
1477 subs->cur_audiofmt->iface,
1478 subs->cur_audiofmt->altsetting);
Daniel Mackedcd3632012-04-12 13:51:12 +02001479 return 0;
1480 }
1481
1482 return -EINVAL;
1483}
1484
Daniel Mackafe25962012-06-16 16:58:04 +02001485static int snd_usb_substream_capture_trigger(struct snd_pcm_substream *substream,
1486 int cmd)
Daniel Mackedcd3632012-04-12 13:51:12 +02001487{
1488 int err;
1489 struct snd_usb_substream *subs = substream->runtime->private_data;
1490
1491 switch (cmd) {
1492 case SNDRV_PCM_TRIGGER_START:
Ioan-Adrian Ratiu1d0f9532017-01-05 00:37:46 +02001493 err = start_endpoints(subs);
Daniel Mackedcd3632012-04-12 13:51:12 +02001494 if (err < 0)
1495 return err;
Takashi Iwai96e221f2020-11-23 09:53:28 +01001496 fallthrough;
1497 case SNDRV_PCM_TRIGGER_PAUSE_RELEASE:
1498 snd_usb_endpoint_set_callback(subs->data_endpoint,
1499 NULL, retire_capture_urb,
1500 subs);
Daniel Mack97f8d3b2012-05-21 12:47:36 +02001501 subs->running = 1;
Takashi Iwaibf6313a2020-11-23 09:53:31 +01001502 dev_dbg(&subs->dev->dev, "%d:%d Start Capture PCM\n",
1503 subs->cur_audiofmt->iface,
1504 subs->cur_audiofmt->altsetting);
Daniel Mackedcd3632012-04-12 13:51:12 +02001505 return 0;
Takashi Iwai75c16b52020-11-23 09:53:29 +01001506 case SNDRV_PCM_TRIGGER_SUSPEND:
Daniel Mackedcd3632012-04-12 13:51:12 +02001507 case SNDRV_PCM_TRIGGER_STOP:
Takashi Iwaidc5eafe2019-12-10 07:34:54 +01001508 stop_endpoints(subs);
Takashi Iwai96e221f2020-11-23 09:53:28 +01001509 fallthrough;
Daniel Mackedcd3632012-04-12 13:51:12 +02001510 case SNDRV_PCM_TRIGGER_PAUSE_PUSH:
Takashi Iwai96e221f2020-11-23 09:53:28 +01001511 snd_usb_endpoint_set_callback(subs->data_endpoint,
1512 NULL, NULL, NULL);
Daniel Mack97f8d3b2012-05-21 12:47:36 +02001513 subs->running = 0;
Takashi Iwaibf6313a2020-11-23 09:53:31 +01001514 dev_dbg(&subs->dev->dev, "%d:%d Stop Capture PCM\n",
1515 subs->cur_audiofmt->iface,
1516 subs->cur_audiofmt->altsetting);
Daniel Mackedcd3632012-04-12 13:51:12 +02001517 return 0;
Daniel Mackedcd3632012-04-12 13:51:12 +02001518 }
1519
1520 return -EINVAL;
1521}
1522
Arvind Yadav31cb1fb2017-08-18 13:15:21 +05301523static const struct snd_pcm_ops snd_usb_playback_ops = {
Takashi Iwai6fddc792018-05-27 13:59:03 +02001524 .open = snd_usb_pcm_open,
1525 .close = snd_usb_pcm_close,
Daniel Macke5779992010-03-04 19:46:13 +01001526 .hw_params = snd_usb_hw_params,
1527 .hw_free = snd_usb_hw_free,
1528 .prepare = snd_usb_pcm_prepare,
1529 .trigger = snd_usb_substream_playback_trigger,
Takashi Iwaidc5eafe2019-12-10 07:34:54 +01001530 .sync_stop = snd_usb_pcm_sync_stop,
Daniel Macke5779992010-03-04 19:46:13 +01001531 .pointer = snd_usb_pcm_pointer,
Daniel Macke5779992010-03-04 19:46:13 +01001532};
1533
Arvind Yadav31cb1fb2017-08-18 13:15:21 +05301534static const struct snd_pcm_ops snd_usb_capture_ops = {
Takashi Iwai6fddc792018-05-27 13:59:03 +02001535 .open = snd_usb_pcm_open,
1536 .close = snd_usb_pcm_close,
Daniel Macke5779992010-03-04 19:46:13 +01001537 .hw_params = snd_usb_hw_params,
1538 .hw_free = snd_usb_hw_free,
1539 .prepare = snd_usb_pcm_prepare,
1540 .trigger = snd_usb_substream_capture_trigger,
Takashi Iwaidc5eafe2019-12-10 07:34:54 +01001541 .sync_stop = snd_usb_pcm_sync_stop,
Daniel Macke5779992010-03-04 19:46:13 +01001542 .pointer = snd_usb_pcm_pointer,
Takashi Iwaif274baa2018-05-27 13:01:17 +02001543};
1544
Daniel Macke5779992010-03-04 19:46:13 +01001545void snd_usb_set_pcm_ops(struct snd_pcm *pcm, int stream)
1546{
Takashi Iwaif274baa2018-05-27 13:01:17 +02001547 const struct snd_pcm_ops *ops;
1548
Takashi Iwaib315997d2019-11-05 16:18:40 +01001549 ops = stream == SNDRV_PCM_STREAM_PLAYBACK ?
Takashi Iwaif274baa2018-05-27 13:01:17 +02001550 &snd_usb_playback_ops : &snd_usb_capture_ops;
Takashi Iwaif274baa2018-05-27 13:01:17 +02001551 snd_pcm_set_ops(pcm, stream, ops);
1552}
1553
1554void snd_usb_preallocate_buffer(struct snd_usb_substream *subs)
1555{
1556 struct snd_pcm *pcm = subs->stream->pcm;
1557 struct snd_pcm_substream *s = pcm->streams[subs->direction].substream;
1558 struct device *dev = subs->dev->bus->controller;
1559
Takashi Iwaib315997d2019-11-05 16:18:40 +01001560 if (snd_usb_use_vmalloc)
Takashi Iwai6dd9486ca2019-12-09 10:49:42 +01001561 snd_pcm_set_managed_buffer(s, SNDRV_DMA_TYPE_VMALLOC,
1562 NULL, 0, 0);
Takashi Iwaib315997d2019-11-05 16:18:40 +01001563 else
Takashi Iwai6dd9486ca2019-12-09 10:49:42 +01001564 snd_pcm_set_managed_buffer(s, SNDRV_DMA_TYPE_DEV_SG,
1565 dev, 64*1024, 512*1024);
Daniel Macke5779992010-03-04 19:46:13 +01001566}