Home | History | Annotate | Line # | Download | only in pci
mpt_pci.c revision 1.5.2.1
      1  1.5.2.1   bouyer /*	$NetBSD: mpt_pci.c,v 1.5.2.1 2007/09/13 19:45:59 bouyer Exp $	*/
      2      1.1  thorpej 
      3      1.1  thorpej /*
      4      1.1  thorpej  * Copyright (c) 2003 Wasabi Systems, Inc.
      5      1.1  thorpej  * All rights reserved.
      6      1.1  thorpej  *
      7      1.1  thorpej  * Written by Jason R. Thorpe for Wasabi Systems, Inc.
      8      1.1  thorpej  *
      9      1.1  thorpej  * Redistribution and use in source and binary forms, with or without
     10      1.1  thorpej  * modification, are permitted provided that the following conditions
     11      1.1  thorpej  * are met:
     12      1.1  thorpej  * 1. Redistributions of source code must retain the above copyright
     13      1.1  thorpej  *    notice, this list of conditions and the following disclaimer.
     14      1.1  thorpej  * 2. Redistributions in binary form must reproduce the above copyright
     15      1.1  thorpej  *    notice, this list of conditions and the following disclaimer in the
     16      1.1  thorpej  *    documentation and/or other materials provided with the distribution.
     17      1.1  thorpej  * 3. All advertising materials mentioning features or use of this software
     18      1.1  thorpej  *    must display the following acknowledgement:
     19      1.1  thorpej  *	This product includes software developed for the NetBSD Project by
     20      1.1  thorpej  *	Wasabi Systems, Inc.
     21      1.1  thorpej  * 4. The name of Wasabi Systems, Inc. may not be used to endorse
     22      1.1  thorpej  *    or promote products derived from this software without specific prior
     23      1.1  thorpej  *    written permission.
     24      1.1  thorpej  *
     25      1.1  thorpej  * THIS SOFTWARE IS PROVIDED BY WASABI SYSTEMS, INC. ``AS IS'' AND
     26      1.1  thorpej  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
     27      1.1  thorpej  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
     28      1.1  thorpej  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL WASABI SYSTEMS, INC
     29      1.1  thorpej  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
     30      1.1  thorpej  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
     31      1.1  thorpej  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
     32      1.1  thorpej  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
     33      1.1  thorpej  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
     34      1.1  thorpej  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
     35      1.1  thorpej  * POSSIBILITY OF SUCH DAMAGE.
     36      1.1  thorpej  */
     37      1.1  thorpej 
     38      1.5    perry /*
     39  1.5.2.1   bouyer  * Additional contributions by Garrett D'Amore on behalf of TELES AG.
     40  1.5.2.1   bouyer  */
     41  1.5.2.1   bouyer 
     42  1.5.2.1   bouyer /*
     43      1.1  thorpej  * mpt_pci.c:
     44      1.1  thorpej  *
     45      1.1  thorpej  * NetBSD PCI-specific routines for LSI Fusion adapters.
     46      1.5    perry  */
     47      1.2    lukem 
     48      1.2    lukem #include <sys/cdefs.h>
     49  1.5.2.1   bouyer __KERNEL_RCSID(0, "$NetBSD: mpt_pci.c,v 1.5.2.1 2007/09/13 19:45:59 bouyer Exp $");
     50      1.1  thorpej 
     51      1.1  thorpej #include <dev/ic/mpt.h>			/* pulls in all headers */
     52      1.1  thorpej 
     53      1.1  thorpej #include <dev/pci/pcireg.h>
     54      1.1  thorpej #include <dev/pci/pcivar.h>
     55      1.1  thorpej #include <dev/pci/pcidevs.h>
     56      1.1  thorpej 
     57      1.1  thorpej #define	MPT_PCI_MMBA		(PCI_MAPREG_START+0x04)
     58      1.1  thorpej 
     59      1.1  thorpej struct mpt_pci_softc {
     60      1.1  thorpej 	mpt_softc_t sc_mpt;
     61      1.1  thorpej 
     62      1.1  thorpej 	pci_chipset_tag_t sc_pc;
     63      1.1  thorpej 	pcitag_t sc_tag;
     64      1.1  thorpej 
     65      1.1  thorpej 	void *sc_ih;
     66      1.1  thorpej 
     67      1.1  thorpej 	/* Saved volatile PCI configuration registers. */
     68      1.1  thorpej 	pcireg_t sc_pci_csr;
     69      1.1  thorpej 	pcireg_t sc_pci_bhlc;
     70      1.1  thorpej 	pcireg_t sc_pci_io_bar;
     71      1.1  thorpej 	pcireg_t sc_pci_mem0_bar[2];
     72      1.1  thorpej 	pcireg_t sc_pci_mem1_bar[2];
     73      1.1  thorpej 	pcireg_t sc_pci_rom_bar;
     74      1.1  thorpej 	pcireg_t sc_pci_int;
     75      1.1  thorpej 	pcireg_t sc_pci_pmcsr;
     76      1.1  thorpej };
     77      1.1  thorpej 
     78      1.1  thorpej #define	MPP_F_FC	0x01	/* Fibre Channel adapter */
     79      1.1  thorpej #define	MPP_F_DUAL	0x02	/* Dual port adapter */
     80      1.1  thorpej 
     81      1.1  thorpej static const struct mpt_pci_product {
     82      1.1  thorpej 	pci_vendor_id_t		mpp_vendor;
     83      1.1  thorpej 	pci_product_id_t	mpp_product;
     84      1.1  thorpej } mpt_pci_products[] = {
     85  1.5.2.1   bouyer 	{ PCI_VENDOR_SYMBIOS,	PCI_PRODUCT_SYMBIOS_1030 },
     86  1.5.2.1   bouyer 	{ PCI_VENDOR_SYMBIOS,	PCI_PRODUCT_SYMBIOS_FC909 },
     87  1.5.2.1   bouyer 	{ PCI_VENDOR_SYMBIOS,	PCI_PRODUCT_SYMBIOS_FC909A },
     88  1.5.2.1   bouyer 	{ PCI_VENDOR_SYMBIOS,	PCI_PRODUCT_SYMBIOS_FC929 },
     89  1.5.2.1   bouyer 	{ PCI_VENDOR_SYMBIOS,	PCI_PRODUCT_SYMBIOS_FC929_1 },
     90  1.5.2.1   bouyer 	{ PCI_VENDOR_SYMBIOS,	PCI_PRODUCT_SYMBIOS_FC919 },
     91  1.5.2.1   bouyer 	{ PCI_VENDOR_SYMBIOS,	PCI_PRODUCT_SYMBIOS_FC919_1},
     92  1.5.2.1   bouyer 	{ PCI_VENDOR_SYMBIOS,   PCI_PRODUCT_SYMBIOS_FC929X },
     93  1.5.2.1   bouyer 	{ PCI_VENDOR_SYMBIOS,	PCI_PRODUCT_SYMBIOS_FC919X },
     94  1.5.2.1   bouyer 	{ PCI_VENDOR_SYMBIOS,	PCI_PRODUCT_SYMBIOS_FC929X },
     95  1.5.2.1   bouyer 	{ PCI_VENDOR_SYMBIOS,	PCI_PRODUCT_SYMBIOS_FC939X },
     96  1.5.2.1   bouyer 	{ PCI_VENDOR_SYMBIOS,	PCI_PRODUCT_SYMBIOS_FC949X },
     97  1.5.2.1   bouyer 	{ PCI_VENDOR_SYMBIOS,	PCI_PRODUCT_SYMBIOS_SAS1064 },
     98  1.5.2.1   bouyer 	{ PCI_VENDOR_SYMBIOS,	PCI_PRODUCT_SYMBIOS_SAS1064A },
     99  1.5.2.1   bouyer 	{ PCI_VENDOR_SYMBIOS,	PCI_PRODUCT_SYMBIOS_SAS1064E },
    100  1.5.2.1   bouyer 	{ PCI_VENDOR_SYMBIOS,	PCI_PRODUCT_SYMBIOS_SAS1066 },
    101  1.5.2.1   bouyer 	{ PCI_VENDOR_SYMBIOS,	PCI_PRODUCT_SYMBIOS_SAS1066E },
    102  1.5.2.1   bouyer 	{ PCI_VENDOR_SYMBIOS,	PCI_PRODUCT_SYMBIOS_SAS1068 },
    103  1.5.2.1   bouyer 	{ PCI_VENDOR_SYMBIOS,	PCI_PRODUCT_SYMBIOS_SAS1078 },
    104  1.5.2.1   bouyer 	{ PCI_VENDOR_SYMBIOS,	PCI_PRODUCT_SYMBIOS_SAS1068E },
    105  1.5.2.1   bouyer 	{ 0,			0 }
    106      1.1  thorpej };
    107      1.1  thorpej 
    108  1.5.2.1   bouyer static int
    109  1.5.2.1   bouyer mpt_pci_match(struct device *parent, struct cfdata *cf, void *aux)
    110      1.1  thorpej {
    111  1.5.2.1   bouyer 	struct pci_attach_args *pa = aux;
    112      1.1  thorpej 	const struct mpt_pci_product *mpp;
    113      1.1  thorpej 
    114  1.5.2.1   bouyer 	for (mpp = mpt_pci_products; mpp->mpp_vendor != 0; mpp++) {
    115      1.1  thorpej 		if (PCI_VENDOR(pa->pa_id) == mpp->mpp_vendor &&
    116      1.1  thorpej 		    PCI_PRODUCT(pa->pa_id) == mpp->mpp_product)
    117  1.5.2.1   bouyer 			return (1);
    118      1.1  thorpej 	}
    119      1.1  thorpej 
    120      1.1  thorpej 	return (0);
    121      1.1  thorpej }
    122      1.1  thorpej 
    123      1.1  thorpej static void
    124      1.1  thorpej mpt_pci_attach(struct device *parent, struct device *self, void *aux)
    125      1.1  thorpej {
    126      1.1  thorpej 	struct mpt_pci_softc *psc = (void *) self;
    127      1.1  thorpej 	mpt_softc_t *mpt = &psc->sc_mpt;
    128      1.1  thorpej 	struct pci_attach_args *pa = aux;
    129      1.1  thorpej 	pci_intr_handle_t ih;
    130      1.1  thorpej 	const char *intrstr;
    131      1.1  thorpej 	pcireg_t reg, memtype;
    132      1.1  thorpej 	bus_space_tag_t memt;
    133      1.1  thorpej 	bus_space_handle_t memh;
    134      1.1  thorpej 	int memh_valid;
    135  1.5.2.1   bouyer 	char devinfo[200];
    136      1.1  thorpej 
    137  1.5.2.1   bouyer 	pci_devinfo(pa->pa_id, 0, 0, devinfo, sizeof (devinfo));
    138      1.1  thorpej 
    139  1.5.2.1   bouyer 	aprint_naive("\n");
    140  1.5.2.1   bouyer 	aprint_normal(": %s\n", devinfo);
    141      1.1  thorpej 
    142      1.1  thorpej 	psc->sc_pc = pa->pa_pc;
    143      1.1  thorpej 	psc->sc_tag = pa->pa_tag;
    144      1.1  thorpej 
    145      1.1  thorpej 	mpt->sc_dmat = pa->pa_dmat;
    146      1.1  thorpej 
    147      1.1  thorpej 	/*
    148      1.1  thorpej 	 * Map the device.
    149      1.1  thorpej 	 */
    150      1.1  thorpej 	memtype = pci_mapreg_type(pa->pa_pc, pa->pa_tag, MPT_PCI_MMBA);
    151      1.1  thorpej 	switch (memtype) {
    152      1.1  thorpej 	case PCI_MAPREG_TYPE_MEM | PCI_MAPREG_MEM_TYPE_32BIT:
    153      1.1  thorpej 	case PCI_MAPREG_TYPE_MEM | PCI_MAPREG_MEM_TYPE_64BIT:
    154      1.1  thorpej 		memh_valid = (pci_mapreg_map(pa, MPT_PCI_MMBA,
    155      1.1  thorpej 		    memtype, 0, &memt, &memh, NULL, NULL) == 0);
    156      1.1  thorpej 		break;
    157      1.1  thorpej 
    158      1.1  thorpej 	default:
    159      1.1  thorpej 		memh_valid = 0;
    160      1.1  thorpej 	}
    161      1.1  thorpej 
    162      1.1  thorpej 	if (memh_valid) {
    163      1.1  thorpej 		mpt->sc_st = memt;
    164      1.1  thorpej 		mpt->sc_sh = memh;
    165      1.1  thorpej 	} else {
    166      1.1  thorpej 		aprint_error("%s: unable to map device registers\n",
    167      1.1  thorpej 		    mpt->sc_dev.dv_xname);
    168      1.1  thorpej 		return;
    169      1.1  thorpej 	}
    170      1.1  thorpej 
    171      1.1  thorpej 	/*
    172      1.1  thorpej 	 * Make sure the PCI command register is properly configured.
    173      1.1  thorpej 	 */
    174      1.1  thorpej 	reg = pci_conf_read(pa->pa_pc, pa->pa_tag, PCI_COMMAND_STATUS_REG);
    175      1.1  thorpej 	reg |= PCI_COMMAND_MASTER_ENABLE;
    176      1.1  thorpej 	/* XXX PCI_COMMAND_INVALIDATE_ENABLE */
    177      1.1  thorpej 	/* XXX PCI_COMMAND_PARITY_ENABLE */
    178      1.1  thorpej 	/* XXX PCI_COMMAND_SERR_ENABLE */
    179      1.1  thorpej 	pci_conf_write(pa->pa_pc, pa->pa_tag, PCI_COMMAND_STATUS_REG, reg);
    180      1.1  thorpej 
    181      1.1  thorpej 	/*
    182      1.1  thorpej 	 * Ensure that the ROM is diabled.
    183      1.1  thorpej 	 */
    184      1.1  thorpej 	reg = pci_conf_read(pa->pa_pc, pa->pa_tag, PCI_MAPREG_ROM);
    185      1.1  thorpej 	reg &= ~1;
    186      1.1  thorpej 	pci_conf_write(pa->pa_pc, pa->pa_tag, PCI_MAPREG_ROM, reg);
    187      1.1  thorpej 
    188      1.1  thorpej 	/*
    189      1.1  thorpej 	 * Map and establish our interrupt.
    190      1.1  thorpej 	 */
    191      1.1  thorpej 	if (pci_intr_map(pa, &ih) != 0) {
    192      1.1  thorpej 		aprint_error("%s: unable to map interrupt\n",
    193      1.1  thorpej 		    mpt->sc_dev.dv_xname);
    194      1.1  thorpej 		return;
    195      1.1  thorpej 	}
    196      1.1  thorpej 	intrstr = pci_intr_string(pa->pa_pc, ih);
    197      1.1  thorpej 	psc->sc_ih = pci_intr_establish(pa->pa_pc, ih, IPL_BIO, mpt_intr, mpt);
    198      1.1  thorpej 	if (psc->sc_ih == NULL) {
    199      1.1  thorpej 		aprint_error("%s: unable to establish interrupt",
    200      1.1  thorpej 		    mpt->sc_dev.dv_xname);
    201      1.1  thorpej 		if (intrstr != NULL)
    202      1.1  thorpej 			aprint_normal(" at %s", intrstr);
    203      1.1  thorpej 		aprint_normal("\n");
    204      1.1  thorpej 		return;
    205      1.1  thorpej 	}
    206      1.1  thorpej 	aprint_normal("%s: interrupting at %s\n", mpt->sc_dev.dv_xname,
    207      1.1  thorpej 	    intrstr);
    208      1.1  thorpej 
    209      1.1  thorpej 	/* Disable interrupts on the part. */
    210      1.1  thorpej 	mpt_disable_ints(mpt);
    211      1.1  thorpej 
    212      1.1  thorpej 	/* Allocate DMA memory. */
    213      1.1  thorpej 	if (mpt_dma_mem_alloc(mpt) != 0) {
    214      1.1  thorpej 		aprint_error("%s: unable to allocate DMA memory\n",
    215      1.1  thorpej 		    mpt->sc_dev.dv_xname);
    216      1.1  thorpej 		return;
    217      1.1  thorpej 	}
    218      1.1  thorpej 
    219      1.1  thorpej 	/* Initialize the hardware. */
    220      1.1  thorpej 	if (mpt_init(mpt, MPT_DB_INIT_HOST) != 0) {
    221      1.1  thorpej 		/* Error message already printed. */
    222      1.1  thorpej 		return;
    223      1.1  thorpej 	}
    224      1.1  thorpej 
    225      1.1  thorpej 	/* Attach to scsipi. */
    226      1.1  thorpej 	mpt_scsipi_attach(mpt);
    227      1.1  thorpej }
    228      1.1  thorpej 
    229      1.1  thorpej CFATTACH_DECL(mpt_pci, sizeof(struct mpt_pci_softc),
    230      1.1  thorpej     mpt_pci_match, mpt_pci_attach, NULL, NULL);
    231      1.1  thorpej 
    232