SCF: Error Timeout: (propagating from src/services/capture/CaptureServiceEvent.cpp, function wait(), line 59)

Hi,

I’ve designed my own IMX385 sensor board and tried to take image from it by using Nvidia Jetson TX2 and Ubuntu 16.04.
I used the function below in terminal:

gst-launch-1.0 nvcamerasrc sensor-id=0 ! 'video/x-raw(memory:NVMM), width=(int)1920, height=(int)1080, framerate=60/1' ! nvvidconv flip-method=0 ! 'video/x-raw, format=(string)I420' ! xvimagesink -e

But shown screen is green and it is closed after 10 seconds.
The error message in terminal is:

Setting pipeline to PAUSED ...

Available Sensor modes : 
1920 x 1080 FR=30.000000 CF=0x1009208a10 SensorModeType=4 CSIPixelBitDepth=10 DynPixelBitDepth=10
Pipeline is live and does not need PREROLL ...
Setting pipeline to PLAYING ...
New clock: GstSystemClock

NvCameraSrc: Trying To Set Default Camera Resolution. Selected sensorModeIndex = 0 WxH = 1920x1080 FrameRate = 30.000000 ...

WARNING: from element /GstPipeline:pipeline0/GstXvImageSink:xvimagesink0: A lot of buffers are being dropped.
Additional debug info:
gstbasesink.c(2854): gst_base_sink_is_too_late (): /GstPipeline:pipeline0/GstXvImageSink:xvimagesink0:
There may be a timestamping problem, or this computer is too slow.
WARNING: from element /GstPipeline:pipeline0/GstXvImageSink:xvimagesink0: A lot of buffers are being dropped.
Additional debug info:
gstbasesink.c(2854): gst_base_sink_is_too_late (): /GstPipeline:pipeline0/GstXvImageSink:xvimagesink0:
There may be a timestamping problem, or this computer is too slow.
Received error from camera daemon....exiting....
Socket read error. Camera Daemon stopped functioning.....
Got EOS from element "pipeline0".
Execution ended after 0:00:18.033107108
Setting pipeline to PAUSED ...
Setting pipeline to READY ...
Setting pipeline to NULL ...
Freeing pipeline ...

dmesg log is:
https://paste.ubuntu.com/p/tSzb2Q57CB/

I took the nvcamera-daemon log:
https://paste.ubuntu.com/p/BP5rKh6GFq/

And the debug message is:
https://paste.ubuntu.com/p/vM5byDbQ37/

I followed the link below for debug:
https://elinux.org/Jetson_TX2_Camera_BringUp

What can I try to solve this problem?

This may not be the cause, but the driver reports 1920x1080@30fps, while you are trying to run it at 60fps. Is it the same with the following command ?

gst-launch-1.0 -ev nvcamerasrc ! 'video/x-raw(memory:NVMM), width=1920, height=1080, framerate=<b>30</b>/1' ! nvvidconv ! xvimagesink

Thank you for suggestion, but I also didn’t take a good result after changing framerate to 30/1.

@mesut.sen
Have you verify the by the v4l2-ctl pipeline?
Please try v4l2-ctl pipeline and get the trace to check.

thank you for your suggestion.
I’ve found the problem. In software I’m using the IMX385 sensor as master but XMASTER pin was connected to 1V8 which is for SLAVE operations. When I connected XMASTER pin to ground, the live video was occured.