Skip to content

Commit

Permalink
Merge pull request #859 from ucb-bar/jtag-reset-sync
Browse files Browse the repository at this point in the history
Synchronize JTAG reset to JTAG.TCK.
  • Loading branch information
jerryz123 authored Apr 19, 2021
2 parents 7f78d77 + fd0ba3f commit 22f6fd5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion generators/chipyard/src/main/scala/IOBinders.scala
Original file line number Diff line number Diff line change
Expand Up @@ -231,7 +231,7 @@ class WithDebugIOCells extends OverrideLazyIOBinder({
d.disableDebug.foreach { d => d := false.B }
// Drive JTAG on-chip IOs
d.systemjtag.map { j =>
j.reset := clockBundle.reset
j.reset := ResetCatchAndSync(j.jtag.TCK, clockBundle.reset.toBool)
j.mfr_id := p(JtagDTMKey).idcodeManufId.U(11.W)
j.part_number := p(JtagDTMKey).idcodePartNum.U(16.W)
j.version := p(JtagDTMKey).idcodeVersion.U(4.W)
Expand Down

0 comments on commit 22f6fd5

Please sign in to comment.