···5252#define ADSP_PRID 0x05353#define ADSP_ALTVEC_C0 0x045454#define ADSP_ALTVECSEL 0x0C5555-#define ADSP_ALTVECSEL_C0 BIT(1)5555+#define MT8188_ADSP_ALTVECSEL_C0 BIT(0)5656+#define MT8186_ADSP_ALTVECSEL_C0 BIT(1)5757+5858+/*5959+ * On MT8188, BIT(1) is not evaluated and on MT8186 BIT(0) is not evaluated:6060+ * We can simplify the driver by safely setting both bits regardless of the SoC.6161+ */6262+#define ADSP_ALTVECSEL_C0 (MT8188_ADSP_ALTVECSEL_C0 | \6363+ MT8186_ADSP_ALTVECSEL_C0)56645765/* dsp bus */5866#define ADSP_SRAM_POOL_CON 0x190
+1
sound/soc/sof/mediatek/mt8195/mt8195.c
···637637638638 /* Debug information */639639 .dbg_dump = mt8195_adsp_dump,640640+ .debugfs_add_region_item = snd_sof_debugfs_add_region_item_iomem,640641641642 /* DAI drivers */642643 .drv = mt8195_dai,