diff options
author | Tomi Valkeinen <tomi.valkeinen@ti.com> | 2010-07-30 12:39:34 +0300 |
---|---|---|
committer | Tomi Valkeinen <tomi.valkeinen@ti.com> | 2011-05-11 14:20:13 +0300 |
commit | 2a89dc15331983621b772240ebef9dea2cbe5322 (patch) | |
tree | 04e174e0dc817d8acbed70d1122617b50f3f309e /include/video | |
parent | 40885ab31f754426c2e9a40362e568778baa5e82 (diff) | |
download | linux-3.10-2a89dc15331983621b772240ebef9dea2cbe5322.tar.gz linux-3.10-2a89dc15331983621b772240ebef9dea2cbe5322.tar.bz2 linux-3.10-2a89dc15331983621b772240ebef9dea2cbe5322.zip |
OMAP: DSS2: DSI: add option to leave DSI lanes powered on
The DSI pins are powered by VDDS_DSI. If VDDS_DSI is off, the DSI pins
are floating even if they are pinmuxed to, say, safe mode and there's a
pull down/up.
This patch gives the panel drivers an option to leave the VDDS_DSI power
enabled while the DSS itself is turned off. This can be used to keep the
DSI lanes in a valid state while DSS is off, if the DSI pins are muxed
for pull down (not done in this patch).
There will be a slight power consumption increase (~100 uA?) when the
VDDS_DSI is left on, but because this option is used when the panel is
left on, the regulator consumption is negligible compared to panel power
consumption.
When the panel is fully turned off the VDDS_DSI is also turned off.
As an added bonus this will give us faster start up time when starting
up the DSS and the regulator is already enabled.
Signed-off-by: Tomi Valkeinen <tomi.valkeinen@ti.com>
Diffstat (limited to 'include/video')
-rw-r--r-- | include/video/omapdss.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/include/video/omapdss.h b/include/video/omapdss.h index 8138613c311..0a10a234a98 100644 --- a/include/video/omapdss.h +++ b/include/video/omapdss.h @@ -589,7 +589,8 @@ int omap_dsi_set_vc_id(struct omap_dss_device *dssdev, int channel, int vc_id); void omap_dsi_release_vc(struct omap_dss_device *dssdev, int channel); int omapdss_dsi_display_enable(struct omap_dss_device *dssdev); -void omapdss_dsi_display_disable(struct omap_dss_device *dssdev); +void omapdss_dsi_display_disable(struct omap_dss_device *dssdev, + bool disconnect_lanes); int omapdss_dpi_display_enable(struct omap_dss_device *dssdev); void omapdss_dpi_display_disable(struct omap_dss_device *dssdev); |