resolve issue in coriolis2 with passing nmigen expressions rather
authorLuke Kenneth Casson Leighton <lkcl@lkcl.net>
Sun, 25 Oct 2020 11:26:26 +0000 (11:26 +0000)
committerStaf Verhaegen <staf@stafverhaegen.be>
Wed, 21 Apr 2021 17:45:29 +0000 (19:45 +0200)
than signals to a submodule

c4m/nmigen/jtag/tap.py

index e3de5c30068b4b064ba25387ca5837b47c79f0ae..4be95578eb38869dc161e159e23d00941c936e0d 100755 (executable)
@@ -372,7 +372,11 @@ class TAP(Elaboratable):
         ir = irblock.ir
 
         # ID block
-        select_id = fsm.isdr & ((ir == cmd_idcode) | (ir == cmd_bypass))
+        select_id = Signal()
+        id_bypass = Signal()
+        m.d.comb += select_id.eq(fsm.isdr &
+                                 ((ir == cmd_idcode) | (ir == cmd_bypass)))
+        m.d.comb += id_bypass.eq(ir == cmd_bypass)
         m.submodules._idblock = idblock = _IDBypassBlock(
             manufacturer_id=self._manufacturer_id,
             part_number=self._part_number,
@@ -380,7 +384,7 @@ class TAP(Elaboratable):
             capture=(select_id & fsm.capture),
             shift=(select_id & fsm.shift),
             update=(select_id & fsm.update),
-            bypass=(ir == cmd_bypass),
+            bypass=id_bypass,
             name=self.name+"_id",
         )