X-Git-Url: https://git.gag.com/?a=blobdiff_plain;f=src%2Fjtag%2Fhla%2Fhla_interface.h;h=31d055a3cadd72d56b7f716c860119abd00de68d;hb=c6460ea36d7eeaf4a0fe4fb1a4c65bb21547afbe;hp=5b63ab855cbf3dcf94efd0352989915ca9c5c654;hpb=c7a6f065d2a48730e05eb95bb44ca6a7032d2a31;p=fw%2Fopenocd diff --git a/src/jtag/hla/hla_interface.h b/src/jtag/hla/hla_interface.h index 5b63ab855..31d055a3c 100644 --- a/src/jtag/hla/hla_interface.h +++ b/src/jtag/hla/hla_interface.h @@ -16,13 +16,11 @@ * GNU General Public License for more details. * * * * You should have received a copy of the GNU General Public License * - * along with this program; if not, write to the * - * Free Software Foundation, Inc., * - * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * + * along with this program. If not, see . * ***************************************************************************/ -#ifndef _HL_INTERFACE -#define _HL_INTERFACE +#ifndef OPENOCD_JTAG_HLA_HLA_INTERFACE_H +#define OPENOCD_JTAG_HLA_HLA_INTERFACE_H /** */ struct target; @@ -31,21 +29,25 @@ enum e_hl_transports; /** */ extern const char *hl_transports[]; +#define HLA_MAX_USB_IDS 16 + struct hl_interface_param_s { /** */ - char *device_desc; - /** */ - char *serial; - /** */ - uint16_t vid; + const char *device_desc; + /** List of recognised VIDs */ + uint16_t vid[HLA_MAX_USB_IDS + 1]; + /** List of recognised PIDs */ + uint16_t pid[HLA_MAX_USB_IDS + 1]; /** */ - uint16_t pid; + enum hl_transports transport; /** */ - unsigned api; + bool connect_under_reset; + /** Initial interface clock clock speed */ + int initial_interface_speed; /** */ - enum hl_transports transport; + bool use_stlink_tcp; /** */ - int max_buffer; + uint16_t stlink_tcp_port; }; struct hl_interface_s { @@ -54,7 +56,7 @@ struct hl_interface_s { /** */ const struct hl_layout *layout; /** */ - void *fd; + void *handle; }; /** */ @@ -63,5 +65,6 @@ int hl_interface_open(enum hl_transports tr); int hl_interface_init_target(struct target *t); int hl_interface_init_reset(void); +int hl_interface_override_target(const char **targetname); -#endif /* _HL_INTERFACE */ +#endif /* OPENOCD_JTAG_HLA_HLA_INTERFACE_H */