a6881210f1
Add a helper function for machine drivers to initialize dai_link and num_links of a snd_soc_card structure. Machine driver needs to initialize sof_card_private structure in driver probe function then board_helpers module will create entire DAI link array for this board. Signed-off-by: Brent Lu <brent.lu@intel.com> Reviewed-by: Bard Liao <yung-chuan.liao@linux.intel.com> Reviewed-by: Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com> Signed-off-by: Peter Ujfalusi <peter.ujfalusi@linux.intel.com> Link: https://lore.kernel.org/r/20231127152654.28204-26-peter.ujfalusi@linux.intel.com Signed-off-by: Mark Brown <broonie@kernel.org>
96 lines
2.7 KiB
C
96 lines
2.7 KiB
C
/* SPDX-License-Identifier: GPL-2.0-only */
|
|
/*
|
|
* Copyright(c) 2023 Intel Corporation.
|
|
*/
|
|
|
|
#ifndef __SOF_INTEL_BOARD_HELPERS_H
|
|
#define __SOF_INTEL_BOARD_HELPERS_H
|
|
|
|
#include <sound/soc.h>
|
|
#include "sof_hdmi_common.h"
|
|
#include "sof_ssp_common.h"
|
|
|
|
/*
|
|
* sof_rt5682_private: private data for rt5682 machine driver
|
|
*
|
|
* @mclk: mclk clock data
|
|
* @is_legacy_cpu: true for BYT/CHT boards
|
|
*/
|
|
struct sof_rt5682_private {
|
|
struct clk *mclk;
|
|
bool is_legacy_cpu;
|
|
};
|
|
|
|
/*
|
|
* sof_card_private: common data for machine drivers
|
|
*
|
|
* @headset_jack: headset jack data
|
|
* @hdmi: init data for hdmi dai link
|
|
* @codec_type: type of headset codec
|
|
* @amp_type: type of speaker amplifier
|
|
* @dmic_be_num: number of Intel PCH DMIC BE link
|
|
* @hdmi_num: number of Intel HDMI BE link
|
|
* @ssp_codec: ssp port number of headphone BE link
|
|
* @ssp_amp: ssp port number of speaker BE link
|
|
* @ssp_bt: ssp port number of BT offload BE link
|
|
* @ssp_mask_hdmi_in: ssp port mask of HDMI-IN BE link
|
|
* @bt_offload_present: true to create BT offload BE link
|
|
* @codec_link: pointer to headset codec dai link
|
|
* @amp_link: pointer to speaker amplifier dai link
|
|
* @rt5682: private data for rt5682 machine driver
|
|
*/
|
|
struct sof_card_private {
|
|
struct snd_soc_jack headset_jack;
|
|
struct sof_hdmi_private hdmi;
|
|
|
|
enum sof_ssp_codec codec_type;
|
|
enum sof_ssp_codec amp_type;
|
|
|
|
int dmic_be_num;
|
|
int hdmi_num;
|
|
|
|
int ssp_codec;
|
|
int ssp_amp;
|
|
int ssp_bt;
|
|
unsigned long ssp_mask_hdmi_in;
|
|
|
|
bool bt_offload_present;
|
|
|
|
struct snd_soc_dai_link *codec_link;
|
|
struct snd_soc_dai_link *amp_link;
|
|
|
|
union {
|
|
struct sof_rt5682_private rt5682;
|
|
};
|
|
};
|
|
|
|
enum sof_dmic_be_type {
|
|
SOF_DMIC_01,
|
|
SOF_DMIC_16K,
|
|
};
|
|
|
|
int sof_intel_board_card_late_probe(struct snd_soc_card *card);
|
|
int sof_intel_board_set_dai_link(struct device *dev, struct snd_soc_card *card,
|
|
struct sof_card_private *ctx);
|
|
|
|
int sof_intel_board_set_codec_link(struct device *dev,
|
|
struct snd_soc_dai_link *link, int be_id,
|
|
enum sof_ssp_codec codec_type, int ssp_codec);
|
|
int sof_intel_board_set_dmic_link(struct device *dev,
|
|
struct snd_soc_dai_link *link, int be_id,
|
|
enum sof_dmic_be_type be_type);
|
|
int sof_intel_board_set_intel_hdmi_link(struct device *dev,
|
|
struct snd_soc_dai_link *link, int be_id,
|
|
int hdmi_id, bool idisp_codec);
|
|
int sof_intel_board_set_ssp_amp_link(struct device *dev,
|
|
struct snd_soc_dai_link *link, int be_id,
|
|
enum sof_ssp_codec amp_type, int ssp_amp);
|
|
int sof_intel_board_set_bt_link(struct device *dev,
|
|
struct snd_soc_dai_link *link, int be_id,
|
|
int ssp_bt);
|
|
int sof_intel_board_set_hdmi_in_link(struct device *dev,
|
|
struct snd_soc_dai_link *link, int be_id,
|
|
int ssp_hdmi);
|
|
|
|
#endif /* __SOF_INTEL_BOARD_HELPERS_H */
|