diff options
author | Peng Fan <Peng.Fan@freescale.com> | 2015-03-19 10:10:07 +0800 |
---|---|---|
committer | Ye Li <ye.li@nxp.com> | 2016-03-25 11:50:25 +0800 |
commit | 8dcbd43b971616fb67dc3b2af32e2d33f68ed0ce (patch) | |
tree | 012e2179dfb9de215a818ab5cd0b8366f35ca7bb /include | |
parent | ff3923f294cc2e15f436d7520b4042736b1b48a6 (diff) | |
download | u-boot-imx-8dcbd43b971616fb67dc3b2af32e2d33f68ed0ce.zip u-boot-imx-8dcbd43b971616fb67dc3b2af32e2d33f68ed0ce.tar.gz u-boot-imx-8dcbd43b971616fb67dc3b2af32e2d33f68ed0ce.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>
Signed-off-by: Peng Fan <Peng.Fan@freescale.com>
Signed-off-by: Ye Li <ye.li@nxp.com>
(cherry picked from commit 5028519b434d5dfbe53c48ac4b115ff8b69bbac7)
Diffstat (limited to 'include')
-rw-r--r-- | include/configs/mx6sabre_common.h | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/include/configs/mx6sabre_common.h b/include/configs/mx6sabre_common.h index 29d1f91..9c0ac08 100644 --- a/include/configs/mx6sabre_common.h +++ b/include/configs/mx6sabre_common.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2012 Freescale Semiconductor, Inc. + * Copyright (C) 2012-2016 Freescale Semiconductor, Inc. * * Configuration settings for the Freescale i.MX6Q SabreSD board. * @@ -225,7 +225,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 |