blob: 1524ba0ca99dca53e6c3ff4c3e589591c93eb1ee [file] [log] [blame]
Mika Westerberg664e3e52014-01-08 12:40:54 +02001/*
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
Linus Walleijff2b1352015-10-20 11:10:38 +020015#include <linux/gpio/driver.h>
Mika Westerberg5ccff852014-01-08 12:40:56 +020016#include <linux/err.h>
17#include <linux/device.h>
Linus Walleijff2b1352015-10-20 11:10:38 +020018#include <linux/module.h>
19#include <linux/cdev.h>
Mika Westerberg5ccff852014-01-08 12:40:56 +020020
Alexandre Courbotf01d9072014-05-17 14:54:50 +090021enum of_gpio_flags;
Linus Walleij29ab8752015-12-08 22:45:10 +010022enum gpiod_flags;
Rafael J. Wysockice793482015-03-16 23:49:03 +010023struct acpi_device;
24
Mika Westerberg5ccff852014-01-08 12:40:56 +020025/**
Linus Walleijff2b1352015-10-20 11:10:38 +020026 * struct gpio_device - internal state container for GPIO devices
27 * @id: numerical ID number for the GPIO chip
28 * @dev: the GPIO device struct
Linus Walleij3c702e92015-10-21 15:29:53 +020029 * @chrdev: character device for the GPIO device
Linus Walleijff2b1352015-10-20 11:10:38 +020030 * @owner: helps prevent removal of modules exporting active GPIOs
31 * @chip: pointer to the corresponding gpiochip, holding static
32 * data for this device
33 * @list: links gpio_device:s together for traversal
34 *
35 * This state container holds most of the runtime variable data
36 * for a GPIO device and can hold references and live on after the
37 * GPIO chip has been removed, if it is still being used from
38 * userspace.
39 */
40struct gpio_device {
41 int id;
42 struct device dev;
Linus Walleij3c702e92015-10-21 15:29:53 +020043 struct cdev chrdev;
Linus Walleijff2b1352015-10-20 11:10:38 +020044 struct module *owner;
45 struct gpio_chip *chip;
46 struct list_head list;
47};
48
49/**
Mika Westerberg5ccff852014-01-08 12:40:56 +020050 * struct acpi_gpio_info - ACPI GPIO specific information
51 * @gpioint: if %true this GPIO is of type GpioInt otherwise type is GpioIo
52 * @active_low: in case of @gpioint, the pin is active low
53 */
54struct acpi_gpio_info {
55 bool gpioint;
Christophe RICARD52044722015-12-23 23:25:34 +010056 int polarity;
57 int triggering;
Mika Westerberg5ccff852014-01-08 12:40:56 +020058};
59
Rojhalat Ibrahim7f2e5532015-02-11 17:27:55 +010060/* gpio suffixes used for ACPI and device tree lookup */
61static const char * const gpio_suffixes[] = { "gpios", "gpio" };
62
Mika Westerberg664e3e52014-01-08 12:40:54 +020063#ifdef CONFIG_ACPI
64void acpi_gpiochip_add(struct gpio_chip *chip);
65void acpi_gpiochip_remove(struct gpio_chip *chip);
Mika Westerberg5ccff852014-01-08 12:40:56 +020066
Mika Westerbergafa82fa2014-07-25 09:54:48 +030067void acpi_gpiochip_request_interrupts(struct gpio_chip *chip);
68void acpi_gpiochip_free_interrupts(struct gpio_chip *chip);
69
Mika Westerberg0d9a6932014-10-29 15:41:01 +010070struct gpio_desc *acpi_get_gpiod_by_index(struct acpi_device *adev,
71 const char *propname, int index,
Mika Westerberg5ccff852014-01-08 12:40:56 +020072 struct acpi_gpio_info *info);
Rafael J. Wysocki504a3372015-08-27 04:42:33 +020073struct gpio_desc *acpi_node_get_gpiod(struct fwnode_handle *fwnode,
74 const char *propname, int index,
75 struct acpi_gpio_info *info);
Rojhalat Ibrahim66858522015-02-11 17:27:58 +010076
77int acpi_gpio_count(struct device *dev, const char *con_id);
Dmitry Torokhov10cf4892015-11-11 11:45:30 -080078
79bool acpi_can_fallback_to_crs(struct acpi_device *adev, const char *con_id);
Mika Westerberg664e3e52014-01-08 12:40:54 +020080#else
81static inline void acpi_gpiochip_add(struct gpio_chip *chip) { }
82static inline void acpi_gpiochip_remove(struct gpio_chip *chip) { }
Mika Westerberg5ccff852014-01-08 12:40:56 +020083
Mika Westerbergafa82fa2014-07-25 09:54:48 +030084static inline void
85acpi_gpiochip_request_interrupts(struct gpio_chip *chip) { }
86
87static inline void
88acpi_gpiochip_free_interrupts(struct gpio_chip *chip) { }
89
Mika Westerberg5ccff852014-01-08 12:40:56 +020090static inline struct gpio_desc *
Mika Westerberg0d9a6932014-10-29 15:41:01 +010091acpi_get_gpiod_by_index(struct acpi_device *adev, const char *propname,
92 int index, struct acpi_gpio_info *info)
Mika Westerberg5ccff852014-01-08 12:40:56 +020093{
94 return ERR_PTR(-ENOSYS);
95}
Rafael J. Wysocki504a3372015-08-27 04:42:33 +020096static inline struct gpio_desc *
97acpi_node_get_gpiod(struct fwnode_handle *fwnode, const char *propname,
98 int index, struct acpi_gpio_info *info)
99{
100 return ERR_PTR(-ENXIO);
101}
Rojhalat Ibrahim66858522015-02-11 17:27:58 +0100102static inline int acpi_gpio_count(struct device *dev, const char *con_id)
103{
104 return -ENODEV;
105}
Dmitry Torokhov10cf4892015-11-11 11:45:30 -0800106
107static inline bool acpi_can_fallback_to_crs(struct acpi_device *adev,
108 const char *con_id)
109{
110 return false;
111}
Mika Westerberg664e3e52014-01-08 12:40:54 +0200112#endif
113
Alexandre Courbotf01d9072014-05-17 14:54:50 +0900114struct gpio_desc *of_get_named_gpiod_flags(struct device_node *np,
115 const char *list_name, int index, enum of_gpio_flags *flags);
116
Alexandre Courbot1bd6b602014-07-22 16:17:41 +0900117struct gpio_desc *gpiochip_get_desc(struct gpio_chip *chip, u16 hwnum);
118
Alexandre Courbot0eb4c6c2014-07-01 14:45:15 +0900119extern struct spinlock gpio_lock;
Linus Walleijff2b1352015-10-20 11:10:38 +0200120extern struct list_head gpio_devices;
Alexandre Courbot0eb4c6c2014-07-01 14:45:15 +0900121
122struct gpio_desc {
123 struct gpio_chip *chip;
124 unsigned long flags;
125/* flag symbols are bit numbers */
126#define FLAG_REQUESTED 0
127#define FLAG_IS_OUT 1
128#define FLAG_EXPORT 2 /* protected by sysfs_lock */
129#define FLAG_SYSFS 3 /* exported via /sys/class/gpio/control */
Alexandre Courbot0eb4c6c2014-07-01 14:45:15 +0900130#define FLAG_ACTIVE_LOW 6 /* value has active low */
131#define FLAG_OPEN_DRAIN 7 /* Gpio is open drain type */
132#define FLAG_OPEN_SOURCE 8 /* Gpio is open source type */
133#define FLAG_USED_AS_IRQ 9 /* GPIO is connected to an IRQ */
Benoit Parrotf625d462015-02-02 11:44:44 -0600134#define FLAG_IS_HOGGED 11 /* GPIO is hogged */
Alexandre Courbot0eb4c6c2014-07-01 14:45:15 +0900135
Markus Pargmannc0017ed2015-08-14 16:10:59 +0200136 /* Connection label */
Alexandre Courbot0eb4c6c2014-07-01 14:45:15 +0900137 const char *label;
Markus Pargmannc0017ed2015-08-14 16:10:59 +0200138 /* Name of the GPIO */
139 const char *name;
Alexandre Courbot0eb4c6c2014-07-01 14:45:15 +0900140};
141
142int gpiod_request(struct gpio_desc *desc, const char *label);
143void gpiod_free(struct gpio_desc *desc);
Benoit Parrotf625d462015-02-02 11:44:44 -0600144int gpiod_hog(struct gpio_desc *desc, const char *name,
145 unsigned long lflags, enum gpiod_flags dflags);
Alexandre Courbot0eb4c6c2014-07-01 14:45:15 +0900146
147/*
148 * Return the GPIO number of the passed descriptor relative to its chip
149 */
150static int __maybe_unused gpio_chip_hwgpio(const struct gpio_desc *desc)
151{
152 return desc - &desc->chip->desc[0];
153}
154
155/* With descriptor prefix */
156
157#define gpiod_emerg(desc, fmt, ...) \
158 pr_emerg("gpio-%d (%s): " fmt, desc_to_gpio(desc), desc->label ? : "?",\
159 ##__VA_ARGS__)
160#define gpiod_crit(desc, fmt, ...) \
161 pr_crit("gpio-%d (%s): " fmt, desc_to_gpio(desc), desc->label ? : "?", \
162 ##__VA_ARGS__)
163#define gpiod_err(desc, fmt, ...) \
164 pr_err("gpio-%d (%s): " fmt, desc_to_gpio(desc), desc->label ? : "?", \
165 ##__VA_ARGS__)
166#define gpiod_warn(desc, fmt, ...) \
167 pr_warn("gpio-%d (%s): " fmt, desc_to_gpio(desc), desc->label ? : "?", \
168 ##__VA_ARGS__)
169#define gpiod_info(desc, fmt, ...) \
170 pr_info("gpio-%d (%s): " fmt, desc_to_gpio(desc), desc->label ? : "?", \
171 ##__VA_ARGS__)
172#define gpiod_dbg(desc, fmt, ...) \
173 pr_debug("gpio-%d (%s): " fmt, desc_to_gpio(desc), desc->label ? : "?",\
174 ##__VA_ARGS__)
175
176/* With chip prefix */
177
178#define chip_emerg(chip, fmt, ...) \
Linus Walleij34ffd852015-10-20 11:31:54 +0200179 dev_emerg(&chip->gpiodev->dev, "(%s): " fmt, chip->label, ##__VA_ARGS__)
Alexandre Courbot0eb4c6c2014-07-01 14:45:15 +0900180#define chip_crit(chip, fmt, ...) \
Linus Walleij34ffd852015-10-20 11:31:54 +0200181 dev_crit(&chip->gpiodev->dev, "(%s): " fmt, chip->label, ##__VA_ARGS__)
Alexandre Courbot0eb4c6c2014-07-01 14:45:15 +0900182#define chip_err(chip, fmt, ...) \
Linus Walleij34ffd852015-10-20 11:31:54 +0200183 dev_err(&chip->gpiodev->dev, "(%s): " fmt, chip->label, ##__VA_ARGS__)
Alexandre Courbot0eb4c6c2014-07-01 14:45:15 +0900184#define chip_warn(chip, fmt, ...) \
Linus Walleij34ffd852015-10-20 11:31:54 +0200185 dev_warn(&chip->gpiodev->dev, "(%s): " fmt, chip->label, ##__VA_ARGS__)
Alexandre Courbot0eb4c6c2014-07-01 14:45:15 +0900186#define chip_info(chip, fmt, ...) \
Linus Walleij34ffd852015-10-20 11:31:54 +0200187 dev_info(&chip->gpiodev->dev, "(%s): " fmt, chip->label, ##__VA_ARGS__)
Alexandre Courbot0eb4c6c2014-07-01 14:45:15 +0900188#define chip_dbg(chip, fmt, ...) \
Linus Walleij34ffd852015-10-20 11:31:54 +0200189 dev_dbg(&chip->gpiodev->dev, "(%s): " fmt, chip->label, ##__VA_ARGS__)
Alexandre Courbot0eb4c6c2014-07-01 14:45:15 +0900190
191#ifdef CONFIG_GPIO_SYSFS
192
Johan Hovold426577b2015-05-04 17:10:32 +0200193int gpiochip_sysfs_register(struct gpio_chip *chip);
194void gpiochip_sysfs_unregister(struct gpio_chip *chip);
Alexandre Courbot0eb4c6c2014-07-01 14:45:15 +0900195
196#else
197
Johan Hovold426577b2015-05-04 17:10:32 +0200198static inline int gpiochip_sysfs_register(struct gpio_chip *chip)
Alexandre Courbot0eb4c6c2014-07-01 14:45:15 +0900199{
200 return 0;
201}
202
Johan Hovold426577b2015-05-04 17:10:32 +0200203static inline void gpiochip_sysfs_unregister(struct gpio_chip *chip)
Alexandre Courbot0eb4c6c2014-07-01 14:45:15 +0900204{
205}
206
207#endif /* CONFIG_GPIO_SYSFS */
208
Mika Westerberg664e3e52014-01-08 12:40:54 +0200209#endif /* GPIOLIB_H */