liteusb: pep8 (E302)
authorFlorent Kermarrec <florent@enjoy-digital.fr>
Mon, 13 Apr 2015 12:27:31 +0000 (14:27 +0200)
committerFlorent Kermarrec <florent@enjoy-digital.fr>
Mon, 13 Apr 2015 12:27:31 +0000 (14:27 +0200)
misoclib/com/liteusb/common.py
misoclib/com/liteusb/core/com.py
misoclib/com/liteusb/core/crc.py
misoclib/com/liteusb/core/depacketizer.py
misoclib/com/liteusb/core/packetizer.py
misoclib/com/liteusb/frontend/crossbar.py
misoclib/com/liteusb/frontend/dma.py
misoclib/com/liteusb/frontend/uart.py
misoclib/com/liteusb/phy/ft2232h.py

index bb357df1d575b8bec382d6ef13566299f27be602..b27e8318f06d2b14362e3152107ff0e5e946c659 100644 (file)
@@ -16,11 +16,13 @@ phy_layout = [
     ("d", 8)
 ]
 
+
 class LiteUSBPipe:
     def __init__(self, layout):
         self.sink = Sink(layout)
         self.source = Source(layout)
 
+
 class LiteUSBTimeout(Module):
     def __init__(self, clk_freq, length):
         cnt_max = int(clk_freq*length)
@@ -43,9 +45,11 @@ class LiteUSBTimeout(Module):
 #
 import random
 
+
 def randn(max_n):
     return random.randint(0, max_n-1)
 
+
 class RandRun:
     def __init__(self, level=0):
         self.run = True
index 22d8beb59c0a656ed5ce3b1487e4c2221f978328..bf4ec069c194b55d3c7f5df55258c4e096052de4 100644 (file)
@@ -6,6 +6,7 @@ from misoclib.com.liteusb.frontend.crossbar import LiteUSBCrossbar
 from misoclib.com.liteusb.core.packetizer import LiteUSBPacketizer
 from misoclib.com.liteusb.core.depacketizer import LiteUSBDepacketizer
 
+
 class LiteUSBCom(Module):
     def __init__(self, phy, *ports):
         # crossbar
index 4c60d474c9f5156b7358f6ff9ce5c446c47a52a1..95e9db8c86363f42b21b63611052e42266db9c9b 100644 (file)
@@ -8,6 +8,7 @@ from migen.actorlib.fifo import SyncFIFO
 
 from misoclib.com.liteusb.common import *
 
+
 class CRCEngine(Module):
     """Cyclic Redundancy Check Engine
 
@@ -76,6 +77,7 @@ class CRCEngine(Module):
                     xors += [self.d[n]]
             self.comb += self.next[i].eq(optree("^", xors))
 
+
 @DecorateModule(InsertReset)
 @DecorateModule(InsertCE)
 class CRC32(Module):
@@ -119,6 +121,7 @@ class CRC32(Module):
             self.error.eq(self.engine.next != self.check)
         ]
 
+
 class CRCInserter(Module):
     """CRC Inserter
 
@@ -193,10 +196,12 @@ class CRCInserter(Module):
             )
         self.comb += self.busy.eq(~fsm.ongoing("IDLE"))
 
+
 class CRC32Inserter(CRCInserter):
     def __init__(self, layout):
         CRCInserter.__init__(self, CRC32, layout)
 
+
 class CRCChecker(Module):
     """CRC Checker
 
@@ -279,10 +284,12 @@ class CRCChecker(Module):
         )
         self.comb += self.busy.eq(~fsm.ongoing("IDLE"))
 
+
 class CRC32Checker(CRCChecker):
     def __init__(self, layout):
         CRCChecker.__init__(self, CRC32, layout)
 
+
 class LiteUSBCRC32(Module):
     def __init__(self, tag):
         self.tag = tag
index 469f00115e7735f167eff6c6e4f2f49d49543fbf..cbc919e869da123b1f4c0289eeaf97bc9d584f71 100644 (file)
@@ -4,6 +4,7 @@ from migen.genlib.fsm import FSM, NextState
 
 from misoclib.com.liteusb.common import *
 
+
 class LiteUSBDepacketizer(Module):
     def __init__(self, timeout=10):
         self.sink = sink = Sink(phy_layout)
@@ -96,6 +97,7 @@ src_data =    [
     0x5A, 0xA5, 0x5A, 0xA5, 0x12, 0x00, 0x00, 0x00, 0x08, 0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07,
 ]*4
 
+
 class DepacketizerSourceModel(Module, Source, RandRun):
     def __init__(self, data):
         Source.__init__(self, phy_layout)
@@ -145,6 +147,7 @@ class TB(Module):
             self.dut.source.connect(self.sink),
         ]
 
+
 def main():
     from migen.sim.generic import run_simulation
     run_simulation(TB(), ncycles=400, vcd_name="tb_depacketizer.vcd")
index 7ede9db403ff75771c2fd6543d221577aff350a7..dc4b9fe13368bb15a5b72f1e535916d3b603d078 100644 (file)
@@ -4,6 +4,7 @@ from migen.genlib.fsm import FSM, NextState
 
 from misoclib.com.liteusb.common import *
 
+
 class LiteUSBPacketizer(Module):
     def __init__(self):
         self.sink = sink = Sink(user_layout)
@@ -70,9 +71,10 @@ src_data = [
     ),
     (0x22, 16,
         [0x0, 0x1, 0x2, 0x3, 0x4, 0x5, 0x6, 0x7, 0x8, 0x9, 0xA, 0xB, 0xC, 0xD, 0xE, 0xF]
-    ),
+    )
 ]
 
+
 class PacketizerSourceModel(Module, Source, RandRun):
     def __init__(self, data):
         Source.__init__(self, user_layout, True)
@@ -116,6 +118,7 @@ class PacketizerSourceModel(Module, Source, RandRun):
         if self._frame_cnt == len(self.data):
             raise StopSimulation
 
+
 class PacketizerSinkModel(Module, Sink, RandRun):
     def __init__(self):
         Sink.__init__(self, phy_layout)
@@ -140,6 +143,7 @@ class TB(Module):
             self.dut.source.connect(self.sink),
         ]
 
+
 def main():
     from migen.sim.generic import run_simulation
     run_simulation(TB(), ncycles=400, vcd_name="tb_packetizer.vcd")
index e76937a413d18bbbcdf4b4f930ab7605e14921a8..85ddefbf2e433d459d6a1df94f3a028288eeb48a 100644 (file)
@@ -4,6 +4,7 @@ from migen.genlib.record import Record
 
 from misoclib.com.liteusb.common import *
 
+
 class LiteUSBCrossbar(Module):
     def __init__(self, masters, slave=None):
         if slave is None:
index 4e26004ee255e68e446c1c57a019797153235837..7cccccde30d9c2cea070d8d36f021e07e9b6085c 100644 (file)
@@ -7,9 +7,9 @@ from migen.bank.eventmanager import *
 from migen.genlib.record import Record
 
 from misoclib.mem.sdram.frontend import dma_lasmi
-
 from misoclib.com.liteusb.common import *
 
+
 class LiteUSBDMAWriter(Module, AutoCSR):
     def __init__(self, lasmim):
         self.sink = sink = Sink(user_layout)
@@ -50,6 +50,7 @@ class LiteUSBDMAWriter(Module, AutoCSR):
                 self._crc_failed.status.eq(sink.error)
             )
 
+
 class LiteUSBDMAReader(Module, AutoCSR):
     def __init__(self, lasmim, tag):
         self.source = source = Source(user_layout)
@@ -89,6 +90,7 @@ class LiteUSBDMAReader(Module, AutoCSR):
         self.ev.finalize()
         self.comb += self.ev.done.trigger.eq(source.stb & source.eop)
 
+
 class LiteUSBDMA(Module, AutoCSR):
     def __init__(self, lasmim_ftdi_dma_wr, lasmim_ftdi_dma_rd, tag):
         self.tag = tag
index ea56a6b5fb911e367006d78d0b0766e1ac097ba2..a03e67ebdfc11b167d8a8da0bcc5ea8892ba9b73 100644 (file)
@@ -5,6 +5,7 @@ from migen.genlib.fifo import SyncFIFOBuffered
 
 from misoclib.com.liteusb.common import *
 
+
 class LiteUSBUART(Module, AutoCSR):
     def __init__(self, tag, fifo_depth=64):
         self.tag = tag
index 9f2a0d5a41804fe1087ae67bbbd7df1739669f03..c4d37b3434e75e10a2753c1ad79e6abec953d1b7 100644 (file)
@@ -5,6 +5,7 @@ from migen.fhdl.specials import *
 
 from misoclib.com.liteusb.common import *
 
+
 class FT2232HPHY(Module):
     def __init__(self, pads, fifo_depth=32, read_time=16, write_time=16):
         dw = flen(pads.data)
@@ -212,6 +213,7 @@ class FT2232HModel(Module, RandRun):
         self.wr_sim(selfp)
         self.rd_sim(selfp)
 
+
 class UserModel(Module, RandRun):
     def __init__(self, wr_data):
         RandRun.__init__(self, 50)
@@ -256,6 +258,7 @@ LENGTH = 512
 model_rd_data = [i%256 for i in range(LENGTH)][::-1]
 user_wr_data  = [i%256 for i in range(LENGTH)]
 
+
 class TB(Module):
     def __init__(self):
         self.submodules.model = FT2232HModel(model_rd_data)
@@ -274,6 +277,7 @@ class TB(Module):
             ResetSignal("ftdi").eq(ResetSignal())
         ]
 
+
 def print_results(s, l1, l2):
     def comp(l1, l2):
         r = True
@@ -294,6 +298,7 @@ def print_results(s, l1, l2):
         r += "[KO]"
     print(r)
 
+
 def main():
     from migen.sim.generic import run_simulation
     tb = TB()