diff options
author | Chandrabhanu Mahapatra <cmahapatra@ti.com> | 2012-06-21 07:37:44 +0200 |
---|---|---|
committer | Tomi Valkeinen <tomi.valkeinen@ti.com> | 2012-06-29 08:41:15 +0200 |
commit | efa70b3b7da3490f87b18fc3ffef31c4f5e908f2 (patch) | |
tree | 099fb62a56ba066fee7d44523f145ae70a3f1f7b /drivers/video/omap2/dss/dss.h | |
parent | OMAPDSS: fix warnings if CONFIG_PM_RUNTIME=n (diff) | |
download | linux-efa70b3b7da3490f87b18fc3ffef31c4f5e908f2.tar.xz linux-efa70b3b7da3490f87b18fc3ffef31c4f5e908f2.zip |
OMAPDSS: Cleanup implementation of LCD channels
The current implementation of LCD channels and managers consists of a number of
if-else construct which has been replaced by a simpler interface. A constant
structure mgr_desc has been created in Display Controller (DISPC) module. The
mgr_desc contains for each channel its name, irqs and is initialized one time
with all registers and their corresponding fields to be written to enable
various features of Display Subsystem. This structure is later used by various
functions of DISPC which simplifies the further implementation of LCD channels
and its corresponding managers.
Signed-off-by: Chandrabhanu Mahapatra <cmahapatra@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 | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/drivers/video/omap2/dss/dss.h b/drivers/video/omap2/dss/dss.h index dd1092ceaeef..df131fc68952 100644 --- a/drivers/video/omap2/dss/dss.h +++ b/drivers/video/omap2/dss/dss.h @@ -152,6 +152,12 @@ struct dsi_clock_info { u16 lp_clk_div; }; +struct reg_field { + u16 reg; + u8 high; + u8 low; +}; + struct seq_file; struct platform_device; |