From: Jonathan Cameron <Jonathan.Cameron@Huawei.com>
To: Ramona Gradinariu <ramona.bolboaca13@gmail.com>
Cc: Jonathan Cameron <jic23@kernel.org>,
<linux-kernel@vger.kernel.org>, <linux-iio@vger.kernel.org>,
<devicetree@vger.kernel.org>, <conor+dt@kernel.org>,
<krzysztof.kozlowski+dt@linaro.org>, <robh@kernel.org>,
<nuno.sa@analog.com>
Subject: Re: [PATCH v3 9/9] drivers: iio: imu: Add support for adis1657x family
Date: Thu, 23 May 2024 18:11:50 +0100 [thread overview]
Message-ID: <20240523181150.000064c4@Huawei.com> (raw)
In-Reply-To: <c7996393-a2d0-425e-a37a-0f6bf1ac01b9@gmail.com>
On Wed, 22 May 2024 12:51:39 +0300
Ramona Gradinariu <ramona.bolboaca13@gmail.com> wrote:
> On 5/19/24 21:57, Jonathan Cameron wrote:
>
> > On Fri, 17 May 2024 10:47:50 +0300
> > Ramona Gradinariu <ramona.bolboaca13@gmail.com> wrote:
> >
> >> Add support for ADIS1657X family devices in already exiting ADIS16475
> >> driver.
> >>
> >> Signed-off-by: Ramona Gradinariu <ramona.bolboaca13@gmail.com>
> > Whilst it's not necessarily vital to support, it I'm curious about
> > what happens to the hardware timestamp? I thought we had one driver
> > still doing hardware timestamps directly to the buffer, but I can't
> > find it so I guess we now deal with alignment in the few devices with
> > this support. The st_lsm6dsx has this sort of combining of local
> > and fifo timestamps for example.
> >
> > As it stands I think you push the same timestamp for all scans read
> > from the fifo on a particular watermark interrupt? That isn't
> > ideal given we should definitely be able to do better than that.
>
> Currently the timestamp is added when the FIFO is read, which does not
> equal the sample time.
>
> ADI IMU devices do not actually offer a hardware timestamp. The
> functionality is as follows:
> - for internal sync / output sync / direct external sync the burst
> data returns a data counter (which increments with each sample);
>
> - for scaled external sync the burst data returns the 'timestamp',
> which contains the time associated with the last sample in each data
> update relative to the most recent edge of the external clock signal.
> For example, when the value in the UP_SCALE register represents a scale
> factor of 20, DEC_RATE = 0, and the external SYNC rate = 100 Hz, the
> following time stamp sequence results: 0LSB, 10LSB, 21LSB, 31LSB,
> 41LSB, 51LSB, 61LSB, 72LSB, …, 194LSB for the 20th sample, which
> translates to 0us, 490us, …, 9510 us which is the time from the
> previous sync edge.
Thanks for info. I was hopeful for a real clock, but we rarely get
one (and it introduces clock drift issues anyway so they are quite
tricky to handle :(
>
> We can make assumptions, and try to better estimate the timestamp,
> based on the sampling frequency.
> We can assume that the last sample in the FIFO was sampled when the
> watermark interrupt took place, and then, based on the sample frequency
> we could decrease the timestamp with the according period for each
> sample.
Assume the one that corresponds to the watermark, not the last one as we
may take a while to get to processing it.
> However, I am not sure this assumption is always valid, it depends
> on when the IRQ is actually handled.
>
> I can remove the timestamp for devices which use FIFO seeing how it
> does not represent the actual sample time.
I would do that for now as this si tricky to do well.
There are examples in tree of how to get something reasonable.
Take a look at common/inv_sensors/inv_sensors_timestap.c
for one example
>
> >> +static const struct iio_buffer_setup_ops adis16475_buffer_ops = {
> >> + .postenable = adis16475_buffer_postenable,
> >> + .postdisable = adis16475_buffer_postdisable,
> >> +};
> >> +
> >> +static int adis16475_set_watermark(struct iio_dev *indio_dev, unsigned int val)
> >> +{
> >> + struct adis16475 *st = iio_priv(indio_dev);
> >> + int ret;
> >> + u16 wm_lvl;
> >> +
> >> + adis_dev_lock(&st->adis);
> > As a follow up perhaps consider defining magic to use guard() for these as there are
> > enough users that will be simplified to make it worth the effort.
>
> I will do this in another patch series if that is alright.
Sure.
>
> >
> >> +
> >> + val = min_t(unsigned int, val, ADIS16575_MAX_FIFO_WM);
> >> +
> >> + wm_lvl = ADIS16575_WM_LVL(val - 1);
> >> + ret = __adis_update_bits(&st->adis, ADIS16475_REG_FIFO_CTRL, ADIS16575_WM_LVL_MASK, wm_lvl);
> >> + if (ret)
> >> + goto unlock;
> >> +
> >> + st->fifo_watermark = val;
> >> +
> >> +unlock:
> >> + adis_dev_unlock(&st->adis);
> >> + return ret;
> >> +}
> >> +
>
prev parent reply other threads:[~2024-05-23 17:11 UTC|newest]
Thread overview: 19+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-05-17 7:47 [PATCH v3 0/9] adis16501 and adis1657x support Ramona Gradinariu
2024-05-17 7:47 ` [PATCH v3 1/9] dt-bindings: iio: imu: Add ADIS16501 compatibles Ramona Gradinariu
2024-05-17 7:47 ` [PATCH v3 2/9] drivers: iio: imu: Add support for ADIS16501 Ramona Gradinariu
2024-05-17 7:47 ` [PATCH v3 3/9] iio: imu: adis16475: Re-define ADIS16475_DATA Ramona Gradinariu
2024-05-17 7:47 ` [PATCH v3 4/9] iio: imu: adis_buffer: Add buffer setup API with buffer attributes Ramona Gradinariu
2024-05-17 7:47 ` [PATCH v3 5/9] iio: imu: adis16475: Create push single sample API Ramona Gradinariu
2024-05-17 7:47 ` [PATCH v3 6/9] drivers: iio: imu: adis16475: generic computation for sample rate Ramona Gradinariu
2024-05-17 7:47 ` [PATCH v3 7/9] iio: imu: adis_trigger: Allow level interrupts Ramona Gradinariu
2024-05-19 18:35 ` Jonathan Cameron
2024-05-21 10:56 ` Nuno Sá
2024-05-17 7:47 ` [PATCH v3 8/9] dt-bindings: iio: imu: Add ADIS1657X family devices compatibles Ramona Gradinariu
2024-05-17 7:47 ` [PATCH v3 9/9] drivers: iio: imu: Add support for adis1657x family Ramona Gradinariu
2024-05-18 6:47 ` kernel test robot
2024-05-19 18:38 ` Jonathan Cameron
2024-05-18 11:00 ` kernel test robot
2024-05-19 18:57 ` Jonathan Cameron
2024-05-21 7:01 ` Nuno Sá
2024-05-22 9:51 ` Ramona Gradinariu
2024-05-23 17:11 ` Jonathan Cameron [this message]
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20240523181150.000064c4@Huawei.com \
--to=jonathan.cameron@huawei.com \
--cc=conor+dt@kernel.org \
--cc=devicetree@vger.kernel.org \
--cc=jic23@kernel.org \
--cc=krzysztof.kozlowski+dt@linaro.org \
--cc=linux-iio@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=nuno.sa@analog.com \
--cc=ramona.bolboaca13@gmail.com \
--cc=robh@kernel.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).