linux-mips.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Florian Fainelli <florian@openwrt.org>
To: "Lars-Peter Clausen" <lars@metafoo.de>
Cc: Ralf Baechle <ralf@linux-mips.org>,
	linux-mips@linux-mips.org, linux-kernel@vger.kernel.org,
	Thomas Gleixner <tglx@linutronix.de>
Subject: Re: [RFC][PATCH 02/26] MIPS: jz4740: Add IRQ handler code
Date: Thu, 3 Jun 2010 16:29:26 +0200	[thread overview]
Message-ID: <201006031629.26424.florian@openwrt.org> (raw)
In-Reply-To: <1275505397-16758-3-git-send-email-lars@metafoo.de>

On Wednesday 02 June 2010 21:02:53 Lars-Peter Clausen wrote:
> This patch adds support for IRQ handling on a JZ4740 SoC.
> 
> Signed-off-by: Lars-Peter Clausen <lars@metafoo.de>
> Cc: Thomas Gleixner <tglx@linutronix.de>
> ---
>  arch/mips/include/asm/mach-jz4740/irq.h |   55 ++++++++++
>  arch/mips/jz4740/irq.c                  |  170
> +++++++++++++++++++++++++++++++ arch/mips/jz4740/irq.h                  | 
>  21 ++++
>  3 files changed, 246 insertions(+), 0 deletions(-)
>  create mode 100644 arch/mips/include/asm/mach-jz4740/irq.h
>  create mode 100644 arch/mips/jz4740/irq.c
>  create mode 100644 arch/mips/jz4740/irq.h
> 
> diff --git a/arch/mips/include/asm/mach-jz4740/irq.h
> b/arch/mips/include/asm/mach-jz4740/irq.h new file mode 100644
> index 0000000..5e27b78
> --- /dev/null
> +++ b/arch/mips/include/asm/mach-jz4740/irq.h
> @@ -0,0 +1,55 @@
> +/*
> + *  Copyright (C) 2009-2010, Lars-Peter Clausen <lars@metafoo.de>
> + *  JZ7420/JZ4740 IRQ definitions
> + *
> + *  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.
> + *
> + *  You should have received a copy of the  GNU General Public License
> along + *  with this program; if not, write  to the Free Software
> Foundation, Inc., + *  675 Mass Ave, Cambridge, MA 02139, USA.
> + *
> + */
> +
> +#ifndef __ASM_MACH_JZ4740_IRQ_H__
> +#define __ASM_MACH_JZ4740_IRQ_H__
> +
> +#define MIPS_CPU_IRQ_BASE 0
> +#define JZ4740_IRQ_BASE 8
> +
> +/* 1st-level interrupts */
> +#define JZ4740_IRQ(x)	(JZ4740_IRQ_BASE + (x))
> +#define JZ4740_IRQ_I2C	JZ4740_IRQ(1)
> +#define JZ4740_IRQ_UHC	JZ4740_IRQ(3)
> +#define JZ4740_IRQ_UART1	JZ4740_IRQ(8)
> +#define JZ4740_IRQ_UART0	JZ4740_IRQ(9)
> +#define JZ4740_IRQ_SADC	JZ4740_IRQ(12)
> +#define JZ4740_IRQ_MSC	JZ4740_IRQ(14)
> +#define JZ4740_IRQ_RTC	JZ4740_IRQ(15)
> +#define JZ4740_IRQ_SSI	JZ4740_IRQ(16)
> +#define JZ4740_IRQ_CIM	JZ4740_IRQ(17)
> +#define JZ4740_IRQ_AIC	JZ4740_IRQ(18)
> +#define JZ4740_IRQ_ETH	JZ4740_IRQ(19)
> +#define JZ4740_IRQ_DMAC	JZ4740_IRQ(20)
> +#define JZ4740_IRQ_TCU2	JZ4740_IRQ(21)
> +#define JZ4740_IRQ_TCU1	JZ4740_IRQ(22)
> +#define JZ4740_IRQ_TCU0	JZ4740_IRQ(23)
> +#define JZ4740_IRQ_UDC	JZ4740_IRQ(24)
> +#define JZ4740_IRQ_GPIO3	JZ4740_IRQ(25)
> +#define JZ4740_IRQ_GPIO2	JZ4740_IRQ(26)
> +#define JZ4740_IRQ_GPIO1	JZ4740_IRQ(27)
> +#define JZ4740_IRQ_GPIO0	JZ4740_IRQ(28)
> +#define JZ4740_IRQ_IPU	JZ4740_IRQ(29)
> +#define JZ4740_IRQ_LCD	JZ4740_IRQ(30)
> +
> +/* 2nd-level interrupts */
> +#define JZ4740_IRQ_DMA(x)	((x) + JZ4740_IRQ(32))
> +
> +#define JZ4740_IRQ_INTC_GPIO(x)	(JZ4740_IRQ_GPIO0 - (x))
> +#define JZ4740_IRQ_GPIO(x)		(JZ4740_IRQ(48) + (x))
> +
> +#define NR_IRQS (JZ4740_IRQ_GPIO(127) + 1)
> +
> +#endif
> diff --git a/arch/mips/jz4740/irq.c b/arch/mips/jz4740/irq.c
> new file mode 100644
> index 0000000..46a03ee
> --- /dev/null
> +++ b/arch/mips/jz4740/irq.c
> @@ -0,0 +1,170 @@
> +/*
> + *  Copyright (C) 2009-2010, Lars-Peter Clausen <lars@metafoo.de>
> + *  JZ4740 platform IRQ support
> + *
> + *  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.
> + *
> + *  You should have received a copy of the  GNU General Public License
> along + *  with this program; if not, write  to the Free Software
> Foundation, Inc., + *  675 Mass Ave, Cambridge, MA 02139, USA.
> + *
> + */
> +
> +#include <linux/errno.h>
> +#include <linux/init.h>
> +#include <linux/types.h>
> +#include <linux/interrupt.h>
> +#include <linux/ioport.h>
> +#include <linux/timex.h>
> +#include <linux/slab.h>
> +#include <linux/delay.h>
> +
> +#include <linux/debugfs.h>
> +#include <linux/seq_file.h>
> +
> +#include <asm/io.h>
> +#include <asm/mipsregs.h>
> +#include <asm/irq_cpu.h>
> +
> +#include <asm/mach-jz4740/base.h>
> +
> +static void __iomem *jz_intc_base;
> +static uint32_t jz_intc_wakeup;
> +static uint32_t jz_intc_saved;
> +
> +#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
> +
> +#define IRQ_BIT(x) BIT((x) - JZ4740_IRQ_BASE)
> +
> +static void intc_irq_unmask(unsigned int irq)
> +{
> +	writel(IRQ_BIT(irq), jz_intc_base + JZ_REG_INTC_CLEAR_MASK);
> +}
> +
> +static void intc_irq_mask(unsigned int irq)
> +{
> +	writel(IRQ_BIT(irq), jz_intc_base + JZ_REG_INTC_SET_MASK);
> +}
> +
> +static int intc_irq_set_wake(unsigned int irq, unsigned int on)
> +{
> +	if (on)
> +		jz_intc_wakeup |= IRQ_BIT(irq);
> +	else
> +		jz_intc_wakeup &= ~IRQ_BIT(irq);
> +
> +	return 0;
> +}
> +
> +static struct irq_chip intc_irq_type = {
> +	.name =		"INTC",
> +	.mask =		intc_irq_mask,
> +	.mask_ack =	intc_irq_mask,
> +	.unmask =	intc_irq_unmask,
> +	.set_wake =	intc_irq_set_wake,
> +};
> +
> +static irqreturn_t jz4740_cascade(int irq, void *data)
> +{
> +	uint32_t irq_reg;
> +	int intc_irq;
> +
> +	irq_reg = readl(jz_intc_base + JZ_REG_INTC_PENDING);
> +
> +	intc_irq = ffs(irq_reg);
> +	if (intc_irq)
> +		generic_handle_irq(intc_irq - 1 + JZ4740_IRQ_BASE);
> +
> +	return IRQ_HANDLED;
> +}
> +
> +static struct irqaction jz4740_cascade_action = {
> +	.handler = jz4740_cascade,
> +	.name = "JZ4740 cascade interrupt",
> +	.flags = IRQF_DISABLED,
> +};
> +
> +void __init arch_init_irq(void)
> +{
> +	int i;
> +	mips_cpu_irq_init();
> +
> +	jz_intc_base = ioremap(CPHYSADDR(JZ4740_INTC_BASE_ADDR), 0x14);

Better define the physical address and use ioremap directly on it.

> +
> +	for (i = JZ4740_IRQ_BASE; i < JZ4740_IRQ_BASE + 32; i++) {
> +		intc_irq_mask(i);
> +		set_irq_chip_and_handler(i, &intc_irq_type, handle_level_irq);
> +	}
> +
> +	setup_irq(2, &jz4740_cascade_action);
> +}
> +
> +asmlinkage void plat_irq_dispatch(void)
> +{
> +	unsigned int pending = read_c0_status() & read_c0_cause() & ST0_IM;
> +	if (pending & STATUSF_IP2)
> +		do_IRQ(2);
> +	else if (pending & STATUSF_IP3)
> +		do_IRQ(3);
> +	else
> +		spurious_interrupt();
> +}
> +
> +void jz4740_intc_suspend(void)
> +{
> +	jz_intc_saved = readl(jz_intc_base + JZ_REG_INTC_MASK);
> +	writel(~jz_intc_wakeup, jz_intc_base + JZ_REG_INTC_SET_MASK);
> +	writel(jz_intc_wakeup, jz_intc_base + JZ_REG_INTC_CLEAR_MASK);
> +}
> +
> +void jz4740_intc_resume(void)
> +{
> +	writel(~jz_intc_saved, jz_intc_base + JZ_REG_INTC_CLEAR_MASK);
> +	writel(jz_intc_saved, jz_intc_base + JZ_REG_INTC_SET_MASK);
> +}
> +
> +#ifdef CONFIG_DEBUG_FS
> +
> +static inline void intc_seq_reg(struct seq_file *s, const char *name,
> +	unsigned int reg)
> +{
> +	seq_printf(s, "%s:\t\t%08x\n", name, readl(jz_intc_base + reg));
> +}
> +
> +static int intc_regs_show(struct seq_file *s, void *unused)
> +{
> +	intc_seq_reg(s, "Status", JZ_REG_INTC_STATUS);
> +	intc_seq_reg(s, "Mask", JZ_REG_INTC_MASK);
> +	intc_seq_reg(s, "Pending", JZ_REG_INTC_PENDING);
> +
> +	return 0;
> +}
> +
> +static int intc_regs_open(struct inode *inode, struct file *file)
> +{
> +	return single_open(file, intc_regs_show, NULL);
> +}
> +
> +static const struct file_operations intc_regs_operations = {
> +	.open		= intc_regs_open,
> +	.read		= seq_read,
> +	.llseek		= seq_lseek,
> +	.release	= single_release,
> +};
> +
> +static int __init intc_debugfs_init(void)
> +{
> +	(void) debugfs_create_file("jz_regs_intc", S_IFREG | S_IRUGO,
> +				NULL, NULL, &intc_regs_operations);
> +	return 0;
> +}
> +subsys_initcall(intc_debugfs_init);
> +
> +#endif
> diff --git a/arch/mips/jz4740/irq.h b/arch/mips/jz4740/irq.h
> new file mode 100644
> index 0000000..dadbd5f
> --- /dev/null
> +++ b/arch/mips/jz4740/irq.h
> @@ -0,0 +1,21 @@
> +/*
> + *  Copyright (C) 2010, Lars-Peter Clausen <lars@metafoo.de>
> + *
> + *  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.
> + *
> + *  You should have received a copy of the  GNU General Public License
> along + *  with this program; if not, write  to the Free Software
> Foundation, Inc., + *  675 Mass Ave, Cambridge, MA 02139, USA.
> + *
> + */
> +
> +#ifndef __MIPS_JZ4740_IRQ_H__
> +#define __MIPS_JZ4740_IRQ_H__
> +
> +extern void jz4740_intc_suspend(void);
> +extern void jz4740_intc_resume(void);
> +
> +#endif

  reply	other threads:[~2010-06-03 14:36 UTC|newest]

