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