1 /*- 2 * SPDX-License-Identifier: BSD-2-Clause-FreeBSD 3 * 4 * Copyright 2020 Michal Meloun <mmel@FreeBSD.org> 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 * 15 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND 16 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 17 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 18 * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE 19 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 20 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 21 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 22 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 23 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 24 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 25 * SUCH DAMAGE. 26 * 27 */ 28 29 /* Layerscape DesignWare PCIe driver */ 30 31 #include <sys/cdefs.h> 32 __FBSDID("$FreeBSD$"); 33 34 35 #include <sys/param.h> 36 #include <sys/systm.h> 37 #include <sys/bus.h> 38 #include <sys/devmap.h> 39 #include <sys/proc.h> 40 #include <sys/kernel.h> 41 #include <sys/malloc.h> 42 #include <sys/module.h> 43 #include <sys/mutex.h> 44 #include <sys/rman.h> 45 #include <sys/sysctl.h> 46 47 #include <machine/bus.h> 48 #include <machine/intr.h> 49 #include <machine/resource.h> 50 51 #include <dev/ofw/ofw_bus.h> 52 #include <dev/ofw/ofw_bus_subr.h> 53 #include <dev/ofw/ofw_pci.h> 54 #include <dev/ofw/ofwpci.h> 55 #include <dev/pci/pcivar.h> 56 #include <dev/pci/pcireg.h> 57 #include <dev/pci/pcib_private.h> 58 #include <dev/pci/pci_dw.h> 59 60 #include "pcib_if.h" 61 #include "pci_dw_if.h" 62 63 #define PCIE_ABSERR 0x8D0 64 65 struct qoriq_dw_pci_cfg { 66 uint32_t pex_pf0_dgb; /* offset of PEX_PF0_DBG register */ 67 uint32_t ltssm_bit; /* LSB bit of of LTSSM state field */ 68 }; 69 70 struct qorif_dw_pci_softc { 71 struct pci_dw_softc dw_sc; 72 device_t dev; 73 phandle_t node; 74 struct resource *irq_res; 75 void *intr_cookie; 76 struct qoriq_dw_pci_cfg *soc_cfg; 77 78 }; 79 80 static struct qoriq_dw_pci_cfg ls1043_cfg = { 81 .pex_pf0_dgb = 0x10000 + 0x7FC, 82 .ltssm_bit = 24, 83 }; 84 85 static struct qoriq_dw_pci_cfg ls1012_cfg = { 86 .pex_pf0_dgb = 0x80000 + 0x407FC, 87 .ltssm_bit = 24, 88 }; 89 90 static struct qoriq_dw_pci_cfg ls2080_cfg = { 91 .pex_pf0_dgb = 0x80000 + 0x7FC, 92 .ltssm_bit = 0, 93 }; 94 95 static struct qoriq_dw_pci_cfg ls2028_cfg = { 96 .pex_pf0_dgb = 0x80000 + 0x407FC, 97 .ltssm_bit = 0, 98 }; 99 100 101 /* Compatible devices. */ 102 static struct ofw_compat_data compat_data[] = { 103 {"fsl,ls1012a-pcie", (uintptr_t)&ls1012_cfg}, 104 /* 105 * XXX: On LS1028ARDB attaching this driver causes external abort. 106 * Disable it for now. 107 */ 108 #ifdef notyet 109 {"fsl,ls1028a-pcie", (uintptr_t)&ls2028_cfg}, 110 #endif 111 {"fsl,ls1043a-pcie", (uintptr_t)&ls1043_cfg}, 112 {"fsl,ls1046a-pcie", (uintptr_t)&ls1012_cfg}, 113 {"fsl,ls2080a-pcie", (uintptr_t)&ls2080_cfg}, 114 {"fsl,ls2085a-pcie", (uintptr_t)&ls2080_cfg}, 115 {"fsl,ls2088a-pcie", (uintptr_t)&ls2028_cfg}, 116 {"fsl,ls1088a-pcie", (uintptr_t)&ls2028_cfg}, 117 {NULL, 0}, 118 }; 119 120 static void 121 qorif_dw_pci_dbi_protect(struct qorif_dw_pci_softc *sc, bool protect) 122 { 123 uint32_t reg; 124 125 reg = pci_dw_dbi_rd4(sc->dev, DW_MISC_CONTROL_1); 126 if (protect) 127 reg &= ~DBI_RO_WR_EN; 128 else 129 reg |= DBI_RO_WR_EN; 130 pci_dw_dbi_wr4(sc->dev, DW_MISC_CONTROL_1, reg); 131 } 132 133 static int qorif_dw_pci_intr(void *arg) 134 { 135 #if 0 136 struct qorif_dw_pci_softc *sc = arg; 137 uint32_t cause1, cause2; 138 139 /* Ack all interrups */ 140 cause1 = pci_dw_dbi_rd4(sc->dev, MV_INT_CAUSE1); 141 cause2 = pci_dw_dbi_rd4(sc->dev, MV_INT_CAUSE2); 142 143 pci_dw_dbi_wr4(sc->dev, MV_INT_CAUSE1, cause1); 144 pci_dw_dbi_wr4(sc->dev, MV_INT_CAUSE2, cause2); 145 #endif 146 return (FILTER_HANDLED); 147 } 148 149 static int 150 qorif_dw_pci_get_link(device_t dev, bool *status) 151 { 152 struct qorif_dw_pci_softc *sc; 153 uint32_t reg; 154 155 sc = device_get_softc(dev); 156 reg = pci_dw_dbi_rd4(sc->dev, sc->soc_cfg->pex_pf0_dgb); 157 reg >>= sc->soc_cfg->ltssm_bit; 158 reg &= 0x3F; 159 *status = (reg = 0x11) ? true: false; 160 return (0); 161 } 162 163 static void 164 qorif_dw_pci_init(struct qorif_dw_pci_softc *sc) 165 { 166 167 // ls_pcie_disable_outbound_atus(pcie); 168 169 /* Forward error response */ 170 pci_dw_dbi_wr4(sc->dev, PCIE_ABSERR, 0x9401); 171 172 qorif_dw_pci_dbi_protect(sc, true); 173 pci_dw_dbi_wr1(sc->dev, PCIR_HDRTYPE, 1); 174 qorif_dw_pci_dbi_protect(sc, false); 175 176 // ls_pcie_drop_msg_tlp(pcie); 177 178 } 179 180 static int 181 qorif_dw_pci_probe(device_t dev) 182 { 183 184 if (!ofw_bus_status_okay(dev)) 185 return (ENXIO); 186 187 if (ofw_bus_search_compatible(dev, compat_data)->ocd_data == 0) 188 return (ENXIO); 189 190 device_set_desc(dev, "NPX Layaerscape PCI-E Controller"); 191 return (BUS_PROBE_DEFAULT); 192 } 193 194 static int 195 qorif_dw_pci_attach(device_t dev) 196 { 197 struct qorif_dw_pci_softc *sc; 198 phandle_t node; 199 int rv; 200 int rid; 201 202 sc = device_get_softc(dev); 203 node = ofw_bus_get_node(dev); 204 sc->dev = dev; 205 sc->node = node; 206 sc->soc_cfg = (struct qoriq_dw_pci_cfg *) 207 ofw_bus_search_compatible(dev, compat_data)->ocd_data; 208 209 rid = 0; 210 sc->dw_sc.dbi_res = bus_alloc_resource_any(dev, SYS_RES_MEMORY, &rid, 211 RF_ACTIVE); 212 if (sc->dw_sc.dbi_res == NULL) { 213 device_printf(dev, "Cannot allocate DBI memory\n"); 214 rv = ENXIO; 215 goto out; 216 } 217 218 /* PCI interrupt */ 219 rid = 0; 220 sc->irq_res = bus_alloc_resource_any(dev, SYS_RES_IRQ, &rid, 221 RF_ACTIVE | RF_SHAREABLE); 222 if (sc->irq_res == NULL) { 223 device_printf(dev, "Cannot allocate IRQ resources\n"); 224 rv = ENXIO; 225 goto out; 226 } 227 228 rv = pci_dw_init(dev); 229 if (rv != 0) 230 goto out; 231 232 qorif_dw_pci_init(sc); 233 234 /* Setup interrupt */ 235 if (bus_setup_intr(dev, sc->irq_res, INTR_TYPE_MISC | INTR_MPSAFE, 236 qorif_dw_pci_intr, NULL, sc, &sc->intr_cookie)) { 237 device_printf(dev, "cannot setup interrupt handler\n"); 238 rv = ENXIO; 239 goto out; 240 } 241 242 return (bus_generic_attach(dev)); 243 out: 244 /* XXX Cleanup */ 245 return (rv); 246 } 247 248 static device_method_t qorif_dw_pci_methods[] = { 249 /* Device interface */ 250 DEVMETHOD(device_probe, qorif_dw_pci_probe), 251 DEVMETHOD(device_attach, qorif_dw_pci_attach), 252 253 DEVMETHOD(pci_dw_get_link, qorif_dw_pci_get_link), 254 255 DEVMETHOD_END 256 }; 257 258 DEFINE_CLASS_1(pcib, qorif_dw_pci_driver, qorif_dw_pci_methods, 259 sizeof(struct qorif_dw_pci_softc), pci_dw_driver); 260 static devclass_t qorif_dw_pci_devclass; 261 DRIVER_MODULE( qorif_dw_pci, simplebus, qorif_dw_pci_driver, qorif_dw_pci_devclass, 262 NULL, NULL); 263