xref: /freebsd/sys/dev/aic7xxx/ahd_pci.c (revision 8fc257994d0ce2396196d7a06d50d20c8015f4b7)
1 /*-
2  * FreeBSD, PCI product support functions
3  *
4  * Copyright (c) 1995-2001 Justin T. Gibbs
5  * All rights reserved.
6  *
7  * Redistribution and use in source and binary forms, with or without
8  * modification, are permitted provided that the following conditions
9  * are met:
10  * 1. Redistributions of source code must retain the above copyright
11  *    notice, this list of conditions, and the following disclaimer,
12  *    without modification, immediately at the beginning of the file.
13  * 2. 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  * Alternatively, this software may be distributed under the terms of the
17  * GNU Public License ("GPL").
18  *
19  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
20  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
21  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
22  * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE FOR
23  * ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
24  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
25  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
26  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
27  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
28  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
29  * SUCH DAMAGE.
30  *
31  * $Id: //depot/aic7xxx/freebsd/dev/aic7xxx/ahd_pci.c#17 $
32  */
33 
34 #include <sys/cdefs.h>
35 __FBSDID("$FreeBSD$");
36 
37 #include <dev/aic7xxx/aic79xx_osm.h>
38 
39 static int ahd_pci_probe(device_t dev);
40 static int ahd_pci_attach(device_t dev);
41 
42 static device_method_t ahd_pci_device_methods[] = {
43 	/* Device interface */
44 	DEVMETHOD(device_probe,		ahd_pci_probe),
45 	DEVMETHOD(device_attach,	ahd_pci_attach),
46 	DEVMETHOD(device_detach,	ahd_detach),
47 	{ 0, 0 }
48 };
49 
50 static driver_t ahd_pci_driver = {
51 	"ahd",
52 	ahd_pci_device_methods,
53 	sizeof(struct ahd_softc)
54 };
55 
56 static devclass_t ahd_devclass;
57 
58 DRIVER_MODULE(ahd, pci, ahd_pci_driver, ahd_devclass, 0, 0);
59 MODULE_DEPEND(ahd_pci, ahd, 1, 1, 1);
60 MODULE_VERSION(ahd_pci, 1);
61 
62 static int
63 ahd_pci_probe(device_t dev)
64 {
65 	struct	ahd_pci_identity *entry;
66 
67 	entry = ahd_find_pci_device(dev);
68 	if (entry != NULL) {
69 		device_set_desc(dev, entry->name);
70 		return (BUS_PROBE_DEFAULT);
71 	}
72 	return (ENXIO);
73 }
74 
75 static int
76 ahd_pci_attach(device_t dev)
77 {
78 	struct	 ahd_pci_identity *entry;
79 	struct	 ahd_softc *ahd;
80 	char	*name;
81 	int	 error;
82 
83 	entry = ahd_find_pci_device(dev);
84 	if (entry == NULL)
85 		return (ENXIO);
86 
87 	/*
88 	 * Allocate a softc for this card and
89 	 * set it up for attachment by our
90 	 * common detect routine.
91 	 */
92 	name = malloc(strlen(device_get_nameunit(dev)) + 1, M_DEVBUF, M_NOWAIT);
93 	if (name == NULL)
94 		return (ENOMEM);
95 	strcpy(name, device_get_nameunit(dev));
96 	ahd = ahd_alloc(dev, name);
97 	if (ahd == NULL)
98 		return (ENOMEM);
99 
100 	ahd_set_unit(ahd, device_get_unit(dev));
101 
102 	/*
103 	 * Should we bother disabling 39Bit addressing
104 	 * based on installed memory?
105 	 */
106 	if (sizeof(bus_addr_t) > 4)
107                 ahd->flags |= AHD_39BIT_ADDRESSING;
108 
109 	/* Allocate a dmatag for our SCB DMA maps */
110 	/* XXX Should be a child of the PCI bus dma tag */
111 	error = aic_dma_tag_create(ahd, /*parent*/bus_get_dma_tag(dev),
112 				   /*alignment*/1, /*boundary*/0,
113 				   (ahd->flags & AHD_39BIT_ADDRESSING)
114 				   ? 0x7FFFFFFFFF
115 				   : BUS_SPACE_MAXADDR_32BIT,
116 				   /*highaddr*/BUS_SPACE_MAXADDR,
117 				   /*filter*/NULL, /*filterarg*/NULL,
118 				   /*maxsize*/BUS_SPACE_MAXSIZE_32BIT,
119 				   /*nsegments*/AHD_NSEG,
120 				   /*maxsegsz*/AHD_MAXTRANSFER_SIZE,
121 				   /*flags*/0,
122 				   &ahd->parent_dmat);
123 
124 	if (error != 0) {
125 		printf("ahd_pci_attach: Could not allocate DMA tag "
126 		       "- error %d\n", error);
127 		ahd_free(ahd);
128 		return (ENOMEM);
129 	}
130 	ahd->dev_softc = dev;
131 	error = ahd_pci_config(ahd, entry);
132 	if (error != 0) {
133 		ahd_free(ahd);
134 		return (error);
135 	}
136 
137 	ahd_sysctl(ahd);
138 	ahd_attach(ahd);
139 	return (0);
140 }
141 
142 int
143 ahd_pci_map_registers(struct ahd_softc *ahd)
144 {
145 	struct	resource *regs;
146 	struct	resource *regs2;
147 	u_int	command;
148 	int	regs_type;
149 	int	regs_id;
150 	int	regs_id2;
151 	int	allow_memio;
152 
153 	command = aic_pci_read_config(ahd->dev_softc, PCIR_COMMAND, /*bytes*/1);
154 	regs = NULL;
155 	regs2 = NULL;
156 	regs_type = 0;
157 	regs_id = 0;
158 
159 	/* Retrieve the per-device 'allow_memio' hint */
160 	if (resource_int_value(device_get_name(ahd->dev_softc),
161 			       device_get_unit(ahd->dev_softc),
162 			       "allow_memio", &allow_memio) != 0) {
163 		if (bootverbose)
164 			device_printf(ahd->dev_softc,
165 				      "Defaulting to MEMIO on\n");
166 		allow_memio = 1;
167 	}
168 
169 	if ((command & PCIM_CMD_MEMEN) != 0
170 	 && (ahd->bugs & AHD_PCIX_MMAPIO_BUG) == 0
171 	 && allow_memio != 0) {
172 
173 		regs_type = SYS_RES_MEMORY;
174 		regs_id = AHD_PCI_MEMADDR;
175 		regs = bus_alloc_resource_any(ahd->dev_softc, regs_type,
176 					      &regs_id, RF_ACTIVE);
177 		if (regs != NULL) {
178 			int error;
179 
180 			ahd->tags[0] = rman_get_bustag(regs);
181 			ahd->bshs[0] = rman_get_bushandle(regs);
182 			ahd->tags[1] = ahd->tags[0];
183 			error = bus_space_subregion(ahd->tags[0], ahd->bshs[0],
184 						    /*offset*/0x100,
185 						    /*size*/0x100,
186 						    &ahd->bshs[1]);
187 			/*
188 			 * Do a quick test to see if memory mapped
189 			 * I/O is functioning correctly.
190 			 */
191 			if (error != 0
192 			 || ahd_pci_test_register_access(ahd) != 0) {
193 				device_printf(ahd->dev_softc,
194 				       "PCI Device %d:%d:%d failed memory "
195 				       "mapped test.  Using PIO.\n",
196 				       aic_get_pci_bus(ahd->dev_softc),
197 				       aic_get_pci_slot(ahd->dev_softc),
198 				       aic_get_pci_function(ahd->dev_softc));
199 				bus_release_resource(ahd->dev_softc, regs_type,
200 						     regs_id, regs);
201 				regs = NULL;
202 				AHD_CORRECTABLE_ERROR(ahd);
203 			} else {
204 				command &= ~PCIM_CMD_PORTEN;
205 				aic_pci_write_config(ahd->dev_softc,
206 						     PCIR_COMMAND,
207 						     command, /*bytes*/1);
208 			}
209 		}
210 	}
211 	if (regs == NULL && (command & PCIM_CMD_PORTEN) != 0) {
212 		regs_type = SYS_RES_IOPORT;
213 		regs_id = AHD_PCI_IOADDR0;
214 		regs = bus_alloc_resource_any(ahd->dev_softc, regs_type,
215 					      &regs_id, RF_ACTIVE);
216 		if (regs == NULL) {
217 			device_printf(ahd->dev_softc,
218 				      "can't allocate register resources\n");
219 			AHD_UNCORRECTABLE_ERROR(ahd);
220 			return (ENOMEM);
221 		}
222 		ahd->tags[0] = rman_get_bustag(regs);
223 		ahd->bshs[0] = rman_get_bushandle(regs);
224 
225 		/* And now the second BAR */
226 		regs_id2 = AHD_PCI_IOADDR1;
227 		regs2 = bus_alloc_resource_any(ahd->dev_softc, regs_type,
228 					       &regs_id2, RF_ACTIVE);
229 		if (regs2 == NULL) {
230 			device_printf(ahd->dev_softc,
231 				      "can't allocate register resources\n");
232 			AHD_UNCORRECTABLE_ERROR(ahd);
233 			return (ENOMEM);
234 		}
235 		ahd->tags[1] = rman_get_bustag(regs2);
236 		ahd->bshs[1] = rman_get_bushandle(regs2);
237 		command &= ~PCIM_CMD_MEMEN;
238 		aic_pci_write_config(ahd->dev_softc, PCIR_COMMAND,
239 				     command, /*bytes*/1);
240 		ahd->platform_data->regs_res_type[1] = regs_type;
241 		ahd->platform_data->regs_res_id[1] = regs_id2;
242 		ahd->platform_data->regs[1] = regs2;
243 	}
244 	ahd->platform_data->regs_res_type[0] = regs_type;
245 	ahd->platform_data->regs_res_id[0] = regs_id;
246 	ahd->platform_data->regs[0] = regs;
247 	return (0);
248 }
249 
250 int
251 ahd_pci_map_int(struct ahd_softc *ahd)
252 {
253 	int zero;
254 
255 	zero = 0;
256 	ahd->platform_data->irq =
257 	    bus_alloc_resource_any(ahd->dev_softc, SYS_RES_IRQ, &zero,
258 				   RF_ACTIVE | RF_SHAREABLE);
259 	if (ahd->platform_data->irq == NULL)
260 		return (ENOMEM);
261 	ahd->platform_data->irq_res_type = SYS_RES_IRQ;
262 	return (ahd_map_int(ahd));
263 }
264