2009-08-20 12:38:17 +03:00
|
|
|
/*
|
|
|
|
* linux/arch/mips/jz4740/irq.c
|
|
|
|
*
|
|
|
|
* JZ4740 interrupt routines.
|
|
|
|
*
|
|
|
|
* Copyright (c) 2006-2007 Ingenic Semiconductor Inc.
|
|
|
|
* Author: <lhhuang@ingenic.cn>
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify it
|
|
|
|
* under the terms of the GNU General Public License as published by the
|
|
|
|
* Free Software Foundation; either version 2 of the License, or (at your
|
|
|
|
* option) any later version.
|
|
|
|
*/
|
|
|
|
#include <linux/errno.h>
|
|
|
|
#include <linux/init.h>
|
|
|
|
#include <linux/irq.h>
|
|
|
|
#include <linux/kernel_stat.h>
|
|
|
|
#include <linux/module.h>
|
|
|
|
#include <linux/signal.h>
|
|
|
|
#include <linux/sched.h>
|
|
|
|
#include <linux/types.h>
|
|
|
|
#include <linux/interrupt.h>
|
|
|
|
#include <linux/ioport.h>
|
|
|
|
#include <linux/timex.h>
|
|
|
|
#include <linux/slab.h>
|
|
|
|
#include <linux/random.h>
|
|
|
|
#include <linux/delay.h>
|
|
|
|
#include <linux/bitops.h>
|
|
|
|
|
|
|
|
#include <asm/bootinfo.h>
|
|
|
|
#include <asm/io.h>
|
|
|
|
#include <asm/mipsregs.h>
|
|
|
|
#include <asm/system.h>
|
|
|
|
#include <asm/jzsoc.h>
|
2009-09-14 16:07:26 +03:00
|
|
|
#include <asm/mach-generic/irq.h>
|
|
|
|
#include <asm/irq_cpu.h>
|
2009-08-20 12:38:17 +03:00
|
|
|
|
|
|
|
static void __iomem *jz_intc_base;
|
|
|
|
|
|
|
|
#define JZ_REG_BASE_INTC 0x10001000
|
|
|
|
|
|
|
|
#define JZ_REG_INTC_STATUS 0x00
|
|
|
|
#define JZ_REG_INTC_MASK 0x04
|
|
|
|
#define JZ_REG_INTC_SET_MASK 0x08
|
|
|
|
#define JZ_REG_INTC_CLEAR_MASK 0x0c
|
|
|
|
#define JZ_REG_INTC_PENDING 0x10
|
|
|
|
|
2009-09-14 16:07:26 +03:00
|
|
|
#define IRQ_BIT(x) BIT((x) - JZ_IRQ_BASE)
|
2009-08-20 12:38:17 +03:00
|
|
|
|
|
|
|
static void intc_irq_unmask(unsigned int irq)
|
|
|
|
{
|
2009-09-14 16:07:26 +03:00
|
|
|
writel(IRQ_BIT(irq), jz_intc_base + JZ_REG_INTC_CLEAR_MASK);
|
2009-08-20 12:38:17 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
static void intc_irq_mask(unsigned int irq)
|
|
|
|
{
|
2009-09-14 16:07:26 +03:00
|
|
|
writel(IRQ_BIT(irq), jz_intc_base + JZ_REG_INTC_SET_MASK);
|
2009-08-20 12:38:17 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
static void intc_irq_ack(unsigned int irq)
|
|
|
|
{
|
2009-09-14 16:07:26 +03:00
|
|
|
writel(IRQ_BIT(irq), jz_intc_base + JZ_REG_INTC_PENDING);
|
2009-08-20 12:38:17 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
static void intc_irq_end(unsigned int irq)
|
|
|
|
{
|
|
|
|
if (!(irq_desc[irq].status & (IRQ_DISABLED|IRQ_INPROGRESS))) {
|
|
|
|
intc_irq_unmask(irq);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct irq_chip intc_irq_type = {
|
|
|
|
.name = "INTC",
|
|
|
|
.mask = intc_irq_mask,
|
|
|
|
.unmask = intc_irq_unmask,
|
|
|
|
.ack = intc_irq_ack,
|
|
|
|
.end = intc_irq_end,
|
|
|
|
};
|
|
|
|
|
2009-09-14 16:07:26 +03:00
|
|
|
static irqreturn_t jz4740_cascade(int irq, void *data)
|
2009-08-20 12:38:17 +03:00
|
|
|
{
|
2009-09-14 16:07:26 +03:00
|
|
|
uint32_t irq_reg;
|
|
|
|
irq_reg = readl(jz_intc_base + JZ_REG_INTC_PENDING);
|
2009-08-20 12:38:17 +03:00
|
|
|
|
2009-09-14 16:07:26 +03:00
|
|
|
if (irq_reg) {
|
|
|
|
generic_handle_irq(ffs(irq_reg) - 1 + JZ_IRQ_BASE);
|
|
|
|
return IRQ_HANDLED;
|
|
|
|
}
|
2009-08-20 12:38:17 +03:00
|
|
|
|
2009-09-14 16:07:26 +03:00
|
|
|
return 0;
|
2009-08-20 12:38:17 +03:00
|
|
|
}
|
|
|
|
|
2009-09-14 16:07:26 +03:00
|
|
|
static struct irqaction jz4740_cascade_action = {
|
|
|
|
.handler = jz4740_cascade,
|
|
|
|
.name = "JZ4740 cascade interrupt"
|
2009-08-20 12:38:17 +03:00
|
|
|
};
|
|
|
|
|
|
|
|
void __init arch_init_irq(void)
|
|
|
|
{
|
|
|
|
int i;
|
2009-09-14 16:07:26 +03:00
|
|
|
mips_cpu_irq_init();
|
2009-08-20 12:38:17 +03:00
|
|
|
|
|
|
|
jz_intc_base = ioremap(JZ_REG_BASE_INTC, 0x14);
|
|
|
|
|
2009-09-14 16:07:26 +03:00
|
|
|
for (i = JZ_IRQ_BASE; i < JZ_IRQ_BASE + 32; i++) {
|
2009-08-20 12:38:17 +03:00
|
|
|
intc_irq_mask(i);
|
|
|
|
set_irq_chip_and_handler(i, &intc_irq_type, handle_level_irq);
|
|
|
|
}
|
|
|
|
|
2009-09-14 16:07:26 +03:00
|
|
|
setup_irq(2, &jz4740_cascade_action);
|
2009-08-20 12:38:17 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
asmlinkage void plat_irq_dispatch(void)
|
|
|
|
{
|
2009-09-14 16:07:26 +03:00
|
|
|
unsigned int pending = read_c0_status() & read_c0_cause() & ST0_IM;
|
|
|
|
if (pending & STATUSF_IP2)
|
|
|
|
jz4740_cascade(2, NULL);
|
|
|
|
else if(pending & STATUSF_IP3)
|
|
|
|
do_IRQ(3);
|
|
|
|
else
|
|
|
|
spurious_interrupt();
|
2009-08-20 12:38:17 +03:00
|
|
|
}
|