]> git.proxmox.com Git - mirror_ubuntu-zesty-kernel.git/blame - Documentation/gpio/driver.txt
KVM: PPC: Use preregistered memory API to access TCE list
[mirror_ubuntu-zesty-kernel.git] / Documentation / gpio / driver.txt
CommitLineData
fd8e198c
AC
1GPIO Descriptor Driver Interface
2================================
3
4This document serves as a guide for GPIO chip drivers writers. Note that it
5describes the new descriptor-based interface. For a description of the
6deprecated integer-based GPIO interface please refer to gpio-legacy.txt.
7
8Each GPIO controller driver needs to include the following header, which defines
9the structures used to define a GPIO driver:
10
11 #include <linux/gpio/driver.h>
12
13
14Internal Representation of GPIOs
15================================
16
17Inside a GPIO driver, individual GPIOs are identified by their hardware number,
18which is a unique number between 0 and n, n being the number of GPIOs managed by
19the chip. This number is purely internal: the hardware number of a particular
20GPIO descriptor is never made visible outside of the driver.
21
22On top of this internal number, each GPIO also need to have a global number in
23the integer GPIO namespace so that it can be used with the legacy GPIO
24interface. Each chip must thus have a "base" number (which can be automatically
25assigned), and for each GPIO the global number will be (base + hardware number).
26Although the integer representation is considered deprecated, it still has many
27users and thus needs to be maintained.
28
29So for example one platform could use numbers 32-159 for GPIOs, with a
30controller defining 128 GPIOs at a "base" of 32 ; while another platform uses
31numbers 0..63 with one set of GPIO controllers, 64-79 with another type of GPIO
32controller, and on one particular board 80-95 with an FPGA. The numbers need not
33be contiguous; either of those platforms could also use numbers 2000-2063 to
34identify GPIOs in a bank of I2C GPIO expanders.
35
36
37Controller Drivers: gpio_chip
38=============================
39
40In the gpiolib framework each GPIO controller is packaged as a "struct
41gpio_chip" (see linux/gpio/driver.h for its complete definition) with members
42common to each controller of that type:
43
44 - methods to establish GPIO direction
45 - methods used to access GPIO values
46 - method to return the IRQ number associated to a given GPIO
47 - flag saying whether calls to its methods may sleep
48 - optional debugfs dump method (showing extra state like pullup config)
49 - optional base number (will be automatically assigned if omitted)
50 - label for diagnostics and GPIOs mapping using platform data
51
52The code implementing a gpio_chip should support multiple instances of the
53controller, possibly using the driver model. That code will configure each
54gpio_chip and issue gpiochip_add(). Removing a GPIO controller should be rare;
55use gpiochip_remove() when it is unavoidable.
56
57Most often a gpio_chip is part of an instance-specific structure with state not
58exposed by the GPIO interfaces, such as addressing, power management, and more.
59Chips such as codecs will have complex non-GPIO state.
60
61Any debugfs dump method should normally ignore signals which haven't been
62requested as GPIOs. They can use gpiochip_is_requested(), which returns either
63NULL or the label associated with that GPIO when it was requested.
64
c307b002
GS
65RT_FULL: GPIO driver should not use spinlock_t or any sleepable APIs
66(like PM runtime) in its gpio_chip implementation (.get/.set and direction
67control callbacks) if it is expected to call GPIO APIs from atomic context
68on -RT (inside hard IRQ handlers and similar contexts). Normally this should
69not be required.
99adc059 70
6b5029d3
LW
71
72GPIOs with open drain/source support
73------------------------------------
74
75Open drain (CMOS) or open collector (TTL) means the line is not actively driven
76high: instead you provide the drain/collector as output, so when the transistor
77is not open, it will present a high-impedance (tristate) to the external rail.
78
79
80 CMOS CONFIGURATION TTL CONFIGURATION
81
82 ||--- out +--- out
83 in ----|| |/
84 ||--+ in ----|
85 | |\
86 GND GND
87
88This configuration is normally used as a way to achieve one of two things:
89
90- Level-shifting: to reach a logical level higher than that of the silicon
91 where the output resides.
92
93- inverse wire-OR on an I/O line, for example a GPIO line, making it possible
94 for any driving stage on the line to drive it low even if any other output
95 to the same line is simultaneously driving it high. A special case of this
96 is driving the SCL and SCA lines of an I2C bus, which is by definition a
97 wire-OR bus.
98
99Both usecases require that the line be equipped with a pull-up resistor. This
100resistor will make the line tend to high level unless one of the transistors on
101the rail actively pulls it down.
102
451938d5
LW
103The level on the line will go as high as the VDD on the pull-up resistor, which
104may be higher than the level supported by the transistor, achieveing a
105level-shift to the higher VDD.
106
6b5029d3
LW
107Integrated electronics often have an output driver stage in the form of a CMOS
108"totem-pole" with one N-MOS and one P-MOS transistor where one of them drives
109the line high and one of them drives the line low. This is called a push-pull
110output. The "totem-pole" looks like so:
111
112 VDD
113 |
114 OD ||--+
115 +--/ ---o|| P-MOS-FET
116 | ||--+
451938d5 117IN --+ +----- out
6b5029d3
LW
118 | ||--+
119 +--/ ----|| N-MOS-FET
120 OS ||--+
121 |
122 GND
123
451938d5
LW
124The desired output signal (e.g. coming directly from some GPIO output register)
125arrives at IN. The switches named "OD" and "OS" are normally closed, creating
126a push-pull circuit.
127
128Consider the little "switches" named "OD" and "OS" that enable/disable the
6b5029d3
LW
129P-MOS or N-MOS transistor right after the split of the input. As you can see,
130either transistor will go totally numb if this switch is open. The totem-pole
131is then halved and give high impedance instead of actively driving the line
132high or low respectively. That is usually how software-controlled open
133drain/source works.
134
135Some GPIO hardware come in open drain / open source configuration. Some are
136hard-wired lines that will only support open drain or open source no matter
137what: there is only one transistor there. Some are software-configurable:
138by flipping a bit in a register the output can be configured as open drain
451938d5
LW
139or open source, in practice by flicking open the switches labeled "OD" and "OS"
140in the drawing above.
6b5029d3
LW
141
142By disabling the P-MOS transistor, the output can be driven between GND and
143high impedance (open drain), and by disabling the N-MOS transistor, the output
144can be driven between VDD and high impedance (open source). In the first case,
145a pull-up resistor is needed on the outgoing rail to complete the circuit, and
146in the second case, a pull-down resistor is needed on the rail.
147
148Hardware that supports open drain or open source or both, can implement a
149special callback in the gpio_chip: .set_single_ended() that takes an enum flag
150telling whether to configure the line as open drain, open source or push-pull.
151This will happen in response to the GPIO_OPEN_DRAIN or GPIO_OPEN_SOURCE flag
152set in the machine file, or coming from other hardware descriptions.
153
154If this state can not be configured in hardware, i.e. if the GPIO hardware does
155not support open drain/open source in hardware, the GPIO library will instead
156use a trick: when a line is set as output, if the line is flagged as open
451938d5
LW
157drain, and the IN output value is low, it will be driven low as usual. But
158if the IN output value is set to high, it will instead *NOT* be driven high,
6b5029d3
LW
159instead it will be switched to input, as input mode is high impedance, thus
160achieveing an "open drain emulation" of sorts: electrically the behaviour will
161be identical, with the exception of possible hardware glitches when switching
162the mode of the line.
163
164For open source configuration the same principle is used, just that instead
165of actively driving the line low, it is set to input.
166
167
99adc059
LW
168GPIO drivers providing IRQs
169---------------------------
170It is custom that GPIO drivers (GPIO chips) are also providing interrupts,
171most often cascaded off a parent interrupt controller, and in some special
172cases the GPIO logic is melded with a SoC's primary interrupt controller.
173
174The IRQ portions of the GPIO block are implemented using an irqchip, using
175the header <linux/irq.h>. So basically such a driver is utilizing two sub-
176systems simultaneously: gpio and irq.
177
d245b3f9
LW
178RT_FULL: a realtime compliant GPIO driver should not use spinlock_t or any
179sleepable APIs (like PM runtime) as part of its irq_chip implementation.
c307b002
GS
180- spinlock_t should be replaced with raw_spinlock_t [1].
181- If sleepable APIs have to be used, these can be done from the .irq_bus_lock()
182 and .irq_bus_unlock() callbacks, as these are the only slowpath callbacks
183 on an irqchip. Create the callbacks if needed [2].
184
90887db8
LW
185GPIO irqchips usually fall in one of two categories:
186
187* CHAINED GPIO irqchips: these are usually the type that is embedded on
d245b3f9 188 an SoC. This means that there is a fast IRQ flow handler for the GPIOs that
90887db8 189 gets called in a chain from the parent IRQ handler, most typically the
d245b3f9
LW
190 system interrupt controller. This means that the GPIO irqchip handler will
191 be called immediately from the parent irqchip, while holding the IRQs
192 disabled. The GPIO irqchip will then end up calling something like this
193 sequence in its interrupt handler:
194
195 static irqreturn_t foo_gpio_irq(int irq, void *data)
90887db8
LW
196 chained_irq_enter(...);
197 generic_handle_irq(...);
198 chained_irq_exit(...);
199
200 Chained GPIO irqchips typically can NOT set the .can_sleep flag on
d245b3f9
LW
201 struct gpio_chip, as everything happens directly in the callbacks: no
202 slow bus traffic like I2C can be used.
90887db8 203
c307b002
GS
204 RT_FULL: Note, chained IRQ handlers will not be forced threaded on -RT.
205 As result, spinlock_t or any sleepable APIs (like PM runtime) can't be used
206 in chained IRQ handler.
d245b3f9
LW
207 If required (and if it can't be converted to the nested threaded GPIO irqchip)
208 a chained IRQ handler can be converted to generic irq handler and this way
209 it will be a threaded IRQ handler on -RT and a hard IRQ handler on non-RT
c307b002
GS
210 (for example, see [3]).
211 Know W/A: The generic_handle_irq() is expected to be called with IRQ disabled,
d245b3f9
LW
212 so the IRQ core will complain if it is called from an IRQ handler which is
213 forced to a thread. The "fake?" raw lock can be used to W/A this problem:
c307b002
GS
214
215 raw_spinlock_t wa_lock;
216 static irqreturn_t omap_gpio_irq_handler(int irq, void *gpiobank)
217 unsigned long wa_lock_flags;
218 raw_spin_lock_irqsave(&bank->wa_lock, wa_lock_flags);
219 generic_handle_irq(irq_find_mapping(bank->chip.irqdomain, bit));
220 raw_spin_unlock_irqrestore(&bank->wa_lock, wa_lock_flags);
221
222* GENERIC CHAINED GPIO irqchips: these are the same as "CHAINED GPIO irqchips",
223 but chained IRQ handlers are not used. Instead GPIO IRQs dispatching is
224 performed by generic IRQ handler which is configured using request_irq().
225 The GPIO irqchip will then end up calling something like this sequence in
226 its interrupt handler:
227
228 static irqreturn_t gpio_rcar_irq_handler(int irq, void *dev_id)
229 for each detected GPIO IRQ
230 generic_handle_irq(...);
231
232 RT_FULL: Such kind of handlers will be forced threaded on -RT, as result IRQ
233 core will complain that generic_handle_irq() is called with IRQ enabled and
234 the same W/A as for "CHAINED GPIO irqchips" can be applied.
235
4aa50b87
LW
236* NESTED THREADED GPIO irqchips: these are off-chip GPIO expanders and any
237 other GPIO irqchip residing on the other side of a sleeping bus. Of course
238 such drivers that need slow bus traffic to read out IRQ status and similar,
239 traffic which may in turn incur other IRQs to happen, cannot be handled
240 in a quick IRQ handler with IRQs disabled. Instead they need to spawn a
241 thread and then mask the parent IRQ line until the interrupt is handled
242 by the driver. The hallmark of this driver is to call something like
243 this in its interrupt handler:
90887db8 244
d245b3f9 245 static irqreturn_t foo_gpio_irq(int irq, void *data)
90887db8
LW
246 ...
247 handle_nested_irq(irq);
248
4aa50b87
LW
249 The hallmark of threaded GPIO irqchips is that they set the .can_sleep
250 flag on struct gpio_chip to true, indicating that this chip may sleep
251 when accessing the GPIOs.
90887db8
LW
252
253To help out in handling the set-up and management of GPIO irqchips and the
254associated irqdomain and resource allocation callbacks, the gpiolib has
255some helpers that can be enabled by selecting the GPIOLIB_IRQCHIP Kconfig
256symbol:
257
d245b3f9 258* gpiochip_irqchip_add(): adds a chained irqchip to a gpiochip. It will pass
90887db8
LW
259 the struct gpio_chip* for the chip to all IRQ callbacks, so the callbacks
260 need to embed the gpio_chip in its state container and obtain a pointer
261 to the container using container_of().
262 (See Documentation/driver-model/design-patterns.txt)
263
d245b3f9
LW
264* gpiochip_irqchip_add_nested(): adds a nested irqchip to a gpiochip.
265 Apart from that it works exactly like the chained irqchip.
79b804cb 266
90887db8
LW
267* gpiochip_set_chained_irqchip(): sets up a chained irq handler for a
268 gpio_chip from a parent IRQ and passes the struct gpio_chip* as handler
269 data. (Notice handler data, since the irqchip data is likely used by the
d245b3f9
LW
270 parent irqchip!).
271
272* gpiochip_set_nested_irqchip(): sets up a nested irq handler for a
273 gpio_chip from a parent IRQ. As the parent IRQ has usually been
274 explicitly requested by the driver, this does very little more than
275 mark all the child IRQs as having the other IRQ as parent.
276
277If there is a need to exclude certain GPIOs from the IRQ domain, you can
278set .irq_need_valid_mask of the gpiochip before gpiochip_add_data() is
279called. This allocates an .irq_valid_mask with as many bits set as there
280are GPIOs in the chip. Drivers can exclude GPIOs by clearing bits from this
281mask. The mask must be filled in before gpiochip_irqchip_add() or
282gpiochip_irqchip_add_nested() is called.
90887db8
LW
283
284To use the helpers please keep the following in mind:
285
286- Make sure to assign all relevant members of the struct gpio_chip so that
287 the irqchip can initialize. E.g. .dev and .can_sleep shall be set up
288 properly.
289
c307b002
GS
290- Nominally set all handlers to handle_bad_irq() in the setup call and pass
291 handle_bad_irq() as flow handler parameter in gpiochip_irqchip_add() if it is
292 expected for GPIO driver that irqchip .set_type() callback have to be called
293 before using/enabling GPIO IRQ. Then set the handler to handle_level_irq()
294 and/or handle_edge_irq() in the irqchip .set_type() callback depending on
295 what your controller supports.
296
99adc059
LW
297It is legal for any IRQ consumer to request an IRQ from any irqchip no matter
298if that is a combined GPIO+IRQ driver. The basic premise is that gpio_chip and
299irq_chip are orthogonal, and offering their services independent of each
300other.
301
302gpiod_to_irq() is just a convenience function to figure out the IRQ for a
303certain GPIO line and should not be relied upon to have been called before
304the IRQ is used.
305
306So always prepare the hardware and make it ready for action in respective
307callbacks from the GPIO and irqchip APIs. Do not rely on gpiod_to_irq() having
308been called first.
309
310This orthogonality leads to ambiguities that we need to solve: if there is
311competition inside the subsystem which side is using the resource (a certain
312GPIO line and register for example) it needs to deny certain operations and
313keep track of usage inside of the gpiolib subsystem. This is why the API
314below exists.
315
316
fd8e198c
AC
317Locking IRQ usage
318-----------------
319Input GPIOs can be used as IRQ signals. When this happens, a driver is requested
320to mark the GPIO as being used as an IRQ:
321
e3a2e878 322 int gpiochip_lock_as_irq(struct gpio_chip *chip, unsigned int offset)
fd8e198c
AC
323
324This will prevent the use of non-irq related GPIO APIs until the GPIO IRQ lock
325is released:
326
e3a2e878 327 void gpiochip_unlock_as_irq(struct gpio_chip *chip, unsigned int offset)
99adc059
LW
328
329When implementing an irqchip inside a GPIO driver, these two functions should
330typically be called in the .startup() and .shutdown() callbacks from the
331irqchip.
f7d4ad98 332
d245b3f9
LW
333When using the gpiolib irqchip helpers, these callback are automatically
334assigned.
335
c307b002
GS
336Real-Time compliance for GPIO IRQ chips
337---------------------------------------
338
339Any provider of irqchips needs to be carefully tailored to support Real Time
547d4c10 340preemption. It is desirable that all irqchips in the GPIO subsystem keep this
c307b002
GS
341in mind and does the proper testing to assure they are real time-enabled.
342So, pay attention on above " RT_FULL:" notes, please.
343The following is a checklist to follow when preparing a driver for real
344time-compliance:
345
346- ensure spinlock_t is not used as part irq_chip implementation;
347- ensure that sleepable APIs are not used as part irq_chip implementation.
348 If sleepable APIs have to be used, these can be done from the .irq_bus_lock()
349 and .irq_bus_unlock() callbacks;
350- Chained GPIO irqchips: ensure spinlock_t or any sleepable APIs are not used
351 from chained IRQ handler;
352- Generic chained GPIO irqchips: take care about generic_handle_irq() calls and
353 apply corresponding W/A;
354- Chained GPIO irqchips: get rid of chained IRQ handler and use generic irq
355 handler if possible :)
356- regmap_mmio: Sry, but you are in trouble :( if MMIO regmap is used as for
357 GPIO IRQ chip implementation;
358- Test your driver with the appropriate in-kernel real time test cases for both
359 level and edge IRQs.
360
f7d4ad98
GR
361
362Requesting self-owned GPIO pins
363-------------------------------
364
365Sometimes it is useful to allow a GPIO chip driver to request its own GPIO
366descriptors through the gpiolib API. Using gpio_request() for this purpose
367does not help since it pins the module to the kernel forever (it calls
368try_module_get()). A GPIO driver can use the following functions instead
369to request and free descriptors without being pinned to the kernel forever.
370
abdc08a3
AC
371 struct gpio_desc *gpiochip_request_own_desc(struct gpio_desc *desc,
372 const char *label)
f7d4ad98
GR
373
374 void gpiochip_free_own_desc(struct gpio_desc *desc)
375
376Descriptors requested with gpiochip_request_own_desc() must be released with
377gpiochip_free_own_desc().
378
379These functions must be used with care since they do not affect module use
380count. Do not use the functions to request gpio descriptors not owned by the
381calling driver.
c307b002
GS
382
383[1] http://www.spinics.net/lists/linux-omap/msg120425.html
384[2] https://lkml.org/lkml/2015/9/25/494
385[3] https://lkml.org/lkml/2015/9/25/495