adi,adau17x1.txt 720 B

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