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