openocd: src/jtag: replace the GPL-2.0-or-later license tag
[openocd.git] / src / jtag / hla / hla_layout.c
blobaa0041b31c0aa4b452f05555bf955921c07349ce
1 /* SPDX-License-Identifier: GPL-2.0-or-later */
3 /***************************************************************************
4 * Copyright (C) 2011 by Mathias Kuester *
5 * Mathias Kuester <kesmtp@freenet.de> *
6 * *
7 * Copyright (C) 2012 by Spencer Oliver *
8 * spen@spen-soft.co.uk *
9 ***************************************************************************/
11 #ifdef HAVE_CONFIG_H
12 #include "config.h"
13 #endif
15 /* project specific includes */
16 #include <jtag/interface.h>
17 #include <transport/transport.h>
18 #include <helper/time_support.h>
20 #include <jtag/hla/hla_layout.h>
21 #include <jtag/hla/hla_tcl.h>
22 #include <jtag/hla/hla_transport.h>
23 #include <jtag/hla/hla_interface.h>
25 static int hl_layout_open(struct hl_interface_s *adapter)
27 int res;
29 LOG_DEBUG("hl_layout_open");
31 adapter->handle = NULL;
33 res = adapter->layout->api->open(&adapter->param, &adapter->handle);
35 if (res != ERROR_OK) {
36 LOG_DEBUG("failed");
37 return res;
40 return ERROR_OK;
43 static int hl_layout_close(struct hl_interface_s *adapter)
45 return ERROR_OK;
48 static const struct hl_layout hl_layouts[] = {
49 #if BUILD_HLADAPTER_STLINK
51 .name = "stlink",
52 .open = hl_layout_open,
53 .close = hl_layout_close,
54 .api = &stlink_usb_layout_api,
56 #endif
57 #if BUILD_HLADAPTER_ICDI
59 .name = "ti-icdi",
60 .open = hl_layout_open,
61 .close = hl_layout_close,
62 .api = &icdi_usb_layout_api,
64 #endif
65 #if BUILD_HLADAPTER_NULINK
67 .name = "nulink",
68 .open = hl_layout_open,
69 .close = hl_layout_close,
70 .api = &nulink_usb_layout_api,
72 #endif
73 {.name = NULL, /* END OF TABLE */ },
76 /** */
77 const struct hl_layout *hl_layout_get_list(void)
79 return hl_layouts;
82 int hl_layout_init(struct hl_interface_s *adapter)
84 LOG_DEBUG("hl_layout_init");
86 if (!adapter->layout) {
87 LOG_ERROR("no layout specified");
88 return ERROR_FAIL;
90 return ERROR_OK;