nokia,rx51.txt 987 B

123456789101112131415161718192021222324252627
  1. * Nokia N900 audio setup
  2. Required properties:
  3. - compatible: Should contain "nokia,n900-audio"
  4. - nokia,cpu-dai: phandle for the McBSP node
  5. - nokia,audio-codec: phandles for the main TLV320AIC3X node and the
  6. auxiliary TLV320AIC3X node (in this order)
  7. - nokia,headphone-amplifier: phandle for the TPA6130A2 node
  8. - tvout-selection-gpios: GPIO for tvout selection
  9. - jack-detection-gpios: GPIO for jack detection
  10. - eci-switch-gpios: GPIO for ECI (Enhancement Control Interface) switch
  11. - speaker-amplifier-gpios: GPIO for speaker amplifier
  12. Example:
  13. sound {
  14. compatible = "nokia,n900-audio";
  15. nokia,cpu-dai = <&mcbsp2>;
  16. nokia,audio-codec = <&tlv320aic3x>, <&tlv320aic3x_aux>;
  17. nokia,headphone-amplifier = <&tpa6130a2>;
  18. tvout-selection-gpios = <&gpio2 8 GPIO_ACTIVE_HIGH>; /* 40 */
  19. jack-detection-gpios = <&gpio6 17 GPIO_ACTIVE_HIGH>; /* 177 */
  20. eci-switch-gpios = <&gpio6 22 GPIO_ACTIVE_HIGH>; /* 182 */
  21. speaker-amplifier-gpios = <&twl_gpio 7 GPIO_ACTIVE_HIGH>;
  22. };