mirror of
				https://github.com/torvalds/linux.git
				synced 2025-11-04 10:40:15 +02:00 
			
		
		
		
	The original code for rt1015p could support 1 or 2 rt1015p device instances in ACPI. However, all designs implement only 1 instance in ACPI table so we remove the code segment which is for 2 instances. 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/20240509163418.67746-5-pierre-louis.bossart@linux.intel.com Signed-off-by: Mark Brown <broonie@kernel.org>
		
			
				
	
	
		
			63 lines
		
	
	
	
		
			1.6 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			63 lines
		
	
	
	
		
			1.6 KiB
		
	
	
	
		
			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>
 | 
						|
#include <sound/soc-acpi-intel-ssp-common.h>
 | 
						|
 | 
						|
/*
 | 
						|
 * Realtek ALC1011
 | 
						|
 */
 | 
						|
 | 
						|
#define RT1011_CODEC_DAI	"rt1011-aif"
 | 
						|
#define RT1011_DEV0_NAME	"i2c-" RT1011_ACPI_HID ":00"
 | 
						|
#define RT1011_DEV1_NAME	"i2c-" RT1011_ACPI_HID ":01"
 | 
						|
#define RT1011_DEV2_NAME	"i2c-" RT1011_ACPI_HID ":02"
 | 
						|
#define RT1011_DEV3_NAME	"i2c-" RT1011_ACPI_HID ":03"
 | 
						|
 | 
						|
void sof_rt1011_dai_link(struct device *dev, struct snd_soc_dai_link *link);
 | 
						|
void sof_rt1011_codec_conf(struct device *dev, struct snd_soc_card *card);
 | 
						|
 | 
						|
/*
 | 
						|
 * Realtek ALC1015 (AUTO)
 | 
						|
 */
 | 
						|
#define RT1015P_CODEC_DAI	"HiFi"
 | 
						|
#define RT1015P_DEV0_NAME	RT1015P_ACPI_HID ":00"
 | 
						|
 | 
						|
void sof_rt1015p_dai_link(struct snd_soc_dai_link *link);
 | 
						|
void sof_rt1015p_codec_conf(struct snd_soc_card *card);
 | 
						|
 | 
						|
/*
 | 
						|
 * Realtek ALC1015 (I2C)
 | 
						|
 */
 | 
						|
#define RT1015_CODEC_DAI	"rt1015-aif"
 | 
						|
#define RT1015_DEV0_NAME	"i2c-" RT1015_ACPI_HID ":00"
 | 
						|
#define RT1015_DEV1_NAME	"i2c-" RT1015_ACPI_HID ":01"
 | 
						|
 | 
						|
void sof_rt1015_dai_link(struct snd_soc_dai_link *link);
 | 
						|
void sof_rt1015_codec_conf(struct snd_soc_card *card);
 | 
						|
 | 
						|
/*
 | 
						|
 * Realtek ALC1308
 | 
						|
 */
 | 
						|
#define RT1308_CODEC_DAI	"rt1308-aif"
 | 
						|
#define RT1308_DEV0_NAME	"i2c-" RT1308_ACPI_HID ":00"
 | 
						|
void sof_rt1308_dai_link(struct snd_soc_dai_link *link);
 | 
						|
 | 
						|
/*
 | 
						|
 * Realtek ALC1019
 | 
						|
 */
 | 
						|
#define RT1019P_CODEC_DAI	"HiFi"
 | 
						|
#define RT1019P_DEV0_NAME	RT1019P_ACPI_HID ":00"
 | 
						|
 | 
						|
void sof_rt1019p_dai_link(struct snd_soc_dai_link *link);
 | 
						|
 | 
						|
#endif /* __SOF_REALTEK_COMMON_H */
 |