OpenOCD
mpsse.h
Go to the documentation of this file.
1 /* SPDX-License-Identifier: GPL-2.0-or-later */
2 
3 /**************************************************************************
4  * Copyright (C) 2012 by Andreas Fritiofson *
5  * andreas.fritiofson@gmail.com *
6  ***************************************************************************/
7 
8 #ifndef OPENOCD_JTAG_DRIVERS_MPSSE_H
9 #define OPENOCD_JTAG_DRIVERS_MPSSE_H
10 
11 #include <stdbool.h>
12 #include "helper/binarybuffer.h"
13 
14 /* Mode flags */
15 #define POS_EDGE_OUT 0x00
16 #define NEG_EDGE_OUT 0x01
17 #define POS_EDGE_IN 0x00
18 #define NEG_EDGE_IN 0x04
19 #define MSB_FIRST 0x00
20 #define LSB_FIRST 0x08
21 
27 };
28 
29 struct mpsse_ctx;
30 
31 /* Device handling */
32 struct mpsse_ctx *mpsse_open(const uint16_t *vid, const uint16_t *pid, const char *description,
33  const char *serial, const char *location, int channel);
34 void mpsse_close(struct mpsse_ctx *ctx);
35 bool mpsse_is_high_speed(struct mpsse_ctx *ctx);
36 
37 /* Command queuing. These correspond to the MPSSE commands with the same names, but no need to care
38  * about bit/byte transfer or data length limitation. Read data is guaranteed to be available only
39  * after the following mpsse_flush(). */
40 void mpsse_clock_data_out(struct mpsse_ctx *ctx, const uint8_t *out, unsigned out_offset,
41  unsigned length, uint8_t mode);
42 void mpsse_clock_data_in(struct mpsse_ctx *ctx, uint8_t *in, unsigned in_offset, unsigned length,
43  uint8_t mode);
44 void mpsse_clock_data(struct mpsse_ctx *ctx, const uint8_t *out, unsigned out_offset, uint8_t *in,
45  unsigned in_offset, unsigned length, uint8_t mode);
46 void mpsse_clock_tms_cs_out(struct mpsse_ctx *ctx, const uint8_t *out, unsigned out_offset,
47  unsigned length, bool tdi, uint8_t mode);
48 void mpsse_clock_tms_cs(struct mpsse_ctx *ctx, const uint8_t *out, unsigned out_offset, uint8_t *in,
49  unsigned in_offset, unsigned length, bool tdi, uint8_t mode);
50 void mpsse_set_data_bits_low_byte(struct mpsse_ctx *ctx, uint8_t data, uint8_t dir);
51 void mpsse_set_data_bits_high_byte(struct mpsse_ctx *ctx, uint8_t data, uint8_t dir);
52 void mpsse_read_data_bits_low_byte(struct mpsse_ctx *ctx, uint8_t *data);
53 void mpsse_read_data_bits_high_byte(struct mpsse_ctx *ctx, uint8_t *data);
54 void mpsse_loopback_config(struct mpsse_ctx *ctx, bool enable);
55 void mpsse_set_divisor(struct mpsse_ctx *ctx, uint16_t divisor);
56 int mpsse_divide_by_5_config(struct mpsse_ctx *ctx, bool enable);
57 int mpsse_rtck_config(struct mpsse_ctx *ctx, bool enable);
58 
59 /* Helper to set frequency in Hertz. Returns actual realizable frequency or negative error.
60  * Frequency 0 means RTCK. */
61 int mpsse_set_frequency(struct mpsse_ctx *ctx, int frequency);
62 
63 /* Queue handling */
64 int mpsse_flush(struct mpsse_ctx *ctx);
65 void mpsse_purge(struct mpsse_ctx *ctx);
66 
67 #endif /* OPENOCD_JTAG_DRIVERS_MPSSE_H */
char * serial
Definition: adapter.c:47
const char * description
Definition: arm_adi_v5.c:912
enum arm_mode mode
Definition: armv4_5.c:277
Support functions to access arbitrary bits in a byte array.
uint8_t length
Definition: esp_usb_jtag.c:1
ftdi_chip_type
Definition: mpsse.h:22
@ TYPE_FT2232C
Definition: mpsse.h:23
@ TYPE_FT2232H
Definition: mpsse.h:24
@ TYPE_FT232H
Definition: mpsse.h:26
@ TYPE_FT4232H
Definition: mpsse.h:25
int mpsse_flush(struct mpsse_ctx *ctx)
Definition: mpsse.c:833
void mpsse_clock_data_out(struct mpsse_ctx *ctx, const uint8_t *out, unsigned out_offset, unsigned length, uint8_t mode)
Definition: mpsse.c:471
void mpsse_read_data_bits_high_byte(struct mpsse_ctx *ctx, uint8_t *data)
Definition: mpsse.c:661
void mpsse_set_data_bits_high_byte(struct mpsse_ctx *ctx, uint8_t data, uint8_t dir)
Definition: mpsse.c:628
void mpsse_set_divisor(struct mpsse_ctx *ctx, uint16_t divisor)
Definition: mpsse.c:697
int mpsse_set_frequency(struct mpsse_ctx *ctx, int frequency)
Definition: mpsse.c:736
void mpsse_read_data_bits_low_byte(struct mpsse_ctx *ctx, uint8_t *data)
Definition: mpsse.c:645
void mpsse_purge(struct mpsse_ctx *ctx)
Definition: mpsse.c:409
struct mpsse_ctx * mpsse_open(const uint16_t *vid, const uint16_t *pid, const char *description, const char *serial, const char *location, int channel)
Definition: mpsse.c:310
void mpsse_clock_data_in(struct mpsse_ctx *ctx, uint8_t *in, unsigned in_offset, unsigned length, uint8_t mode)
Definition: mpsse.c:477
bool mpsse_is_high_speed(struct mpsse_ctx *ctx)
Definition: mpsse.c:404
void mpsse_close(struct mpsse_ctx *ctx)
Definition: mpsse.c:390
void mpsse_loopback_config(struct mpsse_ctx *ctx, bool enable)
Definition: mpsse.c:691
void mpsse_clock_tms_cs(struct mpsse_ctx *ctx, const uint8_t *out, unsigned out_offset, uint8_t *in, unsigned in_offset, unsigned length, bool tdi, uint8_t mode)
Definition: mpsse.c:560
void mpsse_set_data_bits_low_byte(struct mpsse_ctx *ctx, uint8_t data, uint8_t dir)
Definition: mpsse.c:611
int mpsse_divide_by_5_config(struct mpsse_ctx *ctx, bool enable)
Definition: mpsse.c:714
int mpsse_rtck_config(struct mpsse_ctx *ctx, bool enable)
Definition: mpsse.c:725
void mpsse_clock_tms_cs_out(struct mpsse_ctx *ctx, const uint8_t *out, unsigned out_offset, unsigned length, bool tdi, uint8_t mode)
Definition: mpsse.c:554
void mpsse_clock_data(struct mpsse_ctx *ctx, const uint8_t *out, unsigned out_offset, uint8_t *in, unsigned in_offset, unsigned length, uint8_t mode)
Definition: mpsse.c:483