diff options
Diffstat (limited to 'include')
| -rw-r--r-- | include/common.h | 3 | ||||
| -rw-r--r-- | include/configs/Sandpoint8240.h | 2 | ||||
| -rw-r--r-- | include/configs/incaip.h | 9 | 
3 files changed, 6 insertions, 8 deletions
| diff --git a/include/common.h b/include/common.h index 39c232a0f..ece5d64cf 100644 --- a/include/common.h +++ b/include/common.h @@ -362,6 +362,9 @@ ulong	get_HCLK (void);  ulong	get_PCLK (void);  ulong	get_UCLK (void);  #endif +#if defined CONFIG_INCA_IP +uint    incaip_get_cpuclk (void); +#endif  ulong	get_bus_freq  (ulong);  #if defined(CONFIG_MPC85xx) diff --git a/include/configs/Sandpoint8240.h b/include/configs/Sandpoint8240.h index 5bf184ea9..1c37f6396 100644 --- a/include/configs/Sandpoint8240.h +++ b/include/configs/Sandpoint8240.h @@ -269,7 +269,7 @@   */  #define CONFIG_SYS_CLK_FREQ  33000000	/* external frequency to pll */ -#define CONFIG_PLL_PCI_TO_MEM_MULTIPLIER  2 +#define CONFIG_PLL_PCI_TO_MEM_MULTIPLIER  1  #define CFG_ROMNAL		7	/*rom/flash next access time		*/  #define CFG_ROMFAL		11	/*rom/flash access time			*/ diff --git a/include/configs/incaip.h b/include/configs/incaip.h index 15d5c2ee2..e6fa19342 100644 --- a/include/configs/incaip.h +++ b/include/configs/incaip.h @@ -36,12 +36,7 @@  #define CPU_CLOCK_RATE	133000000	/* 133 MHz clock for the MIPS core */  #endif -#if CPU_CLOCK_RATE == 100000000 -#define INFINEON_EBU_BOOTCFG	0x20C4	/* CMULT = 4 for 100 MHz */ -#else -#define INFINEON_EBU_BOOTCFG	0x40C4	/* CMULT = 8 for 150 MHz */ -#endif - +#define INFINEON_EBU_BOOTCFG	0x40C4	/* CMULT = 8 */  #define CONFIG_BOOTDELAY	5	/* autoboot after 5 seconds	*/ @@ -106,7 +101,7 @@  #define CFG_BOOTPARAMS_LEN	128*1024 -#define CFG_HZ			(CPU_CLOCK_RATE/2) +#define CFG_HZ			(incaip_get_cpuclk() / 2)  #define CFG_SDRAM_BASE		0x80000000 |