xref: /openbsd-src/sys/dev/pci/if_atw_pci.c (revision 43003dfe3ad45d1698bed8a37f2b0f5b14f20d4f)
1 /*	$OpenBSD: if_atw_pci.c,v 1.12 2009/06/02 15:13:58 jsg Exp $	*/
2 /*	$NetBSD: if_atw_pci.c,v 1.7 2004/07/23 07:07:55 dyoung Exp $	*/
3 
4 /*-
5  * Copyright (c) 1998, 1999, 2000, 2002 The NetBSD Foundation, Inc.
6  * All rights reserved.
7  *
8  * This code is derived from software contributed to The NetBSD Foundation
9  * by Jason R. Thorpe of the Numerical Aerospace Simulation Facility,
10  * NASA Ames Research Center; Charles M. Hannum; and David Young.
11  *
12  * Redistribution and use in source and binary forms, with or without
13  * modification, are permitted provided that the following conditions
14  * are met:
15  * 1. Redistributions of source code must retain the above copyright
16  *    notice, this list of conditions and the following disclaimer.
17  * 2. Redistributions in binary form must reproduce the above copyright
18  *    notice, this list of conditions and the following disclaimer in the
19  *    documentation and/or other materials provided with the distribution.
20  *
21  * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
22  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
23  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
24  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
25  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
26  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
27  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
28  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
29  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
30  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
31  * POSSIBILITY OF SUCH DAMAGE.
32  */
33 
34 /*
35  * PCI bus front-end for the ADMtek ADM8211 802.11 MAC/BBP chip.
36  *
37  * Derived from the ``Tulip'' PCI bus front-end.
38  */
39 
40 #include <sys/param.h>
41 #include <sys/systm.h>
42 #include <sys/mbuf.h>
43 #include <sys/malloc.h>
44 #include <sys/kernel.h>
45 #include <sys/socket.h>
46 #include <sys/ioctl.h>
47 #include <sys/errno.h>
48 #include <sys/device.h>
49 
50 #include <machine/endian.h>
51 
52 #include <net/if.h>
53 #include <net/if_dl.h>
54 #include <net/if_media.h>
55 #ifdef INET
56 #include <netinet/in.h>
57 #include <netinet/if_ether.h>
58 #endif
59 
60 #include <net80211/ieee80211_radiotap.h>
61 #include <net80211/ieee80211_var.h>
62 
63 #include <machine/bus.h>
64 #include <machine/intr.h>
65 
66 #include <dev/ic/atwreg.h>
67 #include <dev/ic/rf3000reg.h>
68 #include <dev/ic/si4136reg.h>
69 #include <dev/ic/atwvar.h>
70 
71 #include <dev/pci/pcivar.h>
72 #include <dev/pci/pcireg.h>
73 #include <dev/pci/pcidevs.h>
74 
75 /*
76  * PCI configuration space registers used by the ADM8211.
77  */
78 #define	ATW_PCI_IOBA		0x10	/* i/o mapped base */
79 #define	ATW_PCI_MMBA		0x14	/* memory mapped base */
80 
81 struct atw_pci_softc {
82 	struct atw_softc	psc_atw;	/* real ADM8211 softc */
83 
84 	pci_intr_handle_t	psc_ih;		/* interrupt handle */
85 	void			*psc_intrcookie;
86 
87 	pci_chipset_tag_t	psc_pc;		/* our PCI chipset */
88 	pcitag_t		psc_pcitag;	/* our PCI tag */
89 };
90 
91 int	atw_pci_match(struct device *, void *, void *);
92 void	atw_pci_attach(struct device *, struct device *, void *);
93 int	atw_pci_detach(struct device *, int);
94 
95 struct cfattach atw_pci_ca = {
96     sizeof (struct atw_softc), atw_pci_match, atw_pci_attach, atw_pci_detach
97 };
98 
99 const struct pci_matchid atw_pci_devices[] = {
100 	{ PCI_VENDOR_ADMTEK,		PCI_PRODUCT_ADMTEK_ADM8211 },
101 	{ PCI_VENDOR_3COM,		PCI_PRODUCT_3COM_3CRSHPW796 }
102 };
103 
104 int
105 atw_pci_match(struct device *parent, void *match, void *aux)
106 {
107 	return (pci_matchbyid((struct pci_attach_args *)aux, atw_pci_devices,
108 	    sizeof(atw_pci_devices)/sizeof(atw_pci_devices[0])));
109 }
110 
111 static int
112 atw_pci_enable(struct atw_softc *sc)
113 {
114 	struct atw_pci_softc *psc = (void *)sc;
115 
116 	/* Establish the interrupt. */
117 	psc->psc_intrcookie = pci_intr_establish(psc->psc_pc, psc->psc_ih,
118 	    IPL_NET, atw_intr, sc, sc->sc_dev.dv_xname);
119 	if (psc->psc_intrcookie == NULL) {
120 		printf("%s: unable to establish interrupt\n",
121 		    sc->sc_dev.dv_xname);
122 		return (1);
123 	}
124 
125 	return (0);
126 }
127 
128 static void
129 atw_pci_disable(struct atw_softc *sc)
130 {
131 	struct atw_pci_softc *psc = (void *)sc;
132 
133 	/* Unhook the interrupt handler. */
134 	pci_intr_disestablish(psc->psc_pc, psc->psc_intrcookie);
135 	psc->psc_intrcookie = NULL;
136 }
137 
138 void
139 atw_pci_attach(struct device *parent, struct device *self, void *aux)
140 {
141 	struct atw_pci_softc *psc = (void *) self;
142 	struct atw_softc *sc = &psc->psc_atw;
143 	struct pci_attach_args *pa = aux;
144 	pci_chipset_tag_t pc = pa->pa_pc;
145 	const char *intrstr = NULL;
146 	bus_space_tag_t iot, memt;
147 	bus_space_handle_t ioh, memh;
148 	bus_size_t iosize, memsize;
149 	int ioh_valid, memh_valid;
150 	int state;
151 
152 	psc->psc_pc = pa->pa_pc;
153 	psc->psc_pcitag = pa->pa_tag;
154 
155 	/*
156 	 * No power management hooks.
157 	 * XXX Maybe we should add some!
158 	 */
159 	sc->sc_flags |= ATWF_ENABLED;
160 
161 	/*
162 	 * Get revision info, and set some chip-specific variables.
163 	 */
164 	sc->sc_rev = PCI_REVISION(pa->pa_class);
165 
166 	/*
167 	 * Check to see if the device is in power-save mode, and
168 	 * being it out if necessary.
169 	 *
170 	 * XXX This code comes almost verbatim from if_tlp_pci.c. I do
171 	 * not understand it. Tulip clears the "sleep mode" bit in the
172 	 * CFDA register, first.  There is an equivalent (?) register at the
173 	 * same place in the ADM8211, but the docs do not assign its bits
174 	 * any meanings. -dcy
175 	 */
176 	state = pci_set_powerstate(pc, pa->pa_tag, PCI_PMCSR_STATE_D0);
177 	if (state == PCI_PMCSR_STATE_D3) {
178 		/*
179 		 * The card has lost all configuration data in
180 		 * this state, so punt.
181 		 */
182 		printf(": unable to wake up from power state D3, "
183 		    "reboot required.\n");
184 		return;
185 	}
186 
187 	/*
188 	 * Map the device.
189 	 */
190 	ioh_valid = (pci_mapreg_map(pa, ATW_PCI_IOBA,
191 	    PCI_MAPREG_TYPE_IO, 0,
192 	    &iot, &ioh, NULL, &iosize, 0) == 0);
193 	memh_valid = (pci_mapreg_map(pa, ATW_PCI_MMBA,
194 	    PCI_MAPREG_TYPE_MEM|PCI_MAPREG_MEM_TYPE_32BIT, 0,
195 	    &memt, &memh, NULL, &memsize, 0) == 0);
196 
197 	if (memh_valid) {
198 		sc->sc_st = memt;
199 		sc->sc_sh = memh;
200 		sc->sc_mapsize = memsize;
201 	} else if (ioh_valid) {
202 		sc->sc_st = iot;
203 		sc->sc_sh = ioh;
204 		sc->sc_mapsize = iosize;
205 	} else {
206 		printf(": unable to map device registers\n");
207 		return;
208 	}
209 
210 	sc->sc_dmat = pa->pa_dmat;
211 
212 	/*
213 	 * Get the cacheline size.
214 	 */
215 	sc->sc_cacheline = PCI_CACHELINE(pci_conf_read(pc, pa->pa_tag,
216 	    PCI_BHLC_REG));
217 
218 	/*
219 	 * Get PCI data moving command info.
220 	 */
221 	if (pa->pa_flags & PCI_FLAGS_MRL_OKAY) /* read line */
222 		sc->sc_flags |= ATWF_MRL;
223 	if (pa->pa_flags & PCI_FLAGS_MRM_OKAY) /* read multiple */
224 		sc->sc_flags |= ATWF_MRM;
225 	if (pa->pa_flags & PCI_FLAGS_MWI_OKAY) /* write invalidate */
226 		sc->sc_flags |= ATWF_MWI;
227 
228 	/*
229 	 * Map and establish our interrupt.
230 	 */
231 	if (pci_intr_map(pa, &psc->psc_ih)) {
232 		printf(": unable to map interrupt\n");
233 		return;
234 	}
235 	intrstr = pci_intr_string(pc, psc->psc_ih);
236 	psc->psc_intrcookie = pci_intr_establish(pc, psc->psc_ih, IPL_NET,
237 	    atw_intr, sc, sc->sc_dev.dv_xname);
238 	if (psc->psc_intrcookie == NULL) {
239 		printf(": unable to establish interrupt");
240 		if (intrstr != NULL)
241 			printf(" at %s", intrstr);
242 		printf("\n");
243 		return;
244 	}
245 
246 	printf(": %s\n", intrstr);
247 
248 	sc->sc_enable = atw_pci_enable;
249 	sc->sc_disable = atw_pci_disable;
250 
251 	/*
252 	 * Finish off the attach.
253 	 */
254 	atw_attach(sc);
255 }
256 
257 int
258 atw_pci_detach(struct device *self, int flags)
259 {
260 	struct atw_pci_softc *psc = (void *)self;
261 	struct atw_softc *sc = &psc->psc_atw;
262 	int rv;
263 
264 	rv = atw_detach(sc);
265 	if (rv)
266 		return (rv);
267 
268 	if (psc->psc_intrcookie != NULL)
269 		pci_intr_disestablish(psc->psc_pc, psc->psc_intrcookie);
270 
271 	bus_space_unmap(sc->sc_st, sc->sc_sh, sc->sc_mapsize);
272 
273 	return (0);
274 }
275