adi,adau1701.txt 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. Analog Devices ADAU1701
  2. Required properties:
  3. - compatible: Should contain "adi,adau1701"
  4. - reg: The i2c address. Value depends on the state of ADDR0
  5. and ADDR1, as wired in hardware.
  6. Optional properties:
  7. - reset-gpio: A GPIO spec to define which pin is connected to the
  8. chip's !RESET pin. If specified, the driver will
  9. assert a hardware reset at probe time.
  10. - adi,pll-mode-gpios: An array of two GPIO specs to describe the GPIOs
  11. the ADAU's PLL config pins are connected to.
  12. The state of the pins are set according to the
  13. configured clock divider on ASoC side before the
  14. firmware is loaded.
  15. - adi,pin-config: An array of 12 numerical values selecting one of the
  16. pin configurations as described in the datasheet,
  17. table 53. Note that the value of this property has
  18. to be prefixed with '/bits/ 8'.
  19. - avdd-supply: Power supply for AVDD, providing 3.3V
  20. - dvdd-supply: Power supply for DVDD, providing 3.3V
  21. Examples:
  22. i2c_bus {
  23. adau1701@34 {
  24. compatible = "adi,adau1701";
  25. reg = <0x34>;
  26. reset-gpio = <&gpio 23 0>;
  27. avdd-supply = <&vdd_3v3_reg>;
  28. dvdd-supply = <&vdd_3v3_reg>;
  29. adi,pll-mode-gpios = <&gpio 24 0 &gpio 25 0>;
  30. adi,pin-config = /bits/ 8 <0x4 0x7 0x5 0x5 0x4 0x4
  31. 0x4 0x4 0x4 0x4 0x4 0x4>;
  32. };
  33. };