blob: 99ed3b00ffe916f65229e343c1ba5ebefd9f83b7 [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
Mika Westerberg5ccff852014-01-08 12:40:56 +020015#include <linux/err.h>
16#include <linux/device.h>
17
Alexandre Courbotf01d9072014-05-17 14:54:50 +090018enum of_gpio_flags;
Linus Walleij29ab8752015-12-08 22:45:10 +010019enum gpiod_flags;
Rafael J. Wysockice793482015-03-16 23:49:03 +010020struct acpi_device;
21
Mika Westerberg5ccff852014-01-08 12:40:56 +020022/**
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 */
27struct acpi_gpio_info {
28 bool gpioint;
Christophe RICARD52044722015-12-23 23:25:34 +010029 int polarity;
30 int triggering;
Mika Westerberg5ccff852014-01-08 12:40:56 +020031};
32
Rojhalat Ibrahim7f2e5532015-02-11 17:27:55 +010033/* gpio suffixes used for ACPI and device tree lookup */
34static const char * const gpio_suffixes[] = { "gpios", "gpio" };
35
Mika Westerberg664e3e52014-01-08 12:40:54 +020036#ifdef CONFIG_ACPI
37void acpi_gpiochip_add(struct gpio_chip *chip);
38void acpi_gpiochip_remove(struct gpio_chip *chip);
Mika Westerberg5ccff852014-01-08 12:40:56 +020039
Mika Westerbergafa82fa2014-07-25 09:54:48 +030040void acpi_gpiochip_request_interrupts(struct gpio_chip *chip);
41void acpi_gpiochip_free_interrupts(struct gpio_chip *chip);
42
Mika Westerberg0d9a6932014-10-29 15:41:01 +010043struct gpio_desc *acpi_get_gpiod_by_index(struct acpi_device *adev,
44 const char *propname, int index,
Mika Westerberg5ccff852014-01-08 12:40:56 +020045 struct acpi_gpio_info *info);
Rafael J. Wysocki504a3372015-08-27 04:42:33 +020046struct gpio_desc *acpi_node_get_gpiod(struct fwnode_handle *fwnode,
47 const char *propname, int index,
48 struct acpi_gpio_info *info);
Rojhalat Ibrahim66858522015-02-11 17:27:58 +010049
50int acpi_gpio_count(struct device *dev, const char *con_id);
Dmitry Torokhov10cf4892015-11-11 11:45:30 -080051
52bool acpi_can_fallback_to_crs(struct acpi_device *adev, const char *con_id);
Mika Westerberg664e3e52014-01-08 12:40:54 +020053#else
54static inline void acpi_gpiochip_add(struct gpio_chip *chip) { }
55static inline void acpi_gpiochip_remove(struct gpio_chip *chip) { }
Mika Westerberg5ccff852014-01-08 12:40:56 +020056
Mika Westerbergafa82fa2014-07-25 09:54:48 +030057static inline void
58acpi_gpiochip_request_interrupts(struct gpio_chip *chip) { }
59
60static inline void
61acpi_gpiochip_free_interrupts(struct gpio_chip *chip) { }
62
Mika Westerberg5ccff852014-01-08 12:40:56 +020063static inline struct gpio_desc *
Mika Westerberg0d9a6932014-10-29 15:41:01 +010064acpi_get_gpiod_by_index(struct acpi_device *adev, const char *propname,
65 int index, struct acpi_gpio_info *info)
Mika Westerberg5ccff852014-01-08 12:40:56 +020066{
67 return ERR_PTR(-ENOSYS);
68}
Rafael J. Wysocki504a3372015-08-27 04:42:33 +020069static inline struct gpio_desc *
70acpi_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 Ibrahim66858522015-02-11 17:27:58 +010075static inline int acpi_gpio_count(struct device *dev, const char *con_id)
76{
77 return -ENODEV;
78}
Dmitry Torokhov10cf4892015-11-11 11:45:30 -080079
80static inline bool acpi_can_fallback_to_crs(struct acpi_device *adev,
81 const char *con_id)
82{
83 return false;
84}
Mika Westerberg664e3e52014-01-08 12:40:54 +020085#endif
86
Alexandre Courbotf01d9072014-05-17 14:54:50 +090087struct 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 Courbot1bd6b602014-07-22 16:17:41 +090090struct gpio_desc *gpiochip_get_desc(struct gpio_chip *chip, u16 hwnum);
91
Alexandre Courbot0eb4c6c2014-07-01 14:45:15 +090092extern struct spinlock gpio_lock;
93extern struct list_head gpio_chips;
94
95struct 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 Courbot0eb4c6c2014-07-01 14:45:15 +0900103#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 Parrotf625d462015-02-02 11:44:44 -0600107#define FLAG_IS_HOGGED 11 /* GPIO is hogged */
Alexandre Courbot0eb4c6c2014-07-01 14:45:15 +0900108
Markus Pargmannc0017ed2015-08-14 16:10:59 +0200109 /* Connection label */
Alexandre Courbot0eb4c6c2014-07-01 14:45:15 +0900110 const char *label;
Markus Pargmannc0017ed2015-08-14 16:10:59 +0200111 /* Name of the GPIO */
112 const char *name;
Alexandre Courbot0eb4c6c2014-07-01 14:45:15 +0900113};
114
115int gpiod_request(struct gpio_desc *desc, const char *label);
116void gpiod_free(struct gpio_desc *desc);
Benoit Parrotf625d462015-02-02 11:44:44 -0600117int gpiod_hog(struct gpio_desc *desc, const char *name,
118 unsigned long lflags, enum gpiod_flags dflags);
Alexandre Courbot0eb4c6c2014-07-01 14:45:15 +0900119
120/*
121 * Return the GPIO number of the passed descriptor relative to its chip
122 */
123static 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 Hovold426577b2015-05-04 17:10:32 +0200166int gpiochip_sysfs_register(struct gpio_chip *chip);
167void gpiochip_sysfs_unregister(struct gpio_chip *chip);
Alexandre Courbot0eb4c6c2014-07-01 14:45:15 +0900168
169#else
170
Johan Hovold426577b2015-05-04 17:10:32 +0200171static inline int gpiochip_sysfs_register(struct gpio_chip *chip)
Alexandre Courbot0eb4c6c2014-07-01 14:45:15 +0900172{
173 return 0;
174}
175
Johan Hovold426577b2015-05-04 17:10:32 +0200176static inline void gpiochip_sysfs_unregister(struct gpio_chip *chip)
Alexandre Courbot0eb4c6c2014-07-01 14:45:15 +0900177{
178}
179
180#endif /* CONFIG_GPIO_SYSFS */
181
Mika Westerberg664e3e52014-01-08 12:40:54 +0200182#endif /* GPIOLIB_H */