Staging
v0.8.1
https://github.com/torvalds/linux
Raw File
Tip revision: 418baf2c28f3473039f2f7377760bd8f6897ae18 authored by Linus Torvalds on 22 November 2020, 23:36:08 UTC
Linux 5.10-rc5
Tip revision: 418baf2
ti,dac7311.txt
TI DAC7311 device tree bindings

Required properties:
- compatible: must be set to:
	* "ti,dac7311"
	* "ti,dac6311"
	* "ti,dac5311"
- reg: spi chip select number for the device
- vref-supply: The regulator supply for ADC reference voltage

Optional properties:
- spi-max-frequency: Max SPI frequency to use

Example:

	spi_master {
		dac@0 {
			compatible = "ti,dac7311";
			reg = <0>; /* CS0 */
			spi-max-frequency = <1000000>;
			vref-supply = <&vdd_supply>;
		};
	};
back to top