diff options
author | Archit Taneja <archit@ti.com> | 2011-04-12 13:52:23 +0530 |
---|---|---|
committer | Tomi Valkeinen <tomi.valkeinen@ti.com> | 2011-05-11 14:19:27 +0300 |
commit | 89a35e5170fc579e4fc3a1f3444c5dc1aa36904d (patch) | |
tree | 92e23633ac8b048ec8e8ae076457519e439cc066 /include/video | |
parent | 14e4d78485a50312be72a42fd42a28b5b34264dc (diff) | |
download | op-kernel-dev-89a35e5170fc579e4fc3a1f3444c5dc1aa36904d.zip op-kernel-dev-89a35e5170fc579e4fc3a1f3444c5dc1aa36904d.tar.gz |
OMAP2PLUS: DSS2: Change enum "dss_clk_source" to "omap_dss_clk_source"
Change enum dss_clk_source to omap_dss_clock_source and move it to
'plat/display.h'. Change the enum members to attach "OMAP_" in the beginning.
These changes are done in order to specify the clock sources for DSS in the
board file.
Signed-off-by: Archit Taneja <archit@ti.com>
Signed-off-by: Tomi Valkeinen <tomi.valkeinen@ti.com>
Diffstat (limited to 'include/video')
-rw-r--r-- | include/video/omapdss.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/include/video/omapdss.h b/include/video/omapdss.h index 4beaee1..c17dd59 100644 --- a/include/video/omapdss.h +++ b/include/video/omapdss.h @@ -172,6 +172,15 @@ enum omap_overlay_manager_caps { OMAP_DSS_OVL_MGR_CAP_DISPC = 1 << 0, }; +enum omap_dss_clk_source { + OMAP_DSS_CLK_SRC_FCK = 0, /* OMAP2/3: DSS1_ALWON_FCLK + * OMAP4: DSS_FCLK */ + OMAP_DSS_CLK_SRC_DSI_PLL_HSDIV_DISPC, /* OMAP3: DSI1_PLL_FCLK + * OMAP4: PLL1_CLK1 */ + OMAP_DSS_CLK_SRC_DSI_PLL_HSDIV_DSI, /* OMAP3: DSI2_PLL_FCLK + * OMAP4: PLL1_CLK2 */ +}; + /* RFBI */ struct rfbi_timings { |