Hi Eddie,
Well, as it happens, I just fixed such a case. Please check these patchI think this is a way too aggressive recovery. Your are doing the 9It is aggressive, but I don't see the harm in doing this on every error.
pulse toggles basically on any error while this is only when the device
keeps SDA low and you want to recover from that. If SDA is not stuck
low, sending a STOP should do. Or do you have a known case where this is
not going to work?
series and elinux wiki pages:
===
(new fault injector)
[PATCH v2 0/2] i2c: gpio: fault-injector: add new injector
(actual recovery fix)
[PATCH 0/2] i2c: recovery: make sure pulses are not misinterpreted
===
And here is the new elinux wiki page to describe my findings:
https://elinux.org/Tests:I2C-bus-recovery-write-byte-fix
Also, the previous pages have been updated to reflect the latest status:
https://elinux.org/Tests:I2C-fault-injection
https://elinux.org/Tests:I2C-bus-recovery
To sum it up: This is a proven case where uncontrolled bus recovery can
result into a bogus write!
There are some other error conditions with this hardware which may requireWhy is that? In my understanding, recovery is *only* needed when SDA is
the clock toggling, such as "bus arbitration lost." I think this is the
stuck low. If SDA is high, sending STOP should do. If not, it needs to
be researched why.
safest option for this hardware, and this routine has been tested for manyI remember having a similar argument with Joakim Tjernlund a while ago.
years.
I recently re-read our argument, yet I still keep my position: I don't
want to do $random things to recover, just a tested and well understood
procedure. And in that thread, I was never given a test case.
Why do you think it is safer? What is the test case for that? I thinkAlso, you implement the pulse toggling manually. Can't you just populateI see that the generic implementation breaks the loop if it sees the clock
{get|set}_{scl|sda} and use the generic routine we have in the core?
isn't high after setting it, or if SDA goes high. I think it's safer to
finish the reset for our hardware. Plus, we actually have different
one really should do check SDA! See above, you might trigger a write
otherwise. If this breaks something for you, I am looking forward to
discuss it.
registers for setting 0 or 1 to the clock/data, so we save some cpu cyclesCorrectness comes above all here. And I am afraid your implementation is
by doing it directly instead of implementing set_scl/sda and having to check
val every time :)
not correct.
If you feel very strongly that this recovery procedure needs to be reduced,I am open for discussion, yet I also feel strong about it. The reason
then I will work on that and have to do some extensive testing.
why the recovery procedure is moved into the core is to have one working
and understood bit-banging algorithm which all drivers can rely on. If
all drivers implement their custom version, they might miss gory details
like the above write_byte fix.
I do understand this might cause testing effort for you, I am sorry for
the delay it causes. However, my goal as a maintainer is to have a
reliable recovery mechanism, for your driver as well as for all drivers.
I hope this is understandable. BTW if you want this driver upstream
soon, then it may be an idea to resend it without any bus recovery and
then we can work on it incrementally.
Kind regards and thanks,
Wolfram