1 /*- 2 * Copyright (c) 2015,2016 Annapurna Labs Ltd. and affiliates 3 * All rights reserved. 4 * 5 * Developed by Semihalf. 6 * 7 * Redistribution and use in source and binary forms, with or without 8 * modification, are permitted provided that the following conditions 9 * are met: 10 * 1. Redistributions of source code must retain the above copyright 11 * notice, this list of conditions and the following disclaimer. 12 * 2. Redistributions in binary form must reproduce the above copyright 13 * notice, this list of conditions and the following disclaimer in the 14 * documentation and/or other materials provided with the distribution. 15 * 16 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND 17 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 18 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 19 * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE 20 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 21 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 22 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 23 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 24 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 25 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 26 * SUCH DAMAGE. 27 */ 28 29 /* 30 * Alpine PCI/PCI-Express controller driver. 31 */ 32 33 #include <sys/cdefs.h> 34 __FBSDID("$FreeBSD$"); 35 36 #include <sys/param.h> 37 #include <sys/systm.h> 38 #include <sys/kernel.h> 39 #include <sys/module.h> 40 #include <sys/bus.h> 41 #include <sys/rman.h> 42 #include <sys/intr.h> 43 44 #include <dev/ofw/openfirm.h> 45 #include <dev/ofw/ofw_bus.h> 46 #include <dev/ofw/ofw_bus_subr.h> 47 #include <dev/pci/pci_host_generic.h> 48 #include <dev/pci/pcivar.h> 49 #include <dev/pci/pcireg.h> 50 51 #include "pcib_if.h" 52 53 #include "contrib/alpine-hal/al_hal_unit_adapter_regs.h" 54 #include "contrib/alpine-hal/al_hal_pcie.h" 55 #include "contrib/alpine-hal/al_hal_pcie_axi_reg.h" 56 57 #define ANNAPURNA_VENDOR_ID 0x1c36 58 59 /* Forward prototypes */ 60 static int al_pcib_probe(device_t); 61 static int al_pcib_attach(device_t); 62 static void al_pcib_fixup(device_t); 63 64 static struct ofw_compat_data compat_data[] = { 65 {"annapurna-labs,al-internal-pcie", true}, 66 {"annapurna-labs,alpine-internal-pcie", true}, 67 {NULL, false} 68 }; 69 70 /* 71 * Bus interface definitions. 72 */ 73 static device_method_t al_pcib_methods[] = { 74 /* Device interface */ 75 DEVMETHOD(device_probe, al_pcib_probe), 76 DEVMETHOD(device_attach, al_pcib_attach), 77 78 DEVMETHOD_END 79 }; 80 81 DEFINE_CLASS_1(pcib, al_pcib_driver, al_pcib_methods, 82 sizeof(struct generic_pcie_softc), generic_pcie_driver); 83 84 static devclass_t anpa_pcib_devclass; 85 86 DRIVER_MODULE(alpine_pcib, simplebus, al_pcib_driver, anpa_pcib_devclass, 0, 0); 87 DRIVER_MODULE(alpine_pcib, ofwbus, al_pcib_driver, anpa_pcib_devclass, 0, 0); 88 89 static int 90 al_pcib_probe(device_t dev) 91 { 92 93 if (!ofw_bus_status_okay(dev)) 94 return (ENXIO); 95 96 if (!ofw_bus_search_compatible(dev, compat_data)->ocd_data) 97 return (ENXIO); 98 99 device_set_desc(dev, 100 "Annapurna-Labs Integrated Internal PCI-E Controller"); 101 return (BUS_PROBE_DEFAULT); 102 } 103 104 static int 105 al_pcib_attach(device_t dev) 106 { 107 int rv; 108 109 rv = pci_host_generic_attach(dev); 110 111 /* Annapurna quirk: configure vendor-specific registers */ 112 if (rv == 0) 113 al_pcib_fixup(dev); 114 115 return (rv); 116 } 117 118 static void 119 al_pcib_fixup(device_t dev) 120 { 121 uint32_t val; 122 uint16_t vid; 123 uint8_t hdrtype; 124 int bus, slot, func, maxfunc; 125 126 /* Fixup is only needed on bus 0 */ 127 bus = 0; 128 for (slot = 0; slot <= PCI_SLOTMAX; slot++) { 129 maxfunc = 0; 130 for (func = 0; func <= maxfunc; func++) { 131 hdrtype = PCIB_READ_CONFIG(dev, bus, slot, func, 132 PCIR_HDRTYPE, 1); 133 134 if ((hdrtype & PCIM_HDRTYPE) > PCI_MAXHDRTYPE) 135 continue; 136 137 if (func == 0 && (hdrtype & PCIM_MFDEV) != 0) 138 maxfunc = PCI_FUNCMAX; 139 140 vid = PCIB_READ_CONFIG(dev, bus, slot, func, 141 PCIR_VENDOR, 2); 142 if (vid == ANNAPURNA_VENDOR_ID) { 143 val = PCIB_READ_CONFIG(dev, bus, slot, func, 144 AL_PCI_AXI_CFG_AND_CTR_0, 4); 145 val |= PCIE_AXI_PF_AXI_ATTR_OVRD_FUNC_CTRL_2_PF_VEC_PH_VEC_OVRD_FROM_AXUSER_MASK; 146 PCIB_WRITE_CONFIG(dev, bus, slot, func, 147 AL_PCI_AXI_CFG_AND_CTR_0, val, 4); 148 149 val = PCIB_READ_CONFIG(dev, bus, slot, func, 150 AL_PCI_APP_CONTROL, 4); 151 val &= ~0xffff; 152 val |= PCIE_AXI_PF_AXI_ATTR_OVRD_FUNC_CTRL_4_PF_VEC_MEM_ADDR54_63_SEL_TGTID_MASK; 153 PCIB_WRITE_CONFIG(dev, bus, slot, func, 154 AL_PCI_APP_CONTROL, val, 4); 155 } 156 } 157 } 158 } 159