- set erase flag on sector
git-svn-id: svn://svn.berlios.de/openocd/trunk@598 b42882b7-edfa-0310-969c-e2dbd0fdcd60
This commit is contained in:
parent
ae75056742
commit
ce8ed0e6e0
|
@ -425,7 +425,7 @@ int stellaris_read_part_info(struct flash_bank_s *bank)
|
||||||
if((ver != 0) && (ver != 1))
|
if((ver != 0) && (ver != 1))
|
||||||
{
|
{
|
||||||
LOG_WARNING("Unknown did0 version, cannot identify target");
|
LOG_WARNING("Unknown did0 version, cannot identify target");
|
||||||
return ERROR_FLASH_OPERATION_FAILED;
|
return ERROR_FLASH_OPERATION_FAILED;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (did1 == 0)
|
if (did1 == 0)
|
||||||
|
@ -607,6 +607,8 @@ int stellaris_erase(struct flash_bank_s *bank, int first, int last)
|
||||||
target_write_u32(target, FLASH_CRIS, 0);
|
target_write_u32(target, FLASH_CRIS, 0);
|
||||||
return ERROR_FLASH_OPERATION_FAILED;
|
return ERROR_FLASH_OPERATION_FAILED;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
bank->sectors[banknr].is_erased = 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
return ERROR_OK;
|
return ERROR_OK;
|
||||||
|
@ -642,11 +644,11 @@ int stellaris_protect(struct flash_bank_s *bank, int set, int first, int last)
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Configure the flash controller timing */
|
/* Configure the flash controller timing */
|
||||||
stellaris_read_clock_info(bank);
|
stellaris_read_clock_info(bank);
|
||||||
stellaris_set_flash_mode(bank,0);
|
stellaris_set_flash_mode(bank,0);
|
||||||
|
|
||||||
fmppe = stellaris_info->lockbits;
|
fmppe = stellaris_info->lockbits;
|
||||||
for (lockregion=first;lockregion<=last;lockregion++)
|
for (lockregion=first;lockregion<=last;lockregion++)
|
||||||
{
|
{
|
||||||
if (set)
|
if (set)
|
||||||
fmppe &= ~(1<<lockregion);
|
fmppe &= ~(1<<lockregion);
|
||||||
|
|
Loading…
Reference in New Issue