soc/mediatek/mt8188: Add DPM firmware files
DPM is a hardware module for DRAM power management, which is used for DRAM low power mode. TEST=build pass BUG=b:236331724 Signed-off-by: Xi Chen <xixi.chen@mediatek.corp-partner.google.com> Change-Id: I872396fe2c5accd92ba5c14b124125bd58257771 Reviewed-on: https://review.coreboot.org/c/coreboot/+/66967 Reviewed-by: Yidi Lin <yidilin@google.com> Reviewed-by: Yu-Ping Wu <yupingso@google.com> Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
This commit is contained in:
parent
8665d88561
commit
cd37368c6c
|
@ -20,6 +20,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"
|
||||
|
|
|
@ -48,6 +48,8 @@ CPPFLAGS_common += -Isrc/soc/mediatek/common/include
|
|||
MT8188_BLOB_DIR := 3rdparty/blobs/soc/mediatek/mt8188
|
||||
|
||||
mcu-firmware-files := \
|
||||
$(CONFIG_DPM_DM_FIRMWARE) \
|
||||
$(CONFIG_DPM_PM_FIRMWARE) \
|
||||
$(CONFIG_MCUPM_FIRMWARE) \
|
||||
$(CONFIG_SSPM_FIRMWARE)
|
||||
|
||||
|
|
Loading…
Reference in New Issue