diff options
author | Stephane Viau <sviau@codeaurora.org> | 2014-06-06 10:03:32 -0400 |
---|---|---|
committer | Rob Clark <robdclark@gmail.com> | 2014-06-22 08:32:09 -0400 |
commit | b77f47e78982807286f6fdb4c39f9e798606dace (patch) | |
tree | 28b5f9ad608beee48684cb5e577c97212584543d /drivers/gpu/drm/msm/hdmi/hdmi.h | |
parent | 370a4d8a79f166d2accc294c4db35e5cbe8c3a90 (diff) | |
download | op-kernel-dev-b77f47e78982807286f6fdb4c39f9e798606dace.zip op-kernel-dev-b77f47e78982807286f6fdb4c39f9e798606dace.tar.gz |
drm/msm/hdmi: set hdp clock rate before prepare_enable
The clock driver usually complains when a clock is being prepared
before setting its rate. It is the case here for "core_clk" which
needs to be set at 19.2 MHz before we attempt a prepare_enable().
Signed-off-by: Stephane Viau <sviau@codeaurora.org>
Signed-off-by: Rob Clark <robdclark@gmail.com>
Diffstat (limited to 'drivers/gpu/drm/msm/hdmi/hdmi.h')
-rw-r--r-- | drivers/gpu/drm/msm/hdmi/hdmi.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/gpu/drm/msm/hdmi/hdmi.h b/drivers/gpu/drm/msm/hdmi/hdmi.h index 9fafee6..9d7723c 100644 --- a/drivers/gpu/drm/msm/hdmi/hdmi.h +++ b/drivers/gpu/drm/msm/hdmi/hdmi.h @@ -87,6 +87,7 @@ struct hdmi_platform_config { /* clks that need to be on for hpd: */ const char **hpd_clk_names; + const long unsigned *hpd_freq; int hpd_clk_cnt; /* clks that need to be on for screen pwr (ie pixel clk): */ |