litex/lib/sata/test/bist_tb.py

41 lines
1006 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-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.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)
self.controller = SATACON(self.hdd.phy)
self.bist = SATABIST()
self.pipeline = Pipeline(
self.bist,
self.controller,
self.bist
)
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
selfp.bist.count = 4
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)