cregit-Linux how code gets into the kernel

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

PersonTokensPropCommitsCommitProp
guennadi liakhovetskiguennadi liakhovetski1473.68%150.00%
joe perchesjoe perches526.32%150.00%
Total19100.00%2100.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

PersonTokensPropCommitsCommitProp
alexandre courbotalexandre courbot1152.38%125.00%
david brownelldavid brownell733.33%250.00%
anton vorontsovanton vorontsov314.29%125.00%
Total21100.00%4100.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

PersonTokensPropCommitsCommitProp
alexandre courbotalexandre courbot1368.42%150.00%
david brownelldavid brownell631.58%150.00%
Total19100.00%2100.00%


static inline int gpio_direction_output(unsigned gpio, int value) { return gpiod_direction_output_raw(gpio_to_desc(gpio), value); }

Contributors

PersonTokensPropCommitsCommitProp
alexandre courbotalexandre courbot1562.50%150.00%
david brownelldavid brownell937.50%150.00%
Total24100.00%2100.00%


static inline int gpio_set_debounce(unsigned gpio, unsigned debounce) { return gpiod_set_debounce(gpio_to_desc(gpio), debounce); }

Contributors

PersonTokensPropCommitsCommitProp
alexandre courbotalexandre courbot1562.50%133.33%
felipe balbifelipe balbi833.33%133.33%
david brownelldavid brownell14.17%133.33%
Total24100.00%3100.00%


static inline int gpio_get_value_cansleep(unsigned gpio) { return gpiod_get_raw_value_cansleep(gpio_to_desc(gpio)); }

Contributors

PersonTokensPropCommitsCommitProp
alexandre courbotalexandre courbot1368.42%133.33%
david brownelldavid brownell526.32%133.33%
felipe balbifelipe balbi15.26%133.33%
Total19100.00%3100.00%


static inline void gpio_set_value_cansleep(unsigned gpio, int value) { return gpiod_set_raw_value_cansleep(gpio_to_desc(gpio), value); }

Contributors

PersonTokensPropCommitsCommitProp
alexandre courbotalexandre courbot1666.67%150.00%
david brownelldavid brownell833.33%150.00%
Total24100.00%2100.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

PersonTokensPropCommitsCommitProp
alexandre courbotalexandre courbot1368.42%150.00%
david brownelldavid brownell631.58%150.00%
Total19100.00%2100.00%


static inline void __gpio_set_value(unsigned gpio, int value) { return gpiod_set_raw_value(gpio_to_desc(gpio), value); }

Contributors

PersonTokensPropCommitsCommitProp
alexandre courbotalexandre courbot1458.33%150.00%
david brownelldavid brownell1041.67%150.00%
Total24100.00%2100.00%


static inline int __gpio_cansleep(unsigned gpio) { return gpiod_cansleep(gpio_to_desc(gpio)); }

Contributors

PersonTokensPropCommitsCommitProp
alexandre courbotalexandre courbot1368.42%150.00%
david brownelldavid brownell631.58%150.00%
Total19100.00%2100.00%


static inline int __gpio_to_irq(unsigned gpio) { return gpiod_to_irq(gpio_to_desc(gpio)); }

Contributors

PersonTokensPropCommitsCommitProp
alexandre courbotalexandre courbot1368.42%133.33%
david brownelldavid brownell631.58%266.67%
Total19100.00%3100.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

PersonTokensPropCommitsCommitProp
alexandre courbotalexandre courbot1562.50%150.00%
david brownelldavid brownell937.50%150.00%
Total24100.00%2100.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

PersonTokensPropCommitsCommitProp
alexandre courbotalexandre courbot1751.52%150.00%
jani nikulajani nikula1648.48%150.00%
Total33100.00%2100.00%


static inline void gpio_unexport(unsigned gpio) { gpiod_unexport(gpio_to_desc(gpio)); }

Contributors

PersonTokensPropCommitsCommitProp
alexandre courbotalexandre courbot1266.67%150.00%
david brownelldavid brownell633.33%150.00%
Total18100.00%2100.00%

#else /* !CONFIG_GPIOLIB */
static inline bool gpio_is_valid(int number) { /* only non-negative numbers are valid */ return number >= 0; }

Contributors

PersonTokensPropCommitsCommitProp
guennadi liakhovetskiguennadi liakhovetski1593.75%150.00%
joe perchesjoe perches16.25%150.00%
Total16100.00%2100.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

PersonTokensPropCommitsCommitProp
david brownelldavid brownell13100.00%1100.00%
Total13100.00%1100.00%


static inline int gpio_get_value_cansleep(unsigned gpio) { might_sleep(); return __gpio_get_value(gpio); }

Contributors

PersonTokensPropCommitsCommitProp
david brownelldavid brownell1894.74%150.00%
yang baiyang bai15.26%150.00%
Total19100.00%2100.00%


static inline void gpio_set_value_cansleep(unsigned gpio, int value) { might_sleep(); __gpio_set_value(gpio, value); }

Contributors

PersonTokensPropCommitsCommitProp
david brownelldavid brownell2295.65%150.00%
yang baiyang bai14.35%150.00%
Total23100.00%2100.00%

#endif /* !CONFIG_GPIOLIB */ #endif /* _ASM_GENERIC_GPIO_H */

Overall Contributors

PersonTokensPropCommitsCommitProp
david brownelldavid brownell19336.14%622.22%
alexandre courbotalexandre courbot19035.58%311.11%
eric miaoeric miao417.68%13.70%
guennadi liakhovetskiguennadi liakhovetski325.99%27.41%
arnd bergmannarnd bergmann183.37%13.70%
jani nikulajani nikula163.00%13.70%
felipe balbifelipe balbi91.69%13.70%
anton vorontsovanton vorontsov81.50%27.41%
mike frysingermike frysinger61.12%27.41%
joe perchesjoe perches61.12%13.70%
grant likelygrant likely30.56%13.70%
atsushi nemotoatsushi nemoto30.56%13.70%
mark brownmark brown30.56%13.70%
lars-peter clausenlars-peter clausen20.37%13.70%
yang baiyang bai20.37%13.70%
michael bueschmichael buesch10.19%13.70%
mika westerbergmika westerberg10.19%13.70%
Total534100.00%27100.00%
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.
{% endraw %}