<?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>i.MX ProcessorsのトピックRe: IMX8M Mini: DLC0350GEV06 Display panel issue and bringup</title>
    <link>https://community.nxp.com/t5/i-MX-Processors/IMX8M-Mini-DLC0350GEV06-Display-panel-issue-and-bringup/m-p/1663006#M207039</link>
    <description>&lt;P&gt;this is the third party company bsp, you should contact their engineer to get further information about this structure definition&lt;/P&gt;</description>
    <pubDate>Sun, 04 Jun 2023 04:44:32 GMT</pubDate>
    <dc:creator>joanxie</dc:creator>
    <dc:date>2023-06-04T04:44:32Z</dc:date>
    <item>
      <title>IMX8M Mini: DLC0350GEV06 Display panel issue and bringup</title>
      <link>https://community.nxp.com/t5/i-MX-Processors/IMX8M-Mini-DLC0350GEV06-Display-panel-issue-and-bringup/m-p/1658341#M206635</link>
      <description>&lt;P&gt;Hi Community,&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;We are facing an issue related to display panel on our board based on imx8mm, which runs android 11. The screen fades when android boots up.&lt;/P&gt;&lt;P&gt;Display panel part number: DLC0350GEV06MF&lt;BR /&gt;Display controller: STT703I&lt;/P&gt;&lt;P&gt;Our board does not use the SN65DSI83 mipi to lvds converter. The i.MX8M-mini mipi dsi is directly connected to the STT703I display controller.&lt;/P&gt;&lt;P&gt;We would like to have an understanding on the following display array in uboot source file(board/boundary/c2-imx8mm/c2-imx8mm.c) which could help in debugging this issue.&lt;/P&gt;&lt;P&gt;static const struct display_info_t displays[] = {&lt;BR /&gt;VD_MIPI_DLC0350GEV06(MIPI, board_detect_gt911, fbp_bus_gp(2, 0, GP_DLC0350_ENABLE, 0), fbp_addr_gp(0x5d, 0, 0, 0), FBTS_GOODIX),&lt;BR /&gt;};&lt;/P&gt;&lt;P&gt;Any pointers/references on bringing up this display panel on imx8mm based platform would help.&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;Thanks and regards,&lt;BR /&gt;Karthik Rao&lt;/P&gt;</description>
      <pubDate>Fri, 26 May 2023 10:31:40 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-Processors/IMX8M-Mini-DLC0350GEV06-Display-panel-issue-and-bringup/m-p/1658341#M206635</guid>
      <dc:creator>karthik_rao</dc:creator>
      <dc:date>2023-05-26T10:31:40Z</dc:date>
    </item>
    <item>
      <title>Re: IMX8M Mini: DLC0350GEV06 Display panel issue and bringup</title>
      <link>https://community.nxp.com/t5/i-MX-Processors/IMX8M-Mini-DLC0350GEV06-Display-panel-issue-and-bringup/m-p/1658725#M206682</link>
      <description>&lt;P&gt;I didn't find this path in the latest uboot source code, pls send the link to me, let me double check it&lt;/P&gt;</description>
      <pubDate>Sun, 28 May 2023 02:16:02 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-Processors/IMX8M-Mini-DLC0350GEV06-Display-panel-issue-and-bringup/m-p/1658725#M206682</guid>
      <dc:creator>joanxie</dc:creator>
      <dc:date>2023-05-28T02:16:02Z</dc:date>
    </item>
    <item>
      <title>Re: IMX8M Mini: DLC0350GEV06 Display panel issue and bringup</title>
      <link>https://community.nxp.com/t5/i-MX-Processors/IMX8M-Mini-DLC0350GEV06-Display-panel-issue-and-bringup/m-p/1658733#M206687</link>
      <description>&lt;P&gt;Hi Karthik Rao,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Based on the information provided, you are using the i.MX8M Mini with a DLC0350GEV06 display panel and STT703I display controller. You mentioned that your board does not use the SN65DSI83 MIPI to LVDS converter and the i.MX8M Mini MIPI DSI is directly connected to the STT703I display controller.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Regarding the display array in the U-Boot source file, it seems that the file you mentioned (board/boundary/c2-imx8mm/c2-imx8mm.c) is not part of the official NXP U-Boot repository. I assume you are using a custom U-Boot provided by Boundary Devices. In that case, I would recommend reaching out to Boundary Devices for support on their specific implementation.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;However, I can provide some general guidance on the display array:&lt;/P&gt;&lt;PRE&gt; static const struct display_info_t displays[] = {     VD_MIPI_DLC0350GEV06(MIPI, board_detect_gt911, fbp_bus_gp(2, 0, GP_DLC0350_ENABLE, 0), fbp_addr_gp(0x5d, 0, 0, 0), FBTS_GOODIX), }; &lt;/PRE&gt;&lt;P&gt;This array defines the display configuration for the board. The VD_MIPI_DLC0350GEV06 macro is used to initialize the display_info_t structure with the necessary parameters for the DLC0350GEV06 display panel. The parameters include the MIPI interface, touch controller detection function (board_detect_gt911), backlight control GPIO (GP_DLC0350_ENABLE), I2C address for the touch controller (0x5d), and the touch controller driver (FBTS_GOODIX).&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;To debug the issue with the screen fading when Android boots up, you can try the&lt;/P&gt;</description>
      <pubDate>Sun, 28 May 2023 05:40:05 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-Processors/IMX8M-Mini-DLC0350GEV06-Display-panel-issue-and-bringup/m-p/1658733#M206687</guid>
      <dc:creator>giraffe508</dc:creator>
      <dc:date>2023-05-28T05:40:05Z</dc:date>
    </item>
    <item>
      <title>Re: IMX8M Mini: DLC0350GEV06 Display panel issue and bringup</title>
      <link>https://community.nxp.com/t5/i-MX-Processors/IMX8M-Mini-DLC0350GEV06-Display-panel-issue-and-bringup/m-p/1658880#M206701</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Thankyou for the response.&lt;/P&gt;&lt;P&gt;&lt;a href="https://community.nxp.com/t5/user/viewprofilepage/user-id/39586"&gt;@joanxie&lt;/a&gt;, link for uboot-imx: &lt;A href="https://github.com/boundarydevices/u-boot/tree/boundary-v2020.10" target="_blank"&gt;https://github.com/boundarydevices/u-boot/tree/boundary-v2020.10&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;a href="https://community.nxp.com/t5/user/viewprofilepage/user-id/215113"&gt;@giraffe508&lt;/a&gt;, the last sentence is not visible completely... It looks like: "To debug the issue with the screen fading when Android boots up, you can try the"&lt;/P&gt;</description>
      <pubDate>Mon, 29 May 2023 05:44:06 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-Processors/IMX8M-Mini-DLC0350GEV06-Display-panel-issue-and-bringup/m-p/1658880#M206701</guid>
      <dc:creator>karthik_rao</dc:creator>
      <dc:date>2023-05-29T05:44:06Z</dc:date>
    </item>
    <item>
      <title>Re: IMX8M Mini: DLC0350GEV06 Display panel issue and bringup</title>
      <link>https://community.nxp.com/t5/i-MX-Processors/IMX8M-Mini-DLC0350GEV06-Display-panel-issue-and-bringup/m-p/1659740#M206782</link>
      <description>&lt;P&gt;Hi &lt;a href="https://community.nxp.com/t5/user/viewprofilepage/user-id/215113"&gt;@giraffe508&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;GP_BACKLIGHT_MIPI2 (i.e. IOMUXC_SPDIF_RX_PWM2_OUT) looks to be the backlight control gpio and GP_DLC0350_ENABLE looks to be the display reset pin. Did you mean we have to provide GP_BACKLIGHT_MIPI2 as the argument in 'fbp_bus_gp' inplace of GP_DLC0350_ENABLE?&lt;/P&gt;&lt;P&gt;Do we have to provide any arguments to VD_MIPI_DLC0350GEV06?&lt;/P&gt;&lt;PRE&gt; static const struct display_info_t displays[] = {     VD_MIPI_DLC0350GEV06(MIPI, board_detect_gt911, fbp_bus_gp(2, 0, GP_DLC0350_ENABLE, 0), fbp_addr_gp(0x5d, 0, 0, 0), FBTS_GOODIX), }; &lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 30 May 2023 09:08:06 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-Processors/IMX8M-Mini-DLC0350GEV06-Display-panel-issue-and-bringup/m-p/1659740#M206782</guid>
      <dc:creator>karthik_rao</dc:creator>
      <dc:date>2023-05-30T09:08:06Z</dc:date>
    </item>
    <item>
      <title>Re: IMX8M Mini: DLC0350GEV06 Display panel issue and bringup</title>
      <link>https://community.nxp.com/t5/i-MX-Processors/IMX8M-Mini-DLC0350GEV06-Display-panel-issue-and-bringup/m-p/1663006#M207039</link>
      <description>&lt;P&gt;this is the third party company bsp, you should contact their engineer to get further information about this structure definition&lt;/P&gt;</description>
      <pubDate>Sun, 04 Jun 2023 04:44:32 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-Processors/IMX8M-Mini-DLC0350GEV06-Display-panel-issue-and-bringup/m-p/1663006#M207039</guid>
      <dc:creator>joanxie</dc:creator>
      <dc:date>2023-06-04T04:44:32Z</dc:date>
    </item>
  </channel>
</rss>

