<?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: iMX8MP with 2 cameras using ISP in i.MX Processors</title>
    <link>https://community.nxp.com/t5/i-MX-Processors/iMX8MP-with-2-cameras-using-ISP/m-p/1394254#M185360</link>
    <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am already based on those dtb files. My dtb is in my original post.&lt;/P&gt;&lt;P&gt;Also, both devices are correctly seen by the Kernel, the corresponding /dev are correctly mounted, and the links are also created. From hw point of view, or at Linux level, it seems everything is fine, but I can just use a single camera, the other one is not seen from Android.&lt;/P&gt;&lt;P&gt;Besides, I don't know if this is an issue, but isp_media_server only opens /dev/video0, never /dev/video1... and I am not even sure the Sensor1_Entry.cfg is then really parsed?&lt;/P&gt;</description>
    <pubDate>Tue, 04 Jan 2022 13:00:44 GMT</pubDate>
    <dc:creator>Charled</dc:creator>
    <dc:date>2022-01-04T13:00:44Z</dc:date>
    <item>
      <title>iMX8MP with 2 cameras using ISP</title>
      <link>https://community.nxp.com/t5/i-MX-Processors/iMX8MP-with-2-cameras-using-ISP/m-p/1393554#M185258</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;I am trying to use 2 different cameras (in ISP mode) on the EVK board with iMX8MP chipset. I am running Android&amp;nbsp;11.0.0_1.2.0.&lt;/P&gt;&lt;P&gt;The camera devices are:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;Default Basler provided by NXP&lt;/LI&gt;&lt;LI&gt;OV5640, with a 1st porting to ISP mode (because the default BSP only provide the ISI mode)&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;I am able to use them individually (separately), when they are connected to CSI1.&lt;/P&gt;&lt;P&gt;Now I want to use Basler on CSI1, and OV5640 on CSI2, but then only Basler is seen, and I cannot use OV5640.&lt;/P&gt;&lt;P&gt;Here is the dts I use (based on the default imx8mp-evk-basler.dts):&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;// SPDX-License-Identifier: (GPL-2.0+ OR MIT)
/*
 * Copyright 2020 NXP
 *
 * This program is free software; you can redistribute it and/or
 * modify it under the terms of the GNU General Public License
 * as published by the Free Software Foundation; either version 2
 * of the License, or (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 */

#include "imx8mp-evk.dts"

&amp;amp;i2c2 {
	/delete-node/ov5640_mipi@3c;

	basler_camera@36 {
		compatible = "basler,basler-camera-vvcam", "basler-camera-vvcam";
		reg = &amp;lt;0x36&amp;gt;;
		csi_id = &amp;lt;0x00&amp;gt;;
		status = "okay";

		port {
			basler_ep_0: endpoint {
				data-lanes = &amp;lt;1 2 3 4&amp;gt;;
				clock-lanes = &amp;lt;0&amp;gt;;
				link-frequencies = /bits/ 64 &amp;lt;248000000&amp;gt;;
				remote-endpoint = &amp;lt;&amp;amp;mipi_csi0_ep&amp;gt;;
			};
		};
	};
};

&amp;amp;mipi_csi_0 {
	status = "okay";

	port@0 {
		mipi_csi0_ep: endpoint {
			remote-endpoint = &amp;lt;&amp;amp;basler_ep_0&amp;gt;;
			data-lanes = &amp;lt;4&amp;gt;;
			csis-hs-settle = &amp;lt;16&amp;gt;;
		};
	};
};

&amp;amp;ov5640_1 {
	powerdown-gpios = &amp;lt;&amp;amp;gpio2 11 GPIO_ACTIVE_HIGH&amp;gt;;
	reset-gpios = &amp;lt;&amp;amp;gpio1 6 GPIO_ACTIVE_LOW&amp;gt;;
	compatible = "ovti,ov5640_isp";
	csi_id = &amp;lt;1&amp;gt;;

	status = "okay";
};

