summaryrefslogtreecommitdiff
path: root/firmware/target/arm/imx31/gigabeat-s/system-imx31.c
diff options
context:
space:
mode:
authorMichael Sevakis <jethead71@rockbox.org>2010-04-07 03:43:48 +0000
committerMichael Sevakis <jethead71@rockbox.org>2010-04-07 03:43:48 +0000
commit87eea33def283e23e239e716ee67093b0bdde226 (patch)
tree834f1914514735a39842e5ec69047138d28bb433 /firmware/target/arm/imx31/gigabeat-s/system-imx31.c
parent48789c5361419ebc88fe603912c139ca077b5cfb (diff)
downloadrockbox-87eea33def283e23e239e716ee67093b0bdde226.tar.gz
rockbox-87eea33def283e23e239e716ee67093b0bdde226.zip
Gigabeat S (imx31): Begin voltage and frequency scaling code. For now, to avoid overdrive voltage, just lower core voltage to 1.35V since voltage scaling shouldn't be required for frequencies lower than 399 MHz (according to Freescale BSP, which set all working points to 1.35V for those frequencies). Perhaps battery life will improve as well (cross fingers :).
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@25506 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'firmware/target/arm/imx31/gigabeat-s/system-imx31.c')
-rw-r--r--firmware/target/arm/imx31/gigabeat-s/system-imx31.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/firmware/target/arm/imx31/gigabeat-s/system-imx31.c b/firmware/target/arm/imx31/gigabeat-s/system-imx31.c
index 65299cb8d0..cd684e77ac 100644
--- a/firmware/target/arm/imx31/gigabeat-s/system-imx31.c
+++ b/firmware/target/arm/imx31/gigabeat-s/system-imx31.c
@@ -31,6 +31,7 @@
31#include "debug.h" 31#include "debug.h"
32#include "ccm-imx31.h" 32#include "ccm-imx31.h"
33#include "mc13783.h" 33#include "mc13783.h"
34#include "dvfs_dptc-imx31.h"
34 35
35static unsigned long product_rev; 36static unsigned long product_rev;
36static unsigned long system_rev; 37static unsigned long system_rev;
@@ -241,6 +242,7 @@ void __attribute__((naked)) imx31_regclr32(volatile uint32_t *reg_p,
241#ifdef BOOTLOADER 242#ifdef BOOTLOADER
242void system_prepare_fw_start(void) 243void system_prepare_fw_start(void)
243{ 244{
245 dvfs_dptc_stop();
244 disable_interrupt(IRQ_FIQ_STATUS); 246 disable_interrupt(IRQ_FIQ_STATUS);
245 avic_disable_int(INT_ALL); 247 avic_disable_int(INT_ALL);
246 mc13783_close(); 248 mc13783_close();