jtag/drivers/ulink: auto-detect OpenULINK USB endpoints numbers
[openocd.git] / src / jtag / drivers / ulink.c
1 /***************************************************************************
2 * Copyright (C) 2011-2013 by Martin Schmoelzer *
3 * <martin.schmoelzer@student.tuwien.ac.at> *
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, see <http://www.gnu.org/licenses/>. *
17 ***************************************************************************/
18
19 #ifdef HAVE_CONFIG_H
20 #include "config.h"
21 #endif
22
23 #include <math.h>
24 #include <jtag/interface.h>
25 #include <jtag/commands.h>
26 #include <target/image.h>
27 #include <libusb.h>
28 #include "libusb_helper.h"
29 #include "OpenULINK/include/msgtypes.h"
30
31 /** USB Vendor ID of ULINK device in unconfigured state (no firmware loaded
32 * yet) or with OpenULINK firmware. */
33 #define ULINK_VID 0xC251
34
35 /** USB Product ID of ULINK device in unconfigured state (no firmware loaded
36 * yet) or with OpenULINK firmware. */
37 #define ULINK_PID 0x2710
38
39 /** Address of EZ-USB CPU Control & Status register. This register can be
40 * written by issuing a Control EP0 vendor request. */
41 #define CPUCS_REG 0x7F92
42
43 /** USB Control EP0 bRequest: "Firmware Load". */
44 #define REQUEST_FIRMWARE_LOAD 0xA0
45
46 /** Value to write into CPUCS to put EZ-USB into reset. */
47 #define CPU_RESET 0x01
48
49 /** Value to write into CPUCS to put EZ-USB out of reset. */
50 #define CPU_START 0x00
51
52 /** Base address of firmware in EZ-USB code space. */
53 #define FIRMWARE_ADDR 0x0000
54
55 /** USB interface number */
56 #define USB_INTERFACE 0
57
58 /** libusb timeout in ms */
59 #define USB_TIMEOUT 5000
60
61 /** Delay (in microseconds) to wait while EZ-USB performs ReNumeration. */
62 #define ULINK_RENUMERATION_DELAY 1500000
63
64 /** Default location of OpenULINK firmware image. */
65 #define ULINK_FIRMWARE_FILE PKGDATADIR "/OpenULINK/ulink_firmware.hex"
66
67 /** Maximum size of a single firmware section. Entire EZ-USB code space = 8kB */
68 #define SECTION_BUFFERSIZE 8192
69
70 /** Tuning of OpenOCD SCAN commands split into multiple OpenULINK commands. */
71 #define SPLIT_SCAN_THRESHOLD 10
72
73 /** ULINK hardware type */
74 enum ulink_type {
75 /** Original ULINK adapter, based on Cypress EZ-USB (AN2131):
76 * Full JTAG support, no SWD support. */
77 ULINK_1,
78
79 /** Newer ULINK adapter, based on NXP LPC2148. Currently unsupported. */
80 ULINK_2,
81
82 /** Newer ULINK adapter, based on EZ-USB FX2 + FPGA. Currently unsupported. */
83 ULINK_PRO,
84
85 /** Newer ULINK adapter, possibly based on ULINK 2. Currently unsupported. */
86 ULINK_ME
87 };
88
89 enum ulink_payload_direction {
90 PAYLOAD_DIRECTION_OUT,
91 PAYLOAD_DIRECTION_IN
92 };
93
94 enum ulink_delay_type {
95 DELAY_CLOCK_TCK,
96 DELAY_CLOCK_TMS,
97 DELAY_SCAN_IN,
98 DELAY_SCAN_OUT,
99 DELAY_SCAN_IO
100 };
101
102 /**
103 * OpenULINK command (OpenULINK command queue element).
104 *
105 * For the OUT direction payload, things are quite easy: Payload is stored
106 * in a rather small array (up to 63 bytes), the payload is always allocated
107 * by the function generating the command and freed by ulink_clear_queue().
108 *
109 * For the IN direction payload, things get a little bit more complicated:
110 * The maximum IN payload size for a single command is 64 bytes. Assume that
111 * a single OpenOCD command needs to scan 256 bytes. This results in the
112 * generation of four OpenULINK commands. The function generating these
113 * commands shall allocate an uint8_t[256] array. Each command's #payload_in
114 * pointer shall point to the corresponding offset where IN data shall be
115 * placed, while #payload_in_start shall point to the first element of the 256
116 * byte array.
117 * - first command: #payload_in_start + 0
118 * - second command: #payload_in_start + 64
119 * - third command: #payload_in_start + 128
120 * - fourth command: #payload_in_start + 192
121 *
122 * The last command sets #needs_postprocessing to true.
123 */
124 struct ulink_cmd {
125 uint8_t id; /**< ULINK command ID */
126
127 uint8_t *payload_out; /**< OUT direction payload data */
128 uint8_t payload_out_size; /**< OUT direction payload size for this command */
129
130 uint8_t *payload_in_start; /**< Pointer to first element of IN payload array */
131 uint8_t *payload_in; /**< Pointer where IN payload shall be stored */
132 uint8_t payload_in_size; /**< IN direction payload size for this command */
133
134 /** Indicates if this command needs post-processing */
135 bool needs_postprocessing;
136
137 /** Indicates if ulink_clear_queue() should free payload_in_start */
138 bool free_payload_in_start;
139
140 /** Pointer to corresponding OpenOCD command for post-processing */
141 struct jtag_command *cmd_origin;
142
143 struct ulink_cmd *next; /**< Pointer to next command (linked list) */
144 };
145
146 /** Describes one driver instance */
147 struct ulink {
148 struct libusb_context *libusb_ctx;
149 struct libusb_device_handle *usb_device_handle;
150 enum ulink_type type;
151
152 unsigned int ep_in; /**< IN endpoint number */
153 unsigned int ep_out; /**< OUT endpoint number */
154
155 int delay_scan_in; /**< Delay value for SCAN_IN commands */
156 int delay_scan_out; /**< Delay value for SCAN_OUT commands */
157 int delay_scan_io; /**< Delay value for SCAN_IO commands */
158 int delay_clock_tck; /**< Delay value for CLOCK_TMS commands */
159 int delay_clock_tms; /**< Delay value for CLOCK_TCK commands */
160
161 int commands_in_queue; /**< Number of commands in queue */
162 struct ulink_cmd *queue_start; /**< Pointer to first command in queue */
163 struct ulink_cmd *queue_end; /**< Pointer to last command in queue */
164 };
165
166 /**************************** Function Prototypes *****************************/
167
168 /* USB helper functions */
169 static int ulink_usb_open(struct ulink **device);
170 static int ulink_usb_close(struct ulink **device);
171
172 /* ULINK MCU (Cypress EZ-USB) specific functions */
173 static int ulink_cpu_reset(struct ulink *device, unsigned char reset_bit);
174 static int ulink_load_firmware_and_renumerate(struct ulink **device, const char *filename,
175 uint32_t delay);
176 static int ulink_load_firmware(struct ulink *device, const char *filename);
177 static int ulink_write_firmware_section(struct ulink *device,
178 struct image *firmware_image, int section_index);
179
180 /* Generic helper functions */
181 static void ulink_print_signal_states(uint8_t input_signals, uint8_t output_signals);
182
183 /* OpenULINK command generation helper functions */
184 static int ulink_allocate_payload(struct ulink_cmd *ulink_cmd, int size,
185 enum ulink_payload_direction direction);
186
187 /* OpenULINK command queue helper functions */
188 static int ulink_get_queue_size(struct ulink *device,
189 enum ulink_payload_direction direction);
190 static void ulink_clear_queue(struct ulink *device);
191 static int ulink_append_queue(struct ulink *device, struct ulink_cmd *ulink_cmd);
192 static int ulink_execute_queued_commands(struct ulink *device, int timeout);
193
194 static void ulink_print_queue(struct ulink *device);
195
196 static int ulink_append_scan_cmd(struct ulink *device,
197 enum scan_type scan_type,
198 int scan_size_bits,
199 uint8_t *tdi,
200 uint8_t *tdo_start,
201 uint8_t *tdo,
202 uint8_t tms_count_start,
203 uint8_t tms_sequence_start,
204 uint8_t tms_count_end,
205 uint8_t tms_sequence_end,
206 struct jtag_command *origin,
207 bool postprocess);
208 static int ulink_append_clock_tms_cmd(struct ulink *device, uint8_t count,
209 uint8_t sequence);
210 static int ulink_append_clock_tck_cmd(struct ulink *device, uint16_t count);
211 static int ulink_append_get_signals_cmd(struct ulink *device);
212 static int ulink_append_set_signals_cmd(struct ulink *device, uint8_t low,
213 uint8_t high);
214 static int ulink_append_sleep_cmd(struct ulink *device, uint32_t us);
215 static int ulink_append_configure_tck_cmd(struct ulink *device,
216 int delay_scan_in,
217 int delay_scan_out,
218 int delay_scan_io,
219 int delay_tck,
220 int delay_tms);
221 static int __attribute__((unused)) ulink_append_led_cmd(struct ulink *device, uint8_t led_state);
222 static int ulink_append_test_cmd(struct ulink *device);
223
224 /* OpenULINK TCK frequency helper functions */
225 static int ulink_calculate_delay(enum ulink_delay_type type, long f, int *delay);
226
227 /* Interface between OpenULINK and OpenOCD */
228 static void ulink_set_end_state(tap_state_t endstate);
229 static int ulink_queue_statemove(struct ulink *device);
230
231 static int ulink_queue_scan(struct ulink *device, struct jtag_command *cmd);
232 static int ulink_queue_tlr_reset(struct ulink *device, struct jtag_command *cmd);
233 static int ulink_queue_runtest(struct ulink *device, struct jtag_command *cmd);
234 static int ulink_queue_reset(struct ulink *device, struct jtag_command *cmd);
235 static int ulink_queue_pathmove(struct ulink *device, struct jtag_command *cmd);
236 static int ulink_queue_sleep(struct ulink *device, struct jtag_command *cmd);
237 static int ulink_queue_stableclocks(struct ulink *device, struct jtag_command *cmd);
238
239 static int ulink_post_process_scan(struct ulink_cmd *ulink_cmd);
240 static int ulink_post_process_queue(struct ulink *device);
241
242 /* adapter driver functions */
243 static int ulink_execute_queue(void);
244 static int ulink_khz(int khz, int *jtag_speed);
245 static int ulink_speed(int speed);
246 static int ulink_speed_div(int speed, int *khz);
247 static int ulink_init(void);
248 static int ulink_quit(void);
249
250 /****************************** Global Variables ******************************/
251
252 static struct ulink *ulink_handle;
253
254 /**************************** USB helper functions ****************************/
255
256 /**
257 * Opens the ULINK device
258 *
259 * Currently, only the original ULINK is supported
260 *
261 * @param device pointer to struct ulink identifying ULINK driver instance.
262 * @return on success: ERROR_OK
263 * @return on failure: ERROR_FAIL
264 */
265 static int ulink_usb_open(struct ulink **device)
266 {
267 ssize_t num_devices, i;
268 bool found;
269 libusb_device **usb_devices;
270 struct libusb_device_descriptor usb_desc;
271 struct libusb_device_handle *usb_device_handle;
272
273 num_devices = libusb_get_device_list((*device)->libusb_ctx, &usb_devices);
274
275 if (num_devices <= 0)
276 return ERROR_FAIL;
277
278 found = false;
279 for (i = 0; i < num_devices; i++) {
280 if (libusb_get_device_descriptor(usb_devices[i], &usb_desc) != 0)
281 continue;
282 else if (usb_desc.idVendor == ULINK_VID && usb_desc.idProduct == ULINK_PID) {
283 found = true;
284 break;
285 }
286 }
287
288 if (!found)
289 return ERROR_FAIL;
290
291 if (libusb_open(usb_devices[i], &usb_device_handle) != 0)
292 return ERROR_FAIL;
293 libusb_free_device_list(usb_devices, 1);
294
295 (*device)->usb_device_handle = usb_device_handle;
296 (*device)->type = ULINK_1;
297
298 return ERROR_OK;
299 }
300
301 /**
302 * Releases the ULINK interface and closes the USB device handle.
303 *
304 * @param device pointer to struct ulink identifying ULINK driver instance.
305 * @return on success: ERROR_OK
306 * @return on failure: ERROR_FAIL
307 */
308 static int ulink_usb_close(struct ulink **device)
309 {
310 if (libusb_release_interface((*device)->usb_device_handle, 0) != 0)
311 return ERROR_FAIL;
312
313 libusb_close((*device)->usb_device_handle);
314
315 (*device)->usb_device_handle = NULL;
316
317 return ERROR_OK;
318 }
319
320 /******************* ULINK CPU (EZ-USB) specific functions ********************/
321
322 /**
323 * Writes '0' or '1' to the CPUCS register, putting the EZ-USB CPU into reset
324 * or out of reset.
325 *
326 * @param device pointer to struct ulink identifying ULINK driver instance.
327 * @param reset_bit 0 to put CPU into reset, 1 to put CPU out of reset.
328 * @return on success: ERROR_OK
329 * @return on failure: ERROR_FAIL
330 */
331 static int ulink_cpu_reset(struct ulink *device, unsigned char reset_bit)
332 {
333 int ret;
334
335 ret = libusb_control_transfer(device->usb_device_handle,
336 (LIBUSB_ENDPOINT_OUT | LIBUSB_REQUEST_TYPE_VENDOR | LIBUSB_RECIPIENT_DEVICE),
337 REQUEST_FIRMWARE_LOAD, CPUCS_REG, 0, &reset_bit, 1, USB_TIMEOUT);
338
339 /* usb_control_msg() returns the number of bytes transferred during the
340 * DATA stage of the control transfer - must be exactly 1 in this case! */
341 if (ret != 1)
342 return ERROR_FAIL;
343 return ERROR_OK;
344 }
345
346 /**
347 * Puts the ULINK's EZ-USB microcontroller into reset state, downloads
348 * the firmware image, resumes the microcontroller and re-enumerates
349 * USB devices.
350 *
351 * @param device pointer to struct ulink identifying ULINK driver instance.
352 * The usb_handle member will be modified during re-enumeration.
353 * @param filename path to the Intel HEX file containing the firmware image.
354 * @param delay the delay to wait for the device to re-enumerate.
355 * @return on success: ERROR_OK
356 * @return on failure: ERROR_FAIL
357 */
358 static int ulink_load_firmware_and_renumerate(struct ulink **device,
359 const char *filename, uint32_t delay)
360 {
361 int ret;
362
363 /* Basic process: After downloading the firmware, the ULINK will disconnect
364 * itself and re-connect after a short amount of time so we have to close
365 * the handle and re-enumerate USB devices */
366
367 ret = ulink_load_firmware(*device, filename);
368 if (ret != ERROR_OK)
369 return ret;
370
371 ret = ulink_usb_close(device);
372 if (ret != ERROR_OK)
373 return ret;
374
375 usleep(delay);
376
377 ret = ulink_usb_open(device);
378 if (ret != ERROR_OK)
379 return ret;
380
381 return ERROR_OK;
382 }
383
384 /**
385 * Downloads a firmware image to the ULINK's EZ-USB microcontroller
386 * over the USB bus.
387 *
388 * @param device pointer to struct ulink identifying ULINK driver instance.
389 * @param filename an absolute or relative path to the Intel HEX file
390 * containing the firmware image.
391 * @return on success: ERROR_OK
392 * @return on failure: ERROR_FAIL
393 */
394 static int ulink_load_firmware(struct ulink *device, const char *filename)
395 {
396 struct image ulink_firmware_image;
397 int ret;
398
399 ret = ulink_cpu_reset(device, CPU_RESET);
400 if (ret != ERROR_OK) {
401 LOG_ERROR("Could not halt ULINK CPU");
402 return ret;
403 }
404
405 ulink_firmware_image.base_address = 0;
406 ulink_firmware_image.base_address_set = false;
407
408 ret = image_open(&ulink_firmware_image, filename, "ihex");
409 if (ret != ERROR_OK) {
410 LOG_ERROR("Could not load firmware image");
411 return ret;
412 }
413
414 /* Download all sections in the image to ULINK */
415 for (unsigned int i = 0; i < ulink_firmware_image.num_sections; i++) {
416 ret = ulink_write_firmware_section(device, &ulink_firmware_image, i);
417 if (ret != ERROR_OK)
418 return ret;
419 }
420
421 image_close(&ulink_firmware_image);
422
423 ret = ulink_cpu_reset(device, CPU_START);
424 if (ret != ERROR_OK) {
425 LOG_ERROR("Could not restart ULINK CPU");
426 return ret;
427 }
428
429 return ERROR_OK;
430 }
431
432 /**
433 * Send one contiguous firmware section to the ULINK's EZ-USB microcontroller
434 * over the USB bus.
435 *
436 * @param device pointer to struct ulink identifying ULINK driver instance.
437 * @param firmware_image pointer to the firmware image that contains the section
438 * which should be sent to the ULINK's EZ-USB microcontroller.
439 * @param section_index index of the section within the firmware image.
440 * @return on success: ERROR_OK
441 * @return on failure: ERROR_FAIL
442 */
443 static int ulink_write_firmware_section(struct ulink *device,
444 struct image *firmware_image, int section_index)
445 {
446 uint16_t addr, size, bytes_remaining, chunk_size;
447 uint8_t data[SECTION_BUFFERSIZE];
448 uint8_t *data_ptr = data;
449 size_t size_read;
450 int ret;
451
452 size = (uint16_t)firmware_image->sections[section_index].size;
453 addr = (uint16_t)firmware_image->sections[section_index].base_address;
454
455 LOG_DEBUG("section %02i at addr 0x%04x (size 0x%04x)", section_index, addr,
456 size);
457
458 /* Copy section contents to local buffer */
459 ret = image_read_section(firmware_image, section_index, 0, size, data,
460 &size_read);
461
462 if ((ret != ERROR_OK) || (size_read != size)) {
463 /* Propagating the return code would return '0' (misleadingly indicating
464 * successful execution of the function) if only the size check fails. */
465 return ERROR_FAIL;
466 }
467
468 bytes_remaining = size;
469
470 /* Send section data in chunks of up to 64 bytes to ULINK */
471 while (bytes_remaining > 0) {
472 if (bytes_remaining > 64)
473 chunk_size = 64;
474 else
475 chunk_size = bytes_remaining;
476
477 ret = libusb_control_transfer(device->usb_device_handle,
478 (LIBUSB_ENDPOINT_OUT | LIBUSB_REQUEST_TYPE_VENDOR | LIBUSB_RECIPIENT_DEVICE),
479 REQUEST_FIRMWARE_LOAD, addr, FIRMWARE_ADDR, (unsigned char *)data_ptr,
480 chunk_size, USB_TIMEOUT);
481
482 if (ret != (int)chunk_size) {
483 /* Abort if libusb sent less data than requested */
484 return ERROR_FAIL;
485 }
486
487 bytes_remaining -= chunk_size;
488 addr += chunk_size;
489 data_ptr += chunk_size;
490 }
491
492 return ERROR_OK;
493 }
494
495 /************************** Generic helper functions **************************/
496
497 /**
498 * Print state of interesting signals via LOG_INFO().
499 *
500 * @param input_signals input signal states as returned by CMD_GET_SIGNALS
501 * @param output_signals output signal states as returned by CMD_GET_SIGNALS
502 */
503 static void ulink_print_signal_states(uint8_t input_signals, uint8_t output_signals)
504 {
505 LOG_INFO("ULINK signal states: TDI: %i, TDO: %i, TMS: %i, TCK: %i, TRST: %i,"
506 " SRST: %i",
507 (output_signals & SIGNAL_TDI ? 1 : 0),
508 (input_signals & SIGNAL_TDO ? 1 : 0),
509 (output_signals & SIGNAL_TMS ? 1 : 0),
510 (output_signals & SIGNAL_TCK ? 1 : 0),
511 (output_signals & SIGNAL_TRST ? 0 : 1), /* Inverted by hardware */
512 (output_signals & SIGNAL_RESET ? 0 : 1)); /* Inverted by hardware */
513 }
514
515 /**************** OpenULINK command generation helper functions ***************/
516
517 /**
518 * Allocate and initialize space in memory for OpenULINK command payload.
519 *
520 * @param ulink_cmd pointer to command whose payload should be allocated.
521 * @param size the amount of memory to allocate (bytes).
522 * @param direction which payload to allocate.
523 * @return on success: ERROR_OK
524 * @return on failure: ERROR_FAIL
525 */
526 static int ulink_allocate_payload(struct ulink_cmd *ulink_cmd, int size,
527 enum ulink_payload_direction direction)
528 {
529 uint8_t *payload;
530
531 payload = calloc(size, sizeof(uint8_t));
532
533 if (payload == NULL) {
534 LOG_ERROR("Could not allocate OpenULINK command payload: out of memory");
535 return ERROR_FAIL;
536 }
537
538 switch (direction) {
539 case PAYLOAD_DIRECTION_OUT:
540 if (ulink_cmd->payload_out != NULL) {
541 LOG_ERROR("BUG: Duplicate payload allocation for OpenULINK command");
542 free(payload);
543 return ERROR_FAIL;
544 } else {
545 ulink_cmd->payload_out = payload;
546 ulink_cmd->payload_out_size = size;
547 }
548 break;
549 case PAYLOAD_DIRECTION_IN:
550 if (ulink_cmd->payload_in_start != NULL) {
551 LOG_ERROR("BUG: Duplicate payload allocation for OpenULINK command");
552 free(payload);
553 return ERROR_FAIL;
554 } else {
555 ulink_cmd->payload_in_start = payload;
556 ulink_cmd->payload_in = payload;
557 ulink_cmd->payload_in_size = size;
558
559 /* By default, free payload_in_start in ulink_clear_queue(). Commands
560 * that do not want this behavior (e. g. split scans) must turn it off
561 * separately! */
562 ulink_cmd->free_payload_in_start = true;
563 }
564 break;
565 }
566
567 return ERROR_OK;
568 }
569
570 /****************** OpenULINK command queue helper functions ******************/
571
572 /**
573 * Get the current number of bytes in the queue, including command IDs.
574 *
575 * @param device pointer to struct ulink identifying ULINK driver instance.
576 * @param direction the transfer direction for which to get byte count.
577 * @return the number of bytes currently stored in the queue for the specified
578 * direction.
579 */
580 static int ulink_get_queue_size(struct ulink *device,
581 enum ulink_payload_direction direction)
582 {
583 struct ulink_cmd *current = device->queue_start;
584 int sum = 0;
585
586 while (current != NULL) {
587 switch (direction) {
588 case PAYLOAD_DIRECTION_OUT:
589 sum += current->payload_out_size + 1; /* + 1 byte for Command ID */
590 break;
591 case PAYLOAD_DIRECTION_IN:
592 sum += current->payload_in_size;
593 break;
594 }
595
596 current = current->next;
597 }
598
599 return sum;
600 }
601
602 /**
603 * Clear the OpenULINK command queue.
604 *
605 * @param device pointer to struct ulink identifying ULINK driver instance.
606 * @return on success: ERROR_OK
607 * @return on failure: ERROR_FAIL
608 */
609 static void ulink_clear_queue(struct ulink *device)
610 {
611 struct ulink_cmd *current = device->queue_start;
612 struct ulink_cmd *next = NULL;
613
614 while (current != NULL) {
615 /* Save pointer to next element */
616 next = current->next;
617
618 /* Free payloads: OUT payload can be freed immediately */
619 free(current->payload_out);
620 current->payload_out = NULL;
621
622 /* IN payload MUST be freed ONLY if no other commands use the
623 * payload_in_start buffer */
624 if (current->free_payload_in_start == true) {
625 free(current->payload_in_start);
626 current->payload_in_start = NULL;
627 current->payload_in = NULL;
628 }
629
630 /* Free queue element */
631 free(current);
632
633 /* Proceed with next element */
634 current = next;
635 }
636
637 device->commands_in_queue = 0;
638 device->queue_start = NULL;
639 device->queue_end = NULL;
640 }
641
642 /**
643 * Add a command to the OpenULINK command queue.
644 *
645 * @param device pointer to struct ulink identifying ULINK driver instance.
646 * @param ulink_cmd pointer to command that shall be appended to the OpenULINK
647 * command queue.
648 * @return on success: ERROR_OK
649 * @return on failure: ERROR_FAIL
650 */
651 static int ulink_append_queue(struct ulink *device, struct ulink_cmd *ulink_cmd)
652 {
653 int newsize_out, newsize_in;
654 int ret = ERROR_OK;
655
656 newsize_out = ulink_get_queue_size(device, PAYLOAD_DIRECTION_OUT) + 1
657 + ulink_cmd->payload_out_size;
658
659 newsize_in = ulink_get_queue_size(device, PAYLOAD_DIRECTION_IN)
660 + ulink_cmd->payload_in_size;
661
662 /* Check if the current command can be appended to the queue */
663 if ((newsize_out > 64) || (newsize_in > 64)) {
664 /* New command does not fit. Execute all commands in queue before starting
665 * new queue with the current command as first entry. */
666 ret = ulink_execute_queued_commands(device, USB_TIMEOUT);
667
668 if (ret == ERROR_OK)
669 ret = ulink_post_process_queue(device);
670
671 if (ret == ERROR_OK)
672 ulink_clear_queue(device);
673 }
674
675 if (device->queue_start == NULL) {
676 /* Queue was empty */
677 device->commands_in_queue = 1;
678
679 device->queue_start = ulink_cmd;
680 device->queue_end = ulink_cmd;
681 } else {
682 /* There are already commands in the queue */
683 device->commands_in_queue++;
684
685 device->queue_end->next = ulink_cmd;
686 device->queue_end = ulink_cmd;
687 }
688
689 if (ret != ERROR_OK)
690 ulink_clear_queue(device);
691
692 return ret;
693 }
694
695 /**
696 * Sends all queued OpenULINK commands to the ULINK for execution.
697 *
698 * @param device pointer to struct ulink identifying ULINK driver instance.
699 * @return on success: ERROR_OK
700 * @return on failure: ERROR_FAIL
701 */
702 static int ulink_execute_queued_commands(struct ulink *device, int timeout)
703 {
704 struct ulink_cmd *current;
705 int ret, i, index_out, index_in, count_out, count_in, transferred;
706 uint8_t buffer[64];
707
708 if (LOG_LEVEL_IS(LOG_LVL_DEBUG_IO))
709 ulink_print_queue(device);
710
711 index_out = 0;
712 count_out = 0;
713 count_in = 0;
714
715 for (current = device->queue_start; current; current = current->next) {
716 /* Add command to packet */
717 buffer[index_out] = current->id;
718 index_out++;
719 count_out++;
720
721 for (i = 0; i < current->payload_out_size; i++)
722 buffer[index_out + i] = current->payload_out[i];
723 index_out += current->payload_out_size;
724 count_in += current->payload_in_size;
725 count_out += current->payload_out_size;
726 }
727
728 /* Send packet to ULINK */
729 ret = libusb_bulk_transfer(device->usb_device_handle, device->ep_out,
730 (unsigned char *)buffer, count_out, &transferred, timeout);
731 if (ret != 0)
732 return ERROR_FAIL;
733 if (transferred != count_out)
734 return ERROR_FAIL;
735
736 /* Wait for response if commands contain IN payload data */
737 if (count_in > 0) {
738 ret = libusb_bulk_transfer(device->usb_device_handle, device->ep_in,
739 (unsigned char *)buffer, 64, &transferred, timeout);
740 if (ret != 0)
741 return ERROR_FAIL;
742 if (transferred != count_in)
743 return ERROR_FAIL;
744
745 /* Write back IN payload data */
746 index_in = 0;
747 for (current = device->queue_start; current; current = current->next) {
748 for (i = 0; i < current->payload_in_size; i++) {
749 current->payload_in[i] = buffer[index_in];
750 index_in++;
751 }
752 }
753 }
754
755 return ERROR_OK;
756 }
757
758 /**
759 * Convert an OpenULINK command ID (\a id) to a human-readable string.
760 *
761 * @param id the OpenULINK command ID.
762 * @return the corresponding human-readable string.
763 */
764 static const char *ulink_cmd_id_string(uint8_t id)
765 {
766 switch (id) {
767 case CMD_SCAN_IN:
768 return "CMD_SCAN_IN";
769 case CMD_SLOW_SCAN_IN:
770 return "CMD_SLOW_SCAN_IN";
771 case CMD_SCAN_OUT:
772 return "CMD_SCAN_OUT";
773 case CMD_SLOW_SCAN_OUT:
774 return "CMD_SLOW_SCAN_OUT";
775 case CMD_SCAN_IO:
776 return "CMD_SCAN_IO";
777 case CMD_SLOW_SCAN_IO:
778 return "CMD_SLOW_SCAN_IO";
779 case CMD_CLOCK_TMS:
780 return "CMD_CLOCK_TMS";
781 case CMD_SLOW_CLOCK_TMS:
782 return "CMD_SLOW_CLOCK_TMS";
783 case CMD_CLOCK_TCK:
784 return "CMD_CLOCK_TCK";
785 case CMD_SLOW_CLOCK_TCK:
786 return "CMD_SLOW_CLOCK_TCK";
787 case CMD_SLEEP_US:
788 return "CMD_SLEEP_US";
789 case CMD_SLEEP_MS:
790 return "CMD_SLEEP_MS";
791 case CMD_GET_SIGNALS:
792 return "CMD_GET_SIGNALS";
793 case CMD_SET_SIGNALS:
794 return "CMD_SET_SIGNALS";
795 case CMD_CONFIGURE_TCK_FREQ:
796 return "CMD_CONFIGURE_TCK_FREQ";
797 case CMD_SET_LEDS:
798 return "CMD_SET_LEDS";
799 case CMD_TEST:
800 return "CMD_TEST";
801 default:
802 return "CMD_UNKNOWN";
803 }
804 }
805
806 /**
807 * Print one OpenULINK command to stdout.
808 *
809 * @param ulink_cmd pointer to OpenULINK command.
810 */
811 static void ulink_print_command(struct ulink_cmd *ulink_cmd)
812 {
813 int i;
814
815 printf(" %-22s | OUT size = %i, bytes = 0x",
816 ulink_cmd_id_string(ulink_cmd->id), ulink_cmd->payload_out_size);
817
818 for (i = 0; i < ulink_cmd->payload_out_size; i++)
819 printf("%02X ", ulink_cmd->payload_out[i]);
820 printf("\n | IN size = %i\n",
821 ulink_cmd->payload_in_size);
822 }
823
824 /**
825 * Print the OpenULINK command queue to stdout.
826 *
827 * @param device pointer to struct ulink identifying ULINK driver instance.
828 */
829 static void ulink_print_queue(struct ulink *device)
830 {
831 struct ulink_cmd *current;
832
833 printf("OpenULINK command queue:\n");
834
835 for (current = device->queue_start; current; current = current->next)
836 ulink_print_command(current);
837 }
838
839 /**
840 * Perform JTAG scan
841 *
842 * Creates and appends a JTAG scan command to the OpenULINK command queue.
843 * A JTAG scan consists of three steps:
844 * - Move to the desired SHIFT state, depending on scan type (IR/DR scan).
845 * - Shift TDI data into the JTAG chain, optionally reading the TDO pin.
846 * - Move to the desired end state.
847 *
848 * @param device pointer to struct ulink identifying ULINK driver instance.
849 * @param scan_type the type of the scan (IN, OUT, IO (bidirectional)).
850 * @param scan_size_bits number of bits to shift into the JTAG chain.
851 * @param tdi pointer to array containing TDI data.
852 * @param tdo_start pointer to first element of array where TDO data shall be
853 * stored. See #ulink_cmd for details.
854 * @param tdo pointer to array where TDO data shall be stored
855 * @param tms_count_start number of TMS state transitions to perform BEFORE
856 * shifting data into the JTAG chain.
857 * @param tms_sequence_start sequence of TMS state transitions that will be
858 * performed BEFORE shifting data into the JTAG chain.
859 * @param tms_count_end number of TMS state transitions to perform AFTER
860 * shifting data into the JTAG chain.
861 * @param tms_sequence_end sequence of TMS state transitions that will be
862 * performed AFTER shifting data into the JTAG chain.
863 * @param origin pointer to OpenOCD command that generated this scan command.
864 * @param postprocess whether this command needs to be post-processed after
865 * execution.
866 * @return on success: ERROR_OK
867 * @return on failure: ERROR_FAIL
868 */
869 static int ulink_append_scan_cmd(struct ulink *device, enum scan_type scan_type,
870 int scan_size_bits, uint8_t *tdi, uint8_t *tdo_start, uint8_t *tdo,
871 uint8_t tms_count_start, uint8_t tms_sequence_start, uint8_t tms_count_end,
872 uint8_t tms_sequence_end, struct jtag_command *origin, bool postprocess)
873 {
874 struct ulink_cmd *cmd = calloc(1, sizeof(struct ulink_cmd));
875 int ret, i, scan_size_bytes;
876 uint8_t bits_last_byte;
877
878 if (cmd == NULL)
879 return ERROR_FAIL;
880
881 /* Check size of command. USB buffer can hold 64 bytes, 1 byte is command ID,
882 * 5 bytes are setup data -> 58 remaining payload bytes for TDI data */
883 if (scan_size_bits > (58 * 8)) {
884 LOG_ERROR("BUG: Tried to create CMD_SCAN_IO OpenULINK command with too"
885 " large payload");
886 free(cmd);
887 return ERROR_FAIL;
888 }
889
890 scan_size_bytes = DIV_ROUND_UP(scan_size_bits, 8);
891
892 bits_last_byte = scan_size_bits % 8;
893 if (bits_last_byte == 0)
894 bits_last_byte = 8;
895
896 /* Allocate out_payload depending on scan type */
897 switch (scan_type) {
898 case SCAN_IN:
899 if (device->delay_scan_in < 0)
900 cmd->id = CMD_SCAN_IN;
901 else
902 cmd->id = CMD_SLOW_SCAN_IN;
903 ret = ulink_allocate_payload(cmd, 5, PAYLOAD_DIRECTION_OUT);
904 break;
905 case SCAN_OUT:
906 if (device->delay_scan_out < 0)
907 cmd->id = CMD_SCAN_OUT;
908 else
909 cmd->id = CMD_SLOW_SCAN_OUT;
910 ret = ulink_allocate_payload(cmd, scan_size_bytes + 5, PAYLOAD_DIRECTION_OUT);
911 break;
912 case SCAN_IO:
913 if (device->delay_scan_io < 0)
914 cmd->id = CMD_SCAN_IO;
915 else
916 cmd->id = CMD_SLOW_SCAN_IO;
917 ret = ulink_allocate_payload(cmd, scan_size_bytes + 5, PAYLOAD_DIRECTION_OUT);
918 break;
919 default:
920 LOG_ERROR("BUG: ulink_append_scan_cmd() encountered an unknown scan type");
921 ret = ERROR_FAIL;
922 break;
923 }
924
925 if (ret != ERROR_OK) {
926 free(cmd);
927 return ret;
928 }
929
930 /* Build payload_out that is common to all scan types */
931 cmd->payload_out[0] = scan_size_bytes & 0xFF;
932 cmd->payload_out[1] = bits_last_byte & 0xFF;
933 cmd->payload_out[2] = ((tms_count_start & 0x0F) << 4) | (tms_count_end & 0x0F);
934 cmd->payload_out[3] = tms_sequence_start;
935 cmd->payload_out[4] = tms_sequence_end;
936
937 /* Setup payload_out for types with OUT transfer */
938 if ((scan_type == SCAN_OUT) || (scan_type == SCAN_IO)) {
939 for (i = 0; i < scan_size_bytes; i++)
940 cmd->payload_out[i + 5] = tdi[i];
941 }
942
943 /* Setup payload_in pointers for types with IN transfer */
944 if ((scan_type == SCAN_IN) || (scan_type == SCAN_IO)) {
945 cmd->payload_in_start = tdo_start;
946 cmd->payload_in = tdo;
947 cmd->payload_in_size = scan_size_bytes;
948 }
949
950 cmd->needs_postprocessing = postprocess;
951 cmd->cmd_origin = origin;
952
953 /* For scan commands, we free payload_in_start only when the command is
954 * the last in a series of split commands or a stand-alone command */
955 cmd->free_payload_in_start = postprocess;
956
957 return ulink_append_queue(device, cmd);
958 }
959
960 /**
961 * Perform TAP state transitions
962 *
963 * @param device pointer to struct ulink identifying ULINK driver instance.
964 * @param count defines the number of TCK clock cycles generated (up to 8).
965 * @param sequence defines the TMS pin levels for each state transition. The
966 * Least-Significant Bit is read first.
967 * @return on success: ERROR_OK
968 * @return on failure: ERROR_FAIL
969 */
970 static int ulink_append_clock_tms_cmd(struct ulink *device, uint8_t count,
971 uint8_t sequence)
972 {
973 struct ulink_cmd *cmd = calloc(1, sizeof(struct ulink_cmd));
974 int ret;
975
976 if (cmd == NULL)
977 return ERROR_FAIL;
978
979 if (device->delay_clock_tms < 0)
980 cmd->id = CMD_CLOCK_TMS;
981 else
982 cmd->id = CMD_SLOW_CLOCK_TMS;
983
984 /* CMD_CLOCK_TMS has two OUT payload bytes and zero IN payload bytes */
985 ret = ulink_allocate_payload(cmd, 2, PAYLOAD_DIRECTION_OUT);
986 if (ret != ERROR_OK) {
987 free(cmd);
988 return ret;
989 }
990
991 cmd->payload_out[0] = count;
992 cmd->payload_out[1] = sequence;
993
994 return ulink_append_queue(device, cmd);
995 }
996
997 /**
998 * Generate a defined amount of TCK clock cycles
999 *
1000 * All other JTAG signals are left unchanged.
1001 *
1002 * @param device pointer to struct ulink identifying ULINK driver instance.
1003 * @param count the number of TCK clock cycles to generate.
1004 * @return on success: ERROR_OK
1005 * @return on failure: ERROR_FAIL
1006 */
1007 static int ulink_append_clock_tck_cmd(struct ulink *device, uint16_t count)
1008 {
1009 struct ulink_cmd *cmd = calloc(1, sizeof(struct ulink_cmd));
1010 int ret;
1011
1012 if (cmd == NULL)
1013 return ERROR_FAIL;
1014
1015 if (device->delay_clock_tck < 0)
1016 cmd->id = CMD_CLOCK_TCK;
1017 else
1018 cmd->id = CMD_SLOW_CLOCK_TCK;
1019
1020 /* CMD_CLOCK_TCK has two OUT payload bytes and zero IN payload bytes */
1021 ret = ulink_allocate_payload(cmd, 2, PAYLOAD_DIRECTION_OUT);
1022 if (ret != ERROR_OK) {
1023 free(cmd);
1024 return ret;
1025 }
1026
1027 cmd->payload_out[0] = count & 0xff;
1028 cmd->payload_out[1] = (count >> 8) & 0xff;
1029
1030 return ulink_append_queue(device, cmd);
1031 }
1032
1033 /**
1034 * Read JTAG signals.
1035 *
1036 * @param device pointer to struct ulink identifying ULINK driver instance.
1037 * @return on success: ERROR_OK
1038 * @return on failure: ERROR_FAIL
1039 */
1040 static int ulink_append_get_signals_cmd(struct ulink *device)
1041 {
1042 struct ulink_cmd *cmd = calloc(1, sizeof(struct ulink_cmd));
1043 int ret;
1044
1045 if (cmd == NULL)
1046 return ERROR_FAIL;
1047
1048 cmd->id = CMD_GET_SIGNALS;
1049 cmd->needs_postprocessing = true;
1050
1051 /* CMD_GET_SIGNALS has two IN payload bytes */
1052 ret = ulink_allocate_payload(cmd, 2, PAYLOAD_DIRECTION_IN);
1053
1054 if (ret != ERROR_OK) {
1055 free(cmd);
1056 return ret;
1057 }
1058
1059 return ulink_append_queue(device, cmd);
1060 }
1061
1062 /**
1063 * Arbitrarily set JTAG output signals.
1064 *
1065 * @param device pointer to struct ulink identifying ULINK driver instance.
1066 * @param low defines which signals will be de-asserted. Each bit corresponds
1067 * to a JTAG signal:
1068 * - SIGNAL_TDI
1069 * - SIGNAL_TMS
1070 * - SIGNAL_TCK
1071 * - SIGNAL_TRST
1072 * - SIGNAL_BRKIN
1073 * - SIGNAL_RESET
1074 * - SIGNAL_OCDSE
1075 * @param high defines which signals will be asserted.
1076 * @return on success: ERROR_OK
1077 * @return on failure: ERROR_FAIL
1078 */
1079 static int ulink_append_set_signals_cmd(struct ulink *device, uint8_t low,
1080 uint8_t high)
1081 {
1082 struct ulink_cmd *cmd = calloc(1, sizeof(struct ulink_cmd));
1083 int ret;
1084
1085 if (cmd == NULL)
1086 return ERROR_FAIL;
1087
1088 cmd->id = CMD_SET_SIGNALS;
1089
1090 /* CMD_SET_SIGNALS has two OUT payload bytes and zero IN payload bytes */
1091 ret = ulink_allocate_payload(cmd, 2, PAYLOAD_DIRECTION_OUT);
1092
1093 if (ret != ERROR_OK) {
1094 free(cmd);
1095 return ret;
1096 }
1097
1098 cmd->payload_out[0] = low;
1099 cmd->payload_out[1] = high;
1100
1101 return ulink_append_queue(device, cmd);
1102 }
1103
1104 /**
1105 * Sleep for a pre-defined number of microseconds
1106 *
1107 * @param device pointer to struct ulink identifying ULINK driver instance.
1108 * @param us the number microseconds to sleep.
1109 * @return on success: ERROR_OK
1110 * @return on failure: ERROR_FAIL
1111 */
1112 static int ulink_append_sleep_cmd(struct ulink *device, uint32_t us)
1113 {
1114 struct ulink_cmd *cmd = calloc(1, sizeof(struct ulink_cmd));
1115 int ret;
1116
1117 if (cmd == NULL)
1118 return ERROR_FAIL;
1119
1120 cmd->id = CMD_SLEEP_US;
1121
1122 /* CMD_SLEEP_US has two OUT payload bytes and zero IN payload bytes */
1123 ret = ulink_allocate_payload(cmd, 2, PAYLOAD_DIRECTION_OUT);
1124
1125 if (ret != ERROR_OK) {
1126 free(cmd);
1127 return ret;
1128 }
1129
1130 cmd->payload_out[0] = us & 0x00ff;
1131 cmd->payload_out[1] = (us >> 8) & 0x00ff;
1132
1133 return ulink_append_queue(device, cmd);
1134 }
1135
1136 /**
1137 * Set TCK delay counters
1138 *
1139 * @param device pointer to struct ulink identifying ULINK driver instance.
1140 * @param delay_scan_in delay count top value in jtag_slow_scan_in() function.
1141 * @param delay_scan_out delay count top value in jtag_slow_scan_out() function.
1142 * @param delay_scan_io delay count top value in jtag_slow_scan_io() function.
1143 * @param delay_tck delay count top value in jtag_clock_tck() function.
1144 * @param delay_tms delay count top value in jtag_slow_clock_tms() function.
1145 * @return on success: ERROR_OK
1146 * @return on failure: ERROR_FAIL
1147 */
1148 static int ulink_append_configure_tck_cmd(struct ulink *device, int delay_scan_in,
1149 int delay_scan_out, int delay_scan_io, int delay_tck, int delay_tms)
1150 {
1151 struct ulink_cmd *cmd = calloc(1, sizeof(struct ulink_cmd));
1152 int ret;
1153
1154 if (cmd == NULL)
1155 return ERROR_FAIL;
1156
1157 cmd->id = CMD_CONFIGURE_TCK_FREQ;
1158
1159 /* CMD_CONFIGURE_TCK_FREQ has five OUT payload bytes and zero
1160 * IN payload bytes */
1161 ret = ulink_allocate_payload(cmd, 5, PAYLOAD_DIRECTION_OUT);
1162 if (ret != ERROR_OK) {
1163 free(cmd);
1164 return ret;
1165 }
1166
1167 if (delay_scan_in < 0)
1168 cmd->payload_out[0] = 0;
1169 else
1170 cmd->payload_out[0] = (uint8_t)delay_scan_in;
1171
1172 if (delay_scan_out < 0)
1173 cmd->payload_out[1] = 0;
1174 else
1175 cmd->payload_out[1] = (uint8_t)delay_scan_out;
1176
1177 if (delay_scan_io < 0)
1178 cmd->payload_out[2] = 0;
1179 else
1180 cmd->payload_out[2] = (uint8_t)delay_scan_io;
1181
1182 if (delay_tck < 0)
1183 cmd->payload_out[3] = 0;
1184 else
1185 cmd->payload_out[3] = (uint8_t)delay_tck;
1186
1187 if (delay_tms < 0)
1188 cmd->payload_out[4] = 0;
1189 else
1190 cmd->payload_out[4] = (uint8_t)delay_tms;
1191
1192 return ulink_append_queue(device, cmd);
1193 }
1194
1195 /**
1196 * Turn on/off ULINK LEDs.
1197 *
1198 * @param device pointer to struct ulink identifying ULINK driver instance.
1199 * @param led_state which LED(s) to turn on or off. The following bits
1200 * influence the LEDS:
1201 * - Bit 0: Turn COM LED on
1202 * - Bit 1: Turn RUN LED on
1203 * - Bit 2: Turn COM LED off
1204 * - Bit 3: Turn RUN LED off
1205 * If both the on-bit and the off-bit for the same LED is set, the LED is
1206 * turned off.
1207 * @return on success: ERROR_OK
1208 * @return on failure: ERROR_FAIL
1209 */
1210 static int ulink_append_led_cmd(struct ulink *device, uint8_t led_state)
1211 {
1212 struct ulink_cmd *cmd = calloc(1, sizeof(struct ulink_cmd));
1213 int ret;
1214
1215 if (cmd == NULL)
1216 return ERROR_FAIL;
1217
1218 cmd->id = CMD_SET_LEDS;
1219
1220 /* CMD_SET_LEDS has one OUT payload byte and zero IN payload bytes */
1221 ret = ulink_allocate_payload(cmd, 1, PAYLOAD_DIRECTION_OUT);
1222 if (ret != ERROR_OK) {
1223 free(cmd);
1224 return ret;
1225 }
1226
1227 cmd->payload_out[0] = led_state;
1228
1229 return ulink_append_queue(device, cmd);
1230 }
1231
1232 /**
1233 * Test command. Used to check if the ULINK device is ready to accept new
1234 * commands.
1235 *
1236 * @param device pointer to struct ulink identifying ULINK driver instance.
1237 * @return on success: ERROR_OK
1238 * @return on failure: ERROR_FAIL
1239 */
1240 static int ulink_append_test_cmd(struct ulink *device)
1241 {
1242 struct ulink_cmd *cmd = calloc(1, sizeof(struct ulink_cmd));
1243 int ret;
1244
1245 if (cmd == NULL)
1246 return ERROR_FAIL;
1247
1248 cmd->id = CMD_TEST;
1249
1250 /* CMD_TEST has one OUT payload byte and zero IN payload bytes */
1251 ret = ulink_allocate_payload(cmd, 1, PAYLOAD_DIRECTION_OUT);
1252 if (ret != ERROR_OK) {
1253 free(cmd);
1254 return ret;
1255 }
1256
1257 cmd->payload_out[0] = 0xAA;
1258
1259 return ulink_append_queue(device, cmd);
1260 }
1261
1262 /****************** OpenULINK TCK frequency helper functions ******************/
1263
1264 /**
1265 * Calculate delay values for a given TCK frequency.
1266 *
1267 * The OpenULINK firmware uses five different speed values for different
1268 * commands. These speed values are calculated in these functions.
1269 *
1270 * The five different commands which support variable TCK frequency are
1271 * implemented twice in the firmware:
1272 * 1. Maximum possible frequency without any artificial delay
1273 * 2. Variable frequency with artificial linear delay loop
1274 *
1275 * To set the ULINK to maximum frequency, it is only necessary to use the
1276 * corresponding command IDs. To set the ULINK to a lower frequency, the
1277 * delay loop top values have to be calculated first. Then, a
1278 * CMD_CONFIGURE_TCK_FREQ command needs to be sent to the ULINK device.
1279 *
1280 * The delay values are described by linear equations:
1281 * t = k * x + d
1282 * (t = period, k = constant, x = delay value, d = constant)
1283 *
1284 * Thus, the delay can be calculated as in the following equation:
1285 * x = (t - d) / k
1286 *
1287 * The constants in these equations have been determined and validated by
1288 * measuring the frequency resulting from different delay values.
1289 *
1290 * @param type for which command to calculate the delay value.
1291 * @param f TCK frequency for which to calculate the delay value in Hz.
1292 * @param delay where to store resulting delay value.
1293 * @return on success: ERROR_OK
1294 * @return on failure: ERROR_FAIL
1295 */
1296 static int ulink_calculate_delay(enum ulink_delay_type type, long f, int *delay)
1297 {
1298 float t, x, x_ceil;
1299
1300 /* Calculate period of requested TCK frequency */
1301 t = 1.0 / (float)(f);
1302
1303 switch (type) {
1304 case DELAY_CLOCK_TCK:
1305 x = (t - (float)(6E-6)) / (float)(4E-6);
1306 break;
1307 case DELAY_CLOCK_TMS:
1308 x = (t - (float)(8.5E-6)) / (float)(4E-6);
1309 break;
1310 case DELAY_SCAN_IN:
1311 x = (t - (float)(8.8308E-6)) / (float)(4E-6);
1312 break;
1313 case DELAY_SCAN_OUT:
1314 x = (t - (float)(1.0527E-5)) / (float)(4E-6);
1315 break;
1316 case DELAY_SCAN_IO:
1317 x = (t - (float)(1.3132E-5)) / (float)(4E-6);
1318 break;
1319 default:
1320 return ERROR_FAIL;
1321 break;
1322 }
1323
1324 /* Check if the delay value is negative. This happens when a frequency is
1325 * requested that is too high for the delay loop implementation. In this
1326 * case, set delay value to zero. */
1327 if (x < 0)
1328 x = 0;
1329
1330 /* We need to convert the exact delay value to an integer. Therefore, we
1331 * round the exact value UP to ensure that the resulting frequency is NOT
1332 * higher than the requested frequency. */
1333 x_ceil = ceilf(x);
1334
1335 /* Check if the value is within limits */
1336 if (x_ceil > 255)
1337 return ERROR_FAIL;
1338
1339 *delay = (int)x_ceil;
1340
1341 return ERROR_OK;
1342 }
1343
1344 /**
1345 * Calculate frequency for a given delay value.
1346 *
1347 * Similar to the #ulink_calculate_delay function, this function calculates the
1348 * TCK frequency for a given delay value by using linear equations of the form:
1349 * t = k * x + d
1350 * (t = period, k = constant, x = delay value, d = constant)
1351 *
1352 * @param type for which command to calculate the delay value.
1353 * @param delay delay value for which to calculate the resulting TCK frequency.
1354 * @return the resulting TCK frequency
1355 */
1356 static long ulink_calculate_frequency(enum ulink_delay_type type, int delay)
1357 {
1358 float t, f_float;
1359
1360 if (delay > 255)
1361 return 0;
1362
1363 switch (type) {
1364 case DELAY_CLOCK_TCK:
1365 if (delay < 0)
1366 t = (float)(2.666E-6);
1367 else
1368 t = (float)(4E-6) * (float)(delay) + (float)(6E-6);
1369 break;
1370 case DELAY_CLOCK_TMS:
1371 if (delay < 0)
1372 t = (float)(5.666E-6);
1373 else
1374 t = (float)(4E-6) * (float)(delay) + (float)(8.5E-6);
1375 break;
1376 case DELAY_SCAN_IN:
1377 if (delay < 0)
1378 t = (float)(5.5E-6);
1379 else
1380 t = (float)(4E-6) * (float)(delay) + (float)(8.8308E-6);
1381 break;
1382 case DELAY_SCAN_OUT:
1383 if (delay < 0)
1384 t = (float)(7.0E-6);
1385 else
1386 t = (float)(4E-6) * (float)(delay) + (float)(1.0527E-5);
1387 break;
1388 case DELAY_SCAN_IO:
1389 if (delay < 0)
1390 t = (float)(9.926E-6);
1391 else
1392 t = (float)(4E-6) * (float)(delay) + (float)(1.3132E-5);
1393 break;
1394 default:
1395 return 0;
1396 }
1397
1398 f_float = 1.0 / t;
1399 return roundf(f_float);
1400 }
1401
1402 /******************* Interface between OpenULINK and OpenOCD ******************/
1403
1404 /**
1405 * Sets the end state follower (see interface.h) if \a endstate is a stable
1406 * state.
1407 *
1408 * @param endstate the state the end state follower should be set to.
1409 */
1410 static void ulink_set_end_state(tap_state_t endstate)
1411 {
1412 if (tap_is_state_stable(endstate))
1413 tap_set_end_state(endstate);
1414 else {
1415 LOG_ERROR("BUG: %s is not a valid end state", tap_state_name(endstate));
1416 exit(EXIT_FAILURE);
1417 }
1418 }
1419
1420 /**
1421 * Move from the current TAP state to the current TAP end state.
1422 *
1423 * @param device pointer to struct ulink identifying ULINK driver instance.
1424 * @return on success: ERROR_OK
1425 * @return on failure: ERROR_FAIL
1426 */
1427 static int ulink_queue_statemove(struct ulink *device)
1428 {
1429 uint8_t tms_sequence, tms_count;
1430 int ret;
1431
1432 if (tap_get_state() == tap_get_end_state()) {
1433 /* Do nothing if we are already there */
1434 return ERROR_OK;
1435 }
1436
1437 tms_sequence = tap_get_tms_path(tap_get_state(), tap_get_end_state());
1438 tms_count = tap_get_tms_path_len(tap_get_state(), tap_get_end_state());
1439
1440 ret = ulink_append_clock_tms_cmd(device, tms_count, tms_sequence);
1441
1442 if (ret == ERROR_OK)
1443 tap_set_state(tap_get_end_state());
1444
1445 return ret;
1446 }
1447
1448 /**
1449 * Perform a scan operation on a JTAG register.
1450 *
1451 * @param device pointer to struct ulink identifying ULINK driver instance.
1452 * @param cmd pointer to the command that shall be executed.
1453 * @return on success: ERROR_OK
1454 * @return on failure: ERROR_FAIL
1455 */
1456 static int ulink_queue_scan(struct ulink *device, struct jtag_command *cmd)
1457 {
1458 uint32_t scan_size_bits, scan_size_bytes, bits_last_scan;
1459 uint32_t scans_max_payload, bytecount;
1460 uint8_t *tdi_buffer_start = NULL, *tdi_buffer = NULL;
1461 uint8_t *tdo_buffer_start = NULL, *tdo_buffer = NULL;
1462
1463 uint8_t first_tms_count, first_tms_sequence;
1464 uint8_t last_tms_count, last_tms_sequence;
1465
1466 uint8_t tms_count_pause, tms_sequence_pause;
1467 uint8_t tms_count_resume, tms_sequence_resume;
1468
1469 uint8_t tms_count_start, tms_sequence_start;
1470 uint8_t tms_count_end, tms_sequence_end;
1471
1472 enum scan_type type;
1473 int ret;
1474
1475 /* Determine scan size */
1476 scan_size_bits = jtag_scan_size(cmd->cmd.scan);
1477 scan_size_bytes = DIV_ROUND_UP(scan_size_bits, 8);
1478
1479 /* Determine scan type (IN/OUT/IO) */
1480 type = jtag_scan_type(cmd->cmd.scan);
1481
1482 /* Determine number of scan commands with maximum payload */
1483 scans_max_payload = scan_size_bytes / 58;
1484
1485 /* Determine size of last shift command */
1486 bits_last_scan = scan_size_bits - (scans_max_payload * 58 * 8);
1487
1488 /* Allocate TDO buffer if required */
1489 if ((type == SCAN_IN) || (type == SCAN_IO)) {
1490 tdo_buffer_start = calloc(sizeof(uint8_t), scan_size_bytes);
1491
1492 if (tdo_buffer_start == NULL)
1493 return ERROR_FAIL;
1494
1495 tdo_buffer = tdo_buffer_start;
1496 }
1497
1498 /* Fill TDI buffer if required */
1499 if ((type == SCAN_OUT) || (type == SCAN_IO)) {
1500 jtag_build_buffer(cmd->cmd.scan, &tdi_buffer_start);
1501 tdi_buffer = tdi_buffer_start;
1502 }
1503
1504 /* Get TAP state transitions */
1505 if (cmd->cmd.scan->ir_scan) {
1506 ulink_set_end_state(TAP_IRSHIFT);
1507 first_tms_count = tap_get_tms_path_len(tap_get_state(), tap_get_end_state());
1508 first_tms_sequence = tap_get_tms_path(tap_get_state(), tap_get_end_state());
1509
1510 tap_set_state(TAP_IRSHIFT);
1511 tap_set_end_state(cmd->cmd.scan->end_state);
1512 last_tms_count = tap_get_tms_path_len(tap_get_state(), tap_get_end_state());
1513 last_tms_sequence = tap_get_tms_path(tap_get_state(), tap_get_end_state());
1514
1515 /* TAP state transitions for split scans */
1516 tms_count_pause = tap_get_tms_path_len(TAP_IRSHIFT, TAP_IRPAUSE);
1517 tms_sequence_pause = tap_get_tms_path(TAP_IRSHIFT, TAP_IRPAUSE);
1518 tms_count_resume = tap_get_tms_path_len(TAP_IRPAUSE, TAP_IRSHIFT);
1519 tms_sequence_resume = tap_get_tms_path(TAP_IRPAUSE, TAP_IRSHIFT);
1520 } else {
1521 ulink_set_end_state(TAP_DRSHIFT);
1522 first_tms_count = tap_get_tms_path_len(tap_get_state(), tap_get_end_state());
1523 first_tms_sequence = tap_get_tms_path(tap_get_state(), tap_get_end_state());
1524
1525 tap_set_state(TAP_DRSHIFT);
1526 tap_set_end_state(cmd->cmd.scan->end_state);
1527 last_tms_count = tap_get_tms_path_len(tap_get_state(), tap_get_end_state());
1528 last_tms_sequence = tap_get_tms_path(tap_get_state(), tap_get_end_state());
1529
1530 /* TAP state transitions for split scans */
1531 tms_count_pause = tap_get_tms_path_len(TAP_DRSHIFT, TAP_DRPAUSE);
1532 tms_sequence_pause = tap_get_tms_path(TAP_DRSHIFT, TAP_DRPAUSE);
1533 tms_count_resume = tap_get_tms_path_len(TAP_DRPAUSE, TAP_DRSHIFT);
1534 tms_sequence_resume = tap_get_tms_path(TAP_DRPAUSE, TAP_DRSHIFT);
1535 }
1536
1537 /* Generate scan commands */
1538 bytecount = scan_size_bytes;
1539 while (bytecount > 0) {
1540 if (bytecount == scan_size_bytes) {
1541 /* This is the first scan */
1542 tms_count_start = first_tms_count;
1543 tms_sequence_start = first_tms_sequence;
1544 } else {
1545 /* Resume from previous scan */
1546 tms_count_start = tms_count_resume;
1547 tms_sequence_start = tms_sequence_resume;
1548 }
1549
1550 if (bytecount > 58) { /* Full scan, at least one scan will follow */
1551 tms_count_end = tms_count_pause;
1552 tms_sequence_end = tms_sequence_pause;
1553
1554 ret = ulink_append_scan_cmd(device,
1555 type,
1556 58 * 8,
1557 tdi_buffer,
1558 tdo_buffer_start,
1559 tdo_buffer,
1560 tms_count_start,
1561 tms_sequence_start,
1562 tms_count_end,
1563 tms_sequence_end,
1564 cmd,
1565 false);
1566
1567 bytecount -= 58;
1568
1569 /* Update TDI and TDO buffer pointers */
1570 if (tdi_buffer_start != NULL)
1571 tdi_buffer += 58;
1572 if (tdo_buffer_start != NULL)
1573 tdo_buffer += 58;
1574 } else if (bytecount == 58) { /* Full scan, no further scans */
1575 tms_count_end = last_tms_count;
1576 tms_sequence_end = last_tms_sequence;
1577
1578 ret = ulink_append_scan_cmd(device,
1579 type,
1580 58 * 8,
1581 tdi_buffer,
1582 tdo_buffer_start,
1583 tdo_buffer,
1584 tms_count_start,
1585 tms_sequence_start,
1586 tms_count_end,
1587 tms_sequence_end,
1588 cmd,
1589 true);
1590
1591 bytecount = 0;
1592 } else {/* Scan with less than maximum payload, no further scans */
1593 tms_count_end = last_tms_count;
1594 tms_sequence_end = last_tms_sequence;
1595
1596 ret = ulink_append_scan_cmd(device,
1597 type,
1598 bits_last_scan,
1599 tdi_buffer,
1600 tdo_buffer_start,
1601 tdo_buffer,
1602 tms_count_start,
1603 tms_sequence_start,
1604 tms_count_end,
1605 tms_sequence_end,
1606 cmd,
1607 true);
1608
1609 bytecount = 0;
1610 }
1611
1612 if (ret != ERROR_OK) {
1613 free(tdi_buffer_start);
1614 free(tdo_buffer_start);
1615 return ret;
1616 }
1617 }
1618
1619 free(tdi_buffer_start);
1620
1621 /* Set current state to the end state requested by the command */
1622 tap_set_state(cmd->cmd.scan->end_state);
1623
1624 return ERROR_OK;
1625 }
1626
1627 /**
1628 * Move the TAP into the Test Logic Reset state.
1629 *
1630 * @param device pointer to struct ulink identifying ULINK driver instance.
1631 * @param cmd pointer to the command that shall be executed.
1632 * @return on success: ERROR_OK
1633 * @return on failure: ERROR_FAIL
1634 */
1635 static int ulink_queue_tlr_reset(struct ulink *device, struct jtag_command *cmd)
1636 {
1637 int ret;
1638
1639 ret = ulink_append_clock_tms_cmd(device, 5, 0xff);
1640
1641 if (ret == ERROR_OK)
1642 tap_set_state(TAP_RESET);
1643
1644 return ret;
1645 }
1646
1647 /**
1648 * Run Test.
1649 *
1650 * Generate TCK clock cycles while remaining
1651 * in the Run-Test/Idle state.
1652 *
1653 * @param device pointer to struct ulink identifying ULINK driver instance.
1654 * @param cmd pointer to the command that shall be executed.
1655 * @return on success: ERROR_OK
1656 * @return on failure: ERROR_FAIL
1657 */
1658 static int ulink_queue_runtest(struct ulink *device, struct jtag_command *cmd)
1659 {
1660 int ret;
1661
1662 /* Only perform statemove if the TAP currently isn't in the TAP_IDLE state */
1663 if (tap_get_state() != TAP_IDLE) {
1664 ulink_set_end_state(TAP_IDLE);
1665 ulink_queue_statemove(device);
1666 }
1667
1668 /* Generate the clock cycles */
1669 ret = ulink_append_clock_tck_cmd(device, cmd->cmd.runtest->num_cycles);
1670 if (ret != ERROR_OK)
1671 return ret;
1672
1673 /* Move to end state specified in command */
1674 if (cmd->cmd.runtest->end_state != tap_get_state()) {
1675 tap_set_end_state(cmd->cmd.runtest->end_state);
1676 ulink_queue_statemove(device);
1677 }
1678
1679 return ERROR_OK;
1680 }
1681
1682 /**
1683 * Execute a JTAG_RESET command
1684 *
1685 * @param cmd pointer to the command that shall be executed.
1686 * @return on success: ERROR_OK
1687 * @return on failure: ERROR_FAIL
1688 */
1689 static int ulink_queue_reset(struct ulink *device, struct jtag_command *cmd)
1690 {
1691 uint8_t low = 0, high = 0;
1692
1693 if (cmd->cmd.reset->trst) {
1694 tap_set_state(TAP_RESET);
1695 high |= SIGNAL_TRST;
1696 } else
1697 low |= SIGNAL_TRST;
1698
1699 if (cmd->cmd.reset->srst)
1700 high |= SIGNAL_RESET;
1701 else
1702 low |= SIGNAL_RESET;
1703
1704 return ulink_append_set_signals_cmd(device, low, high);
1705 }
1706
1707 /**
1708 * Move to one TAP state or several states in succession.
1709 *
1710 * @param device pointer to struct ulink identifying ULINK driver instance.
1711 * @param cmd pointer to the command that shall be executed.
1712 * @return on success: ERROR_OK
1713 * @return on failure: ERROR_FAIL
1714 */
1715 static int ulink_queue_pathmove(struct ulink *device, struct jtag_command *cmd)
1716 {
1717 int ret, i, num_states, batch_size, state_count;
1718 tap_state_t *path;
1719 uint8_t tms_sequence;
1720
1721 num_states = cmd->cmd.pathmove->num_states;
1722 path = cmd->cmd.pathmove->path;
1723 state_count = 0;
1724
1725 while (num_states > 0) {
1726 tms_sequence = 0;
1727
1728 /* Determine batch size */
1729 if (num_states >= 8)
1730 batch_size = 8;
1731 else
1732 batch_size = num_states;
1733
1734 for (i = 0; i < batch_size; i++) {
1735 if (tap_state_transition(tap_get_state(), false) == path[state_count]) {
1736 /* Append '0' transition: clear bit 'i' in tms_sequence */
1737 buf_set_u32(&tms_sequence, i, 1, 0x0);
1738 } else if (tap_state_transition(tap_get_state(), true)
1739 == path[state_count]) {
1740 /* Append '1' transition: set bit 'i' in tms_sequence */
1741 buf_set_u32(&tms_sequence, i, 1, 0x1);
1742 } else {
1743 /* Invalid state transition */
1744 LOG_ERROR("BUG: %s -> %s isn't a valid TAP state transition",
1745 tap_state_name(tap_get_state()),
1746 tap_state_name(path[state_count]));
1747 return ERROR_FAIL;
1748 }
1749
1750 tap_set_state(path[state_count]);
1751 state_count++;
1752 num_states--;
1753 }
1754
1755 /* Append CLOCK_TMS command to OpenULINK command queue */
1756 LOG_INFO(
1757 "pathmove batch: count = %i, sequence = 0x%x", batch_size, tms_sequence);
1758 ret = ulink_append_clock_tms_cmd(ulink_handle, batch_size, tms_sequence);
1759 if (ret != ERROR_OK)
1760 return ret;
1761 }
1762
1763 return ERROR_OK;
1764 }
1765
1766 /**
1767 * Sleep for a specific amount of time.
1768 *
1769 * @param device pointer to struct ulink identifying ULINK driver instance.
1770 * @param cmd pointer to the command that shall be executed.
1771 * @return on success: ERROR_OK
1772 * @return on failure: ERROR_FAIL
1773 */
1774 static int ulink_queue_sleep(struct ulink *device, struct jtag_command *cmd)
1775 {
1776 /* IMPORTANT! Due to the time offset in command execution introduced by
1777 * command queueing, this needs to be implemented in the ULINK device */
1778 return ulink_append_sleep_cmd(device, cmd->cmd.sleep->us);
1779 }
1780
1781 /**
1782 * Generate TCK cycles while remaining in a stable state.
1783 *
1784 * @param device pointer to struct ulink identifying ULINK driver instance.
1785 * @param cmd pointer to the command that shall be executed.
1786 */
1787 static int ulink_queue_stableclocks(struct ulink *device, struct jtag_command *cmd)
1788 {
1789 int ret;
1790 unsigned num_cycles;
1791
1792 if (!tap_is_state_stable(tap_get_state())) {
1793 LOG_ERROR("JTAG_STABLECLOCKS: state not stable");
1794 return ERROR_FAIL;
1795 }
1796
1797 num_cycles = cmd->cmd.stableclocks->num_cycles;
1798
1799 /* TMS stays either high (Test Logic Reset state) or low (all other states) */
1800 if (tap_get_state() == TAP_RESET)
1801 ret = ulink_append_set_signals_cmd(device, 0, SIGNAL_TMS);
1802 else
1803 ret = ulink_append_set_signals_cmd(device, SIGNAL_TMS, 0);
1804
1805 if (ret != ERROR_OK)
1806 return ret;
1807
1808 while (num_cycles > 0) {
1809 if (num_cycles > 0xFFFF) {
1810 /* OpenULINK CMD_CLOCK_TCK can generate up to 0xFFFF (uint16_t) cycles */
1811 ret = ulink_append_clock_tck_cmd(device, 0xFFFF);
1812 num_cycles -= 0xFFFF;
1813 } else {
1814 ret = ulink_append_clock_tck_cmd(device, num_cycles);
1815 num_cycles = 0;
1816 }
1817
1818 if (ret != ERROR_OK)
1819 return ret;
1820 }
1821
1822 return ERROR_OK;
1823 }
1824
1825 /**
1826 * Post-process JTAG_SCAN command
1827 *
1828 * @param ulink_cmd pointer to OpenULINK command that shall be processed.
1829 * @return on success: ERROR_OK
1830 * @return on failure: ERROR_FAIL
1831 */
1832 static int ulink_post_process_scan(struct ulink_cmd *ulink_cmd)
1833 {
1834 struct jtag_command *cmd = ulink_cmd->cmd_origin;
1835 int ret;
1836
1837 switch (jtag_scan_type(cmd->cmd.scan)) {
1838 case SCAN_IN:
1839 case SCAN_IO:
1840 ret = jtag_read_buffer(ulink_cmd->payload_in_start, cmd->cmd.scan);
1841 break;
1842 case SCAN_OUT:
1843 /* Nothing to do for OUT scans */
1844 ret = ERROR_OK;
1845 break;
1846 default:
1847 LOG_ERROR("BUG: ulink_post_process_scan() encountered an unknown"
1848 " JTAG scan type");
1849 ret = ERROR_FAIL;
1850 break;
1851 }
1852
1853 return ret;
1854 }
1855
1856 /**
1857 * Perform post-processing of commands after OpenULINK queue has been executed.
1858 *
1859 * @param device pointer to struct ulink identifying ULINK driver instance.
1860 * @return on success: ERROR_OK
1861 * @return on failure: ERROR_FAIL
1862 */
1863 static int ulink_post_process_queue(struct ulink *device)
1864 {
1865 struct ulink_cmd *current;
1866 struct jtag_command *openocd_cmd;
1867 int ret;
1868
1869 current = device->queue_start;
1870
1871 while (current != NULL) {
1872 openocd_cmd = current->cmd_origin;
1873
1874 /* Check if a corresponding OpenOCD command is stored for this
1875 * OpenULINK command */
1876 if ((current->needs_postprocessing == true) && (openocd_cmd != NULL)) {
1877 switch (openocd_cmd->type) {
1878 case JTAG_SCAN:
1879 ret = ulink_post_process_scan(current);
1880 break;
1881 case JTAG_TLR_RESET:
1882 case JTAG_RUNTEST:
1883 case JTAG_RESET:
1884 case JTAG_PATHMOVE:
1885 case JTAG_SLEEP:
1886 case JTAG_STABLECLOCKS:
1887 /* Nothing to do for these commands */
1888 ret = ERROR_OK;
1889 break;
1890 default:
1891 ret = ERROR_FAIL;
1892 LOG_ERROR("BUG: ulink_post_process_queue() encountered unknown JTAG "
1893 "command type");
1894 break;
1895 }
1896
1897 if (ret != ERROR_OK)
1898 return ret;
1899 }
1900
1901 current = current->next;
1902 }
1903
1904 return ERROR_OK;
1905 }
1906
1907 /**************************** JTAG driver functions ***************************/
1908
1909 /**
1910 * Executes the JTAG Command Queue.
1911 *
1912 * This is done in three stages: First, all OpenOCD commands are processed into
1913 * queued OpenULINK commands. Next, the OpenULINK command queue is sent to the
1914 * ULINK device and data received from the ULINK device is cached. Finally,
1915 * the post-processing function writes back data to the corresponding OpenOCD
1916 * commands.
1917 *
1918 * @return on success: ERROR_OK
1919 * @return on failure: ERROR_FAIL
1920 */
1921 static int ulink_execute_queue(void)
1922 {
1923 struct jtag_command *cmd = jtag_command_queue;
1924 int ret;
1925
1926 while (cmd) {
1927 switch (cmd->type) {
1928 case JTAG_SCAN:
1929 ret = ulink_queue_scan(ulink_handle, cmd);
1930 break;
1931 case JTAG_TLR_RESET:
1932 ret = ulink_queue_tlr_reset(ulink_handle, cmd);
1933 break;
1934 case JTAG_RUNTEST:
1935 ret = ulink_queue_runtest(ulink_handle, cmd);
1936 break;
1937 case JTAG_RESET:
1938 ret = ulink_queue_reset(ulink_handle, cmd);
1939 break;
1940 case JTAG_PATHMOVE:
1941 ret = ulink_queue_pathmove(ulink_handle, cmd);
1942 break;
1943 case JTAG_SLEEP:
1944 ret = ulink_queue_sleep(ulink_handle, cmd);
1945 break;
1946 case JTAG_STABLECLOCKS:
1947 ret = ulink_queue_stableclocks(ulink_handle, cmd);
1948 break;
1949 default:
1950 ret = ERROR_FAIL;
1951 LOG_ERROR("BUG: encountered unknown JTAG command type");
1952 break;
1953 }
1954
1955 if (ret != ERROR_OK)
1956 return ret;
1957
1958 cmd = cmd->next;
1959 }
1960
1961 if (ulink_handle->commands_in_queue > 0) {
1962 ret = ulink_execute_queued_commands(ulink_handle, USB_TIMEOUT);
1963 if (ret != ERROR_OK)
1964 return ret;
1965
1966 ret = ulink_post_process_queue(ulink_handle);
1967 if (ret != ERROR_OK)
1968 return ret;
1969
1970 ulink_clear_queue(ulink_handle);
1971 }
1972
1973 return ERROR_OK;
1974 }
1975
1976 /**
1977 * Set the TCK frequency of the ULINK adapter.
1978 *
1979 * @param khz desired JTAG TCK frequency.
1980 * @param jtag_speed where to store corresponding adapter-specific speed value.
1981 * @return on success: ERROR_OK
1982 * @return on failure: ERROR_FAIL
1983 */
1984 static int ulink_khz(int khz, int *jtag_speed)
1985 {
1986 int ret;
1987
1988 if (khz == 0) {
1989 LOG_ERROR("RCLK not supported");
1990 return ERROR_FAIL;
1991 }
1992
1993 /* CLOCK_TCK commands are decoupled from others. Therefore, the frequency
1994 * setting can be done independently from all other commands. */
1995 if (khz >= 375)
1996 ulink_handle->delay_clock_tck = -1;
1997 else {
1998 ret = ulink_calculate_delay(DELAY_CLOCK_TCK, khz * 1000,
1999 &ulink_handle->delay_clock_tck);
2000 if (ret != ERROR_OK)
2001 return ret;
2002 }
2003
2004 /* SCAN_{IN,OUT,IO} commands invoke CLOCK_TMS commands. Therefore, if the
2005 * requested frequency goes below the maximum frequency for SLOW_CLOCK_TMS
2006 * commands, all SCAN commands MUST also use the variable frequency
2007 * implementation! */
2008 if (khz >= 176) {
2009 ulink_handle->delay_clock_tms = -1;
2010 ulink_handle->delay_scan_in = -1;
2011 ulink_handle->delay_scan_out = -1;
2012 ulink_handle->delay_scan_io = -1;
2013 } else {
2014 ret = ulink_calculate_delay(DELAY_CLOCK_TMS, khz * 1000,
2015 &ulink_handle->delay_clock_tms);
2016 if (ret != ERROR_OK)
2017 return ret;
2018
2019 ret = ulink_calculate_delay(DELAY_SCAN_IN, khz * 1000,
2020 &ulink_handle->delay_scan_in);
2021 if (ret != ERROR_OK)
2022 return ret;
2023
2024 ret = ulink_calculate_delay(DELAY_SCAN_OUT, khz * 1000,
2025 &ulink_handle->delay_scan_out);
2026 if (ret != ERROR_OK)
2027 return ret;
2028
2029 ret = ulink_calculate_delay(DELAY_SCAN_IO, khz * 1000,
2030 &ulink_handle->delay_scan_io);
2031 if (ret != ERROR_OK)
2032 return ret;
2033 }
2034
2035 LOG_DEBUG_IO("ULINK TCK setup: delay_tck = %i (%li Hz),",
2036 ulink_handle->delay_clock_tck,
2037 ulink_calculate_frequency(DELAY_CLOCK_TCK, ulink_handle->delay_clock_tck));
2038 LOG_DEBUG_IO(" delay_tms = %i (%li Hz),",
2039 ulink_handle->delay_clock_tms,
2040 ulink_calculate_frequency(DELAY_CLOCK_TMS, ulink_handle->delay_clock_tms));
2041 LOG_DEBUG_IO(" delay_scan_in = %i (%li Hz),",
2042 ulink_handle->delay_scan_in,
2043 ulink_calculate_frequency(DELAY_SCAN_IN, ulink_handle->delay_scan_in));
2044 LOG_DEBUG_IO(" delay_scan_out = %i (%li Hz),",
2045 ulink_handle->delay_scan_out,
2046 ulink_calculate_frequency(DELAY_SCAN_OUT, ulink_handle->delay_scan_out));
2047 LOG_DEBUG_IO(" delay_scan_io = %i (%li Hz),",
2048 ulink_handle->delay_scan_io,
2049 ulink_calculate_frequency(DELAY_SCAN_IO, ulink_handle->delay_scan_io));
2050
2051 /* Configure the ULINK device with the new delay values */
2052 ret = ulink_append_configure_tck_cmd(ulink_handle,
2053 ulink_handle->delay_scan_in,
2054 ulink_handle->delay_scan_out,
2055 ulink_handle->delay_scan_io,
2056 ulink_handle->delay_clock_tck,
2057 ulink_handle->delay_clock_tms);
2058
2059 if (ret != ERROR_OK)
2060 return ret;
2061
2062 *jtag_speed = khz;
2063
2064 return ERROR_OK;
2065 }
2066
2067 /**
2068 * Set the TCK frequency of the ULINK adapter.
2069 *
2070 * Because of the way the TCK frequency is set up in the OpenULINK firmware,
2071 * there are five different speed settings. To simplify things, the
2072 * adapter-specific speed setting value is identical to the TCK frequency in
2073 * khz.
2074 *
2075 * @param speed desired adapter-specific speed value.
2076 * @return on success: ERROR_OK
2077 * @return on failure: ERROR_FAIL
2078 */
2079 static int ulink_speed(int speed)
2080 {
2081 int dummy;
2082
2083 return ulink_khz(speed, &dummy);
2084 }
2085
2086 /**
2087 * Convert adapter-specific speed value to corresponding TCK frequency in kHz.
2088 *
2089 * Because of the way the TCK frequency is set up in the OpenULINK firmware,
2090 * there are five different speed settings. To simplify things, the
2091 * adapter-specific speed setting value is identical to the TCK frequency in
2092 * khz.
2093 *
2094 * @param speed adapter-specific speed value.
2095 * @param khz where to store corresponding TCK frequency in kHz.
2096 * @return on success: ERROR_OK
2097 * @return on failure: ERROR_FAIL
2098 */
2099 static int ulink_speed_div(int speed, int *khz)
2100 {
2101 *khz = speed;
2102
2103 return ERROR_OK;
2104 }
2105
2106 /**
2107 * Initiates the firmware download to the ULINK adapter and prepares
2108 * the USB handle.
2109 *
2110 * @return on success: ERROR_OK
2111 * @return on failure: ERROR_FAIL
2112 */
2113 static int ulink_init(void)
2114 {
2115 int ret, transferred;
2116 char str_manufacturer[20];
2117 bool download_firmware = false;
2118 unsigned char *dummy;
2119 uint8_t input_signals, output_signals;
2120
2121 ulink_handle = calloc(1, sizeof(struct ulink));
2122 if (ulink_handle == NULL)
2123 return ERROR_FAIL;
2124
2125 libusb_init(&ulink_handle->libusb_ctx);
2126
2127 ret = ulink_usb_open(&ulink_handle);
2128 if (ret != ERROR_OK) {
2129 LOG_ERROR("Could not open ULINK device");
2130 free(ulink_handle);
2131 ulink_handle = NULL;
2132 return ret;
2133 }
2134
2135 /* Get String Descriptor to determine if firmware needs to be loaded */
2136 ret = libusb_get_string_descriptor_ascii(ulink_handle->usb_device_handle, 1, (unsigned char *)str_manufacturer, 20);
2137 if (ret < 0) {
2138 /* Could not get descriptor -> Unconfigured or original Keil firmware */
2139 download_firmware = true;
2140 } else {
2141 /* We got a String Descriptor, check if it is the correct one */
2142 if (strncmp(str_manufacturer, "OpenULINK", 9) != 0)
2143 download_firmware = true;
2144 }
2145
2146 if (download_firmware == true) {
2147 LOG_INFO("Loading OpenULINK firmware. This is reversible by power-cycling"
2148 " ULINK device.");
2149 ret = ulink_load_firmware_and_renumerate(&ulink_handle,
2150 ULINK_FIRMWARE_FILE, ULINK_RENUMERATION_DELAY);
2151 if (ret != ERROR_OK) {
2152 LOG_ERROR("Could not download firmware and re-numerate ULINK");
2153 free(ulink_handle);
2154 ulink_handle = NULL;
2155 return ret;
2156 }
2157 } else
2158 LOG_INFO("ULINK device is already running OpenULINK firmware");
2159
2160 /* Get OpenULINK USB IN/OUT endpoints and claim the interface */
2161 ret = jtag_libusb_choose_interface(ulink_handle->usb_device_handle,
2162 &ulink_handle->ep_in, &ulink_handle->ep_out, -1, -1, -1, -1);
2163 if (ret != ERROR_OK)
2164 return ret;
2165
2166 /* Initialize OpenULINK command queue */
2167 ulink_clear_queue(ulink_handle);
2168
2169 /* Issue one test command with short timeout */
2170 ret = ulink_append_test_cmd(ulink_handle);
2171 if (ret != ERROR_OK)
2172 return ret;
2173
2174 ret = ulink_execute_queued_commands(ulink_handle, 200);
2175 if (ret != ERROR_OK) {
2176 /* Sending test command failed. The ULINK device may be forever waiting for
2177 * the host to fetch an USB Bulk IN packet (e. g. OpenOCD crashed or was
2178 * shut down by the user via Ctrl-C. Try to retrieve this Bulk IN packet. */
2179 dummy = calloc(64, sizeof(uint8_t));
2180
2181 ret = libusb_bulk_transfer(ulink_handle->usb_device_handle, ulink_handle->ep_in,
2182 dummy, 64, &transferred, 200);
2183
2184 free(dummy);
2185
2186 if (ret != 0 || transferred == 0) {
2187 /* Bulk IN transfer failed -> unrecoverable error condition */
2188 LOG_ERROR("Cannot communicate with ULINK device. Disconnect ULINK from "
2189 "the USB port and re-connect, then re-run OpenOCD");
2190 free(ulink_handle);
2191 ulink_handle = NULL;
2192 return ERROR_FAIL;
2193 }
2194 #ifdef _DEBUG_USB_COMMS_
2195 else {
2196 /* Successfully received Bulk IN packet -> continue */
2197 LOG_INFO("Recovered from lost Bulk IN packet");
2198 }
2199 #endif
2200 }
2201 ulink_clear_queue(ulink_handle);
2202
2203 ret = ulink_append_get_signals_cmd(ulink_handle);
2204 if (ret == ERROR_OK)
2205 ret = ulink_execute_queued_commands(ulink_handle, 200);
2206
2207 if (ret == ERROR_OK) {
2208 /* Post-process the single CMD_GET_SIGNALS command */
2209 input_signals = ulink_handle->queue_start->payload_in[0];
2210 output_signals = ulink_handle->queue_start->payload_in[1];
2211
2212 ulink_print_signal_states(input_signals, output_signals);
2213 }
2214
2215 ulink_clear_queue(ulink_handle);
2216
2217 return ERROR_OK;
2218 }
2219
2220 /**
2221 * Closes the USB handle for the ULINK device.
2222 *
2223 * @return on success: ERROR_OK
2224 * @return on failure: ERROR_FAIL
2225 */
2226 static int ulink_quit(void)
2227 {
2228 int ret;
2229
2230 ret = ulink_usb_close(&ulink_handle);
2231 free(ulink_handle);
2232
2233 return ret;
2234 }
2235
2236 /**
2237 * Set a custom path to ULINK firmware image and force downloading to ULINK.
2238 */
2239 COMMAND_HANDLER(ulink_download_firmware_handler)
2240 {
2241 int ret;
2242
2243 if (CMD_ARGC != 1)
2244 return ERROR_COMMAND_SYNTAX_ERROR;
2245
2246
2247 LOG_INFO("Downloading ULINK firmware image %s", CMD_ARGV[0]);
2248
2249 /* Download firmware image in CMD_ARGV[0] */
2250 ret = ulink_load_firmware_and_renumerate(&ulink_handle, CMD_ARGV[0],
2251 ULINK_RENUMERATION_DELAY);
2252
2253 return ret;
2254 }
2255
2256 /*************************** Command Registration **************************/
2257
2258 static const struct command_registration ulink_command_handlers[] = {
2259 {
2260 .name = "ulink_download_firmware",
2261 .handler = &ulink_download_firmware_handler,
2262 .mode = COMMAND_EXEC,
2263 .help = "download firmware image to ULINK device",
2264 .usage = "path/to/ulink_firmware.hex",
2265 },
2266 COMMAND_REGISTRATION_DONE,
2267 };
2268
2269 static struct jtag_interface ulink_interface = {
2270 .execute_queue = ulink_execute_queue,
2271 };
2272
2273 struct adapter_driver ulink_adapter_driver = {
2274 .name = "ulink",
2275 .transports = jtag_only,
2276 .commands = ulink_command_handlers,
2277
2278 .init = ulink_init,
2279 .quit = ulink_quit,
2280 .speed = ulink_speed,
2281 .khz = ulink_khz,
2282 .speed_div = ulink_speed_div,
2283
2284 .jtag_ops = &ulink_interface,
2285 };

Linking to existing account procedure

If you already have an account and want to add another login method you MUST first sign in with your existing account and then change URL to read https://review.openocd.org/login/?link to get to this page again but this time it'll work for linking. Thank you.

SSH host keys fingerprints

1024 SHA256:YKx8b7u5ZWdcbp7/4AeXNaqElP49m6QrwfXaqQGJAOk gerrit-code-review@openocd.zylin.com (DSA)
384 SHA256:jHIbSQa4REvwCFG4cq5LBlBLxmxSqelQPem/EXIrxjk gerrit-code-review@openocd.org (ECDSA)
521 SHA256:UAOPYkU9Fjtcao0Ul/Rrlnj/OsQvt+pgdYSZ4jOYdgs gerrit-code-review@openocd.org (ECDSA)
256 SHA256:A13M5QlnozFOvTllybRZH6vm7iSt0XLxbA48yfc2yfY gerrit-code-review@openocd.org (ECDSA)
256 SHA256:spYMBqEYoAOtK7yZBrcwE8ZpYt6b68Cfh9yEVetvbXg gerrit-code-review@openocd.org (ED25519)
+--[ED25519 256]--+
|=..              |
|+o..   .         |
|*.o   . .        |
|+B . . .         |
|Bo. = o S        |
|Oo.+ + =         |
|oB=.* = . o      |
| =+=.+   + E     |
|. .=o   . o      |
+----[SHA256]-----+
2048 SHA256:0Onrb7/PHjpo6iVZ7xQX2riKN83FJ3KGU0TvI0TaFG4 gerrit-code-review@openocd.zylin.com (RSA)