hc
2023-11-07 5e8555e3ea324daaf0e38422bcba48c4df33a0d9
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
GPIO driver for MAX77620 Power management IC from Maxim Semiconductor.
 
Device has 8 GPIO pins which can be configured as GPIO as well as the
special IO functions.
 
Required properties:
-------------------
- gpio-controller :     Marks the device node as a gpio controller.
- #gpio-cells :     Should be two.  The first cell is the pin number and
           the second cell is used to specify the gpio polarity:
               0 = active high
               1 = active low
For more details, please refer generic GPIO DT binding document
<devicetree/bindings/gpio/gpio.txt>.
 
Example:
--------
#include <dt-bindings/mfd/max77620.h>
...
max77620@3c {
   compatible = "maxim,max77620";
 
   gpio-controller;
   #gpio-cells = <2>;
};