Add gpio device documentation to make the da9062 gpios available for users. Signed-off-by: Marco Felsch <m.felsch@xxxxxxxxxxxxxx> --- .../devicetree/bindings/gpio/gpio-da9062.txt | 26 +++++++++++++++++++ .../devicetree/bindings/mfd/da9062.txt | 3 +++ 2 files changed, 29 insertions(+) create mode 100644 Documentation/devicetree/bindings/gpio/gpio-da9062.txt diff --git a/Documentation/devicetree/bindings/gpio/gpio-da9062.txt b/Documentation/devicetree/bindings/gpio/gpio-da9062.txt new file mode 100644 index 000000000000..b0f9236a7176 --- /dev/null +++ b/Documentation/devicetree/bindings/gpio/gpio-da9062.txt @@ -0,0 +1,26 @@ +GPIO driver for DA9062 Power management IC (PMIC) + +Device has 5 GPIO pins which can be configured as GPIO as well as the +special IO functions. + +Required properties: +------------------- +- compatible : Should be "dlg,da9062-gpio". +- 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. + +See Documentation/devicetree/bindings/gpio/gpio.txt for further information on +GPIO bindings. + +Example: +-------- + pmic@58 { + ... + pmic_gpio: gpio { + compatible = "dlg,da9062-gpio"; + gpio-controller; + #gpio-cells = <2>; + }; + ... + }; diff --git a/Documentation/devicetree/bindings/mfd/da9062.txt b/Documentation/devicetree/bindings/mfd/da9062.txt index edca653a5777..eec69c4f0697 100644 --- a/Documentation/devicetree/bindings/mfd/da9062.txt +++ b/Documentation/devicetree/bindings/mfd/da9062.txt @@ -13,6 +13,7 @@ da9062-rtc : : Real-Time Clock da9062-onkey : : On Key da9062-watchdog : : Watchdog Timer da9062-thermal : : Thermal +da9062-gpio : : GPIOs The DA9061 PMIC consists of: @@ -76,6 +77,8 @@ Sub-nodes: - thermal : See ../thermal/da9062-thermal.txt +- gpio : See ../gpio/gpio-da9062.txt + Example: pmic0: da9062@58 { -- 2.20.1