mirror of
https://github.com/Fishwaldo/u-boot.git
synced 2025-03-21 14:41:31 +00:00
cros_ec: Handle the single duplex requirement in cros_ec
With several chips using the SPI protocol it seems better to put the single duplex functionality in the EC rather than the SPI driver. Signed-off-by: Simon Glass <sjg@chromium.org>
This commit is contained in:
parent
c4b206dff1
commit
527265d8f2
1 changed files with 20 additions and 3 deletions
|
@ -25,6 +25,8 @@ int cros_ec_spi_packet(struct udevice *udev, int out_bytes, int in_bytes)
|
||||||
{
|
{
|
||||||
struct cros_ec_dev *dev = dev_get_uclass_priv(udev);
|
struct cros_ec_dev *dev = dev_get_uclass_priv(udev);
|
||||||
struct spi_slave *slave = dev_get_parentdata(dev->dev);
|
struct spi_slave *slave = dev_get_parentdata(dev->dev);
|
||||||
|
ulong start;
|
||||||
|
uint8_t byte;
|
||||||
int rv;
|
int rv;
|
||||||
|
|
||||||
/* Do the transfer */
|
/* Do the transfer */
|
||||||
|
@ -33,10 +35,25 @@ int cros_ec_spi_packet(struct udevice *udev, int out_bytes, int in_bytes)
|
||||||
return -1;
|
return -1;
|
||||||
}
|
}
|
||||||
|
|
||||||
rv = spi_xfer(slave, max(out_bytes, in_bytes) * 8,
|
rv = spi_xfer(slave, out_bytes * 8, dev->dout, NULL, SPI_XFER_BEGIN);
|
||||||
dev->dout, dev->din,
|
if (rv)
|
||||||
SPI_XFER_BEGIN | SPI_XFER_END);
|
goto done;
|
||||||
|
start = get_timer(0);
|
||||||
|
while (1) {
|
||||||
|
rv = spi_xfer(slave, 8, NULL, &byte, 0);
|
||||||
|
if (byte == SPI_PREAMBLE_END_BYTE)
|
||||||
|
break;
|
||||||
|
if (rv)
|
||||||
|
goto done;
|
||||||
|
if (get_timer(start) > 100) {
|
||||||
|
rv = -ETIMEDOUT;
|
||||||
|
goto done;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
rv = spi_xfer(slave, in_bytes * 8, NULL, dev->din, 0);
|
||||||
|
done:
|
||||||
|
spi_xfer(slave, 0, NULL, NULL, SPI_XFER_END);
|
||||||
spi_release_bus(slave);
|
spi_release_bus(slave);
|
||||||
|
|
||||||
if (rv) {
|
if (rv) {
|
||||||
|
|
Loading…
Add table
Reference in a new issue