helper/command: change prototype of command_print/command_print_sameline
[openocd.git] / src / pld / pld.c
1 /***************************************************************************
2 * Copyright (C) 2006 by Dominic Rath *
3 * Dominic.Rath@gmx.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, see <http://www.gnu.org/licenses/>. *
17 ***************************************************************************/
18
19 #ifdef HAVE_CONFIG_H
20 #include "config.h"
21 #endif
22
23 #include "pld.h"
24 #include <helper/log.h>
25 #include <helper/time_support.h>
26
27
28 /* pld drivers
29 */
30 extern struct pld_driver virtex2_pld;
31
32 static struct pld_driver *pld_drivers[] = {
33 &virtex2_pld,
34 NULL,
35 };
36
37 static struct pld_device *pld_devices;
38
39 struct pld_device *get_pld_device_by_num(int num)
40 {
41 struct pld_device *p;
42 int i = 0;
43
44 for (p = pld_devices; p; p = p->next) {
45 if (i++ == num)
46 return p;
47 }
48
49 return NULL;
50 }
51
52 /* pld device <driver> [driver_options ...]
53 */
54 COMMAND_HANDLER(handle_pld_device_command)
55 {
56 int i;
57 int found = 0;
58
59 if (CMD_ARGC < 1)
60 return ERROR_COMMAND_SYNTAX_ERROR;
61
62 for (i = 0; pld_drivers[i]; i++) {
63 if (strcmp(CMD_ARGV[0], pld_drivers[i]->name) == 0) {
64 struct pld_device *p, *c;
65
66 /* register pld specific commands */
67 int retval;
68 if (pld_drivers[i]->commands) {
69 retval = register_commands(CMD_CTX, NULL,
70 pld_drivers[i]->commands);
71 if (ERROR_OK != retval) {
72 LOG_ERROR("couldn't register '%s' commands", CMD_ARGV[0]);
73 return ERROR_FAIL;
74 }
75 }
76
77 c = malloc(sizeof(struct pld_device));
78 c->driver = pld_drivers[i];
79 c->next = NULL;
80
81 retval = CALL_COMMAND_HANDLER(
82 pld_drivers[i]->pld_device_command, c);
83 if (ERROR_OK != retval) {
84 LOG_ERROR("'%s' driver rejected pld device",
85 CMD_ARGV[0]);
86 free(c);
87 return ERROR_OK;
88 }
89
90 /* put pld device in linked list */
91 if (pld_devices) {
92 /* find last pld device */
93 for (p = pld_devices; p && p->next; p = p->next)
94 ;
95 if (p)
96 p->next = c;
97 } else
98 pld_devices = c;
99
100 found = 1;
101 }
102 }
103
104 /* no matching pld driver found */
105 if (!found) {
106 LOG_ERROR("pld driver '%s' not found", CMD_ARGV[0]);
107 exit(-1);
108 }
109
110 return ERROR_OK;
111 }
112
113 COMMAND_HANDLER(handle_pld_devices_command)
114 {
115 struct pld_device *p;
116 int i = 0;
117
118 if (!pld_devices) {
119 command_print(CMD, "no pld devices configured");
120 return ERROR_OK;
121 }
122
123 for (p = pld_devices; p; p = p->next)
124 command_print(CMD, "#%i: %s", i++, p->driver->name);
125
126 return ERROR_OK;
127 }
128
129 COMMAND_HANDLER(handle_pld_load_command)
130 {
131 int retval;
132 struct timeval start, end, duration;
133 struct pld_device *p;
134
135 gettimeofday(&start, NULL);
136
137 if (CMD_ARGC < 2)
138 return ERROR_COMMAND_SYNTAX_ERROR;
139
140 unsigned dev_id;
141 COMMAND_PARSE_NUMBER(uint, CMD_ARGV[0], dev_id);
142 p = get_pld_device_by_num(dev_id);
143 if (!p) {
144 command_print(CMD, "pld device '#%s' is out of bounds", CMD_ARGV[0]);
145 return ERROR_OK;
146 }
147
148 retval = p->driver->load(p, CMD_ARGV[1]);
149 if (retval != ERROR_OK) {
150 command_print(CMD, "failed loading file %s to pld device %u",
151 CMD_ARGV[1], dev_id);
152 switch (retval) {
153 }
154 return retval;
155 } else {
156 gettimeofday(&end, NULL);
157 timeval_subtract(&duration, &end, &start);
158
159 command_print(CMD, "loaded file %s to pld device %u in %jis %jius",
160 CMD_ARGV[1], dev_id,
161 (intmax_t)duration.tv_sec, (intmax_t)duration.tv_usec);
162 }
163
164 return ERROR_OK;
165 }
166
167 static const struct command_registration pld_exec_command_handlers[] = {
168 {
169 .name = "devices",
170 .handler = handle_pld_devices_command,
171 .mode = COMMAND_EXEC,
172 .help = "list configured pld devices",
173 .usage = "",
174 },
175 {
176 .name = "load",
177 .handler = handle_pld_load_command,
178 .mode = COMMAND_EXEC,
179 .help = "load configuration file into PLD",
180 .usage = "pld_num filename",
181 },
182 COMMAND_REGISTRATION_DONE
183 };
184
185 static int pld_init(struct command_context *cmd_ctx)
186 {
187 if (!pld_devices)
188 return ERROR_OK;
189
190 struct command *parent = command_find_in_context(cmd_ctx, "pld");
191 return register_commands(cmd_ctx, parent, pld_exec_command_handlers);
192 }
193
194 COMMAND_HANDLER(handle_pld_init_command)
195 {
196 if (CMD_ARGC != 0)
197 return ERROR_COMMAND_SYNTAX_ERROR;
198
199 static bool pld_initialized;
200 if (pld_initialized) {
201 LOG_INFO("'pld init' has already been called");
202 return ERROR_OK;
203 }
204 pld_initialized = true;
205
206 LOG_DEBUG("Initializing PLDs...");
207 return pld_init(CMD_CTX);
208 }
209
210 static const struct command_registration pld_config_command_handlers[] = {
211 {
212 .name = "device",
213 .mode = COMMAND_CONFIG,
214 .handler = handle_pld_device_command,
215 .help = "configure a PLD device",
216 .usage = "driver_name [driver_args ... ]",
217 },
218 {
219 .name = "init",
220 .mode = COMMAND_CONFIG,
221 .handler = handle_pld_init_command,
222 .help = "initialize PLD devices",
223 .usage = ""
224 },
225 COMMAND_REGISTRATION_DONE
226 };
227 static const struct command_registration pld_command_handler[] = {
228 {
229 .name = "pld",
230 .mode = COMMAND_ANY,
231 .help = "programmable logic device commands",
232 .usage = "",
233 .chain = pld_config_command_handlers,
234 },
235 COMMAND_REGISTRATION_DONE
236 };
237 int pld_register_commands(struct command_context *cmd_ctx)
238 {
239 return register_commands(cmd_ctx, NULL, pld_command_handler);
240 }

