1 /* SPDX-License-Identifier: GPL-2.0-only */ 2 3 #ifndef SOC_MEDIATEK_MT8186_ADSP_H 4 #define SOC_MEDIATEK_MT8186_ADSP_H 5 6 #include <soc/addressmap.h> 7 8 struct mt8186_audiodsp_regs { 9 u32 reserved1[1024]; 10 u32 audiodsp_adsp_ck_en; 11 }; 12 check_member(mt8186_audiodsp_regs, audiodsp_adsp_ck_en, 0x1000); 13 14 static struct mt8186_audiodsp_regs *const mt8186_audiodsp = (void *)AUDIODSP_BASE; 15 16 void mtk_adsp_init(void); 17 18 #endif 19