<?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: How change display resolution in i.MX Processors</title>
    <link>https://community.nxp.com/t5/i-MX-Processors/How-change-display-resolution/m-p/220161#M14387</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hello Matteo,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please take a look at the following application note regarding different display resolutions, it might help you with it. It is not made for the i.mx28 but it is certainly the same procedure:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://cache.freescale.com/files/dsp/doc/app_note/AN3974.pdf?fsrch=1&amp;amp;sr=18" title="http://cache.freescale.com/files/dsp/doc/app_note/AN3974.pdf?fsrch=1&amp;amp;sr=18"&gt;http://cache.freescale.com/files/dsp/doc/app_note/AN3974.pdf&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 07 Jan 2013 15:26:29 GMT</pubDate>
    <dc:creator>SergioSolis</dc:creator>
    <dc:date>2013-01-07T15:26:29Z</dc:date>
    <item>
      <title>How change display resolution</title>
      <link>https://community.nxp.com/t5/i-MX-Processors/How-change-display-resolution/m-p/220160#M14386</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi all,&lt;/P&gt;&lt;P&gt;I want to change RGB output resolution of i.mx28 evk board. I have modified the file lcd_43wvf1g.c (attached), in particular I changed the following define to obtain a resolution of 720x480&lt;/P&gt;&lt;P style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/P&gt;&lt;P style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;#define DOTCLK_H_ACTIVE&amp;nbsp; 720&lt;/P&gt;&lt;P&gt;#define DOTCLK_H_PULSE_WIDTH 62&lt;/P&gt;&lt;P&gt;#define DOTCLK_HF_PORCH&amp;nbsp; 16&lt;/P&gt;&lt;P&gt;#define DOTCLK_HB_PORCH&amp;nbsp; 60&lt;/P&gt;&lt;P&gt;#define DOTCLK_H_WAIT_CNT&amp;nbsp; (DOTCLK_H_PULSE_WIDTH + DOTCLK_HB_PORCH)&lt;/P&gt;&lt;P&gt;#define DOTCLK_H_PERIOD (DOTCLK_H_WAIT_CNT + DOTCLK_HF_PORCH + DOTCLK_H_ACTIVE)&lt;/P&gt;&lt;P style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;#define DOTCLK_V_ACTIVE&amp;nbsp; 480&lt;/P&gt;&lt;P&gt;#define DOTCLK_V_PULSE_WIDTH&amp;nbsp; 6&lt;/P&gt;&lt;P&gt;#define DOTCLK_VF_PORCH&amp;nbsp; 9&lt;/P&gt;&lt;P&gt;#define DOTCLK_VB_PORCH&amp;nbsp; 30&lt;/P&gt;&lt;P&gt;#define DOTCLK_V_WAIT_CNT (DOTCLK_V_PULSE_WIDTH + DOTCLK_VB_PORCH)&lt;/P&gt;&lt;P&gt;#define DOTCLK_V_PERIOD (DOTCLK_VF_PORCH + DOTCLK_V_ACTIVE + DOTCLK_V_WAIT_CNT)&lt;/P&gt;&lt;P style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The problem is that, for example, the Linux penguin is shown on the display only if I set the values of x_res to 800 and y_res to 480 in lcd_43wvf1g.c file, as shown below:&lt;/P&gt;&lt;P style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;static struct mxs_platform_fb_entry fb_entry = {&lt;/P&gt;&lt;P&gt;&amp;nbsp; .name = "43wvf1g",&lt;/P&gt;&lt;P&gt;&amp;nbsp; .x_res = 480,&lt;/P&gt;&lt;P&gt;&amp;nbsp; .y_res = 800,&lt;/P&gt;&lt;P&gt;&amp;nbsp; .bpp = 32,&lt;/P&gt;&lt;P&gt;&amp;nbsp; .cycle_time_ns = 37,&lt;/P&gt;&lt;P&gt;&amp;nbsp; .lcd_type = MXS_LCD_PANEL_DOTCLK,&lt;/P&gt;&lt;P&gt;&amp;nbsp; .init_panel = init_panel,&lt;/P&gt;&lt;P&gt;&amp;nbsp; .release_panel = release_panel,&lt;/P&gt;&lt;P&gt;&amp;nbsp; .blank_panel = blank_panel,&lt;/P&gt;&lt;P&gt;&amp;nbsp; .run_panel = mxs_lcdif_run,&lt;/P&gt;&lt;P&gt;&amp;nbsp; .stop_panel = mxs_lcdif_stop,&lt;/P&gt;&lt;P&gt;&amp;nbsp; .pan_display = mxs_lcdif_pan_display,&lt;/P&gt;&lt;P&gt;&amp;nbsp; .bl_data = &amp;amp;bl_data,&lt;/P&gt;&lt;P&gt;};&lt;/P&gt;&lt;P style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;If I set the x_res value to 720 I see the display all black. Why?&lt;/P&gt;&lt;P style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Do you have any suggestion or do you have a general suggestion on how to change the display resolution?&lt;/P&gt;&lt;P style="min-height: 8pt; padding: 0px;"&gt;&lt;SPAN class="mce_paste_marker"&gt;&lt;/SPAN&gt;&amp;nbsp;&lt;/P&gt;&lt;P style="min-height: 8pt; padding: 0px;"&gt;&lt;SPAN class="mce_paste_marker"&gt;&lt;/SPAN&gt;&amp;nbsp;&lt;/P&gt;&lt;P style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks!!&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Original Attachment has been moved to: &lt;A _jive_internal="true" href="https://community.nxp.com/docs/DOC-335895"&gt;lcd_43wvf1g.c.zip&lt;/A&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 03 Jan 2013 15:04:19 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-Processors/How-change-display-resolution/m-p/220160#M14386</guid>
      <dc:creator>Matteo</dc:creator>
      <dc:date>2013-01-03T15:04:19Z</dc:date>
    </item>
    <item>
      <title>Re: How change display resolution</title>
      <link>https://community.nxp.com/t5/i-MX-Processors/How-change-display-resolution/m-p/220161#M14387</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hello Matteo,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please take a look at the following application note regarding different display resolutions, it might help you with it. It is not made for the i.mx28 but it is certainly the same procedure:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://cache.freescale.com/files/dsp/doc/app_note/AN3974.pdf?fsrch=1&amp;amp;sr=18" title="http://cache.freescale.com/files/dsp/doc/app_note/AN3974.pdf?fsrch=1&amp;amp;sr=18"&gt;http://cache.freescale.com/files/dsp/doc/app_note/AN3974.pdf&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 07 Jan 2013 15:26:29 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-Processors/How-change-display-resolution/m-p/220161#M14387</guid>
      <dc:creator>SergioSolis</dc:creator>
      <dc:date>2013-01-07T15:26:29Z</dc:date>
    </item>
    <item>
      <title>Re: How change display resolution</title>
      <link>https://community.nxp.com/t5/i-MX-Processors/How-change-display-resolution/m-p/220162#M14388</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hai&amp;nbsp; Fabiani,&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; I also had the same problem (i.e, configure 320x240 lcd). Have you solved the problem. If so, let me know how?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks &amp;amp; Regards&lt;/P&gt;&lt;P&gt;Mallikarjuna Reddy&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 26 Feb 2014 04:59:10 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-Processors/How-change-display-resolution/m-p/220162#M14388</guid>
      <dc:creator>mallikarjunared</dc:creator>
      <dc:date>2014-02-26T04:59:10Z</dc:date>
    </item>
  </channel>
</rss>

