soc-component.c 21.4 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>
K
Kuninori Morimoto 已提交
12 13
#include <sound/soc.h>

14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35
#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;
}

36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51
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 已提交
52 53 54 55 56 57 58 59 60 61 62 63 64 65
/**
 * 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)
{
66 67
	int ret = -ENOTSUPP;

K
Kuninori Morimoto 已提交
68
	if (component->driver->set_sysclk)
69
		ret = component->driver->set_sysclk(component, clk_id, source,
K
Kuninori Morimoto 已提交
70 71
						     freq, dir);

72
	return soc_component_ret(component, ret);
K
Kuninori Morimoto 已提交
73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89
}
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)
{
90 91
	int ret = -EINVAL;

K
Kuninori Morimoto 已提交
92
	if (component->driver->set_pll)
93
		ret = component->driver->set_pll(component, pll_id, source,
K
Kuninori Morimoto 已提交
94 95
						  freq_in, freq_out);

96
	return soc_component_ret(component, ret);
K
Kuninori Morimoto 已提交
97 98 99
}
EXPORT_SYMBOL_GPL(snd_soc_component_set_pll);

100 101 102 103 104 105 106
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);
}

107 108 109
int snd_soc_component_stream_event(struct snd_soc_component *component,
				   int event)
{
110 111
	int ret = 0;

112
	if (component->driver->stream_event)
113
		ret = component->driver->stream_event(component, event);
114

115
	return soc_component_ret(component, ret);
116 117
}

118 119 120
int snd_soc_component_set_bias_level(struct snd_soc_component *component,
				     enum snd_soc_bias_level level)
{
121 122
	int ret = 0;

123
	if (component->driver->set_bias_level)
124
		ret = component->driver->set_bias_level(component, level);
125

126
	return soc_component_ret(component, ret);
127 128
}

129 130 131 132
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 已提交
133 134 135 136 137 138
{
	struct snd_soc_dapm_context *dapm =
		snd_soc_component_get_dapm(component);
	char *full_name;
	int ret;

139 140 141 142
	if (!component->name_prefix) {
		ret = pin_func(dapm, pin);
		goto end;
	}
K
Kuninori Morimoto 已提交
143 144

	full_name = kasprintf(GFP_KERNEL, "%s %s", component->name_prefix, pin);
145 146 147 148
	if (!full_name) {
		ret = -ENOMEM;
		goto end;
	}
K
Kuninori Morimoto 已提交
149

150
	ret = pin_func(dapm, full_name);
K
Kuninori Morimoto 已提交
151
	kfree(full_name);
152 153
end:
	return soc_component_ret(component, ret);
K
Kuninori Morimoto 已提交
154
}
155 156 157 158 159 160

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 已提交
161 162 163 164 165
EXPORT_SYMBOL_GPL(snd_soc_component_enable_pin);

int snd_soc_component_enable_pin_unlocked(struct snd_soc_component *component,
					  const char *pin)
{
166
	return soc_component_pin(component, pin, snd_soc_dapm_enable_pin_unlocked);
K
Kuninori Morimoto 已提交
167 168 169 170 171 172
}
EXPORT_SYMBOL_GPL(snd_soc_component_enable_pin_unlocked);

int snd_soc_component_disable_pin(struct snd_soc_component *component,
				  const char *pin)
{
173
	return soc_component_pin(component, pin, snd_soc_dapm_disable_pin);
K
Kuninori Morimoto 已提交
174 175 176 177 178 179
}
EXPORT_SYMBOL_GPL(snd_soc_component_disable_pin);

int snd_soc_component_disable_pin_unlocked(struct snd_soc_component *component,
					   const char *pin)
{
180
	return soc_component_pin(component, pin, snd_soc_dapm_disable_pin_unlocked);
K
Kuninori Morimoto 已提交
181 182 183 184 185 186
}
EXPORT_SYMBOL_GPL(snd_soc_component_disable_pin_unlocked);

int snd_soc_component_nc_pin(struct snd_soc_component *component,
			     const char *pin)
{
187
	return soc_component_pin(component, pin, snd_soc_dapm_nc_pin);
K
Kuninori Morimoto 已提交
188 189 190 191 192 193
}
EXPORT_SYMBOL_GPL(snd_soc_component_nc_pin);

int snd_soc_component_nc_pin_unlocked(struct snd_soc_component *component,
				      const char *pin)
{
194
	return soc_component_pin(component, pin, snd_soc_dapm_nc_pin_unlocked);
K
Kuninori Morimoto 已提交
195 196 197 198 199 200
}
EXPORT_SYMBOL_GPL(snd_soc_component_nc_pin_unlocked);

int snd_soc_component_get_pin_status(struct snd_soc_component *component,
				     const char *pin)
{
201
	return soc_component_pin(component, pin, snd_soc_dapm_get_pin_status);
K
Kuninori Morimoto 已提交
202 203 204 205 206 207
}
EXPORT_SYMBOL_GPL(snd_soc_component_get_pin_status);

int snd_soc_component_force_enable_pin(struct snd_soc_component *component,
				       const char *pin)
{
208
	return soc_component_pin(component, pin, snd_soc_dapm_force_enable_pin);
K
Kuninori Morimoto 已提交
209 210 211 212 213 214 215
}
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)
{
216
	return soc_component_pin(component, pin, snd_soc_dapm_force_enable_pin_unlocked);
K
Kuninori Morimoto 已提交
217 218 219 220 221 222 223 224 225 226 227 228 229 230
}
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)
{
231 232
	int ret = -ENOTSUPP;

K
Kuninori Morimoto 已提交
233
	if (component->driver->set_jack)
234
		ret = component->driver->set_jack(component, jack, data);
K
Kuninori Morimoto 已提交
235

236
	return soc_component_ret(component, ret);
K
Kuninori Morimoto 已提交
237 238
}
EXPORT_SYMBOL_GPL(snd_soc_component_set_jack);
239 240 241 242

int snd_soc_component_module_get(struct snd_soc_component *component,
				 int upon_open)
{
243 244
	int ret = 0;

245 246
	if (component->driver->module_get_upon_open == !!upon_open &&
	    !try_module_get(component->dev->driver->owner))
247
		ret = -ENODEV;
248

249
	return soc_component_ret(component, ret);
250 251 252 253 254 255 256 257
}

void snd_soc_component_module_put(struct snd_soc_component *component,
				  int upon_open)
{
	if (component->driver->module_get_upon_open == !!upon_open)
		module_put(component->dev->driver->owner);
}
258 259 260 261

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

264
	if (component->driver->open)
265 266 267
		ret = component->driver->open(component, substream);

	return soc_component_ret(component, ret);
268
}
269 270 271 272

int snd_soc_component_close(struct snd_soc_component *component,
			    struct snd_pcm_substream *substream)
{
273 274
	int ret = 0;

275
	if (component->driver->close)
276 277 278
		ret = component->driver->close(component, substream);

	return soc_component_ret(component, ret);
279
}
280

281 282 283 284 285 286
void snd_soc_component_suspend(struct snd_soc_component *component)
{
	if (component->driver->suspend)
		component->driver->suspend(component);
	component->suspended = 1;
}
287 288 289 290 291 292 293

void snd_soc_component_resume(struct snd_soc_component *component)
{
	if (component->driver->resume)
		component->driver->resume(component);
	component->suspended = 0;
}
294 295 296 297 298

int snd_soc_component_is_suspended(struct snd_soc_component *component)
{
	return component->suspended;
}
299 300 301

int snd_soc_component_probe(struct snd_soc_component *component)
{
302 303
	int ret = 0;

304
	if (component->driver->probe)
305
		ret = component->driver->probe(component);
306

307
	return soc_component_ret(component, ret);
308
}
309 310 311 312 313 314

void snd_soc_component_remove(struct snd_soc_component *component)
{
	if (component->driver->remove)
		component->driver->remove(component);
}
315 316 317 318

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

321
	if (component->driver->of_xlate_dai_id)
322
		ret = component->driver->of_xlate_dai_id(component, ep);
323

324
	return soc_component_ret(component, ret);
325
}
326 327 328 329 330 331

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)
332 333 334 335 336 337 338 339
		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;
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
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

392 393 394
static unsigned int soc_component_read_no_lock(
	struct snd_soc_component *component,
	unsigned int reg)
395 396
{
	int ret;
397
	unsigned int val = 0;
398 399

	if (component->regmap)
400
		ret = regmap_read(component->regmap, reg, &val);
401 402
	else if (component->driver->read) {
		ret = 0;
403
		val = component->driver->read(component, reg);
404 405 406 407 408
	}
	else
		ret = -EIO;

	if (ret < 0)
409
		soc_component_ret(component, ret);
410 411 412

	return val;
}
413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431

/**
 * 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;
}
432
EXPORT_SYMBOL_GPL(snd_soc_component_read);
433

434 435 436 437 438 439 440 441 442 443 444 445 446 447
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);
}

448 449 450 451 452 453 454 455 456 457 458
/**
 * 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)
{
459
	int ret;
460

461 462 463
	mutex_lock(&component->io_mutex);
	ret = soc_component_write_no_lock(component, reg, val);
	mutex_unlock(&component->io_mutex);
464

465
	return ret;
466 467 468 469 470 471 472 473
}
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;
474
	int ret = 0;
475 476 477

	mutex_lock(&component->io_mutex);

478
	old = soc_component_read_no_lock(component, reg);
479 480 481 482

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

485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 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
	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;

587
	old = snd_soc_component_read(component, reg);
588 589 590 591 592
	new = (old & ~mask) | value;
	return old != new;
}
EXPORT_SYMBOL_GPL(snd_soc_component_test_bits);

593 594
int snd_soc_pcm_component_pointer(struct snd_pcm_substream *substream)
{
595
	struct snd_soc_pcm_runtime *rtd = asoc_substream_to_rtd(substream);
596
	struct snd_soc_component *component;
597
	int i;
598

599
	/* FIXME: use 1st pointer */
