Difference between revisions of "IoTGateway/Features/Linux/Display"

From ESS-WIKI
Jump to: navigation, search
(Modify description)
 
(79 intermediate revisions by 5 users not shown)
Line 1: Line 1:
 +
 
== Single Channel LVDS Panel ==
 
== Single Channel LVDS Panel ==
  
 
=== 96LEDK-C070WV50NA1 ===
 
=== 96LEDK-C070WV50NA1 ===
  
:The following operations are performed with RSB-4210 and BSP version 20120705 (i.MX5).
+
:The following operations are performed with RSB-4210 and BSP version 20120705 (i.MX5).  
  
*u-boot
+
*u-boot  
  
:get [[Media:u-boot-2009.08_V1.1.patch|u-boot-2009.08_V1.1.patch]] and use it to patch by the following commands:
+
:get [[Media:u-boot-2009.08_V1.1.patch|u-boot-2009.08_V1.1.patch]] and use it to patch by the following commands:  
 
<div style="margin-left: 3em;"><syntaxhighlight lang="bash">
 
<div style="margin-left: 3em;"><syntaxhighlight lang="bash">
 
$ cd ${BSP_20120705_BASE}/source/u-boot-2009.08/
 
$ cd ${BSP_20120705_BASE}/source/u-boot-2009.08/
 
$ patch -p1 < ../u-boot-2009.08_V1.1.patch
 
$ patch -p1 < ../u-boot-2009.08_V1.1.patch
</syntaxhighlight></div>
+
</syntaxhighlight>
:<tt>include/asm-arm/clock.h</tt>
+
</div>  
::add one new enumerated <code>PIXEL_CLK</code>
+
:<tt>include/asm-arm/clock.h</tt>  
 +
::add one new enumerated <code>PIXEL_CLK</code>  
 
<div style="margin-left: 3em;"><syntaxhighlight lang="C">
 
<div style="margin-left: 3em;"><syntaxhighlight lang="C">
 
enum {
 
enum {
Line 28: Line 30:
 
         PIXEL_CLK,
 
         PIXEL_CLK,
 
};
 
};
</syntaxhighlight></div>
+
</syntaxhighlight>
:<tt>cpu/arm_cortexa8/mx53/generic.c</tt>
+
</div>  
::add one new case of the <code>switch (clk_type)</code> in the <code>int clk_config(...)</code>
+
:<tt>cpu/arm_cortexa8/mx53/generic.c</tt>  
 +
::add one new case of the <code>switch (clk_type)</code> in the <code>int clk_config(...)</code>  
 
<div style="margin-left: 3em;"><syntaxhighlight lang="C">
 
<div style="margin-left: 3em;"><syntaxhighlight lang="C">
 
case PIXEL_CLK:
 
case PIXEL_CLK:
Line 36: Line 39:
 
                 return -1;
 
                 return -1;
 
         break;
 
         break;
</syntaxhighlight></div>
+
</syntaxhighlight>
::add the follow lines at the end of the file
+
</div>  
 +
:
 +
::add the follow lines at the end of the file  
 
<div style="margin-left: 3em;"><syntaxhighlight lang="C">
 
<div style="margin-left: 3em;"><syntaxhighlight lang="C">
 
int config_pixel_clk(u32 ref, u32 freq)
 
int config_pixel_clk(u32 ref, u32 freq)
Line 57: Line 62:
 
         return config_pll_clk(PLL4_CLK, &pll_param);
 
         return config_pll_clk(PLL4_CLK, &pll_param);
 
}
 
}
</syntaxhighlight></div>
+
</syntaxhighlight>
:<tt>board/freescale/mx53_smd/mx53_smd.c</tt>
+
</div>  
::insert the follow lines between <code>#ifdef CONFIG_ADV_SOM_CMX53</code> and <code>#else</code>
+
:<tt>board/freescale/mx53_smd/mx53_smd.c</tt>  
 +
::insert the follow lines between <code>#ifdef CONFIG_ADV_SOM_CMX53</code> and <code>#else</code>  
 
<div style="margin-left: 3em;"><syntaxhighlight lang="C">
 
<div style="margin-left: 3em;"><syntaxhighlight lang="C">
 
static struct fb_videomode lvds_g070y2 = {
 
static struct fb_videomode lvds_g070y2 = {
Line 67: Line 73:
 
         0,
 
         0,
 
};
 
};
</syntaxhighlight></div>
+
</syntaxhighlight>
::replace the part of the <code>... ipuv3_fb_init ... clk_config ...</code> by the following:
+
</div>  
 +
:
 +
::replace the part of the <code>... ipuv3_fb_init ... clk_config ...</code> by the following:  
 
<div style="margin-left: 3em;"><syntaxhighlight lang="C">
 
<div style="margin-left: 3em;"><syntaxhighlight lang="C">
 
ret = ipuv3_fb_init(&lvds_g070y2, di, IPU_PIX_FMT_RGB24,
 
ret = ipuv3_fb_init(&lvds_g070y2, di, IPU_PIX_FMT_RGB24,
 
                 DI_PCLK_LDB, 30000000);
 
                 DI_PCLK_LDB, 30000000);
 
clk_config(CONFIG_REF_CLK_FREQ, 30*7, PIXEL_CLK);
 
clk_config(CONFIG_REF_CLK_FREQ, 30*7, PIXEL_CLK);
</syntaxhighlight></div>
+
</syntaxhighlight>
*u-boot environment variable
+
</div>  
 +
*u-boot environment variable  
  
:set <code>bootargs_base</code> as below:
+
:set <code>bootargs_base</code> as below:  
  
 
{| class="wikitable" style="margin-left: 3em;"
 
{| class="wikitable" style="margin-left: 3em;"
Line 83: Line 92:
 
|}
 
|}
  
*linux kernel
+
*linux kernel  
  
:<tt>arch/arm/mach-mx5/mx53_smd.c</tt>
+
:<tt>arch/arm/mach-mx5/mx53_smd.c</tt>  
::insert the following lines into <code>static struct struct fb_videomode ldb_modefb[]</code> (or modify the existed <span style="color:red">"G070Y2"</span>)&nbsp;:
+
::insert the following lines into <code>static struct struct fb_videomode ldb_modefb[]</code> (or modify the existed <span style="color:red">"G070Y2"</span>)&nbsp;:  
 
<div style="margin-left: 3em;"><syntaxhighlight lang="C">
 
<div style="margin-left: 3em;"><syntaxhighlight lang="C">
 
{
 
{
Line 93: Line 102:
 
         FB_VMODE_NONINTERLACED, 0,
 
         FB_VMODE_NONINTERLACED, 0,
 
},
 
},
</syntaxhighlight></div>
+
</syntaxhighlight>
 +
</div>  
 
=== IDK-1115R-40XGC1E ===
 
=== IDK-1115R-40XGC1E ===
  
*u-boot environment variable
+
*u-boot environment variable  
  
:set <code>bootargs_base</code> as below:
+
:set <code>bootargs_base</code> as below:  
  
 
{| class="wikitable" style="margin-left: 3em;"
 
{| class="wikitable" style="margin-left: 3em;"
Line 105: Line 115:
 
|}
 
|}
  
 
+
&nbsp;
  
 
=== AM-640480GETNQW-TA0H ===
 
=== AM-640480GETNQW-TA0H ===
Line 111: Line 121:
 
&nbsp; &nbsp; &nbsp; Android 4.4.2 (Kernel 3.0.35)
 
&nbsp; &nbsp; &nbsp; Android 4.4.2 (Kernel 3.0.35)
  
