summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/soc/mediatek/mt8195/Kconfig12
-rw-r--r--src/soc/mediatek/mt8195/Makefile.inc2
2 files changed, 14 insertions, 0 deletions
diff --git a/src/soc/mediatek/mt8195/Kconfig b/src/soc/mediatek/mt8195/Kconfig
index ca43e6fcc7..249d0877df 100644
--- a/src/soc/mediatek/mt8195/Kconfig
+++ b/src/soc/mediatek/mt8195/Kconfig
@@ -19,6 +19,18 @@ config VBOOT
select VBOOT_SEPARATE_VERSTAGE
select VBOOT_RETURN_FROM_VERSTAGE
+config DPM_DM_FIRMWARE
+ string
+ default "dpm.dm"
+ help
+ The file name of the MediaTek DPM DM firmware.
+
+config DPM_PM_FIRMWARE
+ string
+ default "dpm.pm"
+ help
+ The file name of the MediaTek DPM PM firmware.
+
config MCUPM_FIRMWARE
string
default "mcupm.bin"
diff --git a/src/soc/mediatek/mt8195/Makefile.inc b/src/soc/mediatek/mt8195/Makefile.inc
index 63848d4cbf..48c8d32572 100644
--- a/src/soc/mediatek/mt8195/Makefile.inc
+++ b/src/soc/mediatek/mt8195/Makefile.inc
@@ -77,6 +77,8 @@ BL31_MAKEARGS += PLAT=mt8195
MT8195_BLOB_DIR := 3rdparty/blobs/soc/mediatek/mt8195
mcu-firmware-files := \
+ $(CONFIG_DPM_DM_FIRMWARE) \
+ $(CONFIG_DPM_PM_FIRMWARE) \
$(CONFIG_MCUPM_FIRMWARE) \
$(CONFIG_SSPM_FIRMWARE) \
$(CONFIG_SPM_FIRMWARE)