diff options
Diffstat (limited to 'board/mx1fs2/flash.c')
| -rw-r--r-- | board/mx1fs2/flash.c | 24 | 
1 files changed, 12 insertions, 12 deletions
| diff --git a/board/mx1fs2/flash.c b/board/mx1fs2/flash.c index 8be0f4911..da4ebe6e7 100644 --- a/board/mx1fs2/flash.c +++ b/board/mx1fs2/flash.c @@ -28,7 +28,7 @@  #define FLASH_BANK_SIZE MX1FS2_FLASH_BANK_SIZE  #define MAIN_SECT_SIZE  MX1FS2_FLASH_SECT_SIZE -flash_info_t flash_info[CFG_MAX_FLASH_BANKS];	/* info for FLASH chips   */ +flash_info_t flash_info[CONFIG_SYS_MAX_FLASH_BANKS];	/* info for FLASH chips   */  /*   * NOTE - CONFIG_FLASH_16BIT means the CPU interface is 16-bit, it @@ -62,7 +62,7 @@ static void flash_reset(flash_info_t * info);  static int write_word_intel(flash_info_t * info, FPWV * dest, FPW data);  static int write_word_amd(flash_info_t * info, FPWV * dest, FPW data);  #define write_word(in, de, da)   write_word_amd(in, de, da) -#ifdef CFG_FLASH_PROTECTION +#ifdef CONFIG_SYS_FLASH_PROTECTION  static void flash_sync_real_protect(flash_info_t * info);  #endif @@ -77,14 +77,14 @@ flash_init(void)  	int i, j;  	ulong size = 0; -	for (i = 0; i < CFG_MAX_FLASH_BANKS; i++) { +	for (i = 0; i < CONFIG_SYS_MAX_FLASH_BANKS; i++) {  		ulong flashbase = 0;  		flash_info[i].flash_id =  		    (FLASH_MAN_AMD & FLASH_VENDMASK) |  		    (FLASH_AM640U & FLASH_TYPEMASK);  		flash_info[i].size = FLASH_BANK_SIZE; -		flash_info[i].sector_count = CFG_MAX_FLASH_SECT; -		memset(flash_info[i].protect, 0, CFG_MAX_FLASH_SECT); +		flash_info[i].sector_count = CONFIG_SYS_MAX_FLASH_SECT; +		memset(flash_info[i].protect, 0, CONFIG_SYS_MAX_FLASH_SECT);  		switch (i) {  		case 0:  			flashbase = MX1FS2_FLASH_BASE; @@ -101,8 +101,8 @@ flash_init(void)  	/* Protect monitor and environment sectors */  	flash_protect(FLAG_PROTECT_SET, -		      CFG_FLASH_BASE, -		      CFG_FLASH_BASE + _bss_start - _armboot_start, +		      CONFIG_SYS_FLASH_BASE, +		      CONFIG_SYS_FLASH_BASE + _bss_start - _armboot_start,  		      &flash_info[0]);  	flash_protect(FLAG_PROTECT_SET, @@ -389,7 +389,7 @@ flash_get_size(FPWV * addr, flash_info_t * info)  }  #endif /* 0 */ -#ifdef CFG_FLASH_PROTECTION +#ifdef CONFIG_SYS_FLASH_PROTECTION  /*-----------------------------------------------------------------------   */ @@ -528,7 +528,7 @@ flash_erase(flash_info_t * info, int s_first, int s_last)  		udelay(1000);  		while ((*addr & (FPW) 0x00800080) != (FPW) 0x00800080) { -			if ((now = get_timer(0)) - start > CFG_FLASH_ERASE_TOUT) { +			if ((now = get_timer(0)) - start > CONFIG_SYS_FLASH_ERASE_TOUT) {  				printf("Timeout\n");  				if (intel) { @@ -720,7 +720,7 @@ write_word_amd(flash_info_t * info, FPWV * dest, FPW data)  	/* data polling for D7 */  	while (res == 0  	       && (*dest & (FPW) 0x00800080) != (data & (FPW) 0x00800080)) { -		if (get_timer(0) - start > CFG_FLASH_WRITE_TOUT) { +		if (get_timer(0) - start > CONFIG_SYS_FLASH_WRITE_TOUT) {  			*dest = (FPW) 0x00F000F0;	/* reset bank */  			printf("SHA timeout\n");  			res = 1; @@ -768,7 +768,7 @@ write_word_intel(flash_info_t * info, FPWV * dest, FPW data)  	start = get_timer(0);  	while (res == 0 && (*dest & (FPW) 0x00800080) != (FPW) 0x00800080) { -		if (get_timer(start) > CFG_FLASH_WRITE_TOUT) { +		if (get_timer(start) > CONFIG_SYS_FLASH_WRITE_TOUT) {  			*dest = (FPW) 0x00B000B0;	/* Suspend program      */  			res = 1;  		} @@ -783,7 +783,7 @@ write_word_intel(flash_info_t * info, FPWV * dest, FPW data)  	return (res);  } -#ifdef CFG_FLASH_PROTECTION +#ifdef CONFIG_SYS_FLASH_PROTECTION  /*-----------------------------------------------------------------------   */  int |