soc-component.c 24.6 KB
Newer Older
K
Kuninori Morimoto 已提交
1 2 3 4
// SPDX-License-Identifier: GPL-2.0
//
// soc-component.c
//
5
// Copyright 2009-2011 Wolfson Microelectronics PLC.
K
Kuninori Morimoto 已提交
6
// Copyright (C) 2019 Renesas Electronics Corp.
7 8
//
// Mark Brown <broonie@opensource.wolfsonmicro.com>
K
Kuninori Morimoto 已提交
9 10
// Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>
//
11
#include <linux/module.h>
12
#include <linux/pm_runtime.h>
K
Kuninori Morimoto 已提交
13 14
#include <sound/soc.h>

15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36
#define soc_component_ret(dai, ret) _soc_component_ret(dai, __func__, ret)
static inline int _soc_component_ret(struct snd_soc_component *component,
				     const char *func, int ret)
{
	/* Positive/Zero values are not errors */
	if (ret >= 0)
		return ret;

	/* Negative values might be errors */
	switch (ret) {
	case -EPROBE_DEFER:
	case -ENOTSUPP:
		break;
	default:
		dev_err(component->dev,
			"ASoC: error at %s on %s: %d\n",
			func, component->name, ret);
	}

	return ret;
}

37 38 39 40 41 42 43 44
/*
 * We might want to check substream by using list.
 * In such case, we can update these macros.
 */
#define soc_component_mark_push(component, substream, tgt)	((component)->mark_##tgt = substream)
#define soc_component_mark_pop(component, substream, tgt)	((component)->mark_##tgt = NULL)
#define soc_component_mark_match(component, substream, tgt)	((component)->mark_##tgt == substream)

45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60
void snd_soc_component_set_aux(struct snd_soc_component *component,
			       struct snd_soc_aux_dev *aux)
{
	component->init = (aux) ? aux->init : NULL;
}

int snd_soc_component_init(struct snd_soc_component *component)
{
	int ret = 0;

	if (component->init)
		ret = component->init(component);

	return soc_component_ret(component, ret);
}

K
Kuninori Morimoto 已提交
61 62 63 64 65 66 67 68 69 70 71 72 73 74
/**
 * snd_soc_component_set_sysclk - configure COMPONENT system or master clock.
 * @component: COMPONENT
 * @clk_id: DAI specific clock ID
 * @source: Source for the clock
 * @freq: new clock frequency in Hz
 * @dir: new clock direction - input/output.
 *
 * Configures the CODEC master (MCLK) or system (SYSCLK) clocking.
 */
int snd_soc_component_set_sysclk(struct snd_soc_component *component,
				 int clk_id, int source, unsigned int freq,
				 int dir)
{
75 76
	int ret = -ENOTSUPP;

K
Kuninori Morimoto 已提交
77
	if (component->driver->set_sysclk)
78
		ret = component->driver->set_sysclk(component, clk_id, source,
K
Kuninori Morimoto 已提交
79 80
						     freq, dir);

81
	return soc_component_ret(component, ret);
K
Kuninori Morimoto 已提交
82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98
}
EXPORT_SYMBOL_GPL(snd_soc_component_set_sysclk);

/*
 * snd_soc_component_set_pll - configure component PLL.
 * @component: COMPONENT
 * @pll_id: DAI specific PLL ID
 * @source: DAI specific source for the PLL
 * @freq_in: PLL input clock frequency in Hz
 * @freq_out: requested PLL output clock frequency in Hz
 *
 * Configures and enables PLL to generate output clock based on input clock.
 */
int snd_soc_component_set_pll(struct snd_soc_component *component, int pll_id,
			      int source, unsigned int freq_in,
			      unsigned int freq_out)
{
99 100
	int ret = -EINVAL;

K
Kuninori Morimoto 已提交
101
	if (component->driver->set_pll)
102
		ret = component->driver->set_pll(component, pll_id, source,
K
Kuninori Morimoto 已提交
103 104
						  freq_in, freq_out);

105
	return soc_component_ret(component, ret);
K
Kuninori Morimoto 已提交
106 107 108
}
EXPORT_SYMBOL_GPL(snd_soc_component_set_pll);

