Mika Westerberg | 664e3e5 | 2014-01-08 12:40:54 +0200 | [diff] [blame] | 1 | /* |
| 2 | * Internal GPIO functions. |
| 3 | * |
| 4 | * Copyright (C) 2013, Intel Corporation |
| 5 | * Author: Mika Westerberg <mika.westerberg@linux.intel.com> |
| 6 | * |
| 7 | * This program is free software; you can redistribute it and/or modify |
| 8 | * it under the terms of the GNU General Public License version 2 as |
| 9 | * published by the Free Software Foundation. |
| 10 | */ |
| 11 | |
| 12 | #ifndef GPIOLIB_H |
| 13 | #define GPIOLIB_H |
| 14 | |
Mika Westerberg | 5ccff85 | 2014-01-08 12:40:56 +0200 | [diff] [blame] | 15 | #include <linux/err.h> |
| 16 | #include <linux/device.h> |
| 17 | |
Alexandre Courbot | f01d907 | 2014-05-17 14:54:50 +0900 | [diff] [blame] | 18 | enum of_gpio_flags; |
Linus Walleij | 29ab875 | 2015-12-08 22:45:10 +0100 | [diff] [blame] | 19 | enum gpiod_flags; |
Rafael J. Wysocki | ce79348 | 2015-03-16 23:49:03 +0100 | [diff] [blame] | 20 | struct acpi_device; |
| 21 | |
Mika Westerberg | 5ccff85 | 2014-01-08 12:40:56 +0200 | [diff] [blame] | 22 | /** |
| 23 | * struct acpi_gpio_info - ACPI GPIO specific information |
| 24 | * @gpioint: if %true this GPIO is of type GpioInt otherwise type is GpioIo |
| 25 | * @active_low: in case of @gpioint, the pin is active low |
| 26 | */ |
| 27 | struct acpi_gpio_info { |
| 28 | bool gpioint; |
Christophe RICARD | 5204472 | 2015-12-23 23:25:34 +0100 | [diff] [blame] | 29 | int polarity; |
| 30 | int triggering; |
Mika Westerberg | 5ccff85 | 2014-01-08 12:40:56 +0200 | [diff] [blame] | 31 | }; |
| 32 | |
Rojhalat Ibrahim | 7f2e553 | 2015-02-11 17:27:55 +0100 | [diff] [blame] | 33 | /* gpio suffixes used for ACPI and device tree lookup */ |
| 34 | static const char * const gpio_suffixes[] = { "gpios", "gpio" }; |
| 35 | |
Mika Westerberg | 664e3e5 | 2014-01-08 12:40:54 +0200 | [diff] [blame] | 36 | #ifdef CONFIG_ACPI |
| 37 | void acpi_gpiochip_add(struct gpio_chip *chip); |
| 38 | void acpi_gpiochip_remove(struct gpio_chip *chip); |
Mika Westerberg | 5ccff85 | 2014-01-08 12:40:56 +0200 | [diff] [blame] | 39 | |
Mika Westerberg | afa82fa | 2014-07-25 09:54:48 +0300 | [diff] [blame] | 40 | void acpi_gpiochip_request_interrupts(struct gpio_chip *chip); |
| 41 | void acpi_gpiochip_free_interrupts(struct gpio_chip *chip); |
| 42 | |
Mika Westerberg | 0d9a693 | 2014-10-29 15:41:01 +0100 | [diff] [blame] | 43 | struct gpio_desc *acpi_get_gpiod_by_index(struct acpi_device *adev, |
| 44 | const char *propname, int index, |
Mika Westerberg | 5ccff85 | 2014-01-08 12:40:56 +0200 | [diff] [blame] | 45 | struct acpi_gpio_info *info); |
Rafael J. Wysocki | 504a337 | 2015-08-27 04:42:33 +0200 | [diff] [blame] | 46 | struct gpio_desc *acpi_node_get_gpiod(struct fwnode_handle *fwnode, |
| 47 | const char *propname, int index, |
| 48 | struct acpi_gpio_info *info); |
Rojhalat Ibrahim | 6685852 | 2015-02-11 17:27:58 +0100 | [diff] [blame] | 49 | |
| 50 | int acpi_gpio_count(struct device *dev, const char *con_id); |
Dmitry Torokhov | 10cf489 | 2015-11-11 11:45:30 -0800 | [diff] [blame] | 51 | |
| 52 | bool acpi_can_fallback_to_crs(struct acpi_device *adev, const char *con_id); |
Mika Westerberg | 664e3e5 | 2014-01-08 12:40:54 +0200 | [diff] [blame] | 53 | #else |
| 54 | static inline void acpi_gpiochip_add(struct gpio_chip *chip) { } |
| 55 | static inline void acpi_gpiochip_remove(struct gpio_chip *chip) { } |
Mika Westerberg | 5ccff85 | 2014-01-08 12:40:56 +0200 | [diff] [blame] | 56 | |
Mika Westerberg | afa82fa | 2014-07-25 09:54:48 +0300 | [diff] [blame] | 57 | static inline void |
| 58 | acpi_gpiochip_request_interrupts(struct gpio_chip *chip) { } |
| 59 | |
| 60 | static inline void |
| 61 | acpi_gpiochip_free_interrupts(struct gpio_chip *chip) { } |
| 62 | |
Mika Westerberg | 5ccff85 | 2014-01-08 12:40:56 +0200 | [diff] [blame] | 63 | static inline struct gpio_desc * |
Mika Westerberg | 0d9a693 | 2014-10-29 15:41:01 +0100 | [diff] [blame] | 64 | acpi_get_gpiod_by_index(struct acpi_device *adev, const char *propname, |
| 65 | int index, struct acpi_gpio_info *info) |
Mika Westerberg | 5ccff85 | 2014-01-08 12:40:56 +0200 | [diff] [blame] | 66 | { |
| 67 | return ERR_PTR(-ENOSYS); |
| 68 | } |
Rafael J. Wysocki | 504a337 | 2015-08-27 04:42:33 +0200 | [diff] [blame] | 69 | static inline struct gpio_desc * |
| 70 | acpi_node_get_gpiod(struct fwnode_handle *fwnode, const char *propname, |
| 71 | int index, struct acpi_gpio_info *info) |
| 72 | { |
| 73 | return ERR_PTR(-ENXIO); |
| 74 | } |
Rojhalat Ibrahim | 6685852 | 2015-02-11 17:27:58 +0100 | [diff] [blame] | 75 | static inline int acpi_gpio_count(struct device *dev, const char *con_id) |
| 76 | { |
| 77 | return -ENODEV; |
| 78 | } |
Dmitry Torokhov | 10cf489 | 2015-11-11 11:45:30 -0800 | [diff] [blame] | 79 | |
| 80 | static inline bool acpi_can_fallback_to_crs(struct acpi_device *adev, |
| 81 | const char *con_id) |
| 82 | { |
| 83 | return false; |
| 84 | } |
Mika Westerberg | 664e3e5 | 2014-01-08 12:40:54 +0200 | [diff] [blame] | 85 | #endif |
| 86 | |
Alexandre Courbot | f01d907 | 2014-05-17 14:54:50 +0900 | [diff] [blame] | 87 | struct gpio_desc *of_get_named_gpiod_flags(struct device_node *np, |
| 88 | const char *list_name, int index, enum of_gpio_flags *flags); |
| 89 | |
Alexandre Courbot | 1bd6b60 | 2014-07-22 16:17:41 +0900 | [diff] [blame] | 90 | struct gpio_desc *gpiochip_get_desc(struct gpio_chip *chip, u16 hwnum); |
| 91 | |
Alexandre Courbot | 0eb4c6c | 2014-07-01 14:45:15 +0900 | [diff] [blame] | 92 | extern struct spinlock gpio_lock; |
| 93 | extern struct list_head gpio_chips; |
| 94 | |
| 95 | struct gpio_desc { |
| 96 | struct gpio_chip *chip; |
| 97 | unsigned long flags; |
| 98 | /* flag symbols are bit numbers */ |
| 99 | #define FLAG_REQUESTED 0 |
| 100 | #define FLAG_IS_OUT 1 |
| 101 | #define FLAG_EXPORT 2 /* protected by sysfs_lock */ |
| 102 | #define FLAG_SYSFS 3 /* exported via /sys/class/gpio/control */ |
Alexandre Courbot | 0eb4c6c | 2014-07-01 14:45:15 +0900 | [diff] [blame] | 103 | #define FLAG_ACTIVE_LOW 6 /* value has active low */ |
| 104 | #define FLAG_OPEN_DRAIN 7 /* Gpio is open drain type */ |
| 105 | #define FLAG_OPEN_SOURCE 8 /* Gpio is open source type */ |
| 106 | #define FLAG_USED_AS_IRQ 9 /* GPIO is connected to an IRQ */ |
Benoit Parrot | f625d46 | 2015-02-02 11:44:44 -0600 | [diff] [blame] | 107 | #define FLAG_IS_HOGGED 11 /* GPIO is hogged */ |
Alexandre Courbot | 0eb4c6c | 2014-07-01 14:45:15 +0900 | [diff] [blame] | 108 | |
Markus Pargmann | c0017ed | 2015-08-14 16:10:59 +0200 | [diff] [blame] | 109 | /* Connection label */ |
Alexandre Courbot | 0eb4c6c | 2014-07-01 14:45:15 +0900 | [diff] [blame] | 110 | const char *label; |
Markus Pargmann | c0017ed | 2015-08-14 16:10:59 +0200 | [diff] [blame] | 111 | /* Name of the GPIO */ |
| 112 | const char *name; |
Alexandre Courbot | 0eb4c6c | 2014-07-01 14:45:15 +0900 | [diff] [blame] | 113 | }; |
| 114 | |
| 115 | int gpiod_request(struct gpio_desc *desc, const char *label); |
| 116 | void gpiod_free(struct gpio_desc *desc); |
Benoit Parrot | f625d46 | 2015-02-02 11:44:44 -0600 | [diff] [blame] | 117 | int gpiod_hog(struct gpio_desc *desc, const char *name, |
| 118 | unsigned long lflags, enum gpiod_flags dflags); |
Alexandre Courbot | 0eb4c6c | 2014-07-01 14:45:15 +0900 | [diff] [blame] | 119 | |
| 120 | /* |
| 121 | * Return the GPIO number of the passed descriptor relative to its chip |
| 122 | */ |
| 123 | static int __maybe_unused gpio_chip_hwgpio(const struct gpio_desc *desc) |
| 124 | { |
| 125 | return desc - &desc->chip->desc[0]; |
| 126 | } |
| 127 | |
| 128 | /* With descriptor prefix */ |
| 129 | |
| 130 | #define gpiod_emerg(desc, fmt, ...) \ |
| 131 | pr_emerg("gpio-%d (%s): " fmt, desc_to_gpio(desc), desc->label ? : "?",\ |
| 132 | ##__VA_ARGS__) |
| 133 | #define gpiod_crit(desc, fmt, ...) \ |
| 134 | pr_crit("gpio-%d (%s): " fmt, desc_to_gpio(desc), desc->label ? : "?", \ |
| 135 | ##__VA_ARGS__) |
| 136 | #define gpiod_err(desc, fmt, ...) \ |
| 137 | pr_err("gpio-%d (%s): " fmt, desc_to_gpio(desc), desc->label ? : "?", \ |
| 138 | ##__VA_ARGS__) |
| 139 | #define gpiod_warn(desc, fmt, ...) \ |
| 140 | pr_warn("gpio-%d (%s): " fmt, desc_to_gpio(desc), desc->label ? : "?", \ |
| 141 | ##__VA_ARGS__) |
| 142 | #define gpiod_info(desc, fmt, ...) \ |
| 143 | pr_info("gpio-%d (%s): " fmt, desc_to_gpio(desc), desc->label ? : "?", \ |
| 144 | ##__VA_ARGS__) |
| 145 | #define gpiod_dbg(desc, fmt, ...) \ |
| 146 | pr_debug("gpio-%d (%s): " fmt, desc_to_gpio(desc), desc->label ? : "?",\ |
| 147 | ##__VA_ARGS__) |
| 148 | |
| 149 | /* With chip prefix */ |
| 150 | |
| 151 | #define chip_emerg(chip, fmt, ...) \ |
| 152 | pr_emerg("GPIO chip %s: " fmt, chip->label, ##__VA_ARGS__) |
| 153 | #define chip_crit(chip, fmt, ...) \ |
| 154 | pr_crit("GPIO chip %s: " fmt, chip->label, ##__VA_ARGS__) |
| 155 | #define chip_err(chip, fmt, ...) \ |
| 156 | pr_err("GPIO chip %s: " fmt, chip->label, ##__VA_ARGS__) |
| 157 | #define chip_warn(chip, fmt, ...) \ |
| 158 | pr_warn("GPIO chip %s: " fmt, chip->label, ##__VA_ARGS__) |
| 159 | #define chip_info(chip, fmt, ...) \ |
| 160 | pr_info("GPIO chip %s: " fmt, chip->label, ##__VA_ARGS__) |
| 161 | #define chip_dbg(chip, fmt, ...) \ |
| 162 | pr_debug("GPIO chip %s: " fmt, chip->label, ##__VA_ARGS__) |
| 163 | |
| 164 | #ifdef CONFIG_GPIO_SYSFS |
| 165 | |
Johan Hovold | 426577b | 2015-05-04 17:10:32 +0200 | [diff] [blame] | 166 | int gpiochip_sysfs_register(struct gpio_chip *chip); |
| 167 | void gpiochip_sysfs_unregister(struct gpio_chip *chip); |
Alexandre Courbot | 0eb4c6c | 2014-07-01 14:45:15 +0900 | [diff] [blame] | 168 | |
| 169 | #else |
| 170 | |
Johan Hovold | 426577b | 2015-05-04 17:10:32 +0200 | [diff] [blame] | 171 | static inline int gpiochip_sysfs_register(struct gpio_chip *chip) |
Alexandre Courbot | 0eb4c6c | 2014-07-01 14:45:15 +0900 | [diff] [blame] | 172 | { |
| 173 | return 0; |
| 174 | } |
| 175 | |
Johan Hovold | 426577b | 2015-05-04 17:10:32 +0200 | [diff] [blame] | 176 | static inline void gpiochip_sysfs_unregister(struct gpio_chip *chip) |
Alexandre Courbot | 0eb4c6c | 2014-07-01 14:45:15 +0900 | [diff] [blame] | 177 | { |
| 178 | } |
| 179 | |
| 180 | #endif /* CONFIG_GPIO_SYSFS */ |
| 181 | |
Mika Westerberg | 664e3e5 | 2014-01-08 12:40:54 +0200 | [diff] [blame] | 182 | #endif /* GPIOLIB_H */ |