stlink: add dummy speed handlers
[openocd/andreasf.git] / src / jtag / stlink / stlink_interface.c
blobfc5edc619a3c9f86cfb73981339fd0e1d6cb852b
1 /***************************************************************************
2 * Copyright (C) 2011 by Mathias Kuester *
3 * Mathias Kuester <kesmtp@freenet.de> *
4 * *
5 * This program is free software; you can redistribute it and/or modify *
6 * it under the terms of the GNU General Public License as published by *
7 * the Free Software Foundation; either version 2 of the License, or *
8 * (at your option) any later version. *
9 * *
10 * This program is distributed in the hope that it will be useful, *
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of *
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
13 * GNU General Public License for more details. *
14 * *
15 * You should have received a copy of the GNU General Public License *
16 * along with this program; if not, write to the *
17 * Free Software Foundation, Inc., *
18 * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. *
19 ***************************************************************************/
20 #ifdef HAVE_CONFIG_H
21 #include "config.h"
22 #endif
24 /* project specific includes */
25 #include <jtag/interface.h>
26 #include <transport/transport.h>
27 #include <helper/time_support.h>
29 #include <jtag/stlink/stlink_tcl.h>
30 #include <jtag/stlink/stlink_layout.h>
31 #include <jtag/stlink/stlink_interface.h>
33 #include <target/target.h>
35 static struct stlink_interface_s stlink_if = { {0, 0, 0, 0}, 0, 0 };
37 int stlink_interface_open(void)
39 LOG_DEBUG("stlink_interface_open");
41 return stlink_if.layout->open(&stlink_if);
44 int stlink_interface_init_target(struct target *t)
46 int res;
48 /* this is the interface for the current target and we
49 * can setup the private pointer in the tap structure
50 * if the interface match the tap idcode
52 res = stlink_if.layout->api->idcode(stlink_if.fd, &t->tap->idcode);
54 if (res != ERROR_OK)
55 return res;
57 unsigned ii, limit = t->tap->expected_ids_cnt;
58 int found = 0;
60 for (ii = 0; ii < limit; ii++) {
61 uint32_t expected = t->tap->expected_ids[ii];
63 if (t->tap->idcode == expected) {
64 found = 1;
65 break;
69 if (found == 0) {
70 LOG_ERROR
71 ("stlink_interface_init_target: target not found: idcode: %x ",
72 t->tap->idcode);
73 return ERROR_FAIL;
76 t->tap->priv = &stlink_if;
77 t->tap->hasidcode = 1;
79 return ERROR_OK;
82 static int stlink_interface_init(void)
84 LOG_DEBUG("stlink_interface_init");
86 /* here we can initialize the layout */
87 return stlink_layout_init(&stlink_if);
90 static int stlink_interface_quit(void)
92 LOG_DEBUG("stlink_interface_quit");
94 return ERROR_OK;
97 static int stlink_interface_speed(int speed)
99 LOG_DEBUG("stlink_interface_speed: ignore speed %d", speed);
101 return ERROR_OK;
104 static int stlink_speed_div(int speed, int *khz)
106 *khz = speed;
107 return ERROR_OK;
110 static int stlink_khz(int khz, int *jtag_speed)
112 *jtag_speed = khz;
113 return ERROR_OK;
116 static int stlink_interface_execute_queue(void)
118 LOG_DEBUG("stlink_interface_execute_queue: ignored");
120 return ERROR_OK;
123 COMMAND_HANDLER(stlink_interface_handle_device_desc_command)
125 LOG_DEBUG("stlink_interface_handle_device_desc_command");
127 if (CMD_ARGC == 1) {
128 stlink_if.param.device_desc = strdup(CMD_ARGV[0]);
129 } else {
130 LOG_ERROR
131 ("expected exactly one argument to stlink_device_desc <description>");
134 return ERROR_OK;
137 COMMAND_HANDLER(stlink_interface_handle_serial_command)
139 LOG_DEBUG("stlink_interface_handle_serial_command");
141 if (CMD_ARGC == 1) {
142 stlink_if.param.serial = strdup(CMD_ARGV[0]);
143 } else {
144 LOG_ERROR
145 ("expected exactly one argument to stlink_serial <serial-number>");
148 return ERROR_OK;
151 COMMAND_HANDLER(stlink_interface_handle_layout_command)
153 LOG_DEBUG("stlink_interface_handle_layout_command");
155 if (CMD_ARGC != 1) {
156 LOG_ERROR("Need exactly one argument to stlink_layout");
157 return ERROR_COMMAND_SYNTAX_ERROR;
160 if (stlink_if.layout) {
161 LOG_ERROR("already specified stlink_layout %s",
162 stlink_if.layout->name);
163 return (strcmp(stlink_if.layout->name, CMD_ARGV[0]) != 0)
164 ? ERROR_FAIL : ERROR_OK;
167 for (const struct stlink_layout *l = stlink_layout_get_list(); l->name;
168 l++) {
169 if (strcmp(l->name, CMD_ARGV[0]) == 0) {
170 stlink_if.layout = l;
171 return ERROR_OK;
175 LOG_ERROR("No STLINK layout '%s' found", CMD_ARGV[0]);
176 return ERROR_FAIL;
179 COMMAND_HANDLER(stlink_interface_handle_vid_pid_command)
181 LOG_DEBUG("stlink_interface_handle_vid_pid_command");
183 if (CMD_ARGC != 2) {
184 LOG_WARNING
185 ("ignoring extra IDs in stlink_vid_pid (maximum is 1 pair)");
186 return ERROR_COMMAND_SYNTAX_ERROR;
189 COMMAND_PARSE_NUMBER(u16, CMD_ARGV[0], stlink_if.param.vid);
190 COMMAND_PARSE_NUMBER(u16, CMD_ARGV[1], stlink_if.param.pid);
192 return ERROR_OK;
195 static const struct command_registration stlink_interface_command_handlers[] = {
197 .name = "stlink_device_desc",
198 .handler = &stlink_interface_handle_device_desc_command,
199 .mode = COMMAND_CONFIG,
200 .help = "set the stlink device description of the STLINK device",
201 .usage = "description_string",
204 .name = "stlink_serial",
205 .handler = &stlink_interface_handle_serial_command,
206 .mode = COMMAND_CONFIG,
207 .help = "set the serial number of the STLINK device",
208 .usage = "serial_string",
211 .name = "stlink_layout",
212 .handler = &stlink_interface_handle_layout_command,
213 .mode = COMMAND_CONFIG,
214 .help = "set the layout of the STLINK to usb or sg",
215 .usage = "layout_name",
218 .name = "stlink_vid_pid",
219 .handler = &stlink_interface_handle_vid_pid_command,
220 .mode = COMMAND_CONFIG,
221 .help = "the vendor and product ID of the STLINK device",
222 .usage = "(vid pid)* ",
224 COMMAND_REGISTRATION_DONE
227 struct jtag_interface stlink_interface = {
228 .name = "stlink",
229 .supported = 0,
230 .commands = stlink_interface_command_handlers,
231 .transports = stlink_transports,
232 .init = stlink_interface_init,
233 .quit = stlink_interface_quit,
234 .speed = stlink_interface_speed,
235 .speed_div = stlink_speed_div,
236 .khz = stlink_khz,
237 .execute_queue = stlink_interface_execute_queue,