Commit 8ce14a22 authored by Joonyoung Shim's avatar Joonyoung Shim Committed by Kukjin Kim

ARM: SAMSUNG: Add common samsung_gpiolib_to_irq function

This patch adds a common callback for gpio_to_irq() for external and
gpio interrupts for Samsung SoCs.
Signed-off-by: default avatarJoonyoung Shim <jy0922.shim@samsung.com>
Signed-off-by: default avatarKyungmin Park <kyungmin.park@samsung.com>
Signed-off-by: default avatarMarek Szyprowski <m.szyprowski@samsung.com>
Cc: Ben Dooks <ben-linux@fluff.org>
[kgene.kim@samsung.com: moved samsung_gpiolib_to_irq() for s3c24xx build]
Signed-off-by: default avatarKukjin Kim <kgene.kim@samsung.com>
parent 02c38497
...@@ -195,11 +195,6 @@ static struct s3c_gpio_cfg gpio_2bit_cfg_eint11 = { ...@@ -195,11 +195,6 @@ static struct s3c_gpio_cfg gpio_2bit_cfg_eint11 = {
.get_pull = s3c_gpio_getpull_updown, .get_pull = s3c_gpio_getpull_updown,
}; };
int s3c64xx_gpio2int_gpn(struct gpio_chip *chip, unsigned pin)
{
return IRQ_EINT(0) + pin;
}
static struct s3c_gpio_chip gpio_2bit[] = { static struct s3c_gpio_chip gpio_2bit[] = {
{ {
.base = S3C64XX_GPF_BASE, .base = S3C64XX_GPF_BASE,
...@@ -227,12 +222,13 @@ static struct s3c_gpio_chip gpio_2bit[] = { ...@@ -227,12 +222,13 @@ static struct s3c_gpio_chip gpio_2bit[] = {
}, },
}, { }, {
.base = S3C64XX_GPN_BASE, .base = S3C64XX_GPN_BASE,
.irq_base = IRQ_EINT(0),
.config = &gpio_2bit_cfg_eint10, .config = &gpio_2bit_cfg_eint10,
.chip = { .chip = {
.base = S3C64XX_GPN(0), .base = S3C64XX_GPN(0),
.ngpio = S3C64XX_GPIO_N_NR, .ngpio = S3C64XX_GPIO_N_NR,
.label = "GPN", .label = "GPN",
.to_irq = s3c64xx_gpio2int_gpn, .to_irq = samsung_gpiolib_to_irq,
}, },
}, { }, {
.base = S3C64XX_GPO_BASE, .base = S3C64XX_GPO_BASE,
......
...@@ -61,25 +61,6 @@ ...@@ -61,25 +61,6 @@
* L3 8 4Bit None * L3 8 4Bit None
*/ */
static int s5pc100_gpiolib_to_eint(struct gpio_chip *chip, unsigned int offset)
{
int base;
base = chip->base - S5PC100_GPH0(0);
if (base == 0)
return IRQ_EINT(offset);
base = chip->base - S5PC100_GPH1(0);
if (base == 0)
return IRQ_EINT(8 + offset);
base = chip->base - S5PC100_GPH2(0);
if (base == 0)
return IRQ_EINT(16 + offset);
base = chip->base - S5PC100_GPH3(0);
if (base == 0)
return IRQ_EINT(24 + offset);
return -EINVAL;
}
static struct s3c_gpio_cfg gpio_cfg = { static struct s3c_gpio_cfg gpio_cfg = {
.set_config = s3c_gpio_setcfg_s3c64xx_4bit, .set_config = s3c_gpio_setcfg_s3c64xx_4bit,
.set_pull = s3c_gpio_setpull_updown, .set_pull = s3c_gpio_setpull_updown,
...@@ -223,38 +204,42 @@ static struct s3c_gpio_chip s5pc100_gpio_chips[] = { ...@@ -223,38 +204,42 @@ static struct s3c_gpio_chip s5pc100_gpio_chips[] = {
}, { }, {
.base = S5PC100_GPH0_BASE, .base = S5PC100_GPH0_BASE,
.config = &gpio_cfg_eint, .config = &gpio_cfg_eint,
.irq_base = IRQ_EINT(0),
.chip = { .chip = {
.base = S5PC100_GPH0(0), .base = S5PC100_GPH0(0),
.ngpio = S5PC100_GPIO_H0_NR, .ngpio = S5PC100_GPIO_H0_NR,
.label = "GPH0", .label = "GPH0",
.to_irq = s5pc100_gpiolib_to_eint, .to_irq = samsung_gpiolib_to_irq,
}, },
}, { }, {
.base = S5PC100_GPH1_BASE, .base = S5PC100_GPH1_BASE,
.config = &gpio_cfg_eint, .config = &gpio_cfg_eint,
.irq_base = IRQ_EINT(8),
.chip = { .chip = {
.base = S5PC100_GPH1(0), .base = S5PC100_GPH1(0),
.ngpio = S5PC100_GPIO_H1_NR, .ngpio = S5PC100_GPIO_H1_NR,
.label = "GPH1", .label = "GPH1",
.to_irq = s5pc100_gpiolib_to_eint, .to_irq = samsung_gpiolib_to_irq,
}, },
}, { }, {
.base = S5PC100_GPH2_BASE, .base = S5PC100_GPH2_BASE,
.config = &gpio_cfg_eint, .config = &gpio_cfg_eint,
.irq_base = IRQ_EINT(16),
.chip = { .chip = {
.base = S5PC100_GPH2(0), .base = S5PC100_GPH2(0),
.ngpio = S5PC100_GPIO_H2_NR, .ngpio = S5PC100_GPIO_H2_NR,
.label = "GPH2", .label = "GPH2",
.to_irq = s5pc100_gpiolib_to_eint, .to_irq = samsung_gpiolib_to_irq,
}, },
}, { }, {
.base = S5PC100_GPH3_BASE, .base = S5PC100_GPH3_BASE,
.config = &gpio_cfg_eint, .config = &gpio_cfg_eint,
.irq_base = IRQ_EINT(24),
.chip = { .chip = {
.base = S5PC100_GPH3(0), .base = S5PC100_GPH3(0),
.ngpio = S5PC100_GPIO_H3_NR, .ngpio = S5PC100_GPIO_H3_NR,
.label = "GPH3", .label = "GPH3",
.to_irq = s5pc100_gpiolib_to_eint, .to_irq = samsung_gpiolib_to_irq,
}, },
}, { }, {
.base = S5PC100_GPI_BASE, .base = S5PC100_GPI_BASE,
......
...@@ -224,34 +224,42 @@ static struct s3c_gpio_chip s5pv210_gpio_4bit[] = { ...@@ -224,34 +224,42 @@ static struct s3c_gpio_chip s5pv210_gpio_4bit[] = {
}, { }, {
.base = (S5P_VA_GPIO + 0xC00), .base = (S5P_VA_GPIO + 0xC00),
.config = &gpio_cfg_noint, .config = &gpio_cfg_noint,
.irq_base = IRQ_EINT(0),
.chip = { .chip = {
.base = S5PV210_GPH0(0), .base = S5PV210_GPH0(0),
.ngpio = S5PV210_GPIO_H0_NR, .ngpio = S5PV210_GPIO_H0_NR,
.label = "GPH0", .label = "GPH0",
.to_irq = samsung_gpiolib_to_irq,
}, },
}, { }, {
.base = (S5P_VA_GPIO + 0xC20), .base = (S5P_VA_GPIO + 0xC20),
.config = &gpio_cfg_noint, .config = &gpio_cfg_noint,
.irq_base = IRQ_EINT(8),
.chip = { .chip = {
.base = S5PV210_GPH1(0), .base = S5PV210_GPH1(0),
.ngpio = S5PV210_GPIO_H1_NR, .ngpio = S5PV210_GPIO_H1_NR,
.label = "GPH1", .label = "GPH1",
.to_irq = samsung_gpiolib_to_irq,
}, },
}, { }, {
.base = (S5P_VA_GPIO + 0xC40), .base = (S5P_VA_GPIO + 0xC40),
.config = &gpio_cfg_noint, .config = &gpio_cfg_noint,
.irq_base = IRQ_EINT(16),
.chip = { .chip = {
.base = S5PV210_GPH2(0), .base = S5PV210_GPH2(0),
.ngpio = S5PV210_GPIO_H2_NR, .ngpio = S5PV210_GPIO_H2_NR,
.label = "GPH2", .label = "GPH2",
.to_irq = samsung_gpiolib_to_irq,
}, },
}, { }, {
.base = (S5P_VA_GPIO + 0xC60), .base = (S5P_VA_GPIO + 0xC60),
.config = &gpio_cfg_noint, .config = &gpio_cfg_noint,
.irq_base = IRQ_EINT(24),
.chip = { .chip = {
.base = S5PV210_GPH3(0), .base = S5PV210_GPH3(0),
.ngpio = S5PV210_GPIO_H3_NR, .ngpio = S5PV210_GPIO_H3_NR,
.label = "GPH3", .label = "GPH3",
.to_irq = samsung_gpiolib_to_irq,
}, },
}, },
}; };
......
...@@ -74,11 +74,6 @@ static int s3c24xx_gpiolib_bankf_toirq(struct gpio_chip *chip, unsigned offset) ...@@ -74,11 +74,6 @@ static int s3c24xx_gpiolib_bankf_toirq(struct gpio_chip *chip, unsigned offset)
return -EINVAL; return -EINVAL;
} }
static int s3c24xx_gpiolib_bankg_toirq(struct gpio_chip *chip, unsigned offset)
{
return IRQ_EINT8 + offset;
}
static struct s3c_gpio_cfg s3c24xx_gpiocfg_banka = { static struct s3c_gpio_cfg s3c24xx_gpiocfg_banka = {
.set_config = s3c_gpio_setcfg_s3c24xx_a, .set_config = s3c_gpio_setcfg_s3c24xx_a,
.get_config = s3c_gpio_getcfg_s3c24xx_a, .get_config = s3c_gpio_getcfg_s3c24xx_a,
...@@ -157,12 +152,13 @@ struct s3c_gpio_chip s3c24xx_gpios[] = { ...@@ -157,12 +152,13 @@ struct s3c_gpio_chip s3c24xx_gpios[] = {
[6] = { [6] = {
.base = S3C2410_GPGCON, .base = S3C2410_GPGCON,
.pm = __gpio_pm(&s3c_gpio_pm_2bit), .pm = __gpio_pm(&s3c_gpio_pm_2bit),
.irq_base = IRQ_EINT8,
.chip = { .chip = {
.base = S3C2410_GPG(0), .base = S3C2410_GPG(0),
.owner = THIS_MODULE, .owner = THIS_MODULE,
.label = "GPIOG", .label = "GPIOG",
.ngpio = 16, .ngpio = 16,
.to_irq = s3c24xx_gpiolib_bankg_toirq, .to_irq = samsung_gpiolib_to_irq,
}, },
}, { }, {
.base = S3C2410_GPHCON, .base = S3C2410_GPHCON,
......
...@@ -234,6 +234,7 @@ int __init s5p_register_gpio_interrupt(int pin) ...@@ -234,6 +234,7 @@ int __init s5p_register_gpio_interrupt(int pin)
/* register gpio group */ /* register gpio group */
ret = s5p_gpioint_add(my_chip); ret = s5p_gpioint_add(my_chip);
if (ret == 0) { if (ret == 0) {
my_chip->chip.to_irq = samsung_gpiolib_to_irq;
printk(KERN_INFO "Registered interrupt support for gpio group %d.\n", printk(KERN_INFO "Registered interrupt support for gpio group %d.\n",
group); group);
return my_chip->irq_base + offset; return my_chip->irq_base + offset;
......
...@@ -157,3 +157,11 @@ __init void s3c_gpiolib_add(struct s3c_gpio_chip *chip) ...@@ -157,3 +157,11 @@ __init void s3c_gpiolib_add(struct s3c_gpio_chip *chip)
if (ret >= 0) if (ret >= 0)
s3c_gpiolib_track(chip); s3c_gpiolib_track(chip);
} }
int samsung_gpiolib_to_irq(struct gpio_chip *chip, unsigned int offset)
{
struct s3c_gpio_chip *s3c_chip = container_of(chip,
struct s3c_gpio_chip, chip);
return s3c_chip->irq_base + offset;
}
...@@ -122,6 +122,17 @@ extern void samsung_gpiolib_add_4bit2_chips(struct s3c_gpio_chip *chip, ...@@ -122,6 +122,17 @@ extern void samsung_gpiolib_add_4bit2_chips(struct s3c_gpio_chip *chip,
extern void samsung_gpiolib_add_4bit(struct s3c_gpio_chip *chip); extern void samsung_gpiolib_add_4bit(struct s3c_gpio_chip *chip);
extern void samsung_gpiolib_add_4bit2(struct s3c_gpio_chip *chip); extern void samsung_gpiolib_add_4bit2(struct s3c_gpio_chip *chip);
/**
* samsung_gpiolib_to_irq - convert gpio pin to irq number
* @chip: The gpio chip that the pin belongs to.
* @offset: The offset of the pin in the chip.
*
* This helper returns the irq number calculated from the chip->irq_base and
* the provided offset.
*/
extern int samsung_gpiolib_to_irq(struct gpio_chip *chip, unsigned int offset);
/* exported for core SoC support to change */ /* exported for core SoC support to change */
extern struct s3c_gpio_cfg s3c24xx_gpiocfg_default; extern struct s3c_gpio_cfg s3c24xx_gpiocfg_default;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment