cpld/virtex2: allow JSTART to be disabled
[openocd.git] / src / pld / virtex2.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, write to the *
17 * Free Software Foundation, Inc., *
18 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. *
19 ***************************************************************************/
20
21 #ifdef HAVE_CONFIG_H
22 #include "config.h"
23 #endif
24
25 #include "virtex2.h"
26 #include "xilinx_bit.h"
27 #include "pld.h"
28
29 static int virtex2_set_instr(struct jtag_tap *tap, uint32_t new_instr)
30 {
31 if (tap == NULL)
32 return ERROR_FAIL;
33
34 if (buf_get_u32(tap->cur_instr, 0, tap->ir_length) != new_instr) {
35 struct scan_field field;
36
37 field.num_bits = tap->ir_length;
38 void *t = calloc(DIV_ROUND_UP(field.num_bits, 8), 1);
39 field.out_value = t;
40 buf_set_u32(t, 0, field.num_bits, new_instr);
41 field.in_value = NULL;
42
43 jtag_add_ir_scan(tap, &field, TAP_IDLE);
44
45 free(t);
46 }
47
48 return ERROR_OK;
49 }
50
51 static int virtex2_send_32(struct pld_device *pld_device,
52 int num_words, uint32_t *words)
53 {
54 struct virtex2_pld_device *virtex2_info = pld_device->driver_priv;
55 struct scan_field scan_field;
56 uint8_t *values;
57 int i;
58
59 values = malloc(num_words * 4);
60
61 scan_field.num_bits = num_words * 32;
62 scan_field.out_value = values;
63 scan_field.in_value = NULL;
64
65 for (i = 0; i < num_words; i++)
66 buf_set_u32(values + 4 * i, 0, 32, flip_u32(*words++, 32));
67
68 virtex2_set_instr(virtex2_info->tap, 0x5); /* CFG_IN */
69
70 jtag_add_dr_scan(virtex2_info->tap, 1, &scan_field, TAP_DRPAUSE);
71
72 free(values);
73
74 return ERROR_OK;
75 }
76
77 static inline void virtexflip32(jtag_callback_data_t arg)
78 {
79 uint8_t *in = (uint8_t *)arg;
80 *((uint32_t *)arg) = flip_u32(le_to_h_u32(in), 32);
81 }
82
83 static int virtex2_receive_32(struct pld_device *pld_device,
84 int num_words, uint32_t *words)
85 {
86 struct virtex2_pld_device *virtex2_info = pld_device->driver_priv;
87 struct scan_field scan_field;
88
89 scan_field.num_bits = 32;
90 scan_field.out_value = NULL;
91 scan_field.in_value = NULL;
92
93 virtex2_set_instr(virtex2_info->tap, 0x4); /* CFG_OUT */
94
95 while (num_words--) {
96 scan_field.in_value = (uint8_t *)words;
97
98 jtag_add_dr_scan(virtex2_info->tap, 1, &scan_field, TAP_DRPAUSE);
99
100 jtag_add_callback(virtexflip32, (jtag_callback_data_t)words);
101
102 words++;
103 }
104
105 return ERROR_OK;
106 }
107
108 static int virtex2_read_stat(struct pld_device *pld_device, uint32_t *status)
109 {
110 uint32_t data[5];
111
112 jtag_add_tlr();
113
114 data[0] = 0xaa995566; /* synch word */
115 data[1] = 0x2800E001; /* Type 1, read, address 7, 1 word */
116 data[2] = 0x20000000; /* NOOP (Type 1, read, address 0, 0 words */
117 data[3] = 0x20000000; /* NOOP */
118 data[4] = 0x20000000; /* NOOP */
119 virtex2_send_32(pld_device, 5, data);
120
121 virtex2_receive_32(pld_device, 1, status);
122
123 jtag_execute_queue();
124
125 LOG_DEBUG("status: 0x%8.8" PRIx32 "", *status);
126
127 return ERROR_OK;
128 }
129
130 static int virtex2_load(struct pld_device *pld_device, const char *filename)
131 {
132 struct virtex2_pld_device *virtex2_info = pld_device->driver_priv;
133 struct xilinx_bit_file bit_file;
134 int retval;
135 unsigned int i;
136 struct scan_field field;
137
138 field.in_value = NULL;
139
140 retval = xilinx_read_bit_file(&bit_file, filename);
141 if (retval != ERROR_OK)
142 return retval;
143
144 virtex2_set_instr(virtex2_info->tap, 0xb); /* JPROG_B */
145 jtag_execute_queue();
146 jtag_add_sleep(1000);
147
148 virtex2_set_instr(virtex2_info->tap, 0x5); /* CFG_IN */
149 jtag_execute_queue();
150
151 for (i = 0; i < bit_file.length; i++)
152 bit_file.data[i] = flip_u32(bit_file.data[i], 8);
153
154 field.num_bits = bit_file.length * 8;
155 field.out_value = bit_file.data;
156
157 jtag_add_dr_scan(virtex2_info->tap, 1, &field, TAP_DRPAUSE);
158 jtag_execute_queue();
159
160 jtag_add_tlr();
161
162 if (!(virtex2_info->no_jstart))
163 virtex2_set_instr(virtex2_info->tap, 0xc); /* JSTART */
164 jtag_add_runtest(13, TAP_IDLE);
165 virtex2_set_instr(virtex2_info->tap, 0x3f); /* BYPASS */
166 virtex2_set_instr(virtex2_info->tap, 0x3f); /* BYPASS */
167 if (!(virtex2_info->no_jstart))
168 virtex2_set_instr(virtex2_info->tap, 0xc); /* JSTART */
169 jtag_add_runtest(13, TAP_IDLE);
170 virtex2_set_instr(virtex2_info->tap, 0x3f); /* BYPASS */
171 jtag_execute_queue();
172
173 return ERROR_OK;
174 }
175
176 COMMAND_HANDLER(virtex2_handle_read_stat_command)
177 {
178 struct pld_device *device;
179 uint32_t status;
180
181 if (CMD_ARGC < 1)
182 return ERROR_COMMAND_SYNTAX_ERROR;
183
184 unsigned dev_id;
185 COMMAND_PARSE_NUMBER(uint, CMD_ARGV[0], dev_id);
186 device = get_pld_device_by_num(dev_id);
187 if (!device) {
188 command_print(CMD_CTX, "pld device '#%s' is out of bounds", CMD_ARGV[0]);
189 return ERROR_OK;
190 }
191
192 virtex2_read_stat(device, &status);
193
194 command_print(CMD_CTX, "virtex2 status register: 0x%8.8" PRIx32 "", status);
195
196 return ERROR_OK;
197 }
198
199 PLD_DEVICE_COMMAND_HANDLER(virtex2_pld_device_command)
200 {
201 struct jtag_tap *tap;
202
203 struct virtex2_pld_device *virtex2_info;
204
205 if (CMD_ARGC < 2)
206 return ERROR_COMMAND_SYNTAX_ERROR;
207
208 tap = jtag_tap_by_string(CMD_ARGV[1]);
209 if (tap == NULL) {
210 command_print(CMD_CTX, "Tap: %s does not exist", CMD_ARGV[1]);
211 return ERROR_OK;
212 }
213
214 virtex2_info = malloc(sizeof(struct virtex2_pld_device));
215 virtex2_info->tap = tap;
216
217 virtex2_info->no_jstart = 0;
218 if (CMD_ARGC >= 3)
219 COMMAND_PARSE_NUMBER(int, CMD_ARGV[2], virtex2_info->no_jstart);
220
221 pld->driver_priv = virtex2_info;
222
223 return ERROR_OK;
224 }
225
226 static const struct command_registration virtex2_exec_command_handlers[] = {
227 {
228 .name = "read_stat",
229 .mode = COMMAND_EXEC,
230 .handler = virtex2_handle_read_stat_command,
231 .help = "read status register",
232 .usage = "pld_num",
233 },
234 COMMAND_REGISTRATION_DONE
235 };
236 static const struct command_registration virtex2_command_handler[] = {
237 {
238 .name = "virtex2",
239 .mode = COMMAND_ANY,
240 .help = "Virtex-II specific commands",
241 .usage = "",
242 .chain = virtex2_exec_command_handlers,
243 },
244 COMMAND_REGISTRATION_DONE
245 };
246
247 struct pld_driver virtex2_pld = {
248 .name = "virtex2",
249 .commands = virtex2_command_handler,
250 .pld_device_command = &virtex2_pld_device_command,
251 .load = &virtex2_load,
252 };

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)