2018-07-02 06:24:18 +00:00
|
|
|
/* SPDX-License-Identifier: GPL-2.0
|
|
|
|
*
|
2006-10-06 16:20:14 +00:00
|
|
|
* linux/sound/soc.h -- ALSA SoC Layer
|
|
|
|
*
|
2018-07-02 06:24:18 +00:00
|
|
|
* Author: Liam Girdwood
|
|
|
|
* Created: Aug 11th 2005
|
2006-10-06 16:20:14 +00:00
|
|
|
* Copyright: Wolfson Microelectronics. PLC.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __LINUX_SND_SOC_H
|
|
|
|
#define __LINUX_SND_SOC_H
|
|
|
|
|
2013-09-11 00:39:56 +00:00
|
|
|
#include <linux/of.h>
|
2006-10-06 16:20:14 +00:00
|
|
|
#include <linux/platform_device.h>
|
|
|
|
#include <linux/types.h>
|
2010-03-22 12:06:30 +00:00
|
|
|
#include <linux/notifier.h>
|
2006-12-15 08:30:07 +00:00
|
|
|
#include <linux/workqueue.h>
|
2009-03-03 21:25:04 +00:00
|
|
|
#include <linux/interrupt.h>
|
|
|
|
#include <linux/kernel.h>
|
2011-06-13 18:35:29 +00:00
|
|
|
#include <linux/regmap.h>
|
2012-09-14 11:57:27 +00:00
|
|
|
#include <linux/log2.h>
|
2006-10-06 16:20:14 +00:00
|
|
|
#include <sound/core.h>
|
|
|
|
#include <sound/pcm.h>
|
2012-08-16 11:40:40 +00:00
|
|
|
#include <sound/compress_driver.h>
|
2006-10-06 16:20:14 +00:00
|
|
|
#include <sound/control.h>
|
|
|
|
#include <sound/ac97_codec.h>
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Convenience kcontrol builders
|
|
|
|
*/
|
2013-08-05 09:27:31 +00:00
|
|
|
#define SOC_DOUBLE_VALUE(xreg, shift_left, shift_right, xmax, xinvert, xautodisable) \
|
2008-07-29 10:42:26 +00:00
|
|
|
((unsigned long)&(struct soc_mixer_control) \
|
2011-10-05 07:29:22 +00:00
|
|
|
{.reg = xreg, .rreg = xreg, .shift = shift_left, \
|
|
|
|
.rshift = shift_right, .max = xmax, .platform_max = xmax, \
|
2013-08-05 09:27:31 +00:00
|
|
|
.invert = xinvert, .autodisable = xautodisable})
|
2014-10-25 18:25:56 +00:00
|
|
|
#define SOC_DOUBLE_S_VALUE(xreg, shift_left, shift_right, xmin, xmax, xsign_bit, xinvert, xautodisable) \
|
|
|
|
((unsigned long)&(struct soc_mixer_control) \
|
|
|
|
{.reg = xreg, .rreg = xreg, .shift = shift_left, \
|
|
|
|
.rshift = shift_right, .min = xmin, .max = xmax, .platform_max = xmax, \
|
|
|
|
.sign_bit = xsign_bit, .invert = xinvert, .autodisable = xautodisable})
|
2013-08-05 09:27:31 +00:00
|
|
|
#define SOC_SINGLE_VALUE(xreg, xshift, xmax, xinvert, xautodisable) \
|
|
|
|
SOC_DOUBLE_VALUE(xreg, xshift, xshift, xmax, xinvert, xautodisable)
|
2008-07-29 10:42:26 +00:00
|
|
|
#define SOC_SINGLE_VALUE_EXT(xreg, xmax, xinvert) \
|
|
|
|
((unsigned long)&(struct soc_mixer_control) \
|
2010-05-10 11:39:24 +00:00
|
|
|
{.reg = xreg, .max = xmax, .platform_max = xmax, .invert = xinvert})
|
2011-10-04 11:39:39 +00:00
|
|
|
#define SOC_DOUBLE_R_VALUE(xlreg, xrreg, xshift, xmax, xinvert) \
|
|
|
|
((unsigned long)&(struct soc_mixer_control) \
|
|
|
|
{.reg = xlreg, .rreg = xrreg, .shift = xshift, .rshift = xshift, \
|
|
|
|
.max = xmax, .platform_max = xmax, .invert = xinvert})
|
2014-01-16 15:02:11 +00:00
|
|
|
#define SOC_DOUBLE_R_S_VALUE(xlreg, xrreg, xshift, xmin, xmax, xsign_bit, xinvert) \
|
|
|
|
((unsigned long)&(struct soc_mixer_control) \
|
|
|
|
{.reg = xlreg, .rreg = xrreg, .shift = xshift, .rshift = xshift, \
|
|
|
|
.max = xmax, .min = xmin, .platform_max = xmax, .sign_bit = xsign_bit, \
|
|
|
|
.invert = xinvert})
|
2012-06-22 10:40:55 +00:00
|
|
|
#define SOC_DOUBLE_R_RANGE_VALUE(xlreg, xrreg, xshift, xmin, xmax, xinvert) \
|
|
|
|
((unsigned long)&(struct soc_mixer_control) \
|
|
|
|
{.reg = xlreg, .rreg = xrreg, .shift = xshift, .rshift = xshift, \
|
|
|
|
.min = xmin, .max = xmax, .platform_max = xmax, .invert = xinvert})
|
2008-01-10 13:37:42 +00:00
|
|
|
#define SOC_SINGLE(xname, reg, shift, max, invert) \
|
2006-10-06 16:20:14 +00:00
|
|
|
{ .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = xname, \
|
|
|
|
.info = snd_soc_info_volsw, .get = snd_soc_get_volsw,\
|
|
|
|
.put = snd_soc_put_volsw, \
|
2013-08-05 09:27:31 +00:00
|
|
|
.private_value = SOC_SINGLE_VALUE(reg, shift, max, invert, 0) }
|
2012-05-31 14:18:01 +00:00
|
|
|
#define SOC_SINGLE_RANGE(xname, xreg, xshift, xmin, xmax, xinvert) \
|
|
|
|
{ .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = (xname),\
|
|
|
|
.info = snd_soc_info_volsw_range, .get = snd_soc_get_volsw_range, \
|
|
|
|
.put = snd_soc_put_volsw_range, \
|
|
|
|
.private_value = (unsigned long)&(struct soc_mixer_control) \
|
2012-12-19 16:05:00 +00:00
|
|
|
{.reg = xreg, .rreg = xreg, .shift = xshift, \
|
|
|
|
.rshift = xshift, .min = xmin, .max = xmax, \
|
|
|
|
.platform_max = xmax, .invert = xinvert} }
|
2008-01-10 13:37:42 +00:00
|
|
|
#define SOC_SINGLE_TLV(xname, reg, shift, max, invert, tlv_array) \
|
|
|
|
{ .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = xname, \
|
|
|
|
.access = SNDRV_CTL_ELEM_ACCESS_TLV_READ |\
|
|
|
|
SNDRV_CTL_ELEM_ACCESS_READWRITE,\
|
|
|
|
.tlv.p = (tlv_array), \
|
|
|
|
.info = snd_soc_info_volsw, .get = snd_soc_get_volsw,\
|
|
|
|
.put = snd_soc_put_volsw, \
|
2013-08-05 09:27:31 +00:00
|
|
|
.private_value = SOC_SINGLE_VALUE(reg, shift, max, invert, 0) }
|
2012-03-30 15:43:55 +00:00
|
|
|
#define SOC_SINGLE_SX_TLV(xname, xreg, xshift, xmin, xmax, tlv_array) \
|
|
|
|
{ .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = xname, \
|
|
|
|
.access = SNDRV_CTL_ELEM_ACCESS_TLV_READ | \
|
|
|
|
SNDRV_CTL_ELEM_ACCESS_READWRITE, \
|
|
|
|
.tlv.p = (tlv_array),\
|
2015-10-14 12:31:24 +00:00
|
|
|
.info = snd_soc_info_volsw_sx, \
|
2012-03-30 15:43:55 +00:00
|
|
|
.get = snd_soc_get_volsw_sx,\
|
|
|
|
.put = snd_soc_put_volsw_sx, \
|
|
|
|
.private_value = (unsigned long)&(struct soc_mixer_control) \
|
|
|
|
{.reg = xreg, .rreg = xreg, \
|
|
|
|
.shift = xshift, .rshift = xshift, \
|
|
|
|
.max = xmax, .min = xmin} }
|
2012-05-31 14:18:01 +00:00
|
|
|
#define SOC_SINGLE_RANGE_TLV(xname, xreg, xshift, xmin, xmax, xinvert, tlv_array) \
|
|
|
|
{ .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = (xname),\
|
|
|
|
.access = SNDRV_CTL_ELEM_ACCESS_TLV_READ |\
|
|
|
|
SNDRV_CTL_ELEM_ACCESS_READWRITE,\
|
|
|
|
.tlv.p = (tlv_array), \
|
|
|
|
.info = snd_soc_info_volsw_range, \
|
|
|
|
.get = snd_soc_get_volsw_range, .put = snd_soc_put_volsw_range, \
|
|
|
|
.private_value = (unsigned long)&(struct soc_mixer_control) \
|
2012-12-19 16:05:00 +00:00
|
|
|
{.reg = xreg, .rreg = xreg, .shift = xshift, \
|
|
|
|
.rshift = xshift, .min = xmin, .max = xmax, \
|
|
|
|
.platform_max = xmax, .invert = xinvert} }
|
2011-10-04 11:39:38 +00:00
|
|
|
#define SOC_DOUBLE(xname, reg, shift_left, shift_right, max, invert) \
|
2006-10-06 16:20:14 +00:00
|
|
|
{ .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = (xname),\
|
|
|
|
.info = snd_soc_info_volsw, .get = snd_soc_get_volsw, \
|
|
|
|
.put = snd_soc_put_volsw, \
|
2011-10-04 11:39:38 +00:00
|
|
|
.private_value = SOC_DOUBLE_VALUE(reg, shift_left, shift_right, \
|
2013-08-05 09:27:31 +00:00
|
|
|
max, invert, 0) }
|
2015-12-08 15:58:58 +00:00
|
|
|
#define SOC_DOUBLE_STS(xname, reg, shift_left, shift_right, max, invert) \
|
|
|
|
{ \
|
|
|
|
.iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = (xname), \
|
|
|
|
.info = snd_soc_info_volsw, .get = snd_soc_get_volsw, \
|
|
|
|
.access = SNDRV_CTL_ELEM_ACCESS_READ | \
|
|
|
|
SNDRV_CTL_ELEM_ACCESS_VOLATILE, \
|
|
|
|
.private_value = SOC_DOUBLE_VALUE(reg, shift_left, shift_right, \
|
|
|
|
max, invert, 0) }
|
2008-07-29 10:42:26 +00:00
|
|
|
#define SOC_DOUBLE_R(xname, reg_left, reg_right, xshift, xmax, xinvert) \
|
2006-10-06 16:20:14 +00:00
|
|
|
{ .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = (xname), \
|
2011-10-05 07:29:23 +00:00
|
|
|
.info = snd_soc_info_volsw, \
|
2011-10-05 07:29:25 +00:00
|
|
|
.get = snd_soc_get_volsw, .put = snd_soc_put_volsw, \
|
2011-10-04 11:39:39 +00:00
|
|
|
.private_value = SOC_DOUBLE_R_VALUE(reg_left, reg_right, xshift, \
|
|
|
|
xmax, xinvert) }
|
2012-06-22 10:40:55 +00:00
|
|
|
#define SOC_DOUBLE_R_RANGE(xname, reg_left, reg_right, xshift, xmin, \
|
|
|
|
xmax, xinvert) \
|
|
|
|
{ .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = (xname),\
|
|
|
|
.info = snd_soc_info_volsw_range, \
|
|
|
|
.get = snd_soc_get_volsw_range, .put = snd_soc_put_volsw_range, \
|
|
|
|
.private_value = SOC_DOUBLE_R_RANGE_VALUE(reg_left, reg_right, \
|
|
|
|
xshift, xmin, xmax, xinvert) }
|
2011-10-04 11:39:38 +00:00
|
|
|
#define SOC_DOUBLE_TLV(xname, reg, shift_left, shift_right, max, invert, tlv_array) \
|
2008-01-10 13:37:42 +00:00
|
|
|
{ .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = (xname),\
|
|
|
|
.access = SNDRV_CTL_ELEM_ACCESS_TLV_READ |\
|
|
|
|
SNDRV_CTL_ELEM_ACCESS_READWRITE,\
|
|
|
|
.tlv.p = (tlv_array), \
|
|
|
|
.info = snd_soc_info_volsw, .get = snd_soc_get_volsw, \
|
|
|
|
.put = snd_soc_put_volsw, \
|
2011-10-04 11:39:38 +00:00
|
|
|
.private_value = SOC_DOUBLE_VALUE(reg, shift_left, shift_right, \
|
2013-08-05 09:27:31 +00:00
|
|
|
max, invert, 0) }
|
2008-07-29 10:42:26 +00:00
|
|
|
#define SOC_DOUBLE_R_TLV(xname, reg_left, reg_right, xshift, xmax, xinvert, tlv_array) \
|
2008-01-10 13:37:42 +00:00
|
|
|
{ .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = (xname),\
|
|
|
|
.access = SNDRV_CTL_ELEM_ACCESS_TLV_READ |\
|
|
|
|
SNDRV_CTL_ELEM_ACCESS_READWRITE,\
|
|
|
|
.tlv.p = (tlv_array), \
|
2011-10-05 07:29:23 +00:00
|
|
|
.info = snd_soc_info_volsw, \
|
2011-10-05 07:29:25 +00:00
|
|
|
.get = snd_soc_get_volsw, .put = snd_soc_put_volsw, \
|
2011-10-04 11:39:39 +00:00
|
|
|
.private_value = SOC_DOUBLE_R_VALUE(reg_left, reg_right, xshift, \
|
|
|
|
xmax, xinvert) }
|
2012-06-22 10:40:55 +00:00
|
|
|
#define SOC_DOUBLE_R_RANGE_TLV(xname, reg_left, reg_right, xshift, xmin, \
|
|
|
|
xmax, xinvert, tlv_array) \
|
|
|
|
{ .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = (xname),\
|
|
|
|
.access = SNDRV_CTL_ELEM_ACCESS_TLV_READ |\
|
|
|
|
SNDRV_CTL_ELEM_ACCESS_READWRITE,\
|
|
|
|
.tlv.p = (tlv_array), \
|
|
|
|
.info = snd_soc_info_volsw_range, \
|
|
|
|
.get = snd_soc_get_volsw_range, .put = snd_soc_put_volsw_range, \
|
|
|
|
.private_value = SOC_DOUBLE_R_RANGE_VALUE(reg_left, reg_right, \
|
|
|
|
xshift, xmin, xmax, xinvert) }
|
2012-03-30 15:43:55 +00:00
|
|
|
#define SOC_DOUBLE_R_SX_TLV(xname, xreg, xrreg, xshift, xmin, xmax, tlv_array) \
|
|
|
|
{ .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = (xname), \
|
|
|
|
.access = SNDRV_CTL_ELEM_ACCESS_TLV_READ | \
|
|
|
|
SNDRV_CTL_ELEM_ACCESS_READWRITE, \
|
|
|
|
.tlv.p = (tlv_array), \
|
2015-10-14 12:31:24 +00:00
|
|
|
.info = snd_soc_info_volsw_sx, \
|
2012-03-30 15:43:55 +00:00
|
|
|
.get = snd_soc_get_volsw_sx, \
|
|
|
|
.put = snd_soc_put_volsw_sx, \
|
|
|
|
.private_value = (unsigned long)&(struct soc_mixer_control) \
|
|
|
|
{.reg = xreg, .rreg = xrreg, \
|
|
|
|
.shift = xshift, .rshift = xshift, \
|
|
|
|
.max = xmax, .min = xmin} }
|
2014-01-16 15:02:11 +00:00
|
|
|
#define SOC_DOUBLE_R_S_TLV(xname, reg_left, reg_right, xshift, xmin, xmax, xsign_bit, xinvert, tlv_array) \
|
|
|
|
{ .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = (xname),\
|
|
|
|
.access = SNDRV_CTL_ELEM_ACCESS_TLV_READ |\
|
|
|
|
SNDRV_CTL_ELEM_ACCESS_READWRITE,\
|
|
|
|
.tlv.p = (tlv_array), \
|
|
|
|
.info = snd_soc_info_volsw, \
|
|
|
|
.get = snd_soc_get_volsw, .put = snd_soc_put_volsw, \
|
|
|
|
.private_value = SOC_DOUBLE_R_S_VALUE(reg_left, reg_right, xshift, \
|
|
|
|
xmin, xmax, xsign_bit, xinvert) }
|
2016-05-27 13:45:45 +00:00
|
|
|
#define SOC_SINGLE_S8_TLV(xname, xreg, xmin, xmax, tlv_array) \
|
|
|
|
{ .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = (xname), \
|
|
|
|
.access = SNDRV_CTL_ELEM_ACCESS_TLV_READ | \
|
|
|
|
SNDRV_CTL_ELEM_ACCESS_READWRITE, \
|
|
|
|
.tlv.p = (tlv_array), \
|
|
|
|
.info = snd_soc_info_volsw, .get = snd_soc_get_volsw,\
|
|
|
|
.put = snd_soc_put_volsw, \
|
|
|
|
.private_value = (unsigned long)&(struct soc_mixer_control) \
|
|
|
|
{.reg = xreg, .rreg = xreg, \
|
|
|
|
.min = xmin, .max = xmax, .platform_max = xmax, \
|
|
|
|
.sign_bit = 7,} }
|
2008-07-29 10:42:26 +00:00
|
|
|
#define SOC_DOUBLE_S8_TLV(xname, xreg, xmin, xmax, tlv_array) \
|
2008-05-28 16:58:05 +00:00
|
|
|
{ .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = (xname), \
|
|
|
|
.access = SNDRV_CTL_ELEM_ACCESS_TLV_READ | \
|
|
|
|
SNDRV_CTL_ELEM_ACCESS_READWRITE, \
|
|
|
|
.tlv.p = (tlv_array), \
|
2014-10-25 18:25:56 +00:00
|
|
|
.info = snd_soc_info_volsw, .get = snd_soc_get_volsw,\
|
|
|
|
.put = snd_soc_put_volsw, \
|
|
|
|
.private_value = SOC_DOUBLE_S_VALUE(xreg, 0, 8, xmin, xmax, 7, 0, 0) }
|
2014-02-18 07:11:42 +00:00
|
|
|
#define SOC_ENUM_DOUBLE(xreg, xshift_l, xshift_r, xitems, xtexts) \
|
2006-10-06 16:20:14 +00:00
|
|
|
{ .reg = xreg, .shift_l = xshift_l, .shift_r = xshift_r, \
|
2014-02-18 07:11:42 +00:00
|
|
|
.items = xitems, .texts = xtexts, \
|
|
|
|
.mask = xitems ? roundup_pow_of_two(xitems) - 1 : 0}
|
|
|
|
#define SOC_ENUM_SINGLE(xreg, xshift, xitems, xtexts) \
|
|
|
|
SOC_ENUM_DOUBLE(xreg, xshift, xshift, xitems, xtexts)
|
|
|
|
#define SOC_ENUM_SINGLE_EXT(xitems, xtexts) \
|
|
|
|
{ .items = xitems, .texts = xtexts }
|
|
|
|
#define SOC_VALUE_ENUM_DOUBLE(xreg, xshift_l, xshift_r, xmask, xitems, xtexts, xvalues) \
|
2009-01-05 07:54:57 +00:00
|
|
|
{ .reg = xreg, .shift_l = xshift_l, .shift_r = xshift_r, \
|
2014-02-18 07:11:42 +00:00
|
|
|
.mask = xmask, .items = xitems, .texts = xtexts, .values = xvalues}
|
2015-05-01 11:37:23 +00:00
|
|
|
#define SOC_VALUE_ENUM_SINGLE(xreg, xshift, xmask, xitems, xtexts, xvalues) \
|
|
|
|
SOC_VALUE_ENUM_DOUBLE(xreg, xshift, xshift, xmask, xitems, xtexts, xvalues)
|
2015-05-01 11:37:26 +00:00
|
|
|
#define SOC_VALUE_ENUM_SINGLE_AUTODISABLE(xreg, xshift, xmask, xitems, xtexts, xvalues) \
|
|
|
|
{ .reg = xreg, .shift_l = xshift, .shift_r = xshift, \
|
|
|
|
.mask = xmask, .items = xitems, .texts = xtexts, \
|
|
|
|
.values = xvalues, .autodisable = 1}
|
2014-02-28 07:31:05 +00:00
|
|
|
#define SOC_ENUM_SINGLE_VIRT(xitems, xtexts) \
|
|
|
|
SOC_ENUM_SINGLE(SND_SOC_NOPM, 0, xitems, xtexts)
|
2006-10-06 16:20:14 +00:00
|
|
|
#define SOC_ENUM(xname, xenum) \
|
|
|
|
{ .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = xname,\
|
|
|
|
.info = snd_soc_info_enum_double, \
|
|
|
|
.get = snd_soc_get_enum_double, .put = snd_soc_put_enum_double, \
|
|
|
|
.private_value = (unsigned long)&xenum }
|
2008-07-29 10:42:27 +00:00
|
|
|
#define SOC_SINGLE_EXT(xname, xreg, xshift, xmax, xinvert,\
|
2006-10-06 16:20:14 +00:00
|
|
|
xhandler_get, xhandler_put) \
|
|
|
|
{ .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = xname, \
|
2007-02-02 16:13:05 +00:00
|
|
|
.info = snd_soc_info_volsw, \
|
2006-10-06 16:20:14 +00:00
|
|
|
.get = xhandler_get, .put = xhandler_put, \
|
2013-08-05 09:27:31 +00:00
|
|
|
.private_value = SOC_SINGLE_VALUE(xreg, xshift, xmax, xinvert, 0) }
|
2011-10-04 11:39:38 +00:00
|
|
|
#define SOC_DOUBLE_EXT(xname, reg, shift_left, shift_right, max, invert,\
|
2009-04-24 14:37:44 +00:00
|
|
|
xhandler_get, xhandler_put) \
|
|
|
|
{ .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = (xname),\
|
|
|
|
.info = snd_soc_info_volsw, \
|
|
|
|
.get = xhandler_get, .put = xhandler_put, \
|
2011-10-04 11:39:38 +00:00
|
|
|
.private_value = \
|
2013-08-05 09:27:31 +00:00
|
|
|
SOC_DOUBLE_VALUE(reg, shift_left, shift_right, max, invert, 0) }
|
2015-09-29 15:43:56 +00:00
|
|
|
#define SOC_DOUBLE_R_EXT(xname, reg_left, reg_right, xshift, xmax, xinvert,\
|
|
|
|
xhandler_get, xhandler_put) \
|
|
|
|
{ .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = (xname), \
|
|
|
|
.info = snd_soc_info_volsw, \
|
|
|
|
.get = xhandler_get, .put = xhandler_put, \
|
|
|
|
.private_value = SOC_DOUBLE_R_VALUE(reg_left, reg_right, xshift, \
|
|
|
|
xmax, xinvert) }
|
2008-07-29 10:42:27 +00:00
|
|
|
#define SOC_SINGLE_EXT_TLV(xname, xreg, xshift, xmax, xinvert,\
|
2008-06-11 12:47:13 +00:00
|
|
|
xhandler_get, xhandler_put, tlv_array) \
|
|
|
|
{ .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = xname, \
|
|
|
|
.access = SNDRV_CTL_ELEM_ACCESS_TLV_READ |\
|
|
|
|
SNDRV_CTL_ELEM_ACCESS_READWRITE,\
|
|
|
|
.tlv.p = (tlv_array), \
|
|
|
|
.info = snd_soc_info_volsw, \
|
|
|
|
.get = xhandler_get, .put = xhandler_put, \
|
2013-08-05 09:27:31 +00:00
|
|
|
.private_value = SOC_SINGLE_VALUE(xreg, xshift, xmax, xinvert, 0) }
|
2015-09-16 12:59:42 +00:00
|
|
|
#define SOC_SINGLE_RANGE_EXT_TLV(xname, xreg, xshift, xmin, xmax, xinvert, \
|
|
|
|
xhandler_get, xhandler_put, tlv_array) \
|
|
|
|
{ .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = (xname),\
|
|
|
|
.access = SNDRV_CTL_ELEM_ACCESS_TLV_READ |\
|
|
|
|
SNDRV_CTL_ELEM_ACCESS_READWRITE,\
|
|
|
|
.tlv.p = (tlv_array), \
|
|
|
|
.info = snd_soc_info_volsw_range, \
|
|
|
|
.get = xhandler_get, .put = xhandler_put, \
|
|
|
|
.private_value = (unsigned long)&(struct soc_mixer_control) \
|
|
|
|
{.reg = xreg, .rreg = xreg, .shift = xshift, \
|
|
|
|
.rshift = xshift, .min = xmin, .max = xmax, \
|
|
|
|
.platform_max = xmax, .invert = xinvert} }
|
2009-07-15 11:33:47 +00:00
|
|
|
#define SOC_DOUBLE_EXT_TLV(xname, xreg, shift_left, shift_right, xmax, xinvert,\
|
|
|
|
xhandler_get, xhandler_put, tlv_array) \
|
|
|
|
{ .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = (xname), \
|
|
|
|
.access = SNDRV_CTL_ELEM_ACCESS_TLV_READ | \
|
|
|
|
SNDRV_CTL_ELEM_ACCESS_READWRITE, \
|
|
|
|
.tlv.p = (tlv_array), \
|
|
|
|
.info = snd_soc_info_volsw, \
|
|
|
|
.get = xhandler_get, .put = xhandler_put, \
|
2011-10-04 11:39:38 +00:00
|
|
|
.private_value = SOC_DOUBLE_VALUE(xreg, shift_left, shift_right, \
|
2013-08-05 09:27:31 +00:00
|
|
|
xmax, xinvert, 0) }
|
2009-07-15 11:33:50 +00:00
|
|
|
#define SOC_DOUBLE_R_EXT_TLV(xname, reg_left, reg_right, xshift, xmax, xinvert,\
|
|
|
|
xhandler_get, xhandler_put, tlv_array) \
|
|
|
|
{ .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = (xname), \
|
|
|
|
.access = SNDRV_CTL_ELEM_ACCESS_TLV_READ | \
|
|
|
|
SNDRV_CTL_ELEM_ACCESS_READWRITE, \
|
|
|
|
.tlv.p = (tlv_array), \
|
2011-10-05 07:29:23 +00:00
|
|
|
.info = snd_soc_info_volsw, \
|
2009-07-15 11:33:50 +00:00
|
|
|
.get = xhandler_get, .put = xhandler_put, \
|
2011-10-04 11:39:39 +00:00
|
|
|
.private_value = SOC_DOUBLE_R_VALUE(reg_left, reg_right, xshift, \
|
|
|
|
xmax, xinvert) }
|
2006-10-06 16:20:14 +00:00
|
|
|
#define SOC_SINGLE_BOOL_EXT(xname, xdata, xhandler_get, xhandler_put) \
|
|
|
|
{ .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = xname, \
|
|
|
|
.info = snd_soc_info_bool_ext, \
|
|
|
|
.get = xhandler_get, .put = xhandler_put, \
|
|
|
|
.private_value = xdata }
|
|
|
|
#define SOC_ENUM_EXT(xname, xenum, xhandler_get, xhandler_put) \
|
|
|
|
{ .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = xname, \
|
2013-08-10 19:33:10 +00:00
|
|
|
.info = snd_soc_info_enum_double, \
|
2006-10-06 16:20:14 +00:00
|
|
|
.get = xhandler_get, .put = xhandler_put, \
|
|
|
|
.private_value = (unsigned long)&xenum }
|
2014-07-07 12:16:54 +00:00
|
|
|
#define SOC_VALUE_ENUM_EXT(xname, xenum, xhandler_get, xhandler_put) \
|
|
|
|
SOC_ENUM_EXT(xname, xenum, xhandler_get, xhandler_put)
|
2006-10-06 16:20:14 +00:00
|
|
|
|
2011-10-10 17:31:26 +00:00
|
|
|
#define SND_SOC_BYTES(xname, xbase, xregs) \
|
|
|
|
{ .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = xname, \
|
|
|
|
.info = snd_soc_bytes_info, .get = snd_soc_bytes_get, \
|
|
|
|
.put = snd_soc_bytes_put, .private_value = \
|
|
|
|
((unsigned long)&(struct soc_bytes) \
|
|
|
|
{.base = xbase, .num_regs = xregs }) }
|
2010-05-15 15:30:01 +00:00
|
|
|
|
2012-02-18 00:20:33 +00:00
|
|
|
#define SND_SOC_BYTES_MASK(xname, xbase, xregs, xmask) \
|
|
|
|
{ .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = xname, \
|
|
|
|
.info = snd_soc_bytes_info, .get = snd_soc_bytes_get, \
|
|
|
|
.put = snd_soc_bytes_put, .private_value = \
|
|
|
|
((unsigned long)&(struct soc_bytes) \
|
|
|
|
{.base = xbase, .num_regs = xregs, \
|
|
|
|
.mask = xmask }) }
|
|
|
|
|
2015-11-23 15:52:29 +00:00
|
|
|
/*
|
|
|
|
* SND_SOC_BYTES_EXT is deprecated, please USE SND_SOC_BYTES_TLV instead
|
|
|
|
*/
|
2014-05-02 05:28:11 +00:00
|
|
|
#define SND_SOC_BYTES_EXT(xname, xcount, xhandler_get, xhandler_put) \
|
|
|
|
{ .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = xname, \
|
|
|
|
.info = snd_soc_bytes_info_ext, \
|
|
|
|
.get = xhandler_get, .put = xhandler_put, \
|
|
|
|
.private_value = (unsigned long)&(struct soc_bytes_ext) \
|
|
|
|
{.max = xcount} }
|
2014-07-15 16:04:48 +00:00
|
|
|
#define SND_SOC_BYTES_TLV(xname, xcount, xhandler_get, xhandler_put) \
|
|
|
|
{ .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = xname, \
|
|
|
|
.access = SNDRV_CTL_ELEM_ACCESS_TLV_READWRITE | \
|
|
|
|
SNDRV_CTL_ELEM_ACCESS_TLV_CALLBACK, \
|
|
|
|
.tlv.c = (snd_soc_bytes_tlv_callback), \
|
2014-08-18 09:23:03 +00:00
|
|
|
.info = snd_soc_bytes_info_ext, \
|
2014-07-15 16:04:48 +00:00
|
|
|
.private_value = (unsigned long)&(struct soc_bytes_ext) \
|
|
|
|
{.max = xcount, .get = xhandler_get, .put = xhandler_put, } }
|
2012-04-20 09:32:13 +00:00
|
|
|
#define SOC_SINGLE_XR_SX(xname, xregbase, xregcount, xnbits, \
|
|
|
|
xmin, xmax, xinvert) \
|
|
|
|
{ .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = (xname), \
|
|
|
|
.info = snd_soc_info_xr_sx, .get = snd_soc_get_xr_sx, \
|
|
|
|
.put = snd_soc_put_xr_sx, \
|
|
|
|
.private_value = (unsigned long)&(struct soc_mreg_control) \
|
|
|
|
{.regbase = xregbase, .regcount = xregcount, .nbits = xnbits, \
|
|
|
|
.invert = xinvert, .min = xmin, .max = xmax} }
|
|
|
|
|
2012-04-20 09:32:44 +00:00
|
|
|
#define SOC_SINGLE_STROBE(xname, xreg, xshift, xinvert) \
|
|
|
|
SOC_SINGLE_EXT(xname, xreg, xshift, 1, xinvert, \
|
|
|
|
snd_soc_get_strobe, snd_soc_put_strobe)
|
|
|
|
|
2010-01-21 21:04:03 +00:00
|
|
|
/*
|
|
|
|
* Simplified versions of above macros, declaring a struct and calculating
|
|
|
|
* ARRAY_SIZE internally
|
|
|
|
*/
|
|
|
|
#define SOC_ENUM_DOUBLE_DECL(name, xreg, xshift_l, xshift_r, xtexts) \
|
2014-02-18 08:08:51 +00:00
|
|
|
const struct soc_enum name = SOC_ENUM_DOUBLE(xreg, xshift_l, xshift_r, \
|
2010-01-21 21:04:03 +00:00
|
|
|
ARRAY_SIZE(xtexts), xtexts)
|
|
|
|
#define SOC_ENUM_SINGLE_DECL(name, xreg, xshift, xtexts) \
|
|
|
|
SOC_ENUM_DOUBLE_DECL(name, xreg, xshift, xshift, xtexts)
|
|
|
|
#define SOC_ENUM_SINGLE_EXT_DECL(name, xtexts) \
|
2014-02-18 08:08:51 +00:00
|
|
|
const struct soc_enum name = SOC_ENUM_SINGLE_EXT(ARRAY_SIZE(xtexts), xtexts)
|
2010-01-21 21:04:03 +00:00
|
|
|
#define SOC_VALUE_ENUM_DOUBLE_DECL(name, xreg, xshift_l, xshift_r, xmask, xtexts, xvalues) \
|
2014-02-18 08:08:51 +00:00
|
|
|
const struct soc_enum name = SOC_VALUE_ENUM_DOUBLE(xreg, xshift_l, xshift_r, xmask, \
|
2010-01-21 21:04:03 +00:00
|
|
|
ARRAY_SIZE(xtexts), xtexts, xvalues)
|
|
|
|
#define SOC_VALUE_ENUM_SINGLE_DECL(name, xreg, xshift, xmask, xtexts, xvalues) \
|
|
|
|
SOC_VALUE_ENUM_DOUBLE_DECL(name, xreg, xshift, xshift, xmask, xtexts, xvalues)
|
2015-05-01 11:37:26 +00:00
|
|
|
|
|
|
|
#define SOC_VALUE_ENUM_SINGLE_AUTODISABLE_DECL(name, xreg, xshift, xmask, xtexts, xvalues) \
|
|
|
|
const struct soc_enum name = SOC_VALUE_ENUM_SINGLE_AUTODISABLE(xreg, \
|
|
|
|
xshift, xmask, ARRAY_SIZE(xtexts), xtexts, xvalues)
|
|
|
|
|
2014-02-28 07:31:05 +00:00
|
|
|
#define SOC_ENUM_SINGLE_VIRT_DECL(name, xtexts) \
|
|
|
|
const struct soc_enum name = SOC_ENUM_SINGLE_VIRT(ARRAY_SIZE(xtexts), xtexts)
|
2010-01-21 21:04:03 +00:00
|
|
|
|
2008-05-19 10:31:28 +00:00
|
|
|
/*
|
|
|
|
* Bias levels
|
|
|
|
*
|
|
|
|
* @ON: Bias is fully on for audio playback and capture operations.
|
|
|
|
* @PREPARE: Prepare for audio operations. Called before DAPM switching for
|
|
|
|
* stream start and stop operations.
|
|
|
|
* @STANDBY: Low power standby state when no playback/capture operations are
|
|
|
|
* in progress. NOTE: The transition time between STANDBY and ON
|
|
|
|
* should be as fast as possible and no longer than 10ms.
|
|
|
|
* @OFF: Power Off. No restrictions on transition times.
|
|
|
|
*/
|
|
|
|
enum snd_soc_bias_level {
|
2011-06-04 10:25:10 +00:00
|
|
|
SND_SOC_BIAS_OFF = 0,
|
|
|
|
SND_SOC_BIAS_STANDBY = 1,
|
|
|
|
SND_SOC_BIAS_PREPARE = 2,
|
|
|
|
SND_SOC_BIAS_ON = 3,
|
2008-05-19 10:31:28 +00:00
|
|
|
};
|
|
|
|
|
2011-12-21 17:40:59 +00:00
|
|
|
struct device_node;
|
2009-01-07 17:31:10 +00:00
|
|
|
struct snd_jack;
|
|
|
|
struct snd_soc_card;
|
2006-10-06 16:20:14 +00:00
|
|
|
struct snd_soc_pcm_stream;
|
|
|
|
struct snd_soc_ops;
|
|
|
|
struct snd_soc_pcm_runtime;
|
2008-07-07 15:07:17 +00:00
|
|
|
struct snd_soc_dai;
|
2010-03-17 20:15:21 +00:00
|
|
|
struct snd_soc_dai_driver;
|
2010-02-22 06:58:04 +00:00
|
|
|
struct snd_soc_dai_link;
|
2013-03-12 01:27:21 +00:00
|
|
|
struct snd_soc_component;
|
|
|
|
struct snd_soc_component_driver;
|
2006-10-06 16:20:14 +00:00
|
|
|
struct soc_enum;
|
2009-01-07 17:31:10 +00:00
|
|
|
struct snd_soc_jack;
|
2011-02-09 09:14:17 +00:00
|
|
|
struct snd_soc_jack_zone;
|
2009-01-07 17:31:10 +00:00
|
|
|
struct snd_soc_jack_pin;
|
2010-11-05 13:53:46 +00:00
|
|
|
#include <sound/soc-dapm.h>
|
ASoC: dpcm: Add Dynamic PCM core operations.
The Dynamic PCM core allows digital audio data to be dynamically
routed between different ALSA PCMs and DAI links on SoC CPUs with
on chip DSP devices. e.g. audio data could be played on pcm:0,0 and
routed to any (or all) SoC DAI links.
Dynamic PCM introduces the concept of Front End (FE) PCMs and Back
End (BE) PCMs. The FE PCMs are normal ALSA PCM devices except that
they can dynamically route digital audio data to any supported BE
PCM. A BE PCM has no ALSA device, but represents a DAI link and it's
substream and audio HW parameters.
e.g. pcm:0,0 routing digital data to 2 external codecs.
FE pcm:0,0 ----> BE (McBSP.0) ----> CODEC 0
+--> BE (McPDM.0) ----> CODEC 1
e.g. pcm:0,0 and pcm:0,1 routing digital data to 1 external codec.
FE pcm:0,0 ---
+--> BE (McBSP.0) ----> CODEC
FE pcm:0,1 ---
The digital audio routing is controlled by the usual ALSA method
of mixer kcontrols. Dynamic PCM uses a DAPM graph to work out the
routing based upon the mixer settings and configures the BE PCMs
based on routing and the FE HW params.
DPCM is designed so that most ASoC component drivers will need no
modification at all. It's intended that existing CODEC, DAI and
platform drivers can be used in DPCM based audio devices without
any changes. However, there will be some cases where minor changes
are required (e.g. for very tightly coupled HW) and there are
helpers to support this too.
Somethimes the HW params of a FE and BE do not match or are
incompatible, so in these cases the machine driver can reconfigure
any hw_params and make any DSP perform sample rate / format conversion.
This patch adds the core DPCM code and contains :-
o The FE and BE PCM operations.
o FE and BE DAI link support.
o FE and BE PCM creation.
o BE support API.
o BE and FE link management.
Signed-off-by: Liam Girdwood <lrg@ti.com>
Signed-off-by: Mark Brown <broonie@opensource.wolfsonmicro.com>
2012-04-25 11:12:49 +00:00
|
|
|
#include <sound/soc-dpcm.h>
|
2016-01-15 08:13:28 +00:00
|
|
|
#include <sound/soc-topology.h>
|
2010-03-17 20:15:21 +00:00
|
|
|
|
2009-03-03 21:25:04 +00:00
|
|
|
struct snd_soc_jack_gpio;
|
2006-10-06 16:20:14 +00:00
|
|
|
|
|
|
|
typedef int (*hw_write_t)(void *,const char* ,int);
|
|
|
|
|
2011-06-09 16:04:39 +00:00
|
|
|
enum snd_soc_pcm_subclass {
|
|
|
|
SND_SOC_PCM_CLASS_PCM = 0,
|
|
|
|
SND_SOC_PCM_CLASS_BE = 1,
|
|
|
|
};
|
|
|
|
|
2012-03-07 10:38:25 +00:00
|
|
|
enum snd_soc_card_subclass {
|
2012-03-09 12:02:07 +00:00
|
|
|
SND_SOC_CARD_CLASS_INIT = 0,
|
|
|
|
SND_SOC_CARD_CLASS_RUNTIME = 1,
|
2012-03-07 10:38:25 +00:00
|
|
|
};
|
|
|
|
|
2011-01-14 13:52:48 +00:00
|
|
|
int snd_soc_register_card(struct snd_soc_card *card);
|
|
|
|
int snd_soc_unregister_card(struct snd_soc_card *card);
|
2013-09-16 17:02:05 +00:00
|
|
|
int devm_snd_soc_register_card(struct device *dev, struct snd_soc_card *card);
|
2015-04-19 01:45:48 +00:00
|
|
|
#ifdef CONFIG_PM_SLEEP
|
2011-01-26 14:59:27 +00:00
|
|
|
int snd_soc_suspend(struct device *dev);
|
|
|
|
int snd_soc_resume(struct device *dev);
|
2015-04-19 01:45:48 +00:00
|
|
|
#else
|
|
|
|
static inline int snd_soc_suspend(struct device *dev)
|
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline int snd_soc_resume(struct device *dev)
|
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
#endif
|
2011-01-26 14:59:27 +00:00
|
|
|
int snd_soc_poweroff(struct device *dev);
|
2017-10-02 05:10:17 +00:00
|
|
|
int snd_soc_add_component(struct device *dev,
|
|
|
|
struct snd_soc_component *component,
|
|
|
|
const struct snd_soc_component_driver *component_driver,
|
|
|
|
struct snd_soc_dai_driver *dai_drv,
|
|
|
|
int num_dai);
|
2013-03-12 01:27:21 +00:00
|
|
|
int snd_soc_register_component(struct device *dev,
|
2017-08-07 02:06:23 +00:00
|
|
|
const struct snd_soc_component_driver *component_driver,
|
2013-03-12 01:27:21 +00:00
|
|
|
struct snd_soc_dai_driver *dai_drv, int num_dai);
|
2013-09-04 19:37:34 +00:00
|
|
|
int devm_snd_soc_register_component(struct device *dev,
|
2017-08-07 02:06:23 +00:00
|
|
|
const struct snd_soc_component_driver *component_driver,
|
2013-09-04 19:37:34 +00:00
|
|
|
struct snd_soc_dai_driver *dai_drv, int num_dai);
|
2013-03-12 01:27:21 +00:00
|
|
|
void snd_soc_unregister_component(struct device *dev);
|
2017-10-02 05:09:52 +00:00
|
|
|
struct snd_soc_component *snd_soc_lookup_component(struct device *dev,
|
|
|
|
const char *driver_name);
|
2014-11-08 15:38:07 +00:00
|
|
|
|
2011-12-22 12:16:39 +00:00
|
|
|
int soc_new_pcm(struct snd_soc_pcm_runtime *rtd, int num);
|
2015-10-13 15:41:00 +00:00
|
|
|
#ifdef CONFIG_SND_SOC_COMPRESS
|
|
|
|
int snd_soc_new_compress(struct snd_soc_pcm_runtime *rtd, int num);
|
2018-05-29 23:30:02 +00:00
|
|
|
#else
|
|
|
|
static inline int snd_soc_new_compress(struct snd_soc_pcm_runtime *rtd, int num)
|
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
2015-10-13 15:41:00 +00:00
|
|
|
#endif
|
2008-12-03 19:40:30 +00:00
|
|
|
|
2017-11-28 06:27:09 +00:00
|
|
|
void snd_soc_disconnect_sync(struct device *dev);
|
|
|
|
|
2012-04-25 11:12:53 +00:00
|
|
|
struct snd_pcm_substream *snd_soc_get_dai_substream(struct snd_soc_card *card,
|
|
|
|
const char *dai_link, int stream);
|
|
|
|
struct snd_soc_pcm_runtime *snd_soc_get_pcm_runtime(struct snd_soc_card *card,
|
|
|
|
const char *dai_link);
|
|
|
|
|
2014-03-05 12:17:42 +00:00
|
|
|
bool snd_soc_runtime_ignore_pmdown_time(struct snd_soc_pcm_runtime *rtd);
|
2014-03-05 12:17:43 +00:00
|
|
|
void snd_soc_runtime_activate(struct snd_soc_pcm_runtime *rtd, int stream);
|
|
|
|
void snd_soc_runtime_deactivate(struct snd_soc_pcm_runtime *rtd, int stream);
|
2014-03-05 12:17:42 +00:00
|
|
|
|
2015-01-06 14:17:20 +00:00
|
|
|
int snd_soc_runtime_set_dai_fmt(struct snd_soc_pcm_runtime *rtd,
|
|
|
|
unsigned int dai_fmt);
|
|
|
|
|
2017-04-24 06:54:41 +00:00
|
|
|
#ifdef CONFIG_DMI
|
2017-01-14 08:13:02 +00:00
|
|
|
int snd_soc_set_dmi_name(struct snd_soc_card *card, const char *flavour);
|
2017-04-24 06:54:41 +00:00
|
|
|
#else
|
|
|
|
static inline int snd_soc_set_dmi_name(struct snd_soc_card *card,
|
|
|
|
const char *flavour)
|
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
#endif
|
2017-01-14 08:13:02 +00:00
|
|
|
|
2009-11-10 16:08:04 +00:00
|
|
|
/* Utility functions to get clock rates from various things */
|
|
|
|
int snd_soc_calc_frame_size(int sample_size, int channels, int tdm_slots);
|
|
|
|
int snd_soc_params_to_frame_size(struct snd_pcm_hw_params *params);
|
2009-11-19 11:36:10 +00:00
|
|
|
int snd_soc_calc_bclk(int fs, int sample_size, int channels, int tdm_slots);
|
2009-11-10 16:08:04 +00:00
|
|
|
int snd_soc_params_to_bclk(struct snd_pcm_hw_params *parms);
|
|
|
|
|
2006-10-06 16:20:14 +00:00
|
|
|
/* set runtime hw params */
|
|
|
|
int snd_soc_set_runtime_hwparams(struct snd_pcm_substream *substream,
|
|
|
|
const struct snd_pcm_hardware *hw);
|
|
|
|
|
2009-01-07 17:31:10 +00:00
|
|
|
/* Jack reporting */
|
2015-03-04 09:33:17 +00:00
|
|
|
int snd_soc_card_jack_new(struct snd_soc_card *card, const char *id, int type,
|
|
|
|
struct snd_soc_jack *jack, struct snd_soc_jack_pin *pins,
|
|
|
|
unsigned int num_pins);
|
|
|
|
|
2009-01-07 17:31:10 +00:00
|
|
|
void snd_soc_jack_report(struct snd_soc_jack *jack, int status, int mask);
|
|
|
|
int snd_soc_jack_add_pins(struct snd_soc_jack *jack, int count,
|
|
|
|
struct snd_soc_jack_pin *pins);
|
2010-03-22 12:06:30 +00:00
|
|
|
void snd_soc_jack_notifier_register(struct snd_soc_jack *jack,
|
|
|
|
struct notifier_block *nb);
|
|
|
|
void snd_soc_jack_notifier_unregister(struct snd_soc_jack *jack,
|
|
|
|
struct notifier_block *nb);
|
2011-02-09 09:14:17 +00:00
|
|
|
int snd_soc_jack_add_zones(struct snd_soc_jack *jack, int count,
|
|
|
|
struct snd_soc_jack_zone *zones);
|
|
|
|
int snd_soc_jack_get_type(struct snd_soc_jack *jack, int micbias_voltage);
|
2009-03-03 21:25:04 +00:00
|
|
|
#ifdef CONFIG_GPIOLIB
|
|
|
|
int snd_soc_jack_add_gpios(struct snd_soc_jack *jack, int count,
|
|
|
|
struct snd_soc_jack_gpio *gpios);
|
2014-05-26 11:34:37 +00:00
|
|
|
int snd_soc_jack_add_gpiods(struct device *gpiod_dev,
|
|
|
|
struct snd_soc_jack *jack,
|
|
|
|
int count, struct snd_soc_jack_gpio *gpios);
|
2009-03-03 21:25:04 +00:00
|
|
|
void snd_soc_jack_free_gpios(struct snd_soc_jack *jack, int count,
|
|
|
|
struct snd_soc_jack_gpio *gpios);
|
2013-11-21 14:55:06 +00:00
|
|
|
#else
|
|
|
|
static inline int snd_soc_jack_add_gpios(struct snd_soc_jack *jack, int count,
|
|
|
|
struct snd_soc_jack_gpio *gpios)
|
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2014-05-27 07:39:57 +00:00
|
|
|
static inline int snd_soc_jack_add_gpiods(struct device *gpiod_dev,
|
|
|
|
struct snd_soc_jack *jack,
|
|
|
|
int count,
|
|
|
|
struct snd_soc_jack_gpio *gpios)
|
2014-05-26 11:34:37 +00:00
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2013-11-21 14:55:06 +00:00
|
|
|
static inline void snd_soc_jack_free_gpios(struct snd_soc_jack *jack, int count,
|
|
|
|
struct snd_soc_jack_gpio *gpios)
|
|
|
|
{
|
|
|
|
}
|
2009-03-03 21:25:04 +00:00
|
|
|
#endif
|
2009-01-07 17:31:10 +00:00
|
|
|
|
2018-01-29 02:58:25 +00:00
|
|
|
struct snd_ac97 *snd_soc_alloc_ac97_component(struct snd_soc_component *component);
|
|
|
|
struct snd_ac97 *snd_soc_new_ac97_component(struct snd_soc_component *component,
|
2015-07-21 19:53:01 +00:00
|
|
|
unsigned int id, unsigned int id_mask);
|
2018-01-29 02:58:25 +00:00
|
|
|
void snd_soc_free_ac97_component(struct snd_ac97 *ac97);
|
2006-10-06 16:20:14 +00:00
|
|
|
|
2018-11-02 15:18:21 +00:00
|
|
|
#ifdef CONFIG_SND_SOC_AC97_BUS
|
2013-06-26 11:45:59 +00:00
|
|
|
int snd_soc_set_ac97_ops(struct snd_ac97_bus_ops *ops);
|
2013-08-19 15:05:55 +00:00
|
|
|
int snd_soc_set_ac97_ops_of_reset(struct snd_ac97_bus_ops *ops,
|
|
|
|
struct platform_device *pdev);
|
2013-06-26 11:45:59 +00:00
|
|
|
|
2014-11-10 21:41:46 +00:00
|
|
|
extern struct snd_ac97_bus_ops *soc_ac97_ops;
|
|
|
|
#else
|
|
|
|
static inline int snd_soc_set_ac97_ops_of_reset(struct snd_ac97_bus_ops *ops,
|
|
|
|
struct platform_device *pdev)
|
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline int snd_soc_set_ac97_ops(struct snd_ac97_bus_ops *ops)
|
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2006-10-06 16:20:14 +00:00
|
|
|
/*
|
|
|
|
*Controls
|
|
|
|
*/
|
|
|
|
struct snd_kcontrol *snd_soc_cnew(const struct snd_kcontrol_new *_template,
|
2012-02-17 01:07:42 +00:00
|
|
|
void *data, const char *long_name,
|
2011-03-08 17:23:24 +00:00
|
|
|
const char *prefix);
|
2013-07-29 12:51:58 +00:00
|
|
|
struct snd_kcontrol *snd_soc_card_get_kcontrol(struct snd_soc_card *soc_card,
|
|
|
|
const char *name);
|
2014-07-17 20:01:08 +00:00
|
|
|
int snd_soc_add_component_controls(struct snd_soc_component *component,
|
|
|
|
const struct snd_kcontrol_new *controls, unsigned int num_controls);
|
2012-02-03 17:43:09 +00:00
|
|
|
int snd_soc_add_card_controls(struct snd_soc_card *soc_card,
|
|
|
|
const struct snd_kcontrol_new *controls, int num_controls);
|
|
|
|
int snd_soc_add_dai_controls(struct snd_soc_dai *dai,
|
|
|
|
const struct snd_kcontrol_new *controls, int num_controls);
|
2006-10-06 16:20:14 +00:00
|
|
|
int snd_soc_info_enum_double(struct snd_kcontrol *kcontrol,
|
|
|
|
struct snd_ctl_elem_info *uinfo);
|
|
|
|
int snd_soc_get_enum_double(struct snd_kcontrol *kcontrol,
|
|
|
|
struct snd_ctl_elem_value *ucontrol);
|
|
|
|
int snd_soc_put_enum_double(struct snd_kcontrol *kcontrol,
|
|
|
|
struct snd_ctl_elem_value *ucontrol);
|
|
|
|
int snd_soc_info_volsw(struct snd_kcontrol *kcontrol,
|
|
|
|
struct snd_ctl_elem_info *uinfo);
|
2015-10-14 12:31:24 +00:00
|
|
|
int snd_soc_info_volsw_sx(struct snd_kcontrol *kcontrol,
|
|
|
|
struct snd_ctl_elem_info *uinfo);
|
2008-05-13 12:03:40 +00:00
|
|
|
#define snd_soc_info_bool_ext snd_ctl_boolean_mono_info
|
2006-10-06 16:20:14 +00:00
|
|
|
int snd_soc_get_volsw(struct snd_kcontrol *kcontrol,
|
|
|
|
struct snd_ctl_elem_value *ucontrol);
|
|
|
|
int snd_soc_put_volsw(struct snd_kcontrol *kcontrol,
|
|
|
|
struct snd_ctl_elem_value *ucontrol);
|
2011-10-06 04:43:21 +00:00
|
|
|
#define snd_soc_get_volsw_2r snd_soc_get_volsw
|
|
|
|
#define snd_soc_put_volsw_2r snd_soc_put_volsw
|
2012-03-30 15:43:55 +00:00
|
|
|
int snd_soc_get_volsw_sx(struct snd_kcontrol *kcontrol,
|
|
|
|
struct snd_ctl_elem_value *ucontrol);
|
|
|
|
int snd_soc_put_volsw_sx(struct snd_kcontrol *kcontrol,
|
|
|
|
struct snd_ctl_elem_value *ucontrol);
|
2012-05-31 14:18:01 +00:00
|
|
|
int snd_soc_info_volsw_range(struct snd_kcontrol *kcontrol,
|
|
|
|
struct snd_ctl_elem_info *uinfo);
|
|
|
|
int snd_soc_put_volsw_range(struct snd_kcontrol *kcontrol,
|
|
|
|
struct snd_ctl_elem_value *ucontrol);
|
|
|
|
int snd_soc_get_volsw_range(struct snd_kcontrol *kcontrol,
|
|
|
|
struct snd_ctl_elem_value *ucontrol);
|
2015-10-18 15:04:33 +00:00
|
|
|
int snd_soc_limit_volume(struct snd_soc_card *card,
|
2010-05-07 11:05:49 +00:00
|
|
|
const char *name, int max);
|
2011-10-10 17:31:26 +00:00
|
|
|
int snd_soc_bytes_info(struct snd_kcontrol *kcontrol,
|
|
|
|
struct snd_ctl_elem_info *uinfo);
|
|
|
|
int snd_soc_bytes_get(struct snd_kcontrol *kcontrol,
|
|
|
|
struct snd_ctl_elem_value *ucontrol);
|
|
|
|
int snd_soc_bytes_put(struct snd_kcontrol *kcontrol,
|
|
|
|
struct snd_ctl_elem_value *ucontrol);
|
2014-05-02 05:28:11 +00:00
|
|
|
int snd_soc_bytes_info_ext(struct snd_kcontrol *kcontrol,
|
|
|
|
struct snd_ctl_elem_info *ucontrol);
|
2014-07-15 16:04:48 +00:00
|
|
|
int snd_soc_bytes_tlv_callback(struct snd_kcontrol *kcontrol, int op_flag,
|
|
|
|
unsigned int size, unsigned int __user *tlv);
|
2012-04-20 09:32:13 +00:00
|
|
|
int snd_soc_info_xr_sx(struct snd_kcontrol *kcontrol,
|
|
|
|
struct snd_ctl_elem_info *uinfo);
|
|
|
|
int snd_soc_get_xr_sx(struct snd_kcontrol *kcontrol,
|
|
|
|
struct snd_ctl_elem_value *ucontrol);
|
|
|
|
int snd_soc_put_xr_sx(struct snd_kcontrol *kcontrol,
|
|
|
|
struct snd_ctl_elem_value *ucontrol);
|
2012-04-20 09:32:44 +00:00
|
|
|
int snd_soc_get_strobe(struct snd_kcontrol *kcontrol,
|
|
|
|
struct snd_ctl_elem_value *ucontrol);
|
|
|
|
int snd_soc_put_strobe(struct snd_kcontrol *kcontrol,
|
|
|
|
struct snd_ctl_elem_value *ucontrol);
|
2006-10-06 16:20:14 +00:00
|
|
|
|
2009-01-07 17:31:10 +00:00
|
|
|
/**
|
|
|
|
* struct snd_soc_jack_pin - Describes a pin to update based on jack detection
|
|
|
|
*
|
|
|
|
* @pin: name of the pin to update
|
|
|
|
* @mask: bits to check for in reported jack status
|
|
|
|
* @invert: if non-zero then pin is enabled when status is not reported
|
2015-08-25 07:14:48 +00:00
|
|
|
* @list: internal list entry
|
2009-01-07 17:31:10 +00:00
|
|
|
*/
|
|
|
|
struct snd_soc_jack_pin {
|
|
|
|
struct list_head list;
|
|
|
|
const char *pin;
|
|
|
|
int mask;
|
|
|
|
bool invert;
|
|
|
|
};
|
|
|
|
|
2011-02-09 09:14:17 +00:00
|
|
|
/**
|
|
|
|
* struct snd_soc_jack_zone - Describes voltage zones of jack detection
|
|
|
|
*
|
|
|
|
* @min_mv: start voltage in mv
|
|
|
|
* @max_mv: end voltage in mv
|
|
|
|
* @jack_type: type of jack that is expected for this voltage
|
|
|
|
* @debounce_time: debounce_time for jack, codec driver should wait for this
|
|
|
|
* duration before reading the adc for voltages
|
2015-08-25 07:14:48 +00:00
|
|
|
* @list: internal list entry
|
2011-02-09 09:14:17 +00:00
|
|
|
*/
|
|
|
|
struct snd_soc_jack_zone {
|
|
|
|
unsigned int min_mv;
|
|
|
|
unsigned int max_mv;
|
|
|
|
unsigned int jack_type;
|
|
|
|
unsigned int debounce_time;
|
|
|
|
struct list_head list;
|
|
|
|
};
|
|
|
|
|
2009-03-03 21:25:04 +00:00
|
|
|
/**
|
|
|
|
* struct snd_soc_jack_gpio - Describes a gpio pin for jack detection
|
|
|
|
*
|
2014-05-26 11:34:37 +00:00
|
|
|
* @gpio: legacy gpio number
|
2014-05-27 10:54:18 +00:00
|
|
|
* @idx: gpio descriptor index within the function of the GPIO
|
|
|
|
* consumer device
|
2015-08-25 07:14:48 +00:00
|
|
|
* @gpiod_dev: GPIO consumer device
|
2014-05-27 10:54:18 +00:00
|
|
|
* @name: gpio name. Also as connection ID for the GPIO consumer
|
|
|
|
* device function name lookup
|
2009-03-03 21:25:04 +00:00
|
|
|
* @report: value to report when jack detected
|
|
|
|
* @invert: report presence in low state
|
2015-08-25 07:14:48 +00:00
|
|
|
* @debounce_time: debounce time in ms
|
2011-02-18 00:35:55 +00:00
|
|
|
* @wake: enable as wake source
|
2011-02-18 00:41:42 +00:00
|
|
|
* @jack_status_check: callback function which overrides the detection
|
|
|
|
* to provide more complex checks (eg, reading an
|
|
|
|
* ADC).
|
2009-03-03 21:25:04 +00:00
|
|
|
*/
|
|
|
|
struct snd_soc_jack_gpio {
|
|
|
|
unsigned int gpio;
|
2014-05-26 11:34:37 +00:00
|
|
|
unsigned int idx;
|
|
|
|
struct device *gpiod_dev;
|
2009-03-03 21:25:04 +00:00
|
|
|
const char *name;
|
|
|
|
int report;
|
|
|
|
int invert;
|
|
|
|
int debounce_time;
|
2011-02-18 00:35:55 +00:00
|
|
|
bool wake;
|
|
|
|
|
2015-08-25 07:14:48 +00:00
|
|
|
/* private: */
|
2009-03-03 21:25:04 +00:00
|
|
|
struct snd_soc_jack *jack;
|
2010-10-06 22:54:28 +00:00
|
|
|
struct delayed_work work;
|
2017-03-21 23:50:43 +00:00
|
|
|
struct notifier_block pm_notifier;
|
2014-05-26 11:34:36 +00:00
|
|
|
struct gpio_desc *desc;
|
2009-11-12 08:14:04 +00:00
|
|
|
|
2014-02-23 06:40:44 +00:00
|
|
|
void *data;
|
2015-08-25 07:14:48 +00:00
|
|
|
/* public: */
|
2014-02-23 06:40:44 +00:00
|
|
|
int (*jack_status_check)(void *data);
|
2009-03-03 21:25:04 +00:00
|
|
|
};
|
|
|
|
|
2009-01-07 17:31:10 +00:00
|
|
|
struct snd_soc_jack {
|
2012-03-12 14:07:49 +00:00
|
|
|
struct mutex mutex;
|
2009-01-07 17:31:10 +00:00
|
|
|
struct snd_jack *jack;
|
2015-03-04 09:33:17 +00:00
|
|
|
struct snd_soc_card *card;
|
2009-01-07 17:31:10 +00:00
|
|
|
struct list_head pins;
|
|
|
|
int status;
|
2010-03-22 12:06:30 +00:00
|
|
|
struct blocking_notifier_head notifier;
|
2011-02-09 09:14:17 +00:00
|
|
|
struct list_head jack_zones;
|
2009-01-07 17:31:10 +00:00
|
|
|
};
|
|
|
|
|
2006-10-06 16:20:14 +00:00
|
|
|
/* SoC PCM stream information */
|
|
|
|
struct snd_soc_pcm_stream {
|
2010-03-17 20:15:21 +00:00
|
|
|
const char *stream_name;
|
2007-02-02 16:13:05 +00:00
|
|
|
u64 formats; /* SNDRV_PCM_FMTBIT_* */
|
|
|
|
unsigned int rates; /* SNDRV_PCM_RATE_* */
|
2006-10-06 16:20:14 +00:00
|
|
|
unsigned int rate_min; /* min rate */
|
|
|
|
unsigned int rate_max; /* max rate */
|
|
|
|
unsigned int channels_min; /* min channels */
|
|
|
|
unsigned int channels_max; /* max channels */
|
2012-01-16 18:38:51 +00:00
|
|
|
unsigned int sig_bits; /* number of bits of content */
|
2006-10-06 16:20:14 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
/* SoC audio ops */
|
|
|
|
struct snd_soc_ops {
|
|
|
|
int (*startup)(struct snd_pcm_substream *);
|
|
|
|
void (*shutdown)(struct snd_pcm_substream *);
|
|
|
|
int (*hw_params)(struct snd_pcm_substream *, struct snd_pcm_hw_params *);
|
|
|
|
int (*hw_free)(struct snd_pcm_substream *);
|
|
|
|
int (*prepare)(struct snd_pcm_substream *);
|
|
|
|
int (*trigger)(struct snd_pcm_substream *, int);
|
|
|
|
};
|
|
|
|
|
2012-08-16 11:40:40 +00:00
|
|
|
struct snd_soc_compr_ops {
|
|
|
|
int (*startup)(struct snd_compr_stream *);
|
|
|
|
void (*shutdown)(struct snd_compr_stream *);
|
|
|
|
int (*set_params)(struct snd_compr_stream *);
|
|
|
|
int (*trigger)(struct snd_compr_stream *);
|
|
|
|
};
|
|
|
|
|
2017-08-08 06:17:47 +00:00
|
|
|
struct snd_soc_rtdcom_list {
|
|
|
|
struct snd_soc_component *component;
|
|
|
|
struct list_head list; /* rtd::component_list */
|
|
|
|
};
|
|
|
|
struct snd_soc_component*
|
|
|
|
snd_soc_rtdcom_lookup(struct snd_soc_pcm_runtime *rtd,
|
|
|
|
const char *driver_name);
|
|
|
|
#define for_each_rtdcom(rtd, rtdcom) \
|
|
|
|
list_for_each_entry(rtdcom, &(rtd)->component_list, list)
|
|
|
|
#define for_each_rtdcom_safe(rtd, rtdcom1, rtdcom2) \
|
|
|
|
list_for_each_entry_safe(rtdcom1, rtdcom2, &(rtd)->component_list, list)
|
|
|
|
|
2014-07-08 21:19:34 +00:00
|
|
|
struct snd_soc_dai_link_component {
|
|
|
|
const char *name;
|
2014-11-25 11:14:48 +00:00
|
|
|
struct device_node *of_node;
|
2014-07-08 21:19:34 +00:00
|
|
|
const char *dai_name;
|
|
|
|
};
|
|
|
|
|
2010-03-17 20:15:21 +00:00
|
|
|
struct snd_soc_dai_link {
|
|
|
|
/* config - must be set by machine driver */
|
|
|
|
const char *name; /* Codec name */
|
|
|
|
const char *stream_name; /* Stream name */
|
ASoC: soc.h: add explanation of legacy/modern style of dai_link
Current ALSA SoC is assuming 1 CPU 1 Platform (= DMA) style system.
Because of this background, it is directly using
xxx_name / xxx_of_node / xxx_dai_name on dai_link.
Let's call it as legacy style here.
More complex style system like multi CPU multi Platform (= DMA) will
coming. To supporting it, we can use snd_soc_dai_link_component on
dai_link. Let's call it as modern style here.
But current ALSA SoC can't support it so far. Thus, we need to have
multi CPU / multi Codec / multi Platform style in the future on ALSA SoC.
Currently we already have multi Codec support. Platform is starting to
use modern style on dai_link, but still style only. Multi Platform is
not yet implemented. And we still don't have multi CPU support on ALSA
SoC, and not have modern style either.
Currently, if driver is using legacy style Codec/Platform, it will be
converted to modern style on soc-core. This means, we are using glue code
for legacy vs modern style so far on ALSA SoC.
We can fully switch to modern style on all drivers if ALSA SoC supported
modern style for CPU, and then, legacy style code will be removed from
ALSA SoC.
Untile then, we need to keep both legacy/modern style and its glue code.
This patch adds such future plan and background on soc.h
Signed-off-by: Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>
Signed-off-by: Mark Brown <broonie@kernel.org>
2019-01-18 02:20:41 +00:00
|
|
|
|
ASoC: make snd_soc_dai_link more symmetrical
Prior to this patch, the CPU side of a DAI link was specified using a
single name. Often, this was the result of calling dev_name() on the
device providing the DAI, but in the case of a CPU DAI driver that
provided multiple DAIs, it needed to mix together both the device name
and some device-relative name, in order to form a single globally unique
name.
However, the CODEC side of the DAI link was specified using separate
fields for device (name or OF node) and device-relative DAI name.
This patch allows the CPU side of a DAI link to be specified in the same
way as the CODEC side, separating concepts of device and device-relative
DAI name.
I believe this will be important in multi-codec and/or dynamic PCM
scenarios, where a single CPU driver provides multiple DAIs, while also
booting using device tree, with accompanying desire not to hard-code the
CPU side device's name into the original .cpu_dai_name field.
Ideally, both the CPU DAI and CODEC DAI loops in soc_bind_dai_link()
would now be identical. However, two things prevent that at present:
1) The need to save rtd->codec for the CODEC side, which means we have
to search for the CODEC explicitly, and not just the CODEC side DAI.
2) Since we know the CODEC side DAI is part of a codec, and not just
a standalone DAI, it's slightly more efficient to convert .codec_name/
.codec_of_node into a codec first, and then compare each DAI's .codec
field, since this avoids strcmp() on each DAI's CODEC's name within
the loop.
However, the two loops are essentially semantically equivalent.
Signed-off-by: Stephen Warren <swarren@nvidia.com>
Signed-off-by: Mark Brown <broonie@opensource.wolfsonmicro.com>
2012-05-26 00:22:11 +00:00
|
|
|
/*
|
|
|
|
* You MAY specify the link's CPU-side device, either by device name,
|
|
|
|
* or by DT/OF node, but not both. If this information is omitted,
|
|
|
|
* the CPU-side DAI is matched using .cpu_dai_name only, which hence
|
|
|
|
* must be globally unique. These fields are currently typically used
|
|
|
|
* only for codec to codec links, or systems using device tree.
|
|
|
|
*/
|
|
|
|
/*
|
|
|
|
* You MAY specify the DAI name of the CPU DAI. If this information is
|
|
|
|
* omitted, the CPU-side DAI is matched using .cpu_name/.cpu_of_node
|
|
|
|
* only, which only works well when that device exposes a single DAI.
|
|
|
|
*/
|
2019-06-06 04:07:22 +00:00
|
|
|
struct snd_soc_dai_link_component *cpus;
|
|
|
|
unsigned int num_cpus;
|
|
|
|
|
ASoC: make snd_soc_dai_link more symmetrical
Prior to this patch, the CPU side of a DAI link was specified using a
single name. Often, this was the result of calling dev_name() on the
device providing the DAI, but in the case of a CPU DAI driver that
provided multiple DAIs, it needed to mix together both the device name
and some device-relative name, in order to form a single globally unique
name.
However, the CODEC side of the DAI link was specified using separate
fields for device (name or OF node) and device-relative DAI name.
This patch allows the CPU side of a DAI link to be specified in the same
way as the CODEC side, separating concepts of device and device-relative
DAI name.
I believe this will be important in multi-codec and/or dynamic PCM
scenarios, where a single CPU driver provides multiple DAIs, while also
booting using device tree, with accompanying desire not to hard-code the
CPU side device's name into the original .cpu_dai_name field.
Ideally, both the CPU DAI and CODEC DAI loops in soc_bind_dai_link()
would now be identical. However, two things prevent that at present:
1) The need to save rtd->codec for the CODEC side, which means we have
to search for the CODEC explicitly, and not just the CODEC side DAI.
2) Since we know the CODEC side DAI is part of a codec, and not just
a standalone DAI, it's slightly more efficient to convert .codec_name/
.codec_of_node into a codec first, and then compare each DAI's .codec
field, since this avoids strcmp() on each DAI's CODEC's name within
the loop.
However, the two loops are essentially semantically equivalent.
Signed-off-by: Stephen Warren <swarren@nvidia.com>
Signed-off-by: Mark Brown <broonie@opensource.wolfsonmicro.com>
2012-05-26 00:22:11 +00:00
|
|
|
/*
|
|
|
|
* You MUST specify the link's codec, either by device name, or by
|
|
|
|
* DT/OF node, but not both.
|
|
|
|
*/
|
|
|
|
/* You MUST specify the DAI name within the codec */
|
2014-07-08 21:19:34 +00:00
|
|
|
struct snd_soc_dai_link_component *codecs;
|
|
|
|
unsigned int num_codecs;
|
|
|
|
|
ASoC: make snd_soc_dai_link more symmetrical
Prior to this patch, the CPU side of a DAI link was specified using a
single name. Often, this was the result of calling dev_name() on the
device providing the DAI, but in the case of a CPU DAI driver that
provided multiple DAIs, it needed to mix together both the device name
and some device-relative name, in order to form a single globally unique
name.
However, the CODEC side of the DAI link was specified using separate
fields for device (name or OF node) and device-relative DAI name.
This patch allows the CPU side of a DAI link to be specified in the same
way as the CODEC side, separating concepts of device and device-relative
DAI name.
I believe this will be important in multi-codec and/or dynamic PCM
scenarios, where a single CPU driver provides multiple DAIs, while also
booting using device tree, with accompanying desire not to hard-code the
CPU side device's name into the original .cpu_dai_name field.
Ideally, both the CPU DAI and CODEC DAI loops in soc_bind_dai_link()
would now be identical. However, two things prevent that at present:
1) The need to save rtd->codec for the CODEC side, which means we have
to search for the CODEC explicitly, and not just the CODEC side DAI.
2) Since we know the CODEC side DAI is part of a codec, and not just
a standalone DAI, it's slightly more efficient to convert .codec_name/
.codec_of_node into a codec first, and then compare each DAI's .codec
field, since this avoids strcmp() on each DAI's CODEC's name within
the loop.
However, the two loops are essentially semantically equivalent.
Signed-off-by: Stephen Warren <swarren@nvidia.com>
Signed-off-by: Mark Brown <broonie@opensource.wolfsonmicro.com>
2012-05-26 00:22:11 +00:00
|
|
|
/*
|
|
|
|
* You MAY specify the link's platform/PCM/DMA driver, either by
|
|
|
|
* device name, or by DT/OF node, but not both. Some forms of link
|
ASoC: soc-core: allow no Platform on dai_link
dai_link is used to selecting Component (= CPU/Codec/Platform) and
DAI (= CPU/Codec). And selected CPU/Codec/Platform components are
*listed* on Card.
Many drivers don't need special Platform component, but was
mandatory at legacy style ALSA SoC.
Thus, there is this kind of settings on many drivers.
dai_link->platform_of_node = dai_link->cpu_of_node;
In this case, soc_bind_dai_link() will pick-up "CPU component" as
"Platform component", and try to add it to snd_soc_pcm_runtime.
But it will be ignored, because it is already added when CPU bindings.
Historically, this kind of "CPU component" is used/selected as
"Platform" on many ALSA SoC drivers.
OTOH, Dummy Platform will be selected automatically by ALSA SoC if
driver doesn't have Platform settings.
These indicates that there are 2 type of Platforms exist at current
ALSA SoC if driver doesn't need special Platform.
1) use Dummy Platform as Platform component
2) use CPU component as Platform component
ALSA SoC will call Dummy Platform callback function if it is using
Dummy Platform, but it is completely pointless. Because it is the
sound card which doesn't need special Platform.
Thus, the behavior we request to ALSA SoC is selecting 2) automatically
instead of 1) if sound card doesn't need special Platform.
And, 2) means "do nothing" as above explain.
These were needed at legacy style dai_link, but is no longer needed
at modern style dai_link anymore.
This patch allows "no Platform" settings on dai_link, and will do
nothing for it if there was no platform settings. This is same as 2).
By this patch, all drivers which is selecting "CPU component" as
"Platform" can remove such settings.
Signed-off-by: Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>
Signed-off-by: Mark Brown <broonie@kernel.org>
2019-06-19 01:14:07 +00:00
|
|
|
* do not need a platform. In such case, platforms are not mandatory.
|
ASoC: make snd_soc_dai_link more symmetrical
Prior to this patch, the CPU side of a DAI link was specified using a
single name. Often, this was the result of calling dev_name() on the
device providing the DAI, but in the case of a CPU DAI driver that
provided multiple DAIs, it needed to mix together both the device name
and some device-relative name, in order to form a single globally unique
name.
However, the CODEC side of the DAI link was specified using separate
fields for device (name or OF node) and device-relative DAI name.
This patch allows the CPU side of a DAI link to be specified in the same
way as the CODEC side, separating concepts of device and device-relative
DAI name.
I believe this will be important in multi-codec and/or dynamic PCM
scenarios, where a single CPU driver provides multiple DAIs, while also
booting using device tree, with accompanying desire not to hard-code the
CPU side device's name into the original .cpu_dai_name field.
Ideally, both the CPU DAI and CODEC DAI loops in soc_bind_dai_link()
would now be identical. However, two things prevent that at present:
1) The need to save rtd->codec for the CODEC side, which means we have
to search for the CODEC explicitly, and not just the CODEC side DAI.
2) Since we know the CODEC side DAI is part of a codec, and not just
a standalone DAI, it's slightly more efficient to convert .codec_name/
.codec_of_node into a codec first, and then compare each DAI's .codec
field, since this avoids strcmp() on each DAI's CODEC's name within
the loop.
However, the two loops are essentially semantically equivalent.
Signed-off-by: Stephen Warren <swarren@nvidia.com>
Signed-off-by: Mark Brown <broonie@opensource.wolfsonmicro.com>
2012-05-26 00:22:11 +00:00
|
|
|
*/
|
2019-01-21 00:32:32 +00:00
|
|
|
struct snd_soc_dai_link_component *platforms;
|
|
|
|
unsigned int num_platforms;
|
2018-08-31 03:10:08 +00:00
|
|
|
|
2016-04-19 05:12:35 +00:00
|
|
|
int id; /* optional ID for machine driver link identification */
|
2008-01-10 13:39:01 +00:00
|
|
|
|
2012-04-04 21:12:09 +00:00
|
|
|
const struct snd_soc_pcm_stream *params;
|
2015-02-02 17:06:44 +00:00
|
|
|
unsigned int num_params;
|
2012-04-04 21:12:09 +00:00
|
|
|
|
2011-09-27 15:41:01 +00:00
|
|
|
unsigned int dai_fmt; /* format to set on init */
|
|
|
|
|
ASoC: dpcm: Add Dynamic PCM core operations.
The Dynamic PCM core allows digital audio data to be dynamically
routed between different ALSA PCMs and DAI links on SoC CPUs with
on chip DSP devices. e.g. audio data could be played on pcm:0,0 and
routed to any (or all) SoC DAI links.
Dynamic PCM introduces the concept of Front End (FE) PCMs and Back
End (BE) PCMs. The FE PCMs are normal ALSA PCM devices except that
they can dynamically route digital audio data to any supported BE
PCM. A BE PCM has no ALSA device, but represents a DAI link and it's
substream and audio HW parameters.
e.g. pcm:0,0 routing digital data to 2 external codecs.
FE pcm:0,0 ----> BE (McBSP.0) ----> CODEC 0
+--> BE (McPDM.0) ----> CODEC 1
e.g. pcm:0,0 and pcm:0,1 routing digital data to 1 external codec.
FE pcm:0,0 ---
+--> BE (McBSP.0) ----> CODEC
FE pcm:0,1 ---
The digital audio routing is controlled by the usual ALSA method
of mixer kcontrols. Dynamic PCM uses a DAPM graph to work out the
routing based upon the mixer settings and configures the BE PCMs
based on routing and the FE HW params.
DPCM is designed so that most ASoC component drivers will need no
modification at all. It's intended that existing CODEC, DAI and
platform drivers can be used in DPCM based audio devices without
any changes. However, there will be some cases where minor changes
are required (e.g. for very tightly coupled HW) and there are
helpers to support this too.
Somethimes the HW params of a FE and BE do not match or are
incompatible, so in these cases the machine driver can reconfigure
any hw_params and make any DSP perform sample rate / format conversion.
This patch adds the core DPCM code and contains :-
o The FE and BE PCM operations.
o FE and BE DAI link support.
o FE and BE PCM creation.
o BE support API.
o BE and FE link management.
Signed-off-by: Liam Girdwood <lrg@ti.com>
Signed-off-by: Mark Brown <broonie@opensource.wolfsonmicro.com>
2012-04-25 11:12:49 +00:00
|
|
|
enum snd_soc_dpcm_trigger trigger[2]; /* trigger type for DPCM */
|
|
|
|
|
2015-04-21 07:02:34 +00:00
|
|
|
/* codec/machine specific init - e.g. add machine controls */
|
|
|
|
int (*init)(struct snd_soc_pcm_runtime *rtd);
|
|
|
|
|
|
|
|
/* optional hw_params re-writing for BE and FE sync */
|
|
|
|
int (*be_hw_params_fixup)(struct snd_soc_pcm_runtime *rtd,
|
|
|
|
struct snd_pcm_hw_params *params);
|
|
|
|
|
|
|
|
/* machine stream operations */
|
|
|
|
const struct snd_soc_ops *ops;
|
|
|
|
const struct snd_soc_compr_ops *compr_ops;
|
|
|
|
|
|
|
|
/* Mark this pcm with non atomic ops */
|
|
|
|
bool nonatomic;
|
|
|
|
|
2016-10-24 00:44:10 +00:00
|
|
|
/* For unidirectional dai links */
|
|
|
|
unsigned int playback_only:1;
|
|
|
|
unsigned int capture_only:1;
|
|
|
|
|
2010-05-09 12:25:43 +00:00
|
|
|
/* Keep DAI active over suspend */
|
|
|
|
unsigned int ignore_suspend:1;
|
|
|
|
|
2009-04-07 17:10:13 +00:00
|
|
|
/* Symmetry requirements */
|
|
|
|
unsigned int symmetric_rates:1;
|
2013-11-13 10:56:24 +00:00
|
|
|
unsigned int symmetric_channels:1;
|
|
|
|
unsigned int symmetric_samplebits:1;
|
2009-04-07 17:10:13 +00:00
|
|
|
|
ASoC: dpcm: Add Dynamic PCM core operations.
The Dynamic PCM core allows digital audio data to be dynamically
routed between different ALSA PCMs and DAI links on SoC CPUs with
on chip DSP devices. e.g. audio data could be played on pcm:0,0 and
routed to any (or all) SoC DAI links.
Dynamic PCM introduces the concept of Front End (FE) PCMs and Back
End (BE) PCMs. The FE PCMs are normal ALSA PCM devices except that
they can dynamically route digital audio data to any supported BE
PCM. A BE PCM has no ALSA device, but represents a DAI link and it's
substream and audio HW parameters.
e.g. pcm:0,0 routing digital data to 2 external codecs.
FE pcm:0,0 ----> BE (McBSP.0) ----> CODEC 0
+--> BE (McPDM.0) ----> CODEC 1
e.g. pcm:0,0 and pcm:0,1 routing digital data to 1 external codec.
FE pcm:0,0 ---
+--> BE (McBSP.0) ----> CODEC
FE pcm:0,1 ---
The digital audio routing is controlled by the usual ALSA method
of mixer kcontrols. Dynamic PCM uses a DAPM graph to work out the
routing based upon the mixer settings and configures the BE PCMs
based on routing and the FE HW params.
DPCM is designed so that most ASoC component drivers will need no
modification at all. It's intended that existing CODEC, DAI and
platform drivers can be used in DPCM based audio devices without
any changes. However, there will be some cases where minor changes
are required (e.g. for very tightly coupled HW) and there are
helpers to support this too.
Somethimes the HW params of a FE and BE do not match or are
incompatible, so in these cases the machine driver can reconfigure
any hw_params and make any DSP perform sample rate / format conversion.
This patch adds the core DPCM code and contains :-
o The FE and BE PCM operations.
o FE and BE DAI link support.
o FE and BE PCM creation.
o BE support API.
o BE and FE link management.
Signed-off-by: Liam Girdwood <lrg@ti.com>
Signed-off-by: Mark Brown <broonie@opensource.wolfsonmicro.com>
2012-04-25 11:12:49 +00:00
|
|
|
/* Do not create a PCM for this DAI link (Backend link) */
|
|
|
|
unsigned int no_pcm:1;
|
|
|
|
|
|
|
|
/* This DAI link can route to other DAI links at runtime (Frontend)*/
|
|
|
|
unsigned int dynamic:1;
|
|
|
|
|
2014-01-07 17:51:42 +00:00
|
|
|
/* DPCM capture and Playback support */
|
|
|
|
unsigned int dpcm_capture:1;
|
|
|
|
unsigned int dpcm_playback:1;
|
|
|
|
|
2015-05-12 02:03:33 +00:00
|
|
|
/* DPCM used FE & BE merged format */
|
|
|
|
unsigned int dpcm_merged_format:1;
|
2018-06-20 09:25:20 +00:00
|
|
|
/* DPCM used FE & BE merged channel */
|
|
|
|
unsigned int dpcm_merged_chan:1;
|
2018-07-05 10:13:49 +00:00
|
|
|
/* DPCM used FE & BE merged rate */
|
|
|
|
unsigned int dpcm_merged_rate:1;
|
2015-05-12 02:03:33 +00:00
|
|
|
|
2011-10-27 06:42:33 +00:00
|
|
|
/* pmdown_time is ignored at stop */
|
|
|
|
unsigned int ignore_pmdown_time:1;
|
2015-12-02 06:11:22 +00:00
|
|
|
|
2018-07-02 15:59:54 +00:00
|
|
|
/* Do not create a PCM for this DAI link (Backend link) */
|
|
|
|
unsigned int ignore:1;
|
|
|
|
|
2015-12-02 06:11:22 +00:00
|
|
|
struct list_head list; /* DAI link list of the soc card */
|
|
|
|
struct snd_soc_dobj dobj; /* For topology */
|
2006-10-06 16:20:14 +00:00
|
|
|
};
|
2018-09-03 02:12:40 +00:00
|
|
|
#define for_each_link_codecs(link, i, codec) \
|
|
|
|
for ((i) = 0; \
|
|
|
|
((i) < link->num_codecs) && ((codec) = &link->codecs[i]); \
|
|
|
|
(i)++)
|
2006-10-06 16:20:14 +00:00
|
|
|
|
2019-06-27 12:13:50 +00:00
|
|
|
#define for_each_link_platforms(link, i, platform) \
|
|
|
|
for ((i) = 0; \
|
|
|
|
((i) < link->num_platforms) && \
|
|
|
|
((platform) = &link->platforms[i]); \
|
|
|
|
(i)++)
|
|
|
|
|
2019-06-06 04:07:42 +00:00
|
|
|
/*
|
|
|
|
* Sample 1 : Single CPU/Codec/Platform
|
|
|
|
*
|
|
|
|
* SND_SOC_DAILINK_DEFS(test,
|
|
|
|
* DAILINK_COMP_ARRAY(COMP_CPU("cpu_dai")),
|
|
|
|
* DAILINK_COMP_ARRAY(COMP_CODEC("codec", "codec_dai")),
|
|
|
|
* DAILINK_COMP_ARRAY(COMP_PLATFORM("platform")));
|
|
|
|
*
|
|
|
|
* struct snd_soc_dai_link link = {
|
|
|
|
* ...
|
|
|
|
* SND_SOC_DAILINK_REG(test),
|
|
|
|
* };
|
|
|
|
*
|
|
|
|
* Sample 2 : Multi CPU/Codec, no Platform
|
|
|
|
*
|
|
|
|
* SND_SOC_DAILINK_DEFS(test,
|
|
|
|
* DAILINK_COMP_ARRAY(COMP_CPU("cpu_dai1"),
|
|
|
|
* COMP_CPU("cpu_dai2")),
|
|
|
|
* DAILINK_COMP_ARRAY(COMP_CODEC("codec1", "codec_dai1"),
|
|
|
|
* COMP_CODEC("codec2", "codec_dai2")));
|
|
|
|
*
|
|
|
|
* struct snd_soc_dai_link link = {
|
|
|
|
* ...
|
|
|
|
* SND_SOC_DAILINK_REG(test),
|
|
|
|
* };
|
|
|
|
*
|
|
|
|
* Sample 3 : Define each CPU/Codec/Platform manually
|
|
|
|
*
|
|
|
|
* SND_SOC_DAILINK_DEF(test_cpu,
|
|
|
|
* DAILINK_COMP_ARRAY(COMP_CPU("cpu_dai1"),
|
|
|
|
* COMP_CPU("cpu_dai2")));
|
|
|
|
* SND_SOC_DAILINK_DEF(test_codec,
|
|
|
|
* DAILINK_COMP_ARRAY(COMP_CODEC("codec1", "codec_dai1"),
|
|
|
|
* COMP_CODEC("codec2", "codec_dai2")));
|
|
|
|
* SND_SOC_DAILINK_DEF(test_platform,
|
|
|
|
* DAILINK_COMP_ARRAY(COMP_PLATFORM("platform")));
|
|
|
|
*
|
|
|
|
* struct snd_soc_dai_link link = {
|
|
|
|
* ...
|
|
|
|
* SND_SOC_DAILINK_REG(test_cpu,
|
|
|
|
* test_codec,
|
|
|
|
* test_platform),
|
|
|
|
* };
|
|
|
|
*
|
|
|
|
* Sample 4 : Sample3 without platform
|
|
|
|
*
|
|
|
|
* struct snd_soc_dai_link link = {
|
|
|
|
* ...
|
|
|
|
* SND_SOC_DAILINK_REG(test_cpu,
|
|
|
|
* test_codec);
|
|
|
|
* };
|
|
|
|
*/
|
|
|
|
|
|
|
|
#define SND_SOC_DAILINK_REG1(name) SND_SOC_DAILINK_REG3(name##_cpus, name##_codecs, name##_platforms)
|
|
|
|
#define SND_SOC_DAILINK_REG2(cpu, codec) SND_SOC_DAILINK_REG3(cpu, codec, null_dailink_component)
|
|
|
|
#define SND_SOC_DAILINK_REG3(cpu, codec, platform) \
|
|
|
|
.cpus = cpu, \
|
|
|
|
.num_cpus = ARRAY_SIZE(cpu), \
|
|
|
|
.codecs = codec, \
|
|
|
|
.num_codecs = ARRAY_SIZE(codec), \
|
|
|
|
.platforms = platform, \
|
|
|
|
.num_platforms = ARRAY_SIZE(platform)
|
|
|
|
|
|
|
|
#define SND_SOC_DAILINK_REGx(_1, _2, _3, func, ...) func
|
|
|
|
#define SND_SOC_DAILINK_REG(...) \
|
|
|
|
SND_SOC_DAILINK_REGx(__VA_ARGS__, \
|
|
|
|
SND_SOC_DAILINK_REG3, \
|
|
|
|
SND_SOC_DAILINK_REG2, \
|
|
|
|
SND_SOC_DAILINK_REG1)(__VA_ARGS__)
|
|
|
|
|
|
|
|
#define SND_SOC_DAILINK_DEF(name, def...) \
|
|
|
|
static struct snd_soc_dai_link_component name[] = { def }
|
|
|
|
|
|
|
|
#define SND_SOC_DAILINK_DEFS(name, cpu, codec, platform...) \
|
|
|
|
SND_SOC_DAILINK_DEF(name##_cpus, cpu); \
|
|
|
|
SND_SOC_DAILINK_DEF(name##_codecs, codec); \
|
|
|
|
SND_SOC_DAILINK_DEF(name##_platforms, platform)
|
|
|
|
|
|
|
|
#define DAILINK_COMP_ARRAY(param...) param
|
|
|
|
#define COMP_EMPTY() { }
|
|
|
|
#define COMP_CPU(_dai) { .dai_name = _dai, }
|
|
|
|
#define COMP_CODEC(_name, _dai) { .name = _name, .dai_name = _dai, }
|
|
|
|
#define COMP_PLATFORM(_name) { .name = _name }
|
2019-08-08 05:52:33 +00:00
|
|
|
#define COMP_AUX(_name) { .name = _name }
|
2019-06-06 04:07:42 +00:00
|
|
|
#define COMP_DUMMY() { .name = "snd-soc-dummy", .dai_name = "snd-soc-dummy-dai", }
|
|
|
|
|
|
|
|
extern struct snd_soc_dai_link_component null_dailink_component[0];
|
|
|
|
|
|
|
|
|
2010-12-02 14:53:03 +00:00
|
|
|
struct snd_soc_codec_conf {
|
2014-04-28 14:07:22 +00:00
|
|
|
/*
|
|
|
|
* specify device either by device name, or by
|
|
|
|
* DT/OF node, but not both.
|
|
|
|
*/
|
ASoC: Add optional name_prefix for codec kcontrol, widget and route names
There is a need to prefix codec kcontrol, widget and internal route names in
an ASoC machine that has multiple codecs with conflicting names. The name
collision would occur when codec drivers try to registering kcontrols with
the same name or when building audio paths.
This patch introduces optional prefix_map into struct snd_soc_card. With it
machine drivers can specify a unique name prefix to each codec that have
conflicting names with anothers. Prefix to codec is matched with codec
name.
Following example illustrates a machine that has two same codec instances.
Name collision from kcontrol registration is avoided by specifying a name
prefix "foo" for the second codec. As the codec widget names are prefixed
then second audio map for that codec shows a prefixed widget name.
static const struct snd_soc_dapm_route map0[] = {
{"Spk", NULL, "MONO"},
};
static const struct snd_soc_dapm_route map1[] = {
{"Vibra", NULL, "foo MONO"},
};
static struct snd_soc_prefix_map codec_prefix[] = {
{
.dev_name = "codec.2",
.name_prefix = "foo",
},
};
static struct snd_soc_card card = {
...
.prefix_map = codec_prefix,
.num_prefixes = ARRAY_SIZE(codec_prefix),
};
Signed-off-by: Jarkko Nikula <jhnikula@gmail.com>
Acked-by: Liam Girdwood <lrg@slimlogic.co.uk>
Signed-off-by: Mark Brown <broonie@opensource.wolfsonmicro.com>
2010-11-13 18:40:44 +00:00
|
|
|
const char *dev_name;
|
2014-11-25 11:14:48 +00:00
|
|
|
struct device_node *of_node;
|
2010-12-02 14:53:03 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* optional map of kcontrol, widget and path name prefixes that are
|
|
|
|
* associated per device
|
|
|
|
*/
|
ASoC: Add optional name_prefix for codec kcontrol, widget and route names
There is a need to prefix codec kcontrol, widget and internal route names in
an ASoC machine that has multiple codecs with conflicting names. The name
collision would occur when codec drivers try to registering kcontrols with
the same name or when building audio paths.
This patch introduces optional prefix_map into struct snd_soc_card. With it
machine drivers can specify a unique name prefix to each codec that have
conflicting names with anothers. Prefix to codec is matched with codec
name.
Following example illustrates a machine that has two same codec instances.
Name collision from kcontrol registration is avoided by specifying a name
prefix "foo" for the second codec. As the codec widget names are prefixed
then second audio map for that codec shows a prefixed widget name.
static const struct snd_soc_dapm_route map0[] = {
{"Spk", NULL, "MONO"},
};
static const struct snd_soc_dapm_route map1[] = {
{"Vibra", NULL, "foo MONO"},
};
static struct snd_soc_prefix_map codec_prefix[] = {
{
.dev_name = "codec.2",
.name_prefix = "foo",
},
};
static struct snd_soc_card card = {
...
.prefix_map = codec_prefix,
.num_prefixes = ARRAY_SIZE(codec_prefix),
};
Signed-off-by: Jarkko Nikula <jhnikula@gmail.com>
Acked-by: Liam Girdwood <lrg@slimlogic.co.uk>
Signed-off-by: Mark Brown <broonie@opensource.wolfsonmicro.com>
2010-11-13 18:40:44 +00:00
|
|
|
const char *name_prefix;
|
|
|
|
};
|
|
|
|
|
2010-11-25 15:47:38 +00:00
|
|
|
struct snd_soc_aux_dev {
|
2014-04-28 14:07:22 +00:00
|
|
|
/*
|
|
|
|
* specify multi-codec either by device name, or by
|
|
|
|
* DT/OF node, but not both.
|
|
|
|
*/
|
2019-08-08 05:52:33 +00:00
|
|
|
struct snd_soc_dai_link_component dlc;
|
|
|
|
|
2010-11-25 15:47:38 +00:00
|
|
|
/* codec/machine specific init - e.g. add machine controls */
|
2014-08-19 13:51:23 +00:00
|
|
|
int (*init)(struct snd_soc_component *component);
|
2010-11-25 15:47:38 +00:00
|
|
|
};
|
|
|
|
|
2008-11-18 20:50:34 +00:00
|
|
|
/* SoC card */
|
|
|
|
struct snd_soc_card {
|
2010-03-17 20:15:21 +00:00
|
|
|
const char *name;
|
2011-05-12 15:14:04 +00:00
|
|
|
const char *long_name;
|
|
|
|
const char *driver_name;
|
2017-01-14 08:13:02 +00:00
|
|
|
char dmi_longname[80];
|
2018-07-02 15:59:54 +00:00
|
|
|
char topology_shortname[32];
|
2017-01-14 08:13:02 +00:00
|
|
|
|
2008-11-28 13:29:45 +00:00
|
|
|
struct device *dev;
|
2010-03-17 20:15:21 +00:00
|
|
|
struct snd_card *snd_card;
|
|
|
|
struct module *owner;
|
2008-11-28 13:29:45 +00:00
|
|
|
|
2010-03-17 20:15:21 +00:00
|
|
|
struct mutex mutex;
|
2012-03-07 10:38:26 +00:00
|
|
|
struct mutex dapm_mutex;
|
2008-11-28 13:29:45 +00:00
|
|
|
|
2019-08-13 10:45:32 +00:00
|
|
|
/* Mutex for PCM operations */
|
|
|
|
struct mutex pcm_mutex;
|
|
|
|
enum snd_soc_pcm_subclass pcm_subclass;
|
|
|
|
|
2019-03-08 05:05:53 +00:00
|
|
|
spinlock_t dpcm_lock;
|
|
|
|
|
2010-03-17 20:15:21 +00:00
|
|
|
bool instantiated;
|
2018-07-02 15:59:54 +00:00
|
|
|
bool topology_shortname_created;
|
2006-10-06 16:20:14 +00:00
|
|
|
|
2011-01-26 14:17:20 +00:00
|
|
|
int (*probe)(struct snd_soc_card *card);
|
2011-03-02 18:36:34 +00:00
|
|
|
int (*late_probe)(struct snd_soc_card *card);
|
2011-01-26 14:17:20 +00:00
|
|
|
int (*remove)(struct snd_soc_card *card);
|
2006-10-06 16:20:14 +00:00
|
|
|
|
|
|
|
/* the pre and post PM functions are used to do any PM work before and
|
|
|
|
* after the codec and DAI's do any PM work. */
|
2011-01-26 14:05:25 +00:00
|
|
|
int (*suspend_pre)(struct snd_soc_card *card);
|
|
|
|
int (*suspend_post)(struct snd_soc_card *card);
|
|
|
|
int (*resume_pre)(struct snd_soc_card *card);
|
|
|
|
int (*resume_post)(struct snd_soc_card *card);
|
2006-10-06 16:20:14 +00:00
|
|
|
|
2008-01-10 13:36:20 +00:00
|
|
|
/* callbacks */
|
2008-11-18 20:50:34 +00:00
|
|
|
int (*set_bias_level)(struct snd_soc_card *,
|
2011-06-06 18:13:23 +00:00
|
|
|
struct snd_soc_dapm_context *dapm,
|
2008-05-19 10:31:28 +00:00
|
|
|
enum snd_soc_bias_level level);
|
2010-12-04 12:41:04 +00:00
|
|
|
int (*set_bias_level_post)(struct snd_soc_card *,
|
2011-06-06 18:13:23 +00:00
|
|
|
struct snd_soc_dapm_context *dapm,
|
2010-12-04 12:41:04 +00:00
|
|
|
enum snd_soc_bias_level level);
|
2008-01-10 13:36:20 +00:00
|
|
|
|
2015-12-02 06:11:32 +00:00
|
|
|
int (*add_dai_link)(struct snd_soc_card *,
|
|
|
|
struct snd_soc_dai_link *link);
|
|
|
|
void (*remove_dai_link)(struct snd_soc_card *,
|
|
|
|
struct snd_soc_dai_link *link);
|
|
|
|
|
2010-02-17 14:30:44 +00:00
|
|
|
long pmdown_time;
|
2010-02-12 11:05:44 +00:00
|
|
|
|
2006-10-06 16:20:14 +00:00
|
|
|
/* CPU <--> Codec DAI links */
|
2015-12-02 06:11:22 +00:00
|
|
|
struct snd_soc_dai_link *dai_link; /* predefined links only */
|
|
|
|
int num_links; /* predefined links only */
|
|
|
|
struct list_head dai_link_list; /* all links */
|
|
|
|
|
2015-11-18 07:34:11 +00:00
|
|
|
struct list_head rtd_list;
|
2010-03-17 20:15:21 +00:00
|
|
|
int num_rtd;
|
2008-12-02 15:08:03 +00:00
|
|
|
|
2010-12-02 14:53:03 +00:00
|
|
|
/* optional codec specific configuration */
|
|
|
|
struct snd_soc_codec_conf *codec_conf;
|
|
|
|
int num_configs;
|
ASoC: Add optional name_prefix for codec kcontrol, widget and route names
There is a need to prefix codec kcontrol, widget and internal route names in
an ASoC machine that has multiple codecs with conflicting names. The name
collision would occur when codec drivers try to registering kcontrols with
the same name or when building audio paths.
This patch introduces optional prefix_map into struct snd_soc_card. With it
machine drivers can specify a unique name prefix to each codec that have
conflicting names with anothers. Prefix to codec is matched with codec
name.
Following example illustrates a machine that has two same codec instances.
Name collision from kcontrol registration is avoided by specifying a name
prefix "foo" for the second codec. As the codec widget names are prefixed
then second audio map for that codec shows a prefixed widget name.
static const struct snd_soc_dapm_route map0[] = {
{"Spk", NULL, "MONO"},
};
static const struct snd_soc_dapm_route map1[] = {
{"Vibra", NULL, "foo MONO"},
};
static struct snd_soc_prefix_map codec_prefix[] = {
{
.dev_name = "codec.2",
.name_prefix = "foo",
},
};
static struct snd_soc_card card = {
...
.prefix_map = codec_prefix,
.num_prefixes = ARRAY_SIZE(codec_prefix),
};
Signed-off-by: Jarkko Nikula <jhnikula@gmail.com>
Acked-by: Liam Girdwood <lrg@slimlogic.co.uk>
Signed-off-by: Mark Brown <broonie@opensource.wolfsonmicro.com>
2010-11-13 18:40:44 +00:00
|
|
|
|
2010-11-25 15:47:38 +00:00
|
|
|
/*
|
|
|
|
* optional auxiliary devices such as amplifiers or codecs with DAI
|
|
|
|
* link unused
|
|
|
|
*/
|
|
|
|
struct snd_soc_aux_dev *aux_dev;
|
|
|
|
int num_aux_devs;
|
2016-12-29 13:11:21 +00:00
|
|
|
struct list_head aux_comp_list;
|
2010-11-25 15:47:38 +00:00
|
|
|
|
2011-04-07 10:18:44 +00:00
|
|
|
const struct snd_kcontrol_new *controls;
|
|
|
|
int num_controls;
|
|
|
|
|
2011-03-02 18:35:51 +00:00
|
|
|
/*
|
|
|
|
* Card-specific routes and widgets.
|
2015-02-15 01:22:49 +00:00
|
|
|
* Note: of_dapm_xxx for Device Tree; Otherwise for driver build-in.
|
2011-03-02 18:35:51 +00:00
|
|
|
*/
|
2011-04-12 17:31:01 +00:00
|
|
|
const struct snd_soc_dapm_widget *dapm_widgets;
|
2011-03-02 18:35:51 +00:00
|
|
|
int num_dapm_widgets;
|
2011-04-12 17:31:01 +00:00
|
|
|
const struct snd_soc_dapm_route *dapm_routes;
|
2011-03-02 18:35:51 +00:00
|
|
|
int num_dapm_routes;
|
2015-02-15 01:22:49 +00:00
|
|
|
const struct snd_soc_dapm_widget *of_dapm_widgets;
|
|
|
|
int num_of_dapm_widgets;
|
|
|
|
const struct snd_soc_dapm_route *of_dapm_routes;
|
|
|
|
int num_of_dapm_routes;
|
2011-11-23 19:42:04 +00:00
|
|
|
bool fully_routed;
|
2011-03-02 18:35:51 +00:00
|
|
|
|
2010-03-17 20:15:21 +00:00
|
|
|
/* lists of probed devices belonging to this card */
|
2016-11-30 06:22:36 +00:00
|
|
|
struct list_head component_dev_list;
|
2018-09-12 09:15:00 +00:00
|
|
|
struct list_head list;
|
2010-11-05 18:35:19 +00:00
|
|
|
|
2010-12-14 10:18:31 +00:00
|
|
|
struct list_head widgets;
|
2010-12-14 10:18:30 +00:00
|
|
|
struct list_head paths;
|
2010-12-14 10:18:32 +00:00
|
|
|
struct list_head dapm_list;
|
2011-10-03 20:06:40 +00:00
|
|
|
struct list_head dapm_dirty;
|
2010-12-14 10:18:30 +00:00
|
|
|
|
2015-05-29 18:06:14 +00:00
|
|
|
/* attached dynamic objects */
|
|
|
|
struct list_head dobj_list;
|
|
|
|
|
2011-03-02 18:21:57 +00:00
|
|
|
/* Generic DAPM context for the card */
|
|
|
|
struct snd_soc_dapm_context dapm;
|
2011-09-20 20:43:24 +00:00
|
|
|
struct snd_soc_dapm_stats dapm_stats;
|
2013-07-29 15:13:55 +00:00
|
|
|
struct snd_soc_dapm_update *update;
|
2011-03-02 18:21:57 +00:00
|
|
|
|
2010-11-05 18:35:19 +00:00
|
|
|
#ifdef CONFIG_DEBUG_FS
|
|
|
|
struct dentry *debugfs_card_root;
|
2019-08-07 01:31:24 +00:00
|
|
|
#endif
|
|
|
|
#ifdef CONFIG_PM_SLEEP
|
|
|
|
struct work_struct deferred_resume_work;
|
2010-11-05 18:35:19 +00:00
|
|
|
#endif
|
2010-11-05 18:35:21 +00:00
|
|
|
u32 pop_time;
|
2011-01-28 13:11:47 +00:00
|
|
|
|
|
|
|
void *drvdata;
|
2006-10-06 16:20:14 +00:00
|
|
|
};
|
2018-09-18 01:28:49 +00:00
|
|
|
#define for_each_card_prelinks(card, i, link) \
|
|
|
|
for ((i) = 0; \
|
|
|
|
((i) < (card)->num_links) && ((link) = &(card)->dai_link[i]); \
|
|
|
|
(i)++)
|
2019-08-08 05:54:44 +00:00
|
|
|
#define for_each_card_pre_auxs(card, i, aux) \
|
|
|
|
for ((i) = 0; \
|
|
|
|
((i) < (card)->num_aux_devs) && ((aux) = &(card)->aux_dev[i]); \
|
|
|
|
(i)++)
|
2006-10-06 16:20:14 +00:00
|
|
|
|
2018-09-18 01:29:16 +00:00
|
|
|
#define for_each_card_links(card, link) \
|
2019-06-19 01:27:52 +00:00
|
|
|
list_for_each_entry(link, &(card)->dai_link_list, list)
|
2018-09-18 01:29:16 +00:00
|
|
|
#define for_each_card_links_safe(card, link, _link) \
|
|
|
|
list_for_each_entry_safe(link, _link, &(card)->dai_link_list, list)
|
|
|
|
|
2018-09-18 01:29:35 +00:00
|
|
|
#define for_each_card_rtds(card, rtd) \
|
|
|
|
list_for_each_entry(rtd, &(card)->rtd_list, list)
|
|
|
|
#define for_each_card_rtds_safe(card, rtd, _rtd) \
|
|
|
|
list_for_each_entry_safe(rtd, _rtd, &(card)->rtd_list, list)
|
2018-09-18 01:29:16 +00:00
|
|
|
|
2019-08-08 05:54:44 +00:00
|
|
|
#define for_each_card_auxs(card, component) \
|
|
|
|
list_for_each_entry(component, &card->aux_comp_list, card_aux_list)
|
|
|
|
#define for_each_card_auxs_safe(card, component, _comp) \
|
|
|
|
list_for_each_entry_safe(component, _comp, \
|
|
|
|
&card->aux_comp_list, card_aux_list)
|
|
|
|
|
2018-09-18 01:29:55 +00:00
|
|
|
#define for_each_card_components(card, component) \
|
|
|
|
list_for_each_entry(component, &(card)->component_dev_list, card_list)
|
|
|
|
|
2010-03-17 20:15:21 +00:00
|
|
|
/* SoC machine DAI configuration, glues a codec and cpu DAI together */
|
2011-11-10 11:46:13 +00:00
|
|
|
struct snd_soc_pcm_runtime {
|
2012-01-07 01:12:45 +00:00
|
|
|
struct device *dev;
|
2008-11-18 20:50:34 +00:00
|
|
|
struct snd_soc_card *card;
|
2010-03-17 20:15:21 +00:00
|
|
|
struct snd_soc_dai_link *dai_link;
|
2011-06-09 16:04:39 +00:00
|
|
|
struct snd_pcm_ops ops;
|
2010-03-17 20:15:21 +00:00
|
|
|
|
2018-09-05 14:21:02 +00:00
|
|
|
unsigned int params_select; /* currently selected param for dai link */
|
|
|
|
|
ASoC: dpcm: Add Dynamic PCM core operations.
The Dynamic PCM core allows digital audio data to be dynamically
routed between different ALSA PCMs and DAI links on SoC CPUs with
on chip DSP devices. e.g. audio data could be played on pcm:0,0 and
routed to any (or all) SoC DAI links.
Dynamic PCM introduces the concept of Front End (FE) PCMs and Back
End (BE) PCMs. The FE PCMs are normal ALSA PCM devices except that
they can dynamically route digital audio data to any supported BE
PCM. A BE PCM has no ALSA device, but represents a DAI link and it's
substream and audio HW parameters.
e.g. pcm:0,0 routing digital data to 2 external codecs.
FE pcm:0,0 ----> BE (McBSP.0) ----> CODEC 0
+--> BE (McPDM.0) ----> CODEC 1
e.g. pcm:0,0 and pcm:0,1 routing digital data to 1 external codec.
FE pcm:0,0 ---
+--> BE (McBSP.0) ----> CODEC
FE pcm:0,1 ---
The digital audio routing is controlled by the usual ALSA method
of mixer kcontrols. Dynamic PCM uses a DAPM graph to work out the
routing based upon the mixer settings and configures the BE PCMs
based on routing and the FE HW params.
DPCM is designed so that most ASoC component drivers will need no
modification at all. It's intended that existing CODEC, DAI and
platform drivers can be used in DPCM based audio devices without
any changes. However, there will be some cases where minor changes
are required (e.g. for very tightly coupled HW) and there are
helpers to support this too.
Somethimes the HW params of a FE and BE do not match or are
incompatible, so in these cases the machine driver can reconfigure
any hw_params and make any DSP perform sample rate / format conversion.
This patch adds the core DPCM code and contains :-
o The FE and BE PCM operations.
o FE and BE DAI link support.
o FE and BE PCM creation.
o BE support API.
o BE and FE link management.
Signed-off-by: Liam Girdwood <lrg@ti.com>
Signed-off-by: Mark Brown <broonie@opensource.wolfsonmicro.com>
2012-04-25 11:12:49 +00:00
|
|
|
/* Dynamic PCM BE runtime data */
|
|
|
|
struct snd_soc_dpcm_runtime dpcm[2];
|
|
|
|
|
2010-03-17 20:15:21 +00:00
|
|
|
long pmdown_time;
|
|
|
|
|
|
|
|
/* runtime devices */
|
|
|
|
struct snd_pcm *pcm;
|
2012-08-16 11:40:40 +00:00
|
|
|
struct snd_compr *compr;
|
2010-03-17 20:15:21 +00:00
|
|
|
struct snd_soc_dai *codec_dai;
|
|
|
|
struct snd_soc_dai *cpu_dai;
|
|
|
|
|
2014-07-08 21:19:34 +00:00
|
|
|
struct snd_soc_dai **codec_dais;
|
|
|
|
unsigned int num_codecs;
|
|
|
|
|
2010-03-17 20:15:21 +00:00
|
|
|
struct delayed_work delayed_work;
|
2012-04-25 11:12:50 +00:00
|
|
|
#ifdef CONFIG_DEBUG_FS
|
|
|
|
struct dentry *debugfs_dpcm_root;
|
|
|
|
#endif
|
2015-11-18 07:34:11 +00:00
|
|
|
|
|
|
|
unsigned int num; /* 0-based and monotonic increasing */
|
|
|
|
struct list_head list; /* rtd list of the soc card */
|
2017-08-08 06:17:47 +00:00
|
|
|
struct list_head component_list; /* list of connected components */
|
2016-10-24 05:24:36 +00:00
|
|
|
|
|
|
|
/* bit field */
|
|
|
|
unsigned int pop_wait:1;
|
2019-05-13 07:07:27 +00:00
|
|
|
unsigned int fe_compr:1; /* for Dynamic PCM */
|
2006-10-06 16:20:14 +00:00
|
|
|
};
|
2018-09-03 02:12:56 +00:00
|
|
|
#define for_each_rtd_codec_dai(rtd, i, dai)\
|
|
|
|
for ((i) = 0; \
|
|
|
|
((i) < rtd->num_codecs) && ((dai) = rtd->codec_dais[i]); \
|
|
|
|
(i)++)
|
2018-09-18 01:28:30 +00:00
|
|
|
#define for_each_rtd_codec_dai_rollback(rtd, i, dai) \
|
2018-10-26 21:54:43 +00:00
|
|
|
for (; ((--i) >= 0) && ((dai) = rtd->codec_dais[i]);)
|
2018-09-03 02:12:56 +00:00
|
|
|
|
2006-10-06 16:20:14 +00:00
|
|
|
|
2008-07-29 10:42:26 +00:00
|
|
|
/* mixer control */
|
|
|
|
struct soc_mixer_control {
|
2010-05-10 11:39:24 +00:00
|
|
|
int min, max, platform_max;
|
2013-10-06 11:43:49 +00:00
|
|
|
int reg, rreg;
|
|
|
|
unsigned int shift, rshift;
|
2014-01-16 15:02:10 +00:00
|
|
|
unsigned int sign_bit;
|
2013-08-05 09:27:31 +00:00
|
|
|
unsigned int invert:1;
|
|
|
|
unsigned int autodisable:1;
|
2015-05-29 18:06:14 +00:00
|
|
|
struct snd_soc_dobj dobj;
|
2008-07-29 10:42:26 +00:00
|
|
|
};
|
|
|
|
|
2011-10-10 17:31:26 +00:00
|
|
|
struct soc_bytes {
|
|
|
|
int base;
|
|
|
|
int num_regs;
|
2012-02-18 00:20:33 +00:00
|
|
|
u32 mask;
|
2011-10-10 17:31:26 +00:00
|
|
|
};
|
|
|
|
|
2014-05-02 05:28:11 +00:00
|
|
|
struct soc_bytes_ext {
|
|
|
|
int max;
|
2015-05-29 18:06:14 +00:00
|
|
|
struct snd_soc_dobj dobj;
|
|
|
|
|
2014-07-15 16:04:48 +00:00
|
|
|
/* used for TLV byte control */
|
2015-11-09 17:50:00 +00:00
|
|
|
int (*get)(struct snd_kcontrol *kcontrol, unsigned int __user *bytes,
|
|
|
|
unsigned int size);
|
|
|
|
int (*put)(struct snd_kcontrol *kcontrol, const unsigned int __user *bytes,
|
|
|
|
unsigned int size);
|
2014-05-02 05:28:11 +00:00
|
|
|
};
|
|
|
|
|
2012-04-20 09:32:13 +00:00
|
|
|
/* multi register control */
|
|
|
|
struct soc_mreg_control {
|
|
|
|
long min, max;
|
|
|
|
unsigned int regbase, regcount, nbits, invert;
|
|
|
|
};
|
|
|
|
|
2006-10-06 16:20:14 +00:00
|
|
|
/* enumerated kcontrol */
|
|
|
|
struct soc_enum {
|
2014-02-28 07:31:05 +00:00
|
|
|
int reg;
|
2009-01-05 07:54:57 +00:00
|
|
|
unsigned char shift_l;
|
|
|
|
unsigned char shift_r;
|
2014-02-18 07:11:42 +00:00
|
|
|
unsigned int items;
|
2009-01-05 07:54:57 +00:00
|
|
|
unsigned int mask;
|
2011-05-03 10:50:29 +00:00
|
|
|
const char * const *texts;
|
2009-01-05 07:54:57 +00:00
|
|
|
const unsigned int *values;
|
2015-05-01 11:37:26 +00:00
|
|
|
unsigned int autodisable:1;
|
2015-05-29 18:06:14 +00:00
|
|
|
struct snd_soc_dobj dobj;
|
2009-01-05 07:54:57 +00:00
|
|
|
};
|
|
|
|
|
2010-03-17 20:15:21 +00:00
|
|
|
/* device driver data */
|
|
|
|
|
2011-01-28 13:11:47 +00:00
|
|
|
static inline void snd_soc_card_set_drvdata(struct snd_soc_card *card,
|
|
|
|
void *data)
|
|
|
|
{
|
|
|
|
card->drvdata = data;
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline void *snd_soc_card_get_drvdata(struct snd_soc_card *card)
|
|
|
|
{
|
|
|
|
return card->drvdata;
|
|
|
|
}
|
|
|
|
|
2011-10-05 07:29:22 +00:00
|
|
|
static inline bool snd_soc_volsw_is_stereo(struct soc_mixer_control *mc)
|
|
|
|
{
|
|
|
|
if (mc->reg == mc->rreg && mc->shift == mc->rshift)
|
|
|
|
return 0;
|
|
|
|
/*
|
|
|
|
* mc->reg == mc->rreg && mc->shift != mc->rshift, or
|
|
|
|
* mc->reg != mc->rreg means that the control is
|
|
|
|
* stereo (bits in one register or in two registers)
|
|
|
|
*/
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2014-02-28 07:31:03 +00:00
|
|
|
static inline unsigned int snd_soc_enum_val_to_item(struct soc_enum *e,
|
|
|
|
unsigned int val)
|
|
|
|
{
|
|
|
|
unsigned int i;
|
|
|
|
|
|
|
|
if (!e->values)
|
|
|
|
return val;
|
|
|
|
|
|
|
|
for (i = 0; i < e->items; i++)
|
|
|
|
if (val == e->values[i])
|
|
|
|
return i;
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline unsigned int snd_soc_enum_item_to_val(struct soc_enum *e,
|
|
|
|
unsigned int item)
|
|
|
|
{
|
|
|
|
if (!e->values)
|
|
|
|
return item;
|
|
|
|
|
|
|
|
return e->values[item];
|
|
|
|
}
|
|
|
|
|
2014-04-22 11:23:14 +00:00
|
|
|
/**
|
|
|
|
* snd_soc_kcontrol_component() - Returns the component that registered the
|
|
|
|
* control
|
|
|
|
* @kcontrol: The control for which to get the component
|
|
|
|
*
|
|
|
|
* Note: This function will work correctly if the control has been registered
|
2018-04-24 15:39:02 +00:00
|
|
|
* for a component. With snd_soc_add_codec_controls() or via table based
|
|
|
|
* setup for either a CODEC or component driver. Otherwise the behavior is
|
|
|
|
* undefined.
|
2014-04-22 11:23:14 +00:00
|
|
|
*/
|
|
|
|
static inline struct snd_soc_component *snd_soc_kcontrol_component(
|
|
|
|
struct snd_kcontrol *kcontrol)
|
|
|
|
{
|
|
|
|
return snd_kcontrol_chip(kcontrol);
|
|
|
|
}
|
|
|
|
|
2011-04-28 09:57:54 +00:00
|
|
|
int snd_soc_util_init(void);
|
|
|
|
void snd_soc_util_exit(void);
|
|
|
|
|
2017-01-27 06:37:51 +00:00
|
|
|
int snd_soc_of_parse_card_name(struct snd_soc_card *card,
|
|
|
|
const char *propname);
|
2017-01-27 06:37:34 +00:00
|
|
|
int snd_soc_of_parse_audio_simple_widgets(struct snd_soc_card *card,
|
|
|
|
const char *propname);
|
2018-07-17 15:43:02 +00:00
|
|
|
int snd_soc_of_get_slot_mask(struct device_node *np,
|
|
|
|
const char *prop_name,
|
|
|
|
unsigned int *mask);
|
2014-02-14 01:34:35 +00:00
|
|
|
int snd_soc_of_parse_tdm_slot(struct device_node *np,
|
2015-09-09 18:27:43 +00:00
|
|
|
unsigned int *tx_mask,
|
|
|
|
unsigned int *rx_mask,
|
2014-02-14 01:34:35 +00:00
|
|
|
unsigned int *slots,
|
|
|
|
unsigned int *slot_width);
|
2018-11-22 00:55:09 +00:00
|
|
|
void snd_soc_of_parse_node_prefix(struct device_node *np,
|
2015-07-15 07:07:42 +00:00
|
|
|
struct snd_soc_codec_conf *codec_conf,
|
|
|
|
struct device_node *of_node,
|
|
|
|
const char *propname);
|
2018-11-26 01:21:22 +00:00
|
|
|
static inline
|
|
|
|
void snd_soc_of_parse_audio_prefix(struct snd_soc_card *card,
|
|
|
|
struct snd_soc_codec_conf *codec_conf,
|
|
|
|
struct device_node *of_node,
|
|
|
|
const char *propname)
|
|
|
|
{
|
|
|
|
snd_soc_of_parse_node_prefix(card->dev->of_node,
|
|
|
|
codec_conf, of_node, propname);
|
|
|
|
}
|
2018-11-22 00:55:09 +00:00
|
|
|
|
2017-01-27 06:36:50 +00:00
|
|
|
int snd_soc_of_parse_audio_routing(struct snd_soc_card *card,
|
|
|
|
const char *propname);
|
2013-01-15 02:36:04 +00:00
|
|
|
unsigned int snd_soc_of_parse_daifmt(struct device_node *np,
|
2014-03-24 10:15:24 +00:00
|
|
|
const char *prefix,
|
|
|
|
struct device_node **bitclkmaster,
|
|
|
|
struct device_node **framemaster);
|
2017-05-18 01:39:25 +00:00
|
|
|
int snd_soc_get_dai_id(struct device_node *ep);
|
2016-11-11 01:19:28 +00:00
|
|
|
int snd_soc_get_dai_name(struct of_phandle_args *args,
|
|
|
|
const char **dai_name);
|
2013-09-11 00:39:56 +00:00
|
|
|
int snd_soc_of_get_dai_name(struct device_node *of_node,
|
|
|
|
const char **dai_name);
|
2014-11-25 12:16:12 +00:00
|
|
|
int snd_soc_of_get_dai_link_codecs(struct device *dev,
|
|
|
|
struct device_node *of_node,
|
|
|
|
struct snd_soc_dai_link *dai_link);
|
2018-03-09 17:48:54 +00:00
|
|
|
void snd_soc_of_put_dai_link_codecs(struct snd_soc_dai_link *dai_link);
|
2011-12-12 22:55:34 +00:00
|
|
|
|
2015-12-02 06:11:22 +00:00
|
|
|
int snd_soc_add_dai_link(struct snd_soc_card *card,
|
|
|
|
struct snd_soc_dai_link *dai_link);
|
|
|
|
void snd_soc_remove_dai_link(struct snd_soc_card *card,
|
|
|
|
struct snd_soc_dai_link *dai_link);
|
2016-11-02 17:04:12 +00:00
|
|
|
struct snd_soc_dai_link *snd_soc_find_dai_link(struct snd_soc_card *card,
|
|
|
|
int id, const char *name,
|
|
|
|
const char *stream_name);
|
2015-12-02 06:11:22 +00:00
|
|
|
|
2015-12-31 08:40:43 +00:00
|
|
|
int snd_soc_register_dai(struct snd_soc_component *component,
|
|
|
|
struct snd_soc_dai_driver *dai_drv);
|
|
|
|
|
2016-04-19 05:12:25 +00:00
|
|
|
struct snd_soc_dai *snd_soc_find_dai(
|
|
|
|
const struct snd_soc_dai_link_component *dlc);
|
|
|
|
|
2008-07-23 13:03:07 +00:00
|
|
|
#include <sound/soc-dai.h>
|
|
|
|
|
2017-10-12 23:38:02 +00:00
|
|
|
static inline
|
|
|
|
struct snd_soc_dai *snd_soc_card_get_codec_dai(struct snd_soc_card *card,
|
|
|
|
const char *dai_name)
|
|
|
|
{
|
|
|
|
struct snd_soc_pcm_runtime *rtd;
|
|
|
|
|
|
|
|
list_for_each_entry(rtd, &card->rtd_list, list) {
|
|
|
|
if (!strcmp(rtd->codec_dai->name, dai_name))
|
|
|
|
return rtd->codec_dai;
|
|
|
|
}
|
|
|
|
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2019-01-25 20:34:55 +00:00
|
|
|
static inline
|
|
|
|
int snd_soc_fixup_dai_links_platform_name(struct snd_soc_card *card,
|
|
|
|
const char *platform_name)
|
|
|
|
{
|
|
|
|
struct snd_soc_dai_link *dai_link;
|
|
|
|
const char *name;
|
|
|
|
int i;
|
|
|
|
|
|
|
|
if (!platform_name) /* nothing to do */
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
/* set platform name for each dailink */
|
|
|
|
for_each_card_prelinks(card, i, dai_link) {
|
|
|
|
name = devm_kstrdup(card->dev, platform_name, GFP_KERNEL);
|
|
|
|
if (!name)
|
|
|
|
return -ENOMEM;
|
|
|
|
|
2019-06-06 04:22:19 +00:00
|
|
|
if (!dai_link->platforms)
|
|
|
|
return -EINVAL;
|
|
|
|
|
|
|
|
/* only single platform is supported for now */
|
|
|
|
dai_link->platforms->name = name;
|
2019-01-25 20:34:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2011-01-08 05:36:11 +00:00
|
|
|
#ifdef CONFIG_DEBUG_FS
|
2011-01-10 22:25:21 +00:00
|
|
|
extern struct dentry *snd_soc_debugfs_root;
|
2011-01-08 05:36:11 +00:00
|
|
|
#endif
|
|
|
|
|
2011-01-26 14:59:27 +00:00
|
|
|
extern const struct dev_pm_ops snd_soc_pm_ops;
|
|
|
|
|
2014-02-18 15:22:13 +00:00
|
|
|
/* Helper functions */
|
|
|
|
static inline void snd_soc_dapm_mutex_lock(struct snd_soc_dapm_context *dapm)
|
|
|
|
{
|
2015-12-29 16:25:13 +00:00
|
|
|
mutex_lock_nested(&dapm->card->dapm_mutex, SND_SOC_DAPM_CLASS_RUNTIME);
|
2014-02-18 15:22:13 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static inline void snd_soc_dapm_mutex_unlock(struct snd_soc_dapm_context *dapm)
|
|
|
|
{
|
|
|
|
mutex_unlock(&dapm->card->dapm_mutex);
|
|
|
|
}
|
|
|
|
|
2019-07-26 04:49:48 +00:00
|
|
|
#include <sound/soc-component.h>
|
2016-11-29 15:44:38 +00:00
|
|
|
|
2006-10-06 16:20:14 +00:00
|
|
|
#endif
|