isa.c revision 1.44 1 1.1 cgd /*-
2 1.40 mycroft * Copyright (c) 1993, 1994 Charles Hannum.
3 1.1 cgd * Copyright (c) 1991 The Regents of the University of California.
4 1.1 cgd * All rights reserved.
5 1.1 cgd *
6 1.1 cgd * This code is derived from software contributed to Berkeley by
7 1.1 cgd * William Jolitz.
8 1.1 cgd *
9 1.1 cgd * Redistribution and use in source and binary forms, with or without
10 1.1 cgd * modification, are permitted provided that the following conditions
11 1.1 cgd * are met:
12 1.1 cgd * 1. Redistributions of source code must retain the above copyright
13 1.1 cgd * notice, this list of conditions and the following disclaimer.
14 1.1 cgd * 2. Redistributions in binary form must reproduce the above copyright
15 1.1 cgd * notice, this list of conditions and the following disclaimer in the
16 1.1 cgd * documentation and/or other materials provided with the distribution.
17 1.1 cgd * 3. All advertising materials mentioning features or use of this software
18 1.1 cgd * must display the following acknowledgement:
19 1.1 cgd * This product includes software developed by the University of
20 1.1 cgd * California, Berkeley and its contributors.
21 1.1 cgd * 4. Neither the name of the University nor the names of its contributors
22 1.1 cgd * may be used to endorse or promote products derived from this software
23 1.1 cgd * without specific prior written permission.
24 1.1 cgd *
25 1.1 cgd * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
26 1.1 cgd * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
27 1.1 cgd * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
28 1.1 cgd * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
29 1.1 cgd * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
30 1.1 cgd * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
31 1.1 cgd * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
32 1.1 cgd * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
33 1.1 cgd * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
34 1.1 cgd * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
35 1.1 cgd * SUCH DAMAGE.
36 1.1 cgd *
37 1.13 cgd * from: @(#)isa.c 7.2 (Berkeley) 5/13/91
38 1.44 mycroft * $Id: isa.c,v 1.44 1994/03/10 21:38:46 mycroft Exp $
39 1.1 cgd */
40 1.1 cgd
41 1.1 cgd /*
42 1.1 cgd * code to manage AT bus
43 1.2 cgd *
44 1.2 cgd * 92/08/18 Frank P. MacLachlan (fpm (at) crash.cts.com):
45 1.2 cgd * Fixed uninitialized variable problem and added code to deal
46 1.2 cgd * with DMA page boundaries in isa_dmarangecheck(). Fixed word
47 1.2 cgd * mode DMA count compution and reorganized DMA setup code in
48 1.2 cgd * isa_dmastart()
49 1.1 cgd */
50 1.1 cgd
51 1.31 mycroft #include <sys/param.h>
52 1.31 mycroft #include <sys/systm.h>
53 1.40 mycroft #include <sys/kernel.h>
54 1.31 mycroft #include <sys/conf.h>
55 1.31 mycroft #include <sys/file.h>
56 1.31 mycroft #include <sys/buf.h>
57 1.31 mycroft #include <sys/uio.h>
58 1.31 mycroft #include <sys/syslog.h>
59 1.31 mycroft #include <sys/malloc.h>
60 1.31 mycroft
61 1.31 mycroft #include <vm/vm.h>
62 1.31 mycroft
63 1.42 mycroft #include <machine/segments.h>
64 1.32 mycroft #include <machine/pio.h>
65 1.31 mycroft #include <machine/cpufunc.h>
66 1.31 mycroft
67 1.31 mycroft #include <i386/isa/isa_device.h>
68 1.31 mycroft #include <i386/isa/isa.h>
69 1.31 mycroft #include <i386/isa/icu.h>
70 1.31 mycroft #include <i386/isa/ic/i8237.h>
71 1.31 mycroft #include <i386/isa/ic/i8042.h>
72 1.31 mycroft #include <i386/isa/timerreg.h>
73 1.31 mycroft #include <i386/isa/spkr_reg.h>
74 1.14 deraadt
75 1.14 deraadt /* sorry, has to be here, no place else really suitable */
76 1.31 mycroft #include <machine/pc/display.h>
77 1.14 deraadt u_short *Crtat = (u_short *)MONO_BUF;
78 1.1 cgd
79 1.2 cgd /*
80 1.38 mycroft * Register definitions for DMA controller 1 (channels 0..3):
81 1.38 mycroft */
82 1.2 cgd #define DMA1_CHN(c) (IO_DMA1 + 1*(2*(c))) /* addr reg for channel c */
83 1.37 mycroft #define DMA1_SR (IO_DMA1 + 1*8) /* status register */
84 1.2 cgd #define DMA1_SMSK (IO_DMA1 + 1*10) /* single mask register */
85 1.2 cgd #define DMA1_MODE (IO_DMA1 + 1*11) /* mode register */
86 1.2 cgd #define DMA1_FFC (IO_DMA1 + 1*12) /* clear first/last FF */
87 1.2 cgd
88 1.2 cgd /*
89 1.38 mycroft * Register definitions for DMA controller 2 (channels 4..7):
90 1.38 mycroft */
91 1.30 mycroft #define DMA2_CHN(c) (IO_DMA2 + 2*(2*(c))) /* addr reg for channel c */
92 1.37 mycroft #define DMA2_SR (IO_DMA2 + 2*8) /* status register */
93 1.2 cgd #define DMA2_SMSK (IO_DMA2 + 2*10) /* single mask register */
94 1.2 cgd #define DMA2_MODE (IO_DMA2 + 2*11) /* mode register */
95 1.2 cgd #define DMA2_FFC (IO_DMA2 + 2*12) /* clear first/last FF */
96 1.2 cgd
97 1.15 cgd int config_isadev(struct isa_device *, u_int *);
98 1.6 deraadt void config_attach(struct isa_driver *, struct isa_device *);
99 1.21 andrew static void sysbeepstop(int);
100 1.1 cgd
101 1.1 cgd /*
102 1.1 cgd * Configure all ISA devices
103 1.1 cgd */
104 1.21 andrew void
105 1.30 mycroft isa_configure()
106 1.30 mycroft {
107 1.1 cgd struct isa_device *dvp;
108 1.1 cgd struct isa_driver *dp;
109 1.1 cgd
110 1.42 mycroft splhigh();
111 1.1 cgd INTREN(IRQ_SLAVE);
112 1.30 mycroft enable_intr();
113 1.30 mycroft
114 1.44 mycroft for (dvp = isa_devtab_tty; dvp->id_driver; dvp++)
115 1.44 mycroft config_isadev(dvp, &ttymask);
116 1.44 mycroft for (dvp = isa_devtab_bio; dvp->id_driver; dvp++)
117 1.44 mycroft config_isadev(dvp, &biomask);
118 1.44 mycroft for (dvp = isa_devtab_net; dvp->id_driver; dvp++)
119 1.44 mycroft config_isadev(dvp, &netmask);
120 1.44 mycroft for (dvp = isa_devtab_null; dvp->id_driver; dvp++)
121 1.44 mycroft config_isadev(dvp, (u_int *) NULL);
122 1.7 cgd
123 1.42 mycroft printf("biomask %x ttymask %x netmask %x\n",
124 1.42 mycroft biomask, ttymask, netmask);
125 1.30 mycroft
126 1.42 mycroft clockmask |= astmask;
127 1.42 mycroft biomask |= astmask;
128 1.42 mycroft ttymask |= astmask;
129 1.42 mycroft netmask |= astmask;
130 1.42 mycroft impmask = netmask | ttymask;
131 1.26 mycroft
132 1.30 mycroft spl0();
133 1.1 cgd }
134 1.1 cgd
135 1.1 cgd /*
136 1.1 cgd * Configure an ISA device.
137 1.1 cgd */
138 1.1 cgd config_isadev(isdp, mp)
139 1.1 cgd struct isa_device *isdp;
140 1.15 cgd u_int *mp;
141 1.1 cgd {
142 1.44 mycroft struct isa_driver *dp = isdp->id_driver;
143 1.1 cgd
144 1.44 mycroft if (isdp->id_masunit != -1) {
145 1.44 mycroft /* Not really an ISA device; just call the probe and attach. */
146 1.1 cgd isdp->id_alive = (*dp->probe)(isdp);
147 1.44 mycroft if (isdp->id_alive)
148 1.6 deraadt config_attach(dp, isdp);
149 1.44 mycroft return;
150 1.44 mycroft }
151 1.6 deraadt
152 1.44 mycroft if (isdp->id_maddr) {
153 1.44 mycroft extern u_int atdevbase;
154 1.1 cgd
155 1.44 mycroft isdp->id_maddr -= 0xa0000; /* XXX should be a define */
156 1.44 mycroft isdp->id_maddr += atdevbase;
157 1.44 mycroft }
158 1.44 mycroft isdp->id_alive = (*dp->probe)(isdp);
159 1.44 mycroft if (isdp->id_irq == (u_short)-1)
160 1.44 mycroft isdp->id_alive = 0;
161 1.44 mycroft /*
162 1.44 mycroft * Only print the I/O address range if id_alive != -1
163 1.44 mycroft * Right now this is a temporary fix just for the new
164 1.44 mycroft * NPX code so that if it finds a 486 that can use trap
165 1.44 mycroft * 16 it will not report I/O addresses.
166 1.44 mycroft * Rod Grimes 04/26/94
167 1.44 mycroft *
168 1.44 mycroft * XXX -- cgd
169 1.44 mycroft */
170 1.44 mycroft if (isdp->id_alive) {
171 1.44 mycroft printf("%s%d", dp->name, isdp->id_unit);
172 1.44 mycroft if (isdp->id_iobase) {
173 1.44 mycroft printf(" at 0x%x", isdp->id_iobase);
174 1.44 mycroft if ((isdp->id_iobase + isdp->id_alive - 1) !=
175 1.44 mycroft isdp->id_iobase)
176 1.44 mycroft printf("-0x%x", isdp->id_iobase +
177 1.44 mycroft isdp->id_alive - 1);
178 1.44 mycroft }
179 1.44 mycroft if (isdp->id_irq != 0)
180 1.44 mycroft printf(" irq %d", ffs(isdp->id_irq)-1);
181 1.44 mycroft if (isdp->id_drq != -1)
182 1.44 mycroft printf(" drq %d", isdp->id_drq);
183 1.44 mycroft if (isdp->id_maddr != 0)
184 1.44 mycroft printf(" maddr 0x%x", kvtop(isdp->id_maddr));
185 1.44 mycroft if (isdp->id_msize != 0)
186 1.44 mycroft printf("-0x%x", kvtop(isdp->id_maddr) +
187 1.44 mycroft isdp->id_msize - 1);
188 1.44 mycroft if (isdp->id_flags != 0)
189 1.44 mycroft printf(" flags 0x%x", isdp->id_flags);
190 1.44 mycroft printf(" on isa\n");
191 1.44 mycroft
192 1.44 mycroft config_attach(dp, isdp);
193 1.44 mycroft
194 1.44 mycroft if (isdp->id_irq) {
195 1.44 mycroft int intrno;
196 1.44 mycroft
197 1.44 mycroft intrno = ffs(isdp->id_irq)-1;
198 1.44 mycroft setidt(ICU_OFFSET+intrno, isdp->id_intr,
199 1.44 mycroft SDT_SYS386IGT, SEL_KPL);
200 1.44 mycroft if(mp)
201 1.44 mycroft INTRMASK(*mp,isdp->id_irq);
202 1.44 mycroft INTREN(isdp->id_irq);
203 1.1 cgd }
204 1.44 mycroft }
205 1.1 cgd }
206 1.6 deraadt
207 1.6 deraadt void
208 1.6 deraadt config_attach(struct isa_driver *dp, struct isa_device *isdp)
209 1.6 deraadt {
210 1.6 deraadt extern struct isa_device isa_subdev[];
211 1.6 deraadt struct isa_device *dvp;
212 1.6 deraadt
213 1.44 mycroft (void)(*dp->attach)(isdp);
214 1.44 mycroft
215 1.44 mycroft /* XXXX This is for SCSI controllers, and it sucks. */
216 1.44 mycroft for (dvp = isa_subdev; dvp->id_driver; dvp++) {
217 1.44 mycroft if (dvp->id_driver != dp)
218 1.44 mycroft continue;
219 1.44 mycroft if (dvp->id_masunit != isdp->id_unit)
220 1.44 mycroft continue;
221 1.44 mycroft if (dvp->id_physid == -1)
222 1.44 mycroft continue;
223 1.44 mycroft dvp->id_alive = (*dp->attach)(dvp);
224 1.6 deraadt }
225 1.44 mycroft for (dvp = isa_subdev; dvp->id_driver; dvp++) {
226 1.44 mycroft if (dvp->id_driver != dp)
227 1.44 mycroft continue;
228 1.44 mycroft if (dvp->id_masunit != isdp->id_unit)
229 1.44 mycroft continue;
230 1.44 mycroft if (dvp->id_physid != -1)
231 1.44 mycroft continue;
232 1.44 mycroft dvp->id_alive = (*dp->attach)(dvp);
233 1.6 deraadt }
234 1.6 deraadt }
235 1.6 deraadt
236 1.1 cgd
237 1.1 cgd #define IDTVEC(name) __CONCAT(X,name)
238 1.1 cgd /* default interrupt vector table entries */
239 1.1 cgd extern IDTVEC(intr0), IDTVEC(intr1), IDTVEC(intr2), IDTVEC(intr3),
240 1.1 cgd IDTVEC(intr4), IDTVEC(intr5), IDTVEC(intr6), IDTVEC(intr7),
241 1.1 cgd IDTVEC(intr8), IDTVEC(intr9), IDTVEC(intr10), IDTVEC(intr11),
242 1.1 cgd IDTVEC(intr12), IDTVEC(intr13), IDTVEC(intr14), IDTVEC(intr15);
243 1.1 cgd
244 1.1 cgd static *defvec[16] = {
245 1.1 cgd &IDTVEC(intr0), &IDTVEC(intr1), &IDTVEC(intr2), &IDTVEC(intr3),
246 1.1 cgd &IDTVEC(intr4), &IDTVEC(intr5), &IDTVEC(intr6), &IDTVEC(intr7),
247 1.1 cgd &IDTVEC(intr8), &IDTVEC(intr9), &IDTVEC(intr10), &IDTVEC(intr11),
248 1.1 cgd &IDTVEC(intr12), &IDTVEC(intr13), &IDTVEC(intr14), &IDTVEC(intr15) };
249 1.1 cgd
250 1.1 cgd /* out of range default interrupt vector gate entry */
251 1.1 cgd extern IDTVEC(intrdefault);
252 1.15 cgd
253 1.1 cgd /*
254 1.1 cgd * Fill in default interrupt table (in case of spuruious interrupt
255 1.1 cgd * during configuration of kernel, setup interrupt control unit
256 1.1 cgd */
257 1.21 andrew void
258 1.1 cgd isa_defaultirq() {
259 1.1 cgd int i;
260 1.1 cgd
261 1.1 cgd /* icu vectors */
262 1.1 cgd for (i = NRSVIDT ; i < NRSVIDT+ICU_LEN ; i++)
263 1.1 cgd setidt(i, defvec[i], SDT_SYS386IGT, SEL_KPL);
264 1.15 cgd
265 1.1 cgd /* out of range vectors */
266 1.1 cgd for (i = NRSVIDT; i < NIDT; i++)
267 1.1 cgd setidt(i, &IDTVEC(intrdefault), SDT_SYS386IGT, SEL_KPL);
268 1.1 cgd
269 1.1 cgd /* initialize 8259's */
270 1.1 cgd outb(IO_ICU1, 0x11); /* reset; program device, four bytes */
271 1.1 cgd outb(IO_ICU1+1, NRSVIDT); /* starting at this vector index */
272 1.1 cgd outb(IO_ICU1+1, 1<<2); /* slave on line 2 */
273 1.15 cgd #ifdef AUTO_EOI_1
274 1.15 cgd outb(IO_ICU1+1, 2 | 1); /* auto EOI, 8086 mode */
275 1.15 cgd #else
276 1.1 cgd outb(IO_ICU1+1, 1); /* 8086 mode */
277 1.15 cgd #endif
278 1.1 cgd outb(IO_ICU1+1, 0xff); /* leave interrupts masked */
279 1.15 cgd outb(IO_ICU1, 0x0a); /* default to IRR on read */
280 1.21 andrew #ifdef REORDER_IRQ
281 1.15 cgd outb(IO_ICU1, 0xc0 | (3 - 1)); /* pri order 3-7, 0-2 (com2 first) */
282 1.21 andrew #endif
283 1.1 cgd
284 1.1 cgd outb(IO_ICU2, 0x11); /* reset; program device, four bytes */
285 1.1 cgd outb(IO_ICU2+1, NRSVIDT+8); /* staring at this vector index */
286 1.1 cgd outb(IO_ICU2+1,2); /* my slave id is 2 */
287 1.15 cgd #ifdef AUTO_EOI_2
288 1.15 cgd outb(IO_ICU2+1, 2 | 1); /* auto EOI, 8086 mode */
289 1.15 cgd #else
290 1.1 cgd outb(IO_ICU2+1,1); /* 8086 mode */
291 1.15 cgd #endif
292 1.1 cgd outb(IO_ICU2+1, 0xff); /* leave interrupts masked */
293 1.15 cgd outb(IO_ICU2, 0x0a); /* default to IRR on read */
294 1.1 cgd }
295 1.1 cgd
296 1.1 cgd /* region of physical memory known to be contiguous */
297 1.1 cgd vm_offset_t isaphysmem;
298 1.1 cgd static caddr_t dma_bounce[8]; /* XXX */
299 1.1 cgd static char bounced[8]; /* XXX */
300 1.1 cgd #define MAXDMASZ 512 /* XXX */
301 1.1 cgd
302 1.1 cgd /* high byte of address is stored in this port for i-th dma channel */
303 1.1 cgd static short dmapageport[8] =
304 1.1 cgd { 0x87, 0x83, 0x81, 0x82, 0x8f, 0x8b, 0x89, 0x8a };
305 1.1 cgd
306 1.1 cgd /*
307 1.1 cgd * isa_dmacascade(): program 8237 DMA controller channel to accept
308 1.1 cgd * external dma control by a board.
309 1.1 cgd */
310 1.21 andrew void
311 1.37 mycroft isa_dmacascade(chan)
312 1.37 mycroft int chan;
313 1.2 cgd {
314 1.37 mycroft
315 1.37 mycroft #ifdef DIAGNOSTIC
316 1.37 mycroft if (chan < 0 || chan > 7)
317 1.1 cgd panic("isa_dmacascade: impossible request");
318 1.37 mycroft #endif
319 1.1 cgd
320 1.1 cgd /* set dma channel mode, and set dma channel mode */
321 1.2 cgd if ((chan & 4) == 0) {
322 1.2 cgd outb(DMA1_MODE, DMA37MD_CASCADE | chan);
323 1.2 cgd outb(DMA1_SMSK, chan);
324 1.2 cgd } else {
325 1.2 cgd outb(DMA2_MODE, DMA37MD_CASCADE | (chan & 3));
326 1.2 cgd outb(DMA2_SMSK, chan & 3);
327 1.2 cgd }
328 1.1 cgd }
329 1.1 cgd
330 1.1 cgd /*
331 1.1 cgd * isa_dmastart(): program 8237 DMA controller channel, avoid page alignment
332 1.1 cgd * problems by using a bounce buffer.
333 1.1 cgd */
334 1.21 andrew void
335 1.37 mycroft isa_dmastart(flags, addr, nbytes, chan)
336 1.37 mycroft int flags;
337 1.37 mycroft caddr_t addr;
338 1.37 mycroft vm_size_t nbytes;
339 1.37 mycroft int chan;
340 1.37 mycroft {
341 1.37 mycroft vm_offset_t phys;
342 1.2 cgd int waport;
343 1.1 cgd caddr_t newaddr;
344 1.1 cgd
345 1.37 mycroft #ifdef DIAGNOSTIC
346 1.37 mycroft if (chan < 0 || chan > 7 ||
347 1.37 mycroft ((chan & 4) ? (nbytes >= (1<<17) || nbytes & 1 || (u_int)addr & 1) :
348 1.37 mycroft (nbytes >= (1<<16))))
349 1.1 cgd panic("isa_dmastart: impossible request");
350 1.37 mycroft #endif
351 1.1 cgd
352 1.2 cgd if (isa_dmarangecheck(addr, nbytes, chan)) {
353 1.1 cgd if (dma_bounce[chan] == 0)
354 1.1 cgd dma_bounce[chan] =
355 1.37 mycroft /*(caddr_t)malloc(MAXDMASZ, M_TEMP, M_WAITOK);*/
356 1.37 mycroft (caddr_t) isaphysmem + NBPG*chan;
357 1.1 cgd bounced[chan] = 1;
358 1.1 cgd newaddr = dma_bounce[chan];
359 1.1 cgd *(int *) newaddr = 0; /* XXX */
360 1.1 cgd /* copy bounce buffer on write */
361 1.37 mycroft if ((flags & B_READ) == 0)
362 1.1 cgd bcopy(addr, newaddr, nbytes);
363 1.1 cgd addr = newaddr;
364 1.1 cgd }
365 1.1 cgd
366 1.1 cgd /* translate to physical */
367 1.1 cgd phys = pmap_extract(pmap_kernel(), (vm_offset_t)addr);
368 1.1 cgd
369 1.2 cgd if ((chan & 4) == 0) {
370 1.2 cgd /*
371 1.2 cgd * Program one of DMA channels 0..3. These are
372 1.2 cgd * byte mode channels.
373 1.2 cgd */
374 1.2 cgd /* set dma channel mode, and reset address ff */
375 1.2 cgd if (flags & B_READ)
376 1.37 mycroft outb(DMA1_MODE, chan | DMA37MD_SINGLE | DMA37MD_WRITE);
377 1.2 cgd else
378 1.37 mycroft outb(DMA1_MODE, chan | DMA37MD_SINGLE | DMA37MD_READ);
379 1.2 cgd outb(DMA1_FFC, 0);
380 1.1 cgd
381 1.2 cgd /* send start address */
382 1.2 cgd waport = DMA1_CHN(chan);
383 1.1 cgd outb(waport, phys);
384 1.1 cgd outb(waport, phys>>8);
385 1.2 cgd outb(dmapageport[chan], phys>>16);
386 1.2 cgd
387 1.2 cgd /* send count */
388 1.2 cgd outb(waport + 1, --nbytes);
389 1.2 cgd outb(waport + 1, nbytes>>8);
390 1.2 cgd
391 1.2 cgd /* unmask channel */
392 1.37 mycroft outb(DMA1_SMSK, chan | DMA37SM_CLEAR);
393 1.1 cgd } else {
394 1.2 cgd /*
395 1.2 cgd * Program one of DMA channels 4..7. These are
396 1.2 cgd * word mode channels.
397 1.2 cgd */
398 1.2 cgd /* set dma channel mode, and reset address ff */
399 1.2 cgd if (flags & B_READ)
400 1.37 mycroft outb(DMA2_MODE, (chan & 3) | DMA37MD_SINGLE | DMA37MD_WRITE);
401 1.2 cgd else
402 1.37 mycroft outb(DMA2_MODE, (chan & 3) | DMA37MD_SINGLE | DMA37MD_READ);
403 1.2 cgd outb(DMA2_FFC, 0);
404 1.2 cgd
405 1.2 cgd /* send start address */
406 1.37 mycroft waport = DMA2_CHN(chan & 3);
407 1.1 cgd outb(waport, phys>>1);
408 1.1 cgd outb(waport, phys>>9);
409 1.2 cgd outb(dmapageport[chan], phys>>16);
410 1.1 cgd
411 1.2 cgd /* send count */
412 1.2 cgd nbytes >>= 1;
413 1.1 cgd outb(waport + 2, --nbytes);
414 1.1 cgd outb(waport + 2, nbytes>>8);
415 1.2 cgd
416 1.2 cgd /* unmask channel */
417 1.37 mycroft outb(DMA2_SMSK, (chan & 3) | DMA37SM_CLEAR);
418 1.1 cgd }
419 1.43 mycroft }
420 1.43 mycroft
421 1.43 mycroft void
422 1.43 mycroft isa_dmaabort(chan)
423 1.43 mycroft int chan;
424 1.43 mycroft {
425 1.43 mycroft
426 1.43 mycroft #ifdef DIAGNOSTIC
427 1.43 mycroft if (chan < 0 || chan > 7)
428 1.43 mycroft panic("isa_dmadone: impossible request");
429 1.43 mycroft #endif
430 1.43 mycroft
431 1.43 mycroft bounced[chan] = 0;
432 1.43 mycroft
433 1.43 mycroft /* mask channel */
434 1.43 mycroft if ((chan & 4) == 0)
435 1.43 mycroft outb(DMA1_SMSK, DMA37SM_SET | chan);
436 1.43 mycroft else
437 1.43 mycroft outb(DMA2_SMSK, DMA37SM_SET | (chan & 3));
438 1.1 cgd }
439 1.1 cgd
440 1.21 andrew void
441 1.37 mycroft isa_dmadone(flags, addr, nbytes, chan)
442 1.37 mycroft int flags;
443 1.37 mycroft caddr_t addr;
444 1.37 mycroft vm_size_t nbytes;
445 1.37 mycroft int chan;
446 1.1 cgd {
447 1.37 mycroft u_char tc;
448 1.37 mycroft
449 1.37 mycroft #ifdef DIAGNOSTIC
450 1.37 mycroft if (chan < 0 || chan > 7)
451 1.37 mycroft panic("isa_dmadone: impossible request");
452 1.37 mycroft #endif
453 1.37 mycroft
454 1.37 mycroft /* check that the terminal count was reached */
455 1.37 mycroft if ((chan & 4) == 0)
456 1.37 mycroft tc = inb(DMA1_SR) & (1 << chan);
457 1.37 mycroft else
458 1.37 mycroft tc = inb(DMA2_SR) & (1 << (chan & 3));
459 1.37 mycroft if (tc == 0)
460 1.37 mycroft /* XXX probably should panic or something */
461 1.37 mycroft log(LOG_ERR, "dma channel %d not finished\n", chan);
462 1.1 cgd
463 1.1 cgd /* copy bounce buffer on read */
464 1.1 cgd if (bounced[chan]) {
465 1.1 cgd bcopy(dma_bounce[chan], addr, nbytes);
466 1.1 cgd bounced[chan] = 0;
467 1.1 cgd }
468 1.37 mycroft
469 1.37 mycroft /* mask channel */
470 1.37 mycroft if ((chan & 4) == 0)
471 1.37 mycroft outb(DMA1_SMSK, DMA37SM_SET | chan);
472 1.37 mycroft else
473 1.37 mycroft outb(DMA2_SMSK, DMA37SM_SET | (chan & 3));
474 1.1 cgd }
475 1.1 cgd
476 1.1 cgd /*
477 1.1 cgd * Check for problems with the address range of a DMA transfer
478 1.2 cgd * (non-contiguous physical pages, outside of bus address space,
479 1.2 cgd * crossing DMA page boundaries).
480 1.1 cgd * Return true if special handling needed.
481 1.1 cgd */
482 1.21 andrew int
483 1.37 mycroft isa_dmarangecheck(va, length, chan)
484 1.37 mycroft vm_offset_t va;
485 1.37 mycroft u_long length;
486 1.37 mycroft int chan;
487 1.37 mycroft {
488 1.2 cgd vm_offset_t phys, priorpage = 0, endva;
489 1.2 cgd u_int dma_pgmsk = (chan & 4) ? ~(128*1024-1) : ~(64*1024-1);
490 1.1 cgd
491 1.37 mycroft endva = round_page(va + length);
492 1.37 mycroft for (; va < endva ; va += NBPG) {
493 1.37 mycroft phys = trunc_page(pmap_extract(pmap_kernel(), va));
494 1.1 cgd if (phys == 0)
495 1.1 cgd panic("isa_dmacheck: no physical page present");
496 1.37 mycroft if (phys >= (1<<24))
497 1.37 mycroft return 1;
498 1.2 cgd if (priorpage) {
499 1.2 cgd if (priorpage + NBPG != phys)
500 1.37 mycroft return 1;
501 1.2 cgd /* check if crossing a DMA page boundary */
502 1.37 mycroft if ((priorpage ^ phys) & dma_pgmsk)
503 1.37 mycroft return 1;
504 1.2 cgd }
505 1.1 cgd priorpage = phys;
506 1.1 cgd }
507 1.37 mycroft return 0;
508 1.1 cgd }
509 1.1 cgd
510 1.1 cgd /* head of queue waiting for physmem to become available */
511 1.1 cgd struct buf isa_physmemq;
512 1.1 cgd
513 1.1 cgd /* blocked waiting for resource to become free for exclusive use */
514 1.1 cgd static isaphysmemflag;
515 1.1 cgd /* if waited for and call requested when free (B_CALL) */
516 1.1 cgd static void (*isaphysmemunblock)(); /* needs to be a list */
517 1.1 cgd
518 1.1 cgd /*
519 1.1 cgd * Allocate contiguous physical memory for transfer, returning
520 1.1 cgd * a *virtual* address to region. May block waiting for resource.
521 1.1 cgd * (assumed to be called at splbio())
522 1.1 cgd */
523 1.1 cgd caddr_t
524 1.1 cgd isa_allocphysmem(caddr_t va, unsigned length, void (*func)()) {
525 1.1 cgd
526 1.1 cgd isaphysmemunblock = func;
527 1.1 cgd while (isaphysmemflag & B_BUSY) {
528 1.1 cgd isaphysmemflag |= B_WANTED;
529 1.24 deraadt sleep((caddr_t)&isaphysmemflag, PRIBIO);
530 1.1 cgd }
531 1.1 cgd isaphysmemflag |= B_BUSY;
532 1.1 cgd
533 1.1 cgd return((caddr_t)isaphysmem);
534 1.1 cgd }
535 1.1 cgd
536 1.1 cgd /*
537 1.1 cgd * Free contiguous physical memory used for transfer.
538 1.1 cgd * (assumed to be called at splbio())
539 1.1 cgd */
540 1.1 cgd void
541 1.1 cgd isa_freephysmem(caddr_t va, unsigned length) {
542 1.1 cgd
543 1.1 cgd isaphysmemflag &= ~B_BUSY;
544 1.1 cgd if (isaphysmemflag & B_WANTED) {
545 1.1 cgd isaphysmemflag &= B_WANTED;
546 1.24 deraadt wakeup((caddr_t)&isaphysmemflag);
547 1.1 cgd if (isaphysmemunblock)
548 1.1 cgd (*isaphysmemunblock)();
549 1.1 cgd }
550 1.1 cgd }
551 1.1 cgd
552 1.1 cgd /*
553 1.1 cgd * Handle a NMI, possibly a machine check.
554 1.1 cgd * return true to panic system, false to ignore.
555 1.1 cgd */
556 1.21 andrew int
557 1.1 cgd isa_nmi(cd) {
558 1.1 cgd
559 1.1 cgd log(LOG_CRIT, "\nNMI port 61 %x, port 70 %x\n", inb(0x61), inb(0x70));
560 1.1 cgd return(0);
561 1.1 cgd }
562 1.1 cgd
563 1.1 cgd /*
564 1.1 cgd * Caught a stray interrupt, notify
565 1.1 cgd */
566 1.21 andrew void
567 1.1 cgd isa_strayintr(d) {
568 1.1 cgd
569 1.1 cgd /* DON'T BOTHER FOR NOW! */
570 1.1 cgd /* for some reason, we get bursts of intr #7, even if not enabled! */
571 1.4 cgd /*
572 1.4 cgd * Well the reason you got bursts of intr #7 is because someone
573 1.4 cgd * raised an interrupt line and dropped it before the 8259 could
574 1.4 cgd * prioritize it. This is documented in the intel data book. This
575 1.4 cgd * means you have BAD hardware! I have changed this so that only
576 1.15 cgd * the first 5 get logged, then it quits logging them, and puts
577 1.4 cgd * out a special message. rgrimes 3/25/1993
578 1.4 cgd */
579 1.15 cgd extern u_long intrcnt_stray;
580 1.4 cgd
581 1.15 cgd intrcnt_stray++;
582 1.15 cgd if (intrcnt_stray <= 5)
583 1.4 cgd log(LOG_ERR,"ISA strayintr %x\n", d);
584 1.15 cgd if (intrcnt_stray == 5)
585 1.4 cgd log(LOG_CRIT,"Too many ISA strayintr not logging any more\n");
586 1.1 cgd }
587 1.1 cgd
588 1.1 cgd /*
589 1.15 cgd * Wait "n" microseconds.
590 1.40 mycroft * Relies on timer 1 counting down from (TIMER_FREQ / hz) at TIMER_FREQ Hz.
591 1.15 cgd * Note: timer had better have been programmed before this is first used!
592 1.17 mycroft * (Note that we use `rate generator' mode, which counts at 1:1; `square
593 1.17 mycroft * wave' mode counts at 2:1).
594 1.15 cgd */
595 1.21 andrew void
596 1.39 mycroft delay(n)
597 1.15 cgd int n;
598 1.15 cgd {
599 1.40 mycroft int limit, tick, otick;
600 1.15 cgd
601 1.15 cgd /*
602 1.15 cgd * Read the counter first, so that the rest of the setup overhead is
603 1.40 mycroft * counted.
604 1.15 cgd */
605 1.40 mycroft otick = gettick();
606 1.15 cgd
607 1.40 mycroft #ifdef __GNUC__
608 1.15 cgd /*
609 1.40 mycroft * Calculate ((n * TIMER_FREQ) / 1e6) using explicit assembler code so
610 1.40 mycroft * we can take advantage of the intermediate 64-bit quantity to prevent
611 1.40 mycroft * loss of significance.
612 1.15 cgd */
613 1.40 mycroft n -= 5;
614 1.40 mycroft if (n < 0)
615 1.40 mycroft return;
616 1.40 mycroft {register int m;
617 1.40 mycroft __asm __volatile("mul %3"
618 1.40 mycroft : "=a" (n), "=d" (m)
619 1.40 mycroft : "0" (n), "r" (TIMER_FREQ));
620 1.40 mycroft __asm __volatile("div %3"
621 1.40 mycroft : "=a" (n)
622 1.40 mycroft : "0" (n), "d" (m), "r" (1000000)
623 1.40 mycroft : "%edx");}
624 1.40 mycroft #else
625 1.40 mycroft /*
626 1.40 mycroft * Calculate ((n * TIMER_FREQ) / 1e6) without using floating point and
627 1.40 mycroft * without any avoidable overflows.
628 1.40 mycroft */
629 1.40 mycroft n -= 20;
630 1.40 mycroft {
631 1.40 mycroft int sec = n / 1000000,
632 1.40 mycroft usec = n % 1000000;
633 1.40 mycroft n = sec * TIMER_FREQ +
634 1.40 mycroft usec * (TIMER_FREQ / 1000000) +
635 1.40 mycroft usec * ((TIMER_FREQ % 1000000) / 1000) / 1000 +
636 1.40 mycroft usec * (TIMER_FREQ % 1000) / 1000000;
637 1.40 mycroft }
638 1.40 mycroft #endif
639 1.40 mycroft
640 1.40 mycroft limit = TIMER_FREQ / hz;
641 1.15 cgd
642 1.40 mycroft while (n > 0) {
643 1.16 mycroft tick = gettick();
644 1.40 mycroft if (tick > otick)
645 1.40 mycroft n -= limit - (tick - otick);
646 1.15 cgd else
647 1.40 mycroft n -= otick - tick;
648 1.40 mycroft otick = tick;
649 1.1 cgd }
650 1.1 cgd }
651 1.1 cgd
652 1.21 andrew int
653 1.40 mycroft gettick()
654 1.40 mycroft {
655 1.40 mycroft u_char lo, hi;
656 1.15 cgd
657 1.40 mycroft /* Don't want someone screwing with the counter while we're here. */
658 1.15 cgd disable_intr();
659 1.40 mycroft /* Select counter 0 and latch it. */
660 1.16 mycroft outb(TIMER_MODE, TIMER_SEL0 | TIMER_LATCH);
661 1.40 mycroft lo = inb(TIMER_CNTR0);
662 1.40 mycroft hi = inb(TIMER_CNTR0);
663 1.15 cgd enable_intr();
664 1.40 mycroft return ((hi << 8) | lo);
665 1.1 cgd }
666 1.1 cgd
667 1.1 cgd static beeping;
668 1.21 andrew static void
669 1.21 andrew sysbeepstop(int f)
670 1.1 cgd {
671 1.16 mycroft int s = splhigh();
672 1.16 mycroft
673 1.1 cgd /* disable counter 2 */
674 1.16 mycroft disable_intr();
675 1.28 brezak outb(PITAUX_PORT, inb(PITAUX_PORT) & ~PIT_SPKR);
676 1.16 mycroft enable_intr();
677 1.1 cgd if (f)
678 1.24 deraadt timeout((timeout_t)sysbeepstop, (caddr_t)0, f);
679 1.1 cgd else
680 1.1 cgd beeping = 0;
681 1.16 mycroft
682 1.16 mycroft splx(s);
683 1.1 cgd }
684 1.1 cgd
685 1.21 andrew void
686 1.21 andrew sysbeep(int pitch, int period)
687 1.1 cgd {
688 1.16 mycroft int s = splhigh();
689 1.16 mycroft static int last_pitch, last_period;
690 1.1 cgd
691 1.16 mycroft if (beeping) {
692 1.24 deraadt untimeout((timeout_t)sysbeepstop, (caddr_t)(last_period/2));
693 1.24 deraadt untimeout((timeout_t)sysbeepstop, (caddr_t)0);
694 1.1 cgd }
695 1.16 mycroft if (!beeping || last_pitch != pitch) {
696 1.16 mycroft /*
697 1.16 mycroft * XXX - move timer stuff to clock.c.
698 1.16 mycroft */
699 1.16 mycroft disable_intr();
700 1.16 mycroft outb(TIMER_MODE, TIMER_SEL2|TIMER_16BIT|TIMER_SQWAVE);
701 1.19 mycroft outb(TIMER_CNTR2, TIMER_DIV(pitch)%256);
702 1.19 mycroft outb(TIMER_CNTR2, TIMER_DIV(pitch)/256);
703 1.28 brezak outb(PITAUX_PORT, inb(PITAUX_PORT) | PIT_SPKR); /* enable counter 2 */
704 1.16 mycroft enable_intr();
705 1.16 mycroft }
706 1.16 mycroft last_pitch = pitch;
707 1.16 mycroft beeping = last_period = period;
708 1.24 deraadt timeout((timeout_t)sysbeepstop, (caddr_t)(period/2), period);
709 1.16 mycroft
710 1.16 mycroft splx(s);
711 1.28 brezak }
712 1.28 brezak
713 1.28 brezak /*
714 1.28 brezak * find an ISA device in a given isa_devtab_* table, given
715 1.28 brezak * the table to search, the expected id_driver entry, and the unit number.
716 1.28 brezak *
717 1.28 brezak * this function is defined in isa_device.h, and this location is debatable;
718 1.28 brezak * i put it there because it's useless w/o, and directly operates on
719 1.28 brezak * the other stuff in that file.
720 1.28 brezak *
721 1.28 brezak */
722 1.28 brezak
723 1.28 brezak struct isa_device *find_isadev(table, driverp, unit)
724 1.28 brezak struct isa_device *table;
725 1.28 brezak struct isa_driver *driverp;
726 1.28 brezak int unit;
727 1.28 brezak {
728 1.28 brezak if (driverp == NULL) /* sanity check */
729 1.28 brezak return NULL;
730 1.28 brezak
731 1.28 brezak while ((table->id_driver != driverp) || (table->id_unit != unit)) {
732 1.28 brezak if (table->id_driver == 0)
733 1.28 brezak return NULL;
734 1.28 brezak
735 1.28 brezak table++;
736 1.40 mycroft }
737 1.28 brezak
738 1.28 brezak return table;
739 1.15 cgd }
740 1.15 cgd
741 1.15 cgd /*
742 1.15 cgd * Return nonzero if a (masked) irq is pending for a given device.
743 1.15 cgd */
744 1.15 cgd int
745 1.15 cgd isa_irq_pending(dvp)
746 1.15 cgd struct isa_device *dvp;
747 1.15 cgd {
748 1.15 cgd unsigned id_irq;
749 1.15 cgd
750 1.15 cgd id_irq = (unsigned short) dvp->id_irq; /* XXX silly type in struct */
751 1.15 cgd if (id_irq & 0xff)
752 1.15 cgd return (inb(IO_ICU1) & id_irq);
753 1.15 cgd return (inb(IO_ICU2) & (id_irq >> 8));
754 1.1 cgd }
755