nvidia,tegra-audio-alc5632.txt 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. NVIDIA Tegra audio complex
  2. Required properties:
  3. - compatible : "nvidia,tegra-audio-alc5632"
  4. - clocks : Must contain an entry for each entry in clock-names.
  5. See ../clocks/clock-bindings.txt for details.
  6. - clock-names : Must include the following entries:
  7. - pll_a
  8. - pll_a_out0
  9. - mclk (The Tegra cdev1/extern1 clock, which feeds the CODEC's mclk)
  10. - nvidia,model : The user-visible name of this sound complex.
  11. - nvidia,audio-routing : A list of the connections between audio components.
  12. Each entry is a pair of strings, the first being the connection's sink,
  13. the second being the connection's source. Valid names for sources and
  14. sinks are the ALC5632's pins as documented in the binding for the device
  15. and:
  16. * Headset Stereophone
  17. * Int Spk
  18. * Headset Mic
  19. * Digital Mic
  20. - nvidia,i2s-controller : The phandle of the Tegra I2S controller
  21. - nvidia,audio-codec : The phandle of the ALC5632 audio codec
  22. Example:
  23. sound {
  24. compatible = "nvidia,tegra-audio-alc5632-paz00",
  25. "nvidia,tegra-audio-alc5632";
  26. nvidia,model = "Compal PAZ00";
  27. nvidia,audio-routing =
  28. "Int Spk", "SPK_OUTP",
  29. "Int Spk", "SPK_OUTN",
  30. "Headset Mic","MICBIAS1",
  31. "MIC1_N", "Headset Mic",
  32. "MIC1_P", "Headset Mic",
  33. "Headset Stereophone", "HP_OUT_R",
  34. "Headset Stereophone", "HP_OUT_L";
  35. nvidia,i2s-controller = <&tegra_i2s1>;
  36. nvidia,audio-codec = <&alc5632>;
  37. clocks = <&tegra_car 112>, <&tegra_car 113>, <&tegra_car 93>;
  38. clock-names = "pll_a", "pll_a_out0", "mclk";
  39. };