blob: 40ec1433f05de25d15cedaeaf2388b2cc8d0298c [file] [log] [blame]
David Brownell4c203862007-02-12 00:53:11 -08001#ifndef _ASM_GENERIC_GPIO_H
2#define _ASM_GENERIC_GPIO_H
3
Mike Frysingerb3db4a82009-10-01 15:43:56 -07004#include <linux/kernel.h>
David Brownell6ea02052008-05-23 13:04:58 -07005#include <linux/types.h>
Atsushi Nemoto25947d52008-07-28 15:46:38 -07006#include <linux/errno.h>
Grant Likely15c9a0a2011-12-12 09:25:57 -07007#include <linux/of.h>
David Brownell6ea02052008-05-23 13:04:58 -07008
Michael Buesch7444a722008-07-25 01:46:11 -07009#ifdef CONFIG_GPIOLIB
David Brownelld2876d02008-02-04 22:28:20 -080010
David Brownell6ea02052008-05-23 13:04:58 -070011#include <linux/compiler.h>
Alexandre Courbot79a9bec2013-10-17 10:21:36 -070012#include <linux/gpio/driver.h>
13#include <linux/gpio/consumer.h>
David Brownell6ea02052008-05-23 13:04:58 -070014
David Brownelld2876d02008-02-04 22:28:20 -080015/* Platforms may implement their GPIO interface with library code,
16 * at a small performance cost for non-inlined operations and some
17 * extra memory (for code and for per-GPIO table entries).
18 *
19 * While the GPIO programming interface defines valid GPIO numbers
20 * to be in the range 0..MAX_INT, this library restricts them to the
Michael Buesch6a9436d2008-07-26 15:22:26 -070021 * smaller range 0..ARCH_NR_GPIOS-1.
David Brownellc9561262010-09-09 16:38:03 -070022 *
23 * ARCH_NR_GPIOS is somewhat arbitrary; it usually reflects the sum of
24 * builtin/SoC GPIOs plus a number of GPIOs on expanders; the latter is
25 * actually an estimate of a board-specific value.
David Brownelld2876d02008-02-04 22:28:20 -080026 */
27
28#ifndef ARCH_NR_GPIOS
Mika Westerberg7ca267f2014-09-15 17:09:44 +030029#define ARCH_NR_GPIOS 512
David Brownelld2876d02008-02-04 22:28:20 -080030#endif
31
David Brownellc9561262010-09-09 16:38:03 -070032/*
33 * "valid" GPIO numbers are nonnegative and may be passed to
34 * setup routines like gpio_request(). only some valid numbers
35 * can successfully be requested and used.
36 *
37 * Invalid GPIO numbers are useful for indicating no-such-GPIO in
38 * platform data and other tables.
39 */
40
Joe Perches3474cb32011-05-10 16:23:07 -070041static inline bool gpio_is_valid(int number)
Guennadi Liakhovetskie6de1802008-04-28 02:14:46 -070042{
Joe Perches3474cb32011-05-10 16:23:07 -070043 return number >= 0 && number < ARCH_NR_GPIOS;
Guennadi Liakhovetskie6de1802008-04-28 02:14:46 -070044}
45
Mike Frysinger1f018c82009-12-09 06:53:39 -050046struct device;
Mark Brownfeb83692011-10-24 15:24:10 +020047struct gpio;
David Brownelld2876d02008-02-04 22:28:20 -080048struct seq_file;
Guennadi Liakhovetski438d8902008-04-28 02:14:44 -070049struct module;
Anton Vorontsova19e3da2010-06-08 07:48:16 -060050struct device_node;
Alexandre Courbot6c0b4e62013-02-03 01:29:30 +090051struct gpio_desc;
David Brownelld2876d02008-02-04 22:28:20 -080052
Alexandre Courbot79a9bec2013-10-17 10:21:36 -070053/* caller holds gpio_lock *OR* gpio is marked as requested */
54static inline struct gpio_chip *gpio_to_chip(unsigned gpio)
55{
56 return gpiod_to_chip(gpio_to_desc(gpio));
57}
David Brownelld2876d02008-02-04 22:28:20 -080058
59/* Always use the library code for GPIO management calls,
60 * or when sleeping may be involved.
61 */
Linus Torvaldsd8a35152011-01-13 17:26:46 -080062extern int gpio_request(unsigned gpio, const char *label);
David Brownelld2876d02008-02-04 22:28:20 -080063extern void gpio_free(unsigned gpio);
64
Alexandre Courbotc7caf862014-07-24 14:51:02 +090065static inline int gpio_direction_input(unsigned gpio)
66{
67 return gpiod_direction_input(gpio_to_desc(gpio));
68}
69static inline int gpio_direction_output(unsigned gpio, int value)
70{
71 return gpiod_direction_output_raw(gpio_to_desc(gpio), value);
72}
David Brownelld2876d02008-02-04 22:28:20 -080073
Alexandre Courbotc7caf862014-07-24 14:51:02 +090074static inline int gpio_set_debounce(unsigned gpio, unsigned debounce)
75{
76 return gpiod_set_debounce(gpio_to_desc(gpio), debounce);
77}
Felipe Balbic4b5be92010-05-26 14:42:23 -070078
Alexandre Courbot79a9bec2013-10-17 10:21:36 -070079static inline int gpio_get_value_cansleep(unsigned gpio)
80{
81 return gpiod_get_raw_value_cansleep(gpio_to_desc(gpio));
82}
83static inline void gpio_set_value_cansleep(unsigned gpio, int value)
84{
85 return gpiod_set_raw_value_cansleep(gpio_to_desc(gpio), value);
86}
David Brownelld2876d02008-02-04 22:28:20 -080087
88
89/* A platform's <asm/gpio.h> code may want to inline the I/O calls when
90 * the GPIO is constant and refers to some always-present controller,
91 * giving direct access to chip registers and tight bitbanging loops.
92 */
Alexandre Courbot79a9bec2013-10-17 10:21:36 -070093static inline int __gpio_get_value(unsigned gpio)
94{
95 return gpiod_get_raw_value(gpio_to_desc(gpio));
96}
97static inline void __gpio_set_value(unsigned gpio, int value)
98{
99 return gpiod_set_raw_value(gpio_to_desc(gpio), value);
100}
David Brownelld2876d02008-02-04 22:28:20 -0800101
Alexandre Courbot79a9bec2013-10-17 10:21:36 -0700102static inline int __gpio_cansleep(unsigned gpio)
103{
104 return gpiod_cansleep(gpio_to_desc(gpio));
105}
David Brownelld2876d02008-02-04 22:28:20 -0800106
Alexandre Courbot79a9bec2013-10-17 10:21:36 -0700107static inline int __gpio_to_irq(unsigned gpio)
108{
109 return gpiod_to_irq(gpio_to_desc(gpio));
110}
David Brownelld2876d02008-02-04 22:28:20 -0800111
Linus Torvaldsd8a35152011-01-13 17:26:46 -0800112extern int gpio_request_one(unsigned gpio, unsigned long flags, const char *label);
Lars-Peter Clausen7c295972011-05-25 16:20:31 -0700113extern int gpio_request_array(const struct gpio *array, size_t num);
114extern void gpio_free_array(const struct gpio *array, size_t num);
Eric Miao3e45f1d2010-03-05 13:44:35 -0800115
David Brownelld8f388d2008-07-25 01:46:07 -0700116/*
117 * A sysfs interface can be exported by individual drivers if they want,
118 * but more typically is configured entirely from userspace.
119 */
Alexandre Courbot79a9bec2013-10-17 10:21:36 -0700120static inline int gpio_export(unsigned gpio, bool direction_may_change)
121{
122 return gpiod_export(gpio_to_desc(gpio), direction_may_change);
123}
David Brownelld8f388d2008-07-25 01:46:07 -0700124
Alexandre Courbot79a9bec2013-10-17 10:21:36 -0700125static inline int gpio_export_link(struct device *dev, const char *name,
126 unsigned gpio)
127{
128 return gpiod_export_link(dev, name, gpio_to_desc(gpio));
129}
130
Alexandre Courbot79a9bec2013-10-17 10:21:36 -0700131static inline void gpio_unexport(unsigned gpio)
132{
133 gpiod_unexport(gpio_to_desc(gpio));
134}
David Brownelld8f388d2008-07-25 01:46:07 -0700135
Anton Vorontsov09cd9522010-10-27 15:33:16 -0700136#else /* !CONFIG_GPIOLIB */
David Brownelld2876d02008-02-04 22:28:20 -0800137
Joe Perches3474cb32011-05-10 16:23:07 -0700138static inline bool gpio_is_valid(int number)
Guennadi Liakhovetskie6de1802008-04-28 02:14:46 -0700139{
140 /* only non-negative numbers are valid */
141 return number >= 0;
142}
143
David Brownell4c203862007-02-12 00:53:11 -0800144/* platforms that don't directly support access to GPIOs through I2C, SPI,
145 * or other blocking infrastructure can use these wrappers.
146 */
147
148static inline int gpio_cansleep(unsigned gpio)
149{
150 return 0;
151}
152
153static inline int gpio_get_value_cansleep(unsigned gpio)
154{
155 might_sleep();
Hamoeb9ae7f2011-10-21 09:38:32 +0800156 return __gpio_get_value(gpio);
David Brownell4c203862007-02-12 00:53:11 -0800157}
158
159static inline void gpio_set_value_cansleep(unsigned gpio, int value)
160{
161 might_sleep();
Hamoeb9ae7f2011-10-21 09:38:32 +0800162 __gpio_set_value(gpio, value);
David Brownell4c203862007-02-12 00:53:11 -0800163}
164
Anton Vorontsov09cd9522010-10-27 15:33:16 -0700165#endif /* !CONFIG_GPIOLIB */
David Brownelld8f388d2008-07-25 01:46:07 -0700166
David Brownell4c203862007-02-12 00:53:11 -0800167#endif /* _ASM_GENERIC_GPIO_H */