ahd_pci.c revision 143164
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: head/sys/dev/aic7xxx/ahd_pci.c 143164 2005-03-05 19:24:22Z imp $");
36
37#include <dev/aic7xxx/aic79xx_osm.h>
38
39static int ahd_pci_probe(device_t dev);
40static int ahd_pci_attach(device_t dev);
41
42static 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
50static driver_t ahd_pci_driver = {
51	"ahd",
52	ahd_pci_device_methods,
53	sizeof(struct ahd_softc)
54};
55
56static devclass_t ahd_devclass;
57
58DRIVER_MODULE(ahd, pci, ahd_pci_driver, ahd_devclass, 0, 0);
59DRIVER_MODULE(ahd, cardbus, ahd_pci_driver, ahd_devclass, 0, 0);
60MODULE_DEPEND(ahd_pci, ahd, 1, 1, 1);
61MODULE_VERSION(ahd_pci, 1);
62
63static int
64ahd_pci_probe(device_t dev)
65{
66	struct	ahd_pci_identity *entry;
67
68	entry = ahd_find_pci_device(dev);
69	if (entry != NULL) {
70		device_set_desc(dev, entry->name);
71		return (BUS_PROBE_DEFAULT);
72	}
73	return (ENXIO);
74}
75
76static int
77ahd_pci_attach(device_t dev)
78{
79	struct	 ahd_pci_identity *entry;
80	struct	 ahd_softc *ahd;
81	char	*name;
82	int	 error;
83
84	entry = ahd_find_pci_device(dev);
85	if (entry == NULL)
86		return (ENXIO);
87
88	/*
89	 * Allocate a softc for this card and
90	 * set it up for attachment by our
91	 * common detect routine.
92	 */
93	name = malloc(strlen(device_get_nameunit(dev)) + 1, M_DEVBUF, M_NOWAIT);
94	if (name == NULL)
95		return (ENOMEM);
96	strcpy(name, device_get_nameunit(dev));
97	ahd = ahd_alloc(dev, name);
98	if (ahd == NULL)
99		return (ENOMEM);
100
101	ahd_set_unit(ahd, device_get_unit(dev));
102
103	/*
104	 * Should we bother disabling 39Bit addressing
105	 * based on installed memory?
106	 */
107	if (sizeof(bus_addr_t) > 4)
108                ahd->flags |= AHD_39BIT_ADDRESSING;
109
110	/* Allocate a dmatag for our SCB DMA maps */
111	/* XXX Should be a child of the PCI bus dma tag */
112	error = aic_dma_tag_create(ahd, /*parent*/NULL, /*alignment*/1,
113				   /*boundary*/0,
114				   (ahd->flags & AHD_39BIT_ADDRESSING)
115				   ? 0x7FFFFFFFFF
116				   : BUS_SPACE_MAXADDR_32BIT,
117				   /*highaddr*/BUS_SPACE_MAXADDR,
118				   /*filter*/NULL, /*filterarg*/NULL,
119				   /*maxsize*/BUS_SPACE_MAXSIZE_32BIT,
120				   /*nsegments*/AHD_NSEG,
121				   /*maxsegsz*/AHD_MAXTRANSFER_SIZE,
122				   /*flags*/0,
123				   &ahd->parent_dmat);
124
125	if (error != 0) {
126		printf("ahd_pci_attach: Could not allocate DMA tag "
127		       "- error %d\n", error);
128		ahd_free(ahd);
129		return (ENOMEM);
130	}
131	ahd->dev_softc = dev;
132	error = ahd_pci_config(ahd, entry);
133	if (error != 0) {
134		ahd_free(ahd);
135		return (error);
136	}
137
138	ahd_attach(ahd);
139	return (0);
140}
141
142int
143ahd_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	}
167
168	if ((command & PCIM_CMD_MEMEN) != 0
169	 && (ahd->bugs & AHD_PCIX_MMAPIO_BUG) == 0
170	 && allow_memio != 0) {
171
172		regs_type = SYS_RES_MEMORY;
173		regs_id = AHD_PCI_MEMADDR;
174		regs = bus_alloc_resource_any(ahd->dev_softc, regs_type,
175					      &regs_id, RF_ACTIVE);
176		if (regs != NULL) {
177			int error;
178
179			ahd->tags[0] = rman_get_bustag(regs);
180			ahd->bshs[0] = rman_get_bushandle(regs);
181			ahd->tags[1] = ahd->tags[0];
182			error = bus_space_subregion(ahd->tags[0], ahd->bshs[0],
183						    /*offset*/0x100,
184						    /*size*/0x100,
185						    &ahd->bshs[1]);
186			/*
187			 * Do a quick test to see if memory mapped
188			 * I/O is functioning correctly.
189			 */
190			if (error != 0
191			 || ahd_pci_test_register_access(ahd) != 0) {
192				device_printf(ahd->dev_softc,
193				       "PCI Device %d:%d:%d failed memory "
194				       "mapped test.  Using PIO.\n",
195				       aic_get_pci_bus(ahd->dev_softc),
196				       aic_get_pci_slot(ahd->dev_softc),
197				       aic_get_pci_function(ahd->dev_softc));
198				bus_release_resource(ahd->dev_softc, regs_type,
199						     regs_id, regs);
200				regs = NULL;
201			} else {
202				command &= ~PCIM_CMD_PORTEN;
203				aic_pci_write_config(ahd->dev_softc,
204						     PCIR_COMMAND,
205						     command, /*bytes*/1);
206			}
207		}
208	}
209	if (regs == NULL && (command & PCIM_CMD_PORTEN) != 0) {
210		regs_type = SYS_RES_IOPORT;
211		regs_id = AHD_PCI_IOADDR0;
212		regs = bus_alloc_resource_any(ahd->dev_softc, regs_type,
213					      &regs_id, RF_ACTIVE);
214		if (regs == NULL) {
215			device_printf(ahd->dev_softc,
216				      "can't allocate register resources\n");
217			return (ENOMEM);
218		}
219		ahd->tags[0] = rman_get_bustag(regs);
220		ahd->bshs[0] = rman_get_bushandle(regs);
221
222		/* And now the second BAR */
223		regs_id2 = AHD_PCI_IOADDR1;
224		regs2 = bus_alloc_resource_any(ahd->dev_softc, regs_type,
225					       &regs_id2, RF_ACTIVE);
226		if (regs2 == NULL) {
227			device_printf(ahd->dev_softc,
228				      "can't allocate register resources\n");
229			return (ENOMEM);
230		}
231		ahd->tags[1] = rman_get_bustag(regs2);
232		ahd->bshs[1] = rman_get_bushandle(regs2);
233		command &= ~PCIM_CMD_MEMEN;
234		aic_pci_write_config(ahd->dev_softc, PCIR_COMMAND,
235				     command, /*bytes*/1);
236		ahd->platform_data->regs_res_type[1] = regs_type;
237		ahd->platform_data->regs_res_id[1] = regs_id2;
238		ahd->platform_data->regs[1] = regs2;
239	}
240	ahd->platform_data->regs_res_type[0] = regs_type;
241	ahd->platform_data->regs_res_id[0] = regs_id;
242	ahd->platform_data->regs[0] = regs;
243	return (0);
244}
245
246int
247ahd_pci_map_int(struct ahd_softc *ahd)
248{
249	int zero;
250
251	zero = 0;
252	ahd->platform_data->irq =
253	    bus_alloc_resource_any(ahd->dev_softc, SYS_RES_IRQ, &zero,
254				   RF_ACTIVE | RF_SHAREABLE);
255	if (ahd->platform_data->irq == NULL)
256		return (ENOMEM);
257	ahd->platform_data->irq_res_type = SYS_RES_IRQ;
258	return (ahd_map_int(ahd));
259}
260