1
2
3
4
5
6
7
8
9
10
11#include <linux/init.h>
12#include <linux/irq.h>
13#include <asm/page.h>
14#include <linux/io.h>
15#include <linux/bug.h>
16
17#include <asm/prom.h>
18#include <asm/irq.h>
19
20#ifdef CONFIG_SELFMOD_INTC
21#include <asm/selfmod.h>
22#define INTC_BASE BARRIER_BASE_ADDR
23#else
24static unsigned int intc_baseaddr;
25#define INTC_BASE intc_baseaddr
26#endif
27
28unsigned int nr_irq;
29
30
31#define ISR 0x00
32#define IPR 0x04
33#define IER 0x08
34#define IAR 0x0c
35#define SIE 0x10
36#define CIE 0x14
37#define IVR 0x18
38#define MER 0x1c
39
40#define MER_ME (1<<0)
41#define MER_HIE (1<<1)
42
43static void intc_enable_or_unmask(struct irq_data *d)
44{
45 unsigned long mask = 1 << d->irq;
46 pr_debug("enable_or_unmask: %d\n", d->irq);
47 out_be32(INTC_BASE + SIE, mask);
48
49
50
51
52
53 if (irqd_is_level_type(d))
54 out_be32(INTC_BASE + IAR, mask);
55}
56
57static void intc_disable_or_mask(struct irq_data *d)
58{
59 pr_debug("disable: %d\n", d->irq);
60 out_be32(INTC_BASE + CIE, 1 << d->irq);
61}
62
63static void intc_ack(struct irq_data *d)
64{
65 pr_debug("ack: %d\n", d->irq);
66 out_be32(INTC_BASE + IAR, 1 << d->irq);
67}
68
69static void intc_mask_ack(struct irq_data *d)
70{
71 unsigned long mask = 1 << d->irq;
72 pr_debug("disable_and_ack: %d\n", d->irq);
73 out_be32(INTC_BASE + CIE, mask);
74 out_be32(INTC_BASE + IAR, mask);
75}
76
77static struct irq_chip intc_dev = {
78 .name = "Xilinx INTC",
79 .irq_unmask = intc_enable_or_unmask,
80 .irq_mask = intc_disable_or_mask,
81 .irq_ack = intc_ack,
82 .irq_mask_ack = intc_mask_ack,
83};
84
85unsigned int get_irq(struct pt_regs *regs)
86{
87 int irq;
88
89
90
91
92
93
94 irq = in_be32(INTC_BASE + IVR);
95 pr_debug("get_irq: %d\n", irq);
96
97 return irq;
98}
99
100void __init init_IRQ(void)
101{
102 u32 i, j, intr_type;
103 struct device_node *intc = NULL;
104#ifdef CONFIG_SELFMOD_INTC
105 unsigned int intc_baseaddr = 0;
106 static int arr_func[] = {
107 (int)&get_irq,
108 (int)&intc_enable_or_unmask,
109 (int)&intc_disable_or_mask,
110 (int)&intc_mask_ack,
111 (int)&intc_ack,
112 (int)&intc_end,
113 0
114 };
115#endif
116 const char * const intc_list[] = {
117 "xlnx,xps-intc-1.00.a",
118 NULL
119 };
120
121 for (j = 0; intc_list[j] != NULL; j++) {
122 intc = of_find_compatible_node(NULL, NULL, intc_list[j]);
123 if (intc)
124 break;
125 }
126 BUG_ON(!intc);
127
128 intc_baseaddr = be32_to_cpup(of_get_property(intc,
129 "reg", NULL));
130 intc_baseaddr = (unsigned long) ioremap(intc_baseaddr, PAGE_SIZE);
131 nr_irq = be32_to_cpup(of_get_property(intc,
132 "xlnx,num-intr-inputs", NULL));
133
134 intr_type =
135 be32_to_cpup(of_get_property(intc,
136 "xlnx,kind-of-intr", NULL));
137 if (intr_type >= (1 << (nr_irq + 1)))
138 printk(KERN_INFO " ERROR: Mismatch in kind-of-intr param\n");
139
140#ifdef CONFIG_SELFMOD_INTC
141 selfmod_function((int *) arr_func, intc_baseaddr);
142#endif
143 printk(KERN_INFO "%s #0 at 0x%08x, num_irq=%d, edge=0x%x\n",
144 intc_list[j], intc_baseaddr, nr_irq, intr_type);
145
146
147
148
149
150 out_be32(intc_baseaddr + IER, 0);
151
152
153 out_be32(intc_baseaddr + IAR, 0xffffffff);
154
155
156 out_be32(intc_baseaddr + MER, MER_HIE | MER_ME);
157
158 for (i = 0; i < nr_irq; ++i) {
159 if (intr_type & (0x00000001 << i)) {
160 irq_set_chip_and_handler_name(i, &intc_dev,
161 handle_edge_irq, "edge");
162 irq_clear_status_flags(i, IRQ_LEVEL);
163 } else {
164 irq_set_chip_and_handler_name(i, &intc_dev,
165 handle_level_irq, "level");
166 irq_set_status_flags(i, IRQ_LEVEL);
167 }
168 }
169}
170