8453a6ff5395dedab8e2b2bd60bc9e45a528ebfb
[openocd.git] / src / jtag / hla / hla_interface.c
blob8453a6ff5395dedab8e2b2bd60bc9e45a528ebfb
1 /***************************************************************************
2 * Copyright (C) 2011 by Mathias Kuester *
3 * Mathias Kuester <kesmtp@freenet.de> *
4 * *
5 * Copyright (C) 2012 by Spencer Oliver *
6 * spen@spen-soft.co.uk *
7 * *
8 * This program is free software; you can redistribute it and/or modify *
9 * it under the terms of the GNU General Public License as published by *
10 * the Free Software Foundation; either version 2 of the License, or *
11 * (at your option) any later version. *
12 * *
13 * This program is distributed in the hope that it will be useful, *
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of *
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
16 * GNU General Public License for more details. *
17 * *
18 * You should have received a copy of the GNU General Public License *
19 * along with this program; if not, write to the *
20 * Free Software Foundation, Inc., *
21 * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. *
22 ***************************************************************************/
24 #ifdef HAVE_CONFIG_H
25 #include "config.h"
26 #endif
28 /* project specific includes */
29 #include <jtag/interface.h>
30 #include <transport/transport.h>
31 #include <helper/time_support.h>
33 #include <jtag/hla/hla_tcl.h>
34 #include <jtag/hla/hla_layout.h>
35 #include <jtag/hla/hla_transport.h>
36 #include <jtag/hla/hla_interface.h>
38 #include <target/target.h>
40 static struct hl_interface_s hl_if = { {0, 0, 0, 0, 0, HL_TRANSPORT_UNKNOWN, 0, false}, 0, 0 };
42 int hl_interface_open(enum hl_transports tr)
44 LOG_DEBUG("hl_interface_open");
46 enum reset_types jtag_reset_config = jtag_get_reset_config();
48 if (jtag_reset_config & RESET_CNCT_UNDER_SRST) {
49 if (jtag_reset_config & RESET_SRST_NO_GATING)
50 hl_if.param.connect_under_reset = true;
51 else
52 LOG_WARNING("\'srst_nogate\' reset_config option is required");
55 /* set transport mode */
56 hl_if.param.transport = tr;
58 int result = hl_if.layout->open(&hl_if);
59 if (result != ERROR_OK)
60 return result;
62 return hl_interface_init_reset();
65 int hl_interface_init_target(struct target *t)
67 int res;
69 LOG_DEBUG("hl_interface_init_target");
71 /* this is the interface for the current target and we
72 * can setup the private pointer in the tap structure
73 * if the interface match the tap idcode
75 res = hl_if.layout->api->idcode(hl_if.fd, &t->tap->idcode);
77 if (res != ERROR_OK)
78 return res;
80 unsigned ii, limit = t->tap->expected_ids_cnt;
81 int found = 0;
83 for (ii = 0; ii < limit; ii++) {
84 uint32_t expected = t->tap->expected_ids[ii];
86 /* treat "-expected-id 0" as a "don't-warn" wildcard */
87 if (!expected || (t->tap->idcode == expected)) {
88 found = 1;
89 break;
93 if (found == 0) {
94 LOG_ERROR("hl_interface_init_target: target not found: idcode: 0x%08x",
95 t->tap->idcode);
96 return ERROR_FAIL;
99 t->tap->priv = &hl_if;
100 t->tap->hasidcode = 1;
102 return ERROR_OK;
105 static int hl_interface_init(void)
107 LOG_DEBUG("hl_interface_init");
109 /* here we can initialize the layout */
110 return hl_layout_init(&hl_if);
113 static int hl_interface_quit(void)
115 LOG_DEBUG("hl_interface_quit");
117 return ERROR_OK;
120 static int hl_interface_execute_queue(void)
122 LOG_DEBUG("hl_interface_execute_queue: ignored");
124 return ERROR_OK;
127 int hl_interface_init_reset(void)
129 /* incase the adapter has not already handled asserting srst
130 * we will attempt it again */
131 if (hl_if.param.connect_under_reset) {
132 jtag_add_reset(0, 1);
133 hl_if.layout->api->assert_srst(hl_if.fd, 0);
136 return ERROR_OK;
139 COMMAND_HANDLER(hl_interface_handle_device_desc_command)
141 LOG_DEBUG("hl_interface_handle_device_desc_command");
143 if (CMD_ARGC == 1) {
144 hl_if.param.device_desc = strdup(CMD_ARGV[0]);
145 } else {
146 LOG_ERROR("expected exactly one argument to hl_device_desc <description>");
149 return ERROR_OK;
152 COMMAND_HANDLER(hl_interface_handle_serial_command)
154 LOG_DEBUG("hl_interface_handle_serial_command");
156 if (CMD_ARGC == 1) {
157 hl_if.param.serial = strdup(CMD_ARGV[0]);
158 } else {
159 LOG_ERROR("expected exactly one argument to hl_serial <serial-number>");
162 return ERROR_OK;
165 COMMAND_HANDLER(hl_interface_handle_layout_command)
167 LOG_DEBUG("hl_interface_handle_layout_command");
169 if (CMD_ARGC != 1) {
170 LOG_ERROR("Need exactly one argument to stlink_layout");
171 return ERROR_COMMAND_SYNTAX_ERROR;
174 if (hl_if.layout) {
175 LOG_ERROR("already specified hl_layout %s",
176 hl_if.layout->name);
177 return (strcmp(hl_if.layout->name, CMD_ARGV[0]) != 0)
178 ? ERROR_FAIL : ERROR_OK;
181 for (const struct hl_layout *l = hl_layout_get_list(); l->name;
182 l++) {
183 if (strcmp(l->name, CMD_ARGV[0]) == 0) {
184 hl_if.layout = l;
185 return ERROR_OK;
189 LOG_ERROR("No adapter layout '%s' found", CMD_ARGV[0]);
190 return ERROR_FAIL;
193 COMMAND_HANDLER(hl_interface_handle_vid_pid_command)
195 LOG_DEBUG("hl_interface_handle_vid_pid_command");
197 if (CMD_ARGC != 2) {
198 LOG_WARNING("ignoring extra IDs in hl_vid_pid (maximum is 1 pair)");
199 return ERROR_COMMAND_SYNTAX_ERROR;
202 COMMAND_PARSE_NUMBER(u16, CMD_ARGV[0], hl_if.param.vid);
203 COMMAND_PARSE_NUMBER(u16, CMD_ARGV[1], hl_if.param.pid);
205 return ERROR_OK;
208 COMMAND_HANDLER(stlink_interface_handle_api_command)
210 if (CMD_ARGC != 1)
211 return ERROR_COMMAND_SYNTAX_ERROR;
213 unsigned new_api;
214 COMMAND_PARSE_NUMBER(uint, CMD_ARGV[0], new_api);
215 if ((new_api == 0) || (new_api > 2))
216 return ERROR_COMMAND_SYNTAX_ERROR;
218 hl_if.param.api = new_api;
220 return ERROR_OK;
223 static const struct command_registration hl_interface_command_handlers[] = {
225 .name = "hla_device_desc",
226 .handler = &hl_interface_handle_device_desc_command,
227 .mode = COMMAND_CONFIG,
228 .help = "set the a device description of the adapter",
229 .usage = "description_string",
232 .name = "hla_serial",
233 .handler = &hl_interface_handle_serial_command,
234 .mode = COMMAND_CONFIG,
235 .help = "set the serial number of the adapter",
236 .usage = "serial_string",
239 .name = "hla_layout",
240 .handler = &hl_interface_handle_layout_command,
241 .mode = COMMAND_CONFIG,
242 .help = "set the layout of the adapter",
243 .usage = "layout_name",
246 .name = "hla_vid_pid",
247 .handler = &hl_interface_handle_vid_pid_command,
248 .mode = COMMAND_CONFIG,
249 .help = "the vendor and product ID of the adapter",
250 .usage = "(vid pid)* ",
253 .name = "stlink_api",
254 .handler = &stlink_interface_handle_api_command,
255 .mode = COMMAND_CONFIG,
256 .help = "set the desired stlink api level",
257 .usage = "api version 1 or 2",
259 COMMAND_REGISTRATION_DONE
262 struct jtag_interface hl_interface = {
263 .name = "hla",
264 .supported = 0,
265 .commands = hl_interface_command_handlers,
266 .transports = hl_transports,
267 .init = hl_interface_init,
268 .quit = hl_interface_quit,
269 .execute_queue = hl_interface_execute_queue,