mirror of
https://github.com/xcat2/xNBA.git
synced 2024-11-27 03:39:15 +00:00
[spi] Reset device on each access
When chainloading rtl8139.pxe from an old Etherboot rtl8139.zrom, iPXE can end up misreading the first word of the MAC address from the EEPROM as being all zeroes. This is presumably because Etherboot has left the serial EEPROM in an unexpected state. Fix by using the chip select line to reset the SPI device before we start accessing it. Reported-by: Mandar U Jog <mandarjog@gmail.com> Tested-by: Mandar U Jog <mandarjog@gmail.com> Signed-off-by: Michael Brown <mcb30@ipxe.org>
This commit is contained in:
parent
7d5dcc9299
commit
530a01eff0
@ -162,6 +162,9 @@ static int spi_bit_rw ( struct spi_bus *bus, struct spi_device *device,
|
||||
uint32_t tmp_address;
|
||||
uint32_t tmp_address_detect;
|
||||
|
||||
/* Deassert chip select to reset specified slave */
|
||||
spi_bit_set_slave_select ( spibit, device->slave, DESELECT_SLAVE );
|
||||
|
||||
/* Set clock line to idle state */
|
||||
write_bit ( &spibit->basher, SPI_BIT_SCLK,
|
||||
( bus->mode & SPI_MODE_CPOL ) );
|
||||
|
Loading…
Reference in New Issue
Block a user