Hi NVIDIA team,
We are bringing up a Maxim MAX96724 + MAX9295 + Sony ISX031 module on Jetson AGX Thor, JetPack 7.2 (L4T R39.2) using SIPL + UDDF (Camera HAL / -H).
Working reference (legacy V4L2):
UYVY 1920×1536 @ 30 fps. VI logs show csi_stream=2, vc=1, VI_PIXFMT_FORMAT_T_U8_Y8__V8_Y8. Deserializer DT is YUV422-8 on VC1 (0x1E/0x5E).
SIPL issue:
nvsipl_queryJSONinputFormatvalues such asyuv422/uyvyare not accepted (fall back to RAW12). The SIPL Query JSON Guide lists onlyraw*for GMSL.- Forcing
NVSIPL_CAP_INPUT_FORMAT_TYPE_YUV422+NVSIPL_PIXEL_ORDER_UYVYafter parse causesSetPlatformConfig(Camera HAL) to fail withNVSIPL_STATUS_ERROR. uddf::ddi::PixPackingTypeonly defines RAW10/12/16;libnvcamerahal.socontains"Unsupported input format: %d".- With
inputFormat: raw16, Init/Start succeed and GMSL locks, but VI is programmed asT_R16/vc=0and we getNOTIF_WARN_ICP_CAPTURE_TIMEOUT(0 frames).
Questions:
- Is YUV422-8 / UYVY ICP supported on the GMSL Camera HAL path in JP7.2?
- If yes, what are the correct JSON
inputFormat/cfatokens (or required API overrides)? - If not, is support planned, or is the recommended approach to keep V4L2 for YUV GMSL cameras?
Thank you.