Commit 27cdf9ba authored by Lad, Prabhakar's avatar Lad, Prabhakar Committed by Mauro Carvalho Chehab

[media] media: davinci: vpif_display: improve vpif_buffer_prepare() callback

this patch improve vpif_buffer_prepare() callback, as buf_prepare()
callback is never called with invalid state and check for
vb2_plane_vaddr(vb, 0) is dropped as payload check should
be done unconditionally.
Signed-off-by: default avatarLad, Prabhakar <prabhakar.csengg@gmail.com>
Signed-off-by: default avatarHans Verkuil <hans.verkuil@cisco.com>
Signed-off-by: default avatarMauro Carvalho Chehab <m.chehab@samsung.com>
parent cde27a33
...@@ -67,41 +67,40 @@ static struct device *vpif_dev; ...@@ -67,41 +67,40 @@ static struct device *vpif_dev;
static void vpif_calculate_offsets(struct channel_obj *ch); static void vpif_calculate_offsets(struct channel_obj *ch);
static void vpif_config_addr(struct channel_obj *ch, int muxmode); static void vpif_config_addr(struct channel_obj *ch, int muxmode);
/* /**
* buffer_prepare: This is the callback function called from vb2_qbuf() * vpif_buffer_prepare : callback function for buffer prepare
* function the buffer is prepared and user space virtual address is converted * @vb: ptr to vb2_buffer
* into physical address *
* This is the callback function for buffer prepare when vb2_qbuf()
* function is called. The buffer is prepared and user space virtual address
* or user address is converted into physical address
*/ */
static int vpif_buffer_prepare(struct vb2_buffer *vb) static int vpif_buffer_prepare(struct vb2_buffer *vb)
{ {
struct vb2_queue *q = vb->vb2_queue; struct channel_obj *ch = vb2_get_drv_priv(vb->vb2_queue);
struct channel_obj *ch = vb2_get_drv_priv(q);
struct common_obj *common; struct common_obj *common;
unsigned long addr;
common = &ch->common[VPIF_VIDEO_INDEX]; common = &ch->common[VPIF_VIDEO_INDEX];
if (vb->state != VB2_BUF_STATE_ACTIVE &&
vb->state != VB2_BUF_STATE_PREPARED) { vb2_set_plane_payload(vb, 0, common->fmt.fmt.pix.sizeimage);
vb2_set_plane_payload(vb, 0, common->fmt.fmt.pix.sizeimage); if (vb2_get_plane_payload(vb, 0) > vb2_plane_size(vb, 0))
if (vb2_plane_vaddr(vb, 0) && return -EINVAL;
vb2_get_plane_payload(vb, 0) > vb2_plane_size(vb, 0))
goto buf_align_exit; vb->v4l2_buf.field = common->fmt.fmt.pix.field;
addr = vb2_dma_contig_plane_dma_addr(vb, 0); if (vb->vb2_queue->type != V4L2_BUF_TYPE_SLICED_VBI_OUTPUT) {
if (q->streaming && unsigned long addr = vb2_dma_contig_plane_dma_addr(vb, 0);
(V4L2_BUF_TYPE_SLICED_VBI_OUTPUT != q->type)) {
if (!ISALIGNED(addr + common->ytop_off) || if (!ISALIGNED(addr + common->ytop_off) ||
!ISALIGNED(addr + common->ybtm_off) || !ISALIGNED(addr + common->ybtm_off) ||
!ISALIGNED(addr + common->ctop_off) || !ISALIGNED(addr + common->ctop_off) ||
!ISALIGNED(addr + common->cbtm_off)) !ISALIGNED(addr + common->cbtm_off)) {
goto buf_align_exit; vpif_err("buffer offset not aligned to 8 bytes\n");
return -EINVAL;
} }
} }
return 0;
buf_align_exit: return 0;
vpif_err("buffer offset not aligned to 8 bytes\n");
return -EINVAL;
} }
/* /*
......
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