mirror of
https://gitflic.ru/project/npo_rbs/repka-os_kernel.git
synced 2025-04-18 02:04:28 +00:00
56 lines
1.4 KiB
C
56 lines
1.4 KiB
C
/* SPDX-License-Identifier: GPL-2.0+ */
|
|
/*
|
|
* OF helpers for the GPIO API
|
|
*
|
|
* Copyright (c) 2007-2008 MontaVista Software, Inc.
|
|
*
|
|
* Author: Anton Vorontsov <avorontsov@ru.mvista.com>
|
|
*/
|
|
|
|
#ifndef __LINUX_OF_GPIO_H
|
|
#define __LINUX_OF_GPIO_H
|
|
|
|
#include <linux/compiler.h>
|
|
#include <linux/gpio/driver.h>
|
|
#include <linux/gpio.h> /* FIXME: Shouldn't be here */
|
|
#include <linux/of.h>
|
|
|
|
/*
|
|
* This is Linux-specific flags. By default controllers' and Linux' mapping
|
|
* match, but GPIO controllers are free to translate their own flags to
|
|
* Linux-specific in their .xlate callback. Though, 1:1 mapping is recommended.
|
|
*/
|
|
enum of_gpio_flags {
|
|
OF_GPIO_ACTIVE_LOW = 0x1,
|
|
OF_GPIO_SINGLE_ENDED = 0x2,
|
|
OF_GPIO_OPEN_DRAIN = 0x4,
|
|
OF_GPIO_TRANSITORY = 0x8,
|
|
OF_GPIO_PULL_UP = 0x10,
|
|
OF_GPIO_PULL_DOWN = 0x20,
|
|
OF_GPIO_PULL_DISABLE = 0x40,
|
|
};
|
|
|
|
struct device_node;
|
|
|
|
#ifdef CONFIG_OF_GPIO
|
|
|
|
extern int of_get_named_gpio(const struct device_node *np,
|
|
const char *list_name, int index);
|
|
|
|
extern int of_get_named_gpio_flags(const struct device_node *np,
|
|
const char *list_name, int index, enum of_gpio_flags *flags);
|
|
|
|
#else /* CONFIG_OF_GPIO */
|
|
|
|
#include <linux/errno.h>
|
|
|
|
/* Drivers may not strictly depend on the GPIO support, so let them link. */
|
|
static inline int of_get_named_gpio(const struct device_node *np,
|
|
const char *propname, int index)
|
|
{
|
|
return -ENOSYS;
|
|
}
|
|
|
|
#endif /* CONFIG_OF_GPIO */
|
|
|
|
#endif /* __LINUX_OF_GPIO_H */
|