diff options
author | Peng Fan <Peng.Fan@freescale.com> | 2015-03-19 10:10:07 +0800 |
---|---|---|
committer | Peng Fan <Peng.Fan@freescale.com> | 2015-04-29 14:40:29 +0800 |
commit | 5028519b434d5dfbe53c48ac4b115ff8b69bbac7 (patch) | |
tree | 32b3239b7d770dfee81f21530afb2289c7cf4ade /include/configs | |
parent | c0a8bf9ce4e747cac85c308658e0dbea0de448e7 (diff) | |
download | u-boot-imx-5028519b434d5dfbe53c48ac4b115ff8b69bbac7.zip u-boot-imx-5028519b434d5dfbe53c48ac4b115ff8b69bbac7.tar.gz u-boot-imx-5028519b434d5dfbe53c48ac4b115ff8b69bbac7.tar.bz2 |
MLK-10774-2 HDMI: splash screen function enhancement
-Change HDMI video mode to VGA.
-Add pixel clock fraction part setting in IPU driver,
fix video mode timing issue.
-Add overflow state clear workaround,
fix kernel hang in HDMI driver issue.
-Correct IPU clock to 264MHz.
Signed-off-by: Sandor Yu <R01008@freescale.com>
Signed-off-by: Nitin Garg <nitin.garg@freescale.com>
(cherry picked from commit 45d532a0237f5baf2ec95b4364ec5bc94d312689)
Signed-off-by: Peng Fan <Peng.Fan@freescale.com>
Diffstat (limited to 'include/configs')
-rw-r--r-- | include/configs/mx6sabre_common.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/include/configs/mx6sabre_common.h b/include/configs/mx6sabre_common.h index b72522b..1b4ec5b 100644 --- a/include/configs/mx6sabre_common.h +++ b/include/configs/mx6sabre_common.h @@ -272,7 +272,11 @@ #define CONFIG_BMP_16BPP #define CONFIG_VIDEO_LOGO #define CONFIG_VIDEO_BMP_LOGO -#define CONFIG_IPUV3_CLK 260000000 +#ifdef CONFIG_MX6DL +#define CONFIG_IPUV3_CLK 198000000 +#else +#define CONFIG_IPUV3_CLK 264000000 +#endif #define CONFIG_IMX_HDMI #define CONFIG_IMX_VIDEO_SKIP |