|
| 1 | +import cocotb |
| 2 | +from cocotb.types import LogicArray |
| 3 | +from cocotb.clock import Clock |
| 4 | +from cocotb.triggers import ClockCycles |
| 5 | +import re |
| 6 | +import os |
| 7 | +import binascii |
| 8 | + |
| 9 | + |
| 10 | +async def enable_design(dut, mux_addr): |
| 11 | + dut._log.info(f"enabling design at mux address {mux_addr}") |
| 12 | + dut.addr.value = mux_addr |
| 13 | + |
| 14 | + |
| 15 | +@cocotb.test() |
| 16 | +async def test_factory_test(dut): |
| 17 | + clock = Clock(dut.clk, 100, units="ns") # 10 MHz |
| 18 | + cocotb.start_soon(clock.start()) |
| 19 | + |
| 20 | + dut.uio.value = LogicArray("Z" * 8) |
| 21 | + dut.ui_in.value = 0 |
| 22 | + # select test design |
| 23 | + dut.rst_n.value = 0 |
| 24 | + await enable_design(dut, 1) |
| 25 | + |
| 26 | + # with bit 0 of ui_in set to 0, module will copy inputs to outputs |
| 27 | + dut.ui_in.value = 0b0 |
| 28 | + await ClockCycles(dut.clk, 5) # wait until the wait state config is read |
| 29 | + dut.rst_n.value = 1 |
| 30 | + |
| 31 | + dut._log.info("test loopback") |
| 32 | + for i in range(256): |
| 33 | + dut.uio.value = i |
| 34 | + await ClockCycles(dut.clk, 1) |
| 35 | + assert dut.uo_out.value == i |
| 36 | + |
| 37 | + # with bit 0 of ui_in set to 1, module will enable bidirectional outputs and put a counter on both output and bidirectional output |
| 38 | + dut.uio.value = LogicArray("Z" * 8) |
| 39 | + dut.ui_in.value = 0b1 |
| 40 | + |
| 41 | + # reset it |
| 42 | + dut.rst_n.value = 0 |
| 43 | + await ClockCycles(dut.clk, 5) # wait until the wait state config is read |
| 44 | + dut.rst_n.value = 1 |
| 45 | + await ClockCycles(dut.clk, 2) # sync |
| 46 | + |
| 47 | + dut._log.info("test counter") |
| 48 | + for i in range(256): |
| 49 | + assert dut.uo_out.value == dut.uio.value |
| 50 | + assert dut.uo_out.value == i |
| 51 | + await ClockCycles(dut.clk, 1) # wait until the wait state config is read |
| 52 | + |
| 53 | + |
| 54 | +@cocotb.test() |
| 55 | +async def test_rom(dut): |
| 56 | + clock = Clock(dut.clk, 100, units="ns") # 10 MHz |
| 57 | + cocotb.start_soon(clock.start()) |
| 58 | + |
| 59 | + dut.uio.value = LogicArray("Z" * 8) |
| 60 | + dut.ui_in.value = 0 |
| 61 | + # select ROM design |
| 62 | + dut.rst_n.value = 0 |
| 63 | + await enable_design(dut, 0) |
| 64 | + |
| 65 | + dut._log.info("test ROM") |
| 66 | + buf = bytearray(256) |
| 67 | + for byte_idx in range(len(buf)): |
| 68 | + dut.ui_in.value = byte_idx |
| 69 | + await ClockCycles(dut.clk, 1) |
| 70 | + buf[byte_idx] = dut.uo_out.value.integer |
| 71 | + |
| 72 | + text = buf[32:128].rstrip(b"\0").decode("ascii") |
| 73 | + items = {} |
| 74 | + for line in text.split("\n"): |
| 75 | + if len(line) == 0: |
| 76 | + break |
| 77 | + key, value = line.split("=", 2) |
| 78 | + items[key] = value |
| 79 | + |
| 80 | + dut._log.info(f"ROM start bytes: {binascii.hexlify(buf[:32], ' ').decode('ascii')}") |
| 81 | + dut._log.info(f"ROM text data: {items}") |
| 82 | + |
| 83 | + assert "shuttle" in items |
| 84 | + assert "repo" in items |
| 85 | + # commit is not available in IHP ROM |
| 86 | + #assert "commit" in items |
| 87 | + |
| 88 | + assert items["repo"] == os.environ.get("EXPECTED_REPO") |
| 89 | + #assert re.match("^[0-9a-f]{8}$", items["commit"]) != None |
| 90 | + |
| 91 | + magic = buf[248:252] |
| 92 | + assert magic == b"TT\xFA\xBB" |
| 93 | + |
| 94 | + crc32 = int.from_bytes(buf[252:256], "little") |
| 95 | + assert crc32 == binascii.crc32(buf[0:252]) |
0 commit comments