Add snapshot of device tree bindings from keystone common kernel, branch "android-mainline-keystone-qcom-release" at c4c12103f9c0 ("Snap for 9228065 from e32903b9a63bb558df8b803b076619c53c16baad to android-mainline-keystone-qcom-release"). Change-Id: I7682079615cbd9f29340a5c1f2a1d84ec441a1f1 Signed-off-by: Melody Olvera <quic_molvera@quicinc.com>
25 lines
799 B
Plaintext
25 lines
799 B
Plaintext
* IBM/AMCC/APM GPIO Controller for PowerPC 4XX series and compatible SoCs
|
|
|
|
All GPIOs are pin-shared with other functions. DCRs control whether a
|
|
particular pin that has GPIO capabilities acts as a GPIO or is used for
|
|
another purpose. GPIO outputs are separately programmable to emulate
|
|
an open-drain driver.
|
|
|
|
Required properties:
|
|
- compatible: must be "ibm,ppc4xx-gpio"
|
|
- reg: address and length of the register set for the device
|
|
- #gpio-cells: must be set to 2. The first cell is the pin number
|
|
and the second cell is used to specify the gpio polarity:
|
|
0 = active high
|
|
1 = active low
|
|
- gpio-controller: marks the device node as a gpio controller.
|
|
|
|
Example:
|
|
|
|
GPIO0: gpio@ef600b00 {
|
|
compatible = "ibm,ppc4xx-gpio";
|
|
reg = <0xef600b00 0x00000048>;
|
|
#gpio-cells = <2>;
|
|
gpio-controller;
|
|
};
|