109 110 111 112 113 114 115
void snd_soc_component_seq_notifier(struct snd_soc_component *component,
				    enum snd_soc_dapm_type type, int subseq)
{
	if (component->driver->seq_notifier)
		component->driver->seq_notifier(component, type, subseq);
}

116 117 118
int snd_soc_component_stream_event(struct snd_soc_component *component,
				   int event)
{
119 120
	int ret = 0;

121
	if (component->driver->stream_event)
122
		ret = component->driver->stream_event(component, event);
123

124
	return soc_component_ret(component, ret);
125 126
}

127 128 129
int snd_soc_component_set_bias_level(struct snd_soc_component *component,
				     enum snd_soc_bias_level level)
{
130 131
	int ret = 0;

132
	if (component->driver->set_bias_level)
133
		ret = component->driver->set_bias_level(component, level);
134

135
	return soc_component_ret(component, ret);
136 137
}

138 139 140 141
static int soc_component_pin(struct snd_soc_component *component,
			     const char *pin,
			     int (*pin_func)(struct snd_soc_dapm_context *dapm,
					     const char *pin))
K
Kuninori Morimoto 已提交
142 143 144 145 146 147
{
	struct snd_soc_dapm_context *dapm =
		snd_soc_component_get_dapm(component);
	char *full_name;
	int ret;

148 149 150 151
	if (!component->name_prefix) {
		ret = pin_func(dapm, pin);
		goto end;
	}
K
Kuninori Morimoto 已提交
152 153

	full_name = kasprintf(GFP_KERNEL, "%s %s", component->name_prefix, pin);
154 155 156 157
	if (!full_name) {
		ret = -ENOMEM;
		goto end;
	}
K
Kuninori Morimoto 已提交
158

159
	ret = pin_func(dapm, full_name);
K
Kuninori Morimoto 已提交
160
	kfree(full_name);
161 162
end:
	return soc_component_ret(component, ret);
K
Kuninori Morimoto 已提交
163
}
164 165 166 167 168 169

int snd_soc_component_enable_pin(struct snd_soc_component *component,
				 const char *pin)
{
	return soc_component_pin(component, pin, snd_soc_dapm_enable_pin);
}
K
Kuninori Morimoto 已提交
170 171 172 173 174
EXPORT_SYMBOL_GPL(snd_soc_component_enable_pin);

int snd_soc_component_enable_pin_unlocked(struct snd_soc_component *component,
					  const char *pin)
{
175
	return soc_component_pin(component, pin, snd_soc_dapm_enable_pin_unlocked);
K
Kuninori Morimoto 已提交
176 177 178 179 180 181
}
EXPORT_SYMBOL_GPL(snd_soc_component_enable_pin_unlocked);

int snd_soc_component_disable_pin(struct snd_soc_component *component,
				  const char *pin)
{
182
	return soc_component_pin(component, pin, snd_soc_dapm_disable_pin);
K
Kuninori Morimoto 已提交
183 184 185 186 187 188
}
EXPORT_SYMBOL_GPL(snd_soc_component_disable_pin);

int snd_soc_component_disable_pin_unlocked(struct snd_soc_component *component,
					   const char *pin)
{
189
	return soc_component_pin(component, pin, snd_soc_dapm_disable_pin_unlocked);
K
Kuninori Morimoto 已提交
190 191 192 193 194 195
}
EXPORT_SYMBOL_GPL(snd_soc_component_disable_pin_unlocked);

int snd_soc_component_nc_pin(struct snd_soc_component *component,
			     const char *pin)
{
196
	return soc_component_pin(component, pin, snd_soc_dapm_nc_pin);
K
Kuninori Morimoto 已提交
197 198 199 200 201 202
}
EXPORT_SYMBOL_GPL(snd_soc_component_nc_pin);

