scan_manager.c 7.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262
  1. /*
  2. * Copyright (C) 2013 Altera Corporation <www.altera.com>
  3. *
  4. * SPDX-License-Identifier: GPL-2.0+
  5. */
  6. #include <common.h>
  7. #include <errno.h>
  8. #include <asm/io.h>
  9. #include <asm/arch/freeze_controller.h>
  10. #include <asm/arch/scan_manager.h>
  11. #include <asm/arch/system_manager.h>
  12. /*
  13. * Maximum polling loop to wait for IO scan chain engine becomes idle
  14. * to prevent infinite loop. It is important that this is NOT changed
  15. * to delay using timer functions, since at the time this function is
  16. * called, timer might not yet be inited.
  17. */
  18. #define SCANMGR_MAX_DELAY 100
  19. /*
  20. * Maximum length of TDI_TDO packet payload is 128 bits,
  21. * represented by (length - 1) in TDI_TDO header.
  22. */
  23. #define TDI_TDO_MAX_PAYLOAD 127
  24. #define SCANMGR_STAT_ACTIVE (1 << 31)
  25. #define SCANMGR_STAT_WFIFOCNT_MASK 0x70000000
  26. DECLARE_GLOBAL_DATA_PTR;
  27. static const struct socfpga_scan_manager *scan_manager_base =
  28. (void *)(SOCFPGA_SCANMGR_ADDRESS);
  29. static const struct socfpga_freeze_controller *freeze_controller_base =
  30. (void *)(SOCFPGA_SYSMGR_ADDRESS + SYSMGR_FRZCTRL_ADDRESS);
  31. static struct socfpga_system_manager *sys_mgr_base =
  32. (struct socfpga_system_manager *)SOCFPGA_SYSMGR_ADDRESS;
  33. /**
  34. * scan_chain_engine_is_idle() - Check if the JTAG scan chain is idle
  35. * @max_iter: Maximum number of iterations to wait for idle
  36. *
  37. * Function to check IO scan chain engine status and wait if the engine is
  38. * is active. Poll the IO scan chain engine till maximum iteration reached.
  39. */
  40. static u32 scan_chain_engine_is_idle(u32 max_iter)
  41. {
  42. const u32 mask = SCANMGR_STAT_ACTIVE | SCANMGR_STAT_WFIFOCNT_MASK;
  43. u32 status;
  44. /* Poll the engine until the scan engine is inactive. */
  45. do {
  46. status = readl(&scan_manager_base->stat);
  47. if (!(status & mask))
  48. return 0;
  49. } while (max_iter--);
  50. return -ETIMEDOUT;
  51. }
  52. #define JTAG_BP_INSN (1 << 0)
  53. #define JTAG_BP_TMS (1 << 1)
  54. #define JTAG_BP_PAYLOAD (1 << 2)
  55. #define JTAG_BP_2BYTE (1 << 3)
  56. #define JTAG_BP_4BYTE (1 << 4)
  57. /**
  58. * scan_mgr_jtag_io() - Access the JTAG chain
  59. * @flags: Control flags, used to configure the action on the JTAG
  60. * @iarg: Instruction argument
  61. * @parg: Payload argument or data
  62. *
  63. * Perform I/O on the JTAG chain
  64. */
  65. static void scan_mgr_jtag_io(const u32 flags, const u8 iarg, const u32 parg)
  66. {
  67. u32 data = parg;
  68. if (flags & JTAG_BP_INSN) { /* JTAG instruction */
  69. /*
  70. * The SCC JTAG register is LSB first, so make
  71. * space for the instruction at the LSB.
  72. */
  73. data <<= 8;
  74. if (flags & JTAG_BP_TMS) {
  75. data |= (0 << 7); /* TMS instruction. */
  76. data |= iarg & 0x3f; /* TMS arg is 6 bits. */
  77. if (flags & JTAG_BP_PAYLOAD)
  78. data |= (1 << 6);
  79. } else {
  80. data |= (1 << 7); /* TDI/TDO instruction. */
  81. data |= iarg & 0xf; /* TDI/TDO arg is 4 bits. */
  82. if (flags & JTAG_BP_PAYLOAD)
  83. data |= (1 << 4);
  84. }
  85. }
  86. if (flags & JTAG_BP_4BYTE)
  87. writel(data, &scan_manager_base->fifo_quad_byte);
  88. else if (flags & JTAG_BP_2BYTE)
  89. writel(data & 0xffff, &scan_manager_base->fifo_double_byte);
  90. else
  91. writel(data & 0xff, &scan_manager_base->fifo_single_byte);
  92. }
  93. /**
  94. * scan_mgr_jtag_insn_data() - Send JTAG instruction and data
  95. * @iarg: Instruction argument
  96. * @data: Associated data
  97. * @dlen: Length of data in bits
  98. *
  99. * This function is used when programming the IO chains to submit the
  100. * instruction followed by variable length payload.
  101. */
  102. static int
  103. scan_mgr_jtag_insn_data(const u8 iarg, const unsigned long *data,
  104. const unsigned int dlen)
  105. {
  106. int i, j;
  107. scan_mgr_jtag_io(JTAG_BP_INSN | JTAG_BP_2BYTE, iarg, dlen - 1);
  108. /* 32 bits or more remain */
  109. for (i = 0; i < dlen / 32; i++)
  110. scan_mgr_jtag_io(JTAG_BP_4BYTE, 0x0, data[i]);
  111. if ((dlen % 32) > 24) { /* 31...24 bits remain */
  112. scan_mgr_jtag_io(JTAG_BP_4BYTE, 0x0, data[i]);
  113. } else if (dlen % 32) { /* 24...1 bit remain */
  114. for (j = 0; j < dlen % 32; j += 8)
  115. scan_mgr_jtag_io(0, 0x0, data[i] >> j);
  116. }
  117. return scan_chain_engine_is_idle(SCANMGR_MAX_DELAY);
  118. }
  119. /**
  120. * scan_mgr_io_scan_chain_prg() - Program HPS IO Scan Chain
  121. * @io_scan_chain_id: IO scan chain ID
  122. */
  123. static int scan_mgr_io_scan_chain_prg(const unsigned int io_scan_chain_id)
  124. {
  125. u32 io_scan_chain_len_in_bits;
  126. const unsigned long *iocsr_scan_chain;
  127. unsigned int rem, idx = 0;
  128. int ret;
  129. ret = iocsr_get_config_table(io_scan_chain_id, &iocsr_scan_chain,
  130. &io_scan_chain_len_in_bits);
  131. if (ret)
  132. return 1;
  133. /*
  134. * De-assert reinit if the IO scan chain is intended for HIO. In
  135. * this, its the chain 3.
  136. */
  137. if (io_scan_chain_id == 3)
  138. clrbits_le32(&freeze_controller_base->hioctrl,
  139. SYSMGR_FRZCTRL_HIOCTRL_DLLRST_MASK);
  140. /*
  141. * Check if the scan chain engine is inactive and the
  142. * WFIFO is empty before enabling the IO scan chain
  143. */
  144. ret = scan_chain_engine_is_idle(SCANMGR_MAX_DELAY);
  145. if (ret)
  146. return ret;
  147. /*
  148. * Enable IO Scan chain based on scan chain id
  149. * Note: only one chain can be enabled at a time
  150. */
  151. setbits_le32(&scan_manager_base->en, 1 << io_scan_chain_id);
  152. /* Program IO scan chain. */
  153. while (io_scan_chain_len_in_bits) {
  154. if (io_scan_chain_len_in_bits > 128)
  155. rem = 128;
  156. else
  157. rem = io_scan_chain_len_in_bits;
  158. ret = scan_mgr_jtag_insn_data(0x0, &iocsr_scan_chain[idx], rem);
  159. if (ret)
  160. goto error;
  161. io_scan_chain_len_in_bits -= rem;
  162. idx += 4;
  163. }
  164. /* Disable IO Scan chain when configuration done*/
  165. clrbits_le32(&scan_manager_base->en, 1 << io_scan_chain_id);
  166. return 0;
  167. error:
  168. /* Disable IO Scan chain when error detected */
  169. clrbits_le32(&scan_manager_base->en, 1 << io_scan_chain_id);
  170. return ret;
  171. }
  172. int scan_mgr_configure_iocsr(void)
  173. {
  174. int status = 0;
  175. /* configure the IOCSR through scan chain */
  176. status |= scan_mgr_io_scan_chain_prg(0);
  177. status |= scan_mgr_io_scan_chain_prg(1);
  178. status |= scan_mgr_io_scan_chain_prg(2);
  179. status |= scan_mgr_io_scan_chain_prg(3);
  180. return status;
  181. }
  182. /**
  183. * scan_mgr_get_fpga_id() - Obtain FPGA JTAG ID
  184. *
  185. * This function obtains JTAG ID from the FPGA TAP controller.
  186. */
  187. u32 scan_mgr_get_fpga_id(void)
  188. {
  189. const unsigned long data = 0;
  190. u32 id = 0xffffffff;
  191. int ret;
  192. /* Enable HPS to talk to JTAG in the FPGA through the System Manager */
  193. writel(0x1, &sys_mgr_base->scanmgrgrp_ctrl);
  194. /* Enable port 7 */
  195. writel(0x80, &scan_manager_base->en);
  196. /* write to CSW to make s2f_ntrst reset */
  197. writel(0x02, &scan_manager_base->stat);
  198. /* Add a pause */
  199. mdelay(1);
  200. /* write 0x00 to CSW to clear the s2f_ntrst */
  201. writel(0, &scan_manager_base->stat);
  202. /*
  203. * Go to Test-Logic-Reset state.
  204. * This sets TAP controller into IDCODE mode.
  205. */
  206. scan_mgr_jtag_io(JTAG_BP_INSN | JTAG_BP_TMS, 0x1f | (1 << 5), 0x0);
  207. /* Go to Run-Test/Idle -> DR-Scan -> Capture-DR -> Shift-DR state. */
  208. scan_mgr_jtag_io(JTAG_BP_INSN | JTAG_BP_TMS, 0x02 | (1 << 4), 0x0);
  209. /*
  210. * Push 4 bytes of data through TDI->DR->TDO.
  211. *
  212. * Length of TDI data is 32bits (length - 1) and they are only
  213. * zeroes as we care only for TDO data.
  214. */
  215. ret = scan_mgr_jtag_insn_data(0x4, &data, 32);
  216. /* Read 32 bit from captured JTAG data. */
  217. if (!ret)
  218. id = readl(&scan_manager_base->fifo_quad_byte);
  219. /* Disable all port */
  220. writel(0, &scan_manager_base->en);
  221. writel(0, &sys_mgr_base->scanmgrgrp_ctrl);
  222. return id;
  223. }