2005-07-10 18:58:15 +00:00
|
|
|
/*
|
|
|
|
* linux/arch/arm/plat-omap/gpio.c
|
|
|
|
*
|
|
|
|
* Support functions for OMAP GPIO
|
|
|
|
*
|
2005-09-07 16:20:26 +00:00
|
|
|
* Copyright (C) 2003-2005 Nokia Corporation
|
2007-10-19 21:21:04 +00:00
|
|
|
* Written by Juha Yrjölä <juha.yrjola@nokia.com>
|
2005-07-10 18:58:15 +00:00
|
|
|
*
|
2009-05-28 21:16:04 +00:00
|
|
|
* Copyright (C) 2009 Texas Instruments
|
|
|
|
* Added OMAP4 support - Santosh Shilimkar <santosh.shilimkar@ti.com>
|
|
|
|
*
|
2005-07-10 18:58:15 +00:00
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License version 2 as
|
|
|
|
* published by the Free Software Foundation.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <linux/init.h>
|
|
|
|
#include <linux/module.h>
|
|
|
|
#include <linux/interrupt.h>
|
2005-09-07 16:20:26 +00:00
|
|
|
#include <linux/sysdev.h>
|
|
|
|
#include <linux/err.h>
|
2006-01-07 16:15:52 +00:00
|
|
|
#include <linux/clk.h>
|
2008-09-06 11:10:45 +00:00
|
|
|
#include <linux/io.h>
|
2010-12-08 00:26:57 +00:00
|
|
|
#include <linux/slab.h>
|
|
|
|
#include <linux/pm_runtime.h>
|
2005-07-10 18:58:15 +00:00
|
|
|
|
2008-08-05 15:14:15 +00:00
|
|
|
#include <mach/hardware.h>
|
2005-07-10 18:58:15 +00:00
|
|
|
#include <asm/irq.h>
|
2008-08-05 15:14:15 +00:00
|
|
|
#include <mach/irqs.h>
|
|
|
|
#include <mach/gpio.h>
|
2005-07-10 18:58:15 +00:00
|
|
|
#include <asm/mach/irq.h>
|
|
|
|
|
|
|
|
/*
|
|
|
|
* OMAP1510 GPIO registers
|
|
|
|
*/
|
|
|
|
#define OMAP1510_GPIO_DATA_INPUT 0x00
|
|
|
|
#define OMAP1510_GPIO_DATA_OUTPUT 0x04
|
|
|
|
#define OMAP1510_GPIO_DIR_CONTROL 0x08
|
|
|
|
#define OMAP1510_GPIO_INT_CONTROL 0x0c
|
|
|
|
#define OMAP1510_GPIO_INT_MASK 0x10
|
|
|
|
#define OMAP1510_GPIO_INT_STATUS 0x14
|
|
|
|
#define OMAP1510_GPIO_PIN_CONTROL 0x18
|
|
|
|
|
|
|
|
#define OMAP1510_IH_GPIO_BASE 64
|
|
|
|
|
|
|
|
/*
|
|
|
|
* OMAP1610 specific GPIO registers
|
|
|
|
*/
|
|
|
|
#define OMAP1610_GPIO_REVISION 0x0000
|
|
|
|
#define OMAP1610_GPIO_SYSCONFIG 0x0010
|
|
|
|
#define OMAP1610_GPIO_SYSSTATUS 0x0014
|
|
|
|
#define OMAP1610_GPIO_IRQSTATUS1 0x0018
|
|
|
|
#define OMAP1610_GPIO_IRQENABLE1 0x001c
|
2005-09-07 16:20:26 +00:00
|
|
|
#define OMAP1610_GPIO_WAKEUPENABLE 0x0028
|
2005-07-10 18:58:15 +00:00
|
|
|
#define OMAP1610_GPIO_DATAIN 0x002c
|
|
|
|
#define OMAP1610_GPIO_DATAOUT 0x0030
|
|
|
|
#define OMAP1610_GPIO_DIRECTION 0x0034
|
|
|
|
#define OMAP1610_GPIO_EDGE_CTRL1 0x0038
|
|
|
|
#define OMAP1610_GPIO_EDGE_CTRL2 0x003c
|
|
|
|
#define OMAP1610_GPIO_CLEAR_IRQENABLE1 0x009c
|
2005-09-07 16:20:26 +00:00
|
|
|
#define OMAP1610_GPIO_CLEAR_WAKEUPENA 0x00a8
|
2005-07-10 18:58:15 +00:00
|
|
|
#define OMAP1610_GPIO_CLEAR_DATAOUT 0x00b0
|
|
|
|
#define OMAP1610_GPIO_SET_IRQENABLE1 0x00dc
|
2005-09-07 16:20:26 +00:00
|
|
|
#define OMAP1610_GPIO_SET_WAKEUPENA 0x00e8
|
2005-07-10 18:58:15 +00:00
|
|
|
#define OMAP1610_GPIO_SET_DATAOUT 0x00f0
|
|
|
|
|
|
|
|
/*
|
2009-09-22 09:02:58 +00:00
|
|
|
* OMAP7XX specific GPIO registers
|
2005-07-10 18:58:15 +00:00
|
|
|
*/
|
2009-09-22 09:02:58 +00:00
|
|
|
#define OMAP7XX_GPIO_DATA_INPUT 0x00
|
|
|
|
#define OMAP7XX_GPIO_DATA_OUTPUT 0x04
|
|
|
|
#define OMAP7XX_GPIO_DIR_CONTROL 0x08
|
|
|
|
#define OMAP7XX_GPIO_INT_CONTROL 0x0c
|
|
|
|
#define OMAP7XX_GPIO_INT_MASK 0x10
|
|
|
|
#define OMAP7XX_GPIO_INT_STATUS 0x14
|
2005-07-10 18:58:15 +00:00
|
|
|
|
2005-09-07 16:20:26 +00:00
|
|
|
/*
|
2010-12-08 00:26:57 +00:00
|
|
|
* omap2+ specific GPIO registers
|
2005-09-07 16:20:26 +00:00
|
|
|
*/
|
|
|
|
#define OMAP24XX_GPIO_REVISION 0x0000
|
|
|
|
#define OMAP24XX_GPIO_IRQSTATUS1 0x0018
|
2006-09-25 09:41:46 +00:00
|
|
|
#define OMAP24XX_GPIO_IRQSTATUS2 0x0028
|
|
|
|
#define OMAP24XX_GPIO_IRQENABLE2 0x002c
|
2005-09-07 16:20:26 +00:00
|
|
|
#define OMAP24XX_GPIO_IRQENABLE1 0x001c
|
2008-11-26 22:35:16 +00:00
|
|
|
#define OMAP24XX_GPIO_WAKE_EN 0x0020
|
2005-09-07 16:20:26 +00:00
|
|
|
#define OMAP24XX_GPIO_CTRL 0x0030
|
|
|
|
#define OMAP24XX_GPIO_OE 0x0034
|
|
|
|
#define OMAP24XX_GPIO_DATAIN 0x0038
|
|
|
|
#define OMAP24XX_GPIO_DATAOUT 0x003c
|
|
|
|
#define OMAP24XX_GPIO_LEVELDETECT0 0x0040
|
|
|
|
#define OMAP24XX_GPIO_LEVELDETECT1 0x0044
|
|
|
|
#define OMAP24XX_GPIO_RISINGDETECT 0x0048
|
|
|
|
#define OMAP24XX_GPIO_FALLINGDETECT 0x004c
|
2007-05-05 18:40:29 +00:00
|
|
|
#define OMAP24XX_GPIO_DEBOUNCE_EN 0x0050
|
|
|
|
#define OMAP24XX_GPIO_DEBOUNCE_VAL 0x0054
|
2005-09-07 16:20:26 +00:00
|
|
|
#define OMAP24XX_GPIO_CLEARIRQENABLE1 0x0060
|
|
|
|
#define OMAP24XX_GPIO_SETIRQENABLE1 0x0064
|
|
|
|
#define OMAP24XX_GPIO_CLEARWKUENA 0x0080
|
|
|
|
#define OMAP24XX_GPIO_SETWKUENA 0x0084
|
|
|
|
#define OMAP24XX_GPIO_CLEARDATAOUT 0x0090
|
|
|
|
#define OMAP24XX_GPIO_SETDATAOUT 0x0094
|
|
|
|
|
2009-07-28 13:27:30 +00:00
|
|
|
#define OMAP4_GPIO_REVISION 0x0000
|
|
|
|
#define OMAP4_GPIO_EOI 0x0020
|
|
|
|
#define OMAP4_GPIO_IRQSTATUSRAW0 0x0024
|
|
|
|
#define OMAP4_GPIO_IRQSTATUSRAW1 0x0028
|
|
|
|
#define OMAP4_GPIO_IRQSTATUS0 0x002c
|
|
|
|
#define OMAP4_GPIO_IRQSTATUS1 0x0030
|
|
|
|
#define OMAP4_GPIO_IRQSTATUSSET0 0x0034
|
|
|
|
#define OMAP4_GPIO_IRQSTATUSSET1 0x0038
|
|
|
|
#define OMAP4_GPIO_IRQSTATUSCLR0 0x003c
|
|
|
|
#define OMAP4_GPIO_IRQSTATUSCLR1 0x0040
|
|
|
|
#define OMAP4_GPIO_IRQWAKEN0 0x0044
|
|
|
|
#define OMAP4_GPIO_IRQWAKEN1 0x0048
|
2010-05-14 19:05:27 +00:00
|
|
|
#define OMAP4_GPIO_IRQENABLE1 0x011c
|
|
|
|
#define OMAP4_GPIO_WAKE_EN 0x0120
|
|
|
|
#define OMAP4_GPIO_IRQSTATUS2 0x0128
|
|
|
|
#define OMAP4_GPIO_IRQENABLE2 0x012c
|
2009-07-28 13:27:30 +00:00
|
|
|
#define OMAP4_GPIO_CTRL 0x0130
|
|
|
|
#define OMAP4_GPIO_OE 0x0134
|
|
|
|
#define OMAP4_GPIO_DATAIN 0x0138
|
|
|
|
#define OMAP4_GPIO_DATAOUT 0x013c
|
|
|
|
#define OMAP4_GPIO_LEVELDETECT0 0x0140
|
|
|
|
#define OMAP4_GPIO_LEVELDETECT1 0x0144
|
|
|
|
#define OMAP4_GPIO_RISINGDETECT 0x0148
|
|
|
|
#define OMAP4_GPIO_FALLINGDETECT 0x014c
|
|
|
|
#define OMAP4_GPIO_DEBOUNCENABLE 0x0150
|
|
|
|
#define OMAP4_GPIO_DEBOUNCINGTIME 0x0154
|
2010-05-14 19:05:27 +00:00
|
|
|
#define OMAP4_GPIO_CLEARIRQENABLE1 0x0160
|
|
|
|
#define OMAP4_GPIO_SETIRQENABLE1 0x0164
|
|
|
|
#define OMAP4_GPIO_CLEARWKUENA 0x0180
|
|
|
|
#define OMAP4_GPIO_SETWKUENA 0x0184
|
2009-07-28 13:27:30 +00:00
|
|
|
#define OMAP4_GPIO_CLEARDATAOUT 0x0190
|
|
|
|
#define OMAP4_GPIO_SETDATAOUT 0x0194
|
2007-11-30 00:15:11 +00:00
|
|
|
|
2005-07-10 18:58:15 +00:00
|
|
|
struct gpio_bank {
|
2009-10-19 22:25:20 +00:00
|
|
|
unsigned long pbase;
|
2005-09-07 16:20:26 +00:00
|
|
|
void __iomem *base;
|
2005-07-10 18:58:15 +00:00
|
|
|
u16 irq;
|
|
|
|
u16 virtual_irq_start;
|
2005-09-07 16:20:26 +00:00
|
|
|
int method;
|
2010-02-12 20:26:48 +00:00
|
|
|
#if defined(CONFIG_ARCH_OMAP16XX) || defined(CONFIG_ARCH_OMAP2PLUS)
|
2005-09-07 16:20:26 +00:00
|
|
|
u32 suspend_wakeup;
|
|
|
|
u32 saved_wakeup;
|
2006-12-07 01:13:52 +00:00
|
|
|
#endif
|
|
|
|
u32 non_wakeup_gpios;
|
|
|
|
u32 enabled_non_wakeup_gpios;
|
|
|
|
|
|
|
|
u32 saved_datain;
|
|
|
|
u32 saved_fallingdetect;
|
|
|
|
u32 saved_risingdetect;
|
2008-01-17 05:56:15 +00:00
|
|
|
u32 level_mask;
|
omap: gpio: Simultaneously requested rising and falling edge
Some chips, namely any OMAP1 chips using METHOD_MPUIO,
OMAP15xx and OMAP7xx, cannot be setup to respond to on-chip GPIO
interrupts in both rising and falling edge directions -- they can
only respond to one direction or the other, depending on how the
ICR is configured.
Additionally, current code forces rising edge detection if both
flags are specified:
if (trigger & IRQ_TYPE_EDGE_RISING)
l |= 1 << gpio;
else if (trigger & IRQ_TYPE_EDGE_FALLING)
l &= ~(1 << gpio);
else
goto bad;
This change implements a toggle function that will modify the ICR
to flip the direction of interrupt for IRQs that are requested with
both rising and falling flags. The toggle function is not called
for chips and GPIOs it does not apply to through the use of a flip_mask
that's added on a per-bank basis. The mask is only set for those
GPIOs where a toggle is necessary. Edge detection starts out the
same as above with FALLING mode first.
The toggle happens on EACH interrupt; without it, we have the
following sequence of actions on GPIO transition:
ICR GPIO Result
0x1 0 -> 1 (rising) Interrupt
0x1 1 -> 0 (falling) No interrupt
(set ICR to 0x0 manually)
0x0 0 -> 1 (rising) No interrupt
0x0 1 -> 0 (falling) Interrupt
That is, with the ICR set to 1 for a gpio, only rising edge interrupts
are caught, and with it set to 0, only falling edge interrupts are
caught. If we add in the toggle, we get this:
ICR GPIO Result
0x1 0 -> 1 (rising) Interrupt (ICR set to 0x0)
0x0 1 -> 0 (falling) Interrupt (ICR set to 0x1)
0x1 0 -> 1 ...
so, both rising and falling are caught, per the request for both
(IRQ_TYPE_EDGE_RISING | IRQ_TYPE_EDGE_FALLING).
Signed-off-by: Cory Maccarrone <darkstar6262@gmail.com>
Acked-by: Kevin Hilman <khilman@deeprootsystems.com>
Signed-off-by: Tony Lindgren <tony@atomide.com>
2010-01-08 18:29:04 +00:00
|
|
|
u32 toggle_mask;
|
2005-07-10 18:58:15 +00:00
|
|
|
spinlock_t lock;
|
2008-03-03 20:43:23 +00:00
|
|
|
struct gpio_chip chip;
|
2008-12-11 01:35:24 +00:00
|
|
|
struct clk *dbck;
|
2009-11-22 18:11:25 +00:00
|
|
|
u32 mod_usage;
|
2009-01-27 19:15:34 +00:00
|
|
|
u32 dbck_enable_mask;
|
2010-12-08 00:26:57 +00:00
|
|
|
struct device *dev;
|
|
|
|
bool dbck_flag;
|
2010-12-08 00:26:58 +00:00
|
|
|
int stride;
|
2005-07-10 18:58:15 +00:00
|
|
|
};
|
|
|
|
|
2010-02-12 20:26:48 +00:00
|
|
|
#ifdef CONFIG_ARCH_OMAP3
|
2008-09-26 12:17:48 +00:00
|
|
|
struct omap3_gpio_regs {
|
|
|
|
u32 irqenable1;
|
|
|
|
u32 irqenable2;
|
|
|
|
u32 wake_en;
|
|
|
|
u32 ctrl;
|
|
|
|
u32 oe;
|
|
|
|
u32 leveldetect0;
|
|
|
|
u32 leveldetect1;
|
|
|
|
u32 risingdetect;
|
|
|
|
u32 fallingdetect;
|
|
|
|
u32 dataout;
|
2007-11-30 00:15:11 +00:00
|
|
|
};
|
|
|
|
|
2008-09-26 12:17:48 +00:00
|
|
|
static struct omap3_gpio_regs gpio_context[OMAP34XX_NR_GPIOS];
|
2007-11-30 00:15:11 +00:00
|
|
|
#endif
|
|
|
|
|
2010-12-08 00:26:57 +00:00
|
|
|
/*
|
|
|
|
* TODO: Cleanup gpio_bank usage as it is having information
|
|
|
|
* related to all instances of the device
|
|
|
|
*/
|
|
|
|
static struct gpio_bank *gpio_bank;
|
2009-05-28 21:16:04 +00:00
|
|
|
|
2010-12-08 00:26:57 +00:00
|
|
|
static int bank_width;
|
2009-05-28 21:16:04 +00:00
|
|
|
|
2010-12-08 00:26:56 +00:00
|
|
|
/* TODO: Analyze removing gpio_bank_count usage from driver code */
|
|
|
|
int gpio_bank_count;
|
2005-07-10 18:58:15 +00:00
|
|
|
|
|
|
|
static inline struct gpio_bank *get_gpio_bank(int gpio)
|
|
|
|
{
|
2006-04-02 16:46:23 +00:00
|
|
|
if (cpu_is_omap15xx()) {
|
2005-07-10 18:58:15 +00:00
|
|
|
if (OMAP_GPIO_IS_MPUIO(gpio))
|
|
|
|
return &gpio_bank[0];
|
|
|
|
return &gpio_bank[1];
|
|
|
|
}
|
|
|
|
if (cpu_is_omap16xx()) {
|
|
|
|
if (OMAP_GPIO_IS_MPUIO(gpio))
|
|
|
|
return &gpio_bank[0];
|
|
|
|
return &gpio_bank[1 + (gpio >> 4)];
|
|
|
|
}
|
2009-03-24 01:07:40 +00:00
|
|
|
if (cpu_is_omap7xx()) {
|
2005-07-10 18:58:15 +00:00
|
|
|
if (OMAP_GPIO_IS_MPUIO(gpio))
|
|
|
|
return &gpio_bank[0];
|
|
|
|
return &gpio_bank[1 + (gpio >> 5)];
|
|
|
|
}
|
2005-09-07 16:20:26 +00:00
|
|
|
if (cpu_is_omap24xx())
|
|
|
|
return &gpio_bank[gpio >> 5];
|
2009-05-28 21:16:04 +00:00
|
|
|
if (cpu_is_omap34xx() || cpu_is_omap44xx())
|
2007-11-30 00:15:11 +00:00
|
|
|
return &gpio_bank[gpio >> 5];
|
2008-12-11 01:35:27 +00:00
|
|
|
BUG();
|
|
|
|
return NULL;
|
2005-07-10 18:58:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static inline int get_gpio_index(int gpio)
|
|
|
|
{
|
2009-03-24 01:07:40 +00:00
|
|
|
if (cpu_is_omap7xx())
|
2005-07-10 18:58:15 +00:00
|
|
|
return gpio & 0x1f;
|
2005-09-07 16:20:26 +00:00
|
|
|
if (cpu_is_omap24xx())
|
|
|
|
return gpio & 0x1f;
|
2009-05-28 21:16:04 +00:00
|
|
|
if (cpu_is_omap34xx() || cpu_is_omap44xx())
|
2007-11-30 00:15:11 +00:00
|
|
|
return gpio & 0x1f;
|
2005-09-07 16:20:26 +00:00
|
|
|
return gpio & 0x0f;
|
2005-07-10 18:58:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static inline int gpio_valid(int gpio)
|
|
|
|
{
|
|
|
|
if (gpio < 0)
|
|
|
|
return -1;
|
2008-01-12 23:35:04 +00:00
|
|
|
if (cpu_class_is_omap1() && OMAP_GPIO_IS_MPUIO(gpio)) {
|
2006-09-25 09:41:30 +00:00
|
|
|
if (gpio >= OMAP_MAX_GPIO_LINES + 16)
|
2005-07-10 18:58:15 +00:00
|
|
|
return -1;
|
|
|
|
return 0;
|
|
|
|
}
|
2006-04-02 16:46:23 +00:00
|
|
|
if (cpu_is_omap15xx() && gpio < 16)
|
2005-07-10 18:58:15 +00:00
|
|
|
return 0;
|
|
|
|
if ((cpu_is_omap16xx()) && gpio < 64)
|
|
|
|
return 0;
|
2009-03-24 01:07:40 +00:00
|
|
|
if (cpu_is_omap7xx() && gpio < 192)
|
2005-07-10 18:58:15 +00:00
|
|
|
return 0;
|
2010-08-02 11:21:39 +00:00
|
|
|
if (cpu_is_omap2420() && gpio < 128)
|
|
|
|
return 0;
|
|
|
|
if (cpu_is_omap2430() && gpio < 160)
|
2005-09-07 16:20:26 +00:00
|
|
|
return 0;
|
2009-05-28 21:16:04 +00:00
|
|
|
if ((cpu_is_omap34xx() || cpu_is_omap44xx()) && gpio < 192)
|
2007-11-30 00:15:11 +00:00
|
|
|
return 0;
|
2005-07-10 18:58:15 +00:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int check_gpio(int gpio)
|
|
|
|
{
|
2009-11-17 22:39:03 +00:00
|
|
|
if (unlikely(gpio_valid(gpio) < 0)) {
|
2005-07-10 18:58:15 +00:00
|
|
|
printk(KERN_ERR "omap-gpio: invalid GPIO %d\n", gpio);
|
|
|
|
dump_stack();
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void _set_gpio_direction(struct gpio_bank *bank, int gpio, int is_input)
|
|
|
|
{
|
2005-09-07 16:20:26 +00:00
|
|
|
void __iomem *reg = bank->base;
|
2005-07-10 18:58:15 +00:00
|
|
|
u32 l;
|
|
|
|
|
|
|
|
switch (bank->method) {
|
2006-12-07 01:13:59 +00:00
|
|
|
#ifdef CONFIG_ARCH_OMAP1
|
2005-07-10 18:58:15 +00:00
|
|
|
case METHOD_MPUIO:
|
2010-12-08 00:26:58 +00:00
|
|
|
reg += OMAP_MPUIO_IO_CNTL / bank->stride;
|
2005-07-10 18:58:15 +00:00
|
|
|
break;
|
2006-12-07 01:13:59 +00:00
|
|
|
#endif
|
|
|
|
#ifdef CONFIG_ARCH_OMAP15XX
|
2005-07-10 18:58:15 +00:00
|
|
|
case METHOD_GPIO_1510:
|
|
|
|
reg += OMAP1510_GPIO_DIR_CONTROL;
|
|
|
|
break;
|
2006-12-07 01:13:59 +00:00
|
|
|
#endif
|
|
|
|
#ifdef CONFIG_ARCH_OMAP16XX
|
2005-07-10 18:58:15 +00:00
|
|
|
case METHOD_GPIO_1610:
|
|
|
|
reg += OMAP1610_GPIO_DIRECTION;
|
|
|
|
break;
|
2006-12-07 01:13:59 +00:00
|
|
|
#endif
|
2009-09-23 17:56:19 +00:00
|
|
|
#if defined(CONFIG_ARCH_OMAP730) || defined(CONFIG_ARCH_OMAP850)
|
2009-09-22 09:02:58 +00:00
|
|
|
case METHOD_GPIO_7XX:
|
|
|
|
reg += OMAP7XX_GPIO_DIR_CONTROL;
|
2009-03-24 01:07:40 +00:00
|
|
|
break;
|
|
|
|
#endif
|
2010-02-12 20:26:48 +00:00
|
|
|
#if defined(CONFIG_ARCH_OMAP2) || defined(CONFIG_ARCH_OMAP3)
|
2005-09-07 16:20:26 +00:00
|
|
|
case METHOD_GPIO_24XX:
|
|
|
|
reg += OMAP24XX_GPIO_OE;
|
|
|
|
break;
|
2009-07-28 13:27:30 +00:00
|
|
|
#endif
|
|
|
|
#if defined(CONFIG_ARCH_OMAP4)
|
2010-02-15 17:27:25 +00:00
|
|
|
case METHOD_GPIO_44XX:
|
2009-07-28 13:27:30 +00:00
|
|
|
reg += OMAP4_GPIO_OE;
|
|
|
|
break;
|
2006-12-07 01:13:59 +00:00
|
|
|
#endif
|
|
|
|
default:
|
|
|
|
WARN_ON(1);
|
|
|
|
return;
|
2005-07-10 18:58:15 +00:00
|
|
|
}
|
|
|
|
l = __raw_readl(reg);
|
|
|
|
if (is_input)
|
|
|
|
l |= 1 << gpio;
|
|
|
|
else
|
|
|
|
l &= ~(1 << gpio);
|
|
|
|
__raw_writel(l, reg);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void _set_gpio_dataout(struct gpio_bank *bank, int gpio, int enable)
|
|
|
|
{
|
2005-09-07 16:20:26 +00:00
|
|
|
void __iomem *reg = bank->base;
|
2005-07-10 18:58:15 +00:00
|
|
|
u32 l = 0;
|
|
|
|
|
|
|
|
switch (bank->method) {
|
2006-12-07 01:13:59 +00:00
|
|
|
#ifdef CONFIG_ARCH_OMAP1
|
2005-07-10 18:58:15 +00:00
|
|
|
case METHOD_MPUIO:
|
2010-12-08 00:26:58 +00:00
|
|
|
reg += OMAP_MPUIO_OUTPUT / bank->stride;
|
2005-07-10 18:58:15 +00:00
|
|
|
l = __raw_readl(reg);
|
|
|
|
if (enable)
|
|
|
|
l |= 1 << gpio;
|
|
|
|
else
|
|
|
|
l &= ~(1 << gpio);
|
|
|
|
break;
|
2006-12-07 01:13:59 +00:00
|
|
|
#endif
|
|
|
|
#ifdef CONFIG_ARCH_OMAP15XX
|
2005-07-10 18:58:15 +00:00
|
|
|
case METHOD_GPIO_1510:
|
|
|
|
reg += OMAP1510_GPIO_DATA_OUTPUT;
|
|
|
|
l = __raw_readl(reg);
|
|
|
|
if (enable)
|
|
|
|
l |= 1 << gpio;
|
|
|
|
else
|
|
|
|
l &= ~(1 << gpio);
|
|
|
|
break;
|
2006-12-07 01:13:59 +00:00
|
|
|
#endif
|
|
|
|
#ifdef CONFIG_ARCH_OMAP16XX
|
2005-07-10 18:58:15 +00:00
|
|
|
case METHOD_GPIO_1610:
|
|
|
|
if (enable)
|
|
|
|
reg += OMAP1610_GPIO_SET_DATAOUT;
|
|
|
|
else
|
|
|
|
reg += OMAP1610_GPIO_CLEAR_DATAOUT;
|
|
|
|
l = 1 << gpio;
|
|
|
|
break;
|
2006-12-07 01:13:59 +00:00
|
|
|
#endif
|
2009-09-23 17:56:19 +00:00
|
|
|
#if defined(CONFIG_ARCH_OMAP730) || defined(CONFIG_ARCH_OMAP850)
|
2009-09-22 09:02:58 +00:00
|
|
|
case METHOD_GPIO_7XX:
|
|
|
|
reg += OMAP7XX_GPIO_DATA_OUTPUT;
|
2009-03-24 01:07:40 +00:00
|
|
|
l = __raw_readl(reg);
|
|
|
|
if (enable)
|
|
|
|
l |= 1 << gpio;
|
|
|
|
else
|
|
|
|
l &= ~(1 << gpio);
|
|
|
|
break;
|
|
|
|
#endif
|
2010-02-12 20:26:48 +00:00
|
|
|
#if defined(CONFIG_ARCH_OMAP2) || defined(CONFIG_ARCH_OMAP3)
|
2005-09-07 16:20:26 +00:00
|
|
|
case METHOD_GPIO_24XX:
|
|
|
|
if (enable)
|
|
|
|
reg += OMAP24XX_GPIO_SETDATAOUT;
|
|
|
|
else
|
|
|
|
reg += OMAP24XX_GPIO_CLEARDATAOUT;
|
|
|
|
l = 1 << gpio;
|
|
|
|
break;
|
2009-07-28 13:27:30 +00:00
|
|
|
#endif
|
|
|
|
#ifdef CONFIG_ARCH_OMAP4
|
2010-02-15 17:27:25 +00:00
|
|
|
case METHOD_GPIO_44XX:
|
2009-07-28 13:27:30 +00:00
|
|
|
if (enable)
|
|
|
|
reg += OMAP4_GPIO_SETDATAOUT;
|
|
|
|
else
|
|
|
|
reg += OMAP4_GPIO_CLEARDATAOUT;
|
|
|
|
l = 1 << gpio;
|
|
|
|
break;
|
2006-12-07 01:13:59 +00:00
|
|
|
#endif
|
2005-07-10 18:58:15 +00:00
|
|
|
default:
|
2006-12-07 01:13:59 +00:00
|
|
|
WARN_ON(1);
|
2005-07-10 18:58:15 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
__raw_writel(l, reg);
|
|
|
|
}
|
|
|
|
|
2009-08-05 13:53:24 +00:00
|
|
|
static int _get_gpio_datain(struct gpio_bank *bank, int gpio)
|
2005-07-10 18:58:15 +00:00
|
|
|
{
|
2005-09-07 16:20:26 +00:00
|
|
|
void __iomem *reg;
|
2005-07-10 18:58:15 +00:00
|
|
|
|
|
|
|
if (check_gpio(gpio) < 0)
|
2006-12-07 01:13:59 +00:00
|
|
|
return -EINVAL;
|
2005-07-10 18:58:15 +00:00
|
|
|
reg = bank->base;
|
|
|
|
switch (bank->method) {
|
2006-12-07 01:13:59 +00:00
|
|
|
#ifdef CONFIG_ARCH_OMAP1
|
2005-07-10 18:58:15 +00:00
|
|
|
case METHOD_MPUIO:
|
2010-12-08 00:26:58 +00:00
|
|
|
reg += OMAP_MPUIO_INPUT_LATCH / bank->stride;
|
2005-07-10 18:58:15 +00:00
|
|
|
break;
|
2006-12-07 01:13:59 +00:00
|
|
|
#endif
|
|
|
|
#ifdef CONFIG_ARCH_OMAP15XX
|
2005-07-10 18:58:15 +00:00
|
|
|
case METHOD_GPIO_1510:
|
|
|
|
reg += OMAP1510_GPIO_DATA_INPUT;
|
|
|
|
break;
|
2006-12-07 01:13:59 +00:00
|
|
|
#endif
|
|
|
|
#ifdef CONFIG_ARCH_OMAP16XX
|
2005-07-10 18:58:15 +00:00
|
|
|
case METHOD_GPIO_1610:
|
|
|
|
reg += OMAP1610_GPIO_DATAIN;
|
|
|
|
break;
|
2006-12-07 01:13:59 +00:00
|
|
|
#endif
|
2009-09-23 17:56:19 +00:00
|
|
|
#if defined(CONFIG_ARCH_OMAP730) || defined(CONFIG_ARCH_OMAP850)
|
2009-09-22 09:02:58 +00:00
|
|
|
case METHOD_GPIO_7XX:
|
|
|
|
reg += OMAP7XX_GPIO_DATA_INPUT;
|
2009-03-24 01:07:40 +00:00
|
|
|
break;
|
|
|
|
#endif
|
2010-02-12 20:26:48 +00:00
|
|
|
#if defined(CONFIG_ARCH_OMAP2) || defined(CONFIG_ARCH_OMAP3)
|
2005-09-07 16:20:26 +00:00
|
|
|
case METHOD_GPIO_24XX:
|
|
|
|
reg += OMAP24XX_GPIO_DATAIN;
|
|
|
|
break;
|
2009-07-28 13:27:30 +00:00
|
|
|
#endif
|
|
|
|
#ifdef CONFIG_ARCH_OMAP4
|
2010-02-15 17:27:25 +00:00
|
|
|
case METHOD_GPIO_44XX:
|
2009-07-28 13:27:30 +00:00
|
|
|
reg += OMAP4_GPIO_DATAIN;
|
|
|
|
break;
|
2006-12-07 01:13:59 +00:00
|
|
|
#endif
|
2005-07-10 18:58:15 +00:00
|
|
|
default:
|
2006-12-07 01:13:59 +00:00
|
|
|
return -EINVAL;
|
2005-07-10 18:58:15 +00:00
|
|
|
}
|
2005-09-07 16:20:26 +00:00
|
|
|
return (__raw_readl(reg)
|
|
|
|
& (1 << get_gpio_index(gpio))) != 0;
|
2005-07-10 18:58:15 +00:00
|
|
|
}
|
|
|
|
|
2009-08-05 13:53:24 +00:00
|
|
|
static int _get_gpio_dataout(struct gpio_bank *bank, int gpio)
|
|
|
|
{
|
|
|
|
void __iomem *reg;
|
|
|
|
|
|
|
|
if (check_gpio(gpio) < 0)
|
|
|
|
return -EINVAL;
|
|
|
|
reg = bank->base;
|
|
|
|
|
|
|
|
switch (bank->method) {
|
|
|
|
#ifdef CONFIG_ARCH_OMAP1
|
|
|
|
case METHOD_MPUIO:
|
2010-12-08 00:26:58 +00:00
|
|
|
reg += OMAP_MPUIO_OUTPUT / bank->stride;
|
2009-08-05 13:53:24 +00:00
|
|
|
break;
|
|
|
|
#endif
|
|
|
|
#ifdef CONFIG_ARCH_OMAP15XX
|
|
|
|
case METHOD_GPIO_1510:
|
|
|
|
reg += OMAP1510_GPIO_DATA_OUTPUT;
|
|
|
|
break;
|
|
|
|
#endif
|
|
|
|
#ifdef CONFIG_ARCH_OMAP16XX
|
|
|
|
case METHOD_GPIO_1610:
|
|
|
|
reg += OMAP1610_GPIO_DATAOUT;
|
|
|
|
break;
|
|
|
|
#endif
|
2009-09-23 17:56:19 +00:00
|
|
|
#if defined(CONFIG_ARCH_OMAP730) || defined(CONFIG_ARCH_OMAP850)
|
2009-09-22 09:02:58 +00:00
|
|
|
case METHOD_GPIO_7XX:
|
|
|
|
reg += OMAP7XX_GPIO_DATA_OUTPUT;
|
2009-08-05 13:53:24 +00:00
|
|
|
break;
|
|
|
|
#endif
|
2010-05-14 19:05:27 +00:00
|
|
|
#if defined(CONFIG_ARCH_OMAP2) || defined(CONFIG_ARCH_OMAP3)
|
2009-08-05 13:53:24 +00:00
|
|
|
case METHOD_GPIO_24XX:
|
|
|
|
reg += OMAP24XX_GPIO_DATAOUT;
|
|
|
|
break;
|
2010-05-14 19:05:27 +00:00
|
|
|
#endif
|
|
|
|
#ifdef CONFIG_ARCH_OMAP4
|
|
|
|
case METHOD_GPIO_44XX:
|
|
|
|
reg += OMAP4_GPIO_DATAOUT;
|
|
|
|
break;
|
2009-08-05 13:53:24 +00:00
|
|
|
#endif
|
|
|
|
default:
|
|
|
|
return -EINVAL;
|
|
|
|
}
|
|
|
|
|
|
|
|
return (__raw_readl(reg) & (1 << get_gpio_index(gpio))) != 0;
|
|
|
|
}
|
|
|
|
|
2005-09-07 16:20:26 +00:00
|
|
|
#define MOD_REG_BIT(reg, bit_mask, set) \
|
|
|
|
do { \
|
|
|
|
int l = __raw_readl(base + reg); \
|
|
|
|
if (set) l |= bit_mask; \
|
|
|
|
else l &= ~bit_mask; \
|
|
|
|
__raw_writel(l, base + reg); \
|
|
|
|
} while(0)
|
|
|
|
|
2010-05-26 21:42:23 +00:00
|
|
|
/**
|
|
|
|
* _set_gpio_debounce - low level gpio debounce time
|
|
|
|
* @bank: the gpio bank we're acting upon
|
|
|
|
* @gpio: the gpio number on this @gpio
|
|
|
|
* @debounce: debounce time to use
|
|
|
|
*
|
|
|
|
* OMAP's debounce time is in 31us steps so we need
|
|
|
|
* to convert and round up to the closest unit.
|
|
|
|
*/
|
|
|
|
static void _set_gpio_debounce(struct gpio_bank *bank, unsigned gpio,
|
|
|
|
unsigned debounce)
|
|
|
|
{
|
|
|
|
void __iomem *reg = bank->base;
|
|
|
|
u32 val;
|
|
|
|
u32 l;
|
|
|
|
|
2010-12-08 00:26:57 +00:00
|
|
|
if (!bank->dbck_flag)
|
|
|
|
return;
|
|
|
|
|
2010-05-26 21:42:23 +00:00
|
|
|
if (debounce < 32)
|
|
|
|
debounce = 0x01;
|
|
|
|
else if (debounce > 7936)
|
|
|
|
debounce = 0xff;
|
|
|
|
else
|
|
|
|
debounce = (debounce / 0x1f) - 1;
|
|
|
|
|
|
|
|
l = 1 << get_gpio_index(gpio);
|
|
|
|
|
2010-12-08 00:26:57 +00:00
|
|
|
if (bank->method == METHOD_GPIO_44XX)
|
2010-05-26 21:42:23 +00:00
|
|
|
reg += OMAP4_GPIO_DEBOUNCINGTIME;
|
|
|
|
else
|
|
|
|
reg += OMAP24XX_GPIO_DEBOUNCE_VAL;
|
|
|
|
|
|
|
|
__raw_writel(debounce, reg);
|
|
|
|
|
|
|
|
reg = bank->base;
|
2010-12-08 00:26:57 +00:00
|
|
|
if (bank->method == METHOD_GPIO_44XX)
|
2010-05-26 21:42:23 +00:00
|
|
|
reg += OMAP4_GPIO_DEBOUNCENABLE;
|
|
|
|
else
|
|
|
|
reg += OMAP24XX_GPIO_DEBOUNCE_EN;
|
|
|
|
|
|
|
|
val = __raw_readl(reg);
|
|
|
|
|
|
|
|
if (debounce) {
|
|
|
|
val |= l;
|
2010-12-08 00:26:57 +00:00
|
|
|
clk_enable(bank->dbck);
|
2010-05-26 21:42:23 +00:00
|
|
|
} else {
|
|
|
|
val &= ~l;
|
2010-12-08 00:26:57 +00:00
|
|
|
clk_disable(bank->dbck);
|
2010-05-26 21:42:23 +00:00
|
|
|
}
|
2010-06-09 10:53:07 +00:00
|
|
|
bank->dbck_enable_mask = val;
|
2010-05-26 21:42:23 +00:00
|
|
|
|
|
|
|
__raw_writel(val, reg);
|
|
|
|
}
|
|
|
|
|
2010-02-12 20:26:48 +00:00
|
|
|
#ifdef CONFIG_ARCH_OMAP2PLUS
|
2007-05-05 18:40:29 +00:00
|
|
|
static inline void set_24xx_gpio_triggering(struct gpio_bank *bank, int gpio,
|
|
|
|
int trigger)
|
2005-07-10 18:58:15 +00:00
|
|
|
{
|
2006-12-07 01:13:52 +00:00
|
|
|
void __iomem *base = bank->base;
|
2005-09-07 16:20:26 +00:00
|
|
|
u32 gpio_bit = 1 << gpio;
|
2009-07-28 13:27:30 +00:00
|
|
|
u32 val;
|
2005-09-07 16:20:26 +00:00
|
|
|
|
2009-07-28 13:27:30 +00:00
|
|
|
if (cpu_is_omap44xx()) {
|
|
|
|
MOD_REG_BIT(OMAP4_GPIO_LEVELDETECT0, gpio_bit,
|
|
|
|
trigger & IRQ_TYPE_LEVEL_LOW);
|
|
|
|
MOD_REG_BIT(OMAP4_GPIO_LEVELDETECT1, gpio_bit,
|
|
|
|
trigger & IRQ_TYPE_LEVEL_HIGH);
|
|
|
|
MOD_REG_BIT(OMAP4_GPIO_RISINGDETECT, gpio_bit,
|
|
|
|
trigger & IRQ_TYPE_EDGE_RISING);
|
|
|
|
MOD_REG_BIT(OMAP4_GPIO_FALLINGDETECT, gpio_bit,
|
|
|
|
trigger & IRQ_TYPE_EDGE_FALLING);
|
|
|
|
} else {
|
|
|
|
MOD_REG_BIT(OMAP24XX_GPIO_LEVELDETECT0, gpio_bit,
|
|
|
|
trigger & IRQ_TYPE_LEVEL_LOW);
|
|
|
|
MOD_REG_BIT(OMAP24XX_GPIO_LEVELDETECT1, gpio_bit,
|
|
|
|
trigger & IRQ_TYPE_LEVEL_HIGH);
|
|
|
|
MOD_REG_BIT(OMAP24XX_GPIO_RISINGDETECT, gpio_bit,
|
|
|
|
trigger & IRQ_TYPE_EDGE_RISING);
|
|
|
|
MOD_REG_BIT(OMAP24XX_GPIO_FALLINGDETECT, gpio_bit,
|
|
|
|
trigger & IRQ_TYPE_EDGE_FALLING);
|
|
|
|
}
|
2006-12-07 01:13:52 +00:00
|
|
|
if (likely(!(bank->non_wakeup_gpios & gpio_bit))) {
|
2009-07-28 13:27:30 +00:00
|
|
|
if (cpu_is_omap44xx()) {
|
|
|
|
if (trigger != 0)
|
|
|
|
__raw_writel(1 << gpio, bank->base+
|
|
|
|
OMAP4_GPIO_IRQWAKEN0);
|
|
|
|
else {
|
|
|
|
val = __raw_readl(bank->base +
|
|
|
|
OMAP4_GPIO_IRQWAKEN0);
|
|
|
|
__raw_writel(val & (~(1 << gpio)), bank->base +
|
|
|
|
OMAP4_GPIO_IRQWAKEN0);
|
|
|
|
}
|
|
|
|
} else {
|
2009-06-24 17:13:39 +00:00
|
|
|
/*
|
|
|
|
* GPIO wakeup request can only be generated on edge
|
|
|
|
* transitions
|
|
|
|
*/
|
|
|
|
if (trigger & IRQ_TYPE_EDGE_BOTH)
|
2009-07-28 13:27:30 +00:00
|
|
|
__raw_writel(1 << gpio, bank->base
|
2007-05-05 18:40:29 +00:00
|
|
|
+ OMAP24XX_GPIO_SETWKUENA);
|
2009-07-28 13:27:30 +00:00
|
|
|
else
|
|
|
|
__raw_writel(1 << gpio, bank->base
|
2007-05-05 18:40:29 +00:00
|
|
|
+ OMAP24XX_GPIO_CLEARWKUENA);
|
2009-07-28 13:27:30 +00:00
|
|
|
}
|
2008-12-22 12:27:12 +00:00
|
|
|
}
|
|
|
|
/* This part needs to be executed always for OMAP34xx */
|
|
|
|
if (cpu_is_omap34xx() || (bank->non_wakeup_gpios & gpio_bit)) {
|
2009-06-24 17:13:39 +00:00
|
|
|
/*
|
|
|
|
* Log the edge gpio and manually trigger the IRQ
|
|
|
|
* after resume if the input level changes
|
|
|
|
* to avoid irq lost during PER RET/OFF mode
|
|
|
|
* Applies for omap2 non-wakeup gpio and all omap3 gpios
|
|
|
|
*/
|
|
|
|
if (trigger & IRQ_TYPE_EDGE_BOTH)
|
2006-12-07 01:13:52 +00:00
|
|
|
bank->enabled_non_wakeup_gpios |= gpio_bit;
|
|
|
|
else
|
|
|
|
bank->enabled_non_wakeup_gpios &= ~gpio_bit;
|
|
|
|
}
|
2007-05-05 18:40:29 +00:00
|
|
|
|
2009-07-28 13:27:30 +00:00
|
|
|
if (cpu_is_omap44xx()) {
|
|
|
|
bank->level_mask =
|
|
|
|
__raw_readl(bank->base + OMAP4_GPIO_LEVELDETECT0) |
|
|
|
|
__raw_readl(bank->base + OMAP4_GPIO_LEVELDETECT1);
|
|
|
|
} else {
|
|
|
|
bank->level_mask =
|
|
|
|
__raw_readl(bank->base + OMAP24XX_GPIO_LEVELDETECT0) |
|
|
|
|
__raw_readl(bank->base + OMAP24XX_GPIO_LEVELDETECT1);
|
|
|
|
}
|
2005-09-07 16:20:26 +00:00
|
|
|
}
|
2006-12-07 01:13:52 +00:00
|
|
|
#endif
|
2005-09-07 16:20:26 +00:00
|
|
|
|
2010-01-29 22:20:05 +00:00
|
|
|
#ifdef CONFIG_ARCH_OMAP1
|
omap: gpio: Simultaneously requested rising and falling edge
Some chips, namely any OMAP1 chips using METHOD_MPUIO,
OMAP15xx and OMAP7xx, cannot be setup to respond to on-chip GPIO
interrupts in both rising and falling edge directions -- they can
only respond to one direction or the other, depending on how the
ICR is configured.
Additionally, current code forces rising edge detection if both
flags are specified:
if (trigger & IRQ_TYPE_EDGE_RISING)
l |= 1 << gpio;
else if (trigger & IRQ_TYPE_EDGE_FALLING)
l &= ~(1 << gpio);
else
goto bad;
This change implements a toggle function that will modify the ICR
to flip the direction of interrupt for IRQs that are requested with
both rising and falling flags. The toggle function is not called
for chips and GPIOs it does not apply to through the use of a flip_mask
that's added on a per-bank basis. The mask is only set for those
GPIOs where a toggle is necessary. Edge detection starts out the
same as above with FALLING mode first.
The toggle happens on EACH interrupt; without it, we have the
following sequence of actions on GPIO transition:
ICR GPIO Result
0x1 0 -> 1 (rising) Interrupt
0x1 1 -> 0 (falling) No interrupt
(set ICR to 0x0 manually)
0x0 0 -> 1 (rising) No interrupt
0x0 1 -> 0 (falling) Interrupt
That is, with the ICR set to 1 for a gpio, only rising edge interrupts
are caught, and with it set to 0, only falling edge interrupts are
caught. If we add in the toggle, we get this:
ICR GPIO Result
0x1 0 -> 1 (rising) Interrupt (ICR set to 0x0)
0x0 1 -> 0 (falling) Interrupt (ICR set to 0x1)
0x1 0 -> 1 ...
so, both rising and falling are caught, per the request for both
(IRQ_TYPE_EDGE_RISING | IRQ_TYPE_EDGE_FALLING).
Signed-off-by: Cory Maccarrone <darkstar6262@gmail.com>
Acked-by: Kevin Hilman <khilman@deeprootsystems.com>
Signed-off-by: Tony Lindgren <tony@atomide.com>
2010-01-08 18:29:04 +00:00
|
|
|
/*
|
|
|
|
* This only applies to chips that can't do both rising and falling edge
|
|
|
|
* detection at once. For all other chips, this function is a noop.
|
|
|
|
*/
|
|
|
|
static void _toggle_gpio_edge_triggering(struct gpio_bank *bank, int gpio)
|
|
|
|
{
|
|
|
|
void __iomem *reg = bank->base;
|
|
|
|
u32 l = 0;
|
|
|
|
|
|
|
|
switch (bank->method) {
|
|
|
|
case METHOD_MPUIO:
|
2010-12-08 00:26:58 +00:00
|
|
|
reg += OMAP_MPUIO_GPIO_INT_EDGE / bank->stride;
|
omap: gpio: Simultaneously requested rising and falling edge
Some chips, namely any OMAP1 chips using METHOD_MPUIO,
OMAP15xx and OMAP7xx, cannot be setup to respond to on-chip GPIO
interrupts in both rising and falling edge directions -- they can
only respond to one direction or the other, depending on how the
ICR is configured.
Additionally, current code forces rising edge detection if both
flags are specified:
if (trigger & IRQ_TYPE_EDGE_RISING)
l |= 1 << gpio;
else if (trigger & IRQ_TYPE_EDGE_FALLING)
l &= ~(1 << gpio);
else
goto bad;
This change implements a toggle function that will modify the ICR
to flip the direction of interrupt for IRQs that are requested with
both rising and falling flags. The toggle function is not called
for chips and GPIOs it does not apply to through the use of a flip_mask
that's added on a per-bank basis. The mask is only set for those
GPIOs where a toggle is necessary. Edge detection starts out the
same as above with FALLING mode first.
The toggle happens on EACH interrupt; without it, we have the
following sequence of actions on GPIO transition:
ICR GPIO Result
0x1 0 -> 1 (rising) Interrupt
0x1 1 -> 0 (falling) No interrupt
(set ICR to 0x0 manually)
0x0 0 -> 1 (rising) No interrupt
0x0 1 -> 0 (falling) Interrupt
That is, with the ICR set to 1 for a gpio, only rising edge interrupts
are caught, and with it set to 0, only falling edge interrupts are
caught. If we add in the toggle, we get this:
ICR GPIO Result
0x1 0 -> 1 (rising) Interrupt (ICR set to 0x0)
0x0 1 -> 0 (falling) Interrupt (ICR set to 0x1)
0x1 0 -> 1 ...
so, both rising and falling are caught, per the request for both
(IRQ_TYPE_EDGE_RISING | IRQ_TYPE_EDGE_FALLING).
Signed-off-by: Cory Maccarrone <darkstar6262@gmail.com>
Acked-by: Kevin Hilman <khilman@deeprootsystems.com>
Signed-off-by: Tony Lindgren <tony@atomide.com>
2010-01-08 18:29:04 +00:00
|
|
|
break;
|
|
|
|
#ifdef CONFIG_ARCH_OMAP15XX
|
|
|
|
case METHOD_GPIO_1510:
|
|
|
|
reg += OMAP1510_GPIO_INT_CONTROL;
|
|
|
|
break;
|
|
|
|
#endif
|
|
|
|
#if defined(CONFIG_ARCH_OMAP730) || defined(CONFIG_ARCH_OMAP850)
|
|
|
|
case METHOD_GPIO_7XX:
|
|
|
|
reg += OMAP7XX_GPIO_INT_CONTROL;
|
|
|
|
break;
|
|
|
|
#endif
|
|
|
|
default:
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
l = __raw_readl(reg);
|
|
|
|
if ((l >> gpio) & 1)
|
|
|
|
l &= ~(1 << gpio);
|
|
|
|
else
|
|
|
|
l |= 1 << gpio;
|
|
|
|
|
|
|
|
__raw_writel(l, reg);
|
|
|
|
}
|
2010-01-29 22:20:05 +00:00
|
|
|
#endif
|
omap: gpio: Simultaneously requested rising and falling edge
Some chips, namely any OMAP1 chips using METHOD_MPUIO,
OMAP15xx and OMAP7xx, cannot be setup to respond to on-chip GPIO
interrupts in both rising and falling edge directions -- they can
only respond to one direction or the other, depending on how the
ICR is configured.
Additionally, current code forces rising edge detection if both
flags are specified:
if (trigger & IRQ_TYPE_EDGE_RISING)
l |= 1 << gpio;
else if (trigger & IRQ_TYPE_EDGE_FALLING)
l &= ~(1 << gpio);
else
goto bad;
This change implements a toggle function that will modify the ICR
to flip the direction of interrupt for IRQs that are requested with
both rising and falling flags. The toggle function is not called
for chips and GPIOs it does not apply to through the use of a flip_mask
that's added on a per-bank basis. The mask is only set for those
GPIOs where a toggle is necessary. Edge detection starts out the
same as above with FALLING mode first.
The toggle happens on EACH interrupt; without it, we have the
following sequence of actions on GPIO transition:
ICR GPIO Result
0x1 0 -> 1 (rising) Interrupt
0x1 1 -> 0 (falling) No interrupt
(set ICR to 0x0 manually)
0x0 0 -> 1 (rising) No interrupt
0x0 1 -> 0 (falling) Interrupt
That is, with the ICR set to 1 for a gpio, only rising edge interrupts
are caught, and with it set to 0, only falling edge interrupts are
caught. If we add in the toggle, we get this:
ICR GPIO Result
0x1 0 -> 1 (rising) Interrupt (ICR set to 0x0)
0x0 1 -> 0 (falling) Interrupt (ICR set to 0x1)
0x1 0 -> 1 ...
so, both rising and falling are caught, per the request for both
(IRQ_TYPE_EDGE_RISING | IRQ_TYPE_EDGE_FALLING).
Signed-off-by: Cory Maccarrone <darkstar6262@gmail.com>
Acked-by: Kevin Hilman <khilman@deeprootsystems.com>
Signed-off-by: Tony Lindgren <tony@atomide.com>
2010-01-08 18:29:04 +00:00
|
|
|
|
2005-09-07 16:20:26 +00:00
|
|
|
static int _set_gpio_triggering(struct gpio_bank *bank, int gpio, int trigger)
|
|
|
|
{
|
|
|
|
void __iomem *reg = bank->base;
|
|
|
|
u32 l = 0;
|
2005-07-10 18:58:15 +00:00
|
|
|
|
|
|
|
switch (bank->method) {
|
2006-12-07 01:13:59 +00:00
|
|
|
#ifdef CONFIG_ARCH_OMAP1
|
2005-07-10 18:58:15 +00:00
|
|
|
case METHOD_MPUIO:
|
2010-12-08 00:26:58 +00:00
|
|
|
reg += OMAP_MPUIO_GPIO_INT_EDGE / bank->stride;
|
2005-07-10 18:58:15 +00:00
|
|
|
l = __raw_readl(reg);
|
2010-04-05 11:38:06 +00:00
|
|
|
if ((trigger & IRQ_TYPE_SENSE_MASK) == IRQ_TYPE_EDGE_BOTH)
|
omap: gpio: Simultaneously requested rising and falling edge
Some chips, namely any OMAP1 chips using METHOD_MPUIO,
OMAP15xx and OMAP7xx, cannot be setup to respond to on-chip GPIO
interrupts in both rising and falling edge directions -- they can
only respond to one direction or the other, depending on how the
ICR is configured.
Additionally, current code forces rising edge detection if both
flags are specified:
if (trigger & IRQ_TYPE_EDGE_RISING)
l |= 1 << gpio;
else if (trigger & IRQ_TYPE_EDGE_FALLING)
l &= ~(1 << gpio);
else
goto bad;
This change implements a toggle function that will modify the ICR
to flip the direction of interrupt for IRQs that are requested with
both rising and falling flags. The toggle function is not called
for chips and GPIOs it does not apply to through the use of a flip_mask
that's added on a per-bank basis. The mask is only set for those
GPIOs where a toggle is necessary. Edge detection starts out the
same as above with FALLING mode first.
The toggle happens on EACH interrupt; without it, we have the
following sequence of actions on GPIO transition:
ICR GPIO Result
0x1 0 -> 1 (rising) Interrupt
0x1 1 -> 0 (falling) No interrupt
(set ICR to 0x0 manually)
0x0 0 -> 1 (rising) No interrupt
0x0 1 -> 0 (falling) Interrupt
That is, with the ICR set to 1 for a gpio, only rising edge interrupts
are caught, and with it set to 0, only falling edge interrupts are
caught. If we add in the toggle, we get this:
ICR GPIO Result
0x1 0 -> 1 (rising) Interrupt (ICR set to 0x0)
0x0 1 -> 0 (falling) Interrupt (ICR set to 0x1)
0x1 0 -> 1 ...
so, both rising and falling are caught, per the request for both
(IRQ_TYPE_EDGE_RISING | IRQ_TYPE_EDGE_FALLING).
Signed-off-by: Cory Maccarrone <darkstar6262@gmail.com>
Acked-by: Kevin Hilman <khilman@deeprootsystems.com>
Signed-off-by: Tony Lindgren <tony@atomide.com>
2010-01-08 18:29:04 +00:00
|
|
|
bank->toggle_mask |= 1 << gpio;
|
2008-07-27 03:23:31 +00:00
|
|
|
if (trigger & IRQ_TYPE_EDGE_RISING)
|
2005-07-10 18:58:15 +00:00
|
|
|
l |= 1 << gpio;
|
2008-07-27 03:23:31 +00:00
|
|
|
else if (trigger & IRQ_TYPE_EDGE_FALLING)
|
2005-07-10 18:58:15 +00:00
|
|
|
l &= ~(1 << gpio);
|
2005-09-07 16:20:26 +00:00
|
|
|
else
|
|
|
|
goto bad;
|
2005-07-10 18:58:15 +00:00
|
|
|
break;
|
2006-12-07 01:13:59 +00:00
|
|
|
#endif
|
|
|
|
#ifdef CONFIG_ARCH_OMAP15XX
|
2005-07-10 18:58:15 +00:00
|
|
|
case METHOD_GPIO_1510:
|
|
|
|
reg += OMAP1510_GPIO_INT_CONTROL;
|
|
|
|
l = __raw_readl(reg);
|
2010-04-05 11:38:06 +00:00
|
|
|
if ((trigger & IRQ_TYPE_SENSE_MASK) == IRQ_TYPE_EDGE_BOTH)
|
omap: gpio: Simultaneously requested rising and falling edge
Some chips, namely any OMAP1 chips using METHOD_MPUIO,
OMAP15xx and OMAP7xx, cannot be setup to respond to on-chip GPIO
interrupts in both rising and falling edge directions -- they can
only respond to one direction or the other, depending on how the
ICR is configured.
Additionally, current code forces rising edge detection if both
flags are specified:
if (trigger & IRQ_TYPE_EDGE_RISING)
l |= 1 << gpio;
else if (trigger & IRQ_TYPE_EDGE_FALLING)
l &= ~(1 << gpio);
else
goto bad;
This change implements a toggle function that will modify the ICR
to flip the direction of interrupt for IRQs that are requested with
both rising and falling flags. The toggle function is not called
for chips and GPIOs it does not apply to through the use of a flip_mask
that's added on a per-bank basis. The mask is only set for those
GPIOs where a toggle is necessary. Edge detection starts out the
same as above with FALLING mode first.
The toggle happens on EACH interrupt; without it, we have the
following sequence of actions on GPIO transition:
ICR GPIO Result
0x1 0 -> 1 (rising) Interrupt
0x1 1 -> 0 (falling) No interrupt
(set ICR to 0x0 manually)
0x0 0 -> 1 (rising) No interrupt
0x0 1 -> 0 (falling) Interrupt
That is, with the ICR set to 1 for a gpio, only rising edge interrupts
are caught, and with it set to 0, only falling edge interrupts are
caught. If we add in the toggle, we get this:
ICR GPIO Result
0x1 0 -> 1 (rising) Interrupt (ICR set to 0x0)
0x0 1 -> 0 (falling) Interrupt (ICR set to 0x1)
0x1 0 -> 1 ...
so, both rising and falling are caught, per the request for both
(IRQ_TYPE_EDGE_RISING | IRQ_TYPE_EDGE_FALLING).
Signed-off-by: Cory Maccarrone <darkstar6262@gmail.com>
Acked-by: Kevin Hilman <khilman@deeprootsystems.com>
Signed-off-by: Tony Lindgren <tony@atomide.com>
2010-01-08 18:29:04 +00:00
|
|
|
bank->toggle_mask |= 1 << gpio;
|
2008-07-27 03:23:31 +00:00
|
|
|
if (trigger & IRQ_TYPE_EDGE_RISING)
|
2005-07-10 18:58:15 +00:00
|
|
|
l |= 1 << gpio;
|
2008-07-27 03:23:31 +00:00
|
|
|
else if (trigger & IRQ_TYPE_EDGE_FALLING)
|
2005-07-10 18:58:15 +00:00
|
|
|
l &= ~(1 << gpio);
|
2005-09-07 16:20:26 +00:00
|
|
|
else
|
|
|
|
goto bad;
|
2005-07-10 18:58:15 +00:00
|
|
|
break;
|
2006-12-07 01:13:59 +00:00
|
|
|
#endif
|
2006-12-07 01:13:52 +00:00
|
|
|
#ifdef CONFIG_ARCH_OMAP16XX
|
2005-07-10 18:58:15 +00:00
|
|
|
case METHOD_GPIO_1610:
|
|
|
|
if (gpio & 0x08)
|
|
|
|
reg += OMAP1610_GPIO_EDGE_CTRL2;
|
|
|
|
else
|
|
|
|
reg += OMAP1610_GPIO_EDGE_CTRL1;
|
|
|
|
gpio &= 0x07;
|
|
|
|
l = __raw_readl(reg);
|
|
|
|
l &= ~(3 << (gpio << 1));
|
2008-07-27 03:23:31 +00:00
|
|
|
if (trigger & IRQ_TYPE_EDGE_RISING)
|
2006-04-02 16:46:23 +00:00
|
|
|
l |= 2 << (gpio << 1);
|
2008-07-27 03:23:31 +00:00
|
|
|
if (trigger & IRQ_TYPE_EDGE_FALLING)
|
2006-04-02 16:46:23 +00:00
|
|
|
l |= 1 << (gpio << 1);
|
2006-12-07 01:13:52 +00:00
|
|
|
if (trigger)
|
|
|
|
/* Enable wake-up during idle for dynamic tick */
|
|
|
|
__raw_writel(1 << gpio, bank->base + OMAP1610_GPIO_SET_WAKEUPENA);
|
|
|
|
else
|
|
|
|
__raw_writel(1 << gpio, bank->base + OMAP1610_GPIO_CLEAR_WAKEUPENA);
|
2005-07-10 18:58:15 +00:00
|
|
|
break;
|
2006-12-07 01:13:52 +00:00
|
|
|
#endif
|
2009-09-23 17:56:19 +00:00
|
|
|
#if defined(CONFIG_ARCH_OMAP730) || defined(CONFIG_ARCH_OMAP850)
|
2009-09-22 09:02:58 +00:00
|
|
|
case METHOD_GPIO_7XX:
|
|
|
|
reg += OMAP7XX_GPIO_INT_CONTROL;
|
2009-03-24 01:07:40 +00:00
|
|
|
l = __raw_readl(reg);
|
2010-04-05 11:38:06 +00:00
|
|
|
if ((trigger & IRQ_TYPE_SENSE_MASK) == IRQ_TYPE_EDGE_BOTH)
|
omap: gpio: Simultaneously requested rising and falling edge
Some chips, namely any OMAP1 chips using METHOD_MPUIO,
OMAP15xx and OMAP7xx, cannot be setup to respond to on-chip GPIO
interrupts in both rising and falling edge directions -- they can
only respond to one direction or the other, depending on how the
ICR is configured.
Additionally, current code forces rising edge detection if both
flags are specified:
if (trigger & IRQ_TYPE_EDGE_RISING)
l |= 1 << gpio;
else if (trigger & IRQ_TYPE_EDGE_FALLING)
l &= ~(1 << gpio);
else
goto bad;
This change implements a toggle function that will modify the ICR
to flip the direction of interrupt for IRQs that are requested with
both rising and falling flags. The toggle function is not called
for chips and GPIOs it does not apply to through the use of a flip_mask
that's added on a per-bank basis. The mask is only set for those
GPIOs where a toggle is necessary. Edge detection starts out the
same as above with FALLING mode first.
The toggle happens on EACH interrupt; without it, we have the
following sequence of actions on GPIO transition:
ICR GPIO Result
0x1 0 -> 1 (rising) Interrupt
0x1 1 -> 0 (falling) No interrupt
(set ICR to 0x0 manually)
0x0 0 -> 1 (rising) No interrupt
0x0 1 -> 0 (falling) Interrupt
That is, with the ICR set to 1 for a gpio, only rising edge interrupts
are caught, and with it set to 0, only falling edge interrupts are
caught. If we add in the toggle, we get this:
ICR GPIO Result
0x1 0 -> 1 (rising) Interrupt (ICR set to 0x0)
0x0 1 -> 0 (falling) Interrupt (ICR set to 0x1)
0x1 0 -> 1 ...
so, both rising and falling are caught, per the request for both
(IRQ_TYPE_EDGE_RISING | IRQ_TYPE_EDGE_FALLING).
Signed-off-by: Cory Maccarrone <darkstar6262@gmail.com>
Acked-by: Kevin Hilman <khilman@deeprootsystems.com>
Signed-off-by: Tony Lindgren <tony@atomide.com>
2010-01-08 18:29:04 +00:00
|
|
|
bank->toggle_mask |= 1 << gpio;
|
2009-03-24 01:07:40 +00:00
|
|
|
if (trigger & IRQ_TYPE_EDGE_RISING)
|
|
|
|
l |= 1 << gpio;
|
|
|
|
else if (trigger & IRQ_TYPE_EDGE_FALLING)
|
|
|
|
l &= ~(1 << gpio);
|
|
|
|
else
|
|
|
|
goto bad;
|
|
|
|
break;
|
|
|
|
#endif
|
2010-02-12 20:26:48 +00:00
|
|
|
#ifdef CONFIG_ARCH_OMAP2PLUS
|
2005-09-07 16:20:26 +00:00
|
|
|
case METHOD_GPIO_24XX:
|
2010-02-15 17:27:25 +00:00
|
|
|
case METHOD_GPIO_44XX:
|
2006-12-07 01:13:52 +00:00
|
|
|
set_24xx_gpio_triggering(bank, gpio, trigger);
|
2005-07-10 18:58:15 +00:00
|
|
|
break;
|
2006-12-07 01:13:52 +00:00
|
|
|
#endif
|
2005-07-10 18:58:15 +00:00
|
|
|
default:
|
2005-09-07 16:20:26 +00:00
|
|
|
goto bad;
|
2005-07-10 18:58:15 +00:00
|
|
|
}
|
2005-09-07 16:20:26 +00:00
|
|
|
__raw_writel(l, reg);
|
|
|
|
return 0;
|
|
|
|
bad:
|
|
|
|
return -EINVAL;
|
2005-07-10 18:58:15 +00:00
|
|
|
}
|
|
|
|
|
2005-09-07 16:20:26 +00:00
|
|
|
static int gpio_irq_type(unsigned irq, unsigned type)
|
2005-07-10 18:58:15 +00:00
|
|
|
{
|
|
|
|
struct gpio_bank *bank;
|
2005-09-07 16:20:26 +00:00
|
|
|
unsigned gpio;
|
|
|
|
int retval;
|
2008-03-03 12:33:30 +00:00
|
|
|
unsigned long flags;
|
2005-09-07 16:20:26 +00:00
|
|
|
|
2007-11-30 00:15:11 +00:00
|
|
|
if (!cpu_class_is_omap2() && irq > IH_MPUIO_BASE)
|
2005-09-07 16:20:26 +00:00
|
|
|
gpio = OMAP_MPUIO(irq - IH_MPUIO_BASE);
|
|
|
|
else
|
|
|
|
gpio = irq - IH_GPIO_BASE;
|
2005-07-10 18:58:15 +00:00
|
|
|
|
|
|
|
if (check_gpio(gpio) < 0)
|
2005-09-07 16:20:26 +00:00
|
|
|
return -EINVAL;
|
|
|
|
|
2006-12-07 01:13:59 +00:00
|
|
|
if (type & ~IRQ_TYPE_SENSE_MASK)
|
2006-04-02 16:46:23 +00:00
|
|
|
return -EINVAL;
|
2006-12-07 01:13:59 +00:00
|
|
|
|
|
|
|
/* OMAP1 allows only only edge triggering */
|
2007-11-30 00:15:11 +00:00
|
|
|
if (!cpu_class_is_omap2()
|
2006-12-07 01:13:59 +00:00
|
|
|
&& (type & (IRQ_TYPE_LEVEL_LOW|IRQ_TYPE_LEVEL_HIGH)))
|
2005-09-07 16:20:26 +00:00
|
|
|
return -EINVAL;
|
|
|
|
|
2006-12-07 01:14:10 +00:00
|
|
|
bank = get_irq_chip_data(irq);
|
2008-03-03 12:33:30 +00:00
|
|
|
spin_lock_irqsave(&bank->lock, flags);
|
2005-09-07 16:20:26 +00:00
|
|
|
retval = _set_gpio_triggering(bank, get_gpio_index(gpio), type);
|
2006-12-07 01:13:53 +00:00
|
|
|
if (retval == 0) {
|
|
|
|
irq_desc[irq].status &= ~IRQ_TYPE_SENSE_MASK;
|
|
|
|
irq_desc[irq].status |= type;
|
|
|
|
}
|
2008-03-03 12:33:30 +00:00
|
|
|
spin_unlock_irqrestore(&bank->lock, flags);
|
2008-01-17 05:56:16 +00:00
|
|
|
|
|
|
|
if (type & (IRQ_TYPE_LEVEL_LOW | IRQ_TYPE_LEVEL_HIGH))
|
|
|
|
__set_irq_handler_unlocked(irq, handle_level_irq);
|
|
|
|
else if (type & (IRQ_TYPE_EDGE_FALLING | IRQ_TYPE_EDGE_RISING))
|
|
|
|
__set_irq_handler_unlocked(irq, handle_edge_irq);
|
|
|
|
|
2005-09-07 16:20:26 +00:00
|
|
|
return retval;
|
2005-07-10 18:58:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void _clear_gpio_irqbank(struct gpio_bank *bank, int gpio_mask)
|
|
|
|
{
|
2005-09-07 16:20:26 +00:00
|
|
|
void __iomem *reg = bank->base;
|
2005-07-10 18:58:15 +00:00
|
|
|
|
|
|
|
switch (bank->method) {
|
2006-12-07 01:13:59 +00:00
|
|
|
#ifdef CONFIG_ARCH_OMAP1
|
2005-07-10 18:58:15 +00:00
|
|
|
case METHOD_MPUIO:
|
|
|
|
/* MPUIO irqstatus is reset by reading the status register,
|
|
|
|
* so do nothing here */
|
|
|
|
return;
|
2006-12-07 01:13:59 +00:00
|
|
|
#endif
|
|
|
|
#ifdef CONFIG_ARCH_OMAP15XX
|
2005-07-10 18:58:15 +00:00
|
|
|
case METHOD_GPIO_1510:
|
|
|
|
reg += OMAP1510_GPIO_INT_STATUS;
|
|
|
|
break;
|
2006-12-07 01:13:59 +00:00
|
|
|
#endif
|
|
|
|
#ifdef CONFIG_ARCH_OMAP16XX
|
2005-07-10 18:58:15 +00:00
|
|
|
case METHOD_GPIO_1610:
|
|
|
|
reg += OMAP1610_GPIO_IRQSTATUS1;
|
|
|
|
break;
|
2006-12-07 01:13:59 +00:00
|
|
|
#endif
|
2009-09-23 17:56:19 +00:00
|
|
|
#if defined(CONFIG_ARCH_OMAP730) || defined(CONFIG_ARCH_OMAP850)
|
2009-09-22 09:02:58 +00:00
|
|
|
case METHOD_GPIO_7XX:
|
|
|
|
reg += OMAP7XX_GPIO_INT_STATUS;
|
2009-03-24 01:07:40 +00:00
|
|
|
break;
|
|
|
|
#endif
|
2010-02-12 20:26:48 +00:00
|
|
|
#if defined(CONFIG_ARCH_OMAP2) || defined(CONFIG_ARCH_OMAP3)
|
2005-09-07 16:20:26 +00:00
|
|
|
case METHOD_GPIO_24XX:
|
|
|
|
reg += OMAP24XX_GPIO_IRQSTATUS1;
|
|
|
|
break;
|
2009-07-28 13:27:30 +00:00
|
|
|
#endif
|
|
|
|
#if defined(CONFIG_ARCH_OMAP4)
|
2010-02-15 17:27:25 +00:00
|
|
|
case METHOD_GPIO_44XX:
|
2009-07-28 13:27:30 +00:00
|
|
|
reg += OMAP4_GPIO_IRQSTATUS0;
|
|
|
|
break;
|
2006-12-07 01:13:59 +00:00
|
|
|
#endif
|
2005-07-10 18:58:15 +00:00
|
|
|
default:
|
2006-12-07 01:13:59 +00:00
|
|
|
WARN_ON(1);
|
2005-07-10 18:58:15 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
__raw_writel(gpio_mask, reg);
|
2006-09-25 09:41:46 +00:00
|
|
|
|
|
|
|
/* Workaround for clearing DSP GPIO interrupts to allow retention */
|
2010-02-15 17:27:25 +00:00
|
|
|
if (cpu_is_omap24xx() || cpu_is_omap34xx())
|
|
|
|
reg = bank->base + OMAP24XX_GPIO_IRQSTATUS2;
|
|
|
|
else if (cpu_is_omap44xx())
|
|
|
|
reg = bank->base + OMAP4_GPIO_IRQSTATUS1;
|
|
|
|
|
2009-07-28 13:27:30 +00:00
|
|
|
if (cpu_is_omap24xx() || cpu_is_omap34xx() || cpu_is_omap44xx()) {
|
2009-04-23 18:10:50 +00:00
|
|
|
__raw_writel(gpio_mask, reg);
|
|
|
|
|
|
|
|
/* Flush posted write for the irq status to avoid spurious interrupts */
|
|
|
|
__raw_readl(reg);
|
2009-07-28 13:27:30 +00:00
|
|
|
}
|
2005-07-10 18:58:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static inline void _clear_gpio_irqstatus(struct gpio_bank *bank, int gpio)
|
|
|
|
{
|
|
|
|
_clear_gpio_irqbank(bank, 1 << get_gpio_index(gpio));
|
|
|
|
}
|
|
|
|
|
2006-06-26 23:16:00 +00:00
|
|
|
static u32 _get_gpio_irqbank_mask(struct gpio_bank *bank)
|
|
|
|
{
|
|
|
|
void __iomem *reg = bank->base;
|
2006-06-26 23:16:07 +00:00
|
|
|
int inv = 0;
|
|
|
|
u32 l;
|
|
|
|
u32 mask;
|
2006-06-26 23:16:00 +00:00
|
|
|
|
|
|
|
switch (bank->method) {
|
2006-12-07 01:13:59 +00:00
|
|
|
#ifdef CONFIG_ARCH_OMAP1
|
2006-06-26 23:16:00 +00:00
|
|
|
case METHOD_MPUIO:
|
2010-12-08 00:26:58 +00:00
|
|
|
reg += OMAP_MPUIO_GPIO_MASKIT / bank->stride;
|
2006-06-26 23:16:07 +00:00
|
|
|
mask = 0xffff;
|
|
|
|
inv = 1;
|
2006-06-26 23:16:00 +00:00
|
|
|
break;
|
2006-12-07 01:13:59 +00:00
|
|
|
#endif
|
|
|
|
#ifdef CONFIG_ARCH_OMAP15XX
|
2006-06-26 23:16:00 +00:00
|
|
|
case METHOD_GPIO_1510:
|
|
|
|
reg += OMAP1510_GPIO_INT_MASK;
|
2006-06-26 23:16:07 +00:00
|
|
|
mask = 0xffff;
|
|
|
|
inv = 1;
|
2006-06-26 23:16:00 +00:00
|
|
|
break;
|
2006-12-07 01:13:59 +00:00
|
|
|
#endif
|
|
|
|
#ifdef CONFIG_ARCH_OMAP16XX
|
2006-06-26 23:16:00 +00:00
|
|
|
case METHOD_GPIO_1610:
|
|
|
|
reg += OMAP1610_GPIO_IRQENABLE1;
|
2006-06-26 23:16:07 +00:00
|
|
|
mask = 0xffff;
|
2006-06-26 23:16:00 +00:00
|
|
|
break;
|
2006-12-07 01:13:59 +00:00
|
|
|
#endif
|
2009-09-23 17:56:19 +00:00
|
|
|
#if defined(CONFIG_ARCH_OMAP730) || defined(CONFIG_ARCH_OMAP850)
|
2009-09-22 09:02:58 +00:00
|
|
|
case METHOD_GPIO_7XX:
|
|
|
|
reg += OMAP7XX_GPIO_INT_MASK;
|
2009-03-24 01:07:40 +00:00
|
|
|
mask = 0xffffffff;
|
|
|
|
inv = 1;
|
|
|
|
break;
|
|
|
|
#endif
|
2010-02-12 20:26:48 +00:00
|
|
|
#if defined(CONFIG_ARCH_OMAP2) || defined(CONFIG_ARCH_OMAP3)
|
2006-06-26 23:16:00 +00:00
|
|
|
case METHOD_GPIO_24XX:
|
|
|
|
reg += OMAP24XX_GPIO_IRQENABLE1;
|
2006-06-26 23:16:07 +00:00
|
|
|
mask = 0xffffffff;
|
2006-06-26 23:16:00 +00:00
|
|
|
break;
|
2009-07-28 13:27:30 +00:00
|
|
|
#endif
|
|
|
|
#if defined(CONFIG_ARCH_OMAP4)
|
2010-02-15 17:27:25 +00:00
|
|
|
case METHOD_GPIO_44XX:
|
2009-07-28 13:27:30 +00:00
|
|
|
reg += OMAP4_GPIO_IRQSTATUSSET0;
|
|
|
|
mask = 0xffffffff;
|
|
|
|
break;
|
2006-12-07 01:13:59 +00:00
|
|
|
#endif
|
2006-06-26 23:16:00 +00:00
|
|
|
default:
|
2006-12-07 01:13:59 +00:00
|
|
|
WARN_ON(1);
|
2006-06-26 23:16:00 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2006-06-26 23:16:07 +00:00
|
|
|
l = __raw_readl(reg);
|
|
|
|
if (inv)
|
|
|
|
l = ~l;
|
|
|
|
l &= mask;
|
|
|
|
return l;
|
2006-06-26 23:16:00 +00:00
|
|
|
}
|
|
|
|
|
2005-07-10 18:58:15 +00:00
|
|
|
static void _enable_gpio_irqbank(struct gpio_bank *bank, int gpio_mask, int enable)
|
|
|
|
{
|
2005-09-07 16:20:26 +00:00
|
|
|
void __iomem *reg = bank->base;
|
2005-07-10 18:58:15 +00:00
|
|
|
u32 l;
|
|
|
|
|
|
|
|
switch (bank->method) {
|
2006-12-07 01:13:59 +00:00
|
|
|
#ifdef CONFIG_ARCH_OMAP1
|
2005-07-10 18:58:15 +00:00
|
|
|
case METHOD_MPUIO:
|
2010-12-08 00:26:58 +00:00
|
|
|
reg += OMAP_MPUIO_GPIO_MASKIT / bank->stride;
|
2005-07-10 18:58:15 +00:00
|
|
|
l = __raw_readl(reg);
|
|
|
|
if (enable)
|
|
|
|
l &= ~(gpio_mask);
|
|
|
|
else
|
|
|
|
l |= gpio_mask;
|
|
|
|
break;
|
2006-12-07 01:13:59 +00:00
|
|
|
#endif
|
|
|
|
#ifdef CONFIG_ARCH_OMAP15XX
|
2005-07-10 18:58:15 +00:00
|
|
|
case METHOD_GPIO_1510:
|
|
|
|
reg += OMAP1510_GPIO_INT_MASK;
|
|
|
|
l = __raw_readl(reg);
|
|
|
|
if (enable)
|
|
|
|
l &= ~(gpio_mask);
|
|
|
|
else
|
|
|
|
l |= gpio_mask;
|
|
|
|
break;
|
2006-12-07 01:13:59 +00:00
|
|
|
#endif
|
|
|
|
#ifdef CONFIG_ARCH_OMAP16XX
|
2005-07-10 18:58:15 +00:00
|
|
|
case METHOD_GPIO_1610:
|
|
|
|
if (enable)
|
|
|
|
reg += OMAP1610_GPIO_SET_IRQENABLE1;
|
|
|
|
else
|
|
|
|
reg += OMAP1610_GPIO_CLEAR_IRQENABLE1;
|
|
|
|
l = gpio_mask;
|
|
|
|
break;
|
2006-12-07 01:13:59 +00:00
|
|
|
#endif
|
2009-09-23 17:56:19 +00:00
|
|
|
#if defined(CONFIG_ARCH_OMAP730) || defined(CONFIG_ARCH_OMAP850)
|
2009-09-22 09:02:58 +00:00
|
|
|
case METHOD_GPIO_7XX:
|
|
|
|
reg += OMAP7XX_GPIO_INT_MASK;
|
2009-03-24 01:07:40 +00:00
|
|
|
l = __raw_readl(reg);
|
|
|
|
if (enable)
|
|
|
|
l &= ~(gpio_mask);
|
|
|
|
else
|
|
|
|
l |= gpio_mask;
|
|
|
|
break;
|
|
|
|
#endif
|
2010-02-12 20:26:48 +00:00
|
|
|
#if defined(CONFIG_ARCH_OMAP2) || defined(CONFIG_ARCH_OMAP3)
|
2005-09-07 16:20:26 +00:00
|
|
|
case METHOD_GPIO_24XX:
|
|
|
|
if (enable)
|
|
|
|
reg += OMAP24XX_GPIO_SETIRQENABLE1;
|
|
|
|
else
|
|
|
|
reg += OMAP24XX_GPIO_CLEARIRQENABLE1;
|
|
|
|
l = gpio_mask;
|
|
|
|
break;
|
2009-07-28 13:27:30 +00:00
|
|
|
#endif
|
|
|
|
#ifdef CONFIG_ARCH_OMAP4
|
2010-02-15 17:27:25 +00:00
|
|
|
case METHOD_GPIO_44XX:
|
2009-07-28 13:27:30 +00:00
|
|
|
if (enable)
|
|
|
|
reg += OMAP4_GPIO_IRQSTATUSSET0;
|
|
|
|
else
|
|
|
|
reg += OMAP4_GPIO_IRQSTATUSCLR0;
|
|
|
|
l = gpio_mask;
|
|
|
|
break;
|
2006-12-07 01:13:59 +00:00
|
|
|
#endif
|
2005-07-10 18:58:15 +00:00
|
|
|
default:
|
2006-12-07 01:13:59 +00:00
|
|
|
WARN_ON(1);
|
2005-07-10 18:58:15 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
__raw_writel(l, reg);
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline void _set_gpio_irqenable(struct gpio_bank *bank, int gpio, int enable)
|
|
|
|
{
|
|
|
|
_enable_gpio_irqbank(bank, 1 << get_gpio_index(gpio), enable);
|
|
|
|
}
|
|
|
|
|
2005-09-07 16:20:26 +00:00
|
|
|
/*
|
|
|
|
* Note that ENAWAKEUP needs to be enabled in GPIO_SYSCONFIG register.
|
|
|
|
* 1510 does not seem to have a wake-up register. If JTAG is connected
|
|
|
|
* to the target, system will wake up always on GPIO events. While
|
|
|
|
* system is running all registered GPIO interrupts need to have wake-up
|
|
|
|
* enabled. When system is suspended, only selected GPIO interrupts need
|
|
|
|
* to have wake-up enabled.
|
|
|
|
*/
|
|
|
|
static int _set_gpio_wakeup(struct gpio_bank *bank, int gpio, int enable)
|
|
|
|
{
|
2010-01-08 18:29:05 +00:00
|
|
|
unsigned long uninitialized_var(flags);
|
2008-03-03 12:33:30 +00:00
|
|
|
|
2005-09-07 16:20:26 +00:00
|
|
|
switch (bank->method) {
|
2006-12-07 01:13:52 +00:00
|
|
|
#ifdef CONFIG_ARCH_OMAP16XX
|
2006-12-07 01:14:11 +00:00
|
|
|
case METHOD_MPUIO:
|
2005-09-07 16:20:26 +00:00
|
|
|
case METHOD_GPIO_1610:
|
2008-03-03 12:33:30 +00:00
|
|
|
spin_lock_irqsave(&bank->lock, flags);
|
2009-04-23 18:10:49 +00:00
|
|
|
if (enable)
|
2005-09-07 16:20:26 +00:00
|
|
|
bank->suspend_wakeup |= (1 << gpio);
|
2009-04-23 18:10:49 +00:00
|
|
|
else
|
2005-09-07 16:20:26 +00:00
|
|
|
bank->suspend_wakeup &= ~(1 << gpio);
|
2008-03-03 12:33:30 +00:00
|
|
|
spin_unlock_irqrestore(&bank->lock, flags);
|
2005-09-07 16:20:26 +00:00
|
|
|
return 0;
|
2006-12-07 01:13:52 +00:00
|
|
|
#endif
|
2010-02-12 20:26:48 +00:00
|
|
|
#ifdef CONFIG_ARCH_OMAP2PLUS
|
2006-12-07 01:13:52 +00:00
|
|
|
case METHOD_GPIO_24XX:
|
2010-02-15 17:27:25 +00:00
|
|
|
case METHOD_GPIO_44XX:
|
2006-12-07 01:14:11 +00:00
|
|
|
if (bank->non_wakeup_gpios & (1 << gpio)) {
|
|
|
|
printk(KERN_ERR "Unable to modify wakeup on "
|
|
|
|
"non-wakeup GPIO%d\n",
|
|
|
|
(bank - gpio_bank) * 32 + gpio);
|
|
|
|
return -EINVAL;
|
|
|
|
}
|
2008-03-03 12:33:30 +00:00
|
|
|
spin_lock_irqsave(&bank->lock, flags);
|
2009-04-23 18:10:49 +00:00
|
|
|
if (enable)
|
2006-12-07 01:13:52 +00:00
|
|
|
bank->suspend_wakeup |= (1 << gpio);
|
2009-04-23 18:10:49 +00:00
|
|
|
else
|
2006-12-07 01:13:52 +00:00
|
|
|
bank->suspend_wakeup &= ~(1 << gpio);
|
2008-03-03 12:33:30 +00:00
|
|
|
spin_unlock_irqrestore(&bank->lock, flags);
|
2006-12-07 01:13:52 +00:00
|
|
|
return 0;
|
|
|
|
#endif
|
2005-09-07 16:20:26 +00:00
|
|
|
default:
|
|
|
|
printk(KERN_ERR "Can't enable GPIO wakeup for method %i\n",
|
|
|
|
bank->method);
|
|
|
|
return -EINVAL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2006-09-25 09:41:38 +00:00
|
|
|
static void _reset_gpio(struct gpio_bank *bank, int gpio)
|
|
|
|
{
|
|
|
|
_set_gpio_direction(bank, get_gpio_index(gpio), 1);
|
|
|
|
_set_gpio_irqenable(bank, gpio, 0);
|
|
|
|
_clear_gpio_irqstatus(bank, gpio);
|
2008-07-27 03:23:31 +00:00
|
|
|
_set_gpio_triggering(bank, get_gpio_index(gpio), IRQ_TYPE_NONE);
|
2006-09-25 09:41:38 +00:00
|
|
|
}
|
|
|
|
|
2005-09-07 16:20:26 +00:00
|
|
|
/* Use disable_irq_wake() and enable_irq_wake() functions from drivers */
|
|
|
|
static int gpio_wake_enable(unsigned int irq, unsigned int enable)
|
|
|
|
{
|
|
|
|
unsigned int gpio = irq - IH_GPIO_BASE;
|
|
|
|
struct gpio_bank *bank;
|
|
|
|
int retval;
|
|
|
|
|
|
|
|
if (check_gpio(gpio) < 0)
|
|
|
|
return -ENODEV;
|
2006-12-07 01:14:10 +00:00
|
|
|
bank = get_irq_chip_data(irq);
|
2005-09-07 16:20:26 +00:00
|
|
|
retval = _set_gpio_wakeup(bank, get_gpio_index(gpio), enable);
|
|
|
|
|
|
|
|
return retval;
|
|
|
|
}
|
|
|
|
|
2008-12-11 01:35:27 +00:00
|
|
|
static int omap_gpio_request(struct gpio_chip *chip, unsigned offset)
|
2005-07-10 18:58:15 +00:00
|
|
|
{
|
2008-12-11 01:35:27 +00:00
|
|
|
struct gpio_bank *bank = container_of(chip, struct gpio_bank, chip);
|
2008-03-03 12:33:30 +00:00
|
|
|
unsigned long flags;
|
2008-03-03 20:43:23 +00:00
|
|
|
|
2008-03-03 12:33:30 +00:00
|
|
|
spin_lock_irqsave(&bank->lock, flags);
|
2005-09-07 16:20:26 +00:00
|
|
|
|
2006-09-25 09:41:38 +00:00
|
|
|
/* Set trigger to none. You need to enable the desired trigger with
|
|
|
|
* request_irq() or set_irq_type().
|
|
|
|
*/
|
2008-12-11 01:35:27 +00:00
|
|
|
_set_gpio_triggering(bank, offset, IRQ_TYPE_NONE);
|
2005-09-07 16:20:26 +00:00
|
|
|
|
2005-11-10 14:26:50 +00:00
|
|
|
#ifdef CONFIG_ARCH_OMAP15XX
|
2005-07-10 18:58:15 +00:00
|
|
|
if (bank->method == METHOD_GPIO_1510) {
|
2005-09-07 16:20:26 +00:00
|
|
|
void __iomem *reg;
|
2005-07-10 18:58:15 +00:00
|
|
|
|
2005-09-07 16:20:26 +00:00
|
|
|
/* Claim the pin for MPU */
|
2005-07-10 18:58:15 +00:00
|
|
|
reg = bank->base + OMAP1510_GPIO_PIN_CONTROL;
|
2008-12-11 01:35:27 +00:00
|
|
|
__raw_writel(__raw_readl(reg) | (1 << offset), reg);
|
2005-07-10 18:58:15 +00:00
|
|
|
}
|
|
|
|
#endif
|
2009-11-22 18:11:25 +00:00
|
|
|
if (!cpu_class_is_omap1()) {
|
|
|
|
if (!bank->mod_usage) {
|
2010-05-14 19:05:27 +00:00
|
|
|
void __iomem *reg = bank->base;
|
2009-11-22 18:11:25 +00:00
|
|
|
u32 ctrl;
|
2010-05-14 19:05:27 +00:00
|
|
|
|
|
|
|
if (cpu_is_omap24xx() || cpu_is_omap34xx())
|
|
|
|
reg += OMAP24XX_GPIO_CTRL;
|
|
|
|
else if (cpu_is_omap44xx())
|
|
|
|
reg += OMAP4_GPIO_CTRL;
|
|
|
|
ctrl = __raw_readl(reg);
|
2009-11-22 18:11:25 +00:00
|
|
|
/* Module is enabled, clocks are not gated */
|
2010-05-14 19:05:27 +00:00
|
|
|
ctrl &= 0xFFFFFFFE;
|
|
|
|
__raw_writel(ctrl, reg);
|
2009-11-22 18:11:25 +00:00
|
|
|
}
|
|
|
|
bank->mod_usage |= 1 << offset;
|
|
|
|
}
|
2008-03-03 12:33:30 +00:00
|
|
|
spin_unlock_irqrestore(&bank->lock, flags);
|
2005-07-10 18:58:15 +00:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2008-12-11 01:35:27 +00:00
|
|
|
static void omap_gpio_free(struct gpio_chip *chip, unsigned offset)
|
2005-07-10 18:58:15 +00:00
|
|
|
{
|
2008-12-11 01:35:27 +00:00
|
|
|
struct gpio_bank *bank = container_of(chip, struct gpio_bank, chip);
|
2008-03-03 12:33:30 +00:00
|
|
|
unsigned long flags;
|
2005-07-10 18:58:15 +00:00
|
|
|
|
2008-03-03 12:33:30 +00:00
|
|
|
spin_lock_irqsave(&bank->lock, flags);
|
2005-09-07 16:20:26 +00:00
|
|
|
#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;
|
2008-12-11 01:35:27 +00:00
|
|
|
__raw_writel(1 << offset, reg);
|
2005-09-07 16:20:26 +00:00
|
|
|
}
|
|
|
|
#endif
|
2010-05-14 19:05:27 +00:00
|
|
|
#if defined(CONFIG_ARCH_OMAP2) || defined(CONFIG_ARCH_OMAP3)
|
|
|
|
if (bank->method == METHOD_GPIO_24XX) {
|
2005-09-07 16:20:26 +00:00
|
|
|
/* Disable wake-up during idle for dynamic tick */
|
|
|
|
void __iomem *reg = bank->base + OMAP24XX_GPIO_CLEARWKUENA;
|
2008-12-11 01:35:27 +00:00
|
|
|
__raw_writel(1 << offset, reg);
|
2005-09-07 16:20:26 +00:00
|
|
|
}
|
2010-05-14 19:05:27 +00:00
|
|
|
#endif
|
|
|
|
#ifdef CONFIG_ARCH_OMAP4
|
|
|
|
if (bank->method == METHOD_GPIO_44XX) {
|
|
|
|
/* Disable wake-up during idle for dynamic tick */
|
|
|
|
void __iomem *reg = bank->base + OMAP4_GPIO_IRQWAKEN0;
|
|
|
|
__raw_writel(1 << offset, reg);
|
|
|
|
}
|
2005-09-07 16:20:26 +00:00
|
|
|
#endif
|
2009-11-22 18:11:25 +00:00
|
|
|
if (!cpu_class_is_omap1()) {
|
|
|
|
bank->mod_usage &= ~(1 << offset);
|
|
|
|
if (!bank->mod_usage) {
|
2010-05-14 19:05:27 +00:00
|
|
|
void __iomem *reg = bank->base;
|
2009-11-22 18:11:25 +00:00
|
|
|
u32 ctrl;
|
2010-05-14 19:05:27 +00:00
|
|
|
|
|
|
|
if (cpu_is_omap24xx() || cpu_is_omap34xx())
|
|
|
|
reg += OMAP24XX_GPIO_CTRL;
|
|
|
|
else if (cpu_is_omap44xx())
|
|
|
|
reg += OMAP4_GPIO_CTRL;
|
|
|
|
ctrl = __raw_readl(reg);
|
2009-11-22 18:11:25 +00:00
|
|
|
/* Module is disabled, clocks are gated */
|
|
|
|
ctrl |= 1;
|
2010-05-14 19:05:27 +00:00
|
|
|
__raw_writel(ctrl, reg);
|
2009-11-22 18:11:25 +00:00
|
|
|
}
|
|
|
|
}
|
2008-12-11 01:35:27 +00:00
|
|
|
_reset_gpio(bank, bank->chip.base + offset);
|
2008-03-03 12:33:30 +00:00
|
|
|
spin_unlock_irqrestore(&bank->lock, flags);
|
2005-07-10 18:58:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* We need to unmask the GPIO bank interrupt as soon as possible to
|
|
|
|
* avoid missing GPIO interrupts for other lines in the bank.
|
|
|
|
* Then we need to mask-read-clear-unmask the triggered GPIO lines
|
|
|
|
* in the bank to avoid missing nested interrupts for a GPIO line.
|
|
|
|
* If we wait to unmask individual GPIO lines in the bank after the
|
|
|
|
* line's interrupt handler has been run, we may miss some nested
|
|
|
|
* interrupts.
|
|
|
|
*/
|
2006-11-23 11:41:32 +00:00
|
|
|
static void gpio_irq_handler(unsigned int irq, struct irq_desc *desc)
|
2005-07-10 18:58:15 +00:00
|
|
|
{
|
2005-09-07 16:20:26 +00:00
|
|
|
void __iomem *isr_reg = NULL;
|
2005-07-10 18:58:15 +00:00
|
|
|
u32 isr;
|
omap: gpio: Simultaneously requested rising and falling edge
Some chips, namely any OMAP1 chips using METHOD_MPUIO,
OMAP15xx and OMAP7xx, cannot be setup to respond to on-chip GPIO
interrupts in both rising and falling edge directions -- they can
only respond to one direction or the other, depending on how the
ICR is configured.
Additionally, current code forces rising edge detection if both
flags are specified:
if (trigger & IRQ_TYPE_EDGE_RISING)
l |= 1 << gpio;
else if (trigger & IRQ_TYPE_EDGE_FALLING)
l &= ~(1 << gpio);
else
goto bad;
This change implements a toggle function that will modify the ICR
to flip the direction of interrupt for IRQs that are requested with
both rising and falling flags. The toggle function is not called
for chips and GPIOs it does not apply to through the use of a flip_mask
that's added on a per-bank basis. The mask is only set for those
GPIOs where a toggle is necessary. Edge detection starts out the
same as above with FALLING mode first.
The toggle happens on EACH interrupt; without it, we have the
following sequence of actions on GPIO transition:
ICR GPIO Result
0x1 0 -> 1 (rising) Interrupt
0x1 1 -> 0 (falling) No interrupt
(set ICR to 0x0 manually)
0x0 0 -> 1 (rising) No interrupt
0x0 1 -> 0 (falling) Interrupt
That is, with the ICR set to 1 for a gpio, only rising edge interrupts
are caught, and with it set to 0, only falling edge interrupts are
caught. If we add in the toggle, we get this:
ICR GPIO Result
0x1 0 -> 1 (rising) Interrupt (ICR set to 0x0)
0x0 1 -> 0 (falling) Interrupt (ICR set to 0x1)
0x1 0 -> 1 ...
so, both rising and falling are caught, per the request for both
(IRQ_TYPE_EDGE_RISING | IRQ_TYPE_EDGE_FALLING).
Signed-off-by: Cory Maccarrone <darkstar6262@gmail.com>
Acked-by: Kevin Hilman <khilman@deeprootsystems.com>
Signed-off-by: Tony Lindgren <tony@atomide.com>
2010-01-08 18:29:04 +00:00
|
|
|
unsigned int gpio_irq, gpio_index;
|
2005-07-10 18:58:15 +00:00
|
|
|
struct gpio_bank *bank;
|
2006-06-26 23:16:00 +00:00
|
|
|
u32 retrigger = 0;
|
|
|
|
int unmasked = 0;
|
2005-07-10 18:58:15 +00:00
|
|
|
|
|
|
|
desc->chip->ack(irq);
|
|
|
|
|
2006-07-01 21:32:41 +00:00
|
|
|
bank = get_irq_data(irq);
|
2006-12-07 01:13:59 +00:00
|
|
|
#ifdef CONFIG_ARCH_OMAP1
|
2005-07-10 18:58:15 +00:00
|
|
|
if (bank->method == METHOD_MPUIO)
|
2010-12-08 00:26:58 +00:00
|
|
|
isr_reg = bank->base +
|
|
|
|
OMAP_MPUIO_GPIO_INT / bank->stride;
|
2006-12-07 01:13:59 +00:00
|
|
|
#endif
|
2005-11-10 14:26:50 +00:00
|
|
|
#ifdef CONFIG_ARCH_OMAP15XX
|
2005-07-10 18:58:15 +00:00
|
|
|
if (bank->method == METHOD_GPIO_1510)
|
|
|
|
isr_reg = bank->base + OMAP1510_GPIO_INT_STATUS;
|
|
|
|
#endif
|
|
|
|
#if defined(CONFIG_ARCH_OMAP16XX)
|
|
|
|
if (bank->method == METHOD_GPIO_1610)
|
|
|
|
isr_reg = bank->base + OMAP1610_GPIO_IRQSTATUS1;
|
|
|
|
#endif
|
2009-09-23 17:56:19 +00:00
|
|
|
#if defined(CONFIG_ARCH_OMAP730) || defined(CONFIG_ARCH_OMAP850)
|
2009-09-22 09:02:58 +00:00
|
|
|
if (bank->method == METHOD_GPIO_7XX)
|
|
|
|
isr_reg = bank->base + OMAP7XX_GPIO_INT_STATUS;
|
2009-03-24 01:07:40 +00:00
|
|
|
#endif
|
2010-02-12 20:26:48 +00:00
|
|
|
#if defined(CONFIG_ARCH_OMAP2) || defined(CONFIG_ARCH_OMAP3)
|
2005-09-07 16:20:26 +00:00
|
|
|
if (bank->method == METHOD_GPIO_24XX)
|
|
|
|
isr_reg = bank->base + OMAP24XX_GPIO_IRQSTATUS1;
|
2009-07-28 13:27:30 +00:00
|
|
|
#endif
|
|
|
|
#if defined(CONFIG_ARCH_OMAP4)
|
2010-02-15 17:27:25 +00:00
|
|
|
if (bank->method == METHOD_GPIO_44XX)
|
2009-07-28 13:27:30 +00:00
|
|
|
isr_reg = bank->base + OMAP4_GPIO_IRQSTATUS0;
|
2005-09-07 16:20:26 +00:00
|
|
|
#endif
|
2010-12-08 00:25:40 +00:00
|
|
|
|
|
|
|
if (WARN_ON(!isr_reg))
|
|
|
|
goto exit;
|
|
|
|
|
2005-09-07 16:20:26 +00:00
|
|
|
while(1) {
|
2006-04-02 16:46:23 +00:00
|
|
|
u32 isr_saved, level_mask = 0;
|
2006-06-26 23:16:00 +00:00
|
|
|
u32 enabled;
|
2006-04-02 16:46:23 +00:00
|
|
|
|
2006-06-26 23:16:00 +00:00
|
|
|
enabled = _get_gpio_irqbank_mask(bank);
|
|
|
|
isr_saved = isr = __raw_readl(isr_reg) & enabled;
|
2006-04-02 16:46:23 +00:00
|
|
|
|
|
|
|
if (cpu_is_omap15xx() && (bank->method == METHOD_MPUIO))
|
|
|
|
isr &= 0x0000ffff;
|
|
|
|
|
2007-11-30 00:15:11 +00:00
|
|
|
if (cpu_class_is_omap2()) {
|
2008-01-17 05:56:15 +00:00
|
|
|
level_mask = bank->level_mask & enabled;
|
2006-06-26 23:16:00 +00:00
|
|
|
}
|
2006-04-02 16:46:23 +00:00
|
|
|
|
|
|
|
/* clear edge sensitive interrupts before handler(s) are
|
|
|
|
called so that we don't miss any interrupt occurred while
|
|
|
|
executing them */
|
|
|
|
_enable_gpio_irqbank(bank, isr_saved & ~level_mask, 0);
|
|
|
|
_clear_gpio_irqbank(bank, isr_saved & ~level_mask);
|
|
|
|
_enable_gpio_irqbank(bank, isr_saved & ~level_mask, 1);
|
|
|
|
|
|
|
|
/* if there is only edge sensitive GPIO pin interrupts
|
|
|
|
configured, we could unmask GPIO bank interrupt immediately */
|
2006-06-26 23:16:00 +00:00
|
|
|
if (!level_mask && !unmasked) {
|
|
|
|
unmasked = 1;
|
2006-04-02 16:46:23 +00:00
|
|
|
desc->chip->unmask(irq);
|
2006-06-26 23:16:00 +00:00
|
|
|
}
|
2005-09-07 16:20:26 +00:00
|
|
|
|
2006-06-26 23:16:00 +00:00
|
|
|
isr |= retrigger;
|
|
|
|
retrigger = 0;
|
2005-09-07 16:20:26 +00:00
|
|
|
if (!isr)
|
|
|
|
break;
|
|
|
|
|
|
|
|
gpio_irq = bank->virtual_irq_start;
|
|
|
|
for (; isr != 0; isr >>= 1, gpio_irq++) {
|
omap: gpio: Simultaneously requested rising and falling edge
Some chips, namely any OMAP1 chips using METHOD_MPUIO,
OMAP15xx and OMAP7xx, cannot be setup to respond to on-chip GPIO
interrupts in both rising and falling edge directions -- they can
only respond to one direction or the other, depending on how the
ICR is configured.
Additionally, current code forces rising edge detection if both
flags are specified:
if (trigger & IRQ_TYPE_EDGE_RISING)
l |= 1 << gpio;
else if (trigger & IRQ_TYPE_EDGE_FALLING)
l &= ~(1 << gpio);
else
goto bad;
This change implements a toggle function that will modify the ICR
to flip the direction of interrupt for IRQs that are requested with
both rising and falling flags. The toggle function is not called
for chips and GPIOs it does not apply to through the use of a flip_mask
that's added on a per-bank basis. The mask is only set for those
GPIOs where a toggle is necessary. Edge detection starts out the
same as above with FALLING mode first.
The toggle happens on EACH interrupt; without it, we have the
following sequence of actions on GPIO transition:
ICR GPIO Result
0x1 0 -> 1 (rising) Interrupt
0x1 1 -> 0 (falling) No interrupt
(set ICR to 0x0 manually)
0x0 0 -> 1 (rising) No interrupt
0x0 1 -> 0 (falling) Interrupt
That is, with the ICR set to 1 for a gpio, only rising edge interrupts
are caught, and with it set to 0, only falling edge interrupts are
caught. If we add in the toggle, we get this:
ICR GPIO Result
0x1 0 -> 1 (rising) Interrupt (ICR set to 0x0)
0x0 1 -> 0 (falling) Interrupt (ICR set to 0x1)
0x1 0 -> 1 ...
so, both rising and falling are caught, per the request for both
(IRQ_TYPE_EDGE_RISING | IRQ_TYPE_EDGE_FALLING).
Signed-off-by: Cory Maccarrone <darkstar6262@gmail.com>
Acked-by: Kevin Hilman <khilman@deeprootsystems.com>
Signed-off-by: Tony Lindgren <tony@atomide.com>
2010-01-08 18:29:04 +00:00
|
|
|
gpio_index = get_gpio_index(irq_to_gpio(gpio_irq));
|
|
|
|
|
2005-09-07 16:20:26 +00:00
|
|
|
if (!(isr & 1))
|
|
|
|
continue;
|
2006-07-03 00:22:22 +00:00
|
|
|
|
omap: gpio: Simultaneously requested rising and falling edge
Some chips, namely any OMAP1 chips using METHOD_MPUIO,
OMAP15xx and OMAP7xx, cannot be setup to respond to on-chip GPIO
interrupts in both rising and falling edge directions -- they can
only respond to one direction or the other, depending on how the
ICR is configured.
Additionally, current code forces rising edge detection if both
flags are specified:
if (trigger & IRQ_TYPE_EDGE_RISING)
l |= 1 << gpio;
else if (trigger & IRQ_TYPE_EDGE_FALLING)
l &= ~(1 << gpio);
else
goto bad;
This change implements a toggle function that will modify the ICR
to flip the direction of interrupt for IRQs that are requested with
both rising and falling flags. The toggle function is not called
for chips and GPIOs it does not apply to through the use of a flip_mask
that's added on a per-bank basis. The mask is only set for those
GPIOs where a toggle is necessary. Edge detection starts out the
same as above with FALLING mode first.
The toggle happens on EACH interrupt; without it, we have the
following sequence of actions on GPIO transition:
ICR GPIO Result
0x1 0 -> 1 (rising) Interrupt
0x1 1 -> 0 (falling) No interrupt
(set ICR to 0x0 manually)
0x0 0 -> 1 (rising) No interrupt
0x0 1 -> 0 (falling) Interrupt
That is, with the ICR set to 1 for a gpio, only rising edge interrupts
are caught, and with it set to 0, only falling edge interrupts are
caught. If we add in the toggle, we get this:
ICR GPIO Result
0x1 0 -> 1 (rising) Interrupt (ICR set to 0x0)
0x0 1 -> 0 (falling) Interrupt (ICR set to 0x1)
0x1 0 -> 1 ...
so, both rising and falling are caught, per the request for both
(IRQ_TYPE_EDGE_RISING | IRQ_TYPE_EDGE_FALLING).
Signed-off-by: Cory Maccarrone <darkstar6262@gmail.com>
Acked-by: Kevin Hilman <khilman@deeprootsystems.com>
Signed-off-by: Tony Lindgren <tony@atomide.com>
2010-01-08 18:29:04 +00:00
|
|
|
#ifdef CONFIG_ARCH_OMAP1
|
|
|
|
/*
|
|
|
|
* Some chips can't respond to both rising and falling
|
|
|
|
* at the same time. If this irq was requested with
|
|
|
|
* both flags, we need to flip the ICR data for the IRQ
|
|
|
|
* to respond to the IRQ for the opposite direction.
|
|
|
|
* This will be indicated in the bank toggle_mask.
|
|
|
|
*/
|
|
|
|
if (bank->toggle_mask & (1 << gpio_index))
|
|
|
|
_toggle_gpio_edge_triggering(bank, gpio_index);
|
|
|
|
#endif
|
|
|
|
|
2008-10-09 12:36:24 +00:00
|
|
|
generic_handle_irq(gpio_irq);
|
2005-09-07 16:20:26 +00:00
|
|
|
}
|
2005-11-10 14:26:50 +00:00
|
|
|
}
|
2006-06-26 23:16:00 +00:00
|
|
|
/* if bank has any level sensitive GPIO pin interrupt
|
|
|
|
configured, we must unmask the bank interrupt only after
|
|
|
|
handler(s) are executed in order to avoid spurious bank
|
|
|
|
interrupt */
|
2010-12-08 00:25:40 +00:00
|
|
|
exit:
|
2006-06-26 23:16:00 +00:00
|
|
|
if (!unmasked)
|
|
|
|
desc->chip->unmask(irq);
|
|
|
|
|
2005-07-10 18:58:15 +00:00
|
|
|
}
|
|
|
|
|
2006-09-25 09:41:38 +00:00
|
|
|
static void gpio_irq_shutdown(unsigned int irq)
|
|
|
|
{
|
|
|
|
unsigned int gpio = irq - IH_GPIO_BASE;
|
2006-12-07 01:14:10 +00:00
|
|
|
struct gpio_bank *bank = get_irq_chip_data(irq);
|
2006-09-25 09:41:38 +00:00
|
|
|
|
|
|
|
_reset_gpio(bank, gpio);
|
|
|
|
}
|
|
|
|
|
2005-07-10 18:58:15 +00:00
|
|
|
static void gpio_ack_irq(unsigned int irq)
|
|
|
|
{
|
|
|
|
unsigned int gpio = irq - IH_GPIO_BASE;
|
2006-12-07 01:14:10 +00:00
|
|
|
struct gpio_bank *bank = get_irq_chip_data(irq);
|
2005-07-10 18:58:15 +00:00
|
|
|
|
|
|
|
_clear_gpio_irqstatus(bank, gpio);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void gpio_mask_irq(unsigned int irq)
|
|
|
|
{
|
|
|
|
unsigned int gpio = irq - IH_GPIO_BASE;
|
2006-12-07 01:14:10 +00:00
|
|
|
struct gpio_bank *bank = get_irq_chip_data(irq);
|
2005-07-10 18:58:15 +00:00
|
|
|
|
|
|
|
_set_gpio_irqenable(bank, gpio, 0);
|
2009-06-04 22:57:10 +00:00
|
|
|
_set_gpio_triggering(bank, get_gpio_index(gpio), IRQ_TYPE_NONE);
|
2005-07-10 18:58:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void gpio_unmask_irq(unsigned int irq)
|
|
|
|
{
|
|
|
|
unsigned int gpio = irq - IH_GPIO_BASE;
|
2006-12-07 01:14:10 +00:00
|
|
|
struct gpio_bank *bank = get_irq_chip_data(irq);
|
2008-01-17 05:56:15 +00:00
|
|
|
unsigned int irq_mask = 1 << get_gpio_index(gpio);
|
2009-06-04 22:57:10 +00:00
|
|
|
struct irq_desc *desc = irq_to_desc(irq);
|
|
|
|
u32 trigger = desc->status & IRQ_TYPE_SENSE_MASK;
|
|
|
|
|
|
|
|
if (trigger)
|
|
|
|
_set_gpio_triggering(bank, get_gpio_index(gpio), trigger);
|
2008-01-17 05:56:15 +00:00
|
|
|
|
|
|
|
/* For level-triggered GPIOs, the clearing must be done after
|
|
|
|
* the HW source is cleared, thus after the handler has run */
|
|
|
|
if (bank->level_mask & irq_mask) {
|
|
|
|
_set_gpio_irqenable(bank, gpio, 0);
|
|
|
|
_clear_gpio_irqstatus(bank, gpio);
|
|
|
|
}
|
2005-07-10 18:58:15 +00:00
|
|
|
|
2008-01-17 05:56:14 +00:00
|
|
|
_set_gpio_irqenable(bank, gpio, 1);
|
2005-07-10 18:58:15 +00:00
|
|
|
}
|
|
|
|
|
2006-12-07 01:13:59 +00:00
|
|
|
static struct irq_chip gpio_irq_chip = {
|
|
|
|
.name = "GPIO",
|
|
|
|
.shutdown = gpio_irq_shutdown,
|
|
|
|
.ack = gpio_ack_irq,
|
|
|
|
.mask = gpio_mask_irq,
|
|
|
|
.unmask = gpio_unmask_irq,
|
|
|
|
.set_type = gpio_irq_type,
|
|
|
|
.set_wake = gpio_wake_enable,
|
|
|
|
};
|
|
|
|
|
|
|
|
/*---------------------------------------------------------------------*/
|
|
|
|
|
|
|
|
#ifdef CONFIG_ARCH_OMAP1
|
|
|
|
|
|
|
|
/* MPUIO uses the always-on 32k clock */
|
|
|
|
|
2005-07-10 18:58:15 +00:00
|
|
|
static void mpuio_ack_irq(unsigned int irq)
|
|
|
|
{
|
|
|
|
/* The ISR is reset automatically, so do nothing here. */
|
|
|
|
}
|
|
|
|
|
|
|
|
static void mpuio_mask_irq(unsigned int irq)
|
|
|
|
{
|
|
|
|
unsigned int gpio = OMAP_MPUIO(irq - IH_MPUIO_BASE);
|
2006-12-07 01:14:10 +00:00
|
|
|
struct gpio_bank *bank = get_irq_chip_data(irq);
|
2005-07-10 18:58:15 +00:00
|
|
|
|
|
|
|
_set_gpio_irqenable(bank, gpio, 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void mpuio_unmask_irq(unsigned int irq)
|
|
|
|
{
|
|
|
|
unsigned int gpio = OMAP_MPUIO(irq - IH_MPUIO_BASE);
|
2006-12-07 01:14:10 +00:00
|
|
|
struct gpio_bank *bank = get_irq_chip_data(irq);
|
2005-07-10 18:58:15 +00:00
|
|
|
|
|
|
|
_set_gpio_irqenable(bank, gpio, 1);
|
|
|
|
}
|
|
|
|
|
2006-12-07 01:13:59 +00:00
|
|
|
static struct irq_chip mpuio_irq_chip = {
|
|
|
|
.name = "MPUIO",
|
|
|
|
.ack = mpuio_ack_irq,
|
|
|
|
.mask = mpuio_mask_irq,
|
|
|
|
.unmask = mpuio_unmask_irq,
|
2005-09-07 16:20:26 +00:00
|
|
|
.set_type = gpio_irq_type,
|
2006-12-07 01:14:11 +00:00
|
|
|
#ifdef CONFIG_ARCH_OMAP16XX
|
|
|
|
/* REVISIT: assuming only 16xx supports MPUIO wake events */
|
|
|
|
.set_wake = gpio_wake_enable,
|
|
|
|
#endif
|
2005-07-10 18:58:15 +00:00
|
|
|
};
|
|
|
|
|
2006-12-07 01:13:59 +00:00
|
|
|
|
|
|
|
#define bank_is_mpuio(bank) ((bank)->method == METHOD_MPUIO)
|
|
|
|
|
2006-12-07 01:14:11 +00:00
|
|
|
|
|
|
|
#ifdef CONFIG_ARCH_OMAP16XX
|
|
|
|
|
|
|
|
#include <linux/platform_device.h>
|
|
|
|
|
2009-07-08 11:22:04 +00:00
|
|
|
static int omap_mpuio_suspend_noirq(struct device *dev)
|
2006-12-07 01:14:11 +00:00
|
|
|
{
|
2009-07-08 11:22:04 +00:00
|
|
|
struct platform_device *pdev = to_platform_device(dev);
|
2006-12-07 01:14:11 +00:00
|
|
|
struct gpio_bank *bank = platform_get_drvdata(pdev);
|
2010-12-08 00:26:58 +00:00
|
|
|
void __iomem *mask_reg = bank->base +
|
|
|
|
OMAP_MPUIO_GPIO_MASKIT / bank->stride;
|
2008-03-03 12:33:30 +00:00
|
|
|
unsigned long flags;
|
2006-12-07 01:14:11 +00:00
|
|
|
|
2008-03-03 12:33:30 +00:00
|
|
|
spin_lock_irqsave(&bank->lock, flags);
|
2006-12-07 01:14:11 +00:00
|
|
|
bank->saved_wakeup = __raw_readl(mask_reg);
|
|
|
|
__raw_writel(0xffff & ~bank->suspend_wakeup, mask_reg);
|
2008-03-03 12:33:30 +00:00
|
|
|
spin_unlock_irqrestore(&bank->lock, flags);
|
2006-12-07 01:14:11 +00:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2009-07-08 11:22:04 +00:00
|
|
|
static int omap_mpuio_resume_noirq(struct device *dev)
|
2006-12-07 01:14:11 +00:00
|
|
|
{
|
2009-07-08 11:22:04 +00:00
|
|
|
struct platform_device *pdev = to_platform_device(dev);
|
2006-12-07 01:14:11 +00:00
|
|
|
struct gpio_bank *bank = platform_get_drvdata(pdev);
|
2010-12-08 00:26:58 +00:00
|
|
|
void __iomem *mask_reg = bank->base +
|
|
|
|
OMAP_MPUIO_GPIO_MASKIT / bank->stride;
|
2008-03-03 12:33:30 +00:00
|
|
|
unsigned long flags;
|
2006-12-07 01:14:11 +00:00
|
|
|
|
2008-03-03 12:33:30 +00:00
|
|
|
spin_lock_irqsave(&bank->lock, flags);
|
2006-12-07 01:14:11 +00:00
|
|
|
__raw_writel(bank->saved_wakeup, mask_reg);
|
2008-03-03 12:33:30 +00:00
|
|
|
spin_unlock_irqrestore(&bank->lock, flags);
|
2006-12-07 01:14:11 +00:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2009-12-15 02:00:08 +00:00
|
|
|
static const struct dev_pm_ops omap_mpuio_dev_pm_ops = {
|
2009-07-08 11:22:04 +00:00
|
|
|
.suspend_noirq = omap_mpuio_suspend_noirq,
|
|
|
|
.resume_noirq = omap_mpuio_resume_noirq,
|
|
|
|
};
|
|
|
|
|
2006-12-07 01:14:11 +00:00
|
|
|
/* use platform_driver for this, now that there's no longer any
|
|
|
|
* point to sys_device (other than not disturbing old code).
|
|
|
|
*/
|
|
|
|
static struct platform_driver omap_mpuio_driver = {
|
|
|
|
.driver = {
|
|
|
|
.name = "mpuio",
|
2009-07-08 11:22:04 +00:00
|
|
|
.pm = &omap_mpuio_dev_pm_ops,
|
2006-12-07 01:14:11 +00:00
|
|
|
},
|
|
|
|
};
|
|
|
|
|
|
|
|
static struct platform_device omap_mpuio_device = {
|
|
|
|
.name = "mpuio",
|
|
|
|
.id = -1,
|
|
|
|
.dev = {
|
|
|
|
.driver = &omap_mpuio_driver.driver,
|
|
|
|
}
|
|
|
|
/* could list the /proc/iomem resources */
|
|
|
|
};
|
|
|
|
|
|
|
|
static inline void mpuio_init(void)
|
|
|
|
{
|
2010-12-08 00:26:57 +00:00
|
|
|
struct gpio_bank *bank = get_gpio_bank(OMAP_MPUIO(0));
|
|
|
|
platform_set_drvdata(&omap_mpuio_device, bank);
|
2007-04-02 19:46:47 +00:00
|
|
|
|
2006-12-07 01:14:11 +00:00
|
|
|
if (platform_driver_register(&omap_mpuio_driver) == 0)
|
|
|
|
(void) platform_device_register(&omap_mpuio_device);
|
|
|
|
}
|
|
|
|
|
|
|
|
#else
|
|
|
|
static inline void mpuio_init(void) {}
|
|
|
|
#endif /* 16xx */
|
|
|
|
|
2006-12-07 01:13:59 +00:00
|
|
|
#else
|
|
|
|
|
|
|
|
extern struct irq_chip mpuio_irq_chip;
|
|
|
|
|
|
|
|
#define bank_is_mpuio(bank) 0
|
2006-12-07 01:14:11 +00:00
|
|
|
static inline void mpuio_init(void) {}
|
2006-12-07 01:13:59 +00:00
|
|
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/*---------------------------------------------------------------------*/
|
2005-07-10 18:58:15 +00:00
|
|
|
|
2008-03-03 20:43:23 +00:00
|
|
|
/* REVISIT these are stupid implementations! replace by ones that
|
|
|
|
* don't switch on METHOD_* and which mostly avoid spinlocks
|
|
|
|
*/
|
|
|
|
|
|
|
|
static int gpio_input(struct gpio_chip *chip, unsigned offset)
|
|
|
|
{
|
|
|
|
struct gpio_bank *bank;
|
|
|
|
unsigned long flags;
|
|
|
|
|
|
|
|
bank = container_of(chip, struct gpio_bank, chip);
|
|
|
|
spin_lock_irqsave(&bank->lock, flags);
|
|
|
|
_set_gpio_direction(bank, offset, 1);
|
|
|
|
spin_unlock_irqrestore(&bank->lock, flags);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2009-08-05 13:53:24 +00:00
|
|
|
static int gpio_is_input(struct gpio_bank *bank, int mask)
|
|
|
|
{
|
|
|
|
void __iomem *reg = bank->base;
|
|
|
|
|
|
|
|
switch (bank->method) {
|
|
|
|
case METHOD_MPUIO:
|
2010-12-08 00:26:58 +00:00
|
|
|
reg += OMAP_MPUIO_IO_CNTL / bank->stride;
|
2009-08-05 13:53:24 +00:00
|
|
|
break;
|
|
|
|
case METHOD_GPIO_1510:
|
|
|
|
reg += OMAP1510_GPIO_DIR_CONTROL;
|
|
|
|
break;
|
|
|
|
case METHOD_GPIO_1610:
|
|
|
|
reg += OMAP1610_GPIO_DIRECTION;
|
|
|
|
break;
|
2009-09-22 09:02:58 +00:00
|
|
|
case METHOD_GPIO_7XX:
|
|
|
|
reg += OMAP7XX_GPIO_DIR_CONTROL;
|
2009-08-05 13:53:24 +00:00
|
|
|
break;
|
|
|
|
case METHOD_GPIO_24XX:
|
|
|
|
reg += OMAP24XX_GPIO_OE;
|
|
|
|
break;
|
2010-05-14 19:05:27 +00:00
|
|
|
case METHOD_GPIO_44XX:
|
|
|
|
reg += OMAP4_GPIO_OE;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
WARN_ONCE(1, "gpio_is_input: incorrect OMAP GPIO method");
|
|
|
|
return -EINVAL;
|
2009-08-05 13:53:24 +00:00
|
|
|
}
|
|
|
|
return __raw_readl(reg) & mask;
|
|
|
|
}
|
|
|
|
|
2008-03-03 20:43:23 +00:00
|
|
|
static int gpio_get(struct gpio_chip *chip, unsigned offset)
|
|
|
|
{
|
2009-08-05 13:53:24 +00:00
|
|
|
struct gpio_bank *bank;
|
|
|
|
void __iomem *reg;
|
|
|
|
int gpio;
|
|
|
|
u32 mask;
|
|
|
|
|
|
|
|
gpio = chip->base + offset;
|
|
|
|
bank = get_gpio_bank(gpio);
|
|
|
|
reg = bank->base;
|
|
|
|
mask = 1 << get_gpio_index(gpio);
|
|
|
|
|
|
|
|
if (gpio_is_input(bank, mask))
|
|
|
|
return _get_gpio_datain(bank, gpio);
|
|
|
|
else
|
|
|
|
return _get_gpio_dataout(bank, gpio);
|
2008-03-03 20:43:23 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static int gpio_output(struct gpio_chip *chip, unsigned offset, int value)
|
|
|
|
{
|
|
|
|
struct gpio_bank *bank;
|
|
|
|
unsigned long flags;
|
|
|
|
|
|
|
|
bank = container_of(chip, struct gpio_bank, chip);
|
|
|
|
spin_lock_irqsave(&bank->lock, flags);
|
|
|
|
_set_gpio_dataout(bank, offset, value);
|
|
|
|
_set_gpio_direction(bank, offset, 0);
|
|
|
|
spin_unlock_irqrestore(&bank->lock, flags);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2010-05-26 21:42:23 +00:00
|
|
|
static int gpio_debounce(struct gpio_chip *chip, unsigned offset,
|
|
|
|
unsigned debounce)
|
|
|
|
{
|
|
|
|
struct gpio_bank *bank;
|
|
|
|
unsigned long flags;
|
|
|
|
|
|
|
|
bank = container_of(chip, struct gpio_bank, chip);
|
2010-12-08 00:26:57 +00:00
|
|
|
|
|
|
|
if (!bank->dbck) {
|
|
|
|
bank->dbck = clk_get(bank->dev, "dbclk");
|
|
|
|
if (IS_ERR(bank->dbck))
|
|
|
|
dev_err(bank->dev, "Could not get gpio dbck\n");
|
|
|
|
}
|
|
|
|
|
2010-05-26 21:42:23 +00:00
|
|
|
spin_lock_irqsave(&bank->lock, flags);
|
|
|
|
_set_gpio_debounce(bank, offset, debounce);
|
|
|
|
spin_unlock_irqrestore(&bank->lock, flags);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2008-03-03 20:43:23 +00:00
|
|
|
static void gpio_set(struct gpio_chip *chip, unsigned offset, int value)
|
|
|
|
{
|
|
|
|
struct gpio_bank *bank;
|
|
|
|
unsigned long flags;
|
|
|
|
|
|
|
|
bank = container_of(chip, struct gpio_bank, chip);
|
|
|
|
spin_lock_irqsave(&bank->lock, flags);
|
|
|
|
_set_gpio_dataout(bank, offset, value);
|
|
|
|
spin_unlock_irqrestore(&bank->lock, flags);
|
|
|
|
}
|
|
|
|
|
2008-12-11 01:35:25 +00:00
|
|
|
static int gpio_2irq(struct gpio_chip *chip, unsigned offset)
|
|
|
|
{
|
|
|
|
struct gpio_bank *bank;
|
|
|
|
|
|
|
|
bank = container_of(chip, struct gpio_bank, chip);
|
|
|
|
return bank->virtual_irq_start + offset;
|
|
|
|
}
|
|
|
|
|
2008-03-03 20:43:23 +00:00
|
|
|
/*---------------------------------------------------------------------*/
|
|
|
|
|
2010-12-08 00:26:56 +00:00
|
|
|
static void __init omap_gpio_show_rev(struct gpio_bank *bank)
|
2009-10-19 22:25:20 +00:00
|
|
|
{
|
|
|
|
u32 rev;
|
|
|
|
|
2010-12-08 00:26:56 +00:00
|
|
|
if (cpu_is_omap16xx() && !(bank->method != METHOD_MPUIO))
|
|
|
|
rev = __raw_readw(bank->base + OMAP1610_GPIO_REVISION);
|
2009-10-19 22:25:20 +00:00
|
|
|
else if (cpu_is_omap24xx() || cpu_is_omap34xx())
|
2010-12-08 00:26:56 +00:00
|
|
|
rev = __raw_readl(bank->base + OMAP24XX_GPIO_REVISION);
|
2009-10-19 22:25:20 +00:00
|
|
|
else if (cpu_is_omap44xx())
|
2010-12-08 00:26:56 +00:00
|
|
|
rev = __raw_readl(bank->base + OMAP4_GPIO_REVISION);
|
2009-10-19 22:25:20 +00:00
|
|
|
else
|
|
|
|
return;
|
|
|
|
|
|
|
|
printk(KERN_INFO "OMAP GPIO hardware version %d.%d\n",
|
|
|
|
(rev >> 4) & 0x0f, rev & 0x0f);
|
|
|
|
}
|
|
|
|
|
2008-02-26 19:10:50 +00:00
|
|
|
/* This lock class tells lockdep that GPIO irqs are in a different
|
|
|
|
* category than their parents, so it won't report false recursion.
|
|
|
|
*/
|
|
|
|
static struct lock_class_key gpio_lock_class;
|
|
|
|
|
2010-12-08 00:26:57 +00:00
|
|
|
static inline int init_gpio_info(struct platform_device *pdev)
|
|
|
|
{
|
|
|
|
/* TODO: Analyze removing gpio_bank_count usage from driver code */
|
|
|
|
gpio_bank = kzalloc(gpio_bank_count * sizeof(struct gpio_bank),
|
|
|
|
GFP_KERNEL);
|
|
|
|
if (!gpio_bank) {
|
|
|
|
dev_err(&pdev->dev, "Memory alloc failed for gpio_bank\n");
|
|
|
|
return -ENOMEM;
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* TODO: Cleanup cpu_is_* checks */
|
2010-12-08 00:26:55 +00:00
|
|
|
static void omap_gpio_mod_init(struct gpio_bank *bank, int id)
|
|
|
|
{
|
|
|
|
if (cpu_class_is_omap2()) {
|
|
|
|
if (cpu_is_omap44xx()) {
|
|
|
|
__raw_writel(0xffffffff, bank->base +
|
|
|
|
OMAP4_GPIO_IRQSTATUSCLR0);
|
|
|
|
__raw_writel(0x00000000, bank->base +
|
|
|
|
OMAP4_GPIO_DEBOUNCENABLE);
|
|
|
|
/* Initialize interface clk ungated, module enabled */
|
|
|
|
__raw_writel(0, bank->base + OMAP4_GPIO_CTRL);
|
|
|
|
} else if (cpu_is_omap34xx()) {
|
|
|
|
__raw_writel(0x00000000, bank->base +
|
|
|
|
OMAP24XX_GPIO_IRQENABLE1);
|
|
|
|
__raw_writel(0xffffffff, bank->base +
|
|
|
|
OMAP24XX_GPIO_IRQSTATUS1);
|
|
|
|
__raw_writel(0x00000000, bank->base +
|
|
|
|
OMAP24XX_GPIO_DEBOUNCE_EN);
|
|
|
|
|
|
|
|
/* Initialize interface clk ungated, module enabled */
|
|
|
|
__raw_writel(0, bank->base + OMAP24XX_GPIO_CTRL);
|
|
|
|
} else if (cpu_is_omap24xx()) {
|
|
|
|
static const u32 non_wakeup_gpios[] = {
|
|
|
|
0xe203ffc0, 0x08700040
|
|
|
|
};
|
|
|
|
if (id < ARRAY_SIZE(non_wakeup_gpios))
|
|
|
|
bank->non_wakeup_gpios = non_wakeup_gpios[id];
|
|
|
|
}
|
|
|
|
} else if (cpu_class_is_omap1()) {
|
|
|
|
if (bank_is_mpuio(bank))
|
2010-12-08 00:26:58 +00:00
|
|
|
__raw_writew(0xffff, bank->base +
|
|
|
|
OMAP_MPUIO_GPIO_MASKIT / bank->stride);
|
2010-12-08 00:26:55 +00:00
|
|
|
if (cpu_is_omap15xx() && bank->method == METHOD_GPIO_1510) {
|
|
|
|
__raw_writew(0xffff, bank->base
|
|
|
|
+ OMAP1510_GPIO_INT_MASK);
|
|
|
|
__raw_writew(0x0000, bank->base
|
|
|
|
+ OMAP1510_GPIO_INT_STATUS);
|
|
|
|
}
|
|
|
|
if (cpu_is_omap16xx() && bank->method == METHOD_GPIO_1610) {
|
|
|
|
__raw_writew(0x0000, bank->base
|
|
|
|
+ OMAP1610_GPIO_IRQENABLE1);
|
|
|
|
__raw_writew(0xffff, bank->base
|
|
|
|
+ OMAP1610_GPIO_IRQSTATUS1);
|
|
|
|
__raw_writew(0x0014, bank->base
|
|
|
|
+ OMAP1610_GPIO_SYSCONFIG);
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Enable system clock for GPIO module.
|
|
|
|
* The CAM_CLK_CTRL *is* really the right place.
|
|
|
|
*/
|
|
|
|
omap_writel(omap_readl(ULPD_CAM_CLK_CTRL) | 0x04,
|
|
|
|
ULPD_CAM_CLK_CTRL);
|
|
|
|
}
|
|
|
|
if (cpu_is_omap7xx() && bank->method == METHOD_GPIO_7XX) {
|
|
|
|
__raw_writel(0xffffffff, bank->base
|
|
|
|
+ OMAP7XX_GPIO_INT_MASK);
|
|
|
|
__raw_writel(0x00000000, bank->base
|
|
|
|
+ OMAP7XX_GPIO_INT_STATUS);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void __init omap_gpio_chip_init(struct gpio_bank *bank)
|
|
|
|
{
|
2010-12-08 00:26:57 +00:00
|
|
|
int j;
|
2010-12-08 00:26:55 +00:00
|
|
|
static int gpio;
|
|
|
|
|
|
|
|
bank->mod_usage = 0;
|
|
|
|
/*
|
|
|
|
* 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;
|
|
|
|
bank->chip.set_debounce = gpio_debounce;
|
|
|
|
bank->chip.set = gpio_set;
|
|
|
|
bank->chip.to_irq = gpio_2irq;
|
|
|
|
if (bank_is_mpuio(bank)) {
|
|
|
|
bank->chip.label = "mpuio";
|
|
|
|
#ifdef CONFIG_ARCH_OMAP16XX
|
|
|
|
bank->chip.dev = &omap_mpuio_device.dev;
|
|
|
|
#endif
|
|
|
|
bank->chip.base = OMAP_MPUIO(0);
|
|
|
|
} else {
|
|
|
|
bank->chip.label = "gpio";
|
|
|
|
bank->chip.base = gpio;
|
|
|
|
gpio += bank_width;
|
|
|
|
}
|
|
|
|
bank->chip.ngpio = bank_width;
|
|
|
|
|
|
|
|
gpiochip_add(&bank->chip);
|
|
|
|
|
|
|
|
for (j = bank->virtual_irq_start;
|
|
|
|
j < bank->virtual_irq_start + bank_width; j++) {
|
|
|
|
lockdep_set_class(&irq_desc[j].lock, &gpio_lock_class);
|
|
|
|
set_irq_chip_data(j, bank);
|
|
|
|
if (bank_is_mpuio(bank))
|
|
|
|
set_irq_chip(j, &mpuio_irq_chip);
|
|
|
|
else
|
|
|
|
set_irq_chip(j, &gpio_irq_chip);
|
|
|
|
set_irq_handler(j, handle_simple_irq);
|
|
|
|
set_irq_flags(j, IRQF_VALID);
|
|
|
|
}
|
|
|
|
set_irq_chained_handler(bank->irq, gpio_irq_handler);
|
|
|
|
set_irq_data(bank->irq, bank);
|
|
|
|
}
|
|
|
|
|
2010-12-08 00:26:57 +00:00
|
|
|
static int __devinit omap_gpio_probe(struct platform_device *pdev)
|
2005-07-10 18:58:15 +00:00
|
|
|
{
|
2010-12-08 00:26:57 +00:00
|
|
|
static int gpio_init_done;
|
|
|
|
struct omap_gpio_platform_data *pdata;
|
|
|
|
struct resource *res;
|
|
|
|
int id;
|
2005-07-10 18:58:15 +00:00
|
|
|
struct gpio_bank *bank;
|
|
|
|
|
2010-12-08 00:26:57 +00:00
|
|
|
if (!pdev->dev.platform_data)
|
|
|
|
return -EINVAL;
|
2005-07-10 18:58:15 +00:00
|
|
|
|
2010-12-08 00:26:57 +00:00
|
|
|
pdata = pdev->dev.platform_data;
|
2006-12-07 01:14:08 +00:00
|
|
|
|
2010-12-08 00:26:57 +00:00
|
|
|
if (!gpio_init_done) {
|
|
|
|
int ret;
|
2007-11-30 00:15:11 +00:00
|
|
|
|
2010-12-08 00:26:57 +00:00
|
|
|
ret = init_gpio_info(pdev);
|
|
|
|
if (ret)
|
|
|
|
return ret;
|
2007-11-30 00:15:11 +00:00
|
|
|
}
|
|
|
|
|
2010-12-08 00:26:57 +00:00
|
|
|
id = pdev->id;
|
|
|
|
bank = &gpio_bank[id];
|
2005-09-07 16:20:26 +00:00
|
|
|
|
2010-12-08 00:26:57 +00:00
|
|
|
res = platform_get_resource(pdev, IORESOURCE_IRQ, 0);
|
|
|
|
if (unlikely(!res)) {
|
|
|
|
dev_err(&pdev->dev, "GPIO Bank %i Invalid IRQ resource\n", id);
|
|
|
|
return -ENODEV;
|
2009-05-28 21:16:04 +00:00
|
|
|
}
|
2005-07-10 18:58:15 +00:00
|
|
|
|
2010-12-08 00:26:57 +00:00
|
|
|
bank->irq = res->start;
|
|
|
|
bank->virtual_irq_start = pdata->virtual_irq_start;
|
|
|
|
bank->method = pdata->bank_type;
|
|
|
|
bank->dev = &pdev->dev;
|
|
|
|
bank->dbck_flag = pdata->dbck_flag;
|
2010-12-08 00:26:58 +00:00
|
|
|
bank->stride = pdata->bank_stride;
|
2010-12-08 00:26:57 +00:00
|
|
|
bank_width = pdata->bank_width;
|
2009-10-19 22:25:20 +00:00
|
|
|
|
2010-12-08 00:26:57 +00:00
|
|
|
spin_lock_init(&bank->lock);
|
2009-10-19 22:25:20 +00:00
|
|
|
|
2010-12-08 00:26:57 +00:00
|
|
|
/* Static mapping, never released */
|
|
|
|
res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
|
|
|
|
if (unlikely(!res)) {
|
|
|
|
dev_err(&pdev->dev, "GPIO Bank %i Invalid mem resource\n", id);
|
|
|
|
return -ENODEV;
|
|
|
|
}
|
2008-12-11 01:35:24 +00:00
|
|
|
|
2010-12-08 00:26:57 +00:00
|
|
|
bank->base = ioremap(res->start, resource_size(res));
|
|
|
|
if (!bank->base) {
|
|
|
|
dev_err(&pdev->dev, "Could not ioremap gpio bank%i\n", id);
|
|
|
|
return -ENOMEM;
|
2005-07-10 18:58:15 +00:00
|
|
|
}
|
|
|
|
|
2010-12-08 00:26:57 +00:00
|
|
|
pm_runtime_enable(bank->dev);
|
|
|
|
pm_runtime_get_sync(bank->dev);
|
|
|
|
|
|
|
|
omap_gpio_mod_init(bank, id);
|
|
|
|
omap_gpio_chip_init(bank);
|
2010-12-08 00:26:56 +00:00
|
|
|
omap_gpio_show_rev(bank);
|
2009-10-19 22:25:20 +00:00
|
|
|
|
2010-12-08 00:26:57 +00:00
|
|
|
if (!gpio_init_done)
|
|
|
|
gpio_init_done = 1;
|
|
|
|
|
2005-07-10 18:58:15 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2010-02-12 20:26:48 +00:00
|
|
|
#if defined(CONFIG_ARCH_OMAP16XX) || defined(CONFIG_ARCH_OMAP2PLUS)
|
2005-09-07 16:20:26 +00:00
|
|
|
static int omap_gpio_suspend(struct sys_device *dev, pm_message_t mesg)
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
|
2007-11-30 00:15:11 +00:00
|
|
|
if (!cpu_class_is_omap2() && !cpu_is_omap16xx())
|
2005-09-07 16:20:26 +00:00
|
|
|
return 0;
|
|
|
|
|
|
|
|
for (i = 0; i < gpio_bank_count; i++) {
|
|
|
|
struct gpio_bank *bank = &gpio_bank[i];
|
|
|
|
void __iomem *wake_status;
|
|
|
|
void __iomem *wake_clear;
|
|
|
|
void __iomem *wake_set;
|
2008-03-03 12:33:30 +00:00
|
|
|
unsigned long flags;
|
2005-09-07 16:20:26 +00:00
|
|
|
|
|
|
|
switch (bank->method) {
|
2006-12-07 01:13:59 +00:00
|
|
|
#ifdef CONFIG_ARCH_OMAP16XX
|
2005-09-07 16:20:26 +00:00
|
|
|
case METHOD_GPIO_1610:
|
|
|
|
wake_status = bank->base + OMAP1610_GPIO_WAKEUPENABLE;
|
|
|
|
wake_clear = bank->base + OMAP1610_GPIO_CLEAR_WAKEUPENA;
|
|
|
|
wake_set = bank->base + OMAP1610_GPIO_SET_WAKEUPENA;
|
|
|
|
break;
|
2006-12-07 01:13:59 +00:00
|
|
|
#endif
|
2010-02-12 20:26:48 +00:00
|
|
|
#if defined(CONFIG_ARCH_OMAP2) || defined(CONFIG_ARCH_OMAP3)
|
2005-09-07 16:20:26 +00:00
|
|
|
case METHOD_GPIO_24XX:
|
2008-11-26 22:35:16 +00:00
|
|
|
wake_status = bank->base + OMAP24XX_GPIO_WAKE_EN;
|
2005-09-07 16:20:26 +00:00
|
|
|
wake_clear = bank->base + OMAP24XX_GPIO_CLEARWKUENA;
|
|
|
|
wake_set = bank->base + OMAP24XX_GPIO_SETWKUENA;
|
|
|
|
break;
|
2009-07-28 13:27:30 +00:00
|
|
|
#endif
|
|
|
|
#ifdef CONFIG_ARCH_OMAP4
|
2010-02-15 17:27:25 +00:00
|
|
|
case METHOD_GPIO_44XX:
|
2009-07-28 13:27:30 +00:00
|
|
|
wake_status = bank->base + OMAP4_GPIO_IRQWAKEN0;
|
|
|
|
wake_clear = bank->base + OMAP4_GPIO_IRQWAKEN0;
|
|
|
|
wake_set = bank->base + OMAP4_GPIO_IRQWAKEN0;
|
|
|
|
break;
|
2006-12-07 01:13:59 +00:00
|
|
|
#endif
|
2005-09-07 16:20:26 +00:00
|
|
|
default:
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2008-03-03 12:33:30 +00:00
|
|
|
spin_lock_irqsave(&bank->lock, flags);
|
2005-09-07 16:20:26 +00:00
|
|
|
bank->saved_wakeup = __raw_readl(wake_status);
|
|
|
|
__raw_writel(0xffffffff, wake_clear);
|
|
|
|
__raw_writel(bank->suspend_wakeup, wake_set);
|
2008-03-03 12:33:30 +00:00
|
|
|
spin_unlock_irqrestore(&bank->lock, flags);
|
2005-09-07 16:20:26 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int omap_gpio_resume(struct sys_device *dev)
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
|
2008-11-26 22:35:16 +00:00
|
|
|
if (!cpu_class_is_omap2() && !cpu_is_omap16xx())
|
2005-09-07 16:20:26 +00:00
|
|
|
return 0;
|
|
|
|
|
|
|
|
for (i = 0; i < gpio_bank_count; i++) {
|
|
|
|
struct gpio_bank *bank = &gpio_bank[i];
|
|
|
|
void __iomem *wake_clear;
|
|
|
|
void __iomem *wake_set;
|
2008-03-03 12:33:30 +00:00
|
|
|
unsigned long flags;
|
2005-09-07 16:20:26 +00:00
|
|
|
|
|
|
|
switch (bank->method) {
|
2006-12-07 01:13:59 +00:00
|
|
|
#ifdef CONFIG_ARCH_OMAP16XX
|
2005-09-07 16:20:26 +00:00
|
|
|
case METHOD_GPIO_1610:
|
|
|
|
wake_clear = bank->base + OMAP1610_GPIO_CLEAR_WAKEUPENA;
|
|
|
|
wake_set = bank->base + OMAP1610_GPIO_SET_WAKEUPENA;
|
|
|
|
break;
|
2006-12-07 01:13:59 +00:00
|
|
|
#endif
|
2010-02-12 20:26:48 +00:00
|
|
|
#if defined(CONFIG_ARCH_OMAP2) || defined(CONFIG_ARCH_OMAP3)
|
2005-09-07 16:20:26 +00:00
|
|
|
case METHOD_GPIO_24XX:
|
2006-09-25 09:41:45 +00:00
|
|
|
wake_clear = bank->base + OMAP24XX_GPIO_CLEARWKUENA;
|
|
|
|
wake_set = bank->base + OMAP24XX_GPIO_SETWKUENA;
|
2005-09-07 16:20:26 +00:00
|
|
|
break;
|
2009-07-28 13:27:30 +00:00
|
|
|
#endif
|
|
|
|
#ifdef CONFIG_ARCH_OMAP4
|
2010-02-15 17:27:25 +00:00
|
|
|
case METHOD_GPIO_44XX:
|
2009-07-28 13:27:30 +00:00
|
|
|
wake_clear = bank->base + OMAP4_GPIO_IRQWAKEN0;
|
|
|
|
wake_set = bank->base + OMAP4_GPIO_IRQWAKEN0;
|
|
|
|
break;
|
2006-12-07 01:13:59 +00:00
|
|
|
#endif
|
2005-09-07 16:20:26 +00:00
|
|
|
default:
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2008-03-03 12:33:30 +00:00
|
|
|
spin_lock_irqsave(&bank->lock, flags);
|
2005-09-07 16:20:26 +00:00
|
|
|
__raw_writel(0xffffffff, wake_clear);
|
|
|
|
__raw_writel(bank->saved_wakeup, wake_set);
|
2008-03-03 12:33:30 +00:00
|
|
|
spin_unlock_irqrestore(&bank->lock, flags);
|
2005-09-07 16:20:26 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct sysdev_class omap_gpio_sysclass = {
|
2007-12-20 01:09:39 +00:00
|
|
|
.name = "gpio",
|
2005-09-07 16:20:26 +00:00
|
|
|
.suspend = omap_gpio_suspend,
|
|
|
|
.resume = omap_gpio_resume,
|
|
|
|
};
|
|
|
|
|
|
|
|
static struct sys_device omap_gpio_device = {
|
|
|
|
.id = 0,
|
|
|
|
.cls = &omap_gpio_sysclass,
|
|
|
|
};
|
2006-12-07 01:13:52 +00:00
|
|
|
|
|
|
|
#endif
|
|
|
|
|
2010-02-12 20:26:48 +00:00
|
|
|
#ifdef CONFIG_ARCH_OMAP2PLUS
|
2006-12-07 01:13:52 +00:00
|
|
|
|
|
|
|
static int workaround_enabled;
|
|
|
|
|
2010-12-22 04:05:16 +00:00
|
|
|
void omap2_gpio_prepare_for_idle(int off_mode)
|
2006-12-07 01:13:52 +00:00
|
|
|
{
|
|
|
|
int i, c = 0;
|
2008-12-22 12:27:12 +00:00
|
|
|
int min = 0;
|
2006-12-07 01:13:52 +00:00
|
|
|
|
2008-12-22 12:27:12 +00:00
|
|
|
if (cpu_is_omap34xx())
|
|
|
|
min = 1;
|
2009-01-27 19:09:24 +00:00
|
|
|
|
2008-12-22 12:27:12 +00:00
|
|
|
for (i = min; i < gpio_bank_count; i++) {
|
2006-12-07 01:13:52 +00:00
|
|
|
struct gpio_bank *bank = &gpio_bank[i];
|
2010-09-24 01:27:18 +00:00
|
|
|
u32 l1 = 0, l2 = 0;
|
2010-09-22 23:06:27 +00:00
|
|
|
int j;
|
2006-12-07 01:13:52 +00:00
|
|
|
|
2010-09-22 23:06:27 +00:00
|
|
|
for (j = 0; j < hweight_long(bank->dbck_enable_mask); j++)
|
2009-01-27 19:15:34 +00:00
|
|
|
clk_disable(bank->dbck);
|
|
|
|
|
2010-12-22 04:05:16 +00:00
|
|
|
if (!off_mode)
|
2009-01-27 19:09:24 +00:00
|
|
|
continue;
|
|
|
|
|
|
|
|
/* If going to OFF, remove triggering for all
|
|
|
|
* non-wakeup GPIOs. Otherwise spurious IRQs will be
|
|
|
|
* generated. See OMAP2420 Errata item 1.101. */
|
2006-12-07 01:13:52 +00:00
|
|
|
if (!(bank->enabled_non_wakeup_gpios))
|
|
|
|
continue;
|
2010-02-15 17:27:25 +00:00
|
|
|
|
|
|
|
if (cpu_is_omap24xx() || cpu_is_omap34xx()) {
|
|
|
|
bank->saved_datain = __raw_readl(bank->base +
|
|
|
|
OMAP24XX_GPIO_DATAIN);
|
|
|
|
l1 = __raw_readl(bank->base +
|
|
|
|
OMAP24XX_GPIO_FALLINGDETECT);
|
|
|
|
l2 = __raw_readl(bank->base +
|
|
|
|
OMAP24XX_GPIO_RISINGDETECT);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (cpu_is_omap44xx()) {
|
|
|
|
bank->saved_datain = __raw_readl(bank->base +
|
|
|
|
OMAP4_GPIO_DATAIN);
|
|
|
|
l1 = __raw_readl(bank->base +
|
|
|
|
OMAP4_GPIO_FALLINGDETECT);
|
|
|
|
l2 = __raw_readl(bank->base +
|
|
|
|
OMAP4_GPIO_RISINGDETECT);
|
|
|
|
}
|
|
|
|
|
2006-12-07 01:13:52 +00:00
|
|
|
bank->saved_fallingdetect = l1;
|
|
|
|
bank->saved_risingdetect = l2;
|
|
|
|
l1 &= ~bank->enabled_non_wakeup_gpios;
|
|
|
|
l2 &= ~bank->enabled_non_wakeup_gpios;
|
2010-02-15 17:27:25 +00:00
|
|
|
|
|
|
|
if (cpu_is_omap24xx() || cpu_is_omap34xx()) {
|
|
|
|
__raw_writel(l1, bank->base +
|
|
|
|
OMAP24XX_GPIO_FALLINGDETECT);
|
|
|
|
__raw_writel(l2, bank->base +
|
|
|
|
OMAP24XX_GPIO_RISINGDETECT);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (cpu_is_omap44xx()) {
|
|
|
|
__raw_writel(l1, bank->base + OMAP4_GPIO_FALLINGDETECT);
|
|
|
|
__raw_writel(l2, bank->base + OMAP4_GPIO_RISINGDETECT);
|
|
|
|
}
|
|
|
|
|
2006-12-07 01:13:52 +00:00
|
|
|
c++;
|
|
|
|
}
|
|
|
|
if (!c) {
|
|
|
|
workaround_enabled = 0;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
workaround_enabled = 1;
|
|
|
|
}
|
|
|
|
|
2009-01-27 19:09:24 +00:00
|
|
|
void omap2_gpio_resume_after_idle(void)
|
2006-12-07 01:13:52 +00:00
|
|
|
{
|
|
|
|
int i;
|
2008-12-22 12:27:12 +00:00
|
|
|
int min = 0;
|
2006-12-07 01:13:52 +00:00
|
|
|
|
2008-12-22 12:27:12 +00:00
|
|
|
if (cpu_is_omap34xx())
|
|
|
|
min = 1;
|
|
|
|
for (i = min; i < gpio_bank_count; i++) {
|
2006-12-07 01:13:52 +00:00
|
|
|
struct gpio_bank *bank = &gpio_bank[i];
|
2010-09-24 01:27:18 +00:00
|
|
|
u32 l = 0, gen, gen0, gen1;
|
2010-09-22 23:06:27 +00:00
|
|
|
int j;
|
2006-12-07 01:13:52 +00:00
|
|
|
|
2010-09-22 23:06:27 +00:00
|
|
|
for (j = 0; j < hweight_long(bank->dbck_enable_mask); j++)
|
2009-01-27 19:15:34 +00:00
|
|
|
clk_enable(bank->dbck);
|
|
|
|
|
2009-01-27 19:09:24 +00:00
|
|
|
if (!workaround_enabled)
|
|
|
|
continue;
|
|
|
|
|
2006-12-07 01:13:52 +00:00
|
|
|
if (!(bank->enabled_non_wakeup_gpios))
|
|
|
|
continue;
|
2010-02-15 17:27:25 +00:00
|
|
|
|
|
|
|
if (cpu_is_omap24xx() || cpu_is_omap34xx()) {
|
|
|
|
__raw_writel(bank->saved_fallingdetect,
|
2006-12-07 01:13:52 +00:00
|
|
|
bank->base + OMAP24XX_GPIO_FALLINGDETECT);
|
2010-02-15 17:27:25 +00:00
|
|
|
__raw_writel(bank->saved_risingdetect,
|
2006-12-07 01:13:52 +00:00
|
|
|
bank->base + OMAP24XX_GPIO_RISINGDETECT);
|
2010-02-15 17:27:25 +00:00
|
|
|
l = __raw_readl(bank->base + OMAP24XX_GPIO_DATAIN);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (cpu_is_omap44xx()) {
|
|
|
|
__raw_writel(bank->saved_fallingdetect,
|
2009-07-28 13:27:30 +00:00
|
|
|
bank->base + OMAP4_GPIO_FALLINGDETECT);
|
2010-02-15 17:27:25 +00:00
|
|
|
__raw_writel(bank->saved_risingdetect,
|
2009-07-28 13:27:30 +00:00
|
|
|
bank->base + OMAP4_GPIO_RISINGDETECT);
|
2010-02-15 17:27:25 +00:00
|
|
|
l = __raw_readl(bank->base + OMAP4_GPIO_DATAIN);
|
|
|
|
}
|
|
|
|
|
2006-12-07 01:13:52 +00:00
|
|
|
/* Check if any of the non-wakeup interrupt GPIOs have changed
|
|
|
|
* state. If so, generate an IRQ by software. This is
|
|
|
|
* horribly racy, but it's the best we can do to work around
|
|
|
|
* this silicon bug. */
|
|
|
|
l ^= bank->saved_datain;
|
2008-12-22 12:27:12 +00:00
|
|
|
l &= bank->enabled_non_wakeup_gpios;
|
2009-08-28 17:51:36 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* No need to generate IRQs for the rising edge for gpio IRQs
|
|
|
|
* configured with falling edge only; and vice versa.
|
|
|
|
*/
|
|
|
|
gen0 = l & bank->saved_fallingdetect;
|
|
|
|
gen0 &= bank->saved_datain;
|
|
|
|
|
|
|
|
gen1 = l & bank->saved_risingdetect;
|
|
|
|
gen1 &= ~(bank->saved_datain);
|
|
|
|
|
|
|
|
/* FIXME: Consider GPIO IRQs with level detections properly! */
|
|
|
|
gen = l & (~(bank->saved_fallingdetect) &
|
|
|
|
~(bank->saved_risingdetect));
|
|
|
|
/* Consider all GPIO IRQs needed to be updated */
|
|
|
|
gen |= gen0 | gen1;
|
|
|
|
|
|
|
|
if (gen) {
|
2006-12-07 01:13:52 +00:00
|
|
|
u32 old0, old1;
|
2010-02-15 17:27:25 +00:00
|
|
|
|
2010-03-03 16:21:08 +00:00
|
|
|
if (cpu_is_omap24xx() || cpu_is_omap34xx()) {
|
2010-02-15 17:27:25 +00:00
|
|
|
old0 = __raw_readl(bank->base +
|
|
|
|
OMAP24XX_GPIO_LEVELDETECT0);
|
|
|
|
old1 = __raw_readl(bank->base +
|
|
|
|
OMAP24XX_GPIO_LEVELDETECT1);
|
2010-03-03 16:21:08 +00:00
|
|
|
__raw_writel(old0 | gen, bank->base +
|
2009-08-28 17:51:36 +00:00
|
|
|
OMAP24XX_GPIO_LEVELDETECT0);
|
2010-03-03 16:21:08 +00:00
|
|
|
__raw_writel(old1 | gen, bank->base +
|
2009-08-28 17:51:36 +00:00
|
|
|
OMAP24XX_GPIO_LEVELDETECT1);
|
2010-03-03 16:21:08 +00:00
|
|
|
__raw_writel(old0, bank->base +
|
2010-02-15 17:27:25 +00:00
|
|
|
OMAP24XX_GPIO_LEVELDETECT0);
|
2010-03-03 16:21:08 +00:00
|
|
|
__raw_writel(old1, bank->base +
|
2010-02-15 17:27:25 +00:00
|
|
|
OMAP24XX_GPIO_LEVELDETECT1);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (cpu_is_omap44xx()) {
|
|
|
|
old0 = __raw_readl(bank->base +
|
2009-07-28 13:27:30 +00:00
|
|
|
OMAP4_GPIO_LEVELDETECT0);
|
2010-02-15 17:27:25 +00:00
|
|
|
old1 = __raw_readl(bank->base +
|
2009-07-28 13:27:30 +00:00
|
|
|
OMAP4_GPIO_LEVELDETECT1);
|
2010-02-15 17:27:25 +00:00
|
|
|
__raw_writel(old0 | l, bank->base +
|
2009-07-28 13:27:30 +00:00
|
|
|
OMAP4_GPIO_LEVELDETECT0);
|
2010-02-15 17:27:25 +00:00
|
|
|
__raw_writel(old1 | l, bank->base +
|
2009-07-28 13:27:30 +00:00
|
|
|
OMAP4_GPIO_LEVELDETECT1);
|
2010-02-15 17:27:25 +00:00
|
|
|
__raw_writel(old0, bank->base +
|
2009-07-28 13:27:30 +00:00
|
|
|
OMAP4_GPIO_LEVELDETECT0);
|
2010-02-15 17:27:25 +00:00
|
|
|
__raw_writel(old1, bank->base +
|
2009-07-28 13:27:30 +00:00
|
|
|
OMAP4_GPIO_LEVELDETECT1);
|
2010-02-15 17:27:25 +00:00
|
|
|
}
|
2006-12-07 01:13:52 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2005-09-07 16:20:26 +00:00
|
|
|
#endif
|
|
|
|
|
2010-02-12 20:26:48 +00:00
|
|
|
#ifdef CONFIG_ARCH_OMAP3
|
2008-09-26 12:17:48 +00:00
|
|
|
/* save the registers of bank 2-6 */
|
|
|
|
void omap_gpio_save_context(void)
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
|
|
|
|
/* saving banks from 2-6 only since GPIO1 is in WKUP */
|
|
|
|
for (i = 1; i < gpio_bank_count; i++) {
|
|
|
|
struct gpio_bank *bank = &gpio_bank[i];
|
|
|
|
gpio_context[i].irqenable1 =
|
|
|
|
__raw_readl(bank->base + OMAP24XX_GPIO_IRQENABLE1);
|
|
|
|
gpio_context[i].irqenable2 =
|
|
|
|
__raw_readl(bank->base + OMAP24XX_GPIO_IRQENABLE2);
|
|
|
|
gpio_context[i].wake_en =
|
|
|
|
__raw_readl(bank->base + OMAP24XX_GPIO_WAKE_EN);
|
|
|
|
gpio_context[i].ctrl =
|
|
|
|
__raw_readl(bank->base + OMAP24XX_GPIO_CTRL);
|
|
|
|
gpio_context[i].oe =
|
|
|
|
__raw_readl(bank->base + OMAP24XX_GPIO_OE);
|
|
|
|
gpio_context[i].leveldetect0 =
|
|
|
|
__raw_readl(bank->base + OMAP24XX_GPIO_LEVELDETECT0);
|
|
|
|
gpio_context[i].leveldetect1 =
|
|
|
|
__raw_readl(bank->base + OMAP24XX_GPIO_LEVELDETECT1);
|
|
|
|
gpio_context[i].risingdetect =
|
|
|
|
__raw_readl(bank->base + OMAP24XX_GPIO_RISINGDETECT);
|
|
|
|
gpio_context[i].fallingdetect =
|
|
|
|
__raw_readl(bank->base + OMAP24XX_GPIO_FALLINGDETECT);
|
|
|
|
gpio_context[i].dataout =
|
|
|
|
__raw_readl(bank->base + OMAP24XX_GPIO_DATAOUT);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* restore the required registers of bank 2-6 */
|
|
|
|
void omap_gpio_restore_context(void)
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
|
|
|
|
for (i = 1; i < gpio_bank_count; i++) {
|
|
|
|
struct gpio_bank *bank = &gpio_bank[i];
|
|
|
|
__raw_writel(gpio_context[i].irqenable1,
|
|
|
|
bank->base + OMAP24XX_GPIO_IRQENABLE1);
|
|
|
|
__raw_writel(gpio_context[i].irqenable2,
|
|
|
|
bank->base + OMAP24XX_GPIO_IRQENABLE2);
|
|
|
|
__raw_writel(gpio_context[i].wake_en,
|
|
|
|
bank->base + OMAP24XX_GPIO_WAKE_EN);
|
|
|
|
__raw_writel(gpio_context[i].ctrl,
|
|
|
|
bank->base + OMAP24XX_GPIO_CTRL);
|
|
|
|
__raw_writel(gpio_context[i].oe,
|
|
|
|
bank->base + OMAP24XX_GPIO_OE);
|
|
|
|
__raw_writel(gpio_context[i].leveldetect0,
|
|
|
|
bank->base + OMAP24XX_GPIO_LEVELDETECT0);
|
|
|
|
__raw_writel(gpio_context[i].leveldetect1,
|
|
|
|
bank->base + OMAP24XX_GPIO_LEVELDETECT1);
|
|
|
|
__raw_writel(gpio_context[i].risingdetect,
|
|
|
|
bank->base + OMAP24XX_GPIO_RISINGDETECT);
|
|
|
|
__raw_writel(gpio_context[i].fallingdetect,
|
|
|
|
bank->base + OMAP24XX_GPIO_FALLINGDETECT);
|
|
|
|
__raw_writel(gpio_context[i].dataout,
|
|
|
|
bank->base + OMAP24XX_GPIO_DATAOUT);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2010-12-08 00:26:57 +00:00
|
|
|
static struct platform_driver omap_gpio_driver = {
|
|
|
|
.probe = omap_gpio_probe,
|
|
|
|
.driver = {
|
|
|
|
.name = "omap_gpio",
|
|
|
|
},
|
|
|
|
};
|
|
|
|
|
2005-07-10 18:58:15 +00:00
|
|
|
/*
|
2010-12-08 00:26:57 +00:00
|
|
|
* gpio driver register needs to be done before
|
|
|
|
* machine_init functions access gpio APIs.
|
|
|
|
* Hence omap_gpio_drv_reg() is a postcore_initcall.
|
2005-07-10 18:58:15 +00:00
|
|
|
*/
|
2010-12-08 00:26:57 +00:00
|
|
|
static int __init omap_gpio_drv_reg(void)
|
2005-07-10 18:58:15 +00:00
|
|
|
{
|
2010-12-08 00:26:57 +00:00
|
|
|
return platform_driver_register(&omap_gpio_driver);
|
2005-07-10 18:58:15 +00:00
|
|
|
}
|
2010-12-08 00:26:57 +00:00
|
|
|
postcore_initcall(omap_gpio_drv_reg);
|
2005-07-10 18:58:15 +00:00
|
|
|
|
2005-09-07 16:20:26 +00:00
|
|
|
static int __init omap_gpio_sysinit(void)
|
|
|
|
{
|
|
|
|
int ret = 0;
|
|
|
|
|
2006-12-07 01:14:11 +00:00
|
|
|
mpuio_init();
|
|
|
|
|
2010-02-12 20:26:48 +00:00
|
|
|
#if defined(CONFIG_ARCH_OMAP16XX) || defined(CONFIG_ARCH_OMAP2PLUS)
|
2007-11-30 00:15:11 +00:00
|
|
|
if (cpu_is_omap16xx() || cpu_class_is_omap2()) {
|
2005-09-07 16:20:26 +00:00
|
|
|
if (ret == 0) {
|
|
|
|
ret = sysdev_class_register(&omap_gpio_sysclass);
|
|
|
|
if (ret == 0)
|
|
|
|
ret = sysdev_register(&omap_gpio_device);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
arch_initcall(omap_gpio_sysinit);
|