litex/lib/sata/test/bist_tb.py

35 lines
936 B
Python
Raw Normal View History

2014-12-15 10:44:12 -05:00
from lib.sata.common import *
2014-12-15 13:13:32 -05:00
from lib.sata import SATACON
2014-12-25 06:28:06 -05:00
from lib.sata.bist import SATABISTUnit
2014-12-15 10:44:12 -05:00
from lib.sata.test.hdd import *
from lib.sata.test.common import *
class TB(Module):
def __init__(self):
self.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-25 06:28:06 -05:00
self.con = SATACON(self.hdd.phy)
self.bist = SATABISTUnit(self.con)
2014-12-15 10:44:12 -05:00
def gen_simulation(self, selfp):
hdd = self.hdd
hdd.malloc(0, 64)
2014-12-15 13:48:22 -05:00
selfp.bist.sector = 0
2015-01-06 10:48:19 -05:00
selfp.bist.count = 17
2014-12-15 10:44:12 -05:00
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
2014-12-15 13:48:22 -05:00
selfp.bist.count = max((selfp.bist.count + 1)%8, 1)
2014-12-15 10:44:12 -05:00
if __name__ == "__main__":
2014-12-15 13:48:22 -05:00
run_simulation(TB(), ncycles=8192*2, vcd_name="my.vcd", keep_files=True)