clock.c 16.3 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25
/*
 *   Clock domain and sample rate management functions
 *
 *   This program is free software; you can redistribute it and/or modify
 *   it under the terms of the GNU General Public License as published by
 *   the Free Software Foundation; either version 2 of the License, or
 *   (at your option) any later version.
 *
 *   This program is distributed in the hope that it will be useful,
 *   but WITHOUT ANY WARRANTY; without even the implied warranty of
 *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 *   GNU General Public License for more details.
 *
 *   You should have received a copy of the GNU General Public License
 *   along with this program; if not, write to the Free Software
 *   Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
 *
 */

#include <linux/bitops.h>
#include <linux/init.h>
#include <linux/string.h>
#include <linux/usb.h>
#include <linux/usb/audio.h>
#include <linux/usb/audio-v2.h>
26
#include <linux/usb/audio-v3.h>
27 28 29 30 31 32 33 34

#include <sound/core.h>
#include <sound/info.h>
#include <sound/pcm.h>

#include "usbaudio.h"
#include "card.h"
#include "helper.h"
35
#include "clock.h"
36
#include "quirks.h"
37

38 39
static void *find_uac_clock_desc(struct usb_host_interface *iface, int id,
				 bool (*validator)(void *, int), u8 type)
40
{
41
	void *cs = NULL;
42

43 44 45
	while ((cs = snd_usb_find_csint_desc(iface->extra, iface->extralen,
					     cs, type))) {
		if (validator(cs, id))
46 47 48 49 50 51
			return cs;
	}

	return NULL;
}

52
static bool validate_clock_source_v2(void *p, int id)
53
{
54
	struct uac_clock_source_descriptor *cs = p;
55
	return cs->bLength == sizeof(*cs) && cs->bClockID == id;
56 57
}

58
static bool validate_clock_source_v3(void *p, int id)
59
{
60
	struct uac3_clock_source_descriptor *cs = p;
61
	return cs->bLength == sizeof(*cs) && cs->bClockID == id;
62 63
}

64
static bool validate_clock_selector_v2(void *p, int id)
65
{
66 67
	struct uac_clock_selector_descriptor *cs = p;
	return cs->bLength >= sizeof(*cs) && cs->bClockID == id &&
68
		cs->bLength == 7 + cs->bNrInPins;
69 70
}

71
static bool validate_clock_selector_v3(void *p, int id)
72
{
73
	struct uac3_clock_selector_descriptor *cs = p;
74 75
	return cs->bLength >= sizeof(*cs) && cs->bClockID == id &&
		cs->bLength == 11 + cs->bNrInPins;
76 77
}

78
static bool validate_clock_multiplier_v2(void *p, int id)
79
{
80
	struct uac_clock_multiplier_descriptor *cs = p;
81
	return cs->bLength == sizeof(*cs) && cs->bClockID == id;
82
}
83

84 85 86
static bool validate_clock_multiplier_v3(void *p, int id)
{
	struct uac3_clock_multiplier_descriptor *cs = p;
87
	return cs->bLength == sizeof(*cs) && cs->bClockID == id;
88
}
89

90 91 92 93
#define DEFINE_FIND_HELPER(name, obj, validator, type)		\
static obj *name(struct usb_host_interface *iface, int id)	\
{								\
	return find_uac_clock_desc(iface, id, validator, type);	\
94 95
}

96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116
DEFINE_FIND_HELPER(snd_usb_find_clock_source,
		   struct uac_clock_source_descriptor,
		   validate_clock_source_v2, UAC2_CLOCK_SOURCE);
DEFINE_FIND_HELPER(snd_usb_find_clock_source_v3,
		   struct uac3_clock_source_descriptor,
		   validate_clock_source_v3, UAC3_CLOCK_SOURCE);

DEFINE_FIND_HELPER(snd_usb_find_clock_selector,
		   struct uac_clock_selector_descriptor,
		   validate_clock_selector_v2, UAC2_CLOCK_SELECTOR);
DEFINE_FIND_HELPER(snd_usb_find_clock_selector_v3,
		   struct uac3_clock_selector_descriptor,
		   validate_clock_selector_v3, UAC3_CLOCK_SELECTOR);

DEFINE_FIND_HELPER(snd_usb_find_clock_multiplier,
		   struct uac_clock_multiplier_descriptor,
		   validate_clock_multiplier_v2, UAC2_CLOCK_MULTIPLIER);
DEFINE_FIND_HELPER(snd_usb_find_clock_multiplier_v3,
		   struct uac3_clock_multiplier_descriptor,
		   validate_clock_multiplier_v3, UAC3_CLOCK_MULTIPLIER);

