diff options
author | Rex-BC Chen <rex-bc.chen@mediatek.corp-partner.google.com> | 2021-08-13 16:34:26 +0800 |
---|---|---|
committer | Hung-Te Lin <hungte@chromium.org> | 2021-08-23 06:03:52 +0000 |
commit | 8316db207d9e3fb55f51cb6bce642549d9364ff0 (patch) | |
tree | 559c715e595b6a991afa881aeec0948208044160 /src/soc/mediatek/mt8195/soc.c | |
parent | a3ce81d28bfa4a8cdf7c30f374a9782a678a5159 (diff) |
soc/mediatek/mt8195: add HDMI low power setting
Add HDMI low power setting to reduce power consumption.
Signed-off-by: Rex-BC Chen <rex-bc.chen@mediatek.com>
Change-Id: Ica91645789e5de3401131e7050d2b1ee06c535dd
Reviewed-on: https://review.coreboot.org/c/coreboot/+/57042
Reviewed-by: Yu-Ping Wu <yupingso@google.com>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Diffstat (limited to 'src/soc/mediatek/mt8195/soc.c')
-rw-r--r-- | src/soc/mediatek/mt8195/soc.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/soc/mediatek/mt8195/soc.c b/src/soc/mediatek/mt8195/soc.c index 74212207cf..638056487b 100644 --- a/src/soc/mediatek/mt8195/soc.c +++ b/src/soc/mediatek/mt8195/soc.c @@ -3,6 +3,7 @@ #include <device/device.h> #include <soc/devapc.h> #include <soc/emi.h> +#include <soc/hdmi.h> #include <soc/mcupm.h> #include <soc/mmu_operations.h> #include <soc/sspm.h> @@ -21,6 +22,7 @@ static void soc_init(struct device *dev) mcupm_init(); sspm_init(); ufs_disable_refclk(); + hdmi_low_power_setting(); } static struct device_operations soc_ops = { |