nvidia,tegra-audio-wm9712.txt 1.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. NVIDIA Tegra audio complex
  2. Required properties:
  3. - compatible : "nvidia,tegra-audio-wm9712"
  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 WM9712's pins, and the jacks on the board:
  9. WM9712 pins:
  10. * MONOOUT
  11. * HPOUTL
  12. * HPOUTR
  13. * LOUT2
  14. * ROUT2
  15. * OUT3
  16. * LINEINL
  17. * LINEINR
  18. * PHONE
  19. * PCBEEP
  20. * MIC1
  21. * MIC2
  22. * Mic Bias
  23. Board connectors:
  24. * Headphone
  25. * LineIn
  26. * Mic
  27. - nvidia,ac97-controller : The phandle of the Tegra AC97 controller
  28. Example:
  29. sound {
  30. compatible = "nvidia,tegra-audio-wm9712-colibri_t20",
  31. "nvidia,tegra-audio-wm9712";
  32. nvidia,model = "Toradex Colibri T20";
  33. nvidia,audio-routing =
  34. "Headphone", "HPOUTL",
  35. "Headphone", "HPOUTR",
  36. "LineIn", "LINEINL",
  37. "LineIn", "LINEINR",
  38. "Mic", "MIC1";
  39. nvidia,ac97-controller = <&ac97>;
  40. };