Skip to content

Commit

Permalink
OMAP: DSS2: move enable/disable_channel to overlay manager
Browse files Browse the repository at this point in the history
Move enable/disable_channel() from omap_dss_device to overlay manager.

This is part of a larger patch-set, which moves the control from omapdss
driver to the display driver.

Signed-off-by: Tomi Valkeinen <tomi.valkeinen@nokia.com>
  • Loading branch information
Tomi Valkeinen committed Feb 24, 2010
1 parent 3f71cbe commit a2faee8
Show file tree
Hide file tree
Showing 9 changed files with 61 additions and 23 deletions.
3 changes: 3 additions & 0 deletions arch/arm/plat-omap/include/plat/display.h
Original file line number Diff line number Diff line change
Expand Up @@ -371,6 +371,9 @@ struct omap_overlay_manager {
int (*apply)(struct omap_overlay_manager *mgr);
int (*wait_for_go)(struct omap_overlay_manager *mgr);
int (*wait_for_vsync)(struct omap_overlay_manager *mgr);

int (*enable)(struct omap_overlay_manager *mgr);
int (*disable)(struct omap_overlay_manager *mgr);
};

struct omap_dss_device {
Expand Down
24 changes: 22 additions & 2 deletions drivers/video/omap2/dss/dispc.c
Original file line number Diff line number Diff line change
Expand Up @@ -1725,7 +1725,7 @@ static void _enable_lcd_out(bool enable)
REG_FLD_MOD(DISPC_CONTROL, enable ? 1 : 0, 0, 0);
}

void dispc_enable_lcd_out(bool enable)
static void dispc_enable_lcd_out(bool enable)
{
struct completion frame_done_completion;
bool is_on;
Expand Down Expand Up @@ -1772,7 +1772,7 @@ static void _enable_digit_out(bool enable)
REG_FLD_MOD(DISPC_CONTROL, enable ? 1 : 0, 1, 1);
}

void dispc_enable_digit_out(bool enable)
static void dispc_enable_digit_out(bool enable)
{
struct completion frame_done_completion;
int r;
Expand Down Expand Up @@ -1836,6 +1836,26 @@ void dispc_enable_digit_out(bool enable)
enable_clocks(0);
}

bool dispc_is_channel_enabled(enum omap_channel channel)
{
if (channel == OMAP_DSS_CHANNEL_LCD)
return !!REG_GET(DISPC_CONTROL, 0, 0);
else if (channel == OMAP_DSS_CHANNEL_DIGIT)
return !!REG_GET(DISPC_CONTROL, 1, 1);
else
BUG();
}

void dispc_enable_channel(enum omap_channel channel, bool enable)
{
if (channel == OMAP_DSS_CHANNEL_LCD)
dispc_enable_lcd_out(enable);
else if (channel == OMAP_DSS_CHANNEL_DIGIT)
dispc_enable_digit_out(enable);
else
BUG();
}

