litex/lib/sata/test/bist_tb.py

42 lines
1.1 KiB
Python
Raw Normal View History

2014-12-15 10:44:12 -05:00
import random, copy
from migen.fhdl.std import *
from migen.genlib.record import *
from migen.sim.generic import run_simulation
from lib.sata.common import *
2014-12-15 13:13:32 -05:00
from lib.sata import SATACON
2014-12-15 10:44:12 -05:00
from lib.sata.bist import SATABIST
from lib.sata.test.hdd import *
from lib.sata.test.common import *
class TB(Module):
def __init__(self):
self.submodules.hdd = HDD(
link_debug=False, link_random_level=0,
2014-12-15 10:44:12 -05:00
transport_debug=False, transport_loopback=False,
hdd_debug=True)
2014-12-15 13:13:32 -05:00
self.submodules.controller = SATACON(self.hdd.phy)
self.submodules.bist = SATABIST(max_count=2)
2014-12-15 10:44:12 -05:00
self.comb += [
2014-12-15 13:13:32 -05:00
self.bist.source.connect(self.controller.sink),
self.controller.source.connect(self.bist.sink)
2014-12-15 10:44:12 -05:00
]
def gen_simulation(self, selfp):
hdd = self.hdd
hdd.malloc(0, 64)
while True:
selfp.bist.start = 1
yield
selfp.bist.start = 0
yield
while selfp.bist.done == 0:
yield
print("ctrl_errors: {} / data_errors {}".format(selfp.bist.ctrl_errors, selfp.bist.data_errors))
2014-12-15 10:44:12 -05:00
selfp.bist.sector += 1
if __name__ == "__main__":
run_simulation(TB(), ncycles=4096, vcd_name="my.vcd", keep_files=True)