diff options
| author | Haavard Skinnemoen <hskinnemoen@atmel.com> | 2006-12-08 05:04:19 -0500 |
|---|---|---|
| committer | Haavard Skinnemoen <hskinnemoen@atmel.com> | 2006-12-08 07:08:10 -0500 |
| commit | 695621183ee10eb22352bb919f50e160fa37aaa1 (patch) | |
| tree | 31a1edebdbebb42195a7e98c96c7faf37b719ba9 | |
| parent | acc9252a36dcefbcdae12f88566300a80d925e11 (diff) | |
[AVR32] Implement intc_get_pending()
intc_get_pending() returns a bitmask with pending interrupts in a
interrupt controller group (irq). This is used by the upcoming
oprofile implementation for avr32 and may also be useful for chained
interrupt controller drivers.
Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
| -rw-r--r-- | arch/avr32/mach-at32ap/intc.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/arch/avr32/mach-at32ap/intc.c b/arch/avr32/mach-at32ap/intc.c index eb87a18ad7b2..dd5c009cf224 100644 --- a/arch/avr32/mach-at32ap/intc.c +++ b/arch/avr32/mach-at32ap/intc.c | |||
| @@ -136,3 +136,7 @@ fail: | |||
| 136 | panic("Interrupt controller initialization failed!\n"); | 136 | panic("Interrupt controller initialization failed!\n"); |
| 137 | } | 137 | } |
| 138 | 138 | ||
| 139 | unsigned long intc_get_pending(int group) | ||
| 140 | { | ||
| 141 | return intc_readl(&intc0, INTREQ0 + 4 * group); | ||
| 142 | } | ||
