<?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: Imx8mm Unable to probe Sitronix st7262 device in ecspi2 (Android 13) in i.MX Processors</title>
    <link>https://community.nxp.com/t5/i-MX-Processors/Imx8mm-Unable-to-probe-Sitronix-st7262-device-in-ecspi2-Android/m-p/1671714#M207780</link>
    <description>&lt;P&gt;&lt;SPAN class="im"&gt;Hello &lt;a href="https://community.nxp.com/t5/user/viewprofilepage/user-id/116966"&gt;@bensonwu&lt;/a&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;DIV&gt;I hope you are doing well.&lt;/DIV&gt;
&lt;P&gt;&lt;LI-WRAPPER&gt;&lt;/LI-WRAPPER&gt;&lt;/P&gt;
&lt;DIV&gt;One can check for the same by increasing dmesg loglevel&lt;/DIV&gt;
&lt;DIV&gt;&lt;STRONG&gt;cat /sys/module/icn6211/&lt;WBR /&gt;parameters/loglevel&lt;BR /&gt;&lt;/STRONG&gt;&lt;BR /&gt;This will show the current log level for the ICN6211 driver. If the log level is set to "debug", the driver will log more messages to the system logs. You can increase the log level to "info" or "error" to see if more messages are logged that might help you to diagnose the problem.&lt;BR /&gt;&lt;BR /&gt;I hope this helps!&lt;/DIV&gt;
&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV&gt;Thanks &amp;amp; Regards,&lt;/DIV&gt;
&lt;DIV&gt;Sanket Parekh&lt;/DIV&gt;</description>
    <pubDate>Mon, 19 Jun 2023 07:57:34 GMT</pubDate>
    <dc:creator>Sanket_Parekh</dc:creator>
    <dc:date>2023-06-19T07:57:34Z</dc:date>
    <item>
      <title>Imx8mm Unable to probe Sitronix st7262 device in ecspi2 (Android 13)</title>
      <link>https://community.nxp.com/t5/i-MX-Processors/Imx8mm-Unable-to-probe-Sitronix-st7262-device-in-ecspi2-Android/m-p/1663286#M207071</link>
      <description>&lt;P&gt;Hi ALL:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;I met a SPI device driver (Sitronix st7262) probing problem&amp;nbsp;@ android 13(Kernel version:&amp;nbsp;5.15.71)&lt;/P&gt;&lt;P&gt;In our hardware design, st7262 (panel) is connected to imx8mm via ecspi2&lt;/P&gt;&lt;P&gt;Related DTS&amp;nbsp;&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;&amp;amp;ecspi2 {
pinctrl-names = "default";
pinctrl-0 = &amp;lt;&amp;amp;pinctrl_ecspi2&amp;gt;;
fsl,spi-num-chipselects = &amp;lt;1&amp;gt;;
cs-gpios = &amp;lt;&amp;amp;gpio5 13 GPIO_ACTIVE_LOW&amp;gt;;
dmas = &amp;lt;&amp;amp;sdma1 2 7 0&amp;gt;, &amp;lt;&amp;amp;sdma1 3 7 0&amp;gt;;
dma-names = "rx", "tx";
status = "okay";

panel@0 {
reg = &amp;lt;0&amp;gt;;
display-id = "840000";
pinctrl-names = "default";
pinctrl-0 = &amp;lt;&amp;amp;pinctrl_lcd_module&amp;gt;;
compatible = "sitronix,st7262";
spi-max-frequency = &amp;lt;4000000&amp;gt;;
spi-bits-per-word = &amp;lt;8&amp;gt;;
spi-working-mode = &amp;lt;0&amp;gt;;
spi-cs-gpios = &amp;lt;&amp;amp;gpio5 13 GPIO_ACTIVE_HIGH&amp;gt;;
power-supply = &amp;lt;&amp;amp;reg_lcm_lcd_vdd&amp;gt;;
enable-gpios = &amp;lt;&amp;amp;gpio1 12 GPIO_ACTIVE_HIGH&amp;gt;;
backlight = &amp;lt;&amp;amp;backlight&amp;gt;;
pre-enable;
status = "okay";&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;In driver (&lt;STRONG&gt;panel-sitronix-st7262.c&lt;/STRONG&gt;)&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;static int st7262_probe(struct spi_device *spi)
{
struct device *dev = &amp;amp;spi-&amp;gt;dev;
struct device_node *np = dev-&amp;gt;of_node;
struct st7262 *ctx;
struct device_node *timings = NULL;
int ret = 0;


dev_err(&amp;amp;spi-&amp;gt;dev, "start st7262 probe\n");
ctx = devm_kzalloc(&amp;amp;spi-&amp;gt;dev, sizeof(*ctx), GFP_KERNEL);
if (!ctx)
return -ENOMEM;

......&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;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The driver is built with ko by&amp;nbsp;CONFIG_DRM_PANEL_SITRONIX_ST7262=m&amp;nbsp;&lt;/P&gt;&lt;P&gt;The driver is scheduled loaded by&amp;nbsp; SharedBoardConfig.mk (i2c-imx.ko --&amp;gt;i2c-dev.ko --&amp;gt;spidev.ko -&amp;gt;spi-bitbang.ko -&amp;gt;spi-nxp-fspi.ko -&amp;gt;spi-imx.ko --&amp;gt; leds-lm3697.ko --&amp;gt; panel-sitronix-st7262.ko ...)&lt;/P&gt;&lt;P&gt;i&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;feq ($(IMX8MM_USES_GKI),true)
BOARD_VENDOR_RAMDISK_KERNEL_MODULES += \

....

$(KERNEL_OUT)/drivers/gpu/drm/panel/panel-sitronix-st7262.ko \

...&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;&amp;nbsp;&lt;/P&gt;&lt;P&gt;However , when system boot, I could see spi_imx is creating spi0, spi1 bus but I could not see driver is probed ( console should print "start st7262 probe")&amp;nbsp;&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;2.987023] spi_imx 30820000.spi: registered master spi0
[ 2.988160] spi spi0.0: spi_imx_setup: mode 0, 8 bpw, 4000000 hz
[ 2.988170] spi spi0.0: setup mode 0, 8 bits/w, 4000000 Hz max --&amp;gt; 0
[ 2.988415] spi_imx 30820000.spi: registered child spi0.0
[ 2.989033] spi_imx 30830000.spi: registered master spi1
[ 2.989828] spi spi1.0: spi_imx_setup: mode 0, 8 bpw, 4000000 hz
[ 2.989847] spi spi1.0: setup mode 0, 8 bits/w, 4000000 Hz max --&amp;gt; 0
[ 2.990357] spi_imx 30830000.spi: registered child spi1.0&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;The same files and settings work in our previous OS (Android 12)&amp;nbsp;&lt;/P&gt;&lt;P&gt;Anybody knows how to debug further ?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Regards/Bensonj&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;</description>
      <pubDate>Mon, 05 Jun 2023 23:45:45 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-Processors/Imx8mm-Unable-to-probe-Sitronix-st7262-device-in-ecspi2-Android/m-p/1663286#M207071</guid>
      <dc:creator>bensonwu</dc:creator>
      <dc:date>2023-06-05T23:45:45Z</dc:date>
    </item>
    <item>
      <title>Re: Imx8mm Unable to probe Sitronix st7262 device in ecspi2 (Android 13)</title>
      <link>https://community.nxp.com/t5/i-MX-Processors/Imx8mm-Unable-to-probe-Sitronix-st7262-device-in-ecspi2-Android/m-p/1663972#M207149</link>
      <description>&lt;P&gt;&lt;SPAN&gt;Hello &lt;a href="https://community.nxp.com/t5/user/viewprofilepage/user-id/116966"&gt;@bensonwu&lt;/a&gt;&amp;nbsp;,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I hope you are doing well.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;-&amp;gt;Please make sure to check the DTS file to make sure that the correct device tree node is being used for the SPI device.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;to check this, open the DTS file and look for the node that corresponds to your SPI device. The node name should be the same as the name of the device in the kernel logs.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;-&amp;gt;Please make sure to check the kernel logs to see if there are any errors related to the SPI driver.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;It will show the exact problem related to the spi driver that causing the issue.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;To view kernel logs please run the command "&lt;/SPAN&gt;&lt;STRONG&gt;dmesg | grep -rin spi&lt;/STRONG&gt;&lt;SPAN&gt;" or just&amp;nbsp;&lt;/SPAN&gt;&lt;STRONG&gt;dmesg&lt;/STRONG&gt;&lt;SPAN&gt;.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;It will help you!&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks &amp;amp; Regards,&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Sanket Parekh&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 06 Jun 2023 06:39:23 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-Processors/Imx8mm-Unable-to-probe-Sitronix-st7262-device-in-ecspi2-Android/m-p/1663972#M207149</guid>
      <dc:creator>Sanket_Parekh</dc:creator>
      <dc:date>2023-06-06T06:39:23Z</dc:date>
    </item>
    <item>
      <title>Re: Imx8mm Unable to probe Sitronix st7262 device in ecspi2 (Android 13)</title>
      <link>https://community.nxp.com/t5/i-MX-Processors/Imx8mm-Unable-to-probe-Sitronix-st7262-device-in-ecspi2-Android/m-p/1664162#M207169</link>
      <description>&lt;P&gt;Attached is the related dmesg log.&lt;/P&gt;&lt;P&gt;It seemed that spi-imx has successfully create spi0(bus), spi1(bus), and its SPI device.&lt;/P&gt;&lt;P&gt;For SPI0 ,it is used for idg(our another device) , For SPI1, it is connected to st7262 panel.&lt;/P&gt;&lt;P&gt;idg driver is built as module(=m) and loaded by&amp;nbsp;SharedBoardConfig.mk with very late sequence.&lt;/P&gt;&lt;P&gt;From kernel log, idg driver can be probed, but &lt;STRONG&gt;panel driver is not probed.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;Our DTS related to spi is listed as below(some DTS entries for panel have been temporarily removed for trouble shooting):&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;&amp;amp;ecspi1 {
	#address-cells = &amp;lt;1&amp;gt;;
	#size-cells = &amp;lt;0&amp;gt;;
	pinctrl-names = "default";
	pinctrl-0 = &amp;lt;&amp;amp;pinctrl_ecspi1&amp;gt;;
	fsl,spi-num-chipselects = &amp;lt;1&amp;gt;;
	dmas = &amp;lt;&amp;amp;sdma1 0 7 0&amp;gt;, &amp;lt;&amp;amp;sdma1 1 7 0&amp;gt;;
	dma-names = "rx", "tx";
	status = "okay";

	/* for ttyIDG &amp;amp; ttyIDGV5 device entry */
	idg_spi@0 {
		reg = &amp;lt;0&amp;gt;;
		compatible = "idtech,idg-spi";
		interrupt-parent = &amp;lt;&amp;amp;gpio1&amp;gt;;
		interrupts = &amp;lt;11 IRQ_TYPE_EDGE_RISING&amp;gt;;
		spi-max-frequency = &amp;lt;4000000&amp;gt;; /* 4 MHz */
		spi-bits-per-word = &amp;lt;8&amp;gt;; /* 8 bits */
		spi-working-mode = &amp;lt;0&amp;gt;; /* SPI_MODE_0 */
		spi-cs-gpios = &amp;lt;&amp;amp;gpio5 9 GPIO_ACTIVE_LOW&amp;gt;; /* CS control */
		spi-poweron-gpio = &amp;lt;&amp;amp;gpio5 12 GPIO_ACTIVE_HIGH&amp;gt;; /* power control */
		idg-keep-sense;
		status = "okay";
	};
};

&amp;amp;ecspi2 {
	pinctrl-names = "default";
	pinctrl-0 = &amp;lt;&amp;amp;pinctrl_ecspi2&amp;gt;;
	fsl,spi-num-chipselects = &amp;lt;1&amp;gt;;
	cs-gpios = &amp;lt;&amp;amp;gpio5 13 GPIO_ACTIVE_LOW&amp;gt;;
	dmas = &amp;lt;&amp;amp;sdma1 2 7 0&amp;gt;, &amp;lt;&amp;amp;sdma1 3 7 0&amp;gt;;
	dma-names = "rx", "tx";
	status = "okay";

	panel@0 {
		compatible = "sitronix,st7262";
		spi-max-frequency = &amp;lt;4000000&amp;gt;;
		reg = &amp;lt;0&amp;gt;;
		status = "okay";

		port {
			st7262_input: endpoint {
				remote-endpoint = &amp;lt;&amp;amp;bridge_out_dsi&amp;gt;;
			};
		};
	};
};&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;</description>
      <pubDate>Tue, 06 Jun 2023 09:09:35 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-Processors/Imx8mm-Unable-to-probe-Sitronix-st7262-device-in-ecspi2-Android/m-p/1664162#M207169</guid>
      <dc:creator>bensonwu</dc:creator>
      <dc:date>2023-06-06T09:09:35Z</dc:date>
    </item>
    <item>
      <title>Re: Imx8mm Unable to probe Sitronix st7262 device in ecspi2 (Android 13)</title>
      <link>https://community.nxp.com/t5/i-MX-Processors/Imx8mm-Unable-to-probe-Sitronix-st7262-device-in-ecspi2-Android/m-p/1669222#M207598</link>
      <description>&lt;P&gt;&amp;nbsp;****** Latest Update ******&lt;/P&gt;&lt;P&gt;The problem SEEMED solved by our trials.&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Debug history&amp;nbsp;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;1) We try to remove the followings in dtsi&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;port {
			st7262_input: endpoint {
				remote-endpoint = &amp;lt;&amp;amp;bridge_out_dsi&amp;gt;;
			};
		};&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;Then st7262 driver can be probed correctly .&amp;nbsp;&lt;/P&gt;&lt;P&gt;However , in our platform, we need st7262 (panel , spi interface) and icn6211 (as a bridge between st7262 and imx8mm, mipi_dsi devices) driver which must function normally. we suspect the problem is caused by the remote-endpoint of st7262 port(&lt;STRONG&gt;bridge_out_dsi)&lt;/STRONG&gt; cannot be retrieved correctly .&amp;nbsp; (please refer to the following dts)&amp;nbsp; &amp;nbsp;&amp;nbsp;&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;&amp;amp;ecspi2 {
	pinctrl-names = "default";
	pinctrl-0 = &amp;lt;&amp;amp;pinctrl_ecspi2&amp;gt;;
	fsl,spi-num-chipselects = &amp;lt;1&amp;gt;;
	cs-gpios = &amp;lt;&amp;amp;gpio5 13 GPIO_ACTIVE_LOW&amp;gt;;
	dmas = &amp;lt;&amp;amp;sdma1 2 7 0&amp;gt;, &amp;lt;&amp;amp;sdma1 3 7 0&amp;gt;;
	dma-names = "rx", "tx";
	status = "okay";

	st7262: panel@0 {
		reg = &amp;lt;0&amp;gt;;
		display-id = "840000";
		pinctrl-names = "default";
		pinctrl-0 = &amp;lt;&amp;amp;pinctrl_lcd_module&amp;gt;;
		compatible = "sitronix,st7262";
		spi-max-frequency = &amp;lt;4000000&amp;gt;;
		spi-bits-per-word = &amp;lt;8&amp;gt;;
		spi-working-mode = &amp;lt;0&amp;gt;;
		spi-cs-gpios = &amp;lt;&amp;amp;gpio5 13 GPIO_ACTIVE_HIGH&amp;gt;;
		power-supply = &amp;lt;&amp;amp;reg_lcm_lcd_vdd&amp;gt;;
		enable-gpios = &amp;lt;&amp;amp;gpio1 12 GPIO_ACTIVE_HIGH&amp;gt;;
		backlight = &amp;lt;&amp;amp;backlight&amp;gt;;
		pre-enable;
		status = "okay";

		display-timings {
			timing {
				clock-frequency = &amp;lt;24600000&amp;gt;;
				hactive = &amp;lt;800&amp;gt;;
				vactive = &amp;lt;480&amp;gt;;
				hfront-porch = &amp;lt;48&amp;gt;;
				hsync-len = &amp;lt;8&amp;gt;;
				hback-porch = &amp;lt;48&amp;gt;;
				vfront-porch = &amp;lt;12&amp;gt;;
				vsync-len =  &amp;lt;8&amp;gt;;
				vback-porch = &amp;lt;12&amp;gt;;
				hsync-active = &amp;lt;0&amp;gt;;
				vsync-active = &amp;lt;0&amp;gt;;
				de-active = &amp;lt;1&amp;gt;;
				pixelclk-active = &amp;lt;0&amp;gt;;
			};
		};

		port {
			st7262_input: endpoint {
				remote-endpoint = &amp;lt;&amp;amp;bridge_out_dsi&amp;gt;;
			};
		};
..........................
&amp;amp;mipi_dsi {
	status = "okay";
	fsl,clock-drop-level = &amp;lt;2&amp;gt;;
	pre-enable;
	#address-cells = &amp;lt;1&amp;gt;;
	#size-cells = &amp;lt;0&amp;gt;;

	icn6211: bridge@2 {
		compatible = "chipone,icn6211";
		reg = &amp;lt;2&amp;gt;;
		vdd1-supply = &amp;lt;&amp;amp;reg_lcm_bridg_vdd&amp;gt;;
		vdd2-supply = &amp;lt;&amp;amp;reg_lcm_bridg_vdd&amp;gt;;
		vdd3-supply = &amp;lt;&amp;amp;reg_lcm_bridg_vdd&amp;gt;;
		enable-gpios = &amp;lt;&amp;amp;gpio1 8 GPIO_ACTIVE_HIGH&amp;gt;;
		video-mode = &amp;lt;2&amp;gt;;       /* 0: burst mode */
		rgb-data-seq = &amp;lt;5&amp;gt;;
		pre-enable;
		ports {
			#address-cells = &amp;lt;1&amp;gt;;
			#size-cells = &amp;lt;0&amp;gt;;

			port@0 {
				reg = &amp;lt;0&amp;gt;;
				bridge_in_dsi: endpoint {
					remote-endpoint = &amp;lt;&amp;amp;mipi_dsi_out&amp;gt;;
				};
			};

			port@1 {
				reg = &amp;lt;1&amp;gt;;
				bridge_out_dsi: endpoint {
					remote-endpoint = &amp;lt;&amp;amp;st7262_input&amp;gt;;
				};
			};

..............
&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;So we try to adjust loadable module sequence in Sharedboardconfig.mk : move mipi dsi bus driver and its related before st7262 &amp;amp; icn6211 driver&amp;nbsp; , then everything seemed back to normal&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Screenshot from 2023-06-14 18-36-18.png" style="width: 999px;"&gt;&lt;img src="https://community.nxp.com/t5/image/serverpage/image-id/227653i5E115254939FEE42/image-size/large?v=v2&amp;amp;px=999" role="button" title="Screenshot from 2023-06-14 18-36-18.png" alt="Screenshot from 2023-06-14 18-36-18.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;My question , why the same SharedBoardConfig.mk work at Android 12 but failed at Android 13?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 15 Jun 2023 02:16:43 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-Processors/Imx8mm-Unable-to-probe-Sitronix-st7262-device-in-ecspi2-Android/m-p/1669222#M207598</guid>
      <dc:creator>bensonwu</dc:creator>
      <dc:date>2023-06-15T02:16:43Z</dc:date>
    </item>
    <item>
      <title>Re: Imx8mm Unable to probe Sitronix st7262 device in ecspi2 (Android 13)</title>
      <link>https://community.nxp.com/t5/i-MX-Processors/Imx8mm-Unable-to-probe-Sitronix-st7262-device-in-ecspi2-Android/m-p/1671714#M207780</link>
      <description>&lt;P&gt;&lt;SPAN class="im"&gt;Hello &lt;a href="https://community.nxp.com/t5/user/viewprofilepage/user-id/116966"&gt;@bensonwu&lt;/a&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;DIV&gt;I hope you are doing well.&lt;/DIV&gt;
&lt;P&gt;&lt;LI-WRAPPER&gt;&lt;/LI-WRAPPER&gt;&lt;/P&gt;
&lt;DIV&gt;One can check for the same by increasing dmesg loglevel&lt;/DIV&gt;
&lt;DIV&gt;&lt;STRONG&gt;cat /sys/module/icn6211/&lt;WBR /&gt;parameters/loglevel&lt;BR /&gt;&lt;/STRONG&gt;&lt;BR /&gt;This will show the current log level for the ICN6211 driver. If the log level is set to "debug", the driver will log more messages to the system logs. You can increase the log level to "info" or "error" to see if more messages are logged that might help you to diagnose the problem.&lt;BR /&gt;&lt;BR /&gt;I hope this helps!&lt;/DIV&gt;
&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV&gt;Thanks &amp;amp; Regards,&lt;/DIV&gt;
&lt;DIV&gt;Sanket Parekh&lt;/DIV&gt;</description>
      <pubDate>Mon, 19 Jun 2023 07:57:34 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-Processors/Imx8mm-Unable-to-probe-Sitronix-st7262-device-in-ecspi2-Android/m-p/1671714#M207780</guid>
      <dc:creator>Sanket_Parekh</dc:creator>
      <dc:date>2023-06-19T07:57:34Z</dc:date>
    </item>
  </channel>
</rss>

