-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
yaml --- r: 162659 b: refs/heads/master c: da3601a h: refs/heads/master i: 162657: 6ba1e35 162655: 2da55ea v: v3
- Loading branch information
Greg Ungerer
committed
Sep 15, 2009
1 parent
d832886
commit 18a905f
Showing
4 changed files
with
79 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
--- | ||
refs/heads/master: 3945ca0f84fee3fe564189fe8cf8f02491d19622 | ||
refs/heads/master: da3601a5fa664c8d51383fe916d96bd4fbce84b8 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,59 @@ | ||
/* | ||
* 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(unsigned int irq) | ||
{ | ||
u32 imr; | ||
imr = readl(MCF_MBAR2 + MCFSIM2_GPIOINTENABLE); | ||
imr &= ~(0x1 << (irq - MCFINTC2_GPIOIRQ0)); | ||
writel(imr, MCF_MBAR2 + MCFSIM2_GPIOINTENABLE); | ||
} | ||
|
||
static void intc2_irq_gpio_unmask(unsigned int irq) | ||
{ | ||
u32 imr; | ||
imr = readl(MCF_MBAR2 + MCFSIM2_GPIOINTENABLE); | ||
imr |= (0x1 << (irq - MCFINTC2_GPIOIRQ0)); | ||
writel(imr, MCF_MBAR2 + MCFSIM2_GPIOINTENABLE); | ||
} | ||
|
||
static void intc2_irq_gpio_ack(unsigned int irq) | ||
{ | ||
writel(0x1 << (irq - MCFINTC2_GPIOIRQ0), MCF_MBAR2 + MCFSIM2_GPIOINTCLEAR); | ||
} | ||
|
||
static struct irq_chip intc2_irq_gpio_chip = { | ||
.name = "CF-INTC2", | ||
.mask = intc2_irq_gpio_mask, | ||
.unmask = intc2_irq_gpio_unmask, | ||
.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_desc[irq].chip = &intc2_irq_gpio_chip; | ||
|
||
return 0; | ||
} | ||
|
||
arch_initcall(mcf_intc2_init); |