cs4270.txt 412 B

123456789101112131415161718192021
  1. CS4270 audio CODEC
  2. The driver for this device currently only supports I2C.
  3. Required properties:
  4. - compatible : "cirrus,cs4270"
  5. - reg : the I2C address of the device for I2C
  6. Optional properties:
  7. - reset-gpio : a GPIO spec for the reset pin. If specified, it will be
  8. deasserted before communication to the codec starts.
  9. Example:
  10. codec: cs4270@48 {
  11. compatible = "cirrus,cs4270";
  12. reg = <0x48>;
  13. };