<?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: iMX6DL HDMI need some help in i.MX Processors</title>
    <link>https://community.nxp.com/t5/i-MX-Processors/iMX6DL-HDMI-need-some-help/m-p/371594#M53035</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Aurelin,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Have you verified if the HDMI output is working properly before connecting it to the HDMI-to-VGA converter (for example, connecting a HDMI monitor)?&lt;/P&gt;&lt;P&gt;In case of the SABRE-SD board, if you want to enable the HDMI monitor instead of the LVDS display, you could try the following: On the U-Boot command line:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;EM&gt;editenv mmcargs&lt;/EM&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;Add the following to the end of the mmcargs variable:&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;video=mxcfb0:dev=hdmi,1920x1080M@60,if=RGB24&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;saveenv&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;boot&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You have to ensure that you added the mentioned command at the end of the mmcargs value, so, if you print the mmcargs values (command &lt;EM&gt;&lt;STRONG&gt;printenv mmcargs&lt;/STRONG&gt;&lt;/EM&gt;), it should be like following:&lt;/P&gt;&lt;P&gt;&lt;EM&gt;setenv bootargs console=${console},${baudrate} ${smp} root=${mmcroot} video=mxcfb0:dev=hdmi,1920x1080M@60,if=RGB24&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;Hope this will be useful for you.&lt;BR /&gt;Best regards!&lt;BR /&gt;/Carlos&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&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>Mon, 16 Feb 2015 23:34:28 GMT</pubDate>
    <dc:creator>CarlosCasillas</dc:creator>
    <dc:date>2015-02-16T23:34:28Z</dc:date>
    <item>
      <title>iMX6DL HDMI need some help</title>
      <link>https://community.nxp.com/t5/i-MX-Processors/iMX6DL-HDMI-need-some-help/m-p/371593#M53034</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'm using a custom board based on iMX6DL and I have some problem to "enable" hdmi video output.&lt;/P&gt;&lt;P&gt;I need to display pictures using HDMI port.&lt;/P&gt;&lt;P&gt;The HDMI port is directly connected an ADV7611 chip to convert HDMI to VGA (customer specific) and I'm in trouble with HDMI side.&lt;/P&gt;&lt;P&gt;I check the signals (HDMI clk, etc...) but nothing happend !&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Anybody habe an idea ??&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'm using Linux 3.0.35 (from freescale)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;My video Kernel command line is:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;video=mxcfb0:dev=hdmi,1920x1080@60,if=RGB24&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;And in my board specific file I do :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;static struct ipuv3_fb_platform_data hdmi_fb[] = {&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; {/*fb0*/&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; .disp_dev = "hdmi",&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; .interface_pix_fmt = IPU_PIX_FMT_RGB24,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; .mode_str = "1920x1080@60",&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; .default_bpp = 32,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; .int_clk = false,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; },&lt;/P&gt;&lt;P&gt;};&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;static void hdmi_init(int ipu_id, int disp_id) {&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; if ((unsigned)ipu_id &amp;gt; 1) ipu_id = 0;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; if ((unsigned)disp_id &amp;gt; 1) disp_id = 0;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; mxc_iomux_set_gpr_register(3, 2, 2, 2*ipu_id + disp_id);&lt;/P&gt;&lt;P&gt;}&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;static struct fsl_mxc_hdmi_platform_data hdmi_data = {&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; .init = hdmi_init,&lt;/P&gt;&lt;P&gt;};&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;static struct fsl_mxc_hdmi_core_platform_data hdmi_core_data = {&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; .ipu_id&amp;nbsp; = 0,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; .disp_id = 0,&lt;/P&gt;&lt;P&gt;};&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;static struct imx_ipuv3_platform_data ipu_data[] = {&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; {&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; .rev = 4,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; .csi_clk[0] = "clko_clk",&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; .bypass_reset = false,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; }, {&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; .rev = 4,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; .csi_clk[0] = "clko_clk",&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; .bypass_reset = false,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; },&lt;/P&gt;&lt;P&gt;};&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;And for the hdmi init I do&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;imx6q_add_mxc_hdmi_core(&amp;amp;hdmi_core_data);&lt;/P&gt;&lt;P&gt;imx6q_add_ipuv3(0, &amp;amp;ipu_data[0]);&lt;/P&gt;&lt;P&gt;imx6q_add_ipuv3fb(0, &amp;amp;hdmi_fb[0]);&lt;/P&gt;&lt;P&gt;imx6q_add_vdoa();&lt;/P&gt;&lt;P&gt;imx6q_add_v4l2_output(0);&lt;/P&gt;&lt;P&gt;imx6q_add_mxc_hdmi(&amp;amp;hdmi_data);&lt;/P&gt;&lt;P&gt;imx6q_add_vpu();&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt;imx6q_add_dma();&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt;My kernel debug trace :&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt;[..]&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;[&amp;nbsp;&amp;nbsp;&amp;nbsp; 2.005275] mxc_sdc_fb mxc_sdc_fb.0: register mxc display driver hdmi&lt;/P&gt;&lt;P&gt;[&amp;nbsp;&amp;nbsp;&amp;nbsp; 2.017397] mxc_hdmi mxc_hdmi: Detected HDMI controller 0x13:0x1a:0xa0:0xc1&lt;/P&gt;&lt;P&gt;[&amp;nbsp;&amp;nbsp;&amp;nbsp; 2.044756] ipu_init_sync_panel: disp=0, pixel_clk=148500000 148500000&lt;/P&gt;&lt;P&gt;[&amp;nbsp;&amp;nbsp;&amp;nbsp; 2.060485] imx-ipuv3 imx-ipuv3.0: IPU DMFC DP HIGH RESOLUTION: 1(0,1), 5B(2~5), 5F(6,7)&lt;/P&gt;&lt;P&gt;[&amp;nbsp;&amp;nbsp;&amp;nbsp; 2.094466] ipu_init_sync_panel: disp=0, pixel_clk=148500000 148500000&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 12 Feb 2015 15:32:25 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-Processors/iMX6DL-HDMI-need-some-help/m-p/371593#M53034</guid>
      <dc:creator>aureliencourrie</dc:creator>
      <dc:date>2015-02-12T15:32:25Z</dc:date>
    </item>
    <item>
      <title>Re: iMX6DL HDMI need some help</title>
      <link>https://community.nxp.com/t5/i-MX-Processors/iMX6DL-HDMI-need-some-help/m-p/371594#M53035</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Aurelin,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Have you verified if the HDMI output is working properly before connecting it to the HDMI-to-VGA converter (for example, connecting a HDMI monitor)?&lt;/P&gt;&lt;P&gt;In case of the SABRE-SD board, if you want to enable the HDMI monitor instead of the LVDS display, you could try the following: On the U-Boot command line:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;EM&gt;editenv mmcargs&lt;/EM&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;Add the following to the end of the mmcargs variable:&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;video=mxcfb0:dev=hdmi,1920x1080M@60,if=RGB24&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;saveenv&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;boot&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You have to ensure that you added the mentioned command at the end of the mmcargs value, so, if you print the mmcargs values (command &lt;EM&gt;&lt;STRONG&gt;printenv mmcargs&lt;/STRONG&gt;&lt;/EM&gt;), it should be like following:&lt;/P&gt;&lt;P&gt;&lt;EM&gt;setenv bootargs console=${console},${baudrate} ${smp} root=${mmcroot} video=mxcfb0:dev=hdmi,1920x1080M@60,if=RGB24&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;Hope this will be useful for you.&lt;BR /&gt;Best regards!&lt;BR /&gt;/Carlos&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&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>Mon, 16 Feb 2015 23:34:28 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-Processors/iMX6DL-HDMI-need-some-help/m-p/371594#M53035</guid>
      <dc:creator>CarlosCasillas</dc:creator>
      <dc:date>2015-02-16T23:34:28Z</dc:date>
    </item>
    <item>
      <title>Re: iMX6DL HDMI need some help</title>
      <link>https://community.nxp.com/t5/i-MX-Processors/iMX6DL-HDMI-need-some-help/m-p/371595#M53036</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks for your reply.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I've resolve the problem.&lt;/P&gt;&lt;P&gt;This was due to an non connected PIN on the ADV7611 (the pin which detect if "the cable" is present or not...)&lt;/P&gt;&lt;P&gt;By disabling the cable detection (in the ADV7611) this work perfectly :-)&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 18 Feb 2015 09:40:17 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-Processors/iMX6DL-HDMI-need-some-help/m-p/371595#M53036</guid>
      <dc:creator>aureliencourrie</dc:creator>
      <dc:date>2015-02-18T09:40:17Z</dc:date>
    </item>
  </channel>
</rss>

