isa_milan.c revision 1.1 1 1.1 leo /* $NetBSD: isa_milan.c,v 1.1 2001/04/24 06:39:48 leo Exp $ */
2 1.1 leo
3 1.1 leo /*-
4 1.1 leo * Copyright (c) 2001 The NetBSD Foundation, Inc.
5 1.1 leo * All rights reserved.
6 1.1 leo *
7 1.1 leo * This code is derived from software contributed to The NetBSD Foundation
8 1.1 leo * by Leo Weppelman.
9 1.1 leo *
10 1.1 leo * Redistribution and use in source and binary forms, with or without
11 1.1 leo * modification, are permitted provided that the following conditions
12 1.1 leo * are met:
13 1.1 leo * 1. Redistributions of source code must retain the above copyright
14 1.1 leo * notice, this list of conditions and the following disclaimer.
15 1.1 leo * 2. Redistributions in binary form must reproduce the above copyright
16 1.1 leo * notice, this list of conditions and the following disclaimer in the
17 1.1 leo * documentation and/or other materials provided with the distribution.
18 1.1 leo * 3. All advertising materials mentioning features or use of this software
19 1.1 leo * must display the following acknowledgement:
20 1.1 leo * This product includes software developed by the NetBSD
21 1.1 leo * Foundation, Inc. and its contributors.
22 1.1 leo * 4. Neither the name of The NetBSD Foundation nor the names of its
23 1.1 leo * contributors may be used to endorse or promote products derived
24 1.1 leo * from this software without specific prior written permission.
25 1.1 leo *
26 1.1 leo * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
27 1.1 leo * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
28 1.1 leo * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
29 1.1 leo * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
30 1.1 leo * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
31 1.1 leo * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
32 1.1 leo * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
33 1.1 leo * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
34 1.1 leo * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
35 1.1 leo * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
36 1.1 leo * POSSIBILITY OF SUCH DAMAGE.
37 1.1 leo */
38 1.1 leo
39 1.1 leo #include <sys/types.h>
40 1.1 leo #include <sys/param.h>
41 1.1 leo #include <sys/systm.h>
42 1.1 leo #include <sys/device.h>
43 1.1 leo
44 1.1 leo #include <dev/isa/isavar.h>
45 1.1 leo #include <dev/isa/isareg.h>
46 1.1 leo
47 1.1 leo #include <machine/iomap.h>
48 1.1 leo
49 1.1 leo void isa_bus_init(void);
50 1.1 leo #if 0
51 1.1 leo static void init_icu(void);
52 1.1 leo #endif
53 1.1 leo static void set_icus(void);
54 1.1 leo static void calc_imask(void);
55 1.1 leo
56 1.1 leo /*
57 1.1 leo * Bitmask of currently enabled isa interrupts. Used by set_icus().
58 1.1 leo */
59 1.1 leo static u_int16_t imask_enable = 0xffff;
60 1.1 leo
61 1.1 leo #define IRQ_SLAVE 2
62 1.1 leo
63 1.1 leo /*
64 1.1 leo * Interrupt routing table
65 1.1 leo */
66 1.1 leo #define MILAN_MAX_ISA_INTS 16
67 1.1 leo
68 1.1 leo static isa_intr_info_t milan_isa_iinfo[MILAN_MAX_ISA_INTS];
69 1.1 leo
70 1.1 leo void
71 1.1 leo isa_bus_init()
72 1.1 leo {
73 1.1 leo #if 0
74 1.1 leo init_icu();
75 1.1 leo #endif
76 1.1 leo set_icus();
77 1.1 leo }
78 1.1 leo
79 1.1 leo #if 0
80 1.1 leo static void
81 1.1 leo init_icu()
82 1.1 leo {
83 1.1 leo #define ICU_OFFSET 0
84 1.1 leo
85 1.1 leo u_int8_t *icu;
86 1.1 leo
87 1.1 leo icu = (u_int8_t*)(AD_8259_MASTER);
88 1.1 leo
89 1.1 leo icu[0] = 0x11; /* reset; program device, four bytes */
90 1.1 leo icu[1] = ICU_OFFSET; /* starting at this vector index */
91 1.1 leo icu[1] = (1 << IRQ_SLAVE); /* slave on line 2 */
92 1.1 leo icu[1] = 1; /* 8086 mode */
93 1.1 leo icu[1] = 0xff; /* leave interrupts masked */
94 1.1 leo
95 1.1 leo icu = (u_int8_t*)(AD_8259_SLAVE);
96 1.1 leo
97 1.1 leo icu[0] = 0x11; /* reset; program device, four bytes */
98 1.1 leo icu[1] = ICU_OFFSET + 8; /* starting at this vector index */
99 1.1 leo icu[1] = IRQ_SLAVE; /* slave on line 2 */
100 1.1 leo icu[1] = 1; /* 8086 mode */
101 1.1 leo icu[1] = 0xff; /* leave interrupts masked */
102 1.1 leo }
103 1.1 leo #endif
104 1.1 leo
105 1.1 leo static void
106 1.1 leo set_icus()
107 1.1 leo {
108 1.1 leo u_int8_t *icu;
109 1.1 leo
110 1.1 leo icu = (u_int8_t*)AD_8259_MASTER;
111 1.1 leo icu[1] = imask_enable & 0xff;
112 1.1 leo icu = (u_int8_t*)AD_8259_SLAVE;
113 1.1 leo icu[1] = (imask_enable >> 8) & 0xff;
114 1.1 leo }
115 1.1 leo
116 1.1 leo static void
117 1.1 leo calc_imask()
118 1.1 leo {
119 1.1 leo int irq;
120 1.1 leo u_int16_t nmask = 0;
121 1.1 leo
122 1.1 leo for (irq = 0; irq < MILAN_MAX_ISA_INTS; irq++) {
123 1.1 leo if (milan_isa_iinfo[irq].ifunc != NULL)
124 1.1 leo nmask |= 1 << irq;
125 1.1 leo if (nmask >= 0x100)
126 1.1 leo nmask |= 1 << IRQ_SLAVE;
127 1.1 leo }
128 1.1 leo imask_enable = ~nmask;
129 1.1 leo set_icus();
130 1.1 leo }
131 1.1 leo
132 1.1 leo
133 1.1 leo void milan_isa_intr(int);
134 1.1 leo void
135 1.1 leo milan_isa_intr(vector)
136 1.1 leo int vector;
137 1.1 leo {
138 1.1 leo isa_intr_info_t *iinfo_p;
139 1.1 leo
140 1.1 leo if(vector != 6)
141 1.1 leo printf("milan_isa_intr: vector: %d\n", vector);
142 1.1 leo if (vector >= MILAN_MAX_ISA_INTS) {
143 1.1 leo printf("milan_isa_intr: Bogus vector %d\n", vector);
144 1.1 leo return;
145 1.1 leo }
146 1.1 leo /* DEBUGGING LWP */
147 1.1 leo if (vector == 1) { /* Keyboard */
148 1.1 leo printf("kbd scancode: 0x%x, 0x%x, 0x%x, 0x%x\n",
149 1.1 leo *((u_char *)(pci_io_addr + 0x60)),
150 1.1 leo *((u_char *)(pci_io_addr + 0x61)),
151 1.1 leo *((u_char *)(pci_io_addr + 0x62)),
152 1.1 leo *((u_char *)(pci_io_addr + 0x63)));
153 1.1 leo }
154 1.1 leo
155 1.1 leo /* Acknowledge interrupt XXX 0x20 == EOI */
156 1.1 leo if (vector > 7)
157 1.1 leo *((u_char *)AD_8259_SLAVE) = 0x20;
158 1.1 leo *((u_char *)AD_8259_MASTER) = 0x20;
159 1.1 leo
160 1.1 leo iinfo_p = &milan_isa_iinfo[vector];
161 1.1 leo if (iinfo_p->ifunc == NULL)
162 1.1 leo printf("milan_isa_intr: Stray interrupt: %d (mask:%04x)\n",
163 1.1 leo vector, imask_enable);
164 1.1 leo else (void) (iinfo_p->ifunc)(iinfo_p->iarg);
165 1.1 leo }
166 1.1 leo
167 1.1 leo
168 1.1 leo /*
169 1.1 leo * Try to allocate a free interrupt... On the Milan, we have available:
170 1.1 leo * 5, 9, 10, 11, 13. Or in a bitmask: 0x1720.
171 1.1 leo */
172 1.1 leo #define MILAN_AVAIL_ISA_INTS 0x1720
173 1.1 leo
174 1.1 leo int
175 1.1 leo isa_intr_alloc(ic, mask, type, irq)
176 1.1 leo isa_chipset_tag_t ic;
177 1.1 leo int mask;
178 1.1 leo int type;
179 1.1 leo int *irq;
180 1.1 leo {
181 1.1 leo int i;
182 1.1 leo
183 1.1 leo /*
184 1.1 leo * The Hades only supports edge triggered interrupts!
185 1.1 leo * XXX: Find out about the Milan....
186 1.1 leo */
187 1.1 leo if (type != IST_EDGE)
188 1.1 leo return 1;
189 1.1 leo
190 1.1 leo /*
191 1.1 leo * Say no to impossible questions...
192 1.1 leo */
193 1.1 leo if (!(mask &= MILAN_AVAIL_ISA_INTS))
194 1.1 leo return 1;
195 1.1 leo
196 1.1 leo for (i = 0; i < MILAN_MAX_ISA_INTS; i++) {
197 1.1 leo if (mask & (1<<i)) {
198 1.1 leo if (milan_isa_iinfo[i].ifunc == NULL) {
199 1.1 leo *irq = i;
200 1.1 leo return 0;
201 1.1 leo }
202 1.1 leo }
203 1.1 leo }
204 1.1 leo return (1);
205 1.1 leo }
206 1.1 leo
207 1.1 leo void *
208 1.1 leo isa_intr_establish(ic, irq, type, level, ih_fun, ih_arg)
209 1.1 leo isa_chipset_tag_t ic;
210 1.1 leo int irq, type, level;
211 1.1 leo int (*ih_fun) __P((void *));
212 1.1 leo void *ih_arg;
213 1.1 leo {
214 1.1 leo isa_intr_info_t *iinfo_p;
215 1.1 leo
216 1.1 leo /*
217 1.1 leo * The Hades only supports edge triggered interrupts!
218 1.1 leo * XXX: Find out oubout the Milan...
219 1.1 leo */
220 1.1 leo if (type != IST_EDGE)
221 1.1 leo return NULL;
222 1.1 leo
223 1.1 leo iinfo_p = &milan_isa_iinfo[irq];
224 1.1 leo
225 1.1 leo if (iinfo_p->ifunc != NULL) {
226 1.1 leo printf("isa_intr_establish: interrupt %d was already "
227 1.1 leo "established\n", irq);
228 1.1 leo return NULL;
229 1.1 leo }
230 1.1 leo
231 1.1 leo iinfo_p->slot = 0; /* Unused on Milan */
232 1.1 leo iinfo_p->ihand = NULL; /* Unused on Milan */
233 1.1 leo iinfo_p->ipl = level;
234 1.1 leo iinfo_p->ifunc = ih_fun;
235 1.1 leo iinfo_p->iarg = ih_arg;
236 1.1 leo printf("Irq %d established\n", irq);
237 1.1 leo
238 1.1 leo calc_imask();
239 1.1 leo return(iinfo_p);
240 1.1 leo }
241 1.1 leo
242 1.1 leo void
243 1.1 leo isa_intr_disestablish(ic, handler)
244 1.1 leo isa_chipset_tag_t ic;
245 1.1 leo void *handler;
246 1.1 leo {
247 1.1 leo isa_intr_info_t *iinfo_p = (isa_intr_info_t *)handler;
248 1.1 leo
249 1.1 leo if (iinfo_p->ifunc == NULL)
250 1.1 leo panic("isa_intr_disestablish: interrupt was not established\n");
251 1.1 leo
252 1.1 leo iinfo_p->ifunc = NULL;
253 1.1 leo calc_imask();
254 1.1 leo }
255