forked from Minki/linux
ad83b1adc5
This patch adds jsl_rt5682_rt1015p which supports the RT5682 headset codec and ALC1015Q-VB speaker amplifier combination on JasperLake platform. This driver also supports ALC1015Q-CG if running in auto-mode. Following table shows the audio interface support of the two amplifiers. | ALC1015Q-CG | ALC1015Q-VB ===================================== I2C | Yes | No Auto-mode | 48K, 64fs | 16k, 32fs | 48k, 32fs | 48k, 64fs Signed-off-by: Brent Lu <brent.lu@intel.com> Acked-by: Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com> Link: https://lore.kernel.org/r/20210317110824.20814-1-brent.lu@intel.com Signed-off-by: Mark Brown <broonie@kernel.org>
32 lines
877 B
C
32 lines
877 B
C
/* SPDX-License-Identifier: GPL-2.0-only */
|
|
/*
|
|
* Copyright(c) 2020 Intel Corporation.
|
|
*/
|
|
|
|
/*
|
|
* This file defines data structures used in Machine Driver for Intel
|
|
* platforms with Realtek Codecs.
|
|
*/
|
|
#ifndef __SOF_REALTEK_COMMON_H
|
|
#define __SOF_REALTEK_COMMON_H
|
|
|
|
#include <sound/soc.h>
|
|
|
|
#define RT1011_CODEC_DAI "rt1011-aif"
|
|
#define RT1011_DEV0_NAME "i2c-10EC1011:00"
|
|
#define RT1011_DEV1_NAME "i2c-10EC1011:01"
|
|
#define RT1011_DEV2_NAME "i2c-10EC1011:02"
|
|
#define RT1011_DEV3_NAME "i2c-10EC1011:03"
|
|
|
|
void sof_rt1011_dai_link(struct snd_soc_dai_link *link);
|
|
void sof_rt1011_codec_conf(struct snd_soc_card *card);
|
|
|
|
#define RT1015P_CODEC_DAI "HiFi"
|
|
#define RT1015P_DEV0_NAME "RTL1015:00"
|
|
#define RT1015P_DEV1_NAME "RTL1015:01"
|
|
|
|
void sof_rt1015p_dai_link(struct snd_soc_dai_link *link);
|
|
void sof_rt1015p_codec_conf(struct snd_soc_card *card);
|
|
|
|
#endif /* __SOF_REALTEK_COMMON_H */
|