ACPI: EC: Rework flushing of pending work
[linux/fpc-iii.git] / Documentation / devicetree / bindings / w1 / w1-gpio.txt
blob3d6554eac240ce174e3d2073fa290a6b15bfd0fe
1 w1-gpio devicetree bindings
3 Required properties:
5  - compatible: "w1-gpio"
6  - gpios: one or two GPIO specs:
7                 - the first one is used as data I/O pin
8                 - the second one is optional. If specified, it is used as
9                   enable pin for an external pin pullup.
11 Optional properties:
13  - linux,open-drain: if specified, the data pin is considered in
14                      open-drain mode.
16 Also refer to the generic w1.txt document.
18 Examples:
20         onewire {
21                 compatible = "w1-gpio";
22                 gpios = <&gpio 0 GPIO_ACTIVE_HIGH>;
24                 battery {
25                         // ...
26                 };
27         };