Increase DTM idle cycle hint to 8 cycles -- see #6
This commit is contained in:
parent
1953773ca5
commit
dff278ea05
|
@ -77,8 +77,13 @@ hazard3_reset_sync dmi_reset_sync_u (
|
|||
.rst_n_out (rst_n_dmi)
|
||||
);
|
||||
|
||||
// Note the idle hint of 8 cycles was empirically found to be the correct
|
||||
// value for a 1:2 TCK:clk_dmi ratio. OpenOCD doesn't particularly care
|
||||
// because it will just increase idle cycles until it stops seeing BUSY.
|
||||
|
||||
hazard3_jtag_dtm #(
|
||||
.IDCODE (IDCODE)
|
||||
.IDCODE (IDCODE),
|
||||
.DTMCS_IDLE_HINT (8)
|
||||
) inst_hazard3_jtag_dtm (
|
||||
.tck (tck),
|
||||
.trst_n (trst_n),
|
||||
|
|
|
@ -78,7 +78,8 @@ hazard3_reset_sync dmi_reset_sync_u (
|
|||
);
|
||||
|
||||
hazard3_jtag_dtm #(
|
||||
.IDCODE (IDCODE)
|
||||
.IDCODE (IDCODE),
|
||||
.DTMCS_IDLE_HINT (8)
|
||||
) inst_hazard3_jtag_dtm (
|
||||
.tck (tck),
|
||||
.trst_n (trst_n),
|
||||
|
|
Loading…
Reference in New Issue