Path: blob/master/Documentation/devicetree/bindings/iio/dac/nxp,lpc1850-dac.yaml
26309 views
# SPDX-License-Identifier: (GPL-2.0 OR BSD-2-Clause)1%YAML 1.22---3$id: http://devicetree.org/schemas/iio/dac/nxp,lpc1850-dac.yaml#4$schema: http://devicetree.org/meta-schemas/core.yaml#56title: NXP LPC1850 DAC78maintainers:9- Jonathan Cameron <jic23@kernel.org>1011description:12Supports the DAC found on the LPC1850 SoC.1314properties:15compatible:16const: nxp,lpc1850-dac1718reg:19maxItems: 12021interrupts:22maxItems: 12324clocks:25maxItems: 12627vref-supply: true2829resets:30maxItems: 13132required:33- compatible34- reg35- interrupts36- clocks37- vref-supply38- resets3940additionalProperties: false4142examples:43- |44#include <dt-bindings/clock/lpc18xx-ccu.h>45soc {46#address-cells = <1>;47#size-cells = <1>;48dac: dac@400e1000 {49compatible = "nxp,lpc1850-dac";50reg = <0x400e1000 0x1000>;51interrupts = <0>;52clocks = <&ccu1 CLK_APB3_DAC>;53vref-supply = <®_vdda>;54resets = <&rgu 42>;55};56};57...585960