<?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: mx53 fb_videomodes for custom lcd in i.MX Processors</title>
    <link>https://community.nxp.com/t5/i-MX-Processors/mx53-fb-videomodes-for-custom-lcd/m-p/276232#M30830</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;They are same.&lt;/P&gt;&lt;P&gt;In driver code, the refresh rate will not be used, but to fill the video mode, you should use the refresh rate to calculate the pixel clock.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 22 Oct 2014 01:45:01 GMT</pubDate>
    <dc:creator>qiang_li-mpu_se</dc:creator>
    <dc:date>2014-10-22T01:45:01Z</dc:date>
    <item>
      <title>mx53 fb_videomodes for custom lcd</title>
      <link>https://community.nxp.com/t5/i-MX-Processors/mx53-fb-videomodes-for-custom-lcd/m-p/276226#M30824</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello all,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I've got lcd to show me part of picture when set kernel parameters to use default XGA mode.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I need to use lcd display with custom mx53 based board, how to properly determine "struct fb_videomode" structure from attached clocks.&lt;/P&gt;&lt;P&gt;I've got them from my ldc datasheet, but don't get how to calculate them to fb_videomode values.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Some general description below:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;G065VN01 V0 is a Color Active Matrix Liquid Crystal Display composed of a TFT LCD panel, a&lt;/P&gt;&lt;P&gt;driver circuit, and backlight system. The screen format is intended to support the VGA (640(H) x&lt;/P&gt;&lt;P&gt;480(V)) screen and 16.2M (RGB 8-bits) or 262k colors (RGB 6-bits). All input signals are LVDS&lt;/P&gt;&lt;P&gt;interface compatible. Inverter card of backlight is not included.&lt;/P&gt;&lt;P&gt;&lt;SPAN class="mce_paste_marker"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 05 Jun 2013 12:26:38 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-Processors/mx53-fb-videomodes-for-custom-lcd/m-p/276226#M30824</guid>
      <dc:creator>alexeym</dc:creator>
      <dc:date>2013-06-05T12:26:38Z</dc:date>
    </item>
    <item>
      <title>Re: mx53 fb_videomodes for custom lcd</title>
      <link>https://community.nxp.com/t5/i-MX-Processors/mx53-fb-videomodes-for-custom-lcd/m-p/276227#M30825</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You can use the followed video mode:&lt;/P&gt;&lt;P&gt;1000000 / fb_videomode.pixclock = 1000000 / 40000 = 25MHz pixel clock.&lt;/P&gt;&lt;P&gt;fb_videomode.refresh = 60;&lt;/P&gt;&lt;P&gt;fb_videomode.xres = 640;&lt;/P&gt;&lt;P&gt;fb_videomode.yres = 480;&lt;/P&gt;&lt;P&gt;fb_videomode.left_margin + right_margin + hsync_len = 70 + 70 + 20 = 160 = HBlanking&lt;/P&gt;&lt;P&gt;fb_videomode.upper_margin + lower_margin + vsync_len = 20 + 20 + 5 = 45 = VBlanking&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;static struct fb_videomode video_modes[] = {&lt;/P&gt;&lt;P&gt; {&lt;/P&gt;&lt;P&gt;&amp;nbsp; /* 640x480 @ 60 Hz , pixel clk @ 25MHz */&lt;/P&gt;&lt;P&gt;&amp;nbsp; "G065V-VGA", 60, 640, 480, 40000, 70, 70, 20, 20, 20, 5,&lt;/P&gt;&lt;P&gt;&amp;nbsp; FB_SYNC_CLK_LAT_FALL,&lt;/P&gt;&lt;P&gt;&amp;nbsp; FB_VMODE_NONINTERLACED,&lt;/P&gt;&lt;P&gt;&amp;nbsp; 0,},&lt;/P&gt;&lt;P&gt;};&lt;/P&gt;&lt;P&gt;&lt;SPAN class="mce_paste_marker"&gt;&lt;/SPAN&gt; &lt;/P&gt;&lt;P&gt;&lt;SPAN class="mce_paste_marker"&gt;And in kernel command lines, if you had connected 24 pin data lines in hardware: video=mxcdi0fb:RGB24,G065V-VGA,bpp=32;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="mce_paste_marker"&gt;If you had connected 18 pin data lines in hardware: video=mxcdi0fb:RGB666,G065V-VGA,bpp=32;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="mce_paste_marker"&gt;&lt;SPAN class="mce_paste_marker"&gt;If you had connected 16 pin data lines in hardware: video=mxcdi0fb:RGB565,G065V-VGA,bpp=32;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 08 Jun 2013 00:18:57 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-Processors/mx53-fb-videomodes-for-custom-lcd/m-p/276227#M30825</guid>
      <dc:creator>qiang_li-mpu_se</dc:creator>
      <dc:date>2013-06-08T00:18:57Z</dc:date>
    </item>
    <item>
      <title>Re: mx53 fb_videomodes for custom lcd</title>
      <link>https://community.nxp.com/t5/i-MX-Processors/mx53-fb-videomodes-for-custom-lcd/m-p/276228#M30826</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 08 Jun 2013 00:37:56 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-Processors/mx53-fb-videomodes-for-custom-lcd/m-p/276228#M30826</guid>
      <dc:creator>alexeym</dc:creator>
      <dc:date>2013-06-08T00:37:56Z</dc:date>
    </item>
    <item>
      <title>Re: mx53 fb_videomodes for custom lcd</title>
      <link>https://community.nxp.com/t5/i-MX-Processors/mx53-fb-videomodes-for-custom-lcd/m-p/276229#M30827</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Qiang Li,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; I am new to kernel level debugging. I bought a LCD from ortus tech of 3.5" with dimension 240x320 and want to make changes according to that in kernel file for mxc_lcdif.c in function static struct fb_videomode lcdif_modedb which have different fields i.e LCD timing related parameters. I want to set these fields but not able to understand from i have to find out their exact value. By goggling i found only theoretical values and didn't find any&amp;nbsp; thing sufficient to understand, where i have to look in to find correct values. If posssible reply&amp;nbsp; me soon.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Jai Prakash&lt;/P&gt;&lt;P&gt;&lt;A class="jive-link-email-small" href="mailto:jaiprakash28790@gmail.com"&gt;jaiprakash28790@gmail.com&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 25 Jul 2014 13:18:01 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-Processors/mx53-fb-videomodes-for-custom-lcd/m-p/276229#M30827</guid>
      <dc:creator>jaiprakash</dc:creator>
      <dc:date>2014-07-25T13:18:01Z</dc:date>
    </item>
    <item>
      <title>Re: mx53 fb_videomodes for custom lcd</title>
      <link>https://community.nxp.com/t5/i-MX-Processors/mx53-fb-videomodes-for-custom-lcd/m-p/276230#M30828</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi alexeym,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; let if you&amp;nbsp; find solution,&amp;nbsp; I am new to kernel level debugging. I bought a LCD from ortus tech of 3.5" with dimension 240x320 and want to make changes according to that in kernel file for mxc_lcdif.c in function static struct fb_videomode lcdif_modedb which have different fields i.e LCD timing related parameters. I want to set these fields but not able to understand from i have to find out their exact value. By goggling i found only theoretical values and didn't find any&amp;nbsp; thing sufficient to understand, where i have to look in to find correct values. If posssible reply&amp;nbsp; me soon.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Jai Prakash&lt;/P&gt;&lt;P&gt;&lt;A class="jive-link-email-small" href="mailto:jaiprakash28790@gmail.com"&gt;jaiprakash28790@gmail.com&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 25 Jul 2014 13:19:20 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-Processors/mx53-fb-videomodes-for-custom-lcd/m-p/276230#M30828</guid>
      <dc:creator>jaiprakash</dc:creator>
      <dc:date>2014-07-25T13:19:20Z</dc:date>
    </item>
    <item>
      <title>Re: mx53 fb_videomodes for custom lcd</title>
      <link>https://community.nxp.com/t5/i-MX-Processors/mx53-fb-videomodes-for-custom-lcd/m-p/276231#M30829</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Qiang,&lt;/P&gt;&lt;P&gt;This is a great response - thank you.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;However your response appears to conflict with this post:&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.nxp.com/message/281854"&gt;Linux Framebuffer driver: Calculate Pixel Clock for struct fb_videomode -blog archive&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can you please clarify - what is the correct calculation?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks again,&lt;/P&gt;&lt;P&gt;mike&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 21 Oct 2014 16:59:21 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-Processors/mx53-fb-videomodes-for-custom-lcd/m-p/276231#M30829</guid>
      <dc:creator>mbp</dc:creator>
      <dc:date>2014-10-21T16:59:21Z</dc:date>
    </item>
    <item>
      <title>Re: mx53 fb_videomodes for custom lcd</title>
      <link>https://community.nxp.com/t5/i-MX-Processors/mx53-fb-videomodes-for-custom-lcd/m-p/276232#M30830</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;They are same.&lt;/P&gt;&lt;P&gt;In driver code, the refresh rate will not be used, but to fill the video mode, you should use the refresh rate to calculate the pixel clock.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 22 Oct 2014 01:45:01 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-Processors/mx53-fb-videomodes-for-custom-lcd/m-p/276232#M30830</guid>
      <dc:creator>qiang_li-mpu_se</dc:creator>
      <dc:date>2014-10-22T01:45:01Z</dc:date>
    </item>
    <item>
      <title>Re: mx53 fb_videomodes for custom lcd</title>
      <link>https://community.nxp.com/t5/i-MX-Processors/mx53-fb-videomodes-for-custom-lcd/m-p/276233#M30831</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;If these calculations are the same then,&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;&lt;STRONG&gt;#define PIXCLOCK (1e12/((XRES+LEFT_M+RIGHT_M+HSYNC_LEN)*(YRES+UPPER_M+LOWER_M+VSYNC_LEN)*REFRESH))&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;&amp;nbsp;&amp;nbsp; applied to your parameters (&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 12px;"&gt;60, 640, 480, 40000, 70, 70, 20, 20, 20, 5) =&amp;nbsp; 1e12/(800*525*60) = 39682.54 or 39682&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;&amp;nbsp;&amp;nbsp; and 1e12/39682 would yield a 25.2MHz clock.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;Q1: Is the 40000 divisor you select for pix_clk less accurate than 39682?&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;Q2: How does the margins+sync play into pix_clock?&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;Q3: Should the margins be balanced (e.g. 70,70 and 20,20)?&amp;nbsp; does it matter?&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;Q4: Must the margins+sync = blanking_interval?&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;Q5: Many/most LCD's only spec one Blanking (e.g. 45), in these cases which blanking would this refer to and how does one determine the margins+sync if no blanking is provided?&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;Q5: How should the margin and sync be selected using your equation; margins+sync=blank?&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;Thanks for this clarification,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;Mike&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 24 Oct 2014 14:22:21 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-Processors/mx53-fb-videomodes-for-custom-lcd/m-p/276233#M30831</guid>
      <dc:creator>mbp</dc:creator>
      <dc:date>2014-10-24T14:22:21Z</dc:date>
    </item>
    <item>
      <title>Re: mx53 fb_videomodes for custom lcd</title>
      <link>https://community.nxp.com/t5/i-MX-Processors/mx53-fb-videomodes-for-custom-lcd/m-p/276234#M30832</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;All the video mode data should be comming from the LCD data sheet.&lt;/P&gt;&lt;P&gt;In driver, the divisor 40000 will be first used to set the pixel clock, it doesn't care other parameters, and if the IPU hardware can't get the correct target pixel clock, it will generate a close clock frequency.&lt;/P&gt;&lt;P&gt;Then the parameters "xres, yres, left_margin, right_margin, hsync_len, upper_margin, lower_margin, vsync_len" will be set into IPU hardware, all those parameters come from the LCD data sheet.&lt;/P&gt;&lt;P&gt;The the real LCD refresh is pixel clock / ((xres+left_margin+right_margin+hsync_len) * (yres+upper_margin+lower_margin+vsync_len)). The refresh rate 60 in video mode is not used.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In this customer's LCD datasheet, it only given total vertical blanking parameter 45, then it means the only requirement is "upper_margin+lower_margin+vsync_len = 45".&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 25 Oct 2014 01:59:56 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-Processors/mx53-fb-videomodes-for-custom-lcd/m-p/276234#M30832</guid>
      <dc:creator>qiang_li-mpu_se</dc:creator>
      <dc:date>2014-10-25T01:59:56Z</dc:date>
    </item>
    <item>
      <title>Re: mx53 fb_videomodes for custom lcd</title>
      <link>https://community.nxp.com/t5/i-MX-Processors/mx53-fb-videomodes-for-custom-lcd/m-p/276235#M30833</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt;Got it! - &lt;/SPAN&gt;&lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt;Thanks for your clear and concise response!&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 14 Nov 2014 23:55:08 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-Processors/mx53-fb-videomodes-for-custom-lcd/m-p/276235#M30833</guid>
      <dc:creator>mbp</dc:creator>
      <dc:date>2014-11-14T23:55:08Z</dc:date>
    </item>
    <item>
      <title>Re: mx53 fb_videomodes for custom lcd</title>
      <link>https://community.nxp.com/t5/i-MX-Processors/mx53-fb-videomodes-for-custom-lcd/m-p/276236#M30834</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;Hi Qiang Li,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;Along the same lines, I am connecting the lcd interface to RGB Analogue converter ADV7123. But I cant seem to find the parameters to fill for &lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;fb_videomode. &lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.analog.com/en/products/digital-to-analog-converters/da-converters/adv7123.html" style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px; line-height: 1.5em;" title="http://www.analog.com/en/products/digital-to-analog-converters/da-converters/adv7123.html"&gt;http://www.analog.com/en/products/digital-to-analog-converters/da-converters/adv7123.html&lt;/A&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333330154419px;"&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;I am aiming for a &lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;640x480 @ 60 Hz output.&lt;/SPAN&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;Help would be greatly appreciated. Thank You.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Raju&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 07 Mar 2015 11:33:33 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-Processors/mx53-fb-videomodes-for-custom-lcd/m-p/276236#M30834</guid>
      <dc:creator>rajucm</dc:creator>
      <dc:date>2015-03-07T11:33:33Z</dc:date>
    </item>
    <item>
      <title>Re: mx53 fb_videomodes for custom lcd</title>
      <link>https://community.nxp.com/t5/i-MX-Processors/mx53-fb-videomodes-for-custom-lcd/m-p/276237#M30835</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Qiang Li,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am using these figures below.&lt;/P&gt;&lt;BLOCKQUOTE&gt;
