atmel-sam9x5-wm8731-audio.txt 980 B

1234567891011121314151617181920212223242526272829303132333435
  1. * Atmel at91sam9x5ek wm8731 audio complex
  2. Required properties:
  3. - compatible: "atmel,sam9x5-wm8731-audio"
  4. - atmel,model: The user-visible name of this sound complex.
  5. - atmel,ssc-controller: The phandle of the SSC controller
  6. - atmel,audio-codec: The phandle of the WM8731 audio codec
  7. - atmel,audio-routing: A list of the connections between audio components.
  8. Each entry is a pair of strings, the first being the connection's sink,
  9. the second being the connection's source.
  10. Available audio endpoints for the audio-routing table:
  11. Board connectors:
  12. * Headphone Jack
  13. * Line In Jack
  14. wm8731 pins:
  15. cf Documentation/devicetree/bindings/sound/wm8731.txt
  16. Example:
  17. sound {
  18. compatible = "atmel,sam9x5-wm8731-audio";
  19. atmel,model = "wm8731 @ AT91SAM9X5EK";
  20. atmel,audio-routing =
  21. "Headphone Jack", "RHPOUT",
  22. "Headphone Jack", "LHPOUT",
  23. "LLINEIN", "Line In Jack",
  24. "RLINEIN", "Line In Jack";
  25. atmel,ssc-controller = <&ssc0>;
  26. atmel,audio-codec = <&wm8731>;
  27. };