|
@@ -275,6 +275,108 @@ static ssize_t manager_alpha_blending_enabled_store(
|
|
return size;
|
|
return size;
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+static ssize_t manager_cpr_enable_show(struct omap_overlay_manager *mgr,
|
|
|
|
+ char *buf)
|
|
|
|
+{
|
|
|
|
+ return snprintf(buf, PAGE_SIZE, "%d\n", mgr->info.cpr_enable);
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+static ssize_t manager_cpr_enable_store(struct omap_overlay_manager *mgr,
|
|
|
|
+ const char *buf, size_t size)
|
|
|
|
+{
|
|
|
|
+ struct omap_overlay_manager_info info;
|
|
|
|
+ int v;
|
|
|
|
+ int r;
|
|
|
|
+ bool enable;
|
|
|
|
+
|
|
|
|
+ if (!dss_has_feature(FEAT_CPR))
|
|
|
|
+ return -ENODEV;
|
|
|
|
+
|
|
|
|
+ r = kstrtoint(buf, 0, &v);
|
|
|
|
+ if (r)
|
|
|
|
+ return r;
|
|
|
|
+
|
|
|
|
+ enable = !!v;
|
|
|
|
+
|
|
|
|
+ mgr->get_manager_info(mgr, &info);
|
|
|
|
+
|
|
|
|
+ if (info.cpr_enable == enable)
|
|
|
|
+ return size;
|
|
|
|
+
|
|
|
|
+ info.cpr_enable = enable;
|
|
|
|
+
|
|
|
|
+ r = mgr->set_manager_info(mgr, &info);
|
|
|
|
+ if (r)
|
|
|
|
+ return r;
|
|
|
|
+
|
|
|
|
+ r = mgr->apply(mgr);
|
|
|
|
+ if (r)
|
|
|
|
+ return r;
|
|
|
|
+
|
|
|
|
+ return size;
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+static ssize_t manager_cpr_coef_show(struct omap_overlay_manager *mgr,
|
|
|
|
+ char *buf)
|
|
|
|
+{
|
|
|
|
+ struct omap_overlay_manager_info info;
|
|
|
|
+
|
|
|
|
+ mgr->get_manager_info(mgr, &info);
|
|
|
|
+
|
|
|
|
+ return snprintf(buf, PAGE_SIZE,
|
|
|
|
+ "%d %d %d %d %d %d %d %d %d\n",
|
|
|
|
+ info.cpr_coefs.rr,
|
|
|
|
+ info.cpr_coefs.rg,
|
|
|
|
+ info.cpr_coefs.rb,
|
|
|
|
+ info.cpr_coefs.gr,
|
|
|
|
+ info.cpr_coefs.gg,
|
|
|
|
+ info.cpr_coefs.gb,
|
|
|
|
+ info.cpr_coefs.br,
|
|
|
|
+ info.cpr_coefs.bg,
|
|
|
|
+ info.cpr_coefs.bb);
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+static ssize_t manager_cpr_coef_store(struct omap_overlay_manager *mgr,
|
|
|
|
+ const char *buf, size_t size)
|
|
|
|
+{
|
|
|
|
+ struct omap_overlay_manager_info info;
|
|
|
|
+ struct omap_dss_cpr_coefs coefs;
|
|
|
|
+ int r, i;
|
|
|
|
+ s16 *arr;
|
|
|
|
+
|
|
|
|
+ if (!dss_has_feature(FEAT_CPR))
|
|
|
|
+ return -ENODEV;
|
|
|
|
+
|
|
|
|
+ if (sscanf(buf, "%hd %hd %hd %hd %hd %hd %hd %hd %hd",
|
|
|
|
+ &coefs.rr, &coefs.rg, &coefs.rb,
|
|
|
|
+ &coefs.gr, &coefs.gg, &coefs.gb,
|
|
|
|
+ &coefs.br, &coefs.bg, &coefs.bb) != 9)
|
|
|
|
+ return -EINVAL;
|
|
|
|
+
|
|
|
|
+ arr = (s16[]){ coefs.rr, coefs.rg, coefs.rb,
|
|
|
|
+ coefs.gr, coefs.gg, coefs.gb,
|
|
|
|
+ coefs.br, coefs.bg, coefs.bb };
|
|
|
|
+
|
|
|
|
+ for (i = 0; i < 9; ++i) {
|
|
|
|
+ if (arr[i] < -512 || arr[i] > 511)
|
|
|
|
+ return -EINVAL;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ mgr->get_manager_info(mgr, &info);
|
|
|
|
+
|
|
|
|
+ info.cpr_coefs = coefs;
|
|
|
|
+
|
|
|
|
+ r = mgr->set_manager_info(mgr, &info);
|
|
|
|
+ if (r)
|
|
|
|
+ return r;
|
|
|
|
+
|
|
|
|
+ r = mgr->apply(mgr);
|
|
|
|
+ if (r)
|
|
|
|
+ return r;
|
|
|
|
+
|
|
|
|
+ return size;
|
|
|
|
+}
|
|
|
|
+
|
|
struct manager_attribute {
|
|
struct manager_attribute {
|
|
struct attribute attr;
|
|
struct attribute attr;
|
|
ssize_t (*show)(struct omap_overlay_manager *, char *);
|
|
ssize_t (*show)(struct omap_overlay_manager *, char *);
|
|
@@ -300,6 +402,12 @@ static MANAGER_ATTR(trans_key_enabled, S_IRUGO|S_IWUSR,
|
|
static MANAGER_ATTR(alpha_blending_enabled, S_IRUGO|S_IWUSR,
|
|
static MANAGER_ATTR(alpha_blending_enabled, S_IRUGO|S_IWUSR,
|
|
manager_alpha_blending_enabled_show,
|
|
manager_alpha_blending_enabled_show,
|
|
manager_alpha_blending_enabled_store);
|
|
manager_alpha_blending_enabled_store);
|
|
|
|
+static MANAGER_ATTR(cpr_enable, S_IRUGO|S_IWUSR,
|
|
|
|
+ manager_cpr_enable_show,
|
|
|
|
+ manager_cpr_enable_store);
|
|
|
|
+static MANAGER_ATTR(cpr_coef, S_IRUGO|S_IWUSR,
|
|
|
|
+ manager_cpr_coef_show,
|
|
|
|
+ manager_cpr_coef_store);
|
|
|
|
|
|
|
|
|
|
static struct attribute *manager_sysfs_attrs[] = {
|
|
static struct attribute *manager_sysfs_attrs[] = {
|
|
@@ -310,6 +418,8 @@ static struct attribute *manager_sysfs_attrs[] = {
|
|
&manager_attr_trans_key_value.attr,
|
|
&manager_attr_trans_key_value.attr,
|
|
&manager_attr_trans_key_enabled.attr,
|
|
&manager_attr_trans_key_enabled.attr,
|
|
&manager_attr_alpha_blending_enabled.attr,
|
|
&manager_attr_alpha_blending_enabled.attr,
|
|
|
|
+ &manager_attr_cpr_enable.attr,
|
|
|
|
+ &manager_attr_cpr_coef.attr,
|
|
NULL
|
|
NULL
|
|
};
|
|
};
|
|
|
|
|
|
@@ -391,33 +501,14 @@ struct overlay_cache_data {
|
|
|
|
|
|
bool enabled;
|
|
bool enabled;
|
|
|
|
|
|
- u32 paddr;
|
|
|
|
- void __iomem *vaddr;
|
|
|
|
- u32 p_uv_addr; /* relevant for NV12 format only */
|
|
|
|
- u16 screen_width;
|
|
|
|
- u16 width;
|
|
|
|
- u16 height;
|
|
|
|
- enum omap_color_mode color_mode;
|
|
|
|
- u8 rotation;
|
|
|
|
- enum omap_dss_rotation_type rotation_type;
|
|
|
|
- bool mirror;
|
|
|
|
-
|
|
|
|
- u16 pos_x;
|
|
|
|
- u16 pos_y;
|
|
|
|
- u16 out_width; /* if 0, out_width == width */
|
|
|
|
- u16 out_height; /* if 0, out_height == height */
|
|
|
|
- u8 global_alpha;
|
|
|
|
- u8 pre_mult_alpha;
|
|
|
|
|
|
+ struct omap_overlay_info info;
|
|
|
|
|
|
enum omap_channel channel;
|
|
enum omap_channel channel;
|
|
bool replication;
|
|
bool replication;
|
|
bool ilace;
|
|
bool ilace;
|
|
|
|
|
|
- enum omap_burst_size burst_size;
|
|
|
|
u32 fifo_low;
|
|
u32 fifo_low;
|
|
u32 fifo_high;
|
|
u32 fifo_high;
|
|
-
|
|
|
|
- bool manual_update;
|
|
|
|
};
|
|
};
|
|
|
|
|
|
struct manager_cache_data {
|
|
struct manager_cache_data {
|
|
@@ -429,15 +520,8 @@ struct manager_cache_data {
|
|
* VSYNC/EVSYNC */
|
|
* VSYNC/EVSYNC */
|
|
bool shadow_dirty;
|
|
bool shadow_dirty;
|
|
|
|
|
|
- u32 default_color;
|
|
|
|
-
|
|
|
|
- enum omap_dss_trans_key_type trans_key_type;
|
|
|
|
- u32 trans_key;
|
|
|
|
- bool trans_enabled;
|
|
|
|
-
|
|
|
|
- bool alpha_enabled;
|
|
|
|
|
|
+ struct omap_overlay_manager_info info;
|
|
|
|
|
|
- bool manual_upd_display;
|
|
|
|
bool manual_update;
|
|
bool manual_update;
|
|
bool do_manual_update;
|
|
bool do_manual_update;
|
|
|
|
|
|
@@ -539,24 +623,15 @@ static int dss_mgr_wait_for_go(struct omap_overlay_manager *mgr)
|
|
if (!dssdev || dssdev->state != OMAP_DSS_DISPLAY_ACTIVE)
|
|
if (!dssdev || dssdev->state != OMAP_DSS_DISPLAY_ACTIVE)
|
|
return 0;
|
|
return 0;
|
|
|
|
|
|
|
|
+ if (dssdev->caps & OMAP_DSS_DISPLAY_CAP_MANUAL_UPDATE)
|
|
|
|
+ return 0;
|
|
|
|
+
|
|
if (dssdev->type == OMAP_DISPLAY_TYPE_VENC
|
|
if (dssdev->type == OMAP_DISPLAY_TYPE_VENC
|
|
|| dssdev->type == OMAP_DISPLAY_TYPE_HDMI) {
|
|
|| dssdev->type == OMAP_DISPLAY_TYPE_HDMI) {
|
|
irq = DISPC_IRQ_EVSYNC_ODD | DISPC_IRQ_EVSYNC_EVEN;
|
|
irq = DISPC_IRQ_EVSYNC_ODD | DISPC_IRQ_EVSYNC_EVEN;
|
|
} else {
|
|
} else {
|
|
- if (dssdev->caps & OMAP_DSS_DISPLAY_CAP_MANUAL_UPDATE) {
|
|
|
|
- enum omap_dss_update_mode mode;
|
|
|
|
- mode = dssdev->driver->get_update_mode(dssdev);
|
|
|
|
- if (mode != OMAP_DSS_UPDATE_AUTO)
|
|
|
|
- return 0;
|
|
|
|
-
|
|
|
|
- irq = (dssdev->manager->id == OMAP_DSS_CHANNEL_LCD) ?
|
|
|
|
- DISPC_IRQ_FRAMEDONE
|
|
|
|
- : DISPC_IRQ_FRAMEDONE2;
|
|
|
|
- } else {
|
|
|
|
- irq = (dssdev->manager->id == OMAP_DSS_CHANNEL_LCD) ?
|
|
|
|
- DISPC_IRQ_VSYNC
|
|
|
|
- : DISPC_IRQ_VSYNC2;
|
|
|
|
- }
|
|
|
|
|
|
+ irq = (dssdev->manager->id == OMAP_DSS_CHANNEL_LCD) ?
|
|
|
|
+ DISPC_IRQ_VSYNC : DISPC_IRQ_VSYNC2;
|
|
}
|
|
}
|
|
|
|
|
|
mc = &dss_cache.manager_cache[mgr->id];
|
|
mc = &dss_cache.manager_cache[mgr->id];
|
|
@@ -617,24 +692,15 @@ int dss_mgr_wait_for_go_ovl(struct omap_overlay *ovl)
|
|
if (!dssdev || dssdev->state != OMAP_DSS_DISPLAY_ACTIVE)
|
|
if (!dssdev || dssdev->state != OMAP_DSS_DISPLAY_ACTIVE)
|
|
return 0;
|
|
return 0;
|
|
|
|
|
|
|
|
+ if (dssdev->caps & OMAP_DSS_DISPLAY_CAP_MANUAL_UPDATE)
|
|
|
|
+ return 0;
|
|
|
|
+
|
|
if (dssdev->type == OMAP_DISPLAY_TYPE_VENC
|
|
if (dssdev->type == OMAP_DISPLAY_TYPE_VENC
|
|
|| dssdev->type == OMAP_DISPLAY_TYPE_HDMI) {
|
|
|| dssdev->type == OMAP_DISPLAY_TYPE_HDMI) {
|
|
irq = DISPC_IRQ_EVSYNC_ODD | DISPC_IRQ_EVSYNC_EVEN;
|
|
irq = DISPC_IRQ_EVSYNC_ODD | DISPC_IRQ_EVSYNC_EVEN;
|
|
} else {
|
|
} else {
|
|
- if (dssdev->caps & OMAP_DSS_DISPLAY_CAP_MANUAL_UPDATE) {
|
|
|
|
- enum omap_dss_update_mode mode;
|
|
|
|
- mode = dssdev->driver->get_update_mode(dssdev);
|
|
|
|
- if (mode != OMAP_DSS_UPDATE_AUTO)
|
|
|
|
- return 0;
|
|
|
|
-
|
|
|
|
- irq = (dssdev->manager->id == OMAP_DSS_CHANNEL_LCD) ?
|
|
|
|
- DISPC_IRQ_FRAMEDONE
|
|
|
|
- : DISPC_IRQ_FRAMEDONE2;
|
|
|
|
- } else {
|
|
|
|
- irq = (dssdev->manager->id == OMAP_DSS_CHANNEL_LCD) ?
|
|
|
|
- DISPC_IRQ_VSYNC
|
|
|
|
- : DISPC_IRQ_VSYNC2;
|
|
|
|
- }
|
|
|
|
|
|
+ irq = (dssdev->manager->id == OMAP_DSS_CHANNEL_LCD) ?
|
|
|
|
+ DISPC_IRQ_VSYNC : DISPC_IRQ_VSYNC2;
|
|
}
|
|
}
|
|
|
|
|
|
oc = &dss_cache.overlay_cache[ovl->id];
|
|
oc = &dss_cache.overlay_cache[ovl->id];
|
|
@@ -720,10 +786,12 @@ static bool rectangle_intersects(int x1, int y1, int w1, int h1,
|
|
|
|
|
|
static bool dispc_is_overlay_scaled(struct overlay_cache_data *oc)
|
|
static bool dispc_is_overlay_scaled(struct overlay_cache_data *oc)
|
|
{
|
|
{
|
|
- if (oc->out_width != 0 && oc->width != oc->out_width)
|
|
|
|
|
|
+ struct omap_overlay_info *oi = &oc->info;
|
|
|
|
+
|
|
|
|
+ if (oi->out_width != 0 && oi->width != oi->out_width)
|
|
return true;
|
|
return true;
|
|
|
|
|
|
- if (oc->out_height != 0 && oc->height != oc->out_height)
|
|
|
|
|
|
+ if (oi->out_height != 0 && oi->height != oi->out_height)
|
|
return true;
|
|
return true;
|
|
|
|
|
|
return false;
|
|
return false;
|
|
@@ -733,6 +801,8 @@ static int configure_overlay(enum omap_plane plane)
|
|
{
|
|
{
|
|
struct overlay_cache_data *c;
|
|
struct overlay_cache_data *c;
|
|
struct manager_cache_data *mc;
|
|
struct manager_cache_data *mc;
|
|
|
|
+ struct omap_overlay_info *oi;
|
|
|
|
+ struct omap_overlay_manager_info *mi;
|
|
u16 outw, outh;
|
|
u16 outw, outh;
|
|
u16 x, y, w, h;
|
|
u16 x, y, w, h;
|
|
u32 paddr;
|
|
u32 paddr;
|
|
@@ -742,6 +812,7 @@ static int configure_overlay(enum omap_plane plane)
|
|
DSSDBGF("%d", plane);
|
|
DSSDBGF("%d", plane);
|
|
|
|
|
|
c = &dss_cache.overlay_cache[plane];
|
|
c = &dss_cache.overlay_cache[plane];
|
|
|
|
+ oi = &c->info;
|
|
|
|
|
|
if (!c->enabled) {
|
|
if (!c->enabled) {
|
|
dispc_enable_plane(plane, 0);
|
|
dispc_enable_plane(plane, 0);
|
|
@@ -749,21 +820,22 @@ static int configure_overlay(enum omap_plane plane)
|
|
}
|
|
}
|
|
|
|
|
|
mc = &dss_cache.manager_cache[c->channel];
|
|
mc = &dss_cache.manager_cache[c->channel];
|
|
|
|
+ mi = &mc->info;
|
|
|
|
|
|
- x = c->pos_x;
|
|
|
|
- y = c->pos_y;
|
|
|
|
- w = c->width;
|
|
|
|
- h = c->height;
|
|
|
|
- outw = c->out_width == 0 ? c->width : c->out_width;
|
|
|
|
- outh = c->out_height == 0 ? c->height : c->out_height;
|
|
|
|
- paddr = c->paddr;
|
|
|
|
|
|
+ x = oi->pos_x;
|
|
|
|
+ y = oi->pos_y;
|
|
|
|
+ w = oi->width;
|
|
|
|
+ h = oi->height;
|
|
|
|
+ outw = oi->out_width == 0 ? oi->width : oi->out_width;
|
|
|
|
+ outh = oi->out_height == 0 ? oi->height : oi->out_height;
|
|
|
|
+ paddr = oi->paddr;
|
|
|
|
|
|
orig_w = w;
|
|
orig_w = w;
|
|
orig_h = h;
|
|
orig_h = h;
|
|
orig_outw = outw;
|
|
orig_outw = outw;
|
|
orig_outh = outh;
|
|
orig_outh = outh;
|
|
|
|
|
|
- if (c->manual_update && mc->do_manual_update) {
|
|
|
|
|
|
+ if (mc->manual_update && mc->do_manual_update) {
|
|
unsigned bpp;
|
|
unsigned bpp;
|
|
unsigned scale_x_m = w, scale_x_d = outw;
|
|
unsigned scale_x_m = w, scale_x_d = outw;
|
|
unsigned scale_y_m = h, scale_y_d = outh;
|
|
unsigned scale_y_m = h, scale_y_d = outh;
|
|
@@ -775,7 +847,7 @@ static int configure_overlay(enum omap_plane plane)
|
|
return 0;
|
|
return 0;
|
|
}
|
|
}
|
|
|
|
|
|
- switch (c->color_mode) {
|
|
|
|
|
|
+ switch (oi->color_mode) {
|
|
case OMAP_DSS_COLOR_NV12:
|
|
case OMAP_DSS_COLOR_NV12:
|
|
bpp = 8;
|
|
bpp = 8;
|
|
break;
|
|
break;
|
|
@@ -805,23 +877,23 @@ static int configure_overlay(enum omap_plane plane)
|
|
BUG();
|
|
BUG();
|
|
}
|
|
}
|
|
|
|
|
|
- if (mc->x > c->pos_x) {
|
|
|
|
|
|
+ if (mc->x > oi->pos_x) {
|
|
x = 0;
|
|
x = 0;
|
|
- outw -= (mc->x - c->pos_x);
|
|
|
|
- paddr += (mc->x - c->pos_x) *
|
|
|
|
|
|
+ outw -= (mc->x - oi->pos_x);
|
|
|
|
+ paddr += (mc->x - oi->pos_x) *
|
|
scale_x_m / scale_x_d * bpp / 8;
|
|
scale_x_m / scale_x_d * bpp / 8;
|
|
} else {
|
|
} else {
|
|
- x = c->pos_x - mc->x;
|
|
|
|
|
|
+ x = oi->pos_x - mc->x;
|
|
}
|
|
}
|
|
|
|
|
|
- if (mc->y > c->pos_y) {
|
|
|
|
|
|
+ if (mc->y > oi->pos_y) {
|
|
y = 0;
|
|
y = 0;
|
|
- outh -= (mc->y - c->pos_y);
|
|
|
|
- paddr += (mc->y - c->pos_y) *
|
|
|
|
|
|
+ outh -= (mc->y - oi->pos_y);
|
|
|
|
+ paddr += (mc->y - oi->pos_y) *
|
|
scale_y_m / scale_y_d *
|
|
scale_y_m / scale_y_d *
|
|
- c->screen_width * bpp / 8;
|
|
|
|
|
|
+ oi->screen_width * bpp / 8;
|
|
} else {
|
|
} else {
|
|
- y = c->pos_y - mc->y;
|
|
|
|
|
|
+ y = oi->pos_y - mc->y;
|
|
}
|
|
}
|
|
|
|
|
|
if (mc->w < (x + outw))
|
|
if (mc->w < (x + outw))
|
|
@@ -840,8 +912,8 @@ static int configure_overlay(enum omap_plane plane)
|
|
* the width if the original width was bigger.
|
|
* the width if the original width was bigger.
|
|
*/
|
|
*/
|
|
if ((w & 1) &&
|
|
if ((w & 1) &&
|
|
- (c->color_mode == OMAP_DSS_COLOR_YUV2 ||
|
|
|
|
- c->color_mode == OMAP_DSS_COLOR_UYVY)) {
|
|
|
|
|
|
+ (oi->color_mode == OMAP_DSS_COLOR_YUV2 ||
|
|
|
|
+ oi->color_mode == OMAP_DSS_COLOR_UYVY)) {
|
|
if (orig_w > w)
|
|
if (orig_w > w)
|
|
w += 1;
|
|
w += 1;
|
|
else
|
|
else
|
|
@@ -851,19 +923,19 @@ static int configure_overlay(enum omap_plane plane)
|
|
|
|
|
|
r = dispc_setup_plane(plane,
|
|
r = dispc_setup_plane(plane,
|
|
paddr,
|
|
paddr,
|
|
- c->screen_width,
|
|
|
|
|
|
+ oi->screen_width,
|
|
x, y,
|
|
x, y,
|
|
w, h,
|
|
w, h,
|
|
outw, outh,
|
|
outw, outh,
|
|
- c->color_mode,
|
|
|
|
|
|
+ oi->color_mode,
|
|
c->ilace,
|
|
c->ilace,
|
|
- c->rotation_type,
|
|
|
|
- c->rotation,
|
|
|
|
- c->mirror,
|
|
|
|
- c->global_alpha,
|
|
|
|
- c->pre_mult_alpha,
|
|
|
|
|
|
+ oi->rotation_type,
|
|
|
|
+ oi->rotation,
|
|
|
|
+ oi->mirror,
|
|
|
|
+ oi->global_alpha,
|
|
|
|
+ oi->pre_mult_alpha,
|
|
c->channel,
|
|
c->channel,
|
|
- c->p_uv_addr);
|
|
|
|
|
|
+ oi->p_uv_addr);
|
|
|
|
|
|
if (r) {
|
|
if (r) {
|
|
/* this shouldn't happen */
|
|
/* this shouldn't happen */
|
|
@@ -874,8 +946,7 @@ static int configure_overlay(enum omap_plane plane)
|
|
|
|
|
|
dispc_enable_replication(plane, c->replication);
|
|
dispc_enable_replication(plane, c->replication);
|
|
|
|
|
|
- dispc_set_burst_size(plane, c->burst_size);
|
|
|
|
- dispc_setup_plane_fifo(plane, c->fifo_low, c->fifo_high);
|
|
|
|
|
|
+ dispc_set_fifo_threshold(plane, c->fifo_low, c->fifo_high);
|
|
|
|
|
|
dispc_enable_plane(plane, 1);
|
|
dispc_enable_plane(plane, 1);
|
|
|
|
|
|
@@ -884,16 +955,21 @@ static int configure_overlay(enum omap_plane plane)
|
|
|
|
|
|
static void configure_manager(enum omap_channel channel)
|
|
static void configure_manager(enum omap_channel channel)
|
|
{
|
|
{
|
|
- struct manager_cache_data *c;
|
|
|
|
|
|
+ struct omap_overlay_manager_info *mi;
|
|
|
|
|
|
DSSDBGF("%d", channel);
|
|
DSSDBGF("%d", channel);
|
|
|
|
|
|
- c = &dss_cache.manager_cache[channel];
|
|
|
|
|
|
+ /* picking info from the cache */
|
|
|
|
+ mi = &dss_cache.manager_cache[channel].info;
|
|
|
|
|
|
- dispc_set_default_color(channel, c->default_color);
|
|
|
|
- dispc_set_trans_key(channel, c->trans_key_type, c->trans_key);
|
|
|
|
- dispc_enable_trans_key(channel, c->trans_enabled);
|
|
|
|
- dispc_enable_alpha_blending(channel, c->alpha_enabled);
|
|
|
|
|
|
+ dispc_set_default_color(channel, mi->default_color);
|
|
|
|
+ dispc_set_trans_key(channel, mi->trans_key_type, mi->trans_key);
|
|
|
|
+ dispc_enable_trans_key(channel, mi->trans_enabled);
|
|
|
|
+ dispc_enable_alpha_blending(channel, mi->alpha_enabled);
|
|
|
|
+ if (dss_has_feature(FEAT_CPR)) {
|
|
|
|
+ dispc_enable_cpr(channel, mi->cpr_enable);
|
|
|
|
+ dispc_set_cpr_coef(channel, &mi->cpr_coefs);
|
|
|
|
+ }
|
|
}
|
|
}
|
|
|
|
|
|
/* configure_dispc() tries to write values from cache to shadow registers.
|
|
/* configure_dispc() tries to write values from cache to shadow registers.
|
|
@@ -928,7 +1004,7 @@ static int configure_dispc(void)
|
|
if (!oc->dirty)
|
|
if (!oc->dirty)
|
|
continue;
|
|
continue;
|
|
|
|
|
|
- if (oc->manual_update && !mc->do_manual_update)
|
|
|
|
|
|
+ if (mc->manual_update && !mc->do_manual_update)
|
|
continue;
|
|
continue;
|
|
|
|
|
|
if (mgr_busy[oc->channel]) {
|
|
if (mgr_busy[oc->channel]) {
|
|
@@ -976,7 +1052,7 @@ static int configure_dispc(void)
|
|
/* We don't need GO with manual update display. LCD iface will
|
|
/* We don't need GO with manual update display. LCD iface will
|
|
* always be turned off after frame, and new settings will be
|
|
* always be turned off after frame, and new settings will be
|
|
* taken in to use at next update */
|
|
* taken in to use at next update */
|
|
- if (!mc->manual_upd_display)
|
|
|
|
|
|
+ if (!mc->manual_update)
|
|
dispc_go(i);
|
|
dispc_go(i);
|
|
}
|
|
}
|
|
|
|
|
|
@@ -1011,6 +1087,7 @@ void dss_setup_partial_planes(struct omap_dss_device *dssdev,
|
|
{
|
|
{
|
|
struct overlay_cache_data *oc;
|
|
struct overlay_cache_data *oc;
|
|
struct manager_cache_data *mc;
|
|
struct manager_cache_data *mc;
|
|
|
|
+ struct omap_overlay_info *oi;
|
|
const int num_ovls = dss_feat_get_num_ovls();
|
|
const int num_ovls = dss_feat_get_num_ovls();
|
|
struct omap_overlay_manager *mgr;
|
|
struct omap_overlay_manager *mgr;
|
|
int i;
|
|
int i;
|
|
@@ -1053,6 +1130,7 @@ void dss_setup_partial_planes(struct omap_dss_device *dssdev,
|
|
unsigned outw, outh;
|
|
unsigned outw, outh;
|
|
|
|
|
|
oc = &dss_cache.overlay_cache[i];
|
|
oc = &dss_cache.overlay_cache[i];
|
|
|
|
+ oi = &oc->info;
|
|
|
|
|
|
if (oc->channel != mgr->id)
|
|
if (oc->channel != mgr->id)
|
|
continue;
|
|
continue;
|
|
@@ -1068,39 +1146,39 @@ void dss_setup_partial_planes(struct omap_dss_device *dssdev,
|
|
if (!dispc_is_overlay_scaled(oc))
|
|
if (!dispc_is_overlay_scaled(oc))
|
|
continue;
|
|
continue;
|
|
|
|
|
|
- outw = oc->out_width == 0 ?
|
|
|
|
- oc->width : oc->out_width;
|
|
|
|
- outh = oc->out_height == 0 ?
|
|
|
|
- oc->height : oc->out_height;
|
|
|
|
|
|
+ outw = oi->out_width == 0 ?
|
|
|
|
+ oi->width : oi->out_width;
|
|
|
|
+ outh = oi->out_height == 0 ?
|
|
|
|
+ oi->height : oi->out_height;
|
|
|
|
|
|
/* is the overlay outside the update region? */
|
|
/* is the overlay outside the update region? */
|
|
if (!rectangle_intersects(x, y, w, h,
|
|
if (!rectangle_intersects(x, y, w, h,
|
|
- oc->pos_x, oc->pos_y,
|
|
|
|
|
|
+ oi->pos_x, oi->pos_y,
|
|
outw, outh))
|
|
outw, outh))
|
|
continue;
|
|
continue;
|
|
|
|
|
|
/* if the overlay totally inside the update region? */
|
|
/* if the overlay totally inside the update region? */
|
|
- if (rectangle_subset(oc->pos_x, oc->pos_y, outw, outh,
|
|
|
|
|
|
+ if (rectangle_subset(oi->pos_x, oi->pos_y, outw, outh,
|
|
x, y, w, h))
|
|
x, y, w, h))
|
|
continue;
|
|
continue;
|
|
|
|
|
|
- if (x > oc->pos_x)
|
|
|
|
- x1 = oc->pos_x;
|
|
|
|
|
|
+ if (x > oi->pos_x)
|
|
|
|
+ x1 = oi->pos_x;
|
|
else
|
|
else
|
|
x1 = x;
|
|
x1 = x;
|
|
|
|
|
|
- if (y > oc->pos_y)
|
|
|
|
- y1 = oc->pos_y;
|
|
|
|
|
|
+ if (y > oi->pos_y)
|
|
|
|
+ y1 = oi->pos_y;
|
|
else
|
|
else
|
|
y1 = y;
|
|
y1 = y;
|
|
|
|
|
|
- if ((x + w) < (oc->pos_x + outw))
|
|
|
|
- x2 = oc->pos_x + outw;
|
|
|
|
|
|
+ if ((x + w) < (oi->pos_x + outw))
|
|
|
|
+ x2 = oi->pos_x + outw;
|
|
else
|
|
else
|
|
x2 = x + w;
|
|
x2 = x + w;
|
|
|
|
|
|
- if ((y + h) < (oc->pos_y + outh))
|
|
|
|
- y2 = oc->pos_y + outh;
|
|
|
|
|
|
+ if ((y + h) < (oi->pos_y + outh))
|
|
|
|
+ y2 = oi->pos_y + outh;
|
|
else
|
|
else
|
|
y2 = y + h;
|
|
y2 = y + h;
|
|
|
|
|
|
@@ -1236,6 +1314,10 @@ static int omap_dss_mgr_apply(struct omap_overlay_manager *mgr)
|
|
|
|
|
|
DSSDBG("omap_dss_mgr_apply(%s)\n", mgr->name);
|
|
DSSDBG("omap_dss_mgr_apply(%s)\n", mgr->name);
|
|
|
|
|
|
|
|
+ r = dispc_runtime_get();
|
|
|
|
+ if (r)
|
|
|
|
+ return r;
|
|
|
|
+
|
|
spin_lock_irqsave(&dss_cache.lock, flags);
|
|
spin_lock_irqsave(&dss_cache.lock, flags);
|
|
|
|
|
|
/* Configure overlays */
|
|
/* Configure overlays */
|
|
@@ -1275,23 +1357,7 @@ static int omap_dss_mgr_apply(struct omap_overlay_manager *mgr)
|
|
|
|
|
|
ovl->info_dirty = false;
|
|
ovl->info_dirty = false;
|
|
oc->dirty = true;
|
|
oc->dirty = true;
|
|
-
|
|
|
|
- oc->paddr = ovl->info.paddr;
|
|
|
|
- oc->vaddr = ovl->info.vaddr;
|
|
|
|
- oc->p_uv_addr = ovl->info.p_uv_addr;
|
|
|
|
- oc->screen_width = ovl->info.screen_width;
|
|
|
|
- oc->width = ovl->info.width;
|
|
|
|
- oc->height = ovl->info.height;
|
|
|
|
- oc->color_mode = ovl->info.color_mode;
|
|
|
|
- oc->rotation = ovl->info.rotation;
|
|
|
|
- oc->rotation_type = ovl->info.rotation_type;
|
|
|
|
- oc->mirror = ovl->info.mirror;
|
|
|
|
- oc->pos_x = ovl->info.pos_x;
|
|
|
|
- oc->pos_y = ovl->info.pos_y;
|
|
|
|
- oc->out_width = ovl->info.out_width;
|
|
|
|
- oc->out_height = ovl->info.out_height;
|
|
|
|
- oc->global_alpha = ovl->info.global_alpha;
|
|
|
|
- oc->pre_mult_alpha = ovl->info.pre_mult_alpha;
|
|
|
|
|
|
+ oc->info = ovl->info;
|
|
|
|
|
|
oc->replication =
|
|
oc->replication =
|
|
dss_use_replication(dssdev, ovl->info.color_mode);
|
|
dss_use_replication(dssdev, ovl->info.color_mode);
|
|
@@ -1302,11 +1368,6 @@ static int omap_dss_mgr_apply(struct omap_overlay_manager *mgr)
|
|
|
|
|
|
oc->enabled = true;
|
|
oc->enabled = true;
|
|
|
|
|
|
- oc->manual_update =
|
|
|
|
- dssdev->caps & OMAP_DSS_DISPLAY_CAP_MANUAL_UPDATE &&
|
|
|
|
- dssdev->driver->get_update_mode(dssdev) !=
|
|
|
|
- OMAP_DSS_UPDATE_AUTO;
|
|
|
|
-
|
|
|
|
++num_planes_enabled;
|
|
++num_planes_enabled;
|
|
}
|
|
}
|
|
|
|
|
|
@@ -1334,20 +1395,10 @@ static int omap_dss_mgr_apply(struct omap_overlay_manager *mgr)
|
|
|
|
|
|
mgr->info_dirty = false;
|
|
mgr->info_dirty = false;
|
|
mc->dirty = true;
|
|
mc->dirty = true;
|
|
-
|
|
|
|
- mc->default_color = mgr->info.default_color;
|
|
|
|
- mc->trans_key_type = mgr->info.trans_key_type;
|
|
|
|
- mc->trans_key = mgr->info.trans_key;
|
|
|
|
- mc->trans_enabled = mgr->info.trans_enabled;
|
|
|
|
- mc->alpha_enabled = mgr->info.alpha_enabled;
|
|
|
|
-
|
|
|
|
- mc->manual_upd_display =
|
|
|
|
- dssdev->caps & OMAP_DSS_DISPLAY_CAP_MANUAL_UPDATE;
|
|
|
|
|
|
+ mc->info = mgr->info;
|
|
|
|
|
|
mc->manual_update =
|
|
mc->manual_update =
|
|
- dssdev->caps & OMAP_DSS_DISPLAY_CAP_MANUAL_UPDATE &&
|
|
|
|
- dssdev->driver->get_update_mode(dssdev) !=
|
|
|
|
- OMAP_DSS_UPDATE_AUTO;
|
|
|
|
|
|
+ dssdev->caps & OMAP_DSS_DISPLAY_CAP_MANUAL_UPDATE;
|
|
}
|
|
}
|
|
|
|
|
|
/* XXX TODO: Try to get fifomerge working. The problem is that it
|
|
/* XXX TODO: Try to get fifomerge working. The problem is that it
|
|
@@ -1368,7 +1419,7 @@ static int omap_dss_mgr_apply(struct omap_overlay_manager *mgr)
|
|
/* Configure overlay fifos */
|
|
/* Configure overlay fifos */
|
|
for (i = 0; i < omap_dss_get_num_overlays(); ++i) {
|
|
for (i = 0; i < omap_dss_get_num_overlays(); ++i) {
|
|
struct omap_dss_device *dssdev;
|
|
struct omap_dss_device *dssdev;
|
|
- u32 size;
|
|
|
|
|
|
+ u32 size, burst_size;
|
|
|
|
|
|
ovl = omap_dss_get_overlay(i);
|
|
ovl = omap_dss_get_overlay(i);
|
|
|
|
|
|
@@ -1386,6 +1437,8 @@ static int omap_dss_mgr_apply(struct omap_overlay_manager *mgr)
|
|
if (use_fifomerge)
|
|
if (use_fifomerge)
|
|
size *= 3;
|
|
size *= 3;
|
|
|
|
|
|
|
|
+ burst_size = dispc_get_burst_size(ovl->id);
|
|
|
|
+
|
|
switch (dssdev->type) {
|
|
switch (dssdev->type) {
|
|
case OMAP_DISPLAY_TYPE_DPI:
|
|
case OMAP_DISPLAY_TYPE_DPI:
|
|
case OMAP_DISPLAY_TYPE_DBI:
|
|
case OMAP_DISPLAY_TYPE_DBI:
|
|
@@ -1393,13 +1446,13 @@ static int omap_dss_mgr_apply(struct omap_overlay_manager *mgr)
|
|
case OMAP_DISPLAY_TYPE_VENC:
|
|
case OMAP_DISPLAY_TYPE_VENC:
|
|
case OMAP_DISPLAY_TYPE_HDMI:
|
|
case OMAP_DISPLAY_TYPE_HDMI:
|
|
default_get_overlay_fifo_thresholds(ovl->id, size,
|
|
default_get_overlay_fifo_thresholds(ovl->id, size,
|
|
- &oc->burst_size, &oc->fifo_low,
|
|
|
|
|
|
+ burst_size, &oc->fifo_low,
|
|
&oc->fifo_high);
|
|
&oc->fifo_high);
|
|
break;
|
|
break;
|
|
#ifdef CONFIG_OMAP2_DSS_DSI
|
|
#ifdef CONFIG_OMAP2_DSS_DSI
|
|
case OMAP_DISPLAY_TYPE_DSI:
|
|
case OMAP_DISPLAY_TYPE_DSI:
|
|
dsi_get_overlay_fifo_thresholds(ovl->id, size,
|
|
dsi_get_overlay_fifo_thresholds(ovl->id, size,
|
|
- &oc->burst_size, &oc->fifo_low,
|
|
|
|
|
|
+ burst_size, &oc->fifo_low,
|
|
&oc->fifo_high);
|
|
&oc->fifo_high);
|
|
break;
|
|
break;
|
|
#endif
|
|
#endif
|
|
@@ -1409,7 +1462,6 @@ static int omap_dss_mgr_apply(struct omap_overlay_manager *mgr)
|
|
}
|
|
}
|
|
|
|
|
|
r = 0;
|
|
r = 0;
|
|
- dss_clk_enable(DSS_CLK_ICK | DSS_CLK_FCK);
|
|
|
|
if (!dss_cache.irq_enabled) {
|
|
if (!dss_cache.irq_enabled) {
|
|
u32 mask;
|
|
u32 mask;
|
|
|
|
|
|
@@ -1422,10 +1474,11 @@ static int omap_dss_mgr_apply(struct omap_overlay_manager *mgr)
|
|
dss_cache.irq_enabled = true;
|
|
dss_cache.irq_enabled = true;
|
|
}
|
|
}
|
|
configure_dispc();
|
|
configure_dispc();
|
|
- dss_clk_disable(DSS_CLK_ICK | DSS_CLK_FCK);
|
|
|
|
|
|
|
|
spin_unlock_irqrestore(&dss_cache.lock, flags);
|
|
spin_unlock_irqrestore(&dss_cache.lock, flags);
|
|
|
|
|
|
|
|
+ dispc_runtime_put();
|
|
|
|
+
|
|
return r;
|
|
return r;
|
|
}
|
|
}
|
|
|
|
|