&amp;amp;mipi_csi_1 {
	status = "okay";
};

&amp;amp;isi_0 {
	status = "disabled";
};

&amp;amp;isi_1 {
	status = "disabled";
};

&amp;amp;isp_0 {
	status = "okay";
};

&amp;amp;isp_1 {
	status = "okay";
};

&amp;amp;dewarp {
	status = "okay";
};&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Both camera are detected by the hw and the kernel, and I can see the kernel creating the corresponding devices and their links.&lt;/P&gt;&lt;P&gt;I have used 2 config files &lt;EM&gt;Sensor0_Entry.cfg&lt;/EM&gt; and &lt;EM&gt;Sensor1_Entry.cfg&lt;/EM&gt; in order to allow &lt;EM&gt;isp_media_server&lt;/EM&gt; to find the information for both cameras.&lt;/P&gt;&lt;P&gt;But I cannot use the OV5640 Camera connected on CSI2 (ISP1).&lt;/P&gt;&lt;P&gt;I have also investigated to use only OV5640 on CSI2, without nothing connected on CSI1... without success.&lt;/P&gt;&lt;P&gt;Anyone here who faced the same issue? Any idea how to fix that?&lt;/P&gt;&lt;P&gt;Is there a way to configure only a single camera on CSI2 (and then mapped on ISP1)?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks for your support,&lt;/P&gt;&lt;P&gt;Charles-Edouard&lt;/P&gt;</description>
      <pubDate>Fri, 31 Dec 2021 14:50:23 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-Processors/iMX8MP-with-2-cameras-using-ISP/m-p/1393554#M185258</guid>
      <dc:creator>Charled</dc:creator>
      <dc:date>2021-12-31T14:50:23Z</dc:date>
    </item>
    <item>
      <title>Re: iMX8MP with 2 cameras using ISP</title>
      <link>https://community.nxp.com/t5/i-MX-Processors/iMX8MP-with-2-cameras-using-ISP/m-p/1393606#M185271</link>
      <description>&lt;P&gt;Hi Charles,&lt;/P&gt;&lt;P&gt;In Linux, there's run.sh script (/opt/imx8-isp/bin/) which is part of isp-imx that is in charge of loading .drv, XML, .json, isp_media_server and ISP based sensor drivers. But it supports single camera sensor or dual but identical camera sensors. You can try to modify it to run single ov5640 camera. But I'm not sure if the use-case of 2 different cameras is supported.&lt;/P&gt;&lt;P&gt;Best Regards.&lt;/P&gt;&lt;P&gt;Khang&lt;/P&gt;</description>
      <pubDate>Sun, 02 Jan 2022 07:41:55 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-Processors/iMX8MP-with-2-cameras-using-ISP/m-p/1393606#M185271</guid>
      <dc:creator>khang_letruong</dc:creator>
      <dc:date>2022-01-02T07:41:55Z</dc:date>
    </item>
    <item>
      <title>Re: iMX8MP with 2 cameras using ISP</title>
      <link>https://community.nxp.com/t5/i-MX-Processors/iMX8MP-with-2-cameras-using-ISP/m-p/1393704#M185289</link>
      <description>&lt;P&gt;Thanks&amp;nbsp;&lt;a href="https://community.nxp.com/t5/user/viewprofilepage/user-id/147542"&gt;@khang_letruong&lt;/a&gt;,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Unfortunately, I am using an Android BSP&amp;nbsp;11.0.0_1.2.0, not Linux. The isp-imx package I have is&amp;nbsp;4.2.2.6.0.&lt;/P&gt;&lt;P&gt;Moreover, the isp_media_server process is started with a json file as parameter, not an ID indicating if I want to use CAMERA0, CAMERA1, or both.&lt;/P&gt;&lt;P&gt;Which solution do I have with my current BSP and isp-imx package, considering I cannot modify the isp_media_server, because it cannot be compiled and used under Android in this package version?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Best Regards&lt;/P&gt;</description>
      <pubDate>Mon, 03 Jan 2022 09:17:01 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-Processors/iMX8MP-with-2-cameras-using-ISP/m-p/1393704#M185289</guid>
      <dc:creator>Charled</dc:creator>
      <dc:date>2022-01-03T09:17:01Z</dc:date>
    </item>
    <item>
      <title>Re: iMX8MP with 2 cameras using ISP</title>
      <link>https://community.nxp.com/t5/i-MX-Processors/iMX8MP-with-2-cameras-using-ISP/m-p/1393777#M185298</link>
      <description>&lt;P&gt;Hi &lt;a href="https://community.nxp.com/t5/user/viewprofilepage/user-id/186156"&gt;@Charled&lt;/a&gt; ,&lt;/P&gt;&lt;P&gt;I haven't worked with Android for NXP's iMX platforms yet. But I think similar to their Linux (Yocto), there should be a way to re-compile the source code from scratch for custom use-case like yours. Please have a look at this : &lt;A href="https://www.nxp.com/docs/en/user-guide/ANDROID_USERS_GUIDE.pdf" target="_blank" rel="noopener"&gt;https://www.nxp.com/docs/en/user-guide/ANDROID_USERS_GUIDE.pdf&lt;/A&gt;&lt;/P&gt;&lt;P&gt;Also, isp-imx-4.2.2.6.0 seems to be very initial version. You can try newer Android versions here : &lt;A href="https://www.nxp.com/design/software/embedded-software/i-mx-software/android-os-for-i-mx-applications-processors:IMXANDROID?tab=Documentation_Tab" target="_blank" rel="noopener"&gt;https://www.nxp.com/design/software/embedded-software/i-mx-software/android-os-for-i-mx-applications-processors:IMXANDROID?tab=Documentation_Tab&lt;/A&gt;&lt;/P&gt;&lt;P&gt;Best regards,&lt;/P&gt;&lt;P&gt;Khang&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 03 Jan 2022 14:03:15 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-Processors/iMX8MP-with-2-cameras-using-ISP/m-p/1393777#M185298</guid>
      <dc:creator>khang_letruong</dc:creator>
      <dc:date>2022-01-03T14:03:15Z</dc:date>
    </item>
    <item>
      <title>Re: iMX8MP with 2 cameras using ISP</title>
      <link>https://community.nxp.com/t5/i-MX-Processors/iMX8MP-with-2-cameras-using-ISP/m-p/1394102#M185346</link>
      <description>&lt;P&gt;why don't you use imx8mp-evk-basler-ov5640.dtb? which is for dual camera basler plus ov5640, ov5640 with built-in ISP uses ISI&lt;/P&gt;</description>
      <pubDate>Tue, 04 Jan 2022 08:48:59 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-Processors/iMX8MP-with-2-cameras-using-ISP/m-p/1394102#M185346</guid>
      <dc:creator>joanxie</dc:creator>
      <dc:date>2022-01-04T08:48:59Z</dc:date>
    </item>
    <item>
      <title>Re: iMX8MP with 2 cameras using ISP</title>
      <link>https://community.nxp.com/t5/i-MX-Processors/iMX8MP-with-2-cameras-using-ISP/m-p/1394199#M185355</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.nxp.com/t5/user/viewprofilepage/user-id/39586"&gt;@joanxie&lt;/a&gt;,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The difficulty is that OV5640 works in ISI mode by default. I need to use 2 camera devices in ISP mode because my devices only support Bayer output format.&lt;/P&gt;&lt;P&gt;For my tests, I use an EVK board, a Basler connected to CSI1 with ISP0, and I would like to have the OV5640 connected to CSI2, with ISP1.&lt;BR /&gt;I have a 1st OV5640 porting on ISP, meaning I can use it alone on CSI1 with ISP0, but I didn't find any way to support 2 devices each one connected on a different ISP module.&lt;/P&gt;&lt;P&gt;BR&lt;/P&gt;</description>
      <pubDate>Tue, 04 Jan 2022 10:40:19 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-Processors/iMX8MP-with-2-cameras-using-ISP/m-p/1394199#M185355</guid>
      <dc:creator>Charled</dc:creator>
      <dc:date>2022-01-04T10:40:19Z</dc:date>
    </item>
    <item>
      <title>Re: iMX8MP with 2 cameras using ISP</title>
      <link>https://community.nxp.com/t5/i-MX-Processors/iMX8MP-with-2-cameras-using-ISP/m-p/1394248#M185358</link>
      <description>&lt;P&gt;why don't you refer to the dual basler dtb, dual ov2775 basler dtb or basler+ov2775 dtb?&lt;/P&gt;
