@@ -339,7 +339,7 @@ static int sh_mobile_ceu_videobuf_prepar
}
vb->size = vb->width * vb->height * ((buf->fmt->depth + 7) >> 3);
- if (0 != vb->baddr && vb->bsize < vb->size) {
+ if (0 != vb->baddr && vb->bsize < vb->size && !(vb->width & 3)) {
ret = -EINVAL;
goto out;
}
@@ -348,6 +348,13 @@ static int sh_mobile_ceu_videobuf_prepar
ret = videobuf_iolock(vq, vb, NULL);
if (ret)
goto fail;
+
+ /* the physical address must be 32-bit aligned (USERPTR) */
+ if (videobuf_to_dma_contig(vb) & 3) {
+ ret = -EINVAL;
+ goto fail;
+ }
+
vb->state = VIDEOBUF_PREPARED;
}