]> git.proxmox.com Git - mirror_ubuntu-jammy-kernel.git/blame - include/asm-generic/gpio.h
Merge git://git.kernel.org/pub/scm/linux/kernel/git/bpf/bpf-next
[mirror_ubuntu-jammy-kernel.git] / include / asm-generic / gpio.h
CommitLineData
b2441318 1/* SPDX-License-Identifier: GPL-2.0 */
4c20386c
DB
2#ifndef _ASM_GENERIC_GPIO_H
3#define _ASM_GENERIC_GPIO_H
4
6ea0205b 5#include <linux/types.h>
25947d5a 6#include <linux/errno.h>
6ea0205b 7
7444a72e 8#ifdef CONFIG_GPIOLIB
d2876d08 9
6ea0205b 10#include <linux/compiler.h>
79a9becd
AC
11#include <linux/gpio/driver.h>
12#include <linux/gpio/consumer.h>
6ea0205b 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
aa6aedb5
AB
28#if defined(CONFIG_ARCH_NR_GPIO) && CONFIG_ARCH_NR_GPIO > 0
29#define ARCH_NR_GPIOS CONFIG_ARCH_NR_GPIO
30#else
7ca267fa 31#define ARCH_NR_GPIOS 512
d2876d08 32#endif
aa6aedb5 33#endif
d2876d08 34
c956126c
DB
35/*
36 * "valid" GPIO numbers are nonnegative and may be passed to
37 * setup routines like gpio_request(). only some valid numbers
38 * can successfully be requested and used.
39 *
40 * Invalid GPIO numbers are useful for indicating no-such-GPIO in
41 * platform data and other tables.
42 */
43
3474cb3c 44static inline bool gpio_is_valid(int number)
e6de1808 45{
3474cb3c 46 return number >= 0 && number < ARCH_NR_GPIOS;
e6de1808
GL
47}
48
1f018c8d 49struct device;
feb83699 50struct gpio;
d2876d08 51struct seq_file;
438d8908 52struct module;
a19e3da5 53struct device_node;
6c0b4e6c 54struct gpio_desc;
d2876d08 55
79a9becd
AC
56/* caller holds gpio_lock *OR* gpio is marked as requested */
57static inline struct gpio_chip *gpio_to_chip(unsigned gpio)
58{
59 return gpiod_to_chip(gpio_to_desc(gpio));
60}
d2876d08
DB
61
62/* Always use the library code for GPIO management calls,
63 * or when sleeping may be involved.
64 */
d8a3515e 65extern int gpio_request(unsigned gpio, const char *label);
d2876d08
DB
66extern void gpio_free(unsigned gpio);
67
c7caf868
AC
68static inline int gpio_direction_input(unsigned gpio)
69{
70 return gpiod_direction_input(gpio_to_desc(gpio));
71}
72static inline int gpio_direction_output(unsigned gpio, int value)
73{
74 return gpiod_direction_output_raw(gpio_to_desc(gpio), value);
75}
d2876d08 76
c7caf868
AC
77static inline int gpio_set_debounce(unsigned gpio, unsigned debounce)
78{
79 return gpiod_set_debounce(gpio_to_desc(gpio), debounce);
80}
c4b5be98 81
79a9becd
AC
82static inline int gpio_get_value_cansleep(unsigned gpio)
83{
84 return gpiod_get_raw_value_cansleep(gpio_to_desc(gpio));
85}
86static inline void gpio_set_value_cansleep(unsigned gpio, int value)
87{
88 return gpiod_set_raw_value_cansleep(gpio_to_desc(gpio), value);
89}
d2876d08
DB
90
91
92/* A platform's <asm/gpio.h> code may want to inline the I/O calls when
93 * the GPIO is constant and refers to some always-present controller,
94 * giving direct access to chip registers and tight bitbanging loops.
95 */
79a9becd
AC
96static inline int __gpio_get_value(unsigned gpio)
97{
98 return gpiod_get_raw_value(gpio_to_desc(gpio));
99}
100static inline void __gpio_set_value(unsigned gpio, int value)
101{
102 return gpiod_set_raw_value(gpio_to_desc(gpio), value);
103}
d2876d08 104
79a9becd
AC
105static inline int __gpio_cansleep(unsigned gpio)
106{
107 return gpiod_cansleep(gpio_to_desc(gpio));
108}
d2876d08 109
79a9becd
AC
110static inline int __gpio_to_irq(unsigned gpio)
111{
112 return gpiod_to_irq(gpio_to_desc(gpio));
113}
d2876d08 114
d8a3515e 115extern int gpio_request_one(unsigned gpio, unsigned long flags, const char *label);
7c295975
LPC
116extern int gpio_request_array(const struct gpio *array, size_t num);
117extern void gpio_free_array(const struct gpio *array, size_t num);
3e45f1d1 118
d8f388d8
DB
119/*
120 * A sysfs interface can be exported by individual drivers if they want,
121 * but more typically is configured entirely from userspace.
122 */
79a9becd
AC
123static inline int gpio_export(unsigned gpio, bool direction_may_change)
124{
125 return gpiod_export(gpio_to_desc(gpio), direction_may_change);
126}
d8f388d8 127
79a9becd
AC
128static inline int gpio_export_link(struct device *dev, const char *name,
129 unsigned gpio)
130{
131 return gpiod_export_link(dev, name, gpio_to_desc(gpio));
132}
133
79a9becd
AC
134static inline void gpio_unexport(unsigned gpio)
135{
136 gpiod_unexport(gpio_to_desc(gpio));
137}
d8f388d8 138
09cd9527 139#else /* !CONFIG_GPIOLIB */
d2876d08 140
046e14af
AS
141#include <linux/kernel.h>
142
3474cb3c 143static inline bool gpio_is_valid(int number)
e6de1808
GL
144{
145 /* only non-negative numbers are valid */
146 return number >= 0;
147}
148
4c20386c
DB
149/* 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();
eb9ae7f2 161 return __gpio_get_value(gpio);
4c20386c
DB
162}
163
164static inline void gpio_set_value_cansleep(unsigned gpio, int value)
165{
166 might_sleep();
eb9ae7f2 167 __gpio_set_value(gpio, value);
4c20386c
DB
168}
169
09cd9527 170#endif /* !CONFIG_GPIOLIB */
d8f388d8 171
4c20386c 172#endif /* _ASM_GENERIC_GPIO_H */