blob: 19eadac415c42dd381161d122eaf4299e712ca92 [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001/* SPDX-License-Identifier: GPL-2.0 */
David Brownell4c20386c2007-02-12 00:53:11 -08002#ifndef _ASM_GENERIC_GPIO_H
3#define _ASM_GENERIC_GPIO_H
4
Mike Frysingerb3db4a82009-10-01 15:43:56 -07005#include <linux/kernel.h>
David Brownell6ea02052008-05-23 13:04:58 -07006#include <linux/types.h>
Atsushi Nemoto25947d52008-07-28 15:46:38 -07007#include <linux/errno.h>
Grant Likely15c9a0a2011-12-12 09:25:57 -07008#include <linux/of.h>
David Brownell6ea02052008-05-23 13:04:58 -07009
Michael Buesch7444a722008-07-25 01:46:11 -070010#ifdef CONFIG_GPIOLIB
David Brownelld2876d02008-02-04 22:28:20 -080011
David Brownell6ea02052008-05-23 13:04:58 -070012#include <linux/compiler.h>
Alexandre Courbot79a9bec2013-10-17 10:21:36 -070013#include <linux/gpio/driver.h>
14#include <linux/gpio/consumer.h>
David Brownell6ea02052008-05-23 13:04:58 -070015
David Brownelld2876d02008-02-04 22:28:20 -080016/* Platforms may implement their GPIO interface with library code,
17 * at a small performance cost for non-inlined operations and some
18 * extra memory (for code and for per-GPIO table entries).
19 *
20 * While the GPIO programming interface defines valid GPIO numbers
21 * to be in the range 0..MAX_INT, this library restricts them to the
Michael Buesch6a9436d2008-07-26 15:22:26 -070022 * smaller range 0..ARCH_NR_GPIOS-1.
David Brownellc9561262010-09-09 16:38:03 -070023 *
24 * ARCH_NR_GPIOS is somewhat arbitrary; it usually reflects the sum of
25 * builtin/SoC GPIOs plus a number of GPIOs on expanders; the latter is
26 * actually an estimate of a board-specific value.
David Brownelld2876d02008-02-04 22:28:20 -080027 */
28
29#ifndef ARCH_NR_GPIOS
Arnd Bergmannaa6aedb2016-02-16 16:40:38 +010030#if defined(CONFIG_ARCH_NR_GPIO) && CONFIG_ARCH_NR_GPIO > 0
31#define ARCH_NR_GPIOS CONFIG_ARCH_NR_GPIO
32#else
Mika Westerberg7ca267f2014-09-15 17:09:44 +030033#define ARCH_NR_GPIOS 512
David Brownelld2876d02008-02-04 22:28:20 -080034#endif
Arnd Bergmannaa6aedb2016-02-16 16:40:38 +010035#endif
David Brownelld2876d02008-02-04 22:28:20 -080036
David Brownellc9561262010-09-09 16:38:03 -070037/*
38 * "valid" GPIO numbers are nonnegative and may be passed to
39 * setup routines like gpio_request(). only some valid numbers
40 * can successfully be requested and used.
41 *
42 * Invalid GPIO numbers are useful for indicating no-such-GPIO in
43 * platform data and other tables.
44 */
45
Joe Perches3474cb32011-05-10 16:23:07 -070046static inline bool gpio_is_valid(int number)
Guennadi Liakhovetskie6de1802008-04-28 02:14:46 -070047{
Joe Perches3474cb32011-05-10 16:23:07 -070048 return number >= 0 && number < ARCH_NR_GPIOS;
Guennadi Liakhovetskie6de1802008-04-28 02:14:46 -070049}
50
Mike Frysinger1f018c82009-12-09 06:53:39 -050051struct device;
Mark Brownfeb83692011-10-24 15:24:10 +020052struct gpio;
David Brownelld2876d02008-02-04 22:28:20 -080053struct seq_file;
Guennadi Liakhovetski438d8902008-04-28 02:14:44 -070054struct module;
Anton Vorontsova19e3da2010-06-08 07:48:16 -060055struct device_node;
Alexandre Courbot6c0b4e62013-02-03 01:29:30 +090056struct gpio_desc;
David Brownelld2876d02008-02-04 22:28:20 -080057
Alexandre Courbot79a9bec2013-10-17 10:21:36 -070058/* caller holds gpio_lock *OR* gpio is marked as requested */
59static inline struct gpio_chip *gpio_to_chip(unsigned gpio)
60{
61 return gpiod_to_chip(gpio_to_desc(gpio));
62}
David Brownelld2876d02008-02-04 22:28:20 -080063
64/* Always use the library code for GPIO management calls,
65 * or when sleeping may be involved.
66 */
Linus Torvaldsd8a35152011-01-13 17:26:46 -080067extern int gpio_request(unsigned gpio, const char *label);
David Brownelld2876d02008-02-04 22:28:20 -080068extern void gpio_free(unsigned gpio);
69
Alexandre Courbotc7caf862014-07-24 14:51:02 +090070static inline int gpio_direction_input(unsigned gpio)
71{
72 return gpiod_direction_input(gpio_to_desc(gpio));
73}
74static inline int gpio_direction_output(unsigned gpio, int value)
75{
76 return gpiod_direction_output_raw(gpio_to_desc(gpio), value);
77}
David Brownelld2876d02008-02-04 22:28:20 -080078
Alexandre Courbotc7caf862014-07-24 14:51:02 +090079static inline int gpio_set_debounce(unsigned gpio, unsigned debounce)
80{
81 return gpiod_set_debounce(gpio_to_desc(gpio), debounce);
82}
Felipe Balbic4b5be92010-05-26 14:42:23 -070083
Alexandre Courbot79a9bec2013-10-17 10:21:36 -070084static inline int gpio_get_value_cansleep(unsigned gpio)
85{
86 return gpiod_get_raw_value_cansleep(gpio_to_desc(gpio));
87}
88static inline void gpio_set_value_cansleep(unsigned gpio, int value)
89{
90 return gpiod_set_raw_value_cansleep(gpio_to_desc(gpio), value);
91}
David Brownelld2876d02008-02-04 22:28:20 -080092
93
94/* A platform's <asm/gpio.h> code may want to inline the I/O calls when
95 * the GPIO is constant and refers to some always-present controller,
96 * giving direct access to chip registers and tight bitbanging loops.
97 */
Alexandre Courbot79a9bec2013-10-17 10:21:36 -070098static inline int __gpio_get_value(unsigned gpio)
99{
100 return gpiod_get_raw_value(gpio_to_desc(gpio));
101}
102static inline void __gpio_set_value(unsigned gpio, int value)
103{
104 return gpiod_set_raw_value(gpio_to_desc(gpio), value);
105}
David Brownelld2876d02008-02-04 22:28:20 -0800106
Alexandre Courbot79a9bec2013-10-17 10:21:36 -0700107static inline int __gpio_cansleep(unsigned gpio)
108{
109 return gpiod_cansleep(gpio_to_desc(gpio));
110}
David Brownelld2876d02008-02-04 22:28:20 -0800111
Alexandre Courbot79a9bec2013-10-17 10:21:36 -0700112static inline int __gpio_to_irq(unsigned gpio)
113{
114 return gpiod_to_irq(gpio_to_desc(gpio));
115}
David Brownelld2876d02008-02-04 22:28:20 -0800116
Linus Torvaldsd8a35152011-01-13 17:26:46 -0800117extern int gpio_request_one(unsigned gpio, unsigned long flags, const char *label);
Lars-Peter Clausen7c295972011-05-25 16:20:31 -0700118extern int gpio_request_array(const struct gpio *array, size_t num);
119extern void gpio_free_array(const struct gpio *array, size_t num);
Eric Miao3e45f1d2010-03-05 13:44:35 -0800120
David Brownelld8f388d82008-07-25 01:46:07 -0700121/*
122 * A sysfs interface can be exported by individual drivers if they want,
123 * but more typically is configured entirely from userspace.
124 */
Alexandre Courbot79a9bec2013-10-17 10:21:36 -0700125static inline int gpio_export(unsigned gpio, bool direction_may_change)
126{
127 return gpiod_export(gpio_to_desc(gpio), direction_may_change);
128}
David Brownelld8f388d82008-07-25 01:46:07 -0700129
Alexandre Courbot79a9bec2013-10-17 10:21:36 -0700130static inline int gpio_export_link(struct device *dev, const char *name,
131 unsigned gpio)
132{
133 return gpiod_export_link(dev, name, gpio_to_desc(gpio));
134}
135
Alexandre Courbot79a9bec2013-10-17 10:21:36 -0700136static inline void gpio_unexport(unsigned gpio)
137{
138 gpiod_unexport(gpio_to_desc(gpio));
139}
David Brownelld8f388d82008-07-25 01:46:07 -0700140
Anton Vorontsov09cd9522010-10-27 15:33:16 -0700141#else /* !CONFIG_GPIOLIB */
David Brownelld2876d02008-02-04 22:28:20 -0800142
Joe Perches3474cb32011-05-10 16:23:07 -0700143static inline bool gpio_is_valid(int number)
Guennadi Liakhovetskie6de1802008-04-28 02:14:46 -0700144{
145 /* only non-negative numbers are valid */
146 return number >= 0;
147}
148
David Brownell4c20386c2007-02-12 00:53:11 -0800149/* platforms that don't directly support access to GPIOs through I2C, SPI,
150 * or other blocking infrastructure can use these wrappers.
151 */
152
153static inline int gpio_cansleep(unsigned gpio)
154{
155 return 0;
156}
157
158static inline int gpio_get_value_cansleep(unsigned gpio)
159{
160 might_sleep();
Hamoeb9ae7f2011-10-21 09:38:32 +0800161 return __gpio_get_value(gpio);
David Brownell4c20386c2007-02-12 00:53:11 -0800162}
163
164static inline void gpio_set_value_cansleep(unsigned gpio, int value)
165{
166 might_sleep();
Hamoeb9ae7f2011-10-21 09:38:32 +0800167 __gpio_set_value(gpio, value);
David Brownell4c20386c2007-02-12 00:53:11 -0800168}
169
Anton Vorontsov09cd9522010-10-27 15:33:16 -0700170#endif /* !CONFIG_GPIOLIB */
David Brownelld8f388d82008-07-25 01:46:07 -0700171
David Brownell4c20386c2007-02-12 00:53:11 -0800172#endif /* _ASM_GENERIC_GPIO_H */