Simple warning fix
[openocd.git] / src / pld / pld.c
blob391fb7610d3db26ae126c19eb1e8616d6f6f61ed
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, write to the *
17 * Free Software Foundation, Inc., *
18 * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. *
19 ***************************************************************************/
20 #ifdef HAVE_CONFIG_H
21 #include "config.h"
22 #endif
24 #include "pld.h"
25 #include "log.h"
26 #include "time_support.h"
29 /* pld drivers
31 extern pld_driver_t virtex2_pld;
33 static pld_driver_t *pld_drivers[] =
35 &virtex2_pld,
36 NULL,
39 static pld_device_t *pld_devices;
40 static command_t *pld_cmd;
42 static int handle_pld_devices_command(struct command_context_s *cmd_ctx,
43 char *cmd, char **args, int argc);
44 static int handle_pld_device_command(struct command_context_s *cmd_ctx,
45 char *cmd, char **args, int argc);
46 static int handle_pld_load_command(struct command_context_s *cmd_ctx,
47 char *cmd, char **args, int argc);
49 int pld_init(struct command_context_s *cmd_ctx)
51 if (pld_devices)
53 register_command(cmd_ctx, pld_cmd, "devices", handle_pld_devices_command, COMMAND_EXEC,
54 "list configured pld devices");
55 register_command(cmd_ctx, pld_cmd, "load", handle_pld_load_command, COMMAND_EXEC,
56 "load configuration <file> into programmable logic device");
59 return ERROR_OK;
62 pld_device_t *get_pld_device_by_num(int num)
64 pld_device_t *p;
65 int i = 0;
67 for (p = pld_devices; p; p = p->next)
69 if (i++ == num)
71 return p;
75 return NULL;
78 /* pld device <driver> [driver_options ...]
80 static int handle_pld_device_command(struct command_context_s *cmd_ctx,
81 char *cmd, char **args, int argc)
83 int i;
84 int found = 0;
86 if (argc < 1)
88 LOG_WARNING("incomplete 'pld device' command");
89 return ERROR_OK;
92 for (i = 0; pld_drivers[i]; i++)
94 if (strcmp(args[0], pld_drivers[i]->name) == 0)
96 pld_device_t *p, *c;
98 /* register pld specific commands */
99 if (pld_drivers[i]->register_commands(cmd_ctx) != ERROR_OK)
101 LOG_ERROR("couldn't register '%s' commands", args[0]);
102 exit(-1);
105 c = malloc(sizeof(pld_device_t));
106 c->driver = pld_drivers[i];
107 c->next = NULL;
109 if (pld_drivers[i]->pld_device_command(cmd_ctx, cmd, args, argc, c) != ERROR_OK)
111 LOG_ERROR("'%s' driver rejected pld device", args[0]);
112 free(c);
113 return ERROR_OK;
116 /* put pld device in linked list */
117 if (pld_devices)
119 /* find last pld device */
120 for (p = pld_devices; p && p->next; p = p->next);
121 if (p)
122 p->next = c;
124 else
126 pld_devices = c;
129 found = 1;
133 /* no matching pld driver found */
134 if (!found)
136 LOG_ERROR("pld driver '%s' not found", args[0]);
137 exit(-1);
140 return ERROR_OK;
143 static int handle_pld_devices_command(struct command_context_s *cmd_ctx,
144 char *cmd, char **args, int argc)
146 pld_device_t *p;
147 int i = 0;
149 if (!pld_devices)
151 command_print(cmd_ctx, "no pld devices configured");
152 return ERROR_OK;
155 for (p = pld_devices; p; p = p->next)
157 command_print(cmd_ctx, "#%i: %s", i++, p->driver->name);
160 return ERROR_OK;
163 static int handle_pld_load_command(struct command_context_s *cmd_ctx,
164 char *cmd, char **args, int argc)
166 int retval;
167 struct timeval start, end, duration;
168 pld_device_t *p;
170 gettimeofday(&start, NULL);
172 if (argc < 2)
174 command_print(cmd_ctx, "usage: pld load <device#> <file>");
175 return ERROR_OK;
178 p = get_pld_device_by_num(strtoul(args[0], NULL, 0));
179 if (!p)
181 command_print(cmd_ctx, "pld device '#%s' is out of bounds", args[0]);
182 return ERROR_OK;
185 if ((retval = p->driver->load(p, args[1])) != ERROR_OK)
187 command_print(cmd_ctx, "failed loading file %s to pld device %lu",
188 args[1], strtoul(args[0], NULL, 0));
189 switch (retval)
193 else
195 gettimeofday(&end, NULL);
196 timeval_subtract(&duration, &end, &start);
198 command_print(cmd_ctx, "loaded file %s to pld device %lu in %jis %jius",
199 args[1], strtoul(args[0], NULL, 0),
200 (intmax_t)duration.tv_sec, (intmax_t)duration.tv_usec);
203 return ERROR_OK;
206 int pld_register_commands(struct command_context_s *cmd_ctx)
208 pld_cmd = register_command(cmd_ctx, NULL, "pld", NULL, COMMAND_ANY, "programmable logic device commands");
210 register_command(cmd_ctx, pld_cmd, "device", handle_pld_device_command, COMMAND_CONFIG, NULL);
212 return ERROR_OK;