* and the timecode field and flag if needed.
                 */
                if (q->copy_timestamp)
-                       vb->timestamp = v4l2_timeval_to_ns(&b->timestamp);
+                       vb->timestamp = v4l2_buffer_get_timestamp(b);
                vbuf->flags |= b->flags & V4L2_BUF_FLAG_TIMECODE;
                if (b->flags & V4L2_BUF_FLAG_TIMECODE)
                        vbuf->timecode = b->timecode;
 
        b->flags = vbuf->flags;
        b->field = vbuf->field;
-       b->timestamp = ns_to_timeval(vb->timestamp);
+       v4l2_buffer_set_timestamp(b, vb->timestamp);
        b->timecode = vbuf->timecode;
        b->sequence = vbuf->sequence;
        b->reserved2 = 0;
 
                buf->flags |= V4L2_BUF_FLAG_DONE;
 
        buf->field = V4L2_FIELD_NONE;
-       buf->timestamp = ns_to_timeval(meye.grab_buffer[index].ts);
+       v4l2_buffer_set_timestamp(buf, meye.grab_buffer[index].ts);
        buf->sequence = meye.grab_buffer[index].sequence;
        buf->memory = V4L2_MEMORY_MMAP;
        buf->m.offset = index * gbufsize;
        buf->bytesused = meye.grab_buffer[reqnr].size;
        buf->flags = V4L2_BUF_FLAG_MAPPED | V4L2_BUF_FLAG_TIMESTAMP_MONOTONIC;
        buf->field = V4L2_FIELD_NONE;
-       buf->timestamp = ns_to_timeval(meye.grab_buffer[reqnr].ts);
+       v4l2_buffer_set_timestamp(buf, meye.grab_buffer[reqnr].ts);
        buf->sequence = meye.grab_buffer[reqnr].sequence;
        buf->memory = V4L2_MEMORY_MMAP;
        buf->m.offset = reqnr * gbufsize;
 
                break;
        case FRAME_READY:
                buf->bytesused = cam->buffers[buf->index].length;
-               buf->timestamp = ns_to_timeval(cam->buffers[buf->index].ts);
+               v4l2_buffer_set_timestamp(buf, cam->buffers[buf->index].ts);
                buf->sequence = cam->buffers[buf->index].seq;
                buf->flags = V4L2_BUF_FLAG_DONE;
                break;
        buf->flags = V4L2_BUF_FLAG_MAPPED | V4L2_BUF_FLAG_DONE
                | V4L2_BUF_FLAG_TIMESTAMP_MONOTONIC;
        buf->field = V4L2_FIELD_NONE;
-       buf->timestamp = ns_to_timeval(cam->buffers[buf->index].ts);
+       v4l2_buffer_set_timestamp(buf, cam->buffers[buf->index].ts);
        buf->sequence = cam->buffers[buf->index].seq;
        buf->m.offset = cam->buffers[buf->index].data - cam->frame_buffer;
        buf->length = cam->frame_size;
 
        sbuf->v4lbuf.flags &= ~V4L2_BUF_FLAG_QUEUED;
        sbuf->v4lbuf.flags |= V4L2_BUF_FLAG_DONE;
        sbuf->v4lbuf.sequence = ++dev->sequence;
-       sbuf->v4lbuf.timestamp = ns_to_timeval(ktime_get_ns());
+       v4l2_buffer_set_timestamp(&sbuf->v4lbuf, ktime_get_ns());
 
        *buf = sbuf->v4lbuf;
        return 0;
 
        vb->length = usbvision->curwidth *
                usbvision->curheight *
                usbvision->palette.bytes_per_pixel;
-       vb->timestamp = ns_to_timeval(usbvision->frame[vb->index].ts);
+       v4l2_buffer_set_timestamp(vb, usbvision->frame[vb->index].ts);
        vb->sequence = usbvision->frame[vb->index].sequence;
        return 0;
 }
                V4L2_BUF_FLAG_TIMESTAMP_MONOTONIC;
        vb->index = f->index;
        vb->sequence = f->sequence;
-       vb->timestamp = ns_to_timeval(f->ts);
+       v4l2_buffer_set_timestamp(vb, f->ts);
        vb->field = V4L2_FIELD_NONE;
        vb->bytesused = f->scanlength;
 
 
 #include <linux/interrupt.h>
 
 #include <media/videobuf-core.h>
+#include <media/v4l2-common.h>
 
 #define MAGIC_BUFFER 0x20070728
 #define MAGIC_CHECK(is, should)                                                \
        }
 
        b->field     = vb->field;
-       b->timestamp = ns_to_timeval(vb->ts);
+       v4l2_buffer_set_timestamp(b, vb->ts);
        b->bytesused = vb->size;
        b->sequence  = vb->field_count >> 1;
 }
                    || q->type == V4L2_BUF_TYPE_SDR_OUTPUT) {
                        buf->size = b->bytesused;
                        buf->field = b->field;
-                       buf->ts = v4l2_timeval_to_ns(&b->timestamp);
+                       buf->ts = v4l2_buffer_get_timestamp(b);
                }
                break;
        case V4L2_MEMORY_USERPTR:
 
 #ifndef V4L2_COMMON_H_
 #define V4L2_COMMON_H_
 
+#include <linux/time.h>
 #include <media/v4l2-dev.h>
 
 /* Common printk constructs for v4l-i2c drivers. These macros create a unique
 int v4l2_fill_pixfmt_mp(struct v4l2_pix_format_mplane *pixfmt, u32 pixelformat,
                        u32 width, u32 height);
 
+static inline u64 v4l2_buffer_get_timestamp(const struct v4l2_buffer *buf)
+{
+       /*
+        * When the timestamp comes from 32-bit user space, there may be
+        * uninitialized data in tv_usec, so cast it to u32.
+        * Otherwise allow invalid input for backwards compatibility.
+        */
+       return buf->timestamp.tv_sec * NSEC_PER_SEC +
+               (u32)buf->timestamp.tv_usec * NSEC_PER_USEC;
+}
+
+static inline void v4l2_buffer_set_timestamp(struct v4l2_buffer *buf,
+                                            u64 timestamp)
+{
+       struct timespec64 ts = ns_to_timespec64(timestamp);
+
+       buf->timestamp.tv_sec  = ts.tv_sec;
+       buf->timestamp.tv_usec = ts.tv_nsec / NSEC_PER_USEC;
+}
+
 #endif /* V4L2_COMMON_H_ */
 
                __entry->bytesused = buf->bytesused;
                __entry->flags = buf->flags;
                __entry->field = buf->field;
-               __entry->timestamp = timeval_to_ns(&buf->timestamp);
+               __entry->timestamp = v4l2_buffer_get_timestamp(buf);
                __entry->timecode_type = buf->timecode.type;
                __entry->timecode_flags = buf->timecode.flags;
                __entry->timecode_frames = buf->timecode.frames;
 
        };
 };
 
+#ifndef __KERNEL__
 /**
  * v4l2_timeval_to_ns - Convert timeval to nanoseconds
  * @ts:                pointer to the timeval variable to be converted
 {
        return (__u64)tv->tv_sec * 1000000000ULL + tv->tv_usec * 1000;
 }
+#endif
 
 /*  Flags for 'flags' field */
 /* Buffer is mapped (flag) */