mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-10 23:24:38 +00:00
exynos: spi: Fix calculation of SPI transaction start time
The SPI transaction delay is supposed to be measured from the end of one transaction to the start of the next. The code does not work that way, so fix it. Signed-off-by: Simon Glass <sjg@chromium.org> Tested-by: Ajay Kumar <ajaykumar.rs@samsung.com> Reviewed-by: Jagannadha Sutradharudu Teki <jaganna@xilinx.com>
This commit is contained in:
parent
2001b9a641
commit
a4e29db257
1 changed files with 5 additions and 4 deletions
|
@ -428,10 +428,6 @@ void spi_cs_activate(struct spi_slave *slave)
|
|||
clrbits_le32(&spi_slave->regs->cs_reg, SPI_SLAVE_SIG_INACT);
|
||||
debug("Activate CS, bus %d\n", spi_slave->slave.bus);
|
||||
spi_slave->skip_preamble = spi_slave->mode & SPI_PREAMBLE;
|
||||
|
||||
/* Remember time of this transaction so we can honour the bus delay */
|
||||
if (spi_slave->bus->deactivate_delay_us)
|
||||
spi_slave->last_transaction_us = timer_get_us();
|
||||
}
|
||||
|
||||
/**
|
||||
|
@ -445,6 +441,11 @@ void spi_cs_deactivate(struct spi_slave *slave)
|
|||
struct exynos_spi_slave *spi_slave = to_exynos_spi(slave);
|
||||
|
||||
setbits_le32(&spi_slave->regs->cs_reg, SPI_SLAVE_SIG_INACT);
|
||||
|
||||
/* Remember time of this transaction so we can honour the bus delay */
|
||||
if (spi_slave->bus->deactivate_delay_us)
|
||||
spi_slave->last_transaction_us = timer_get_us();
|
||||
|
||||
debug("Deactivate CS, bus %d\n", spi_slave->slave.bus);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue