diff options
| author | Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> | 2008-10-16 15:01:15 +0200 | 
|---|---|---|
| committer | Wolfgang Denk <wd@denx.de> | 2008-10-18 21:54:03 +0200 | 
| commit | 6d0f6bcf337c5261c08fabe12982178c2c489d76 (patch) | |
| tree | ae13958ffa9c6b58c2ea97aac07a4ad2f04a350f /cpu/mpc8xx/cpu.c | |
| parent | 71edc271816ec82cf0550dd6980be2da3cc2ad9e (diff) | |
| download | olio-uboot-2014.01-6d0f6bcf337c5261c08fabe12982178c2c489d76.tar.xz olio-uboot-2014.01-6d0f6bcf337c5261c08fabe12982178c2c489d76.zip | |
rename CFG_ macros to CONFIG_SYS
Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
Diffstat (limited to 'cpu/mpc8xx/cpu.c')
| -rw-r--r-- | cpu/mpc8xx/cpu.c | 32 | 
1 files changed, 16 insertions, 16 deletions
| diff --git a/cpu/mpc8xx/cpu.c b/cpu/mpc8xx/cpu.c index ec6a3fd5d..420eaedf5 100644 --- a/cpu/mpc8xx/cpu.c +++ b/cpu/mpc8xx/cpu.c @@ -137,13 +137,13 @@ static int check_CPU (long clock, uint pvr, uint immr)  		printf ("unknown M%s (0x%08x)", id_str, k); -#if defined(CFG_8xx_CPUCLK_MIN) && defined(CFG_8xx_CPUCLK_MAX) +#if defined(CONFIG_SYS_8xx_CPUCLK_MIN) && defined(CONFIG_SYS_8xx_CPUCLK_MAX)  	printf (" at %s MHz [%d.%d...%d.%d MHz]\n       ",  		strmhz (buf, clock), -		CFG_8xx_CPUCLK_MIN / 1000000, -		((CFG_8xx_CPUCLK_MIN % 1000000) + 50000) / 100000, -		CFG_8xx_CPUCLK_MAX / 1000000, -		((CFG_8xx_CPUCLK_MAX % 1000000) + 50000) / 100000 +		CONFIG_SYS_8xx_CPUCLK_MIN / 1000000, +		((CONFIG_SYS_8xx_CPUCLK_MIN % 1000000) + 50000) / 100000, +		CONFIG_SYS_8xx_CPUCLK_MAX / 1000000, +		((CONFIG_SYS_8xx_CPUCLK_MAX % 1000000) + 50000) / 100000  	);  #else  	printf (" at %s MHz: ", strmhz (buf, clock)); @@ -375,7 +375,7 @@ int checkcpu (void)  int checkicache (void)  { -	volatile immap_t *immap = (immap_t *) CFG_IMMR; +	volatile immap_t *immap = (immap_t *) CONFIG_SYS_IMMR;  	volatile memctl8xx_t *memctl = &immap->im_memctl;  	u32 cacheon = rd_ic_cst () & IDC_ENABLED; @@ -422,7 +422,7 @@ int checkicache (void)  int checkdcache (void)  { -	volatile immap_t *immap = (immap_t *) CFG_IMMR; +	volatile immap_t *immap = (immap_t *) CONFIG_SYS_IMMR;  	volatile memctl8xx_t *memctl = &immap->im_memctl;  	u32 cacheon = rd_dc_cst () & IDC_ENABLED; @@ -462,7 +462,7 @@ void upmconfig (uint upm, uint * table, uint size)  {  	uint i;  	uint addr = 0; -	volatile immap_t *immap = (immap_t *) CFG_IMMR; +	volatile immap_t *immap = (immap_t *) CONFIG_SYS_IMMR;  	volatile memctl8xx_t *memctl = &immap->im_memctl;  	for (i = 0; i < size; i++) { @@ -480,7 +480,7 @@ int do_reset (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])  {  	ulong msr, addr; -	volatile immap_t *immap = (immap_t *) CFG_IMMR; +	volatile immap_t *immap = (immap_t *) CONFIG_SYS_IMMR;  	immap->im_clkrst.car_plprcr |= PLPRCR_CSR;	/* Checkstop Reset enable */ @@ -495,16 +495,16 @@ int do_reset (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])  	 * Trying to execute the next instruction at a non-existing address  	 * should cause a machine check, resulting in reset  	 */ -#ifdef CFG_RESET_ADDRESS -	addr = CFG_RESET_ADDRESS; +#ifdef CONFIG_SYS_RESET_ADDRESS +	addr = CONFIG_SYS_RESET_ADDRESS;  #else  	/* -	 * note: when CFG_MONITOR_BASE points to a RAM address, CFG_MONITOR_BASE +	 * note: when CONFIG_SYS_MONITOR_BASE points to a RAM address, CONFIG_SYS_MONITOR_BASE  	 * - sizeof (ulong) is usually a valid address. Better pick an address -	 * known to be invalid on your system and assign it to CFG_RESET_ADDRESS. +	 * known to be invalid on your system and assign it to CONFIG_SYS_RESET_ADDRESS.  	 * "(ulong)-1" used to be a good choice for many systems...  	 */ -	addr = CFG_MONITOR_BASE - sizeof (ulong); +	addr = CONFIG_SYS_MONITOR_BASE - sizeof (ulong);  #endif  	((void (*)(void)) addr) ();  	return 1; @@ -525,7 +525,7 @@ int do_reset (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])  	disable_interrupts ();  	/* make sure the watchdog is running */ -	reset_8xx_watchdog ((immap_t *) CFG_IMMR); +	reset_8xx_watchdog ((immap_t *) CONFIG_SYS_IMMR);  	/* wait for watchdog reset */  	while (1) {}; @@ -591,7 +591,7 @@ void watchdog_reset (void)  {  	int re_enable = disable_interrupts (); -	reset_8xx_watchdog ((immap_t *) CFG_IMMR); +	reset_8xx_watchdog ((immap_t *) CONFIG_SYS_IMMR);  	if (re_enable)  		enable_interrupts ();  } |