int snd_soc_component_nc_pin_unlocked(struct snd_soc_component *component,
				      const char *pin)
{
203
	return soc_component_pin(component, pin, snd_soc_dapm_nc_pin_unlocked);
K
Kuninori Morimoto 已提交
204 205 206 207 208 209
}
EXPORT_SYMBOL_GPL(snd_soc_component_nc_pin_unlocked);

int snd_soc_component_get_pin_status(struct snd_soc_component *component,
				     const char *pin)
{
210
	return soc_component_pin(component, pin, snd_soc_dapm_get_pin_status);
K
Kuninori Morimoto 已提交
211 212 213 214 215 216
}
EXPORT_SYMBOL_GPL(snd_soc_component_get_pin_status);

int snd_soc_component_force_enable_pin(struct snd_soc_component *component,
				       const char *pin)
{
217
	return soc_component_pin(component, pin, snd_soc_dapm_force_enable_pin);
K
Kuninori Morimoto 已提交
218 219 220 221 222 223 224
}
EXPORT_SYMBOL_GPL(snd_soc_component_force_enable_pin);

int snd_soc_component_force_enable_pin_unlocked(
	struct snd_soc_component *component,
	const char *pin)
{
225
	return soc_component_pin(component, pin, snd_soc_dapm_force_enable_pin_unlocked);
K
Kuninori Morimoto 已提交
226 227 228 229 230 231 232 233 234 235 236 237 238 239
}
EXPORT_SYMBOL_GPL(snd_soc_component_force_enable_pin_unlocked);

/**
 * snd_soc_component_set_jack - configure component jack.
 * @component: COMPONENTs
 * @jack: structure to use for the jack
 * @data: can be used if codec driver need extra data for configuring jack
 *
 * Configures and enables jack detection function.
 */
int snd_soc_component_set_jack(struct snd_soc_component *component,
			       struct snd_soc_jack *jack, void *data)
{
240 241
	int ret = -ENOTSUPP;

K
Kuninori Morimoto 已提交
242
	if (component->driver->set_jack)
243
		ret = component->driver->set_jack(component, jack, data);
K
Kuninori Morimoto 已提交
244

245
	return soc_component_ret(component, ret);
K
Kuninori Morimoto 已提交
246 247
}
EXPORT_SYMBOL_GPL(snd_soc_component_set_jack);
248 249

int snd_soc_component_module_get(struct snd_soc_component *component,
250
				 struct snd_pcm_substream *substream,
251 252
				 int upon_open)
{
253 254
	int ret = 0;

255 256
	if (component->driver->module_get_upon_open == !!upon_open &&
	    !try_module_get(component->dev->driver->owner))
257
		ret = -ENODEV;
258

259 260 261 262
	/* mark substream if succeeded */
	if (ret == 0)
		soc_component_mark_push(component, substream, module);

263
	return soc_component_ret(component, ret);
264 265 266
}

void snd_soc_component_module_put(struct snd_soc_component *component,
267 268
				  struct snd_pcm_substream *substream,
				  int upon_open, int rollback)
269
{
270 271 272
	if (rollback && !soc_component_mark_match(component, substream, module))
		return;

273 274
	if (component->driver->module_get_upon_open == !!upon_open)
		module_put(component->dev->driver->owner);
275 276 277

	/* remove marked substream */
	soc_component_mark_pop(component, substream, module);
278
}
279 280 281 282

int snd_soc_component_open(struct snd_soc_component *component,
			   struct snd_pcm_substream *substream)
{
283 284
	int ret = 0;

285
	if (component->driver->open)
286 287
		ret = component->driver->open(component, substream);

288 289 290 291
	/* mark substream if succeeded */
	if (ret == 0)
		soc_component_mark_push(component, substream, open);

292
	return soc_component_ret(component, ret);
293
}
294 295

int snd_soc_component_close(struct snd_soc_component *component,
296 297
			    struct snd_pcm_substream *substream,
			    int rollback)
