twl4030-madc.txt 638 B

12345678910111213141516171819202122232425
  1. * TWL4030 Monitoring Analog to Digital Converter (MADC)
  2. The MADC subsystem in the TWL4030 consists of a 10-bit ADC
  3. combined with a 16-input analog multiplexer.
  4. Required properties:
  5. - compatible: Should contain "ti,twl4030-madc".
  6. - interrupts: IRQ line for the MADC submodule.
  7. - #io-channel-cells: Should be set to <1>.
  8. Optional properties:
  9. - ti,system-uses-second-madc-irq: boolean, set if the second madc irq register
  10. should be used, which is intended to be used
  11. by Co-Processors (e.g. a modem).
  12. Example:
  13. &twl {
  14. madc {
  15. compatible = "ti,twl4030-madc";
  16. interrupts = <3>;
  17. #io-channel-cells = <1>;
  18. };
  19. };