&lt;P&gt;"&lt;A href="https://source.codeaurora.org/external/imx/linux-imx/tree/arch/arm64/boot/dts/freescale/imx8mp-evk-dual-basler.dts?h=lf-5.10.y&amp;quot;" target="_blank" rel="noopener"&gt;https://source.codeaurora.org/external/imx/linux-imx/tree/arch/arm64/boot/dts/freescale/imx8mp-evk-dual-basler.dts?h=lf-5.10.y"&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;"&lt;A href="https://source.codeaurora.org/external/imx/linux-imx/tree/arch/arm64/boot/dts/freescale/imx8mp-evk-dual-ov2775.dts?h=lf-5.10.y&amp;quot;" target="_blank" rel="noopener"&gt;https://source.codeaurora.org/external/imx/linux-imx/tree/arch/arm64/boot/dts/freescale/imx8mp-evk-dual-ov2775.dts?h=lf-5.10.y"&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;"&lt;A href="https://source.codeaurora.org/external/imx/linux-imx/tree/arch/arm64/boot/dts/freescale/imx8mp-evk-basler-ov2775.dts?h=lf-5.10.y&amp;quot;" target="_blank" rel="noopener"&gt;https://source.codeaurora.org/external/imx/linux-imx/tree/arch/arm64/boot/dts/freescale/imx8mp-evk-basler-ov2775.dts?h=lf-5.10.y"&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;if you just test dual ISP, you can use dual basler , dual ov2775 or balser+ov2775, current bsp already support them&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 04 Jan 2022 12:42:18 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-Processors/iMX8MP-with-2-cameras-using-ISP/m-p/1394248#M185358</guid>
      <dc:creator>joanxie</dc:creator>
      <dc:date>2022-01-04T12:42:18Z</dc:date>
    </item>
    <item>
      <title>Re: iMX8MP with 2 cameras using ISP</title>
      <link>https://community.nxp.com/t5/i-MX-Processors/iMX8MP-with-2-cameras-using-ISP/m-p/1394254#M185360</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am already based on those dtb files. My dtb is in my original post.&lt;/P&gt;&lt;P&gt;Also, both devices are correctly seen by the Kernel, the corresponding /dev are correctly mounted, and the links are also created. From hw point of view, or at Linux level, it seems everything is fine, but I can just use a single camera, the other one is not seen from Android.&lt;/P&gt;&lt;P&gt;Besides, I don't know if this is an issue, but isp_media_server only opens /dev/video0, never /dev/video1... and I am not even sure the Sensor1_Entry.cfg is then really parsed?&lt;/P&gt;</description>
      <pubDate>Tue, 04 Jan 2022 13:00:44 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-Processors/iMX8MP-with-2-cameras-using-ISP/m-p/1394254#M185360</guid>
      <dc:creator>Charled</dc:creator>
      <dc:date>2022-01-04T13:00:44Z</dc:date>
    </item>
    <item>
      <title>Re: iMX8MP with 2 cameras using ISP</title>
      <link>https://community.nxp.com/t5/i-MX-Processors/iMX8MP-with-2-cameras-using-ISP/m-p/1394282#M185363</link>
      <description>&lt;P&gt;you just change the dtb file? did you built the isp-imx package for creating camera library? also need to change Sensor1_Entry.cfg or Sensor0_Entry.cfg, you can simulate ov2775 sensor driver in vvcam, but I don't know if all of source code is open to you on android, because some of them are need provided by IP owner&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 04 Jan 2022 14:07:32 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-Processors/iMX8MP-with-2-cameras-using-ISP/m-p/1394282#M185363</guid>
      <dc:creator>joanxie</dc:creator>
      <dc:date>2022-01-04T14:07:32Z</dc:date>
    </item>
    <item>
      <title>Re: iMX8MP with 2 cameras using ISP</title>
      <link>https://community.nxp.com/t5/i-MX-Processors/iMX8MP-with-2-cameras-using-ISP/m-p/1394293#M185367</link>
      <description>&lt;P&gt;That is effectively an issue. Most of the code is provided pre-compiled, and I have only got an isp-imx&amp;nbsp;4.2.2.6.0, which I understand is quite old... I have been told to not use any of the generated elements except my own camera library. Do you know which is the latest version of the isp-imx package? Could I simply compile and use it with my Android BSP 11.0.0_1.2.0?&lt;/P&gt;&lt;P&gt;I have done the following:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;Port OV5640 in ISP mode (under vvcam dirctory)&lt;/LI&gt;&lt;LI&gt;Modifying the dtb file to declare both camera on ISP.&lt;/LI&gt;&lt;LI&gt;Updating both SensorX_Entry.cfg to declare the corresponding library, and the sensor calibration files.&lt;/LI&gt;&lt;LI&gt;Adapt the file camera_config_imx8mp.json to declare 2 camera names "viv_v4l2_device" (to ensure they will be mapped on ISP)&lt;/LI&gt;&lt;LI&gt;Adapt the makefile to copy all the needed files (calibration files, driver and libraries, config files) on the target&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Do you know how isp_media_server can use both devices since it only opens a single /dev/video0? Also, the example I have for its json file in parameter seems to only declare a single link: sensor0 -&amp;gt; dewrap -&amp;gt; v4l2. Do I need to add something for my sensor1? How to do that?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;BR&lt;/P&gt;</description>
      <pubDate>Tue, 04 Jan 2022 14:20:39 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-Processors/iMX8MP-with-2-cameras-using-ISP/m-p/1394293#M185367</guid>
      <dc:creator>Charled</dc:creator>
      <dc:date>2022-01-04T14:20:39Z</dc:date>
    </item>
    <item>
      <title>Re: iMX8MP with 2 cameras using ISP</title>
      <link>https://community.nxp.com/t5/i-MX-Processors/iMX8MP-with-2-cameras-using-ISP/m-p/1394307#M185369</link>
      <description>&lt;P&gt;Hi &lt;a href="https://community.nxp.com/t5/user/viewprofilepage/user-id/186156"&gt;@Charled&lt;/a&gt; ,&lt;/P&gt;&lt;P&gt;From my experience, together with lower-level (i.e. vvcam kernel module + dts) adaptation, you will also need to adapt one of existing example (such as OV2775) in isp-imx-&amp;lt;VERSION&amp;gt;.bin to OV5640. VERSION = 4.2.2.6.0 in your case, so the isp-imx-4.2.2.6.0.bin can be downloaded from following link : &lt;A href="https://www.nxp.com/lgfiles/NMG/MAD/YOCTO/isp-imx-4.2.2.6.0.bin" target="_blank" rel="noopener"&gt;https://www.nxp.com/lgfiles/NMG/MAD/YOCTO/isp-imx-4.2.2.6.0.bin&lt;/A&gt;&lt;/P&gt;&lt;P&gt;And the OV2775 resources are as below :&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;units/isi/drv/OV2775/include_priv/OV2775_priv.h

