Home | History | Annotate | Line # | Download | only in pci
mpt_pci.c revision 1.1.2.4
      1  1.1.2.4    skrll /*	$NetBSD: mpt_pci.c,v 1.1.2.4 2005/01/17 19:31:25 skrll 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.1  thorpej /*
     39      1.1  thorpej  * mpt_pci.c:
     40      1.1  thorpej  *
     41      1.1  thorpej  * NetBSD PCI-specific routines for LSI Fusion adapters.
     42      1.1  thorpej  */
     43      1.1  thorpej 
     44  1.1.2.1    skrll #include <sys/cdefs.h>
     45  1.1.2.4    skrll __KERNEL_RCSID(0, "$NetBSD: mpt_pci.c,v 1.1.2.4 2005/01/17 19:31:25 skrll Exp $");
     46  1.1.2.1    skrll 
     47      1.1  thorpej #include <dev/ic/mpt.h>			/* pulls in all headers */
     48      1.1  thorpej 
     49      1.1  thorpej #include <dev/pci/pcireg.h>
     50      1.1  thorpej #include <dev/pci/pcivar.h>
     51      1.1  thorpej #include <dev/pci/pcidevs.h>
     52      1.1  thorpej 
     53      1.1  thorpej #define	MPT_PCI_MMBA		(PCI_MAPREG_START+0x04)
     54      1.1  thorpej 
     55      1.1  thorpej struct mpt_pci_softc {
     56      1.1  thorpej 	mpt_softc_t sc_mpt;
     57      1.1  thorpej 
     58      1.1  thorpej 	pci_chipset_tag_t sc_pc;
     59      1.1  thorpej 	pcitag_t sc_tag;
     60      1.1  thorpej 
     61      1.1  thorpej 	void *sc_ih;
     62      1.1  thorpej 
     63      1.1  thorpej 	/* Saved volatile PCI configuration registers. */
     64      1.1  thorpej 	pcireg_t sc_pci_csr;
     65      1.1  thorpej 	pcireg_t sc_pci_bhlc;
     66      1.1  thorpej 	pcireg_t sc_pci_io_bar;
     67      1.1  thorpej 	pcireg_t sc_pci_mem0_bar[2];
     68      1.1  thorpej 	pcireg_t sc_pci_mem1_bar[2];
     69      1.1  thorpej 	pcireg_t sc_pci_rom_bar;
     70      1.1  thorpej 	pcireg_t sc_pci_int;
     71      1.1  thorpej 	pcireg_t sc_pci_pmcsr;
     72      1.1  thorpej };
     73      1.1  thorpej 
     74      1.1  thorpej static void	mpt_pci_link_peer(mpt_softc_t *);
     75      1.1  thorpej static void	mpt_pci_read_config_regs(mpt_softc_t *);
     76      1.1  thorpej static void	mpt_pci_set_config_regs(mpt_softc_t *);
     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 	int			mpp_flags;
     85      1.1  thorpej 	const char		*mpp_name;
     86      1.1  thorpej } mpt_pci_products[] = {
     87      1.1  thorpej 	{ PCI_VENDOR_SYMBIOS,	PCI_PRODUCT_SYMBIOS_1030,
     88      1.1  thorpej 	  MPP_F_DUAL,
     89      1.1  thorpej 	  "LSI Logic 53c1030 Ultra320 SCSI" },
     90      1.1  thorpej 
     91      1.1  thorpej 	{ PCI_VENDOR_SYMBIOS,	PCI_PRODUCT_SYMBIOS_FC909,
     92      1.1  thorpej 	  MPP_F_FC,
     93      1.1  thorpej 	  "LSI Logic FC909 FC Adapter" },
     94      1.1  thorpej 	{ PCI_VENDOR_SYMBIOS,	PCI_PRODUCT_SYMBIOS_FC909A,
     95      1.1  thorpej 	  MPP_F_FC,
     96      1.1  thorpej 	  "LSI Logic FC909A FC Adapter" },
     97      1.1  thorpej 	{ PCI_VENDOR_SYMBIOS,	PCI_PRODUCT_SYMBIOS_FC929,
     98      1.1  thorpej 	  MPP_F_FC | MPP_F_DUAL,
     99      1.1  thorpej 	  "LSI Logic FC929 FC Adapter" },
    100      1.1  thorpej 	{ PCI_VENDOR_SYMBIOS,	PCI_PRODUCT_SYMBIOS_FC929_1,
    101      1.1  thorpej 	  MPP_F_FC | MPP_F_DUAL,
    102      1.1  thorpej 	  "LSI Logic FC929 FC Adapter" },
    103      1.1  thorpej 	{ PCI_VENDOR_SYMBIOS,	PCI_PRODUCT_SYMBIOS_FC919,
    104      1.1  thorpej 	  MPP_F_FC,
    105      1.1  thorpej 	  "LSI Logic FC919 FC Adapter" },
    106      1.1  thorpej 	{ PCI_VENDOR_SYMBIOS,	PCI_PRODUCT_SYMBIOS_FC919_1,
    107      1.1  thorpej 	  MPP_F_FC,
    108      1.1  thorpej 	  "LSI Logic FC919 FC Adapter" },
    109  1.1.2.2    skrll 	{ PCI_VENDOR_SYMBIOS,   PCI_PRODUCT_SYMBIOS_FC929X,
    110  1.1.2.2    skrll 	  MPP_F_FC | MPP_F_DUAL,
    111  1.1.2.2    skrll 	  "LSI Logic FC929X FC Adapter" },
    112  1.1.2.4    skrll 	{ PCI_VENDOR_SYMBIOS,	PCI_PRODUCT_SYMBIOS_FC919X,
    113  1.1.2.4    skrll 	  MPP_F_FC,
    114  1.1.2.4    skrll 	  "LSI Logic FC919X FC Adapter" },
    115      1.1  thorpej 
    116      1.1  thorpej 	{ 0,			0,
    117      1.1  thorpej 	  0,
    118      1.1  thorpej 	  NULL },
    119      1.1  thorpej };
    120      1.1  thorpej 
    121      1.1  thorpej static const struct mpt_pci_product *
    122      1.1  thorpej mpt_pci_lookup(const struct pci_attach_args *pa)
    123      1.1  thorpej {
    124      1.1  thorpej 	const struct mpt_pci_product *mpp;
    125      1.1  thorpej 
    126      1.1  thorpej 	for (mpp = mpt_pci_products; mpp->mpp_name != NULL; mpp++) {
    127      1.1  thorpej 		if (PCI_VENDOR(pa->pa_id) == mpp->mpp_vendor &&
    128      1.1  thorpej 		    PCI_PRODUCT(pa->pa_id) == mpp->mpp_product)
    129      1.1  thorpej 			return (mpp);
    130      1.1  thorpej 	}
    131      1.1  thorpej 	return (NULL);
    132      1.1  thorpej }
    133      1.1  thorpej 
    134      1.1  thorpej static int
    135      1.1  thorpej mpt_pci_match(struct device *parent, struct cfdata *cf, void *aux)
    136      1.1  thorpej {
    137      1.1  thorpej 	struct pci_attach_args *pa = aux;
    138      1.1  thorpej 
    139      1.1  thorpej 	if (mpt_pci_lookup(pa) != NULL)
    140      1.1  thorpej 		return (1);
    141      1.1  thorpej 
    142      1.1  thorpej 	return (0);
    143      1.1  thorpej }
    144      1.1  thorpej 
    145      1.1  thorpej static void
    146      1.1  thorpej mpt_pci_attach(struct device *parent, struct device *self, void *aux)
    147      1.1  thorpej {
    148      1.1  thorpej 	struct mpt_pci_softc *psc = (void *) self;
    149      1.1  thorpej 	mpt_softc_t *mpt = &psc->sc_mpt;
    150      1.1  thorpej 	struct pci_attach_args *pa = aux;
    151      1.1  thorpej 	const struct mpt_pci_product *mpp;
    152      1.1  thorpej 	pci_intr_handle_t ih;
    153      1.1  thorpej 	const char *intrstr;
    154      1.1  thorpej 	pcireg_t reg, memtype;
    155      1.1  thorpej 	bus_space_tag_t memt;
    156      1.1  thorpej 	bus_space_handle_t memh;
    157      1.1  thorpej 	int memh_valid;
    158      1.1  thorpej 
    159      1.1  thorpej 	mpp = mpt_pci_lookup(pa);
    160      1.1  thorpej 	if (mpp == NULL) {
    161      1.1  thorpej 		printf("\n");
    162      1.1  thorpej 		panic("mpt_pci_attach");
    163      1.1  thorpej 	}
    164      1.1  thorpej 
    165      1.1  thorpej 	if (mpp->mpp_flags & MPP_F_FC) {
    166      1.1  thorpej 		mpt->is_fc = 1;
    167      1.1  thorpej 		aprint_naive(": Fibre Channel controller\n");
    168      1.1  thorpej 	} else
    169      1.1  thorpej 		aprint_naive(": SCSI controller\n");
    170      1.1  thorpej 	aprint_normal(": %s\n", mpp->mpp_name);
    171      1.1  thorpej 
    172      1.1  thorpej 	psc->sc_pc = pa->pa_pc;
    173      1.1  thorpej 	psc->sc_tag = pa->pa_tag;
    174      1.1  thorpej 
    175      1.1  thorpej 	mpt->sc_dmat = pa->pa_dmat;
    176      1.1  thorpej 	mpt->sc_set_config_regs = mpt_pci_set_config_regs;
    177      1.1  thorpej 
    178      1.1  thorpej 	/*
    179      1.1  thorpej 	 * Map the device.
    180      1.1  thorpej 	 */
    181      1.1  thorpej 	memtype = pci_mapreg_type(pa->pa_pc, pa->pa_tag, MPT_PCI_MMBA);
    182      1.1  thorpej 	switch (memtype) {
    183      1.1  thorpej 	case PCI_MAPREG_TYPE_MEM | PCI_MAPREG_MEM_TYPE_32BIT:
    184      1.1  thorpej 	case PCI_MAPREG_TYPE_MEM | PCI_MAPREG_MEM_TYPE_64BIT:
    185      1.1  thorpej 		memh_valid = (pci_mapreg_map(pa, MPT_PCI_MMBA,
    186      1.1  thorpej 		    memtype, 0, &memt, &memh, NULL, NULL) == 0);
    187      1.1  thorpej 		break;
    188      1.1  thorpej 
    189      1.1  thorpej 	default:
    190      1.1  thorpej 		memh_valid = 0;
    191      1.1  thorpej 	}
    192      1.1  thorpej 
    193      1.1  thorpej 	if (memh_valid) {
    194      1.1  thorpej 		mpt->sc_st = memt;
    195      1.1  thorpej 		mpt->sc_sh = memh;
    196      1.1  thorpej 	} else {
    197      1.1  thorpej 		aprint_error("%s: unable to map device registers\n",
    198      1.1  thorpej 		    mpt->sc_dev.dv_xname);
    199      1.1  thorpej 		return;
    200      1.1  thorpej 	}
    201      1.1  thorpej 
    202      1.1  thorpej 	/*
    203      1.1  thorpej 	 * Make sure the PCI command register is properly configured.
    204      1.1  thorpej 	 */
    205      1.1  thorpej 	reg = pci_conf_read(pa->pa_pc, pa->pa_tag, PCI_COMMAND_STATUS_REG);
    206      1.1  thorpej 	reg |= PCI_COMMAND_MASTER_ENABLE;
    207      1.1  thorpej 	/* XXX PCI_COMMAND_INVALIDATE_ENABLE */
    208      1.1  thorpej 	/* XXX PCI_COMMAND_PARITY_ENABLE */
    209      1.1  thorpej 	/* XXX PCI_COMMAND_SERR_ENABLE */
    210      1.1  thorpej 	pci_conf_write(pa->pa_pc, pa->pa_tag, PCI_COMMAND_STATUS_REG, reg);
    211      1.1  thorpej 
    212      1.1  thorpej 	/*
    213      1.1  thorpej 	 * Ensure that the ROM is diabled.
    214      1.1  thorpej 	 */
    215      1.1  thorpej 	reg = pci_conf_read(pa->pa_pc, pa->pa_tag, PCI_MAPREG_ROM);
    216      1.1  thorpej 	reg &= ~1;
    217      1.1  thorpej 	pci_conf_write(pa->pa_pc, pa->pa_tag, PCI_MAPREG_ROM, reg);
    218      1.1  thorpej 
    219      1.1  thorpej 	/*
    220      1.1  thorpej 	 * Map and establish our interrupt.
    221      1.1  thorpej 	 */
    222      1.1  thorpej 	if (pci_intr_map(pa, &ih) != 0) {
    223      1.1  thorpej 		aprint_error("%s: unable to map interrupt\n",
    224      1.1  thorpej 		    mpt->sc_dev.dv_xname);
    225      1.1  thorpej 		return;
    226      1.1  thorpej 	}
    227      1.1  thorpej 	intrstr = pci_intr_string(pa->pa_pc, ih);
    228      1.1  thorpej 	psc->sc_ih = pci_intr_establish(pa->pa_pc, ih, IPL_BIO, mpt_intr, mpt);
    229      1.1  thorpej 	if (psc->sc_ih == NULL) {
    230      1.1  thorpej 		aprint_error("%s: unable to establish interrupt",
    231      1.1  thorpej 		    mpt->sc_dev.dv_xname);
    232      1.1  thorpej 		if (intrstr != NULL)
    233      1.1  thorpej 			aprint_normal(" at %s", intrstr);
    234      1.1  thorpej 		aprint_normal("\n");
    235      1.1  thorpej 		return;
    236      1.1  thorpej 	}
    237      1.1  thorpej 	aprint_normal("%s: interrupting at %s\n", mpt->sc_dev.dv_xname,
    238      1.1  thorpej 	    intrstr);
    239      1.1  thorpej 
    240      1.1  thorpej 	/* Disable interrupts on the part. */
    241      1.1  thorpej 	mpt_disable_ints(mpt);
    242      1.1  thorpej 
    243      1.1  thorpej 	/* Allocate DMA memory. */
    244      1.1  thorpej 	if (mpt_dma_mem_alloc(mpt) != 0) {
    245      1.1  thorpej 		aprint_error("%s: unable to allocate DMA memory\n",
    246      1.1  thorpej 		    mpt->sc_dev.dv_xname);
    247      1.1  thorpej 		return;
    248      1.1  thorpej 	}
    249      1.1  thorpej 
    250      1.1  thorpej 	/*
    251      1.1  thorpej 	 * Save the PCI config register values.
    252      1.1  thorpej 	 *
    253      1.1  thorpej 	 * Hard resets are known to screw up the BAR for diagnostic
    254      1.1  thorpej 	 * memory accesses (Mem1).
    255      1.1  thorpej 	 *
    256      1.1  thorpej 	 * Using Mem1 is know to make the chip stop responding to
    257      1.1  thorpej 	 * configuration cycles, so we need to save it now.
    258      1.1  thorpej 	 */
    259      1.1  thorpej 	mpt_pci_read_config_regs(mpt);
    260      1.1  thorpej 
    261      1.1  thorpej 	/*
    262      1.1  thorpej 	 * If we're a dual-port adapter, try to find our peer.  We
    263      1.1  thorpej 	 * need to fix his PCI config registers, too.
    264      1.1  thorpej 	 */
    265      1.1  thorpej 	if (mpp->mpp_flags & MPP_F_DUAL)
    266      1.1  thorpej 		mpt_pci_link_peer(mpt);
    267      1.1  thorpej 
    268      1.1  thorpej 	/* Initialize the hardware. */
    269      1.1  thorpej 	if (mpt_init(mpt, MPT_DB_INIT_HOST) != 0) {
    270      1.1  thorpej 		/* Error message already printed. */
    271      1.1  thorpej 		return;
    272      1.1  thorpej 	}
    273      1.1  thorpej 
    274      1.1  thorpej 	/* Attach to scsipi. */
    275      1.1  thorpej 	mpt_scsipi_attach(mpt);
    276      1.1  thorpej }
    277      1.1  thorpej 
    278      1.1  thorpej CFATTACH_DECL(mpt_pci, sizeof(struct mpt_pci_softc),
    279      1.1  thorpej     mpt_pci_match, mpt_pci_attach, NULL, NULL);
    280      1.1  thorpej 
    281      1.1  thorpej /*
    282      1.1  thorpej  * Find and remember our peer PCI function on a dual-port device.
    283      1.1  thorpej  */
    284      1.1  thorpej static void
    285      1.1  thorpej mpt_pci_link_peer(mpt_softc_t *mpt)
    286      1.1  thorpej {
    287      1.1  thorpej 	extern struct cfdriver mpt_cd;
    288      1.1  thorpej 
    289      1.1  thorpej 	struct mpt_pci_softc *peer_psc, *psc = (void *) mpt;
    290      1.1  thorpej 	struct device *dev;
    291      1.1  thorpej 	int unit, b, d, f, peer_b, peer_d, peer_f;
    292      1.1  thorpej 
    293      1.1  thorpej 	pci_decompose_tag(psc->sc_pc, psc->sc_tag, &b, &d, &f);
    294      1.1  thorpej 
    295      1.1  thorpej 	for (unit = 0; unit < mpt_cd.cd_ndevs; unit++) {
    296      1.1  thorpej 		if (unit == mpt->sc_dev.dv_unit)
    297      1.1  thorpej 			continue;
    298      1.1  thorpej 		dev = device_lookup(&mpt_cd, unit);
    299      1.1  thorpej 		if (dev == NULL)
    300      1.1  thorpej 			continue;
    301      1.1  thorpej 		if (dev->dv_cfattach != &mpt_pci_ca)
    302      1.1  thorpej 			continue;
    303      1.1  thorpej 		peer_psc = (void *) dev;
    304      1.1  thorpej 		if (peer_psc->sc_pc != psc->sc_pc)
    305      1.1  thorpej 			continue;
    306      1.1  thorpej 		pci_decompose_tag(peer_psc->sc_pc, peer_psc->sc_tag,
    307      1.1  thorpej 		    &peer_b, &peer_d, &peer_f);
    308      1.1  thorpej 		if (peer_b == b && peer_d == d) {
    309      1.1  thorpej 			if (mpt->verbose)
    310      1.1  thorpej 				mpt_prt(mpt, "linking with peer: %s",
    311      1.1  thorpej 				    peer_psc->sc_mpt.sc_dev.dv_xname);
    312      1.1  thorpej 			mpt->mpt2 = (mpt_softc_t *) peer_psc;
    313      1.1  thorpej 			peer_psc->sc_mpt.mpt2 = mpt;
    314      1.1  thorpej 			return;
    315      1.1  thorpej 		}
    316      1.1  thorpej 	}
    317      1.1  thorpej }
    318      1.1  thorpej 
    319      1.1  thorpej /*
    320      1.1  thorpej  * Save the volatile PCI configuration registers.
    321      1.1  thorpej  */
    322      1.1  thorpej static void
    323      1.1  thorpej mpt_pci_read_config_regs(mpt_softc_t *mpt)
    324      1.1  thorpej {
    325      1.1  thorpej 	struct mpt_pci_softc *psc = (void *) mpt;
    326      1.1  thorpej 
    327      1.1  thorpej 	psc->sc_pci_csr = pci_conf_read(psc->sc_pc, psc->sc_tag,
    328      1.1  thorpej 	    PCI_COMMAND_STATUS_REG);
    329      1.1  thorpej 	psc->sc_pci_bhlc = pci_conf_read(psc->sc_pc, psc->sc_tag,
    330      1.1  thorpej 	    PCI_BHLC_REG);
    331      1.1  thorpej 	psc->sc_pci_io_bar = pci_conf_read(psc->sc_pc, psc->sc_tag,
    332      1.1  thorpej 	    PCI_MAPREG_START);
    333      1.1  thorpej 	psc->sc_pci_mem0_bar[0] = pci_conf_read(psc->sc_pc, psc->sc_tag,
    334      1.1  thorpej 	    PCI_MAPREG_START+0x04);
    335      1.1  thorpej 	psc->sc_pci_mem0_bar[1] = pci_conf_read(psc->sc_pc, psc->sc_tag,
    336      1.1  thorpej 	    PCI_MAPREG_START+0x08);
    337      1.1  thorpej 	psc->sc_pci_mem1_bar[0] = pci_conf_read(psc->sc_pc, psc->sc_tag,
    338      1.1  thorpej 	    PCI_MAPREG_START+0x0c);
    339      1.1  thorpej 	psc->sc_pci_mem1_bar[1] = pci_conf_read(psc->sc_pc, psc->sc_tag,
    340      1.1  thorpej 	    PCI_MAPREG_START+0x10);
    341      1.1  thorpej 	psc->sc_pci_rom_bar = pci_conf_read(psc->sc_pc, psc->sc_tag,
    342      1.1  thorpej 	    PCI_MAPREG_ROM);
    343      1.1  thorpej 	psc->sc_pci_int = pci_conf_read(psc->sc_pc, psc->sc_tag,
    344      1.1  thorpej 	    PCI_INTERRUPT_REG);
    345      1.1  thorpej 	psc->sc_pci_pmcsr = pci_conf_read(psc->sc_pc, psc->sc_tag, 0x44);
    346      1.1  thorpej }
    347      1.1  thorpej 
    348      1.1  thorpej /*
    349      1.1  thorpej  * Restore the volatile PCI configuration registers.
    350      1.1  thorpej  */
    351      1.1  thorpej static void
    352      1.1  thorpej mpt_pci_set_config_regs(mpt_softc_t *mpt)
    353      1.1  thorpej {
    354      1.1  thorpej 	struct mpt_pci_softc *psc = (void *) mpt;
    355      1.1  thorpej 
    356      1.1  thorpej 	pci_conf_write(psc->sc_pc, psc->sc_tag, PCI_COMMAND_STATUS_REG,
    357      1.1  thorpej 	    psc->sc_pci_csr);
    358      1.1  thorpej 	pci_conf_write(psc->sc_pc, psc->sc_tag, PCI_BHLC_REG,
    359      1.1  thorpej 	    psc->sc_pci_bhlc);
    360      1.1  thorpej 	pci_conf_write(psc->sc_pc, psc->sc_tag, PCI_MAPREG_START,
    361      1.1  thorpej 	    psc->sc_pci_io_bar);
    362      1.1  thorpej 	pci_conf_write(psc->sc_pc, psc->sc_tag, PCI_MAPREG_START+0x04,
    363      1.1  thorpej 	    psc->sc_pci_mem0_bar[0]);
    364      1.1  thorpej 	pci_conf_write(psc->sc_pc, psc->sc_tag, PCI_MAPREG_START+0x08,
    365      1.1  thorpej 	    psc->sc_pci_mem0_bar[1]);
    366      1.1  thorpej 	pci_conf_write(psc->sc_pc, psc->sc_tag, PCI_MAPREG_START+0x0c,
    367      1.1  thorpej 	    psc->sc_pci_mem1_bar[0]);
    368      1.1  thorpej 	pci_conf_write(psc->sc_pc, psc->sc_tag, PCI_MAPREG_START+0x10,
    369      1.1  thorpej 	    psc->sc_pci_mem1_bar[1]);
    370      1.1  thorpej 	pci_conf_write(psc->sc_pc, psc->sc_tag, PCI_MAPREG_ROM,
    371      1.1  thorpej 	    psc->sc_pci_rom_bar);
    372      1.1  thorpej 	pci_conf_write(psc->sc_pc, psc->sc_tag, PCI_INTERRUPT_REG,
    373      1.1  thorpej 	    psc->sc_pci_int);
    374      1.1  thorpej 	pci_conf_write(psc->sc_pc, psc->sc_tag, 0x44, psc->sc_pci_pmcsr);
    375      1.1  thorpej }
    376