kernel: Use DEVMETHOD_END in the drivers.
[dragonfly.git] / sys / dev / raid / pst / pst-pci.c
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);