aboutsummaryrefslogtreecommitdiff
path: root/src/jtag/hla
diff options
context:
space:
mode:
Diffstat (limited to 'src/jtag/hla')
-rw-r--r--src/jtag/hla/hla_layout.c6
-rw-r--r--src/jtag/hla/hla_layout.h1
2 files changed, 7 insertions, 0 deletions
diff --git a/src/jtag/hla/hla_layout.c b/src/jtag/hla/hla_layout.c
index 55657294..54c53140 100644
--- a/src/jtag/hla/hla_layout.c
+++ b/src/jtag/hla/hla_layout.c
@@ -71,6 +71,12 @@ static const struct hl_layout hl_layouts[] = {
.close = hl_layout_close,
.api = &stlink_usb_layout_api,
},
+ {
+ .name = "ti-icdi",
+ .open = hl_layout_open,
+ .close = hl_layout_close,
+ .api = &icdi_usb_layout_api,
+ },
{.name = NULL, /* END OF TABLE */ },
};
diff --git a/src/jtag/hla/hla_layout.h b/src/jtag/hla/hla_layout.h
index 982d71a8..3fd361ea 100644
--- a/src/jtag/hla/hla_layout.h
+++ b/src/jtag/hla/hla_layout.h
@@ -30,6 +30,7 @@ struct hl_interface_param_s;
/** */
extern struct hl_layout_api_s stlink_usb_layout_api;
+extern struct hl_layout_api_s icdi_usb_layout_api;
/** */
struct hl_layout_api_s {