cachepc-linux

Fork of AMDESE/linux with modifications for CachePC side-channel attack
git clone https://git.sinitax.com/sinitax/cachepc-linux
Log | Files | Refs | README | LICENSE | sfeed.txt

adi,adau17x1.txt (720B)


      1Analog Devices ADAU1361/ADAU1461/ADAU1761/ADAU1961/ADAU1381/ADAU1781
      2
      3Required properties:
      4
      5 - compatible:		Should contain one of the following:
      6			"adi,adau1361"
      7			"adi,adau1461"
      8			"adi,adau1761"
      9			"adi,adau1961"
     10			"adi,adau1381"
     11			"adi,adau1781"
     12
     13 - reg:			The i2c address. Value depends on the state of ADDR0
     14			and ADDR1, as wired in hardware.
     15
     16Optional properties:
     17 - clock-names:		If provided must be "mclk".
     18 - clocks:		phandle + clock-specifiers for the clock that provides
     19			the audio master clock for the device.
     20
     21Examples:
     22#include <dt-bindings/sound/adau17x1.h>
     23
     24	i2c_bus {
     25		adau1361@38 {
     26			compatible = "adi,adau1761";
     27			reg = <0x38>;
     28
     29			clock-names = "mclk";
     30			clocks = <&audio_clock>;
     31		};
     32	};