Path: blob/master/sound/soc/mediatek/common/mtk-afe-platform-driver.h
26450 views
/* SPDX-License-Identifier: GPL-2.0 */1/*2* mtk-afe-platform-driver.h -- Mediatek afe platform driver definition3*4* Copyright (c) 2016 MediaTek Inc.5* Author: Garlic Tseng <[email protected]>6*/78#ifndef _MTK_AFE_PLATFORM_DRIVER_H_9#define _MTK_AFE_PLATFORM_DRIVER_H_1011#define AFE_PCM_NAME "mtk-afe-pcm"12extern const struct snd_soc_component_driver mtk_afe_pcm_platform;1314struct mtk_base_afe;15struct snd_pcm;16struct snd_soc_component;17struct snd_soc_pcm_runtime;1819snd_pcm_uframes_t mtk_afe_pcm_pointer(struct snd_soc_component *component,20struct snd_pcm_substream *substream);21int mtk_afe_pcm_new(struct snd_soc_component *component,22struct snd_soc_pcm_runtime *rtd);2324int mtk_afe_combine_sub_dai(struct mtk_base_afe *afe);25int mtk_afe_add_sub_dai_control(struct snd_soc_component *component);26#endif27282930