nvidia,tegra-audio-wm8753.txt 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. NVIDIA Tegra audio complex
  2. Required properties:
  3. - compatible : "nvidia,tegra-audio-wm8753"
  4. - nvidia,model : The user-visible name of this sound complex.
  5. - nvidia,audio-routing : A list of the connections between audio components.
  6. Each entry is a pair of strings, the first being the connection's sink,
  7. the second being the connection's source. Valid names for sources and
  8. sinks are the WM8753's pins, and the jacks on the board:
  9. WM8753 pins:
  10. * LOUT1
  11. * LOUT2
  12. * ROUT1
  13. * ROUT2
  14. * MONO1
  15. * MONO2
  16. * OUT3
  17. * OUT4
  18. * LINE1
  19. * LINE2
  20. * RXP
  21. * RXN
  22. * ACIN
  23. * ACOP
  24. * MIC1N
  25. * MIC1
  26. * MIC2N
  27. * MIC2
  28. * Mic Bias
  29. Board connectors:
  30. * Headphone Jack
  31. * Mic Jack
  32. - nvidia,i2s-controller : The phandle of the Tegra I2S1 controller
  33. - nvidia,audio-codec : The phandle of the WM8753 audio codec
  34. Example:
  35. sound {
  36. compatible = "nvidia,tegra-audio-wm8753-whistler",
  37. "nvidia,tegra-audio-wm8753"
  38. nvidia,model = "tegra-wm8753-harmony";
  39. nvidia,audio-routing =
  40. "Headphone Jack", "LOUT1",
  41. "Headphone Jack", "ROUT1";
  42. nvidia,i2s-controller = <&i2s1>;
  43. nvidia,audio-codec = <&wm8753>;
  44. };