From: Jonathan Cameron <jic23@kernel.org>
To: Antoniu Miclaus <antoniu.miclaus@analog.com>
Cc: <robh@kernel.org>, <conor+dt@kernel.org>,
<linux-iio@vger.kernel.org>, <linux-kernel@vger.kernel.org>,
<devicetree@vger.kernel.org>
Subject: Re: [PATCH v7 5/6] docs: iio: add documentation for ade9000 driver
Date: Sat, 13 Sep 2025 14:20:59 +0100 [thread overview]
Message-ID: <20250913142059.1122a622@jic23-huawei> (raw)
In-Reply-To: <20250908073531.3639-6-antoniu.miclaus@analog.com>
On Mon, 8 Sep 2025 07:35:25 +0000
Antoniu Miclaus <antoniu.miclaus@analog.com> wrote:
> Add documentation for ade9000 driver which describes the driver
> device files and shows how the user may use the ABI for various
> scenarios (configuration, measurement, etc.).
>
> Signed-off-by: Antoniu Miclaus <antoniu.miclaus@analog.com>
Please test your docs build and carefully look at the output.
There were a few formatting errors in here that I have fixed up.
Jonathan
> +
> ++---------------------------------------------------+----------------------------------------------------------+
> +| IIO Event Attribute | ADE9000 Datasheet Equivalent |
> ++---------------------------------------------------+----------------------------------------------------------+
> +| in_voltage[0-2]_thresh_either_en | Zero crossing detection interrupt (ZXVx) |
> ++---------------------------------------------------+----------------------------------------------------------+
> +| in_altvoltage[0-2]_rms_thresh_rising_en | RMS swell detection interrupt (SWELLx) |
> ++---------------------------------------------------+----------------------------------------------------------+
> +| in_altvoltage[0-2]_rms_thresh_rising_value | RMS swell threshold (SWELL_LVL register) |
> ++---------------------------------------------------+----------------------------------------------------------+
> +| in_altvoltage[0-2]_rms_thresh_falling_en | RMS sag/dip detection interrupt (DIPx) |
> ++---------------------------------------------------+----------------------------------------------------------+
> +| in_altvoltage[0-2]_rms_thresh_falling_value | RMS sag/dip threshold (DIP_LVL register) |
> ++---------------------------------------------------+----------------------------------------------------------+
> +| in_current[0-2]_thresh_either_en | Current zero crossing detection interrupt (ZXIx) |
> ++---------------------------------------------------+----------------------------------------------------------+
> +
> +Event directions:
blank line before bulleted list.
> +- ``rising``: Upper threshold crossing (swell detection)
> +- ``falling``: Lower threshold crossing (sag/dip detection)
> +- ``either``: Any threshold crossing (zero crossing detection)
> +- ``none``: Timeout or non-directional events
> +
> +**Note**: Event attributes are only available if the corresponding interrupts
> +(irq0, irq1, dready) are specified in the device tree. The driver works without
> +interrupts but with reduced functionality.
> +
> +5. Device buffers
> +=================
> +
> +This driver supports IIO buffers for waveform capture. Buffer functionality
> +requires the dready interrupt to be connected.
> +
> +The device supports capturing voltage and current waveforms for power quality
> +analysis. The waveform buffer can be configured to capture data from different
> +channel combinations.
> +
> +Supported channel combinations for buffered capture:
blank line before bulleted list.
> +- Phase A: voltage and current (IA + VA)
> +- Phase B: voltage and current (IB + VB)
> +- Phase C: voltage and current (IC + VC)
> +- All phases: all voltage and current channels
> +- Individual channels: IA, VA, IB, VB, IC, VC
> +
> +Usage examples
> +--------------
> +
> +Enable waveform capture for Phase A:
> +
> +.. code-block:: bash
> +
> + root:/sys/bus/iio/devices/iio:device0> echo 1 > scan_elements/in_current0_en
> + root:/sys/bus/iio/devices/iio:device0> echo 1 > scan_elements/in_voltage0_en
> +
> +Set buffer length and enable:
> +
> +.. code-block:: bash
> +
> + root:/sys/bus/iio/devices/iio:device0> echo 100 > buffer/length
> + root:/sys/bus/iio/devices/iio:device0> echo 1 > buffer/enable
> +
> +6. Clock output
> +===============
> +
> +The ADE9000 can provide a clock output via the CLKOUT pin when using an external
> +crystal/clock source. This feature is enabled by specifying ``#clock-cells = <0>``
> +in the device tree. The output clock will be registered as "clkout" and can be
> +referenced by other devices.
> +
> +7. Usage examples
> +=================
> +
> +Show device name:
> +
> +.. code-block:: bash
> +
> + root:/sys/bus/iio/devices/iio:device0> cat name
> + ade9000
> +
> +Read voltage measurements:
> +
> +.. code-block:: bash
> +
> + root:/sys/bus/iio/devices/iio:device0> cat in_voltage0_raw
> + 12345
> + root:/sys/bus/iio/devices/iio:device0> cat in_voltage0_scale
> + 0.000030517
> +
> +- Phase A voltage = in_voltage0_raw * in_voltage0_scale = 0.3769 V
> +
> +Read power measurements:
> +
> +.. code-block:: bash
> +
> + root:/sys/bus/iio/devices/iio:device0> cat in_power0_active_raw
> + 5678
> + root:/sys/bus/iio/devices/iio:device0> cat in_power0_scale
> + 0.000244140
> +
> +- Phase A active power = in_power0_active_raw * in_power0_scale = 1.386 W
> +
> +Configure calibration gains:
> +
> +.. code-block:: bash
> +
> + # Set current channel 0 calibration gain
> + root:/sys/bus/iio/devices/iio:device0> echo 0x800000 > in_current0_calibscale
> + # Set voltage channel 0 calibration gain
> + root:/sys/bus/iio/devices/iio:device0> echo 0x7FFFFF > in_voltage0_calibscale
> +
> +Configure RMS voltage event thresholds (requires interrupts):
> +
> +.. code-block:: bash
> +
> + # Set RMS sag detection threshold
> + root:/sys/bus/iio/devices/iio:device0> echo 180000 > events/in_altvoltage0_rms_thresh_falling_value
> + # Enable RMS sag detection
> + root:/sys/bus/iio/devices/iio:device0> echo 1 > events/in_altvoltage0_rms_thresh_falling_en
> +
> + # Set RMS swell detection threshold
> + root:/sys/bus/iio/devices/iio:device0> echo 260000 > events/in_altvoltage0_rms_thresh_rising_value
> + # Enable RMS swell detection
> + root:/sys/bus/iio/devices/iio:device0> echo 1 > events/in_altvoltage0_rms_thresh_rising_en
> +
> +8. IIO Interfacing Tools
> +========================
> +
> +See ``Documentation/iio/iio_tools.rst`` for the description of the available IIO
> +interfacing tools.
> diff --git a/Documentation/iio/index.rst b/Documentation/iio/index.rst
> index c106402a91f7..792c815286f4 100644
> --- a/Documentation/iio/index.rst
> +++ b/Documentation/iio/index.rst
> @@ -28,6 +28,7 @@ Industrial I/O Kernel Drivers
> ad7606
> ad7625
> ad7944
> + ade9000
> adis16475
> adis16480
> adis16550
next prev parent reply other threads:[~2025-09-13 13:21 UTC|newest]
Thread overview: 13+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-09-08 7:35 [PATCH v7 0/6] iio: adc: add support for ADE9000 Energy Monitoring IC Antoniu Miclaus
2025-09-08 7:35 ` [PATCH v7 1/6] iio: add IIO_ALTCURRENT channel type Antoniu Miclaus
2025-09-08 7:35 ` [PATCH v7 2/6] iio: add power and energy measurement modifiers Antoniu Miclaus
2025-09-08 7:35 ` [PATCH v7 3/6] dt-bindings: iio: adc: add ade9000 Antoniu Miclaus
2025-09-08 18:27 ` Conor Dooley
2025-09-08 7:35 ` [PATCH v7 4/6] iio: adc: add ade9000 support Antoniu Miclaus
2025-09-13 12:46 ` Jonathan Cameron
2025-09-13 13:00 ` Jonathan Cameron
2025-09-08 7:35 ` [PATCH v7 5/6] docs: iio: add documentation for ade9000 driver Antoniu Miclaus
2025-09-13 12:46 ` Jonathan Cameron
2025-09-13 13:20 ` Jonathan Cameron [this message]
2025-09-08 7:35 ` [PATCH v7 6/6] Documentation: ABI: iio: add sinc4+lp Antoniu Miclaus
2025-09-13 13:22 ` [PATCH v7 0/6] iio: adc: add support for ADE9000 Energy Monitoring IC 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=20250913142059.1122a622@jic23-huawei \
--to=jic23@kernel.org \
--cc=antoniu.miclaus@analog.com \
--cc=conor+dt@kernel.org \
--cc=devicetree@vger.kernel.org \
--cc=linux-iio@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--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