1## SPDX-License-Identifier: GPL-2.0-only 2 3config SOC_MEDIATEK_MT8195 4 bool 5 default n 6 select ARCH_BOOTBLOCK_ARMV8_64 7 select ARCH_VERSTAGE_ARMV8_64 8 select ARCH_ROMSTAGE_ARMV8_64 9 select ARCH_RAMSTAGE_ARMV8_64 10 select ARM64_USE_ARM_TRUSTED_FIRMWARE 11 select CACHE_MRC_SETTINGS 12 select HAVE_UART_SPECIAL 13 select SOC_MEDIATEK_COMMON 14 select DPM_FOUR_CHANNEL 15 select PCI 16 select FLASH_DUAL_IO_READ 17 18if SOC_MEDIATEK_MT8195 19 20config VBOOT 21 select VBOOT_MUST_REQUEST_DISPLAY 22 select VBOOT_STARTS_IN_BOOTBLOCK 23 select VBOOT_SEPARATE_VERSTAGE 24 select VBOOT_RETURN_FROM_VERSTAGE 25 26config DPM_DM_FIRMWARE 27 string 28 default "dpm.dm" 29 help 30 The file name of the MediaTek DPM DM firmware. 31 32config DPM_PM_FIRMWARE 33 string 34 default "dpm.pm" 35 help 36 The file name of the MediaTek DPM PM firmware. 37 38config MCUPM_FIRMWARE 39 string 40 default "mcupm.bin" 41 help 42 The file name of the MediaTek MCUPM firmware. 43 44config SPM_FIRMWARE 45 string 46 default "spm_firmware.bin" 47 help 48 The file name of the MediaTek SPM firmware. 49 50config SSPM_FIRMWARE 51 string 52 default "sspm.bin" 53 help 54 The file name of the MediaTek SSPM firmware. 55 56endif 57