Il giorno sab 21 set 2019 alle ore 19:12 Jonathan Cameron <jic23@xxxxxxxxxx> ha scritto: > > > > If we skip the configuration rewrite when the channel doesn't change - > > as discussed above - then we actually _terminate_ the acquisition when > > the IIO read is triggered, that is we are converting the value sampled > > right before the IIO read. > > > > If this is OK then I'll go on, otherwise I think that we should always > > do the three cycles (so that triggering IIO read always waits also for > > a new acquisition phase) I had a discussion about this with a HW engineer, he said that it's probably not necessary to perform a full extra cycle (i.e. SPI xfer + udelay(2)), rather, since the HW is already in acquisition, it should be enough to perform the udelay(2) to make sure the internal capacitor settles (if we change channel of course we need also the SPI xfer to update the CFG). So indeed it seems to me that: - if CFG (channel) changes: we need three full SPI xfer (actual SPI xfer + delay(2)) - if CFG (channel) doesn't change: we need a delay(2) [*]- to guarantee the user sees a value sampled after the IIO read, as discussed - and two full SPI xfer (actual SPI xfer + delay(2)) .. Indeed I also wonder if it would be enough to cycle the CS, without performing a full SPI xfer, in order to start the conversion.. But given that this whole thing seems to me a bit complicated and unclear, I would stick to the dummy cycle for now.. > An excellent point. I agree and suspect we may have this wrong in other > sensors. The question gets more interesting if running in buffered mode > as we have had systems using a trigger generated by an external process. > I suppose in that case we just have to deal with the offset in the fifo > etc in userspace. Yes. I'm not familiar with IIO buffered mode, but for a streaming, continuous, read mode I guess that the user would expect some latency anyway (might be due to the ADC or the buffering mechanism itself or whatever). I didn't look into this buffered thing to see how it works, but maybe we can skip the first udelay(2) [*] in the driver in case of buffered access? > Maybe we should think about adding a note to be careful of that. Not > really sure where we would note it though... IMHO clarifying what the API guarantees and what it doesn't in IIO DocBook could be helpful (I didn't see it, but I might have missed it).. So, we could state that a single shot read must return a value sampled after the read has been shot, and that on the other hand, when using buffered mode one should expect some latency.. But indeed, since you said that we might have a number of IIO drivers that actually behave in a different way, then I'm not sure that it's a good idea; maybe we could just drop this requirement and allow (and document) that a single shot IIO read could just _terminate_ the sampling and trigger the conversion on the current sampled signal? (so also in this driver we can just not care about this).. > Thanks, > > Jonathan > >