blob: bf343004b0085c4bcc21243a63195cb875ca636a [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;
29 bool active_low;
30};
31
Rojhalat Ibrahim7f2e5532015-02-11 17:27:55 +010032/* gpio suffixes used for ACPI and device tree lookup */
33static const char * const gpio_suffixes[] = { "gpios", "gpio" };
34
Mika Westerberg664e3e52014-01-08 12:40:54 +020035#ifdef CONFIG_ACPI
36void acpi_gpiochip_add(struct gpio_chip *chip);
37void acpi_gpiochip_remove(struct gpio_chip *chip);
Mika Westerberg5ccff852014-01-08 12:40:56 +020038
Mika Westerbergafa82fa2014-07-25 09:54:48 +030039void acpi_gpiochip_request_interrupts(struct gpio_chip *chip);
40void acpi_gpiochip_free_interrupts(struct gpio_chip *chip);
41
Mika Westerberg0d9a6932014-10-29 15:41:01 +010042struct gpio_desc *acpi_get_gpiod_by_index(struct acpi_device *adev,
43 const char *propname, int index,
Mika Westerberg5ccff852014-01-08 12:40:56 +020044 struct acpi_gpio_info *info);
Rojhalat Ibrahim66858522015-02-11 17:27:58 +010045
46int acpi_gpio_count(struct device *dev, const char *con_id);
Mika Westerberg664e3e52014-01-08 12:40:54 +020047#else
48static inline void acpi_gpiochip_add(struct gpio_chip *chip) { }
49static inline void acpi_gpiochip_remove(struct gpio_chip *chip) { }
Mika Westerberg5ccff852014-01-08 12:40:56 +020050
Mika Westerbergafa82fa2014-07-25 09:54:48 +030051static inline void
52acpi_gpiochip_request_interrupts(struct gpio_chip *chip) { }
53
54static inline void
55acpi_gpiochip_free_interrupts(struct gpio_chip *chip) { }
56
Mika Westerberg5ccff852014-01-08 12:40:56 +020057static inline struct gpio_desc *
Mika Westerberg0d9a6932014-10-29 15:41:01 +010058acpi_get_gpiod_by_index(struct acpi_device *adev, const char *propname,
59 int index, struct acpi_gpio_info *info)
Mika Westerberg5ccff852014-01-08 12:40:56 +020060{
61 return ERR_PTR(-ENOSYS);
62}
Rojhalat Ibrahim66858522015-02-11 17:27:58 +010063
64static inline int acpi_gpio_count(struct device *dev, const char *con_id)
65{
66 return -ENODEV;
67}
Mika Westerberg664e3e52014-01-08 12:40:54 +020068#endif
69
Alexandre Courbotf01d9072014-05-17 14:54:50 +090070struct gpio_desc *of_get_named_gpiod_flags(struct device_node *np,
71 const char *list_name, int index, enum of_gpio_flags *flags);
72
Alexandre Courbot1bd6b602014-07-22 16:17:41 +090073struct gpio_desc *gpiochip_get_desc(struct gpio_chip *chip, u16 hwnum);
74
Alexandre Courbot0eb4c6c2014-07-01 14:45:15 +090075extern struct spinlock gpio_lock;
76extern struct list_head gpio_chips;
77
78struct gpio_desc {
79 struct gpio_chip *chip;
80 unsigned long flags;
81/* flag symbols are bit numbers */
82#define FLAG_REQUESTED 0
83#define FLAG_IS_OUT 1
84#define FLAG_EXPORT 2 /* protected by sysfs_lock */
85#define FLAG_SYSFS 3 /* exported via /sys/class/gpio/control */
Alexandre Courbot0eb4c6c2014-07-01 14:45:15 +090086#define FLAG_ACTIVE_LOW 6 /* value has active low */
87#define FLAG_OPEN_DRAIN 7 /* Gpio is open drain type */
88#define FLAG_OPEN_SOURCE 8 /* Gpio is open source type */
89#define FLAG_USED_AS_IRQ 9 /* GPIO is connected to an IRQ */
Benoit Parrotf625d462015-02-02 11:44:44 -060090#define FLAG_IS_HOGGED 11 /* GPIO is hogged */
Alexandre Courbot0eb4c6c2014-07-01 14:45:15 +090091
Alexandre Courbot0eb4c6c2014-07-01 14:45:15 +090092 const char *label;
93};
94
95int gpiod_request(struct gpio_desc *desc, const char *label);
96void gpiod_free(struct gpio_desc *desc);
Benoit Parrotf625d462015-02-02 11:44:44 -060097int gpiod_hog(struct gpio_desc *desc, const char *name,
98 unsigned long lflags, enum gpiod_flags dflags);
Alexandre Courbot0eb4c6c2014-07-01 14:45:15 +090099
100/*
101 * Return the GPIO number of the passed descriptor relative to its chip
102 */
103static int __maybe_unused gpio_chip_hwgpio(const struct gpio_desc *desc)
104{
105 return desc - &desc->chip->desc[0];
106}
107
108/* With descriptor prefix */
109
110#define gpiod_emerg(desc, fmt, ...) \
111 pr_emerg("gpio-%d (%s): " fmt, desc_to_gpio(desc), desc->label ? : "?",\
112 ##__VA_ARGS__)
113#define gpiod_crit(desc, fmt, ...) \
114 pr_crit("gpio-%d (%s): " fmt, desc_to_gpio(desc), desc->label ? : "?", \
115 ##__VA_ARGS__)
116#define gpiod_err(desc, fmt, ...) \
117 pr_err("gpio-%d (%s): " fmt, desc_to_gpio(desc), desc->label ? : "?", \
118 ##__VA_ARGS__)
119#define gpiod_warn(desc, fmt, ...) \
120 pr_warn("gpio-%d (%s): " fmt, desc_to_gpio(desc), desc->label ? : "?", \
121 ##__VA_ARGS__)
122#define gpiod_info(desc, fmt, ...) \
123 pr_info("gpio-%d (%s): " fmt, desc_to_gpio(desc), desc->label ? : "?", \
124 ##__VA_ARGS__)
125#define gpiod_dbg(desc, fmt, ...) \
126 pr_debug("gpio-%d (%s): " fmt, desc_to_gpio(desc), desc->label ? : "?",\
127 ##__VA_ARGS__)
128
129/* With chip prefix */
130
131#define chip_emerg(chip, fmt, ...) \
132 pr_emerg("GPIO chip %s: " fmt, chip->label, ##__VA_ARGS__)
133#define chip_crit(chip, fmt, ...) \
134 pr_crit("GPIO chip %s: " fmt, chip->label, ##__VA_ARGS__)
135#define chip_err(chip, fmt, ...) \
136 pr_err("GPIO chip %s: " fmt, chip->label, ##__VA_ARGS__)
137#define chip_warn(chip, fmt, ...) \
138 pr_warn("GPIO chip %s: " fmt, chip->label, ##__VA_ARGS__)
139#define chip_info(chip, fmt, ...) \
140 pr_info("GPIO chip %s: " fmt, chip->label, ##__VA_ARGS__)
141#define chip_dbg(chip, fmt, ...) \
142 pr_debug("GPIO chip %s: " fmt, chip->label, ##__VA_ARGS__)
143
144#ifdef CONFIG_GPIO_SYSFS
145
Johan Hovold426577b2015-05-04 17:10:32 +0200146int gpiochip_sysfs_register(struct gpio_chip *chip);
147void gpiochip_sysfs_unregister(struct gpio_chip *chip);
Alexandre Courbot0eb4c6c2014-07-01 14:45:15 +0900148
149#else
150
Johan Hovold426577b2015-05-04 17:10:32 +0200151static inline int gpiochip_sysfs_register(struct gpio_chip *chip)
Alexandre Courbot0eb4c6c2014-07-01 14:45:15 +0900152{
153 return 0;
154}
155
Johan Hovold426577b2015-05-04 17:10:32 +0200156static inline void gpiochip_sysfs_unregister(struct gpio_chip *chip)
Alexandre Courbot0eb4c6c2014-07-01 14:45:15 +0900157{
158}
159
160#endif /* CONFIG_GPIO_SYSFS */
161
Mika Westerberg664e3e52014-01-08 12:40:54 +0200162#endif /* GPIOLIB_H */