comment out XICS/GPIO interrupt test, causes ECP5 litex build to fail
authorLuke Kenneth Casson Leighton <lkcl@lkcl.net>
Sun, 11 Oct 2020 13:57:38 +0000 (14:57 +0100)
committerLuke Kenneth Casson Leighton <lkcl@lkcl.net>
Sun, 11 Oct 2020 13:57:38 +0000 (14:57 +0100)
(input incorrectly detected as output)

src/soc/simple/issuer.py

index 7fb102fb94eb4c39eebc6908d3265799e2d6323a..aafae394e101cb4d9ab9aff0080a0b6e896cf36e 100644 (file)
@@ -140,8 +140,10 @@ class TestIssuerInternal(Elaboratable):
             m.submodules.simple_gpio = simple_gpio = self.simple_gpio
 
         # connect one GPIO output to ICS bit 15 (like in microwatt soc.vhdl)
-        if self.gpio and self.xics:
-            comb += self.int_level_i[15].eq(simple_gpio.gpio_o[0])
+        # XXX causes litex ECP5 test to get wrong idea about input and output
+        # (but works with verilator sim *sigh*)
+        #if self.gpio and self.xics:
+        #   comb += self.int_level_i[15].eq(simple_gpio.gpio_o[0])
 
         # instruction decoder
         pdecode = create_pdecode()