117 118 119 120 121 122 123 124
static int uac_clock_selector_get_val(struct snd_usb_audio *chip, int selector_id)
{
	unsigned char buf;
	int ret;

	ret = snd_usb_ctl_msg(chip->dev, usb_rcvctrlpipe(chip->dev, 0),
			      UAC2_CS_CUR,
			      USB_RECIP_INTERFACE | USB_TYPE_CLASS | USB_DIR_IN,
125 126
			      UAC2_CX_CLOCK_SELECTOR << 8,
			      snd_usb_ctrl_intf(chip) | (selector_id << 8),
127
			      &buf, sizeof(buf));
128 129 130 131 132 133 134

	if (ret < 0)
		return ret;

	return buf;
}

135 136 137 138 139 140 141 142 143 144 145 146 147 148 149
static int uac_clock_selector_set_val(struct snd_usb_audio *chip, int selector_id,
					unsigned char pin)
{
	int ret;

	ret = snd_usb_ctl_msg(chip->dev, usb_sndctrlpipe(chip->dev, 0),
			      UAC2_CS_CUR,
			      USB_RECIP_INTERFACE | USB_TYPE_CLASS | USB_DIR_OUT,
			      UAC2_CX_CLOCK_SELECTOR << 8,
			      snd_usb_ctrl_intf(chip) | (selector_id << 8),
			      &pin, sizeof(pin));
	if (ret < 0)
		return ret;

	if (ret != sizeof(pin)) {
150 151 152
		usb_audio_err(chip,
			"setting selector (id %d) unexpected length %d\n",
			selector_id, ret);
153 154 155 156 157 158 159 160
		return -EINVAL;
	}

	ret = uac_clock_selector_get_val(chip, selector_id);
	if (ret < 0)
		return ret;

	if (ret != pin) {
161 162 163
		usb_audio_err(chip,
			"setting selector (id %d) to %x failed (current: %d)\n",
			selector_id, pin, ret);
164 165 166 167 168 169
		return -EINVAL;
	}

	return ret;
}

170 171 172
static bool uac_clock_source_is_valid(struct snd_usb_audio *chip,
				      int protocol,
				      int source_id)
173 174 175 176
{
	int err;
	unsigned char data;
	struct usb_device *dev = chip->dev;
177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193
	u32 bmControls;

	if (protocol == UAC_VERSION_3) {
		struct uac3_clock_source_descriptor *cs_desc =
			snd_usb_find_clock_source_v3(chip->ctrl_intf, source_id);

		if (!cs_desc)
			return 0;
		bmControls = le32_to_cpu(cs_desc->bmControls);
	} else { /* UAC_VERSION_1/2 */
		struct uac_clock_source_descriptor *cs_desc =
			snd_usb_find_clock_source(chip->ctrl_intf, source_id);

		if (!cs_desc)
			return 0;
		bmControls = cs_desc->bmControls;
	}
194 195

	/* If a clock source can't tell us whether it's valid, we assume it is */
196
	if (!uac_v2v3_control_is_readable(bmControls,
197
				      UAC2_CS_CONTROL_CLOCK_VALID))
198
		return 1;
199 200 201

	err = snd_usb_ctl_msg(dev, usb_rcvctrlpipe(dev, 0), UAC2_CS_CUR,
			      USB_TYPE_CLASS | USB_RECIP_INTERFACE | USB_DIR_IN,
202 203
			      UAC2_CS_CONTROL_CLOCK_VALID << 8,
			      snd_usb_ctrl_intf(chip) | (source_id << 8),
204
			      &data, sizeof(data));
205 206

	if (err < 0) {
207 208
		dev_warn(&dev->dev,
			 "%s(): cannot get clock validity for id %d\n",
209
			   __func__, source_id);
210
		return 0;
211 212 213 214 215
	}

	return !!data;
}

216 217
static int __uac_clock_find_source(struct snd_usb_audio *chip, int entity_id,
				   unsigned long *visited, bool validate)
