<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: CSI capture of iMX7 in i.MX Processors</title>
    <link>https://community.nxp.com/t5/i-MX-Processors/CSI-capture-of-iMX7/m-p/780006#M121199</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi ko-za&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;additionally packing can be performed in pxp, as described in&lt;/P&gt;&lt;P&gt;sect.13.7.9.3.3 Data Packing i.MX7D Reference Manual, tests are in&lt;/P&gt;&lt;P&gt;/pxp_v4l2_test:&lt;/P&gt;&lt;P&gt;&lt;A class="link-titled" href="https://source.codeaurora.org/external/imx/imx-test/tree/test/pxp_v4l2_test?h=nxp/imx_4.9.11_1.0.0_ga" title="https://source.codeaurora.org/external/imx/imx-test/tree/test/pxp_v4l2_test?h=nxp/imx_4.9.11_1.0.0_ga"&gt;pxp_v4l2_test\test - imx-test - i.MX Driver Test Application Software&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best regards&lt;BR /&gt;igor&lt;BR /&gt;-----------------------------------------------------------------------------------------------------------------------&lt;BR /&gt;Note: If this post answers your question, please click the Correct Answer button. Thank you!&lt;BR /&gt;-----------------------------------------------------------------------------------------------------------------------&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 14 Jun 2018 05:56:04 GMT</pubDate>
    <dc:creator>igorpadykov</dc:creator>
    <dc:date>2018-06-14T05:56:04Z</dc:date>
    <item>
      <title>CSI capture of iMX7</title>
      <link>https://community.nxp.com/t5/i-MX-Processors/CSI-capture-of-iMX7/m-p/780005#M121198</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;I have a question about i.MX7 MIPI - CSI.&lt;/P&gt;&lt;P&gt;In the reference manual (i.MX 7 Dual Applications Processor Reference Manual Rev 1)&lt;BR /&gt;13.3 CMOS Sensor Interface (CSI)&lt;BR /&gt;"· Full control of 8-bit / pixel, 10-bit / pixel or 16-bit / pixel data format to 64-bit receive FIFO packing."&lt;BR /&gt;Although it is described, since RGB888 is 24-bit / pixel, does not it correspond?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;The functions I use are as follows&lt;BR /&gt;&amp;nbsp; V4L2&lt;BR /&gt;&amp;nbsp; &amp;nbsp;↓&lt;BR /&gt;&amp;nbsp; CSI&lt;BR /&gt;&amp;nbsp; &amp;nbsp;↓&lt;BR /&gt;&amp;nbsp; MIPI-CSI 2&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;When I looked at the CSI driver of IMX 7, there was no implementation of RGB 888.&lt;BR /&gt;/drivers/media/platform/mxc/subdev/mx6s_capture.c&lt;/P&gt;&lt;P&gt;&amp;nbsp;static struct mx6s_fmt formats[] = {&lt;BR /&gt;&amp;nbsp; {&lt;BR /&gt;&amp;nbsp; &amp;nbsp; .name = "UYVY-16",&lt;BR /&gt;&amp;nbsp; &amp;nbsp; .fourcc = V4L2_PIX_FMT_UYVY,&lt;BR /&gt;&amp;nbsp; &amp;nbsp; .pixelformat = V4L2_PIX_FMT_UYVY,&lt;BR /&gt;&amp;nbsp; &amp;nbsp; .mbus_code = MEDIA_BUS_FMT_UYVY8_2X8,&lt;BR /&gt;&amp;nbsp; &amp;nbsp; .bpp = 2,&lt;BR /&gt;&amp;nbsp; }, {&lt;BR /&gt;&amp;nbsp; &amp;nbsp; .name = "YUYV-16",&lt;BR /&gt;&amp;nbsp; &amp;nbsp; .fourcc = V4L2_PIX_FMT_YUYV,&lt;BR /&gt;&amp;nbsp; &amp;nbsp; .pixelformat = V4L2_PIX_FMT_YUYV,&lt;BR /&gt;&amp;nbsp; &amp;nbsp; .mbus_code = MEDIA_BUS_FMT_YUYV8_2X8,&lt;BR /&gt;&amp;nbsp; &amp;nbsp; .bpp = 2,&lt;BR /&gt;&amp;nbsp; }, {&lt;BR /&gt;&amp;nbsp; &amp;nbsp; .name = "YUV32 (X-Y-U-V)",&lt;BR /&gt;&amp;nbsp; &amp;nbsp; .fourcc = V4L2_PIX_FMT_YUV32,&lt;BR /&gt;&amp;nbsp; &amp;nbsp; .pixelformat = V4L2_PIX_FMT_YUV32,&lt;BR /&gt;&amp;nbsp; &amp;nbsp; .mbus_code = MEDIA_BUS_FMT_AYUV8_1X32,&lt;BR /&gt;&amp;nbsp; &amp;nbsp; .bpp = 4,&lt;BR /&gt;&amp;nbsp; }, {&lt;BR /&gt;&amp;nbsp; &amp;nbsp; .name = "RAWRGB8 (SBGGR8)",&lt;BR /&gt;&amp;nbsp; &amp;nbsp; .fourcc = V4L2_PIX_FMT_SBGGR8,&lt;BR /&gt;&amp;nbsp; &amp;nbsp; .pixelformat = V4L2_PIX_FMT_SBGGR8,&lt;BR /&gt;&amp;nbsp; &amp;nbsp; .mbus_code = MEDIA_BUS_FMT_SBGGR8_1X8,&lt;BR /&gt;&amp;nbsp; &amp;nbsp; .bpp = 1,&lt;BR /&gt;&amp;nbsp; }&lt;BR /&gt;&amp;nbsp;};&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;I tried to implement whether RGB888 can be used for testing.&lt;BR /&gt;It seemed that the data that can be acquired was aligned to 32 bits. (0 is packed in RGB888)&lt;BR /&gt;I hope 0 can capture unpacked data, but I want to know if that is possible.&lt;/P&gt;&lt;P&gt;Thank you.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 13 Jun 2018 15:39:50 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-Processors/CSI-capture-of-iMX7/m-p/780005#M121198</guid>
      <dc:creator>tekuno27</dc:creator>
      <dc:date>2018-06-13T15:39:50Z</dc:date>
    </item>
    <item>
      <title>Re: CSI capture of iMX7</title>
      <link>https://community.nxp.com/t5/i-MX-Processors/CSI-capture-of-iMX7/m-p/780006#M121199</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi ko-za&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;additionally packing can be performed in pxp, as described in&lt;/P&gt;&lt;P&gt;sect.13.7.9.3.3 Data Packing i.MX7D Reference Manual, tests are in&lt;/P&gt;&lt;P&gt;/pxp_v4l2_test:&lt;/P&gt;&lt;P&gt;&lt;A class="link-titled" href="https://source.codeaurora.org/external/imx/imx-test/tree/test/pxp_v4l2_test?h=nxp/imx_4.9.11_1.0.0_ga" title="https://source.codeaurora.org/external/imx/imx-test/tree/test/pxp_v4l2_test?h=nxp/imx_4.9.11_1.0.0_ga"&gt;pxp_v4l2_test\test - imx-test - i.MX Driver Test Application Software&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best regards&lt;BR /&gt;igor&lt;BR /&gt;-----------------------------------------------------------------------------------------------------------------------&lt;BR /&gt;Note: If this post answers your question, please click the Correct Answer button. Thank you!&lt;BR /&gt;-----------------------------------------------------------------------------------------------------------------------&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 14 Jun 2018 05:56:04 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-Processors/CSI-capture-of-iMX7/m-p/780006#M121199</guid>
      <dc:creator>igorpadykov</dc:creator>
      <dc:date>2018-06-14T05:56:04Z</dc:date>
    </item>
  </channel>
</rss>

