]> asedeno.scripts.mit.edu Git - linux.git/commitdiff
drm/omap: DRM_MODE_REFLECT_* instead of mirror boolean
authorTomi Valkeinen <tomi.valkeinen@ti.com>
Tue, 16 May 2017 09:05:24 +0000 (12:05 +0300)
committerTomi Valkeinen <tomi.valkeinen@ti.com>
Fri, 2 Jun 2017 08:07:14 +0000 (11:07 +0300)
Change dispc driver to use the DRM_MODE_REFLECT flags instead of a mirror
boolean.

Signed-off-by: Tomi Valkeinen <tomi.valkeinen@ti.com>
Reviewed-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
drivers/gpu/drm/omapdrm/dss/dispc.c
drivers/gpu/drm/omapdrm/dss/omapdss.h
drivers/gpu/drm/omapdrm/omap_plane.c

index 34c6a2aca014354375c74b7851d0cd730106d529..53e2c93a5455671f96c9782c4976b5d9b5d966fc 100644 (file)
@@ -1805,8 +1805,7 @@ static void dispc_ovl_set_scaling(enum omap_plane_id plane,
 }
 
 static void dispc_ovl_set_rotation_attrs(enum omap_plane_id plane, u8 rotation,
-               enum omap_dss_rotation_type rotation_type,
-               bool mirroring, u32 fourcc)
+               enum omap_dss_rotation_type rotation_type, u32 fourcc)
 {
        bool row_repeat = false;
        int vidrot = 0;
@@ -1814,7 +1813,7 @@ static void dispc_ovl_set_rotation_attrs(enum omap_plane_id plane, u8 rotation,
        /* Note: DSS HW rotates clockwise, DRM_MODE_ROTATE_* counter-clockwise */
        if (fourcc == DRM_FORMAT_YUYV || fourcc == DRM_FORMAT_UYVY) {
 
-               if (mirroring) {
+               if (rotation & DRM_MODE_REFLECT_X) {
                        switch (rotation & DRM_MODE_ROTATE_MASK) {
                        case DRM_MODE_ROTATE_0:
                                vidrot = 2;
@@ -2369,7 +2368,7 @@ static int dispc_ovl_setup_common(enum omap_plane_id plane,
                enum omap_overlay_caps caps, u32 paddr, u32 p_uv_addr,
                u16 screen_width, int pos_x, int pos_y, u16 width, u16 height,
                u16 out_width, u16 out_height, u32 fourcc,
-               u8 rotation, bool mirror, u8 zorder, u8 pre_mult_alpha,
+               u8 rotation, u8 zorder, u8 pre_mult_alpha,
                u8 global_alpha, enum omap_dss_rotation_type rotation_type,
                bool replication, const struct videomode *vm,
                bool mem_to_mem)
@@ -2517,8 +2516,7 @@ static int dispc_ovl_setup_common(enum omap_plane_id plane,
                dispc_ovl_set_vid_color_conv(plane, cconv);
        }
 
-       dispc_ovl_set_rotation_attrs(plane, rotation, rotation_type, mirror,
-                       fourcc);
+       dispc_ovl_set_rotation_attrs(plane, rotation, rotation_type, fourcc);
 
        dispc_ovl_set_zorder(plane, caps, zorder);
        dispc_ovl_set_pre_mult_alpha(plane, caps, pre_mult_alpha);
@@ -2539,17 +2537,17 @@ static int dispc_ovl_setup(enum omap_plane_id plane,
        const bool replication = true;
 
        DSSDBG("dispc_ovl_setup %d, pa %pad, pa_uv %pad, sw %d, %d,%d, %dx%d ->"
-               " %dx%d, cmode %x, rot %d, mir %d, chan %d repl %d\n",
+               " %dx%d, cmode %x, rot %d, chan %d repl %d\n",
                plane, &oi->paddr, &oi->p_uv_addr, oi->screen_width, oi->pos_x,
                oi->pos_y, oi->width, oi->height, oi->out_width, oi->out_height,
-               oi->fourcc, oi->rotation, oi->mirror, channel, replication);
+               oi->fourcc, oi->rotation, channel, replication);
 
        dispc_ovl_set_channel_out(plane, channel);
 
        r = dispc_ovl_setup_common(plane, caps, oi->paddr, oi->p_uv_addr,
                oi->screen_width, oi->pos_x, oi->pos_y, oi->width, oi->height,
                oi->out_width, oi->out_height, oi->fourcc, oi->rotation,
-               oi->mirror, oi->zorder, oi->pre_mult_alpha, oi->global_alpha,
+               oi->zorder, oi->pre_mult_alpha, oi->global_alpha,
                oi->rotation_type, replication, vm, mem_to_mem);
 
        return r;
@@ -2571,13 +2569,12 @@ int dispc_wb_setup(const struct omap_dss_writeback_info *wi,
                OMAP_DSS_OVL_CAP_SCALE | OMAP_DSS_OVL_CAP_PRE_MULT_ALPHA;
 
        DSSDBG("dispc_wb_setup, pa %x, pa_uv %x, %d,%d -> %dx%d, cmode %x, "
-               "rot %d, mir %d\n", wi->paddr, wi->p_uv_addr, in_width,
-               in_height, wi->width, wi->height, wi->fourcc, wi->rotation,
-               wi->mirror);
+               "rot %d\n", wi->paddr, wi->p_uv_addr, in_width,
+               in_height, wi->width, wi->height, wi->fourcc, wi->rotation);
 
        r = dispc_ovl_setup_common(plane, caps, wi->paddr, wi->p_uv_addr,
                wi->buf_width, pos_x, pos_y, in_width, in_height, wi->width,
-               wi->height, wi->fourcc, wi->rotation, wi->mirror, zorder,
+               wi->height, wi->fourcc, wi->rotation, zorder,
                wi->pre_mult_alpha, global_alpha, wi->rotation_type,
                replication, vm, mem_to_mem);
 
@@ -3918,7 +3915,6 @@ static const struct dispc_errata_i734_data {
                .fourcc = DRM_FORMAT_XRGB8888,
                .rotation = DRM_MODE_ROTATE_0,
                .rotation_type = OMAP_DSS_ROT_NONE,
-               .mirror = 0,
                .pos_x = 0, .pos_y = 0,
                .out_width = 0, .out_height = 0,
                .global_alpha = 0xff,
index 7e2fbc2a7e44280843f6930efad92bf703823993..85953a0bc7c2facc4ba0ac5a2d45ed13a0494010 100644 (file)
@@ -263,7 +263,6 @@ struct omap_overlay_info {
        u32 fourcc;
        u8 rotation;
        enum omap_dss_rotation_type rotation_type;
-       bool mirror;
 
        u16 pos_x;
        u16 pos_y;
@@ -311,7 +310,6 @@ struct omap_dss_writeback_info {
        u32 fourcc;
        u8 rotation;
        enum omap_dss_rotation_type rotation_type;
-       bool mirror;
        u8 pre_mult_alpha;
 };
 
index 688b358a13e56cb57f048c735efadc4dfd680b1c..2160f64548e03bc028c6f7d9dd36d1aee5ae5745 100644 (file)
@@ -67,7 +67,6 @@ static void omap_plane_atomic_update(struct drm_plane *plane,
        info.rotation_type = OMAP_DSS_ROT_NONE;
        info.rotation = DRM_MODE_ROTATE_0;
        info.global_alpha = 0xff;
-       info.mirror = 0;
        info.zorder = state->zpos;
 
        /* update scanout: */