rohm,bd28623.txt 919 B

1234567891011121314151617181920212223242526272829
  1. ROHM BD28623MUV Class D speaker amplifier for digital input
  2. This codec does not have any control buses such as I2C, it detect format and
  3. rate of I2S signal automatically. It has two signals that can be connected
  4. to GPIOs: reset and mute.
  5. Required properties:
  6. - compatible : should be "rohm,bd28623"
  7. - #sound-dai-cells: should be 0.
  8. - VCCA-supply : regulator phandle for the VCCA supply
  9. - VCCP1-supply : regulator phandle for the VCCP1 supply
  10. - VCCP2-supply : regulator phandle for the VCCP2 supply
  11. Optional properties:
  12. - reset-gpios : GPIO specifier for the active low reset line
  13. - mute-gpios : GPIO specifier for the active low mute line
  14. Example:
  15. codec {
  16. compatible = "rohm,bd28623";
  17. #sound-dai-cells = <0>;
  18. VCCA-supply = <&vcc_reg>;
  19. VCCP1-supply = <&vcc_reg>;
  20. VCCP2-supply = <&vcc_reg>;
  21. reset-gpios = <&gpio 0 GPIO_ACTIVE_LOW>;
  22. mute-gpios = <&gpio 1 GPIO_ACTIVE_LOW>;
  23. };