1 /*- 2 * Copyright 2015 Justin Hibbits 3 * All rights reserved. 4 * 5 * Redistribution and use in source and binary forms, with or without 6 * modification, are permitted provided that the following conditions 7 * are met: 8 * 1. Redistributions of source code must retain the above copyright 9 * notice, this list of conditions and the following disclaimer. 10 * 2. Redistributions in binary form must reproduce the above copyright 11 * notice, this list of conditions and the following disclaimer in the 12 * documentation and/or other materials provided with the distribution. 13 * 3. The name of the author may not be used to endorse or promote products 14 * derived from this software without specific prior written permission. 15 * 16 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR 17 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES 18 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. 19 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, 20 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, 21 * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; 22 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED 23 * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, 24 * 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 * From: FreeBSD: src/sys/powerpc/mpc85xx/pci_ocp.c,v 1.9 2010/03/23 23:46:28 marcel 29 */ 30 31 #include <sys/cdefs.h> 32 __FBSDID("$FreeBSD$"); 33 34 #include <sys/param.h> 35 #include <sys/systm.h> 36 #include <sys/ktr.h> 37 #include <sys/sockio.h> 38 #include <sys/mbuf.h> 39 #include <sys/malloc.h> 40 #include <sys/kernel.h> 41 #include <sys/module.h> 42 #include <sys/socket.h> 43 #include <sys/queue.h> 44 #include <sys/bus.h> 45 #include <sys/lock.h> 46 #include <sys/mutex.h> 47 #include <sys/rman.h> 48 #include <sys/endian.h> 49 50 #include <vm/vm.h> 51 #include <vm/pmap.h> 52 53 #include <dev/ofw/openfirm.h> 54 #include <dev/ofw/ofw_pci.h> 55 #include <dev/ofw/ofw_bus.h> 56 #include <dev/ofw/ofw_bus_subr.h> 57 58 #include <dev/pci/pcivar.h> 59 #include <dev/pci/pcireg.h> 60 #include <dev/pci/pcib_private.h> 61 62 #include <machine/intr_machdep.h> 63 64 #include "pcib_if.h" 65 66 DECLARE_CLASS(ofw_pcib_pci_driver); 67 68 struct fsl_pcib_softc { 69 /* 70 * This is here so that we can use pci bridge methods, too - the 71 * generic routines only need the dev, secbus and subbus members 72 * filled. 73 * 74 * XXX: This should be extracted from ofw_pcib_pci.c, and shared in a 75 * header. 76 */ 77 struct pcib_softc ops_pcib_sc; 78 phandle_t ops_node; 79 struct ofw_bus_iinfo ops_iinfo; 80 }; 81 82 static int 83 fsl_pcib_rc_probe(device_t dev) 84 { 85 86 if (pci_get_vendor(dev) != 0x1957) 87 return (ENXIO); 88 if (pci_get_progif(dev) != 0) 89 return (ENXIO); 90 if (pci_get_class(dev) != PCIC_PROCESSOR) 91 return (ENXIO); 92 if (pci_get_subclass(dev) != PCIS_PROCESSOR_POWERPC) 93 return (ENXIO); 94 95 device_set_desc(dev, "MPC85xx Root Complex bridge"); 96 97 return (BUS_PROBE_DEFAULT); 98 } 99 100 static device_method_t fsl_pcib_rc_methods[] = { 101 DEVMETHOD(device_probe, fsl_pcib_rc_probe), 102 DEVMETHOD_END 103 }; 104 105 static devclass_t fsl_pcib_rc_devclass; 106 DEFINE_CLASS_1(pcib, fsl_pcib_rc_driver, fsl_pcib_rc_methods, 107 sizeof(struct fsl_pcib_softc), ofw_pcib_pci_driver); 108 EARLY_DRIVER_MODULE(rcpcib, pci, fsl_pcib_rc_driver, fsl_pcib_rc_devclass, 0, 0, 109 BUS_PASS_BUS); 110