omap drivers: switch to standard GPIO calls
[deliverable/linux.git] / Documentation / gpio.txt
CommitLineData
4c20386c
DB
1GPIO Interfaces
2
3This provides an overview of GPIO access conventions on Linux.
4
7560fa60
DB
5These calls use the gpio_* naming prefix. No other calls should use that
6prefix, or the related __gpio_* prefix.
7
4c20386c
DB
8
9What is a GPIO?
10===============
11A "General Purpose Input/Output" (GPIO) is a flexible software-controlled
12digital signal. They are provided from many kinds of chip, and are familiar
13to Linux developers working with embedded and custom hardware. Each GPIO
14represents a bit connected to a particular pin, or "ball" on Ball Grid Array
15(BGA) packages. Board schematics show which external hardware connects to
16which GPIOs. Drivers can be written generically, so that board setup code
17passes such pin configuration data to drivers.
18
19System-on-Chip (SOC) processors heavily rely on GPIOs. In some cases, every
20non-dedicated pin can be configured as a GPIO; and most chips have at least
21several dozen of them. Programmable logic devices (like FPGAs) can easily
22provide GPIOs; multifunction chips like power managers, and audio codecs
23often have a few such pins to help with pin scarcity on SOCs; and there are
24also "GPIO Expander" chips that connect using the I2C or SPI serial busses.
25Most PC southbridges have a few dozen GPIO-capable pins (with only the BIOS
26firmware knowing how they're used).
27
28The exact capabilities of GPIOs vary between systems. Common options:
29
30 - Output values are writable (high=1, low=0). Some chips also have
31 options about how that value is driven, so that for example only one
32 value might be driven ... supporting "wire-OR" and similar schemes
1668be71 33 for the other value (notably, "open drain" signaling).
4c20386c
DB
34
35 - Input values are likewise readable (1, 0). Some chips support readback
36 of pins configured as "output", which is very useful in such "wire-OR"
37 cases (to support bidirectional signaling). GPIO controllers may have
7c2db759 38 input de-glitch/debounce logic, sometimes with software controls.
4c20386c
DB
39
40 - Inputs can often be used as IRQ signals, often edge triggered but
41 sometimes level triggered. Such IRQs may be configurable as system
42 wakeup events, to wake the system from a low power state.
43
44 - Usually a GPIO will be configurable as either input or output, as needed
45 by different product boards; single direction ones exist too.
46
47 - Most GPIOs can be accessed while holding spinlocks, but those accessed
48 through a serial bus normally can't. Some systems support both types.
49
50On a given board each GPIO is used for one specific purpose like monitoring
51MMC/SD card insertion/removal, detecting card writeprotect status, driving
52a LED, configuring a transceiver, bitbanging a serial bus, poking a hardware
53watchdog, sensing a switch, and so on.
54
55
56GPIO conventions
57================
58Note that this is called a "convention" because you don't need to do it this
59way, and it's no crime if you don't. There **are** cases where portability
60is not the main issue; GPIOs are often used for the kind of board-specific
61glue logic that may even change between board revisions, and can't ever be
62used on a board that's wired differently. Only least-common-denominator
63functionality can be very portable. Other features are platform-specific,
64and that can be critical for glue logic.
65
7c2db759 66Plus, this doesn't require any implementation framework, just an interface.
4c20386c
DB
67One platform might implement it as simple inline functions accessing chip
68registers; another might implement it by delegating through abstractions
7c2db759
DB
69used for several very different kinds of GPIO controller. (There is some
70optional code supporting such an implementation strategy, described later
71in this document, but drivers acting as clients to the GPIO interface must
72not care how it's implemented.)
4c20386c
DB
73
74That said, if the convention is supported on their platform, drivers should
7560fa60
DB
75use it when possible. Platforms must declare GENERIC_GPIO support in their
76Kconfig (boolean true), and provide an <asm/gpio.h> file. Drivers that can't
77work without standard GPIO calls should have Kconfig entries which depend
78on GENERIC_GPIO. The GPIO calls are available, either as "real code" or as
79optimized-away stubs, when drivers use the include file:
4c20386c 80
7560fa60 81 #include <linux/gpio.h>
4c20386c
DB
82
83If you stick to this convention then it'll be easier for other developers to
84see what your code is doing, and help maintain it.
85
a0a99835
DB
86Note that these operations include I/O barriers on platforms which need to
87use them; drivers don't need to add them explicitly.
88
4c20386c
DB
89
90Identifying GPIOs
91-----------------
92GPIOs are identified by unsigned integers in the range 0..MAX_INT. That
93reserves "negative" numbers for other purposes like marking signals as
f5de6111
DB
94"not available on this board", or indicating faults. Code that doesn't
95touch the underlying hardware treats these integers as opaque cookies.
4c20386c
DB
96
97Platforms define how they use those integers, and usually #define symbols
98for the GPIO lines so that board-specific setup code directly corresponds
99to the relevant schematics. In contrast, drivers should only use GPIO
100numbers passed to them from that setup code, using platform_data to hold
101board-specific pin configuration data (along with other board specific
102data they need). That avoids portability problems.
103
104So for example one platform uses numbers 32-159 for GPIOs; while another
105uses numbers 0..63 with one set of GPIO controllers, 64-79 with another
106type of GPIO controller, and on one particular board 80-95 with an FPGA.
107The numbers need not be contiguous; either of those platforms could also
108use numbers 2000-2063 to identify GPIOs in a bank of I2C GPIO expanders.
109
e6de1808
GL
110If you want to initialize a structure with an invalid GPIO number, use
111some negative number (perhaps "-EINVAL"); that will never be valid. To
112test if a number could reference a GPIO, you may use this predicate:
113
114 int gpio_is_valid(int number);
115
116A number that's not valid will be rejected by calls which may request
117or free GPIOs (see below). Other numbers may also be rejected; for
118example, a number might be valid but unused on a given board.
119
4c20386c
DB
120Whether a platform supports multiple GPIO controllers is currently a
121platform-specific implementation issue.
122
123
124Using GPIOs
125-----------
126One of the first things to do with a GPIO, often in board setup code when
127setting up a platform_device using the GPIO, is mark its direction:
128
129 /* set as input or output, returning 0 or negative errno */
130 int gpio_direction_input(unsigned gpio);
28735a72 131 int gpio_direction_output(unsigned gpio, int value);
4c20386c
DB
132
133The return value is zero for success, else a negative errno. It should
134be checked, since the get/set calls don't have error returns and since
83c6590c
DB
135misconfiguration is possible. You should normally issue these calls from
136a task context. However, for spinlock-safe GPIOs it's OK to use them
137before tasking is enabled, as part of early board setup.
4c20386c 138
28735a72
DB
139For output GPIOs, the value provided becomes the initial output value.
140This helps avoid signal glitching during system startup.
141
7c2db759
DB
142For compatibility with legacy interfaces to GPIOs, setting the direction
143of a GPIO implicitly requests that GPIO (see below) if it has not been
144requested already. That compatibility may be removed in the future;
145explicitly requesting GPIOs is strongly preferred.
146
4c20386c
DB
147Setting the direction can fail if the GPIO number is invalid, or when
148that particular GPIO can't be used in that mode. It's generally a bad
149idea to rely on boot firmware to have set the direction correctly, since
150it probably wasn't validated to do more than boot Linux. (Similarly,
151that board setup code probably needs to multiplex that pin as a GPIO,
152and configure pullups/pulldowns appropriately.)
153
154
155Spinlock-Safe GPIO access
156-------------------------
157Most GPIO controllers can be accessed with memory read/write instructions.
158That doesn't need to sleep, and can safely be done from inside IRQ handlers.
7c2db759 159(That includes hardirq contexts on RT kernels.)
4c20386c
DB
160
161Use these calls to access such GPIOs:
162
163 /* GPIO INPUT: return zero or nonzero */
164 int gpio_get_value(unsigned gpio);
165
166 /* GPIO OUTPUT */
167 void gpio_set_value(unsigned gpio, int value);
168
169The values are boolean, zero for low, nonzero for high. When reading the
170value of an output pin, the value returned should be what's seen on the
171pin ... that won't always match the specified output value, because of
7c2db759 172issues including open-drain signaling and output latencies.
4c20386c
DB
173
174The get/set calls have no error returns because "invalid GPIO" should have
be1ff386 175been reported earlier from gpio_direction_*(). However, note that not all
4c20386c 176platforms can read the value of output pins; those that can't should always
f5de6111
DB
177return zero. Also, using these calls for GPIOs that can't safely be accessed
178without sleeping (see below) is an error.
4c20386c 179
f5de6111 180Platform-specific implementations are encouraged to optimize the two
4c20386c
DB
181calls to access the GPIO value in cases where the GPIO number (and for
182output, value) are constant. It's normal for them to need only a couple
183of instructions in such cases (reading or writing a hardware register),
184and not to need spinlocks. Such optimized calls can make bitbanging
185applications a lot more efficient (in both space and time) than spending
186dozens of instructions on subroutine calls.
187
188
189GPIO access that may sleep
190--------------------------
191Some GPIO controllers must be accessed using message based busses like I2C
192or SPI. Commands to read or write those GPIO values require waiting to
193get to the head of a queue to transmit a command and get its response.
194This requires sleeping, which can't be done from inside IRQ handlers.
195
196Platforms that support this type of GPIO distinguish them from other GPIOs
7c2db759
DB
197by returning nonzero from this call (which requires a valid GPIO number,
198either explicitly or implicitly requested):
4c20386c
DB
199
200 int gpio_cansleep(unsigned gpio);
201
202To access such GPIOs, a different set of accessors is defined:
203
204 /* GPIO INPUT: return zero or nonzero, might sleep */
205 int gpio_get_value_cansleep(unsigned gpio);
206
207 /* GPIO OUTPUT, might sleep */
208 void gpio_set_value_cansleep(unsigned gpio, int value);
209
210Other than the fact that these calls might sleep, and will not be ignored
211for GPIOs that can't be accessed from IRQ handlers, these calls act the
212same as the spinlock-safe calls.
213
214
215Claiming and Releasing GPIOs (OPTIONAL)
216---------------------------------------
217To help catch system configuration errors, two calls are defined.
218However, many platforms don't currently support this mechanism.
219
220 /* request GPIO, returning 0 or negative errno.
221 * non-null labels may be useful for diagnostics.
222 */
223 int gpio_request(unsigned gpio, const char *label);
224
225 /* release previously-claimed GPIO */
226 void gpio_free(unsigned gpio);
227
228Passing invalid GPIO numbers to gpio_request() will fail, as will requesting
229GPIOs that have already been claimed with that call. The return value of
83c6590c
DB
230gpio_request() must be checked. You should normally issue these calls from
231a task context. However, for spinlock-safe GPIOs it's OK to request GPIOs
232before tasking is enabled, as part of early board setup.
4c20386c
DB
233
234These calls serve two basic purposes. One is marking the signals which
235are actually in use as GPIOs, for better diagnostics; systems may have
236several hundred potential GPIOs, but often only a dozen are used on any
7c2db759
DB
237given board. Another is to catch conflicts, identifying errors when
238(a) two or more drivers wrongly think they have exclusive use of that
239signal, or (b) something wrongly believes it's safe to remove drivers
240needed to manage a signal that's in active use. That is, requesting a
241GPIO can serve as a kind of lock.
4c20386c
DB
242
243These two calls are optional because not not all current Linux platforms
244offer such functionality in their GPIO support; a valid implementation
245could return success for all gpio_request() calls. Unlike the other calls,
246the state they represent doesn't normally match anything from a hardware
247register; it's just a software bitmap which clearly is not necessary for
248correct operation of hardware or (bug free) drivers.
249
250Note that requesting a GPIO does NOT cause it to be configured in any
251way; it just marks that GPIO as in use. Separate code must handle any
252pin setup (e.g. controlling which pin the GPIO uses, pullup/pulldown).
253
7c2db759
DB
254Also note that it's your responsibility to have stopped using a GPIO
255before you free it.
256
4c20386c
DB
257
258GPIOs mapped to IRQs
259--------------------
260GPIO numbers are unsigned integers; so are IRQ numbers. These make up
261two logically distinct namespaces (GPIO 0 need not use IRQ 0). You can
262map between them using calls like:
263
264 /* map GPIO numbers to IRQ numbers */
265 int gpio_to_irq(unsigned gpio);
266
0f6d504e 267 /* map IRQ numbers to GPIO numbers (avoid using this) */
4c20386c
DB
268 int irq_to_gpio(unsigned irq);
269
270Those return either the corresponding number in the other namespace, or
271else a negative errno code if the mapping can't be done. (For example,
7c2db759 272some GPIOs can't be used as IRQs.) It is an unchecked error to use a GPIO
be1ff386 273number that wasn't set up as an input using gpio_direction_input(), or
4c20386c
DB
274to use an IRQ number that didn't originally come from gpio_to_irq().
275
276These two mapping calls are expected to cost on the order of a single
277addition or subtraction. They're not allowed to sleep.
278
279Non-error values returned from gpio_to_irq() can be passed to request_irq()
280or free_irq(). They will often be stored into IRQ resources for platform
281devices, by the board-specific initialization code. Note that IRQ trigger
282options are part of the IRQ interface, e.g. IRQF_TRIGGER_FALLING, as are
283system wakeup capabilities.
284
285Non-error values returned from irq_to_gpio() would most commonly be used
f5de6111 286with gpio_get_value(), for example to initialize or update driver state
0f6d504e
DB
287when the IRQ is edge-triggered. Note that some platforms don't support
288this reverse mapping, so you should avoid using it.
4c20386c
DB
289
290
1668be71
DB
291Emulating Open Drain Signals
292----------------------------
293Sometimes shared signals need to use "open drain" signaling, where only the
294low signal level is actually driven. (That term applies to CMOS transistors;
295"open collector" is used for TTL.) A pullup resistor causes the high signal
296level. This is sometimes called a "wire-AND"; or more practically, from the
297negative logic (low=true) perspective this is a "wire-OR".
298
299One common example of an open drain signal is a shared active-low IRQ line.
300Also, bidirectional data bus signals sometimes use open drain signals.
301
302Some GPIO controllers directly support open drain outputs; many don't. When
303you need open drain signaling but your hardware doesn't directly support it,
304there's a common idiom you can use to emulate it with any GPIO pin that can
305be used as either an input or an output:
306
307 LOW: gpio_direction_output(gpio, 0) ... this drives the signal
308 and overrides the pullup.
309
310 HIGH: gpio_direction_input(gpio) ... this turns off the output,
311 so the pullup (or some other device) controls the signal.
312
313If you are "driving" the signal high but gpio_get_value(gpio) reports a low
314value (after the appropriate rise time passes), you know some other component
315is driving the shared signal low. That's not necessarily an error. As one
316common example, that's how I2C clocks are stretched: a slave that needs a
317slower clock delays the rising edge of SCK, and the I2C master adjusts its
318signaling rate accordingly.
319
4c20386c
DB
320
321What do these conventions omit?
322===============================
323One of the biggest things these conventions omit is pin multiplexing, since
324this is highly chip-specific and nonportable. One platform might not need
325explicit multiplexing; another might have just two options for use of any
326given pin; another might have eight options per pin; another might be able
327to route a given GPIO to any one of several pins. (Yes, those examples all
328come from systems that run Linux today.)
329
330Related to multiplexing is configuration and enabling of the pullups or
331pulldowns integrated on some platforms. Not all platforms support them,
332or support them in the same way; and any given board might use external
333pullups (or pulldowns) so that the on-chip ones should not be used.
7c2db759 334(When a circuit needs 5 kOhm, on-chip 100 kOhm resistors won't do.)
7560fa60
DB
335Likewise drive strength (2 mA vs 20 mA) and voltage (1.8V vs 3.3V) is a
336platform-specific issue, as are models like (not) having a one-to-one
337correspondence between configurable pins and GPIOs.
4c20386c
DB
338
339There are other system-specific mechanisms that are not specified here,
340like the aforementioned options for input de-glitching and wire-OR output.
341Hardware may support reading or writing GPIOs in gangs, but that's usually
f5de6111 342configuration dependent: for GPIOs sharing the same bank. (GPIOs are
4c20386c 343commonly grouped in banks of 16 or 32, with a given SOC having several such
7c2db759
DB
344banks.) Some systems can trigger IRQs from output GPIOs, or read values
345from pins not managed as GPIOs. Code relying on such mechanisms will
346necessarily be nonportable.
4c20386c 347
7c2db759 348Dynamic definition of GPIOs is not currently standard; for example, as
4c20386c
DB
349a side effect of configuring an add-on board with some GPIO expanders.
350
7c2db759
DB
351
352GPIO implementor's framework (OPTIONAL)
353=======================================
354As noted earlier, there is an optional implementation framework making it
355easier for platforms to support different kinds of GPIO controller using
d8f388d8 356the same programming interface. This framework is called "gpiolib".
7c2db759
DB
357
358As a debugging aid, if debugfs is available a /sys/kernel/debug/gpio file
359will be found there. That will list all the controllers registered through
360this framework, and the state of the GPIOs currently in use.
361
362
363Controller Drivers: gpio_chip
364-----------------------------
365In this framework each GPIO controller is packaged as a "struct gpio_chip"
366with information common to each controller of that type:
367
368 - methods to establish GPIO direction
369 - methods used to access GPIO values
370 - flag saying whether calls to its methods may sleep
371 - optional debugfs dump method (showing extra state like pullup config)
372 - label for diagnostics
373
374There is also per-instance data, which may come from device.platform_data:
375the number of its first GPIO, and how many GPIOs it exposes.
376
377The code implementing a gpio_chip should support multiple instances of the
378controller, possibly using the driver model. That code will configure each
379gpio_chip and issue gpiochip_add(). Removing a GPIO controller should be
380rare; use gpiochip_remove() when it is unavoidable.
381
382Most often a gpio_chip is part of an instance-specific structure with state
383not exposed by the GPIO interfaces, such as addressing, power management,
384and more. Chips such as codecs will have complex non-GPIO state,
385
386Any debugfs dump method should normally ignore signals which haven't been
387requested as GPIOs. They can use gpiochip_is_requested(), which returns
388either NULL or the label associated with that GPIO when it was requested.
389
390
391Platform Support
392----------------
7444a72e
MB
393To support this framework, a platform's Kconfig will "select" either
394ARCH_REQUIRE_GPIOLIB or ARCH_WANT_OPTIONAL_GPIOLIB
7c2db759
DB
395and arrange that its <asm/gpio.h> includes <asm-generic/gpio.h> and defines
396three functions: gpio_get_value(), gpio_set_value(), and gpio_cansleep().
397They may also want to provide a custom value for ARCH_NR_GPIOS.
398
7444a72e
MB
399ARCH_REQUIRE_GPIOLIB means that the gpio-lib code will always get compiled
400into the kernel on that architecture.
401
402ARCH_WANT_OPTIONAL_GPIOLIB means the gpio-lib code defaults to off and the user
403can enable it and build it into the kernel optionally.
404
405If neither of these options are selected, the platform does not support
406GPIOs through GPIO-lib and the code cannot be enabled by the user.
407
7c2db759
DB
408Trivial implementations of those functions can directly use framework
409code, which always dispatches through the gpio_chip:
410
411 #define gpio_get_value __gpio_get_value
412 #define gpio_set_value __gpio_set_value
413 #define gpio_cansleep __gpio_cansleep
414
415Fancier implementations could instead define those as inline functions with
416logic optimizing access to specific SOC-based GPIOs. For example, if the
417referenced GPIO is the constant "12", getting or setting its value could
418cost as little as two or three instructions, never sleeping. When such an
419optimization is not possible those calls must delegate to the framework
420code, costing at least a few dozen instructions. For bitbanged I/O, such
421instruction savings can be significant.
422
423For SOCs, platform-specific code defines and registers gpio_chip instances
424for each bank of on-chip GPIOs. Those GPIOs should be numbered/labeled to
425match chip vendor documentation, and directly match board schematics. They
426may well start at zero and go up to a platform-specific limit. Such GPIOs
427are normally integrated into platform initialization to make them always be
428available, from arch_initcall() or earlier; they can often serve as IRQs.
429
430
431Board Support
432-------------
433For external GPIO controllers -- such as I2C or SPI expanders, ASICs, multi
434function devices, FPGAs or CPLDs -- most often board-specific code handles
435registering controller devices and ensures that their drivers know what GPIO
436numbers to use with gpiochip_add(). Their numbers often start right after
437platform-specific GPIOs.
438
439For example, board setup code could create structures identifying the range
440of GPIOs that chip will expose, and passes them to each GPIO expander chip
441using platform_data. Then the chip driver's probe() routine could pass that
442data to gpiochip_add().
443
444Initialization order can be important. For example, when a device relies on
445an I2C-based GPIO, its probe() routine should only be called after that GPIO
446becomes available. That may mean the device should not be registered until
447calls for that GPIO can work. One way to address such dependencies is for
448such gpio_chip controllers to provide setup() and teardown() callbacks to
449board specific code; those board specific callbacks would register devices
d8f388d8
DB
450once all the necessary resources are available, and remove them later when
451the GPIO controller device becomes unavailable.
452
453
454Sysfs Interface for Userspace (OPTIONAL)
455========================================
456Platforms which use the "gpiolib" implementors framework may choose to
457configure a sysfs user interface to GPIOs. This is different from the
458debugfs interface, since it provides control over GPIO direction and
459value instead of just showing a gpio state summary. Plus, it could be
460present on production systems without debugging support.
461
462Given approprate hardware documentation for the system, userspace could
463know for example that GPIO #23 controls the write protect line used to
464protect boot loader segments in flash memory. System upgrade procedures
465may need to temporarily remove that protection, first importing a GPIO,
466then changing its output state, then updating the code before re-enabling
467the write protection. In normal use, GPIO #23 would never be touched,
468and the kernel would have no need to know about it.
469
470Again depending on appropriate hardware documentation, on some systems
471userspace GPIO can be used to determine system configuration data that
472standard kernels won't know about. And for some tasks, simple userspace
473GPIO drivers could be all that the system really needs.
474
475Note that standard kernel drivers exist for common "LEDs and Buttons"
476GPIO tasks: "leds-gpio" and "gpio_keys", respectively. Use those
477instead of talking directly to the GPIOs; they integrate with kernel
478frameworks better than your userspace code could.
479
480
481Paths in Sysfs
482--------------
483There are three kinds of entry in /sys/class/gpio:
484
485 - Control interfaces used to get userspace control over GPIOs;
486
487 - GPIOs themselves; and
488
489 - GPIO controllers ("gpio_chip" instances).
490
491That's in addition to standard files including the "device" symlink.
492
493The control interfaces are write-only:
494
495 /sys/class/gpio/
496
497 "export" ... Userspace may ask the kernel to export control of
498 a GPIO to userspace by writing its number to this file.
499
500 Example: "echo 19 > export" will create a "gpio19" node
501 for GPIO #19, if that's not requested by kernel code.
502
503 "unexport" ... Reverses the effect of exporting to userspace.
504
505 Example: "echo 19 > unexport" will remove a "gpio19"
506 node exported using the "export" file.
507
508GPIO signals have paths like /sys/class/gpio/gpio42/ (for GPIO #42)
509and have the following read/write attributes:
510
511 /sys/class/gpio/gpioN/
512
513 "direction" ... reads as either "in" or "out". This value may
514 normally be written. Writing as "out" defaults to
515 initializing the value as low. To ensure glitch free
516 operation, values "low" and "high" may be written to
517 configure the GPIO as an output with that initial value.
518
519 Note that this attribute *will not exist* if the kernel
520 doesn't support changing the direction of a GPIO, or
521 it was exported by kernel code that didn't explicitly
522 allow userspace to reconfigure this GPIO's direction.
523
524 "value" ... reads as either 0 (low) or 1 (high). If the GPIO
525 is configured as an output, this value may be written;
526 any nonzero value is treated as high.
527
528GPIO controllers have paths like /sys/class/gpio/chipchip42/ (for the
529controller implementing GPIOs starting at #42) and have the following
530read-only attributes:
531
532 /sys/class/gpio/gpiochipN/
533
534 "base" ... same as N, the first GPIO managed by this chip
535
536 "label" ... provided for diagnostics (not always unique)
537
538 "ngpio" ... how many GPIOs this manges (N to N + ngpio - 1)
539
540Board documentation should in most cases cover what GPIOs are used for
541what purposes. However, those numbers are not always stable; GPIOs on
542a daughtercard might be different depending on the base board being used,
543or other cards in the stack. In such cases, you may need to use the
544gpiochip nodes (possibly in conjunction with schematics) to determine
545the correct GPIO number to use for a given signal.
546
547
548Exporting from Kernel code
549--------------------------
550Kernel code can explicitly manage exports of GPIOs which have already been
551requested using gpio_request():
552
553 /* export the GPIO to userspace */
554 int gpio_export(unsigned gpio, bool direction_may_change);
555
556 /* reverse gpio_export() */
557 void gpio_unexport();
558
559After a kernel driver requests a GPIO, it may only be made available in
560the sysfs interface by gpio_export(). The driver can control whether the
561signal direction may change. This helps drivers prevent userspace code
562from accidentally clobbering important system state.
563
564This explicit exporting can help with debugging (by making some kinds
565of experiments easier), or can provide an always-there interface that's
566suitable for documenting as part of a board support package.
This page took 0.244604 seconds and 5 git commands to generate.