gpio.h 4.3 KB
Newer Older
D
David Brownell 已提交
1 2 3
#ifndef _ASM_GENERIC_GPIO_H
#define _ASM_GENERIC_GPIO_H

4
#include <linux/kernel.h>
D
David Brownell 已提交
5
#include <linux/types.h>
6
#include <linux/errno.h>
7
#include <linux/of.h>
D
David Brownell 已提交
8

M
Michael Buesch 已提交
9
#ifdef CONFIG_GPIOLIB
10

D
David Brownell 已提交
11
#include <linux/compiler.h>
12 13
#include <linux/gpio/driver.h>
#include <linux/gpio/consumer.h>
D
David Brownell 已提交
14

15 16 17 18 19 20
/* Platforms may implement their GPIO interface with library code,
 * at a small performance cost for non-inlined operations and some
 * extra memory (for code and for per-GPIO table entries).
 *
 * While the GPIO programming interface defines valid GPIO numbers
 * to be in the range 0..MAX_INT, this library restricts them to the
M
Michael Buesch 已提交
21
 * smaller range 0..ARCH_NR_GPIOS-1.
D
David Brownell 已提交
22 23 24 25
 *
 * ARCH_NR_GPIOS is somewhat arbitrary; it usually reflects the sum of
 * builtin/SoC GPIOs plus a number of GPIOs on expanders; the latter is
 * actually an estimate of a board-specific value.
26 27 28
 */

#ifndef ARCH_NR_GPIOS
29
#define ARCH_NR_GPIOS		512
30 31
#endif

D
David Brownell 已提交
32 33 34 35 36 37 38 39 40
/*
 * "valid" GPIO numbers are nonnegative and may be passed to
 * setup routines like gpio_request().  only some valid numbers
 * can successfully be requested and used.
 *
 * Invalid GPIO numbers are useful for indicating no-such-GPIO in
 * platform data and other tables.
 */

41
static inline bool gpio_is_valid(int number)
42
{
43
	return number >= 0 && number < ARCH_NR_GPIOS;
44 45
}

46
struct device;
47
struct gpio;
48
struct seq_file;
49
struct module;
50
struct device_node;
51
struct gpio_desc;
52

53 54 55 56 57
/* caller holds gpio_lock *OR* gpio is marked as requested */
static inline struct gpio_chip *gpio_to_chip(unsigned gpio)
{
	return gpiod_to_chip(gpio_to_desc(gpio));
}
58 59 60 61

/* Always use the library code for GPIO management calls,
 * or when sleeping may be involved.
 */
62
extern int gpio_request(unsigned gpio, const char *label);
63 64
extern void gpio_free(unsigned gpio);

65 66 67 68 69 70 71 72
static inline int gpio_direction_input(unsigned gpio)
{
	return gpiod_direction_input(gpio_to_desc(gpio));
}
static inline int gpio_direction_output(unsigned gpio, int value)
{
	return gpiod_direction_output_raw(gpio_to_desc(gpio), value);
}
73

74 75 76 77
static inline int gpio_set_debounce(unsigned gpio, unsigned debounce)
{
	return gpiod_set_debounce(gpio_to_desc(gpio), debounce);
}
78

79 80 81 82 83 84 85 86
static inline int gpio_get_value_cansleep(unsigned gpio)
{
	return gpiod_get_raw_value_cansleep(gpio_to_desc(gpio));
}
static inline void gpio_set_value_cansleep(unsigned gpio, int value)
{
	return gpiod_set_raw_value_cansleep(gpio_to_desc(gpio), value);
}
87 88 89 90 91 92


/* A platform's <asm/gpio.h> code may want to inline the I/O calls when
 * the GPIO is constant and refers to some always-present controller,
 * giving direct access to chip registers and tight bitbanging loops.
 */
93 94 95 96 97 98 99 100
static inline int __gpio_get_value(unsigned gpio)
{
	return gpiod_get_raw_value(gpio_to_desc(gpio));
}
static inline void __gpio_set_value(unsigned gpio, int value)
{
	return gpiod_set_raw_value(gpio_to_desc(gpio), value);
}
101

102 103 104 105
static inline int __gpio_cansleep(unsigned gpio)
{
	return gpiod_cansleep(gpio_to_desc(gpio));
}
106

107 108 109 110
static inline int __gpio_to_irq(unsigned gpio)
{
	return gpiod_to_irq(gpio_to_desc(gpio));
}
111

112
extern int gpio_request_one(unsigned gpio, unsigned long flags, const char *label);
113 114
extern int gpio_request_array(const struct gpio *array, size_t num);
extern void gpio_free_array(const struct gpio *array, size_t num);
115

D
David Brownell 已提交
116 117 118 119
/*
 * A sysfs interface can be exported by individual drivers if they want,
 * but more typically is configured entirely from userspace.
 */
120 121 122 123
static inline int gpio_export(unsigned gpio, bool direction_may_change)
{
	return gpiod_export(gpio_to_desc(gpio), direction_may_change);
}
D
David Brownell 已提交
124

125 126 127 128 129 130 131 132 133 134
static inline int gpio_export_link(struct device *dev, const char *name,
				   unsigned gpio)
{
	return gpiod_export_link(dev, name, gpio_to_desc(gpio));
}

static inline void gpio_unexport(unsigned gpio)
{
	gpiod_unexport(gpio_to_desc(gpio));
}
D
David Brownell 已提交
135

136
#else	/* !CONFIG_GPIOLIB */
137

138
static inline bool gpio_is_valid(int number)
139 140 141 142 143
{
	/* only non-negative numbers are valid */
	return number >= 0;
}

D
David Brownell 已提交
144 145 146 147 148 149 150 151 152 153 154 155
/* platforms that don't directly support access to GPIOs through I2C, SPI,
 * or other blocking infrastructure can use these wrappers.
 */

static inline int gpio_cansleep(unsigned gpio)
{
	return 0;
}

static inline int gpio_get_value_cansleep(unsigned gpio)
{
	might_sleep();
156
	return __gpio_get_value(gpio);
D
David Brownell 已提交
157 158 159 160 161
}

static inline void gpio_set_value_cansleep(unsigned gpio, int value)
{
	might_sleep();
162
	__gpio_set_value(gpio, value);
D
David Brownell 已提交
163 164
}

165
#endif /* !CONFIG_GPIOLIB */
D
David Brownell 已提交
166

D
David Brownell 已提交
167
#endif /* _ASM_GENERIC_GPIO_H */