2010-04-26 21:40:16 +00:00
|
|
|
/***************************************************************************
|
|
|
|
* __________ __ ___.
|
|
|
|
* Open \______ \ ____ ____ | | _\_ |__ _______ ___
|
|
|
|
* Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
|
|
|
|
* Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
|
|
|
|
* Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
|
|
|
|
* \/ \/ \/ \/ \/
|
|
|
|
* $Id:$
|
|
|
|
*
|
2010-05-20 08:24:04 +00:00
|
|
|
* Copyright (C) 2010 by Marcin Bukat
|
|
|
|
* Copyright (C) 2006 by Linus Nielsen Feltzing
|
2010-04-26 21:40:16 +00:00
|
|
|
*
|
|
|
|
* 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 "cpu.h"
|
|
|
|
#include "kernel.h"
|
|
|
|
#include "system.h"
|
|
|
|
#include "power.h"
|
|
|
|
#include "timer.h"
|
|
|
|
|
|
|
|
/* Settings for all possible clock frequencies (with properly working timers)
|
2010-05-20 08:24:04 +00:00
|
|
|
* NOTE: Some 5249 chips don't like having PLLDIV set to 0. We must avoid that!
|
2010-04-26 21:40:16 +00:00
|
|
|
*
|
|
|
|
* xxx_REFRESH_TIMER below
|
|
|
|
* system.h, CPUFREQ_xxx_MULT |
|
|
|
|
* | |
|
|
|
|
* V V
|
|
|
|
* PLLCR & Rftim. IDECONFIG1/IDECONFIG2
|
|
|
|
* CPUCLK/Hz MULT ~0x70c00000 16MB CSCR0 CSCR1 CS2Pre CS2Post CS2Wait
|
|
|
|
* -------------------------------------------------------------------------
|
|
|
|
* 11289600 1 0x00000200 4 0x0180 0x0180 1 1 0
|
|
|
|
* 22579200 2 0x05028049 10 0x0180 0x0180 1 1 0
|
|
|
|
* 33868800 3 0x03024049 15 0x0180 0x0180 1 1 0
|
|
|
|
* 45158400 4 0x05028045 21 0x0180 0x0180 1 1 0
|
|
|
|
* 56448000 5 0x02028049 26 0x0580 0x0580 2 1 0
|
|
|
|
* 67737600 6 0x03024045 32 0x0580 0x0980 2 1 0
|
|
|
|
* 79027200 7 0x0302a045 37 0x0580 0x0d80 2 1 0
|
|
|
|
* 90316800 8 0x03030045 43 0x0980 0x0d80 2 1 0
|
|
|
|
* 101606400 9 0x01024049 48 0x0980 0x1180 2 1 0
|
|
|
|
* 112896000 10 0x01028049 54 0x0980 0x1580 3 1 0
|
|
|
|
* 124185600 11 0x0102c049 59 0x0980 0x1180 3 1 1
|
|
|
|
*/
|
|
|
|
|
|
|
|
#define MAX_REFRESH_TIMER 59
|
|
|
|
#define NORMAL_REFRESH_TIMER 21
|
|
|
|
#define DEFAULT_REFRESH_TIMER 4
|
|
|
|
|
|
|
|
#ifdef HAVE_ADJUSTABLE_CPU_FREQ
|
|
|
|
void set_cpu_frequency (long) __attribute__ ((section (".icode")));
|
|
|
|
void set_cpu_frequency(long frequency)
|
|
|
|
#else
|
|
|
|
void cf_set_cpu_frequency (long) __attribute__ ((section (".icode")));
|
|
|
|
void cf_set_cpu_frequency(long frequency)
|
|
|
|
#endif
|
|
|
|
{
|
|
|
|
switch(frequency)
|
|
|
|
{
|
|
|
|
case CPUFREQ_MAX:
|
|
|
|
DCR = (0x8200 | DEFAULT_REFRESH_TIMER);
|
|
|
|
/* Refresh timer for bypass frequency */
|
|
|
|
PLLCR &= ~1; /* Bypass mode */
|
|
|
|
timers_adjust_prescale(CPUFREQ_DEFAULT_MULT, false);
|
2010-05-20 08:24:04 +00:00
|
|
|
PLLCR = 0x018ae025 | (PLLCR & 0x70400000);
|
2010-04-26 21:40:16 +00:00
|
|
|
CSCR0 = 0x00001180; /* Flash: 4 wait states */
|
2010-05-17 12:36:33 +00:00
|
|
|
CSCR3 = 0x00000580; /* LCD: 4 wait states */
|
2010-04-26 21:40:16 +00:00
|
|
|
while(!(PLLCR & 0x80000000)) {}; /* Wait until the PLL has locked.
|
|
|
|
This may take up to 10ms! */
|
|
|
|
timers_adjust_prescale(CPUFREQ_MAX_MULT, true);
|
|
|
|
DCR = (0x8200 | MAX_REFRESH_TIMER); /* Refresh timer */
|
|
|
|
cpu_frequency = CPUFREQ_MAX;
|
|
|
|
IDECONFIG1 = (1<<28)|(1<<20)|(1<<18)|(1<<13)|(3<<10);
|
|
|
|
/* BUFEN2 enable on /CS2 | CS2Post 1 clock| CS2Pre 3 clocks*/
|
|
|
|
IDECONFIG2 = (1<<18)|(1<<16)|(1<<8)|(1<<0); /* TA /CS2 enable + CS2wait */
|
2010-05-19 09:29:20 +00:00
|
|
|
|
|
|
|
and_l(~(0x07<<16), &ADCONFIG);
|
|
|
|
or_l(((1<<7)|(1<<2)|(1<<0))<<16, &ADCONFIG); /* adclk = busclk/32 */
|
2010-04-26 21:40:16 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case CPUFREQ_NORMAL:
|
|
|
|
DCR = (DCR & ~0x01ff) | DEFAULT_REFRESH_TIMER;
|
|
|
|
/* Refresh timer for bypass frequency */
|
|
|
|
PLLCR &= ~1; /* Bypass mode */
|
|
|
|
timers_adjust_prescale(CPUFREQ_DEFAULT_MULT, false);
|
2010-05-20 08:24:04 +00:00
|
|
|
PLLCR = 0x0589e021 | (PLLCR & 0x70400000);
|
2010-04-26 21:40:16 +00:00
|
|
|
CSCR0 = 0x00000580; /* Flash: 1 wait state */
|
2010-05-10 12:36:27 +00:00
|
|
|
CSCR3 = 0x00000180; /* LCD: 0 wait states */
|
2010-04-26 21:40:16 +00:00
|
|
|
while(!(PLLCR & 0x80000000)) {}; /* Wait until the PLL has locked.
|
|
|
|
This may take up to 10ms! */
|
|
|
|
timers_adjust_prescale(CPUFREQ_NORMAL_MULT, true);
|
|
|
|
DCR = (0x8000 | NORMAL_REFRESH_TIMER); /* Refresh timer */
|
|
|
|
cpu_frequency = CPUFREQ_NORMAL;
|
|
|
|
IDECONFIG1 = (1<<28)|(1<<20)|(1<<18)|(1<<13)|(1<<10);
|
|
|
|
IDECONFIG2 = (1<<18)|(1<<16);
|
2010-05-19 09:29:20 +00:00
|
|
|
|
|
|
|
and_l(~(0x07<<16), &ADCONFIG);
|
|
|
|
or_l(((1<<7)|(1<<1)|(1<<0))<<16, &ADCONFIG); /* adclk = busclk/8 */
|
2010-04-26 21:40:16 +00:00
|
|
|
break;
|
2010-05-18 12:29:21 +00:00
|
|
|
|
2010-04-26 21:40:16 +00:00
|
|
|
default:
|
|
|
|
DCR = (DCR & ~0x01ff) | DEFAULT_REFRESH_TIMER;
|
|
|
|
/* Refresh timer for bypass frequency */
|
|
|
|
PLLCR &= ~1; /* Bypass mode */
|
|
|
|
timers_adjust_prescale(CPUFREQ_DEFAULT_MULT, true);
|
|
|
|
/* Power down PLL, but keep CLSEL and CRSEL */
|
2010-05-20 08:24:04 +00:00
|
|
|
PLLCR = 0x00800200 | (PLLCR & 0x70400000);
|
2010-04-26 21:40:16 +00:00
|
|
|
CSCR0 = 0x00000180; /* Flash: 0 wait states */
|
2010-05-10 12:36:27 +00:00
|
|
|
CSCR3 = 0x00000180; /* LCD: 0 wait states */
|
2010-04-26 21:40:16 +00:00
|
|
|
DCR = (0x8000 | DEFAULT_REFRESH_TIMER); /* Refresh timer */
|
|
|
|
cpu_frequency = CPUFREQ_DEFAULT;
|
|
|
|
IDECONFIG1 = (1<<28)|(1<<20)|(1<<18)|(1<<13)|(1<<10);
|
|
|
|
IDECONFIG2 = (1<<18)|(1<<16);
|
2010-05-19 09:29:20 +00:00
|
|
|
|
|
|
|
and_l(~(0x07<<16), &ADCONFIG);
|
|
|
|
or_l(((1<<7)|(1<<0))<<16, &ADCONFIG); /* adclk = busclk/2 */
|
2010-04-26 21:40:16 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|