berlin2_adc.txt 564 B

1234567891011121314151617181920
  1. * Berlin Analog to Digital Converter (ADC)
  2. The Berlin ADC has 8 channels, with one connected to a temperature sensor.
  3. It is part of the system controller register set. The ADC node should be a
  4. sub-node of the system controller node.
  5. Required properties:
  6. - compatible: must be "marvell,berlin2-adc"
  7. - interrupts: the interrupts for the ADC and the temperature sensor
  8. - interrupt-names: should be "adc" and "tsen"
  9. Example:
  10. adc: adc {
  11. compatible = "marvell,berlin2-adc";
  12. interrupt-parent = <&sic>;
  13. interrupts = <12>, <14>;
  14. interrupt-names = "adc", "tsen";
  15. };