if_an_pci.c revision 59391
1/*
2 * Copyright (c) 1997, 1998, 1999
3 *	Bill Paul <wpaul@ctr.columbia.edu>.  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 * 3. All advertising materials mentioning features or use of this software
14 *    must display the following acknowledgement:
15 *	This product includes software developed by Bill Paul.
16 * 4. Neither the name of the author nor the names of any co-contributors
17 *    may be used to endorse or promote products derived from this software
18 *    without specific prior written permission.
19 *
20 * THIS SOFTWARE IS PROVIDED BY Bill Paul AND CONTRIBUTORS ``AS IS'' AND
21 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
22 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
23 * ARE DISCLAIMED.  IN NO EVENT SHALL Bill Paul OR THE VOICES IN HIS HEAD
24 * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
25 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
26 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
27 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
28 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
29 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
30 * THE POSSIBILITY OF SUCH DAMAGE.
31 *
32 * $FreeBSD: head/sys/dev/an/if_an_pci.c 59391 2000-04-19 14:58:28Z phk $
33 */
34
35/*
36 * This is a PCI shim for the Aironet PC4500/4800 wireless network
37 * driver. Aironet makes PCMCIA, ISA and PCI versions of these devices,
38 * which all have basically the same interface. The ISA and PCI cards
39 * are actually bridge adapters with PCMCIA cards inserted into them,
40 * however they appear as normal PCI or ISA devices to the host.
41 *
42 * All we do here is handle the PCI probe and attach and set up an
43 * interrupt handler entry point. The PCI version of the card uses
44 * a PLX 9050 PCI to "dumb bus" bridge chip, which provides us with
45 * multiple PCI address space mappings. The primary mapping at PCI
46 * register 0x14 is for the PLX chip itself, *NOT* the Aironet card.
47 * The I/O address of the Aironet is actually at register 0x18, which
48 * is the local bus mapping register for bus space 0. There are also
49 * registers for additional register spaces at registers 0x1C and
50 * 0x20, but these are unused in the Aironet devices. To find out
51 * more, you need a datasheet for the 9050 from PLX, but you have
52 * to go through their sales office to get it. Bleh.
53 */
54
55#include "opt_inet.h"
56
57#ifdef INET
58#define ANCACHE
59#endif
60
61#include <sys/param.h>
62#include <sys/systm.h>
63#include <sys/sockio.h>
64#include <sys/mbuf.h>
65#include <sys/kernel.h>
66#include <sys/socket.h>
67
68#include <sys/module.h>
69#include <sys/bus.h>
70#include <machine/bus.h>
71#include <sys/rman.h>
72#include <machine/resource.h>
73
74#include <net/if.h>
75#include <net/if_arp.h>
76#include <net/ethernet.h>
77#include <net/if_dl.h>
78
79#include <pci/pcireg.h>
80#include <pci/pcivar.h>
81
82#ifndef lint
83static const char rcsid[] =
84 "$FreeBSD: head/sys/dev/an/if_an_pci.c 59391 2000-04-19 14:58:28Z phk $";
85#endif
86
87#include <dev/an/if_aironet_ieee.h>
88#include <dev/an/if_anreg.h>
89
90struct an_type {
91	u_int16_t		an_vid;
92	u_int16_t		an_did;
93	char			*an_name;
94};
95
96#define AIRONET_VENDORID	0x14B9
97#define AIRONET_DEVICEID_4500	0x4500
98#define AIRONET_DEVICEID_4800	0x4800
99#define AIRONET_DEVICEID_4xxx	0x0001
100#define AN_PCI_PLX_LOIO		0x14	/* PLX chip iobase */
101#define AN_PCI_LOIO		0x18	/* Aironet iobase */
102
103static struct an_type an_devs[] = {
104	{ AIRONET_VENDORID, AIRONET_DEVICEID_4500, "Aironet PCI4500" },
105	{ AIRONET_VENDORID, AIRONET_DEVICEID_4800, "Aironet PCI4800" },
106	{ AIRONET_VENDORID, AIRONET_DEVICEID_4xxx, "Aironet PCI4500/PCI4800" },
107	{ 0, 0, NULL }
108};
109
110static int an_probe_pci		__P((device_t));
111static int an_attach_pci	__P((device_t));
112static int an_detach_pci	__P((device_t));
113
114static int an_probe_pci(device_t dev)
115{
116	struct an_type		*t;
117
118	t = an_devs;
119
120	while(t->an_name != NULL) {
121		if (pci_get_vendor(dev) == t->an_vid &&
122		    pci_get_device(dev) == t->an_did) {
123			device_set_desc(dev, t->an_name);
124			return(0);
125		}
126		t++;
127	}
128
129	return(ENXIO);
130}
131
132static int an_attach_pci(dev)
133	device_t		dev;
134{
135	int			s;
136	u_int32_t		command;
137	struct an_softc		*sc;
138	int 			unit, flags, error = 0;
139
140	s = splimp();
141
142	sc = device_get_softc(dev);
143	unit = device_get_unit(dev);
144	flags = device_get_flags(dev);
145	bzero(sc, sizeof(struct an_softc));
146
147	/*
148	 * Map control/status registers.
149 	 */
150	command = pci_read_config(dev, PCI_COMMAND_STATUS_REG, 4);
151	command |= PCIM_CMD_PORTEN;
152	pci_write_config(dev, PCI_COMMAND_STATUS_REG, command, 4);
153	command = pci_read_config(dev, PCI_COMMAND_STATUS_REG, 4);
154
155	if (!(command & PCIM_CMD_PORTEN)) {
156		printf("an%d: failed to enable I/O ports!\n", unit);
157		error = ENXIO;
158		goto fail;
159	}
160
161	sc->port_rid = AN_PCI_LOIO;
162	error = an_alloc_port(dev, sc->port_rid, 1);
163
164	if (error) {
165		printf("an%d: couldn't map ports\n", unit);
166		goto fail;
167	}
168
169	sc->an_btag = rman_get_bustag(sc->port_res);
170	sc->an_bhandle = rman_get_bushandle(sc->port_res);
171
172	/* Allocate interrupt */
173	error = an_alloc_irq(dev, 0, RF_SHAREABLE);
174	if (error) {
175		an_release_resources(dev);
176		goto fail;
177        }
178
179	error = bus_setup_intr(dev, sc->irq_res, INTR_TYPE_NET,
180	    an_intr, sc, &sc->irq_handle);
181	if (error) {
182		an_release_resources(dev);
183		goto fail;
184	}
185
186	error = an_attach(sc, device_get_unit(dev), flags);
187
188fail:
189	splx(s);
190
191	return(error);
192}
193
194static int
195an_detach_pci(device_t dev)
196{
197	struct an_softc		*sc = device_get_softc(dev);
198	struct ifnet		*ifp = &sc->arpcom.ac_if;
199
200	an_stop(sc);
201	if_detach(ifp);
202	bus_teardown_intr(dev, sc->irq_res, sc->irq_handle);
203	an_release_resources(dev);
204
205	return (0);
206}
207
208static device_method_t an_pci_methods[] = {
209        /* Device interface */
210        DEVMETHOD(device_probe,         an_probe_pci),
211        DEVMETHOD(device_attach,        an_attach_pci),
212	DEVMETHOD(device_detach,	an_detach_pci),
213	DEVMETHOD(device_shutdown,	an_shutdown),
214        { 0, 0 }
215};
216
217static driver_t an_pci_driver = {
218        "an",
219        an_pci_methods,
220        sizeof(struct an_softc),
221};
222
223static devclass_t an_devclass;
224
225DRIVER_MODULE(if_an, pci, an_pci_driver, an_devclass, 0, 0);
226