cs42xx8.txt 704 B

12345678910111213141516171819202122232425262728
  1. CS42448/CS42888 audio CODEC
  2. Required properties:
  3. - compatible : must contain one of "cirrus,cs42448" and "cirrus,cs42888"
  4. - reg : the I2C address of the device for I2C
  5. - clocks : a list of phandles + clock-specifiers, one for each entry in
  6. clock-names
  7. - clock-names : must contain "mclk"
  8. - VA-supply, VD-supply, VLS-supply, VLC-supply: power supplies for the device,
  9. as covered in Documentation/devicetree/bindings/regulator/regulator.txt
  10. Example:
  11. codec: cs42888@48 {
  12. compatible = "cirrus,cs42888";
  13. reg = <0x48>;
  14. clocks = <&codec_mclk 0>;
  15. clock-names = "mclk";
  16. VA-supply = <&reg_audio>;
  17. VD-supply = <&reg_audio>;
  18. VLS-supply = <&reg_audio>;
  19. VLC-supply = <&reg_audio>;
  20. };