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

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)