allow i2c to be routed via JTAG
[soc.git] / src / soc / debug / jtag.py
index 5aa0bf536fee317ef34b319821467f4f8d8d4e43..45d4ee30f3eb26b52c65faa9e71d74a26cbd2d48 100644 (file)
@@ -26,7 +26,9 @@ def dummy_pinset():
     gpios = []
     for i in range(16):
         gpios.append("gpio%d*" % i)
-    return {'uart': ['tx+', 'rx-'], 'gpio': gpios}
+    return {'uart': ['tx+', 'rx-'],
+             'gpio': gpios,
+             'i2c': ['sda*', 'scl+']}
 
 # TODO: move to suitable location
 class Pins: