forked from Minki/linux
041a89a419
Make the ColdFire 5249 MBAR peripheral register definitions absolute addresses, instead of offsets into the region. The various ColdFire parts use different methods to address the internal registers, some are absolute, some are relative to peripheral regions which can be mapped at different address ranges (such as the MBAR and IPSBAR registers). We don't want to deal with this in the code when we are accessing these registers, so make all register definitions the absolute address - factoring out whether it is an offset into a peripheral region. This makes them all consistently defined, and reduces the occasional bugs caused by inconsistent definition of the register addresses. Signed-off-by: Greg Ungerer <gerg@uclinux.org>
62 lines
1.4 KiB
C
62 lines
1.4 KiB
C
/*
|
|
* 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>
|
|
|
|
static void intc2_irq_gpio_mask(struct irq_data *d)
|
|
{
|
|
u32 imr;
|
|
imr = readl(MCFSIM2_GPIOINTENABLE);
|
|
imr &= ~(0x1 << (d->irq - MCFINTC2_GPIOIRQ0));
|
|
writel(imr, MCFSIM2_GPIOINTENABLE);
|
|
}
|
|
|
|
static void intc2_irq_gpio_unmask(struct irq_data *d)
|
|
{
|
|
u32 imr;
|
|
imr = readl(MCFSIM2_GPIOINTENABLE);
|
|
imr |= (0x1 << (d->irq - MCFINTC2_GPIOIRQ0));
|
|
writel(imr, MCFSIM2_GPIOINTENABLE);
|
|
}
|
|
|
|
static void intc2_irq_gpio_ack(struct irq_data *d)
|
|
{
|
|
writel(0x1 << (d->irq - MCFINTC2_GPIOIRQ0), MCFSIM2_GPIOINTCLEAR);
|
|
}
|
|
|
|
static struct irq_chip intc2_irq_gpio_chip = {
|
|
.name = "CF-INTC2",
|
|
.irq_mask = intc2_irq_gpio_mask,
|
|
.irq_unmask = intc2_irq_gpio_unmask,
|
|
.irq_ack = intc2_irq_gpio_ack,
|
|
};
|
|
|
|
static int __init mcf_intc2_init(void)
|
|
{
|
|
int irq;
|
|
|
|
/* GPIO interrupt sources */
|
|
for (irq = MCFINTC2_GPIOIRQ0; (irq <= MCFINTC2_GPIOIRQ7); irq++) {
|
|
irq_set_chip(irq, &intc2_irq_gpio_chip);
|
|
irq_set_handler(irq, handle_edge_irq);
|
|
}
|
|
|
|
return 0;
|
|
}
|
|
|
|
arch_initcall(mcf_intc2_init);
|