Thread overview: 65+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
     [not found] <1275505397-16758-1-git-send-email-lars@metafoo.de>
2010-06-02 19:02 ` [RFC][PATCH 01/26] MIPS: Add base support for Ingenic JZ4740 System-on-a-Chip Lars-Peter Clausen
2010-06-03 14:27   ` Florian Fainelli
2010-06-03 17:03     ` Lars-Peter Clausen
2010-06-02 19:02 ` [RFC][PATCH 02/26] MIPS: jz4740: Add IRQ handler code Lars-Peter Clausen
2010-06-03 14:29   ` Florian Fainelli [this message]
2010-06-02 19:02 ` [RFC][PATCH 03/26] MIPS: JZ4740: Add clock API support Lars-Peter Clausen
2010-06-02 22:45   ` Graham Gower
2010-06-03 17:20     ` Lars-Peter Clausen
2010-06-02 19:02 ` [RFC][PATCH 04/26] MIPS: JZ4740: Add timer support Lars-Peter Clausen
2010-06-02 19:02 ` [RFC][PATCH 05/26] MIPS: JZ4740: Add clocksource/clockevent support Lars-Peter Clausen
2010-06-02 19:02 ` [RFC][PATCH 06/26] MIPS: JZ4740: Add power-management and system reset support Lars-Peter Clausen
2010-06-02 19:02 ` [RFC][PATCH 07/26] MIPS: JZ4740: Add setup code Lars-Peter Clausen
2010-06-02 19:02 ` [RFC][PATCH 08/26] MIPS: JZ4740: Add gpio support Lars-Peter Clausen
2010-06-02 19:10 ` [RFC][PATCH 09/26] MIPS: JZ4740: Add DMA support Lars-Peter Clausen
2010-06-02 19:10 ` [RFC][PATCH 10/26] MIPS: JZ4740: Add PWM support Lars-Peter Clausen
2010-06-02 19:10 ` [RFC][PATCH 11/26] MIPS: JZ4740: Add serial support Lars-Peter Clausen
2010-06-02 19:10 ` [RFC][PATCH 12/26] MIPS: JZ4740: Add prom support Lars-Peter Clausen
2010-06-02 19:10 ` [RFC][PATCH 13/26] MIPS: JZ4740: Add platform devices Lars-Peter Clausen
2010-06-02 19:10 ` [RFC][PATCH 14/26] MIPS: JZ4740: Add Kbuild files Lars-Peter Clausen
2010-06-04  0:47   ` Ralf Baechle
2010-06-02 19:10 ` [RFC][PATCH 15/26] RTC: Add JZ4740 RTC driver Lars-Peter Clausen
2010-06-05 15:48   ` [rtc-linux] " Wan ZongShun
2010-06-05 17:26     ` Lars-Peter Clausen
2010-06-02 19:10 ` [RFC][PATCH 16/26] fbdev: Add JZ4740 framebuffer driver Lars-Peter Clausen
2010-06-02 19:36   ` Andrew Morton
2010-06-02 20:05     ` Lars-Peter Clausen
2010-06-02 19:12 ` [RFC][PATCH 17/26] MTD: Nand: Add JZ4740 NAND driver Lars-Peter Clausen
2010-06-13  9:40   ` Artem Bityutskiy
2010-06-02 19:12 ` [RFC][PATCH 18/26] MMC: Add JZ4740 mmc driver Lars-Peter Clausen
2010-06-02 19:12 ` [RFC][PATCH 19/26] USB: Add JZ4740 ohci support Lars-Peter Clausen
2010-06-02 19:12 ` [RFC][PATCH 20/26] alsa: ASoC: Add JZ4740 codec driver Lars-Peter Clausen
2010-06-03  5:45   ` [alsa-devel] " Wan ZongShun
2010-06-03 12:03     ` Mark Brown
2010-06-03 12:32   ` Liam Girdwood
2010-06-03 12:50     ` Liam Girdwood
2010-06-03 16:58     ` Lars-Peter Clausen
2010-06-03 17:49   ` Mark Brown
2010-06-03 23:57     ` Lars-Peter Clausen
2010-06-03 23:59       ` Mark Brown
2010-06-02 19:12 ` [RFC][PATCH 21/26] alsa: ASoC: Add JZ4740 ASoC support Lars-Peter Clausen
2010-06-03  3:36   ` [alsa-devel] " Wan ZongShun
2010-06-03 12:48   ` Liam Girdwood
2010-06-03 16:50     ` Lars-Peter Clausen
2010-06-03 17:03       ` Liam Girdwood
2010-06-03 17:16         ` Lars-Peter Clausen
2010-06-03 17:25           ` Liam Girdwood
2010-06-03 17:37             ` Lars-Peter Clausen
2010-06-03 18:14             ` [alsa-devel] " Troy Kisky
2010-06-03 17:55   ` Mark Brown
2010-06-03 19:27     ` Lars-Peter Clausen
2010-06-02 19:12 ` [RFC][PATCH 22/26] hwmon: Add JZ4740 ADC driver Lars-Peter Clausen
2010-06-05 17:22   ` Jonathan Cameron
2010-06-05 19:08     ` Lars-Peter Clausen
2010-06-05 21:07       ` [lm-sensors] " Jonathan Cameron
2010-06-05 22:12         ` Lars-Peter Clausen
2010-06-02 19:12 ` [RFC][PATCH 23/26] power: Add JZ4740 battery driver Lars-Peter Clausen
2010-06-14 15:51   ` Anton Vorontsov
2010-06-15 17:28     ` Lars-Peter Clausen
2010-06-15 17:34     ` Ralf Baechle
2010-06-16 12:20       ` Mark Brown
2010-06-19  3:48         ` Lars-Peter Clausen
2010-06-02 19:12 ` [RFC][PATCH 24/26] MIPS: JZ4740: Add qi_lb60 board support Lars-Peter Clausen
2010-06-02 19:15 ` [RFC][PATCH 25/26] MIPS: Add defconfig for the qi_lb60 board Lars-Peter Clausen
2010-06-02 19:15 ` [RFC][PATCH 26/26] alsa: ASoC: JZ4740: Add qi_lb60 board driver Lars-Peter Clausen
2010-06-03 17:57   ` Mark Brown

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=201006031629.26424.florian@openwrt.org \
    --to=florian@openwrt.org \
    --cc=lars@metafoo.de \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-mips@linux-mips.org \
    --cc=ralf@linux-mips.org \
    --cc=tglx@linutronix.de \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).