void dispc_lcd_enable_signal_polarity(bool act_high)
{
enable_clocks(1);
Expand Down
14 changes: 7 additions & 7 deletions drivers/video/omap2/dss/dpi.c
Original file line number Diff line number Diff line change
Expand Up @@ -194,7 +194,7 @@ static int dpi_display_enable(struct omap_dss_device *dssdev)

mdelay(2);

dispc_enable_lcd_out(1);
dssdev->manager->enable(dssdev->manager);

r = dssdev->driver->enable(dssdev);
if (r)
Expand All @@ -205,7 +205,7 @@ static int dpi_display_enable(struct omap_dss_device *dssdev)
return 0;

err6:
dispc_enable_lcd_out(0);
dssdev->manager->disable(dssdev->manager);
err5:
#ifdef CONFIG_OMAP2_DSS_USE_DSI_PLL
dsi_pll_uninit();
Expand Down Expand Up @@ -235,7 +235,7 @@ static void dpi_display_disable(struct omap_dss_device *dssdev)

dssdev->driver->disable(dssdev);

dispc_enable_lcd_out(0);
dssdev->manager->disable(dssdev->manager);

#ifdef CONFIG_OMAP2_DSS_USE_DSI_PLL
dss_select_dispc_clk_source(DSS_SRC_DSS1_ALWON_FCLK);
Expand Down Expand Up @@ -263,7 +263,7 @@ static int dpi_display_suspend(struct omap_dss_device *dssdev)
if (dssdev->driver->suspend)
dssdev->driver->suspend(dssdev);

dispc_enable_lcd_out(0);
dssdev->manager->disable(dssdev->manager);

dss_clk_disable(DSS_CLK_ICK | DSS_CLK_FCK1);

Expand Down Expand Up @@ -292,7 +292,7 @@ static int dpi_display_resume(struct omap_dss_device *dssdev)

dss_clk_enable(DSS_CLK_ICK | DSS_CLK_FCK1);

dispc_enable_lcd_out(1);
dssdev->manager->enable(dssdev->manager);

if (dssdev->driver->resume)
dssdev->driver->resume(dssdev);
Expand Down Expand Up @@ -383,10 +383,10 @@ static int dpi_display_set_update_mode(struct omap_dss_device *dssdev,
return -EINVAL;

if (mode == OMAP_DSS_UPDATE_DISABLED) {
dispc_enable_lcd_out(0);
dssdev->manager->disable(dssdev->manager);
dpi.update_enabled = 0;
} else {
dispc_enable_lcd_out(1);
dssdev->manager->enable(dssdev->manager);
dpi.update_enabled = 1;
}

Expand Down
2 changes: 1 addition & 1 deletion drivers/video/omap2/dss/dsi.c
Original file line number Diff line number Diff line change
Expand Up @@ -3013,7 +3013,7 @@ static int dsi_update_thread(void *data)
x, y, w, h);

dispc_enable_sidle();
dispc_enable_lcd_out(0);
device->manager->disable(device->manager);

dsi_reset_tx_fifo(0);
} else {
Expand Down
4 changes: 2 additions & 2 deletions drivers/video/omap2/dss/dss.h
Original file line number Diff line number Diff line change
Expand Up @@ -324,8 +324,8 @@ int dispc_setup_plane(enum omap_plane plane,

bool dispc_go_busy(enum omap_channel channel);
void dispc_go(enum omap_channel channel);
void dispc_enable_lcd_out(bool enable);
void dispc_enable_digit_out(bool enable);
void dispc_enable_channel(enum omap_channel channel, bool enable);
bool dispc_is_channel_enabled(enum omap_channel channel);
int dispc_enable_plane(enum omap_plane plane, bool enable);
void dispc_enable_replication(enum omap_plane plane, bool enable);

Expand Down
17 changes: 16 additions & 1 deletion drivers/video/omap2/dss/manager.c
Original file line number Diff line number Diff line change
Expand Up @@ -1077,7 +1077,7 @@ void dss_start_update(struct omap_dss_device *dssdev)
mc->shadow_dirty = false;
}

dispc_enable_lcd_out(1);
dssdev->manager->enable(dssdev->manager);
}

static void dss_apply_irq_handler(void *data, u32 mask)
Expand Down Expand Up @@ -1364,6 +1364,18 @@ static void omap_dss_mgr_get_info(struct omap_overlay_manager *mgr,
*info = mgr->info;
}

static int dss_mgr_enable(struct omap_overlay_manager *mgr)
{
dispc_enable_channel(mgr->id, 1);
return 0;
}

static int dss_mgr_disable(struct omap_overlay_manager *mgr)
{
dispc_enable_channel(mgr->id, 0);
return 0;
}

