Skip to content

Commit

Permalink
ARM: OMAP: make legacy gpio request/free calls superfluous
Browse files Browse the repository at this point in the history
Clean up OMAP GPIO request/free functions

 - Rename and declare static OMAP specific GPIO request/free functions
 - Register them into gpiolib as chip-specific hooks
 - Add omap_request_gpio/omap_free_gpio wrappers for existing code not
   converted yet to use gpiolib

Signed-off-by: Jarkko Nikula <jarkko.nikula@nokia.com>
[ dbrownell@users.sourceforge.net: remove needless check_gpio() calls ]
Signed-off-by: David Brownell <dbrownell@users.sourceforge.net>
Signed-off-by: Tony Lindgren <tony@atomide.com>
  • Loading branch information
Jarkko Nikula authored and Tony Lindgren committed Dec 11, 2008
1 parent 15f74b0 commit 3ff164e
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 34 deletions.
43 changes: 11 additions & 32 deletions arch/arm/plat-omap/gpio.c
Original file line number Diff line number Diff line change
Expand Up @@ -886,74 +886,54 @@ static int gpio_wake_enable(unsigned int irq, unsigned int enable)
return retval;
}

int omap_request_gpio(int gpio)
static int omap_gpio_request(struct gpio_chip *chip, unsigned offset)
{
struct gpio_bank *bank;
struct gpio_bank *bank = container_of(chip, struct gpio_bank, chip);
unsigned long flags;
int status;

if (check_gpio(gpio) < 0)
return -EINVAL;

status = gpio_request(gpio, NULL);
if (status < 0)
return status;

bank = get_gpio_bank(gpio);
spin_lock_irqsave(&bank->lock, flags);

/* Set trigger to none. You need to enable the desired trigger with
* request_irq() or set_irq_type().
*/
_set_gpio_triggering(bank, get_gpio_index(gpio), IRQ_TYPE_NONE);
_set_gpio_triggering(bank, offset, IRQ_TYPE_NONE);

#ifdef CONFIG_ARCH_OMAP15XX
if (bank->method == METHOD_GPIO_1510) {
void __iomem *reg;

/* Claim the pin for MPU */
reg = bank->base + OMAP1510_GPIO_PIN_CONTROL;
__raw_writel(__raw_readl(reg) | (1 << get_gpio_index(gpio)), reg);
__raw_writel(__raw_readl(reg) | (1 << offset), reg);
}
#endif
spin_unlock_irqrestore(&bank->lock, flags);

return 0;
}

void omap_free_gpio(int gpio)
static void omap_gpio_free(struct gpio_chip *chip, unsigned offset)
{
struct gpio_bank *bank;
struct gpio_bank *bank = container_of(chip, struct gpio_bank, chip);
unsigned long flags;

if (check_gpio(gpio) < 0)
return;
bank = get_gpio_bank(gpio);
spin_lock_irqsave(&bank->lock, flags);
if (unlikely(!gpiochip_is_requested(&bank->chip,
get_gpio_index(gpio)))) {
spin_unlock_irqrestore(&bank->lock, flags);
printk(KERN_ERR "omap-gpio: GPIO %d wasn't reserved!\n", gpio);
dump_stack();
return;
}
#ifdef CONFIG_ARCH_OMAP16XX
if (bank->method == METHOD_GPIO_1610) {
/* Disable wake-up during idle for dynamic tick */
void __iomem *reg = bank->base + OMAP1610_GPIO_CLEAR_WAKEUPENA;
__raw_writel(1 << get_gpio_index(gpio), reg);
__raw_writel(1 << offset, reg);
}
#endif
#if defined(CONFIG_ARCH_OMAP24XX) || defined(CONFIG_ARCH_OMAP34XX)
if (bank->method == METHOD_GPIO_24XX) {
/* Disable wake-up during idle for dynamic tick */
void __iomem *reg = bank->base + OMAP24XX_GPIO_CLEARWKUENA;
__raw_writel(1 << get_gpio_index(gpio), reg);
__raw_writel(1 << offset, reg);
}
#endif
_reset_gpio(bank, gpio);
_reset_gpio(bank, bank->chip.base + offset);
spin_unlock_irqrestore(&bank->lock, flags);
gpio_free(gpio);
}

/*
Expand Down Expand Up @@ -1458,6 +1438,8 @@ static int __init _omap_gpio_init(void)
/* REVISIT eventually switch from OMAP-specific gpio structs
* over to the generic ones
*/
bank->chip.request = omap_gpio_request;
bank->chip.free = omap_gpio_free;
bank->chip.direction_input = gpio_input;
bank->chip.get = gpio_get;
bank->chip.direction_output = gpio_output;
Expand Down Expand Up @@ -1726,9 +1708,6 @@ static int __init omap_gpio_sysinit(void)
return ret;
}

EXPORT_SYMBOL(omap_request_gpio);
EXPORT_SYMBOL(omap_free_gpio);

arch_initcall(omap_gpio_sysinit);


Expand Down
12 changes: 10 additions & 2 deletions arch/arm/plat-omap/include/mach/gpio.h
Original file line number Diff line number Diff line change
Expand Up @@ -71,8 +71,6 @@
IH_GPIO_BASE + (nr))

extern int omap_gpio_init(void); /* Call from board init only */
extern int omap_request_gpio(int gpio);
extern void omap_free_gpio(int gpio);
extern void omap2_gpio_prepare_for_retention(void);
extern void omap2_gpio_resume_after_retention(void);
extern void omap_set_gpio_debounce(int gpio, int enable);
Expand All @@ -89,6 +87,16 @@ extern void omap_set_gpio_debounce_time(int gpio, int enable);
#include <linux/errno.h>
#include <asm-generic/gpio.h>

static inline int omap_request_gpio(int gpio)
{
return gpio_request(gpio, "FIXME");
}

static inline void omap_free_gpio(int gpio)
{
gpio_free(gpio);
}

static inline int gpio_get_value(unsigned gpio)
{
return __gpio_get_value(gpio);
Expand Down

0 comments on commit 3ff164e

Please sign in to comment.