[PATCH 1/2] dt-bindings: iio: dac: add support for mcp47a1

From: Joshua Crofts

Date: Tue Jul 21 2026 - 14:44:00 EST


The Microchip MCP47A1 is a 6-bit volatile Digital-to-Analog converted
which communicates via I2C.

Signed-off-by: Joshua Crofts <joshua.crofts1@xxxxxxxxx>
---
.../bindings/iio/dac/microchip,mcp47a1.yaml | 56 ++++++++++++++++++++++
MAINTAINERS | 6 +++
2 files changed, 62 insertions(+)

diff --git a/Documentation/devicetree/bindings/iio/dac/microchip,mcp47a1.yaml b/Documentation/devicetree/bindings/iio/dac/microchip,mcp47a1.yaml
new file mode 100644
index 000000000000..3322fca03b3a
--- /dev/null
+++ b/Documentation/devicetree/bindings/iio/dac/microchip,mcp47a1.yaml
@@ -0,0 +1,56 @@
+# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
+%YAML 1.2
+---
+
+$id: http://devicetree.org/schemas/iio/dac/microchip,mcp47a1.yaml#
+$schema: http://devicetree.org/meta-schemas/core.yaml#
+
+title: Microchip MCP47A1 DAC
+
+maintainers:
+ - Joshua Crofts <joshua.crofts1@xxxxxxxxx>
+
+description: |
+ The Microchip MCP47A1 is a 6-bit single output volatile DAC.
+ This device can have different IDs (0x2e and 0x3e).
+ https://ww1.microchip.com/downloads/aemDocuments/documents/OTH/ProductDocuments/DataSheets/25154A.pdf
+
+properties:
+ compatible:
+ const: microchip,mcp47a1
+
+ reg:
+ maxItems: 1
+
+ vref-supply: true
+
+ vdd-supply: true
+
+required:
+ - compatible
+ - reg
+ - vref-supply
+ - vdd-supply
+
+additionalProperties: false
+
+examples:
+ - |
+ i2c {
+ #address-cells = <1>;
+ #size-cells = <0>;
+
+ dac@2e {
+ compatible = "microchip,mcp47a1";
+ reg = <0x2e>;
+ vref-supply = <&vref_regulator>;
+ vdd-supply = <&vdd_regulator>;
+ };
+
+ dac@3e {
+ compatible = "microchip,mcp47a1";
+ reg = <0x3e>;
+ vref-supply = <&vref_regulator>;
+ vdd-supply = <&vdd_regulator>;
+ };
+ };
diff --git a/MAINTAINERS b/MAINTAINERS
index 2b1ec46c5919..b44693593b94 100644
--- a/MAINTAINERS
+++ b/MAINTAINERS
@@ -17699,6 +17699,12 @@ S: Maintained
F: Documentation/devicetree/bindings/iio/adc/microchip,mcp3911.yaml
F: drivers/iio/adc/mcp3911.c

+MICROCHIP MCP47A1 DAC DRIVER
+M: Joshua Crofts <joshua.crofts1@xxxxxxxxx>
+L: linux-iio@xxxxxxxxxxxxxxx
+S: Maintained
+F: Documentation/devicetree/bindings/iio/dac/microchip,mcp47a1.yaml
+
MICROCHIP MCP9982 TEMPERATURE DRIVER
M: Victor Duicu <victor.duicu@xxxxxxxxxxxxx>
L: linux-hwmon@xxxxxxxxxxxxxxx

--
2.55.0