extcon-sm5502.txt 809 B

1234567891011121314151617181920212223
  1. * SM5502 MUIC (Micro-USB Interface Controller) device
  2. The Silicon Mitus SM5502 is a MUIC (Micro-USB Interface Controller) device
  3. which can detect the state of external accessory when external accessory is
  4. attached or detached and button is pressed or released. It is interfaced to
  5. the host controller using an I2C interface.
  6. Required properties:
  7. - compatible: Should be "siliconmitus,sm5502-muic"
  8. - reg: Specifies the I2C slave address of the MUIC block. It should be 0x25
  9. - interrupt-parent: Specifies the phandle of the interrupt controller to which
  10. the interrupts from sm5502 are delivered to.
  11. - interrupts: Interrupt specifiers for detection interrupt sources.
  12. Example:
  13. sm5502@25 {
  14. compatible = "siliconmitus,sm5502-muic";
  15. interrupt-parent = <&gpx1>;
  16. interrupts = <5 0>;
  17. reg = <0x25>;
  18. };