summaryrefslogtreecommitdiff
path: root/src/flash/nor/cfi.c
diff options
context:
space:
mode:
authorØyvind Harboe <oyvind.harboe@zylin.com>2010-05-04 07:25:30 +0200
committerØyvind Harboe <oyvind.harboe@zylin.com>2010-05-04 07:40:46 +0200
commitfe60480b7a8f5c94147e3185bae235241c33c9ce (patch)
tree182abf5900af1716175dc6a52c99ea35e025f165 /src/flash/nor/cfi.c
parent14f4606dcb0533ab64562406edd157008108e0db (diff)
downloadopenocd_libswd-fe60480b7a8f5c94147e3185bae235241c33c9ce.tar.gz
openocd_libswd-fe60480b7a8f5c94147e3185bae235241c33c9ce.tar.bz2
openocd_libswd-fe60480b7a8f5c94147e3185bae235241c33c9ce.tar.xz
openocd_libswd-fe60480b7a8f5c94147e3185bae235241c33c9ce.zip
cfi: made som info output debug output
E.g. how much target memory that is used during flashing is debug info. Signed-off-by: Øyvind Harboe <oyvind.harboe@zylin.com>
Diffstat (limited to 'src/flash/nor/cfi.c')
-rw-r--r--src/flash/nor/cfi.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/flash/nor/cfi.c b/src/flash/nor/cfi.c
index a64d78f5..f88f16c8 100644
--- a/src/flash/nor/cfi.c
+++ b/src/flash/nor/cfi.c
@@ -1141,7 +1141,7 @@ static int cfi_intel_write_block(struct flash_bank *bank, uint8_t *buffer, uint3
busy_pattern_val = cfi_command_val(bank, 0x80);
error_pattern_val = cfi_command_val(bank, 0x7e);
- LOG_INFO("Using target buffer at 0x%08" PRIx32 " and of size 0x%04" PRIx32, source->address, buffer_size);
+ LOG_DEBUG("Using target buffer at 0x%08" PRIx32 " and of size 0x%04" PRIx32, source->address, buffer_size);
/* Programming main loop */
while (count > 0)
@@ -1162,7 +1162,7 @@ static int cfi_intel_write_block(struct flash_bank *bank, uint8_t *buffer, uint3
buf_set_u32(reg_params[5].value, 0, 32, busy_pattern_val);
buf_set_u32(reg_params[6].value, 0, 32, error_pattern_val);
- LOG_INFO("Write 0x%04" PRIx32 " bytes to flash at 0x%08" PRIx32 , thisrun_count, address);
+ LOG_DEBUG("Write 0x%04" PRIx32 " bytes to flash at 0x%08" PRIx32 , thisrun_count, address);
/* Execute algorithm, assume breakpoint for last instruction */
retval = target_run_algorithm(target, 0, NULL, 7, reg_params,