17560fa60SDavid Brownell #ifndef __LINUX_GPIO_H 27560fa60SDavid Brownell #define __LINUX_GPIO_H 37560fa60SDavid Brownell 47563bbf8SMark Brown #include <linux/errno.h> 57563bbf8SMark Brown 6f7b370a3SRichard Genoud /* see Documentation/gpio/gpio-legacy.txt */ 77560fa60SDavid Brownell 8c001fb72SRandy Dunlap /* make these flag values available regardless of GPIO kconfig options */ 9c001fb72SRandy Dunlap #define GPIOF_DIR_OUT (0 << 0) 10c001fb72SRandy Dunlap #define GPIOF_DIR_IN (1 << 0) 11c001fb72SRandy Dunlap 12c001fb72SRandy Dunlap #define GPIOF_INIT_LOW (0 << 1) 13c001fb72SRandy Dunlap #define GPIOF_INIT_HIGH (1 << 1) 14c001fb72SRandy Dunlap 15c001fb72SRandy Dunlap #define GPIOF_IN (GPIOF_DIR_IN) 16c001fb72SRandy Dunlap #define GPIOF_OUT_INIT_LOW (GPIOF_DIR_OUT | GPIOF_INIT_LOW) 17c001fb72SRandy Dunlap #define GPIOF_OUT_INIT_HIGH (GPIOF_DIR_OUT | GPIOF_INIT_HIGH) 18c001fb72SRandy Dunlap 1979a9becdSAlexandre Courbot /* Gpio pin is active-low */ 2079a9becdSAlexandre Courbot #define GPIOF_ACTIVE_LOW (1 << 2) 2179a9becdSAlexandre Courbot 22aca5ce14SLaxman Dewangan /* Gpio pin is open drain */ 2379a9becdSAlexandre Courbot #define GPIOF_OPEN_DRAIN (1 << 3) 24aca5ce14SLaxman Dewangan 2525553ff0SLaxman Dewangan /* Gpio pin is open source */ 2679a9becdSAlexandre Courbot #define GPIOF_OPEN_SOURCE (1 << 4) 2725553ff0SLaxman Dewangan 2879a9becdSAlexandre Courbot #define GPIOF_EXPORT (1 << 5) 2979a9becdSAlexandre Courbot #define GPIOF_EXPORT_CHANGEABLE (1 << 6) 30fc3a1f04SWolfram Sang #define GPIOF_EXPORT_DIR_FIXED (GPIOF_EXPORT) 31fc3a1f04SWolfram Sang #define GPIOF_EXPORT_DIR_CHANGEABLE (GPIOF_EXPORT | GPIOF_EXPORT_CHANGEABLE) 32fc3a1f04SWolfram Sang 33feb83699SMark Brown /** 34feb83699SMark Brown * struct gpio - a structure describing a GPIO with configuration 35feb83699SMark Brown * @gpio: the GPIO number 36feb83699SMark Brown * @flags: GPIO configuration as specified by GPIOF_* 37feb83699SMark Brown * @label: a literal description string of this GPIO 38feb83699SMark Brown */ 39feb83699SMark Brown struct gpio { 40feb83699SMark Brown unsigned gpio; 41feb83699SMark Brown unsigned long flags; 42feb83699SMark Brown const char *label; 43feb83699SMark Brown }; 44feb83699SMark Brown 4576ec9d18SAlexandre Courbot #ifdef CONFIG_GPIOLIB 467563bbf8SMark Brown 477563bbf8SMark Brown #ifdef CONFIG_ARCH_HAVE_CUSTOM_GPIO_H 487560fa60SDavid Brownell #include <asm/gpio.h> 497563bbf8SMark Brown #else 507563bbf8SMark Brown 517563bbf8SMark Brown #include <asm-generic/gpio.h> 527563bbf8SMark Brown 537563bbf8SMark Brown static inline int gpio_get_value(unsigned int gpio) 547563bbf8SMark Brown { 557563bbf8SMark Brown return __gpio_get_value(gpio); 567563bbf8SMark Brown } 577563bbf8SMark Brown 587563bbf8SMark Brown static inline void gpio_set_value(unsigned int gpio, int value) 597563bbf8SMark Brown { 607563bbf8SMark Brown __gpio_set_value(gpio, value); 617563bbf8SMark Brown } 627563bbf8SMark Brown 637563bbf8SMark Brown static inline int gpio_cansleep(unsigned int gpio) 647563bbf8SMark Brown { 657563bbf8SMark Brown return __gpio_cansleep(gpio); 667563bbf8SMark Brown } 677563bbf8SMark Brown 687563bbf8SMark Brown static inline int gpio_to_irq(unsigned int gpio) 697563bbf8SMark Brown { 707563bbf8SMark Brown return __gpio_to_irq(gpio); 717563bbf8SMark Brown } 727563bbf8SMark Brown 737563bbf8SMark Brown static inline int irq_to_gpio(unsigned int irq) 747563bbf8SMark Brown { 757563bbf8SMark Brown return -EINVAL; 767563bbf8SMark Brown } 777563bbf8SMark Brown 78165adc9cSLinus Walleij #endif /* ! CONFIG_ARCH_HAVE_CUSTOM_GPIO_H */ 797560fa60SDavid Brownell 80403c1d0bSLinus Walleij /* CONFIG_GPIOLIB: bindings for managed devices that want to request gpios */ 81403c1d0bSLinus Walleij 82403c1d0bSLinus Walleij struct device; 83403c1d0bSLinus Walleij 84403c1d0bSLinus Walleij int devm_gpio_request(struct device *dev, unsigned gpio, const char *label); 85403c1d0bSLinus Walleij int devm_gpio_request_one(struct device *dev, unsigned gpio, 86403c1d0bSLinus Walleij unsigned long flags, const char *label); 87403c1d0bSLinus Walleij void devm_gpio_free(struct device *dev, unsigned int gpio); 88403c1d0bSLinus Walleij 8976ec9d18SAlexandre Courbot #else /* ! CONFIG_GPIOLIB */ 907560fa60SDavid Brownell 913d599d1cSUwe Kleine-König #include <linux/kernel.h> 926ea0205bSDavid Brownell #include <linux/types.h> 936ea0205bSDavid Brownell #include <linux/errno.h> 94187f1882SPaul Gortmaker #include <linux/bug.h> 95586a87e6SChristian Ruppert #include <linux/pinctrl/pinctrl.h> 966ea0205bSDavid Brownell 97a4177ee7SJani Nikula struct device; 984e4438b8SAnton Vorontsov struct gpio_chip; 99a4177ee7SJani Nikula 1003474cb3cSJoe Perches static inline bool gpio_is_valid(int number) 1017560fa60SDavid Brownell { 1023474cb3cSJoe Perches return false; 1037560fa60SDavid Brownell } 1047560fa60SDavid Brownell 105d8a3515eSLinus Torvalds static inline int gpio_request(unsigned gpio, const char *label) 1067560fa60SDavid Brownell { 1077560fa60SDavid Brownell return -ENOSYS; 1087560fa60SDavid Brownell } 1097560fa60SDavid Brownell 110323b7fe8SWolfram Sang static inline int gpio_request_one(unsigned gpio, 1115f829e40SWolfram Sang unsigned long flags, const char *label) 1125f829e40SWolfram Sang { 1135f829e40SWolfram Sang return -ENOSYS; 1145f829e40SWolfram Sang } 1155f829e40SWolfram Sang 1167c295975SLars-Peter Clausen static inline int gpio_request_array(const struct gpio *array, size_t num) 1175f829e40SWolfram Sang { 1185f829e40SWolfram Sang return -ENOSYS; 1195f829e40SWolfram Sang } 1205f829e40SWolfram Sang 1217560fa60SDavid Brownell static inline void gpio_free(unsigned gpio) 1227560fa60SDavid Brownell { 1233d599d1cSUwe Kleine-König might_sleep(); 1243d599d1cSUwe Kleine-König 1257560fa60SDavid Brownell /* GPIO can never have been requested */ 1267560fa60SDavid Brownell WARN_ON(1); 1277560fa60SDavid Brownell } 1287560fa60SDavid Brownell 1297c295975SLars-Peter Clausen static inline void gpio_free_array(const struct gpio *array, size_t num) 1305f829e40SWolfram Sang { 1315f829e40SWolfram Sang might_sleep(); 1325f829e40SWolfram Sang 1335f829e40SWolfram Sang /* GPIO can never have been requested */ 1345f829e40SWolfram Sang WARN_ON(1); 1355f829e40SWolfram Sang } 1365f829e40SWolfram Sang 137d8a3515eSLinus Torvalds static inline int gpio_direction_input(unsigned gpio) 1387560fa60SDavid Brownell { 1397560fa60SDavid Brownell return -ENOSYS; 1407560fa60SDavid Brownell } 1417560fa60SDavid Brownell 142d8a3515eSLinus Torvalds static inline int gpio_direction_output(unsigned gpio, int value) 1437560fa60SDavid Brownell { 1447560fa60SDavid Brownell return -ENOSYS; 1457560fa60SDavid Brownell } 1467560fa60SDavid Brownell 147c4b5be98SFelipe Balbi static inline int gpio_set_debounce(unsigned gpio, unsigned debounce) 148c4b5be98SFelipe Balbi { 149c4b5be98SFelipe Balbi return -ENOSYS; 150c4b5be98SFelipe Balbi } 151c4b5be98SFelipe Balbi 1527560fa60SDavid Brownell static inline int gpio_get_value(unsigned gpio) 1537560fa60SDavid Brownell { 1547560fa60SDavid Brownell /* GPIO can never have been requested or set as {in,out}put */ 1557560fa60SDavid Brownell WARN_ON(1); 1567560fa60SDavid Brownell return 0; 1577560fa60SDavid Brownell } 1587560fa60SDavid Brownell 1597560fa60SDavid Brownell static inline void gpio_set_value(unsigned gpio, int value) 1607560fa60SDavid Brownell { 1617560fa60SDavid Brownell /* GPIO can never have been requested or set as output */ 1627560fa60SDavid Brownell WARN_ON(1); 1637560fa60SDavid Brownell } 1647560fa60SDavid Brownell 1657560fa60SDavid Brownell static inline int gpio_cansleep(unsigned gpio) 1667560fa60SDavid Brownell { 1677560fa60SDavid Brownell /* GPIO can never have been requested or set as {in,out}put */ 1687560fa60SDavid Brownell WARN_ON(1); 1697560fa60SDavid Brownell return 0; 1707560fa60SDavid Brownell } 1717560fa60SDavid Brownell 1727560fa60SDavid Brownell static inline int gpio_get_value_cansleep(unsigned gpio) 1737560fa60SDavid Brownell { 1747560fa60SDavid Brownell /* GPIO can never have been requested or set as {in,out}put */ 1757560fa60SDavid Brownell WARN_ON(1); 1767560fa60SDavid Brownell return 0; 1777560fa60SDavid Brownell } 1787560fa60SDavid Brownell 1797560fa60SDavid Brownell static inline void gpio_set_value_cansleep(unsigned gpio, int value) 1807560fa60SDavid Brownell { 1817560fa60SDavid Brownell /* GPIO can never have been requested or set as output */ 1827560fa60SDavid Brownell WARN_ON(1); 1837560fa60SDavid Brownell } 1847560fa60SDavid Brownell 185d8f388d8SDavid Brownell static inline int gpio_export(unsigned gpio, bool direction_may_change) 186d8f388d8SDavid Brownell { 187d8f388d8SDavid Brownell /* GPIO can never have been requested or set as {in,out}put */ 188d8f388d8SDavid Brownell WARN_ON(1); 189d8f388d8SDavid Brownell return -EINVAL; 190d8f388d8SDavid Brownell } 191d8f388d8SDavid Brownell 192a4177ee7SJani Nikula static inline int gpio_export_link(struct device *dev, const char *name, 193a4177ee7SJani Nikula unsigned gpio) 194a4177ee7SJani Nikula { 195a4177ee7SJani Nikula /* GPIO can never have been exported */ 196a4177ee7SJani Nikula WARN_ON(1); 197a4177ee7SJani Nikula return -EINVAL; 198a4177ee7SJani Nikula } 199a4177ee7SJani Nikula 20007697461SJani Nikula static inline int gpio_sysfs_set_active_low(unsigned gpio, int value) 20107697461SJani Nikula { 20207697461SJani Nikula /* GPIO can never have been requested */ 20307697461SJani Nikula WARN_ON(1); 20407697461SJani Nikula return -EINVAL; 20507697461SJani Nikula } 206a4177ee7SJani Nikula 207d8f388d8SDavid Brownell static inline void gpio_unexport(unsigned gpio) 208d8f388d8SDavid Brownell { 209d8f388d8SDavid Brownell /* GPIO can never have been exported */ 210d8f388d8SDavid Brownell WARN_ON(1); 211d8f388d8SDavid Brownell } 212d8f388d8SDavid Brownell 2137560fa60SDavid Brownell static inline int gpio_to_irq(unsigned gpio) 2147560fa60SDavid Brownell { 2157560fa60SDavid Brownell /* GPIO can never have been requested or set as input */ 2167560fa60SDavid Brownell WARN_ON(1); 2177560fa60SDavid Brownell return -EINVAL; 2187560fa60SDavid Brownell } 2197560fa60SDavid Brownell 220d468bf9eSLinus Walleij static inline int gpio_lock_as_irq(struct gpio_chip *chip, unsigned int offset) 221d468bf9eSLinus Walleij { 222d468bf9eSLinus Walleij WARN_ON(1); 223d468bf9eSLinus Walleij return -EINVAL; 224d468bf9eSLinus Walleij } 225d468bf9eSLinus Walleij 226d468bf9eSLinus Walleij static inline void gpio_unlock_as_irq(struct gpio_chip *chip, 227d468bf9eSLinus Walleij unsigned int offset) 228d468bf9eSLinus Walleij { 229d468bf9eSLinus Walleij WARN_ON(1); 230d468bf9eSLinus Walleij } 231d468bf9eSLinus Walleij 2327560fa60SDavid Brownell static inline int irq_to_gpio(unsigned irq) 2337560fa60SDavid Brownell { 2347560fa60SDavid Brownell /* irq can never have been returned from gpio_to_irq() */ 2357560fa60SDavid Brownell WARN_ON(1); 2367560fa60SDavid Brownell return -EINVAL; 2377560fa60SDavid Brownell } 2387560fa60SDavid Brownell 2391e63d7b9SLinus Walleij static inline int 240165adc9cSLinus Walleij gpiochip_add_pin_range(struct gpio_chip *chip, const char *pinctl_name, 241316511c0SLinus Walleij unsigned int gpio_offset, unsigned int pin_offset, 2423f0f8670SLinus Walleij unsigned int npins) 243165adc9cSLinus Walleij { 24450309a9cSLinus Walleij WARN_ON(1); 24550309a9cSLinus Walleij return -EINVAL; 246165adc9cSLinus Walleij } 247165adc9cSLinus Walleij 248586a87e6SChristian Ruppert static inline int 249586a87e6SChristian Ruppert gpiochip_add_pingroup_range(struct gpio_chip *chip, 250586a87e6SChristian Ruppert struct pinctrl_dev *pctldev, 251586a87e6SChristian Ruppert unsigned int gpio_offset, const char *pin_group) 252586a87e6SChristian Ruppert { 253586a87e6SChristian Ruppert WARN_ON(1); 254586a87e6SChristian Ruppert return -EINVAL; 255586a87e6SChristian Ruppert } 256586a87e6SChristian Ruppert 257165adc9cSLinus Walleij static inline void 258165adc9cSLinus Walleij gpiochip_remove_pin_ranges(struct gpio_chip *chip) 259165adc9cSLinus Walleij { 26050309a9cSLinus Walleij WARN_ON(1); 261165adc9cSLinus Walleij } 262165adc9cSLinus Walleij 263403c1d0bSLinus Walleij static inline int devm_gpio_request(struct device *dev, unsigned gpio, 264403c1d0bSLinus Walleij const char *label) 265403c1d0bSLinus Walleij { 266403c1d0bSLinus Walleij WARN_ON(1); 267403c1d0bSLinus Walleij return -EINVAL; 268403c1d0bSLinus Walleij } 269403c1d0bSLinus Walleij 270403c1d0bSLinus Walleij static inline int devm_gpio_request_one(struct device *dev, unsigned gpio, 271403c1d0bSLinus Walleij unsigned long flags, const char *label) 272403c1d0bSLinus Walleij { 273403c1d0bSLinus Walleij WARN_ON(1); 274403c1d0bSLinus Walleij return -EINVAL; 275403c1d0bSLinus Walleij } 276403c1d0bSLinus Walleij 277403c1d0bSLinus Walleij static inline void devm_gpio_free(struct device *dev, unsigned int gpio) 278403c1d0bSLinus Walleij { 279403c1d0bSLinus Walleij WARN_ON(1); 280403c1d0bSLinus Walleij } 281403c1d0bSLinus Walleij 28276ec9d18SAlexandre Courbot #endif /* ! CONFIG_GPIOLIB */ 2837560fa60SDavid Brownell 2847560fa60SDavid Brownell #endif /* __LINUX_GPIO_H */ 285