xref: /linux/include/sound/sof/dai-mediatek.h (revision 2da68a77)
1 /* SPDX-License-Identifier: (GPL-2.0-only OR BSD-3-Clause) */
2 /*
3  * Copyright(c) 2021 Mediatek Corporation. All rights reserved.
4  *
5  * Author: Bo Pan <bo.pan@mediatek.com>
6  */
7 
8 #ifndef __INCLUDE_SOUND_SOF_DAI_MEDIATEK_H__
9 #define __INCLUDE_SOUND_SOF_DAI_MEDIATEK_H__
10 
11 #include <sound/sof/header.h>
12 
13 struct sof_ipc_dai_mtk_afe_params {
14 	struct sof_ipc_hdr hdr;
15 	u32 channels;
16 	u32 rate;
17 	u32 format;
18 	u32 stream_id;
19 	u32 reserved[4]; /* reserve for future */
20 } __packed;
21 
22 #endif
23 
24