Hi, TI experts.
We are working on several cameras connect to CSIRX via max9286/max9296 deserializes.(we are using PSDK8.00)
The HW connections are as follows,
TDA4EVM CSI0 ---> MAX9286 ---> 4 * MAX96705 ----> 4 * sensor
As we use YUYV camera, we skipped all VISS, LDC nodes and configure a CSIRX -> DP display graph.(works, image captured correctly)
howerver we use RAW camera without ISP ,it cannot work.
1、The chip configuration of 9286 + 96705 has been locked, and the data output from 9286 to CSI0 can be tested with an oscilloscope;
2、Camera without ISP (CSI-2 Output uses RAW11/RAW12) ({TIVX_RAW_IMAGE_16_BIT, 11}), found no data update;
3、cameras without ISP (CSI-2 Output uses YUV 422 8-bit) ({VX_DF_IMAGE_UYVY, 7}), change the output format of 9286 to (YUV 422-8 bit), and then there is a data update (9286+ 92705l configuration is valid) The following is a screenshot of the data;
9286:
0x12=0xf3:CSI-2 Output uses YUV 422 8-bit
0x12=0xf7:CSI-2 Output uses RAW11/RAW12
question:
1、LaneBandSpeed=w * h * fps * bpp * blanking / (1024 * 1024 * lane_num),
when:{VX_DF_IMAGE_UYVY, 7}, bpp: 16, blanking: 1.2, w: 1344 h: 968 fps: 30
I want to confirm: {TIVX_RAW_IMAGE_16_BIT, 11}: bpp=? blanking=?(16 and 1.2) (I checked the official website for similar problems, it seems that bpp should be changed to 24), please help to confirm?
2、We want to use the V4l2 framework of linux. Is it supported by SDK8.1? We can adjust the camera on the Linux side on 8.1.
3、 Can you give some advices on debugging the raw camera?(9286+96705)