xref: /freebsd/sys/contrib/device-tree/Bindings/iio/dac/fsl,vf610-dac.yaml (revision 5def4c47d4bd90b209b9b4a4ba9faec15846d8fd)
1*5def4c47SEmmanuel Vadot# SPDX-License-Identifier: (GPL-2.0 OR BSD-2-Clause)
2*5def4c47SEmmanuel Vadot%YAML 1.2
3*5def4c47SEmmanuel Vadot---
4*5def4c47SEmmanuel Vadot$id: http://devicetree.org/schemas/iio/dac/fsl,vf610-dac.yaml#
5*5def4c47SEmmanuel Vadot$schema: http://devicetree.org/meta-schemas/core.yaml#
6*5def4c47SEmmanuel Vadot
7*5def4c47SEmmanuel Vadottitle: Freescale vf610 Digital to Analog Converter
8*5def4c47SEmmanuel Vadot
9*5def4c47SEmmanuel Vadotmaintainers:
10*5def4c47SEmmanuel Vadot  - Sanchayan Maity <maitysanchayan@gmail.com>
11*5def4c47SEmmanuel Vadot
12*5def4c47SEmmanuel Vadotproperties:
13*5def4c47SEmmanuel Vadot  compatible:
14*5def4c47SEmmanuel Vadot    const: fsl,vf610-dac
15*5def4c47SEmmanuel Vadot
16*5def4c47SEmmanuel Vadot  reg:
17*5def4c47SEmmanuel Vadot    maxItems: 1
18*5def4c47SEmmanuel Vadot
19*5def4c47SEmmanuel Vadot  interrupts:
20*5def4c47SEmmanuel Vadot    maxItems: 1
21*5def4c47SEmmanuel Vadot
22*5def4c47SEmmanuel Vadot  clocks:
23*5def4c47SEmmanuel Vadot    maxItems: 1
24*5def4c47SEmmanuel Vadot
25*5def4c47SEmmanuel Vadot  clock-names:
26*5def4c47SEmmanuel Vadot    const: dac
27*5def4c47SEmmanuel Vadot
28*5def4c47SEmmanuel Vadotrequired:
29*5def4c47SEmmanuel Vadot  - compatible
30*5def4c47SEmmanuel Vadot  - reg
31*5def4c47SEmmanuel Vadot  - interrupts
32*5def4c47SEmmanuel Vadot  - clocks
33*5def4c47SEmmanuel Vadot  - clock-names
34*5def4c47SEmmanuel Vadot
35*5def4c47SEmmanuel VadotadditionalProperties: false
36*5def4c47SEmmanuel Vadot
37*5def4c47SEmmanuel Vadotexamples:
38*5def4c47SEmmanuel Vadot  - |
39*5def4c47SEmmanuel Vadot    #include <dt-bindings/interrupt-controller/irq.h>
40*5def4c47SEmmanuel Vadot    #include <dt-bindings/clock/vf610-clock.h>
41*5def4c47SEmmanuel Vadot    bus@40000000 {
42*5def4c47SEmmanuel Vadot        compatible = "fsl,aips-bus", "simple-bus";
43*5def4c47SEmmanuel Vadot        reg = <0x40000000 0x00070000>;
44*5def4c47SEmmanuel Vadot        ranges;
45*5def4c47SEmmanuel Vadot        #address-cells = <1>;
46*5def4c47SEmmanuel Vadot        #size-cells = <1>;
47*5def4c47SEmmanuel Vadot        dac@400cc000 {
48*5def4c47SEmmanuel Vadot            compatible = "fsl,vf610-dac";
49*5def4c47SEmmanuel Vadot            reg = <0x400cc000 0x1000>;
50*5def4c47SEmmanuel Vadot            interrupts = <55 IRQ_TYPE_LEVEL_HIGH>;
51*5def4c47SEmmanuel Vadot            clock-names = "dac";
52*5def4c47SEmmanuel Vadot            clocks = <&clks VF610_CLK_DAC0>;
53*5def4c47SEmmanuel Vadot        };
54*5def4c47SEmmanuel Vadot    };
55*5def4c47SEmmanuel Vadot...
56