~ruther/vhdl-spi-2

98fdc2a71b1659c3d65e838503aa607502a8bb09 — Rutherther 2 months ago 88da1f9
tests: add proper checks for clock polarity before and after csn
2 files changed, 12 insertions(+), 6 deletions(-)

M hdl_spi/models/spi_models.py
M hdl_spi/tests/test_spi_peripheral.py
M hdl_spi/models/spi_models.py => hdl_spi/models/spi_models.py +10 -4
@@ 61,6 61,7 @@ class SpiConfig:
    sck_period: int
    sck_period_unit: str
    csn_pulse: bool = False
    clock_polarity: int = 0

class SpiSlave:
    def __init__(self, spi: SpiInterface, config: SpiConfig):


@@ 140,6 141,8 @@ class SpiSlave:
                continue

            # csn fell
            if int(self.sck.value) != self.config.clock_polarity:
                raise Exception("The clock is not at correct polarity after CSN falling!")

            first = True
            while not self.transactions.empty():


@@ 192,10 195,11 @@ class SpiSlave:
                if self.config.csn_pulse:
                    break

            sampling = self.config.sampling(self.sck)
            csn_rising = RisingEdge(self.csn)
            timeout = Timer(self.config.sck_period * 2, self.config.sck_period_unit)
            res = await First(shifting, csn_rising, timeout)
            if int(self.sck.value) != self.config.clock_polarity:
                sampling = self.config.sampling(self.sck)
                csn_rising = RisingEdge(self.csn)
                timeout = Timer(self.config.sck_period * 2, self.config.sck_period_unit)
                res = await First(shifting, csn_rising, timeout)

            if res == csn_rising:
                raise Exception("CSN rising too soon!")


@@ 219,6 223,8 @@ class SpiSlave:
                raise Exception("Got sck edge when csn rising was expected")

            self._log.info("csn is rising")
            if int(self.sck.value) != self.config.clock_polarity:
                raise Exception("The clock is not at correct polarity after CSN rising!")

            self.tx.value = cocotb.handle.Release()


M hdl_spi/tests/test_spi_peripheral.py => hdl_spi/tests/test_spi_peripheral.py +2 -2
@@ 129,7 129,7 @@ class DutDriver:
async def single_transmission(dut):
    clk = Clock(dut.clk_i, 5, "ns")
    interface = SpiInterface(dut.csn_o, dut.sck_o, dut.miso_i, dut.mosi_o)
    config = SpiConfig(16, RisingEdge, FallingEdge, 40, "ns")
    config = SpiConfig(16, RisingEdge, FallingEdge, 40, "ns", clock_polarity = 1)
    slave = SpiSlave(interface, config)
    driver = DutDriver(dut)



@@ 177,7 177,7 @@ async def single_transmission(dut):
async def interrupt(dut):
    clk = Clock(dut.clk_i, 5, "ns")
    interface = SpiInterface(dut.csn_o, dut.sck_o, dut.miso_i, dut.mosi_o)
    config = SpiConfig(16, RisingEdge, FallingEdge, 10, "ns")
    config = SpiConfig(16, RisingEdge, FallingEdge, 10, "ns", clock_polarity = 1)
    slave = SpiSlave(interface, config)
    driver = DutDriver(dut)


Do not follow this link