From: Spencer Oliver Date: Fri, 16 Jul 2010 21:52:49 +0000 (+0100) Subject: flash: use bkpt for str9 flash algo algorithm X-Git-Tag: v0.5.0-rc1~518 X-Git-Url: https://review.openocd.org/gitweb?p=openocd.git;a=commitdiff_plain;h=b05ae413314f48832dd12c994b85c9aad8632967 flash: use bkpt for str9 flash algo algorithm STR9 is ARMv5 arch so use bkpt instruction rather than waste a breakpoint. Signed-off-by: Spencer Oliver --- diff --git a/src/flash/nor/str9x.c b/src/flash/nor/str9x.c index 103af16de5..528e52e269 100644 --- a/src/flash/nor/str9x.c +++ b/src/flash/nor/str9x.c @@ -369,7 +369,7 @@ static int str9x_write_block(struct flash_bank *bank, 0xe2522001, /* subs r2, r2, #1 */ 0x1affffed, /* bne write */ /* exit: */ - 0xeafffffe, /* b exit */ + 0xe1200070, /* bkpt #0 */ }; /* flash write code */ @@ -421,8 +421,7 @@ static int str9x_write_block(struct flash_bank *bank, if ((retval = target_run_algorithm(target, 0, NULL, 4, reg_params, str9x_info->write_algorithm->address, - str9x_info->write_algorithm->address + (sizeof(str9x_flash_write_code) - 4), - 10000, &armv4_5_info)) != ERROR_OK) + 0, 10000, &armv4_5_info)) != ERROR_OK) { LOG_ERROR("error executing str9x flash write algorithm"); retval = ERROR_FLASH_OPERATION_FAILED;