2008-01-30 15:33:36 +03:00
|
|
|
#ifndef _RDC321X_GPIO_H
|
|
|
|
#define _RDC321X_GPIO_H
|
|
|
|
|
|
|
|
extern int rdc_gpio_get_value(unsigned gpio);
|
|
|
|
extern void rdc_gpio_set_value(unsigned gpio, int value);
|
|
|
|
extern int rdc_gpio_direction_input(unsigned gpio);
|
|
|
|
extern int rdc_gpio_direction_output(unsigned gpio, int value);
|
2008-03-27 00:39:15 +03:00
|
|
|
extern int rdc_gpio_request(unsigned gpio, const char *label);
|
|
|
|
extern void rdc_gpio_free(unsigned gpio);
|
|
|
|
extern void __init rdc321x_gpio_setup(void);
|
2008-01-30 15:33:36 +03:00
|
|
|
|
|
|
|
/* Wrappers for the arch-neutral GPIO API */
|
|
|
|
|
|
|
|
static inline int gpio_request(unsigned gpio, const char *label)
|
|
|
|
{
|
2008-03-27 00:39:15 +03:00
|
|
|
return rdc_gpio_request(gpio, label);
|
2008-01-30 15:33:36 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
static inline void gpio_free(unsigned gpio)
|
|
|
|
{
|
2008-03-27 00:39:15 +03:00
|
|
|
rdc_gpio_free(gpio);
|
2008-01-30 15:33:36 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
static inline int gpio_direction_input(unsigned gpio)
|
|
|
|
{
|
|
|
|
return rdc_gpio_direction_input(gpio);
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline int gpio_direction_output(unsigned gpio, int value)
|
|
|
|
{
|
|
|
|
return rdc_gpio_direction_output(gpio, value);
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline int gpio_get_value(unsigned gpio)
|
|
|
|
{
|
|
|
|
return rdc_gpio_get_value(gpio);
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline void gpio_set_value(unsigned gpio, int value)
|
|
|
|
{
|
|
|
|
rdc_gpio_set_value(gpio, value);
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline int gpio_to_irq(unsigned gpio)
|
|
|
|
{
|
|
|
|
return gpio;
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline int irq_to_gpio(unsigned irq)
|
|
|
|
{
|
|
|
|
return irq;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* For cansleep */
|
|
|
|
#include <asm-generic/gpio.h>
|
|
|
|
|
|
|
|
#endif /* _RDC321X_GPIO_H_ */
|