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
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
|
/* $OpenBSD: if_ie_gsc.c,v 1.21 2003/08/07 19:47:33 mickey Exp $ */
/*
* Copyright (c) 1998,1999 Michael Shalayeff
* 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. All advertising materials mentioning features or use of this software
* must display the following acknowledgement:
* This product includes software developed by Michael Shalayeff.
* 4. 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 BY THE AUTHOR ``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 MIND,
* 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.
*/
/*
* Referencies:
* 1. 82596DX and 82596SX High-Perfomance 32-bit Local Area Network Coprocessor
* Intel Corporation, November 1996, Order Number: 290219-006
*
* 2. 712 I/O Subsystem ERS Rev 1.0
* Hewlett-Packard, June 17 1992, Dwg No. A-A2263-66510-31
*/
#include <sys/param.h>
#include <sys/systm.h>
#include <sys/device.h>
#include <sys/socket.h>
#include <sys/sockio.h>
#include <net/if.h>
#include <net/if_dl.h>
#include <net/if_types.h>
#include <net/if_media.h>
#include <netinet/in.h>
#include <netinet/if_ether.h>
#include <machine/bus.h>
#include <machine/intr.h>
#include <machine/iomod.h>
#include <machine/autoconf.h>
#include <hppa/dev/cpudevs.h>
#include <hppa/gsc/gscbusvar.h>
#include <dev/ic/i82596reg.h>
#include <dev/ic/i82596var.h>
#define IEGSC_GECKO IEMD_FLAG0
struct ie_gsc_regs {
u_int32_t ie_reset;
u_int32_t ie_port;
u_int32_t ie_attn;
};
#define IE_SIZE 0x8000
int ie_gsc_probe(struct device *, void *, void *);
void ie_gsc_attach(struct device *, struct device *, void *);
struct cfattach ie_gsc_ca = {
sizeof(struct ie_softc), ie_gsc_probe, ie_gsc_attach
};
static int ie_gsc_media[] = {
IFM_ETHER | IFM_10_2,
};
#define IE_NMEDIA (sizeof(ie_gsc_media) / sizeof(ie_gsc_media[0]))
char *ie_mem;
void ie_gsc_reset(struct ie_softc *sc, int what);
void ie_gsc_attend(struct ie_softc *sc);
void ie_gsc_run(struct ie_softc *sc);
void ie_gsc_port(struct ie_softc *sc, u_int);
#ifdef USELEDS
int ie_gsc_intrhook(struct ie_softc *sc, int what);
#endif
u_int16_t ie_gsc_read16(struct ie_softc *sc, int offset);
void ie_gsc_write16(struct ie_softc *sc, int offset, u_int16_t v);
void ie_gsc_write24(struct ie_softc *sc, int offset, int addr);
void ie_gsc_memcopyin(struct ie_softc *sc, void *p, int offset, size_t);
void ie_gsc_memcopyout(struct ie_softc *sc, const void *p, int, size_t);
void
ie_gsc_reset(sc, what)
struct ie_softc *sc;
int what;
{
volatile struct ie_gsc_regs *r = (struct ie_gsc_regs *)sc->ioh;
int i;
r->ie_reset = 0;
/*
* per [2] 4.6.2.1
* delay for 10 system clocks + 5 transmit clocks,
* NB: works for system clocks over 10MHz
*/
DELAY(1000);
switch (what) {
case IE_CHIP_PROBE:
break;
case IE_CARD_RESET:
/*
* after the hardware reset:
* inform i825[89]6 about new SCP address,
* maddr must be at least 16-byte aligned
*/
ie_gsc_port(sc, IE_PORT_SCP);
ie_gsc_attend(sc);
for (i = 9000; i-- && ie_gsc_read16(sc, IE_ISCP_BUSY(sc->iscp));
DELAY(100))
pdcache(0, sc->sc_maddr + sc->iscp, IE_ISCP_SZ);
#ifdef I82596_DEBUG
if (i < 0) {
printf("timeout for PORT command (%x)%s\n",
ie_gsc_read16(sc, IE_ISCP_BUSY(sc->iscp)),
(sc->sc_flags & IEGSC_GECKO)? " on gecko":"");
return;
}
#endif
break;
}
}
void
ie_gsc_attend(sc)
struct ie_softc *sc;
{
volatile struct ie_gsc_regs *r = (struct ie_gsc_regs *)sc->ioh;
fdcache(0, (vaddr_t)ie_mem, IE_SIZE);
DELAY(1);
r->ie_attn = 0;
DELAY(1);
}
void
ie_gsc_run(sc)
struct ie_softc *sc;
{
}
void
ie_gsc_port(sc, cmd)
struct ie_softc *sc;
u_int cmd;
{
switch (cmd) {
case IE_PORT_RESET:
cmd = 0;
break;
case IE_PORT_TEST:
cmd = ((u_int)sc->sc_maddr + sc->scp) | 1;
break;
case IE_PORT_SCP:
cmd = ((u_int)sc->sc_maddr + sc->scp) | 2;
break;
case IE_PORT_DUMP:
cmd = 3;
break;
}
if (sc->sc_flags & IEGSC_GECKO) {
volatile struct ie_gsc_regs *r = (struct ie_gsc_regs *)sc->ioh;
r->ie_port = cmd & 0xffff;
DELAY(1000);
r->ie_port = cmd >> 16;
DELAY(1000);
} else {
volatile struct ie_gsc_regs *r = (struct ie_gsc_regs *)sc->ioh;
r->ie_port = cmd >> 16;
DELAY(1000);
r->ie_port = cmd & 0xffff;
DELAY(1000);
}
}
#ifdef USELEDS
int
ie_gsc_intrhook(sc, where)
struct ie_softc *sc;
int where;
{
switch (where) {
case IE_INTR_ENRCV:
ledctl(PALED_NETRCV, 0, 0);
break;
case IE_INTR_ENSND:
ledctl(PALED_NETSND, 0, 0);
break;
case IE_INTR_EXIT:
case IE_INTR_LOOP:
fdcache(0, (vaddr_t)ie_mem, IE_SIZE);
break;
}
return 0;
}
#endif
u_int16_t
ie_gsc_read16(sc, offset)
struct ie_softc *sc;
int offset;
{
volatile u_int16_t *addr = (volatile u_int16_t *)(sc->bh + offset);
asm __volatile ("fdc %%r0(%%sr0, %0)" :: "r" (addr));
return *addr;
}
void
ie_gsc_write16(sc, offset, v)
struct ie_softc *sc;
int offset;
u_int16_t v;
{
volatile u_int16_t *addr = (volatile u_int16_t *)(sc->bh + offset);
*addr = v;
asm __volatile ("fdc %%r0(%%sr0, %0)" :: "r" (addr));
}
void
ie_gsc_write24(sc, offset, v)
struct ie_softc *sc;
int offset;
int v;
{
volatile u_int16_t *addr = (volatile u_int16_t *)(sc->bh + offset);
addr[0] = (v ) & 0xffff;
addr[1] = (v >> 16) & 0xffff;
asm __volatile ("fdc %%r0(%%sr0, %0)" :: "r" (addr+0));
asm __volatile ("fdc %%r0(%%sr0, %0)" :: "r" (addr+1));
}
void
ie_gsc_memcopyin(sc, p, offset, size)
struct ie_softc *sc;
void *p;
int offset;
size_t size;
{
pdcache(0, sc->bh + offset, size);
bcopy ((void *)((u_long)sc->bh + offset), p, size);
}
void
ie_gsc_memcopyout(sc, p, offset, size)
struct ie_softc *sc;
const void *p;
int offset;
size_t size;
{
bcopy (p, (void *)((u_long)sc->bh + offset), size);
fdcache(0, sc->bh + offset, size);
}
int
ie_gsc_probe(parent, match, aux)
struct device *parent;
void *match, *aux;
{
struct gsc_attach_args *ga = aux;
if (ga->ga_type.iodc_type != HPPA_TYPE_FIO ||
(ga->ga_type.iodc_sv_model != HPPA_FIO_LAN &&
ga->ga_type.iodc_sv_model != HPPA_FIO_GLAN))
return 0;
return 1;
}
void
ie_gsc_attach(parent, self, aux)
struct device *parent, *self;
void *aux;
{
struct pdc_lan_station_id pdc_mac PDC_ALIGNMENT;
struct ie_softc *sc = (struct ie_softc *)self;
struct gsc_attach_args *ga = aux;
/*bus_dma_segment_t seg;
int rseg;*/
int rv;
#ifdef PMAPDEBUG
extern int pmapdebug;
int opmapdebug = pmapdebug;
pmapdebug = 0;
#endif
if (ga->ga_type.iodc_sv_model == HPPA_FIO_GLAN)
sc->sc_flags |= IEGSC_GECKO;
sc->sc_msize = IE_SIZE;
/* XXX memory must be under 16M until the mi part is fixed */
#if 0
if (bus_dmamem_alloc(ga->ga_dmatag, sc->sc_msize, NBPG, 0,
&seg, 1, &rseg, BUS_DMA_NOWAIT)) {
printf (": cannot allocate %d bytes of DMA memory\n",
sc->sc_msize);
return;
}
if (bus_dmamem_map(ga->ga_dmatag, &seg, rseg, sc->sc_msize,
(caddr_t *)&sc->bh, BUS_DMA_NOWAIT)) {
printf (": cannot map DMA memory\n");
bus_dmamem_free(ga->ga_dmatag, &seg, rseg);
return;
}
bzero((void *)sc->bh, sc->sc_msize);
sc->sc_maddr = kvtop((caddr_t)sc->bh);
#else
sc->bh = (u_int)ie_mem;
sc->sc_maddr = sc->bh;
#endif
sc->sysbus = 0x40 | IE_SYSBUS_82586 | IE_SYSBUS_INTLOW | IE_SYSBUS_TRG | IE_SYSBUS_BE;
sc->iot = sc->bt = ga->ga_iot;
sc->ioh = ga->ga_hpa;
sc->do_xmitnopchain = 0;
sc->hwreset = ie_gsc_reset;
sc->chan_attn = ie_gsc_attend;
sc->port = ie_gsc_port;
sc->hwinit = ie_gsc_run;
sc->memcopyout = ie_gsc_memcopyout;
sc->memcopyin = ie_gsc_memcopyin;
sc->ie_bus_read16 = ie_gsc_read16;
sc->ie_bus_write16 = ie_gsc_write16;
sc->ie_bus_write24 = ie_gsc_write24;
#ifdef USELEDS
sc->intrhook = ie_gsc_intrhook;
#else
sc->intrhook = NULL;
#endif
#ifdef I82596_DEBUG
printf(" mem %x[%p]/%x", sc->bh, sc->sc_maddr, sc->sc_msize);
sc->sc_debug = IED_ALL;
#endif
rv = i82596_probe(sc);
if (!rv) {
/*bus_dmamem_free(ga->ga_dmatag, &seg, sc->sc_msize);*/
}
#ifdef PMAPDEBUG
pmapdebug = opmapdebug;
#endif
if (!rv) {
printf("\n");
return;
}
if (pdc_call((iodcio_t)pdc, 0, PDC_LAN_STATION_ID,
PDC_LAN_STATION_ID_READ, &pdc_mac, ga->ga_hpa) < 0)
bcopy((void *)ASP_PROM, sc->sc_arpcom.ac_enaddr,
ETHER_ADDR_LEN);
else
bcopy(pdc_mac.addr, sc->sc_arpcom.ac_enaddr, ETHER_ADDR_LEN);
printf(":");
sc->iscp = 0;
sc->scp = 32;
sc->scb = 94;
sc->buf_area = 256;
sc->buf_area_sz = sc->sc_msize - sc->buf_area;
sc->sc_type = sc->sc_flags & IEGSC_GECKO? "LASI/i82596CA" : "i82596DX";
sc->sc_vers = ga->ga_type.iodc_model * 10 + ga->ga_type.iodc_sv_rev;
i82596_attach(sc, sc->sc_type, (char *)sc->sc_arpcom.ac_enaddr,
ie_gsc_media, IE_NMEDIA, ie_gsc_media[0]);
sc->sc_ih = gsc_intr_establish((struct gsc_softc *)parent, IPL_NET,
ga->ga_irq, i82596_intr, sc, sc->sc_dev.dv_xname);
}
|