mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-12-15 06:55:13 +08:00
4bb16cd827
TGL supports more than three HDMI Dai's. So, update hdac_hda_dais table to include 4th DAI. Without this patch, we saw the below error in TGL DUT: sof_rt5682 tgl_max98357a_rt5682: ASoC: CODEC DAI intel-hdmi-hifi4 not Signed-off-by: Sathyanarayana Nujella <sathyanarayana.nujella@intel.com> Signed-off-by: Jairaj Arava <jairaj.arava@intel.com> Signed-off-by: Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com> Link: https://lore.kernel.org/r/20191220171037.10689-3-pierre-louis.bossart@linux.intel.com Signed-off-by: Mark Brown <broonie@kernel.org>
38 lines
796 B
C
38 lines
796 B
C
/* SPDX-License-Identifier: GPL-2.0 */
|
|
/*
|
|
* Copyright(c) 2015-18 Intel Corporation.
|
|
*/
|
|
|
|
#ifndef __HDAC_HDA_H__
|
|
#define __HDAC_HDA_H__
|
|
|
|
enum {
|
|
HDAC_ANALOG_DAI_ID = 0,
|
|
HDAC_DIGITAL_DAI_ID,
|
|
HDAC_ALT_ANALOG_DAI_ID,
|
|
HDAC_HDMI_0_DAI_ID,
|
|
HDAC_HDMI_1_DAI_ID,
|
|
HDAC_HDMI_2_DAI_ID,
|
|
HDAC_HDMI_3_DAI_ID,
|
|
HDAC_LAST_DAI_ID = HDAC_HDMI_3_DAI_ID,
|
|
};
|
|
|
|
struct hdac_hda_pcm {
|
|
int stream_tag[2];
|
|
unsigned int format_val[2];
|
|
};
|
|
|
|
struct hdac_hda_priv {
|
|
struct hda_codec codec;
|
|
struct hdac_hda_pcm pcm[HDAC_LAST_DAI_ID];
|
|
bool need_display_power;
|
|
};
|
|
|
|
#define hdac_to_hda_priv(_hdac) \
|
|
container_of(_hdac, struct hdac_hda_priv, codec.core)
|
|
#define hdac_to_hda_codec(_hdac) container_of(_hdac, struct hda_codec, core)
|
|
|
|
struct hdac_ext_bus_ops *snd_soc_hdac_hda_get_ops(void);
|
|
|
|
#endif /* __HDAC_HDA_H__ */
|