diff options
author | Mythri P K <mythripk@ti.com> | 2011-09-08 19:06:19 +0530 |
---|---|---|
committer | Tomi Valkeinen <tomi.valkeinen@ti.com> | 2011-09-30 16:16:31 +0300 |
commit | 7b27da548389cede637653033211369a2c9678f7 (patch) | |
tree | 68b7482d61fa2e2048b8e38519a8405878d77ab8 /drivers/video/omap2/dss/dss.h | |
parent | 95a8aeb6c56ec80fb847e44328e3b53b9934dcbf (diff) |
OMAP4: DSS2: HDMI: Move pll and video configuration
As the pll and the video configuration info are part of the ip_data, pll
and video structures are moved to the ip_data structure. Also the pll and
video configuration functions are modified accordingly to take care of the
structure movement.
Signed-off-by: Mythri P K <mythripk@ti.com>
Signed-off-by: Tomi Valkeinen <tomi.valkeinen@ti.com>
Diffstat (limited to 'drivers/video/omap2/dss/dss.h')
-rw-r--r-- | drivers/video/omap2/dss/dss.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/drivers/video/omap2/dss/dss.h b/drivers/video/omap2/dss/dss.h index eb716521d775..6aeb1f5505d0 100644 --- a/drivers/video/omap2/dss/dss.h +++ b/drivers/video/omap2/dss/dss.h @@ -155,6 +155,13 @@ struct dsi_clock_info { bool use_sys_clk; }; +enum hdmi_clk_refsel { + HDMI_REFSEL_PCLK = 0, + HDMI_REFSEL_REF1 = 1, + HDMI_REFSEL_REF2 = 2, + HDMI_REFSEL_SYSCLK = 3 +}; + /* HDMI PLL structure */ struct hdmi_pll_info { u16 regn; @@ -163,6 +170,7 @@ struct hdmi_pll_info { u16 regm2; u16 regsd; u16 dcofreq; + enum hdmi_clk_refsel refsel; }; struct seq_file; |