nvidia,tegra-audio-wm8753.txt 1.5 KB

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