diff options
author | Paul Mundt <lethal@linux-sh.org> | 2012-05-18 01:58:03 -0400 |
---|---|---|
committer | Paul Mundt <lethal@linux-sh.org> | 2012-05-18 01:58:03 -0400 |
commit | 7b56934ce26841587f3cd2843a6f0b918070e5b7 (patch) | |
tree | 95f5919b5b099b7b13e1002dca9299d26326eca1 /arch/sh | |
parent | d5d7e78368cb04b2ee3dc2c0e5f2ea97a345d4d6 (diff) |
sh: magicpanelr2 evt2irq migration.
Migrate magicpanelr2 to evt2irq() backed hwirq lookups.
Signed-off-by: Paul Mundt <lethal@linux-sh.org>
Diffstat (limited to 'arch/sh')
-rw-r--r-- | arch/sh/boards/board-magicpanelr2.c | 27 |
1 files changed, 14 insertions, 13 deletions
diff --git a/arch/sh/boards/board-magicpanelr2.c b/arch/sh/boards/board-magicpanelr2.c index b2ca1d9948fb..90568f9de3a4 100644 --- a/arch/sh/boards/board-magicpanelr2.c +++ b/arch/sh/boards/board-magicpanelr2.c | |||
@@ -19,6 +19,7 @@ | |||
19 | #include <linux/mtd/partitions.h> | 19 | #include <linux/mtd/partitions.h> |
20 | #include <linux/mtd/physmap.h> | 20 | #include <linux/mtd/physmap.h> |
21 | #include <linux/mtd/map.h> | 21 | #include <linux/mtd/map.h> |
22 | #include <linux/sh_intc.h> | ||
22 | #include <mach/magicpanelr2.h> | 23 | #include <mach/magicpanelr2.h> |
23 | #include <asm/heartbeat.h> | 24 | #include <asm/heartbeat.h> |
24 | #include <cpu/sh7720.h> | 25 | #include <cpu/sh7720.h> |
@@ -245,8 +246,8 @@ static struct resource smsc911x_resources[] = { | |||
245 | .flags = IORESOURCE_MEM, | 246 | .flags = IORESOURCE_MEM, |
246 | }, | 247 | }, |
247 | [1] = { | 248 | [1] = { |
248 | .start = 35, | 249 | .start = evt2irq(0x660), |
249 | .end = 35, | 250 | .end = evt2irq(0x660), |
250 | .flags = IORESOURCE_IRQ, | 251 | .flags = IORESOURCE_IRQ, |
251 | }, | 252 | }, |
252 | }; | 253 | }; |
@@ -358,17 +359,17 @@ static void __init init_mpr2_IRQ(void) | |||
358 | { | 359 | { |
359 | plat_irq_setup_pins(IRQ_MODE_IRQ); /* install handlers for IRQ0-5 */ | 360 | plat_irq_setup_pins(IRQ_MODE_IRQ); /* install handlers for IRQ0-5 */ |
360 | 361 | ||
361 | irq_set_irq_type(32, IRQ_TYPE_LEVEL_LOW); /* IRQ0 CAN1 */ | 362 | irq_set_irq_type(evt2irq(0x600), IRQ_TYPE_LEVEL_LOW); /* IRQ0 CAN1 */ |
362 | irq_set_irq_type(33, IRQ_TYPE_LEVEL_LOW); /* IRQ1 CAN2 */ | 363 | irq_set_irq_type(evt2irq(0x620), IRQ_TYPE_LEVEL_LOW); /* IRQ1 CAN2 */ |
363 | irq_set_irq_type(34, IRQ_TYPE_LEVEL_LOW); /* IRQ2 CAN3 */ | 364 | irq_set_irq_type(evt2irq(0x640), IRQ_TYPE_LEVEL_LOW); /* IRQ2 CAN3 */ |
364 | irq_set_irq_type(35, IRQ_TYPE_LEVEL_LOW); /* IRQ3 SMSC9115 */ | 365 | irq_set_irq_type(evt2irq(0x660), IRQ_TYPE_LEVEL_LOW); /* IRQ3 SMSC9115 */ |
365 | irq_set_irq_type(36, IRQ_TYPE_EDGE_RISING); /* IRQ4 touchscreen */ | 366 | irq_set_irq_type(evt2irq(0x680), IRQ_TYPE_EDGE_RISING); /* IRQ4 touchscreen */ |
366 | irq_set_irq_type(37, IRQ_TYPE_EDGE_FALLING); /* IRQ5 touchscreen */ | 367 | irq_set_irq_type(evt2irq(0x6a0), IRQ_TYPE_EDGE_FALLING); /* IRQ5 touchscreen */ |
367 | 368 | ||
368 | intc_set_priority(32, 13); /* IRQ0 CAN1 */ | 369 | intc_set_priority(evt2irq(0x600), 13); /* IRQ0 CAN1 */ |
369 | intc_set_priority(33, 13); /* IRQ0 CAN2 */ | 370 | intc_set_priority(evt2irq(0x620), 13); /* IRQ0 CAN2 */ |
370 | intc_set_priority(34, 13); /* IRQ0 CAN3 */ | 371 | intc_set_priority(evt2irq(0x640), 13); /* IRQ0 CAN3 */ |
371 | intc_set_priority(35, 6); /* IRQ3 SMSC9115 */ | 372 | intc_set_priority(evt2irq(0x660), 6); /* IRQ3 SMSC9115 */ |
372 | } | 373 | } |
373 | 374 | ||
374 | /* | 375 | /* |