return dispc_mgr_pclk_rate(channel) * vf * hf;
 }
 
-int dispc_ovl_setup(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 dispc_ovl_setup(enum omap_plane plane, struct omap_overlay_info *oi,
+               bool ilace, enum omap_channel channel)
 {
        const int maxdownscale = cpu_is_omap34xx() ? 4 : 2;
        bool five_taps = 0;
        unsigned offset0, offset1;
        s32 row_inc;
        s32 pix_inc;
-       u16 frame_height = height;
+       u16 frame_height = oi->height;
        unsigned int field_offset = 0;
 
-       DSSDBG("dispc_ovl_setup %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);
+       DSSDBG("dispc_ovl_setup %d, pa %x, pa_uv %x, sw %d, %d,%d, %dx%d -> "
+               "%dx%d, cmode %x, rot %d, mir %d, ilace %d chan %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->color_mode, oi->rotation, oi->mirror, ilace, channel);
 
-       if (paddr == 0)
+       if (oi->paddr == 0)
                return -EINVAL;
 
-       if (ilace && height == out_height)
+       if (ilace && oi->height == oi->out_height)
                fieldmode = 1;
 
        if (ilace) {
                if (fieldmode)
-                       height /= 2;
-               pos_y /= 2;
-               out_height /= 2;
+                       oi->height /= 2;
+               oi->pos_y /= 2;
+               oi->out_height /= 2;
 
                DSSDBG("adjusting for ilace: height %d, pos_y %d, "
                                "out_height %d\n",
-                               height, pos_y, out_height);
+                               oi->height, oi->pos_y, oi->out_height);
        }
 
-       if (!dss_feat_color_mode_supported(plane, color_mode))
+       if (!dss_feat_color_mode_supported(plane, oi->color_mode))
                return -EINVAL;
 
        if (plane == OMAP_DSS_GFX) {
-               if (width != out_width || height != out_height)
+               if (oi->width != oi->out_width || oi->height != oi->out_height)
                        return -EINVAL;
        } else {
                /* video plane */
 
                unsigned long fclk = 0;
 
-               if (out_width < width / maxdownscale ||
-                  out_width > width * 8)
+               if (oi->out_width < oi->width / maxdownscale ||
+                  oi->out_width > oi->width * 8)
                        return -EINVAL;
 
-               if (out_height < height / maxdownscale ||
-                  out_height > height * 8)
+               if (oi->out_height < oi->height / maxdownscale ||
+                  oi->out_height > oi->height * 8)
                        return -EINVAL;
 
-               if (color_mode == OMAP_DSS_COLOR_YUV2 ||
-                       color_mode == OMAP_DSS_COLOR_UYVY ||
-                       color_mode == OMAP_DSS_COLOR_NV12)
+               if (oi->color_mode == OMAP_DSS_COLOR_YUV2 ||
+                               oi->color_mode == OMAP_DSS_COLOR_UYVY ||
+                               oi->color_mode == OMAP_DSS_COLOR_NV12)
                        cconv = 1;
 
                /* Must use 5-tap filter? */
-               five_taps = height > out_height * 2;
+               five_taps = oi->height > oi->out_height * 2;
 
                if (!five_taps) {
-                       fclk = calc_fclk(channel, width, height, out_width,
-                                       out_height);
+                       fclk = calc_fclk(channel, oi->width, oi->height,
+                                       oi->out_width, oi->out_height);
 
                        /* Try 5-tap filter if 3-tap fclk is too high */
-                       if (cpu_is_omap34xx() && height > out_height &&
+                       if (cpu_is_omap34xx() && oi->height > oi->out_height &&
                                        fclk > dispc_fclk_rate())
                                five_taps = true;
                }
 
-               if (width > (2048 >> five_taps)) {
+               if (oi->width > (2048 >> five_taps)) {
                        DSSERR("failed to set up scaling, fclk too low\n");
                        return -EINVAL;
                }
 
                if (five_taps)
-                       fclk = calc_fclk_five_taps(channel, width, height,
-                                       out_width, out_height, color_mode);
+                       fclk = calc_fclk_five_taps(channel, oi->width,
+                                       oi->height, oi->out_width,
+                                       oi->out_height, oi->color_mode);
 
                DSSDBG("required fclk rate = %lu Hz\n", fclk);
                DSSDBG("current fclk rate = %lu Hz\n", dispc_fclk_rate());
                 * so the integer part must be added to the base address of the
                 * bottom field.
                 */
-               if (!height || height == out_height)
+               if (!oi->height || oi->height == oi->out_height)
                        field_offset = 0;
                else
-                       field_offset = height / out_height / 2;
+                       field_offset = oi->height / oi->out_height / 2;
        }
 
        /* Fields are independent but interleaved in memory. */
        if (fieldmode)
                field_offset = 1;
 
-       if (rotation_type == OMAP_DSS_ROT_DMA)
-               calc_dma_rotation_offset(rotation, mirror,
-                               screen_width, width, frame_height, color_mode,
-                               fieldmode, field_offset,
+       if (oi->rotation_type == OMAP_DSS_ROT_DMA)
+               calc_dma_rotation_offset(oi->rotation, oi->mirror,
+                               oi->screen_width, oi->width, frame_height,
+                               oi->color_mode, fieldmode, field_offset,
                                &offset0, &offset1, &row_inc, &pix_inc);
        else
-               calc_vrfb_rotation_offset(rotation, mirror,
-                               screen_width, width, frame_height, color_mode,
-                               fieldmode, field_offset,
+               calc_vrfb_rotation_offset(oi->rotation, oi->mirror,
+                               oi->screen_width, oi->width, frame_height,
+                               oi->color_mode, fieldmode, field_offset,
                                &offset0, &offset1, &row_inc, &pix_inc);
 
        DSSDBG("offset0 %u, offset1 %u, row_inc %d, pix_inc %d\n",
                        offset0, offset1, row_inc, pix_inc);
 
-       dispc_ovl_set_color_mode(plane, color_mode);
+       dispc_ovl_set_color_mode(plane, oi->color_mode);
 
-       dispc_ovl_set_ba0(plane, paddr + offset0);
-       dispc_ovl_set_ba1(plane, paddr + offset1);
+       dispc_ovl_set_ba0(plane, oi->paddr + offset0);
+       dispc_ovl_set_ba1(plane, oi->paddr + offset1);
 
-       if (OMAP_DSS_COLOR_NV12 == color_mode) {
-               dispc_ovl_set_ba0_uv(plane, puv_addr + offset0);
-               dispc_ovl_set_ba1_uv(plane, puv_addr + offset1);
+       if (OMAP_DSS_COLOR_NV12 == oi->color_mode) {
+               dispc_ovl_set_ba0_uv(plane, oi->p_uv_addr + offset0);
+               dispc_ovl_set_ba1_uv(plane, oi->p_uv_addr + offset1);
        }
 
 
        dispc_ovl_set_row_inc(plane, row_inc);
        dispc_ovl_set_pix_inc(plane, pix_inc);
 
-       DSSDBG("%d,%d %dx%d -> %dx%d\n", pos_x, pos_y, width, height,
-                       out_width, out_height);
+       DSSDBG("%d,%d %dx%d -> %dx%d\n", oi->pos_x, oi->pos_y, oi->width,
+                       oi->height, oi->out_width, oi->out_height);
 
-       dispc_ovl_set_pos(plane, pos_x, pos_y);
+       dispc_ovl_set_pos(plane, oi->pos_x, oi->pos_y);
 
-       dispc_ovl_set_pic_size(plane, width, height);
+       dispc_ovl_set_pic_size(plane, oi->width, oi->height);
 
        if (plane != OMAP_DSS_GFX) {
-               dispc_ovl_set_scaling(plane, width, height,
-                                  out_width, out_height,
+               dispc_ovl_set_scaling(plane, oi->width, oi->height,
+                                  oi->out_width, oi->out_height,
                                   ilace, five_taps, fieldmode,
-                                  color_mode, rotation);
-               dispc_ovl_set_vid_size(plane, out_width, out_height);
+                                  oi->color_mode, oi->rotation);
+               dispc_ovl_set_vid_size(plane, oi->out_width, oi->out_height);
                dispc_ovl_set_vid_color_conv(plane, cconv);
        }
 
-       dispc_ovl_set_rotation_attrs(plane, rotation, mirror, color_mode);
+       dispc_ovl_set_rotation_attrs(plane, oi->rotation, oi->mirror,
+                       oi->color_mode);
 
-       dispc_ovl_set_pre_mult_alpha(plane, pre_mult_alpha);
-       dispc_ovl_setup_global_alpha(plane, global_alpha);
+       dispc_ovl_set_pre_mult_alpha(plane, oi->pre_mult_alpha);
+       dispc_ovl_setup_global_alpha(plane, oi->global_alpha);
 
        dispc_ovl_set_channel_out(plane, channel);