From: Kim Seer Paller <kimseer.paller@analog.com>
To: Jonathan Cameron <jic23@kernel.org>,
Lars-Peter Clausen <lars@metafoo.de>,
Michael Hennerich <Michael.Hennerich@analog.com>,
Rob Herring <robh@kernel.org>,
Krzysztof Kozlowski <krzk+dt@kernel.org>,
Conor Dooley <conor+dt@kernel.org>
Cc: <linux-iio@vger.kernel.org>, <linux-kernel@vger.kernel.org>,
<devicetree@vger.kernel.org>,
Kim Seer Paller <kimseer.paller@analog.com>
Subject: [PATCH v2 2/4] iio: dac: ad3530r: Add ABI file for the AD3530R DAC
Date: Mon, 24 Mar 2025 19:22:56 +0800 [thread overview]
Message-ID: <20250324-togreg-v2-2-f211d781923e@analog.com> (raw)
In-Reply-To: <20250324-togreg-v2-0-f211d781923e@analog.com>
Define muxout_select and muxout_select_available sysfs interface for the
AD3530R and AD3531R DAC.
Signed-off-by: Kim Seer Paller <kimseer.paller@analog.com>
---
.../ABI/testing/sysfs-bus-iio-dac-ad3530r | 68 ++++++++++++++++++++++
MAINTAINERS | 7 +++
2 files changed, 75 insertions(+)
diff --git a/Documentation/ABI/testing/sysfs-bus-iio-dac-ad3530r b/Documentation/ABI/testing/sysfs-bus-iio-dac-ad3530r
new file mode 100644
index 0000000000000000000000000000000000000000..9d3126952fd1c5214afb895c4972dc4a891ed7d4
--- /dev/null
+++ b/Documentation/ABI/testing/sysfs-bus-iio-dac-ad3530r
@@ -0,0 +1,68 @@
+What: /sys/bus/iio/devices/iio:deviceX/muxout_select
+KernelVersion:
+Contact: linux-iio@vger.kernel.org
+Description:
+ Selects which of the multiplexer's input signals will be
+ monitored on the MUX_OUT pin.
+ * powered_down - MUX_OUT pin is powered down. An 80kΩ impedance
+ can be seen at the MUX_OUT pin.
+ * vout0 - Voltage representation of VOUT0.
+ * iout0_source - Voltage representation of IOUT0 (source mode).
+ * iout0_sink - Voltage representation of IOUT0 (sink mode).
+ * vout1 - Voltage representation of VOUT1.
+ * iout1_source - Voltage representation of IOUT1 (source mode).
+ * iout1_sink - Voltage representation of IOUT1 (sink mode).
+ * vout2 - Voltage representation of VOUT2.
+ * iout2_source - Voltage representation of IOUT2 (source mode).
+ * iout2_sink - Voltage representation of IOUT2 (sink mode).
+ * vout3 - Voltage representation of VOUT3
+ * iout3_source - Voltage representation of IOUT3 (source mode).
+ * iout3_sink - Voltage representation of IOUT3 (sink mode).
+ * vout4 - Voltage representation of VOUT4.
+ * iout4_source - Voltage representation of IOUT4 (source mode).
+ * iout4_sink - Voltage representation of IOUT4 (sink mode).
+ * vout5 - Voltage representation of VOUT5.
+ * iout5_source - Voltage representation of IOUT5 (source mode).
+ * iout5_sink - Voltage representation of IOUT5 (sink mode).
+ * vout6 - Voltage representation of VOUT6.
+ * iout6_source - Voltage representation of IOUT6 (source mode).
+ * iout6_sink - Voltage representation of IOUT6 (sink mode).
+ * vout7 - Voltage representation of VOUT7.
+ * iout7_source - Voltage representation of IOUT7 (source mode).
+ * iout7_sink - Voltage representation of IOUT7 (sink mode).
+ * die_temp - Voltage representation of internal die temperature.
+ * agnd - MUX_OUT pin internally tied to AGND.
+
+What: /sys/bus/iio/devices/iio:deviceX/muxout_select_available
+KernelVersion:
+Contact: linux-iio@vger.kernel.org
+Description:
+ Reading this returns the valid values that can be written to the
+ muxout_select attribute:
+ * powered_down
+ * vout0
+ * iout0_source
+ * iout0_sink
+ * vout1
+ * iout1_source
+ * iout1_sink
+ * vout2
+ * iout2_source
+ * iout2_sink
+ * vout3
+ * iout3_source
+ * iout3_sink
+ * vout4
+ * iout4_source
+ * iout4_sink
+ * vout5
+ * iout5_source
+ * iout5_sink
+ * vout6
+ * iout6_source
+ * iout6_sink
+ * vout7
+ * iout7_source
+ * iout7_sink
+ * die_temp
+ * agnd
diff --git a/MAINTAINERS b/MAINTAINERS
index ffdb3f21fc4fb35b349449afbb30fecd4fe72978..2d3c31c74594ca1934c67e7aad0a179feeaa39bf 100644
--- a/MAINTAINERS
+++ b/MAINTAINERS
@@ -1289,6 +1289,13 @@ T: git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net.git
T: git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net-next.git
F: drivers/net/amt.c
+ANALOG DEVICES INC AD3530R DRIVER
+M: Kim Seer Paller <kimseer.paller@analog.com>
+L: linux-iio@vger.kernel.org
+S: Supported
+W: https://ez.analog.com/linux-software-drivers
+F: Documentation/ABI/testing/sysfs-bus-iio-dac-ad3530r
+
ANALOG DEVICES INC AD3552R DRIVER
M: Nuno Sá <nuno.sa@analog.com>
L: linux-iio@vger.kernel.org
--
2.34.1
next prev parent reply other threads:[~2025-03-24 11:24 UTC|newest]
Thread overview: 13+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-03-24 11:22 [PATCH v2 0/4] Add driver for AD3530R and AD3531R DACs Kim Seer Paller
2025-03-24 11:22 ` [PATCH v2 1/4] iio: ABI: add new DAC powerdown mode Kim Seer Paller
2025-03-24 11:22 ` Kim Seer Paller [this message]
2025-03-28 8:58 ` [PATCH v2 2/4] iio: dac: ad3530r: Add ABI file for the AD3530R DAC Jonathan Cameron
2025-03-31 1:20 ` Paller, Kim Seer
2025-03-24 11:22 ` [PATCH v2 3/4] dt-bindings: iio: dac: Add adi,ad3530r.yaml Kim Seer Paller
2025-03-24 11:35 ` Krzysztof Kozlowski
2025-03-24 14:21 ` Rob Herring (Arm)
2025-03-28 9:03 ` Jonathan Cameron
2025-03-31 1:31 ` Paller, Kim Seer
2025-03-31 9:41 ` Jonathan Cameron
2025-03-24 11:22 ` [PATCH v2 4/4] iio: dac: ad3530r: Add driver for AD3530R and AD3531R Kim Seer Paller
2025-03-28 9:23 ` 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=20250324-togreg-v2-2-f211d781923e@analog.com \
--to=kimseer.paller@analog.com \
--cc=Michael.Hennerich@analog.com \
--cc=conor+dt@kernel.org \
--cc=devicetree@vger.kernel.org \
--cc=jic23@kernel.org \
--cc=krzk+dt@kernel.org \
--cc=lars@metafoo.de \
--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;
as well as URLs for NNTP newsgroup(s).