aboutsummaryrefslogtreecommitdiff
path: root/src/jtag
diff options
context:
space:
mode:
authorSpencer Oliver <spen@spen-soft.co.uk>2012-11-01 11:19:29 +0000
committerSpencer Oliver <spen@spen-soft.co.uk>2012-12-23 21:46:10 +0000
commitc7a6f065d2a48730e05eb95bb44ca6a7032d2a31 (patch)
tree8118ca5f5ae9ce081f5f653e7eeb16e53c700bfc /src/jtag
parent561984c8f672b5b35a78e80529107ec0599fc037 (diff)
hla: add ability to configure read/write buffer size
Other adapters (TI ICDI) that use this driver can use a larger read/write buffer size than the original stlink could. Change-Id: I9beb7748049097cbe29a2340799c450bd74e199d Signed-off-by: Spencer Oliver <spen@spen-soft.co.uk> Reviewed-on: http://openocd.zylin.com/948 Tested-by: jenkins
Diffstat (limited to 'src/jtag')
-rw-r--r--src/jtag/drivers/stlink_usb.c3
-rw-r--r--src/jtag/hla/hla_interface.c2
-rw-r--r--src/jtag/hla/hla_interface.h2
-rw-r--r--src/jtag/hla/hla_layout.c6
4 files changed, 12 insertions, 1 deletions
diff --git a/src/jtag/drivers/stlink_usb.c b/src/jtag/drivers/stlink_usb.c
index 2a78f795..bb4df239 100644
--- a/src/jtag/drivers/stlink_usb.c
+++ b/src/jtag/drivers/stlink_usb.c
@@ -1160,6 +1160,9 @@ static int stlink_usb_open(struct hl_interface_param_s *param, void **fd)
h->transport = param->transport;
+ /* set max read/write buffer size in bytes */
+ param->max_buffer = 512;
+
const uint16_t vids[] = { param->vid, 0 };
const uint16_t pids[] = { param->pid, 0 };
diff --git a/src/jtag/hla/hla_interface.c b/src/jtag/hla/hla_interface.c
index eb9b43dc..5f493ffe 100644
--- a/src/jtag/hla/hla_interface.c
+++ b/src/jtag/hla/hla_interface.c
@@ -37,7 +37,7 @@
#include <target/target.h>
-static struct hl_interface_s hl_if = { {0, 0, 0, 0, 0, 0}, 0, 0 };
+static struct hl_interface_s hl_if = { {0, 0, 0, 0, 0, 0, 0}, 0, 0 };
int hl_interface_open(enum hl_transports tr)
{
diff --git a/src/jtag/hla/hla_interface.h b/src/jtag/hla/hla_interface.h
index cbeee5a1..5b63ab85 100644
--- a/src/jtag/hla/hla_interface.h
+++ b/src/jtag/hla/hla_interface.h
@@ -44,6 +44,8 @@ struct hl_interface_param_s {
unsigned api;
/** */
enum hl_transports transport;
+ /** */
+ int max_buffer;
};
struct hl_interface_s {
diff --git a/src/jtag/hla/hla_layout.c b/src/jtag/hla/hla_layout.c
index 04b50d7f..55657294 100644
--- a/src/jtag/hla/hla_layout.c
+++ b/src/jtag/hla/hla_layout.c
@@ -50,6 +50,12 @@ 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;
}