reduce nc pins by 5 for PLL
authorLuke Kenneth Casson Leighton <lkcl@lkcl.net>
Sat, 22 May 2021 10:48:31 +0000 (11:48 +0100)
committerLuke Kenneth Casson Leighton <lkcl@lkcl.net>
Sat, 22 May 2021 10:48:31 +0000 (11:48 +0100)
libresoc/ls180.py

index a03eef9a9408be3d876fa135b2dcebded0e5b41d..4b56d697b807faf42941cb32d84b9597f1bde51c 100644 (file)
@@ -155,11 +155,11 @@ def io():
     _io.append(make_uart("uart", 1))
 
     # not connected - eurgh have to adjust this to match the total pincount.
-    num_nc = 24
+    num_nc = 23
     num_nc += 4 # mspi1 comments out, litex problems 25mar2021
     num_nc += 6 # sd0 comments out, litex problems 25mar2021
     num_nc += 2 # pwm comments out, litex problems 25mar2021
-    num_nc += 4 # PLL disabled for now
+    #num_nc += 4 # PLL disabled for now
     nc = ' '.join("NC%d" % i for i in range(num_nc))
     _io.append(("nc", 0, Pins(nc), IOStandard("LVCMOS33")))