mirror of
https://github.com/Rockbox/rockbox.git
synced 2025-12-08 12:45:26 -05:00
1. Slightly revised and regularized internal interface. Callback is used for read and write to provide completion signal instead of having two mechanisms. 2. Lower overhead for asynchronous or alterate completion callbacks. We now only init what is required by the transfer. A couple unneeded structure members were also nixed. 3. Fixes a bug that would neglect a semaphore wait if pumping the I2C interrupts in a loop when not in thread state or interrupts are masked. 4. Corrects broken initialization order by defining KDEV_INIT, which makes kernel_init() call kernel_device_init() to initialize additional devices _after_ the kernel, threading and synchronization objects are safe to use. 5. Locking set_cpu_frequency has to be done at the highest level in system.c to ensure the boost counter and the frequency are both set in agreement. Reconcile the locking inteface between PP and AMS (the only two currently using locking there) to keep it clean. Now works fine with voltages in GIT HEAD on my Fuze v2, type 0. Previously, everything crashed and died instantly. action.c calling set_cpu_frequency from a tick was part of it. The rest may have been related to 3. and 4. Honestly, I'm not certain! Testing by Mihail Zenkov indicates it solves our problems. This will get the developer builds running again after the kernel assert code push. Change-Id: Ie245994fb3e318dd5ef48e383ce61fdd977224d4
538 lines
16 KiB
C
538 lines
16 KiB
C
/***************************************************************************
|
|
* __________ __ ___.
|
|
* Open \______ \ ____ ____ | | _\_ |__ _______ ___
|
|
* Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
|
|
* Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
|
|
* Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
|
|
* \/ \/ \/ \/ \/
|
|
* $Id$
|
|
*
|
|
* Copyright (C) 2007 by Rob Purchase
|
|
* Copyright © 2008 Rafaël Carré
|
|
*
|
|
* This program is free software; you can redistribute it and/or
|
|
* modify it under the terms of the GNU General Public License
|
|
* as published by the Free Software Foundation; either version 2
|
|
* of the License, or (at your option) any later version.
|
|
*
|
|
* This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
|
|
* KIND, either express or implied.
|
|
*
|
|
****************************************************************************/
|
|
|
|
#include "config.h"
|
|
#include "kernel.h"
|
|
#include "system.h"
|
|
#include "panic.h"
|
|
#include "ascodec.h"
|
|
#include "adc.h"
|
|
#include "dma-target.h"
|
|
#include "clock-target.h"
|
|
#include "fmradio_i2c.h"
|
|
#include "button.h"
|
|
#include "backlight-target.h"
|
|
#include "lcd.h"
|
|
|
|
struct mutex cpufreq_mtx;
|
|
|
|
/* Charge Pump and Power management Settings */
|
|
#define AS314_CP_DCDC3_SETTING \
|
|
((0<<7) | /* CP_SW Auto-Switch Margin 0=200/300 1=150/255 */ \
|
|
(0<<6) | /* CP_on 0=Normal op 1=Chg Pump Always On */ \
|
|
(0<<5) | /* LREG_CPnot Always write 0 */ \
|
|
(0<<3) | /* DCDC3p BVDD setting 3.6/3.2/3.1/3.0 */ \
|
|
(1<<2) | /* LREG_off 1=Auto mode switching 0=Length Reg only*/\
|
|
(0<<0) ) /* CVDDp Core Voltage Setting 1.2/1.15/1.10/1.05*/
|
|
|
|
#define CVDD_1_20 0
|
|
#define CVDD_1_15 1
|
|
#define CVDD_1_10 2
|
|
#define CVDD_1_05 3
|
|
|
|
#define default_interrupt(name) \
|
|
extern __attribute__((weak,alias("UIRQ"))) void name (void)
|
|
|
|
#if CONFIG_USBOTG != USBOTG_DESIGNWARE
|
|
static void UIRQ (void) __attribute__((interrupt ("IRQ")));
|
|
#endif
|
|
void irq_handler(void) __attribute__((naked, interrupt ("IRQ")));
|
|
void fiq_handler(void) __attribute__((interrupt ("FIQ")));
|
|
|
|
default_interrupt(INT_WATCHDOG);
|
|
default_interrupt(INT_TIMER1);
|
|
default_interrupt(INT_TIMER2);
|
|
default_interrupt(INT_USB_FUNC);
|
|
default_interrupt(INT_DMAC);
|
|
default_interrupt(INT_NAND);
|
|
default_interrupt(INT_IDE);
|
|
default_interrupt(INT_MCI0);
|
|
default_interrupt(INT_MCI1);
|
|
default_interrupt(INT_AUDIO);
|
|
default_interrupt(INT_SSP);
|
|
default_interrupt(INT_I2C_MS);
|
|
default_interrupt(INT_I2C_AUDIO);
|
|
default_interrupt(INT_I2SIN);
|
|
default_interrupt(INT_I2SOUT);
|
|
default_interrupt(INT_UART);
|
|
default_interrupt(INT_GPIOD);
|
|
default_interrupt(RESERVED1); /* Interrupt 17 : unused */
|
|
default_interrupt(INT_CGU);
|
|
default_interrupt(INT_MEMORY_STICK);
|
|
default_interrupt(INT_DBOP);
|
|
default_interrupt(RESERVED2); /* Interrupt 21 : unused */
|
|
default_interrupt(RESERVED3); /* Interrupt 22 : unused */
|
|
default_interrupt(RESERVED4); /* Interrupt 23 : unused */
|
|
default_interrupt(RESERVED5); /* Interrupt 24 : unused */
|
|
default_interrupt(RESERVED6); /* Interrupt 25 : unused */
|
|
default_interrupt(RESERVED7); /* Interrupt 26 : unused */
|
|
default_interrupt(RESERVED8); /* Interrupt 27 : unused */
|
|
default_interrupt(RESERVED9); /* Interrupt 28 : unused */
|
|
/* INT_GPIOA is declared in this file */
|
|
void INT_GPIOA(void);
|
|
default_interrupt(INT_GPIOB);
|
|
default_interrupt(INT_GPIOC);
|
|
|
|
static const char const irqname[][9] =
|
|
{
|
|
"WATCHDOG", "TIMER1", "TIMER2", "USB", "DMAC", "NAND",
|
|
"IDE", "MCI0", "MCI1", "AUDIO", "SSP", "I2C_MS",
|
|
"I2C_AUDIO", "I2SIN", "I2SOUT", "UART", "GPIOD", "RESERVD1",
|
|
"CGU", "MS", "DBOP", "RESERVD2", "RESERVD3", "RESERVD4",
|
|
"RESERVD5", "RESERVD6", "RESERVD7", "RESERVD8", "RESERVD9", "GPIOA",
|
|
"GPIOB", "GPIOC"
|
|
};
|
|
|
|
static void UIRQ(void)
|
|
{
|
|
bool masked = false;
|
|
int status = VIC_IRQ_STATUS;
|
|
if(status == 0)
|
|
{
|
|
status = VIC_RAW_INTR; /* masked interrupts */
|
|
#if CONFIG_USBOTG == USBOTG_DESIGNWARE
|
|
/* spurious interrupts from USB are expected */
|
|
if (status & INTERRUPT_USB)
|
|
return;
|
|
#endif
|
|
masked = true;
|
|
}
|
|
|
|
if(status == 0)
|
|
panicf("Unhandled IRQ (source unknown!)");
|
|
|
|
unsigned irq_no = 31 - __builtin_clz(status);
|
|
|
|
panicf("Unhandled %smasked IRQ %02X: %s (status 0x%8X)",
|
|
masked ? "" : "un", irq_no, irqname[irq_no], status);
|
|
}
|
|
|
|
/* Vectored interrupts (16 available) */
|
|
static const struct { int source; void (*isr) (void); } vec_int_srcs[] =
|
|
{
|
|
/* Highest priority at the top of the list */
|
|
#if defined(HAVE_HOTSWAP) || defined(HAVE_RDS_CAP) || \
|
|
(defined(SANSA_FUZEV2) && !INCREASED_SCROLLWHEEL_POLLING)
|
|
/* If GPIOA ISR is interrupted, things seem to go wonky ?? */
|
|
{ INT_SRC_GPIOA, INT_GPIOA },
|
|
#endif
|
|
#ifdef HAVE_RECORDING
|
|
{ INT_SRC_I2SIN, INT_I2SIN }, /* For recording */
|
|
#endif
|
|
{ INT_SRC_DMAC, INT_DMAC }, /* Playback follows recording */
|
|
{ INT_SRC_NAND, INT_NAND },
|
|
#if (defined HAVE_MULTIDRIVE && CONFIG_CPU == AS3525)
|
|
{ INT_SRC_MCI0, INT_MCI0 },
|
|
#endif
|
|
{ INT_SRC_USB, INT_USB_FUNC, },
|
|
{ INT_SRC_TIMER1, INT_TIMER1 },
|
|
{ INT_SRC_TIMER2, INT_TIMER2 },
|
|
{ INT_SRC_I2C_AUDIO, INT_I2C_AUDIO },
|
|
{ INT_SRC_AUDIO, INT_AUDIO },
|
|
/* Lowest priority at the end of the list */
|
|
};
|
|
|
|
static void setup_vic(void)
|
|
{
|
|
CGU_PERI |= CGU_VIC_CLOCK_ENABLE; /* enable VIC */
|
|
VIC_INT_EN_CLEAR = 0xffffffff; /* disable all interrupt lines */
|
|
VIC_INT_SELECT = 0; /* only IRQ, no FIQ */
|
|
|
|
*VIC_DEF_VECT_ADDR = UIRQ;
|
|
|
|
for(unsigned int i = 0; i < ARRAYLEN(vec_int_srcs); i++)
|
|
{
|
|
VIC_VECT_ADDRS[i] = vec_int_srcs[i].isr;
|
|
VIC_VECT_CNTLS[i] = (1<<5) | vec_int_srcs[i].source;
|
|
}
|
|
|
|
/* Reset priority hardware */
|
|
for(unsigned int i = 0; i < 32; i++)
|
|
*VIC_VECT_ADDR = 0;
|
|
}
|
|
|
|
void INT_GPIOA(void)
|
|
{
|
|
#ifdef HAVE_HOTSWAP
|
|
void sd_gpioa_isr(void);
|
|
sd_gpioa_isr();
|
|
#endif
|
|
#if defined(SANSA_FUZEV2) && !INCREASED_SCROLLWHEEL_POLLING
|
|
void button_gpioa_isr(void);
|
|
button_gpioa_isr();
|
|
#endif
|
|
#ifdef HAVE_RDS_CAP
|
|
void tuner_isr(void);
|
|
tuner_isr();
|
|
#endif
|
|
}
|
|
|
|
void irq_handler(void)
|
|
{
|
|
/* Worst-case IRQ stack usage with 10 vectors:
|
|
* 10*4*10 = 400 bytes (100 words)
|
|
*
|
|
* No SVC stack is used by pro/epi-logue code
|
|
*/
|
|
asm volatile (
|
|
"sub lr, lr, #4 \n" /* Create return address */
|
|
"stmfd sp!, { r0-r5, r12, lr } \n" /* Save what gets clobbered */
|
|
"ldr r0, =0xc6010030 \n" /* Obtain VIC address (before SPSR read!) */
|
|
"ldr r12, [r0] \n" /* Load Vector */
|
|
"mrs r1, spsr \n" /* Save SPSR_irq */
|
|
"stmfd sp!, { r0-r1 } \n" /* Must have something bet. mrs and msr */
|
|
"msr cpsr_c, #0x13 \n" /* Switch to SVC mode, enable IRQ */
|
|
"and r4, sp, #4 \n" /* Align SVC stack to 8 bytes, save */
|
|
"sub sp, sp, r4 \n"
|
|
"mov r5, lr \n" /* Save lr_SVC */
|
|
#if ARM_ARCH >= 5
|
|
"blx r12 \n" /* Call handler */
|
|
#else
|
|
"mov lr, pc \n"
|
|
"bx r12 \n"
|
|
#endif
|
|
"add sp, sp, r4 \n" /* Undo alignment fudge */
|
|
"mov lr, r5 \n" /* Restore lr_SVC */
|
|
"msr cpsr_c, #0x92 \n" /* Mask IRQ, return to IRQ mode */
|
|
"ldmfd sp!, { r0-r1 } \n" /* Pop VIC address, SPSR_irq */
|
|
"str r0, [r0] \n" /* Ack end of ISR to VIC */
|
|
"msr spsr_cxsf, r1 \n" /* Restore SPSR_irq */
|
|
"ldmfd sp!, { r0-r5, r12, pc }^ \n" /* Restore regs, and RFE */
|
|
);
|
|
}
|
|
|
|
void fiq_handler(void)
|
|
{
|
|
}
|
|
|
|
#if defined(SANSA_C200V2)
|
|
int c200v2_variant;
|
|
|
|
static void check_model_variant(void)
|
|
{
|
|
unsigned int i;
|
|
unsigned int saved_dir = GPIOA_DIR;
|
|
|
|
/* Make A7 input */
|
|
GPIOA_DIR &= ~(1<<7);
|
|
/* wait a little to allow the pullup/pulldown resistor
|
|
* to charge the input capacitance */
|
|
for (i=0; i<1000; i++) asm volatile ("nop\n");
|
|
/* read the pullup/pulldown value on A7 to determine the variant */
|
|
c200v2_variant = !GPIOA_PIN(7);
|
|
GPIOA_DIR = saved_dir;
|
|
}
|
|
#elif defined(SANSA_FUZEV2) || defined(SANSA_CLIPPLUS) || defined(SANSA_CLIPZIP)
|
|
int amsv2_variant;
|
|
|
|
static void check_model_variant(void)
|
|
{
|
|
GPIOB_DIR &= ~(1<<5);
|
|
amsv2_variant = !!GPIOB_PIN(5);
|
|
}
|
|
#else
|
|
static inline void check_model_variant(void)
|
|
{
|
|
}
|
|
#endif /* model selection */
|
|
|
|
void system_init(void)
|
|
{
|
|
#if CONFIG_CPU == AS3525v2
|
|
CCU_SRC = 0x57D7BF0;
|
|
#else
|
|
CCU_SRC = 0x1fffff0
|
|
& ~CCU_SRC_IDE_EN; /* FIXME */
|
|
#endif
|
|
|
|
unsigned int reset_loops = 640;
|
|
while(reset_loops--)
|
|
CCU_SRL = CCU_SRL_MAGIC_NUMBER;
|
|
CCU_SRC = CCU_SRL = 0;
|
|
|
|
CCU_SCON = 1; /* AHB master's priority configuration :
|
|
TIC (Test Interface Controller) > DMA > USB > IDE > ARM */
|
|
|
|
CGU_PROC = 0; /* fclk 24 MHz */
|
|
#if CONFIG_CPU == AS3525v2
|
|
/* pclk is always based on PLLA, since we don't know the current PLLA speed,
|
|
* avoid having pclk too fast and hope it's not too low */
|
|
CGU_PERI |= 0xf << 2; /* pclk lowest */
|
|
#else
|
|
CGU_PERI &= ~0x7f; /* pclk 24 MHz */
|
|
#endif
|
|
|
|
/* bits 31:30 should be set to 0 in arm926-ejs */
|
|
asm volatile(
|
|
"mrc p15, 0, r0, c1, c0 \n" /* control register */
|
|
"bic r0, r0, #3<<30 \n" /* clears bus bits : sets fastbus */
|
|
"mcr p15, 0, r0, c1, c0 \n"
|
|
: : : "r0" );
|
|
|
|
CGU_COUNTA = CGU_LOCK_CNT;
|
|
CGU_PLLA = AS3525_PLLA_SETTING;
|
|
CGU_PLLASUP = 0; /* enable PLLA */
|
|
while(!(CGU_INTCTRL & CGU_PLLA_LOCK)); /* wait until PLLA is locked */
|
|
|
|
#if AS3525_MCLK_SEL == AS3525_CLK_PLLB
|
|
CGU_COUNTB = CGU_LOCK_CNT;
|
|
CGU_PLLB = AS3525_PLLB_SETTING;
|
|
CGU_PLLBSUP = 0; /* enable PLLB */
|
|
while(!(CGU_INTCTRL & CGU_PLLB_LOCK)); /* wait until PLLB is locked */
|
|
#endif
|
|
|
|
/* Set FCLK frequency */
|
|
CGU_PROC = ((AS3525_FCLK_POSTDIV << 4) |
|
|
(AS3525_FCLK_PREDIV << 2) |
|
|
AS3525_FCLK_SEL);
|
|
|
|
/* Set PCLK frequency */
|
|
CGU_PERI = ((CGU_PERI & ~0x7F) | /* reset divider & clksel bits */
|
|
(AS3525_PCLK_DIV0 << 2) |
|
|
#if CONFIG_CPU == AS3525
|
|
(AS3525_PCLK_DIV1 << 6) |
|
|
#endif
|
|
AS3525_PCLK_SEL);
|
|
|
|
CGU_PERI |= CGU_ROM_ENABLE; /* needed for rebooting */
|
|
|
|
#if 0 /* the GPIO clock is already enabled by the dualboot function */
|
|
CGU_PERI |= CGU_GPIO_CLOCK_ENABLE;
|
|
#endif
|
|
|
|
/* enable timer interface for TIMER1 & TIMER2 */
|
|
CGU_PERI |= CGU_TIMERIF_CLOCK_ENABLE;
|
|
|
|
setup_vic();
|
|
|
|
dma_init();
|
|
}
|
|
|
|
/* this is called after kernel and threading are initialized */
|
|
void kernel_device_init(void)
|
|
{
|
|
mutex_init(&cpufreq_mtx);
|
|
|
|
ascodec_init();
|
|
|
|
/* Initialize power management settings */
|
|
#ifdef HAVE_AS3543
|
|
/* PLL: disable audio PLL, we use MCLK already */
|
|
ascodec_write_pmu(0x1A, 7, 0x02);
|
|
/* DCDC_Cntr: set switching speed of CVDD1/2 power supplies to 1 MHz,
|
|
immediate change */
|
|
ascodec_write_pmu(0x17, 7, 0x30);
|
|
/* Out_Cntr2: set drive strength of 24 MHz and 32 kHz clocks to 1 mA */
|
|
ascodec_write_pmu(0x1A, 2, 0xCC);
|
|
/* CHGVBUS2: set VBUS threshold to 3.18V and EOC threshold to 30% CC */
|
|
ascodec_write_pmu(0x19, 2, 0x41);
|
|
/* PVDD1: set PVDD1 power supply to 2.5 V */
|
|
ascodec_write_pmu(0x18, 1, 0x35);
|
|
/* AVDD17: set AVDD17 power supply to 2.5V */
|
|
ascodec_write_pmu(0x18, 7, 0x31);
|
|
/* CVDD2: set CVDD2 power supply (digital for DAC/SD/etc) to 2.70V */
|
|
ascodec_write_pmu(0x17, 2, 0x80 | 114);
|
|
#else /* HAVE_AS3543 */
|
|
ascodec_write(AS3514_CVDD_DCDC3, AS314_CP_DCDC3_SETTING);
|
|
#endif /* HAVE_AS3543 */
|
|
|
|
#ifndef BOOTLOADER
|
|
/* setup isr for microsd monitoring and for fuzev2 scrollwheel irq */
|
|
#if defined(HAVE_HOTSWAP) || \
|
|
(defined(SANSA_FUZEV2) && !INCREASED_SCROLLWHEEL_POLLING)
|
|
VIC_INT_ENABLE = (INTERRUPT_GPIOA);
|
|
/* pin selection for irq happens in the drivers */
|
|
#endif
|
|
|
|
#if CONFIG_TUNER
|
|
fmradio_i2c_init();
|
|
#endif
|
|
#endif /* !BOOTLOADER */
|
|
check_model_variant();
|
|
}
|
|
|
|
void system_reboot(void)
|
|
{
|
|
backlight_hw_off();
|
|
|
|
disable_irq();
|
|
|
|
/* use watchdog to reset */
|
|
CGU_PERI |= (CGU_WDOCNT_CLOCK_ENABLE | CGU_WDOIF_CLOCK_ENABLE);
|
|
WDT_LOAD = 1; /* set counter to 1 */
|
|
WDT_CONTROL = 3; /* enable watchdog counter & reset */
|
|
while(1);
|
|
}
|
|
|
|
void system_exception_wait(void)
|
|
{
|
|
/* make sure lcd+backlight are on */
|
|
_backlight_panic_on();
|
|
/* make sure screen content is up to date */
|
|
lcd_update();
|
|
/* wait until button release (if a button is pressed) */
|
|
while(button_read_device());
|
|
/* then wait until next button press */
|
|
while(!button_read_device());
|
|
}
|
|
|
|
int system_memory_guard(int newmode)
|
|
{
|
|
(void)newmode;
|
|
return 0;
|
|
}
|
|
|
|
/* usecs may be at most 2^32/248 (17 seconds) for 248MHz max cpu freq */
|
|
void udelay(unsigned usecs)
|
|
{
|
|
unsigned cycles_per_usec;
|
|
unsigned delay;
|
|
|
|
if (cpu_frequency == CPUFREQ_MAX) {
|
|
cycles_per_usec = (CPUFREQ_MAX + 999999) / 1000000;
|
|
} else {
|
|
cycles_per_usec = (CPUFREQ_NORMAL + 999999) / 1000000;
|
|
}
|
|
|
|
delay = (usecs * cycles_per_usec + 3) / 4;
|
|
|
|
asm volatile(
|
|
"1: subs %0, %0, #1 \n" /* 1 cycle */
|
|
" bne 1b \n" /* 3 cycles */
|
|
: : "r"(delay)
|
|
);
|
|
}
|
|
|
|
#ifndef BOOTLOADER
|
|
#ifdef HAVE_ADJUSTABLE_CPU_FREQ
|
|
bool set_cpu_frequency__lock(void)
|
|
{
|
|
if (get_processor_mode() != CPU_MODE_THREAD_CONTEXT)
|
|
return false;
|
|
|
|
mutex_lock(&cpufreq_mtx);
|
|
return true;
|
|
}
|
|
|
|
void set_cpu_frequency__unlock(void)
|
|
{
|
|
mutex_unlock(&cpufreq_mtx);
|
|
}
|
|
|
|
#if CONFIG_CPU == AS3525
|
|
void set_cpu_frequency(long frequency)
|
|
{
|
|
if (frequency == cpu_frequency)
|
|
{
|
|
/* avoid redundant activity */
|
|
}
|
|
else if(frequency == CPUFREQ_MAX)
|
|
{
|
|
#ifdef HAVE_ADJUSTABLE_CPU_VOLTAGE
|
|
/* Increasing frequency so boost voltage before change */
|
|
ascodec_write(AS3514_CVDD_DCDC3, (AS314_CP_DCDC3_SETTING | CVDD_1_20));
|
|
|
|
/* Some players run a bit low so use 1.175 volts instead of 1.20 */
|
|
/* Wait for voltage to be at least 1.175v before making fclk > 200 MHz */
|
|
while(adc_read(ADC_CVDD) < 470); /* 470 * .0025 = 1.175V */
|
|
#endif /* HAVE_ADJUSTABLE_CPU_VOLTAGE */
|
|
|
|
CGU_PROC = ((AS3525_FCLK_POSTDIV << 4) |
|
|
(AS3525_FCLK_PREDIV << 2) |
|
|
AS3525_FCLK_SEL);
|
|
|
|
asm volatile(
|
|
"mrc p15, 0, r0, c1, c0 \n"
|
|
"orr r0, r0, #3<<30 \n" /* asynchronous bus clocking */
|
|
/* synchronous bus clocking had issues on some players */
|
|
"mcr p15, 0, r0, c1, c0 \n"
|
|
: : : "r0" );
|
|
|
|
cpu_frequency = CPUFREQ_MAX;
|
|
}
|
|
else
|
|
{
|
|
asm volatile(
|
|
"mrc p15, 0, r0, c1, c0 \n"
|
|
"bic r0, r0, #3<<30 \n" /* fastbus clocking */
|
|
"mcr p15, 0, r0, c1, c0 \n"
|
|
: : : "r0" );
|
|
|
|
/* FCLK is unused so put it to the lowest freq we can */
|
|
CGU_PROC = ((0xf << 4) | (0x3 << 2) | AS3525_CLK_MAIN);
|
|
|
|
#ifdef HAVE_ADJUSTABLE_CPU_VOLTAGE
|
|
/* Decreasing frequency so reduce voltage after change */
|
|
ascodec_write(AS3514_CVDD_DCDC3, (AS314_CP_DCDC3_SETTING | CVDD_1_10));
|
|
#endif /* HAVE_ADJUSTABLE_CPU_VOLTAGE */
|
|
|
|
cpu_frequency = CPUFREQ_NORMAL;
|
|
}
|
|
}
|
|
#else /* as3525v2 */
|
|
void set_cpu_frequency(long frequency)
|
|
{
|
|
if (frequency == cpu_frequency)
|
|
{
|
|
/* avoid redundant activity */
|
|
}
|
|
else if(frequency == CPUFREQ_MAX)
|
|
{
|
|
#ifdef HAVE_ADJUSTABLE_CPU_VOLTAGE
|
|
/* Set CVDD1 power supply */
|
|
ascodec_write_pmu(0x17, 1, 0x80 | 47);
|
|
/* dely for voltage rising */
|
|
udelay(50);
|
|
#endif
|
|
CGU_PROC = ((AS3525_FCLK_POSTDIV << 4) |
|
|
(AS3525_FCLK_PREDIV << 2) |
|
|
AS3525_FCLK_SEL);
|
|
|
|
cpu_frequency = CPUFREQ_MAX;
|
|
}
|
|
else
|
|
{
|
|
CGU_PROC = ((AS3525_FCLK_POSTDIV_UNBOOSTED << 4) |
|
|
(AS3525_FCLK_PREDIV << 2) |
|
|
AS3525_FCLK_SEL);
|
|
|
|
cpu_frequency = CPUFREQ_NORMAL;
|
|
|
|
/* Set CVDD1 power supply */
|
|
#ifdef HAVE_ADJUSTABLE_CPU_VOLTAGE
|
|
#if defined(SANSA_CLIPZIP)
|
|
ascodec_write_pmu(0x17, 1, 0x80 | 19);
|
|
#elif defined(SANSA_CLIPPLUS)
|
|
if (amsv2_variant)
|
|
ascodec_write_pmu(0x17, 1, 0x80 | 22);
|
|
else
|
|
ascodec_write_pmu(0x17, 1, 0x80 | 26);
|
|
#else
|
|
ascodec_write_pmu(0x17, 1, 0x80 | 22);
|
|
#endif
|
|
#endif
|
|
}
|
|
}
|
|
#endif
|
|
|
|
#endif /* HAVE_ADJUSTABLE_CPU_FREQ */
|
|
#endif /* !BOOTLOADER */
|