blob: 1a4103dd38df4695a35a316d4903fabc872aaec0 [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
Mika Westerberg664e3e52014-01-08 12:40:54 +020030#ifdef CONFIG_ACPI
31void acpi_gpiochip_add(struct gpio_chip *chip);
32void acpi_gpiochip_remove(struct gpio_chip *chip);
Mika Westerberg5ccff852014-01-08 12:40:56 +020033
34struct gpio_desc *acpi_get_gpiod_by_index(struct device *dev, int index,
35 struct acpi_gpio_info *info);
Mika Westerberg664e3e52014-01-08 12:40:54 +020036#else
37static inline void acpi_gpiochip_add(struct gpio_chip *chip) { }
38static inline void acpi_gpiochip_remove(struct gpio_chip *chip) { }
Mika Westerberg5ccff852014-01-08 12:40:56 +020039
40static inline struct gpio_desc *
41acpi_get_gpiod_by_index(struct device *dev, int index,
42 struct acpi_gpio_info *info)
43{
44 return ERR_PTR(-ENOSYS);
45}
Mika Westerberg664e3e52014-01-08 12:40:54 +020046#endif
47
Mika Westerberg77c2d792014-03-10 14:54:50 +020048int gpiochip_request_own_desc(struct gpio_desc *desc, const char *label);
49void gpiochip_free_own_desc(struct gpio_desc *desc);
50
Alexandre Courbotf01d9072014-05-17 14:54:50 +090051struct gpio_desc *of_get_named_gpiod_flags(struct device_node *np,
52 const char *list_name, int index, enum of_gpio_flags *flags);
53
Mika Westerberg664e3e52014-01-08 12:40:54 +020054#endif /* GPIOLIB_H */