Home | History | Annotate | Line # | Download | only in eisa
eisa_machdep.c revision 1.5
      1  1.5   thorpej /*	$NetBSD: eisa_machdep.c,v 1.5 1996/10/21 23:12:56 thorpej Exp $	*/
      2  1.1       cgd 
      3  1.1       cgd /*
      4  1.1       cgd  * Copyright (c) 1996 Christopher G. Demetriou.  All rights reserved.
      5  1.1       cgd  *
      6  1.1       cgd  * Redistribution and use in source and binary forms, with or without
      7  1.1       cgd  * modification, are permitted provided that the following conditions
      8  1.1       cgd  * are met:
      9  1.1       cgd  * 1. Redistributions of source code must retain the above copyright
     10  1.1       cgd  *    notice, this list of conditions and the following disclaimer.
     11  1.1       cgd  * 2. Redistributions in binary form must reproduce the above copyright
     12  1.1       cgd  *    notice, this list of conditions and the following disclaimer in the
     13  1.1       cgd  *    documentation and/or other materials provided with the distribution.
     14  1.1       cgd  * 3. All advertising materials mentioning features or use of this software
     15  1.1       cgd  *    must display the following acknowledgement:
     16  1.1       cgd  *      This product includes software developed by Christopher G. Demetriou
     17  1.1       cgd  *	for the NetBSD Project.
     18  1.1       cgd  * 4. The name of the author may not be used to endorse or promote products
     19  1.1       cgd  *    derived from this software without specific prior written permission
     20  1.1       cgd  *
     21  1.1       cgd  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
     22  1.1       cgd  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
     23  1.1       cgd  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
     24  1.1       cgd  * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
     25  1.1       cgd  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
     26  1.1       cgd  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
     27  1.1       cgd  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
     28  1.1       cgd  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
     29  1.1       cgd  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
     30  1.1       cgd  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
     31  1.1       cgd  */
     32  1.1       cgd 
     33  1.1       cgd /*
     34  1.1       cgd  * Machine-specific functions for EISA autoconfiguration.
     35  1.1       cgd  */
     36  1.1       cgd 
     37  1.1       cgd #include <sys/types.h>
     38  1.1       cgd #include <sys/param.h>
     39  1.1       cgd #include <sys/time.h>
     40  1.1       cgd #include <sys/systm.h>
     41  1.1       cgd #include <sys/errno.h>
     42  1.1       cgd #include <sys/device.h>
     43  1.5   thorpej #include <sys/extent.h>
     44  1.1       cgd 
     45  1.1       cgd #include <i386/isa/icu.h>
     46  1.5   thorpej #include <dev/isa/isareg.h>
     47  1.1       cgd #include <dev/isa/isavar.h>
     48  1.1       cgd #include <dev/eisa/eisavar.h>
     49  1.1       cgd 
     50  1.1       cgd void
     51  1.1       cgd eisa_attach_hook(parent, self, eba)
     52  1.1       cgd 	struct device *parent, *self;
     53  1.1       cgd 	struct eisabus_attach_args *eba;
     54  1.1       cgd {
     55  1.1       cgd 
     56  1.1       cgd 	/* Nothing to do */
     57  1.1       cgd }
     58  1.1       cgd 
     59  1.1       cgd int
     60  1.1       cgd eisa_maxslots(ec)
     61  1.1       cgd 	eisa_chipset_tag_t ec;
     62  1.1       cgd {
     63  1.1       cgd 
     64  1.1       cgd 	/*
     65  1.1       cgd 	 * Always try 16 slots.
     66  1.1       cgd 	 */
     67  1.1       cgd 	return (16);
     68  1.1       cgd }
     69  1.1       cgd 
     70  1.1       cgd int
     71  1.1       cgd eisa_intr_map(ec, irq, ihp)
     72  1.1       cgd 	eisa_chipset_tag_t ec;
     73  1.1       cgd 	u_int irq;
     74  1.1       cgd 	eisa_intr_handle_t *ihp;
     75  1.1       cgd {
     76  1.1       cgd 
     77  1.1       cgd 	if (irq >= ICU_LEN) {
     78  1.4  christos 		printf("eisa_intr_map: bad IRQ %d\n", irq);
     79  1.1       cgd 		*ihp = -1;
     80  1.1       cgd 		return 1;
     81  1.1       cgd 	}
     82  1.1       cgd 	if (irq == 2) {
     83  1.4  christos 		printf("eisa_intr_map: changed IRQ 2 to IRQ 9\n");
     84  1.1       cgd 		irq = 9;
     85  1.1       cgd 	}
     86  1.1       cgd 
     87  1.1       cgd 	*ihp = irq;
     88  1.1       cgd 	return 0;
     89  1.1       cgd }
     90  1.1       cgd 
     91  1.1       cgd const char *
     92  1.1       cgd eisa_intr_string(ec, ih)
     93  1.1       cgd 	eisa_chipset_tag_t ec;
     94  1.1       cgd 	eisa_intr_handle_t ih;
     95  1.1       cgd {
     96  1.1       cgd 	static char irqstr[8];		/* 4 + 2 + NULL + sanity */
     97  1.1       cgd 
     98  1.1       cgd 	if (ih == 0 || ih >= ICU_LEN || ih == 2)
     99  1.1       cgd 		panic("eisa_intr_string: bogus handle 0x%x\n", ih);
    100  1.1       cgd 
    101  1.4  christos 	sprintf(irqstr, "irq %d", ih);
    102  1.1       cgd 	return (irqstr);
    103  1.1       cgd 
    104  1.1       cgd }
    105  1.1       cgd 
    106  1.1       cgd void *
    107  1.1       cgd eisa_intr_establish(ec, ih, type, level, func, arg)
    108  1.1       cgd 	eisa_chipset_tag_t ec;
    109  1.1       cgd 	eisa_intr_handle_t ih;
    110  1.1       cgd 	int type, level, (*func) __P((void *));
    111  1.1       cgd 	void *arg;
    112  1.1       cgd {
    113  1.1       cgd 
    114  1.1       cgd 	if (ih == 0 || ih >= ICU_LEN || ih == 2)
    115  1.1       cgd 		panic("eisa_intr_establish: bogus handle 0x%x\n", ih);
    116  1.1       cgd 
    117  1.2       cgd 	return isa_intr_establish(NULL, ih, type, level, func, arg);
    118  1.1       cgd }
    119  1.1       cgd 
    120  1.1       cgd void
    121  1.1       cgd eisa_intr_disestablish(ec, cookie)
    122  1.1       cgd 	eisa_chipset_tag_t ec;
    123  1.1       cgd 	void *cookie;
    124  1.1       cgd {
    125  1.1       cgd 
    126  1.2       cgd 	return isa_intr_disestablish(NULL, cookie);
    127  1.5   thorpej }
    128  1.5   thorpej 
    129  1.5   thorpej int
    130  1.5   thorpej eisa_mem_alloc(t, size, align, boundary, cacheable, addrp, bahp)
    131  1.5   thorpej 	bus_space_tag_t t;
    132  1.5   thorpej 	bus_size_t size, align;
    133  1.5   thorpej 	bus_addr_t boundary;
    134  1.5   thorpej 	int cacheable;
    135  1.5   thorpej 	bus_addr_t *addrp;
    136  1.5   thorpej 	bus_space_handle_t *bahp;
    137  1.5   thorpej {
    138  1.5   thorpej 	extern struct extent *iomem_ex;
    139  1.5   thorpej 
    140  1.5   thorpej 	/*
    141  1.5   thorpej 	 * Allocate physical address space after the ISA hole.
    142  1.5   thorpej 	 */
    143  1.5   thorpej 	return bus_space_alloc(t, IOM_END, iomem_ex->ex_end, size, align,
    144  1.5   thorpej 	    boundary, cacheable, addrp, bahp);
    145  1.5   thorpej }
    146  1.5   thorpej 
    147  1.5   thorpej void
    148  1.5   thorpej eisa_mem_free(t, bah, size)
    149  1.5   thorpej 	bus_space_tag_t t;
    150  1.5   thorpej 	bus_space_handle_t bah;
    151  1.5   thorpej 	bus_size_t size;
    152  1.5   thorpej {
    153  1.5   thorpej 
    154  1.5   thorpej 	bus_space_free(t, bah, size);
    155  1.1       cgd }
    156