samsung,odroidx2-max98090.txt 1.1 KB

1234567891011121314151617181920212223242526272829303132333435
  1. Samsung Exynos Odroid X2/U3 audio complex with MAX98090 codec
  2. Required properties:
  3. - compatible : "samsung,odroidx2-audio" - for Odroid X2 board,
  4. "samsung,odroidu3-audio" - for Odroid U3 board
  5. - samsung,model : the user-visible name of this sound complex
  6. - samsung,i2s-controller : the phandle of the I2S controller
  7. - samsung,audio-codec : the phandle of the MAX98090 audio codec
  8. - samsung,audio-routing : a list of the connections between audio
  9. components; each entry is a pair of strings, the first being the
  10. connection's sink, the second being the connection's source;
  11. valid names for sources and sinks are the MAX98090's pins (as
  12. documented in its binding), and the jacks on the board
  13. For Odroid X2:
  14. * Headphone Jack
  15. * Mic Jack
  16. * DMIC
  17. For Odroid U3:
  18. * Headphone Jack
  19. * Speakers
  20. Example:
  21. sound {
  22. compatible = "samsung,odroidu3-audio";
  23. samsung,i2s-controller = <&i2s0>;
  24. samsung,audio-codec = <&max98090>;
  25. samsung,model = "Odroid-X2";
  26. samsung,audio-routing =
  27. "Headphone Jack", "HPL",
  28. "Headphone Jack", "HPR",
  29. "IN1", "Mic Jack",
  30. "Mic Jack", "MICBIAS";
  31. };