summaryrefslogtreecommitdiff
path: root/arch
diff options
context:
space:
mode:
authorRobby Cai <robby.cai@nxp.com>2016-11-18 17:10:11 +0800
committerRobby Cai <robby.cai@nxp.com>2016-11-21 22:23:08 +0800
commitc85c6f2a0f08dfc6c2859fe969b2021ab32b9370 (patch)
tree7024560089ddabcbedf06e06bc92202d03d4a791 /arch
parent6a3c3cde3f799227dfc6221f526d8f9233729ed6 (diff)
downloadu-boot-imx-c85c6f2a0f08dfc6c2859fe969b2021ab32b9370.zip
u-boot-imx-c85c6f2a0f08dfc6c2859fe969b2021ab32b9370.tar.gz
u-boot-imx-c85c6f2a0f08dfc6c2859fe969b2021ab32b9370.tar.bz2
MLK-13499 imx6sll: add epdc splash screen support
add splash screen feature for epdc. it's tested on imx6sll arm2 board and evk board. Signed-off-by: Robby Cai <robby.cai@nxp.com>
Diffstat (limited to 'arch')
-rw-r--r--arch/arm/cpu/armv7/mx6/clock.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/arch/arm/cpu/armv7/mx6/clock.c b/arch/arm/cpu/armv7/mx6/clock.c
index 186a793..e051e23 100644
--- a/arch/arm/cpu/armv7/mx6/clock.c
+++ b/arch/arm/cpu/armv7/mx6/clock.c
@@ -1494,7 +1494,8 @@ void enable_ipu_clock(void)
}
}
-#if defined(CONFIG_MXC_EPDC) && defined(CONFIG_MX6ULL)
+#if defined(CONFIG_MXC_EPDC)
+#if defined(CONFIG_MX6ULL) || defined(CONFIG_MX6SLL)
void enable_epdc_clock(void)
{
u32 reg = 0;
@@ -1522,6 +1523,7 @@ void enable_epdc_clock(void)
setbits_le32(&imx_ccm->CCGR3, MXC_CCM_CCGR3_EPDC_CLK_ENABLE_MASK);
}
#endif
+#endif
/***************************************************/