2014-12-12 16:26:04 -05:00
|
|
|
import random
|
|
|
|
|
|
|
|
from migen.fhdl.std import *
|
|
|
|
from migen.genlib.record import *
|
|
|
|
from migen.sim.generic import run_simulation
|
|
|
|
|
2014-12-14 04:45:26 -05:00
|
|
|
from lib.sata.common import *
|
2014-12-12 16:26:04 -05:00
|
|
|
from lib.sata.link import SATALink
|
|
|
|
from lib.sata.transport import SATATransport
|
|
|
|
from lib.sata.command import SATACommand
|
|
|
|
|
|
|
|
from lib.sata.test.bfm import *
|
|
|
|
from lib.sata.test.common import *
|
|
|
|
|
2014-12-14 06:49:35 -05:00
|
|
|
class CommandTXPacket(list):
|
|
|
|
def __init__(self, write=0, read=0, identify=0, address=0, length=0, data=[]):
|
|
|
|
self.ongoing = False
|
|
|
|
self.done = False
|
|
|
|
self.write = write
|
|
|
|
self.read = read
|
|
|
|
self.identify = identify
|
|
|
|
self.address = address
|
|
|
|
self.length = length
|
|
|
|
for d in data:
|
|
|
|
self.append(d)
|
|
|
|
|
|
|
|
class CommandStreamer(Module):
|
|
|
|
def __init__(self):
|
|
|
|
self.source = Source(command_tx_description(32))
|
|
|
|
###
|
|
|
|
self.packets = []
|
|
|
|
self.packet = CommandTXPacket()
|
|
|
|
self.packet.done = 1
|
|
|
|
self.length = 0
|
|
|
|
|
|
|
|
def send(self, packet, blocking=True):
|
|
|
|
self.packets.append(packet)
|
|
|
|
if blocking:
|
|
|
|
while packet.done == 0:
|
|
|
|
yield
|
|
|
|
|
|
|
|
def do_simulation(self, selfp):
|
|
|
|
if len(self.packets) and self.packet.done:
|
|
|
|
self.packet = self.packets.pop(0)
|
|
|
|
|
|
|
|
selfp.source.write = self.packet.write
|
|
|
|
selfp.source.read = self.packet.read
|
|
|
|
selfp.source.identify = self.packet.identify
|
|
|
|
selfp.source.address = self.packet.address
|
|
|
|
selfp.source.length = self.packet.length
|
|
|
|
|
|
|
|
if not self.packet.ongoing and not self.packet.done:
|
|
|
|
selfp.source.stb = 1
|
|
|
|
selfp.source.sop = 1
|
|
|
|
if len(self.packet) > 0:
|
|
|
|
selfp.source.data = self.packet.pop(0)
|
|
|
|
self.packet.ongoing = True
|
|
|
|
elif selfp.source.stb == 1 and selfp.source.ack == 1:
|
|
|
|
selfp.source.sop = 0
|
|
|
|
selfp.source.eop = (len(self.packet) == 1)
|
|
|
|
if len(self.packet) > 0:
|
|
|
|
selfp.source.stb = 1
|
|
|
|
selfp.source.data = self.packet.pop(0)
|
|
|
|
else:
|
|
|
|
self.packet.done = 1
|
|
|
|
selfp.source.stb = 0
|
|
|
|
|
|
|
|
class CommandRXPacket(list):
|
|
|
|
def __init__(self):
|
|
|
|
self.ongoing = False
|
|
|
|
self.done = False
|
|
|
|
self.write = 0
|
|
|
|
self.read = 0
|
|
|
|
self.identify = 0
|
|
|
|
self.success = 0
|
|
|
|
self.failed = 0
|
|
|
|
|
|
|
|
class CommandLogger(Module):
|
|
|
|
def __init__(self):
|
|
|
|
self.sink = Sink(command_rx_description(32))
|
|
|
|
###
|
|
|
|
self.packet = CommandRXPacket()
|
|
|
|
|
|
|
|
def receive(self):
|
|
|
|
self.packet.done = 0
|
|
|
|
while self.packet.done == 0:
|
|
|
|
yield
|
|
|
|
|
|
|
|
def do_simulation(self, selfp):
|
|
|
|
selfp.sink.ack = 1
|
|
|
|
if selfp.sink.stb == 1 and selfp.sink.sop == 1:
|
|
|
|
self.packet = CommandRXPacket()
|
|
|
|
self.packet.write = selfp.sink.write
|
|
|
|
self.packet.read = selfp.sink.read
|
|
|
|
self.packet.identify = selfp.sink.identify
|
|
|
|
self.packet.sucess = selfp.sink.success
|
|
|
|
self.paclet.failed = selfp.sink.failed
|
|
|
|
self.packet.append(selfp.sink.data)
|
|
|
|
elif selfp.sink.stb:
|
|
|
|
self.packet.append(selfp.sink.data)
|
|
|
|
if (selfp.sink.stb ==1 and selfp.sink.eop ==1):
|
|
|
|
self.packet.done = True
|
|
|
|
|
2014-12-12 16:26:04 -05:00
|
|
|
class TB(Module):
|
|
|
|
def __init__(self):
|
|
|
|
self.submodules.bfm = BFM(phy_debug=False,
|
2014-12-14 06:49:35 -05:00
|
|
|
link_random_level=0, link_debug=False,
|
|
|
|
transport_debug=True, transport_loopback=False,
|
|
|
|
command_debug=False,
|
|
|
|
hdd_debug=False)
|
2014-12-12 16:26:04 -05:00
|
|
|
self.submodules.link = SATALink(self.bfm.phy)
|
|
|
|
self.submodules.transport = SATATransport(self.link)
|
|
|
|
self.submodules.command = SATACommand(self.transport)
|
|
|
|
|
2014-12-14 06:49:35 -05:00
|
|
|
self.submodules.streamer = CommandStreamer()
|
|
|
|
self.submodules.logger = CommandLogger()
|
|
|
|
self.comb += [
|
|
|
|
Record.connect(self.streamer.source, self.command.sink),
|
|
|
|
Record.connect(self.command.source, self.logger.sink)
|
|
|
|
]
|
|
|
|
|
2014-12-12 16:26:04 -05:00
|
|
|
def gen_simulation(self, selfp):
|
2014-12-14 05:44:12 -05:00
|
|
|
self.bfm.hdd.allocate_mem(0x00000000, 64*1024*1024)
|
2014-12-13 05:33:22 -05:00
|
|
|
selfp.command.source.ack = 1
|
2014-12-12 16:26:04 -05:00
|
|
|
for i in range(100):
|
|
|
|
yield
|
2014-12-14 06:49:35 -05:00
|
|
|
streamer_packet = CommandTXPacket(write=1, address=1024, length=32, data=[i for i in range(32)])
|
|
|
|
yield from self.streamer.send(streamer_packet)
|
2014-12-12 16:26:04 -05:00
|
|
|
for i in range(32):
|
2014-12-12 19:18:08 -05:00
|
|
|
yield
|
2014-12-14 06:49:35 -05:00
|
|
|
streamer_packet = CommandTXPacket(read=1, address=1024, length=32)
|
|
|
|
yield from self.streamer.send(streamer_packet)
|
|
|
|
yield from self.logger.receive()
|
|
|
|
for d in self.logger.packet:
|
|
|
|
print("%08x" %d)
|
2014-12-12 16:26:04 -05:00
|
|
|
|
|
|
|
if __name__ == "__main__":
|
|
|
|
run_simulation(TB(), ncycles=512, vcd_name="my.vcd", keep_files=True)
|