Skip to content

Commit

Permalink
bcm2835-camera: Store kernel start time in NSEC instead of USEC
Browse files Browse the repository at this point in the history
  • Loading branch information
buddydvd committed Oct 3, 2017
1 parent 3192ba6 commit dee83b1
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 31 deletions.
38 changes: 8 additions & 30 deletions drivers/media/platform/bcm2835/bcm2835-camera.c
Original file line number Diff line number Diff line change
Expand Up @@ -363,37 +363,16 @@ static void buffer_cb(struct vchiq_mmal_instance *instance,
buf->vb.vb2_buf.timestamp);

} else if(pts != 0) {
struct timeval timestamp;
s64 runtime_us = pts -
dev->capture.vc_start_timestamp;
s64 div = 0;
s32 rem = 0;

div =
div_s64_rem(runtime_us, USEC_PER_SEC, &rem);
timestamp.tv_sec =
dev->capture.kernel_start_ts.tv_sec + div;
timestamp.tv_usec =
dev->capture.kernel_start_ts.tv_usec + rem;

if (timestamp.tv_usec >=
USEC_PER_SEC) {
timestamp.tv_sec++;
timestamp.tv_usec -=
USEC_PER_SEC;
}
buf->vb.vb2_buf.timestamp = (runtime_us * NSEC_PER_USEC) +
dev->capture.kernel_start_timestamp;
v4l2_dbg(1, bcm2835_v4l2_debug, &dev->v4l2_dev,
"Convert start time %d.%06d and %llu "
"with offset %llu to %d.%06d\n",
(int)dev->capture.kernel_start_ts.
tv_sec,
(int)dev->capture.kernel_start_ts.
tv_usec,
"Convert start time %llu (nsec) and %llu (usec) "
"with offset %llu (usec) to %llu (nsec)\n",

This comment has been minimized.

Copy link
@pelwell

pelwell Oct 3, 2017

Contributor

Either the labels or the variables are wrong in this debug message - by my reckoning none of these four variables could be called offsets, but runtime_us could.

dev->capture.kernel_start_timestamp,
dev->capture.vc_start_timestamp, pts,
(int)timestamp.tv_sec,
(int)timestamp.tv_usec);
buf->vb.vb2_buf.timestamp = timestamp.tv_sec * 1000000000ULL +
timestamp.tv_usec * 1000ULL;
buf->vb.vb2_buf.timestamp);
} else {
if (dev->capture.last_timestamp) {
buf->vb.vb2_buf.timestamp = dev->capture.last_timestamp;
Expand All @@ -403,8 +382,7 @@ static void buffer_cb(struct vchiq_mmal_instance *instance,
}
else {
buf->vb.vb2_buf.timestamp =
dev->capture.kernel_start_ts.tv_sec * 1000000000ULL +
dev->capture.kernel_start_ts.tv_usec * 1000ULL;
dev->capture.kernel_start_timestamp;
v4l2_dbg(1, bcm2835_v4l2_debug, &dev->v4l2_dev,
"Buffer time set as start timestamp - %lld",
buf->vb.vb2_buf.timestamp);
Expand Down Expand Up @@ -586,7 +564,7 @@ static int start_streaming(struct vb2_queue *vq, unsigned int count)

dev->capture.last_timestamp = 0;

v4l2_get_timestamp(&dev->capture.kernel_start_ts);
dev->capture.kernel_start_timestamp = ktime_get_ns();

/* enable the camera port */
dev->capture.port->cb_ctx = dev;
Expand Down
2 changes: 1 addition & 1 deletion drivers/media/platform/bcm2835/bcm2835-camera.h
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ struct bm2835_mmal_dev {
/* VC start timestamp for streaming */
s64 vc_start_timestamp;
/* Kernel start timestamp for streaming */
struct timeval kernel_start_ts;
u64 kernel_start_timestamp;
/* Timestamp of last frame */
u64 last_timestamp;

Expand Down

1 comment on commit dee83b1

@pelwell
Copy link
Contributor

@pelwell pelwell commented on dee83b1 Oct 3, 2017

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Apart from my comment on the debug message I have no objections - it's a nice improvement and simplification.

Please sign in to comment.