xref: /linux/sound/soc/intel/boards/sof_ti_common.h (revision d061251387903e8502843ac983553f0b2e098ef8)
1 /* SPDX-License-Identifier: GPL-2.0-only */
2 /*
3  * Copyright(c) 2025 Intel Corporation.
4  */
5 
6 /*
7  * This file defines data structures used in Machine Driver for Intel
8  * platforms with Texas Instruments Codecs.
9  */
10 #ifndef __SOF_TI_COMMON_H
11 #define __SOF_TI_COMMON_H
12 
13 #include <sound/soc.h>
14 #include <sound/soc-acpi-intel-ssp-common.h>
15 
16 /*
17  * Texas Instruments TAS2563
18  */
19 #define TAS2563_CODEC_DAI	"tasdev_codec"
20 #define TAS2563_DEV0_NAME	"i2c-" TAS2563_ACPI_HID ":00"
21 
22 void sof_tas2563_dai_link(struct snd_soc_dai_link *link);
23 
24 #endif /* __SOF_TI_COMMON_H */
25