Commit 8b6c44f1 authored by Shawn Guo's avatar Shawn Guo Committed by Sascha Hauer

ARM: mxc: convert tzic to use generic irq chip

The patch converts mxc tzic interrupt controller to use generic irq
chip.
Signed-off-by: default avatarShawn Guo <shawn.guo@linaro.org>
Signed-off-by: default avatarSascha Hauer <s.hauer@pengutronix.de>
parent 53b8ff9d
...@@ -376,6 +376,7 @@ config ARCH_MXC ...@@ -376,6 +376,7 @@ config ARCH_MXC
select ARCH_REQUIRE_GPIOLIB select ARCH_REQUIRE_GPIOLIB
select CLKDEV_LOOKUP select CLKDEV_LOOKUP
select CLKSRC_MMIO select CLKSRC_MMIO
select GENERIC_IRQ_CHIP
select HAVE_SCHED_CLOCK select HAVE_SCHED_CLOCK
help help
Support for Freescale MXC/iMX-based family of processors Support for Freescale MXC/iMX-based family of processors
......
...@@ -42,17 +42,16 @@ EXPORT_SYMBOL(imx_irq_set_priority); ...@@ -42,17 +42,16 @@ EXPORT_SYMBOL(imx_irq_set_priority);
int mxc_set_irq_fiq(unsigned int irq, unsigned int type) int mxc_set_irq_fiq(unsigned int irq, unsigned int type)
{ {
struct mxc_irq_chip *chip; struct irq_chip_generic *gc;
struct irq_chip *base; int (*set_irq_fiq)(unsigned int, unsigned int);
int ret; int ret;
ret = -ENOSYS; ret = -ENOSYS;
base = irq_get_chip(irq); gc = irq_get_chip_data(irq);
if (base) { if (gc && gc->private) {
chip = container_of(base, struct mxc_irq_chip, base); set_irq_fiq = gc->private;
if (chip->set_irq_fiq) ret = set_irq_fiq(irq, type);
ret = chip->set_irq_fiq(irq, type);
} }
return ret; return ret;
......
...@@ -68,78 +68,34 @@ static int tzic_set_irq_fiq(unsigned int irq, unsigned int type) ...@@ -68,78 +68,34 @@ static int tzic_set_irq_fiq(unsigned int irq, unsigned int type)
return 0; return 0;
} }
#else
#define tzic_set_irq_fiq NULL
#endif #endif
/** static unsigned int *wakeup_intr[4];
* tzic_mask_irq() - Disable interrupt source "d" in the TZIC
*
* @param d interrupt source
*/
static void tzic_mask_irq(struct irq_data *d)
{
int index, off;
index = d->irq >> 5; static __init void tzic_init_gc(unsigned int irq_start)
off = d->irq & 0x1F;
__raw_writel(1 << off, tzic_base + TZIC_ENCLEAR0(index));
}
/**
* tzic_unmask_irq() - Enable interrupt source "d" in the TZIC
*
* @param d interrupt source
*/
static void tzic_unmask_irq(struct irq_data *d)
{ {
int index, off; struct irq_chip_generic *gc;
struct irq_chip_type *ct;
index = d->irq >> 5; int idx = irq_start >> 5;
off = d->irq & 0x1F;
__raw_writel(1 << off, tzic_base + TZIC_ENSET0(index));
}
static unsigned int wakeup_intr[4];
/** gc = irq_alloc_generic_chip("tzic", 1, irq_start, tzic_base,
* tzic_set_wake_irq() - Set interrupt source "d" in the TZIC as a wake-up source. handle_level_irq);
* gc->private = tzic_set_irq_fiq;
* @param d interrupt source gc->wake_enabled = IRQ_MSK(32);
* @param enable enable as wake-up if equal to non-zero wakeup_intr[idx] = &gc->wake_active;
* disble as wake-up if equal to zero
* ct = gc->chip_types;
* @return This function returns 0 on success. ct->chip.irq_mask = irq_gc_mask_disable_reg;
*/ ct->chip.irq_unmask = irq_gc_unmask_enable_reg;
static int tzic_set_wake_irq(struct irq_data *d, unsigned int enable) ct->chip.irq_set_wake = irq_gc_set_wake;
{ ct->regs.disable = TZIC_ENCLEAR0(idx);
unsigned int index, off; ct->regs.enable = TZIC_ENSET0(idx);
index = d->irq >> 5; irq_setup_generic_chip(gc, IRQ_MSK(32), 0, IRQ_NOREQUEST, 0);
off = d->irq & 0x1F;
if (index > 3)
return -EINVAL;
if (enable)
wakeup_intr[index] |= (1 << off);
else
wakeup_intr[index] &= ~(1 << off);
return 0;
} }
static struct mxc_irq_chip mxc_tzic_chip = {
.base = {
.name = "MXC_TZIC",
.irq_ack = tzic_mask_irq,
.irq_mask = tzic_mask_irq,
.irq_unmask = tzic_unmask_irq,
.irq_set_wake = tzic_set_wake_irq,
},
#ifdef CONFIG_FIQ
.set_irq_fiq = tzic_set_irq_fiq,
#endif
};
/* /*
* This function initializes the TZIC hardware and disables all the * This function initializes the TZIC hardware and disables all the
* interrupts. It registers the interrupt enable and disable functions * interrupts. It registers the interrupt enable and disable functions
...@@ -168,11 +124,8 @@ void __init tzic_init_irq(void __iomem *irqbase) ...@@ -168,11 +124,8 @@ void __init tzic_init_irq(void __iomem *irqbase)
/* all IRQ no FIQ Warning :: No selection */ /* all IRQ no FIQ Warning :: No selection */
for (i = 0; i < TZIC_NUM_IRQS; i++) { for (i = 0; i < TZIC_NUM_IRQS; i += 32)
irq_set_chip_and_handler(i, &mxc_tzic_chip.base, tzic_init_gc(i);
handle_level_irq);
set_irq_flags(i, IRQF_VALID);
}
#ifdef CONFIG_FIQ #ifdef CONFIG_FIQ
/* Initialize FIQ */ /* Initialize FIQ */
...@@ -199,7 +152,7 @@ int tzic_enable_wake(int is_idle) ...@@ -199,7 +152,7 @@ int tzic_enable_wake(int is_idle)
for (i = 0; i < 4; i++) { for (i = 0; i < 4; i++) {
v = is_idle ? __raw_readl(tzic_base + TZIC_ENSET0(i)) : v = is_idle ? __raw_readl(tzic_base + TZIC_ENSET0(i)) :
wakeup_intr[i]; *wakeup_intr[i];
__raw_writel(v, tzic_base + TZIC_WAKEUP0(i)); __raw_writel(v, tzic_base + TZIC_WAKEUP0(i));
} }
......
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