218 219 220 221 222 223 224 225
{
	struct uac_clock_source_descriptor *source;
	struct uac_clock_selector_descriptor *selector;
	struct uac_clock_multiplier_descriptor *multiplier;

	entity_id &= 0xff;

	if (test_and_set_bit(entity_id, visited)) {
226 227 228
		usb_audio_warn(chip,
			 "%s(): recursive clock topology detected, id %d.\n",
			 __func__, entity_id);
229 230 231 232
		return -EINVAL;
	}

	/* first, see if the ID we're looking for is a clock source already */
233
	source = snd_usb_find_clock_source(chip->ctrl_intf, entity_id);
234 235
	if (source) {
		entity_id = source->bClockID;
236 237
		if (validate && !uac_clock_source_is_valid(chip, UAC_VERSION_2,
								entity_id)) {
238 239 240
			usb_audio_err(chip,
				"clock source %d is not valid, cannot use\n",
				entity_id);
241 242 243 244
			return -ENXIO;
		}
		return entity_id;
	}
245

246
	selector = snd_usb_find_clock_selector(chip->ctrl_intf, entity_id);
247
	if (selector) {
248
		int ret, i, cur;
249 250 251 252 253 254 255

		/* the entity ID we are looking for is a selector.
		 * find out what it currently selects */
		ret = uac_clock_selector_get_val(chip, selector->bClockID);
		if (ret < 0)
			return ret;

256 257
		/* Selector values are one-based */

258
		if (ret > selector->bNrInPins || ret < 1) {
259
			usb_audio_err(chip,
260 261 262 263 264 265
				"%s(): selector reported illegal value, id %d, ret %d\n",
				__func__, selector->bClockID, ret);

			return -EINVAL;
		}

266 267
		cur = ret;
		ret = __uac_clock_find_source(chip, selector->baCSourceID[ret - 1],
268
					       visited, validate);
269
		if (!validate || ret > 0 || !chip->autoclock)
270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287
			return ret;

		/* The current clock source is invalid, try others. */
		for (i = 1; i <= selector->bNrInPins; i++) {
			int err;

			if (i == cur)
				continue;

			ret = __uac_clock_find_source(chip, selector->baCSourceID[i - 1],
				visited, true);
			if (ret < 0)
				continue;

			err = uac_clock_selector_set_val(chip, entity_id, i);
			if (err < 0)
				continue;

288 289 290
			usb_audio_info(chip,
				 "found and selected valid clock source %d\n",
				 ret);
291 292 293 294
			return ret;
		}

		return -ENXIO;
295 296 297
	}

	/* FIXME: multipliers only act as pass-thru element for now */
298
	multiplier = snd_usb_find_clock_multiplier(chip->ctrl_intf, entity_id);
299
	if (multiplier)
300
		return __uac_clock_find_source(chip, multiplier->bCSourceID,
301
						visited, validate);
302 303 304 305

	return -EINVAL;
}

306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396
static int __uac3_clock_find_source(struct snd_usb_audio *chip, int entity_id,
				   unsigned long *visited, bool validate)
{
	struct uac3_clock_source_descriptor *source;
	struct uac3_clock_selector_descriptor *selector;
	struct uac3_clock_multiplier_descriptor *multiplier;

	entity_id &= 0xff;

	if (test_and_set_bit(entity_id, visited)) {
		usb_audio_warn(chip,
			 "%s(): recursive clock topology detected, id %d.\n",
			 __func__, entity_id);
		return -EINVAL;
	}

	/* first, see if the ID we're looking for is a clock source already */
	source = snd_usb_find_clock_source_v3(chip->ctrl_intf, entity_id);
	if (source) {
		entity_id = source->bClockID;
		if (validate && !uac_clock_source_is_valid(chip, UAC_VERSION_3,
								entity_id)) {
			usb_audio_err(chip,
				"clock source %d is not valid, cannot use\n",
				entity_id);
			return -ENXIO;
		}
		return entity_id;
	}

	selector = snd_usb_find_clock_selector_v3(chip->ctrl_intf, entity_id);
	if (selector) {
		int ret, i, cur;

		/* the entity ID we are looking for is a selector.
		 * find out what it currently selects */
		ret = uac_clock_selector_get_val(chip, selector->bClockID);
		if (ret < 0)
			return ret;

		/* Selector values are one-based */

		if (ret > selector->bNrInPins || ret < 1) {
			usb_audio_err(chip,
				"%s(): selector reported illegal value, id %d, ret %d\n",
				__func__, selector->bClockID, ret);

			return -EINVAL;
		}

		cur = ret;
		ret = __uac3_clock_find_source(chip, selector->baCSourceID[ret - 1],
					       visited, validate);
		if (!validate || ret > 0 || !chip->autoclock)
			return ret;

		/* The current clock source is invalid, try others. */
		for (i = 1; i <= selector->bNrInPins; i++) {
			int err;

			if (i == cur)
				continue;

			ret = __uac3_clock_find_source(chip, selector->baCSourceID[i - 1],
				visited, true);
			if (ret < 0)
				continue;

			err = uac_clock_selector_set_val(chip, entity_id, i);
			if (err < 0)
				continue;

			usb_audio_info(chip,
				 "found and selected valid clock source %d\n",
				 ret);
			return ret;
		}

		return -ENXIO;
	}

	/* FIXME: multipliers only act as pass-thru element for now */
	multiplier = snd_usb_find_clock_multiplier_v3(chip->ctrl_intf,
						      entity_id);
	if (multiplier)
		return __uac3_clock_find_source(chip, multiplier->bCSourceID,
						visited, validate);

	return -EINVAL;
}

