Felix Held has submitted this change. ( https://review.coreboot.org/c/coreboot/+/62371 )
Change subject: qualcomm/sc7280: Add mdp clock support to turbo in coreboot ......................................................................
qualcomm/sc7280: Add mdp clock support to turbo in coreboot
This change supports the configuration and enablement of mdp clock to vote for turbo and supports different display panel resolutions and framerates.
BUG=b:182963902 TEST=Validated on qualcomm sc7280 development board.
Signed-off-by: Taniya Das quic_tdas@quicinc.com Change-Id: Ibf4f11d02b0edf83461dbb7af99fda5f33cd5b71 Reviewed-on: https://review.coreboot.org/c/coreboot/+/62371 Reviewed-by: Shelley Chen shchen@google.com Tested-by: build bot (Jenkins) no-reply@coreboot.org --- M src/soc/qualcomm/sc7280/clock.c 1 file changed, 5 insertions(+), 0 deletions(-)
Approvals: build bot (Jenkins): Verified Shelley Chen: Looks good to me, approved
diff --git a/src/soc/qualcomm/sc7280/clock.c b/src/soc/qualcomm/sc7280/clock.c index 434eeee..746035c 100644 --- a/src/soc/qualcomm/sc7280/clock.c +++ b/src/soc/qualcomm/sc7280/clock.c @@ -201,6 +201,11 @@ .src = SRC_GCC_DISP_GPLL0_CLK, .div = QCOM_CLOCK_DIV(2), }, + { + .hz = 400 * MHz, + .src = SRC_GCC_DISP_GPLL0_CLK, + .div = QCOM_CLOCK_DIV(1.5), + }, };
static struct clock_rcg *mdss_clock[MDSS_CLK_COUNT] = {