298
{
299 300
	int ret = 0;

301 302 303
	if (rollback && !soc_component_mark_match(component, substream, open))
		return 0;

304
	if (component->driver->close)
305 306
		ret = component->driver->close(component, substream);

307 308 309
	/* remove marked substream */
	soc_component_mark_pop(component, substream, open);

310
	return soc_component_ret(component, ret);
311
}
312

313 314 315 316 317 318
void snd_soc_component_suspend(struct snd_soc_component *component)
{
	if (component->driver->suspend)
		component->driver->suspend(component);
	component->suspended = 1;
}
319 320 321 322 323 324 325

void snd_soc_component_resume(struct snd_soc_component *component)
{
	if (component->driver->resume)
		component->driver->resume(component);
	component->suspended = 0;
}
326 327 328 329 330

int snd_soc_component_is_suspended(struct snd_soc_component *component)
{
	return component->suspended;
}
331 332 333

int snd_soc_component_probe(struct snd_soc_component *component)
{
334 335
	int ret = 0;

336
	if (component->driver->probe)
337
		ret = component->driver->probe(component);
338

339
	return soc_component_ret(component, ret);
340
}
341 342 343 344 345 346

void snd_soc_component_remove(struct snd_soc_component *component)
{
	if (component->driver->remove)
		component->driver->remove(component);
}
347 348 349 350

int snd_soc_component_of_xlate_dai_id(struct snd_soc_component *component,
				      struct device_node *ep)
{
351 352
	int ret = -ENOTSUPP;

353
	if (component->driver->of_xlate_dai_id)
354
		ret = component->driver->of_xlate_dai_id(component, ep);
355

356
	return soc_component_ret(component, ret);
357
}
358 359 360 361 362 363

