This source file includes following definitions.
- ne_probe
- ne_probe1
- ne_reset_8390
- ne_block_input
- ne_block_output
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 static char *version =
29 "ne.c:v1.10 9/23/94 Donald Becker (becker@cesdis.gsfc.nasa.gov)\n";
30
31 #include <linux/kernel.h>
32 #include <linux/sched.h>
33 #include <linux/errno.h>
34 #include <asm/system.h>
35 #include <asm/io.h>
36
37 #include <linux/netdevice.h>
38 #include "8390.h"
39
40
41
42
43 #define CONFIG_NE_BAD_CLONES
44
45
46
47
48
49
50
51
52
53 extern struct device *init_etherdev(struct device *dev, int sizeof_private,
54 unsigned long *mem_startp);
55
56
57
58 static unsigned int netcard_portlist[] =
59 { 0x300, 0x280, 0x320, 0x340, 0x360, 0};
60
61 #ifdef CONFIG_NE_BAD_CLONES
62
63 static struct { char *name8, *name16; unsigned char SAprefix[4];}
64 bad_clone_list[] = {
65 {"DE100", "DE200", {0x00, 0xDE, 0x01,}},
66 {"DE120", "DE220", {0x00, 0x80, 0xc8,}},
67 {"DFI1000", "DFI2000", {'D', 'F', 'I',}},
68 {"EtherNext UTP8", "EtherNext UTP16", {0x00, 0x00, 0x79}},
69 {"NE1000","NE2000-invalid", {0x00, 0x00, 0xd8}},
70 {"NN1000", "NN2000", {0x08, 0x03, 0x08}},
71 {"4-DIM8","4-DIM16", {0x00,0x00,0x4d,}},
72 {0,}
73 };
74 #endif
75
76 #define NE_BASE (dev->base_addr)
77 #define NE_CMD 0x00
78 #define NE_DATAPORT 0x10
79 #define NE_RESET 0x1f
80 #define NE_IO_EXTENT 0x20
81
82 #define NE1SM_START_PG 0x20
83 #define NE1SM_STOP_PG 0x40
84 #define NESM_START_PG 0x40
85 #define NESM_STOP_PG 0x80
86
87 #define NE_RDC_TIMEOUT 0x02
88
89 int ne_probe(struct device *dev);
90 static int ne_probe1(struct device *dev, int ioaddr);
91
92 static void ne_reset_8390(struct device *dev);
93 static int ne_block_input(struct device *dev, int count,
94 char *buf, int ring_offset);
95 static void ne_block_output(struct device *dev, const int count,
96 const unsigned char *buf, const int start_page);
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120 #ifdef HAVE_DEVLIST
121 struct netdev_entry netcard_drv =
122 {"ne", ne_probe1, NE_IO_EXTENT, netcard_portlist};
123 #else
124
125 int ne_probe(struct device *dev)
126 {
127 int i;
128 int base_addr = dev ? dev->base_addr : 0;
129
130 if (base_addr > 0x1ff)
131 return ne_probe1(dev, base_addr);
132 else if (base_addr != 0)
133 return ENXIO;
134
135 for (i = 0; netcard_portlist[i]; i++) {
136 int ioaddr = netcard_portlist[i];
137 if (check_region(ioaddr, NE_IO_EXTENT))
138 continue;
139 if (ne_probe1(dev, ioaddr) == 0)
140 return 0;
141 }
142
143 return ENODEV;
144 }
145 #endif
146
147 static int ne_probe1(struct device *dev, int ioaddr)
148 {
149 int i;
150 unsigned char SA_prom[32];
151 int wordlength = 2;
152 char *name = NULL;
153 int start_page, stop_page;
154 int neX000, ctron;
155 int reg0 = inb_p(ioaddr);
156
157 if (reg0 == 0xFF)
158 return ENODEV;
159
160
161 { int regd;
162 outb_p(E8390_NODMA+E8390_PAGE1+E8390_STOP, ioaddr + E8390_CMD);
163 regd = inb_p(ioaddr + 0x0d);
164 outb_p(0xff, ioaddr + 0x0d);
165 outb_p(E8390_NODMA+E8390_PAGE0, ioaddr + E8390_CMD);
166 inb_p(ioaddr + EN0_COUNTER0);
167 if (inb_p(ioaddr + EN0_COUNTER0) != 0) {
168 outb_p(reg0, ioaddr);
169 outb_p(regd, ioaddr + 0x0d);
170 return ENODEV;
171 }
172 }
173
174 printk("NE*000 ethercard probe at %#3x:", ioaddr);
175
176
177
178
179
180 {
181 struct {unsigned char value, offset; } program_seq[] = {
182 {E8390_NODMA+E8390_PAGE0+E8390_STOP, E8390_CMD},
183 {0x48, EN0_DCFG},
184 {0x00, EN0_RCNTLO},
185 {0x00, EN0_RCNTHI},
186 {0x00, EN0_IMR},
187 {0xFF, EN0_ISR},
188 {E8390_RXOFF, EN0_RXCR},
189 {E8390_TXOFF, EN0_TXCR},
190 {32, EN0_RCNTLO},
191 {0x00, EN0_RCNTHI},
192 {0x00, EN0_RSARLO},
193 {0x00, EN0_RSARHI},
194 {E8390_RREAD+E8390_START, E8390_CMD},
195 };
196 for (i = 0; i < sizeof(program_seq)/sizeof(program_seq[0]); i++)
197 outb_p(program_seq[i].value, ioaddr + program_seq[i].offset);
198
199 }
200 for(i = 0; i < 32 ; i+=2) {
201 SA_prom[i] = inb(ioaddr + NE_DATAPORT);
202 SA_prom[i+1] = inb(ioaddr + NE_DATAPORT);
203 if (SA_prom[i] != SA_prom[i+1])
204 wordlength = 1;
205 }
206
207 if (wordlength == 2) {
208
209 outb_p(0x49, ioaddr + EN0_DCFG);
210
211
212
213 for (i = 0; i < 16; i++)
214 SA_prom[i] = SA_prom[i+i];
215 start_page = NESM_START_PG;
216 stop_page = NESM_STOP_PG;
217 } else {
218 start_page = NE1SM_START_PG;
219 stop_page = NE1SM_STOP_PG;
220 }
221
222 for(i = 0; i < ETHER_ADDR_LEN; i++) {
223 dev->dev_addr[i] = SA_prom[i];
224 printk(" %2.2x", SA_prom[i]);
225 }
226
227 neX000 = (SA_prom[14] == 0x57 && SA_prom[15] == 0x57);
228 ctron = (SA_prom[0] == 0x00 && SA_prom[1] == 0x00 && SA_prom[2] == 0x1d);
229
230
231 if (neX000) {
232 name = (wordlength == 2) ? "NE2000" : "NE1000";
233 } else if (ctron) {
234 name = "Cabletron";
235 start_page = 0x01;
236 stop_page = (wordlength == 2) ? 0x40 : 0x20;
237 } else {
238 #ifdef CONFIG_NE_BAD_CLONES
239
240
241 for (i = 0; bad_clone_list[i].name8; i++) {
242 if (SA_prom[0] == bad_clone_list[i].SAprefix[0] &&
243 SA_prom[1] == bad_clone_list[i].SAprefix[1] &&
244 SA_prom[2] == bad_clone_list[i].SAprefix[2]) {
245 if (wordlength == 2) {
246 name = bad_clone_list[i].name16;
247 } else {
248 name = bad_clone_list[i].name8;
249 }
250 break;
251 }
252 }
253 if (bad_clone_list[i].name8 == NULL) {
254 printk(" not found (invalid signature %2.2x %2.2x).\n",
255 SA_prom[14], SA_prom[15]);
256 return ENXIO;
257 }
258 #else
259 printk(" not found.\n");
260 return ENXIO;
261 #endif
262
263 }
264
265
266 if (dev == NULL)
267 dev = init_etherdev(0, sizeof(struct ei_device), 0);
268
269 if (dev->irq < 2) {
270 autoirq_setup(0);
271 outb_p(0x50, ioaddr + EN0_IMR);
272 outb_p(0x00, ioaddr + EN0_RCNTLO);
273 outb_p(0x00, ioaddr + EN0_RCNTHI);
274 outb_p(E8390_RREAD+E8390_START, ioaddr);
275 outb_p(0x00, ioaddr + EN0_IMR);
276 dev->irq = autoirq_report(0);
277 if (ei_debug > 2)
278 printk(" autoirq is %d\n", dev->irq);
279 } else if (dev->irq == 2)
280
281
282 dev->irq = 9;
283
284
285
286 {
287 int irqval = request_irq (dev->irq, ei_interrupt, 0, wordlength==2 ? "ne2000":"ne1000");
288 if (irqval) {
289 printk (" unable to get IRQ %d (irqval=%d).\n", dev->irq, irqval);
290 return EAGAIN;
291 }
292 }
293
294 dev->base_addr = ioaddr;
295
296 request_region(ioaddr, NE_IO_EXTENT, wordlength==2 ? "ne2000":"ne1000");
297
298 for(i = 0; i < ETHER_ADDR_LEN; i++)
299 dev->dev_addr[i] = SA_prom[i];
300
301 ethdev_init(dev);
302 printk("\n%s: %s found at %#x, using IRQ %d.\n",
303 dev->name, name, ioaddr, dev->irq);
304
305 if (ei_debug > 0)
306 printk(version);
307
308 ei_status.name = name;
309 ei_status.tx_start_page = start_page;
310 ei_status.stop_page = stop_page;
311 ei_status.word16 = (wordlength == 2);
312
313 ei_status.rx_start_page = start_page + TX_PAGES;
314 #ifdef PACKETBUF_MEMSIZE
315
316 ei_status.stop_page = ei_status.tx_start_page + PACKETBUF_MEMSIZE;
317 #endif
318
319 ei_status.reset_8390 = &ne_reset_8390;
320 ei_status.block_input = &ne_block_input;
321 ei_status.block_output = &ne_block_output;
322 NS8390_init(dev, 0);
323 return 0;
324 }
325
326
327
328 static void
329 ne_reset_8390(struct device *dev)
330 {
331 int tmp = inb_p(NE_BASE + NE_RESET);
332 int reset_start_time = jiffies;
333
334 if (ei_debug > 1) printk("resetting the 8390 t=%ld...", jiffies);
335 ei_status.txing = 0;
336 ei_status.dmaing = 0;
337
338 outb_p(tmp, NE_BASE + NE_RESET);
339
340 while ((inb_p(NE_BASE+EN0_ISR) & ENISR_RESET) == 0)
341 if (jiffies - reset_start_time > 2) {
342 printk("%s: ne_reset_8390() did not complete.\n", dev->name);
343 break;
344 }
345 outb_p(ENISR_RESET, NE_BASE + EN0_ISR);
346 }
347
348
349
350
351
352
353 static int
354 ne_block_input(struct device *dev, int count, char *buf, int ring_offset)
355 {
356 #ifdef CONFIG_NE_SANITY
357 int xfer_count = count;
358 #endif
359 int nic_base = dev->base_addr;
360
361
362 if (ei_status.dmaing) {
363 if (ei_debug > 0)
364 printk("%s: DMAing conflict in ne_block_input "
365 "[DMAstat:%d][irqlock:%d][intr:%d].\n",
366 dev->name, ei_status.dmaing, ei_status.irqlock,
367 dev->interrupt);
368 return 0;
369 }
370 ei_status.dmaing |= 0x01;
371 outb_p(E8390_NODMA+E8390_PAGE0+E8390_START, nic_base+ NE_CMD);
372 outb_p(count & 0xff, nic_base + EN0_RCNTLO);
373 outb_p(count >> 8, nic_base + EN0_RCNTHI);
374 outb_p(ring_offset & 0xff, nic_base + EN0_RSARLO);
375 outb_p(ring_offset >> 8, nic_base + EN0_RSARHI);
376 outb_p(E8390_RREAD+E8390_START, nic_base + NE_CMD);
377 if (ei_status.word16) {
378 insw(NE_BASE + NE_DATAPORT,buf,count>>1);
379 if (count & 0x01) {
380 buf[count-1] = inb(NE_BASE + NE_DATAPORT);
381 #ifdef CONFIG_NE_SANITY
382 xfer_count++;
383 #endif
384 }
385 } else {
386 insb(NE_BASE + NE_DATAPORT, buf, count);
387 }
388
389
390
391
392
393 #ifdef CONFIG_NE_SANITY
394 if (ei_debug > 1) {
395 int addr, tries = 20;
396 do {
397
398
399 int high = inb_p(nic_base + EN0_RSARHI);
400 int low = inb_p(nic_base + EN0_RSARLO);
401 addr = (high << 8) + low;
402 if (((ring_offset + xfer_count) & 0xff) == low)
403 break;
404 } while (--tries > 0);
405 if (tries <= 0)
406 printk("%s: RX transfer address mismatch,"
407 "%#4.4x (expected) vs. %#4.4x (actual).\n",
408 dev->name, ring_offset + xfer_count, addr);
409 }
410 #endif
411 outb_p(ENISR_RDC, nic_base + EN0_ISR);
412 ei_status.dmaing &= ~0x01;
413 return ring_offset + count;
414 }
415
416 static void
417 ne_block_output(struct device *dev, int count,
418 const unsigned char *buf, const int start_page)
419 {
420 #ifdef CONFIG_NE_SANITY
421 int retries = 0;
422 #endif
423 int nic_base = NE_BASE;
424 unsigned long dma_start;
425
426
427
428
429 if (ei_status.word16 && (count & 0x01))
430 count++;
431
432
433 if (ei_status.dmaing) {
434 if (ei_debug > 0)
435 printk("%s: DMAing conflict in ne_block_output."
436 "[DMAstat:%d][irqlock:%d][intr:%d]\n",
437 dev->name, ei_status.dmaing, ei_status.irqlock,
438 dev->interrupt);
439 return;
440 }
441 ei_status.dmaing |= 0x01;
442
443 outb_p(E8390_PAGE0+E8390_START+E8390_NODMA, nic_base + NE_CMD);
444
445 #ifdef CONFIG_NE_SANITY
446 retry:
447 #endif
448
449 #ifdef CONFIG_NE_RW_BUGFIX
450
451
452
453
454 outb_p(0x42, nic_base + EN0_RCNTLO);
455 outb_p(0x00, nic_base + EN0_RCNTHI);
456 outb_p(0x42, nic_base + EN0_RSARLO);
457 outb_p(0x00, nic_base + EN0_RSARHI);
458 outb_p(E8390_RREAD+E8390_START, nic_base + NE_CMD);
459
460 SLOW_DOWN_IO;
461 SLOW_DOWN_IO;
462 SLOW_DOWN_IO;
463 #endif
464
465 outb_p(ENISR_RDC, nic_base + EN0_ISR);
466
467
468 outb_p(count & 0xff, nic_base + EN0_RCNTLO);
469 outb_p(count >> 8, nic_base + EN0_RCNTHI);
470 outb_p(0x00, nic_base + EN0_RSARLO);
471 outb_p(start_page, nic_base + EN0_RSARHI);
472
473 outb_p(E8390_RWRITE+E8390_START, nic_base + NE_CMD);
474 if (ei_status.word16) {
475 outsw(NE_BASE + NE_DATAPORT, buf, count>>1);
476 } else {
477 outsb(NE_BASE + NE_DATAPORT, buf, count);
478 }
479
480 dma_start = jiffies;
481
482 #ifdef CONFIG_NE_SANITY
483
484
485 if (ei_debug > 1) {
486 int addr, tries = 20;
487 do {
488 int high = inb_p(nic_base + EN0_RSARHI);
489 int low = inb_p(nic_base + EN0_RSARLO);
490 addr = (high << 8) + low;
491 if ((start_page << 8) + count == addr)
492 break;
493 } while (--tries > 0);
494 if (tries <= 0) {
495 printk("%s: Tx packet transfer address mismatch,"
496 "%#4.4x (expected) vs. %#4.4x (actual).\n",
497 dev->name, (start_page << 8) + count, addr);
498 if (retries++ == 0)
499 goto retry;
500 }
501 }
502 #endif
503
504 while ((inb_p(nic_base + EN0_ISR) & ENISR_RDC) == 0)
505 if (jiffies - dma_start > NE_RDC_TIMEOUT) {
506 printk("%s: timeout waiting for Tx RDC.\n", dev->name);
507 ne_reset_8390(dev);
508 NS8390_init(dev,1);
509 break;
510 }
511
512 outb_p(ENISR_RDC, nic_base + EN0_ISR);
513 ei_status.dmaing &= ~0x01;
514 return;
515 }
516
517
518
519
520
521
522
523
524