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 /include/ipu.h | |
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 'include/ipu.h')
-rw-r--r-- | include/ipu.h | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/include/ipu.h b/include/ipu.h index 94e551f..864b330 100644 --- a/include/ipu.h +++ b/include/ipu.h @@ -187,6 +187,17 @@ typedef enum { IPU_SEC_INPUT_BUFFER = IPU_GRAPH_IN_BUFFER, } ipu_buffer_t; + +/* + * Enumeration of version of IPU V3 . + */ +typedef enum { + IPUV3_HW_REV_IPUV3DEX = 2, /*IPUv3D, IPUv3E IPUv3EX */ + IPUV3_HW_REV_IPUV3M = 3, /*IPUv3M */ + IPUV3_HW_REV_IPUV3H = 4, /*IPUv3H */ +} ipu3_hw_rev_t; + + #define IPU_PANEL_SERIAL 1 #define IPU_PANEL_PARALLEL 2 |