aboutsummaryrefslogtreecommitdiff
path: root/src/jtag/hla/hla_layout.c
diff options
context:
space:
mode:
authorSpencer Oliver <spen@spen-soft.co.uk>2013-09-18 20:06:26 +0100
committerSpencer Oliver <spen@spen-soft.co.uk>2013-09-25 13:53:34 +0000
commitcfe9ca039f4f6c058dff64effea50a857ff80f96 (patch)
treee5a30faaba2005b3f538ba83708c33680a0558c6 /src/jtag/hla/hla_layout.c
parent0c58b81b08455439a5ef7c06a839664d1460748b (diff)
downloadriscv-openocd-cfe9ca039f4f6c058dff64effea50a857ff80f96.zip
riscv-openocd-cfe9ca039f4f6c058dff64effea50a857ff80f96.tar.gz
riscv-openocd-cfe9ca039f4f6c058dff64effea50a857ff80f96.tar.bz2
hla: move memory read/write functionality to driver
Due to issues reported when using the jtag mode of the stlink (see Trac #61), the functionality/checking has been moved to the driver. This change also fixes unaligned 32bit memory read/write for the stlink. From testing this change also brings a 3KiB/s speed increase, this is due to the larger read/write packets. Change-Id: I8234110e7e49a683f4dadd54c442ecdc3c47b320 Signed-off-by: Spencer Oliver <spen@spen-soft.co.uk> Reviewed-on: http://openocd.zylin.com/1632 Tested-by: jenkins Reviewed-by: Andreas Fritiofson <andreas.fritiofson@gmail.com>
Diffstat (limited to 'src/jtag/hla/hla_layout.c')
-rw-r--r--src/jtag/hla/hla_layout.c6
1 files changed, 0 insertions, 6 deletions
diff --git a/src/jtag/hla/hla_layout.c b/src/jtag/hla/hla_layout.c
index ef24fa3..1d22fe1 100644
--- a/src/jtag/hla/hla_layout.c
+++ b/src/jtag/hla/hla_layout.c
@@ -50,12 +50,6 @@ static int hl_layout_open(struct hl_interface_s *adapter)
return res;
}
- /* make sure adapter has set the buffer size */
- if (!adapter->param.max_buffer) {
- LOG_ERROR("buffer size not set");
- return ERROR_FAIL;
- }
-
return ERROR_OK;
}