adi,adau1701.txt 505 B

1234567891011121314151617181920212223
  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. Examples:
  11. i2c_bus {
  12. adau1701@34 {
  13. compatible = "adi,adau1701";
  14. reg = <0x34>;
  15. reset-gpio = <&gpio 23 0>;
  16. };
  17. };