intc-5249.c 1.5 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
/*
 * intc2.c  -- support for the 2nd INTC controller of the 5249
 *
 * (C) Copyright 2009, Greg Ungerer <gerg@snapgear.com>
 *
 * This file is subject to the terms and conditions of the GNU General Public
 * License.  See the file COPYING in the main directory of this archive
 * for more details.
 */

#include <linux/types.h>
#include <linux/init.h>
#include <linux/kernel.h>
#include <linux/interrupt.h>
#include <linux/irq.h>
#include <linux/io.h>
#include <asm/coldfire.h>
#include <asm/mcfsim.h>

20
static void intc2_irq_gpio_mask(struct irq_data *d)
21 22 23
{
	u32 imr;
	imr = readl(MCF_MBAR2 + MCFSIM2_GPIOINTENABLE);
24
	imr &= ~(0x1 << (d->irq - MCFINTC2_GPIOIRQ0));
25 26 27
	writel(imr, MCF_MBAR2 + MCFSIM2_GPIOINTENABLE);
}

28
static void intc2_irq_gpio_unmask(struct irq_data *d)
29 30 31
{
	u32 imr;
	imr = readl(MCF_MBAR2 + MCFSIM2_GPIOINTENABLE);
32
	imr |= (0x1 << (d->irq - MCFINTC2_GPIOIRQ0));
33 34 35
	writel(imr, MCF_MBAR2 + MCFSIM2_GPIOINTENABLE);
}

36
static void intc2_irq_gpio_ack(struct irq_data *d)
37
{
38
	writel(0x1 << (d->irq - MCFINTC2_GPIOIRQ0), MCF_MBAR2 + MCFSIM2_GPIOINTCLEAR);
39 40 41 42
}

static struct irq_chip intc2_irq_gpio_chip = {
	.name		= "CF-INTC2",
43 44 45
	.irq_mask	= intc2_irq_gpio_mask,
	.irq_unmask	= intc2_irq_gpio_unmask,
	.irq_ack	= intc2_irq_gpio_ack,
46 47 48 49 50 51 52
};

static int __init mcf_intc2_init(void)
{
	int irq;

	/* GPIO interrupt sources */
53
	for (irq = MCFINTC2_GPIOIRQ0; (irq <= MCFINTC2_GPIOIRQ7); irq++) {
54 55
		irq_set_chip(irq, &intc2_irq_gpio_chip);
		irq_set_handler(irq, handle_edge_irq);
56
	}
57 58 59 60 61

	return 0;
}

arch_initcall(mcf_intc2_init);