ti,tas5086.txt 863 B

1234567891011121314151617181920212223242526272829303132
  1. Texas Instruments TAS5086 6-channel PWM Processor
  2. Required properties:
  3. - compatible: Should contain "ti,tas5086".
  4. - reg: The i2c address. Should contain <0x1b>.
  5. Optional properties:
  6. - reset-gpio: A GPIO spec to define which pin is connected to the
  7. chip's !RESET pin. If specified, the driver will
  8. assert a hardware reset at probe time.
  9. - ti,charge-period: This property should contain the time in microseconds
  10. that closely matches the external single-ended
  11. split-capacitor charge period. The hardware chip
  12. waits for this period of time before starting the
  13. PWM signals. This helps reduce pops and clicks.
  14. When not specified, the hardware default of 1300ms
  15. is retained.
  16. Examples:
  17. i2c_bus {
  18. tas5086@1b {
  19. compatible = "ti,tas5086";
  20. reg = <0x1b>;
  21. reset-gpio = <&gpio 23 0>;
  22. ti,charge-period = <156000>;
  23. };
  24. };