static uint8_t *tdo_buffer;
static bool swd_mode;
-static int queued_retval;
static struct vsllink *vsllink_handle;
LOG_DEBUG("SWD delay: %d, retry count: %d", delay, retry_count);
versaloon_interface.adaptors.swd.config(0, 2, retry_count, delay);
- queued_retval = versaloon_interface.adaptors.peripheral_commit();
}
return hz;
return ERROR_FAIL;
}
- return versaloon_interface.adaptors.peripheral_commit();
+ return ERROR_OK;
}
static void vsllink_swd_read_reg(struct adiv5_dap *dap, uint8_t cmd,
uint32_t *value)
{
- if (queued_retval != ERROR_OK)
- return;
-
- int retval;
- uint32_t val = 0;
- uint8_t ack;
-
- versaloon_interface.adaptors.swd.transact(0, cmd, &val, &ack);
- retval = versaloon_interface.adaptors.peripheral_commit();
-
- if (retval != ERROR_OK) {
- queued_retval = ERROR_FAIL;
- return;
- }
-
- if (ack != 0x01) {
- queued_retval = ack;
- return;
- }
-
- if (value)
- *value = val;
-
- queued_retval = retval;
+ versaloon_interface.adaptors.swd.transact(0, cmd, value, NULL);
}
static void vsllink_swd_write_reg(struct adiv5_dap *dap, uint8_t cmd,
uint32_t value)
{
- if (queued_retval != ERROR_OK)
- return;
-
- int retval;
- uint8_t ack;
-
- versaloon_interface.adaptors.swd.transact(0, cmd, &value, &ack);
- retval = versaloon_interface.adaptors.peripheral_commit();
-
- if (retval != ERROR_OK) {
- queued_retval = ERROR_FAIL;
- return;
- }
-
- if (ack != 0x01) {
- queued_retval = ack;
- return;
- }
-
- queued_retval = retval;
+ versaloon_interface.adaptors.swd.transact(0, cmd, &value, NULL);
}
static int vsllink_swd_run_queue(struct adiv5_dap *dap)
{
- int retval = queued_retval;
- queued_retval = ERROR_OK;
- return retval;
+ return versaloon_interface.adaptors.peripheral_commit();
}
/****************************************************************************