From: Jonathan Cameron <jic23@kernel.org>
To: Nuno Sa via B4 Relay <devnull+nuno.sa.analog.com@kernel.org>
Cc: nuno.sa@analog.com, linux-iio@vger.kernel.org,
devicetree@vger.kernel.org,
Jonathan Cameron <Jonathan.Cameron@huawei.com>,
Alexandru Ardelean <alexandru.ardelean@analog.com>,
Lars-Peter Clausen <lars@metafoo.de>,
Michael Hennerich <Michael.Hennerich@analog.com>,
Rob Herring <robh@kernel.org>,
Krzysztof Kozlowski <krzysztof.kozlowski+dt@linaro.org>,
Conor Dooley <conor+dt@kernel.org>,
Olivier Moysan <olivier.moysan@foss.st.com>
Subject: Re: [PATCH 1/8] iio: backend: add API for interface tuning
Date: Sat, 20 Apr 2024 16:00:06 +0100 [thread overview]
Message-ID: <20240420160006.720a3810@jic23-huawei> (raw)
In-Reply-To: <20240419-ad9467-new-features-v1-1-3e7628ff6d5e@analog.com>
On Fri, 19 Apr 2024 17:36:44 +0200
Nuno Sa via B4 Relay <devnull+nuno.sa.analog.com@kernel.org> wrote:
> From: Nuno Sa <nuno.sa@analog.com>
>
> This is in preparation for supporting interface tuning in one for the
> devices using the axi-adc backend. The new added interfaces are all
> needed for that calibration:
Would be good to have a little more info in this commit message on what
interface tuning involves? I hope a tuning fork and a very good sense
of hearing...
>
> * iio_backend_test_pattern_set();
> * iio_backend_chan_status();
> * iio_backend_iodelay_set();
> * iio_backend_data_sample_trigger().
>
> Signed-off-by: Nuno Sa <nuno.sa@analog.com>
Otherwise, trivial stuff inline. Mostly looks fine.
I appreciate you pointed out the taps thing was unit free and hence
possibly controversial. Not much we can do about it and reality is
its a tweak factor - things like calibbias are unit free as well
for exactly the reason that they tend to be incredibly hardware dependent
and sometimes even instance of hardware dependent.
Jonathan
> ---
> drivers/iio/industrialio-backend.c | 86 ++++++++++++++++++++++++++++++++++++++
> include/linux/iio/backend.h | 57 +++++++++++++++++++++----
> 2 files changed, 136 insertions(+), 7 deletions(-)
>
> diff --git a/drivers/iio/industrialio-backend.c b/drivers/iio/industrialio-backend.c
> index 2fea2bbbe47fd..45eea3b725a35 100644
> --- a/drivers/iio/industrialio-backend.c
> +++ b/drivers/iio/industrialio-backend.c
> @@ -186,6 +186,92 @@ int iio_backend_data_format_set(struct iio_backend *back, unsigned int chan,
> }
> EXPORT_SYMBOL_NS_GPL(iio_backend_data_format_set, IIO_BACKEND);
>
> +/**
> + * iio_backend_test_pattern_set - Configure a test pattern
> + * @back: Backend device
> + * @chan: Channel number
> + * @pattern:
> + *
> + * Configure a test pattern on the backend. This is typically used for
> + * calibrating the timings on the data digital interface.
> + *
> + * RETURNS:
> + * 0 on success, negative error number on failure.
> + */
> +int iio_backend_test_pattern_set(struct iio_backend *back,
> + unsigned int chan,
> + enum iio_backend_test_pattern pattern)
> +{
> + if (pattern >= IIO_BACKEND_TEST_PATTERN_MAX)
> + return -EINVAL;
> +
> + return iio_backend_op_call(back, test_pattern_set, chan, pattern);
> +}
> +EXPORT_SYMBOL_NS_GPL(iio_backend_test_pattern_set, IIO_BACKEND);
> +
> +/**
> + * iio_backend_chan_status - Get the channel status
> + * @back: Backend device
> + * @chan: Channel number
> + * @status: Channel status
Feels premature to define a structure for status when it simply returns if
there is an error so far. Maybe simplify for now, and revisit once that
structure needs to be more complex?
> + *
> + * Get the current state of the backend channel. Typically used to check if
> + * there were any errors sending/receiving data.
> + *
> + * RETURNS:
> + * 0 on success, negative error number on failure.
> + */
> +int iio_backend_chan_status(struct iio_backend *back, unsigned int chan,
> + struct iio_backend_chan_status *status)
> +{
> + return iio_backend_op_call(back, chan_status, chan, status);
> +}
> +EXPORT_SYMBOL_NS_GPL(iio_backend_chan_status, IIO_BACKEND);
> +
> +/**
> + * iio_backend_iodelay_set - Set digital I/O delay
> + * @back: Backend device
> + * @lane: Lane number
> + * @tap: Number of taps
> + *
> + * Controls delays on sending/receiving data. One usecase for this is to
> + * calibrate the data digital interface so we get the best results when
> + * transferring data. Note that @tap has no unit since the actual delay per tap
> + * is very backend specific. Hence, frontend devices typically should go through
> + * an array of @taps (the size of that array should typically match the size of
> + * calibration points on the frontend device) and call this API.
> + *
> + * RETURNS:
> + * 0 on success, negative error number on failure.
> + */
> +int iio_backend_iodelay_set(struct iio_backend *back, unsigned int lane,
> + unsigned int tap)
taps maybe given it's a number of them?
Is this an industry standard term - sounds like it probably is but my
google fu is failing.
> +{
> + return iio_backend_op_call(back, iodelay_set, lane, tap);
> +}
> +EXPORT_SYMBOL_NS_GPL(iio_backend_iodelay_set, IIO_BACKEND);
> +
> +/**
> + * iio_backend_data_sample_trigger - Control when to sample data
> + * @back: Backend device
> + * @trigger: Data trigger
> + *
> + * Mostly useful for input backends. Configures the backend for when to sample
> + * data (eg: rising vs falling edge).
Feels like it might become a flags field at some point, but enum is fine for
trigger for now I guess.
> + *
> + * RETURNS:
> + * 0 on success, negative error number on failure.
> + */
> +int iio_backend_data_sample_trigger(struct iio_backend *back,
> + enum iio_backend_sample_trigger trigger)
> +{
> + if (trigger >= IIO_BACKEND_SAMPLE_TRIGGER_MAX)
> + return -EINVAL;
> +
> + return iio_backend_op_call(back, data_sample_trigger, trigger);
> +}
> +EXPORT_SYMBOL_NS_GPL(iio_backend_data_sample_trigger, IIO_BACKEND);
> +
> static void iio_backend_free_buffer(void *arg)
> {
> struct iio_backend_buffer_pair *pair = arg;
> diff --git a/include/linux/iio/backend.h b/include/linux/iio/backend.h
> index a6d79381866ec..ad793fe0d78c2 100644
> --- a/include/linux/iio/backend.h
> +++ b/include/linux/iio/backend.h
> @@ -15,6 +15,19 @@ enum iio_backend_data_type {
> IIO_BACKEND_DATA_TYPE_MAX
> };
>
> +/* vendor specific from 32 */
> +enum iio_backend_test_pattern {
> + /* modified prbs9 */
> + IIO_BACKEND_ADI_PRBS_9A = 32,
Not knowing anything much about this, does it make sense to use an enum,
or should we face facts that we can't have a true generic interface
and just use a suitably sized int?
How do you unset the test pattern? I expected a IIO_BACKEND_NO_TESTPATERN = 0
or something like that.
> + IIO_BACKEND_TEST_PATTERN_MAX
> +};
> +
> +enum iio_backend_sample_trigger {
> + IIO_BACKEND_SAMPLE_TRIGGER_EDGE_FALLING,
> + IIO_BACKEND_SAMPLE_TRIGGER_EDGE_RISING,
> + IIO_BACKEND_SAMPLE_TRIGGER_MAX
> +};
> +
> /**
> * struct iio_backend_data_fmt - Backend data format
> * @type: Data type.
> @@ -28,15 +41,27 @@ struct iio_backend_data_fmt {
> bool enable;
> };
>
> +/**
> + * struct iio_backend_chan_status - Backend channel status
> + * @errors: Errors occurred when sending/receiving data.
error, it's only a bool so we know there was at least one.
> + */
> +struct iio_backend_chan_status {
> + bool errors;
> +};
> +
> /**
> * struct iio_backend_ops - operations structure for an iio_backend
> - * @enable: Enable backend.
> - * @disable: Disable backend.
> - * @chan_enable: Enable one channel.
> - * @chan_disable: Disable one channel.
> - * @data_format_set: Configure the data format for a specific channel.
> - * @request_buffer: Request an IIO buffer.
> - * @free_buffer: Free an IIO buffer.
> + * @enable: Enable backend.
Hmm. I dislike aligning comments because of this sort of noise.
I guess I can cope without the ideal precursor patch making the padding
change, but I am moaning about it...
> + * @disable: Disable backend.
> + * @chan_enable: Enable one channel.
> + * @chan_disable: Disable one channel.
> + * @data_format_set: Configure the data format for a specific channel.
> + * @test_pattern_set: Configure a test pattern.
> + * @chan_status: Get the channel status.
> + * @iodelay_set: Set digital I/O delay.
> + * @data_sample_trigger: Control when to sample data.
> + * @request_buffer: Request an IIO buffer.
> + * @free_buffer: Free an IIO buffer.
> **/
> struct iio_backend_ops {
> int (*enable)(struct iio_backend *back);
> @@ -45,6 +70,15 @@ struct iio_backend_ops {
> int (*chan_disable)(struct iio_backend *back, unsigned int chan);
> int (*data_format_set)(struct iio_backend *back, unsigned int chan,
> const struct iio_backend_data_fmt *data);
> + int (*test_pattern_set)(struct iio_backend *back,
> + unsigned int chan,
> + enum iio_backend_test_pattern pattern);
> + int (*chan_status)(struct iio_backend *back, unsigned int chan,
> + struct iio_backend_chan_status *status);
> + int (*iodelay_set)(struct iio_backend *back, unsigned int chan,
> + unsigned int tap);
> + int (*data_sample_trigger)(struct iio_backend *back,
> + enum iio_backend_sample_trigger trigger);
> struct iio_buffer *(*request_buffer)(struct iio_backend *back,
> staptruct iio_dev *indio_dev);
> void (*free_buffer)(struct iio_backend *back,
> @@ -56,6 +90,15 @@ int iio_backend_chan_disable(struct iio_backend *back, unsigned int chan);
> int devm_iio_backend_enable(struct device *dev, struct iio_backend *back);
> int iio_backend_data_format_set(struct iio_backend *back, unsigned int chan,
> const struct iio_backend_data_fmt *data);
> +int iio_backend_test_pattern_set(struct iio_backend *back,
> + unsigned int chan,
> + enum iio_backend_test_pattern pattern);
> +int iio_backend_chan_status(struct iio_backend *back, unsigned int chan,
> + struct iio_backend_chan_status *status);
> +int iio_backend_iodelay_set(struct iio_backend *back, unsigned int lane,
> + unsigned int tap);
> +int iio_backend_data_sample_trigger(struct iio_backend *back,
> + enum iio_backend_sample_trigger trigger);
> int devm_iio_backend_request_buffer(struct device *dev,
> struct iio_backend *back,
> struct iio_dev *indio_dev);
>
next prev parent reply other threads:[~2024-04-20 15:00 UTC|newest]
Thread overview: 29+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-04-19 15:36 [PATCH 0/8] iio: ad9467: support interface tuning Nuno Sa via B4 Relay
2024-04-19 15:36 ` [PATCH 1/8] iio: backend: add API for " Nuno Sa via B4 Relay
2024-04-20 15:00 ` Jonathan Cameron [this message]
2024-04-22 15:40 ` Nuno Sá
2024-04-22 17:13 ` Jonathan Cameron
2024-04-23 7:52 ` Nuno Sá
2024-04-28 15:46 ` Jonathan Cameron
2024-04-19 15:36 ` [PATCH 2/8] iio: adc: adi-axi-adc: only error out in major version mismatch Nuno Sa via B4 Relay
2024-04-20 15:02 ` Jonathan Cameron
2024-04-19 15:36 ` [PATCH 3/8] dt-bindings: adc: axi-adc: add clocks property Nuno Sa via B4 Relay
2024-04-19 16:11 ` Krzysztof Kozlowski
2024-04-20 15:04 ` Jonathan Cameron
2024-04-22 15:06 ` Nuno Sá
2024-04-22 17:09 ` Jonathan Cameron
2024-04-19 15:36 ` [PATCH 4/8] iio: adc: axi-adc: make sure AXI clock is enabled Nuno Sa via B4 Relay
2024-04-20 15:04 ` Jonathan Cameron
2024-04-19 15:36 ` [PATCH 5/8] iio: adc: adi-axi-adc: remove regmap max register Nuno Sa via B4 Relay
2024-04-19 15:36 ` [PATCH 6/8] iio: adc: adi-axi-adc: support digital interface calibration Nuno Sa via B4 Relay
2024-04-20 15:13 ` Jonathan Cameron
2024-04-23 7:27 ` Nuno Sá
2024-04-28 15:49 ` Jonathan Cameron
2024-04-19 15:36 ` [PATCH 7/8] iio: adc: ad9467: cache the sample rate Nuno Sa via B4 Relay
2024-04-20 15:19 ` Jonathan Cameron
2024-04-22 15:46 ` Nuno Sá
2024-04-22 17:08 ` Jonathan Cameron
2024-04-19 15:36 ` [PATCH 8/8] iio: adc: ad9467: support digital interface calibration Nuno Sa via B4 Relay
2024-04-20 15:34 ` Jonathan Cameron
2024-04-23 7:32 ` Nuno Sá
2024-04-20 15:39 ` [PATCH 0/8] iio: ad9467: support interface tuning Jonathan Cameron
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=20240420160006.720a3810@jic23-huawei \
--to=jic23@kernel.org \
--cc=Jonathan.Cameron@huawei.com \
--cc=Michael.Hennerich@analog.com \
--cc=alexandru.ardelean@analog.com \
--cc=conor+dt@kernel.org \
--cc=devicetree@vger.kernel.org \
--cc=devnull+nuno.sa.analog.com@kernel.org \
--cc=krzysztof.kozlowski+dt@linaro.org \
--cc=lars@metafoo.de \
--cc=linux-iio@vger.kernel.org \
--cc=nuno.sa@analog.com \
--cc=olivier.moysan@foss.st.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