static void omap_dss_add_overlay_manager(struct omap_overlay_manager *manager)
{
++num_managers;
Expand Down Expand Up @@ -1409,6 +1421,9 @@ int dss_init_overlay_managers(struct platform_device *pdev)
mgr->wait_for_go = &dss_mgr_wait_for_go;
mgr->wait_for_vsync = &dss_mgr_wait_for_vsync;

mgr->enable = &dss_mgr_enable;
mgr->disable = &dss_mgr_disable;

mgr->caps = OMAP_DSS_OVL_MGR_CAP_DISPC;

dss_overlay_setup_dispc_manager(mgr);
Expand Down
2 changes: 1 addition & 1 deletion drivers/video/omap2/dss/rfbi.c
Original file line number Diff line number Diff line change
Expand Up @@ -382,7 +382,7 @@ void rfbi_transfer_area(u16 width, u16 height,

dispc_set_lcd_size(width, height);

dispc_enable_lcd_out(1);
dispc_enable_channel(OMAP_DSS_CHANNEL_LCD, true);

rfbi.framedone_callback = callback;
rfbi.framedone_callback_data = data;
Expand Down
14 changes: 7 additions & 7 deletions drivers/video/omap2/dss/sdi.c
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ static int sdi_display_enable(struct omap_dss_device *dssdev)
mdelay(2);
}

dispc_enable_lcd_out(1);
dssdev->manager->enable(dssdev->manager);

if (dssdev->driver->enable) {
r = dssdev->driver->enable(dssdev);
Expand All @@ -133,7 +133,7 @@ static int sdi_display_enable(struct omap_dss_device *dssdev)

return 0;
err3:
dispc_enable_lcd_out(0);
dssdev->manager->disable(dssdev->manager);
err2:
dss_clk_disable(DSS_CLK_ICK | DSS_CLK_FCK1);
err1:
Expand All @@ -156,7 +156,7 @@ static void sdi_display_disable(struct omap_dss_device *dssdev)
if (dssdev->driver->disable)
dssdev->driver->disable(dssdev);

dispc_enable_lcd_out(0);
dssdev->manager->disable(dssdev->manager);

dss_sdi_disable();

Expand All @@ -175,7 +175,7 @@ static int sdi_display_suspend(struct omap_dss_device *dssdev)
if (dssdev->driver->suspend)
dssdev->driver->suspend(dssdev);

dispc_enable_lcd_out(0);
dssdev->manager->disable(dssdev->manager);

dss_sdi_disable();

Expand All @@ -200,7 +200,7 @@ static int sdi_display_resume(struct omap_dss_device *dssdev)
goto err;
mdelay(2);

dispc_enable_lcd_out(1);
dssdev->manager->enable(dssdev->manager);

if (dssdev->driver->resume)
dssdev->driver->resume(dssdev);
Expand All @@ -220,10 +220,10 @@ static int sdi_display_set_update_mode(struct omap_dss_device *dssdev,
return -EINVAL;

if (mode == OMAP_DSS_UPDATE_DISABLED) {
dispc_enable_lcd_out(0);
dssdev->manager->disable(dssdev->manager);
sdi.update_enabled = 0;
} else {
dispc_enable_lcd_out(1);
dssdev->manager->enable(dssdev->manager);
sdi.update_enabled = 1;
}

Expand Down
4 changes: 2 additions & 2 deletions drivers/video/omap2/dss/venc.c
Original file line number Diff line number Diff line change
Expand Up @@ -538,15 +538,15 @@ static void venc_power_on(struct omap_dss_device *dssdev)
if (dssdev->platform_enable)
dssdev->platform_enable(dssdev);

dispc_enable_digit_out(1);
dssdev->manager->enable(dssdev->manager);
}

static void venc_power_off(struct omap_dss_device *dssdev)
{
venc_write_reg(VENC_OUTPUT_CONTROL, 0);
dss_set_dac_pwrdn_bgz(0);

dispc_enable_digit_out(0);
dssdev->manager->disable(dssdev->manager);

if (dssdev->platform_disable)
dssdev->platform_disable(dssdev);
Expand Down

0 comments on commit a2faee8

Please sign in to comment.