Staging
v0.7.0
https://github.com/torvalds/linux
Raw File
Tip revision: 08895a8b6b06ed2323cd97a36ee40a116b3db8ed authored by Linus Torvalds on 26 September 2016, 01:47:13 UTC
Linux 4.8-rc8
Tip revision: 08895a8
vf610-dac.txt
Freescale vf610 Digital to Analog Converter bindings

The devicetree bindings are for the new DAC driver written for
vf610 SoCs from Freescale.

Required properties:
- compatible: Should contain "fsl,vf610-dac"
- reg: Offset and length of the register set for the device
- interrupts: Should contain the interrupt for the device
- clocks: The clock is needed by the DAC controller
- clock-names: Must contain "dac" matching entry in the clocks property.

Example:
dac0: dac@400cc000 {
	compatible = "fsl,vf610-dac";
	reg = <0x400cc000 0x1000>;
	interrupts = <55 IRQ_TYPE_LEVEL_HIGH>;
	clock-names = "dac";
	clocks = <&clks VF610_CLK_DAC0>;
};
back to top