From b05ae413314f48832dd12c994b85c9aad8632967 Mon Sep 17 00:00:00 2001 From: Spencer Oliver Date: Fri, 16 Jul 2010 22:52:49 +0100 Subject: [PATCH] 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 --- src/flash/nor/str9x.c | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) 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; -- 2.30.2