1Specifying GPIO information for devices
2============================================
3
41) gpios property
5-----------------
6
7Nodes that makes use of GPIOs should specify them using one or more
8properties, each containing a 'gpio-list':
9
10	gpio-list ::= <single-gpio> [gpio-list]
11	single-gpio ::= <gpio-phandle> <gpio-specifier>
12	gpio-phandle : phandle to gpio controller node
13	gpio-specifier : Array of #gpio-cells specifying specific gpio
14			 (controller specific)
15
16GPIO properties should be named "[<name>-]gpios", with <name> being the purpose
17of this GPIO for the device. While a non-existent <name> is considered valid
18for compatibility reasons (resolving to the "gpios" property), it is not allowed
19for new bindings. Also, GPIO properties named "[<name>-]gpio" are valid and old
20bindings use it, but are only supported for compatibility reasons and should not
21be used for newer bindings since it has been deprecated.
22
23GPIO properties can contain one or more GPIO phandles, but only in exceptional
24cases should they contain more than one. If your device uses several GPIOs with
25distinct functions, reference each of them under its own property, giving it a
26meaningful name. The only case where an array of GPIOs is accepted is when
27several GPIOs serve the same function (e.g. a parallel data line).
28
29The exact purpose of each gpios property must be documented in the device tree
30binding of the device.
31
32The following example could be used to describe GPIO pins used as device enable
33and bit-banged data signals:
34
35	gpio1: gpio1 {
36		gpio-controller
37		 #gpio-cells = <2>;
38	};
39	gpio2: gpio2 {
40		gpio-controller
41		 #gpio-cells = <1>;
42	};
43	[...]
44
45	enable-gpios = <&gpio2 2>;
46	data-gpios = <&gpio1 12 0>,
47		     <&gpio1 13 0>,
48		     <&gpio1 14 0>,
49		     <&gpio1 15 0>;
50
51Note that gpio-specifier length is controller dependent.  In the
52above example, &gpio1 uses 2 cells to specify a gpio, while &gpio2
53only uses one.
54
55gpio-specifier may encode: bank, pin position inside the bank,
56whether pin is open-drain and whether pin is logically inverted.
57
58Exact meaning of each specifier cell is controller specific, and must
59be documented in the device tree binding for the device.
60
61Most controllers are however specifying a generic flag bitfield
62in the last cell, so for these, use the macros defined in
63include/dt-bindings/gpio/gpio.h whenever possible:
64
65Example of a node using GPIOs:
66
67	node {
68		enable-gpios = <&qe_pio_e 18 GPIO_ACTIVE_HIGH>;
69	};
70
71GPIO_ACTIVE_HIGH is 0, so in this example gpio-specifier is "18 0" and encodes
72GPIO pin number, and GPIO flags as accepted by the "qe_pio_e" gpio-controller.
73
74Optional standard bitfield specifiers for the last cell:
75
76- Bit 0: 0 means active high, 1 means active low
77- Bit 1: 1 means single-ended wiring, see:
78           https://en.wikipedia.org/wiki/Single-ended_triode
79	   When used with active-low, this means open drain/collector, see:
80           https://en.wikipedia.org/wiki/Open_collector
81	   When used with active-high, this means open source/emitter
82
831.1) GPIO specifier best practices
84----------------------------------
85
86A gpio-specifier should contain a flag indicating the GPIO polarity; active-
87high or active-low. If it does, the following best practices should be
88followed:
89
90The gpio-specifier's polarity flag should represent the physical level at the
91GPIO controller that achieves (or represents, for inputs) a logically asserted
92value at the device. The exact definition of logically asserted should be
93defined by the binding for the device. If the board inverts the signal between
94the GPIO controller and the device, then the gpio-specifier will represent the
95opposite physical level than the signal at the device's pin.
96
97When the device's signal polarity is configurable, the binding for the
98device must either:
99
100a) Define a single static polarity for the signal, with the expectation that
101any software using that binding would statically program the device to use
102that signal polarity.
103
104The static choice of polarity may be either:
105
106a1) (Preferred) Dictated by a binding-specific DT property.
107
108or:
109
110a2) Defined statically by the DT binding itself.
111
112In particular, the polarity cannot be derived from the gpio-specifier, since
113that would prevent the DT from separately representing the two orthogonal
114concepts of configurable signal polarity in the device, and possible board-
115level signal inversion.
116
117or:
118
119b) Pick a single option for device signal polarity, and document this choice
120in the binding. The gpio-specifier should represent the polarity of the signal
121(at the GPIO controller) assuming that the device is configured for this
122particular signal polarity choice. If software chooses to program the device
123to generate or receive a signal of the opposite polarity, software will be
124responsible for correctly interpreting (inverting) the GPIO signal at the GPIO
125controller.
126
1272) gpio-controller nodes
128------------------------
129
130Every GPIO controller node must contain both an empty "gpio-controller"
131property, and a #gpio-cells integer property, which indicates the number of
132cells in a gpio-specifier.
133
134Some system-on-chips (SoCs) use the concept of GPIO banks. A GPIO bank is an
135instance of a hardware IP core on a silicon die, usually exposed to the
136programmer as a coherent range of I/O addresses. Usually each such bank is
137exposed in the device tree as an individual gpio-controller node, reflecting
138the fact that the hardware was synthesized by reusing the same IP block a
139few times over.
140
141Optionally, a GPIO controller may have a "ngpios" property. This property
142indicates the number of in-use slots of available slots for GPIOs. The
143typical example is something like this: the hardware register is 32 bits
144wide, but only 18 of the bits have a physical counterpart. The driver is
145generally written so that all 32 bits can be used, but the IP block is reused
146in a lot of designs, some using all 32 bits, some using 18 and some using
14712. In this case, setting "ngpios = <18>;" informs the driver that only the
148first 18 GPIOs, at local offset 0 .. 17, are in use.
149
150If these GPIOs do not happen to be the first N GPIOs at offset 0...N-1, an
151additional bitmask is needed to specify which GPIOs are actually in use,
152and which are dummies. The bindings for this case has not yet been
153specified, but should be specified if/when such hardware appears.
154
155Optionally, a GPIO controller may have a "gpio-line-names" property. This is
156an array of strings defining the names of the GPIO lines going out of the
157GPIO controller. This name should be the most meaningful producer name
158for the system, such as a rail name indicating the usage. Package names
159such as pin name are discouraged: such lines have opaque names (since they
160are by definition generic purpose) and such names are usually not very
161helpful. For example "MMC-CD", "Red LED Vdd" and "ethernet reset" are
162reasonable line names as they describe what the line is used for. "GPIO0"
163is not a good name to give to a GPIO line. Placeholders are discouraged:
164rather use the "" (blank string) if the use of the GPIO line is undefined
165in your design. The names are assigned starting from line offset 0 from
166left to right from the passed array. An incomplete array (where the number
167of passed named are less than ngpios) will still be used up until the last
168provided valid line index.
169
170Example:
171
172gpio-controller@00000000 {
173	compatible = "foo";
174	reg = <0x00000000 0x1000>;
175	gpio-controller;
176	#gpio-cells = <2>;
177	ngpios = <18>;
178	gpio-line-names = "MMC-CD", "MMC-WP", "VDD eth", "RST eth", "LED R",
179		"LED G", "LED B", "Col A", "Col B", "Col C", "Col D",
180		"Row A", "Row B", "Row C", "Row D", "NMI button",
181		"poweroff", "reset";
182}
183
184The GPIO chip may contain GPIO hog definitions. GPIO hogging is a mechanism
185providing automatic GPIO request and configuration as part of the
186gpio-controller's driver probe function.
187
188Each GPIO hog definition is represented as a child node of the GPIO controller.
189Required properties:
190- gpio-hog:   A property specifying that this child node represent a GPIO hog.
191- gpios:      Store the GPIO information (id, flags, ...). Shall contain the
192	      number of cells specified in its parent node (GPIO controller
193	      node).
194Only one of the following properties scanned in the order shown below.
195This means that when multiple properties are present they will be searched
196in the order presented below and the first match is taken as the intended
197configuration.
198- input:      A property specifying to set the GPIO direction as input.
199- output-low  A property specifying to set the GPIO direction as output with
200	      the value low.
201- output-high A property specifying to set the GPIO direction as output with
202	      the value high.
203
204Optional properties:
205- line-name:  The GPIO label name. If not present the node name is used.
206
207Example of two SOC GPIO banks defined as gpio-controller nodes:
208
209	qe_pio_a: gpio-controller@1400 {
210		compatible = "fsl,qe-pario-bank-a", "fsl,qe-pario-bank";
211		reg = <0x1400 0x18>;
212		gpio-controller;
213		#gpio-cells = <2>;
214
215		line_b {
216			gpio-hog;
217			gpios = <6 0>;
218			output-low;
219			line-name = "foo-bar-gpio";
220		};
221	};
222
223	qe_pio_e: gpio-controller@1460 {
224		compatible = "fsl,qe-pario-bank-e", "fsl,qe-pario-bank";
225		reg = <0x1460 0x18>;
226		gpio-controller;
227		#gpio-cells = <2>;
228	};
229
2302.1) gpio- and pin-controller interaction
231-----------------------------------------
232
233Some or all of the GPIOs provided by a GPIO controller may be routed to pins
234on the package via a pin controller. This allows muxing those pins between
235GPIO and other functions.
236
237It is useful to represent which GPIOs correspond to which pins on which pin
238controllers. The gpio-ranges property described below represents this, and
239contains information structures as follows:
240
241	gpio-range-list ::= <single-gpio-range> [gpio-range-list]
242	single-gpio-range ::= <numeric-gpio-range> | <named-gpio-range>
243	numeric-gpio-range ::=
244			<pinctrl-phandle> <gpio-base> <pinctrl-base> <count>
245	named-gpio-range ::= <pinctrl-phandle> <gpio-base> '<0 0>'
246	pinctrl-phandle : phandle to pin controller node
247	gpio-base : Base GPIO ID in the GPIO controller
248	pinctrl-base : Base pinctrl pin ID in the pin controller
249	count : The number of GPIOs/pins in this range
250
251The "pin controller node" mentioned above must conform to the bindings
252described in ../pinctrl/pinctrl-bindings.txt.
253
254In case named gpio ranges are used (ranges with both <pinctrl-base> and
255<count> set to 0), the property gpio-ranges-group-names contains one string
256for every single-gpio-range in gpio-ranges:
257	gpiorange-names-list ::= <gpiorange-name> [gpiorange-names-list]
258	gpiorange-name : Name of the pingroup associated to the GPIO range in
259			the respective pin controller.
260
261Elements of gpiorange-names-list corresponding to numeric ranges contain
262the empty string. Elements of gpiorange-names-list corresponding to named
263ranges contain the name of a pin group defined in the respective pin
264controller. The number of pins/GPIOs in the range is the number of pins in
265that pin group.
266
267Previous versions of this binding required all pin controller nodes that
268were referenced by any gpio-ranges property to contain a property named
269#gpio-range-cells with value <3>. This requirement is now deprecated.
270However, that property may still exist in older device trees for
271compatibility reasons, and would still be required even in new device
272trees that need to be compatible with older software.
273
274Example 1:
275
276	qe_pio_e: gpio-controller@1460 {
277		#gpio-cells = <2>;
278		compatible = "fsl,qe-pario-bank-e", "fsl,qe-pario-bank";
279		reg = <0x1460 0x18>;
280		gpio-controller;
281		gpio-ranges = <&pinctrl1 0 20 10>, <&pinctrl2 10 50 20>;
282	};
283
284Here, a single GPIO controller has GPIOs 0..9 routed to pin controller
285pinctrl1's pins 20..29, and GPIOs 10..19 routed to pin controller pinctrl2's
286pins 50..59.
287
288Example 2:
289
290	gpio_pio_i: gpio-controller@14B0 {
291		#gpio-cells = <2>;
292		compatible = "fsl,qe-pario-bank-e", "fsl,qe-pario-bank";
293		reg = <0x1480 0x18>;
294		gpio-controller;
295		gpio-ranges =			<&pinctrl1 0 20 10>,
296						<&pinctrl2 10 0 0>,
297						<&pinctrl1 15 0 10>,
298						<&pinctrl2 25 0 0>;
299		gpio-ranges-group-names =	"",
300						"foo",
301						"",
302						"bar";
303	};
304
305Here, three GPIO ranges are defined wrt. two pin controllers. pinctrl1 GPIO
306ranges are defined using pin numbers whereas the GPIO ranges wrt. pinctrl2
307are named "foo" and "bar".
308