gpio: add parameter to allow the use named gpios
[linux-2.6-block.git] / drivers / gpio / gpiolib.h
CommitLineData
664e3e5a
MW
1/*
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
5ccff852
MW
15#include <linux/err.h>
16#include <linux/device.h>
17
f01d9075
AC
18enum of_gpio_flags;
19
5ccff852
MW
20/**
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
664e3e5a
MW
30#ifdef CONFIG_ACPI
31void acpi_gpiochip_add(struct gpio_chip *chip);
32void acpi_gpiochip_remove(struct gpio_chip *chip);
5ccff852 33
afa82fab
MW
34void acpi_gpiochip_request_interrupts(struct gpio_chip *chip);
35void acpi_gpiochip_free_interrupts(struct gpio_chip *chip);
36
0d9a693c
MW
37struct gpio_desc *acpi_get_gpiod_by_index(struct acpi_device *adev,
38 const char *propname, int index,
5ccff852 39 struct acpi_gpio_info *info);
664e3e5a
MW
40#else
41static inline void acpi_gpiochip_add(struct gpio_chip *chip) { }
42static inline void acpi_gpiochip_remove(struct gpio_chip *chip) { }
5ccff852 43
afa82fab
MW
44static inline void
45acpi_gpiochip_request_interrupts(struct gpio_chip *chip) { }
46
47static inline void
48acpi_gpiochip_free_interrupts(struct gpio_chip *chip) { }
49
5ccff852 50static inline struct gpio_desc *
0d9a693c
MW
51acpi_get_gpiod_by_index(struct acpi_device *adev, const char *propname,
52 int index, struct acpi_gpio_info *info)
5ccff852
MW
53{
54 return ERR_PTR(-ENOSYS);
55}
664e3e5a
MW
56#endif
57
f01d9075
AC
58struct gpio_desc *of_get_named_gpiod_flags(struct device_node *np,
59 const char *list_name, int index, enum of_gpio_flags *flags);
60
1bd6b601
AC
61struct gpio_desc *gpiochip_get_desc(struct gpio_chip *chip, u16 hwnum);
62
0eb4c6c2
AC
63extern struct spinlock gpio_lock;
64extern struct list_head gpio_chips;
65
66struct gpio_desc {
67 struct gpio_chip *chip;
68 unsigned long flags;
69/* flag symbols are bit numbers */
70#define FLAG_REQUESTED 0
71#define FLAG_IS_OUT 1
72#define FLAG_EXPORT 2 /* protected by sysfs_lock */
73#define FLAG_SYSFS 3 /* exported via /sys/class/gpio/control */
74#define FLAG_TRIG_FALL 4 /* trigger on falling edge */
75#define FLAG_TRIG_RISE 5 /* trigger on rising edge */
76#define FLAG_ACTIVE_LOW 6 /* value has active low */
77#define FLAG_OPEN_DRAIN 7 /* Gpio is open drain type */
78#define FLAG_OPEN_SOURCE 8 /* Gpio is open source type */
79#define FLAG_USED_AS_IRQ 9 /* GPIO is connected to an IRQ */
ebbeba12 80#define FLAG_SYSFS_DIR 10 /* show sysfs direction attribute */
f625d460 81#define FLAG_IS_HOGGED 11 /* GPIO is hogged */
0eb4c6c2
AC
82
83#define ID_SHIFT 16 /* add new flags before this one */
84
85#define GPIO_FLAGS_MASK ((1 << ID_SHIFT) - 1)
86#define GPIO_TRIGGER_MASK (BIT(FLAG_TRIG_FALL) | BIT(FLAG_TRIG_RISE))
87
88 const char *label;
89};
90
91int gpiod_request(struct gpio_desc *desc, const char *label);
92void gpiod_free(struct gpio_desc *desc);
f625d460
BP
93int gpiod_hog(struct gpio_desc *desc, const char *name,
94 unsigned long lflags, enum gpiod_flags dflags);
0eb4c6c2
AC
95
96/*
97 * Return the GPIO number of the passed descriptor relative to its chip
98 */
99static int __maybe_unused gpio_chip_hwgpio(const struct gpio_desc *desc)
100{
101 return desc - &desc->chip->desc[0];
102}
103
104/* With descriptor prefix */
105
106#define gpiod_emerg(desc, fmt, ...) \
107 pr_emerg("gpio-%d (%s): " fmt, desc_to_gpio(desc), desc->label ? : "?",\
108 ##__VA_ARGS__)
109#define gpiod_crit(desc, fmt, ...) \
110 pr_crit("gpio-%d (%s): " fmt, desc_to_gpio(desc), desc->label ? : "?", \
111 ##__VA_ARGS__)
112#define gpiod_err(desc, fmt, ...) \
113 pr_err("gpio-%d (%s): " fmt, desc_to_gpio(desc), desc->label ? : "?", \
114 ##__VA_ARGS__)
115#define gpiod_warn(desc, fmt, ...) \
116 pr_warn("gpio-%d (%s): " fmt, desc_to_gpio(desc), desc->label ? : "?", \
117 ##__VA_ARGS__)
118#define gpiod_info(desc, fmt, ...) \
119 pr_info("gpio-%d (%s): " fmt, desc_to_gpio(desc), desc->label ? : "?", \
120 ##__VA_ARGS__)
121#define gpiod_dbg(desc, fmt, ...) \
122 pr_debug("gpio-%d (%s): " fmt, desc_to_gpio(desc), desc->label ? : "?",\
123 ##__VA_ARGS__)
124
125/* With chip prefix */
126
127#define chip_emerg(chip, fmt, ...) \
128 pr_emerg("GPIO chip %s: " fmt, chip->label, ##__VA_ARGS__)
129#define chip_crit(chip, fmt, ...) \
130 pr_crit("GPIO chip %s: " fmt, chip->label, ##__VA_ARGS__)
131#define chip_err(chip, fmt, ...) \
132 pr_err("GPIO chip %s: " fmt, chip->label, ##__VA_ARGS__)
133#define chip_warn(chip, fmt, ...) \
134 pr_warn("GPIO chip %s: " fmt, chip->label, ##__VA_ARGS__)
135#define chip_info(chip, fmt, ...) \
136 pr_info("GPIO chip %s: " fmt, chip->label, ##__VA_ARGS__)
137#define chip_dbg(chip, fmt, ...) \
138 pr_debug("GPIO chip %s: " fmt, chip->label, ##__VA_ARGS__)
139
140#ifdef CONFIG_GPIO_SYSFS
141
142int gpiochip_export(struct gpio_chip *chip);
143void gpiochip_unexport(struct gpio_chip *chip);
144
145#else
146
147static inline int gpiochip_export(struct gpio_chip *chip)
148{
149 return 0;
150}
151
152static inline void gpiochip_unexport(struct gpio_chip *chip)
153{
154}
155
156#endif /* CONFIG_GPIO_SYSFS */
157
664e3e5a 158#endif /* GPIOLIB_H */