397 398 399 400 401 402 403 404 405 406 407
/*
 * For all kinds of sample rate settings and other device queries,
 * the clock source (end-leaf) must be used. However, clock selectors,
 * clock multipliers and sample rate converters may be specified as
 * clock source input to terminal. This functions walks the clock path
 * to its end and tries to find the source.
 *
 * The 'visited' bitfield is used internally to detect recursive loops.
 *
 * Returns the clock source UnitID (>=0) on success, or an error.
 */
408 409
int snd_usb_clock_find_source(struct snd_usb_audio *chip, int protocol,
			      int entity_id, bool validate)
410 411 412
{
	DECLARE_BITMAP(visited, 256);
	memset(visited, 0, sizeof(visited));
413 414 415 416 417 418 419 420 421 422 423

	switch (protocol) {
	case UAC_VERSION_2:
		return __uac_clock_find_source(chip, entity_id, visited,
					       validate);
	case UAC_VERSION_3:
		return __uac3_clock_find_source(chip, entity_id, visited,
					       validate);
	default:
		return -EINVAL;
	}
424 425 426 427 428 429 430 431 432 433 434
}

static int set_sample_rate_v1(struct snd_usb_audio *chip, int iface,
			      struct usb_host_interface *alts,
			      struct audioformat *fmt, int rate)
{
	struct usb_device *dev = chip->dev;
	unsigned int ep;
	unsigned char data[3];
	int err, crate;

435 436
	if (get_iface_desc(alts)->bNumEndpoints < 1)
		return -EINVAL;
437 438 439
	ep = get_endpoint(alts, 0)->bEndpointAddress;

	/* if endpoint doesn't have sampling rate control, bail out */
440
	if (!(fmt->attributes & UAC_EP_CS_ATTR_SAMPLE_RATE))
441 442 443 444 445 446 447 448
		return 0;

	data[0] = rate;
	data[1] = rate >> 8;
	data[2] = rate >> 16;
	if ((err = snd_usb_ctl_msg(dev, usb_sndctrlpipe(dev, 0), UAC_SET_CUR,
				   USB_TYPE_CLASS | USB_RECIP_ENDPOINT | USB_DIR_OUT,
				   UAC_EP_CS_ATTR_SAMPLE_RATE << 8, ep,
449
				   data, sizeof(data))) < 0) {
450 451
		dev_err(&dev->dev, "%d:%d: cannot set freq %d to ep %#x\n",
			iface, fmt->altsetting, rate, ep);
452 453 454
		return err;
	}

455 456 457 458
	/* Don't check the sample rate for devices which we know don't
	 * support reading */
	if (snd_usb_get_sample_rate_quirk(chip))
		return 0;
459 460 461
	/* the firmware is likely buggy, don't repeat to fail too many times */
	if (chip->sample_rate_read_error > 2)
		return 0;
462

463 464 465
	if ((err = snd_usb_ctl_msg(dev, usb_rcvctrlpipe(dev, 0), UAC_GET_CUR,
				   USB_TYPE_CLASS | USB_RECIP_ENDPOINT | USB_DIR_IN,
				   UAC_EP_CS_ATTR_SAMPLE_RATE << 8, ep,
466
				   data, sizeof(data))) < 0) {
467 468
		dev_err(&dev->dev, "%d:%d: cannot get freq at ep %#x\n",
			iface, fmt->altsetting, ep);
469
		chip->sample_rate_read_error++;
470 471 472 473 474
		return 0; /* some devices don't support reading */
	}

	crate = data[0] | (data[1] << 8) | (data[2] << 16);
	if (crate != rate) {
475
		dev_warn(&dev->dev, "current rate %d is different from the runtime rate %d\n", crate, rate);
476 477 478 479 480 481
		// runtime->rate = crate;
	}

	return 0;
}

