Commit e6d80f95 authored by Tomi Valkeinen's avatar Tomi Valkeinen

OMAP: DSS2: DISPC: remove finegrained clk enables/disables

dispc.c enables and disables clocks in almost every function to make
sure the clocks are enabled when the function is called. This is rather
unoptimal way to handle the problem.

With pm_runtime other components have to call dispc_runtime_get() to
enable dispc clocks before calling any other dispc functions. Thus the
finegrained clk enables/disables can be removed.
Signed-off-by: default avatarTomi Valkeinen <tomi.valkeinen@ti.com>
parent aea4eb95
...@@ -610,8 +610,6 @@ void dispc_go(enum omap_channel channel) ...@@ -610,8 +610,6 @@ void dispc_go(enum omap_channel channel)
int bit; int bit;
bool enable_bit, go_bit; bool enable_bit, go_bit;
dispc_runtime_get();
if (channel == OMAP_DSS_CHANNEL_LCD || if (channel == OMAP_DSS_CHANNEL_LCD ||
channel == OMAP_DSS_CHANNEL_LCD2) channel == OMAP_DSS_CHANNEL_LCD2)
bit = 0; /* LCDENABLE */ bit = 0; /* LCDENABLE */
...@@ -625,7 +623,7 @@ void dispc_go(enum omap_channel channel) ...@@ -625,7 +623,7 @@ void dispc_go(enum omap_channel channel)
enable_bit = REG_GET(DISPC_CONTROL, bit, bit) == 1; enable_bit = REG_GET(DISPC_CONTROL, bit, bit) == 1;
if (!enable_bit) if (!enable_bit)
goto end; return;
if (channel == OMAP_DSS_CHANNEL_LCD || if (channel == OMAP_DSS_CHANNEL_LCD ||
channel == OMAP_DSS_CHANNEL_LCD2) channel == OMAP_DSS_CHANNEL_LCD2)
...@@ -640,7 +638,7 @@ void dispc_go(enum omap_channel channel) ...@@ -640,7 +638,7 @@ void dispc_go(enum omap_channel channel)
if (go_bit) { if (go_bit) {
DSSERR("GO bit not down for channel %d\n", channel); DSSERR("GO bit not down for channel %d\n", channel);
goto end; return;
} }
DSSDBG("GO %s\n", channel == OMAP_DSS_CHANNEL_LCD ? "LCD" : DSSDBG("GO %s\n", channel == OMAP_DSS_CHANNEL_LCD ? "LCD" :
...@@ -650,8 +648,6 @@ void dispc_go(enum omap_channel channel) ...@@ -650,8 +648,6 @@ void dispc_go(enum omap_channel channel)
REG_FLD_MOD(DISPC_CONTROL2, 1, bit, bit); REG_FLD_MOD(DISPC_CONTROL2, 1, bit, bit);
else else
REG_FLD_MOD(DISPC_CONTROL, 1, bit, bit); REG_FLD_MOD(DISPC_CONTROL, 1, bit, bit);
end:
dispc_runtime_put();
} }
static void _dispc_write_firh_reg(enum omap_plane plane, int reg, u32 value) static void _dispc_write_firh_reg(enum omap_plane plane, int reg, u32 value)
...@@ -1025,7 +1021,7 @@ static void _dispc_set_color_mode(enum omap_plane plane, ...@@ -1025,7 +1021,7 @@ static void _dispc_set_color_mode(enum omap_plane plane,
REG_FLD_MOD(DISPC_OVL_ATTRIBUTES(plane), m, 4, 1); REG_FLD_MOD(DISPC_OVL_ATTRIBUTES(plane), m, 4, 1);
} }
static void _dispc_set_channel_out(enum omap_plane plane, void dispc_set_channel_out(enum omap_plane plane,
enum omap_channel channel) enum omap_channel channel)
{ {
int shift; int shift;
...@@ -1077,8 +1073,6 @@ static void dispc_set_burst_size(enum omap_plane plane, ...@@ -1077,8 +1073,6 @@ static void dispc_set_burst_size(enum omap_plane plane,
{ {
int shift; int shift;
dispc_runtime_get();
switch (plane) { switch (plane) {
case OMAP_DSS_GFX: case OMAP_DSS_GFX:
shift = 6; shift = 6;
...@@ -1093,8 +1087,6 @@ static void dispc_set_burst_size(enum omap_plane plane, ...@@ -1093,8 +1087,6 @@ static void dispc_set_burst_size(enum omap_plane plane,
} }
REG_FLD_MOD(DISPC_OVL_ATTRIBUTES(plane), burst_size, shift + 1, shift); REG_FLD_MOD(DISPC_OVL_ATTRIBUTES(plane), burst_size, shift + 1, shift);
dispc_runtime_put();
} }
static void dispc_configure_burst_sizes(void) static void dispc_configure_burst_sizes(void)
...@@ -1182,9 +1174,7 @@ void dispc_enable_replication(enum omap_plane plane, bool enable) ...@@ -1182,9 +1174,7 @@ void dispc_enable_replication(enum omap_plane plane, bool enable)
else else
bit = 10; bit = 10;
dispc_runtime_get();
REG_FLD_MOD(DISPC_OVL_ATTRIBUTES(plane), enable, bit, bit); REG_FLD_MOD(DISPC_OVL_ATTRIBUTES(plane), enable, bit, bit);
dispc_runtime_put();
} }
void dispc_set_lcd_size(enum omap_channel channel, u16 width, u16 height) void dispc_set_lcd_size(enum omap_channel channel, u16 width, u16 height)
...@@ -1192,9 +1182,7 @@ void dispc_set_lcd_size(enum omap_channel channel, u16 width, u16 height) ...@@ -1192,9 +1182,7 @@ void dispc_set_lcd_size(enum omap_channel channel, u16 width, u16 height)
u32 val; u32 val;
BUG_ON((width > (1 << 11)) || (height > (1 << 11))); BUG_ON((width > (1 << 11)) || (height > (1 << 11)));
val = FLD_VAL(height - 1, 26, 16) | FLD_VAL(width - 1, 10, 0); val = FLD_VAL(height - 1, 26, 16) | FLD_VAL(width - 1, 10, 0);
dispc_runtime_get();
dispc_write_reg(DISPC_SIZE_MGR(channel), val); dispc_write_reg(DISPC_SIZE_MGR(channel), val);
dispc_runtime_put();
} }
void dispc_set_digit_size(u16 width, u16 height) void dispc_set_digit_size(u16 width, u16 height)
...@@ -1202,9 +1190,7 @@ void dispc_set_digit_size(u16 width, u16 height) ...@@ -1202,9 +1190,7 @@ void dispc_set_digit_size(u16 width, u16 height)
u32 val; u32 val;
BUG_ON((width > (1 << 11)) || (height > (1 << 11))); BUG_ON((width > (1 << 11)) || (height > (1 << 11)));
val = FLD_VAL(height - 1, 26, 16) | FLD_VAL(width - 1, 10, 0); val = FLD_VAL(height - 1, 26, 16) | FLD_VAL(width - 1, 10, 0);
dispc_runtime_get();
dispc_write_reg(DISPC_SIZE_MGR(OMAP_DSS_CHANNEL_DIGIT), val); dispc_write_reg(DISPC_SIZE_MGR(OMAP_DSS_CHANNEL_DIGIT), val);
dispc_runtime_put();
} }
static void dispc_read_plane_fifo_sizes(void) static void dispc_read_plane_fifo_sizes(void)
...@@ -1216,8 +1202,6 @@ static void dispc_read_plane_fifo_sizes(void) ...@@ -1216,8 +1202,6 @@ static void dispc_read_plane_fifo_sizes(void)
unit = dss_feat_get_buffer_size_unit(); unit = dss_feat_get_buffer_size_unit();
dispc_runtime_get();
dss_feat_get_reg_field(FEAT_REG_FIFOSIZE, &start, &end); dss_feat_get_reg_field(FEAT_REG_FIFOSIZE, &start, &end);
for (plane = 0; plane < ARRAY_SIZE(dispc.fifo_size); ++plane) { for (plane = 0; plane < ARRAY_SIZE(dispc.fifo_size); ++plane) {
...@@ -1225,8 +1209,6 @@ static void dispc_read_plane_fifo_sizes(void) ...@@ -1225,8 +1209,6 @@ static void dispc_read_plane_fifo_sizes(void)
size *= unit; size *= unit;
dispc.fifo_size[plane] = size; dispc.fifo_size[plane] = size;
} }
dispc_runtime_put();
} }
u32 dispc_get_plane_fifo_size(enum omap_plane plane) u32 dispc_get_plane_fifo_size(enum omap_plane plane)
...@@ -1250,8 +1232,6 @@ void dispc_set_fifo_threshold(enum omap_plane plane, u32 low, u32 high) ...@@ -1250,8 +1232,6 @@ void dispc_set_fifo_threshold(enum omap_plane plane, u32 low, u32 high)
dss_feat_get_reg_field(FEAT_REG_FIFOHIGHTHRESHOLD, &hi_start, &hi_end); dss_feat_get_reg_field(FEAT_REG_FIFOHIGHTHRESHOLD, &hi_start, &hi_end);
dss_feat_get_reg_field(FEAT_REG_FIFOLOWTHRESHOLD, &lo_start, &lo_end); dss_feat_get_reg_field(FEAT_REG_FIFOLOWTHRESHOLD, &lo_start, &lo_end);
dispc_runtime_get();
DSSDBG("fifo(%d) low/high old %u/%u, new %u/%u\n", DSSDBG("fifo(%d) low/high old %u/%u, new %u/%u\n",
plane, plane,
REG_GET(DISPC_OVL_FIFO_THRESHOLD(plane), REG_GET(DISPC_OVL_FIFO_THRESHOLD(plane),
...@@ -1263,18 +1243,12 @@ void dispc_set_fifo_threshold(enum omap_plane plane, u32 low, u32 high) ...@@ -1263,18 +1243,12 @@ void dispc_set_fifo_threshold(enum omap_plane plane, u32 low, u32 high)
dispc_write_reg(DISPC_OVL_FIFO_THRESHOLD(plane), dispc_write_reg(DISPC_OVL_FIFO_THRESHOLD(plane),
FLD_VAL(high, hi_start, hi_end) | FLD_VAL(high, hi_start, hi_end) |
FLD_VAL(low, lo_start, lo_end)); FLD_VAL(low, lo_start, lo_end));
dispc_runtime_put();
} }
void dispc_enable_fifomerge(bool enable) void dispc_enable_fifomerge(bool enable)
{ {
dispc_runtime_get();
DSSDBG("FIFO merge %s\n", enable ? "enabled" : "disabled"); DSSDBG("FIFO merge %s\n", enable ? "enabled" : "disabled");
REG_FLD_MOD(DISPC_CONFIG, enable ? 1 : 0, 14, 14); REG_FLD_MOD(DISPC_CONFIG, enable ? 1 : 0, 14, 14);
dispc_runtime_put();
} }
static void _dispc_set_fir(enum omap_plane plane, static void _dispc_set_fir(enum omap_plane plane,
...@@ -1894,14 +1868,7 @@ static unsigned long calc_fclk(enum omap_channel channel, u16 width, ...@@ -1894,14 +1868,7 @@ static unsigned long calc_fclk(enum omap_channel channel, u16 width,
return dispc_pclk_rate(channel) * vf * hf; return dispc_pclk_rate(channel) * vf * hf;
} }
void dispc_set_channel_out(enum omap_plane plane, enum omap_channel channel_out) int dispc_setup_plane(enum omap_plane plane,
{
dispc_runtime_get();
_dispc_set_channel_out(plane, channel_out);
dispc_runtime_put();
}
static int _dispc_setup_plane(enum omap_plane plane,
u32 paddr, u16 screen_width, u32 paddr, u16 screen_width,
u16 pos_x, u16 pos_y, u16 pos_x, u16 pos_y,
u16 width, u16 height, u16 width, u16 height,
...@@ -1909,7 +1876,7 @@ static int _dispc_setup_plane(enum omap_plane plane, ...@@ -1909,7 +1876,7 @@ static int _dispc_setup_plane(enum omap_plane plane,
enum omap_color_mode color_mode, enum omap_color_mode color_mode,
bool ilace, bool ilace,
enum omap_dss_rotation_type rotation_type, enum omap_dss_rotation_type rotation_type,
u8 rotation, int mirror, u8 rotation, bool mirror,
u8 global_alpha, u8 pre_mult_alpha, u8 global_alpha, u8 pre_mult_alpha,
enum omap_channel channel, u32 puv_addr) enum omap_channel channel, u32 puv_addr)
{ {
...@@ -1923,6 +1890,14 @@ static int _dispc_setup_plane(enum omap_plane plane, ...@@ -1923,6 +1890,14 @@ static int _dispc_setup_plane(enum omap_plane plane,
u16 frame_height = height; u16 frame_height = height;
unsigned int field_offset = 0; unsigned int field_offset = 0;
DSSDBG("dispc_setup_plane %d, pa %x, sw %d, %d,%d, %dx%d -> "
"%dx%d, ilace %d, cmode %x, rot %d, mir %d chan %d\n",
plane, paddr, screen_width, pos_x, pos_y,
width, height,
out_width, out_height,
ilace, color_mode,
rotation, mirror, channel);
if (paddr == 0) if (paddr == 0)
return -EINVAL; return -EINVAL;
...@@ -2068,9 +2043,13 @@ static int _dispc_setup_plane(enum omap_plane plane, ...@@ -2068,9 +2043,13 @@ static int _dispc_setup_plane(enum omap_plane plane,
return 0; return 0;
} }
static void _dispc_enable_plane(enum omap_plane plane, bool enable) int dispc_enable_plane(enum omap_plane plane, bool enable)
{ {
DSSDBG("dispc_enable_plane %d, %d\n", plane, enable);
REG_FLD_MOD(DISPC_OVL_ATTRIBUTES(plane), enable ? 1 : 0, 0, 0); REG_FLD_MOD(DISPC_OVL_ATTRIBUTES(plane), enable ? 1 : 0, 0, 0);
return 0;
} }
static void dispc_disable_isr(void *data, u32 mask) static void dispc_disable_isr(void *data, u32 mask)
...@@ -2094,8 +2073,6 @@ static void dispc_enable_lcd_out(enum omap_channel channel, bool enable) ...@@ -2094,8 +2073,6 @@ static void dispc_enable_lcd_out(enum omap_channel channel, bool enable)
int r; int r;
u32 irq; u32 irq;
dispc_runtime_get();
/* When we disable LCD output, we need to wait until frame is done. /* When we disable LCD output, we need to wait until frame is done.
* Otherwise the DSS is still working, and turning off the clocks * Otherwise the DSS is still working, and turning off the clocks
* prevents DSS from going to OFF mode */ * prevents DSS from going to OFF mode */
...@@ -2129,8 +2106,6 @@ static void dispc_enable_lcd_out(enum omap_channel channel, bool enable) ...@@ -2129,8 +2106,6 @@ static void dispc_enable_lcd_out(enum omap_channel channel, bool enable)
if (r) if (r)
DSSERR("failed to unregister FRAMEDONE isr\n"); DSSERR("failed to unregister FRAMEDONE isr\n");
} }
dispc_runtime_put();
} }
static void _enable_digit_out(bool enable) static void _enable_digit_out(bool enable)
...@@ -2143,12 +2118,8 @@ static void dispc_enable_digit_out(bool enable) ...@@ -2143,12 +2118,8 @@ static void dispc_enable_digit_out(bool enable)
struct completion frame_done_completion; struct completion frame_done_completion;
int r; int r;
dispc_runtime_get(); if (REG_GET(DISPC_CONTROL, 1, 1) == enable)
if (REG_GET(DISPC_CONTROL, 1, 1) == enable) {
dispc_runtime_put();
return; return;
}
if (enable) { if (enable) {
unsigned long flags; unsigned long flags;
...@@ -2200,8 +2171,6 @@ static void dispc_enable_digit_out(bool enable) ...@@ -2200,8 +2171,6 @@ static void dispc_enable_digit_out(bool enable)
_omap_dispc_set_irqs(); _omap_dispc_set_irqs();
spin_unlock_irqrestore(&dispc.irq_lock, flags); spin_unlock_irqrestore(&dispc.irq_lock, flags);
} }
dispc_runtime_put();
} }
bool dispc_is_channel_enabled(enum omap_channel channel) bool dispc_is_channel_enabled(enum omap_channel channel)
...@@ -2232,9 +2201,7 @@ void dispc_lcd_enable_signal_polarity(bool act_high) ...@@ -2232,9 +2201,7 @@ void dispc_lcd_enable_signal_polarity(bool act_high)
if (!dss_has_feature(FEAT_LCDENABLEPOL)) if (!dss_has_feature(FEAT_LCDENABLEPOL))
return; return;
dispc_runtime_get();
REG_FLD_MOD(DISPC_CONTROL, act_high ? 1 : 0, 29, 29); REG_FLD_MOD(DISPC_CONTROL, act_high ? 1 : 0, 29, 29);
dispc_runtime_put();
} }
void dispc_lcd_enable_signal(bool enable) void dispc_lcd_enable_signal(bool enable)
...@@ -2242,9 +2209,7 @@ void dispc_lcd_enable_signal(bool enable) ...@@ -2242,9 +2209,7 @@ void dispc_lcd_enable_signal(bool enable)
if (!dss_has_feature(FEAT_LCDENABLESIGNAL)) if (!dss_has_feature(FEAT_LCDENABLESIGNAL))
return; return;
dispc_runtime_get();
REG_FLD_MOD(DISPC_CONTROL, enable ? 1 : 0, 28, 28); REG_FLD_MOD(DISPC_CONTROL, enable ? 1 : 0, 28, 28);
dispc_runtime_put();
} }
void dispc_pck_free_enable(bool enable) void dispc_pck_free_enable(bool enable)
...@@ -2252,19 +2217,15 @@ void dispc_pck_free_enable(bool enable) ...@@ -2252,19 +2217,15 @@ void dispc_pck_free_enable(bool enable)
if (!dss_has_feature(FEAT_PCKFREEENABLE)) if (!dss_has_feature(FEAT_PCKFREEENABLE))
return; return;
dispc_runtime_get();
REG_FLD_MOD(DISPC_CONTROL, enable ? 1 : 0, 27, 27); REG_FLD_MOD(DISPC_CONTROL, enable ? 1 : 0, 27, 27);
dispc_runtime_put();
} }
void dispc_enable_fifohandcheck(enum omap_channel channel, bool enable) void dispc_enable_fifohandcheck(enum omap_channel channel, bool enable)
{ {
dispc_runtime_get();
if (channel == OMAP_DSS_CHANNEL_LCD2) if (channel == OMAP_DSS_CHANNEL_LCD2)
REG_FLD_MOD(DISPC_CONFIG2, enable ? 1 : 0, 16, 16); REG_FLD_MOD(DISPC_CONFIG2, enable ? 1 : 0, 16, 16);
else else
REG_FLD_MOD(DISPC_CONFIG, enable ? 1 : 0, 16, 16); REG_FLD_MOD(DISPC_CONFIG, enable ? 1 : 0, 16, 16);
dispc_runtime_put();
} }
...@@ -2287,27 +2248,21 @@ void dispc_set_lcd_display_type(enum omap_channel channel, ...@@ -2287,27 +2248,21 @@ void dispc_set_lcd_display_type(enum omap_channel channel,
return; return;
} }
dispc_runtime_get();
if (channel == OMAP_DSS_CHANNEL_LCD2) if (channel == OMAP_DSS_CHANNEL_LCD2)
REG_FLD_MOD(DISPC_CONTROL2, mode, 3, 3); REG_FLD_MOD(DISPC_CONTROL2, mode, 3, 3);
else else
REG_FLD_MOD(DISPC_CONTROL, mode, 3, 3); REG_FLD_MOD(DISPC_CONTROL, mode, 3, 3);
dispc_runtime_put();
} }
void dispc_set_loadmode(enum omap_dss_load_mode mode) void dispc_set_loadmode(enum omap_dss_load_mode mode)
{ {
dispc_runtime_get();
REG_FLD_MOD(DISPC_CONFIG, mode, 2, 1); REG_FLD_MOD(DISPC_CONFIG, mode, 2, 1);
dispc_runtime_put();
} }
void dispc_set_default_color(enum omap_channel channel, u32 color) void dispc_set_default_color(enum omap_channel channel, u32 color)
{ {
dispc_runtime_get();
dispc_write_reg(DISPC_DEFAULT_COLOR(channel), color); dispc_write_reg(DISPC_DEFAULT_COLOR(channel), color);
dispc_runtime_put();
} }
u32 dispc_get_default_color(enum omap_channel channel) u32 dispc_get_default_color(enum omap_channel channel)
...@@ -2318,9 +2273,7 @@ u32 dispc_get_default_color(enum omap_channel channel) ...@@ -2318,9 +2273,7 @@ u32 dispc_get_default_color(enum omap_channel channel)
channel != OMAP_DSS_CHANNEL_LCD && channel != OMAP_DSS_CHANNEL_LCD &&
channel != OMAP_DSS_CHANNEL_LCD2); channel != OMAP_DSS_CHANNEL_LCD2);
dispc_runtime_get();
l = dispc_read_reg(DISPC_DEFAULT_COLOR(channel)); l = dispc_read_reg(DISPC_DEFAULT_COLOR(channel));
dispc_runtime_put();
return l; return l;
} }
...@@ -2329,7 +2282,6 @@ void dispc_set_trans_key(enum omap_channel ch, ...@@ -2329,7 +2282,6 @@ void dispc_set_trans_key(enum omap_channel ch,
enum omap_dss_trans_key_type type, enum omap_dss_trans_key_type type,
u32 trans_key) u32 trans_key)
{ {
dispc_runtime_get();
if (ch == OMAP_DSS_CHANNEL_LCD) if (ch == OMAP_DSS_CHANNEL_LCD)
REG_FLD_MOD(DISPC_CONFIG, type, 11, 11); REG_FLD_MOD(DISPC_CONFIG, type, 11, 11);
else if (ch == OMAP_DSS_CHANNEL_DIGIT) else if (ch == OMAP_DSS_CHANNEL_DIGIT)
...@@ -2338,14 +2290,12 @@ void dispc_set_trans_key(enum omap_channel ch, ...@@ -2338,14 +2290,12 @@ void dispc_set_trans_key(enum omap_channel ch,
REG_FLD_MOD(DISPC_CONFIG2, type, 11, 11); REG_FLD_MOD(DISPC_CONFIG2, type, 11, 11);
dispc_write_reg(DISPC_TRANS_COLOR(ch), trans_key); dispc_write_reg(DISPC_TRANS_COLOR(ch), trans_key);
dispc_runtime_put();
} }
void dispc_get_trans_key(enum omap_channel ch, void dispc_get_trans_key(enum omap_channel ch,
enum omap_dss_trans_key_type *type, enum omap_dss_trans_key_type *type,
u32 *trans_key) u32 *trans_key)
{ {
dispc_runtime_get();
if (type) { if (type) {
if (ch == OMAP_DSS_CHANNEL_LCD) if (ch == OMAP_DSS_CHANNEL_LCD)
*type = REG_GET(DISPC_CONFIG, 11, 11); *type = REG_GET(DISPC_CONFIG, 11, 11);
...@@ -2359,33 +2309,28 @@ void dispc_get_trans_key(enum omap_channel ch, ...@@ -2359,33 +2309,28 @@ void dispc_get_trans_key(enum omap_channel ch,
if (trans_key) if (trans_key)
*trans_key = dispc_read_reg(DISPC_TRANS_COLOR(ch)); *trans_key = dispc_read_reg(DISPC_TRANS_COLOR(ch));
dispc_runtime_put();
} }
void dispc_enable_trans_key(enum omap_channel ch, bool enable) void dispc_enable_trans_key(enum omap_channel ch, bool enable)
{ {
dispc_runtime_get();
if (ch == OMAP_DSS_CHANNEL_LCD) if (ch == OMAP_DSS_CHANNEL_LCD)
REG_FLD_MOD(DISPC_CONFIG, enable, 10, 10); REG_FLD_MOD(DISPC_CONFIG, enable, 10, 10);
else if (ch == OMAP_DSS_CHANNEL_DIGIT) else if (ch == OMAP_DSS_CHANNEL_DIGIT)
REG_FLD_MOD(DISPC_CONFIG, enable, 12, 12); REG_FLD_MOD(DISPC_CONFIG, enable, 12, 12);
else /* OMAP_DSS_CHANNEL_LCD2 */ else /* OMAP_DSS_CHANNEL_LCD2 */
REG_FLD_MOD(DISPC_CONFIG2, enable, 10, 10); REG_FLD_MOD(DISPC_CONFIG2, enable, 10, 10);
dispc_runtime_put();
} }
void dispc_enable_alpha_blending(enum omap_channel ch, bool enable) void dispc_enable_alpha_blending(enum omap_channel ch, bool enable)
{ {
if (!dss_has_feature(FEAT_GLOBAL_ALPHA)) if (!dss_has_feature(FEAT_GLOBAL_ALPHA))
return; return;
dispc_runtime_get();
if (ch == OMAP_DSS_CHANNEL_LCD) if (ch == OMAP_DSS_CHANNEL_LCD)
REG_FLD_MOD(DISPC_CONFIG, enable, 18, 18); REG_FLD_MOD(DISPC_CONFIG, enable, 18, 18);
else if (ch == OMAP_DSS_CHANNEL_DIGIT) else if (ch == OMAP_DSS_CHANNEL_DIGIT)
REG_FLD_MOD(DISPC_CONFIG, enable, 19, 19); REG_FLD_MOD(DISPC_CONFIG, enable, 19, 19);
else /* OMAP_DSS_CHANNEL_LCD2 */ else /* OMAP_DSS_CHANNEL_LCD2 */
REG_FLD_MOD(DISPC_CONFIG2, enable, 18, 18); REG_FLD_MOD(DISPC_CONFIG2, enable, 18, 18);
dispc_runtime_put();
} }
bool dispc_alpha_blending_enabled(enum omap_channel ch) bool dispc_alpha_blending_enabled(enum omap_channel ch)
{ {
...@@ -2394,7 +2339,6 @@ bool dispc_alpha_blending_enabled(enum omap_channel ch) ...@@ -2394,7 +2339,6 @@ bool dispc_alpha_blending_enabled(enum omap_channel ch)
if (!dss_has_feature(FEAT_GLOBAL_ALPHA)) if (!dss_has_feature(FEAT_GLOBAL_ALPHA))
return false; return false;
dispc_runtime_get();
if (ch == OMAP_DSS_CHANNEL_LCD) if (ch == OMAP_DSS_CHANNEL_LCD)
enabled = REG_GET(DISPC_CONFIG, 18, 18); enabled = REG_GET(DISPC_CONFIG, 18, 18);
else if (ch == OMAP_DSS_CHANNEL_DIGIT) else if (ch == OMAP_DSS_CHANNEL_DIGIT)
...@@ -2403,7 +2347,6 @@ bool dispc_alpha_blending_enabled(enum omap_channel ch) ...@@ -2403,7 +2347,6 @@ bool dispc_alpha_blending_enabled(enum omap_channel ch)
enabled = REG_GET(DISPC_CONFIG2, 18, 18); enabled = REG_GET(DISPC_CONFIG2, 18, 18);
else else
BUG(); BUG();
dispc_runtime_put();
return enabled; return enabled;
} }
...@@ -2413,7 +2356,6 @@ bool dispc_trans_key_enabled(enum omap_channel ch) ...@@ -2413,7 +2356,6 @@ bool dispc_trans_key_enabled(enum omap_channel ch)
{ {
bool enabled; bool enabled;
dispc_runtime_get();
if (ch == OMAP_DSS_CHANNEL_LCD) if (ch == OMAP_DSS_CHANNEL_LCD)
enabled = REG_GET(DISPC_CONFIG, 10, 10); enabled = REG_GET(DISPC_CONFIG, 10, 10);
else if (ch == OMAP_DSS_CHANNEL_DIGIT) else if (ch == OMAP_DSS_CHANNEL_DIGIT)
...@@ -2422,7 +2364,6 @@ bool dispc_trans_key_enabled(enum omap_channel ch) ...@@ -2422,7 +2364,6 @@ bool dispc_trans_key_enabled(enum omap_channel ch)
enabled = REG_GET(DISPC_CONFIG2, 10, 10); enabled = REG_GET(DISPC_CONFIG2, 10, 10);
else else
BUG(); BUG();
dispc_runtime_put();
return enabled; return enabled;
} }
...@@ -2450,12 +2391,10 @@ void dispc_set_tft_data_lines(enum omap_channel channel, u8 data_lines) ...@@ -2450,12 +2391,10 @@ void dispc_set_tft_data_lines(enum omap_channel channel, u8 data_lines)
return; return;
} }
dispc_runtime_get();
if (channel == OMAP_DSS_CHANNEL_LCD2) if (channel == OMAP_DSS_CHANNEL_LCD2)
REG_FLD_MOD(DISPC_CONTROL2, code, 9, 8); REG_FLD_MOD(DISPC_CONTROL2, code, 9, 8);
else else
REG_FLD_MOD(DISPC_CONTROL, code, 9, 8); REG_FLD_MOD(DISPC_CONTROL, code, 9, 8);
dispc_runtime_put();
} }
void dispc_set_parallel_interface_mode(enum omap_channel channel, void dispc_set_parallel_interface_mode(enum omap_channel channel,
...@@ -2487,8 +2426,6 @@ void dispc_set_parallel_interface_mode(enum omap_channel channel, ...@@ -2487,8 +2426,6 @@ void dispc_set_parallel_interface_mode(enum omap_channel channel,
return; return;
} }
dispc_runtime_get();
if (channel == OMAP_DSS_CHANNEL_LCD2) { if (channel == OMAP_DSS_CHANNEL_LCD2) {
l = dispc_read_reg(DISPC_CONTROL2); l = dispc_read_reg(DISPC_CONTROL2);
l = FLD_MOD(l, stallmode, 11, 11); l = FLD_MOD(l, stallmode, 11, 11);
...@@ -2500,8 +2437,6 @@ void dispc_set_parallel_interface_mode(enum omap_channel channel, ...@@ -2500,8 +2437,6 @@ void dispc_set_parallel_interface_mode(enum omap_channel channel,
l = FLD_MOD(l, gpout1, 16, 16); l = FLD_MOD(l, gpout1, 16, 16);
dispc_write_reg(DISPC_CONTROL, l); dispc_write_reg(DISPC_CONTROL, l);
} }
dispc_runtime_put();
} }
static bool _dispc_lcd_timings_ok(int hsw, int hfp, int hbp, static bool _dispc_lcd_timings_ok(int hsw, int hfp, int hbp,
...@@ -2554,10 +2489,8 @@ static void _dispc_set_lcd_timings(enum omap_channel channel, int hsw, ...@@ -2554,10 +2489,8 @@ static void _dispc_set_lcd_timings(enum omap_channel channel, int hsw,
FLD_VAL(vbp, 31, 20); FLD_VAL(vbp, 31, 20);
} }
dispc_runtime_get();
dispc_write_reg(DISPC_TIMING_H(channel), timing_h); dispc_write_reg(DISPC_TIMING_H(channel), timing_h);
dispc_write_reg(DISPC_TIMING_V(channel), timing_v); dispc_write_reg(DISPC_TIMING_V(channel), timing_v);
dispc_runtime_put();
} }
/* change name to mode? */ /* change name to mode? */
...@@ -2600,10 +2533,8 @@ static void dispc_set_lcd_divisor(enum omap_channel channel, u16 lck_div, ...@@ -2600,10 +2533,8 @@ static void dispc_set_lcd_divisor(enum omap_channel channel, u16 lck_div,
BUG_ON(lck_div < 1); BUG_ON(lck_div < 1);
BUG_ON(pck_div < 2); BUG_ON(pck_div < 2);
dispc_runtime_get();
dispc_write_reg(DISPC_DIVISORo(channel), dispc_write_reg(DISPC_DIVISORo(channel),
FLD_VAL(lck_div, 23, 16) | FLD_VAL(pck_div, 7, 0)); FLD_VAL(lck_div, 23, 16) | FLD_VAL(pck_div, 7, 0));
dispc_runtime_put();
} }
static void dispc_get_lcd_divisor(enum omap_channel channel, int *lck_div, static void dispc_get_lcd_divisor(enum omap_channel channel, int *lck_div,
...@@ -3063,9 +2994,7 @@ static void _dispc_set_pol_freq(enum omap_channel channel, bool onoff, bool rf, ...@@ -3063,9 +2994,7 @@ static void _dispc_set_pol_freq(enum omap_channel channel, bool onoff, bool rf,
l |= FLD_VAL(acbi, 11, 8); l |= FLD_VAL(acbi, 11, 8);
l |= FLD_VAL(acb, 7, 0); l |= FLD_VAL(acb, 7, 0);
dispc_runtime_get();
dispc_write_reg(DISPC_POL_FREQ(channel), l); dispc_write_reg(DISPC_POL_FREQ(channel), l);
dispc_runtime_put();
} }
void dispc_set_pol_freq(enum omap_channel channel, void dispc_set_pol_freq(enum omap_channel channel,
...@@ -3186,15 +3115,11 @@ static void _omap_dispc_set_irqs(void) ...@@ -3186,15 +3115,11 @@ static void _omap_dispc_set_irqs(void)
mask |= isr_data->mask; mask |= isr_data->mask;
} }
dispc_runtime_get();
old_mask = dispc_read_reg(DISPC_IRQENABLE); old_mask = dispc_read_reg(DISPC_IRQENABLE);
/* clear the irqstatus for newly enabled irqs */ /* clear the irqstatus for newly enabled irqs */
dispc_write_reg(DISPC_IRQSTATUS, (mask ^ old_mask) & mask); dispc_write_reg(DISPC_IRQSTATUS, (mask ^ old_mask) & mask);
dispc_write_reg(DISPC_IRQENABLE, mask); dispc_write_reg(DISPC_IRQENABLE, mask);
dispc_runtime_put();
} }
int omap_dispc_register_isr(omap_dispc_isr_t isr, void *arg, u32 mask) int omap_dispc_register_isr(omap_dispc_isr_t isr, void *arg, u32 mask)
...@@ -3730,58 +3655,6 @@ static void _omap_dispc_initial_config(void) ...@@ -3730,58 +3655,6 @@ static void _omap_dispc_initial_config(void)
dispc_configure_burst_sizes(); dispc_configure_burst_sizes();
} }
int dispc_enable_plane(enum omap_plane plane, bool enable)
{
DSSDBG("dispc_enable_plane %d, %d\n", plane, enable);
dispc_runtime_get();
_dispc_enable_plane(plane, enable);
dispc_runtime_put();
return 0;
}
int dispc_setup_plane(enum omap_plane plane,
u32 paddr, u16 screen_width,
u16 pos_x, u16 pos_y,
u16 width, u16 height,
u16 out_width, u16 out_height,
enum omap_color_mode color_mode,
bool ilace,
enum omap_dss_rotation_type rotation_type,
u8 rotation, bool mirror, u8 global_alpha,
u8 pre_mult_alpha, enum omap_channel channel,
u32 puv_addr)
{
int r = 0;
DSSDBG("dispc_setup_plane %d, pa %x, sw %d, %d, %d, %dx%d -> "
"%dx%d, ilace %d, cmode %x, rot %d, mir %d chan %d\n",
plane, paddr, screen_width, pos_x, pos_y,
width, height,
out_width, out_height,
ilace, color_mode,
rotation, mirror, channel);
dispc_runtime_get();
r = _dispc_setup_plane(plane,
paddr, screen_width,
pos_x, pos_y,
width, height,
out_width, out_height,
color_mode, ilace,
rotation_type,
rotation, mirror,
global_alpha,
pre_mult_alpha,
channel, puv_addr);
dispc_runtime_put();
return r;
}
/* DISPC HW IP initialisation */ /* DISPC HW IP initialisation */
static int omap_dispchw_probe(struct platform_device *pdev) static int omap_dispchw_probe(struct platform_device *pdev)
{ {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment