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