]> git.dujemihanovic.xyz Git - u-boot.git/commit
misc: atsha204a: fix wakeup function
authorMichał Barnaś <barnas@google.com>
Mon, 19 Feb 2024 16:32:04 +0000 (16:32 +0000)
committerTom Rini <trini@konsulko.com>
Tue, 5 Mar 2024 13:08:26 +0000 (08:08 -0500)
commit2a31d71d830fa4269208c846256a5a274b0d70fb
tree06b9ff9954927325d402f190d29d527e02d593ce
parent6e0d4a7e02fa6d82f70fa74b9be564301111c462
misc: atsha204a: fix wakeup function

The ATSHA204A chip requires SDA line to go low for at least 60us to
wake up the chip. Previous implementation did not meet this requirement
due to the NAK received on bus and not sending the zeroes.
The function to ignore the NAK and send bytes regardless is not
supported in the u-boot making it impossible to wake up the chip
this way.
Instead, the bus speed, if needed, is set to lowest value and the
message is sent to the address 0x0. This way, the address of zero
makes the SDA line go low for about 80us, meeting the required time
to wake up the chip. The zero length packet is not sent by the i2c,
so the one byte is sent to the transfer function, but only the address
is sent anyway.
After sending the zero address, the bus speed is restored to the
previous value if it was slowed down to wake up the chip.

Signed-off-by: Michał Barnaś <barnas@google.com>
drivers/misc/atsha204a-i2c.c