Image timestamp: differences between JetPack 4.6 and JetPack 4.6.1?

Hello,

As mentioned in a previous question (Image sequence numbers incrementing even if no image captured) we successfully use a camera connected to the Jetson Nano using a minimal device tree without a camera mode section. We use an external pixel clock and control the sensor directly using a user-space library.

As also noted we have seen several new problems with JetPack 4.6.1 (and 4.6.2) that were not there in Jetpack 4.6. One of these is that the timestamps of captured images vary significantly in JP 4.6.1 but were fairly stable in JP 4.6. One reason for this appears to be the removal of the Frame Start syncpt within the function tegra_channel_capture_frame_multi_thread (in file vi2_fops.c).

Code from JetPack 4.6:

    chan->capture_state = CAPTURE_GOOD;
    for (index = 0; index < valid_ports; index++) {
        err = nvhost_syncpt_wait_timeout_ext(chan->vi->ndev,
            chan->syncpt[index][0], thresh[index],
            chan->timeout, NULL, &ts);
        if (err) {
            dev_err(&chan->video->dev,
                "frame start syncpt timeout!%d\n", index);
            buf->state = VB2_BUF_STATE_REQUEUEING;
            /* perform error recovery for timeout */
            tegra_channel_ec_recover(chan);
            chan->capture_state = CAPTURE_TIMEOUT;
            break;
        }

        printk("%s: frame start syncpt OK\n", __func__);
        dev_dbg(&chan->video->dev,
            "%s: vi2 got SOF syncpt buf[%p]\n", __func__, buf);
    }

Since the timestamp is read immediately after this syncpt it tended to be fairly accurate. By removing this syncpt it varies wildly.

  1. Is there any particular reason why this syncpt was removed?
  2. Is there anyway to improve the accuracy of the timestamp even with the syncpt removed?

Thank you very much for your help.

Goad

1 Like

hello goad,

did you fetch the kernel sources via source_sync.sh? if yes, you’re able to check the git history to understand the background of the code changes.

Hello JerryChang,

Thanks for you quick response. I was using the source tar ball and therefore didn’t have the commit messages. I presume the relevant commit is 643a51e0:


media: tegra: camera: vi2: refactor low-latency mode code

A frame capture may fail somewhere between the frame start and the frame
end,e.g., the below error prints:

2021-11-04T10:11:31.561+00:00 kernel: [ 794.777229] tc358840 1-001f: event: resolution change (EQ_BYPS=1): 3840x2160p29.94 (4400x2250)
2021-11-04T10:11:32.167+00:00 kernel: [ 795.379917] video4linux video0: TEGRA_VI_CSI_ERROR_STATUS 0x00000000
2021-11-04T10:11:32.167+00:00 kernel: [ 795.386292] video4linux video0: TEGRA_VI_CSI_ERROR_STATUS 0x00000000
2021-11-04T10:11:32.191+00:00 kernel: [ 795.404274] vi 54080000.vi: tegra_channel_error_status:error 20022 frame 0

This means checking SOF in the capture thread doesn’t help avoid a failure
in the release thread. Hence we can simplify the capture thread to program only
the capture released settings, skip the checking of SOF and leave the checking
of vi/csi status and the recovery process to be done in the release thread.

With my limited knowledge of the hardware involved this appears to be a good explanation of the change. Thank you for that.

My second question still remains: Is there anyway to improve the regularity of the timestamp even with the syncpt removed? Perhaps I should also ask if the refactoring affected the timestamps for other cameras too, or whether we are the only ones observing this?

Thanks again for your help.

Goad

hello goad,

please share the test steps in details, we’ll try to examine this locally.
thanks

Hello JerryChang,

As mentioned in Image sequence numbers incrementing even if no image captured we are using a Sony IMX567. We set up a V4L subdevice that gives us access to the sensor registers via custom V4L ioctls. The complete register initialisation is done in user space so that we can set up different resolutions and frame rates. We then use the standard video device e.g. /dev/video0 to access the image data, just like a normal V4L application.

Unfortunately I am unable to reproduce the timestamp problem using a RaspberryPi camera and v4l2-ctl at the moment, but, in theory at least, in JetPack 4.6.1 the buffer timestamp no longer strictly conforms to the v4l definition (3.6. Buffers — The Linux Kernel documentation) which states:

For capture streams this is time when the first data byte was captured, as returned by the clock_gettime() function for the relevant clock id;

This is because, since refactoring the low-latency mode, you no longer have a SOF syncpt and so cannot be sure when the first data byte has been captured. Instead, you are now taking the time stamp from just before the frame is enqueued in the hardware. The frame will always start sometime later but you can no longer know how much later.

I will keep trying to find a way of reproducing the problem in a more standard way.

Regards,

Goad

This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.