diff options
author | Nitin Garg <nitin.garg@freescale.com> | 2012-10-17 22:25:21 -0500 |
---|---|---|
committer | Nitin Garg <nitin.garg@freescale.com> | 2012-10-18 13:28:14 -0500 |
commit | 8bd01cd413990ae362665c561f2f7e4e26801a78 (patch) | |
tree | be4bada000eb4f0ff2a713f6bff3c45094f9f8d9 /board | |
parent | b92e78257d19cee079d05bc47ef4b7f134214da9 (diff) | |
download | u-boot-imx-8bd01cd413990ae362665c561f2f7e4e26801a78.zip u-boot-imx-8bd01cd413990ae362665c561f2f7e4e26801a78.tar.gz u-boot-imx-8bd01cd413990ae362665c561f2f7e4e26801a78.tar.bz2 |
ENGR00230334: Fix the mx53_smd_android config
Update the u-boot config for mx53 smd android to
include the correct boot env, enable boot splash,
increase the cmdline buffer, tokens and 1G DDR.
Signed-off-by: Nitin Garg <nitin.garg@freescale.com>
Diffstat (limited to 'board')
-rw-r--r-- | board/freescale/mx53_smd/mx53_smd.c | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/board/freescale/mx53_smd/mx53_smd.c b/board/freescale/mx53_smd/mx53_smd.c index cda2756..f3a5bb2 100644 --- a/board/freescale/mx53_smd/mx53_smd.c +++ b/board/freescale/mx53_smd/mx53_smd.c @@ -78,8 +78,8 @@ static u32 system_rev; static enum boot_device boot_dev; #ifdef CONFIG_VIDEO_MX5 -extern unsigned char fsl_bmp_600x400[]; -extern int fsl_bmp_600x400_size; +extern unsigned char fsl_bmp_reversed_600x400[]; +extern int fsl_bmp_reversed_600x400_size; extern int g_ipu_hw_rev; #if defined(CONFIG_BMP_8BPP) @@ -505,7 +505,6 @@ int da9053_i2c_startup_reset(void) reg = readl(GPIO5_BASE_ADDR + 0x8); if (reg & I2C1_SDA_GPIO5_26_BIT_MASK) { - printf("***I2C1_SDA = hight***\n"); break; } else printf("***I2C1_SDA = low***\n"); @@ -1227,10 +1226,10 @@ void setup_splash_image(void) #if defined(CONFIG_ARCH_MMU) addr = ioremap_nocache(iomem_to_phys(addr), - fsl_bmp_600x400_size); + fsl_bmp_reversed_600x400_size); #endif - memcpy((char *)addr, (char *)fsl_bmp_600x400, - fsl_bmp_600x400_size); + memcpy((char *)addr, (char *)fsl_bmp_reversed_600x400, + fsl_bmp_reversed_600x400_size); } } #endif |