Home | History | Annotate | Line # | Download | only in pci
i82365_pci.c revision 1.7
      1 /*	$NetBSD: i82365_pci.c,v 1.7 1998/12/20 17:53:28 nathanw Exp $	*/
      2 
      3 /*
      4  * Copyright (c) 1997 Marc Horowitz.  All rights reserved.
      5  *
      6  * Redistribution and use in source and binary forms, with or without
      7  * modification, are permitted provided that the following conditions
      8  * are met:
      9  * 1. Redistributions of source code must retain the above copyright
     10  *    notice, this list of conditions and the following disclaimer.
     11  * 2. Redistributions in binary form must reproduce the above copyright
     12  *    notice, this list of conditions and the following disclaimer in the
     13  *    documentation and/or other materials provided with the distribution.
     14  * 3. All advertising materials mentioning features or use of this software
     15  *    must display the following acknowledgement:
     16  *	This product includes software developed by Marc Horowitz.
     17  * 4. The name of the author may not be used to endorse or promote products
     18  *    derived from this software without specific prior written permission.
     19  *
     20  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
     21  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
     22  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
     23  * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
     24  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
     25  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
     26  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
     27  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
     28  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
     29  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
     30  */
     31 
     32 #include <sys/types.h>
     33 #include <sys/param.h>
     34 #include <sys/systm.h>
     35 #include <sys/device.h>
     36 
     37 #include <dev/ic/i82365reg.h>
     38 #include <dev/ic/i82365var.h>
     39 
     40 #include <dev/pci/pcivar.h>
     41 #include <dev/pci/pcireg.h>
     42 #include <dev/pci/pcidevs.h>
     43 #include <dev/pci/i82365_pcivar.h>
     44 
     45 /*
     46  * PCI constants.
     47  * XXX These should be in a common file!
     48  */
     49 #define	PCI_CBIO		0x10	/* Configuration Base IO Address */
     50 
     51 int	pcic_pci_match __P((struct device *, struct cfdata *, void *));
     52 void	pcic_pci_attach __P((struct device *, struct device *, void *));
     53 
     54 struct cfattach pcic_pci_ca = {
     55 	sizeof(struct pcic_softc), pcic_pci_match, pcic_pci_attach
     56 };
     57 
     58 static struct pcmcia_chip_functions pcic_pci_functions = {
     59 	pcic_chip_mem_alloc,
     60 	pcic_chip_mem_free,
     61 	pcic_chip_mem_map,
     62 	pcic_chip_mem_unmap,
     63 
     64 	pcic_chip_io_alloc,
     65 	pcic_chip_io_free,
     66 	pcic_chip_io_map,
     67 	pcic_chip_io_unmap,
     68 
     69 	pcic_pci_machdep_chip_intr_establish,
     70 	pcic_pci_machdep_chip_intr_disestablish,
     71 
     72 	pcic_chip_socket_enable,
     73 	pcic_chip_socket_disable,
     74 };
     75 
     76 static void pcic_pci_callback(struct device *);
     77 
     78 int
     79 pcic_pci_match(parent, match, aux)
     80 	struct device *parent;
     81 	struct cfdata  *match;
     82 	void *aux;
     83 {
     84 	struct pci_attach_args *pa = (struct pci_attach_args *) aux;
     85 
     86 	switch (PCI_VENDOR(pa->pa_id)) {
     87 	case PCI_VENDOR_CIRRUS:
     88 		switch(PCI_PRODUCT(pa->pa_id)) {
     89 		case PCI_PRODUCT_CIRRUS_CL_PD6729:
     90 			break;
     91 		default:
     92 			return (0);
     93 		}
     94 		break;
     95 	default:
     96 		return (0);
     97 	}
     98 	return (1);
     99 }
    100 
    101 void
    102 pcic_pci_attach(parent, self, aux)
    103 	struct device *parent, *self;
    104 	void *aux;
    105 {
    106 	struct pcic_softc *sc = (void *) self;
    107 	struct pci_attach_args *pa = aux;
    108 	pci_chipset_tag_t pc = pa->pa_pc;
    109 	bus_space_tag_t memt = pa->pa_memt;
    110 	bus_space_handle_t memh;
    111 	char *model;
    112 
    113 	if (pci_mapreg_map(pa, PCI_CBIO, PCI_MAPREG_TYPE_IO, 0,
    114 	    &sc->iot, &sc->ioh, NULL, NULL)) {
    115 		printf(": can't map i/o space\n");
    116 		return;
    117 	}
    118 
    119 	/*
    120 	 * XXX need some memory for mapping pcmcia cards into. Ideally, this
    121 	 * would be completely dynamic.  Practically this doesn't work,
    122 	 * because the extent mapper doesn't know about all the devices all
    123 	 * the time.  With ISA we could finesse the issue by specifying the
    124 	 * memory region in the config line.  We can't do that here, so we
    125 	 * cheat for now. Jason Thorpe, you are my Savior, come up with a fix
    126 	 * :-)
    127 	 */
    128 
    129 	/* Map mem space. */
    130 	if (bus_space_map(memt, 0xd0000, 0x4000, 0, &memh))
    131 		panic("pcic_pci_attach: can't map mem space");
    132 
    133 	sc->membase = 0xd0000;
    134 	sc->subregionmask = (1 << (0x4000 / PCIC_MEM_PAGESIZE)) - 1;
    135 
    136 	/* same deal for io allocation */
    137 
    138 	sc->iobase = 0x400;
    139 	sc->iosize = 0xbff;
    140 
    141 	/* end XXX */
    142 
    143 	sc->pct = (pcmcia_chipset_tag_t) & pcic_pci_functions;
    144 
    145 	sc->memt = memt;
    146 	sc->memh = memh;
    147 
    148 	switch (PCI_PRODUCT(pa->pa_id)) {
    149 	case PCI_PRODUCT_CIRRUS_CL_PD6729:
    150 		model = "Cirrus Logic PD6729 PCMCIA controller";
    151 		break;
    152 	default:
    153 		model = "Model unknown";
    154 		break;
    155 	}
    156 
    157 	printf(": %s\n", model);
    158 
    159 	/* Enable the card. */
    160 	pci_conf_write(pc, pa->pa_tag, PCI_COMMAND_STATUS_REG,
    161 	    pci_conf_read(pc, pa->pa_tag, PCI_COMMAND_STATUS_REG) |
    162 	    PCI_COMMAND_MASTER_ENABLE);
    163 
    164 	pcic_attach(sc);
    165 
    166 	/*
    167 	 * Check to see if we're using PCI or ISA interrupts. I don't
    168 	 * know of any i386 systems that use the 6729 in PCI interrupt
    169 	 * mode, but maybe when the PCMCIA code runs on other platforms
    170 	 * we'll need to fix this.
    171 	 */
    172 	pcic_write(&sc->handle[0], PCIC_CIRRUS_EXTENDED_INDEX,
    173 		   PCIC_CIRRUS_EXT_CONTROL_1);
    174 	if (pcic_read(&sc->handle[0], PCIC_CIRRUS_EXTENDED_DATA) &
    175 	    PCIC_CIRRUS_EXT_CONTROL_1_PCI_INTR_MASK) {
    176 		printf("%s: PCI interrupts not supported\n",
    177 		       sc->dev.dv_xname);
    178 		return;
    179 	}
    180 
    181 	sc->intr_est = pcic_pci_machdep_intr_est(pc);
    182 
    183 	/* Map and establish the interrupt. */
    184 	sc->ih = pcic_pci_machdep_pcic_intr_establish(sc, pcic_intr);
    185 	if (sc->ih == NULL) {
    186 		printf("%s: couldn't map interrupt\n", sc->dev.dv_xname);
    187 		return;
    188 	}
    189 
    190 	/*
    191 	 * Defer configuration of children until ISA has had its chance
    192 	 * to use up whatever IO space and IRQs it wants. XXX This will
    193 	 * only work if ISA is attached to a pcib, AND the PCI probe finds
    194 	 * and defers the ISA attachment before this one.
    195 	 */
    196 	config_defer(self, pcic_pci_callback);
    197 }
    198 
    199 static void
    200 pcic_pci_callback(self)
    201 	struct device *self;
    202 {
    203 	struct pcic_softc *sc = (void *) self;
    204 
    205 	pcic_attach_sockets(sc);
    206 }
    207