diff options
Diffstat (limited to 'cpu/ppc4xx/speed.c')
| -rw-r--r-- | cpu/ppc4xx/speed.c | 125 | 
1 files changed, 123 insertions, 2 deletions
diff --git a/cpu/ppc4xx/speed.c b/cpu/ppc4xx/speed.c index 90066142d..fa799529d 100644 --- a/cpu/ppc4xx/speed.c +++ b/cpu/ppc4xx/speed.c @@ -1,5 +1,5 @@  /* - * (C) Copyright 2000-2007 + * (C) Copyright 2000-2008   * Wolfgang Denk, DENX Software Engineering, wd@denx.de.   *   * See file CREDITS for list of people who contributed to this @@ -35,6 +35,8 @@ DECLARE_GLOBAL_DATA_PTR;  #define DEBUGF(fmt,args...)  #endif +#define ARRAY_SIZE(x) (sizeof(x) / sizeof((x)[0])) +  #if defined(CONFIG_405GP) || defined(CONFIG_405CR)  void get_sys_info (PPC4xx_SYS_INFO * sysInfo) @@ -201,7 +203,126 @@ ulong get_PCI_freq (void)  #elif defined(CONFIG_440) -#if defined(CONFIG_440EP) || defined(CONFIG_440GR) || \ +#if defined(CONFIG_460EX) || defined(CONFIG_460GT) +static u8 pll_fwdv_multi_bits[] = { +	/* values for:  1 - 16 */ +	0x00, 0x01, 0x0f, 0x04, 0x09, 0x0a, 0x0d, 0x0e, 0x03, 0x0c, +	0x05, 0x08, 0x07, 0x02, 0x0b, 0x06 +}; + +u32 get_cpr0_fwdv(unsigned long cpr_reg_fwdv) +{ +	u32 index; + +	for (index = 0; index < ARRAY_SIZE(pll_fwdv_multi_bits); index++) +		if (cpr_reg_fwdv == (u32)pll_fwdv_multi_bits[index]) +			return index + 1; + +	return 0; +} + +static u8 pll_fbdv_multi_bits[] = { +	/* values for:  1 - 100 */ +	0x00, 0xff, 0x7e, 0xfd, 0x7a, 0xf5, 0x6a, 0xd5, 0x2a, 0xd4, +	0x29, 0xd3, 0x26, 0xcc, 0x19, 0xb3, 0x67, 0xce, 0x1d, 0xbb, +	0x77, 0xee, 0x5d, 0xba, 0x74, 0xe9, 0x52, 0xa5, 0x4b, 0x96, +	0x2c, 0xd8, 0x31, 0xe3, 0x46, 0x8d, 0x1b, 0xb7, 0x6f, 0xde, +	0x3d, 0xfb, 0x76, 0xed, 0x5a, 0xb5, 0x6b, 0xd6, 0x2d, 0xdb, +	0x36, 0xec, 0x59, 0xb2, 0x64, 0xc9, 0x12, 0xa4, 0x48, 0x91, +	0x23, 0xc7, 0x0e, 0x9c, 0x38, 0xf0, 0x61, 0xc2, 0x05, 0x8b, +	0x17, 0xaf, 0x5f, 0xbe, 0x7c, 0xf9, 0x72, 0xe5, 0x4a, 0x95, +	0x2b, 0xd7, 0x2e, 0xdc, 0x39, 0xf3, 0x66, 0xcd, 0x1a, 0xb4, +	0x68, 0xd1, 0x22, 0xc4, 0x09, 0x93, 0x27, 0xcf, 0x1e, 0xbc, +	/* values for:  101 - 200 */ +	0x78, 0xf1, 0x62, 0xc5, 0x0a, 0x94, 0x28, 0xd0, 0x21, 0xc3, +	0x06, 0x8c, 0x18, 0xb0, 0x60, 0xc1, 0x02, 0x84, 0x08, 0x90, +	0x20, 0xc0, 0x01, 0x83, 0x77, 0xff, 0x1f, 0xbf, 0x7f, 0xfe, +	0x7d, 0xfa, 0x75, 0xea, 0x55, 0xaa, 0x54, 0xa9, 0x53, 0xa6, +	0x4c, 0x99, 0x33, 0xe7, 0x4e, 0x9d, 0x3b, 0xf7, 0x6e, 0xdd, +	0x3a, 0xf4, 0x69, 0xd2, 0x25, 0xcb, 0x16, 0xac, 0x58, 0xb1, +	0x63, 0xc6, 0x0d, 0x9b, 0x37, 0xef, 0x5e, 0xbd, 0x7b, 0xf6, +	0x6d, 0xda, 0x35, 0xeb, 0x56, 0xad, 0x5b, 0xb6, 0x6c, 0xd9, +	0x32, 0xe4, 0x49, 0x92, 0x24, 0xc8, 0x11, 0xa3, 0x47, 0x8e, +	0x1c, 0xb8, 0x70, 0xe1, 0x42, 0x85, 0x0b, 0x97, 0x2f, 0xdf, +	/* values for:  201 - 255 */ +	0x3e, 0xfc, 0x79, 0xf2, 0x65, 0xca, 0x15, 0xab, 0x57, 0xae, +	0x5c, 0xb9, 0x73, 0xe6, 0x4d, 0x9a, 0x34, 0xe8, 0x51, 0xa2, +	0x44, 0x89, 0x13, 0xa7, 0x4f, 0x9e, 0x3c, 0xf8, 0x71, 0xe2, +	0x45, 0x8a, 0x14, 0xa8, 0x50, 0xa1, 0x43, 0x86, 0x0c, 0x98, +	0x30, 0xe0, 0x41, 0x82, 0x04, 0x88, 0x10, 0xa0, 0x40, 0x81, +	0x03, 0x87, 0x0f, 0x9f, 0x3f  /* END */ +}; + +u32 get_cpr0_fbdv(unsigned long cpr_reg_fbdv) +{ +	u32 index; + +	for (index = 0; index < ARRAY_SIZE(pll_fbdv_multi_bits); index++) +		if (cpr_reg_fbdv == (u32)pll_fbdv_multi_bits[index]) +			return index + 1; + +	return 0; +} + +/* + * AMCC_TODO: verify this routine against latest EAS, cause stuff changed + *            with latest EAS + */ +void get_sys_info (sys_info_t * sysInfo) +{ +	unsigned long strp0; +	unsigned long strp1; +	unsigned long temp; +	unsigned long m; +	unsigned long plbedv0; + +	/* Extract configured divisors */ +	mfsdr(sdr_sdstp0, strp0); +	mfsdr(sdr_sdstp1, strp1); + +	temp = ((strp0 & PLLSYS0_FWD_DIV_A_MASK) >> 4); +	sysInfo->pllFwdDivA = get_cpr0_fwdv(temp); + +	temp = (strp0 & PLLSYS0_FWD_DIV_B_MASK); +	sysInfo->pllFwdDivB = get_cpr0_fwdv(temp); + +	temp = (strp0 & PLLSYS0_FB_DIV_MASK) >> 8; +	sysInfo->pllFbkDiv = get_cpr0_fbdv(temp); + +	temp = (strp1 & PLLSYS0_OPB_DIV_MASK) >> 26; +	sysInfo->pllOpbDiv = temp ? temp : 4; + +	/* AMCC_TODO: verify the SDR0_SDSTP1.PERDV0 value sysInfo->pllExtBusDiv */ +	temp = (strp1 & PLLSYS0_PERCLK_DIV_MASK) >> 24; +	sysInfo->pllExtBusDiv = temp ? temp : 4; + +	temp = (strp1 & PLLSYS0_PLBEDV0_DIV_MASK) >> 29; +	plbedv0 = temp ? temp: 8; + +	/* Calculate 'M' based on feedback source */ +	temp = (strp0 & PLLSYS0_SEL_MASK) >> 27; +	if (temp == 0) { +		/* PLL internal feedback */ +		m = sysInfo->pllFbkDiv; +	} else { +		/* PLL PerClk feedback */ +		m = sysInfo->pllFwdDivA * plbedv0 * sysInfo->pllOpbDiv * +			sysInfo->pllExtBusDiv; +	} + +	/* Now calculate the individual clocks */ +	sysInfo->freqVCOMhz = (m * CONFIG_SYS_CLK_FREQ) + (m >> 1); +	sysInfo->freqProcessor = sysInfo->freqVCOMhz/sysInfo->pllFwdDivA; +	sysInfo->freqPLB = sysInfo->freqVCOMhz / sysInfo->pllFwdDivA / plbedv0; +	sysInfo->freqOPB = sysInfo->freqPLB / sysInfo->pllOpbDiv; +	sysInfo->freqEBC = sysInfo->freqOPB / sysInfo->pllExtBusDiv; +	sysInfo->freqDDR = sysInfo->freqPLB; +	sysInfo->freqUART = sysInfo->freqPLB; + +	return; +} + +#elif defined(CONFIG_440EP) || defined(CONFIG_440GR) || \      defined(CONFIG_440EPX) || defined(CONFIG_440GRX)  void get_sys_info (sys_info_t *sysInfo)  {  |