]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/blame - include/asm-generic/gpio.h
gpiolib: provide provision to register pin ranges
[mirror_ubuntu-bionic-kernel.git] / include / asm-generic / gpio.h
CommitLineData
4c20386c
DB
1#ifndef _ASM_GENERIC_GPIO_H
2#define _ASM_GENERIC_GPIO_H
3
b3db4a8a 4#include <linux/kernel.h>
6ea0205b 5#include <linux/types.h>
25947d5a 6#include <linux/errno.h>
15c9a0ac 7#include <linux/of.h>
f23f1516 8#include <linux/pinctrl/pinctrl.h>
6ea0205b 9
7444a72e 10#ifdef CONFIG_GPIOLIB
d2876d08 11
6ea0205b
DB
12#include <linux/compiler.h>
13
d2876d08
DB
14/* Platforms may implement their GPIO interface with library code,
15 * at a small performance cost for non-inlined operations and some
16 * extra memory (for code and for per-GPIO table entries).
17 *
18 * While the GPIO programming interface defines valid GPIO numbers
19 * to be in the range 0..MAX_INT, this library restricts them to the
6a9436d0 20 * smaller range 0..ARCH_NR_GPIOS-1.
c956126c
DB
21 *
22 * ARCH_NR_GPIOS is somewhat arbitrary; it usually reflects the sum of
23 * builtin/SoC GPIOs plus a number of GPIOs on expanders; the latter is
24 * actually an estimate of a board-specific value.
d2876d08
DB
25 */
26
27#ifndef ARCH_NR_GPIOS
28#define ARCH_NR_GPIOS 256
29#endif
30
c956126c
DB
31/*
32 * "valid" GPIO numbers are nonnegative and may be passed to
33 * setup routines like gpio_request(). only some valid numbers
34 * can successfully be requested and used.
35 *
36 * Invalid GPIO numbers are useful for indicating no-such-GPIO in
37 * platform data and other tables.
38 */
39
3474cb3c 40static inline bool gpio_is_valid(int number)
e6de1808 41{
3474cb3c 42 return number >= 0 && number < ARCH_NR_GPIOS;
e6de1808
GL
43}
44
1f018c8d 45struct device;
feb83699 46struct gpio;
d2876d08 47struct seq_file;
438d8908 48struct module;
a19e3da5 49struct device_node;
d2876d08 50
f23f1516
SH
51#ifdef CONFIG_PINCTRL
52/**
53 * struct gpio_pin_range - pin range controlled by a gpio chip
54 * @head: list for maintaining set of pin ranges, used internally
55 * @pctldev: pinctrl device which handles corresponding pins
56 * @range: actual range of pins controlled by a gpio controller
57 */
58
59struct gpio_pin_range {
60 struct list_head node;
61 struct pinctrl_dev *pctldev;
62 struct pinctrl_gpio_range range;
63};
64#endif
65
d2876d08
DB
66/**
67 * struct gpio_chip - abstract a GPIO controller
68 * @label: for diagnostics
d8f388d8
DB
69 * @dev: optional device providing the GPIOs
70 * @owner: helps prevent removal of modules exporting active GPIOs
35e8bb51
DB
71 * @request: optional hook for chip-specific activation, such as
72 * enabling module power and clock; may sleep
73 * @free: optional hook for chip-specific deactivation, such as
74 * disabling module power and clock; may sleep
d2876d08
DB
75 * @direction_input: configures signal "offset" as input, or returns error
76 * @get: returns value for signal "offset"; for output signals this
77 * returns either the value actually sensed, or zero
78 * @direction_output: configures signal "offset" as output, or returns error
1ae96314
RS
79 * @set_debounce: optional hook for setting debounce time for specified gpio in
80 * interrupt triggered gpio chips
d2876d08 81 * @set: assigns output value for signal "offset"
0f6d504e
DB
82 * @to_irq: optional hook supporting non-static gpio_to_irq() mappings;
83 * implementation may not sleep
d2876d08
DB
84 * @dbg_show: optional routine to show contents in debugfs; default code
85 * will be used when this is omitted, but custom code can show extra
86 * state (such as pullup/pulldown configuration).
87 * @base: identifies the first GPIO number handled by this chip; or, if
88 * negative during registration, requests dynamic ID allocation.
89 * @ngpio: the number of GPIOs handled by this controller; the last GPIO
90 * handled is (base + ngpio - 1).
91 * @can_sleep: flag must be set iff get()/set() methods sleep, as they
92 * must while accessing GPIO expander chips over I2C or SPI
926b663c
DS
93 * @names: if set, must be an array of strings to use as alternative
94 * names for the GPIOs in this chip. Any entry in the array
95 * may be NULL if there is no alias for the GPIO, however the
7839ec78
UKK
96 * array must be @ngpio entries long. A name can include a single printk
97 * format specifier for an unsigned int. It is substituted by the actual
98 * number of the gpio.
d2876d08
DB
99 *
100 * A gpio_chip can help platforms abstract various sources of GPIOs so
101 * they can all be accessed through a common programing interface.
102 * Example sources would be SOC controllers, FPGAs, multifunction
103 * chips, dedicated GPIO expanders, and so on.
104 *
105 * Each chip controls a number of signals, identified in method calls
106 * by "offset" values in the range 0..(@ngpio - 1). When those signals
107 * are referenced through calls like gpio_get_value(gpio), the offset
108 * is calculated by subtracting @base from the gpio number.
109 */
110struct gpio_chip {
4fd5463c 111 const char *label;
d8f388d8 112 struct device *dev;
438d8908 113 struct module *owner;
d2876d08 114
35e8bb51
DB
115 int (*request)(struct gpio_chip *chip,
116 unsigned offset);
117 void (*free)(struct gpio_chip *chip,
118 unsigned offset);
119
d2876d08
DB
120 int (*direction_input)(struct gpio_chip *chip,
121 unsigned offset);
122 int (*get)(struct gpio_chip *chip,
123 unsigned offset);
124 int (*direction_output)(struct gpio_chip *chip,
125 unsigned offset, int value);
c4b5be98
FB
126 int (*set_debounce)(struct gpio_chip *chip,
127 unsigned offset, unsigned debounce);
128
d2876d08
DB
129 void (*set)(struct gpio_chip *chip,
130 unsigned offset, int value);
0f6d504e
DB
131
132 int (*to_irq)(struct gpio_chip *chip,
133 unsigned offset);
134
d2876d08
DB
135 void (*dbg_show)(struct seq_file *s,
136 struct gpio_chip *chip);
137 int base;
138 u16 ngpio;
62154991 139 const char *const *names;
d2876d08 140 unsigned can_sleep:1;
d8f388d8 141 unsigned exported:1;
a19e3da5
AV
142
143#if defined(CONFIG_OF_GPIO)
144 /*
145 * If CONFIG_OF is enabled, then all GPIO controllers described in the
146 * device tree automatically may have an OF translation
147 */
148 struct device_node *of_node;
149 int of_gpio_n_cells;
15c9a0ac
GL
150 int (*of_xlate)(struct gpio_chip *gc,
151 const struct of_phandle_args *gpiospec, u32 *flags);
a19e3da5 152#endif
f23f1516
SH
153#ifdef CONFIG_PINCTRL
154 /*
155 * If CONFIG_PINCTRL is enabled, then gpio controllers can optionally
156 * describe the actual pin range which they serve in an SoC. This
157 * information would be used by pinctrl subsystem to configure
158 * corresponding pins for gpio usage.
159 */
160 struct list_head pin_ranges;
161#endif
d2876d08
DB
162};
163
164extern const char *gpiochip_is_requested(struct gpio_chip *chip,
165 unsigned offset);
1a2d397a 166extern struct gpio_chip *gpio_to_chip(unsigned gpio);
6ea0205b 167extern int __must_check gpiochip_reserve(int start, int ngpio);
d2876d08
DB
168
169/* add/remove chips */
170extern int gpiochip_add(struct gpio_chip *chip);
171extern int __must_check gpiochip_remove(struct gpio_chip *chip);
07ce8ec7 172extern struct gpio_chip *gpiochip_find(void *data,
594fa265 173 int (*match)(struct gpio_chip *chip,
3d0f7cf0 174 void *data));
d2876d08
DB
175
176
177/* Always use the library code for GPIO management calls,
178 * or when sleeping may be involved.
179 */
d8a3515e 180extern int gpio_request(unsigned gpio, const char *label);
d2876d08
DB
181extern void gpio_free(unsigned gpio);
182
d8a3515e
LT
183extern int gpio_direction_input(unsigned gpio);
184extern int gpio_direction_output(unsigned gpio, int value);
d2876d08 185
c4b5be98
FB
186extern int gpio_set_debounce(unsigned gpio, unsigned debounce);
187
d2876d08
DB
188extern int gpio_get_value_cansleep(unsigned gpio);
189extern void gpio_set_value_cansleep(unsigned gpio, int value);
190
191
192/* A platform's <asm/gpio.h> code may want to inline the I/O calls when
193 * the GPIO is constant and refers to some always-present controller,
194 * giving direct access to chip registers and tight bitbanging loops.
195 */
196extern int __gpio_get_value(unsigned gpio);
197extern void __gpio_set_value(unsigned gpio, int value);
198
199extern int __gpio_cansleep(unsigned gpio);
200
0f6d504e 201extern int __gpio_to_irq(unsigned gpio);
d2876d08 202
d8a3515e 203extern int gpio_request_one(unsigned gpio, unsigned long flags, const char *label);
7c295975
LPC
204extern int gpio_request_array(const struct gpio *array, size_t num);
205extern void gpio_free_array(const struct gpio *array, size_t num);
3e45f1d1 206
1a0703ed
JC
207/* bindings for managed devices that want to request gpios */
208int devm_gpio_request(struct device *dev, unsigned gpio, const char *label);
09d71ff1
MB
209int devm_gpio_request_one(struct device *dev, unsigned gpio,
210 unsigned long flags, const char *label);
1a0703ed
JC
211void devm_gpio_free(struct device *dev, unsigned int gpio);
212
d8f388d8
DB
213#ifdef CONFIG_GPIO_SYSFS
214
215/*
216 * A sysfs interface can be exported by individual drivers if they want,
217 * but more typically is configured entirely from userspace.
218 */
219extern int gpio_export(unsigned gpio, bool direction_may_change);
a4177ee7
JN
220extern int gpio_export_link(struct device *dev, const char *name,
221 unsigned gpio);
07697461 222extern int gpio_sysfs_set_active_low(unsigned gpio, int value);
d8f388d8
DB
223extern void gpio_unexport(unsigned gpio);
224
225#endif /* CONFIG_GPIO_SYSFS */
226
09cd9527 227#else /* !CONFIG_GPIOLIB */
d2876d08 228
3474cb3c 229static inline bool gpio_is_valid(int number)
e6de1808
GL
230{
231 /* only non-negative numbers are valid */
232 return number >= 0;
233}
234
4c20386c
DB
235/* platforms that don't directly support access to GPIOs through I2C, SPI,
236 * or other blocking infrastructure can use these wrappers.
237 */
238
239static inline int gpio_cansleep(unsigned gpio)
240{
241 return 0;
242}
243
244static inline int gpio_get_value_cansleep(unsigned gpio)
245{
246 might_sleep();
eb9ae7f2 247 return __gpio_get_value(gpio);
4c20386c
DB
248}
249
250static inline void gpio_set_value_cansleep(unsigned gpio, int value)
251{
252 might_sleep();
eb9ae7f2 253 __gpio_set_value(gpio, value);
4c20386c
DB
254}
255
09cd9527 256#endif /* !CONFIG_GPIOLIB */
d8f388d8
DB
257
258#ifndef CONFIG_GPIO_SYSFS
259
1f018c8d
MF
260struct device;
261
d8f388d8
DB
262/* sysfs support is only available with gpiolib, where it's optional */
263
264static inline int gpio_export(unsigned gpio, bool direction_may_change)
265{
266 return -ENOSYS;
267}
268
a4177ee7
JN
269static inline int gpio_export_link(struct device *dev, const char *name,
270 unsigned gpio)
271{
272 return -ENOSYS;
273}
274
07697461
JN
275static inline int gpio_sysfs_set_active_low(unsigned gpio, int value)
276{
277 return -ENOSYS;
278}
279
d8f388d8
DB
280static inline void gpio_unexport(unsigned gpio)
281{
282}
283#endif /* CONFIG_GPIO_SYSFS */
d2876d08 284
4c20386c 285#endif /* _ASM_GENERIC_GPIO_H */