Home | History | Annotate | Line # | Download | only in pci
i82365_pci.c revision 1.20
      1 /*	$NetBSD: i82365_pci.c,v 1.20 2005/05/30 04:35:22 christos 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 /*
     33  * XXX this driver frontend is *very* i386 dependent and should be relocated
     34  */
     35 
     36 #include <sys/cdefs.h>
     37 __KERNEL_RCSID(0, "$NetBSD: i82365_pci.c,v 1.20 2005/05/30 04:35:22 christos Exp $");
     38 
     39 #include <sys/param.h>
     40 #include <sys/systm.h>
     41 #include <sys/device.h>
     42 
     43 #include <dev/ic/i82365reg.h>
     44 #include <dev/ic/i82365var.h>
     45 
     46 #include <dev/pci/pcivar.h>
     47 #include <dev/pci/pcireg.h>
     48 #include <dev/pci/pcidevs.h>
     49 #include <dev/pci/i82365_pcivar.h>
     50 
     51 #include <dev/isa/isavar.h>
     52 #include <dev/isa/i82365_isavar.h>
     53 
     54 /*
     55  * PCI constants.
     56  * XXX These should be in a common file!
     57  */
     58 #define	PCI_CBIO		0x10	/* Configuration Base IO Address */
     59 
     60 int	pcic_pci_match(struct device *, struct cfdata *, void *);
     61 void	pcic_pci_attach(struct device *, struct device *, void *);
     62 
     63 CFATTACH_DECL(pcic_pci, sizeof(struct pcic_pci_softc),
     64     pcic_pci_match, pcic_pci_attach, NULL, NULL);
     65 
     66 static struct pcmcia_chip_functions pcic_pci_functions = {
     67 	pcic_chip_mem_alloc,
     68 	pcic_chip_mem_free,
     69 	pcic_chip_mem_map,
     70 	pcic_chip_mem_unmap,
     71 
     72 	pcic_chip_io_alloc,
     73 	pcic_chip_io_free,
     74 	pcic_chip_io_map,
     75 	pcic_chip_io_unmap,
     76 
     77 	/* XXX */
     78 	pcic_isa_chip_intr_establish,
     79 	pcic_isa_chip_intr_disestablish,
     80 
     81 	pcic_chip_socket_enable,
     82 	pcic_chip_socket_disable,
     83 	pcic_chip_socket_settype,
     84 };
     85 
     86 static void pcic_pci_callback(struct device *);
     87 
     88 int
     89 pcic_pci_match(parent, match, aux)
     90 	struct device *parent;
     91 	struct cfdata  *match;
     92 	void *aux;
     93 {
     94 	struct pci_attach_args *pa = (struct pci_attach_args *) aux;
     95 
     96 	switch (PCI_VENDOR(pa->pa_id)) {
     97 	case PCI_VENDOR_CIRRUS:
     98 		switch(PCI_PRODUCT(pa->pa_id)) {
     99 		case PCI_PRODUCT_CIRRUS_CL_PD6729:
    100 			break;
    101 		default:
    102 			return (0);
    103 		}
    104 		break;
    105 	default:
    106 		return (0);
    107 	}
    108 	return (1);
    109 }
    110 
    111 void pcic_isa_config_interrupts(struct device *);
    112 
    113 void
    114 pcic_pci_attach(parent, self, aux)
    115 	struct device *parent, *self;
    116 	void *aux;
    117 {
    118 	struct pcic_softc *sc = (void *) self;
    119 	struct pcic_pci_softc *psc = (void *) self;
    120 	struct pci_attach_args *pa = aux;
    121 	pci_chipset_tag_t pc = pa->pa_pc;
    122 	bus_space_tag_t memt = pa->pa_memt;
    123 	bus_space_handle_t memh;
    124 	const char *model;
    125 
    126 	aprint_naive(": PCMCIA controller\n");
    127 
    128 	if (pci_mapreg_map(pa, PCI_CBIO, PCI_MAPREG_TYPE_IO, 0,
    129 	    &sc->iot, &sc->ioh, NULL, NULL)) {
    130 		aprint_error(": can't map i/o space\n");
    131 		return;
    132 	}
    133 
    134 	/*
    135 	 * XXX need some memory for mapping pcmcia cards into. Ideally, this
    136 	 * would be completely dynamic.  Practically this doesn't work,
    137 	 * because the extent mapper doesn't know about all the devices all
    138 	 * the time.  With ISA we could finesse the issue by specifying the
    139 	 * memory region in the config line.  We can't do that here, so we
    140 	 * cheat for now. Jason Thorpe, you are my Savior, come up with a fix
    141 	 * :-)
    142 	 */
    143 
    144 	/* Map mem space. */
    145 	if (bus_space_map(memt, 0xd0000, 0x4000, 0, &memh))
    146 		panic("pcic_pci_attach: can't map mem space");
    147 
    148 	sc->membase = 0xd0000;
    149 	sc->subregionmask = (1 << (0x4000 / PCIC_MEM_PAGESIZE)) - 1;
    150 
    151 	/* same deal for io allocation */
    152 
    153 	sc->iobase = 0x400;
    154 	sc->iosize = 0xbff;
    155 
    156 	/* end XXX */
    157 
    158 	sc->pct = (pcmcia_chipset_tag_t) & pcic_pci_functions;
    159 
    160 	sc->memt = memt;
    161 	sc->memh = memh;
    162 
    163 	switch (PCI_PRODUCT(pa->pa_id)) {
    164 	case PCI_PRODUCT_CIRRUS_CL_PD6729:
    165 		model = "Cirrus Logic PD6729 PCMCIA controller";
    166 		break;
    167 	default:
    168 		model = "Model unknown";
    169 		break;
    170 	}
    171 
    172 	aprint_normal(": %s\n", model);
    173 
    174 	/* Enable the card. */
    175 	pci_conf_write(pc, pa->pa_tag, PCI_COMMAND_STATUS_REG,
    176 	    pci_conf_read(pc, pa->pa_tag, PCI_COMMAND_STATUS_REG) |
    177 	    PCI_COMMAND_MASTER_ENABLE);
    178 
    179 	pcic_attach(sc);
    180 
    181 	/*
    182 	 * Check to see if we're using PCI or ISA interrupts. I don't
    183 	 * know of any i386 systems that use the 6729 in PCI interrupt
    184 	 * mode, but maybe when the PCMCIA code runs on other platforms
    185 	 * we'll need to fix this.
    186 	 */
    187 	pcic_write(&sc->handle[0], PCIC_CIRRUS_EXTENDED_INDEX,
    188 		   PCIC_CIRRUS_EXT_CONTROL_1);
    189 	if ((pcic_read(&sc->handle[0], PCIC_CIRRUS_EXTENDED_DATA) &
    190 	    PCIC_CIRRUS_EXT_CONTROL_1_PCI_INTR_MASK)) {
    191 		aprint_error("%s: PCI interrupts not supported\n",
    192 		       sc->dev.dv_xname);
    193 		return;
    194 	}
    195 
    196 	psc->intr_est = pcic_pci_machdep_intr_est(pc);
    197 	sc->irq = -1;
    198 
    199 #if 0
    200 	/* Map and establish the interrupt. */
    201 	sc->ih = pcic_pci_machdep_pcic_intr_establish(sc, pcic_intr);
    202 	if (sc->ih == NULL) {
    203 		aprint_error("%s: couldn't map interrupt\n", sc->dev.dv_xname);
    204 		return;
    205 	}
    206 #endif
    207 
    208 	/*
    209 	 * Defer configuration of children until ISA has had its chance
    210 	 * to use up whatever IO space and IRQs it wants. XXX This will
    211 	 * only work if ISA is attached to a pcib, AND the PCI probe finds
    212 	 * and defers the ISA attachment before this one.
    213 	 */
    214 	config_defer(self, pcic_pci_callback);
    215 	config_interrupts(self, pcic_isa_config_interrupts);
    216 }
    217 
    218 static void
    219 pcic_pci_callback(self)
    220 	struct device *self;
    221 {
    222 	struct pcic_softc *sc = (void *) self;
    223 
    224 	pcic_attach_sockets(sc);
    225 }
    226