2007-08-20 06:58:12 +07:00
|
|
|
/*
|
|
|
|
* include/asm-sh/gpio.h
|
|
|
|
*
|
2008-10-08 18:41:43 +07:00
|
|
|
* Generic GPIO API and pinmux table support for SuperH.
|
2007-08-20 06:58:12 +07:00
|
|
|
*
|
2008-10-08 18:41:43 +07:00
|
|
|
* Copyright (c) 2008 Magnus Damm
|
2007-08-20 06:58:12 +07:00
|
|
|
*
|
|
|
|
* This file is subject to the terms and conditions of the GNU General Public
|
|
|
|
* License. See the file "COPYING" in the main directory of this archive
|
|
|
|
* for more details.
|
|
|
|
*/
|
|
|
|
#ifndef __ASM_SH_GPIO_H
|
|
|
|
#define __ASM_SH_GPIO_H
|
|
|
|
|
2008-10-23 10:37:20 +07:00
|
|
|
#include <linux/kernel.h>
|
2008-10-21 15:48:40 +07:00
|
|
|
#include <linux/errno.h>
|
|
|
|
|
2007-08-20 06:58:12 +07:00
|
|
|
#if defined(CONFIG_CPU_SH3)
|
2008-07-29 06:09:44 +07:00
|
|
|
#include <cpu/gpio.h>
|
2007-08-20 06:58:12 +07:00
|
|
|
#endif
|
|
|
|
|
2008-12-25 16:17:34 +07:00
|
|
|
#define ARCH_NR_GPIOS 512
|
2012-12-16 05:51:53 +07:00
|
|
|
#include <asm-generic/gpio.h>
|
2008-12-25 16:17:34 +07:00
|
|
|
|
|
|
|
#ifdef CONFIG_GPIOLIB
|
|
|
|
|
|
|
|
static inline int gpio_get_value(unsigned gpio)
|
|
|
|
{
|
|
|
|
return __gpio_get_value(gpio);
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline void gpio_set_value(unsigned gpio, int value)
|
|
|
|
{
|
|
|
|
__gpio_set_value(gpio, value);
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline int gpio_cansleep(unsigned gpio)
|
|
|
|
{
|
|
|
|
return __gpio_cansleep(gpio);
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline int gpio_to_irq(unsigned gpio)
|
|
|
|
{
|
2010-10-03 01:55:39 +07:00
|
|
|
return __gpio_to_irq(gpio);
|
2008-12-25 16:17:34 +07:00
|
|
|
}
|
|
|
|
|
|
|
|
static inline int irq_to_gpio(unsigned int irq)
|
|
|
|
{
|
2010-10-03 01:55:39 +07:00
|
|
|
return -ENOSYS;
|
2008-12-25 16:17:34 +07:00
|
|
|
}
|
|
|
|
|
|
|
|
#endif /* CONFIG_GPIOLIB */
|
|
|
|
|
2007-08-20 06:58:12 +07:00
|
|
|
#endif /* __ASM_SH_GPIO_H */
|