1 /*- 2 * Copyright (c) 2001,2002 S�ren Schmidt <sos@FreeBSD.org> 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 * without modification, immediately at the beginning of the file. 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 * 3. The name of the author may not be used to endorse or promote products 15 * derived from this software without specific prior written permission. 16 * 17 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR 18 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES 19 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. 20 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, 21 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT 22 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, 23 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY 24 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 25 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF 26 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 27 * 28 * $FreeBSD$ 29 */ 30 31 #include <sys/param.h> 32 #include <sys/systm.h> 33 #include <sys/kernel.h> 34 #include <sys/module.h> 35 #include <sys/bus.h> 36 #include <sys/bio.h> 37 #include <sys/malloc.h> 38 #include <vm/vm.h> 39 #include <vm/pmap.h> 40 #include <machine/stdarg.h> 41 #include <machine/resource.h> 42 #include <machine/bus.h> 43 #include <sys/rman.h> 44 #include <pci/pcivar.h> 45 #include <pci/pcireg.h> 46 47 #include "dev/pst/pst-iop.h" 48 49 static int 50 iop_pci_probe(device_t dev) 51 { 52 /* tested with actual hardware kindly donated by Promise */ 53 if (pci_get_devid(dev) == 0x19628086 && pci_get_subvendor(dev) == 0x105a) { 54 device_set_desc(dev, "Promise SuperTrak SX6000 ATA RAID controller"); 55 return 0; 56 } 57 58 /* support the older SuperTrak 100 as well */ 59 if (pci_get_devid(dev) == 0x19608086 && pci_get_subvendor(dev) == 0x105a) { 60 device_set_desc(dev, "Promise SuperTrak 100 ATA RAID controller"); 61 return 0; 62 } 63 64 return ENXIO; 65 } 66 67 static int 68 iop_pci_attach(device_t dev) 69 { 70 struct iop_softc *sc = device_get_softc(dev); 71 int rid; 72 73 bzero(sc, sizeof(struct iop_softc)); 74 75 /* get resources */ 76 rid = 0x10; 77 sc->r_mem = 78 bus_alloc_resource(dev, SYS_RES_MEMORY, &rid, 0, ~0, 1, RF_ACTIVE); 79 80 if (!sc->r_mem) 81 return 0; 82 83 rid = 0x00; 84 sc->r_irq = bus_alloc_resource(dev, SYS_RES_IRQ, &rid, 0, ~0, 85 1, RF_SHAREABLE | RF_ACTIVE); 86 87 /* now setup the infrastructure to talk to the device */ 88 pci_write_config(dev, PCIR_COMMAND, 89 pci_read_config(dev, PCIR_COMMAND, 1) | 90 PCIM_CMD_MEMEN | PCIM_CMD_BUSMASTEREN, 1); 91 92 sc->ibase = rman_get_virtual(sc->r_mem); 93 sc->phys_ibase = vtophys(sc->ibase); 94 sc->reg = (struct i2o_registers *)sc->ibase; 95 sc->dev = dev; 96 97 if (!iop_init(sc)) 98 return 0; 99 100 return bus_generic_attach(dev); 101 } 102 103 static device_method_t pst_pci_methods[] = { 104 DEVMETHOD(device_probe, iop_pci_probe), 105 DEVMETHOD(device_attach, iop_pci_attach), 106 { 0, 0 } 107 }; 108 109 static driver_t pst_pci_driver = { 110 "pstpci", 111 pst_pci_methods, 112 sizeof(struct iop_softc), 113 }; 114 115 static devclass_t pst_pci_devclass; 116 117 DRIVER_MODULE(pstpci, pci, pst_pci_driver, pst_pci_devclass, 0, 0); 118