Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
torvalds
GitHub Repository: torvalds/linux
Path: blob/master/sound/soc/intel/boards/sof_ti_common.h
121834 views
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
26