&lt;P&gt;&lt;SPAN style="color: #000000; font-family: 宋体; font-size: 14px;"&gt;static struct fb_videomode lcdif_modedb[] = {&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN style="color: #000000; font-family: 宋体; font-size: 14px;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; {&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN style="color: #000000; font-family: 宋体; font-size: 14px;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; "ADV-WVGA", 60, 800, 480, 28800, 89, 164, 23, 10, 10, 10,&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN style="color: #000000; font-family: 宋体; font-size: 14px;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; FB_SYNC_CLK_LAT_FALL,&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN style="color: #000000; font-family: 宋体; font-size: 14px;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; FB_VMODE_NONINTERLACED,&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN style="color: #000000; font-family: 宋体; font-size: 14px;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; 0,},&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN style="color: #000000; font-family: 宋体; font-size: 14px;"&gt;};&lt;/SPAN&gt;&lt;/P&gt;
&lt;/BLOCKQUOTE&gt;&lt;P&gt;I get some output on the TV hooked up to the ADV7123 RGB out with the above values. Please help. Any changes in the values result in a blue screen. Please help. Many Thanks.&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="tvout.jpg"&gt;&lt;img src="https://community.nxp.com/t5/image/serverpage/image-id/51196i967F2AEC351B655A/image-size/large?v=v2&amp;amp;px=999" role="button" title="tvout.jpg" alt="tvout.jpg" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 08 Mar 2015 12:45:50 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-Processors/mx53-fb-videomodes-for-custom-lcd/m-p/276237#M30835</guid>
      <dc:creator>rajucm</dc:creator>
      <dc:date>2015-03-08T12:45:50Z</dc:date>
    </item>
    <item>
      <title>Re: mx53 fb_videomodes for custom lcd</title>
      <link>https://community.nxp.com/t5/i-MX-Processors/mx53-fb-videomodes-for-custom-lcd/m-p/276238#M30836</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi, Qiang,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;follow this formula you give, the&amp;nbsp;bt656if_modedb[] of&amp;nbsp;&lt;SPAN style="font-size: 10.0pt; color: black;"&gt;bt656-ntsc, calculate the pixel clock should be 32484&lt;/SPAN&gt;&lt;SPAN style="font-size: 10.0pt; color: black;"&gt;，&lt;/SPAN&gt;&lt;SPAN style="font-size: 10.0pt; color: black;"&gt;but actually the default setting is 37037&lt;/SPAN&gt;&lt;SPAN style="font-size: 10.0pt; color: black;"&gt;，&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10.0pt; color: black;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;could you please show how to get this data?&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10.0pt; color: black;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;thanks a lot.&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 14 Jul 2020 01:40:04 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-Processors/mx53-fb-videomodes-for-custom-lcd/m-p/276238#M30836</guid>
      <dc:creator>allonli</dc:creator>
      <dc:date>2020-07-14T01:40:04Z</dc:date>
    </item>
    <item>
      <title>Re: mx53 fb_videomodes for custom lcd</title>
      <link>https://community.nxp.com/t5/i-MX-Processors/mx53-fb-videomodes-for-custom-lcd/m-p/276239#M30837</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi &lt;A _jive_internal="true" data-content-finding="Community" data-userid="224203" data-username="allonli" href="https://community.nxp.com/people/allonli"&gt;&lt;SPAN style="color: #0066cc; text-decoration: underline;"&gt;Allon LI&lt;/SPAN&gt;&lt;/A&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;BT656 timing calculation method is different with this, it is special.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;37037 means pixel clock = 1000000 / 37037 = 27MHz. This is same as standard timing.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But for BT656-NTSC, each frame's pixel clock = (720*2 + 276) * (480 + 19 + 3 + 20 + 3) = 1716 * 525.&amp;nbsp;For NTFS, frame rate is 30fps, so pixel clock = 1716 * 525 * 30 = 27MHz.&lt;/P&gt;&lt;P&gt;They are same.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 14 Jul 2020 01:52:08 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-Processors/mx53-fb-videomodes-for-custom-lcd/m-p/276239#M30837</guid>
      <dc:creator>qiang_li-mpu_se</dc:creator>
      <dc:date>2020-07-14T01:52:08Z</dc:date>
    </item>
  </channel>
</rss>