482
static int get_sample_rate_v2v3(struct snd_usb_audio *chip, int iface,
483 484 485
			      int altsetting, int clock)
{
	struct usb_device *dev = chip->dev;
486
	__le32 data;
487 488 489 490 491 492
	int err;

	err = snd_usb_ctl_msg(dev, usb_rcvctrlpipe(dev, 0), UAC2_CS_CUR,
			      USB_TYPE_CLASS | USB_RECIP_INTERFACE | USB_DIR_IN,
			      UAC2_CS_CONTROL_SAM_FREQ << 8,
			      snd_usb_ctrl_intf(chip) | (clock << 8),
493
			      &data, sizeof(data));
494
	if (err < 0) {
495
		dev_warn(&dev->dev, "%d:%d: cannot get freq (v2/v3): err %d\n",
496
			 iface, altsetting, err);
497 498 499
		return 0;
	}

500
	return le32_to_cpu(data);
501 502
}

503
static int set_sample_rate_v2v3(struct snd_usb_audio *chip, int iface,
504 505 506 507
			      struct usb_host_interface *alts,
			      struct audioformat *fmt, int rate)
{
	struct usb_device *dev = chip->dev;
508
	__le32 data;
509
	int err, cur_rate, prev_rate;
510
	int clock;
511
	bool writeable;
512
	u32 bmControls;
513

514 515
	clock = snd_usb_clock_find_source(chip, fmt->protocol,
					  fmt->clock, true);
516 517 518
	if (clock < 0)
		return clock;

519
	prev_rate = get_sample_rate_v2v3(chip, iface, fmt->altsetting, clock);
520 521
	if (prev_rate == rate)
		return 0;
522

523 524 525 526 527 528 529 530 531 532 533 534
	if (fmt->protocol == UAC_VERSION_3) {
		struct uac3_clock_source_descriptor *cs_desc;

		cs_desc = snd_usb_find_clock_source_v3(chip->ctrl_intf, clock);
		bmControls = le32_to_cpu(cs_desc->bmControls);
	} else {
		struct uac_clock_source_descriptor *cs_desc;

		cs_desc = snd_usb_find_clock_source(chip->ctrl_intf, clock);
		bmControls = cs_desc->bmControls;
	}

535 536
	writeable = uac_v2v3_control_is_writeable(bmControls,
						  UAC2_CS_CONTROL_SAM_FREQ);
537 538 539 540 541 542 543 544
	if (writeable) {
		data = cpu_to_le32(rate);
		err = snd_usb_ctl_msg(dev, usb_sndctrlpipe(dev, 0), UAC2_CS_CUR,
				      USB_TYPE_CLASS | USB_RECIP_INTERFACE | USB_DIR_OUT,
				      UAC2_CS_CONTROL_SAM_FREQ << 8,
				      snd_usb_ctrl_intf(chip) | (clock << 8),
				      &data, sizeof(data));
		if (err < 0) {
545
			usb_audio_err(chip,
546
				"%d:%d: cannot set freq %d (v2/v3): err %d\n",
547
				iface, fmt->altsetting, rate, err);
548 549
			return err;
		}
550

551 552
		cur_rate = get_sample_rate_v2v3(chip, iface,
						fmt->altsetting, clock);
553 554 555
	} else {
		cur_rate = prev_rate;
	}
556

557
	if (cur_rate != rate) {
558
		if (!writeable) {
559 560 561
			usb_audio_warn(chip,
				 "%d:%d: freq mismatch (RO clock): req %d, clock runs @%d\n",
				 iface, fmt->altsetting, rate, cur_rate);
562 563
			return -ENXIO;
		}
564 565 566
		usb_audio_dbg(chip,
			"current rate %d is different from the runtime rate %d\n",
			cur_rate, rate);
567 568 569 570 571 572
	}

	/* Some devices doesn't respond to sample rate changes while the
	 * interface is active. */
	if (rate != prev_rate) {
		usb_set_interface(dev, iface, 0);
573
		snd_usb_set_interface_quirk(dev);
574
		usb_set_interface(dev, iface, fmt->altsetting);
575
		snd_usb_set_interface_quirk(dev);
576
	}
577 578 579 580 581 582 583 584

	return 0;
}

int snd_usb_init_sample_rate(struct snd_usb_audio *chip, int iface,
			     struct usb_host_interface *alts,
			     struct audioformat *fmt, int rate)
{
585
	switch (fmt->protocol) {
586
	case UAC_VERSION_1:
587
	default:
588 589
		return set_sample_rate_v1(chip, iface, alts, fmt, rate);

590
	case UAC_VERSION_3:
591 592 593 594 595 596 597 598
		if (chip->badd_profile >= UAC3_FUNCTION_SUBCLASS_GENERIC_IO) {
			if (rate != UAC3_BADD_SAMPLING_RATE)
				return -ENXIO;
			else
				return 0;
		}
	/* fall through */
	case UAC_VERSION_2:
599
		return set_sample_rate_v2v3(chip, iface, alts, fmt, rate);
600 601 602
	}
}