2 * linux/arch/sh/boards/se/770x/irq.c
4 * Copyright (C) 2000 Kazumoto Kojima
6 * Hitachi SolutionEngine Support.
10 #include <linux/config.h>
11 #include <linux/init.h>
12 #include <linux/irq.h>
15 #include <asm/se/se.h>
18 * Initialize IRQ setting
20 void __init
init_se_IRQ(void)
23 * Super I/O (Just mimic PC):
33 #if defined(CONFIG_CPU_SUBTYPE_SH7705)
34 /* Disable all interrupts */
35 ctrl_outw(0, BCR_ILCRA
);
36 ctrl_outw(0, BCR_ILCRB
);
37 ctrl_outw(0, BCR_ILCRC
);
38 ctrl_outw(0, BCR_ILCRD
);
39 ctrl_outw(0, BCR_ILCRE
);
40 ctrl_outw(0, BCR_ILCRF
);
41 ctrl_outw(0, BCR_ILCRG
);
42 /* This is default value */
43 make_ipr_irq(0xf-0x2, BCR_ILCRA
, 2, 0x2);
44 make_ipr_irq(0xf-0xa, BCR_ILCRA
, 1, 0xa);
45 make_ipr_irq(0xf-0x5, BCR_ILCRB
, 0, 0x5);
46 make_ipr_irq(0xf-0x8, BCR_ILCRC
, 1, 0x8);
47 make_ipr_irq(0xf-0xc, BCR_ILCRC
, 0, 0xc);
48 make_ipr_irq(0xf-0xe, BCR_ILCRD
, 3, 0xe);
49 make_ipr_irq(0xf-0x3, BCR_ILCRD
, 1, 0x3); /* LAN */
50 make_ipr_irq(0xf-0xd, BCR_ILCRE
, 2, 0xd);
51 make_ipr_irq(0xf-0x9, BCR_ILCRE
, 1, 0x9);
52 make_ipr_irq(0xf-0x1, BCR_ILCRE
, 0, 0x1);
53 make_ipr_irq(0xf-0xf, BCR_ILCRF
, 3, 0xf);
54 make_ipr_irq(0xf-0xb, BCR_ILCRF
, 1, 0xb);
55 make_ipr_irq(0xf-0x7, BCR_ILCRG
, 3, 0x7);
56 make_ipr_irq(0xf-0x6, BCR_ILCRG
, 2, 0x6);
57 make_ipr_irq(0xf-0x4, BCR_ILCRG
, 1, 0x4);
59 make_ipr_irq(14, BCR_ILCRA
, 2, 0x0f-14);
60 make_ipr_irq(12, BCR_ILCRA
, 1, 0x0f-12);
61 make_ipr_irq( 8, BCR_ILCRB
, 1, 0x0f- 8);
62 make_ipr_irq( 6, BCR_ILCRC
, 3, 0x0f- 6);
63 make_ipr_irq( 5, BCR_ILCRC
, 2, 0x0f- 5);
64 make_ipr_irq( 4, BCR_ILCRC
, 1, 0x0f- 4);
65 make_ipr_irq( 3, BCR_ILCRC
, 0, 0x0f- 3);
66 make_ipr_irq( 1, BCR_ILCRD
, 3, 0x0f- 1);
68 make_ipr_irq(10, BCR_ILCRD
, 1, 0x0f-10); /* LAN */
70 make_ipr_irq( 0, BCR_ILCRE
, 3, 0x0f- 0); /* PCIRQ3 */
71 make_ipr_irq(11, BCR_ILCRE
, 2, 0x0f-11); /* PCIRQ2 */
72 make_ipr_irq( 9, BCR_ILCRE
, 1, 0x0f- 9); /* PCIRQ1 */
73 make_ipr_irq( 7, BCR_ILCRE
, 0, 0x0f- 7); /* PCIRQ0 */
75 /* #2, #13 are allocated for SLOT IRQ #1 and #2 (for now) */
76 /* NOTE: #2 and #13 are not used on PC */
77 make_ipr_irq(13, BCR_ILCRG
, 1, 0x0f-13); /* SLOTIRQ2 */
78 make_ipr_irq( 2, BCR_ILCRG
, 0, 0x0f- 2); /* SLOTIRQ1 */