@@ -523,7 +523,7 @@ static struct vimc_frame *vimc_cap_process_frame(struct vimc_ent_device *ved,
struct vimc_cap_device *vcap = container_of(ved, struct vimc_cap_device,
ved);
struct vimc_cap_buffer *vimc_buf;
- void *vbuf;
+ unsigned int i;
spin_lock(&vcap->qlock);
@@ -545,13 +545,17 @@ static struct vimc_frame *vimc_cap_process_frame(struct vimc_ent_device *ved,
vimc_buf->vb2.sequence = vcap->sequence++;
vimc_buf->vb2.field = vcap->format.fmt.pix.field;
- vbuf = vb2_plane_vaddr(&vimc_buf->vb2.vb2_buf, 0);
+ /* For each plane, copy the pixels */
+ for (i = 0; i < vimc_buf->vb2.vb2_buf.num_planes; i++) {
+ void *vbuf = vb2_plane_vaddr(&vimc_buf->vb2.vb2_buf, i);
+ size_t plane_size = frame->fmt.plane_fmt[i].sizeimage;
+
+ memcpy(vbuf, frame->plane_addr[i], plane_size);
- memcpy(vbuf, frame->plane_addr[0], vcap->format.fmt.pix.sizeimage);
+ /* Set it as ready */
+ vb2_set_plane_payload(&vimc_buf->vb2.vb2_buf, i, plane_size);
+ }
- /* Set it as ready */
- vb2_set_plane_payload(&vimc_buf->vb2.vb2_buf, 0,
- vcap->format.fmt.pix.sizeimage);
vb2_buffer_done(&vimc_buf->vb2.vb2_buf, VB2_BUF_STATE_DONE);
return NULL;
}