Add adsp clock on/off support on mt8195 platform. Signed-off-by: YC Hung <yc.hung@mediatek.com> Reviewed-by: Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com> Reviewed-by: Daniel Baluta <daniel.baluta@nxp.com> Signed-off-by: Daniel Baluta <daniel.baluta@nxp.com> Link: https://lore.kernel.org/r/20211118100749.54628-8-daniel.baluta@oss.nxp.com Signed-off-by: Mark Brown <broonie@kernel.org>
29 lines
564 B
C
29 lines
564 B
C
/* SPDX-License-Identifier: GPL-2.0 */
|
|
|
|
/*
|
|
* Copyright (c) 2021 MediaTek Corporation. All rights reserved.
|
|
*
|
|
* Header file for the mt8195 DSP clock definition
|
|
*/
|
|
|
|
#ifndef __MT8195_CLK_H
|
|
#define __MT8195_CLK_H
|
|
|
|
struct snd_sof_dev;
|
|
|
|
/*DSP clock*/
|
|
enum adsp_clk_id {
|
|
CLK_TOP_ADSP,
|
|
CLK_TOP_CLK26M,
|
|
CLK_TOP_AUDIO_LOCAL_BUS,
|
|
CLK_TOP_MAINPLL_D7_D2,
|
|
CLK_SCP_ADSP_AUDIODSP,
|
|
CLK_TOP_AUDIO_H,
|
|
ADSP_CLK_MAX
|
|
};
|
|
|
|
int mt8195_adsp_init_clock(struct snd_sof_dev *sdev);
|
|
int adsp_clock_on(struct snd_sof_dev *sdev);
|
|
int adsp_clock_off(struct snd_sof_dev *sdev);
|
|
#endif
|