isa.c revision 22975
1/*-
2 * Copyright (c) 1991 The Regents of the University of California.
3 * All rights reserved.
4 *
5 * This code is derived from software contributed to Berkeley by
6 * William Jolitz.
7 *
8 * Redistribution and use in source and binary forms, with or without
9 * modification, are permitted provided that the following conditions
10 * are met:
11 * 1. Redistributions of source code must retain the above copyright
12 *    notice, this list of conditions and the following disclaimer.
13 * 2. Redistributions in binary form must reproduce the above copyright
14 *    notice, this list of conditions and the following disclaimer in the
15 *    documentation and/or other materials provided with the distribution.
16 * 3. All advertising materials mentioning features or use of this software
17 *    must display the following acknowledgement:
18 *	This product includes software developed by the University of
19 *	California, Berkeley and its contributors.
20 * 4. Neither the name of the University nor the names of its contributors
21 *    may be used to endorse or promote products derived from this software
22 *    without specific prior written permission.
23 *
24 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
25 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
26 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
27 * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
28 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
29 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
30 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
31 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
32 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
33 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
34 * SUCH DAMAGE.
35 *
36 *	from: @(#)isa.c	7.2 (Berkeley) 5/13/91
37 *	$Id$
38 */
39
40/*
41 * code to manage AT bus
42 *
43 * 92/08/18  Frank P. MacLachlan (fpm@crash.cts.com):
44 * Fixed uninitialized variable problem and added code to deal
45 * with DMA page boundaries in isa_dmarangecheck().  Fixed word
46 * mode DMA count compution and reorganized DMA setup code in
47 * isa_dmastart()
48 */
49
50#include "opt_auto_eoi.h"
51
52#include <sys/param.h>
53#include <sys/systm.h>
54#include <sys/buf.h>
55#include <sys/syslog.h>
56#include <sys/malloc.h>
57#include <machine/md_var.h>
58#include <machine/segments.h>
59#include <vm/vm.h>
60#include <vm/vm_param.h>
61#include <vm/pmap.h>
62#include <i386/isa/isa_device.h>
63#include <i386/isa/isa.h>
64#include <i386/isa/icu.h>
65#include <i386/isa/ic/i8237.h>
66#include "vector.h"
67
68/*
69**  Register definitions for DMA controller 1 (channels 0..3):
70*/
71#define	DMA1_CHN(c)	(IO_DMA1 + 1*(2*(c)))	/* addr reg for channel c */
72#define	DMA1_SMSK	(IO_DMA1 + 1*10)	/* single mask register */
73#define	DMA1_MODE	(IO_DMA1 + 1*11)	/* mode register */
74#define	DMA1_FFC	(IO_DMA1 + 1*12)	/* clear first/last FF */
75
76/*
77**  Register definitions for DMA controller 2 (channels 4..7):
78*/
79#define	DMA2_CHN(c)	(IO_DMA2 + 2*(2*(c)))	/* addr reg for channel c */
80#define	DMA2_SMSK	(IO_DMA2 + 2*10)	/* single mask register */
81#define	DMA2_MODE	(IO_DMA2 + 2*11)	/* mode register */
82#define	DMA2_FFC	(IO_DMA2 + 2*12)	/* clear first/last FF */
83
84u_long	*intr_countp[ICU_LEN];
85inthand2_t *intr_handler[ICU_LEN];
86u_int	intr_mask[ICU_LEN];
87u_int*	intr_mptr[ICU_LEN];
88int	intr_unit[ICU_LEN];
89
90static inthand_t *fastintr[ICU_LEN] = {
91	&IDTVEC(fastintr0), &IDTVEC(fastintr1),
92	&IDTVEC(fastintr2), &IDTVEC(fastintr3),
93	&IDTVEC(fastintr4), &IDTVEC(fastintr5),
94	&IDTVEC(fastintr6), &IDTVEC(fastintr7),
95	&IDTVEC(fastintr8), &IDTVEC(fastintr9),
96	&IDTVEC(fastintr10), &IDTVEC(fastintr11),
97	&IDTVEC(fastintr12), &IDTVEC(fastintr13),
98	&IDTVEC(fastintr14), &IDTVEC(fastintr15)
99};
100
101static inthand_t *slowintr[ICU_LEN] = {
102	&IDTVEC(intr0), &IDTVEC(intr1), &IDTVEC(intr2), &IDTVEC(intr3),
103	&IDTVEC(intr4), &IDTVEC(intr5), &IDTVEC(intr6), &IDTVEC(intr7),
104	&IDTVEC(intr8), &IDTVEC(intr9), &IDTVEC(intr10), &IDTVEC(intr11),
105	&IDTVEC(intr12), &IDTVEC(intr13), &IDTVEC(intr14), &IDTVEC(intr15)
106};
107
108static void config_isadev __P((struct isa_device *isdp, u_int *mp));
109static void config_isadev_c __P((struct isa_device *isdp, u_int *mp,
110				 int reconfig));
111static void conflict __P((struct isa_device *dvp, struct isa_device *tmpdvp,
112			  int item, char const *whatnot, char const *reason,
113			  char const *format));
114static int haveseen __P((struct isa_device *dvp, struct isa_device *tmpdvp,
115			 u_int checkbits));
116static int isa_dmarangecheck __P((caddr_t va, u_int length, int chan));
117static inthand2_t isa_strayintr;
118static void register_imask __P((struct isa_device *dvp, u_int mask));
119
120/*
121 * print a conflict message
122 */
123static void
124conflict(dvp, tmpdvp, item, whatnot, reason, format)
125	struct isa_device	*dvp;
126	struct isa_device	*tmpdvp;
127	int			item;
128	char const		*whatnot;
129	char const		*reason;
130	char const		*format;
131{
132	printf("%s%d not %sed due to %s conflict with %s%d at ",
133		dvp->id_driver->name, dvp->id_unit, whatnot, reason,
134		tmpdvp->id_driver->name, tmpdvp->id_unit);
135	printf(format, item);
136	printf("\n");
137}
138
139/*
140 * Check to see if things are already in use, like IRQ's, I/O addresses
141 * and Memory addresses.
142 */
143static int
144haveseen(dvp, tmpdvp, checkbits)
145	struct isa_device *dvp;
146	struct isa_device *tmpdvp;
147	u_int	checkbits;
148{
149	/*
150	 * Only check against devices that have already been found and are not
151	 * unilaterally allowed to conflict anyway.
152	 */
153	if (tmpdvp->id_alive && !dvp->id_conflicts) {
154		char const *whatnot;
155
156		whatnot = checkbits & CC_ATTACH ? "attach" : "prob";
157		/*
158		 * Check for I/O address conflict.  We can only check the
159		 * starting address of the device against the range of the
160		 * device that has already been probed since we do not
161		 * know how many I/O addresses this device uses.
162		 */
163		if (checkbits & CC_IOADDR && tmpdvp->id_alive != -1) {
164			if ((dvp->id_iobase >= tmpdvp->id_iobase) &&
165			    (dvp->id_iobase <=
166				  (tmpdvp->id_iobase + tmpdvp->id_alive - 1))) {
167				conflict(dvp, tmpdvp, dvp->id_iobase, whatnot,
168					 "I/O address", "0x%x");
169				return 1;
170			}
171		}
172		/*
173		 * Check for Memory address conflict.  We can check for
174		 * range overlap, but it will not catch all cases since the
175		 * driver may adjust the msize paramater during probe, for
176		 * now we just check that the starting address does not
177		 * fall within any allocated region.
178		 * XXX could add a second check after the probe for overlap,
179		 * since at that time we would know the full range.
180		 * XXX KERNBASE is a hack, we should have vaddr in the table!
181		 */
182		if (checkbits & CC_MEMADDR && tmpdvp->id_maddr) {
183			if ((KERNBASE + dvp->id_maddr >= tmpdvp->id_maddr) &&
184			    (KERNBASE + dvp->id_maddr <=
185			     (tmpdvp->id_maddr + tmpdvp->id_msize - 1))) {
186				conflict(dvp, tmpdvp, (int)dvp->id_maddr,
187					 whatnot, "maddr", "0x%x");
188				return 1;
189			}
190		}
191		/*
192		 * Check for IRQ conflicts.
193		 */
194		if (checkbits & CC_IRQ && tmpdvp->id_irq) {
195			if (tmpdvp->id_irq == dvp->id_irq) {
196				conflict(dvp, tmpdvp, ffs(dvp->id_irq) - 1,
197					 whatnot, "irq", "%d");
198				return 1;
199			}
200		}
201		/*
202		 * Check for DRQ conflicts.
203		 */
204		if (checkbits & CC_DRQ && tmpdvp->id_drq != -1) {
205			if (tmpdvp->id_drq == dvp->id_drq) {
206				conflict(dvp, tmpdvp, dvp->id_drq, whatnot,
207					 "drq", "%d");
208				return 1;
209			}
210		}
211	}
212	return 0;
213}
214
215/*
216 * Search through all the isa_devtab_* tables looking for anything that
217 * conflicts with the current device.
218 */
219int
220haveseen_isadev(dvp, checkbits)
221	struct isa_device *dvp;
222	u_int	checkbits;
223{
224	struct isa_device *tmpdvp;
225	int	status = 0;
226
227	for (tmpdvp = isa_devtab_tty; tmpdvp->id_driver; tmpdvp++) {
228		status |= haveseen(dvp, tmpdvp, checkbits);
229		if (status)
230			return status;
231	}
232	for (tmpdvp = isa_devtab_bio; tmpdvp->id_driver; tmpdvp++) {
233		status |= haveseen(dvp, tmpdvp, checkbits);
234		if (status)
235			return status;
236	}
237	for (tmpdvp = isa_devtab_net; tmpdvp->id_driver; tmpdvp++) {
238		status |= haveseen(dvp, tmpdvp, checkbits);
239		if (status)
240			return status;
241	}
242	for (tmpdvp = isa_devtab_null; tmpdvp->id_driver; tmpdvp++) {
243		status |= haveseen(dvp, tmpdvp, checkbits);
244		if (status)
245			return status;
246	}
247	return(status);
248}
249
250/*
251 * Configure all ISA devices
252 */
253void
254isa_configure() {
255	struct isa_device *dvp;
256
257	splhigh();
258	printf("Probing for devices on the ISA bus:\n");
259	/* First probe all the sensitive probes */
260	for (dvp = isa_devtab_tty; dvp->id_driver; dvp++)
261		if (dvp->id_driver->sensitive_hw)
262			config_isadev(dvp, &tty_imask);
263	for (dvp = isa_devtab_bio; dvp->id_driver; dvp++)
264		if (dvp->id_driver->sensitive_hw)
265			config_isadev(dvp, &bio_imask);
266	for (dvp = isa_devtab_net; dvp->id_driver; dvp++)
267		if (dvp->id_driver->sensitive_hw)
268			config_isadev(dvp, &net_imask);
269	for (dvp = isa_devtab_null; dvp->id_driver; dvp++)
270		if (dvp->id_driver->sensitive_hw)
271			config_isadev(dvp, (u_int *)NULL);
272
273	/* Then all the bad ones */
274	for (dvp = isa_devtab_tty; dvp->id_driver; dvp++)
275		if (!dvp->id_driver->sensitive_hw)
276			config_isadev(dvp, &tty_imask);
277	for (dvp = isa_devtab_bio; dvp->id_driver; dvp++)
278		if (!dvp->id_driver->sensitive_hw)
279			config_isadev(dvp, &bio_imask);
280	for (dvp = isa_devtab_net; dvp->id_driver; dvp++)
281		if (!dvp->id_driver->sensitive_hw)
282			config_isadev(dvp, &net_imask);
283	for (dvp = isa_devtab_null; dvp->id_driver; dvp++)
284		if (!dvp->id_driver->sensitive_hw)
285			config_isadev(dvp, (u_int *)NULL);
286
287	bio_imask |= SWI_CLOCK_MASK;
288	net_imask |= SWI_NET_MASK;
289	tty_imask |= SWI_TTY_MASK;
290
291/*
292 * XXX we should really add the tty device to net_imask when the line is
293 * switched to SLIPDISC, and then remove it when it is switched away from
294 * SLIPDISC.  No need to block out ALL ttys during a splimp when only one
295 * of them is running slip.
296 *
297 * XXX actually, blocking all ttys during a splimp doesn't matter so much
298 * with sio because the serial interrupt layer doesn't use tty_imask.  Only
299 * non-serial ttys suffer.  It's more stupid that ALL 'net's are blocked
300 * during spltty.
301 */
302#include "sl.h"
303#if NSL > 0
304	net_imask |= tty_imask;
305	tty_imask = net_imask;
306#endif
307
308	/* bio_imask |= tty_imask ;  can some tty devices use buffers? */
309
310	if (bootverbose)
311		printf("imasks: bio %x, tty %x, net %x\n",
312		       bio_imask, tty_imask, net_imask);
313
314	/*
315	 * Finish initializing intr_mask[].  Note that the partly
316	 * constructed masks aren't actually used since we're at splhigh.
317	 * For fully dynamic initialization, register_intr() and
318	 * unregister_intr() will have to adjust the masks for _all_
319	 * interrupts and for tty_imask, etc.
320	 */
321	for (dvp = isa_devtab_tty; dvp->id_driver; dvp++)
322		register_imask(dvp, tty_imask);
323	for (dvp = isa_devtab_bio; dvp->id_driver; dvp++)
324		register_imask(dvp, bio_imask);
325	for (dvp = isa_devtab_net; dvp->id_driver; dvp++)
326		register_imask(dvp, net_imask);
327	for (dvp = isa_devtab_null; dvp->id_driver; dvp++)
328		register_imask(dvp, SWI_CLOCK_MASK);
329	spl0();
330}
331
332/*
333 * Configure an ISA device.
334 */
335
336
337static void
338config_isadev(isdp, mp)
339     struct isa_device *isdp;
340     u_int *mp;
341{
342	config_isadev_c(isdp, mp, 0);
343}
344
345void
346reconfig_isadev(isdp, mp)
347	struct isa_device *isdp;
348	u_int *mp;
349{
350	config_isadev_c(isdp, mp, 1);
351}
352
353static void
354config_isadev_c(isdp, mp, reconfig)
355	struct isa_device *isdp;
356	u_int *mp;
357	int reconfig;
358{
359	u_int checkbits;
360	int id_alive;
361	int last_alive;
362	struct isa_driver *dp = isdp->id_driver;
363
364	if (!isdp->id_enabled) {
365		printf("%s%d: disabled, not probed.\n",
366			dp->name, isdp->id_unit);
367		return;
368	}
369	checkbits = CC_DRQ | CC_IOADDR | CC_MEMADDR;
370	if (!reconfig && haveseen_isadev(isdp, checkbits))
371		return;
372	if (!reconfig && isdp->id_maddr) {
373		isdp->id_maddr -= ISA_HOLE_START;
374		isdp->id_maddr += atdevbase;
375	}
376	if (reconfig) {
377		last_alive = isdp->id_alive;
378		isdp->id_reconfig = 1;
379	}
380	else {
381		last_alive = 0;
382		isdp->id_reconfig = 0;
383	}
384	id_alive = (*dp->probe)(isdp);
385	if (id_alive) {
386		/*
387		 * Only print the I/O address range if id_alive != -1
388		 * Right now this is a temporary fix just for the new
389		 * NPX code so that if it finds a 486 that can use trap
390		 * 16 it will not report I/O addresses.
391		 * Rod Grimes 04/26/94
392		 */
393		if (!isdp->id_reconfig) {
394			printf("%s%d", dp->name, isdp->id_unit);
395			if (id_alive != -1) {
396				printf(" at 0x%x", isdp->id_iobase);
397				if (isdp->id_iobase + id_alive - 1 !=
398				    isdp->id_iobase) {
399					printf("-0x%x",
400					       isdp->id_iobase + id_alive - 1);
401				}
402			}
403			if (isdp->id_irq)
404				printf(" irq %d", ffs(isdp->id_irq) - 1);
405			if (isdp->id_drq != -1)
406				printf(" drq %d", isdp->id_drq);
407			if (isdp->id_maddr)
408				printf(" maddr 0x%lx", kvtop(isdp->id_maddr));
409			if (isdp->id_msize)
410				printf(" msize %d", isdp->id_msize);
411			if (isdp->id_flags)
412				printf(" flags 0x%x", isdp->id_flags);
413			if (isdp->id_iobase && !(isdp->id_iobase & 0xf300)) {
414				printf(" on motherboard");
415			} else if (isdp->id_iobase >= 0x1000 &&
416				    !(isdp->id_iobase & 0x300)) {
417				printf (" on eisa slot %d",
418					isdp->id_iobase >> 12);
419			} else {
420				printf (" on isa");
421			}
422			printf("\n");
423			/*
424			 * Check for conflicts again.  The driver may have
425			 * changed *dvp.  We should weaken the early check
426			 * since the driver may have been able to change
427			 * *dvp to avoid conflicts if given a chance.  We
428			 * already skip the early check for IRQs and force
429			 * a check for IRQs in the next group of checks.
430			 */
431			checkbits |= CC_IRQ;
432			if (haveseen_isadev(isdp, checkbits))
433				return;
434			isdp->id_alive = id_alive;
435		}
436		(*dp->attach)(isdp);
437		if (isdp->id_irq) {
438			if (mp)
439				INTRMASK(*mp, isdp->id_irq);
440			register_intr(ffs(isdp->id_irq) - 1, isdp->id_id,
441				      isdp->id_ri_flags, isdp->id_intr,
442				      mp, isdp->id_unit);
443			INTREN(isdp->id_irq);
444		}
445	} else {
446		if (isdp->id_reconfig) {
447			(*dp->attach)(isdp); /* reconfiguration attach */
448		}
449		if (!last_alive) {
450			if (!isdp->id_reconfig) {
451				printf("%s%d not found",
452				       dp->name, isdp->id_unit);
453				if (isdp->id_iobase) {
454					printf(" at 0x%x", isdp->id_iobase);
455				}
456				printf("\n");
457			}
458		}
459		else {
460			/* This code has not been tested.... */
461			if (isdp->id_irq) {
462				INTRDIS(isdp->id_irq);
463				unregister_intr(ffs(isdp->id_irq) - 1,
464						isdp->id_intr);
465				if (mp)
466					INTRUNMASK(*mp, isdp->id_irq);
467			}
468		}
469	}
470}
471
472/*
473 * Fill in default interrupt table (in case of spuruious interrupt
474 * during configuration of kernel, setup interrupt control unit
475 */
476void
477isa_defaultirq()
478{
479	int i;
480
481	/* icu vectors */
482	for (i = 0; i < ICU_LEN; i++)
483		unregister_intr(i, (inthand2_t *)NULL);
484
485	/* initialize 8259's */
486	outb(IO_ICU1, 0x11);		/* reset; program device, four bytes */
487	outb(IO_ICU1+1, NRSVIDT);	/* starting at this vector index */
488	outb(IO_ICU1+1, 1<<2);		/* slave on line 2 */
489#ifdef AUTO_EOI_1
490	outb(IO_ICU1+1, 2 | 1);		/* auto EOI, 8086 mode */
491#else
492	outb(IO_ICU1+1, 1);		/* 8086 mode */
493#endif
494	outb(IO_ICU1+1, 0xff);		/* leave interrupts masked */
495	outb(IO_ICU1, 0x0a);		/* default to IRR on read */
496	outb(IO_ICU1, 0xc0 | (3 - 1));	/* pri order 3-7, 0-2 (com2 first) */
497
498	outb(IO_ICU2, 0x11);		/* reset; program device, four bytes */
499	outb(IO_ICU2+1, NRSVIDT+8);	/* staring at this vector index */
500	outb(IO_ICU2+1,2);		/* my slave id is 2 */
501#ifdef AUTO_EOI_2
502	outb(IO_ICU2+1, 2 | 1);		/* auto EOI, 8086 mode */
503#else
504	outb(IO_ICU2+1,1);		/* 8086 mode */
505#endif
506	outb(IO_ICU2+1, 0xff);		/* leave interrupts masked */
507	outb(IO_ICU2, 0x0a);		/* default to IRR on read */
508}
509
510static caddr_t	dma_bouncebuf[8];
511static u_int	dma_bouncebufsize[8];
512static u_int8_t	dma_bounced = 0;
513static u_int8_t	dma_busy = 0;		/* Used in isa_dmastart() */
514static u_int8_t	dma_inuse = 0;		/* User for acquire/release */
515
516#define VALID_DMA_MASK (7)
517
518/* high byte of address is stored in this port for i-th dma channel */
519static int dmapageport[8] = { 0x87, 0x83, 0x81, 0x82, 0x8f, 0x8b, 0x89, 0x8a };
520
521/*
522 * Setup a DMA channel's bounce buffer.
523 */
524void
525isa_dmainit(chan, bouncebufsize)
526	int chan;
527	u_int bouncebufsize;
528{
529	void *buf;
530
531#ifdef DIAGNOSTIC
532	if (chan & ~VALID_DMA_MASK)
533		panic("isa_dmainit: channel out of range");
534
535	if (dma_bouncebuf[chan] != NULL)
536		panic("isa_dmainit: impossible request");
537#endif
538
539	dma_bouncebufsize[chan] = bouncebufsize;
540
541	/* Try malloc() first.  It works better if it works. */
542	buf = malloc(bouncebufsize, M_DEVBUF, M_NOWAIT);
543	if (buf != NULL) {
544		if (isa_dmarangecheck(buf, bouncebufsize, chan) == 0) {
545			dma_bouncebuf[chan] = buf;
546			return;
547		}
548		free(buf, M_DEVBUF);
549	}
550	buf = contigmalloc(bouncebufsize, M_DEVBUF, M_NOWAIT, 0ul, 0xfffffful,
551			   1ul, chan & 4 ? 0x20000ul : 0x10000ul);
552	if (buf == NULL)
553		printf("isa_dmainit(%d, %d) failed\n", chan, bouncebufsize);
554	else
555		dma_bouncebuf[chan] = buf;
556}
557
558/*
559 * Register a DMA channel's usage.  Usually called from a device driver
560 * in open() or during it's initialization.
561 */
562int
563isa_dma_acquire(chan)
564	int chan;
565{
566#ifdef DIAGNOSTIC
567	if (chan & ~VALID_DMA_MASK)
568		panic("isa_dma_acquire: channel out of range");
569#endif
570
571	if (dma_inuse & (1 << chan)) {
572		printf("isa_dma_acquire: channel %d already in use\n", chan);
573		return (EBUSY);
574	}
575	dma_inuse |= (1 << chan);
576
577	return (0);
578}
579
580/*
581 * Unregister a DMA channel's usage.  Usually called from a device driver
582 * during close() or during it's shutdown.
583 */
584void
585isa_dma_release(chan)
586	int chan;
587{
588#ifdef DIAGNOSTIC
589	if (chan & ~VALID_DMA_MASK)
590		panic("isa_dma_release: channel out of range");
591
592	if (dma_inuse & (1 << chan) == 0)
593		printf("isa_dma_release: channel %d not in use\n", chan);
594#endif
595
596	if (dma_busy & (1 << chan)) {
597		dma_busy &= ~(1 << chan);
598		/*
599		 * XXX We should also do "dma_bounced &= (1 << chan);"
600		 * because we are acting on behalf of isa_dmadone() which
601		 * was not called to end the last DMA operation.  This does
602		 * not matter now, but it may in the future.
603		 */
604	}
605
606	dma_inuse &= ~(1 << chan);
607}
608
609/*
610 * isa_dmacascade(): program 8237 DMA controller channel to accept
611 * external dma control by a board.
612 */
613void isa_dmacascade(chan)
614	int chan;
615{
616#ifdef DIAGNOSTIC
617	if (chan & ~VALID_DMA_MASK)
618		panic("isa_dmacascade: channel out of range");
619#endif
620
621	/* set dma channel mode, and set dma channel mode */
622	if ((chan & 4) == 0) {
623		outb(DMA1_MODE, DMA37MD_CASCADE | chan);
624		outb(DMA1_SMSK, chan);
625	} else {
626		outb(DMA2_MODE, DMA37MD_CASCADE | (chan & 3));
627		outb(DMA2_SMSK, chan & 3);
628	}
629}
630
631/*
632 * isa_dmastart(): program 8237 DMA controller channel, avoid page alignment
633 * problems by using a bounce buffer.
634 */
635void isa_dmastart(int flags, caddr_t addr, u_int nbytes, int chan)
636{
637	vm_offset_t phys;
638	int waport;
639	caddr_t newaddr;
640
641#ifdef DIAGNOSTIC
642	if (chan & ~VALID_DMA_MASK)
643		panic("isa_dmastart: channel out of range");
644
645	if ((chan < 4 && nbytes > (1<<16))
646	    || (chan >= 4 && (nbytes > (1<<17) || (u_int)addr & 1)))
647		panic("isa_dmastart: impossible request");
648
649	if (dma_inuse & (1 << chan) == 0)
650		printf("isa_dmastart: channel %d not acquired\n", chan);
651#endif
652
653	if (dma_busy & (1 << chan))
654		printf("isa_dmastart: channel %d busy\n", chan);
655
656	dma_busy |= (1 << chan);
657
658	if (isa_dmarangecheck(addr, nbytes, chan)) {
659		if (dma_bouncebuf[chan] == NULL
660		    || dma_bouncebufsize[chan] < nbytes)
661			panic("isa_dmastart: bad bounce buffer");
662		dma_bounced |= (1 << chan);
663		newaddr = dma_bouncebuf[chan];
664
665		/* copy bounce buffer on write */
666		if (!(flags & B_READ))
667			bcopy(addr, newaddr, nbytes);
668		addr = newaddr;
669	}
670
671	/* translate to physical */
672	phys = pmap_extract(pmap_kernel(), (vm_offset_t)addr);
673
674	if ((chan & 4) == 0) {
675		/*
676		 * Program one of DMA channels 0..3.  These are
677		 * byte mode channels.
678		 */
679		/* set dma channel mode, and reset address ff */
680
681		/* If B_RAW flag is set, then use autoinitialise mode */
682		if (flags & B_RAW) {
683		  if (flags & B_READ)
684			outb(DMA1_MODE, DMA37MD_AUTO|DMA37MD_WRITE|chan);
685		  else
686			outb(DMA1_MODE, DMA37MD_AUTO|DMA37MD_READ|chan);
687		}
688		else
689		if (flags & B_READ)
690			outb(DMA1_MODE, DMA37MD_SINGLE|DMA37MD_WRITE|chan);
691		else
692			outb(DMA1_MODE, DMA37MD_SINGLE|DMA37MD_READ|chan);
693		outb(DMA1_FFC, 0);
694
695		/* send start address */
696		waport =  DMA1_CHN(chan);
697		outb(waport, phys);
698		outb(waport, phys>>8);
699		outb(dmapageport[chan], phys>>16);
700
701		/* send count */
702		outb(waport + 1, --nbytes);
703		outb(waport + 1, nbytes>>8);
704
705		/* unmask channel */
706		outb(DMA1_SMSK, chan);
707	} else {
708		/*
709		 * Program one of DMA channels 4..7.  These are
710		 * word mode channels.
711		 */
712		/* set dma channel mode, and reset address ff */
713
714		/* If B_RAW flag is set, then use autoinitialise mode */
715		if (flags & B_RAW) {
716		  if (flags & B_READ)
717			outb(DMA2_MODE, DMA37MD_AUTO|DMA37MD_WRITE|(chan&3));
718		  else
719			outb(DMA2_MODE, DMA37MD_AUTO|DMA37MD_READ|(chan&3));
720		}
721		else
722		if (flags & B_READ)
723			outb(DMA2_MODE, DMA37MD_SINGLE|DMA37MD_WRITE|(chan&3));
724		else
725			outb(DMA2_MODE, DMA37MD_SINGLE|DMA37MD_READ|(chan&3));
726		outb(DMA2_FFC, 0);
727
728		/* send start address */
729		waport = DMA2_CHN(chan - 4);
730		outb(waport, phys>>1);
731		outb(waport, phys>>9);
732		outb(dmapageport[chan], phys>>16);
733
734		/* send count */
735		nbytes >>= 1;
736		outb(waport + 2, --nbytes);
737		outb(waport + 2, nbytes>>8);
738
739		/* unmask channel */
740		outb(DMA2_SMSK, chan & 3);
741	}
742}
743
744void isa_dmadone(int flags, caddr_t addr, int nbytes, int chan)
745{
746#ifdef DIAGNOSTIC
747	if (chan & ~VALID_DMA_MASK)
748		panic("isa_dmadone: channel out of range");
749
750	if (dma_inuse & (1 << chan) == 0)
751		printf("isa_dmadone: channel %d not acquired\n", chan);
752#endif
753
754#if 0
755	/*
756	 * XXX This should be checked, but drivers like ad1848 only call
757	 * isa_dmastart() once because they use Auto DMA mode.  If we
758	 * leave this in, drivers that do this will print this continuously.
759	 */
760	if (dma_busy & (1 << chan) == 0)
761		printf("isa_dmadone: channel %d not busy\n", chan);
762#endif
763
764	if (dma_bounced & (1 << chan)) {
765		/* copy bounce buffer on read */
766		if (flags & B_READ)
767			bcopy(dma_bouncebuf[chan], addr, nbytes);
768
769		dma_bounced &= ~(1 << chan);
770	}
771	dma_busy &= ~(1 << chan);
772}
773
774/*
775 * Check for problems with the address range of a DMA transfer
776 * (non-contiguous physical pages, outside of bus address space,
777 * crossing DMA page boundaries).
778 * Return true if special handling needed.
779 */
780
781static int
782isa_dmarangecheck(caddr_t va, u_int length, int chan) {
783	vm_offset_t phys, priorpage = 0, endva;
784	u_int dma_pgmsk = (chan & 4) ?  ~(128*1024-1) : ~(64*1024-1);
785
786	endva = (vm_offset_t)round_page(va + length);
787	for (; va < (caddr_t) endva ; va += PAGE_SIZE) {
788		phys = trunc_page(pmap_extract(pmap_kernel(), (vm_offset_t)va));
789#define ISARAM_END	RAM_END
790		if (phys == 0)
791			panic("isa_dmacheck: no physical page present");
792		if (phys >= ISARAM_END)
793			return (1);
794		if (priorpage) {
795			if (priorpage + PAGE_SIZE != phys)
796				return (1);
797			/* check if crossing a DMA page boundary */
798			if (((u_int)priorpage ^ (u_int)phys) & dma_pgmsk)
799				return (1);
800		}
801		priorpage = phys;
802	}
803	return (0);
804}
805
806#define NMI_PARITY (1 << 7)
807#define NMI_IOCHAN (1 << 6)
808#define ENMI_WATCHDOG (1 << 7)
809#define ENMI_BUSTIMER (1 << 6)
810#define ENMI_IOSTATUS (1 << 5)
811
812/*
813 * Handle a NMI, possibly a machine check.
814 * return true to panic system, false to ignore.
815 */
816int
817isa_nmi(cd)
818	int cd;
819{
820	int isa_port = inb(0x61);
821	int eisa_port = inb(0x461);
822	if(isa_port & NMI_PARITY) {
823		panic("RAM parity error, likely hardware failure.");
824	} else if(isa_port & NMI_IOCHAN) {
825		panic("I/O channel check, likely hardware failure.");
826	} else if(eisa_port & ENMI_WATCHDOG) {
827		panic("EISA watchdog timer expired, likely hardware failure.");
828	} else if(eisa_port & ENMI_BUSTIMER) {
829		panic("EISA bus timeout, likely hardware failure.");
830	} else if(eisa_port & ENMI_IOSTATUS) {
831		panic("EISA I/O port status error.");
832	} else {
833		printf("\nNMI ISA %x, EISA %x\n", isa_port, eisa_port);
834		return(0);
835	}
836}
837
838/*
839 * Caught a stray interrupt, notify
840 */
841static void
842isa_strayintr(d)
843	int d;
844{
845
846	/* DON'T BOTHER FOR NOW! */
847	/* for some reason, we get bursts of intr #7, even if not enabled! */
848	/*
849	 * Well the reason you got bursts of intr #7 is because someone
850	 * raised an interrupt line and dropped it before the 8259 could
851	 * prioritize it.  This is documented in the intel data book.  This
852	 * means you have BAD hardware!  I have changed this so that only
853	 * the first 5 get logged, then it quits logging them, and puts
854	 * out a special message. rgrimes 3/25/1993
855	 */
856	/*
857	 * XXX TODO print a different message for #7 if it is for a
858	 * glitch.  Glitches can be distinguished from real #7's by
859	 * testing that the in-service bit is _not_ set.  The test
860	 * must be done before sending an EOI so it can't be done if
861	 * we are using AUTO_EOI_1.
862	 */
863	if (intrcnt[NR_DEVICES + d] <= 5)
864		log(LOG_ERR, "stray irq %d\n", d);
865	if (intrcnt[NR_DEVICES + d] == 5)
866		log(LOG_CRIT,
867		    "too many stray irq %d's; not logging any more\n", d);
868}
869
870/*
871 * Find the highest priority enabled display device.  Since we can't
872 * distinguish display devices from ttys, depend on display devices
873 * being sensitive and before sensitive non-display devices (if any)
874 * in isa_devtab_tty.
875 *
876 * XXX we should add capability flags IAMDISPLAY and ISUPPORTCONSOLES.
877 */
878struct isa_device *
879find_display()
880{
881	struct isa_device *dvp;
882
883	for (dvp = isa_devtab_tty; dvp->id_driver != NULL; dvp++)
884		if (dvp->id_driver->sensitive_hw && dvp->id_enabled)
885			return (dvp);
886	return (NULL);
887}
888
889/*
890 * find an ISA device in a given isa_devtab_* table, given
891 * the table to search, the expected id_driver entry, and the unit number.
892 *
893 * this function is defined in isa_device.h, and this location is debatable;
894 * i put it there because it's useless w/o, and directly operates on
895 * the other stuff in that file.
896 *
897 */
898
899struct isa_device *find_isadev(table, driverp, unit)
900     struct isa_device *table;
901     struct isa_driver *driverp;
902     int unit;
903{
904  if (driverp == NULL) /* sanity check */
905    return NULL;
906
907  while ((table->id_driver != driverp) || (table->id_unit != unit)) {
908    if (table->id_driver == 0)
909      return NULL;
910
911    table++;
912  }
913
914  return table;
915}
916
917/*
918 * Return nonzero if a (masked) irq is pending for a given device.
919 */
920int
921isa_irq_pending(dvp)
922	struct isa_device *dvp;
923{
924	unsigned id_irq;
925
926	id_irq = dvp->id_irq;
927	if (id_irq & 0xff)
928		return (inb(IO_ICU1) & id_irq);
929	return (inb(IO_ICU2) & (id_irq >> 8));
930}
931
932int
933update_intr_masks(void)
934{
935	int intr, n=0;
936	u_int mask,*maskptr;
937
938	for (intr=0; intr < ICU_LEN; intr ++) {
939		if (intr==2) continue;
940		maskptr = intr_mptr[intr];
941		if (!maskptr) continue;
942		*maskptr |= 1 << intr;
943		mask = *maskptr;
944		if (mask != intr_mask[intr]) {
945#if 0
946			printf ("intr_mask[%2d] old=%08x new=%08x ptr=%p.\n",
947				intr, intr_mask[intr], mask, maskptr);
948#endif
949			intr_mask[intr]=mask;
950			n++;
951		}
952
953	}
954	return (n);
955}
956
957int
958register_intr(intr, device_id, flags, handler, maskptr, unit)
959	int	intr;
960	int	device_id;
961	u_int	flags;
962	inthand2_t *handler;
963	u_int	*maskptr;
964	int	unit;
965{
966	char	*cp;
967	u_long	ef;
968	int	id;
969	u_int	mask = (maskptr ? *maskptr : 0);
970
971	if ((u_int)intr >= ICU_LEN || intr == 2
972	    || (u_int)device_id >= NR_DEVICES)
973		return (EINVAL);
974	if (intr_handler[intr] != isa_strayintr)
975		return (EBUSY);
976	ef = read_eflags();
977	disable_intr();
978	intr_countp[intr] = &intrcnt[device_id];
979	intr_handler[intr] = handler;
980	intr_mptr[intr] = maskptr;
981	intr_mask[intr] = mask | (1 << intr);
982	intr_unit[intr] = unit;
983	setidt(ICU_OFFSET + intr,
984	       flags & RI_FAST ? fastintr[intr] : slowintr[intr],
985	       SDT_SYS386IGT, SEL_KPL, GSEL(GCODE_SEL, SEL_KPL));
986	write_eflags(ef);
987	for (cp = intrnames, id = 0; id <= device_id; id++)
988		while (*cp++ != '\0')
989			;
990	if (cp > eintrnames)
991		return (0);
992	if (intr < 10) {
993		cp[-3] = intr + '0';
994		cp[-2] = ' ';
995	} else {
996		cp[-3] = '1';
997		cp[-2] = intr - 10 + '0';
998	}
999	return (0);
1000}
1001
1002static void
1003register_imask(dvp, mask)
1004	struct isa_device *dvp;
1005	u_int	mask;
1006{
1007	if (dvp->id_alive && dvp->id_irq) {
1008		int	intr;
1009
1010		intr = ffs(dvp->id_irq) - 1;
1011		intr_mask[intr] = mask | (1 <<intr);
1012	}
1013	(void) update_intr_masks();
1014}
1015
1016int
1017unregister_intr(intr, handler)
1018	int	intr;
1019	inthand2_t *handler;
1020{
1021	u_long	ef;
1022
1023	if ((u_int)intr >= ICU_LEN || handler != intr_handler[intr])
1024		return (EINVAL);
1025	ef = read_eflags();
1026	disable_intr();
1027	intr_countp[intr] = &intrcnt[NR_DEVICES + intr];
1028	intr_handler[intr] = isa_strayintr;
1029	intr_mptr[intr] = NULL;
1030	intr_mask[intr] = HWI_MASK | SWI_MASK;
1031	intr_unit[intr] = intr;
1032	setidt(ICU_OFFSET + intr, slowintr[intr], SDT_SYS386IGT, SEL_KPL,
1033	    GSEL(GCODE_SEL, SEL_KPL));
1034	write_eflags(ef);
1035	return (0);
1036}
1037