49 lines · yaml
1# SPDX-License-Identifier: (GPL-2.0 OR BSD-2-Clause)2%YAML 1.23---4$id: http://devicetree.org/schemas/iio/dac/microchip,mcp4922.yaml#5$schema: http://devicetree.org/meta-schemas/core.yaml#6 7title: Microchip MCP4902, MCP4912 and MPC4922 dual output SPI DACs8 9maintainers:10 - Jonathan Cameron <jic23@kernel.org>11 - Michael Welling <mwelling@ieee.org>12 13properties:14 compatible:15 enum:16 - microchip,mcp490217 - microchip,mcp491218 - microchip,mcp492119 - microchip,mcp492220 21 reg:22 maxItems: 123 24 vref-supply: true25 26required:27 - compatible28 - reg29 - vref-supply30 31allOf:32 - $ref: /schemas/spi/spi-peripheral-props.yaml#33 34unevaluatedProperties: false35 36examples:37 - |38 spi {39 #address-cells = <1>;40 #size-cells = <0>;41 42 dac@0 {43 compatible = "microchip,mcp4912";44 reg = <0>;45 vref-supply = <&dac_vref>;46 };47 };48...49