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