update pinmux submodule, rename to "fabric"
authorLuke Kenneth Casson Leighton <lkcl@lkcl.net>
Wed, 6 Jul 2022 13:22:54 +0000 (14:22 +0100)
committerLuke Kenneth Casson Leighton <lkcl@lkcl.net>
Wed, 6 Jul 2022 13:22:54 +0000 (14:22 +0100)
pinmux
src/soc/config/pinouts.py
src/soc/debug/.gitignore [new file with mode: 0644]
src/soc/simple/issuer.py

diff --git a/pinmux b/pinmux
index d96f737c0a53dde983060522816bbef016b449ce..7cbf0e2a54448f549243cd602ebafd10de8d32f0 160000 (submodule)
--- a/pinmux
+++ b/pinmux
@@ -1 +1 @@
-Subproject commit d96f737c0a53dde983060522816bbef016b449ce
+Subproject commit 7cbf0e2a54448f549243cd602ebafd10de8d32f0
index 95129b1999e733b44c5f46c265d9b1c478c4a8f4..9ebe4f7cd2ee18f0af9545fef246298a58401095 100644 (file)
@@ -98,7 +98,7 @@ def load_pinouts(chipname=None):
 
     # path is relative to this filename, in the pinmux submodule
     pinmux = os.getenv("PINMUX", "%s/../../../pinmux" % pth)
-    fname = "%s/%s/litex_pinpads.json" % (pinmux, chipname)
+    fname = "%s/%s/fabric_pinpads.json" % (pinmux, chipname)
     with open(fname) as f:
         txt = f.read()
 
diff --git a/src/soc/debug/.gitignore b/src/soc/debug/.gitignore
new file mode 100644 (file)
index 0000000..8edaee0
--- /dev/null
@@ -0,0 +1 @@
+ls180_pins.py
index cc372386af6c947ad015a6b090bb4cb128c9a14d..15bd1760a5ab93f233d8cb7cdff813d7b0833096 100644 (file)
@@ -209,7 +209,7 @@ class TestIssuerBase(Elaboratable):
         #self.dbg_domain = "sync"  # sigh "dbgsunc" too problematic
         self.dbg_domain = "dbgsync" # domain for DMI/JTAG clock
         if self.jtag_en:
-            # XXX MUST keep this up-to-date with litex, and
+            # XXX MUST keep this up-to-date with fabric, and
             # soc-cocotb-sim, and err.. all needs sorting out, argh
             subset = ['uart',
                       'mtwi',
@@ -415,7 +415,7 @@ class TestIssuerBase(Elaboratable):
 
         cur_state = self.cur_state
 
-        # 4x 4k SRAM blocks.  these simply "exist", they get routed in litex
+        # 4x 4k SRAM blocks.  these simply "exist", they get routed in fabric
         if self.sram4x4k:
             for i, sram in enumerate(self.sram4k):
                 m.submodules["sram4k_%d" % i] = csd(sram)
@@ -435,7 +435,7 @@ class TestIssuerBase(Elaboratable):
             m.submodules.simple_gpio = simple_gpio = csd(self.simple_gpio)
 
         # connect one GPIO output to ICS bit 15 (like in microwatt soc.vhdl)
-        # XXX causes litex ECP5 test to get wrong idea about input and output
+        # XXX causes fabric 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])