Back to home page

OSCL-LXR

 
 

    


0001 /* SPDX-License-Identifier: (GPL-2.0-only OR BSD-3-Clause) */
0002 /*
0003  * Copyright(c) 2021 Mediatek Corporation. All rights reserved.
0004  *
0005  * Author: Bo Pan <bo.pan@mediatek.com>
0006  */
0007 
0008 #ifndef __INCLUDE_SOUND_SOF_DAI_MEDIATEK_H__
0009 #define __INCLUDE_SOUND_SOF_DAI_MEDIATEK_H__
0010 
0011 #include <sound/sof/header.h>
0012 
0013 struct sof_ipc_dai_mtk_afe_params {
0014     struct sof_ipc_hdr hdr;
0015     u32 channels;
0016     u32 rate;
0017     u32 format;
0018     u32 stream_id;
0019     u32 reserved[4]; /* reserve for future */
0020 } __packed;
0021 
0022 #endif
0023