The Design and Implementation of the FreeBSD Operating System, Second Edition
Now available: The Design and Implementation of the FreeBSD Operating System (Second Edition)


[ source navigation ] [ diff markup ] [ identifier search ] [ freetext search ] [ file search ] [ list types ] [ track identifier ]

FreeBSD/Linux Kernel Cross Reference
sys/dev/raid/pst/pst-pci.c

Version: -  FREEBSD  -  FREEBSD-13-STABLE  -  FREEBSD-13-0  -  FREEBSD-12-STABLE  -  FREEBSD-12-0  -  FREEBSD-11-STABLE  -  FREEBSD-11-0  -  FREEBSD-10-STABLE  -  FREEBSD-10-0  -  FREEBSD-9-STABLE  -  FREEBSD-9-0  -  FREEBSD-8-STABLE  -  FREEBSD-8-0  -  FREEBSD-7-STABLE  -  FREEBSD-7-0  -  FREEBSD-6-STABLE  -  FREEBSD-6-0  -  FREEBSD-5-STABLE  -  FREEBSD-5-0  -  FREEBSD-4-STABLE  -  FREEBSD-3-STABLE  -  FREEBSD22  -  l41  -  OPENBSD  -  linux-2.6  -  MK84  -  PLAN9  -  xnu-8792 
SearchContext: -  none  -  3  -  10 

    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: src/sys/dev/pst/pst-pci.c,v 1.1.2.1 2002/08/18 12:32:36 sos Exp $
   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/buf.h>
   37 #include <sys/malloc.h>
   38 #include <sys/rman.h>
   39 
   40 #include <vm/vm.h>
   41 #include <vm/pmap.h>
   42 
   43 #include <machine/stdarg.h>
   44 
   45 #include <bus/pci/pcivar.h>
   46 #include <bus/pci/pcireg.h>
   47 
   48 #include "pst-iop.h"
   49 
   50 static int
   51 iop_pci_probe(device_t dev)
   52 {
   53     /* tested with actual hardware kindly donated by Promise */
   54     if (pci_get_devid(dev) == 0x19628086 && pci_get_subvendor(dev) == 0x105a) {
   55         device_set_desc(dev, "Promise SuperTrak SX6000 ATA RAID controller");
   56         return 0;
   57     } 
   58 
   59     /* this should work as well (not tested no hardware) */
   60     if (pci_get_devid(dev) == 0x09628086 && pci_get_subvendor(dev) == 0x105a) {
   61         device_set_desc(dev, "Promise SuperTrak 100 ATA RAID controller");
   62         return 0;
   63     } 
   64 
   65     return ENXIO;
   66 }
   67 
   68 static int
   69 iop_pci_attach(device_t dev)
   70 {
   71     struct iop_softc *sc = device_get_softc(dev);
   72     int rid;
   73 
   74     bzero(sc, sizeof(struct iop_softc));
   75 
   76     /* get resources */
   77     rid = 0x10;
   78     sc->r_mem = 
   79         bus_alloc_resource(dev, SYS_RES_MEMORY, &rid, 0, ~0, 1, RF_ACTIVE);
   80 
   81     if (!sc->r_mem)
   82         return 0;
   83 
   84     rid = 0x00;
   85     sc->r_irq = bus_alloc_resource(dev, SYS_RES_IRQ, &rid, 0, ~0,
   86                                    1, RF_SHAREABLE | RF_ACTIVE);
   87 
   88     /* now setup the infrastructure to talk to the device */
   89     pci_write_config(dev, PCIR_COMMAND,
   90                      pci_read_config(dev, PCIR_COMMAND, 1) |
   91                      PCIM_CMD_MEMEN | PCIM_CMD_BUSMASTEREN, 1);
   92 
   93     sc->ibase = rman_get_virtual(sc->r_mem);
   94     sc->phys_ibase = vtophys(sc->ibase);
   95     sc->reg = (struct i2o_registers *)sc->ibase;
   96     sc->dev = dev;
   97 
   98     if (!iop_init(sc))
   99         return 0;
  100 
  101     return bus_generic_attach(dev);
  102 }
  103 
  104 static device_method_t pst_pci_methods[] = {
  105     DEVMETHOD(device_probe,             iop_pci_probe),
  106     DEVMETHOD(device_attach,            iop_pci_attach),
  107     DEVMETHOD_END
  108 };
  109 
  110 static driver_t pst_pci_driver = {
  111     "pstpci",
  112     pst_pci_methods,
  113     sizeof(struct iop_softc),
  114 };
  115 
  116 static devclass_t pst_pci_devclass;
  117 
  118 DRIVER_MODULE(pstpci, pci, pst_pci_driver, pst_pci_devclass, NULL, NULL);

Cache object: 12f86a547efbcb9ca0a551b8333fb053


[ source navigation ] [ diff markup ] [ identifier search ] [ freetext search ] [ file search ] [ list types ] [ track identifier ]


This page is part of the FreeBSD/Linux Linux Kernel Cross-Reference, and was automatically generated using a modified version of the LXR engine.