1 1.26 jdolecek /* $NetBSD: mpt_pci.c,v 1.26 2018/12/02 13:17:19 jdolecek 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.11 tron * Additional contributions by Garrett D'Amore on behalf of TELES AG. 40 1.11 tron */ 41 1.11 tron 42 1.11 tron /* 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.26 jdolecek __KERNEL_RCSID(0, "$NetBSD: mpt_pci.c,v 1.26 2018/12/02 13:17:19 jdolecek 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.11 tron { PCI_VENDOR_SYMBIOS, PCI_PRODUCT_SYMBIOS_1030 }, 86 1.11 tron { PCI_VENDOR_SYMBIOS, PCI_PRODUCT_SYMBIOS_FC909 }, 87 1.11 tron { PCI_VENDOR_SYMBIOS, PCI_PRODUCT_SYMBIOS_FC909A }, 88 1.11 tron { PCI_VENDOR_SYMBIOS, PCI_PRODUCT_SYMBIOS_FC929 }, 89 1.11 tron { PCI_VENDOR_SYMBIOS, PCI_PRODUCT_SYMBIOS_FC929_1 }, 90 1.11 tron { PCI_VENDOR_SYMBIOS, PCI_PRODUCT_SYMBIOS_FC919 }, 91 1.11 tron { PCI_VENDOR_SYMBIOS, PCI_PRODUCT_SYMBIOS_FC919_1}, 92 1.11 tron { PCI_VENDOR_SYMBIOS, PCI_PRODUCT_SYMBIOS_FC929X }, 93 1.11 tron { PCI_VENDOR_SYMBIOS, PCI_PRODUCT_SYMBIOS_FC919X }, 94 1.11 tron { PCI_VENDOR_SYMBIOS, PCI_PRODUCT_SYMBIOS_FC929X }, 95 1.11 tron { PCI_VENDOR_SYMBIOS, PCI_PRODUCT_SYMBIOS_FC939X }, 96 1.11 tron { PCI_VENDOR_SYMBIOS, PCI_PRODUCT_SYMBIOS_FC949X }, 97 1.11 tron { PCI_VENDOR_SYMBIOS, PCI_PRODUCT_SYMBIOS_SAS1064 }, 98 1.11 tron { PCI_VENDOR_SYMBIOS, PCI_PRODUCT_SYMBIOS_SAS1064A }, 99 1.11 tron { PCI_VENDOR_SYMBIOS, PCI_PRODUCT_SYMBIOS_SAS1064E }, 100 1.12 msaitoh { PCI_VENDOR_SYMBIOS, PCI_PRODUCT_SYMBIOS_SAS1064E_2 }, 101 1.11 tron { PCI_VENDOR_SYMBIOS, PCI_PRODUCT_SYMBIOS_SAS1066 }, 102 1.11 tron { PCI_VENDOR_SYMBIOS, PCI_PRODUCT_SYMBIOS_SAS1066E }, 103 1.11 tron { PCI_VENDOR_SYMBIOS, PCI_PRODUCT_SYMBIOS_SAS1068 }, 104 1.12 msaitoh { PCI_VENDOR_SYMBIOS, PCI_PRODUCT_SYMBIOS_SAS1068_2 }, 105 1.11 tron { PCI_VENDOR_SYMBIOS, PCI_PRODUCT_SYMBIOS_SAS1068E }, 106 1.12 msaitoh { PCI_VENDOR_SYMBIOS, PCI_PRODUCT_SYMBIOS_SAS1068E_2 }, 107 1.11 tron { 0, 0 } 108 1.1 thorpej }; 109 1.1 thorpej 110 1.11 tron static int 111 1.18 cegger mpt_pci_match(device_t parent, cfdata_t cf, void *aux) 112 1.1 thorpej { 113 1.11 tron struct pci_attach_args *pa = aux; 114 1.1 thorpej const struct mpt_pci_product *mpp; 115 1.1 thorpej 116 1.11 tron for (mpp = mpt_pci_products; mpp->mpp_vendor != 0; mpp++) { 117 1.1 thorpej if (PCI_VENDOR(pa->pa_id) == mpp->mpp_vendor && 118 1.1 thorpej PCI_PRODUCT(pa->pa_id) == mpp->mpp_product) 119 1.11 tron return (1); 120 1.1 thorpej } 121 1.1 thorpej 122 1.1 thorpej return (0); 123 1.1 thorpej } 124 1.1 thorpej 125 1.1 thorpej static void 126 1.18 cegger mpt_pci_attach(device_t parent, device_t self, void *aux) 127 1.1 thorpej { 128 1.19 cegger struct mpt_pci_softc *psc = device_private(self); 129 1.1 thorpej mpt_softc_t *mpt = &psc->sc_mpt; 130 1.1 thorpej struct pci_attach_args *pa = aux; 131 1.1 thorpej pci_intr_handle_t ih; 132 1.1 thorpej const char *intrstr; 133 1.1 thorpej pcireg_t reg, memtype; 134 1.1 thorpej bus_space_tag_t memt; 135 1.1 thorpej bus_space_handle_t memh; 136 1.1 thorpej int memh_valid; 137 1.23 christos char intrbuf[PCI_INTRSTR_LEN]; 138 1.1 thorpej 139 1.21 drochner pci_aprint_devinfo(pa, NULL); 140 1.1 thorpej 141 1.1 thorpej psc->sc_pc = pa->pa_pc; 142 1.1 thorpej psc->sc_tag = pa->pa_tag; 143 1.1 thorpej 144 1.22 martin mpt->sc_dev = self; 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.25 msaitoh aprint_error_dev(self, "unable to map device registers\n"); 167 1.1 thorpej return; 168 1.1 thorpej } 169 1.1 thorpej 170 1.1 thorpej /* 171 1.1 thorpej * Make sure the PCI command register is properly configured. 172 1.1 thorpej */ 173 1.1 thorpej reg = pci_conf_read(pa->pa_pc, pa->pa_tag, PCI_COMMAND_STATUS_REG); 174 1.1 thorpej reg |= PCI_COMMAND_MASTER_ENABLE; 175 1.1 thorpej /* XXX PCI_COMMAND_INVALIDATE_ENABLE */ 176 1.1 thorpej /* XXX PCI_COMMAND_PARITY_ENABLE */ 177 1.1 thorpej /* XXX PCI_COMMAND_SERR_ENABLE */ 178 1.1 thorpej pci_conf_write(pa->pa_pc, pa->pa_tag, PCI_COMMAND_STATUS_REG, reg); 179 1.1 thorpej 180 1.1 thorpej /* 181 1.13 tron * Disable split transactions on the 53c1020 and 53c1030 for 182 1.13 tron * revisions older than 8. 183 1.13 tron */ 184 1.13 tron if ((PCI_PRODUCT(pa->pa_id) == PCI_PRODUCT_SYMBIOS_1030) && 185 1.13 tron (PCI_REVISION(pa->pa_class) < 0x08)) { 186 1.22 martin aprint_normal_dev(mpt->sc_dev, "applying 1030 quirk\n"); 187 1.14 joerg reg = pci_conf_read(pa->pa_pc, pa->pa_tag, 0x68); 188 1.14 joerg reg &= 0x8fffff; 189 1.14 joerg pci_conf_write(pa->pa_pc, pa->pa_tag, 0x68, reg); 190 1.13 tron } 191 1.13 tron 192 1.13 tron /* 193 1.13 tron * Ensure that the ROM is disabled. 194 1.1 thorpej */ 195 1.1 thorpej reg = pci_conf_read(pa->pa_pc, pa->pa_tag, PCI_MAPREG_ROM); 196 1.1 thorpej reg &= ~1; 197 1.1 thorpej pci_conf_write(pa->pa_pc, pa->pa_tag, PCI_MAPREG_ROM, reg); 198 1.1 thorpej 199 1.1 thorpej /* 200 1.1 thorpej * Map and establish our interrupt. 201 1.1 thorpej */ 202 1.1 thorpej if (pci_intr_map(pa, &ih) != 0) { 203 1.22 martin aprint_error_dev(mpt->sc_dev, "unable to map interrupt\n"); 204 1.1 thorpej return; 205 1.1 thorpej } 206 1.23 christos intrstr = pci_intr_string(pa->pa_pc, ih, intrbuf, sizeof(intrbuf)); 207 1.26 jdolecek psc->sc_ih = pci_intr_establish_xname(pa->pa_pc, ih, IPL_BIO, mpt_intr, 208 1.26 jdolecek mpt, device_xname(mpt->sc_dev)); 209 1.1 thorpej if (psc->sc_ih == NULL) { 210 1.22 martin aprint_error_dev(mpt->sc_dev, "unable to establish interrupt"); 211 1.1 thorpej if (intrstr != NULL) 212 1.20 njoly aprint_error(" at %s", intrstr); 213 1.20 njoly aprint_error("\n"); 214 1.1 thorpej return; 215 1.1 thorpej } 216 1.24 msaitoh aprint_normal_dev(mpt->sc_dev, "interrupting at %s\n", intrstr); 217 1.1 thorpej 218 1.1 thorpej /* Disable interrupts on the part. */ 219 1.1 thorpej mpt_disable_ints(mpt); 220 1.1 thorpej 221 1.1 thorpej /* Allocate DMA memory. */ 222 1.1 thorpej if (mpt_dma_mem_alloc(mpt) != 0) { 223 1.25 msaitoh aprint_error_dev(self, "unable to allocate DMA memory\n"); 224 1.1 thorpej return; 225 1.1 thorpej } 226 1.1 thorpej 227 1.1 thorpej /* Initialize the hardware. */ 228 1.1 thorpej if (mpt_init(mpt, MPT_DB_INIT_HOST) != 0) { 229 1.1 thorpej /* Error message already printed. */ 230 1.1 thorpej return; 231 1.1 thorpej } 232 1.1 thorpej 233 1.1 thorpej /* Attach to scsipi. */ 234 1.1 thorpej mpt_scsipi_attach(mpt); 235 1.1 thorpej } 236 1.1 thorpej 237 1.22 martin CFATTACH_DECL_NEW(mpt_pci, sizeof(struct mpt_pci_softc), 238 1.1 thorpej mpt_pci_match, mpt_pci_attach, NULL, NULL); 239 1.1 thorpej 240