blob: 205dd12659c04973be9338c8e7a8923bf93c0b54 [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
Mika Westerberg5ccff852014-01-08 12:40:56 +020020/**
21 * struct acpi_gpio_info - ACPI GPIO specific information
22 * @gpioint: if %true this GPIO is of type GpioInt otherwise type is GpioIo
23 * @active_low: in case of @gpioint, the pin is active low
24 */
25struct acpi_gpio_info {
26 bool gpioint;
27 bool active_low;
28};
29
Rojhalat Ibrahim7f2e5532015-02-11 17:27:55 +010030/* gpio suffixes used for ACPI and device tree lookup */
31static const char * const gpio_suffixes[] = { "gpios", "gpio" };
32
Mika Westerberg664e3e52014-01-08 12:40:54 +020033#ifdef CONFIG_ACPI
34void acpi_gpiochip_add(struct gpio_chip *chip);
35void acpi_gpiochip_remove(struct gpio_chip *chip);
Mika Westerberg5ccff852014-01-08 12:40:56 +020036
Mika Westerbergafa82fa2014-07-25 09:54:48 +030037void acpi_gpiochip_request_interrupts(struct gpio_chip *chip);
38void acpi_gpiochip_free_interrupts(struct gpio_chip *chip);
39
Mika Westerberg0d9a6932014-10-29 15:41:01 +010040struct gpio_desc *acpi_get_gpiod_by_index(struct acpi_device *adev,
41 const char *propname, int index,
Mika Westerberg5ccff852014-01-08 12:40:56 +020042 struct acpi_gpio_info *info);
Mika Westerberg664e3e52014-01-08 12:40:54 +020043#else
44static inline void acpi_gpiochip_add(struct gpio_chip *chip) { }
45static inline void acpi_gpiochip_remove(struct gpio_chip *chip) { }
Mika Westerberg5ccff852014-01-08 12:40:56 +020046
Mika Westerbergafa82fa2014-07-25 09:54:48 +030047static inline void
48acpi_gpiochip_request_interrupts(struct gpio_chip *chip) { }
49
50static inline void
51acpi_gpiochip_free_interrupts(struct gpio_chip *chip) { }
52
Mika Westerberg5ccff852014-01-08 12:40:56 +020053static inline struct gpio_desc *
Mika Westerberg0d9a6932014-10-29 15:41:01 +010054acpi_get_gpiod_by_index(struct acpi_device *adev, const char *propname,
55 int index, struct acpi_gpio_info *info)
Mika Westerberg5ccff852014-01-08 12:40:56 +020056{
57 return ERR_PTR(-ENOSYS);
58}
Mika Westerberg664e3e52014-01-08 12:40:54 +020059#endif
60
Alexandre Courbotf01d9072014-05-17 14:54:50 +090061struct gpio_desc *of_get_named_gpiod_flags(struct device_node *np,
62 const char *list_name, int index, enum of_gpio_flags *flags);
63
Alexandre Courbot1bd6b602014-07-22 16:17:41 +090064struct gpio_desc *gpiochip_get_desc(struct gpio_chip *chip, u16 hwnum);
65
Alexandre Courbot0eb4c6c2014-07-01 14:45:15 +090066extern struct spinlock gpio_lock;
67extern struct list_head gpio_chips;
68
69struct gpio_desc {
70 struct gpio_chip *chip;
71 unsigned long flags;
72/* flag symbols are bit numbers */
73#define FLAG_REQUESTED 0
74#define FLAG_IS_OUT 1
75#define FLAG_EXPORT 2 /* protected by sysfs_lock */
76#define FLAG_SYSFS 3 /* exported via /sys/class/gpio/control */
77#define FLAG_TRIG_FALL 4 /* trigger on falling edge */
78#define FLAG_TRIG_RISE 5 /* trigger on rising edge */
79#define FLAG_ACTIVE_LOW 6 /* value has active low */
80#define FLAG_OPEN_DRAIN 7 /* Gpio is open drain type */
81#define FLAG_OPEN_SOURCE 8 /* Gpio is open source type */
82#define FLAG_USED_AS_IRQ 9 /* GPIO is connected to an IRQ */
Johan Hovoldebbeba12015-01-13 13:00:06 +010083#define FLAG_SYSFS_DIR 10 /* show sysfs direction attribute */
Benoit Parrotf625d462015-02-02 11:44:44 -060084#define FLAG_IS_HOGGED 11 /* GPIO is hogged */
Alexandre Courbot0eb4c6c2014-07-01 14:45:15 +090085
86#define ID_SHIFT 16 /* add new flags before this one */
87
88#define GPIO_FLAGS_MASK ((1 << ID_SHIFT) - 1)
89#define GPIO_TRIGGER_MASK (BIT(FLAG_TRIG_FALL) | BIT(FLAG_TRIG_RISE))
90
91 const char *label;
92};
93
94int gpiod_request(struct gpio_desc *desc, const char *label);
95void gpiod_free(struct gpio_desc *desc);
Benoit Parrotf625d462015-02-02 11:44:44 -060096int gpiod_hog(struct gpio_desc *desc, const char *name,
97 unsigned long lflags, enum gpiod_flags dflags);
Alexandre Courbot0eb4c6c2014-07-01 14:45:15 +090098
99/*
100 * Return the GPIO number of the passed descriptor relative to its chip
101 */
102static int __maybe_unused gpio_chip_hwgpio(const struct gpio_desc *desc)
103{
104 return desc - &desc->chip->desc[0];
105}
106
107/* With descriptor prefix */
108
109#define gpiod_emerg(desc, fmt, ...) \
110 pr_emerg("gpio-%d (%s): " fmt, desc_to_gpio(desc), desc->label ? : "?",\
111 ##__VA_ARGS__)
112#define gpiod_crit(desc, fmt, ...) \
113 pr_crit("gpio-%d (%s): " fmt, desc_to_gpio(desc), desc->label ? : "?", \
114 ##__VA_ARGS__)
115#define gpiod_err(desc, fmt, ...) \
116 pr_err("gpio-%d (%s): " fmt, desc_to_gpio(desc), desc->label ? : "?", \
117 ##__VA_ARGS__)
118#define gpiod_warn(desc, fmt, ...) \
119 pr_warn("gpio-%d (%s): " fmt, desc_to_gpio(desc), desc->label ? : "?", \
120 ##__VA_ARGS__)
121#define gpiod_info(desc, fmt, ...) \
122 pr_info("gpio-%d (%s): " fmt, desc_to_gpio(desc), desc->label ? : "?", \
123 ##__VA_ARGS__)
124#define gpiod_dbg(desc, fmt, ...) \
125 pr_debug("gpio-%d (%s): " fmt, desc_to_gpio(desc), desc->label ? : "?",\
126 ##__VA_ARGS__)
127
128/* With chip prefix */
129
130#define chip_emerg(chip, fmt, ...) \
131 pr_emerg("GPIO chip %s: " fmt, chip->label, ##__VA_ARGS__)
132#define chip_crit(chip, fmt, ...) \
133 pr_crit("GPIO chip %s: " fmt, chip->label, ##__VA_ARGS__)
134#define chip_err(chip, fmt, ...) \
135 pr_err("GPIO chip %s: " fmt, chip->label, ##__VA_ARGS__)
136#define chip_warn(chip, fmt, ...) \
137 pr_warn("GPIO chip %s: " fmt, chip->label, ##__VA_ARGS__)
138#define chip_info(chip, fmt, ...) \
139 pr_info("GPIO chip %s: " fmt, chip->label, ##__VA_ARGS__)
140#define chip_dbg(chip, fmt, ...) \
141 pr_debug("GPIO chip %s: " fmt, chip->label, ##__VA_ARGS__)
142
143#ifdef CONFIG_GPIO_SYSFS
144
145int gpiochip_export(struct gpio_chip *chip);
146void gpiochip_unexport(struct gpio_chip *chip);
147
148#else
149
150static inline int gpiochip_export(struct gpio_chip *chip)
151{
152 return 0;
153}
154
155static inline void gpiochip_unexport(struct gpio_chip *chip)
156{
157}
158
159#endif /* CONFIG_GPIO_SYSFS */
160
Mika Westerberg664e3e52014-01-08 12:40:54 +0200161#endif /* GPIOLIB_H */