int snd_soc_component_of_xlate_dai_name(struct snd_soc_component *component,
					struct of_phandle_args *args,
					const char **dai_name)
{
	if (component->driver->of_xlate_dai_name)
364 365 366 367 368 369 370 371
		return component->driver->of_xlate_dai_name(component,
							    args, dai_name);
	/*
	 * Don't use soc_component_ret here because we may not want to report
	 * the error just yet. If a device has more than one component, the
	 * first may not match and we don't want spam the log with this.
	 */
	return -ENOTSUPP;
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 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423
void snd_soc_component_setup_regmap(struct snd_soc_component *component)
{
	int val_bytes = regmap_get_val_bytes(component->regmap);

	/* Errors are legitimate for non-integer byte multiples */
	if (val_bytes > 0)
		component->val_bytes = val_bytes;
}

#ifdef CONFIG_REGMAP

/**
 * snd_soc_component_init_regmap() - Initialize regmap instance for the
 *                                   component
 * @component: The component for which to initialize the regmap instance
 * @regmap: The regmap instance that should be used by the component
 *
 * This function allows deferred assignment of the regmap instance that is
 * associated with the component. Only use this if the regmap instance is not
 * yet ready when the component is registered. The function must also be called
 * before the first IO attempt of the component.
 */
void snd_soc_component_init_regmap(struct snd_soc_component *component,
				   struct regmap *regmap)
{
	component->regmap = regmap;
	snd_soc_component_setup_regmap(component);
}
EXPORT_SYMBOL_GPL(snd_soc_component_init_regmap);

/**
 * snd_soc_component_exit_regmap() - De-initialize regmap instance for the
 *                                   component
 * @component: The component for which to de-initialize the regmap instance
 *
 * Calls regmap_exit() on the regmap instance associated to the component and
 * removes the regmap instance from the component.
 *
 * This function should only be used if snd_soc_component_init_regmap() was used
 * to initialize the regmap instance.
 */
void snd_soc_component_exit_regmap(struct snd_soc_component *component)
{
	regmap_exit(component->regmap);
	component->regmap = NULL;
}
EXPORT_SYMBOL_GPL(snd_soc_component_exit_regmap);

#endif

424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446
int snd_soc_component_compr_open(struct snd_compr_stream *cstream,
				 struct snd_soc_component **last)
{
	struct snd_soc_pcm_runtime *rtd = cstream->private_data;
	struct snd_soc_component *component;
	int i, ret;

	for_each_rtd_components(rtd, i, component) {
		if (component->driver->compress_ops &&
		    component->driver->compress_ops->open) {
			ret = component->driver->compress_ops->open(component, cstream);
			if (ret < 0) {
				*last = component;
				return soc_component_ret(component, ret);
			}
		}
	}

	*last = NULL;
	return 0;
}
EXPORT_SYMBOL_GPL(snd_soc_component_compr_open);

447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464
void snd_soc_component_compr_free(struct snd_compr_stream *cstream,
				  struct snd_soc_component *last)
{
	struct snd_soc_pcm_runtime *rtd = cstream->private_data;
	struct snd_soc_component *component;
	int i;

	for_each_rtd_components(rtd, i, component) {
		if (component == last)
			break;

		if (component->driver->compress_ops &&
		    component->driver->compress_ops->free)
			component->driver->compress_ops->free(component, cstream);
	}
}
EXPORT_SYMBOL_GPL(snd_soc_component_compr_free);

465 466 467
static unsigned int soc_component_read_no_lock(
	struct snd_soc_component *component,
	unsigned int reg)
468 469
{
	int ret;
470
	unsigned int val = 0;
471 472

	if (component->regmap)
473
		ret = regmap_read(component->regmap, reg, &val);
474 475
	else if (component->driver->read) {
		ret = 0;
476
		val = component->driver->read(component, reg);
477 478 479 480 481
	}
	else
		ret = -EIO;

	if (ret < 0)
482
		return soc_component_ret(component, ret);
483 484 485

	return val;
}
486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504

/**
 * snd_soc_component_read() - Read register value
 * @component: Component to read from
 * @reg: Register to read
 *
 * Return: read value
 */
unsigned int snd_soc_component_read(struct snd_soc_component *component,
				    unsigned int reg)
{
	unsigned int val;

	mutex_lock(&component->io_mutex);
	val = soc_component_read_no_lock(component, reg);
	mutex_unlock(&component->io_mutex);

	return val;
}
505
EXPORT_SYMBOL_GPL(snd_soc_component_read);
506

507 508 509 510 511 512 513 514 515 516 517 518 519 520
static int soc_component_write_no_lock(
	struct snd_soc_component *component,
	unsigned int reg, unsigned int val)
{
	int ret = -EIO;

	if (component->regmap)
		ret = regmap_write(component->regmap, reg, val);
	else if (component->driver->write)
		ret = component->driver->write(component, reg, val);

	return soc_component_ret(component, ret);
}

521 522 523 524 525 526 527 528 529 530 531
/**
 * snd_soc_component_write() - Write register value
 * @component: Component to write to
 * @reg: Register to write
 * @val: Value to write to the register
 *
 * Return: 0 on success, a negative error code otherwise.
 */
int snd_soc_component_write(struct snd_soc_component *component,
			    unsigned int reg, unsigned int val)
{
532
	int ret;
533

534 535 536
	mutex_lock(&component->io_mutex);
	ret = soc_component_write_no_lock(component, reg, val);
	mutex_unlock(&component->io_mutex);
537

538
	return ret;
539 540 541 542 543 544 545 546
}
EXPORT_SYMBOL_GPL(snd_soc_component_write);

static int snd_soc_component_update_bits_legacy(
	struct snd_soc_component *component, unsigned int reg,
	unsigned int mask, unsigned int val, bool *change)
{
	unsigned int old, new;
547
	int ret = 0;
548 549 550

	mutex_lock(&component->io_mutex);

551
	old = soc_component_read_no_lock(component, reg);
552 553 554 555

	new = (old & ~mask) | (val & mask);
	*change = old != new;
	if (*change)
556
		ret = soc_component_write_no_lock(component, reg, new);
557

558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659
	mutex_unlock(&component->io_mutex);

	return soc_component_ret(component, ret);
}

/**
 * snd_soc_component_update_bits() - Perform read/modify/write cycle
 * @component: Component to update
 * @reg: Register to update
 * @mask: Mask that specifies which bits to update
 * @val: New value for the bits specified by mask
 *
 * Return: 1 if the operation was successful and the value of the register
 * changed, 0 if the operation was successful, but the value did not change.
 * Returns a negative error code otherwise.
 */
int snd_soc_component_update_bits(struct snd_soc_component *component,
				  unsigned int reg, unsigned int mask, unsigned int val)
{
	bool change;
	int ret;

	if (component->regmap)
		ret = regmap_update_bits_check(component->regmap, reg, mask,
					       val, &change);
	else
		ret = snd_soc_component_update_bits_legacy(component, reg,
							   mask, val, &change);

	if (ret < 0)
		return soc_component_ret(component, ret);
	return change;
}
EXPORT_SYMBOL_GPL(snd_soc_component_update_bits);

/**
 * snd_soc_component_update_bits_async() - Perform asynchronous
 *  read/modify/write cycle
 * @component: Component to update
 * @reg: Register to update
 * @mask: Mask that specifies which bits to update
 * @val: New value for the bits specified by mask
 *
 * This function is similar to snd_soc_component_update_bits(), but the update
 * operation is scheduled asynchronously. This means it may not be completed
 * when the function returns. To make sure that all scheduled updates have been
 * completed snd_soc_component_async_complete() must be called.
 *
 * Return: 1 if the operation was successful and the value of the register
 * changed, 0 if the operation was successful, but the value did not change.
 * Returns a negative error code otherwise.
 */
int snd_soc_component_update_bits_async(struct snd_soc_component *component,
					unsigned int reg, unsigned int mask, unsigned int val)
{
	bool change;
	int ret;

	if (component->regmap)
		ret = regmap_update_bits_check_async(component->regmap, reg,
						     mask, val, &change);
	else
		ret = snd_soc_component_update_bits_legacy(component, reg,
							   mask, val, &change);

	if (ret < 0)
		return soc_component_ret(component, ret);
	return change;
}
EXPORT_SYMBOL_GPL(snd_soc_component_update_bits_async);

/**
 * snd_soc_component_async_complete() - Ensure asynchronous I/O has completed
 * @component: Component for which to wait
 *
 * This function blocks until all asynchronous I/O which has previously been
 * scheduled using snd_soc_component_update_bits_async() has completed.
 */
void snd_soc_component_async_complete(struct snd_soc_component *component)
{
	if (component->regmap)
		regmap_async_complete(component->regmap);
}
EXPORT_SYMBOL_GPL(snd_soc_component_async_complete);

/**
 * snd_soc_component_test_bits - Test register for change
 * @component: component
 * @reg: Register to test
 * @mask: Mask that specifies which bits to test
 * @value: Value to test against
 *
 * Tests a register with a new value and checks if the new value is
 * different from the old value.
 *
 * Return: 1 for change, otherwise 0.
 */
int snd_soc_component_test_bits(struct snd_soc_component *component,
				unsigned int reg, unsigned int mask, unsigned int value)
{
	unsigned int old, new;

660
	old = snd_soc_component_read(component, reg);
661 662 663 664 665
	new = (old & ~mask) | value;
	return old != new;
}
EXPORT_SYMBOL_GPL(snd_soc_component_test_bits);

666 667
int snd_soc_pcm_component_pointer(struct snd_pcm_substream *substream)
{
668
	struct snd_soc_pcm_runtime *rtd = asoc_substream_to_rtd(substream);
669
	struct snd_soc_component *component;
670
	int i;
671

672
	/* FIXME: use 1st pointer */
673
	for_each_rtd_components(rtd, i, component)
674 675
		if (component->driver->pointer)
			return component->driver->pointer(component, substream);
676 677 678

	return 0;
}
679 680 681 682

int snd_soc_pcm_component_ioctl(struct snd_pcm_substream *substream,
				unsigned int cmd, void *arg)
{
683
	struct snd_soc_pcm_runtime *rtd = asoc_substream_to_rtd(substream);
684
	struct snd_soc_component *component;
685
	int i;
686

687
	/* FIXME: use 1st ioctl */
688
	for_each_rtd_components(rtd, i, component)
689
		if (component->driver->ioctl)
690 691 692 693
			return soc_component_ret(
				component,
				component->driver->ioctl(component,
							 substream, cmd, arg));
694 695 696

	return snd_pcm_lib_ioctl(substream, cmd, arg);
}
697

698 699
int snd_soc_pcm_component_sync_stop(struct snd_pcm_substream *substream)
{
700
	struct snd_soc_pcm_runtime *rtd = asoc_substream_to_rtd(substream);
701
	struct snd_soc_component *component;
702
	int i, ret;
703

704
	for_each_rtd_components(rtd, i, component) {
705
		if (component->driver->sync_stop) {
706 707 708
			ret = component->driver->sync_stop(component,
							   substream);
			if (ret < 0)
709
				return soc_component_ret(component, ret);
710 711 712 713 714 715
		}
	}

	return 0;
}

716 717 718 719
int snd_soc_pcm_component_copy_user(struct snd_pcm_substream *substream,
				    int channel, unsigned long pos,
				    void __user *buf, unsigned long bytes)
{
720
	struct snd_soc_pcm_runtime *rtd = asoc_substream_to_rtd(substream);
721
	struct snd_soc_component *component;
722
	int i;
723

724
	/* FIXME. it returns 1st copy now */
725
	for_each_rtd_components(rtd, i, component)
726
		if (component->driver->copy_user)
727 728 729 730 731
			return soc_component_ret(
				component,
				component->driver->copy_user(
					component, substream, channel,
					pos, buf, bytes));
732 733 734

	return -EINVAL;
}
735 736 737 738

struct page *snd_soc_pcm_component_page(struct snd_pcm_substream *substream,
					unsigned long offset)
{
739
	struct snd_soc_pcm_runtime *rtd = asoc_substream_to_rtd(substream);
740 741
	struct snd_soc_component *component;
	struct page *page;
742
	int i;
743

744
	/* FIXME. it returns 1st page now */
745
	for_each_rtd_components(rtd, i, component) {
746 747 748 749 750 751
		if (component->driver->page) {
			page = component->driver->page(component,
						       substream, offset);
			if (page)
				return page;
		}
752 753 754 755
	}

	return NULL;
}
756 757 758 759

int snd_soc_pcm_component_mmap(struct snd_pcm_substream *substream,
			       struct vm_area_struct *vma)
{
760
	struct snd_soc_pcm_runtime *rtd = asoc_substream_to_rtd(substream);
761
	struct snd_soc_component *component;
762
	int i;
763

764
	/* FIXME. it returns 1st mmap now */
765
	for_each_rtd_components(rtd, i, component)
766
		if (component->driver->mmap)
767
			return soc_component_ret(
768 769 770
				component,
				component->driver->mmap(component,
							substream, vma));
771 772 773

	return -EINVAL;
}
774

775
int snd_soc_pcm_component_new(struct snd_soc_pcm_runtime *rtd)
776 777 778
{
	struct snd_soc_component *component;
	int ret;
779
	int i;
780

781
	for_each_rtd_components(rtd, i, component) {
782 783 784
		if (component->driver->pcm_construct) {
			ret = component->driver->pcm_construct(component, rtd);
			if (ret < 0)
785
				return soc_component_ret(component, ret);
786
		}
787 788 789 790
	}

	return 0;
}
791

792
void snd_soc_pcm_component_free(struct snd_soc_pcm_runtime *rtd)
793 794
{
	struct snd_soc_component *component;
795
	int i;
796

797 798 799
	if (!rtd->pcm)
		return;

800
	for_each_rtd_components(rtd, i, component)
801
		if (component->driver->pcm_destruct)
802
			component->driver->pcm_destruct(component, rtd->pcm);
803
}
804 805 806

int snd_soc_pcm_component_prepare(struct snd_pcm_substream *substream)
{
807
	struct snd_soc_pcm_runtime *rtd = asoc_substream_to_rtd(substream);
808 809 810 811 812 813 814 815 816 817 818 819 820
	struct snd_soc_component *component;
	int i, ret;

	for_each_rtd_components(rtd, i, component) {
		if (component->driver->prepare) {
			ret = component->driver->prepare(component, substream);
			if (ret < 0)
				return soc_component_ret(component, ret);
		}
	}

	return 0;
}
821 822

int snd_soc_pcm_component_hw_params(struct snd_pcm_substream *substream,
823
				    struct snd_pcm_hw_params *params)
824
{
825
	struct snd_soc_pcm_runtime *rtd = asoc_substream_to_rtd(substream);
826 827 828 829 830 831 832
	struct snd_soc_component *component;
	int i, ret;

	for_each_rtd_components(rtd, i, component) {
		if (component->driver->hw_params) {
			ret = component->driver->hw_params(component,
							   substream, params);
833
			if (ret < 0)
834 835
				return soc_component_ret(component, ret);
		}
836 837
		/* mark substream if succeeded */
		soc_component_mark_push(component, substream, hw_params);
838 839 840 841
	}

	return 0;
}
842 843

void snd_soc_pcm_component_hw_free(struct snd_pcm_substream *substream,
844
				   int rollback)
845
{
846
	struct snd_soc_pcm_runtime *rtd = asoc_substream_to_rtd(substream);
847 848 849 850
	struct snd_soc_component *component;
	int i, ret;

	for_each_rtd_components(rtd, i, component) {
851 852
		if (rollback && !soc_component_mark_match(component, substream, hw_params))
			continue;
853 854 855 856 857 858

		if (component->driver->hw_free) {
			ret = component->driver->hw_free(component, substream);
			if (ret < 0)
				soc_component_ret(component, ret);
		}
859 860 861

		/* remove marked substream */
		soc_component_mark_pop(component, substream, hw_params);
862 863
	}
}
864 865 866 867

int snd_soc_pcm_component_trigger(struct snd_pcm_substream *substream,
				  int cmd)
{
868
	struct snd_soc_pcm_runtime *rtd = asoc_substream_to_rtd(substream);
869 870 871 872 873 874 875 876 877 878 879 880 881
	struct snd_soc_component *component;
	int i, ret;

	for_each_rtd_components(rtd, i, component) {
		if (component->driver->trigger) {
			ret = component->driver->trigger(component, substream, cmd);
			if (ret < 0)
				return soc_component_ret(component, ret);
		}
	}

	return 0;
}
882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918

int snd_soc_pcm_component_pm_runtime_get(struct snd_soc_pcm_runtime *rtd,
					 void *stream)
{
	struct snd_soc_component *component;
	int i, ret;

	for_each_rtd_components(rtd, i, component) {
		ret = pm_runtime_get_sync(component->dev);
		if (ret < 0 && ret != -EACCES) {
			pm_runtime_put_noidle(component->dev);
			return soc_component_ret(component, ret);
		}
		/* mark stream if succeeded */
		soc_component_mark_push(component, stream, pm);
	}

	return 0;
}

void snd_soc_pcm_component_pm_runtime_put(struct snd_soc_pcm_runtime *rtd,
					  void *stream, int rollback)
{
	struct snd_soc_component *component;
	int i;

	for_each_rtd_components(rtd, i, component) {
		if (rollback && !soc_component_mark_match(component, stream, pm))
			continue;

		pm_runtime_mark_last_busy(component->dev);
		pm_runtime_put_autosuspend(component->dev);

		/* remove marked stream */
		soc_component_mark_pop(component, stream, pm);
	}
}