diff options
author | Sandor Yu <r01008@freescale.com> | 2011-09-01 17:41:36 +0800 |
---|---|---|
committer | Sandor Yu <R01008@freescale.com> | 2011-09-02 17:28:42 +0800 |
commit | 799007675f0bd42bae7397056a2cde250b8811ec (patch) | |
tree | 6237cf9141803d551624ef135d132ac8ed463a0c /cpu | |
parent | 7db399587fe4cd8d0e77491e9b2fad47c0a82be2 (diff) | |
download | u-boot-imx-799007675f0bd42bae7397056a2cde250b8811ec.zip u-boot-imx-799007675f0bd42bae7397056a2cde250b8811ec.tar.gz u-boot-imx-799007675f0bd42bae7397056a2cde250b8811ec.tar.bz2 |
ENGR00139254: Enable MX6Q Uboot Splash Screen
Only support LVDS0 splash screen.
Enable splash process:
1.define CONFIG_SPLASH_SCREEN in mx6q_sabreauto.h
2.Config U-boot with followed command:()
setenv splashimage '0x30000000'
#Set splash position as Center
setenv splashpos 'm,m'
#Set LVDS via LVDS bridge 0
setenv lvds_num 0
Signed-off-by: Sandor Yu <r01008@freescale.com>
Diffstat (limited to 'cpu')
-rw-r--r-- | cpu/arm_cortexa8/mx6/generic.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/cpu/arm_cortexa8/mx6/generic.c b/cpu/arm_cortexa8/mx6/generic.c index fb0ef94..f959b95 100644 --- a/cpu/arm_cortexa8/mx6/generic.c +++ b/cpu/arm_cortexa8/mx6/generic.c @@ -763,3 +763,10 @@ int arch_cpu_init(void) } #endif +void ipu_clk_enable(void) +{ +} + +void ipu_clk_disable(void) +{ +} |