vf610-dac.txt 643 B

123456789101112131415161718192021
  1. Freescale vf610 Digital to Analog Converter bindings
  2. The devicetree bindings are for the new DAC driver written for
  3. vf610 SoCs from Freescale.
  4. Required properties:
  5. - compatible: Should contain "fsl,vf610-dac"
  6. - reg: Offset and length of the register set for the device
  7. - interrupts: Should contain the interrupt for the device
  8. - clocks: The clock is needed by the DAC controller
  9. - clock-names: Must contain "dac" matching entry in the clocks property.
  10. Example:
  11. dac0: dac@400cc000 {
  12. compatible = "fsl,vf610-dac";
  13. reg = <0x400cc000 0x1000>;
  14. interrupts = <55 IRQ_TYPE_LEVEL_HIGH>;
  15. clock-names = "dac";
  16. clocks = <&clks VF610_CLK_DAC0>;
  17. };