summaryrefslogtreecommitdiffstats
path: root/arch/arm/cpu/armv7/am33xx
diff options
context:
space:
mode:
authorTom Rini <trini@ti.com>2014-06-05 11:15:28 -0400
committerTom Rini <trini@ti.com>2014-06-06 17:46:16 -0400
commit64ce2fbd6c9ebb68e274ae1b3c449e1cae86c5b6 (patch)
treee8ce425c17645362638daa67c8a4d45518480a2d /arch/arm/cpu/armv7/am33xx
parentfeca6e676e99102d2044b4baea433b7e6784189f (diff)
downloadblackbird-obmc-uboot-64ce2fbd6c9ebb68e274ae1b3c449e1cae86c5b6.tar.gz
blackbird-obmc-uboot-64ce2fbd6c9ebb68e274ae1b3c449e1cae86c5b6.zip
arm:am33xx: Add a scale_vcores() hook
Similar to OMAP4/5 we need to scale the voltage up prior to changing the clock frequencies up higher. Add a similar hook to start with. Signed-off-by: Tom Rini <trini@ti.com>
Diffstat (limited to 'arch/arm/cpu/armv7/am33xx')
-rw-r--r--arch/arm/cpu/armv7/am33xx/clock.c11
1 files changed, 11 insertions, 0 deletions
diff --git a/arch/arm/cpu/armv7/am33xx/clock.c b/arch/arm/cpu/armv7/am33xx/clock.c
index 0672798fe0..ec7d46838b 100644
--- a/arch/arm/cpu/armv7/am33xx/clock.c
+++ b/arch/arm/cpu/armv7/am33xx/clock.c
@@ -170,8 +170,19 @@ void do_enable_clocks(u32 *const *clk_domains,
};
}
+/*
+ * Before scaling up the clocks we need to have the PMIC scale up the
+ * voltages first. This will be dependent on which PMIC is in use
+ * and in some cases we may not be scaling things up at all and thus not
+ * need to do anything here.
+ */
+__weak void scale_vcores(void)
+{
+}
+
void prcm_init()
{
enable_basic_clocks();
+ scale_vcores();
setup_dplls();
}
OpenPOWER on IntegriCloud