hello prapor,
please check Sensor Software Driver Programming Guide, it’s Sensor Pixel Clock to calculate the exposure and frame rate of the sensor.
also,
the sensor resolution is not the final output size. It is the total number of pixels the sensor used to generate the final output size.
assume you’d download this package to enable support for Raspberry Pi IMX477 for Jetson Nano 2GB.
you may disassembler the dtb binary into text file for checking pixel clock settings, it’s pix_clk_hz = "840000000"; in the configuration.
for example,
dtc -I dtb -O dts -o output.txt tegra210-p3448-0003-p3542-0000.dtb
after that,
you’ll need to check frame length and line length for getting this, you may looking into imx477_mode_tbls.h for default settings.
for example, it’s 0x342-0x343 for the line length, and 0x340-0x341 for the frame length.
the calculation formula is shown as…9024 * 3102 * 30 = 839,773,440.
hence, the configure of the sensor pixel clock as 840,000,000, in the device tree property.
thanks