HACKING: add chapter on checkpatch
[fw/openocd] / src / jtag / hla / hla_interface.h
index 84b0098b63619c81d13b18911c2d1d459160c73b..fa4965806bf857db723d2ec1174ec8e36653c7e1 100644 (file)
@@ -1,22 +1,11 @@
+/* SPDX-License-Identifier: GPL-2.0-or-later */
+
 /***************************************************************************
  *   Copyright (C) 2011 by Mathias Kuester                                 *
  *   Mathias Kuester <kesmtp@freenet.de>                                   *
  *                                                                         *
  *   Copyright (C) 2012 by Spencer Oliver                                  *
  *   spen@spen-soft.co.uk                                                  *
- *                                                                         *
- *   This program is free software; you can redistribute it and/or modify  *
- *   it under the terms of the GNU General Public License as published by  *
- *   the Free Software Foundation; either version 2 of the License, or     *
- *   (at your option) any later version.                                   *
- *                                                                         *
- *   This program is distributed in the hope that it will be useful,       *
- *   but WITHOUT ANY WARRANTY; without even the implied warranty of        *
- *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the         *
- *   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, see <http://www.gnu.org/licenses/>. *
  ***************************************************************************/
 
 #ifndef OPENOCD_JTAG_HLA_HLA_INTERFACE_H
@@ -29,25 +18,25 @@ enum e_hl_transports;
 /** */
 extern const char *hl_transports[];
 
-#define HLA_MAX_USB_IDS 8
+#define HLA_MAX_USB_IDS 16
 
 struct hl_interface_param_s {
        /** */
        const char *device_desc;
-       /** */
-       const char *serial;
        /** List of recognised VIDs */
        uint16_t vid[HLA_MAX_USB_IDS + 1];
        /** List of recognised PIDs */
        uint16_t pid[HLA_MAX_USB_IDS + 1];
        /** */
-       unsigned api;
-       /** */
        enum hl_transports transport;
        /** */
        bool connect_under_reset;
        /** Initial interface clock clock speed */
        int initial_interface_speed;
+       /** */
+       bool use_stlink_tcp;
+       /** */
+       uint16_t stlink_tcp_port;
 };
 
 struct hl_interface_s {
@@ -67,13 +56,4 @@ int hl_interface_init_target(struct target *t);
 int hl_interface_init_reset(void);
 int hl_interface_override_target(const char **targetname);
 
-#if BUILD_HLADAPTER == 1
-int hl_interface_reset(int srst);
-#else
-static inline int hl_interface_reset(int srst)
-{
-       return ERROR_OK;
-}
-#endif
-
 #endif /* OPENOCD_JTAG_HLA_HLA_INTERFACE_H */