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
|
2015-01-07 16:15:57 -05:00
|
|
|
from lib.sata.bist import SATABIST
|
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):
|
2014-12-18 19:35:18 -05:00
|
|
|
self.hdd = HDD(
|
2014-12-15 13:04:45 -05:00
|
|
|
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)
|
2015-01-07 16:15:57 -05:00
|
|
|
self.bist = SATABIST(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
|
2015-01-07 16:15:57 -05:00
|
|
|
selfp.bist.loops = 1
|
2014-12-15 10:44:12 -05:00
|
|
|
while True:
|
2015-01-07 16:15:57 -05:00
|
|
|
selfp.bist.write = 1
|
2014-12-15 10:44:12 -05:00
|
|
|
yield
|
2015-01-07 16:15:57 -05:00
|
|
|
selfp.bist.write = 0
|
2014-12-15 10:44:12 -05:00
|
|
|
yield
|
|
|
|
while selfp.bist.done == 0:
|
|
|
|
yield
|
2015-01-07 16:15:57 -05:00
|
|
|
selfp.bist.read = 1
|
|
|
|
yield
|
|
|
|
selfp.bist.read = 0
|
|
|
|
yield
|
|
|
|
while selfp.bist.done == 0:
|
|
|
|
yield
|
|
|
|
print("errors {}".format(selfp.bist.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)
|