wm8741.txt 603 B

1234567891011121314151617181920212223242526272829
  1. WM8741 audio CODEC
  2. This device supports both I2C and SPI (configured with pin strapping
  3. on the board).
  4. Required properties:
  5. - compatible : "wlf,wm8741"
  6. - reg : the I2C address of the device for I2C, the chip select
  7. number for SPI.
  8. Optional properties:
  9. - diff-mode: Differential output mode configuration. Default value for field
  10. DIFF in register R8 (MODE_CONTROL_2). If absent, the default is 0, shall be:
  11. 0 = stereo
  12. 1 = mono left
  13. 2 = stereo reversed
  14. 3 = mono right
  15. Example:
  16. codec: wm8741@1a {
  17. compatible = "wlf,wm8741";
  18. reg = <0x1a>;
  19. diff-mode = <3>;
  20. };