Pull video into test branch
[linux-drm-fsl-dcu.git] / arch / sh / boards / se / 770x / irq.c
1 /*
2  * linux/arch/sh/boards/se/770x/irq.c
3  *
4  * Copyright (C) 2000  Kazumoto Kojima
5  *
6  * Hitachi SolutionEngine Support.
7  *
8  */
9
10 #include <linux/init.h>
11 #include <linux/irq.h>
12 #include <asm/irq.h>
13 #include <asm/io.h>
14 #include <asm/se.h>
15
16 static struct ipr_data se770x_ipr_map[] = {
17 #if defined(CONFIG_CPU_SUBTYPE_SH7705)
18         /* This is default value */
19         { 0xf-0x2, BCR_ILCRA, 2, 0x2 },
20         { 0xf-0xa, BCR_ILCRA, 1, 0xa },
21         { 0xf-0x5, BCR_ILCRB, 0, 0x5 },
22         { 0xf-0x8, BCR_ILCRC, 1, 0x8 },
23         { 0xf-0xc, BCR_ILCRC, 0, 0xc },
24         { 0xf-0xe, BCR_ILCRD, 3, 0xe },
25         { 0xf-0x3, BCR_ILCRD, 1, 0x3 }, /* LAN */
26         { 0xf-0xd, BCR_ILCRE, 2, 0xd },
27         { 0xf-0x9, BCR_ILCRE, 1, 0x9 },
28         { 0xf-0x1, BCR_ILCRE, 0, 0x1 },
29         { 0xf-0xf, BCR_ILCRF, 3, 0xf },
30         { 0xf-0xb, BCR_ILCRF, 1, 0xb },
31         { 0xf-0x7, BCR_ILCRG, 3, 0x7 },
32         { 0xf-0x6, BCR_ILCRG, 2, 0x6 },
33         { 0xf-0x4, BCR_ILCRG, 1, 0x4 },
34 #else
35         { 14, BCR_ILCRA, 2, 0x0f-14 },
36         { 12, BCR_ILCRA, 1, 0x0f-12 },
37         {  8, BCR_ILCRB, 1, 0x0f- 8 },
38         {  6, BCR_ILCRC, 3, 0x0f- 6 },
39         {  5, BCR_ILCRC, 2, 0x0f- 5 },
40         {  4, BCR_ILCRC, 1, 0x0f- 4 },
41         {  3, BCR_ILCRC, 0, 0x0f- 3 },
42         {  1, BCR_ILCRD, 3, 0x0f- 1 },
43
44         { 10, BCR_ILCRD, 1, 0x0f-10 }, /* LAN */
45
46         {  0, BCR_ILCRE, 3, 0x0f- 0 }, /* PCIRQ3 */
47         { 11, BCR_ILCRE, 2, 0x0f-11 }, /* PCIRQ2 */
48         {  9, BCR_ILCRE, 1, 0x0f- 9 }, /* PCIRQ1 */
49         {  7, BCR_ILCRE, 0, 0x0f- 7 }, /* PCIRQ0 */
50
51         /* #2, #13 are allocated for SLOT IRQ #1 and #2 (for now) */
52         /* NOTE: #2 and #13 are not used on PC */
53         { 13, BCR_ILCRG, 1, 0x0f-13 }, /* SLOTIRQ2 */
54         {  2, BCR_ILCRG, 0, 0x0f- 2 }, /* SLOTIRQ1 */
55 #endif
56 };
57
58 /*
59  * Initialize IRQ setting
60  */
61 void __init init_se_IRQ(void)
62 {
63         /*
64          * Super I/O (Just mimic PC):
65          *  1: keyboard
66          *  3: serial 0
67          *  4: serial 1
68          *  5: printer
69          *  6: floppy
70          *  8: rtc
71          * 12: mouse
72          * 14: ide0
73          */
74 #if defined(CONFIG_CPU_SUBTYPE_SH7705)
75         /* Disable all interrupts */
76         ctrl_outw(0, BCR_ILCRA);
77         ctrl_outw(0, BCR_ILCRB);
78         ctrl_outw(0, BCR_ILCRC);
79         ctrl_outw(0, BCR_ILCRD);
80         ctrl_outw(0, BCR_ILCRE);
81         ctrl_outw(0, BCR_ILCRF);
82         ctrl_outw(0, BCR_ILCRG);
83 #endif
84         make_ipr_irq(se770x_ipr_map, ARRAY_SIZE(se770x_ipr_map));
85 }