You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

256 lines
7.3 KiB

  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
  23. #include "virtex2.h"
  24. #include "xilinx_bit.h"
  25. #include "pld.h"
  26. static int virtex2_register_commands(struct command_context_s *cmd_ctx);
  27. static int virtex2_pld_device_command(struct command_context_s *cmd_ctx, char *cmd, char **args, int argc, struct pld_device_s *pld_device);
  28. static int virtex2_load(struct pld_device_s *pld_device, char *filename);
  29. pld_driver_t virtex2_pld =
  30. {
  31. .name = "virtex2",
  32. .register_commands = virtex2_register_commands,
  33. .pld_device_command = virtex2_pld_device_command,
  34. .load = virtex2_load,
  35. };
  36. static int virtex2_set_instr(jtag_tap_t *tap, uint32_t new_instr)
  37. {
  38. if (tap == NULL)
  39. return ERROR_FAIL;
  40. if (buf_get_u32(tap->cur_instr, 0, tap->ir_length) != new_instr)
  41. {
  42. scan_field_t field;
  43. field.tap = tap;
  44. field.num_bits = tap->ir_length;
  45. field.out_value = calloc(CEIL(field.num_bits, 8), 1);
  46. buf_set_u32(field.out_value, 0, field.num_bits, new_instr);
  47. field.in_value = NULL;
  48. jtag_add_ir_scan(1, &field, jtag_set_end_state(TAP_IDLE));
  49. free(field.out_value);
  50. }
  51. return ERROR_OK;
  52. }
  53. static int virtex2_send_32(struct pld_device_s *pld_device,
  54. int num_words, uint32_t *words)
  55. {
  56. virtex2_pld_device_t *virtex2_info = pld_device->driver_priv;
  57. scan_field_t scan_field;
  58. uint8_t *values;
  59. int i;
  60. values = malloc(num_words * 4);
  61. scan_field.tap = virtex2_info->tap;
  62. scan_field.num_bits = num_words * 32;
  63. scan_field.out_value = values;
  64. scan_field.in_value = NULL;
  65. for (i = 0; i < num_words; i++)
  66. buf_set_u32(values + 4 * i, 0, 32, flip_u32(*words++, 32));
  67. virtex2_set_instr(virtex2_info->tap, 0x5); /* CFG_IN */
  68. jtag_add_dr_scan(1, &scan_field, jtag_set_end_state(TAP_DRPAUSE));
  69. free(values);
  70. return ERROR_OK;
  71. }
  72. static __inline__ void virtexflip32(jtag_callback_data_t arg)
  73. {
  74. uint8_t *in = (uint8_t *)arg;
  75. *((uint32_t *)in) = flip_u32(le_to_h_u32(in), 32);
  76. }
  77. static int virtex2_receive_32(struct pld_device_s *pld_device,
  78. int num_words, uint32_t *words)
  79. {
  80. virtex2_pld_device_t *virtex2_info = pld_device->driver_priv;
  81. scan_field_t scan_field;
  82. scan_field.tap = virtex2_info->tap;
  83. scan_field.num_bits = 32;
  84. scan_field.out_value = NULL;
  85. scan_field.in_value = NULL;
  86. virtex2_set_instr(virtex2_info->tap, 0x4); /* CFG_OUT */
  87. while (num_words--)
  88. {
  89. scan_field.in_value = (uint8_t *)words;
  90. jtag_add_dr_scan(1, &scan_field, jtag_set_end_state(TAP_DRPAUSE));
  91. jtag_add_callback(virtexflip32, (jtag_callback_data_t)words);
  92. words++;;
  93. }
  94. return ERROR_OK;
  95. }
  96. static int virtex2_read_stat(struct pld_device_s *pld_device, uint32_t *status)
  97. {
  98. uint32_t data[5];
  99. jtag_add_tlr();
  100. data[0] = 0xaa995566; /* synch word */
  101. data[1] = 0x2800E001; /* Type 1, read, address 7, 1 word */
  102. data[2] = 0x20000000; /* NOOP (Type 1, read, address 0, 0 words */
  103. data[3] = 0x20000000; /* NOOP */
  104. data[4] = 0x20000000; /* NOOP */
  105. virtex2_send_32(pld_device, 5, data);
  106. virtex2_receive_32(pld_device, 1, status);
  107. jtag_execute_queue();
  108. LOG_DEBUG("status: 0x%8.8" PRIx32 "", *status);
  109. return ERROR_OK;
  110. }
  111. static int virtex2_load(struct pld_device_s *pld_device, char *filename)
  112. {
  113. virtex2_pld_device_t *virtex2_info = pld_device->driver_priv;
  114. xilinx_bit_file_t bit_file;
  115. int retval;
  116. unsigned int i;
  117. scan_field_t field;
  118. field.tap = virtex2_info->tap;
  119. field.in_value = NULL;
  120. if ((retval = xilinx_read_bit_file(&bit_file, filename)) != ERROR_OK)
  121. return retval;
  122. jtag_set_end_state(TAP_IDLE);
  123. virtex2_set_instr(virtex2_info->tap, 0xb); /* JPROG_B */
  124. jtag_execute_queue();
  125. jtag_add_sleep(1000);
  126. virtex2_set_instr(virtex2_info->tap, 0x5); /* CFG_IN */
  127. jtag_execute_queue();
  128. for (i = 0; i < bit_file.length; i++)
  129. bit_file.data[i] = flip_u32(bit_file.data[i], 8);
  130. field.num_bits = bit_file.length * 8;
  131. field.out_value = bit_file.data;
  132. jtag_add_dr_scan(1, &field, jtag_set_end_state(TAP_DRPAUSE));
  133. jtag_execute_queue();
  134. jtag_add_tlr();
  135. jtag_set_end_state(TAP_IDLE);
  136. virtex2_set_instr(virtex2_info->tap, 0xc); /* JSTART */
  137. jtag_add_runtest(13, jtag_set_end_state(TAP_IDLE));
  138. virtex2_set_instr(virtex2_info->tap, 0x3f); /* BYPASS */
  139. virtex2_set_instr(virtex2_info->tap, 0x3f); /* BYPASS */
  140. virtex2_set_instr(virtex2_info->tap, 0xc); /* JSTART */
  141. jtag_add_runtest(13, jtag_set_end_state(TAP_IDLE));
  142. virtex2_set_instr(virtex2_info->tap, 0x3f); /* BYPASS */
  143. jtag_execute_queue();
  144. return ERROR_OK;
  145. }
  146. static int virtex2_handle_read_stat_command(struct command_context_s *cmd_ctx,
  147. char *cmd, char **args, int argc)
  148. {
  149. pld_device_t *device;
  150. virtex2_pld_device_t *virtex2_info;
  151. uint32_t status;
  152. if (argc < 1)
  153. {
  154. command_print(cmd_ctx, "usage: virtex2 read_stat <num>");
  155. return ERROR_OK;
  156. }
  157. device = get_pld_device_by_num(strtoul(args[0], NULL, 0));
  158. if (!device)
  159. {
  160. command_print(cmd_ctx, "pld device '#%s' is out of bounds", args[0]);
  161. return ERROR_OK;
  162. }
  163. virtex2_info = device->driver_priv;
  164. virtex2_read_stat(device, &status);
  165. command_print(cmd_ctx, "virtex2 status register: 0x%8.8" PRIx32 "", status);
  166. return ERROR_OK;
  167. }
  168. static int virtex2_register_commands(struct command_context_s *cmd_ctx)
  169. {
  170. command_t *virtex2_cmd = register_command(cmd_ctx, NULL, "virtex2", NULL, COMMAND_ANY, "virtex2 specific commands");
  171. register_command(cmd_ctx, virtex2_cmd, "read_stat", virtex2_handle_read_stat_command, COMMAND_EXEC,
  172. "read Virtex-II status register");
  173. return ERROR_OK;
  174. }
  175. static int virtex2_pld_device_command(struct command_context_s *cmd_ctx,
  176. char *cmd, char **args, int argc, struct pld_device_s *pld_device)
  177. {
  178. jtag_tap_t *tap;
  179. virtex2_pld_device_t *virtex2_info;
  180. if (argc < 2)
  181. {
  182. LOG_WARNING("incomplete pld device 'virtex2' configuration");
  183. return ERROR_PLD_DEVICE_INVALID;
  184. }
  185. tap = jtag_tap_by_string(args[1]);
  186. if (tap == NULL) {
  187. command_print(cmd_ctx, "Tap: %s does not exist", args[1]);
  188. return ERROR_OK;
  189. }
  190. virtex2_info = malloc(sizeof(virtex2_pld_device_t));
  191. pld_device->driver_priv = virtex2_info;
  192. virtex2_info->tap = tap;
  193. return ERROR_OK;
  194. }