*Timing&nbsp;
+
*Timing&nbsp;  
  
 
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; The clock frequency should be 25.175MHz. Need to modify the clock source&nbsp;form PLL2 (pll2_pfd_352M) to PLL5. (In arch/arm/mach-mx6/clock.c )
 
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; The clock frequency should be 25.175MHz. Need to modify the clock source&nbsp;form PLL2 (pll2_pfd_352M) to PLL5. (In arch/arm/mach-mx6/clock.c )
  
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Ref: [https://cache.freescale.com/files/32bit/doc/app_note/AN4509.pdf https://cache.freescale.com/files/32bit/doc/app_note/AN4509.pdf]<br/>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Ref: [https://community.nxp.com/thread/306801 https://community.nxp.com/thread/306801]
+
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Ref: [https://cache.freescale.com/files/32bit/doc/app_note/AN4509.pdf https://cache.freescale.com/files/32bit/doc/app_note/AN4509.pdf]<br/> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Ref: [https://community.nxp.com/thread/306801 https://community.nxp.com/thread/306801]
  
 
&nbsp; &nbsp; &nbsp; &nbsp;android/kernel_imx/arch/arm/mach-mx6/clock.c b/new/arch/arm/mach-mx6/clock.c
 
&nbsp; &nbsp; &nbsp; &nbsp;android/kernel_imx/arch/arm/mach-mx6/clock.c b/new/arch/arm/mach-mx6/clock.c
Line 123: Line 133:
 
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; (2) static struct clk ldb_di1_clk &nbsp; &nbsp; &nbsp; &nbsp;.parent = &pll2_pfd_352M, &nbsp;==> &nbsp;.parent = &pll5_video_main_clk,
 
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; (2) static struct clk ldb_di1_clk &nbsp; &nbsp; &nbsp; &nbsp;.parent = &pll2_pfd_352M, &nbsp;==> &nbsp;.parent = &pll5_video_main_clk,
  
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; (3) int __init mx6_clocks_init &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; clk_set_parent(&ldb_di0_clk, &pll2_pfd_352M); &nbsp; -->&nbsp;clk_set_parent(&ldb_di0_clk, &pll5_video_main_clk);<br/>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;clk_set_parent(&ldb_di1_clk, &pll2_pfd_352M); &nbsp; &nbsp;-->&nbsp;clk_set_parent(&ldb_di1_clk, &pll5_video_main_clk);
+
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; (3) int __init mx6_clocks_init &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; clk_set_parent(&ldb_di0_clk, &pll2_pfd_352M); &nbsp; -->&nbsp;clk_set_parent(&ldb_di0_clk, &pll5_video_main_clk);<br/> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;clk_set_parent(&ldb_di1_clk, &pll2_pfd_352M); &nbsp; &nbsp;-->&nbsp;clk_set_parent(&ldb_di1_clk, &pll5_video_main_clk);
  
 
&nbsp; &nbsp; &nbsp; &nbsp;android/kernel_imx/drivers/video/mxc/ldb.c
 
&nbsp; &nbsp; &nbsp; &nbsp;android/kernel_imx/drivers/video/mxc/ldb.c
Line 129: Line 139:
 
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp;static struct fb_videomode ldb_modedb[] = {
 
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp;static struct fb_videomode ldb_modedb[] = {
  
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;{<br/>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; "LDB-VGA", 25, 640, 480, 39682,<br/>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;160, 80,<br/>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;45, 22,<br/>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;5, 1,<br/>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;FB_SYNC_HOR_HIGH_ACT | FB_SYNC_VERT_HIGH_ACT,<br/>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;FB_VMODE_NONINTERLACED,<br/>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;FB_MODE_IS_VESA},
+
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;{<br/> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; "LDB-VGA", 25, 640, 480, 39682,<br/> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;160, 80,<br/> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;45, 22,<br/> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;5, 1,<br/> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;FB_SYNC_HOR_HIGH_ACT | FB_SYNC_VERT_HIGH_ACT,<br/> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;FB_VMODE_NONINTERLACED,<br/> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;FB_MODE_IS_VESA},
  
*u-boot environment variable
+
*u-boot environment variable  
  
:set <code>bootargs</code>&nbsp;as below:
+
:set <code>bootargs</code>&nbsp;as below:  
  
 
{| class="wikitable" style="margin-left: 3em;"
 
{| class="wikitable" style="margin-left: 3em;"
Line 141: Line 151:
  
 
|}
 
|}
 
==  ==
 
  
 
== Dual Channel LVDS Panel ==
 
== Dual Channel LVDS Panel ==
Line 162: Line 170:
 
                 status = "okay";</small>
 
                 status = "okay";</small>
  
Step3: In display-timings native-mode = &lt;&timing0&gt;, Delete the other panel parameter.Add" LTI370LN01 " Parameter
+
Step3: In display-timings native-mode = <&timing0>, Delete the other panel parameter.Add" LTI370LN01 " Parameter
  
 
         <small>//Dual channel panel
 
         <small>//Dual channel panel
Line 179: Line 187:
 
Calculating Timings parameter Check your panel Timing table Example&nbsp;: samsung 37 inch panel
 
Calculating Timings parameter Check your panel Timing table Example&nbsp;: samsung 37 inch panel
  
:[[File:Timing lvds.png|500px|Timing lvds.png]]
+
:[[File:Timing lvds.png|500px|Timing lvds.png]]  
:[[File:Timing lvds2.png|300px|Timing lvds2.png]]
+
:[[File:Timing lvds2.png|300px|Timing lvds2.png]]  
  
 
(1)clock-frequency --> Clock (MHz)
 
(1)clock-frequency --> Clock (MHz)
Line 256: Line 264:
 
  </small>
 
  </small>
  
 
+
&nbsp;
  
 
=== IDK-1105R-50VGA1E ===
 
=== IDK-1105R-50VGA1E ===
  
:The following operations are performed using Linux BSP 4410LBV2080.
+
:The following operations are performed using Linux BSP 4410LBV2080.  
  
*u-boot
+
*u-boot  
  
:apparently specify <span style="color:red">LDB-VGA</span> in video item contained in the variable <code>bootargs_base</code>
+
:apparently specify <span style="color:red">LDB-VGA</span> in video item contained in the variable <code>bootargs_base</code>  
:<code>setenv bootargs_base 'setenv bootargs console=ttymxc0,115200 enable_wait_mode=off video=mxcfb0:dev=ldb,<span style="color:red">LDB-VGA</span>,if=RGB666'</code>
+
:<code>setenv bootargs_base 'setenv bootargs console=ttymxc0,115200 enable_wait_mode=off video=mxcfb0:dev=ldb,<span style="color:red">LDB-VGA</span>,if=RGB666'</code>  
  
*linux kernel
+
*linux kernel  
  
:in drivers/video/mxc/ldb.c, insert the following lines into <code>static struct struct fb_videomode ldb_modefb[]</code> (or modify the existed <span style="color:red">"LDB-VGA"</span>)&nbsp;:
+
:in drivers/video/mxc/ldb.c, insert the following lines into <code>static struct struct fb_videomode ldb_modefb[]</code> (or modify the existed <span style="color:red">"LDB-VGA"</span>)&nbsp;:  
 
<div style="margin-left: 2em;"><syntaxhighlight lang="C">
 
<div style="margin-left: 2em;"><syntaxhighlight lang="C">
 
  {
 
  {
Line 280: Line 288:
 
  FB_MODE_IS_DETAILED,},
 
  FB_MODE_IS_DETAILED,},
 
</syntaxhighlight>
 
</syntaxhighlight>
<references />
+
 
 +
&nbsp;
  
 
----
 
----
Line 286: Line 295:
 
The following operations are performed using Android&nbsp;BSP imx6ABV3040_2016-06-21 (Android 4.4)
 
The following operations are performed using Android&nbsp;BSP imx6ABV3040_2016-06-21 (Android 4.4)
  
*Timing &nbsp; &nbsp; &nbsp;&nbsp;
+
*Timing &nbsp; &nbsp; &nbsp;&nbsp;  
  
 
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp;&nbsp; &nbsp; The clock frequency should be 25.175MHz. Need to modify the clock source&nbsp;form PLL2 (pll2_pfd_352M) to PLL5. (In arch/arm/mach-mx6/clock.c )
 
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp;&nbsp; &nbsp; The clock frequency should be 25.175MHz. Need to modify the clock source&nbsp;form PLL2 (pll2_pfd_352M) to PLL5. (In arch/arm/mach-mx6/clock.c )
  
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <ref name="http://advdownload.advantech.com/productfile/Downloadfile1/1-Q18T9C/IDK-1105_USER_MANUAL_ED.1_FINAL.PDF">_</ref>&nbsp;<ref>http://advdownload.advantech.com/productfile/Downloadfile1/1-Q18T9C/IDK-1105_USER_MANUAL_ED.1_FINAL.PDF</ref>[http://advdownload.advantech.com/productfile/Downloadfile1/1-Q18T9C/IDK-1105_USER_MANUAL_ED.1_FINAL.PDF http://advdownload.advantech.com/productfile/Downloadfile1/1-Q18T9C/IDK-1105_USER_MANUAL_ED.1_FINAL.PDF]
+
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <ref name="http://advdownload.advantech.com/productfile/Downloadfile1/1-Q18T9C/IDK-1105_USER_MANUAL_ED.1_FINAL.PDF" />&nbsp;<ref>http://advdownload.advantech.com/productfile/Downloadfile1/1-Q18T9C/IDK-1105_USER_MANUAL_ED.1_FINAL.PDF</ref>[http://advdownload.advantech.com/productfile/Downloadfile1/1-Q18T9C/IDK-1105_USER_MANUAL_ED.1_FINAL.PDF http://advdownload.advantech.com/productfile/Downloadfile1/1-Q18T9C/IDK-1105_USER_MANUAL_ED.1_FINAL.PDF]
  
 
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp;
 
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp;
  
*u-boot
+
*u-boot  
  
 
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;setenv bootargs console=ttymxc0,115200 androidboot.console=ttymxc0 vmalloc=400M init=/init video_mode=display3 video=mxcfb0:dev=ldb,<span style="color:#FF0000;">LDB-VGA</span>,if=RGB<span style="color:#FF0000;">666</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;video=mxcfb1:off fbmem=28M,10M androidboot.hardware=freescale pcie_testmode=off &nbsp;
 
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;setenv bootargs console=ttymxc0,115200 androidboot.console=ttymxc0 vmalloc=400M init=/init video_mode=display3 video=mxcfb0:dev=ldb,<span style="color:#FF0000;">LDB-VGA</span>,if=RGB<span style="color:#FF0000;">666</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;video=mxcfb1:off fbmem=28M,10M androidboot.hardware=freescale pcie_testmode=off &nbsp;
  
*Android kernel&nbsp;
+
*Android kernel&nbsp;  
  
 
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
 
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
Line 308: Line 317:
 
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; (2) static struct clk gpu2d_core_clk&nbsp; &nbsp; &nbsp; &nbsp; .parent = &pll2_pfd_352M, &nbsp;==> &nbsp;.parent = &pll5_video_main_clk,
 
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; (2) static struct clk gpu2d_core_clk&nbsp; &nbsp; &nbsp; &nbsp; .parent = &pll2_pfd_352M, &nbsp;==> &nbsp;.parent = &pll5_video_main_clk,
  
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; (3) &nbsp;&nbsp;if (cpu_is_mx6q())<br/>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; clk_set_parent(&gpu2d_core_clk[0], &pll3_usb_otg_main_clk);<br/>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;clk_set_parent(&ldb_di0_clk, &pll2_pfd_352M); &nbsp; -->&nbsp;clk_set_parent(&ldb_di0_clk, &pll5_video_main_clk);<br/>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;clk_set_parent(&ldb_di1_clk, &pll2_pfd_352M); &nbsp; &nbsp;-->&nbsp;clk_set_parent(&ldb_di1_clk, &pll5_video_main_clk);
+
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; (3) &nbsp;&nbsp;if (cpu_is_mx6q())<br/> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; clk_set_parent(&gpu2d_core_clk[0], &pll3_usb_otg_main_clk);<br/> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;clk_set_parent(&ldb_di0_clk, &pll2_pfd_352M); &nbsp; -->&nbsp;clk_set_parent(&ldb_di0_clk, &pll5_video_main_clk);<br/> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;clk_set_parent(&ldb_di1_clk, &pll2_pfd_352M); &nbsp; &nbsp;-->&nbsp;clk_set_parent(&ldb_di1_clk, &pll5_video_main_clk);
  
 
&nbsp; &nbsp; &nbsp; &nbsp;android/kernel_imx/drivers/video/mxc/ldb.c
 
&nbsp; &nbsp; &nbsp; &nbsp;android/kernel_imx/drivers/video/mxc/ldb.c
Line 322: Line 331:
 
                                0,
 
                                0,
 
                      FB_VMODE_NONINTERLACED,
 
                      FB_VMODE_NONINTERLACED,
                      FB_MODE_IS_DETAILED,},</syntaxhighlight></div>
+
                      FB_MODE_IS_DETAILED,},</syntaxhighlight>
 +
</div>  
 
=== IDK-1107WR-40WVA1E ===
 
=== IDK-1107WR-40WVA1E ===
  
Line 329: Line 339:
 
The following operations are performed with RSB-4410(4410LBV2080 and [[Media:eGTouch_v2.5.3810.L-ma.zip|eGTouch_v2.5.3810.L-ma.zip]])
 
The following operations are performed with RSB-4410(4410LBV2080 and [[Media:eGTouch_v2.5.3810.L-ma.zip|eGTouch_v2.5.3810.L-ma.zip]])
  
*u-boot
+
*u-boot  
  
:specify the variable bootargs_base as below:
+
:specify the variable bootargs_base as below:  
:<code>setenv bootargs_base 'setenv bootargs console=ttymxc0,115200 enable_wait_mode=off video_mode=extension video=mxcfb0:dev=ldb,800x480M@60,if=RGB666,bpp=32 ldb=sin0'</code>
+
:<code>setenv bootargs_base 'setenv bootargs console=ttymxc0,115200 enable_wait_mode=off video_mode=extension video=mxcfb0:dev=ldb,800x480M@60,if=RGB666,bpp=32 ldb=sin0'</code>  
  
*linux kernel source
+
*linux kernel source  
  
#drivers/input/evdev.c
+
#drivers/input/evdev.c  
#:[[File:IDK-1107WR-40WVA1E linux evdev.png|600px|IDK-1107WR-40WVA1E linux evdev.png]]
+
#:[[File:IDK-1107WR-40WVA1E linux evdev.png|600px|IDK-1107WR-40WVA1E linux evdev.png]]  
#drivers/input/mousedev.c
+
#drivers/input/mousedev.c  
#:[[File:IDK-1107WR-40WVA1E linux mousedev.png|600px|IDK-1107WR-40WVA1E linux mousedev.png]]
+
#:[[File:IDK-1107WR-40WVA1E linux mousedev.png|600px|IDK-1107WR-40WVA1E linux mousedev.png]]  
#drivers/input/joydev.c
+
#drivers/input/joydev.c  
#:[[File:IDK-1107WR-40WVA1E linux joydev.png|600px|IDK-1107WR-40WVA1E linux joydev.png]]
+
#:[[File:IDK-1107WR-40WVA1E linux joydev.png|600px|IDK-1107WR-40WVA1E linux joydev.png]]  
  
*linux kernel config
+
*linux kernel config  
  
:'''selection'''
+
:'''selection'''  
  
 +
&nbsp;
  
 +
:
 +
::<tt><small>Device Drivers ---></small></tt>
 +
:::<tt><small>Input device support ---></small></tt>
 +
::::<tt><small><*> Event interface</small></tt>
 +
::::<tt><small>Miscellaneous devices ---></small></tt>
 +
:::::<tt><small><*> User level driver support</small></tt>   
 +
:::<tt><small>HID Devices ---></small></tt>
 +
::::<tt><small>[*] /dev/hidraw raw HID device support</small></tt>
 +
::::<tt><small>Special HID drivers ---></small></tt>
 +
:::::<tt><small><*> HID Multitouch panels</small></tt>       
  
::<tt><small>Device Drivers ---></small></tt>
+
&nbsp;
:::<tt><small>Input device support ---></small></tt>
 
::::<tt><small>&lt;*&gt; Event interface</small></tt>
 
::::<tt><small>Miscellaneous devices ---></small></tt>
 
:::::<tt><small>&lt;*&gt; User level driver support</small></tt>
 
:::<tt><small>HID Devices ---></small></tt>
 
::::<tt><small>[*] /dev/hidraw raw HID device support</small></tt>
 
::::<tt><small>Special HID drivers ---></small></tt>
 
:::::<tt><small>&lt;*&gt; HID Multitouch panels</small></tt>
 
  
 +
:'''deselection'''
  
 +
&nbsp;
  
:'''deselection'''
+
:
 
+
::<tt><small>Device Drivers ---></small></tt>  
 
+
:::<tt><small>Input device support ---></small></tt>  
 
+
::::<tt><small>[*] Touchscreens ---></small></tt>  
::<tt><small>Device Drivers ---></small></tt>
+
:::::<tt><small>< > USB Touchscreen Driver</small></tt>        
:::<tt><small>Input device support ---></small></tt>
 
::::<tt><small>[*] Touchscreens ---></small></tt>
 
:::::<tt><small>&lt; &gt; USB Touchscreen Driver</small></tt>
 
  
 +
&nbsp;
  
 +
*root filesystem
  
*root filesystem
+
:[[File:IDK-1107WR-40WVA1E rootfs.png|600px|IDK-1107WR-40WVA1E rootfs.png]]
 +
:add
 +
::<tt>/usr/local/eGTouchARMnonX</tt>
 +
::<tt>/etc/eGTouchL.ini</tt> 
  
:[[File:IDK-1107WR-40WVA1E rootfs.png|600px|IDK-1107WR-40WVA1E rootfs.png]]
+
:update  
:add
+
::<tt>/etc/rc.d/rc.local</tt>  
::<tt>/usr/local/eGTouchARMnonX</tt>
 
::<tt>/etc/eGTouchL.ini</tt>
 
 
 
:update
 
::<tt>/etc/rc.d/rc.local</tt>
 
  
 
==== Android ====
 
==== Android ====
Line 386: Line 398:
 
The following operations are performed with RSB-4410(4410ABV1080 and [[Media:eGTouch_v2.5.2320.A-all.zip|eGTouch_v2.5.2320.A-all.zip]])
 
The following operations are performed with RSB-4410(4410ABV1080 and [[Media:eGTouch_v2.5.2320.A-all.zip|eGTouch_v2.5.2320.A-all.zip]])
  
*u-boot
+
*u-boot  
  
:specify the variable bootargs_base as below:
+
:specify the variable bootargs_base as below:  
  
 
{| class="wikitable" style="margin-left: 2em;"
 
{| class="wikitable" style="margin-left: 2em;"
Line 395: Line 407:
 
|}
 
|}
  
*linux kernel config
+
*linux kernel config  
  
 
{| class="wikitable" style="margin-left: 2em; line-height: 0"
 
{| class="wikitable" style="margin-left: 2em; line-height: 0"
Line 402: Line 414:
 
<tt>Device Drivers ---></tt>
 
<tt>Device Drivers ---></tt>
  
:<tt>Input device support ---> </tt>
+
:<tt>Input device support ---> </tt>  
::<tt><span style="color:red">'''&lt;*&gt;'''</span> Event interface</tt>
+
::<tt><span style="color:red">'''<*>'''</span> Event interface</tt>  
::<tt>Miscellaneous devices ---> </tt>
+
::<tt>Miscellaneous devices ---> </tt>  
:::<tt><span style="color:red">'''&lt;*&gt;'''</span> User level driver support</tt>
+
:::<tt><span style="color:red">'''<*>'''</span> User level driver support</tt>    
:<tt>HID Devices ---> </tt>
+
:<tt>HID Devices ---> </tt>  
::<tt><span style="color:red">'''[*]'''</span> /dev/hidraw raw HID device support</tt>
+
::<tt><span style="color:red">'''[*]'''</span> /dev/hidraw raw HID device support</tt>  
::<tt>Special HID drivers ---> </tt>
+
::<tt>Special HID drivers ---> </tt>  
:::<tt><span style="color:red">'''&lt;*&gt;'''</span> HID Multitouch panels</tt>
+
:::<tt><span style="color:red">'''<*>'''</span> HID Multitouch panels</tt>    
 
 
  
 +
&nbsp;
  
 
|}
 
|}
  
:copy and rename <code>.config</code> to <code>arch/arm/configs/imx6_rsb4410_android_defconfig</code>
+
:copy and rename <code>.config</code> to <code>arch/arm/configs/imx6_rsb4410_android_defconfig</code>  
  
*root filesystem contained in BSP
+
*root filesystem contained in BSP  
  
:android/device/fsl/rsb_4410/init.rc
+
:android/device/fsl/rsb_4410/init.rc  
:[[File:IDK-1107WR-40WVA1E android init rc.png|RTENOTITLE]]
+
:[[File:IDK-1107WR-40WVA1E android init rc.png|RTENOTITLE]]  
  
*eGalaxCalibrator
+
*eGalaxCalibrator  
  
:[[File:IDK-1107WR-40WVA1E Apps.png|640px|IDK-1107WR-40WVA1E Apps.png]]
+
:[[File:IDK-1107WR-40WVA1E Apps.png|640px|IDK-1107WR-40WVA1E Apps.png]]  
:[[File:IDK-1107WR-40WVA1E eGTouchCalibrator 1.png|400px|IDK-1107WR-40WVA1E eGTouchCalibrator 1.png]] [[File:IDK-1107WR-40WVA1E eGTouchCalibrator about.png|400px|IDK-1107WR-40WVA1E eGTouchCalibrator about.png]]
+
:[[File:IDK-1107WR-40WVA1E eGTouchCalibrator 1.png|400px|IDK-1107WR-40WVA1E eGTouchCalibrator 1.png]] [[File:IDK-1107WR-40WVA1E eGTouchCalibrator about.png|400px|IDK-1107WR-40WVA1E eGTouchCalibrator about.png]]  
:[[File:IDK-1107WR-40WVA1E eGTouchCalibrator 2.png|400px|IDK-1107WR-40WVA1E eGTouchCalibrator 2.png]] [[File:IDK-1107WR-40WVA1E eGTouchCalibrator 3.png|400px|IDK-1107WR-40WVA1E eGTouchCalibrator 3.png]]
+
:[[File:IDK-1107WR-40WVA1E eGTouchCalibrator 2.png|400px|IDK-1107WR-40WVA1E eGTouchCalibrator 2.png]] [[File:IDK-1107WR-40WVA1E eGTouchCalibrator 3.png|400px|IDK-1107WR-40WVA1E eGTouchCalibrator 3.png]]  
  
 
<section begin="howtos"></section>
 
<section begin="howtos"></section>
Line 436: Line 448:
 
For Yocto 1.8 and later
 
For Yocto 1.8 and later
  
;Display setting
+
;Display setting  
 +
 
 +
;&nbsp;
  
;;u-boot
+
;&nbsp;
 +
 
 +
;&nbsp;
 +
 
 +
;&nbsp;
 +
 
 +
;
 +
;;u-boot  
  
 
u-boot bootargs need to be set as below:
 
u-boot bootargs need to be set as below:
Line 444: Line 465:
 
  setenv mmcargs setenv bootargs console=${console},${baudrate} ${smp} root=${mmcroot} video=mxcfb0:dev=ldb,800x480M@60,if=RGB24 video=mxcfb1:off video=mxcfb2:off;
 
  setenv mmcargs setenv bootargs console=${console},${baudrate} ${smp} root=${mmcroot} video=mxcfb0:dev=ldb,800x480M@60,if=RGB24 video=mxcfb1:off video=mxcfb2:off;
  
;;kernel
+
;&nbsp;
 +
 
 +
;&nbsp;
 +
 
 +
;&nbsp;
 +
 
 +
;&nbsp;
 +
 
 +
;
 +
;;kernel  
  
 
Need to change clock source, so we modify dts file.
 
Need to change clock source, so we modify dts file.
Line 476: Line 506:
 
         //}
 
         //}
  
 +
&nbsp;
 +
 +
;Touch setting
 +
 +
;&nbsp;
  
 +
;&nbsp;
  
;Touch setting
+
;&nbsp;
  
;;kernel config setting
+
;&nbsp;
 +
 
 +
;
 +
;;kernel config setting  
  
 
You could check this by '''make menuconfig'''
 
You could check this by '''make menuconfig'''
Line 503: Line 542:
 
                 < > USB Touchscreen Driver
 
                 < > USB Touchscreen Driver
  
;Touch calibration on Yocto
+
;Note
 +
:&nbsp;&nbsp;eGTouch_v2.5.7413.L-ma /eGTouchARMhf/eGTouchARMhfnonX or&nbsp;eGTouchARMhfwithX
 +
;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 1. Need to copy&nbsp;&nbsp;&nbsp;“eGTouchL.ini” into Linux system directory “/etc/eGTouchL.ini” and&nbsp;copy&nbsp;&nbsp;eGTouchD under /usr/bin..&nbsp;
 +
;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 2. Add&nbsp;&nbsp;"/usr/bin/eGTouchD "&nbsp;&nbsp;in /etc/rc.local&nbsp;
 +
;&nbsp;
 +
;&nbsp;
 +
;&nbsp;
 +
;&nbsp;
 +
;Touch calibration on Yocto  
 +
 
 +
;Step 1
 +
 
 +
;&nbsp;
  
;Step 1
+
;&nbsp;
  
;;
+
;&nbsp;  
 +
 
 +
;&nbsp;
 +
 
 +
;
 +
;;&nbsp; 
  
 
[[File:TocuhCalibrationonYocto1.png|center|TocuhCalibrationonYocto1.png]]
 
[[File:TocuhCalibrationonYocto1.png|center|TocuhCalibrationonYocto1.png]]
  
;Step 2
+
;Step 2  
  
;;
+
;&nbsp;  
 +
 
 +
;&nbsp;
 +
 
 +
;&nbsp;
 +
 
 +
;&nbsp;
 +
 
 +
;
 +
;;&nbsp; 
  
 
[[File:TocuhCalibrationonYocto2.png|center|TocuhCalibrationonYocto2.png]]
 
[[File:TocuhCalibrationonYocto2.png|center|TocuhCalibrationonYocto2.png]]
  
;Step 3
+
;Step 3  
  
;;
+
;&nbsp;  
 +
 
 +
;&nbsp;
 +
 
 +
;&nbsp;
 +
 
 +
;&nbsp;
 +
 
 +
;
 +
;;&nbsp; 
  
 
[[File:TocuhCalibrationonYocto3.png|center|TocuhCalibrationonYocto3.png]]
 
[[File:TocuhCalibrationonYocto3.png|center|TocuhCalibrationonYocto3.png]]
 +
 +
== MIPI DSI Panel ==
 +
 +
=== AUO G101UAN02 ===
 +
 +
Enable auo in deconfig
 +
<pre>bitbake linux-imx -c menuconfig</pre>
 +
 +
Enable option:
 +
<pre>Device Drivers -> Graphics support -> Display Panels -> support for AUO G101UAN02 panel</pre>
 +
 +
Re-generated image
 +
<pre>bitbake -c compile -f linux-imx
 +
bitbake -c deploy -f linux-imx
 +
bitbake fsl-image-qt5-validation-imx</pre>
 +
 +
Flash image
 +
<pre>cd ~/imx8_5720/build-xwayland/tmp/deploy/images/imx8mqrom5720a1
 +
bzcat ./fsl-image-qt5-validation-imx-imx8mqrom5720a1-XXXX.rootfs.sdcard.bz2 | sudo dd of=/dev/sdX bs=1M</pre>
 +
 +
Change dts in u-boot parameter. (Please type enter while the system is in count down process during boot to bootloader.)
 +
<pre>setenv fdt_file adv-imx8mq-rom5720-a1-dcss-auog101uan02.dtb
 +
saveenv
 +
boot</pre>
  
 
== HOWTOs ==
 
== HOWTOs ==
Line 529: Line 627:
 
Set HDMI in '''u-boot command mode''' is taken as an example:
 
Set HDMI in '''u-boot command mode''' is taken as an example:
  
{| class="wikitable" style="margin-left: 2em;"
+
{| class="wikitable" style="margin-left: 2em"
 
|-
 
|-
 
| # setenv mmcargs setenv bootargs console=${console},${baudrate} ${smp} root=${mmcroot} video=mxcfb0:dev=hdmi,1920x1080M@60,if=RGB24 video=mxcfb1:off video=mxcfb2:off;boot
 
| # setenv mmcargs setenv bootargs console=${console},${baudrate} ${smp} root=${mmcroot} video=mxcfb0:dev=hdmi,1920x1080M@60,if=RGB24 video=mxcfb1:off video=mxcfb2:off;boot
Line 536: Line 634:
 
Set LVDS in '''u-boot command mode''' is taken as an example:
 
Set LVDS in '''u-boot command mode''' is taken as an example:
  
{| class="wikitable" style="margin-left: 2em;"
+
{| class="wikitable" style="margin-left: 2em"
 
|-
 
|-
 
| # setenv mmcargs setenv bootargs console=${console},${baudrate} ${smp} root=${mmcroot} video=mxcfb0:dev=ldb,800x480M@60,if=RGB24 video=mxcfb1:off video=mxcfb2:off;boot
 
| # setenv mmcargs setenv bootargs console=${console},${baudrate} ${smp} root=${mmcroot} video=mxcfb0:dev=ldb,800x480M@60,if=RGB24 video=mxcfb1:off video=mxcfb2:off;boot
Line 543: Line 641:
 
Set VGA in '''u-boot command mode''' is taken as an example:
 
Set VGA in '''u-boot command mode''' is taken as an example:
  
{| class="wikitable" style="margin-left: 2em;"
+
{| class="wikitable" style="margin-left: 2em"
 
|-
 
|-
 
| # setenv mmcargs setenv bootargs console=${console},${baudrate} ${smp} root=${mmcroot} video=mxcfb0:dev=lcd,1920x1080M@60,if=RGB24 video=mxcfb1:off video=mxcfb2:off;boot
 
| # setenv mmcargs setenv bootargs console=${console},${baudrate} ${smp} root=${mmcroot} video=mxcfb0:dev=lcd,1920x1080M@60,if=RGB24 video=mxcfb1:off video=mxcfb2:off;boot
Line 552: Line 650:
 
Set resolution in '''u-boot command mode''' Set HDMI 640x480 and VGA 1920x1080 is taken as an example:
 
Set resolution in '''u-boot command mode''' Set HDMI 640x480 and VGA 1920x1080 is taken as an example:
  
{| class="wikitable" style="margin-left: 2em;"
+
{| class="wikitable" style="margin-left: 2em"
 
|-
 
|-
 
| # setenv mmcargs setenv bootargs console=${console},${baudrate} ${smp} root=${mmcroot} video=mxcfb0:dev=hdmi,'''640x480'''M@60,if=RGB24 video=mxcfb1:dev=lcd,'''1920x1080'''M@60,if=RGB24 video=mxcfb2:off;boot
 
| # setenv mmcargs setenv bootargs console=${console},${baudrate} ${smp} root=${mmcroot} video=mxcfb0:dev=hdmi,'''640x480'''M@60,if=RGB24 video=mxcfb1:dev=lcd,'''1920x1080'''M@60,if=RGB24 video=mxcfb2:off;boot
Line 559: Line 657:
 
Set HDMI 1920x1080 and VGA 640x480 is taken as an example:
 
Set HDMI 1920x1080 and VGA 640x480 is taken as an example:
  
{| class="wikitable" style="margin-left: 2em;"
+
{| class="wikitable" style="margin-left: 2em"
 
|-
 
|-
 
| # setenv mmcargs setenv bootargs console=${console},${baudrate} ${smp} root=${mmcroot} video=mxcfb0:dev=hdmi,'''1920x1080'''M@60,if=RGB24 video=mxcfb1:dev=lcd,'''640x480'''M@60,if=RGB24 video=mxcfb2:off;boot
 
| # setenv mmcargs setenv bootargs console=${console},${baudrate} ${smp} root=${mmcroot} video=mxcfb0:dev=hdmi,'''1920x1080'''M@60,if=RGB24 video=mxcfb1:dev=lcd,'''640x480'''M@60,if=RGB24 video=mxcfb2:off;boot
Line 565: Line 663:
  
 
=== How to get the current display mode ===
 
=== How to get the current display mode ===
<div style="margin-left: 1em;"><syntaxhighlight lang="TEXT">
+
 
# cat /sys/class/graphics/fb0/mode
+
# cat /sys/class/graphics/fb0/mode
U:1920x1080p-60
+
U:1920x1080p-60
</syntaxhighlight></div>
+
 
 
=== How to get the supported display modes ===
 
=== How to get the supported display modes ===
<div style="margin-left: 1em;"><syntaxhighlight lang="TEXT">
+
 
# cat /sys/class/graphics/fb0/modes
+
# cat /sys/class/graphics/fb0/modes
U:1280x720p-120
+
U:1280x720p-120
U:1280x720p-100
+
U:1280x720p-100
U:1920x1080p-30
+
U:1920x1080p-30
U:1920x1080p-25
+
U:1920x1080p-25
U:1920x1080p-24
+
U:1920x1080p-24
U:1920x1080p-50
+
U:1920x1080p-50
U:1440x576p-50
+
U:1440x576p-50
U:1440x576p-50
+
U:1440x576p-50
U:1440x288p-50
+
U:1440x288p-50
U:1440x288p-50
+
U:1440x288p-50
U:1280x720p-50
+
U:1280x720p-50
U:720x576p-50
+
U:720x576p-50
U:720x576p-50
+
U:720x576p-50
U:1920x1080p-60
+
U:1920x1080p-60
U:1440x480p-60
+
U:1440x480p-60
U:1440x480p-60
+
U:1440x480p-60
U:1440x240p-60
+
U:1440x240p-60
U:1440x240p-60
+
U:1440x240p-60
U:1280x720p-60
+
U:1280x720p-60
U:720x480p-60
+
U:720x480p-60
U:720x480p-60
+
U:720x480p-60
U:640x480p-60
+
U:640x480p-60
</syntaxhighlight></div>
+
 
 
=== How to get the monitor's EDID ===
 
=== How to get the monitor's EDID ===
<div style="margin-left: 1em;"><syntaxhighlight lang="TEXT">
+
 
# i2cdump -f -y -r 0x00-0x7F 2 0x50
+
# i2cdump -f -y -r 0x00-0x7F 2 0x50
No size specified (using byte-data access)
+
No size specified (using byte-data access)
    0  1  2  3  4  5  6  7  8  9  a  b  c  d  e  f    0123456789abcdef
+
      0  1  2  3  4  5  6  7  8  9  a  b  c  d  e  f    0123456789abcdef
00: 00 ff ff ff ff ff ff 00 5a 63 28 0e 01 01 01 01    ........Zc(?????
+
00: 00 ff ff ff ff ff ff 00 5a 63 28 0e 01 01 01 01    ........Zc(?????
10: 22 16 01 03 08 30 1b 78 2e e6 75 a4 56 4f 9e 27    "????0?x.?u?VO?'
+
10: 22 16 01 03 08 30 1b 78 2e e6 75 a4 56 4f 9e 27    "????0?x.?u?VO?'
20: 0f 50 54 bf ef 80 b3 00 a9 40 95 00 81 80 81 40   ?PT????.?@?.???@
+
20: 0f 50 54 bf ef 80 b3 00 a9 40 95 00 81 80 81 40   &nbsp;?PT????.?@?.???@
30: 81 0f 81 00 71 4f 02 3a 80 18 71 38 2d 40 58 2c   ???.qO?:??q8-@X,
+
30: 81 0f 81 00 71 4f 02 3a 80 18 71 38 2d 40 58 2c   &nbsp;???.qO?:??q8-@X,
40: 45 00 dd 0c 11 00 00 1e 00 00 00 ff 00 53 44 44    E.???..?.....SDD
+
40: 45 00 dd 0c 11 00 00 1e 00 00 00 ff 00 53 44 44    E.???..?.....SDD
50: 31 32 33 34 41 31 33 37 36 0a 00 00 00 fd 00 32    1234A1376?...?.2
+
50: 31 32 33 34 41 31 33 37 36 0a 00 00 00 fd 00 32    1234A1376?...?.2
60: 4b 18 52 11 00 0a 20 20 20 20 20 20 00 00 00 fc    K?R?.?      ...?
+
60: 4b 18 52 11 00 0a 20 20 20 20 20 20 00 00 00 fc    K?R?.?      ...?
70: 00 56 41 32 32 34 38 20 53 45 52 49 45 53 00 34    .VA2248 SERIES.4
+
70: 00 56 41 32 32 34 38 20 53 45 52 49 45 53 00 34    .VA2248 SERIES.4
</syntaxhighlight></div>
+
</syntaxhighlight></div>
 +
 
 
=== How to control the screen blanking ===
 
=== How to control the screen blanking ===
  
 
'''to blank the primary display'''
 
'''to blank the primary display'''
  
:<code># echo 1 > /sys/class/graphics/fb0/blank</code>
+
:<code># echo 1 > /sys/class/graphics/fb0/blank</code>  
  
 
'''to unblank the primary display'''
 
'''to unblank the primary display'''
  
:<code># echo 0 > /sys/class/graphics/fb0/blank</code>
+
:<code># echo 0 > /sys/class/graphics/fb0/blank</code>  
  
'''to set auto-blanking timeout seconds'''<br/>The default linux framebuffer support will blank a console after 600 seconds of no activity.
+
'''to set auto-blanking timeout seconds'''<br/> The default linux framebuffer support will blank a console after 600 seconds of no activity.
  
:kernel space
+
:kernel space  
::specify kernel parameter 'consoleblank=&lt;n&gt;' (where &lt;n&gt; means timeout seconds) in u-boot's parameter, bootargs_base
+
::specify kernel parameter 'consoleblank=<n>' (where <n> means timeout seconds) in u-boot's parameter, bootargs_base  
:user space
+
:user space  
::use the command, <code>setterm</code>
+
::use the command, <code>setterm</code>  
  
 
=== How to customize u-boot logo ===
 
=== How to customize u-boot logo ===
  
'''About the following description, we use IDK-1107WR-40WVA1E panel to customize u-boot logo'''
+
*About the following description, we use IDK-1107WR-40WVA1E panel to customize u-boot logo  
  
'''Yocto 2.1'''
+
*We customize u-boot logo for Yocto 2.1, LTIB and Android
  
*You need to modify files as below:
+
==== Yocto 2.1 ====
  
:<tt>1. Modify the red string part in the uboot-imx6/arch/arm/imx-common/video.c file</tt>
+
===== You need to modify u-boot files as below: =====
 +
 
 +
:<tt>1. Modify the red string part in the uboot-imx6/arch/arm/imx-common/video.c file</tt>  
  
 
  @@ -52,6 +52,9 @@ int board_video_skip(void)
 
  @@ -52,6 +52,9 @@ int board_video_skip(void)
Line 646: Line 747:
 
       printf("LCD&nbsp;%s cannot be configured:&nbsp;%d\n",
 
       printf("LCD&nbsp;%s cannot be configured:&nbsp;%d\n",
 
             displays[i].mode.name, ret);
 
             displays[i].mode.name, ret);
 +
  
:<tt>2. Modify the red string part in the uboot-imx6/board/freescale/mx6advantech/mx6advantech.c file</tt>
+
:<tt>2. Modify the red string part in the uboot-imx6/board/freescale/mx6advantech/mx6advantech.c file</tt>  
  
 
  @@ -744,18 +744,42 @@ static void enable_lvds(struct display_info_t const *dev)
 
  @@ -744,18 +744,42 @@ static void enable_lvds(struct display_info_t const *dev)
Line 855: Line 957:
 
  #ifdef CONFIG_MXC_SPI
 
  #ifdef CONFIG_MXC_SPI
 
  setup_spi();
 
  setup_spi();
 +
  
:<tt>3. Modify the red string part in the uboot-imx6/ file</tt>
+
:<tt>3. Modify the red string part in the uboot-imx6/drivers/video/cfb_console.c file</tt>  
  
:<tt>4. Modify the red string part in the uboot-imx6/ file</tt>
+
@@ -311,6 +311,19 @@ extern void video_get_info_str(int line_number, char *info);
 +
 +
DECLARE_GLOBAL_DATA_PTR;
 +
 +
<span style="color:red">'''#ifdef CONFIG_ADV_UBOOT_LOGO_EMMC'''
 +
'''#include <mmc.h>'''
 +
'''#include <common.h>'''
 +
'''#include <asm/ioNew.h>'''
 +
 +
'''#define UBOOT_LOGO_BMP_ADDR 0x00100000'''
 +
'''#define DISPLAY_WIDTH 800'''
 +
'''#define DISPLAY_HEIGHT 480'''
 +
'''#define DISPLAY_BPP 16'''
 +
'''//#define CONFIG_FB_BASE (CONFIG_SYS_TEXT_BASE + 0x300000)'''
 +
'''#define CONFIG_FB_BASE VIDEO_FB_ADRS'''
 +
'''#endif'''</span>
 +
 +
/* Locals */
 +
static GraphicDevice *pGD; /* Pointer to Graphic array */
 +
 +
@@ -1953,7 +1966,9 @@ static void *video_logo(void)
 +
        }
 +
#endif /* CONFIG_SPLASH_SCREEN */
 +
 +
<span style="color:red">'''#ifndef CONFIG_ADV_UBOOT_LOGO_EMMC'''</span>
 +
logo_plot(video_fb_address, video_logo_xpos, video_logo_ypos);
 +
<span style="color:red">'''#endif'''</span>
 +
 +
#ifdef CONFIG_SPLASH_SCREEN_ALIGN
 +
/*
 +
@@ -2090,6 +2105,14 @@ void video_clear(void)
 +
#endif
 +
}
 +
 +
<span style="color:red">'''#ifdef CONFIG_ADV_UBOOT_LOGO_EMMC'''
 +
'''int get_mmc_env_devno(void)'''
 +
'''{'''
 +
        '''uint soc_sbmr = readl(SRC_BASE_ADDR + 0x4);'''
 +
        '''return (soc_sbmr & 0x00001800) >> 11;'''
 +
'''}'''
 +
'''#endif'''</span>
 +
 +
static int video_init(void)
 +
{
 +
unsigned char color8;
 +
@@ -2108,6 +2131,9 @@ static int video_init(void)
 +
/* Init drawing pats */
 +
switch (VIDEO_DATA_FORMAT) {
 +
case GDF__8BIT_INDEX:
 +
<span style="color:red">'''#ifdef CONFIG_ADV_UBOOT_LOGO_DEBUG'''
 +
                '''printf("Video: GDF__8BIT_INDEX ...\n");'''
 +
'''#endif'''</span>
 +
video_set_lut(0x01, CONSOLE_FG_COL, CONSOLE_FG_COL,
 +
      CONSOLE_FG_COL);
 +
video_set_lut(0x00, CONSOLE_BG_COL, CONSOLE_BG_COL,
 +
@@ -2116,6 +2142,9 @@ static int video_init(void)
 +
bgx = 0x00000000;
 +
break;
 +
case GDF__8BIT_332RGB:
 +
<span style="color:red">'''#ifdef CONFIG_ADV_UBOOT_LOGO_DEBUG'''
 +
                '''printf("Video: GDF__8BIT_332RGB ...\n");'''
 +
'''#endif'''</span>
 +
color8 = ((CONSOLE_FG_COL & 0xe0) |
 +
  ((CONSOLE_FG_COL >> 3) & 0x1c) |
 +
  CONSOLE_FG_COL >> 6);
 +
 +
@@ -2128,6 +2157,9 @@ static int video_init(void)
 +
 +
color8;
 +
break;
 +
case GDF_15BIT_555RGB:
 +
<span style="color:red">'''#ifdef CONFIG_ADV_UBOOT_LOGO_DEBUG'''
 +
                '''printf("Video: GDF_15BIT_555RGB ...\n");'''
 +
'''#endif'''</span>
 +
fgx = (((CONSOLE_FG_COL >> 3) << 26) |
 +
      ((CONSOLE_FG_COL >> 3) << 21) |
 +
      ((CONSOLE_FG_COL >> 3) << 16) |
 +
@@ -2142,6 +2174,9 @@ static int video_init(void)
 +
(CONSOLE_BG_COL >> 3));
 +
break;
 +
case GDF_16BIT_565RGB:
 +
<span style="color:red">'''#ifdef CONFIG_ADV_UBOOT_LOGO_DEBUG'''
 +
                '''printf("Video: GDF_16BIT_565RGB ...\n");'''
 +
'''#endif'''</span>
 +
fgx = (((CONSOLE_FG_COL >> 3) << 27) |
 +
      ((CONSOLE_FG_COL >> 2) << 21) |
 +
      ((CONSOLE_FG_COL >> 3) << 16) |
 +
@@ -2156,6 +2191,9 @@ static int video_init(void)
 +
(CONSOLE_BG_COL >> 3));
 +
break;
 +
case GDF_32BIT_X888RGB:
 +
<span style="color:red">'''#ifdef CONFIG_ADV_UBOOT_LOGO_DEBUG'''
 +
                '''printf("Video: GDF_32BIT_X888RGB ...\n");'''
 +
'''#endif'''</span>
 +
fgx = (CONSOLE_FG_COL << 16) |
 +
(CONSOLE_FG_COL <<  8) |
 +
CONSOLE_FG_COL;
 +
@@ -2164,6 +2202,9 @@ static int video_init(void)
 +
CONSOLE_BG_COL;
 +
break;
 +
case GDF_24BIT_888RGB:
 +
<span style="color:red">'''#ifdef CONFIG_ADV_UBOOT_LOGO_DEBUG'''
 +
                '''printf("Video: GDF_24BIT_888RGB ...\n");'''
 +
'''#endif'''</span>
 +
fgx = (CONSOLE_FG_COL << 24) |
 +
(CONSOLE_FG_COL << 16) |
 +
(CONSOLE_FG_COL <<  8) |
 +
 +
@@ -2182,6 +2223,87 @@ static int video_init(void)
 +
 +
/* Plot the logo and get start point of console */
 +
debug("Video: Drawing the logo ...\n");
 +
video_console_address = video_logo();
 +
 +
<span style="color:red">'''#ifdef CONFIG_ADV_UBOOT_LOGO_EMMC'''
 +
'''  unsigned int size = DISPLAY_WIDTH * DISPLAY_HEIGHT * (DISPLAY_BPP / 8);'''
 +
'''  unsigned char * pData;'''
 +
'''  unsigned int start, count;'''
 +
'''  int i, bmpReady = 0;'''
 +
'''  int mmc_dev = get_mmc_env_devno();'''
 +
 +
'''#ifdef CONFIG_ADV_UBOOT_LOGO_DEBUG'''
 +
'''  printf("mmc_dev:%d\n", mmc_dev);'''
 +
'''#endif'''
 +
 +
'''  struct mmc *mmc = find_mmc_device(mmc_dev);'''
 +
 +
'''  pData = (unsigned char *)CONFIG_FB_BASE;'''
 +
 +
'''  if (mmc){'''
 +
'''   if (mmc_init(mmc) == 0) {'''
 +
'''   start = ALIGN(UBOOT_LOGO_BMP_ADDR, mmc->read_bl_len) / mmc->read_bl_len;'''
 +
'''   count = ALIGN(size, mmc->read_bl_len) / mmc->read_bl_len;'''
 +
'''   mmc->block_dev.block_read(&mmc->block_dev, start, count, pData);'''
 +
 +
'''#ifdef CONFIG_ADV_UBOOT_LOGO_DEBUG'''
 +
'''   printf("start&nbsp;%x \n" ,start);'''
 +
'''   printf("mmc->read_bl_len&nbsp;%x \n" ,mmc->read_bl_len);'''
 +
'''   printf("count&nbsp;%x \n" ,count);'''
 +
'''#endif'''
 +
'''   bmpReady = 1;'''
 +
'''//   for(i=0;i<count;i++)'''
 +
'''//   printf("0x%x ",pData[i]);'''
 +
'''//   printf("\n");'''
 +
'''#ifdef CONFIG_ADV_UBOOT_LOGO_DEBUG'''
 +
'''   printf("Display emmc logo&nbsp;!!! \n");'''
 +
'''   printf("DISPLAY_BPP&nbsp;%d&nbsp;!!! \n",DISPLAY_BPP);'''
 +
'''#endif'''
 +
'''   }'''
 +
'''  }'''
 +
''' '''
 +
''' //printf("display r g b&nbsp;!!! \n");'''
 +
''' //bmpReady = 0;'''
 +
''' //r g b bpp is 16,is ok'''
 +
'''    if (bmpReady == 0) {'''
 +
'''   // Fill RGB frame buffer'''
 +
'''   // Red'''
 +
'''   for (i = 0; i < (DISPLAY_WIDTH * DISPLAY_HEIGHT * (DISPLAY_BPP / 8) / 3); i += (DISPLAY_BPP / 8)) {'''
 +
'''#if (DISPLAY_BPP == 16)'''
 +
'''   pData[i + 0] = 0x00;'''
 +
'''   pData[i + 1] = 0xF8;'''
 +
'''#else'''
 +
'''   pData[i + 0] = 0x00;'''
 +
'''   pData[i + 1] = 0x00;'''
 +
'''   pData[i + 2] = 0xFF;'''
 +
'''#endif'''
 +
'''        }'''
 +
 +
'''   // Green'''
 +
'''   for (; i < (DISPLAY_WIDTH * DISPLAY_HEIGHT * (DISPLAY_BPP / 8) / 3) * 2; i += (DISPLAY_BPP / 8)) {'''
 +
'''#if (DISPLAY_BPP == 16)'''
 +
'''   pData[i + 0] = 0xE0;'''
 +
'''   pData[i + 1] = 0x07;'''
 +
'''#else'''
 +
'''   pData[i + 0] = 0x00;'''
 +
'''   pData[i + 1] = 0xFF;'''
 +
'''   pData[i + 2] = 0x00;'''
 +
'''#endif'''
 +
'''        }'''
 +
 +
'''   // Blue'''
 +
'''   for (; i < DISPLAY_WIDTH * DISPLAY_HEIGHT * (DISPLAY_BPP / 8); i += (DISPLAY_BPP / 8)) {'''
 +
'''#if (DISPLAY_BPP == 16)'''
 +
'''   pData[i + 0] = 0x1F;'''
 +
'''   pData[i + 1] = 0x00;'''
 +
'''#else'''
 +
'''   pData[i + 0] = 0xFF;'''
 +
'''   pData[i + 1] = 0x00;'''
 +
'''   pData[i + 2] = 0x00;'''
 +
'''#endif'''
 +
'''        }'''
 +
'''    }'''
 +
'''#endif //#ifdef CONFIG_ADV_UBOOT_LOGO_EMMC'''</span>
 +
 +
#else
 +
video_console_address = video_fb_address;
 +
#endif
 +
 +
 
 +
:<tt>4. Modify the red string part in the uboot-imx6/include/configs/mx6advantech_common.h file</tt>  
  
:<tt>5. You can download following file. Then put the decompressed files into the uboot-imx6/arch/arm/include/asm/ path</tt>
+
@@ -51,6 +51,10 @@
 +
#define CONFIG_PHYLIB
 +
#define CONFIG_PHY_ATHEROS
 +
 +
<span style="color:red">'''#define CONFIG_ADV_UBOOT_LOGO'''
 +
'''#define CONFIG_ADV_UBOOT_LOGO_EMMC'''
 +
'''/* #define CONFIG_ADV_UBOOT_LOGO_DEBUG */'''</span>
 +
 +
/* Command definition */
 +
#define CONFIG_CMD_BMODE
 +
 +
@@ -409,6 +413,33 @@
 +
#define CONFIG_SYS_I2C_MXC_I2C3 /* enable I2C bus 3 */
 +
#define CONFIG_SYS_I2C_SPEED 100000
 +
 +
<span style="color:red">'''#ifdef CONFIG_ADV_UBOOT_LOGO'''
 +
'''#ifdef CONFIG_ADVANTECH'''
 +
 +
'''/* Framebuffer */'''
 +
'''#define CONFIG_VIDEO'''
 +
'''#define CONFIG_VIDEO_IPUV3'''
 +
'''#define CONFIG_CFB_CONSOLE'''
 +
'''#define CONFIG_VGA_AS_SINGLE_DEVICE'''
 +
'''#define CONFIG_SYS_CONSOLE_IS_IN_ENV'''
 +
'''#define CONFIG_SYS_CONSOLE_OVERWRITE_ROUTINE'''
 +
'''#define CONFIG_VIDEO_BMP_RLE8'''
 +
'''#define CONFIG_SPLASH_SCREEN'''
 +
'''#define CONFIG_SPLASH_SCREEN_ALIGN'''
 +
'''#define CONFIG_BMP_16BPP'''
 +
'''#define CONFIG_VIDEO_LOGO'''
 +
'''#define CONFIG_VIDEO_BMP_LOGO'''
 +
'''#ifdef CONFIG_MX6DL'''
 +
'''#define CONFIG_IPUV3_CLK 198000000'''
 +
'''#else'''
 +
'''#define CONFIG_IPUV3_CLK 264000000'''
 +
'''#endif'''
 +
'''#define CONFIG_IMX_HDMI'''
 +
'''#define CONFIG_IMX_VIDEO_SKIP'''
 +
'''#endif /* #ifdef CONFIG_ADVANTECH */'''
 +
 +
'''#endif /* #ifdef CONFIG_ADV_UBOOT_LOGO */'''</span>
 +
 +
#if defined(CONFIG_ANDROID_SUPPORT)
 +
#include "mx6sabreandroid_common.h"
 +
#else
 +
 +
 
 +
:<tt>5. You can download following file. Then put the decompressed files into the uboot-imx6/arch/arm/include/asm/ path</tt>  
  
 
[[:File:ioNew_h.zip]]
 
[[:File:ioNew_h.zip]]
  
*After you patch file, you need to build u-boot image(Example:ROM-3420 DDR 1G)
+
===== You can refer to [[IoTGateway/BSP/Linux/iMX6/Yocto_LBV8_User_Guide#Setting_up_SDK|Setting_up_SDK]] to setup environment for building u-boot image =====
 +
 
 +
===== After you patch file, you need to build u-boot image(Example:ROM-3420 DDR 1G) =====
 +
 
 +
:<tt>1. Source environment(Example: Toolchain path:/opt/poky/2.1/)</tt>
 +
 
 +
source /opt/poky/2.1/environment-setup-cortexa9hf-neon-poky-linux-gnueabi
 +
 +
 
 +
:<tt>2. Build ROM-3420 1G u-boot image</tt>
 +
 
 +
make mx6qrom3420a1_1G_defconfig
 +
make -j4
 +
 +
 
 +
===== Generate u-boot logo image =====
 +
 
 +
*For example: You can use picture editor tool(Photoshop) to generate a 800x480 u-boot logo image(16 bit BMP file)
 +
 
 +
:<tt>1. U-boot logo file format</tt>
 +
 
 +
File name: adv_logo_800x480_16bit_rgb565.bmp
 +
Resolution: 800x480
 +
Depth: 16 Bit
 +
BMP Advanced Modes: R5 G6 B5
 +
 +
 
 +
:<tt>2. Open original u-boot logo file by Photoshop tool</tt>
 +
 
 +
[[File:P1.png|RTENOTITLE]]
 +
 
 +
:<tt>3. Save the new file</tt>
 +
 
 +
[[File:P2.png|RTENOTITLE]]
 +
 
 +
:<tt>4. New file name:adv_logo_800x480_16bit_rgb565.bmp</tt>
 +
 
 +
[[File:P3.png|RTENOTITLE]]
 +
 
 +
:<tt>5. Choose the type of file and press "OK" button to save the file</tt>
 +
 
 +
[[File:P4.png|RTENOTITLE]]
  
:<tt>1. Source environment(Example: Toolchain path:/opt/poky/2.1/)</tt>
+
[[File:P5.png|RTENOTITLE]]
<div style="margin-left: 2em;"><syntaxhighlight lang="C">
+
 
source /opt/poky/2.1/environment-setup-cortexa9hf-neon-poky-linux-gnueabi
+
*Copy u-boot logo file(adv_uboot_logo.bmp) to linux OS(Example: Ubuntu), then produce a u-boot logo file that will actually be used
</syntaxhighlight></div>
+
 
:<tt>2. Build ROM-3420 1G u-boot image</tt>
+
dd if=adv_logo_800x480_16bit_rgb565.bmp of=adv_logo_800x480_16bit_rgb565_new.bmp bs=1 skip=72
<div style="margin-left: 2em;"><syntaxhighlight lang="C">
+
sync
make mx6qrom3420a1_1G_defconfig
+
make -j4
+
 
</syntaxhighlight></div>
+
*You can get a u-boot logo file by following link
*Generate u-boot logo image
+
 
 +
[[:File:adv_logo.zip]]
 +
 
 +
===== Upload u-boot image and u-boot log image to eMMC by mgtool =====
 +
 
 +
:<tt>1. Modify ucl2.xml file</tt>  
 +
 
 +
<LIST name="ADV u-boot" desc="update u-boot">
 +
<CMD state="BootStrap" type="boot" body="BootStrap" file ="firmware/u-boot.imx">Loading U-boot</CMD>
 +
<CMD state="BootStrap" type="load" file="firmware/zImage" address="0x12000000" loadSection="OTH" setSection="OTH" HasFlashHeader="FALSE">Loading Kernel.</CMD>
 +
<CMD state="BootStrap" type="load" file="firmware/fsl-image-mfgtool-initramfs-imx_mfgtools.cpio.gz.u-boot" address="0x12C00000" loadSection="OTH" setSection="OTH" HasFlashHeader="FALSE">Loading Initramfs.</CMD>
 +
<CMD state="BootStrap" type="load" file="firmware/zImage-%dtb%.dtb" address="0x18000000" loadSection="OTH" setSection="OTH" HasFlashHeader="FALSE">Loading device tree.</CMD>
 +
<CMD state="BootStrap" type="jump" > Jumping to OS image.</CMD>
 +
<CMD state="Updater" type="push" body="send" file="files/u-boot_crc.bin.crc">Sending u-boot.bin.crc</CMD>
 +
<CMD state="Updater" type="push" body="$ dd if=$FILE of=/dev/mmcblk%mmc% bs=512 seek=2">write u-boot.bin.crc</CMD>
 +
<CMD state="Updater" type="push" body="send" file="files/u-boot_crc.bin">Sending u-boot.bin</CMD>
 +
<CMD state="Updater" type="push" body="$ dd if=$FILE of=/dev/mmcblk%mmc% bs=512 seek=3">write u-boot.bin</CMD>
 +
<span style="color:red">'''<CMD state="Updater" type="push" body="send" file="files/adv_logo_800x480_16bit_rgb565_new.bmp" ifdev="MX6Q">Sending u-boot logo</CMD>'''</span>
 +
<span style="color:red">'''<CMD state="Updater" type="push" body="$ dd if=$FILE of=/dev/mmcblk%mmc% bs=512 seek=2048 conv=fsync">write u-boot logo</CMD>'''</span>
 +
<CMD state="Updater" type="push" body="$ echo Update Complete!">Done</CMD>
 +
</LIST>
 +
 +
 
 +
:<tt>2. Modify cfg.ini file</tt>
  
:<tt>1. For example: You can use picture editor tool(Photoshop) to generate a 800x480 u-boot logo image(16 bit BMP file)</tt>
+
[LIST]
<div style="margin-left: 2em;"><syntaxhighlight lang="C">
+
name = ADV u-boot
U-boot logo image format:
+
File name: adv_uboot_logo.bmp
 
Resolution: 800x480
 
Depth: 16 Bit
 
BMP Advanced Modes: R5 G6 B5
 
</syntaxhighlight></div>
 
:<tt>2. Copy u-boot logo file(adv_uboot_logo.bmp) to linux OS(Example: Ubuntu), then produce a u-boot logo file that will actually be used</tt>
 
<div style="margin-left: 2em;"><syntaxhighlight lang="C">
 
dd if=adv_uboot_logo.bmp of=adv_uboot_logo_new.bmp bs=1 skip=72
 
sync
 
</syntaxhighlight></div>
 
*Upload u-boot image and u-boot log image to eMMC by mgtool.
 
  
:<tt>1. Modify ucl2.xml file</tt>
+
:<tt>3. Copy "u-boot_crc.bin.crc", "u-boot_crc.bin" and "adv_logo_800x480_16bit_rgb565_new.bmp" files to "3420A1LIVXXX_1G_mfgtools\Profiles\Linux\OS Firmware\files" folder</tt>  
<div style="margin-left: 2em;"><syntaxhighlight lang="C">
 
<LIST name="ADV u-boot" desc="update u-boot">
 
<CMD state="BootStrap" type="boot" body="BootStrap" file ="firmware/u-boot.imx">Loading U-boot</CMD>
 
<CMD state="BootStrap" type="load" file="firmware/zImage" address="0x12000000"
 
loadSection="OTH" setSection="OTH" HasFlashHeader="FALSE">Loading Kernel.</CMD>
 
<CMD state="BootStrap" type="load" file="firmware/fsl-image-mfgtool-initramfs-imx_mfgtools.cpio.gz.u-boot" address="0x12C00000"
 
loadSection="OTH" setSection="OTH" HasFlashHeader="FALSE">Loading Initramfs.</CMD>
 
<CMD state="BootStrap" type="load" file="firmware/zImage-%dtb%.dtb" address="0x18000000"
 
loadSection="OTH" setSection="OTH" HasFlashHeader="FALSE">Loading device tree.</CMD>
 
<CMD state="BootStrap" type="jump" > Jumping to OS image. </CMD>
 
<!-- burn uboot image -->
 
<CMD state="Updater" type="push" body="send" file="files/u-boot_crc.bin.crc">Sending u-boot.bin.crc</CMD>
 
<CMD state="Updater" type="push" body="$ dd if=$FILE of=/dev/mmcblk%mmc% bs=512 seek=2">write u-boot.bin.crc</CMD>
 
<CMD state="Updater" type="push" body="send" file="files/u-boot_crc.bin">Sending u-boot.bin</CMD>
 
<CMD state="Updater" type="push" body="$ dd if=$FILE of=/dev/mmcblk%mmc% bs=512 seek=3">write u-boot.bin</CMD>
 
<!-- burn adv u-boot logo image -->
 
<CMD state="Updater" type="push" body="send" file="files/adv_uboot_logo_new.bmp" ifdev="MX6Q">Sending u-boot logo</CMD>
 
<CMD state="Updater" type="push" body="$ dd if=$FILE of=/dev/mmcblk%mmc% bs=512 seek=2048 conv=fsync">write u-boot logo</CMD>
 
<CMD state="Updater" type="push" body="$ echo Update Complete!">Done</CMD>
 
  </LIST>
 
</syntaxhighlight></div>
 
:<tt>2. Modify cfg.ini file</tt>
 
<div style="margin-left: 2em;"><syntaxhighlight lang="C">
 
[LIST]
 
name = ADV u-boot
 
</syntaxhighlight></div>
 
:<tt>3. Copy "u-boot_crc.bin.crc", "u-boot_crc.bin" and "adv_uboot_logo_new.bmp" files to "3420A1LIVXXX_1G_mfgtools\Profiles\Linux\OS Firmware\files" folder</tt>
 
  
:<tt>4. Finally, you can refer to [[IoTGateway/BSP/Linux/iMX6/Mfgtool|Mfgtool]] to update u-boot image and u-boot logo image</tt>
+
:<tt>4. Finally, you can refer to [[IoTGateway/BSP/Linux/iMX6/Mfgtool|Mfgtool]] to update u-boot image and u-boot logo image</tt>  
  
'''LTIB'''
+
==== LTIB ====
  
 
The following operations demonstrate how to customize one 800*480 boot logo for ROM-3420 with imx6LBV2210.
 
The following operations demonstrate how to customize one 800*480 boot logo for ROM-3420 with imx6LBV2210.
  
*get one 800*480 8bpp BMP ready, or convert from PPM to BMP file
+
*get one 800*480 8bpp BMP ready, or convert from PPM to BMP file  
  
:<tt>$ ppmtobmp -bpp=8 uboot_logo.ppm > uboot_logo.bmp</tt>
+
:$ ppmtobmp -bpp=8 uboot_logo.ppm > uboot_logo.bmp  
  
*convert to C file
+
*convert to C file  
  
:<tt>$ xxd -i uboot_logo.bmp > uboot_logo.c</tt>
+
:$ xxd -i uboot_logo.bmp > uboot_logo.c  
  
*create new <tt>u-boot-2009.08/board/freescale/common/adv_bmp_reversed_800x480.c</tt>
+
*create new u-boot-2009.08/board/freescale/common/adv_bmp_reversed_800x480.c  
<div style="margin-left: 2em;"><syntaxhighlight lang="C">
+
<div style="margin-left: 2em"><syntaxhighlight lang="c">
 
unsigned char adv_bmp_reversed_800x480[] = {
 
unsigned char adv_bmp_reversed_800x480[] = {
 
//hexvalue copyed from uboot_logo.c
 
//hexvalue copyed from uboot_logo.c
Line 943: Line 1,318:
 
}
 
}
 
unsigned int adv_bmp_reversed_800x480_size = sizeof(adv_bmp_reversed_800x480);
 
unsigned int adv_bmp_reversed_800x480_size = sizeof(adv_bmp_reversed_800x480);
</syntaxhighlight></div>
+
</syntaxhighlight>
*<tt>u-boot-2009.08/board/freescale/common/Makefile</tt>
+
</div>  
<div style="margin-left: 2em;"><syntaxhighlight lang="make">
+
*u-boot-2009.08/board/freescale/common/Makefile  
 +
<div style="margin-left: 2em"><syntaxhighlight lang="c">
 
#COBJS-${CONFIG_VIDEO_MX5} += fsl_bmp_600x400.o fsl_bmp_reversed_600x400.o   
 
#COBJS-${CONFIG_VIDEO_MX5} += fsl_bmp_600x400.o fsl_bmp_reversed_600x400.o   
 
COBJS-${CONFIG_ADVANTECH}  += adv_bmp_reversed_800x480.o  
 
COBJS-${CONFIG_ADVANTECH}  += adv_bmp_reversed_800x480.o  
</syntaxhighlight></div>
+
</syntaxhighlight>
*<tt>Check the ADV loader version. For example: The ADV loader version is V2.210 in the following message</tt>
+
</div>  
<div style="margin-left: 2em;"><syntaxhighlight lang="C">
+
*Check the ADV loader version. For example: The ADV loader version is V2.210 in the following message  
 +
<div style="margin-left: 2em"><syntaxhighlight lang="c">
 
Adv-Boot 2009.08-advantech_rom3420_1G_V2.210_svn414 (Mar 14 2014 - 09:51:19)
 
Adv-Boot 2009.08-advantech_rom3420_1G_V2.210_svn414 (Mar 14 2014 - 09:51:19)
</syntaxhighlight></div>
+
</syntaxhighlight>
:
+
</div>  
 +
:&nbsp;
  
*<tt>u-boot-2009.08/board/freescale/mx6q_rom-3420/mx6q_rom-3420.c</tt>
+
*u-boot-2009.08/board/freescale/mx6q_rom-3420/mx6q_rom-3420.c  
  
:<tt>1. If ADV loader version of the device is less than the V.2350 version, modify the content as follows:</tt>
+
:1. If ADV loader version of the device is less than the V.2350 version, modify the content as follows:  
<div style="margin-left: 2em;"><syntaxhighlight lang="C">
+
<div style="margin-left: 2em"><syntaxhighlight lang="c">
 
//extern unsigned char fsl_bmp_reversed_600x400[];
 
//extern unsigned char fsl_bmp_reversed_600x400[];
 
//extern int fsl_bmp_reversed_600x400_size;
 
//extern int fsl_bmp_reversed_600x400_size;
 
extern unsigned char adv_bmp_reversed_800x480[];
 
extern unsigned char adv_bmp_reversed_800x480[];
 
extern int adv_bmp_reversed_800x480_size;
 
extern int adv_bmp_reversed_800x480_size;
</syntaxhighlight></div>
+
</syntaxhighlight>
:
+
</div>  
<div style="margin-left: 2em;"><syntaxhighlight lang="C">
+
:&nbsp;
 +
<div style="margin-left: 2em"><syntaxhighlight lang="c">
 
#if defined CONFIG_ADVANTECH
 
#if defined CONFIG_ADVANTECH
 
         // AUO 7.0 inch color TFT LCD module G070VW01 V0
 
         // AUO 7.0 inch color TFT LCD module G070VW01 V0
Line 978: Line 1,357:
 
         0,
 
         0,
 
#endif
 
#endif
</syntaxhighlight></div>
+
</syntaxhighlight>
:
+
</div>  
<div style="margin-left: 2em;"><syntaxhighlight lang="C">
+
:&nbsp;
 +
<div style="margin-left: 2em"><syntaxhighlight lang="c">
 
#ifdef CONFIG_ADVANTECH
 
#ifdef CONFIG_ADVANTECH
 
     s = getenv("uboot_splashimage");
 
     s = getenv("uboot_splashimage");
Line 995: Line 1,375:
 
#endif
 
#endif
 
         return -1;
 
         return -1;
</syntaxhighlight></div>
+
</syntaxhighlight>
:
+
</div>  
<div style="margin-left: 2em;"><syntaxhighlight lang="C">
+
:&nbsp;
 +
<div style="margin-left: 2em"><syntaxhighlight lang="c">
 
#ifdef CONFIG_ADVANTECH
 
#ifdef CONFIG_ADVANTECH
 
         // The di_clk_val is set according to LVDS display panel? spec.
 
         // The di_clk_val is set according to LVDS display panel? spec.
Line 1,008: Line 1,389:
 
                         DI_PCLK_LDB, 65000000);
 
                         DI_PCLK_LDB, 65000000);
 
#endif
 
#endif
</syntaxhighlight></div>
+
</syntaxhighlight>
:
+
</div>  
<div style="margin-left: 2em;"><syntaxhighlight lang="C">
+
:&nbsp;
 +
<div style="margin-left: 2em"><syntaxhighlight lang="c">
 
     char *s;
 
     char *s;
 
     ulong addr;
 
     ulong addr;
Line 1,022: Line 1,404:
 
     if (s != NULL) {
 
     if (s != NULL) {
 
         addr = simple_strtoul(s, NULL, 16);
 
         addr = simple_strtoul(s, NULL, 16);
</syntaxhighlight></div>
+
</syntaxhighlight>
:<tt>2. If ADV loader version of the device is larger than the V.2350 version, modify the content as follows:</tt>
+
</div>  
<div style="margin-left: 2em;"><syntaxhighlight lang="C">
+
:<tt>2. If ADV loader version of the device is larger than the V.2350 version, modify the content as follows:</tt>  
 +
<div style="margin-left: 2em"><syntaxhighlight lang="c">
 
//extern unsigned char fsl_bmp_reversed_600x400[];
 
//extern unsigned char fsl_bmp_reversed_600x400[];
 
//extern int fsl_bmp_reversed_600x400_size;
 
//extern int fsl_bmp_reversed_600x400_size;
 
extern unsigned char adv_bmp_reversed_800x480[];
 
extern unsigned char adv_bmp_reversed_800x480[];
 
extern int adv_bmp_reversed_800x480_size;
 
extern int adv_bmp_reversed_800x480_size;
</syntaxhighlight></div>
+
</syntaxhighlight>
:
+
</div>  
<div style="margin-left: 2em;"><syntaxhighlight lang="C">
+
:&nbsp;
 +
<div style="margin-left: 2em"><syntaxhighlight lang="c">
 
#if defined CONFIG_ADVANTECH
 
#if defined CONFIG_ADVANTECH
 
         // AUO 7.0 inch color TFT LCD module G070VW01 V0
 
         // AUO 7.0 inch color TFT LCD module G070VW01 V0
Line 1,044: Line 1,428:
 
         0,
 
         0,
 
#endif
 
#endif
</syntaxhighlight></div>
+
</syntaxhighlight>
:
+
</div>  
<div style="margin-left: 2em;"><syntaxhighlight lang="C">
+
:&nbsp;
 +
<div style="margin-left: 2em"><syntaxhighlight lang="c">
 
#ifdef CONFIG_ADVANTECH
 
#ifdef CONFIG_ADVANTECH
 
         // The di_clk_val is set according to LVDS display panel? spec.
 
         // The di_clk_val is set according to LVDS display panel? spec.
Line 1,057: Line 1,442:
 
                         DI_PCLK_LDB, 65000000);
 
                         DI_PCLK_LDB, 65000000);
 
#endif
 
#endif
</syntaxhighlight></div>
+
</syntaxhighlight>
:
+
</div>  
 +
:&nbsp;
  
*<tt>u-boot-2009.08/include/configs/mx6q_rom-3420_1G.h</tt>
+
*<tt>u-boot-2009.08/include/configs/mx6q_rom-3420_1G.h</tt>  
<div style="margin-left: 2em;"><syntaxhighlight lang="C">
+
<div style="margin-left: 2em"><syntaxhighlight lang="c">
 
#define CONFIG_SPLASH_SCREEN
 
#define CONFIG_SPLASH_SCREEN
</syntaxhighlight></div>
+
</syntaxhighlight>
*u-boot parameter
+
</div>  
 +
*u-boot parameter  
  
:<tt>1. If ADV loader version of the device is less than the V.2350 version, modify the content as follows:</tt>
+
:<tt>1. If ADV loader version of the device is less than the V.2350 version, modify the content as follows:</tt>  
<div style="margin-left: 2em;"><syntaxhighlight lang="C">
+
<div style="margin-left: 2em"><syntaxhighlight lang="c">
 
setenv bootargs_base 'setenv bootargs console=ttymxc0,115200 enable_wait_mode=off video_mode=extension pcie_testmode=off video=mxcfb0:dev=ldb,800x480M@60,if=RGB24 video=mxcfb1:off video=mxcfb2:off'
 
setenv bootargs_base 'setenv bootargs console=ttymxc0,115200 enable_wait_mode=off video_mode=extension pcie_testmode=off video=mxcfb0:dev=ldb,800x480M@60,if=RGB24 video=mxcfb1:off video=mxcfb2:off'
 
setenv uboot_splashimage '0x30000000'
 
setenv uboot_splashimage '0x30000000'
Line 1,073: Line 1,460:
 
setenv lvds_num 0
 
setenv lvds_num 0
 
saveenv
 
saveenv
</syntaxhighlight></div>
+
</syntaxhighlight>
::<tt>2. If ADV loader version of the device is larger than the V.2350 version, modify the content as follows:</tt>
+
</div>  
<div style="margin-left: 2em;"><syntaxhighlight lang="C">
+
:
 +
::<tt>2. If ADV loader version of the device is larger than the V.2350 version, modify the content as follows:</tt>  
 +
<div style="margin-left: 2em"><syntaxhighlight lang="c">
 
setenv bootargs_base 'setenv bootargs console=ttymxc0,115200 enable_wait_mode=off video_mode=extension pcie_testmode=off video=mxcfb0:dev=ldb,800x480M@60,if=RGB24 video=mxcfb1:off video=mxcfb2:off'
 
setenv bootargs_base 'setenv bootargs console=ttymxc0,115200 enable_wait_mode=off video_mode=extension pcie_testmode=off video=mxcfb0:dev=ldb,800x480M@60,if=RGB24 video=mxcfb1:off video=mxcfb2:off'
 
setenv splashimage '0x30000000'
 
setenv splashimage '0x30000000'
Line 1,081: Line 1,470:
 
setenv lvds_num 0
 
setenv lvds_num 0
 
saveenv
 
saveenv
</syntaxhighlight></div>
+
</syntaxhighlight>
'''Android'''
+
</div>  
 +
==== Android ====
  
 
The following operations demonstrate how to customize one 1024*768 boot logo for RSB-4410 with 4410ABV1080.
 
The following operations demonstrate how to customize one 1024*768 boot logo for RSB-4410 with 4410ABV1080.
  
*get one 1024*768 8bpp BMP ready, or convert from PPM to BMP file
+
*get one 1024*768 8bpp BMP ready, or convert from PPM to BMP file  
  
:<tt>$ ppmtobmp -bpp=8 uboot_logo.ppm > uboot_logo.bmp</tt>
+
:<tt>$ ppmtobmp -bpp=8 uboot_logo.ppm > uboot_logo.bmp</tt>  
  
*convert to C file
+
*convert to C file  
  
:<tt>$ xxd -i uboot_logo.bmp > uboot_logo.c</tt>
+
:<tt>$ xxd -i uboot_logo.bmp > uboot_logo.c</tt>  
  
*create new <tt>android/bootable/bootloader/uboot-imx/board/freescale/common/adv_bmp_reversed_1024x768.c</tt>
+
*create new <tt>android/bootable/bootloader/uboot-imx/board/freescale/common/adv_bmp_reversed_1024x768.c</tt>  
<div style="margin-left: 2em;"><syntaxhighlight lang="C">
+
<div style="margin-left: 2em"><syntaxhighlight lang="c">
 
unsigned char adv_bmp_reversed_1024x768[] = {
 
unsigned char adv_bmp_reversed_1024x768[] = {
 
//hexvalue copyed from uboot_logo.c
 
//hexvalue copyed from uboot_logo.c
Line 1,102: Line 1,492:
 
}
 
}
 
unsigned int adv_bmp_reversed_1024x768_size = sizeof(adv_bmp_reversed_1024x768);
 
unsigned int adv_bmp_reversed_1024x768_size = sizeof(adv_bmp_reversed_1024x768);
</syntaxhighlight></div>
+
</syntaxhighlight>
*<tt>android/bootable/bootloader/uboot-imx/board/freescale/common/Makefile</tt>
+
</div>  
<div style="margin-left: 2em;"><syntaxhighlight lang="make">
+
*<tt>android/bootable/bootloader/uboot-imx/board/freescale/common/Makefile</tt>  
 +
<div style="margin-left: 2em"><syntaxhighlight lang="c">
 
#COBJS-${CONFIG_ADVANTECH}  += adv_bmp_reversed_800x235.o   
 
#COBJS-${CONFIG_ADVANTECH}  += adv_bmp_reversed_800x235.o   
 
COBJS-${CONFIG_ADVANTECH}  += adv_bmp_reversed_1024x768.o  
 
COBJS-${CONFIG_ADVANTECH}  += adv_bmp_reversed_1024x768.o  
</syntaxhighlight></div>
+
</syntaxhighlight>
*<tt>android/bootable/bootloader/uboot-imx/board/freescale/mx6q_rsb-4410/mx6q_rsb-4410.c</tt>
+
</div>  
<div style="margin-left: 2em;"><syntaxhighlight lang="C">
+
*<tt>android/bootable/bootloader/uboot-imx/board/freescale/mx6q_rsb-4410/mx6q_rsb-4410.c</tt>  
 +
<div style="margin-left: 2em"><syntaxhighlight lang="c">
 
//extern unsigned char adv_bmp_reversed_800x235[];
 
//extern unsigned char adv_bmp_reversed_800x235[];
 
//extern int adv_bmp_reversed_800x235_size;
 
//extern int adv_bmp_reversed_800x235_size;
 
extern unsigned char adv_bmp_reversed_1024x768[];
 
extern unsigned char adv_bmp_reversed_1024x768[];
 
extern int adv_bmp_reversed_1024x768_size;
 
extern int adv_bmp_reversed_1024x768_size;
</syntaxhighlight></div>
+
</syntaxhighlight>
:
+
</div>  
<div style="margin-left: 2em;"><syntaxhighlight lang="C">
+
:&nbsp;
 +
<div style="margin-left: 2em"><syntaxhighlight lang="c">
 
#if defined CONFIG_ADVANTECH  
 
#if defined CONFIG_ADVANTECH  
 
     // AUO 7.0 inch color TFT LCD module G070VW01 V0  
 
     // AUO 7.0 inch color TFT LCD module G070VW01 V0  
Line 1,129: Line 1,522:
 
       FB_MODE_IS_DETAILED,  
 
       FB_MODE_IS_DETAILED,  
 
#else
 
#else
</syntaxhighlight></div>
+
</syntaxhighlight>
:
+
</div>  
<div style="margin-left: 2em;"><syntaxhighlight lang="C">
+
:&nbsp;
 +
<div style="margin-left: 2em"><syntaxhighlight lang="c">
 
#ifdef CONFIG_ADVANTECH  
 
#ifdef CONFIG_ADVANTECH  
 
   // The di_clk_val is set according to LVDS display panel spec.  
 
   // The di_clk_val is set according to LVDS display panel spec.  
Line 1,139: Line 1,533:
 
     ret = ipuv3_fb_init(&lvds_xga, di, IPU_PIX_FMT_RGB666, DI_PCLK_LDB, 70412617);  
 
     ret = ipuv3_fb_init(&lvds_xga, di, IPU_PIX_FMT_RGB666, DI_PCLK_LDB, 70412617);  
 
#else
 
#else
</syntaxhighlight></div>
+
</syntaxhighlight>
:
+
</div>  
<div style="margin-left: 2em;"><syntaxhighlight lang="C">
+
:&nbsp;
 +
<div style="margin-left: 2em"><syntaxhighlight lang="c">
 
if defined(CONFIG_ADVANTECH)  
 
if defined(CONFIG_ADVANTECH)  
 
     //addr = ioremap_nocache(iomem_to_phys(addr), adv_bmp_reversed_800x235_size);  
 
     //addr = ioremap_nocache(iomem_to_phys(addr), adv_bmp_reversed_800x235_size);  
 
     addr = ioremap_nocache(iomem_to_phys(addr), adv_bmp_reversed_1024x768_size);  
 
     addr = ioremap_nocache(iomem_to_phys(addr), adv_bmp_reversed_1024x768_size);  
 
#else
 
#else
</syntaxhighlight></div>
+
</syntaxhighlight>
:
+
</div>  
<div style="margin-left: 2em;"><syntaxhighlight lang="C">
+
:&nbsp;
 +
<div style="margin-left: 2em"><syntaxhighlight lang="c">
 
#if defined(CONFIG_ADVANTECH)
 
#if defined(CONFIG_ADVANTECH)
 
     //memcpy((char *)addr, (char *)adv_bmp_reversed_800x235, adv_bmp_reversed_800x235_size);
 
     //memcpy((char *)addr, (char *)adv_bmp_reversed_800x235, adv_bmp_reversed_800x235_size);
 
     memcpy((char *)addr, (char *)adv_bmp_reversed_1024x768, adv_bmp_reversed_1024x768_size);
 
     memcpy((char *)addr, (char *)adv_bmp_reversed_1024x768, adv_bmp_reversed_1024x768_size);
 
#else
 
#else
</syntaxhighlight></div>
+
</syntaxhighlight>
*<tt>android/bootable/bootloader/uboot-imx/include/configs/mx6q_rsb-4410_1G.h</tt>
+
</div>  
<div style="margin-left: 2em;"><syntaxhighlight lang="C">
+
*<tt>android/bootable/bootloader/uboot-imx/include/configs/mx6q_rsb-4410_1G.h</tt>  
 +
<div style="margin-left: 2em"><syntaxhighlight lang="c">
 
#define CONFIG_SPLASH_SCREEN
 
#define CONFIG_SPLASH_SCREEN
</syntaxhighlight></div>
+
</syntaxhighlight>
*<tt>android/bootable/bootloader/uboot-imx/include/configs/mx6q_rsb-4410_1G_android.h</tt>
+
</div>  
<div style="margin-left: 2em;"><syntaxhighlight lang="C">
+
*<tt>android/bootable/bootloader/uboot-imx/include/configs/mx6q_rsb-4410_1G_android.h</tt>  
 +
<div style="margin-left: 2em"><syntaxhighlight lang="c">
 
//"lvds_num=1\0"
 
//"lvds_num=1\0"
 
"lvds_num=0\0"
 
"lvds_num=0\0"
</syntaxhighlight></div>
+
</syntaxhighlight>
*u-boot parameter
+
</div>  
 +
*u-boot parameter  
  
{| class="wikitable" style="margin-left: 2em;"
+
{| class="wikitable" style="margin-left: 2em"
 
|-
 
|-
 
| <tt>setenv bootargs 'console=ttymxc0,115200 androidboot.console=ttymxc0 vmalloc=400M init=/init video_mode=extension video=mxcfb0:dev=ldb,1024x768@60,bpp=32,if=RGB666 video=mxcfb1:off video=mxcfb2:off video=mxcfb3:off fbmem=10M androidboot.hardware=freescale pcie_testmode=off'</tt>
 
| <tt>setenv bootargs 'console=ttymxc0,115200 androidboot.console=ttymxc0 vmalloc=400M init=/init video_mode=extension video=mxcfb0:dev=ldb,1024x768@60,bpp=32,if=RGB666 video=mxcfb1:off video=mxcfb2:off video=mxcfb3:off fbmem=10M androidboot.hardware=freescale pcie_testmode=off'</tt>
Line 1,174: Line 1,573:
 
The following operations demonstrate how to customize one Android logo for RSB-4410 with 4410ABV1080.
 
The following operations demonstrate how to customize one Android logo for RSB-4410 with 4410ABV1080.
  
*replace android/frameworks/base/core/res/assets/images/android-logo-mask.png with the new 24bpp PNG file
+
*replace android/frameworks/base/core/res/assets/images/android-logo-mask.png with the new 24bpp PNG file  
  
 
<section end="howtos"></section>
 
<section end="howtos"></section>
Line 1,201: Line 1,600:
 
         status = "okay";
 
         status = "okay";
 
  };
 
  };
 +
  
 
mxcfb3 is mapped to lvds (you can check imx6qdl-advantech.dtsi)
 
mxcfb3 is mapped to lvds (you can check imx6qdl-advantech.dtsi)
Line 1,217: Line 1,617:
 
         status = "okay";
 
         status = "okay";
 
  };
 
  };
 +
  
 
Then re-compile dts file and replace
 
Then re-compile dts file and replace
 +
 +
=== How to bring up panel in Yocto 2.5 and later ===
 +
 +
:Yocto 2.5
 +
::&nbsp; 
 +
 +
*mipi dsi
 +
 +
:
 +
::
 +
:::Refer to adv-imx8mm-rom5721-a1-auog101uan02.dts   
 +
 +
&nbsp;
 +
<syntaxhighlight lang="c">
 +
&mipi_dsi {
 +
        panel@0 {
 +
                compatible = "auo,g101uan02";
 +
                reg = <0>;
 +
                port {
 +
                        panel1_in: endpoint {
 +
                                remote-endpoint = <&mipi_dsi_bridge_out>;
 +
                        };
 +
                };
 +
        };
 +
        port@2 {
 +
                mipi_dsi_bridge_out: endpoint {
 +
                        remote-endpoint = <&panel1_in>;
 +
                };
 +
        };
 +
};
 +
</syntaxhighlight>
 +
 +
:
 +
::
 +
:::Then refer to drivers/gpu/drm/panel/panel-simple.c   
 +
 +
&nbsp;
 +
<syntaxhighlight lang="c">
 +
#if defined(CONFIG_DRM_PANEL_AUO_G101UAN02)
 +
static const struct drm_display_mode auo_g101uan02_mode = {
 +
    .clock = 148500,
 +
    .hdisplay = 1920,
 +
    .hsync_start = 1920 + 60,
 +
    .hsync_end = 1920 + 60 + 18,
 +
    .htotal = 1920 + 60 + 18 + 60,
 +
    .vdisplay = 1200,
 +
    .vsync_start = 1200 + 4,
 +
    .vsync_end = 1200 + 4 + 4,
 +
    .vtotal = 1200 + 4 + 4 + 4,
 +
    .vrefresh = 60,
 +
};
 +
 +
static const struct panel_desc_dsi auo_g101uan02 = {
 +
    .desc = {
 +
        .modes = &auo_g101uan02_mode,
 +
        .num_modes = 1,
 +
        .bpc = 8,
 +
        .size = {
 +
            .width = 217,
 +
            .height = 136,
 +
        },
 +
    },
 +
    .flags = MIPI_DSI_MODE_VIDEO |
 +
            MIPI_DSI_MODE_VIDEO_BURST |
 +
            MIPI_DSI_CLOCK_NON_CONTINUOUS,
 +
    .format = MIPI_DSI_FMT_RGB888,
 +
    .lanes = 4,
 +
};
 +
#endif
 +
#if defined(CONFIG_DRM_PANEL_AUO_G101UAN02)
 +
                .compatible = "auo,g101uan02",
 +
                .data = &auo_g101uan02
 +
        }, {
 +
#endif
 +
 +
</syntaxhighlight>
 +
 +
:
 +
::&nbsp; 
 +
 +
*mipi dsi to lvds bridge
 +
 +
:
 +
::
 +
:::Refer to adv-imx8mm-rom5721-a1.dts
 +
:::Fill initial value by panel into panel-init-sequence   
 +
 +
&nbsp;
 +
<syntaxhighlight lang="c">
 +
&mipi_dsi {
 +
        status = "okay";
 +
        panel@0 {
 +
                compatible = "toshiba,tc358775";
 +
                reg = <0>;
 +
                dsi,flags = <(MIPI_DSI_MODE_VIDEO | MIPI_DSI_MODE_VIDEO_BURST | MIPI_DSI_MODE_LPM | MIPI_DSI_MODE_EOT_PACKET)>;
 +
                dsi,format = <MIPI_DSI_FMT_RGB888>;
 +
                dsi,lanes = <4>;
 +
                bus-format = <0x100a>;
 +
                bus-flags = <10>;
 +
                panel-init-sequence = [
 +
                        29 00 06 3C 01 03 00 02 00
 +
                        29 00 06 14 01 02 00 00 00
 +
                        29 00 06 64 01 00 00 00 00
 +
                        29 00 06 68 01 00 00 00 00
 +
                        29 00 06 6C 01 00 00 00 00
 +
                        29 00 06 70 01 00 00 00 00
 +
                        29 00 06 34 01 1F 00 00 00
 +
                        29 00 06 10 02 1F 00 00 00
 +
                        29 00 06 04 01 01 00 00 00
 +
                        29 00 06 04 02 01 00 00 00
 +
                        29 00 06 50 04 20 01 F0 03
 +
                        29 00 06 54 04 06 00 32 00
 +
                        29 00 06 58 04 20 03 C8 00
 +
                        29 00 06 5C 04 04 00 04 00
 +
                        29 00 06 60 04 E0 01 14 00
 +
                        29 00 06 64 04 01 00 00 00
 +
                        29 01 06 A0 04 2D 80 44 00
 +
                        29 00 06 A0 04 2D 80 04 00
 +
                        29 00 06 04 05 04 00 00 00
 +
                        29 00 06 80 04 00 01 02 03
 +
                        29 00 06 84 04 04 07 05 08
 +
                        29 00 06 88 04 09 0A 0E 0F
 +
                        29 00 06 8C 04 0B 0C 0D 10
 +
                        29 00 06 90 04 16 17 11 12
 +
                        29 00 06 94 04 13 14 15 1B
 +
                        29 14 06 98 04 18 19 1A 06
 +
                        29 78 06 9C 04 31 00 00 00
 +
                ];
 +
                display-timings {
 +
                        native-mode = <&timing0>;
 +
                        timing0: timing0 {
 +
                                clock-frequency = <33300000>;
 +
                                hactive = <800>;
 +
                                vactive = <480>;
 +
                                hback-porch = <50>;
 +
                                hfront-porch = <200>;
 +
                                vback-porch = <4>;
 +
                                vfront-porch = <20>;
 +
                                hsync-len = <6>;
 +
                                vsync-len = <4>;
 +
                                hsync-active = <0>;
 +
                                vsync-active = <0>;
 +
                                de-active = <0>;
 +
                                pixelclk-active = <0>;
 +
                        };
 +
                };
 +
        };
 +
};
 +
 +
</syntaxhighlight>
 +
 +
:
 +
::
 +
:::Then refer to drivers/gpu/drm/panel/panel-simple.c   
 +
 +
&nbsp;
 +
<syntaxhighlight lang="c">
 +
 +
#ifdef CONFIG_ARCH_ADVANTECH
 +
                .compatible = "toshiba,tc358775",
 +
                .data = NULL
 +
        }
 +
#endif
 +
 +
</syntaxhighlight>
 +
 +
:Yocto 3.0
 +
 +
*mipi dsi
 +
 +
:
 +
::
 +
:::Refer to imx8mm-rom5721-a1-auog101uan02.dts   
 +
 +
&nbsp;
 +
<syntaxhighlight lang="c">
 +
&mipi_dsi {
 +
        panel@0 {
 +
                compatible = "auo,g101uan02";
 +
                reg = <0>;
 +
                port {
 +
                        panel1_in: endpoint {
 +
                                remote-endpoint = <&mipi_dsi_bridge_out>;
 +
                        };
 +
                };
 +
        };
 +
        port@2 {
 +
                mipi_dsi_bridge_out: endpoint {
 +
                        remote-endpoint = <&panel1_in>;
 +
                };
 +
        };
 +
};
 +
</syntaxhighlight>
 +
 +
:
 +
::
 +
:::Then refer to drivers/gpu/drm/panel/panel-simple.c   
 +
 +
&nbsp;
 +
<syntaxhighlight lang="c">
 +
#if defined(CONFIG_DRM_PANEL_AUO_G101UAN02)
 +
static const struct drm_display_mode auo_g101uan02_mode = {
 +
    .clock = 148500,
 +
    .hdisplay = 1920,
 +
    .hsync_start = 1920 + 60,
 +
    .hsync_end = 1920 + 60 + 18,
 +
    .htotal = 1920 + 60 + 18 + 60,
 +
    .vdisplay = 1200,
 +
    .vsync_start = 1200 + 4,
 +
    .vsync_end = 1200 + 4 + 4,
 +
    .vtotal = 1200 + 4 + 4 + 4,
 +
    .vrefresh = 60,
 +
};
 +
 +
static const struct panel_desc_dsi auo_g101uan02 = {
 +
    .desc = {
 +
        .modes = &auo_g101uan02_mode,
 +
        .num_modes = 1,
 +
        .bpc = 8,
 +
        .size = {
 +
            .width = 217,
 +
            .height = 136,
 +
        },
 +
        .bus_format = MEDIA_BUS_FMT_RGB888_1X24,
 +
    },
 +
    .flags = MIPI_DSI_MODE_VIDEO | MIPI_DSI_MODE_VIDEO_BURST |
 +
                MIPI_DSI_MODE_VIDEO_SYNC_PULSE |
 +
                MIPI_DSI_MODE_EOT_PACKET,
 +
    .format = MIPI_DSI_FMT_RGB888,
 +
    .lanes = 4,
 +
};
 +
 +
#endif
 +
#if defined(CONFIG_DRM_PANEL_AUO_G101UAN02)
 +
                .compatible = "auo,g101uan02",
 +
                .data = &auo_g101uan02
 +
        }, {
 +
#endif
 +
</syntaxhighlight>
 +
 +
*mipi dsi to lvds bridge
 +
 +
:
 +
::
 +
:::Refer to imx8mm-rom5721-a1.dts
 +
:::Fill initial value by panel into panel-init-sequence   
 +
 +
&nbsp;
 +
<syntaxhighlight lang="c">
 +
&mipi_dsi {
 +
        status = "okay";
 +
        panel@0 {
 +
                compatible = "auo,g070vw01v0";
 +
                reg = <0>;
 +
                backlight=<&lvds_backlight0>;
 +
                panel-init-sequence = [
 +
                        29 00 06 3C 01 03 00 02 00
 +
                        29 00 06 14 01 02 00 00 00
 +
                        29 00 06 64 01 00 00 00 00
 +
                        29 00 06 68 01 00 00 00 00
 +
                        29 00 06 6C 01 00 00 00 00
 +
                        29 00 06 70 01 00 00 00 00
 +
                        29 00 06 34 01 1F 00 00 00
 +
                        29 00 06 10 02 1F 00 00 00
 +
                        29 00 06 04 01 01 00 00 00
 +
                        29 00 06 04 02 01 00 00 00
 +
                        29 00 06 50 04 20 01 F0 03
 +
                        29 00 06 54 04 06 00 32 00
 +
                        29 00 06 58 04 20 03 C8 00
 +
                        29 00 06 5C 04 04 00 04 00
 +
                        29 00 06 60 04 E0 01 14 00
 +
                        29 00 06 64 04 01 00 00 00
 +
                        29 01 06 A0 04 2D 80 44 00
 +
                        29 00 06 A0 04 2D 80 04 00
 +
                        29 00 06 04 05 04 00 00 00
 +
                        29 00 06 80 04 00 01 02 03
 +
                        29 00 06 84 04 04 07 05 08
 +
                        29 00 06 88 04 09 0A 0E 0F
 +
                        29 00 06 8C 04 0B 0C 0D 10
 +
                        29 00 06 90 04 16 17 11 12
 +
                        29 00 06 94 04 13 14 15 1B
 +
                        29 14 06 98 04 18 19 1A 06
 +
                        29 78 06 9C 04 31 00 00 00
 +
                ];
 +
        };
 +
 +
};
 +
</syntaxhighlight>
 +
 +
:
 +
::
 +
:::Then refer to drivers/gpu/drm/panel/panel-simple.c   
 +
 +
&nbsp;
 +
<syntaxhighlight lang="c">
 +
static const struct drm_display_mode auo_g070vw01v0_mode = {
 +
    .clock = 29500,
 +
    .hdisplay = 800,
 +
    .hsync_start = 800 + 24,
 +
    .hsync_end = 800 + 24 + 72,
 +
    .htotal = 800 + 24 + 72 + 96,
 +
    .vdisplay = 480,
 +
    .vsync_start = 480 + 10,
 +
    .vsync_end = 480 + 10 + 7,
 +
    .vtotal = 480 + 10 + 3 + 7,
 +
    .vrefresh = 60,
 +
};
 +
 +
static const struct panel_desc_dsi auo_g070vw01v0 = {
 +
    .desc = {
 +
        .modes = &auo_g070vw01v0_mode,
 +
        .num_modes = 1,
 +
        .bpc = 8,
 +
        .size = {
 +
            .width = 170,
 +
            .height = 110,
 +
        },
 +
        .bus_format = MEDIA_BUS_FMT_RGB888_1X24,
 +
    },
 +
    .flags = MIPI_DSI_MODE_VIDEO | MIPI_DSI_MODE_VIDEO_BURST | MIPI_DSI_MODE_LPM | MIPI_DSI_MODE_EOT_PACKET,
 +
    .format = MIPI_DSI_FMT_RGB888,
 +
    .lanes = 4,
 +
};
 +
#if defined(CONFIG_ARCH_ADVANTECH)
 +
                .compatible = "auo,g070vw01v0",
 +
                .data = &auo_g070vw01v0
 +
        }
 +
#endif
 +
 +
</syntaxhighlight>
 +
 +
== ThreeDisplayImx8 ==
 +
 +
LVDS0+DSI+HDMI Three Display
 +
 +
Please intergate the imx8mp-rom5722-a1-adv7535.dts and imx8mp-rom5722-a1-lvds0-auo.dts.
 +
 +
Refer&nbsp;: The attachment file. (Three_display.7z)
 +
 +
[http://ess-wiki.advantech.com.tw/view/File:Three_display.7z http://ess-wiki.advantech.com.tw/view/File:Three_display.7z]
  
 
== Limitation ==
 
== Limitation ==
Line 1,224: Line 1,965:
 
=== i.MX6 Dual Display Capilities ===
 
=== i.MX6 Dual Display Capilities ===
  
:[[File:Imx6 dual display cpabilities.png|1000px|Imx6 dual display cpabilities.png]]
+
:[[File:Imx6 dual display cpabilities.png|1000px|Imx6 dual display cpabilities.png]]  
  
 
i.MX6 Q/D
 
i.MX6 Q/D
  
*If you want to support two Full HD resloution , you have to allocate on two different ipu
+
*If you want to support two Full HD resloution , you have to allocate on two different ipu  
  
 
i.MX6 Solo
 
i.MX6 Solo
  
*Solo cpu have only one ipu ,so only support the highest resolution are 1920X1080 ,1366X768
+
*Solo cpu have only one ipu ,so only support the highest resolution are 1920X1080 ,1366X768  
  
 
<!--
 
<!--
 
<div style="margin-left: 2em;"><span _fck_mw_customtag="true" _fck_mw_tagname="source" _fck_mw_tagtype="t" lang="C" _fck_mw_tagattributes="lang" class="fck_mw_special">fckLR</span></div>
 
<div style="margin-left: 2em;"><span _fck_mw_customtag="true" _fck_mw_tagname="source" _fck_mw_tagtype="t" lang="C" _fck_mw_tagattributes="lang" class="fck_mw_special">fckLR</span></div>
 
-->
 
-->
 +
 +
&nbsp;
 +
 +
&nbsp;
 +
 +
== New Panel in 2021 ==
 +
 +
=== G156HCE-L01 ===
 +
 +
G156HCE-L01 is LVDS Dual Channel (2 ch 8-bit).
 +
 +
[[File:15inch timing.jpg|600px|15inch timing.jpg]]
 +
 +
(1)clock-frequency --> Clock (MHz)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;=>&nbsp;141860000
 +
 +
(2)hactive --> Horizontal Active Display Period&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; =>&nbsp; &nbsp;1920
 +
 +
(3)vactive --> Vertical Active Display Period&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;=>&nbsp; &nbsp; 1080
 +
 +
(4)hback-porch + hfront-porch + hsync-len (Total) = Blanking&nbsp; &nbsp; =>&nbsp; &nbsp;35+35+35=105
 +
 +
(5)vback-porch + vfront-porch + vsync-len (Total) = Blanking&nbsp; &nbsp; =>&nbsp; &nbsp; 10+10+10=30
 +
 +
&nbsp;
 +
 +
Yocto 2.1
 +
 +
<span style="color:#FF0000;">Patch file based on Yocto 2.1 linux kernel</span> [commit: c4291bf8354b19719ed67650d3d05f95d8caf9c5]
 +
 +
[https://github.com/ADVANTECH-Corp/linux-imx6/commit/c4291bf8354b19719ed67650d3d05f95d8caf9c5 https://github.com/ADVANTECH-Corp/linux-imx6/commit/c4291bf8354b19719ed67650d3d05f95d8caf9c5]
 +
 +
<span style="color:#FF0000;">Patch File:&nbsp;</span> &nbsp;[[:File:15_inch_panel.patch|15 inch panel.patch]]
 +
 +
Uboot Command:
 +
<syntaxhighlight lang="C">setenv mmcargs setenv bootargs console=${console},${baudrate} ${smp} root=${mmcroot} video=mxcfb0:dev=ldb,1920x1080M@60,if=RGB24 video=mxcfb1:off video=mxcfb2:off
 +
</syntaxhighlight>
 +
 +
=== G121XCE-L02 ===
 +
 +
G121XCE-L02 is LVDS Single Channel (1 ch 6/8-bit).
 +
 +
[[File:12inch timing.jpg|600px|12inch timing.jpg]]
 +
 +
(1)clock-frequency --> Clock (MHz)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;=>&nbsp; &nbsp; 64900000
 +
 +
(2)hactive --> Horizontal Active Display Period&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; =>&nbsp; &nbsp; 1024
 +
 +
(3)vactive --> Vertical Active Display Period&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;=>&nbsp; &nbsp; 768
 +
 +
(4)hback-porch + hfront-porch + hsync-len (Total) = Blanking&nbsp; &nbsp; =>&nbsp; &nbsp;110+110+100=320
 +
 +
(5)vback-porch + vfront-porch + vsync-len (Total) = Blanking&nbsp; &nbsp; =>&nbsp; &nbsp; 13+13+12=38
 +
 +
&nbsp;
 +
 +
Yocto 2.1
 +
 +
<span style="color:#FF0000;">Patch file based on Yocto 2.1 linux kernel</span> [commit: c4291bf8354b19719ed67650d3d05f95d8caf9c5]
 +
 +
[https://github.com/ADVANTECH-Corp/linux-imx6/commit/c4291bf8354b19719ed67650d3d05f95d8caf9c5 https://github.com/ADVANTECH-Corp/linux-imx6/commit/c4291bf8354b19719ed67650d3d05f95d8caf9c5]
 +
 +
<span style="color:#FF0000;">Patch File:&nbsp;</span> &nbsp;[[:File:15_inch_panel.patch|15 inch panel.patch]]
 +
 +
Uboot Command:
 +
<syntaxhighlight lang="C">setenv mmcargs setenv bootargs console=${console},${baudrate} ${smp} root=${mmcroot} video=mxcfb0:dev=ldb,1024x768M@60,if=RGB24 video=mxcfb1:off video=mxcfb2:off
 +
</syntaxhighlight>
 +
 +
&nbsp;
 +
 +
=== G104XCE-L01 ===
 +
 +
G104XCE-L01 is LVDS Single Channel (1 ch 6/8-bit).
 +
 +
[[File:10inch timing.jpg|600px|0inch_timing.jpg]]
 +
 +
(1)clock-frequency --> Clock (MHz)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;=>&nbsp; &nbsp; 65000000
 +
 +
(2)hactive --> Horizontal Active Display Period&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; =>&nbsp; &nbsp; 1024
 +
 +
(3)vactive --> Vertical Active Display Period&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;=>&nbsp; &nbsp; 768
 +
 +
(4)hback-porch + hfront-porch + hsync-len (Total) = Blanking&nbsp; &nbsp; =>&nbsp; &nbsp;110+110+100=320
 +
 +
(5)vback-porch + vfront-porch + vsync-len (Total) = Blanking&nbsp; &nbsp; =>&nbsp; &nbsp; 13+13+12=38
 +
 +
&nbsp;
 +
 +
== Panel in iMX8 ==
 +
 +
=== AUOG101UAN02 ===
 +
(1) ROM5721 iMX8MM  AUO G101UAN02  10.1”  MIPI Interface
 +
 +
 +
[[File:Timing 10.jpg | File:Timing 10.jpg]]
 +
 +
(2) Pixel clock(MHz)  => LCK Setting
 +
(h_active + hfp + hbp + h_sync) * (v_active + vfp + vbp + v_sync) * fps
 +
DSI clock(Mbps)
 +
((h_active + hfp + hbp + h_sync) * (v_active + vfp + vbp + v_sync) * fps * bpp) / lane_number
 +
RGB888
 +
bpp is 3X8=24bits
 +
 +
(3)
 +
Kernel driver
 +
CONFIG_DRM_PANEL_SIMPLE
 +
drivers/gpu/drm/panel/panel-simple.c
 +
https://github.com/ADVANTECH-Corp/linux-imx/commit/91081d143e0528d9920a284f640e80c3a8cb5385#diff-b0efb865b9590da1c62bb09d5b597a61bcc769888ce286b5c8a9f72d35fc3788
 +
 +
[[File:Timing3.jpg | File:Timing3.jpg]]
 +
 +
(4) DTS Setting  --> Include the backlight enable in dts.
 +
 +
 +
[[File:Timing1.jpg | File:Timing1.jpg]]
 +
 +
 +
=== G070VW01 ===
 +
(1) In ROM5721 iMX8MM
 +
 +
(2) Kernel version 5.15.52
 +
 +
(3) Porting backlight and brightness levels setting
 +
Refer: https://github.com/ADVANTECH-Corp/linux-imx/blob/adv_5.15.52_2.1.0/arch/arm64/boot/dts/freescale/imx8mm-rom5721-a1.dts
 +
 +
The pwm setting follow dts example and setting brightness levels.
 +
 +
lvds_backlight0: lvds_backlight@0 {
 +
 +
                compatible = "pwm-backlight";
 +
                pwms = <&pwm4 0 1000000 0>;
 +
                brightness-levels = < 0  1  2  3  4  5  6  7  8  9
 +
                            10 11 12 13 14 15 16 17 18 19
 +
                            20 21 22 23 24 25 26 27 28 29
 +
                            30 31 32 33 34 35 36 37 38 39
 +
                            40 41 42 43 44 45 46 47 48 49
 +
                            50 51 52 53 54 55 56 57 58 59
 +
                            60 61 62 63 64 65 66 67 68 69
 +
                            70 71 72 73 74 75 76 77 78 79
 +
                            80 81 82 83 84 85 86 87 88 89
 +
                            90 91 92 93 94 95 96 97 98 99
 +
                            100>;
 +
                default-brightness-level = <80>;
 +
        };
 +
&nbsp;

Latest revision as of 04:23, 7 August 2023

Single Channel LVDS Panel

96LEDK-C070WV50NA1

The following operations are performed with RSB-4210 and BSP version 20120705 (i.MX5).
  • u-boot
get u-boot-2009.08_V1.1.patch and use it to patch by the following commands:
$ cd ${BSP_20120705_BASE}/source/u-boot-2009.08/
$ patch -p1 < ../u-boot-2009.08_V1.1.patch
include/asm-arm/clock.h
add one new enumerated PIXEL_CLK
enum {
        CPU_CLK = 0,
        PERIPH_CLK,
        AHB_CLK,
        IPG_CLK,
        IPG_PERCLK,
        UART_CLK,
        CSPI_CLK,
        DDR_CLK,
        NFC_CLK,
        ALL_CLK,
        PIXEL_CLK,
};
cpu/arm_cortexa8/mx53/generic.c
add one new case of the switch (clk_type) in the int clk_config(...)
case PIXEL_CLK:
        if (config_pixel_clk(ref, freq))
                return -1;
        break;
add the follow lines at the end of the file
int config_pixel_clk(u32 ref, u32 freq)
{
        int ret = 0;
        u32 pll = 0;
        struct pll_param pll_param;

        memset(&pll_param, 0, sizeof(struct pll_param));

        pll = freq;
        ret = calc_pll_params(ref, pll, &pll_param);
        if (ret != 0) {
                printf("Can't find pll parameters: %d\n",
                        ret);
                return ret;
        }

        return config_pll_clk(PLL4_CLK, &pll_param);
}
board/freescale/mx53_smd/mx53_smd.c
insert the follow lines between #ifdef CONFIG_ADV_SOM_CMX53 and #else
static struct fb_videomode lvds_g070y2 = {
         "G070Y2", 60, 800, 480, 33602, 100, 90, 10, 8, 2, 2,
         FB_SYNC_EXT,
         FB_VMODE_NONINTERLACED,
         0,
};
replace the part of the ... ipuv3_fb_init ... clk_config ... by the following:
ret = ipuv3_fb_init(&lvds_g070y2, di, IPU_PIX_FMT_RGB24,
                DI_PCLK_LDB, 30000000);
clk_config(CONFIG_REF_CLK_FREQ, 30*7, PIXEL_CLK);
  • u-boot environment variable
set bootargs_base as below:
setenv bootargs_base 'setenv bootargs console=ttymxc0,115200 ldb=single,di=1,ch0_map=JEIDA,ch1_map=JEIDA video=mxcdi0fb:RGB24,G070Y2 di1_primary,bpp=24'
  • linux kernel
arch/arm/mach-mx5/mx53_smd.c
insert the following lines into static struct struct fb_videomode ldb_modefb[] (or modify the existed "G070Y2") :
{
        "G070Y2", 60, 800, 480, 33602, 100, 90, 10, 8, 2, 2,
        0,
        FB_VMODE_NONINTERLACED, 0,
},

IDK-1115R-40XGC1E

  • u-boot environment variable
set bootargs_base as below:
setenv bootargs_base 'setenv bootargs console=ttymxc0,115200 enable_wait_mode=off video=mxcfb0:dev=ldb,1024x768M@60,if=RGB24 ldb=sin0'

 

AM-640480GETNQW-TA0H

      Android 4.4.2 (Kernel 3.0.35)

  • Timing 

          The clock frequency should be 25.175MHz. Need to modify the clock source form PLL2 (pll2_pfd_352M) to PLL5. (In arch/arm/mach-mx6/clock.c )

          Ref: https://cache.freescale.com/files/32bit/doc/app_note/AN4509.pdf
          Ref: https://community.nxp.com/thread/306801

       android/kernel_imx/arch/arm/mach-mx6/clock.c b/new/arch/arm/mach-mx6/clock.c

          (1) static struct clk ldb_di0_clk        .parent = &pll2_pfd_352M,  ==>  .parent = &pll5_video_main_clk,

          (2) static struct clk ldb_di1_clk        .parent = &pll2_pfd_352M,  ==>  .parent = &pll5_video_main_clk,

          (3) int __init mx6_clocks_init           clk_set_parent(&ldb_di0_clk, &pll2_pfd_352M);   --> clk_set_parent(&ldb_di0_clk, &pll5_video_main_clk);
                                                               clk_set_parent(&ldb_di1_clk, &pll2_pfd_352M);    --> clk_set_parent(&ldb_di1_clk, &pll5_video_main_clk);

       android/kernel_imx/drivers/video/mxc/ldb.c

          static struct fb_videomode ldb_modedb[] = {

                   {
                    "LDB-VGA", 25, 640, 480, 39682,
                     160, 80,
                     45, 22,
                       5, 1,
                     FB_SYNC_HOR_HIGH_ACT | FB_SYNC_VERT_HIGH_ACT,
                     FB_VMODE_NONINTERLACED,
                     FB_MODE_IS_VESA},

  • u-boot environment variable
set bootargs as below:

setenv bootargs console=ttymxc0,115200 androidboot.console=ttymxc0 vmalloc=400M init=/init video_mode=extension video=mxcfb0:dev=ldb,LDB-VGA,if=RGB666,bpp=32 video=mxcfb1:off video=mxcfb2:off video=mxcfb3:off fbmem=28M,28M androidboot.hardware=freescale pcie_testmode=off

Dual Channel LVDS Panel

Calculating Timings parameter of LVDS Panel SOP OS: Yocto 1.8 Modify imx6qdl-advantech.dtsi Step1: In ldb parameter, add parameter --> split-mode; /* dual-channel setting *

  &ldb {
       ext_ref = "true";
       status = "okay";
       split-mode; /* dual-channel setting */

Step2: In lvds-channel@1, change [crtc = "ipu1-di1";] to [crtc = "ipu1-di0";]

       lvds-channel@1 {
               fsl,data-mapping = "spwg";
               fsl,data-width = <24>;
               /* crtc = "ipu1-di1"; */
               crtc = "ipu1-di0"; /* dual-channel setting */
               status = "okay";

Step3: In display-timings native-mode = <&timing0>, Delete the other panel parameter.Add" LTI370LN01 " Parameter

        //Dual channel panel
                       timing0: lti370ln01 {
                               clock-frequency = <148500000>;
                               hactive = <1920>;
                               vactive = <544>;
                               hback-porch = <70>;
                               hfront-porch = <70>;
                               vback-porch = <200>;
                               vfront-porch = <200>;
                               hsync-len = <140>;
                               vsync-len = <185>;
                       };

Calculating Timings parameter Check your panel Timing table Example : samsung 37 inch panel

Timing lvds.png
Timing lvds2.png

(1)clock-frequency --> Clock (MHz)

(2)hactive --> Horizontal Active Display Period

(3)vactive --> Vertical Active Display Period

(4)hback-porch + hfront-porch + hsync-len (Total) = Blanking = Horizontal Total - Horizontal Active Display Period

(5)vback-porch + vfront-porch + vsync-len (Total) = Blanking = Vertical Total - Vertical Active Display Period

U-boot command ( Must be add "video=mxcfb1:off")

     setenv mmcargs setenv bootargs console=${console},${baudrate} ${smp} root=${mmcroot} video=mxcfb0:dev=ldb,1920x540M@60,if=RGB24 video=mxcfb1:off

Touchscreen Panel

E21D03U-C01-04 Irtouch-Dualtouch

IRTOUCH panel [Android 4.4]

 (1) Download IRTOUCH driver  (Irtouch-dualtouch-package-android-v14.2.0.0002.7z)
 (2) Download IRTOUCH SWAP mode tool (Swapmode.7z)
 (3) Swap mode
     You need to check and swap IRTOUCH 0X80.
     Please install SWAP mode tool in win7.
     Run SwapModeTool.exe and choose IRTOUCH 0X80.  
 (4) Installing the IRTOUCH Dual-touch Touchscreen Driver
     (a) irtouchusb-dt.c locate to kernel_imx/driver/input/touchscreen;
     (b) modify Makefile in kernel_imx/driver/input/touchscreen
         add:  "obj-$(CONFIG_TOUCHSCREEN_USBIRTOUCH_DT)	+= irtouchusb-dt.o"
     (c) modify Kconfig in kernel_imx/driver/input/touchscreen
         add:
         config TOUCHSCREEN_USBIRTOUCH_DT
                tristate "IRTOUCH USB Touchscreen Driver For single point"
                depends on USB_ARCH_HAS_HCD
                select USB
                help
                  Say Y here if you have a IRTOUCH based touchscreen
                  controller.
                  If unsure, say N.
                  To compile this driver as a module, choose M here: the
                  module will be called irtouch.
     (d)  You can make menuconfig select TOUCHSCREEN_USBIRTOUCH_DT and build kernel 
          Modify defconfig CONFIG_TOUCHSCREEN_USBIRTOUCH_DT=y
          example : imx6_rsb4410_android_kk44_defconfig
     (e)  Add one line to Android file system's ueventd.rc: 
          File path : device/fsl/imx6/etc/ueventd.freescale.rc  
          /dev/irtouch      0666   root    root
     (f)  Copy "Vendor_6615_Product_0081.idc" and "Vendor_6615_Product_0080.idc" file to the Android file system's /usr/idc directory. 
 (5)  Calibration the Touchscreen
         Install CalibrationTools.apk and run "CalibrationTools" to start calibrate touchscreen. 
         package name:com.irtouch.android.calibration    
         class name:  CalibrationToolsActivity

eGTouch touch panel [Android 4.2 ~ Android 4.4]

 (1) Add "eGalaxCalibrator" PRODUCK PACKAGES in device/fsl/imx6/iMX6.mk
 (2) Add eGtouch file path in device/fsl/imx6/iMX6.mk
     device/fsl/common/input/eGTouch_v2.5.2320.A/eGalaxTouch_VirtualDevice.idc:system/usr/idc/eGalaxTouch_VirtualDevice.idc \
     device/fsl/common/input/eGTouch_v2.5.2320.A/eGTouchA.ini:data/eGTouchA.ini \
     device/fsl/common/input/eGTouch_v2.5.2320.A/eGTouchD:system/bin/eGTouchD \
 (3) Add eGtouch idc and ini file in device/fsl/imx6/BoardConfigCommon.mK
     BOARD_USERDATAIMAGE_PARTITION_SIZE := 128M
     device/fsl/common/input/eGTouch_v2.5.2320.A/eGTouchA.ini
     device/fsl/common/input/eGTouch_v2.5.2320.A/eGTouchD
     device/fsl/common/input/eGTouch_v2.5.2320.A/eGalaxTouch_VirtualDevice.idc
 (4) Add service about eGTouch in device/fsl/rsb_4410/init.rc
      service eGTouchD /system/bin/eGTouchD
        class main
        user root
        group root
        oneshot      [Android 4.2 and 4.4 MP version is include eGTouch function]

 

IDK-1105R-50VGA1E

The following operations are performed using Linux BSP 4410LBV2080.
  • u-boot
apparently specify LDB-VGA in video item contained in the variable bootargs_base
setenv bootargs_base 'setenv bootargs console=ttymxc0,115200 enable_wait_mode=off video=mxcfb0:dev=ldb,LDB-VGA,if=RGB666'
  • linux kernel
in drivers/video/mxc/ldb.c, insert the following lines into static struct struct fb_videomode ldb_modefb[] (or modify the existed "LDB-VGA") :
 {
 "LDB-VGA", 60, 640, 480, 39722,
 50, 80,
 24, 18,
 30, 10,
 0,
 FB_VMODE_NONINTERLACED,
 FB_MODE_IS_DETAILED,},

 


The following operations are performed using Android BSP imx6ABV3040_2016-06-21 (Android 4.4)

  • Timing       

              The clock frequency should be 25.175MHz. Need to modify the clock source form PLL2 (pll2_pfd_352M) to PLL5. (In arch/arm/mach-mx6/clock.c )

              [1] [2]http://advdownload.advantech.com/productfile/Downloadfile1/1-Q18T9C/IDK-1105_USER_MANUAL_ED.1_FINAL.PDF

                

  • u-boot

           setenv bootargs console=ttymxc0,115200 androidboot.console=ttymxc0 vmalloc=400M init=/init video_mode=display3 video=mxcfb0:dev=ldb,LDB-VGA,if=RGB666                video=mxcfb1:off fbmem=28M,10M androidboot.hardware=freescale pcie_testmode=off  

  • Android kernel 

           

         android/kernel_imx/arch/arm/mach-mx6/clock.c b/new/arch/arm/mach-mx6/clock.c

          (1) static struct clk ldb_di0_clk        .parent = &pll2_pfd_352M,  ==>  .parent = &pll5_video_main_clk,

          (2) static struct clk gpu2d_core_clk        .parent = &pll2_pfd_352M,  ==>  .parent = &pll5_video_main_clk,

          (3)   if (cpu_is_mx6q())
                clk_set_parent(&gpu2d_core_clk[0], &pll3_usb_otg_main_clk);
                                                               clk_set_parent(&ldb_di0_clk, &pll2_pfd_352M);   --> clk_set_parent(&ldb_di0_clk, &pll5_video_main_clk);
                                                               clk_set_parent(&ldb_di1_clk, &pll2_pfd_352M);    --> clk_set_parent(&ldb_di1_clk, &pll5_video_main_clk);

       android/kernel_imx/drivers/video/mxc/ldb.c

          static struct fb_videomode ldb_modedb[] = {

                

       {
                         "LDB-VGA", 60, 640, 480, 39722,
                          50, 80,
                          24, 15,
                          15,  5,
                                0,
                      FB_VMODE_NONINTERLACED,
                      FB_MODE_IS_DETAILED,},

IDK-1107WR-40WVA1E

Linux

The following operations are performed with RSB-4410(4410LBV2080 and eGTouch_v2.5.3810.L-ma.zip)

  • u-boot
specify the variable bootargs_base as below:
setenv bootargs_base 'setenv bootargs console=ttymxc0,115200 enable_wait_mode=off video_mode=extension video=mxcfb0:dev=ldb,800x480M@60,if=RGB666,bpp=32 ldb=sin0'
  • linux kernel source
  1. drivers/input/evdev.c
    IDK-1107WR-40WVA1E linux evdev.png
  2. drivers/input/mousedev.c
    IDK-1107WR-40WVA1E linux mousedev.png
  3. drivers/input/joydev.c
    IDK-1107WR-40WVA1E linux joydev.png
  • linux kernel config
selection

 

Device Drivers --->
Input device support --->
<*> Event interface
Miscellaneous devices --->
<*> User level driver support
HID Devices --->
[*] /dev/hidraw raw HID device support
Special HID drivers --->
<*> HID Multitouch panels

 

deselection

 

Device Drivers --->
Input device support --->
[*] Touchscreens --->
< > USB Touchscreen Driver

 

  • root filesystem
IDK-1107WR-40WVA1E rootfs.png
add
/usr/local/eGTouchARMnonX
/etc/eGTouchL.ini
update
/etc/rc.d/rc.local

Android

The following operations are performed with RSB-4410(4410ABV1080 and eGTouch_v2.5.2320.A-all.zip)

  • u-boot
specify the variable bootargs_base as below:
setenv bootargs 'console=ttymxc0,115200 androidboot.console=ttymxc0 vmalloc=400M init=/init video=mxcfb0:dev=ldb,800x480M@60,if=RGB666,bpp=32 video=mxcfb1:off video=mxcfb2:off video=mxcfb3:off fbmem=28M androidboot.hardware=freescale'
  • linux kernel config

Device Drivers --->

Input device support --->
<*> Event interface
Miscellaneous devices --->
<*> User level driver support
HID Devices --->
[*] /dev/hidraw raw HID device support
Special HID drivers --->
<*> HID Multitouch panels

 

copy and rename .config to arch/arm/configs/imx6_rsb4410_android_defconfig
  • root filesystem contained in BSP
android/device/fsl/rsb_4410/init.rc
RTENOTITLE
  • eGalaxCalibrator
IDK-1107WR-40WVA1E Apps.png
IDK-1107WR-40WVA1E eGTouchCalibrator 1.png IDK-1107WR-40WVA1E eGTouchCalibrator about.png
IDK-1107WR-40WVA1E eGTouchCalibrator 2.png IDK-1107WR-40WVA1E eGTouchCalibrator 3.png


IDK-1107WP-50WV-A1E

IMG 0279.JPG

For Yocto 1.8 and later

Display setting
 
 
 
 
u-boot

u-boot bootargs need to be set as below:

setenv mmcargs setenv bootargs console=${console},${baudrate} ${smp} root=${mmcroot} video=mxcfb0:dev=ldb,800x480M@60,if=RGB24 video=mxcfb1:off video=mxcfb2:off;
 
 
 
 
kernel

Need to change clock source, so we modify dts file.

imx6q-rom3420-a1.dts is taken as an example:

Add the code as below to dts file

&clks {
       fsl,ldb-di0-parent = <&clks IMX6QDL_CLK_PLL5_VIDEO_DIV>;
       fsl,ldb-di1-parent = <&clks IMX6QDL_CLK_PLL5_VIDEO_DIV>;
};

If produst is i.MX6QP , we have to modify arch/arm/mach-imx/clk-imx6q.c as below

(It's just a workaround solution)

        //if (cpu_is_imx6q() && imx_get_soc_revision() == IMX_CHIP_REVISION_2_0) {
        //       clk[IMX6QDL_CLK_LDB_DI0_SEL]      = imx_clk_mux_flags("ldb_di0_sel", base + 0x2c, 9,  3, ldb_di_sels,      ARRAY_SIZE(ldb_di_sels), CLK_SET_RATE_PARENT);
        //       clk[IMX6QDL_CLK_LDB_DI1_SEL]      = imx_clk_mux_flags("ldb_di1_sel", base + 0x2c, 12, 3, ldb_di_sels,      ARRAY_SIZE(ldb_di_sels), CLK_SET_RATE_PARENT);
        //} else {
               /*
                * The LDB_DI0/1_SEL muxes are registered read-only due to a hardware
                * bug. Set the muxes to the requested values before registering the
                * ldb_di_sel clocks.
                */
               disable_anatop_clocks();
               init_ldb_clks(np);
               clk[IMX6QDL_CLK_LDB_DI0_SEL]      = imx_clk_mux_ldb("ldb_di0_sel", base + 0x2c, 9,  3, ldb_di_sels,      ARRAY_SIZE(ldb_di_sels));
               clk[IMX6QDL_CLK_LDB_DI1_SEL]      = imx_clk_mux_ldb("ldb_di1_sel", base + 0x2c, 12, 3, ldb_di_sels,      ARRAY_SIZE(ldb_di_sels));
        //}

 

Touch setting
 
 
 
 
kernel config setting

You could check this by make menuconfig

Necessary

Device Drivers --->
  Input device support --->
         <*> Event interface
         Miscellaneous devices --->
               <*> User level driver support
  HID support --->
         [*] /dev/hidraw raw HID device support
               Special HID drivers --->
                   <*> HID Multitouch panels

Remove

Device Drivers --->
      Input device support --->
            [*] Touchscreens --->
                < > USB Touchscreen Driver
Note
  eGTouch_v2.5.7413.L-ma /eGTouchARMhf/eGTouchARMhfnonX or eGTouchARMhfwithX
          1. Need to copy   “eGTouchL.ini” into Linux system directory “/etc/eGTouchL.ini” and copy  eGTouchD under /usr/bin.. 
          2. Add  "/usr/bin/eGTouchD "  in /etc/rc.local 
 
 
 
 
Touch calibration on Yocto
Step 1
 
 
 
 
 
TocuhCalibrationonYocto1.png
Step 2
 
 
 
 
 
TocuhCalibrationonYocto2.png
Step 3
 
 
 
 
 
TocuhCalibrationonYocto3.png

MIPI DSI Panel

AUO G101UAN02

Enable auo in deconfig

bitbake linux-imx -c menuconfig

Enable option:

Device Drivers -> Graphics support -> Display Panels -> support for AUO G101UAN02 panel

Re-generated image

bitbake -c compile -f linux-imx
bitbake -c deploy -f linux-imx
bitbake fsl-image-qt5-validation-imx

Flash image

cd ~/imx8_5720/build-xwayland/tmp/deploy/images/imx8mqrom5720a1
bzcat ./fsl-image-qt5-validation-imx-imx8mqrom5720a1-XXXX.rootfs.sdcard.bz2 | sudo dd of=/dev/sdX bs=1M

Change dts in u-boot parameter. (Please type enter while the system is in count down process during boot to bootloader.)

setenv fdt_file adv-imx8mq-rom5720-a1-dcss-auog101uan02.dtb
saveenv
boot

HOWTOs

How to set display in u-boot command

Set HDMI in u-boot command mode is taken as an example:

# setenv mmcargs setenv bootargs console=${console},${baudrate} ${smp} root=${mmcroot} video=mxcfb0:dev=hdmi,1920x1080M@60,if=RGB24 video=mxcfb1:off video=mxcfb2:off;boot

Set LVDS in u-boot command mode is taken as an example:

# setenv mmcargs setenv bootargs console=${console},${baudrate} ${smp} root=${mmcroot} video=mxcfb0:dev=ldb,800x480M@60,if=RGB24 video=mxcfb1:off video=mxcfb2:off;boot

Set VGA in u-boot command mode is taken as an example:

# setenv mmcargs setenv bootargs console=${console},${baudrate} ${smp} root=${mmcroot} video=mxcfb0:dev=lcd,1920x1080M@60,if=RGB24 video=mxcfb1:off video=mxcfb2:off;boot

How to fix display resolution

Set resolution in u-boot command mode Set HDMI 640x480 and VGA 1920x1080 is taken as an example:

# setenv mmcargs setenv bootargs console=${console},${baudrate} ${smp} root=${mmcroot} video=mxcfb0:dev=hdmi,640x480M@60,if=RGB24 video=mxcfb1:dev=lcd,1920x1080M@60,if=RGB24 video=mxcfb2:off;boot

Set HDMI 1920x1080 and VGA 640x480 is taken as an example:

# setenv mmcargs setenv bootargs console=${console},${baudrate} ${smp} root=${mmcroot} video=mxcfb0:dev=hdmi,1920x1080M@60,if=RGB24 video=mxcfb1:dev=lcd,640x480M@60,if=RGB24 video=mxcfb2:off;boot

How to get the current display mode

# cat /sys/class/graphics/fb0/mode
U:1920x1080p-60

How to get the supported display modes

# cat /sys/class/graphics/fb0/modes
U:1280x720p-120
U:1280x720p-100
U:1920x1080p-30
U:1920x1080p-25
U:1920x1080p-24
U:1920x1080p-50
U:1440x576p-50
U:1440x576p-50
U:1440x288p-50
U:1440x288p-50
U:1280x720p-50
U:720x576p-50
U:720x576p-50
U:1920x1080p-60
U:1440x480p-60
U:1440x480p-60
U:1440x240p-60
U:1440x240p-60
U:1280x720p-60
U:720x480p-60
U:720x480p-60
U:640x480p-60

How to get the monitor's EDID

# i2cdump -f -y -r 0x00-0x7F 2 0x50
No size specified (using byte-data access)
     0  1  2  3  4  5  6  7  8  9  a  b  c  d  e  f    0123456789abcdef
00: 00 ff ff ff ff ff ff 00 5a 63 28 0e 01 01 01 01    ........Zc(?????
10: 22 16 01 03 08 30 1b 78 2e e6 75 a4 56 4f 9e 27    "????0?x.?u?VO?'
20: 0f 50 54 bf ef 80 b3 00 a9 40 95 00 81 80 81 40    ?PT????.?@?.???@
30: 81 0f 81 00 71 4f 02 3a 80 18 71 38 2d 40 58 2c    ???.qO?:??q8-@X,
40: 45 00 dd 0c 11 00 00 1e 00 00 00 ff 00 53 44 44    E.???..?.....SDD
50: 31 32 33 34 41 31 33 37 36 0a 00 00 00 fd 00 32    1234A1376?...?.2
60: 4b 18 52 11 00 0a 20 20 20 20 20 20 00 00 00 fc    K?R?.?      ...?
70: 00 56 41 32 32 34 38 20 53 45 52 49 45 53 00 34    .VA2248 SERIES.4
</syntaxhighlight></div>

How to control the screen blanking

to blank the primary display

# echo 1 > /sys/class/graphics/fb0/blank

to unblank the primary display

# echo 0 > /sys/class/graphics/fb0/blank

to set auto-blanking timeout seconds
The default linux framebuffer support will blank a console after 600 seconds of no activity.

kernel space
specify kernel parameter 'consoleblank=<n>' (where <n> means timeout seconds) in u-boot's parameter, bootargs_base
user space
use the command, setterm

  • About the following description, we use IDK-1107WR-40WVA1E panel to customize u-boot logo
  • We customize u-boot logo for Yocto 2.1, LTIB and Android

Yocto 2.1

You need to modify u-boot files as below:
1. Modify the red string part in the uboot-imx6/arch/arm/imx-common/video.c file
@@ -52,6 +52,9 @@ int board_video_skip(void)
             displays[i].mode.name,
             displays[i].mode.xres,
             displays[i].mode.yres);
#ifdef CONFIG_ADV_UBOOT_LOGO_DEBUG
     printf("xxx\n");
#endif
   } else
     printf("LCD %s cannot be configured: %d\n",
            displays[i].mode.name, ret);

2. Modify the red string part in the uboot-imx6/board/freescale/mx6advantech/mx6advantech.c file
@@ -744,18 +744,42 @@ static void enable_lvds(struct display_info_t const *dev)
struct iomuxc *iomux = (struct iomuxc *)
	IOMUXC_BASE_ADDR;
    u32 reg = readl(&iomux->gpr[2]);
#ifdef CONFIG_ADV_UBOOT_LOGO
    reg |= IOMUXC_GPR2_DATA_WIDTH_CH0_24BIT |
           IOMUXC_GPR2_DATA_WIDTH_CH1_24BIT;
#else
    reg |= IOMUXC_GPR2_DATA_WIDTH_CH0_18BIT |
           IOMUXC_GPR2_DATA_WIDTH_CH1_18BIT;
#endif
    writel(reg, &iomux->gpr[2]);
}

struct display_info_t const displays[] = {{
 .bus  = -1,
 .addr = 0,
#ifdef CONFIG_ADV_UBOOT_LOGO
 .pixfmt = IPU_PIX_FMT_RGB24,
#else
 .pixfmt = IPU_PIX_FMT_RGB666,
#endif
 .detect = NULL,
 .enable = enable_lvds,
 .mode   = {
#ifdef CONFIG_ADV_UBOOT_LOGO
   .name           = "Hannstar-XGA",
   .refresh        = 60,
   .xres           = 800,
   .yres           = 480,
   .pixclock       = 15385,
   .left_margin    = 220,
   .right_margin   = 40,
   .upper_margin   = 21,
   .lower_margin   = 7,
   .hsync_len      = 60,
   .vsync_len      = 10,
   .sync           = FB_SYNC_EXT,
   .vmode          = FB_VMODE_NONINTERLACED
#else
   .name           = "Hannstar-XGA",
   .refresh        = 60,
   .xres           = 1024,
@@ -769,6 +793,7 @@ struct display_info_t const displays[] = {{
   .vsync_len      = 10,
   .sync           = FB_SYNC_EXT,
   .vmode          = FB_VMODE_NONINTERLACED
#endif
} }, {
 .bus	= -1,
 .addr	= 0,
@@ -814,6 +839,10 @@ size_t display_count = ARRAY_SIZE(displays);
static void setup_display(void)
{
#ifdef CONFIG_ADV_UBOOT_LOGO_DEBUG
    printf("ADV UBOOT LOGO setup display !!!\n");
#endif
	struct mxc_ccm_reg *mxc_ccm = (struct mxc_ccm_reg *)CCM_BASE_ADDR;
	struct iomuxc *iomux = (struct iomuxc *)IOMUXC_BASE_ADDR;
	int reg;
@@ -825,11 +854,17 @@ static void setup_display(void)
	imx_setup_hdmi();

	/* Turn on LDB0, LDB1, IPU,IPU DI0 clocks */
#ifdef CONFIG_ADV_UBOOT_LOGO
 /* mxc_ccm->CCGR3 address: 0x20c4074 */
#endif
	reg = readl(&mxc_ccm->CCGR3);
	reg |=  MXC_CCM_CCGR3_LDB_DI0_MASK | MXC_CCM_CCGR3_LDB_DI1_MASK;
	writel(reg, &mxc_ccm->CCGR3);

	/* set LDB0, LDB1 clk select to 011/011 */
#ifdef CONFIG_ADV_UBOOT_LOGO
 /* mxc_ccm->cs2cdr address: 0x20c402c */
#endif
	reg = readl(&mxc_ccm->cs2cdr);
	reg &= ~(MXC_CCM_CS2CDR_LDB_DI0_CLK_SEL_MASK
		 | MXC_CCM_CS2CDR_LDB_DI1_CLK_SEL_MASK);
@@ -837,34 +872,65 @@ static void setup_display(void)
	      | (3 << MXC_CCM_CS2CDR_LDB_DI1_CLK_SEL_OFFSET);
	writel(reg, &mxc_ccm->cs2cdr);

#ifdef CONFIG_ADV_UBOOT_LOGO
 /* mxc_ccm->cscmr2 address: 0x20c4020 */
#endif
	reg = readl(&mxc_ccm->cscmr2);
	reg |= MXC_CCM_CSCMR2_LDB_DI0_IPU_DIV | MXC_CCM_CSCMR2_LDB_DI1_IPU_DIV;
	writel(reg, &mxc_ccm->cscmr2);
 
#ifdef CONFIG_ADV_UBOOT_LOGO
 /* mxc_ccm->chsccdr address: 0x20c4034 */
#endif
	reg = readl(&mxc_ccm->chsccdr);
	reg |= (CHSCCDR_CLK_SEL_LDB_DI0
		<< MXC_CCM_CHSCCDR_IPU1_DI0_CLK_SEL_OFFSET);
#ifdef CONFIG_ADV_UBOOT_LOGO
    reg &= ~(MXC_CCM_CHSCCDR_IPU1_DI1_CLK_SEL_MASK);
#endif
	reg |= (CHSCCDR_CLK_SEL_LDB_DI0
		<< MXC_CCM_CHSCCDR_IPU1_DI1_CLK_SEL_OFFSET);
	writel(reg, &mxc_ccm->chsccdr);

#ifdef CONFIG_ADV_UBOOT_LOGO
    /* iomux->gpr[2] address: 0x20e0008 */
#endif
       reg = IOMUXC_GPR2_BGREF_RRMODE_EXTERNAL_RES
            | IOMUXC_GPR2_DI1_VS_POLARITY_ACTIVE_LOW
            | IOMUXC_GPR2_DI0_VS_POLARITY_ACTIVE_LOW
            | IOMUXC_GPR2_BIT_MAPPING_CH1_SPWG
#ifdef CONFIG_ADV_UBOOT_LOGO
            | IOMUXC_GPR2_DATA_WIDTH_CH1_24BIT
#else
            | IOMUXC_GPR2_DATA_WIDTH_CH1_18BIT
#endif
            | IOMUXC_GPR2_BIT_MAPPING_CH0_SPWG
#ifdef CONFIG_ADV_UBOOT_LOGO
            | IOMUXC_GPR2_DATA_WIDTH_CH0_24BIT
            | IOMUXC_GPR2_LVDS_CH0_MODE_ENABLED_DI0
            | IOMUXC_GPR2_LVDS_CH1_MODE_DISABLED;
#else
            | IOMUXC_GPR2_DATA_WIDTH_CH0_18BIT
            | IOMUXC_GPR2_LVDS_CH0_MODE_DISABLED
            | IOMUXC_GPR2_LVDS_CH1_MODE_ENABLED_DI0;
#endif
	writel(reg, &iomux->gpr[2]);

#ifdef CONFIG_ADV_UBOOT_LOGO
 /* iomux->gpr[3] address: 0x20e000c */
#endif
	reg = readl(&iomux->gpr[3]);

#ifdef CONFIG_ADV_UBOOT_LOGO
 reg &= ~(IOMUXC_GPR3_LVDS1_MUX_CTL_MASK);
 writel(reg, &iomux->gpr[3]);
#else
	reg = (reg & ~(IOMUXC_GPR3_LVDS1_MUX_CTL_MASK
			| IOMUXC_GPR3_HDMI_MUX_CTL_MASK))
	    | (IOMUXC_GPR3_MUX_SRC_IPU1_DI0
	       << IOMUXC_GPR3_LVDS1_MUX_CTL_OFFSET);
	writel(reg, &iomux->gpr[3]);
#endif
}
#endif /* CONFIG_VIDEO_IPUV3 */

@@ -985,9 +1051,15 @@ int board_early_init_f(void)
#if defined (CONFIG_ADVANTECH) && defined(CONFIG_SUPPORT_LVDS)
void setup_lvds_init(void)
{
#ifdef CONFIG_ADV_UBOOT_LOGO
    imx_iomux_v3_setup_pad(IOMUX_LCD_BKLT_PWM | MUX_PAD_CTRL(NO_PAD_CTRL)); /* LCD_BKLT_PWM */
    imx_iomux_v3_setup_pad(IOMUX_LCD_BKLT_EN | MUX_PAD_CTRL(NO_PAD_CTRL)); /* LCD_BKLT_EN */
    imx_iomux_v3_setup_pad(IOMUX_LCD_VDD_EN | MUX_PAD_CTRL(NO_PAD_CTRL)); /* LCD_VDD_EN */
#else
	imx_iomux_v3_setup_pad(IOMUX_LCD_BKLT_PWM); /* LCD_BKLT_PWM */
	imx_iomux_v3_setup_pad(IOMUX_LCD_BKLT_EN); /* LCD_BKLT_EN */
	imx_iomux_v3_setup_pad(IOMUX_LCD_VDD_EN); /* LCD_VDD_EN */
#endif

	/* LCD_BKLT_PWM - disable pwm */
	gpio_direction_output(LCD_BKLT_PWM, 0);
@@ -1005,15 +1077,44 @@ void setup_lvds_init(void)
#else
	gpio_direction_output(LCD_VDD_EN, 0);
#endif

#ifdef CONFIG_ADV_UBOOT_LOGO_DEBUG 
 printf("ADV UBOOT LOGO setup_lvds_init \n");
#endif
}


#ifdef CONFIG_ADV_UBOOT_LOGO
void setup_lvds_poweron(void)
{
     //LCD_BKLT_EN
     gpio_direction_output(LCD_BKLT_EN, 1);
     gpio_set_value(LCD_BKLT_EN,1);

     //LCD_VDD_EN
     gpio_direction_output(LCD_VDD_EN, 1);
     gpio_set_value(LCD_VDD_EN,1);

     gpio_direction_output(LCD_BKLT_PWM, 1);
     gpio_set_value(LCD_BKLT_PWM,1);
}
#endif // #ifdef CONFIG_ADV_UBOOT_LOGO

#endif
int board_init(void)
{
#ifdef CONFIG_ADV_UBOOT_LOGO 
        printf("ADV UBOOT LOGO board_init() \n");
#endif

	/* address of boot parameters */
	gd->bd->bi_boot_params = PHYS_SDRAM + 0x100;
#if defined (CONFIG_ADVANTECH) && defined(CONFIG_SUPPORT_LVDS)
       setup_lvds_init();

#ifdef CONFIG_ADV_UBOOT_LOGO
       setup_lvds_poweron();
#endif

#endif
#ifdef CONFIG_MXC_SPI
	setup_spi();

3. Modify the red string part in the uboot-imx6/drivers/video/cfb_console.c file
@@ -311,6 +311,19 @@ extern void video_get_info_str(int line_number,	char *info);

DECLARE_GLOBAL_DATA_PTR;

#ifdef CONFIG_ADV_UBOOT_LOGO_EMMC
#include <mmc.h>
#include <common.h>
#include <asm/ioNew.h>

#define UBOOT_LOGO_BMP_ADDR 0x00100000
#define DISPLAY_WIDTH 800
#define DISPLAY_HEIGHT 480
#define DISPLAY_BPP 16
//#define CONFIG_FB_BASE (CONFIG_SYS_TEXT_BASE + 0x300000)
#define CONFIG_FB_BASE VIDEO_FB_ADRS
#endif

/* Locals */
static GraphicDevice *pGD;	/* Pointer to Graphic array */

@@ -1953,7 +1966,9 @@ static void *video_logo(void)
        }
#endif /* CONFIG_SPLASH_SCREEN */

#ifndef CONFIG_ADV_UBOOT_LOGO_EMMC
	logo_plot(video_fb_address, video_logo_xpos, video_logo_ypos);
#endif

#ifdef CONFIG_SPLASH_SCREEN_ALIGN
	/*
@@ -2090,6 +2105,14 @@ void video_clear(void)
#endif
}

#ifdef CONFIG_ADV_UBOOT_LOGO_EMMC
int get_mmc_env_devno(void)
{
        uint soc_sbmr = readl(SRC_BASE_ADDR + 0x4);
        return (soc_sbmr & 0x00001800) >> 11;
}
#endif

static int video_init(void)
{
	unsigned char color8;
@@ -2108,6 +2131,9 @@ static int video_init(void)
	/* Init drawing pats */
	switch (VIDEO_DATA_FORMAT) {
	case GDF__8BIT_INDEX:
#ifdef CONFIG_ADV_UBOOT_LOGO_DEBUG
               printf("Video: GDF__8BIT_INDEX ...\n");
#endif
		video_set_lut(0x01, CONSOLE_FG_COL, CONSOLE_FG_COL,
			      CONSOLE_FG_COL);
		video_set_lut(0x00, CONSOLE_BG_COL, CONSOLE_BG_COL,
@@ -2116,6 +2142,9 @@ static int video_init(void)
		bgx = 0x00000000;
		break;
	case GDF__8BIT_332RGB:
#ifdef CONFIG_ADV_UBOOT_LOGO_DEBUG
               printf("Video: GDF__8BIT_332RGB ...\n");
#endif
		color8 = ((CONSOLE_FG_COL & 0xe0) |
			  ((CONSOLE_FG_COL >> 3) & 0x1c) |
			  CONSOLE_FG_COL >> 6);

@@ -2128,6 +2157,9 @@ static int video_init(void)

			color8;
		break;
	case GDF_15BIT_555RGB:
#ifdef CONFIG_ADV_UBOOT_LOGO_DEBUG
               printf("Video: GDF_15BIT_555RGB ...\n");
#endif
		fgx = (((CONSOLE_FG_COL >> 3) << 26) |
		       ((CONSOLE_FG_COL >> 3) << 21) |
		       ((CONSOLE_FG_COL >> 3) << 16) |
@@ -2142,6 +2174,9 @@ static int video_init(void)
			(CONSOLE_BG_COL >> 3));
		break;
	case GDF_16BIT_565RGB:
#ifdef CONFIG_ADV_UBOOT_LOGO_DEBUG
               printf("Video: GDF_16BIT_565RGB ...\n");
#endif
		fgx = (((CONSOLE_FG_COL >> 3) << 27) |
		       ((CONSOLE_FG_COL >> 2) << 21) |
		       ((CONSOLE_FG_COL >> 3) << 16) |
@@ -2156,6 +2191,9 @@ static int video_init(void)
			(CONSOLE_BG_COL >> 3));
		break;
	case GDF_32BIT_X888RGB:
#ifdef CONFIG_ADV_UBOOT_LOGO_DEBUG
               printf("Video: GDF_32BIT_X888RGB ...\n");
#endif
		fgx =	(CONSOLE_FG_COL << 16) |
			(CONSOLE_FG_COL <<  8) |
			 CONSOLE_FG_COL;
@@ -2164,6 +2202,9 @@ static int video_init(void)
			 CONSOLE_BG_COL;
		break;
	case GDF_24BIT_888RGB:
#ifdef CONFIG_ADV_UBOOT_LOGO_DEBUG
               printf("Video: GDF_24BIT_888RGB ...\n");
#endif
		fgx =	(CONSOLE_FG_COL << 24) |
			(CONSOLE_FG_COL << 16) |
			(CONSOLE_FG_COL <<  8) |

@@ -2182,6 +2223,87 @@ static int video_init(void)

	/* Plot the logo and get start point of console */
	debug("Video: Drawing the logo ...\n");
	video_console_address = video_logo();

#ifdef CONFIG_ADV_UBOOT_LOGO_EMMC
   unsigned int size = DISPLAY_WIDTH * DISPLAY_HEIGHT * (DISPLAY_BPP / 8);
   unsigned char * pData;
   unsigned int start, count;
   int i, bmpReady = 0;
   int mmc_dev = get_mmc_env_devno();

#ifdef CONFIG_ADV_UBOOT_LOGO_DEBUG
   printf("mmc_dev:%d\n", mmc_dev);
#endif

   struct mmc *mmc = find_mmc_device(mmc_dev);

   pData = (unsigned char *)CONFIG_FB_BASE;

   if (mmc){
	   if (mmc_init(mmc) == 0) {
		   start = ALIGN(UBOOT_LOGO_BMP_ADDR, mmc->read_bl_len) / mmc->read_bl_len;
		   count = ALIGN(size, mmc->read_bl_len) / mmc->read_bl_len;
		   mmc->block_dev.block_read(&mmc->block_dev, start, count, pData);

#ifdef CONFIG_ADV_UBOOT_LOGO_DEBUG
		   printf("start %x \n" ,start);
		   printf("mmc->read_bl_len %x \n" ,mmc->read_bl_len);
		   printf("count %x \n" ,count);
#endif
		   bmpReady = 1;
//		   for(i=0;i<count;i++)
//			   printf("0x%x ",pData[i]);
//		   printf("\n");
#ifdef CONFIG_ADV_UBOOT_LOGO_DEBUG
		   printf("Display emmc logo !!! \n");
		   printf("DISPLAY_BPP %d !!! \n",DISPLAY_BPP);
#endif
	   }
   }
		
	//printf("display r g b !!! \n");
	//bmpReady = 0;
	//r g b bpp is 16,is ok
    if (bmpReady == 0) {
	   // Fill RGB frame buffer
	   // Red
	   for (i = 0; i < (DISPLAY_WIDTH * DISPLAY_HEIGHT * (DISPLAY_BPP / 8) / 3); i += (DISPLAY_BPP / 8)) {
#if (DISPLAY_BPP == 16)
		   pData[i + 0] = 0x00;
		   pData[i + 1] = 0xF8;
#else
		   pData[i + 0] = 0x00;
		   pData[i + 1] = 0x00;
		   pData[i + 2] = 0xFF;
#endif
        }

	   // Green
	   for (; i < (DISPLAY_WIDTH * DISPLAY_HEIGHT * (DISPLAY_BPP / 8) / 3) * 2; i += (DISPLAY_BPP / 8)) {
#if (DISPLAY_BPP == 16)
		   pData[i + 0] = 0xE0;
		   pData[i + 1] = 0x07;
#else
		   pData[i + 0] = 0x00;
		   pData[i + 1] = 0xFF;
		   pData[i + 2] = 0x00;
#endif
        }

	   // Blue
	   for (; i < DISPLAY_WIDTH * DISPLAY_HEIGHT * (DISPLAY_BPP / 8); i += (DISPLAY_BPP / 8)) {
#if (DISPLAY_BPP == 16)
		   pData[i + 0] = 0x1F;
		   pData[i + 1] = 0x00;
#else
		   pData[i + 0] = 0xFF;
		   pData[i + 1] = 0x00;
		   pData[i + 2] = 0x00;
#endif
        }
    }
#endif //#ifdef CONFIG_ADV_UBOOT_LOGO_EMMC

#else
	video_console_address = video_fb_address;
#endif

4. Modify the red string part in the uboot-imx6/include/configs/mx6advantech_common.h file
@@ -51,6 +51,10 @@
#define CONFIG_PHYLIB
#define CONFIG_PHY_ATHEROS

#define CONFIG_ADV_UBOOT_LOGO
#define CONFIG_ADV_UBOOT_LOGO_EMMC
/* #define CONFIG_ADV_UBOOT_LOGO_DEBUG */

/* Command definition */
#define CONFIG_CMD_BMODE

@@ -409,6 +413,33 @@
#define CONFIG_SYS_I2C_MXC_I2C3	/* enable I2C bus 3 */
#define CONFIG_SYS_I2C_SPEED		100000

#ifdef CONFIG_ADV_UBOOT_LOGO
#ifdef CONFIG_ADVANTECH

/* Framebuffer */
#define CONFIG_VIDEO
#define CONFIG_VIDEO_IPUV3
#define CONFIG_CFB_CONSOLE
#define CONFIG_VGA_AS_SINGLE_DEVICE
#define CONFIG_SYS_CONSOLE_IS_IN_ENV
#define CONFIG_SYS_CONSOLE_OVERWRITE_ROUTINE
#define CONFIG_VIDEO_BMP_RLE8
#define CONFIG_SPLASH_SCREEN
#define CONFIG_SPLASH_SCREEN_ALIGN
#define CONFIG_BMP_16BPP
#define CONFIG_VIDEO_LOGO
#define CONFIG_VIDEO_BMP_LOGO
#ifdef CONFIG_MX6DL
#define CONFIG_IPUV3_CLK 198000000
#else
#define CONFIG_IPUV3_CLK 264000000
#endif
#define CONFIG_IMX_HDMI
#define CONFIG_IMX_VIDEO_SKIP
#endif /* #ifdef CONFIG_ADVANTECH */

#endif /* #ifdef CONFIG_ADV_UBOOT_LOGO */

#if defined(CONFIG_ANDROID_SUPPORT)
#include "mx6sabreandroid_common.h"
#else

5. You can download following file. Then put the decompressed files into the uboot-imx6/arch/arm/include/asm/ path

File:ioNew_h.zip

You can refer to Setting_up_SDK to setup environment for building u-boot image
After you patch file, you need to build u-boot image(Example:ROM-3420 DDR 1G)
1. Source environment(Example: Toolchain path:/opt/poky/2.1/)
source /opt/poky/2.1/environment-setup-cortexa9hf-neon-poky-linux-gnueabi

2. Build ROM-3420 1G u-boot image
make mx6qrom3420a1_1G_defconfig
make -j4

Generate u-boot logo image
  • For example: You can use picture editor tool(Photoshop) to generate a 800x480 u-boot logo image(16 bit BMP file)
1. U-boot logo file format
File name: adv_logo_800x480_16bit_rgb565.bmp
Resolution: 800x480
Depth: 16 Bit
BMP Advanced Modes: R5 G6 B5

2. Open original u-boot logo file by Photoshop tool

RTENOTITLE

3. Save the new file

RTENOTITLE

4. New file name:adv_logo_800x480_16bit_rgb565.bmp

RTENOTITLE

5. Choose the type of file and press "OK" button to save the file

RTENOTITLE

RTENOTITLE

  • Copy u-boot logo file(adv_uboot_logo.bmp) to linux OS(Example: Ubuntu), then produce a u-boot logo file that will actually be used
dd if=adv_logo_800x480_16bit_rgb565.bmp of=adv_logo_800x480_16bit_rgb565_new.bmp bs=1 skip=72
sync

  • You can get a u-boot logo file by following link

File:adv_logo.zip

Upload u-boot image and u-boot log image to eMMC by mgtool
1. Modify ucl2.xml file
<LIST name="ADV u-boot" desc="update u-boot">
<CMD state="BootStrap" type="boot" body="BootStrap" file ="firmware/u-boot.imx">Loading U-boot</CMD>
<CMD state="BootStrap" type="load" file="firmware/zImage" address="0x12000000" loadSection="OTH" setSection="OTH" HasFlashHeader="FALSE">Loading Kernel.</CMD>
<CMD state="BootStrap" type="load" file="firmware/fsl-image-mfgtool-initramfs-imx_mfgtools.cpio.gz.u-boot" address="0x12C00000" loadSection="OTH" setSection="OTH" HasFlashHeader="FALSE">Loading Initramfs.</CMD>
<CMD state="BootStrap" type="load" file="firmware/zImage-%dtb%.dtb" address="0x18000000" loadSection="OTH" setSection="OTH" HasFlashHeader="FALSE">Loading device tree.</CMD>
<CMD state="BootStrap" type="jump" > Jumping to OS image.</CMD>
<CMD state="Updater" type="push" body="send" file="files/u-boot_crc.bin.crc">Sending u-boot.bin.crc</CMD>
<CMD state="Updater" type="push" body="$ dd if=$FILE of=/dev/mmcblk%mmc% bs=512 seek=2">write u-boot.bin.crc</CMD>
<CMD state="Updater" type="push" body="send" file="files/u-boot_crc.bin">Sending u-boot.bin</CMD>
<CMD state="Updater" type="push" body="$ dd if=$FILE of=/dev/mmcblk%mmc% bs=512 seek=3">write u-boot.bin</CMD>
<CMD state="Updater" type="push" body="send" file="files/adv_logo_800x480_16bit_rgb565_new.bmp" ifdev="MX6Q">Sending u-boot logo</CMD>
<CMD state="Updater" type="push" body="$ dd if=$FILE of=/dev/mmcblk%mmc% bs=512 seek=2048 conv=fsync">write u-boot logo</CMD>
<CMD state="Updater" type="push" body="$ echo Update Complete!">Done</CMD>
</LIST>

2. Modify cfg.ini file
[LIST]
name = ADV u-boot

3. Copy "u-boot_crc.bin.crc", "u-boot_crc.bin" and "adv_logo_800x480_16bit_rgb565_new.bmp" files to "3420A1LIVXXX_1G_mfgtools\Profiles\Linux\OS Firmware\files" folder
4. Finally, you can refer to Mfgtool to update u-boot image and u-boot logo image

LTIB

The following operations demonstrate how to customize one 800*480 boot logo for ROM-3420 with imx6LBV2210.

  • get one 800*480 8bpp BMP ready, or convert from PPM to BMP file
$ ppmtobmp -bpp=8 uboot_logo.ppm > uboot_logo.bmp
  • convert to C file
$ xxd -i uboot_logo.bmp > uboot_logo.c
  • create new u-boot-2009.08/board/freescale/common/adv_bmp_reversed_800x480.c
unsigned char adv_bmp_reversed_800x480[] = {
//hexvalue copyed from uboot_logo.c
//...
//...
}
unsigned int adv_bmp_reversed_800x480_size = sizeof(adv_bmp_reversed_800x480);
  • u-boot-2009.08/board/freescale/common/Makefile
#COBJS-${CONFIG_VIDEO_MX5} += fsl_bmp_600x400.o fsl_bmp_reversed_600x400.o   
COBJS-${CONFIG_ADVANTECH}  += adv_bmp_reversed_800x480.o
  • Check the ADV loader version. For example: The ADV loader version is V2.210 in the following message
Adv-Boot 2009.08-advantech_rom3420_1G_V2.210_svn414 (Mar 14 2014 - 09:51:19)
 
  • u-boot-2009.08/board/freescale/mx6q_rom-3420/mx6q_rom-3420.c
1. If ADV loader version of the device is less than the V.2350 version, modify the content as follows:
//extern unsigned char fsl_bmp_reversed_600x400[];
//extern int fsl_bmp_reversed_600x400_size;
extern unsigned char adv_bmp_reversed_800x480[];
extern int adv_bmp_reversed_800x480_size;
 
#if defined CONFIG_ADVANTECH
         // AUO 7.0 inch color TFT LCD module G070VW01 V0
         "WVGA", 60, 800, 480, 33898, 96, 24, 3, 10, 72, 7,
         FB_SYNC_EXT,
         FB_VMODE_NONINTERLACED,
         FB_MODE_IS_DETAILED,
#else
         "XGA", 60, 1024, 768, 15385, 220, 40, 21, 7, 60, 10,
         FB_SYNC_EXT,
         FB_VMODE_NONINTERLACED,
         0,
#endif
 
#ifdef CONFIG_ADVANTECH
    s = getenv("uboot_splashimage");
#else
    s = getenv("splashimage");
#endif

    if (NULL == s) {
        puts("env splashimage not found!\n");
#ifdef CONFIG_ADVANTECH
        puts("uboot_splashimage!\n");
#else
        puts("env splashimage not found!\n");
#endif
        return -1;
 
#ifdef CONFIG_ADVANTECH
        // The di_clk_val is set according to LVDS display panel? spec.
        // It also needs to comply with the pixelclock in fb_videomode structure.
        //     pixclock=(10^12)/clk_freq
        ret = ipuv3_fb_init(&lvds_xga, di, IPU_PIX_FMT_RGB666,
                        DI_PCLK_LDB, 29500000);
#else
        ret = ipuv3_fb_init(&lvds_xga, di, IPU_PIX_FMT_RGB666,
                        DI_PCLK_LDB, 65000000);
#endif
 
    char *s;
    ulong addr;

#ifdef CONFIG_ADVANTECH
    s = getenv("uboot_splashimage");
#else
    s = getenv("splashimage");
#endif

    if (s != NULL) {
        addr = simple_strtoul(s, NULL, 16);
2. If ADV loader version of the device is larger than the V.2350 version, modify the content as follows:
//extern unsigned char fsl_bmp_reversed_600x400[];
//extern int fsl_bmp_reversed_600x400_size;
extern unsigned char adv_bmp_reversed_800x480[];
extern int adv_bmp_reversed_800x480_size;
 
#if defined CONFIG_ADVANTECH
         // AUO 7.0 inch color TFT LCD module G070VW01 V0
         "WVGA", 60, 800, 480, 33898, 96, 24, 3, 10, 72, 7,
         FB_SYNC_EXT,
         FB_VMODE_NONINTERLACED,
         FB_MODE_IS_DETAILED,
#else
         "XGA", 60, 1024, 768, 15385, 220, 40, 21, 7, 60, 10,
         FB_SYNC_EXT,
         FB_VMODE_NONINTERLACED,
         0,
#endif
 
#ifdef CONFIG_ADVANTECH
        // The di_clk_val is set according to LVDS display panel? spec.
        // It also needs to comply with the pixelclock in fb_videomode structure.
        //     pixclock=(10^12)/clk_freq
        ret = ipuv3_fb_init(&lvds_xga, di, IPU_PIX_FMT_RGB666,
                        DI_PCLK_LDB, 29500000);
#else
        ret = ipuv3_fb_init(&lvds_xga, di, IPU_PIX_FMT_RGB666,
                        DI_PCLK_LDB, 65000000);
#endif
 
  • u-boot-2009.08/include/configs/mx6q_rom-3420_1G.h
#define CONFIG_SPLASH_SCREEN
  • u-boot parameter
1. If ADV loader version of the device is less than the V.2350 version, modify the content as follows:
setenv bootargs_base 'setenv bootargs console=ttymxc0,115200 enable_wait_mode=off video_mode=extension pcie_testmode=off video=mxcfb0:dev=ldb,800x480M@60,if=RGB24 video=mxcfb1:off video=mxcfb2:off'
setenv uboot_splashimage '0x30000000'
setenv splashpos '0,0'
setenv lvds_num 0
saveenv
2. If ADV loader version of the device is larger than the V.2350 version, modify the content as follows:
setenv bootargs_base 'setenv bootargs console=ttymxc0,115200 enable_wait_mode=off video_mode=extension pcie_testmode=off video=mxcfb0:dev=ldb,800x480M@60,if=RGB24 video=mxcfb1:off video=mxcfb2:off'
setenv splashimage '0x30000000'
setenv splashpos '0,0'
setenv lvds_num 0
saveenv

Android

The following operations demonstrate how to customize one 1024*768 boot logo for RSB-4410 with 4410ABV1080.

  • get one 1024*768 8bpp BMP ready, or convert from PPM to BMP file
$ ppmtobmp -bpp=8 uboot_logo.ppm > uboot_logo.bmp
  • convert to C file
$ xxd -i uboot_logo.bmp > uboot_logo.c
  • create new android/bootable/bootloader/uboot-imx/board/freescale/common/adv_bmp_reversed_1024x768.c
unsigned char adv_bmp_reversed_1024x768[] = {
//hexvalue copyed from uboot_logo.c
//...
//...
}
unsigned int adv_bmp_reversed_1024x768_size = sizeof(adv_bmp_reversed_1024x768);
  • android/bootable/bootloader/uboot-imx/board/freescale/common/Makefile
#COBJS-${CONFIG_ADVANTECH}  += adv_bmp_reversed_800x235.o   
COBJS-${CONFIG_ADVANTECH}  += adv_bmp_reversed_1024x768.o
  • android/bootable/bootloader/uboot-imx/board/freescale/mx6q_rsb-4410/mx6q_rsb-4410.c
//extern unsigned char adv_bmp_reversed_800x235[];
//extern int adv_bmp_reversed_800x235_size;
extern unsigned char adv_bmp_reversed_1024x768[];
extern int adv_bmp_reversed_1024x768_size;
 
#if defined CONFIG_ADVANTECH 
    // AUO 7.0 inch color TFT LCD module G070VW01 V0 
    //"WVGA", 60, 800, 480, 33898, 96, 24, 3, 10, 72, 7, 
    //FB_SYNC_EXT, 
    //FB_VMODE_NONINTERLACED, 
    //FB_MODE_IS_DETAILED, 
    //Customer 1024x768 panel   
    "TCG121XGLPAPNN", 60, 1024, 768, 14202, 150, 150 , 20, 15 , 15, 8, 
      FB_SYNC_EXT, 
      FB_VMODE_NONINTERLACED, 
      FB_MODE_IS_DETAILED, 
#else
 
#ifdef CONFIG_ADVANTECH 
  // The di_clk_val is set according to LVDS display panel spec. 
  // It also needs to comply with the pixelclock in fb_videomode structure. 
  //          pixclock=(10^12)/clk_freq 
  //ret = ipuv3_fb_init(&lvds_xga, di, IPU_PIX_FMT_RGB666, DI_PCLK_LDB, 29500000); 
    ret = ipuv3_fb_init(&lvds_xga, di, IPU_PIX_FMT_RGB666, DI_PCLK_LDB, 70412617); 
#else
 
if defined(CONFIG_ADVANTECH) 
    //addr = ioremap_nocache(iomem_to_phys(addr), adv_bmp_reversed_800x235_size); 
    addr = ioremap_nocache(iomem_to_phys(addr), adv_bmp_reversed_1024x768_size); 
#else
 
#if defined(CONFIG_ADVANTECH)
    //memcpy((char *)addr, (char *)adv_bmp_reversed_800x235, adv_bmp_reversed_800x235_size);
    memcpy((char *)addr, (char *)adv_bmp_reversed_1024x768, adv_bmp_reversed_1024x768_size);
#else
  • android/bootable/bootloader/uboot-imx/include/configs/mx6q_rsb-4410_1G.h
#define CONFIG_SPLASH_SCREEN
  • android/bootable/bootloader/uboot-imx/include/configs/mx6q_rsb-4410_1G_android.h
//"lvds_num=1\0"
"lvds_num=0\0"
  • u-boot parameter
setenv bootargs 'console=ttymxc0,115200 androidboot.console=ttymxc0 vmalloc=400M init=/init video_mode=extension video=mxcfb0:dev=ldb,1024x768@60,bpp=32,if=RGB666 video=mxcfb1:off video=mxcfb2:off video=mxcfb3:off fbmem=10M androidboot.hardware=freescale pcie_testmode=off'

The following operations demonstrate how to customize one Android logo for RSB-4410 with 4410ABV1080.

  • replace android/frameworks/base/core/res/assets/images/android-logo-mask.png with the new 24bpp PNG file


How to modify dts file for setting different framebuffer

Example: Because there is one ipu in i.MX6 SOLO,we set LVDS and HDMI as our default display.

If we want to change HDMI and VGA as our default display ,we have to modify and re-compile dts file.

imx6dl-rom5420-b1.dts default as below:

&lcd {
       pinctrl-0 = <&pinctrl_ipu1_4>;
       status = "disabled"
};
&ldb {
       lvds-channel@0 {
       crtc = "ipu1-di0";
       };
       lvds-channel@1 {
       status ="disabled";
       };
};
&mxcfb3 {
       status = "okay";
};

mxcfb3 is mapped to lvds (you can check imx6qdl-advantech.dtsi)

We want to change to HDMI+VGA

&lcd {
       pinctrl-0 = <&pinctrl_ipu1_4>;
       status = "okay"; 
};
&ldb {
       status ="disabled";
};
&mxcfb2 {
       mode_str ="1366x768M@60";
       status = "okay";
};

Then re-compile dts file and replace

How to bring up panel in Yocto 2.5 and later

Yocto 2.5
 
  • mipi dsi
Refer to adv-imx8mm-rom5721-a1-auog101uan02.dts

 

&mipi_dsi {
        panel@0 {
                compatible = "auo,g101uan02";
                reg = <0>;
                port {
                        panel1_in: endpoint {
                                remote-endpoint = <&mipi_dsi_bridge_out>;
                        };
                };
        };
        port@2 {
                mipi_dsi_bridge_out: endpoint {
                        remote-endpoint = <&panel1_in>;
                };
        };
};
Then refer to drivers/gpu/drm/panel/panel-simple.c

 

#if defined(CONFIG_DRM_PANEL_AUO_G101UAN02)
static const struct drm_display_mode auo_g101uan02_mode = {
    .clock = 148500,
    .hdisplay = 1920,
    .hsync_start = 1920 + 60,
    .hsync_end = 1920 + 60 + 18,
    .htotal = 1920 + 60 + 18 + 60,
    .vdisplay = 1200,
    .vsync_start = 1200 + 4,
    .vsync_end = 1200 + 4 + 4,
    .vtotal = 1200 + 4 + 4 + 4,
    .vrefresh = 60,
};

static const struct panel_desc_dsi auo_g101uan02 = {
    .desc = {
        .modes = &auo_g101uan02_mode,
        .num_modes = 1,
        .bpc = 8,
        .size = {
            .width = 217,
            .height = 136,
        },
    },
    .flags = MIPI_DSI_MODE_VIDEO |
             MIPI_DSI_MODE_VIDEO_BURST |
             MIPI_DSI_CLOCK_NON_CONTINUOUS,
    .format = MIPI_DSI_FMT_RGB888,
    .lanes = 4,
};
#endif
#if defined(CONFIG_DRM_PANEL_AUO_G101UAN02)
                .compatible = "auo,g101uan02",
                .data = &auo_g101uan02
        }, {
#endif
 
  • mipi dsi to lvds bridge
Refer to adv-imx8mm-rom5721-a1.dts
Fill initial value by panel into panel-init-sequence

 

&mipi_dsi {
        status = "okay";
        panel@0 {
                compatible = "toshiba,tc358775";
                reg = <0>;
                dsi,flags = <(MIPI_DSI_MODE_VIDEO | MIPI_DSI_MODE_VIDEO_BURST | MIPI_DSI_MODE_LPM | MIPI_DSI_MODE_EOT_PACKET)>;
                dsi,format = <MIPI_DSI_FMT_RGB888>;
                dsi,lanes = <4>;
                bus-format = <0x100a>;
                bus-flags = <10>;
                panel-init-sequence = [
                        29 00 06 3C 01 03 00 02 00
                        29 00 06 14 01 02 00 00 00
                        29 00 06 64 01 00 00 00 00
                        29 00 06 68 01 00 00 00 00
                        29 00 06 6C 01 00 00 00 00
                        29 00 06 70 01 00 00 00 00
                        29 00 06 34 01 1F 00 00 00
                        29 00 06 10 02 1F 00 00 00
                        29 00 06 04 01 01 00 00 00
                        29 00 06 04 02 01 00 00 00
                        29 00 06 50 04 20 01 F0 03
                        29 00 06 54 04 06 00 32 00
                        29 00 06 58 04 20 03 C8 00
                        29 00 06 5C 04 04 00 04 00
                        29 00 06 60 04 E0 01 14 00
                        29 00 06 64 04 01 00 00 00
                        29 01 06 A0 04 2D 80 44 00
                        29 00 06 A0 04 2D 80 04 00
                        29 00 06 04 05 04 00 00 00
                        29 00 06 80 04 00 01 02 03
                        29 00 06 84 04 04 07 05 08
                        29 00 06 88 04 09 0A 0E 0F
                        29 00 06 8C 04 0B 0C 0D 10
                        29 00 06 90 04 16 17 11 12
                        29 00 06 94 04 13 14 15 1B
                        29 14 06 98 04 18 19 1A 06
                        29 78 06 9C 04 31 00 00 00
                ];
                display-timings {
                        native-mode = <&timing0>;
                        timing0: timing0 {
                                clock-frequency = <33300000>;
                                hactive = <800>;
                                vactive = <480>;
                                hback-porch = <50>;
                                hfront-porch = <200>;
                                vback-porch = <4>;
                                vfront-porch = <20>;
                                hsync-len = <6>;
                                vsync-len = <4>;
                                hsync-active = <0>;
                                vsync-active = <0>;
                                de-active = <0>;
                                pixelclk-active = <0>;
                        };
                };
        };
};
Then refer to drivers/gpu/drm/panel/panel-simple.c

 

#ifdef CONFIG_ARCH_ADVANTECH
                .compatible = "toshiba,tc358775",
                .data = NULL
        }
#endif
Yocto 3.0
  • mipi dsi
Refer to imx8mm-rom5721-a1-auog101uan02.dts

 

&mipi_dsi {
        panel@0 {
                compatible = "auo,g101uan02";
                reg = <0>;
                port {
                        panel1_in: endpoint {
                                remote-endpoint = <&mipi_dsi_bridge_out>;
                        };
                };
        };
        port@2 {
                mipi_dsi_bridge_out: endpoint {
                        remote-endpoint = <&panel1_in>;
                };
        };
};
Then refer to drivers/gpu/drm/panel/panel-simple.c

 

#if defined(CONFIG_DRM_PANEL_AUO_G101UAN02)
static const struct drm_display_mode auo_g101uan02_mode = {
    .clock = 148500,
    .hdisplay = 1920,
    .hsync_start = 1920 + 60,
    .hsync_end = 1920 + 60 + 18,
    .htotal = 1920 + 60 + 18 + 60,
    .vdisplay = 1200,
    .vsync_start = 1200 + 4,
    .vsync_end = 1200 + 4 + 4,
    .vtotal = 1200 + 4 + 4 + 4,
    .vrefresh = 60,
};

static const struct panel_desc_dsi auo_g101uan02 = {
    .desc = {
        .modes = &auo_g101uan02_mode,
        .num_modes = 1,
        .bpc = 8,
        .size = {
            .width = 217,
            .height = 136,
        },
        .bus_format = MEDIA_BUS_FMT_RGB888_1X24,
    },
    .flags = MIPI_DSI_MODE_VIDEO | MIPI_DSI_MODE_VIDEO_BURST |
                 MIPI_DSI_MODE_VIDEO_SYNC_PULSE |
                 MIPI_DSI_MODE_EOT_PACKET,
    .format = MIPI_DSI_FMT_RGB888,
    .lanes = 4,
};

#endif
#if defined(CONFIG_DRM_PANEL_AUO_G101UAN02)
                .compatible = "auo,g101uan02",
                .data = &auo_g101uan02
        }, {
#endif
  • mipi dsi to lvds bridge
Refer to imx8mm-rom5721-a1.dts
Fill initial value by panel into panel-init-sequence

 

&mipi_dsi {
        status = "okay";
        panel@0 {
                compatible = "auo,g070vw01v0";
                reg = <0>;
                backlight=<&lvds_backlight0>;
                panel-init-sequence = [
                        29 00 06 3C 01 03 00 02 00
                        29 00 06 14 01 02 00 00 00
                        29 00 06 64 01 00 00 00 00
                        29 00 06 68 01 00 00 00 00
                        29 00 06 6C 01 00 00 00 00
                        29 00 06 70 01 00 00 00 00
                        29 00 06 34 01 1F 00 00 00
                        29 00 06 10 02 1F 00 00 00
                        29 00 06 04 01 01 00 00 00
                        29 00 06 04 02 01 00 00 00
                        29 00 06 50 04 20 01 F0 03
                        29 00 06 54 04 06 00 32 00
                        29 00 06 58 04 20 03 C8 00
                        29 00 06 5C 04 04 00 04 00
                        29 00 06 60 04 E0 01 14 00
                        29 00 06 64 04 01 00 00 00
                        29 01 06 A0 04 2D 80 44 00
                        29 00 06 A0 04 2D 80 04 00
                        29 00 06 04 05 04 00 00 00
                        29 00 06 80 04 00 01 02 03
                        29 00 06 84 04 04 07 05 08
                        29 00 06 88 04 09 0A 0E 0F
                        29 00 06 8C 04 0B 0C 0D 10
                        29 00 06 90 04 16 17 11 12
                        29 00 06 94 04 13 14 15 1B
                        29 14 06 98 04 18 19 1A 06
                        29 78 06 9C 04 31 00 00 00
                ];
        };

};
Then refer to drivers/gpu/drm/panel/panel-simple.c

 

static const struct drm_display_mode auo_g070vw01v0_mode = {
    .clock = 29500,
    .hdisplay = 800,
    .hsync_start = 800 + 24,
    .hsync_end = 800 + 24 + 72,
    .htotal = 800 + 24 + 72 + 96,
    .vdisplay = 480,
    .vsync_start = 480 + 10,
    .vsync_end = 480 + 10 + 7,
    .vtotal = 480 + 10 + 3 + 7,
    .vrefresh = 60,
};

static const struct panel_desc_dsi auo_g070vw01v0 = {
    .desc = {
        .modes = &auo_g070vw01v0_mode,
        .num_modes = 1,
        .bpc = 8,
        .size = {
            .width = 170,
            .height = 110,
        },
        .bus_format = MEDIA_BUS_FMT_RGB888_1X24,
    },
    .flags = MIPI_DSI_MODE_VIDEO | MIPI_DSI_MODE_VIDEO_BURST | MIPI_DSI_MODE_LPM | MIPI_DSI_MODE_EOT_PACKET,
    .format = MIPI_DSI_FMT_RGB888,
    .lanes = 4,
};
#if defined(CONFIG_ARCH_ADVANTECH)
                .compatible = "auo,g070vw01v0",
                .data = &auo_g070vw01v0
        }
#endif

ThreeDisplayImx8

LVDS0+DSI+HDMI Three Display

Please intergate the imx8mp-rom5722-a1-adv7535.dts and imx8mp-rom5722-a1-lvds0-auo.dts.

Refer : The attachment file. (Three_display.7z)

http://ess-wiki.advantech.com.tw/view/File:Three_display.7z

Limitation

i.MX6 Dual Display Capilities

Imx6 dual display cpabilities.png

i.MX6 Q/D

  • If you want to support two Full HD resloution , you have to allocate on two different ipu

i.MX6 Solo

  • Solo cpu have only one ipu ,so only support the highest resolution are 1920X1080 ,1366X768


 

 

New Panel in 2021

G156HCE-L01

G156HCE-L01 is LVDS Dual Channel (2 ch 8-bit).

15inch timing.jpg

(1)clock-frequency --> Clock (MHz)                                           => 141860000

(2)hactive --> Horizontal Active Display Period                          =>   1920

(3)vactive --> Vertical Active Display Period                               =>    1080

(4)hback-porch + hfront-porch + hsync-len (Total) = Blanking    =>   35+35+35=105

(5)vback-porch + vfront-porch + vsync-len (Total) = Blanking    =>    10+10+10=30

 

Yocto 2.1

Patch file based on Yocto 2.1 linux kernel [commit: c4291bf8354b19719ed67650d3d05f95d8caf9c5]

https://github.com/ADVANTECH-Corp/linux-imx6/commit/c4291bf8354b19719ed67650d3d05f95d8caf9c5

Patch File:   15 inch panel.patch

Uboot Command:

setenv mmcargs setenv bootargs console=${console},${baudrate} ${smp} root=${mmcroot} video=mxcfb0:dev=ldb,1920x1080M@60,if=RGB24 video=mxcfb1:off video=mxcfb2:off

G121XCE-L02

G121XCE-L02 is LVDS Single Channel (1 ch 6/8-bit).

12inch timing.jpg

(1)clock-frequency --> Clock (MHz)                                           =>    64900000

(2)hactive --> Horizontal Active Display Period                          =>    1024

(3)vactive --> Vertical Active Display Period                               =>    768

(4)hback-porch + hfront-porch + hsync-len (Total) = Blanking    =>   110+110+100=320

(5)vback-porch + vfront-porch + vsync-len (Total) = Blanking    =>    13+13+12=38

 

Yocto 2.1

Patch file based on Yocto 2.1 linux kernel [commit: c4291bf8354b19719ed67650d3d05f95d8caf9c5]

https://github.com/ADVANTECH-Corp/linux-imx6/commit/c4291bf8354b19719ed67650d3d05f95d8caf9c5

Patch File:   15 inch panel.patch

Uboot Command:

setenv mmcargs setenv bootargs console=${console},${baudrate} ${smp} root=${mmcroot} video=mxcfb0:dev=ldb,1024x768M@60,if=RGB24 video=mxcfb1:off video=mxcfb2:off

 

G104XCE-L01

G104XCE-L01 is LVDS Single Channel (1 ch 6/8-bit).

0inch_timing.jpg

(1)clock-frequency --> Clock (MHz)                                           =>    65000000

(2)hactive --> Horizontal Active Display Period                          =>    1024

(3)vactive --> Vertical Active Display Period                               =>    768

(4)hback-porch + hfront-porch + hsync-len (Total) = Blanking    =>   110+110+100=320

(5)vback-porch + vfront-porch + vsync-len (Total) = Blanking    =>    13+13+12=38

 

Panel in iMX8

AUOG101UAN02

(1) ROM5721 iMX8MM AUO G101UAN02 10.1” MIPI Interface


File:Timing 10.jpg

(2) Pixel clock(MHz) => LCK Setting (h_active + hfp + hbp + h_sync) * (v_active + vfp + vbp + v_sync) * fps DSI clock(Mbps) ((h_active + hfp + hbp + h_sync) * (v_active + vfp + vbp + v_sync) * fps * bpp) / lane_number RGB888 bpp is 3X8=24bits

(3) Kernel driver CONFIG_DRM_PANEL_SIMPLE drivers/gpu/drm/panel/panel-simple.c https://github.com/ADVANTECH-Corp/linux-imx/commit/91081d143e0528d9920a284f640e80c3a8cb5385#diff-b0efb865b9590da1c62bb09d5b597a61bcc769888ce286b5c8a9f72d35fc3788

File:Timing3.jpg

(4) DTS Setting --> Include the backlight enable in dts.


File:Timing1.jpg


G070VW01

(1) In ROM5721 iMX8MM

(2) Kernel version 5.15.52

(3) Porting backlight and brightness levels setting Refer: https://github.com/ADVANTECH-Corp/linux-imx/blob/adv_5.15.52_2.1.0/arch/arm64/boot/dts/freescale/imx8mm-rom5721-a1.dts

The pwm setting follow dts example and setting brightness levels.

lvds_backlight0: lvds_backlight@0 {

               compatible = "pwm-backlight";
               pwms = <&pwm4 0 1000000 0>;
               brightness-levels = < 0  1  2  3  4  5  6  7  8  9
                            10 11 12 13 14 15 16 17 18 19
                            20 21 22 23 24 25 26 27 28 29
                            30 31 32 33 34 35 36 37 38 39
                            40 41 42 43 44 45 46 47 48 49
                            50 51 52 53 54 55 56 57 58 59
                            60 61 62 63 64 65 66 67 68 69
                            70 71 72 73 74 75 76 77 78 79
                            80 81 82 83 84 85 86 87 88 89
                            90 91 92 93 94 95 96 97 98 99
                           100>;
               default-brightness-level = <80>;
       };
 
  1. Cite error: Invalid <ref> tag; no text was provided for refs named http:.2F.2Fadvdownload.advantech.com.2Fproductfile.2FDownloadfile1.2F1-Q18T9C.2FIDK-1105_USER_MANUAL_ED.1_FINAL.PDF
  2. http://advdownload.advantech.com/productfile/Downloadfile1/1-Q18T9C/IDK-1105_USER_MANUAL_ED.1_FINAL.PDF