stlink: use common layout
[openocd/jflash.git] / src / jtag / stlink / stlink_layout.c
blobcd0ba7f571960945d067e1b907c68364d60bf632
1 /***************************************************************************
2 * Copyright (C) 2011 by Mathias Kuester *
3 * Mathias Kuester <kesmtp@freenet.de> *
4 * *
5 * This program is free software; you can redistribute it and/or modify *
6 * it under the terms of the GNU General Public License as published by *
7 * the Free Software Foundation; either version 2 of the License, or *
8 * (at your option) any later version. *
9 * *
10 * This program is distributed in the hope that it will be useful, *
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of *
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
13 * GNU General Public License for more details. *
14 * *
15 * You should have received a copy of the GNU General Public License *
16 * along with this program; if not, write to the *
17 * Free Software Foundation, Inc., *
18 * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. *
19 ***************************************************************************/
21 #ifdef HAVE_CONFIG_H
22 #include "config.h"
23 #endif
25 /* project specific includes */
26 #include <jtag/interface.h>
27 #include <transport/transport.h>
28 #include <helper/time_support.h>
30 #include <jtag/stlink/stlink_layout.h>
31 #include <jtag/stlink/stlink_tcl.h>
32 #include <jtag/stlink/stlink_transport.h>
33 #include <jtag/stlink/stlink_interface.h>
35 static int stlink_layout_open(struct stlink_interface_s *stlink_if)
37 int res;
39 LOG_DEBUG("stlink_layout_open");
41 stlink_if->fd = NULL;
43 res = stlink_if->layout->api->open(&stlink_if->param, &stlink_if->fd);
45 if (res != ERROR_OK) {
46 LOG_DEBUG("failed");
47 return res;
50 return ERROR_OK;
53 static int stlink_layout_close(struct stlink_interface_s *stlink_if)
55 return ERROR_OK;
58 static const struct stlink_layout stlink_layouts[] = {
60 .name = "stlink",
61 .open = stlink_layout_open,
62 .close = stlink_layout_close,
63 .api = &stlink_usb_layout_api,
65 {.name = NULL, /* END OF TABLE */ },
68 /** */
69 const struct stlink_layout *stlink_layout_get_list(void)
71 return stlink_layouts;
74 int stlink_layout_init(struct stlink_interface_s *stlink_if)
76 LOG_DEBUG("stlink_layout_init");
78 if (stlink_if->layout == NULL) {
79 LOG_ERROR("no layout specified");
80 return ERROR_FAIL;
82 return ERROR_OK;