units/isi/drv/OV2775/source/OV2775.c
units/isi/drv/OV2775/source/OV2775_mipi4lane_1080p_3dol_init.txt
units/isi/drv/OV2775/source/OV2775_mipi4lane_1080p_init.txt
units/isi/drv/OV2775/source/OV2775_mipi4lane_1080p_2dol_init.txt

units/isi/drv/OV2775/calib/OV2775/OV2775_pentaxcombined_01.xml
units/isi/drv/OV2775/calib/OV2775/OV2775_8M_02_720p.xml
units/isi/drv/OV2775/calib/OV2775/OV2775.xml
units/isi/drv/OV2775/calib/OV2775/OV2775_8M_02_1080p.xml
units/isi/drv/OV2775/calib/OV2775/OV2775_fisheye.xml
units/isi/drv/OV2775/calib/OV2775/OV2775_pentax_04.xml&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;You can rename above files to OV5640 or duplicate and rename them to OV5640.&lt;/P&gt;&lt;P&gt;Above resources will allow to generate&lt;EM&gt;&lt;STRONG&gt; .drv&lt;/STRONG&gt; &lt;/EM&gt;file which is in turn used by the &lt;STRONG&gt;isp_media_server &lt;/STRONG&gt;as an intermediate layer to interface with vvcam kernel module via ioctl() calls.&lt;/P&gt;&lt;P&gt;Also in above self-extracted binary &lt;STRONG&gt;isp-imx-4.2.2.6.0.bin&lt;/STRONG&gt;, there will be a need to adapt the scripts &lt;EM&gt;imx/start_isp.sh&lt;/EM&gt; and &lt;EM&gt;imx/run.sh &lt;/EM&gt;to configure the input files of &lt;STRONG&gt;isp_media_server&lt;/STRONG&gt; (such as Sensor0_Entry.cfg, Sensor1_Entry.cfg, etc. ) so that it can recognize and load your ISP based (or vvcam) ov5640 driver.&lt;/P&gt;&lt;P&gt;And in &lt;EM&gt;imx/run.sh &lt;/EM&gt;of isp-imx-4.2.2.6.0, only single camera is handled. But you could inspire the following snippet to handle mix of basler camera and ov2775 (or ov5640 in your case ) :&lt;/P&gt;&lt;PRE&gt; basler_1080p60_ov2775_1080p30 )&lt;BR /&gt;     MODULES=("basler-camera-driver-vvcam" "${MODULES[@]}")&lt;BR /&gt;   &amp;nbsp; JSON_FILE="case/config/daA3840_30mc_1080P.json"&lt;BR /&gt;     CAM_NAME="basler-vvcam"&lt;BR /&gt;     DRV_FILE="DAA3840_30MC_1080P.drv"&lt;BR /&gt;     #XML_FILE="DAA3840_30MC_1080P.xml"&lt;BR /&gt;     MODE_FILE="DAA3840_MODES.txt"&lt;BR /&gt;     MODE="1"&lt;BR /&gt;     write_sensor_cfg_file "Sensor0_Entry.cfg" $CAM_NAME $DRV_FILE $MODE_FILE $MODE&lt;BR /&gt;     &lt;BR /&gt;     MODULES=("ov2775" "${MODULES[@]}")&lt;BR /&gt;     JSON_FILE="case/config/2006_sensor_dwe.json"&lt;BR /&gt;     CAM_NAME="ov2775"&lt;BR /&gt;     DRV_FILE="ov2775.drv"&lt;BR /&gt;     #XML_FILE="OV2775.xml"&lt;BR /&gt;     MODE_FILE="OV2775_MODES.txt"&lt;BR /&gt;     MODE="0"&lt;BR /&gt;     write_sensor_cfg_file "Sensor1_Entry.cfg" $CAM_NAME $DRV_FILE $MODE_FILE $MODE&lt;/PRE&gt;&lt;P&gt;Note that &lt;EM&gt;Sensor0_Entry.cfg&lt;/EM&gt; or &lt;EM&gt;Sensor1_Entry.cfg&lt;/EM&gt; will be re-generated&amp;nbsp;in runtime by the above &lt;EM&gt;imx/run.sh&lt;/EM&gt;.&lt;/P&gt;&lt;P&gt;Beside, you could migrate to more recent BSPs (which include newer isp-imx of course) that provide better examples of dual ISP sensors of same type (not sure if different/mix types are also supported).&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;K.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 04 Jan 2022 15:10:26 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-Processors/iMX8MP-with-2-cameras-using-ISP/m-p/1394307#M185369</guid>
      <dc:creator>khang_letruong</dc:creator>
      <dc:date>2022-01-04T15:10:26Z</dc:date>
    </item>
    <item>
      <title>Re: iMX8MP with 2 cameras using ISP</title>
      <link>https://community.nxp.com/t5/i-MX-Processors/iMX8MP-with-2-cameras-using-ISP/m-p/1394310#M185370</link>
      <description>&lt;P&gt;Thanks&amp;nbsp;&lt;a href="https://community.nxp.com/t5/user/viewprofilepage/user-id/147542"&gt;@khang_letruong&lt;/a&gt;,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have done this, already. The difference is that the scripts your mention (run.sh, start_isp.sh) are dedicated to Linux, and not used on Android.&lt;/P&gt;&lt;P&gt;I already adapted SensorX_Entry.cfg files.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;BR&lt;/P&gt;</description>
      <pubDate>Tue, 04 Jan 2022 15:03:23 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-Processors/iMX8MP-with-2-cameras-using-ISP/m-p/1394310#M185370</guid>
      <dc:creator>Charled</dc:creator>
      <dc:date>2022-01-04T15:03:23Z</dc:date>
    </item>
    <item>
      <title>Re: iMX8MP with 2 cameras using ISP</title>
      <link>https://community.nxp.com/t5/i-MX-Processors/iMX8MP-with-2-cameras-using-ISP/m-p/1721039#M212442</link>
      <description>&lt;DIV class=""&gt;&lt;DIV class=""&gt;&lt;P&gt;Hello &lt;a href="https://community.nxp.com/t5/user/viewprofilepage/user-id/186156"&gt;@Charled&lt;/a&gt;&amp;nbsp;, I would like to use the OV5640 with the ISP. Would it be possible for you to share all the files you mention regarding porting this camera for the ISP? Even if they are not fully working, I'd be very interested.&lt;/P&gt;&lt;P&gt;Best Regards,&lt;/P&gt;&lt;P&gt;Enguerrand de Ribaucourt from Savoir-faire Linux&lt;/P&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 12 Sep 2023 09:06:38 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-Processors/iMX8MP-with-2-cameras-using-ISP/m-p/1721039#M212442</guid>
      <dc:creator>ederibaucourt</dc:creator>
      <dc:date>2023-09-12T09:06:38Z</dc:date>
    </item>
    <item>
      <title>Re: iMX8MP with 2 cameras using ISP</title>
      <link>https://community.nxp.com/t5/i-MX-Processors/iMX8MP-with-2-cameras-using-ISP/m-p/1724225#M212683</link>
      <description>&lt;P&gt;Hello Enguerrand,&lt;/P&gt;&lt;P&gt;This could be something your are looking for : &lt;A href="https://github.com/nxp-imx-support/meta-imx8mp-isp-ov5647" target="_blank"&gt;https://github.com/nxp-imx-support/meta-imx8mp-isp-ov5647&lt;/A&gt;&lt;/P&gt;&lt;P&gt;Otherwise, you could pm me for the ov5640.&lt;/P&gt;&lt;P&gt;Best Regards/Cordialement,&lt;/P&gt;&lt;P&gt;Khang Le Truong&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 17 Sep 2023 02:34:18 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-Processors/iMX8MP-with-2-cameras-using-ISP/m-p/1724225#M212683</guid>
      <dc:creator>khang_letruong</dc:creator>
      <dc:date>2023-09-17T02:34:18Z</dc:date>
    </item>
  </channel>
</rss>

