Release 4.7 include/asm-generic/gpio.h
#ifndef _ASM_GENERIC_GPIO_H
#define _ASM_GENERIC_GPIO_H
#include <linux/kernel.h>
#include <linux/types.h>
#include <linux/errno.h>
#include <linux/of.h>
#ifdef CONFIG_GPIOLIB
#include <linux/compiler.h>
#include <linux/gpio/driver.h>
#include <linux/gpio/consumer.h>
/* 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
* smaller range 0..ARCH_NR_GPIOS-1.
*
* 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.
*/
#ifndef ARCH_NR_GPIOS
#if defined(CONFIG_ARCH_NR_GPIO) && CONFIG_ARCH_NR_GPIO > 0
#define ARCH_NR_GPIOS CONFIG_ARCH_NR_GPIO
#else
#define ARCH_NR_GPIOS 512
#endif
#endif
/*
* "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.
*/
static inline bool gpio_is_valid(int number)
{
return number >= 0 && number < ARCH_NR_GPIOS;
}
Contributors
| Person | Tokens | Prop | Commits | CommitProp |
guennadi liakhovetski | guennadi liakhovetski | 14 | 73.68% | 1 | 50.00% |
joe perches | joe perches | 5 | 26.32% | 1 | 50.00% |
| Total | 19 | 100.00% | 2 | 100.00% |
struct device;
struct gpio;
struct seq_file;
struct module;
struct device_node;
struct gpio_desc;
/* 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));
}
Contributors
| Person | Tokens | Prop | Commits | CommitProp |
alexandre courbot | alexandre courbot | 11 | 52.38% | 1 | 25.00% |
david brownell | david brownell | 7 | 33.33% | 2 | 50.00% |
anton vorontsov | anton vorontsov | 3 | 14.29% | 1 | 25.00% |
| Total | 21 | 100.00% | 4 | 100.00% |
/* Always use the library code for GPIO management calls,
* or when sleeping may be involved.
*/
extern int gpio_request(unsigned gpio, const char *label);
extern void gpio_free(unsigned gpio);
static inline int gpio_direction_input(unsigned gpio)
{
return gpiod_direction_input(gpio_to_desc(gpio));
}
Contributors
| Person | Tokens | Prop | Commits | CommitProp |
alexandre courbot | alexandre courbot | 13 | 68.42% | 1 | 50.00% |
david brownell | david brownell | 6 | 31.58% | 1 | 50.00% |
| Total | 19 | 100.00% | 2 | 100.00% |
static inline int gpio_direction_output(unsigned gpio, int value)
{
return gpiod_direction_output_raw(gpio_to_desc(gpio), value);
}
Contributors
| Person | Tokens | Prop | Commits | CommitProp |
alexandre courbot | alexandre courbot | 15 | 62.50% | 1 | 50.00% |
david brownell | david brownell | 9 | 37.50% | 1 | 50.00% |
| Total | 24 | 100.00% | 2 | 100.00% |
static inline int gpio_set_debounce(unsigned gpio, unsigned debounce)
{
return gpiod_set_debounce(gpio_to_desc(gpio), debounce);
}
Contributors
| Person | Tokens | Prop | Commits | CommitProp |
alexandre courbot | alexandre courbot | 15 | 62.50% | 1 | 33.33% |
felipe balbi | felipe balbi | 8 | 33.33% | 1 | 33.33% |
david brownell | david brownell | 1 | 4.17% | 1 | 33.33% |
| Total | 24 | 100.00% | 3 | 100.00% |
static inline int gpio_get_value_cansleep(unsigned gpio)
{
return gpiod_get_raw_value_cansleep(gpio_to_desc(gpio));
}
Contributors
| Person | Tokens | Prop | Commits | CommitProp |
alexandre courbot | alexandre courbot | 13 | 68.42% | 1 | 33.33% |
david brownell | david brownell | 5 | 26.32% | 1 | 33.33% |
felipe balbi | felipe balbi | 1 | 5.26% | 1 | 33.33% |
| Total | 19 | 100.00% | 3 | 100.00% |
static inline void gpio_set_value_cansleep(unsigned gpio, int value)
{
return gpiod_set_raw_value_cansleep(gpio_to_desc(gpio), value);
}
Contributors
| Person | Tokens | Prop | Commits | CommitProp |
alexandre courbot | alexandre courbot | 16 | 66.67% | 1 | 50.00% |
david brownell | david brownell | 8 | 33.33% | 1 | 50.00% |
| Total | 24 | 100.00% | 2 | 100.00% |
/* 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.
*/
static inline int __gpio_get_value(unsigned gpio)
{
return gpiod_get_raw_value(gpio_to_desc(gpio));
}
Contributors
| Person | Tokens | Prop | Commits | CommitProp |
alexandre courbot | alexandre courbot | 13 | 68.42% | 1 | 50.00% |
david brownell | david brownell | 6 | 31.58% | 1 | 50.00% |
| Total | 19 | 100.00% | 2 | 100.00% |
static inline void __gpio_set_value(unsigned gpio, int value)
{
return gpiod_set_raw_value(gpio_to_desc(gpio), value);
}
Contributors
| Person | Tokens | Prop | Commits | CommitProp |
alexandre courbot | alexandre courbot | 14 | 58.33% | 1 | 50.00% |
david brownell | david brownell | 10 | 41.67% | 1 | 50.00% |
| Total | 24 | 100.00% | 2 | 100.00% |
static inline int __gpio_cansleep(unsigned gpio)
{
return gpiod_cansleep(gpio_to_desc(gpio));
}
Contributors
| Person | Tokens | Prop | Commits | CommitProp |
alexandre courbot | alexandre courbot | 13 | 68.42% | 1 | 50.00% |
david brownell | david brownell | 6 | 31.58% | 1 | 50.00% |
| Total | 19 | 100.00% | 2 | 100.00% |
static inline int __gpio_to_irq(unsigned gpio)
{
return gpiod_to_irq(gpio_to_desc(gpio));
}
Contributors
| Person | Tokens | Prop | Commits | CommitProp |
alexandre courbot | alexandre courbot | 13 | 68.42% | 1 | 33.33% |
david brownell | david brownell | 6 | 31.58% | 2 | 66.67% |
| Total | 19 | 100.00% | 3 | 100.00% |
extern int gpio_request_one(unsigned gpio, unsigned long flags, const char *label);
extern int gpio_request_array(const struct gpio *array, size_t num);
extern void gpio_free_array(const struct gpio *array, size_t num);
/*
* A sysfs interface can be exported by individual drivers if they want,
* but more typically is configured entirely from userspace.
*/
static inline int gpio_export(unsigned gpio, bool direction_may_change)
{
return gpiod_export(gpio_to_desc(gpio), direction_may_change);
}
Contributors
| Person | Tokens | Prop | Commits | CommitProp |
alexandre courbot | alexandre courbot | 15 | 62.50% | 1 | 50.00% |
david brownell | david brownell | 9 | 37.50% | 1 | 50.00% |
| Total | 24 | 100.00% | 2 | 100.00% |
static inline int gpio_export_link(struct device *dev, const char *name,
unsigned gpio)
{
return gpiod_export_link(dev, name, gpio_to_desc(gpio));
}
Contributors
| Person | Tokens | Prop | Commits | CommitProp |
alexandre courbot | alexandre courbot | 17 | 51.52% | 1 | 50.00% |
jani nikula | jani nikula | 16 | 48.48% | 1 | 50.00% |
| Total | 33 | 100.00% | 2 | 100.00% |
static inline void gpio_unexport(unsigned gpio)
{
gpiod_unexport(gpio_to_desc(gpio));
}
Contributors
| Person | Tokens | Prop | Commits | CommitProp |
alexandre courbot | alexandre courbot | 12 | 66.67% | 1 | 50.00% |
david brownell | david brownell | 6 | 33.33% | 1 | 50.00% |
| Total | 18 | 100.00% | 2 | 100.00% |
#else /* !CONFIG_GPIOLIB */
static inline bool gpio_is_valid(int number)
{
/* only non-negative numbers are valid */
return number >= 0;
}
Contributors
| Person | Tokens | Prop | Commits | CommitProp |
guennadi liakhovetski | guennadi liakhovetski | 15 | 93.75% | 1 | 50.00% |
joe perches | joe perches | 1 | 6.25% | 1 | 50.00% |
| Total | 16 | 100.00% | 2 | 100.00% |
/* 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;
}
Contributors
| Person | Tokens | Prop | Commits | CommitProp |
david brownell | david brownell | 13 | 100.00% | 1 | 100.00% |
| Total | 13 | 100.00% | 1 | 100.00% |
static inline int gpio_get_value_cansleep(unsigned gpio)
{
might_sleep();
return __gpio_get_value(gpio);
}
Contributors
| Person | Tokens | Prop | Commits | CommitProp |
david brownell | david brownell | 18 | 94.74% | 1 | 50.00% |
yang bai | yang bai | 1 | 5.26% | 1 | 50.00% |
| Total | 19 | 100.00% | 2 | 100.00% |
static inline void gpio_set_value_cansleep(unsigned gpio, int value)
{
might_sleep();
__gpio_set_value(gpio, value);
}
Contributors
| Person | Tokens | Prop | Commits | CommitProp |
david brownell | david brownell | 22 | 95.65% | 1 | 50.00% |
yang bai | yang bai | 1 | 4.35% | 1 | 50.00% |
| Total | 23 | 100.00% | 2 | 100.00% |
#endif /* !CONFIG_GPIOLIB */
#endif /* _ASM_GENERIC_GPIO_H */
Overall Contributors
| Person | Tokens | Prop | Commits | CommitProp |
david brownell | david brownell | 193 | 36.14% | 6 | 22.22% |
alexandre courbot | alexandre courbot | 190 | 35.58% | 3 | 11.11% |
eric miao | eric miao | 41 | 7.68% | 1 | 3.70% |
guennadi liakhovetski | guennadi liakhovetski | 32 | 5.99% | 2 | 7.41% |
arnd bergmann | arnd bergmann | 18 | 3.37% | 1 | 3.70% |
jani nikula | jani nikula | 16 | 3.00% | 1 | 3.70% |
felipe balbi | felipe balbi | 9 | 1.69% | 1 | 3.70% |
anton vorontsov | anton vorontsov | 8 | 1.50% | 2 | 7.41% |
mike frysinger | mike frysinger | 6 | 1.12% | 2 | 7.41% |
joe perches | joe perches | 6 | 1.12% | 1 | 3.70% |
grant likely | grant likely | 3 | 0.56% | 1 | 3.70% |
atsushi nemoto | atsushi nemoto | 3 | 0.56% | 1 | 3.70% |
mark brown | mark brown | 3 | 0.56% | 1 | 3.70% |
lars-peter clausen | lars-peter clausen | 2 | 0.37% | 1 | 3.70% |
yang bai | yang bai | 2 | 0.37% | 1 | 3.70% |
michael buesch | michael buesch | 1 | 0.19% | 1 | 3.70% |
mika westerberg | mika westerberg | 1 | 0.19% | 1 | 3.70% |
| Total | 534 | 100.00% | 27 | 100.00% |
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.