max98090.txt 715 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. MAX98090 audio CODEC
  2. This device supports I2C only.
  3. Required properties:
  4. - compatible : "maxim,max98090" or "maxim,max98091".
  5. - reg : The I2C address of the device.
  6. - interrupts : The CODEC's interrupt output.
  7. Optional properties:
  8. - clocks: The phandle of the master clock to the CODEC
  9. - clock-names: Should be "mclk"
  10. Pins on the device (for linking into audio routes):
  11. * MIC1
  12. * MIC2
  13. * DMICL
  14. * DMICR
  15. * IN1
  16. * IN2
  17. * IN3
  18. * IN4
  19. * IN5
  20. * IN6
  21. * IN12
  22. * IN34
  23. * IN56
  24. * HPL
  25. * HPR
  26. * SPKL
  27. * SPKR
  28. * RCVL
  29. * RCVR
  30. * MICBIAS
  31. Example:
  32. audio-codec@10 {
  33. compatible = "maxim,max98090";
  34. reg = <0x10>;
  35. interrupt-parent = <&gpio>;
  36. interrupts = <TEGRA_GPIO(H, 4) GPIO_ACTIVE_HIGH>;
  37. };