Linking to existing account procedure

If you already have an account and want to add another login method you MUST first sign in with your existing account and then change URL to read https://review.openocd.org/login/?link to get to this page again but this time it'll work for linking. Thank you.

SSH host keys fingerprints

1024 SHA256:YKx8b7u5ZWdcbp7/4AeXNaqElP49m6QrwfXaqQGJAOk gerrit-code-review@openocd.zylin.com (DSA)
384 SHA256:jHIbSQa4REvwCFG4cq5LBlBLxmxSqelQPem/EXIrxjk gerrit-code-review@openocd.org (ECDSA)
521 SHA256:UAOPYkU9Fjtcao0Ul/Rrlnj/OsQvt+pgdYSZ4jOYdgs gerrit-code-review@openocd.org (ECDSA)
256 SHA256:A13M5QlnozFOvTllybRZH6vm7iSt0XLxbA48yfc2yfY gerrit-code-review@openocd.org (ECDSA)
256 SHA256:spYMBqEYoAOtK7yZBrcwE8ZpYt6b68Cfh9yEVetvbXg gerrit-code-review@openocd.org (ED25519)
+--[ED25519 256]--+
|=..              |
|+o..   .         |
|*.o   . .        |
|+B . . .         |
|Bo. = o S        |
|Oo.+ + =         |
|oB=.* = . o      |
| =+=.+   + E     |
|. .=o   . o      |
+----[SHA256]-----+
2048 SHA256:0Onrb7/PHjpo6iVZ7xQX2riKN83FJ3KGU0TvI0TaFG4 gerrit-code-review@openocd.zylin.com (RSA)