Home | History | Annotate | Line # | Download | only in eisa
eisa_machdep.c revision 1.12.2.4
      1  1.12.2.3   nathanw /*	$NetBSD: eisa_machdep.c,v 1.12.2.4 2002/12/11 06:00:50 thorpej Exp $	*/
      2       1.6   thorpej 
      3       1.6   thorpej /*-
      4       1.7   thorpej  * Copyright (c) 1997, 1998 The NetBSD Foundation, Inc.
      5       1.6   thorpej  * All rights reserved.
      6       1.6   thorpej  *
      7       1.6   thorpej  * This code is derived from software contributed to The NetBSD Foundation
      8       1.6   thorpej  * by Jason R. Thorpe of the Numerical Aerospace Simulation Facility,
      9       1.6   thorpej  * NASA Ames Research Center.
     10       1.6   thorpej  *
     11       1.6   thorpej  * Redistribution and use in source and binary forms, with or without
     12       1.6   thorpej  * modification, are permitted provided that the following conditions
     13       1.6   thorpej  * are met:
     14       1.6   thorpej  * 1. Redistributions of source code must retain the above copyright
     15       1.6   thorpej  *    notice, this list of conditions and the following disclaimer.
     16       1.6   thorpej  * 2. Redistributions in binary form must reproduce the above copyright
     17       1.6   thorpej  *    notice, this list of conditions and the following disclaimer in the
     18       1.6   thorpej  *    documentation and/or other materials provided with the distribution.
     19       1.6   thorpej  * 3. All advertising materials mentioning features or use of this software
     20       1.6   thorpej  *    must display the following acknowledgement:
     21       1.6   thorpej  *	This product includes software developed by the NetBSD
     22       1.6   thorpej  *	Foundation, Inc. and its contributors.
     23       1.6   thorpej  * 4. Neither the name of The NetBSD Foundation nor the names of its
     24       1.6   thorpej  *    contributors may be used to endorse or promote products derived
     25       1.6   thorpej  *    from this software without specific prior written permission.
     26       1.6   thorpej  *
     27       1.6   thorpej  * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
     28       1.6   thorpej  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
     29       1.6   thorpej  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
     30       1.6   thorpej  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
     31       1.6   thorpej  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
     32       1.6   thorpej  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
     33       1.6   thorpej  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
     34       1.6   thorpej  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
     35       1.6   thorpej  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
     36       1.6   thorpej  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
     37       1.6   thorpej  * POSSIBILITY OF SUCH DAMAGE.
     38       1.6   thorpej  */
     39       1.1       cgd 
     40       1.1       cgd /*
     41       1.1       cgd  * Copyright (c) 1996 Christopher G. Demetriou.  All rights reserved.
     42       1.1       cgd  *
     43       1.1       cgd  * Redistribution and use in source and binary forms, with or without
     44       1.1       cgd  * modification, are permitted provided that the following conditions
     45       1.1       cgd  * are met:
     46       1.1       cgd  * 1. Redistributions of source code must retain the above copyright
     47       1.1       cgd  *    notice, this list of conditions and the following disclaimer.
     48       1.1       cgd  * 2. Redistributions in binary form must reproduce the above copyright
     49       1.1       cgd  *    notice, this list of conditions and the following disclaimer in the
     50       1.1       cgd  *    documentation and/or other materials provided with the distribution.
     51       1.1       cgd  * 3. All advertising materials mentioning features or use of this software
     52       1.1       cgd  *    must display the following acknowledgement:
     53       1.1       cgd  *      This product includes software developed by Christopher G. Demetriou
     54       1.1       cgd  *	for the NetBSD Project.
     55       1.1       cgd  * 4. The name of the author may not be used to endorse or promote products
     56       1.1       cgd  *    derived from this software without specific prior written permission
     57       1.1       cgd  *
     58       1.1       cgd  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
     59       1.1       cgd  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
     60       1.1       cgd  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
     61       1.1       cgd  * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
     62       1.1       cgd  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
     63       1.1       cgd  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
     64       1.1       cgd  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
     65       1.1       cgd  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
     66       1.1       cgd  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
     67       1.1       cgd  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
     68       1.1       cgd  */
     69       1.1       cgd 
     70       1.1       cgd /*
     71       1.1       cgd  * Machine-specific functions for EISA autoconfiguration.
     72       1.1       cgd  */
     73  1.12.2.2   nathanw 
     74  1.12.2.2   nathanw #include <sys/cdefs.h>
     75  1.12.2.2   nathanw __KERNEL_RCSID(0, "$NetBSD: eisa_machdep.c,v 1.12.2.4 2002/12/11 06:00:50 thorpej Exp $");
     76       1.1       cgd 
     77  1.12.2.3   nathanw #include "ioapic.h"
     78  1.12.2.3   nathanw 
     79       1.1       cgd #include <sys/types.h>
     80       1.1       cgd #include <sys/param.h>
     81       1.1       cgd #include <sys/time.h>
     82       1.1       cgd #include <sys/systm.h>
     83       1.1       cgd #include <sys/errno.h>
     84       1.1       cgd #include <sys/device.h>
     85       1.5   thorpej #include <sys/extent.h>
     86       1.1       cgd 
     87       1.6   thorpej #define _I386_BUS_DMA_PRIVATE
     88       1.6   thorpej #include <machine/bus.h>
     89       1.6   thorpej 
     90       1.5   thorpej #include <dev/isa/isareg.h>
     91       1.1       cgd #include <dev/isa/isavar.h>
     92       1.1       cgd #include <dev/eisa/eisavar.h>
     93       1.1       cgd 
     94  1.12.2.3   nathanw #if NIOAPIC > 0
     95  1.12.2.3   nathanw #include <machine/i82093var.h>
     96  1.12.2.3   nathanw #include <machine/mpbiosvar.h>
     97  1.12.2.3   nathanw #endif
     98  1.12.2.3   nathanw 
     99       1.6   thorpej /*
    100       1.6   thorpej  * EISA doesn't have any special needs; just use the generic versions
    101       1.6   thorpej  * of these funcions.
    102       1.6   thorpej  */
    103       1.6   thorpej struct i386_bus_dma_tag eisa_bus_dma_tag = {
    104      1.10   thorpej 	0,			/* _bounce_thresh */
    105       1.6   thorpej 	_bus_dmamap_create,
    106       1.6   thorpej 	_bus_dmamap_destroy,
    107       1.6   thorpej 	_bus_dmamap_load,
    108       1.6   thorpej 	_bus_dmamap_load_mbuf,
    109       1.6   thorpej 	_bus_dmamap_load_uio,
    110       1.6   thorpej 	_bus_dmamap_load_raw,
    111       1.6   thorpej 	_bus_dmamap_unload,
    112       1.6   thorpej 	NULL,			/* _dmamap_sync */
    113       1.6   thorpej 	_bus_dmamem_alloc,
    114       1.6   thorpej 	_bus_dmamem_free,
    115       1.6   thorpej 	_bus_dmamem_map,
    116       1.6   thorpej 	_bus_dmamem_unmap,
    117       1.6   thorpej 	_bus_dmamem_mmap,
    118       1.6   thorpej };
    119       1.6   thorpej 
    120       1.1       cgd void
    121       1.1       cgd eisa_attach_hook(parent, self, eba)
    122       1.1       cgd 	struct device *parent, *self;
    123       1.1       cgd 	struct eisabus_attach_args *eba;
    124       1.1       cgd {
    125       1.7   thorpej 	extern int eisa_has_been_seen;
    126       1.1       cgd 
    127       1.7   thorpej 	/*
    128       1.8   thorpej 	 * Notify others that might need to know that the EISA bus
    129       1.7   thorpej 	 * has now been attached.
    130       1.7   thorpej 	 */
    131       1.7   thorpej 	if (eisa_has_been_seen)
    132       1.7   thorpej 		panic("eisaattach: EISA bus already seen!");
    133       1.7   thorpej 	eisa_has_been_seen = 1;
    134       1.1       cgd }
    135       1.1       cgd 
    136       1.1       cgd int
    137       1.1       cgd eisa_maxslots(ec)
    138       1.1       cgd 	eisa_chipset_tag_t ec;
    139       1.1       cgd {
    140       1.1       cgd 
    141       1.1       cgd 	/*
    142       1.1       cgd 	 * Always try 16 slots.
    143       1.1       cgd 	 */
    144       1.1       cgd 	return (16);
    145       1.1       cgd }
    146       1.1       cgd 
    147       1.1       cgd int
    148       1.1       cgd eisa_intr_map(ec, irq, ihp)
    149       1.1       cgd 	eisa_chipset_tag_t ec;
    150       1.1       cgd 	u_int irq;
    151       1.1       cgd 	eisa_intr_handle_t *ihp;
    152       1.1       cgd {
    153  1.12.2.4   thorpej 	if (irq >= NUM_LEGACY_IRQS) {
    154       1.4  christos 		printf("eisa_intr_map: bad IRQ %d\n", irq);
    155       1.1       cgd 		*ihp = -1;
    156       1.1       cgd 		return 1;
    157       1.1       cgd 	}
    158       1.1       cgd 	if (irq == 2) {
    159       1.4  christos 		printf("eisa_intr_map: changed IRQ 2 to IRQ 9\n");
    160       1.1       cgd 		irq = 9;
    161       1.1       cgd 	}
    162       1.1       cgd 
    163  1.12.2.3   nathanw #if NIOAPIC > 0
    164  1.12.2.3   nathanw 
    165  1.12.2.4   thorpej 	if (mp_busses != NULL) {
    166  1.12.2.4   thorpej 		if (intr_find_mpmapping(mp_eisa_bus, irq, ihp) == 0 ||
    167  1.12.2.4   thorpej 		    intr_find_mpmapping(mp_isa_bus, irq, ihp) == 0) {
    168  1.12.2.4   thorpej 			*ihp |= irq;
    169  1.12.2.4   thorpej 			return 0;
    170  1.12.2.4   thorpej 		} else
    171  1.12.2.4   thorpej 			printf("eisa_intr_map: no MP mapping found\n");
    172  1.12.2.3   nathanw 	}
    173  1.12.2.4   thorpej 	printf("eisa_intr_map: no MP mapping found\n");
    174  1.12.2.3   nathanw #endif
    175  1.12.2.3   nathanw 
    176       1.1       cgd 	*ihp = irq;
    177       1.1       cgd 	return 0;
    178       1.1       cgd }
    179       1.1       cgd 
    180       1.1       cgd const char *
    181       1.1       cgd eisa_intr_string(ec, ih)
    182       1.1       cgd 	eisa_chipset_tag_t ec;
    183       1.1       cgd 	eisa_intr_handle_t ih;
    184       1.1       cgd {
    185       1.1       cgd 	static char irqstr[8];		/* 4 + 2 + NULL + sanity */
    186       1.1       cgd 
    187  1.12.2.4   thorpej 	if (ih == 0 || (ih & 0xff) >= NUM_LEGACY_IRQS || ih == 2)
    188  1.12.2.3   nathanw 		panic("eisa_intr_string: bogus handle 0x%x", ih);
    189       1.1       cgd 
    190  1.12.2.3   nathanw #if NIOAPIC > 0
    191  1.12.2.3   nathanw 	if (ih & APIC_INT_VIA_APIC)
    192  1.12.2.3   nathanw 		sprintf(irqstr, "apic %d int %d (irq %d)",
    193  1.12.2.3   nathanw 		    APIC_IRQ_APIC(ih),
    194  1.12.2.3   nathanw 		    APIC_IRQ_PIN(ih),
    195  1.12.2.3   nathanw 		    ih&0xff);
    196  1.12.2.3   nathanw 	else
    197  1.12.2.3   nathanw 		sprintf(irqstr, "irq %d", ih&0xff);
    198  1.12.2.3   nathanw #else
    199       1.4  christos 	sprintf(irqstr, "irq %d", ih);
    200  1.12.2.3   nathanw #endif
    201       1.1       cgd 	return (irqstr);
    202       1.1       cgd 
    203      1.11       cgd }
    204      1.11       cgd 
    205      1.11       cgd const struct evcnt *
    206      1.11       cgd eisa_intr_evcnt(eisa_chipset_tag_t ec, eisa_intr_handle_t ih)
    207      1.11       cgd {
    208      1.11       cgd 
    209      1.11       cgd 	/* XXX for now, no evcnt parent reported */
    210      1.11       cgd 	return NULL;
    211       1.1       cgd }
    212       1.1       cgd 
    213       1.1       cgd void *
    214       1.1       cgd eisa_intr_establish(ec, ih, type, level, func, arg)
    215       1.1       cgd 	eisa_chipset_tag_t ec;
    216       1.1       cgd 	eisa_intr_handle_t ih;
    217       1.1       cgd 	int type, level, (*func) __P((void *));
    218       1.1       cgd 	void *arg;
    219       1.1       cgd {
    220  1.12.2.4   thorpej 	int pin, irq;
    221  1.12.2.4   thorpej 	struct pic *pic;
    222  1.12.2.4   thorpej 
    223  1.12.2.4   thorpej 	pic = &i8259_pic;
    224  1.12.2.4   thorpej 	pin = irq = ih;
    225  1.12.2.4   thorpej 
    226  1.12.2.3   nathanw #if NIOAPIC > 0
    227  1.12.2.4   thorpej 	if (ih & APIC_INT_VIA_APIC) {
    228  1.12.2.4   thorpej 		pic = (struct pic *)ioapic_find(APIC_IRQ_APIC(ih));
    229  1.12.2.4   thorpej 		if (pic == NULL) {
    230  1.12.2.4   thorpej 			printf("eisa_intr_establish: bad ioapic %d\n",
    231  1.12.2.4   thorpej 			    APIC_IRQ_APIC(ih));
    232  1.12.2.4   thorpej 			return NULL;
    233  1.12.2.3   nathanw 		}
    234  1.12.2.4   thorpej 		pin = APIC_IRQ_PIN(ih);
    235  1.12.2.4   thorpej 		irq = APIC_IRQ_LEGACY_IRQ(ih);
    236  1.12.2.4   thorpej 		if (irq < 0 || irq >= NUM_LEGACY_IRQS)
    237  1.12.2.4   thorpej 			irq = -1;
    238  1.12.2.3   nathanw 	}
    239  1.12.2.4   thorpej #endif
    240       1.1       cgd 
    241  1.12.2.4   thorpej 	return intr_establish(irq, pic, pin, type, level, func, arg);
    242       1.1       cgd }
    243       1.1       cgd 
    244       1.1       cgd void
    245       1.1       cgd eisa_intr_disestablish(ec, cookie)
    246       1.1       cgd 	eisa_chipset_tag_t ec;
    247       1.1       cgd 	void *cookie;
    248       1.1       cgd {
    249       1.1       cgd 
    250  1.12.2.4   thorpej 	intr_disestablish(cookie);
    251       1.5   thorpej }
    252       1.5   thorpej 
    253       1.5   thorpej int
    254       1.5   thorpej eisa_mem_alloc(t, size, align, boundary, cacheable, addrp, bahp)
    255       1.5   thorpej 	bus_space_tag_t t;
    256       1.5   thorpej 	bus_size_t size, align;
    257       1.5   thorpej 	bus_addr_t boundary;
    258       1.5   thorpej 	int cacheable;
    259       1.5   thorpej 	bus_addr_t *addrp;
    260       1.5   thorpej 	bus_space_handle_t *bahp;
    261       1.5   thorpej {
    262       1.5   thorpej 	extern struct extent *iomem_ex;
    263       1.5   thorpej 
    264       1.5   thorpej 	/*
    265       1.5   thorpej 	 * Allocate physical address space after the ISA hole.
    266       1.5   thorpej 	 */
    267       1.5   thorpej 	return bus_space_alloc(t, IOM_END, iomem_ex->ex_end, size, align,
    268       1.5   thorpej 	    boundary, cacheable, addrp, bahp);
    269       1.5   thorpej }
    270       1.5   thorpej 
    271       1.5   thorpej void
    272       1.5   thorpej eisa_mem_free(t, bah, size)
    273       1.5   thorpej 	bus_space_tag_t t;
    274       1.5   thorpej 	bus_space_handle_t bah;
    275       1.5   thorpej 	bus_size_t size;
    276       1.5   thorpej {
    277       1.5   thorpej 
    278       1.5   thorpej 	bus_space_free(t, bah, size);
    279      1.12   thorpej }
    280      1.12   thorpej 
    281      1.12   thorpej int
    282      1.12   thorpej eisa_conf_read_mem(ec, slot, func, entry, ecm)
    283      1.12   thorpej 	eisa_chipset_tag_t ec;
    284      1.12   thorpej 	int slot, func, entry;
    285      1.12   thorpej 	struct eisa_cfg_mem *ecm;
    286      1.12   thorpej {
    287      1.12   thorpej 
    288      1.12   thorpej 	/* XXX XXX XXX */
    289      1.12   thorpej 	return (ENOENT);
    290      1.12   thorpej }
    291      1.12   thorpej 
    292      1.12   thorpej int
    293      1.12   thorpej eisa_conf_read_irq(ec, slot, func, entry, eci)
    294      1.12   thorpej 	eisa_chipset_tag_t ec;
    295      1.12   thorpej 	int slot, func, entry;
    296      1.12   thorpej 	struct eisa_cfg_irq *eci;
    297      1.12   thorpej {
    298      1.12   thorpej 
    299      1.12   thorpej 	/* XXX XXX XXX */
    300      1.12   thorpej 	return (ENOENT);
    301      1.12   thorpej }
    302      1.12   thorpej 
    303      1.12   thorpej int
    304      1.12   thorpej eisa_conf_read_dma(ec, slot, func, entry, ecd)
    305      1.12   thorpej 	eisa_chipset_tag_t ec;
    306      1.12   thorpej 	int slot, func, entry;
    307      1.12   thorpej 	struct eisa_cfg_dma *ecd;
    308      1.12   thorpej {
    309      1.12   thorpej 
    310      1.12   thorpej 	/* XXX XXX XXX */
    311      1.12   thorpej 	return (ENOENT);
    312      1.12   thorpej }
    313      1.12   thorpej 
    314      1.12   thorpej int
    315      1.12   thorpej eisa_conf_read_io(ec, slot, func, entry, ecio)
    316      1.12   thorpej 	eisa_chipset_tag_t ec;
    317      1.12   thorpej 	int slot, func, entry;
    318      1.12   thorpej 	struct eisa_cfg_io *ecio;
    319      1.12   thorpej {
    320      1.12   thorpej 
    321      1.12   thorpej 	/* XXX XXX XXX */
    322      1.12   thorpej 	return (ENOENT);
    323       1.1       cgd }
    324