xref: /freebsd/sys/dev/mlx/mlx_pci.c (revision 7f9d26bd9d1b2754da8429257edbde0a8237f84f)
1 /*-
2  * Copyright (c) 1999 Michael Smith
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  *
14  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
15  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
16  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
17  * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
18  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
19  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
20  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
21  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
22  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
23  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
24  * SUCH DAMAGE.
25  *
26  *	$FreeBSD$
27  */
28 
29 #include <sys/param.h>
30 #include <sys/systm.h>
31 #include <sys/malloc.h>
32 #include <sys/kernel.h>
33 
34 #include <sys/bus.h>
35 #include <sys/buf.h>
36 #include <sys/conf.h>
37 #include <sys/devicestat.h>
38 #include <sys/disk.h>
39 
40 #include <machine/bus_memio.h>
41 #include <machine/bus_pio.h>
42 #include <machine/bus.h>
43 #include <machine/resource.h>
44 #include <sys/rman.h>
45 
46 #include <pci/pcireg.h>
47 #include <pci/pcivar.h>
48 
49 #include <dev/mlx/mlxio.h>
50 #include <dev/mlx/mlxvar.h>
51 #include <dev/mlx/mlxreg.h>
52 
53 #if 0
54 #define debug(fmt, args...)	printf("%s: " fmt "\n", __FUNCTION__ , ##args)
55 #else
56 #define debug(fmt, args...)
57 #endif
58 
59 static int			mlx_pci_probe(device_t dev);
60 static int			mlx_pci_attach(device_t dev);
61 
62 static device_method_t mlx_methods[] = {
63     /* Device interface */
64     DEVMETHOD(device_probe,	mlx_pci_probe),
65     DEVMETHOD(device_attach,	mlx_pci_attach),
66     DEVMETHOD(device_detach,	mlx_detach),
67     DEVMETHOD(device_shutdown,	mlx_shutdown),
68     DEVMETHOD(device_suspend,	mlx_suspend),
69     DEVMETHOD(device_resume,	mlx_resume),
70 
71     DEVMETHOD(bus_print_child,	bus_generic_print_child),
72     DEVMETHOD(bus_driver_added,	bus_generic_driver_added),
73     { 0, 0 }
74 };
75 
76 static driver_t mlx_pci_driver = {
77 	"mlx",
78 	mlx_methods,
79 	sizeof(struct mlx_softc)
80 };
81 
82 DRIVER_MODULE(mlx, pci, mlx_pci_driver, mlx_devclass, 0, 0);
83 
84 struct
85 {
86     u_int16_t	vendor;
87     u_int16_t	device;
88     int		iftype;
89     char	*desc;
90 } mlx_identifiers[] = {
91     {0x1069, 0x0002, MLX_IFTYPE_3, "Mylex version 3 RAID interface"},	/* Mylex v3 software interface */
92     {0x1069, 0x0010, MLX_IFTYPE_4, "Mylex version 4 RAID interface"},	/* Mylex v4 software interface */
93     {0, 0, 0, 0}
94 };
95 
96 static int
97 mlx_pci_probe(device_t dev)
98 {
99     int		i;
100 
101     debug("called");
102 
103     for (i = 0; mlx_identifiers[i].vendor != 0; i++) {
104 	if ((mlx_identifiers[i].vendor == pci_get_vendor(dev)) &&
105 	    (mlx_identifiers[i].device == pci_get_device(dev))) {
106 
107 	    device_set_desc(dev, mlx_identifiers[i].desc);
108 	    return(0);
109 	}
110     }
111     return(ENXIO);
112 }
113 
114 static int
115 mlx_pci_attach(device_t dev)
116 {
117     struct mlx_softc	*sc;
118     int			i, rid, error;
119     u_int32_t		command;
120 
121     debug("called");
122 
123     /*
124      * Make sure we are going to be able to talk to this board.
125      */
126     command = pci_read_config(dev, PCIR_COMMAND, 1);
127     if ((command & PCIM_CMD_MEMEN) == 0) {
128 	device_printf(dev, "memory window not available\n");
129 	return(ENXIO);
130     }
131 
132     /*
133      * Initialise softc.
134      */
135     sc = device_get_softc(dev);
136     bzero(sc, sizeof(*sc));
137     sc->mlx_dev = dev;
138 
139     /*
140      * Work out what sort of adapter this is (we need to know this in order
141      * to map the appropriate interface resources).
142      */
143     sc->mlx_iftype = 0;
144     for (i = 0; mlx_identifiers[i].vendor != 0; i++) {
145 	if ((mlx_identifiers[i].vendor == pci_get_vendor(dev)) &&
146 	    (mlx_identifiers[i].device == pci_get_device(dev))) {
147 	    sc->mlx_iftype = mlx_identifiers[i].iftype;
148 	    break;
149 	}
150     }
151     if (sc->mlx_iftype == 0)		/* shouldn't happen */
152 	return(ENXIO);
153 
154     /*
155      * Allocate the PCI register window.
156      */
157 
158     /* type 3 adapters have an I/O region we don't use at base 0 */
159     rid = (sc->mlx_iftype == MLX_IFTYPE_3) ? MLX_CFG_BASE1 : MLX_CFG_BASE0;
160     sc->mlx_mem = bus_alloc_resource(dev, SYS_RES_MEMORY, &rid, 0, ~0, 1, RF_ACTIVE);
161     if (sc->mlx_mem == NULL) {
162 	device_printf(sc->mlx_dev, "couldn't allocate mailbox window\n");
163 	mlx_free(sc);
164 	return(ENXIO);
165     }
166     sc->mlx_btag = rman_get_bustag(sc->mlx_mem);
167     sc->mlx_bhandle = rman_get_bushandle(sc->mlx_mem);
168 
169     /*
170      * Allocate the parent bus DMA tag appropriate for PCI.
171      */
172     error = bus_dma_tag_create(NULL, 			/* parent */
173 			       1, 0, 			/* alignment, boundary */
174 			       BUS_SPACE_MAXADDR_32BIT, /* lowaddr */
175 			       BUS_SPACE_MAXADDR, 	/* highaddr */
176 			       NULL, NULL, 		/* filter, filterarg */
177 			       MAXBSIZE, MLX_NSEG,	/* maxsize, nsegments */
178 			       BUS_SPACE_MAXSIZE_32BIT,	/* maxsegsize */
179 			       BUS_DMA_ALLOCNOW,	/* flags */
180 			       &sc->mlx_parent_dmat);
181     if (error != 0) {
182 	device_printf(dev, "can't allocate parent DMA tag\n");
183 	mlx_free(sc);
184 	return(ENOMEM);
185     }
186 
187     /*
188      * Do bus-independant initialisation.
189      */
190     error = mlx_attach(sc);
191     if (error != 0) {
192 	mlx_free(sc);
193 	return(error);
194     }
195 
196     /*
197      * Start the controller.
198      */
199     mlx_startup(sc);
200     return(0);
201 }
202