Hi ,
I have brought up camera use raw8 format in i.mx 8 mini,i want to bring up raw10,
i change the code below:
sensor driver:
1. use the same camera sensor register but only change raw8 to raw10,
2. change colour_fmts from MEDIA_BUS_FMT_SBGGR8_1X8 to MEDIA_BUS_FMT_SBGGR10_1X10
CSI driver:
3.add support forV4L2_PIX_FMT_SBGGR10 in mx6s_configure_csi(mx6s_capture.c)
+ case V4L2_PIX_FMT_SBGGR10:
+ width = pix->width * 2;
+ case V4L2_PIX_FMT_SBGGR10:
+ cr18 |= BIT_MIPI_DATA_FORMAT_RAW10;
+ break;
i use v4l2 App to capture frame,but get error code "base address switching Change Err."
is there any other place should i change to support raw10 ?
BR,