warnings: fix alignment warnings
[openocd/cortex.git] / src / pld / virtex2.c
blobf4657bcf48670636f74cf25b5233436592b86d52
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 "virtex2.h"
25 #include "xilinx_bit.h"
26 #include "pld.h"
29 static int virtex2_set_instr(struct jtag_tap *tap, uint32_t new_instr)
31 if (tap == NULL)
32 return ERROR_FAIL;
34 if (buf_get_u32(tap->cur_instr, 0, tap->ir_length) != new_instr)
36 struct scan_field field;
38 field.num_bits = tap->ir_length;
39 void * t = calloc(DIV_ROUND_UP(field.num_bits, 8), 1);
40 field.out_value = t;
41 buf_set_u32(t, 0, field.num_bits, new_instr);
42 field.in_value = NULL;
44 jtag_add_ir_scan(tap, &field, TAP_IDLE);
46 free(t);
49 return ERROR_OK;
52 static int virtex2_send_32(struct pld_device *pld_device,
53 int num_words, uint32_t *words)
55 struct virtex2_pld_device *virtex2_info = pld_device->driver_priv;
56 struct scan_field scan_field;
57 uint8_t *values;
58 int i;
60 values = malloc(num_words * 4);
62 scan_field.num_bits = num_words * 32;
63 scan_field.out_value = values;
64 scan_field.in_value = NULL;
66 for (i = 0; i < num_words; i++)
67 buf_set_u32(values + 4 * i, 0, 32, flip_u32(*words++, 32));
69 virtex2_set_instr(virtex2_info->tap, 0x5); /* CFG_IN */
71 jtag_add_dr_scan(virtex2_info->tap, 1, &scan_field, TAP_DRPAUSE);
73 free(values);
75 return ERROR_OK;
78 static __inline__ void virtexflip32(jtag_callback_data_t arg)
80 uint8_t *in = (uint8_t *)arg;
81 *((uint32_t *)arg) = flip_u32(le_to_h_u32(in), 32);
84 static int virtex2_receive_32(struct pld_device *pld_device,
85 int num_words, uint32_t *words)
87 struct virtex2_pld_device *virtex2_info = pld_device->driver_priv;
88 struct scan_field scan_field;
90 scan_field.num_bits = 32;
91 scan_field.out_value = NULL;
92 scan_field.in_value = NULL;
94 virtex2_set_instr(virtex2_info->tap, 0x4); /* CFG_OUT */
96 while (num_words--)
98 scan_field.in_value = (uint8_t *)words;
100 jtag_add_dr_scan(virtex2_info->tap, 1, &scan_field, TAP_DRPAUSE);
102 jtag_add_callback(virtexflip32, (jtag_callback_data_t)words);
104 words++;;
107 return ERROR_OK;
110 static int virtex2_read_stat(struct pld_device *pld_device, uint32_t *status)
112 uint32_t data[5];
114 jtag_add_tlr();
116 data[0] = 0xaa995566; /* synch word */
117 data[1] = 0x2800E001; /* Type 1, read, address 7, 1 word */
118 data[2] = 0x20000000; /* NOOP (Type 1, read, address 0, 0 words */
119 data[3] = 0x20000000; /* NOOP */
120 data[4] = 0x20000000; /* NOOP */
121 virtex2_send_32(pld_device, 5, data);
123 virtex2_receive_32(pld_device, 1, status);
125 jtag_execute_queue();
127 LOG_DEBUG("status: 0x%8.8" PRIx32 "", *status);
129 return ERROR_OK;
132 static int virtex2_load(struct pld_device *pld_device, const char *filename)
134 struct virtex2_pld_device *virtex2_info = pld_device->driver_priv;
135 struct xilinx_bit_file bit_file;
136 int retval;
137 unsigned int i;
138 struct scan_field field;
140 field.in_value = NULL;
142 if ((retval = xilinx_read_bit_file(&bit_file, filename)) != ERROR_OK)
143 return retval;
145 virtex2_set_instr(virtex2_info->tap, 0xb); /* JPROG_B */
146 jtag_execute_queue();
147 jtag_add_sleep(1000);
149 virtex2_set_instr(virtex2_info->tap, 0x5); /* CFG_IN */
150 jtag_execute_queue();
152 for (i = 0; i < bit_file.length; i++)
153 bit_file.data[i] = flip_u32(bit_file.data[i], 8);
155 field.num_bits = bit_file.length * 8;
156 field.out_value = bit_file.data;
158 jtag_add_dr_scan(virtex2_info->tap, 1, &field, TAP_DRPAUSE);
159 jtag_execute_queue();
161 jtag_add_tlr();
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 virtex2_set_instr(virtex2_info->tap, 0xc); /* JSTART */
168 jtag_add_runtest(13, TAP_IDLE);
169 virtex2_set_instr(virtex2_info->tap, 0x3f); /* BYPASS */
170 jtag_execute_queue();
172 return ERROR_OK;
175 COMMAND_HANDLER(virtex2_handle_read_stat_command)
177 struct pld_device *device;
178 struct virtex2_pld_device *virtex2_info;
179 uint32_t status;
181 if (CMD_ARGC < 1)
183 command_print(CMD_CTX, "usage: virtex2 read_stat <num>");
184 return ERROR_OK;
187 unsigned dev_id;
188 COMMAND_PARSE_NUMBER(uint, CMD_ARGV[0], dev_id);
189 device = get_pld_device_by_num(dev_id);
190 if (!device)
192 command_print(CMD_CTX, "pld device '#%s' is out of bounds", CMD_ARGV[0]);
193 return ERROR_OK;
196 virtex2_info = device->driver_priv;
198 virtex2_read_stat(device, &status);
200 command_print(CMD_CTX, "virtex2 status register: 0x%8.8" PRIx32 "", status);
202 return ERROR_OK;
205 PLD_DEVICE_COMMAND_HANDLER(virtex2_pld_device_command)
207 struct jtag_tap *tap;
209 struct virtex2_pld_device *virtex2_info;
211 if (CMD_ARGC < 2)
213 LOG_WARNING("incomplete pld device 'virtex2' configuration");
214 return ERROR_PLD_DEVICE_INVALID;
217 tap = jtag_tap_by_string(CMD_ARGV[1]);
218 if (tap == NULL) {
219 command_print(CMD_CTX, "Tap: %s does not exist", CMD_ARGV[1]);
220 return ERROR_OK;
223 virtex2_info = malloc(sizeof(struct virtex2_pld_device));
224 virtex2_info->tap = tap;
226 pld->driver_priv = virtex2_info;
228 return ERROR_OK;
231 static const struct command_registration virtex2_exec_command_handlers[] = {
233 .name = "read_stat",
234 .mode = COMMAND_EXEC,
235 .handler = virtex2_handle_read_stat_command,
236 .help = "read status register",
237 .usage = "pld_num",
239 COMMAND_REGISTRATION_DONE
241 static const struct command_registration virtex2_command_handler[] = {
243 .name = "virtex2",
244 .mode = COMMAND_ANY,
245 .help = "Virtex-II specific commands",
246 .chain = virtex2_exec_command_handlers,
248 COMMAND_REGISTRATION_DONE
251 struct pld_driver virtex2_pld = {
252 .name = "virtex2",
253 .commands = virtex2_command_handler,
254 .pld_device_command = &virtex2_pld_device_command,
255 .load = &virtex2_load,