spi: Change spi_xfer to work in units of bytes instead of bits.
Whenever spi_xfer is called and whenver it's implemented, the natural unit for the amount of data being transfered is bytes. The API expected things to be expressed in bits, however, which led to a lot of multiplying and dividing by eight, and checkes to make sure things were multiples of eight. All of that can now be removed. BUG=None TEST=Built and booted on link, falco, peach_pit and nyan and looked for SPI errors in the firmware log. Built for rambi. BRANCH=None Change-Id: I02365bdb6960a35def7be7a0cd1aa0a2cc09392f Signed-off-by: Gabe Black <gabeblack@google.com> Reviewed-on: https://chromium-review.googlesource.com/192049 Reviewed-by: Gabe Black <gabeblack@chromium.org> Tested-by: Gabe Black <gabeblack@chromium.org> Commit-Queue: Gabe Black <gabeblack@chromium.org> [km: cherry-pick from chromium] Signed-off-by: Kyösti Mälkki <kyosti.malkki@gmail.com> Reviewed-on: http://review.coreboot.org/6175 Tested-by: build bot (Jenkins) Reviewed-by: Edward O'Callaghan <eocallaghan@alterapraxis.com> Reviewed-by: Patrick Georgi <patrick@georgi-clan.de>
This commit is contained in:
committed by
Kyösti Mälkki
parent
1e187356e8
commit
93d9f92cfb
@@ -87,21 +87,14 @@ void spi_init(void)
|
||||
}
|
||||
|
||||
int spi_xfer(struct spi_slave *slave, const void *dout,
|
||||
unsigned int bitsout, void *din, unsigned int bitsin)
|
||||
unsigned int bytesout, void *din, unsigned int bytesin)
|
||||
{
|
||||
/* First byte is cmd which can not being sent through FIFO. */
|
||||
uint8_t cmd = *(uint8_t *)dout++;
|
||||
uint8_t readoffby1;
|
||||
#if !CONFIG_SOUTHBRIDGE_AMD_AGESA_YANGTZE
|
||||
uint8_t readwrite;
|
||||
#endif
|
||||
uint8_t bytesout, bytesin;
|
||||
uint8_t count;
|
||||
|
||||
bitsout -= 8;
|
||||
bytesout = bitsout / 8;
|
||||
bytesin = bitsin / 8;
|
||||
u8 cmd = *(u8 *)dout++;
|
||||
u8 readoffby1;
|
||||
u8 count;
|
||||
|
||||
bytesout--;
|
||||
readoffby1 = bytesout ? 0 : 1;
|
||||
|
||||
#if CONFIG_SOUTHBRIDGE_AMD_AGESA_YANGTZE
|
||||
@@ -110,7 +103,7 @@ int spi_xfer(struct spi_slave *slave, const void *dout,
|
||||
spi_write(0x1E, 6);
|
||||
spi_write(0x1F, bytesin); /* SpiExtRegIndx [6] - RxByteCount */
|
||||
#else
|
||||
readwrite = (bytesin + readoffby1) << 4 | bytesout;
|
||||
u8 readwrite = (bytesin + readoffby1) << 4 | bytesout;
|
||||
spi_write(SPI_REG_CNTRL01, readwrite);
|
||||
#endif
|
||||
spi_write(SPI_REG_OPCODE, cmd);
|
||||
|
Reference in New Issue
Block a user