flash/nor/rp2040: check target halted before flash operation
[openocd.git] / src / pld / virtex2.c
blob771af9939741075bb8e1020a63d2ebcd09c120c9
1 // SPDX-License-Identifier: GPL-2.0-or-later
3 /***************************************************************************
4 * Copyright (C) 2006 by Dominic Rath *
5 * Dominic.Rath@gmx.de *
6 ***************************************************************************/
8 #ifdef HAVE_CONFIG_H
9 #include "config.h"
10 #endif
12 #include "virtex2.h"
13 #include "xilinx_bit.h"
14 #include "pld.h"
16 static int virtex2_set_instr(struct jtag_tap *tap, uint32_t new_instr)
18 if (!tap)
19 return ERROR_FAIL;
21 if (buf_get_u32(tap->cur_instr, 0, tap->ir_length) != new_instr) {
22 struct scan_field field;
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;
30 jtag_add_ir_scan(tap, &field, TAP_IDLE);
32 free(t);
35 return ERROR_OK;
38 static int virtex2_send_32(struct pld_device *pld_device,
39 int num_words, uint32_t *words)
41 struct virtex2_pld_device *virtex2_info = pld_device->driver_priv;
42 struct scan_field scan_field;
43 uint8_t *values;
44 int i;
46 values = malloc(num_words * 4);
48 scan_field.num_bits = num_words * 32;
49 scan_field.out_value = values;
50 scan_field.in_value = NULL;
52 for (i = 0; i < num_words; i++)
53 buf_set_u32(values + 4 * i, 0, 32, flip_u32(*words++, 32));
55 virtex2_set_instr(virtex2_info->tap, 0x5); /* CFG_IN */
57 jtag_add_dr_scan(virtex2_info->tap, 1, &scan_field, TAP_DRPAUSE);
59 free(values);
61 return ERROR_OK;
64 static inline void virtexflip32(jtag_callback_data_t arg)
66 uint8_t *in = (uint8_t *)arg;
67 *((uint32_t *)arg) = flip_u32(le_to_h_u32(in), 32);
70 static int virtex2_receive_32(struct pld_device *pld_device,
71 int num_words, uint32_t *words)
73 struct virtex2_pld_device *virtex2_info = pld_device->driver_priv;
74 struct scan_field scan_field;
76 scan_field.num_bits = 32;
77 scan_field.out_value = NULL;
78 scan_field.in_value = NULL;
80 virtex2_set_instr(virtex2_info->tap, 0x4); /* CFG_OUT */
82 while (num_words--) {
83 scan_field.in_value = (uint8_t *)words;
85 jtag_add_dr_scan(virtex2_info->tap, 1, &scan_field, TAP_DRPAUSE);
87 jtag_add_callback(virtexflip32, (jtag_callback_data_t)words);
89 words++;
92 return ERROR_OK;
95 static int virtex2_read_stat(struct pld_device *pld_device, uint32_t *status)
97 uint32_t data[5];
99 jtag_add_tlr();
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);
108 virtex2_receive_32(pld_device, 1, status);
110 jtag_execute_queue();
112 LOG_DEBUG("status: 0x%8.8" PRIx32 "", *status);
114 return ERROR_OK;
117 static int virtex2_load(struct pld_device *pld_device, const char *filename)
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;
125 field.in_value = NULL;
127 retval = xilinx_read_bit_file(&bit_file, filename);
128 if (retval != ERROR_OK)
129 return retval;
131 virtex2_set_instr(virtex2_info->tap, 0xb); /* JPROG_B */
132 jtag_execute_queue();
133 jtag_add_sleep(1000);
135 virtex2_set_instr(virtex2_info->tap, 0x5); /* CFG_IN */
136 jtag_execute_queue();
138 for (i = 0; i < bit_file.length; i++)
139 bit_file.data[i] = flip_u32(bit_file.data[i], 8);
141 field.num_bits = bit_file.length * 8;
142 field.out_value = bit_file.data;
144 jtag_add_dr_scan(virtex2_info->tap, 1, &field, TAP_DRPAUSE);
145 jtag_execute_queue();
147 jtag_add_tlr();
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();
160 return ERROR_OK;
163 COMMAND_HANDLER(virtex2_handle_read_stat_command)
165 struct pld_device *device;
166 uint32_t status;
168 if (CMD_ARGC < 1)
169 return ERROR_COMMAND_SYNTAX_ERROR;
171 unsigned dev_id;
172 COMMAND_PARSE_NUMBER(uint, CMD_ARGV[0], dev_id);
173 device = get_pld_device_by_num(dev_id);
174 if (!device) {
175 command_print(CMD, "pld device '#%s' is out of bounds", CMD_ARGV[0]);
176 return ERROR_OK;
179 virtex2_read_stat(device, &status);
181 command_print(CMD, "virtex2 status register: 0x%8.8" PRIx32 "", status);
183 return ERROR_OK;
186 PLD_DEVICE_COMMAND_HANDLER(virtex2_pld_device_command)
188 struct jtag_tap *tap;
190 struct virtex2_pld_device *virtex2_info;
192 if (CMD_ARGC < 2)
193 return ERROR_COMMAND_SYNTAX_ERROR;
195 tap = jtag_tap_by_string(CMD_ARGV[1]);
196 if (!tap) {
197 command_print(CMD, "Tap: %s does not exist", CMD_ARGV[1]);
198 return ERROR_OK;
201 virtex2_info = malloc(sizeof(struct virtex2_pld_device));
202 virtex2_info->tap = tap;
204 virtex2_info->no_jstart = 0;
205 if (CMD_ARGC >= 3)
206 COMMAND_PARSE_NUMBER(int, CMD_ARGV[2], virtex2_info->no_jstart);
208 pld->driver_priv = virtex2_info;
210 return ERROR_OK;
213 static const struct command_registration virtex2_exec_command_handlers[] = {
215 .name = "read_stat",
216 .mode = COMMAND_EXEC,
217 .handler = virtex2_handle_read_stat_command,
218 .help = "read status register",
219 .usage = "pld_num",
221 COMMAND_REGISTRATION_DONE
223 static const struct command_registration virtex2_command_handler[] = {
225 .name = "virtex2",
226 .mode = COMMAND_ANY,
227 .help = "Virtex-II specific commands",
228 .usage = "",
229 .chain = virtex2_exec_command_handlers,
231 COMMAND_REGISTRATION_DONE
234 struct pld_driver virtex2_pld = {
235 .name = "virtex2",
236 .commands = virtex2_command_handler,
237 .pld_device_command = &virtex2_pld_device_command,
238 .load = &virtex2_load,