mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-15 08:14:15 +08:00
3ceb66edd6
Add a common header for Intel HDMI dai link (idisp) initialization. Declare the sof_hdmi_private structure in machine driver private data and use it to initialize dai link. Reviewed-by: Bard Liao <yung-chuan.liao@linux.intel.com> Signed-off-by: Brent Lu <brent.lu@intel.com> Signed-off-by: Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com> Link: https://lore.kernel.org/r/20231012190826.142619-13-pierre-louis.bossart@linux.intel.com Signed-off-by: Mark Brown <broonie@kernel.org>
25 lines
508 B
C
25 lines
508 B
C
/* SPDX-License-Identifier: GPL-2.0-only */
|
|
/*
|
|
* Copyright(c) 2023 Intel Corporation.
|
|
*/
|
|
|
|
#ifndef __SOF_HDMI_COMMON_H
|
|
#define __SOF_HDMI_COMMON_H
|
|
|
|
#include <sound/soc.h>
|
|
|
|
#define IDISP_CODEC_MASK 0x4
|
|
|
|
/*
|
|
* sof_hdmi_private: data for Intel HDMI dai link (idisp) initialization
|
|
*
|
|
* @hdmi_comp: ASoC component of idisp codec
|
|
* @idisp_codec: true to indicate idisp codec is present
|
|
*/
|
|
struct sof_hdmi_private {
|
|
struct snd_soc_component *hdmi_comp;
|
|
bool idisp_codec;
|
|
};
|
|
|
|
#endif /* __SOF_HDMI_COMMON_H */
|