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
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
|
/* $Id: if_ie.c,v 1.3 1995/11/07 08:51:00 deraadt Exp $ */
/*
* Copyright (c) 1995 Theo de Raadt
*
* 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 under OpenBSD by
* Theo de Raadt for Willowglen Singapore.
* 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 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.
*/
#include <sys/param.h>
#include <sys/types.h>
#include <netinet/in.h>
#include <netinet/in_systm.h>
#define ETHER_MIN_LEN 64
#define ETHER_MAX_LEN 1518
#define NTXBUF 1
#define NRXBUF 16
#define IE_RBUF_SIZE ETHER_MAX_LEN
#include "stand.h"
#include "netif.h"
#include "config.h"
#include "i82586.h"
#include "if_iereg.h"
int ie_debug = 0;
void ie_stop __P((struct netif *));
void ie_end __P((struct netif *));
void ie_error __P((struct netif *, char *, volatile struct iereg *));
int ie_get __P((struct iodesc *, void *, size_t, time_t));
void ie_init __P((struct iodesc *, void *));
int ie_match __P((struct netif *, void *));
int ie_poll __P((struct iodesc *, void *, int));
int ie_probe __P((struct netif *, void *));
int ie_put __P((struct iodesc *, void *, size_t));
void ie_reset __P((struct netif *, u_char *));
struct netif_stats ie_stats;
struct netif_dif ie0_dif = {
0, /* unit */
1, /* nsel */
&ie_stats,
0,
0,
};
struct netif_driver ie_driver = {
"ie", /* netif_bname */
ie_match, /* match */
ie_probe, /* probe */
ie_init, /* init */
ie_get, /* get */
ie_put, /* put */
ie_end, /* end */
&ie0_dif, /* netif_ifs */
1, /* netif_nifs */
};
struct ie_configuration {
u_int phys_addr;
int used;
} ie_config[] = {
{ INTEL_REG_ADDR, 0 }
};
int nie_config = sizeof(ie_config) / (sizeof(ie_config[0]));
struct {
struct iereg *sc_reg; /* IE registers */
struct iemem *sc_mem; /* RAM */
} ie_softc;
int
ie_match(nif, machdep_hint)
struct netif *nif;
void *machdep_hint;
{
char *name;
int i, val = 0;
extern int cputyp;
if (cputyp == CPU_147)
return (0);
name = machdep_hint;
if (name && !bcmp(ie_driver.netif_bname, name, 2))
val += 10;
for (i = 0; i < nie_config; i++) {
if (ie_config[i].used)
continue;
if (ie_debug)
printf("ie%d: ie_match --> %d\n", i, val + 1);
ie_config[i].used++;
return (val + 1);
}
if (ie_debug)
printf("ie%d: ie_match --> 0\n", i);
return (0);
}
int
ie_probe(nif, machdep_hint)
struct netif *nif;
void *machdep_hint;
{
extern int cputyp;
/* the set unit is the current unit */
if (ie_debug)
printf("ie%d: ie_probe called\n", nif->nif_unit);
if (cputyp != CPU_147)
return (0);
return (1);
}
void
ie_error(nif, str, ier)
struct netif *nif;
char *str;
volatile struct iereg *ier;
{
panic("ie%d: unknown error\n", nif->nif_unit);
}
ieack(ier, iem)
volatile struct iereg *ier;
struct iemem *iem;
{
/* ack the `interrupt' */
iem->im_scb.ie_command = iem->im_scb.ie_status & IE_ST_WHENCE;
ier->ie_attention = 1; /* chan attention! */
while (iem->im_scb.ie_command)
;
}
void
ie_reset(nif, myea)
struct netif *nif;
u_char *myea;
{
volatile struct iereg *ier = ie_softc.sc_reg;
struct iemem *iem = ie_softc.sc_mem;
int timo = 10000, stat, i;
volatile int t;
u_int a;
if (ie_debug)
printf("ie%d: ie_reset called\n", nif->nif_unit);
/*printf("ier %x iem %x\n", ier, iem);*/
*(u_char *)0xfff4202a = 0x40;
bzero(iem, sizeof(*iem));
iem->im_scp.scp_sysbus = 0;
iem->im_scp.scp_iscp_low = (int) &iem->im_iscp & 0xffff;
iem->im_scp.scp_iscp_high = (int) &iem->im_iscp >> 16;
iem->im_iscp.iscp_scboffset = (int) &iem->im_scb - (int) iem;
iem->im_iscp.iscp_busy = 1;
iem->im_iscp.iscp_base_low = (int) iem & 0xffff;
iem->im_iscp.iscp_base_high = (int) iem >> 16;
/*
* completely and utterly unlike what i expected, the
* "write" order is:
* 1st: d15-d0 -> high address
* 2nd: d31-d16 -> low address
*/
/* reset chip */
a = IE_PORT_RESET;
ier->ie_porthigh = a & 0xffff;
t = 0;
t = 1;
ier->ie_portlow = a >> 16;
for (t = timo; t--;)
;
/* set new SCP pointer */
a = (int) &iem->im_scp | IE_PORT_NEWSCP;
ier->ie_porthigh = a & 0xffff;
t = 0;
t = 1;
ier->ie_portlow = a >> 16;
for (t = timo; t--;)
;
ier->ie_attention = 1; /* chan attention! */
for (t = timo * 10; t--;)
;
/* send CONFIGURE command */
iem->im_scb.ie_command = IE_CU_START;
iem->im_scb.ie_command_list = (int) &iem->im_cc - (int) iem;
iem->im_cc.com.ie_cmd_status = 0;
iem->im_cc.com.ie_cmd_cmd = IE_CMD_CONFIG | IE_CMD_LAST;
iem->im_cc.com.ie_cmd_link = 0xffff;
iem->im_cc.ie_config_count = 0x0c;
iem->im_cc.ie_fifo = 8;
iem->im_cc.ie_save_bad = 0x40;
iem->im_cc.ie_addr_len = 0x2e;
iem->im_cc.ie_priority = 0;
iem->im_cc.ie_ifs = 0x60;
iem->im_cc.ie_slot_low = 0;
iem->im_cc.ie_slot_high = 0xf2;
iem->im_cc.ie_promisc = 0;
iem->im_cc.ie_crs_cdt = 0;
iem->im_cc.ie_min_len = 64;
iem->im_cc.ie_junk = 0xff;
ier->ie_attention = 1; /* chan attention! */
for (t = timo * 10; t--;)
;
ieack(ier, iem);
/*printf("ic %x\n", &iem->im_ic);*/
/* send IASETUP command */
iem->im_scb.ie_command = IE_CU_START;
iem->im_scb.ie_command_list = (int) &iem->im_ic - (int) iem;
iem->im_ic.com.ie_cmd_status = 0;
iem->im_ic.com.ie_cmd_cmd = IE_CMD_IASETUP | IE_CMD_LAST;
iem->im_ic.com.ie_cmd_link = 0xffff;
bcopy(myea, (void *)&iem->im_ic.ie_address, sizeof iem->im_ic.ie_address);
ier->ie_attention = 1; /* chan attention! */
for (t = timo * 10; t--;)
;
ieack(ier, iem);
/* setup buffers */
for (i = 0; i < NRXBUF; i++) {
iem->im_rfd[i].ie_fd_next = (int) &iem->im_rfd[(i+1) % NRXBUF] -
(int) iem;
iem->im_rbd[i].ie_rbd_next = (int) &iem->im_rbd[(i+1) % NRXBUF] -
(int) iem;
a = (int) &iem->im_rxbuf[i * IE_RBUF_SIZE];
iem->im_rbd[i].ie_rbd_buffer_low = a & 0xffff;
iem->im_rbd[i].ie_rbd_buffer_high = a >> 16;
iem->im_rbd[i].ie_rbd_length = IE_RBUF_SIZE;
}
iem->im_rfd[NRXBUF-1].ie_fd_last |= IE_FD_LAST;
iem->im_rbd[NRXBUF-1].ie_rbd_length |= IE_RBD_LAST;
iem->im_rfd[0].ie_fd_buf_desc = (int) &iem->im_rbd[0] - (int) iem;
/*printf("rfd[0] %x rbd[0] %x buf[0] %x\n", &iem->im_rfd, &iem->im_rbd,
&iem->im_rxbuf);*/
/* send receiver start command */
iem->im_scb.ie_command = IE_RU_START;
iem->im_scb.ie_command_list = 0;
iem->im_scb.ie_recv_list = (int) &iem->im_rfd[0] - (int) iem;
ier->ie_attention = 1; /* chan attention! */
while (iem->im_scb.ie_command)
;
ieack(ier, iem);
}
int
ie_poll(desc, pkt, len)
struct iodesc *desc;
void *pkt;
int len;
{
volatile struct iereg *ier = ie_softc.sc_reg;
struct iemem *iem = ie_softc.sc_mem;
u_char *p = pkt;
static int slot;
int length = 0;
u_int a;
u_short status;
asm(".word 0xf518\n");
status = iem->im_rfd[slot].ie_fd_status;
if (status & IE_FD_BUSY)
return (0);
/* printf("slot %d: %x\n", slot, status); */
if ((status & (IE_FD_COMPLETE | IE_FD_OK)) == (IE_FD_COMPLETE | IE_FD_OK)) {
if (status & IE_FD_OK) {
length = iem->im_rbd[slot].ie_rbd_actual & 0x3fff;
if (length > len)
length = len;
bcopy((void *)&iem->im_rxbuf[slot * IE_RBUF_SIZE],
pkt, length);
iem->im_rfd[slot].ie_fd_status = 0;
iem->im_rfd[slot].ie_fd_last |= IE_FD_LAST;
iem->im_rfd[(slot+NRXBUF-1)%NRXBUF].ie_fd_last &=
~IE_FD_LAST;
iem->im_rbd[slot].ie_rbd_actual = 0;
iem->im_rbd[slot].ie_rbd_length |= IE_RBD_LAST;
iem->im_rbd[(slot+NRXBUF-1)%NRXBUF].ie_rbd_length &=
~IE_RBD_LAST;
/*printf("S%d\n", slot);*/
} else {
printf("shit\n");
}
slot++;
/* should move descriptor onto end of queue... */
}
if ((iem->im_scb.ie_status & IE_RU_READY) == 0) {
printf("RR\n");
for (slot = 0; slot < NRXBUF; slot++) {
iem->im_rbd[slot].ie_rbd_length &= ~IE_RBD_LAST;
iem->im_rfd[slot].ie_fd_last &= ~IE_FD_LAST;
}
iem->im_rbd[NRXBUF-1].ie_rbd_length |= IE_RBD_LAST;
iem->im_rfd[NRXBUF-1].ie_fd_last |= IE_FD_LAST;
iem->im_rfd[0].ie_fd_buf_desc = (int)&iem->im_rbd[0] - (int)iem;
iem->im_scb.ie_command = IE_RU_START;
iem->im_scb.ie_command_list = 0;
iem->im_scb.ie_recv_list = (int)&iem->im_rfd[0] - (int)iem;
ier->ie_attention = 1; /* chan attention! */
while (iem->im_scb.ie_command)
;
slot = 0;
}
slot = slot % NRXBUF;
return (length);
}
int
ie_put(desc, pkt, len)
struct iodesc *desc;
void *pkt;
size_t len;
{
volatile struct iereg *ier = ie_softc.sc_reg;
struct iemem *iem = ie_softc.sc_mem;
u_char *p = pkt;
int timo = 10000, stat, i;
volatile int t;
u_int a;
int xx = 0;
/* send transmit command */
while (iem->im_scb.ie_command)
;
/* copy data */
bcopy(p, (void *)&iem->im_txbuf[xx], len);
len = MAX(len, ETHER_MIN_LEN);
/* build transmit descriptor */
iem->im_xd[xx].ie_xmit_flags = len | IE_XMIT_LAST;
iem->im_xd[xx].ie_xmit_next = 0xffff;
a = (int) &iem->im_txbuf[xx];
iem->im_xd[xx].ie_xmit_buf_low = a & 0xffff;
iem->im_xd[xx].ie_xmit_buf_high = a >> 16;
/* transmit command */
iem->im_xc[xx].com.ie_cmd_status = 0;
iem->im_xc[xx].com.ie_cmd_cmd = IE_CMD_XMIT | IE_CMD_LAST;
iem->im_xc[xx].com.ie_cmd_link = 0xffff;
iem->im_xc[xx].ie_xmit_desc = (int) &iem->im_xd[xx] - (int) iem;
iem->im_xc[xx].ie_xmit_length = len;
bcopy(p, (void *)&iem->im_xc[xx].ie_xmit_addr,
sizeof iem->im_xc[xx].ie_xmit_addr);
iem->im_scb.ie_command = IE_CU_START;
iem->im_scb.ie_command_list = (int) &iem->im_xc[xx] - (int) iem;
ier->ie_attention = 1; /* chan attention! */
if (ie_debug) {
printf("ie%d: send %d to %x:%x:%x:%x:%x:%x\n",
desc->io_netif->nif_unit, len,
p[0], p[1], p[2], p[3], p[4], p[5]);
}
return (len);
}
int
ie_get(desc, pkt, len, timeout)
struct iodesc *desc;
void *pkt;
size_t len;
time_t timeout;
{
time_t t;
int cc;
t = getsecs();
cc = 0;
while (((getsecs() - t) < timeout) && !cc) {
cc = ie_poll(desc, pkt, len);
}
return (cc);
}
/*
* init ie device. return 0 on failure, 1 if ok.
*/
void
ie_init(desc, machdep_hint)
struct iodesc *desc;
void *machdep_hint;
{
struct netif *nif = desc->io_netif;
if (ie_debug)
printf("ie%d: ie_init called\n", desc->io_netif->nif_unit);
machdep_common_ether(desc->myea);
bzero(&ie_softc, sizeof(ie_softc));
ie_softc.sc_reg =
(struct iereg *) ie_config[desc->io_netif->nif_unit].phys_addr;
ie_softc.sc_mem = (struct iemem *) 0x1e0000;
ie_reset(desc->io_netif, desc->myea);
printf("device: %s%d attached to %s\n", nif->nif_driver->netif_bname,
nif->nif_unit, ether_sprintf(desc->myea));
}
void
ie_stop(nif)
struct netif *nif;
{
volatile struct iereg *ier = ie_softc.sc_reg;
struct iemem *iem = ie_softc.sc_mem;
int timo = 10000;
volatile int t;
u_int a;
iem->im_iscp.iscp_busy = 1;
/* reset chip */
a = IE_PORT_RESET;
ier->ie_porthigh = a & 0xffff;
t = 0;
t = 1;
ier->ie_portlow = a >> 16;
for (t = timo; t--;)
;
/* reset chip again */
a = IE_PORT_RESET;
ier->ie_porthigh = a & 0xffff;
t = 0;
t = 1;
ier->ie_portlow = a >> 16;
for (t = timo; t--;)
;
/*printf("status %x busy %x\n", iem->im_scb.ie_status,
iem->im_iscp.iscp_busy);*/
}
void
ie_end(nif)
struct netif *nif;
{
if (ie_debug)
printf("ie%d: ie_end called\n", nif->nif_unit);
ie_stop(nif);
/* *(u_char *) 0xfff42002 = 0; */
}
|