600
	for_each_rtd_components(rtd, i, component)
601 602
		if (component->driver->pointer)
			return component->driver->pointer(component, substream);
603 604 605

	return 0;
}
606 607 608 609

int snd_soc_pcm_component_ioctl(struct snd_pcm_substream *substream,
				unsigned int cmd, void *arg)
{
610
	struct snd_soc_pcm_runtime *rtd = asoc_substream_to_rtd(substream);
611
	struct snd_soc_component *component;
612
	int i;
613

614
	/* FIXME: use 1st ioctl */
615
	for_each_rtd_components(rtd, i, component)
616
		if (component->driver->ioctl)
617 618 619 620
			return soc_component_ret(
				component,
				component->driver->ioctl(component,
							 substream, cmd, arg));
621 622 623

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

625 626
int snd_soc_pcm_component_sync_stop(struct snd_pcm_substream *substream)
{
627
	struct snd_soc_pcm_runtime *rtd = asoc_substream_to_rtd(substream);
628
	struct snd_soc_component *component;
629
	int i, ret;
630

631
	for_each_rtd_components(rtd, i, component) {
632
		if (component->driver->sync_stop) {
633 634 635
			ret = component->driver->sync_stop(component,
							   substream);
			if (ret < 0)
636
				return soc_component_ret(component, ret);
637 638 639 640 641 642
		}
	}

	return 0;
}

643 644 645 646
int snd_soc_pcm_component_copy_user(struct snd_pcm_substream *substream,
				    int channel, unsigned long pos,
				    void __user *buf, unsigned long bytes)
{
647
	struct snd_soc_pcm_runtime *rtd = asoc_substream_to_rtd(substream);
648
	struct snd_soc_component *component;
649
	int i;
650

651
	/* FIXME. it returns 1st copy now */
652
	for_each_rtd_components(rtd, i, component)
653
		if (component->driver->copy_user)
654 655 656 657 658
			return soc_component_ret(
				component,
				component->driver->copy_user(
					component, substream, channel,
					pos, buf, bytes));
659 660 661

	return -EINVAL;
}
662 663 664 665

struct page *snd_soc_pcm_component_page(struct snd_pcm_substream *substream,
					unsigned long offset)
{
666
	struct snd_soc_pcm_runtime *rtd = asoc_substream_to_rtd(substream);
667 668
	struct snd_soc_component *component;
	struct page *page;
669
	int i;
670

671
	/* FIXME. it returns 1st page now */
672
	for_each_rtd_components(rtd, i, component) {
673 674 675 676 677 678
		if (component->driver->page) {
			page = component->driver->page(component,
						       substream, offset);
			if (page)
				return page;
		}
679 680 681 682
	}

	return NULL;
}
683 684 685 686

int snd_soc_pcm_component_mmap(struct snd_pcm_substream *substream,
			       struct vm_area_struct *vma)
{
687
	struct snd_soc_pcm_runtime *rtd = asoc_substream_to_rtd(substream);
688
	struct snd_soc_component *component;
689
	int i;
690

691
	/* FIXME. it returns 1st mmap now */
692
	for_each_rtd_components(rtd, i, component)
693
		if (component->driver->mmap)
694
			return soc_component_ret(
695 696 697
				component,
				component->driver->mmap(component,
							substream, vma));
698 699 700

	return -EINVAL;
}
701

702
int snd_soc_pcm_component_new(struct snd_soc_pcm_runtime *rtd)
703 704 705
{
	struct snd_soc_component *component;
	int ret;
706
	int i;
707

708
	for_each_rtd_components(rtd, i, component) {
709 710 711
		if (component->driver->pcm_construct) {
			ret = component->driver->pcm_construct(component, rtd);
			if (ret < 0)
712
				return soc_component_ret(component, ret);
713
		}
714 715 716 717
	}

	return 0;
}
718

719
void snd_soc_pcm_component_free(struct snd_soc_pcm_runtime *rtd)
720 721
{
	struct snd_soc_component *component;
722
	int i;
723

724 725 726
	if (!rtd->pcm)
		return;

727
	for_each_rtd_components(rtd, i, component)
728
		if (component->driver->pcm_destruct)
729
			component->driver->pcm_destruct(component, rtd->pcm);
730
}
731 732 733

int snd_soc_pcm_component_prepare(struct snd_pcm_substream *substream)
{
734
	struct snd_soc_pcm_runtime *rtd = asoc_substream_to_rtd(substream);
735 736 737 738 739 740 741 742 743 744 745 746 747
	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;
}
748 749 750 751 752

int snd_soc_pcm_component_hw_params(struct snd_pcm_substream *substream,
				    struct snd_pcm_hw_params *params,
				    struct snd_soc_component **last)
{
753
	struct snd_soc_pcm_runtime *rtd = asoc_substream_to_rtd(substream);
754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770
	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);
			if (ret < 0) {
				*last = component;
				return soc_component_ret(component, ret);
			}
		}
	}

	*last = NULL;
	return 0;
}
771 772 773 774

void snd_soc_pcm_component_hw_free(struct snd_pcm_substream *substream,
				   struct snd_soc_component *last)
{
775
	struct snd_soc_pcm_runtime *rtd = asoc_substream_to_rtd(substream);
776 777 778 779 780 781 782 783 784 785 786 787 788 789
	struct snd_soc_component *component;
	int i, ret;

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

		if (component->driver->hw_free) {
			ret = component->driver->hw_free(component, substream);
			if (ret < 0)
				soc_component_ret(component, ret);
		}
	}
}
790 791 792 793

int snd_soc_pcm_component_trigger(struct snd_pcm_substream *substream,
				  int cmd)
{
794
	struct snd_soc_pcm_runtime *rtd = asoc_substream_to_rtd(substream);
795 796 797 798 799 800 801 802 803 804 805 806 807
	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;
}