blob: 5ac3b88a2e0acff769aad50376b92ce15a0272dd [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;
19
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);
Mika Westerberg664e3e52014-01-08 12:40:54 +020051#else
52static inline void acpi_gpiochip_add(struct gpio_chip *chip) { }
53static inline void acpi_gpiochip_remove(struct gpio_chip *chip) { }
Mika Westerberg5ccff852014-01-08 12:40:56 +020054
Mika Westerbergafa82fa2014-07-25 09:54:48 +030055static inline void
56acpi_gpiochip_request_interrupts(struct gpio_chip *chip) { }
57
58static inline void
59acpi_gpiochip_free_interrupts(struct gpio_chip *chip) { }
60
Mika Westerberg5ccff852014-01-08 12:40:56 +020061static inline struct gpio_desc *
Mika Westerberg0d9a6932014-10-29 15:41:01 +010062acpi_get_gpiod_by_index(struct acpi_device *adev, const char *propname,
63 int index, struct acpi_gpio_info *info)
Mika Westerberg5ccff852014-01-08 12:40:56 +020064{
65 return ERR_PTR(-ENOSYS);
66}
Rafael J. Wysocki504a3372015-08-27 04:42:33 +020067static inline struct gpio_desc *
68acpi_node_get_gpiod(struct fwnode_handle *fwnode, const char *propname,
69 int index, struct acpi_gpio_info *info)
70{
71 return ERR_PTR(-ENXIO);
72}
Rojhalat Ibrahim66858522015-02-11 17:27:58 +010073static inline int acpi_gpio_count(struct device *dev, const char *con_id)
74{
75 return -ENODEV;
76}
Mika Westerberg664e3e52014-01-08 12:40:54 +020077#endif
78
Alexandre Courbotf01d9072014-05-17 14:54:50 +090079struct gpio_desc *of_get_named_gpiod_flags(struct device_node *np,
80 const char *list_name, int index, enum of_gpio_flags *flags);
81
Alexandre Courbot1bd6b602014-07-22 16:17:41 +090082struct gpio_desc *gpiochip_get_desc(struct gpio_chip *chip, u16 hwnum);
83
Alexandre Courbot0eb4c6c2014-07-01 14:45:15 +090084extern struct spinlock gpio_lock;
85extern struct list_head gpio_chips;
86
87struct gpio_desc {
88 struct gpio_chip *chip;
89 unsigned long flags;
90/* flag symbols are bit numbers */
91#define FLAG_REQUESTED 0
92#define FLAG_IS_OUT 1
93#define FLAG_EXPORT 2 /* protected by sysfs_lock */
94#define FLAG_SYSFS 3 /* exported via /sys/class/gpio/control */
Alexandre Courbot0eb4c6c2014-07-01 14:45:15 +090095#define FLAG_ACTIVE_LOW 6 /* value has active low */
96#define FLAG_OPEN_DRAIN 7 /* Gpio is open drain type */
97#define FLAG_OPEN_SOURCE 8 /* Gpio is open source type */
98#define FLAG_USED_AS_IRQ 9 /* GPIO is connected to an IRQ */
Benoit Parrotf625d462015-02-02 11:44:44 -060099#define FLAG_IS_HOGGED 11 /* GPIO is hogged */
Alexandre Courbot0eb4c6c2014-07-01 14:45:15 +0900100
Markus Pargmannc0017ed2015-08-14 16:10:59 +0200101 /* Connection label */
Alexandre Courbot0eb4c6c2014-07-01 14:45:15 +0900102 const char *label;
Markus Pargmannc0017ed2015-08-14 16:10:59 +0200103 /* Name of the GPIO */
104 const char *name;
Alexandre Courbot0eb4c6c2014-07-01 14:45:15 +0900105};
106
107int gpiod_request(struct gpio_desc *desc, const char *label);
108void gpiod_free(struct gpio_desc *desc);
Benoit Parrotf625d462015-02-02 11:44:44 -0600109int gpiod_hog(struct gpio_desc *desc, const char *name,
110 unsigned long lflags, enum gpiod_flags dflags);
Alexandre Courbot0eb4c6c2014-07-01 14:45:15 +0900111
112/*
113 * Return the GPIO number of the passed descriptor relative to its chip
114 */
115static int __maybe_unused gpio_chip_hwgpio(const struct gpio_desc *desc)
116{
117 return desc - &desc->chip->desc[0];
118}
119
120/* With descriptor prefix */
121
122#define gpiod_emerg(desc, fmt, ...) \
123 pr_emerg("gpio-%d (%s): " fmt, desc_to_gpio(desc), desc->label ? : "?",\
124 ##__VA_ARGS__)
125#define gpiod_crit(desc, fmt, ...) \
126 pr_crit("gpio-%d (%s): " fmt, desc_to_gpio(desc), desc->label ? : "?", \
127 ##__VA_ARGS__)
128#define gpiod_err(desc, fmt, ...) \
129 pr_err("gpio-%d (%s): " fmt, desc_to_gpio(desc), desc->label ? : "?", \
130 ##__VA_ARGS__)
131#define gpiod_warn(desc, fmt, ...) \
132 pr_warn("gpio-%d (%s): " fmt, desc_to_gpio(desc), desc->label ? : "?", \
133 ##__VA_ARGS__)
134#define gpiod_info(desc, fmt, ...) \
135 pr_info("gpio-%d (%s): " fmt, desc_to_gpio(desc), desc->label ? : "?", \
136 ##__VA_ARGS__)
137#define gpiod_dbg(desc, fmt, ...) \
138 pr_debug("gpio-%d (%s): " fmt, desc_to_gpio(desc), desc->label ? : "?",\
139 ##__VA_ARGS__)
140
141/* With chip prefix */
142
143#define chip_emerg(chip, fmt, ...) \
144 pr_emerg("GPIO chip %s: " fmt, chip->label, ##__VA_ARGS__)
145#define chip_crit(chip, fmt, ...) \
146 pr_crit("GPIO chip %s: " fmt, chip->label, ##__VA_ARGS__)
147#define chip_err(chip, fmt, ...) \
148 pr_err("GPIO chip %s: " fmt, chip->label, ##__VA_ARGS__)
149#define chip_warn(chip, fmt, ...) \
150 pr_warn("GPIO chip %s: " fmt, chip->label, ##__VA_ARGS__)
151#define chip_info(chip, fmt, ...) \
152 pr_info("GPIO chip %s: " fmt, chip->label, ##__VA_ARGS__)
153#define chip_dbg(chip, fmt, ...) \
154 pr_debug("GPIO chip %s: " fmt, chip->label, ##__VA_ARGS__)
155
156#ifdef CONFIG_GPIO_SYSFS
157
Johan Hovold426577b2015-05-04 17:10:32 +0200158int gpiochip_sysfs_register(struct gpio_chip *chip);
159void gpiochip_sysfs_unregister(struct gpio_chip *chip);
Alexandre Courbot0eb4c6c2014-07-01 14:45:15 +0900160
161#else
162
Johan Hovold426577b2015-05-04 17:10:32 +0200163static inline int gpiochip_sysfs_register(struct gpio_chip *chip)
Alexandre Courbot0eb4c6c2014-07-01 14:45:15 +0900164{
165 return 0;
166}
167
Johan Hovold426577b2015-05-04 17:10:32 +0200168static inline void gpiochip_sysfs_unregister(struct gpio_chip *chip)
Alexandre Courbot0eb4c6c2014-07-01 14:45:15 +0900169{
170}
171
172#endif /* CONFIG_GPIO_SYSFS */
173
Mika Westerberg664e3e52014-01-08 12:40:54 +0200174#endif /* GPIOLIB_H */