tas571x.txt 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. Texas Instruments TAS5711/TAS5717/TAS5719/TAS5721 stereo power amplifiers
  2. The codec is controlled through an I2C interface. It also has two other
  3. signals that can be wired up to GPIOs: reset (strongly recommended), and
  4. powerdown (optional).
  5. Required properties:
  6. - compatible: should be one of the following:
  7. - "ti,tas5707"
  8. - "ti,tas5711",
  9. - "ti,tas5717",
  10. - "ti,tas5719",
  11. - "ti,tas5721"
  12. - reg: The I2C address of the device
  13. - #sound-dai-cells: must be equal to 0
  14. Optional properties:
  15. - reset-gpios: GPIO specifier for the TAS571x's active low reset line
  16. - pdn-gpios: GPIO specifier for the TAS571x's active low powerdown line
  17. - clocks: clock phandle for the MCLK input
  18. - clock-names: should be "mclk"
  19. - AVDD-supply: regulator phandle for the AVDD supply (all chips)
  20. - DVDD-supply: regulator phandle for the DVDD supply (all chips)
  21. - HPVDD-supply: regulator phandle for the HPVDD supply (5717/5719)
  22. - PVDD_AB-supply: regulator phandle for the PVDD_AB supply (5717/5719)
  23. - PVDD_CD-supply: regulator phandle for the PVDD_CD supply (5717/5719)
  24. - PVDD_A-supply: regulator phandle for the PVDD_A supply (5711)
  25. - PVDD_B-supply: regulator phandle for the PVDD_B supply (5711)
  26. - PVDD_C-supply: regulator phandle for the PVDD_C supply (5711)
  27. - PVDD_D-supply: regulator phandle for the PVDD_D supply (5711)
  28. - DRVDD-supply: regulator phandle for the DRVDD supply (5721)
  29. - PVDD-supply: regulator phandle for the PVDD supply (5721)
  30. Example:
  31. tas5717: audio-codec@2a {
  32. compatible = "ti,tas5717";
  33. reg = <0x2a>;
  34. #sound-dai-cells = <0>;
  35. reset-gpios = <&gpio5 1 GPIO_ACTIVE_LOW>;
  36. pdn-gpios = <&gpio5 2 GPIO_ACTIVE_LOW>;
  37. clocks = <&clk_core CLK_I2S>;
  38. clock-names = "mclk";
  39. };