apparently sdcard CMD is bi-directional
authorLuke Kenneth Casson Leighton <lkcl@lkcl.net>
Sun, 4 Oct 2020 17:44:56 +0000 (18:44 +0100)
committerLuke Kenneth Casson Leighton <lkcl@lkcl.net>
Sun, 4 Oct 2020 17:44:56 +0000 (18:44 +0100)
src/spec/pinfunctions.py

index ffa0e02fc6ce1bb4df8ef657415957d1f07544c8..e3c97f3efa9bcacf8a990ad68888ab56d695cc01 100644 (file)
@@ -54,7 +54,7 @@ def i2s(suffix, bank):
 # XXX TODO: correct these.  this is a stub for now
 # https://bugs.libre-soc.org/show_bug.cgi?id=303
 def lpc(suffix, bank, pincount=4):
-    lpcpins = ['CMD+', 'CLK+']
+    lpcpins = ['CMD*', 'CLK+']
     inout = []
     for i in range(pincount):
         pname = "D%d*" % i
@@ -64,7 +64,7 @@ def lpc(suffix, bank, pincount=4):
 
 
 def emmc(suffix, bank, pincount=8):
-    emmcpins = ['CMD+', 'CLK+']
+    emmcpins = ['CMD*', 'CLK+']
     inout = []
     for i in range(pincount):
         pname = "D%d*" % i