1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
|
/* $OpenBSD: if_wi_pci.c,v 1.29 2002/07/29 19:24:24 millert Exp $ */
/*
* Copyright (c) 2001, 2002 Todd C. Miller <Todd.Miller@courtesan.com>
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
* 3. The name of the author may not be used to endorse or promote products
* derived from this software without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES,
* INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY
* AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL
* THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
* EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
* PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
* OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
* WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
* OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
* ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
/*
* PCI attachment for the Wavelan driver. There are two basic types
* of PCI card supported:
*
* 1) Cards based on the Prism2.5 Mini-PCI chipset
* 2) Cards that use a dumb ISA->PCI bridge
*
* Only the first type are "true" PCI cards.
*
* The latter are often sold as "PCI wireless card adapters" and are
* sold by several vendors. Most are simply rebadged versions of the
* Eumitcom WL11000P or Global Sun Technology GL24110P02.
* These cards use the PLX 9052 dumb bridge chip to connect a PCMCIA
* wireless card to the PCI bus. Because it is a dumb bridge and
* not a true PCMCIA bridge, the PCMCIA subsystem is not involved
* (or even required). The PLX 9052 provides multiple PCI address
* space mappings. The primary mappings at PCI registers 0x10 (mem)
* and 0x14 (I/O) are for the PLX chip itself, *NOT* the PCMCIA card.
* The mem and I/O spaces for the PCMCIA card are mapped to 0x18 and
* 0x1C respectively.
* The PLX 9050/9052 datasheet may be downloaded from PLX at
* http://www.plxtech.com/products/toolbox/9050.htm
*
* This driver also supports the TMD7160 dumb bridge chip which is used
* on some versions of the NDC/Sohoware NCP130. The TMD7160 provides
* two PCI I/O registers. The first, at 0x14, is for the TMD7160
* chip itself. The second, at 0x18, is for the Prism2 chip.
* The datasheet for the TMD7160 does not seem to be publicly available.
* The magic for initializing the chip was gleened from NDC's version of
* the Linux wlan driver.
*/
#include <sys/param.h>
#include <sys/systm.h>
#include <sys/device.h>
#include <sys/timeout.h>
#include <sys/socket.h>
#include <net/if.h>
#include <net/if_dl.h>
#include <net/if_media.h>
#ifdef INET
#include <netinet/in.h>
#include <netinet/if_ether.h>
#endif
#include <net/if_ieee80211.h>
#include <machine/bus.h>
#include <dev/pci/pcireg.h>
#include <dev/pci/pcivar.h>
#include <dev/pci/pcidevs.h>
#include <dev/ic/if_wireg.h>
#include <dev/ic/if_wi_ieee.h>
#include <dev/ic/if_wivar.h>
/* Values for pp_type */
#define WI_PCI_PRISM 0x01 /* Intersil Mini-PCI */
#define WI_PCI_PLX 0x02 /* PLX 905x dumb bridge */
#define WI_PCI_TMD 0x03 /* TMD 7160 dumb bridge */
/* For printing CIS of the actual PCMCIA card */
#define CIS_MFG_NAME_OFFSET 0x16
#define CIS_INFO_SIZE 256
const struct wi_pci_product *wi_pci_lookup(struct pci_attach_args *pa);
int wi_pci_match(struct device *, void *, void *);
void wi_pci_attach(struct device *, struct device *, void *);
int wi_pci_handle_cis(struct wi_softc *);
struct cfattach wi_pci_ca = {
sizeof (struct wi_softc), wi_pci_match, wi_pci_attach
};
static const struct wi_pci_product {
pci_vendor_id_t pp_vendor;
pci_product_id_t pp_product;
int pp_type;
} wi_pci_products[] = {
{ PCI_VENDOR_GLOBALSUN, PCI_PRODUCT_GLOBALSUN_GL24110P, WI_PCI_PLX },
{ PCI_VENDOR_GLOBALSUN, PCI_PRODUCT_GLOBALSUN_GL24110P02, WI_PCI_PLX },
{ PCI_VENDOR_EUMITCOM, PCI_PRODUCT_EUMITCOM_WL11000P, WI_PCI_PLX },
{ PCI_VENDOR_USR2, PCI_PRODUCT_USR2_WL11000P, WI_PCI_PLX },
{ PCI_VENDOR_3COM, PCI_PRODUCT_3COM_3CRWE777A, WI_PCI_PLX },
{ PCI_VENDOR_NETGEAR, PCI_PRODUCT_NETGEAR_MA301, WI_PCI_PLX },
{ PCI_VENDOR_EFFICIENTNETS, PCI_PRODUCT_EFFICIENTNETS_SS1023, WI_PCI_PLX },
{ PCI_VENDOR_NDC, PCI_PRODUCT_NDC_NCP130, WI_PCI_PLX },
{ PCI_VENDOR_NDC, PCI_PRODUCT_NDC_NCP130A2, WI_PCI_TMD },
{ PCI_VENDOR_INTERSIL, PCI_PRODUCT_INTERSIL_MINI_PCI_WLAN, WI_PCI_PRISM },
{ 0, 0 }
};
const struct wi_pci_product *
wi_pci_lookup(pa)
struct pci_attach_args *pa;
{
const struct wi_pci_product *pp;
for (pp = wi_pci_products; pp->pp_product != 0; pp++) {
if (PCI_VENDOR(pa->pa_id) == pp->pp_vendor &&
PCI_PRODUCT(pa->pa_id) == pp->pp_product)
return (pp);
}
return (NULL);
}
int
wi_pci_match(parent, match, aux)
struct device *parent;
void *match;
void *aux;
{
return (wi_pci_lookup(aux) != NULL);
}
void
wi_pci_attach(parent, self, aux)
struct device *parent;
struct device *self;
void *aux;
{
struct wi_softc *sc = (struct wi_softc *)self;
struct pci_attach_args *pa = aux;
const struct wi_pci_product *pp;
pci_intr_handle_t ih;
bus_space_handle_t localh, ioh, memh;
bus_space_tag_t localt;
bus_space_tag_t iot = pa->pa_iot;
bus_space_tag_t memt = pa->pa_memt;
bus_addr_t localbase;
bus_size_t localsize;
pci_chipset_tag_t pc = pa->pa_pc;
u_int32_t command;
pcireg_t csr;
const char *intrstr;
pp = wi_pci_lookup(pa);
/* Map memory and I/O registers. */
switch (pp->pp_type) {
case WI_PCI_PLX:
if (pci_mapreg_map(pa, WI_PLX_MEMRES, PCI_MAPREG_TYPE_MEM, 0,
&memt, &memh, NULL, NULL, 0) != 0) {
printf(": can't map mem space\n");
return;
}
sc->wi_ltag = memt;
sc->wi_lhandle = memh;
if (pci_mapreg_map(pa, WI_PLX_IORES,
PCI_MAPREG_TYPE_IO, 0, &iot, &ioh, NULL, NULL, 0) != 0) {
printf(": can't map I/O space\n");
return;
}
/*
* Some cards, such as the PLX version of the NDC NCP130
* don't have the PLX local registers mapped. In general
* this is OK since those card enable PLX interrupts for us.
* As such, we don't consider an error here to be fatal.
*/
localsize = 0;
if (pci_mapreg_type(pa->pa_pc, pa->pa_tag, WI_PLX_LOCALRES)
== PCI_MAPREG_TYPE_IO) {
if (pci_io_find(pa->pa_pc, pa->pa_tag,
WI_PLX_LOCALRES, &localbase, &localsize) != 0)
printf(": can't find PLX I/O space\n");
if (localsize != 0) {
if (bus_space_map(pa->pa_iot, localbase,
localsize, 0, &localh) != 0) {
printf(": can't map PLX I/O space\n");
localsize = 0;
} else
localt = pa->pa_iot;
}
}
break;
case WI_PCI_PRISM:
if (pci_mapreg_map(pa, WI_PCI_CBMA, PCI_MAPREG_TYPE_MEM,
0, &iot, &ioh, NULL, NULL, 0) != 0) {
printf(": can't map mem space\n");
return;
}
sc->sc_pci = 1;
sc->wi_ltag = iot;
sc->wi_lhandle = ioh;
break;
case WI_PCI_TMD:
if (pci_mapreg_map(pa, WI_TMD_LOCALRES, PCI_MAPREG_TYPE_IO,
0, &localt, &localh, NULL, &localsize, 0) != 0) {
printf(": can't map TMD I/O space\n");
return;
}
sc->wi_ltag = localt;
sc->wi_lhandle = localh;
if (pci_mapreg_map(pa, WI_TMD_IORES, PCI_MAPREG_TYPE_IO,
0, &iot, &ioh, NULL, NULL, 0) != 0) {
printf(": can't map I/O space\n");
return;
}
break;
}
sc->wi_btag = iot;
sc->wi_bhandle = ioh;
/* Enable the card. */
csr = pci_conf_read(pc, pa->pa_tag, PCI_COMMAND_STATUS_REG);
pci_conf_write(pc, pa->pa_tag, PCI_COMMAND_STATUS_REG,
csr | PCI_COMMAND_MASTER_ENABLE);
/* Make sure interrupts are disabled. */
CSR_WRITE_2(sc, WI_INT_EN, 0);
CSR_WRITE_2(sc, WI_EVENT_ACK, 0xFFFF);
/* Map and establish the interrupt. */
if (pci_intr_map(pa, &ih)) {
printf(": couldn't map interrupt\n");
return;
}
intrstr = pci_intr_string(pc, ih);
sc->sc_ih = pci_intr_establish(pc, ih, IPL_NET, wi_intr, sc,
sc->sc_dev.dv_xname);
if (sc->sc_ih == NULL) {
printf(": couldn't establish interrupt");
if (intrstr != NULL)
printf(" at %s", intrstr);
printf("\n");
return;
}
printf(": %s", intrstr);
switch (pp->pp_type) {
case WI_PCI_PLX:
/*
* Check that there really is a PCMCIA card inserted and
* print its CIS strings.
*/
if (localsize != 0 && wi_pci_handle_cis(sc) != 0) {
bus_space_unmap(localt, localh, localsize);
return;
}
/*
* Tell the PLX chip to enable interrupts. In most cases
* the serial EEPROM has done this for us but some cards
* appear not to.
* Note that some PLX-based cards lack this I/O space.
*/
if (localsize != 0) {
command = bus_space_read_4(localt, localh,
WI_PLX_INTCSR);
command |= WI_PLX_INTEN;
bus_space_write_4(localt, localh, WI_PLX_INTCSR,
command);
}
/*
* Setup the PLX chip for level interrupts and config index 1
*/
bus_space_write_1(memt, memh, WI_PLX_COR_OFFSET,
WI_PLX_COR_VALUE);
sc->wi_cor_offset = WI_PLX_COR_OFFSET;
/* Unmap registers we no longer need access to. */
if (localsize != 0)
bus_space_unmap(localt, localh, localsize);
break;
case WI_PCI_PRISM:
bus_space_write_2(iot, ioh, WI_PCI_COR_OFFSET,
WI_COR_SOFT_RESET);
DELAY(100*1000); /* 100 m sec */
bus_space_write_2(iot, ioh, WI_PCI_COR_OFFSET, WI_COR_CLEAR);
DELAY(100*1000); /* 100 m sec */
sc->wi_cor_offset = WI_PCI_COR_OFFSET;
break;
case WI_PCI_TMD:
bus_space_write_1(localt, localh, WI_TMD_COR_OFFSET,
WI_TMD_COR_VALUE);
DELAY(1000);
if (bus_space_read_1(localt, localh, 0) != WI_TMD_COR_VALUE)
printf(": unable to initialize TMD7160 ");
sc->wi_cor_offset = WI_TMD_COR_OFFSET;
break;
}
wi_attach(sc);
}
int
wi_pci_handle_cis(sc)
struct wi_softc *sc;
{
int i, stringno;
char cisbuf[CIS_INFO_SIZE];
char *cis_strings[3];
u_int8_t value;
const u_int8_t cis_magic[] = {
0x01, 0x03, 0x00, 0x00, 0xff, 0x17, 0x04, 0x67
};
/* Make sure there really is a card there. */
for (i = 0; i < 8; i++) {
value = bus_space_read_1(sc->wi_ltag, sc->wi_lhandle, i * 2);
if (value != cis_magic[i]) {
printf("\n%s: no PCMCIA card detected in bridge card\n",
WI_PRT_ARG(sc));
return (ENODEV);
}
}
cis_strings[0] = cisbuf;
stringno = 0;
for (i = 0; i < CIS_INFO_SIZE && stringno < 3; i++) {
cisbuf[i] = bus_space_read_1(sc->wi_ltag,
sc->wi_lhandle, (CIS_MFG_NAME_OFFSET + i) * 2);
if (cisbuf[i] == '\0' && ++stringno < 3)
cis_strings[stringno] = &cisbuf[i + 1];
}
cisbuf[CIS_INFO_SIZE - 1] = '\0';
printf("\n%s: \"%s, %s, %s\"", WI_PRT_ARG(sc),
cis_strings[0], cis_strings[1], cis_strings[2]);
return (0);
}
|