]> bbs.cooldavid.org Git - net-next-2.6.git/blame - drivers/net/sonic.c
[TG3]: Fix race condition when calling register_netdev().
[net-next-2.6.git] / drivers / net / sonic.c
CommitLineData
1da177e4
LT
1/*
2 * sonic.c
3 *
efcce839
FT
4 * (C) 2005 Finn Thain
5 *
6 * Converted to DMA API, added zero-copy buffer handling, and
7 * (from the mac68k project) introduced dhd's support for 16-bit cards.
8 *
1da177e4 9 * (C) 1996,1998 by Thomas Bogendoerfer (tsbogend@alpha.franken.de)
6aa20a22 10 *
1da177e4
LT
11 * This driver is based on work from Andreas Busse, but most of
12 * the code is rewritten.
6aa20a22 13 *
1da177e4
LT
14 * (C) 1995 by Andreas Busse (andy@waldorf-gmbh.de)
15 *
16 * Core code included by system sonic drivers
efcce839
FT
17 *
18 * And... partially rewritten again by David Huggins-Daines in order
19 * to cope with screwed up Macintosh NICs that may or may not use
20 * 16-bit DMA.
21 *
22 * (C) 1999 David Huggins-Daines <dhd@debian.org>
23 *
1da177e4
LT
24 */
25
26/*
27 * Sources: Olivetti M700-10 Risc Personal Computer hardware handbook,
28 * National Semiconductors data sheet for the DP83932B Sonic Ethernet
29 * controller, and the files "8390.c" and "skeleton.c" in this directory.
efcce839
FT
30 *
31 * Additional sources: Nat Semi data sheet for the DP83932C and Nat Semi
32 * Application Note AN-746, the files "lance.c" and "ibmlana.c". See also
33 * the NetBSD file "sys/arch/mac68k/dev/if_sn.c".
1da177e4
LT
34 */
35
36
37
38/*
39 * Open/initialize the SONIC controller.
40 *
41 * This routine should set everything up anew at each open, even
42 * registers that "should" only need to be set once at boot, so that
43 * there is non-reboot way to recover if something goes wrong.
44 */
45static int sonic_open(struct net_device *dev)
46{
efcce839
FT
47 struct sonic_local *lp = netdev_priv(dev);
48 int i;
6aa20a22 49
1da177e4
LT
50 if (sonic_debug > 2)
51 printk("sonic_open: initializing sonic driver.\n");
52
53 /*
54 * We don't need to deal with auto-irq stuff since we
55 * hardwire the sonic interrupt.
56 */
57/*
58 * XXX Horrible work around: We install sonic_interrupt as fast interrupt.
59 * This means that during execution of the handler interrupt are disabled
60 * covering another bug otherwise corrupting data. This doesn't mean
61 * this glue works ok under all situations.
efcce839
FT
62 *
63 * Note (dhd): this also appears to prevent lockups on the Macintrash
64 * when more than one Ethernet card is installed (knock on wood)
65 *
66 * Note (fthain): whether the above is still true is anyones guess. Certainly
67 * the buffer handling algorithms will not tolerate re-entrance without some
68 * mutual exclusion added. Anyway, the memcpy has now been eliminated from the
69 * rx code to make this a faster "fast interrupt".
1da177e4 70 */
efcce839
FT
71 if (request_irq(dev->irq, &sonic_interrupt, SONIC_IRQ_FLAG, "sonic", dev)) {
72 printk(KERN_ERR "\n%s: unable to get IRQ %d .\n", dev->name, dev->irq);
1da177e4
LT
73 return -EAGAIN;
74 }
75
efcce839
FT
76 for (i = 0; i < SONIC_NUM_RRS; i++) {
77 struct sk_buff *skb = dev_alloc_skb(SONIC_RBSIZE + 2);
78 if (skb == NULL) {
79 while(i > 0) { /* free any that were allocated successfully */
80 i--;
81 dev_kfree_skb(lp->rx_skb[i]);
82 lp->rx_skb[i] = NULL;
83 }
84 printk(KERN_ERR "%s: couldn't allocate receive buffers\n",
85 dev->name);
86 return -ENOMEM;
87 }
88 skb->dev = dev;
89 /* align IP header unless DMA requires otherwise */
90 if (SONIC_BUS_SCALE(lp->dma_bitmode) == 2)
91 skb_reserve(skb, 2);
92 lp->rx_skb[i] = skb;
93 }
94
95 for (i = 0; i < SONIC_NUM_RRS; i++) {
96 dma_addr_t laddr = dma_map_single(lp->device, skb_put(lp->rx_skb[i], SONIC_RBSIZE),
97 SONIC_RBSIZE, DMA_FROM_DEVICE);
98 if (!laddr) {
99 while(i > 0) { /* free any that were mapped successfully */
100 i--;
101 dma_unmap_single(lp->device, lp->rx_laddr[i], SONIC_RBSIZE, DMA_FROM_DEVICE);
102 lp->rx_laddr[i] = (dma_addr_t)0;
103 }
104 for (i = 0; i < SONIC_NUM_RRS; i++) {
105 dev_kfree_skb(lp->rx_skb[i]);
106 lp->rx_skb[i] = NULL;
107 }
108 printk(KERN_ERR "%s: couldn't map rx DMA buffers\n",
109 dev->name);
110 return -ENOMEM;
111 }
112 lp->rx_laddr[i] = laddr;
113 }
114
1da177e4
LT
115 /*
116 * Initialize the SONIC
117 */
118 sonic_init(dev);
119
120 netif_start_queue(dev);
121
122 if (sonic_debug > 2)
123 printk("sonic_open: Initialization done.\n");
124
125 return 0;
126}
127
128
129/*
130 * Close the SONIC device
131 */
132static int sonic_close(struct net_device *dev)
133{
efcce839
FT
134 struct sonic_local *lp = netdev_priv(dev);
135 int i;
1da177e4
LT
136
137 if (sonic_debug > 2)
138 printk("sonic_close\n");
139
140 netif_stop_queue(dev);
141
142 /*
143 * stop the SONIC, disable interrupts
144 */
1da177e4 145 SONIC_WRITE(SONIC_IMR, 0);
efcce839 146 SONIC_WRITE(SONIC_ISR, 0x7fff);
1da177e4
LT
147 SONIC_WRITE(SONIC_CMD, SONIC_CR_RST);
148
efcce839
FT
149 /* unmap and free skbs that haven't been transmitted */
150 for (i = 0; i < SONIC_NUM_TDS; i++) {
151 if(lp->tx_laddr[i]) {
152 dma_unmap_single(lp->device, lp->tx_laddr[i], lp->tx_len[i], DMA_TO_DEVICE);
153 lp->tx_laddr[i] = (dma_addr_t)0;
154 }
155 if(lp->tx_skb[i]) {
156 dev_kfree_skb(lp->tx_skb[i]);
157 lp->tx_skb[i] = NULL;
158 }
159 }
160
161 /* unmap and free the receive buffers */
162 for (i = 0; i < SONIC_NUM_RRS; i++) {
163 if(lp->rx_laddr[i]) {
164 dma_unmap_single(lp->device, lp->rx_laddr[i], SONIC_RBSIZE, DMA_FROM_DEVICE);
165 lp->rx_laddr[i] = (dma_addr_t)0;
166 }
167 if(lp->rx_skb[i]) {
168 dev_kfree_skb(lp->rx_skb[i]);
169 lp->rx_skb[i] = NULL;
170 }
171 }
172
173 free_irq(dev->irq, dev); /* release the IRQ */
1da177e4
LT
174
175 return 0;
176}
177
178static void sonic_tx_timeout(struct net_device *dev)
179{
efcce839
FT
180 struct sonic_local *lp = netdev_priv(dev);
181 int i;
182 /* Stop the interrupts for this */
183 SONIC_WRITE(SONIC_IMR, 0);
184 /* We could resend the original skbs. Easier to re-initialise. */
185 for (i = 0; i < SONIC_NUM_TDS; i++) {
186 if(lp->tx_laddr[i]) {
187 dma_unmap_single(lp->device, lp->tx_laddr[i], lp->tx_len[i], DMA_TO_DEVICE);
188 lp->tx_laddr[i] = (dma_addr_t)0;
189 }
190 if(lp->tx_skb[i]) {
191 dev_kfree_skb(lp->tx_skb[i]);
192 lp->tx_skb[i] = NULL;
193 }
194 }
1da177e4
LT
195 /* Try to restart the adaptor. */
196 sonic_init(dev);
197 lp->stats.tx_errors++;
198 dev->trans_start = jiffies;
199 netif_wake_queue(dev);
200}
201
202/*
203 * transmit packet
efcce839
FT
204 *
205 * Appends new TD during transmission thus avoiding any TX interrupts
206 * until we run out of TDs.
207 * This routine interacts closely with the ISR in that it may,
208 * set tx_skb[i]
209 * reset the status flags of the new TD
210 * set and reset EOL flags
211 * stop the tx queue
212 * The ISR interacts with this routine in various ways. It may,
213 * reset tx_skb[i]
214 * test the EOL and status flags of the TDs
215 * wake the tx queue
216 * Concurrently with all of this, the SONIC is potentially writing to
217 * the status flags of the TDs.
218 * Until some mutual exclusion is added, this code will not work with SMP. However,
219 * MIPS Jazz machines and m68k Macs were all uni-processor machines.
1da177e4 220 */
efcce839 221
1da177e4
LT
222static int sonic_send_packet(struct sk_buff *skb, struct net_device *dev)
223{
efcce839
FT
224 struct sonic_local *lp = netdev_priv(dev);
225 dma_addr_t laddr;
226 int length;
227 int entry = lp->next_tx;
1da177e4
LT
228
229 if (sonic_debug > 2)
230 printk("sonic_send_packet: skb=%p, dev=%p\n", skb, dev);
231
efcce839
FT
232 length = skb->len;
233 if (length < ETH_ZLEN) {
5b057c6b 234 if (skb_padto(skb, ETH_ZLEN))
efcce839
FT
235 return 0;
236 length = ETH_ZLEN;
237 }
238
1da177e4
LT
239 /*
240 * Map the packet data into the logical DMA address space
241 */
efcce839
FT
242
243 laddr = dma_map_single(lp->device, skb->data, length, DMA_TO_DEVICE);
244 if (!laddr) {
245 printk(KERN_ERR "%s: failed to map tx DMA buffer.\n", dev->name);
1da177e4 246 dev_kfree_skb(skb);
1da177e4
LT
247 return 1;
248 }
6aa20a22 249
efcce839
FT
250 sonic_tda_put(dev, entry, SONIC_TD_STATUS, 0); /* clear status */
251 sonic_tda_put(dev, entry, SONIC_TD_FRAG_COUNT, 1); /* single fragment */
252 sonic_tda_put(dev, entry, SONIC_TD_PKTSIZE, length); /* length of packet */
253 sonic_tda_put(dev, entry, SONIC_TD_FRAG_PTR_L, laddr & 0xffff);
254 sonic_tda_put(dev, entry, SONIC_TD_FRAG_PTR_H, laddr >> 16);
255 sonic_tda_put(dev, entry, SONIC_TD_FRAG_SIZE, length);
256 sonic_tda_put(dev, entry, SONIC_TD_LINK,
257 sonic_tda_get(dev, entry, SONIC_TD_LINK) | SONIC_EOL);
258
259 /*
260 * Must set tx_skb[entry] only after clearing status, and
261 * before clearing EOL and before stopping queue
262 */
263 wmb();
264 lp->tx_len[entry] = length;
1da177e4
LT
265 lp->tx_laddr[entry] = laddr;
266 lp->tx_skb[entry] = skb;
267
efcce839
FT
268 wmb();
269 sonic_tda_put(dev, lp->eol_tx, SONIC_TD_LINK,
270 sonic_tda_get(dev, lp->eol_tx, SONIC_TD_LINK) & ~SONIC_EOL);
271 lp->eol_tx = entry;
1da177e4 272
efcce839
FT
273 lp->next_tx = (entry + 1) & SONIC_TDS_MASK;
274 if (lp->tx_skb[lp->next_tx] != NULL) {
275 /* The ring is full, the ISR has yet to process the next TD. */
276 if (sonic_debug > 3)
277 printk("%s: stopping queue\n", dev->name);
278 netif_stop_queue(dev);
279 /* after this packet, wait for ISR to free up some TDAs */
280 } else netif_start_queue(dev);
1da177e4
LT
281
282 if (sonic_debug > 2)
efcce839 283 printk("sonic_send_packet: issuing Tx command\n");
1da177e4
LT
284
285 SONIC_WRITE(SONIC_CMD, SONIC_CR_TXP);
286
287 dev->trans_start = jiffies;
288
1da177e4
LT
289 return 0;
290}
291
292/*
293 * The typical workload of the driver:
294 * Handle the network interface interrupts.
295 */
7d12e780 296static irqreturn_t sonic_interrupt(int irq, void *dev_id)
1da177e4 297{
c31f28e7 298 struct net_device *dev = dev_id;
efcce839 299 struct sonic_local *lp = netdev_priv(dev);
1da177e4
LT
300 int status;
301
efcce839
FT
302 if (!(status = SONIC_READ(SONIC_ISR) & SONIC_IMR_DEFAULT))
303 return IRQ_NONE;
1da177e4 304
efcce839
FT
305 do {
306 if (status & SONIC_INT_PKTRX) {
307 if (sonic_debug > 2)
308 printk("%s: packet rx\n", dev->name);
309 sonic_rx(dev); /* got packet(s) */
310 SONIC_WRITE(SONIC_ISR, SONIC_INT_PKTRX); /* clear the interrupt */
311 }
1da177e4 312
efcce839
FT
313 if (status & SONIC_INT_TXDN) {
314 int entry = lp->cur_tx;
315 int td_status;
316 int freed_some = 0;
1da177e4 317
efcce839
FT
318 /* At this point, cur_tx is the index of a TD that is one of:
319 * unallocated/freed (status set & tx_skb[entry] clear)
320 * allocated and sent (status set & tx_skb[entry] set )
321 * allocated and not yet sent (status clear & tx_skb[entry] set )
322 * still being allocated by sonic_send_packet (status clear & tx_skb[entry] clear)
323 */
1da177e4 324
efcce839
FT
325 if (sonic_debug > 2)
326 printk("%s: tx done\n", dev->name);
327
328 while (lp->tx_skb[entry] != NULL) {
329 if ((td_status = sonic_tda_get(dev, entry, SONIC_TD_STATUS)) == 0)
330 break;
331
332 if (td_status & 0x0001) {
333 lp->stats.tx_packets++;
334 lp->stats.tx_bytes += sonic_tda_get(dev, entry, SONIC_TD_PKTSIZE);
335 } else {
336 lp->stats.tx_errors++;
337 if (td_status & 0x0642)
338 lp->stats.tx_aborted_errors++;
339 if (td_status & 0x0180)
340 lp->stats.tx_carrier_errors++;
341 if (td_status & 0x0020)
342 lp->stats.tx_window_errors++;
343 if (td_status & 0x0004)
344 lp->stats.tx_fifo_errors++;
345 }
346
347 /* We must free the original skb */
1da177e4 348 dev_kfree_skb_irq(lp->tx_skb[entry]);
efcce839
FT
349 lp->tx_skb[entry] = NULL;
350 /* and unmap DMA buffer */
351 dma_unmap_single(lp->device, lp->tx_laddr[entry], lp->tx_len[entry], DMA_TO_DEVICE);
352 lp->tx_laddr[entry] = (dma_addr_t)0;
353 freed_some = 1;
354
355 if (sonic_tda_get(dev, entry, SONIC_TD_LINK) & SONIC_EOL) {
356 entry = (entry + 1) & SONIC_TDS_MASK;
357 break;
358 }
359 entry = (entry + 1) & SONIC_TDS_MASK;
1da177e4 360 }
1da177e4 361
efcce839
FT
362 if (freed_some || lp->tx_skb[entry] == NULL)
363 netif_wake_queue(dev); /* The ring is no longer full */
364 lp->cur_tx = entry;
365 SONIC_WRITE(SONIC_ISR, SONIC_INT_TXDN); /* clear the interrupt */
1da177e4
LT
366 }
367
efcce839
FT
368 /*
369 * check error conditions
370 */
371 if (status & SONIC_INT_RFO) {
372 if (sonic_debug > 1)
373 printk("%s: rx fifo overrun\n", dev->name);
374 lp->stats.rx_fifo_errors++;
375 SONIC_WRITE(SONIC_ISR, SONIC_INT_RFO); /* clear the interrupt */
376 }
377 if (status & SONIC_INT_RDE) {
378 if (sonic_debug > 1)
379 printk("%s: rx descriptors exhausted\n", dev->name);
380 lp->stats.rx_dropped++;
381 SONIC_WRITE(SONIC_ISR, SONIC_INT_RDE); /* clear the interrupt */
382 }
383 if (status & SONIC_INT_RBAE) {
384 if (sonic_debug > 1)
385 printk("%s: rx buffer area exceeded\n", dev->name);
386 lp->stats.rx_dropped++;
387 SONIC_WRITE(SONIC_ISR, SONIC_INT_RBAE); /* clear the interrupt */
388 }
1da177e4 389
efcce839
FT
390 /* counter overruns; all counters are 16bit wide */
391 if (status & SONIC_INT_FAE) {
392 lp->stats.rx_frame_errors += 65536;
393 SONIC_WRITE(SONIC_ISR, SONIC_INT_FAE); /* clear the interrupt */
394 }
395 if (status & SONIC_INT_CRC) {
396 lp->stats.rx_crc_errors += 65536;
397 SONIC_WRITE(SONIC_ISR, SONIC_INT_CRC); /* clear the interrupt */
398 }
399 if (status & SONIC_INT_MP) {
400 lp->stats.rx_missed_errors += 65536;
401 SONIC_WRITE(SONIC_ISR, SONIC_INT_MP); /* clear the interrupt */
402 }
1da177e4 403
efcce839
FT
404 /* transmit error */
405 if (status & SONIC_INT_TXER) {
406 if ((SONIC_READ(SONIC_TCR) & SONIC_TCR_FU) && (sonic_debug > 2))
407 printk(KERN_ERR "%s: tx fifo underrun\n", dev->name);
408 SONIC_WRITE(SONIC_ISR, SONIC_INT_TXER); /* clear the interrupt */
409 }
1da177e4 410
efcce839
FT
411 /* bus retry */
412 if (status & SONIC_INT_BR) {
413 printk(KERN_ERR "%s: Bus retry occurred! Device interrupt disabled.\n",
414 dev->name);
415 /* ... to help debug DMA problems causing endless interrupts. */
416 /* Bounce the eth interface to turn on the interrupt again. */
417 SONIC_WRITE(SONIC_IMR, 0);
418 SONIC_WRITE(SONIC_ISR, SONIC_INT_BR); /* clear the interrupt */
419 }
1da177e4 420
efcce839
FT
421 /* load CAM done */
422 if (status & SONIC_INT_LCD)
423 SONIC_WRITE(SONIC_ISR, SONIC_INT_LCD); /* clear the interrupt */
424 } while((status = SONIC_READ(SONIC_ISR) & SONIC_IMR_DEFAULT));
1da177e4
LT
425 return IRQ_HANDLED;
426}
427
428/*
efcce839 429 * We have a good packet(s), pass it/them up the network stack.
1da177e4
LT
430 */
431static void sonic_rx(struct net_device *dev)
432{
efcce839 433 struct sonic_local *lp = netdev_priv(dev);
1da177e4 434 int status;
efcce839
FT
435 int entry = lp->cur_rx;
436
437 while (sonic_rda_get(dev, entry, SONIC_RD_IN_USE) == 0) {
438 struct sk_buff *used_skb;
439 struct sk_buff *new_skb;
440 dma_addr_t new_laddr;
441 u16 bufadr_l;
442 u16 bufadr_h;
1da177e4 443 int pkt_len;
1da177e4 444
efcce839 445 status = sonic_rda_get(dev, entry, SONIC_RD_STATUS);
1da177e4 446 if (status & SONIC_RCR_PRX) {
1da177e4 447 /* Malloc up new buffer. */
efcce839
FT
448 new_skb = dev_alloc_skb(SONIC_RBSIZE + 2);
449 if (new_skb == NULL) {
450 printk(KERN_ERR "%s: Memory squeeze, dropping packet.\n", dev->name);
451 lp->stats.rx_dropped++;
452 break;
453 }
454 new_skb->dev = dev;
455 /* provide 16 byte IP header alignment unless DMA requires otherwise */
456 if(SONIC_BUS_SCALE(lp->dma_bitmode) == 2)
6aa20a22 457 skb_reserve(new_skb, 2);
efcce839
FT
458
459 new_laddr = dma_map_single(lp->device, skb_put(new_skb, SONIC_RBSIZE),
460 SONIC_RBSIZE, DMA_FROM_DEVICE);
461 if (!new_laddr) {
462 dev_kfree_skb(new_skb);
463 printk(KERN_ERR "%s: Failed to map rx buffer, dropping packet.\n", dev->name);
1da177e4
LT
464 lp->stats.rx_dropped++;
465 break;
466 }
efcce839
FT
467
468 /* now we have a new skb to replace it, pass the used one up the stack */
469 dma_unmap_single(lp->device, lp->rx_laddr[entry], SONIC_RBSIZE, DMA_FROM_DEVICE);
470 used_skb = lp->rx_skb[entry];
471 pkt_len = sonic_rda_get(dev, entry, SONIC_RD_PKTLEN);
472 skb_trim(used_skb, pkt_len);
473 used_skb->protocol = eth_type_trans(used_skb, dev);
474 netif_rx(used_skb);
1da177e4
LT
475 dev->last_rx = jiffies;
476 lp->stats.rx_packets++;
477 lp->stats.rx_bytes += pkt_len;
478
efcce839
FT
479 /* and insert the new skb */
480 lp->rx_laddr[entry] = new_laddr;
481 lp->rx_skb[entry] = new_skb;
482
483 bufadr_l = (unsigned long)new_laddr & 0xffff;
484 bufadr_h = (unsigned long)new_laddr >> 16;
485 sonic_rra_put(dev, entry, SONIC_RR_BUFADR_L, bufadr_l);
486 sonic_rra_put(dev, entry, SONIC_RR_BUFADR_H, bufadr_h);
1da177e4
LT
487 } else {
488 /* This should only happen, if we enable accepting broken packets. */
489 lp->stats.rx_errors++;
490 if (status & SONIC_RCR_FAER)
491 lp->stats.rx_frame_errors++;
492 if (status & SONIC_RCR_CRCR)
493 lp->stats.rx_crc_errors++;
494 }
1da177e4
LT
495 if (status & SONIC_RCR_LPKT) {
496 /*
efcce839 497 * this was the last packet out of the current receive buffer
1da177e4
LT
498 * give the buffer back to the SONIC
499 */
efcce839
FT
500 lp->cur_rwp += SIZEOF_SONIC_RR * SONIC_BUS_SCALE(lp->dma_bitmode);
501 if (lp->cur_rwp >= lp->rra_end) lp->cur_rwp = lp->rra_laddr & 0xffff;
502 SONIC_WRITE(SONIC_RWP, lp->cur_rwp);
503 if (SONIC_READ(SONIC_ISR) & SONIC_INT_RBE) {
504 if (sonic_debug > 2)
505 printk("%s: rx buffer exhausted\n", dev->name);
506 SONIC_WRITE(SONIC_ISR, SONIC_INT_RBE); /* clear the flag */
507 }
1da177e4 508 } else
efcce839 509 printk(KERN_ERR "%s: rx desc without RCR_LPKT. Shouldn't happen !?\n",
1da177e4 510 dev->name);
efcce839
FT
511 /*
512 * give back the descriptor
513 */
514 sonic_rda_put(dev, entry, SONIC_RD_LINK,
515 sonic_rda_get(dev, entry, SONIC_RD_LINK) | SONIC_EOL);
516 sonic_rda_put(dev, entry, SONIC_RD_IN_USE, 1);
517 sonic_rda_put(dev, lp->eol_rx, SONIC_RD_LINK,
518 sonic_rda_get(dev, lp->eol_rx, SONIC_RD_LINK) & ~SONIC_EOL);
519 lp->eol_rx = entry;
520 lp->cur_rx = entry = (entry + 1) & SONIC_RDS_MASK;
1da177e4
LT
521 }
522 /*
efcce839 523 * If any worth-while packets have been received, netif_rx()
1da177e4
LT
524 * has done a mark_bh(NET_BH) for us and will work on them
525 * when we get to the bottom-half routine.
526 */
527}
528
529
530/*
531 * Get the current statistics.
532 * This may be called with the device open or closed.
533 */
534static struct net_device_stats *sonic_get_stats(struct net_device *dev)
535{
efcce839 536 struct sonic_local *lp = netdev_priv(dev);
1da177e4
LT
537
538 /* read the tally counter from the SONIC and reset them */
539 lp->stats.rx_crc_errors += SONIC_READ(SONIC_CRCT);
540 SONIC_WRITE(SONIC_CRCT, 0xffff);
541 lp->stats.rx_frame_errors += SONIC_READ(SONIC_FAET);
542 SONIC_WRITE(SONIC_FAET, 0xffff);
543 lp->stats.rx_missed_errors += SONIC_READ(SONIC_MPT);
544 SONIC_WRITE(SONIC_MPT, 0xffff);
545
546 return &lp->stats;
547}
548
549
550/*
551 * Set or clear the multicast filter for this adaptor.
552 */
553static void sonic_multicast_list(struct net_device *dev)
554{
efcce839 555 struct sonic_local *lp = netdev_priv(dev);
1da177e4
LT
556 unsigned int rcr;
557 struct dev_mc_list *dmi = dev->mc_list;
558 unsigned char *addr;
559 int i;
560
561 rcr = SONIC_READ(SONIC_RCR) & ~(SONIC_RCR_PRO | SONIC_RCR_AMC);
562 rcr |= SONIC_RCR_BRD; /* accept broadcast packets */
563
564 if (dev->flags & IFF_PROMISC) { /* set promiscuous mode */
565 rcr |= SONIC_RCR_PRO;
566 } else {
567 if ((dev->flags & IFF_ALLMULTI) || (dev->mc_count > 15)) {
568 rcr |= SONIC_RCR_AMC;
569 } else {
570 if (sonic_debug > 2)
efcce839
FT
571 printk("sonic_multicast_list: mc_count %d\n", dev->mc_count);
572 sonic_set_cam_enable(dev, 1); /* always enable our own address */
1da177e4
LT
573 for (i = 1; i <= dev->mc_count; i++) {
574 addr = dmi->dmi_addr;
575 dmi = dmi->next;
efcce839
FT
576 sonic_cda_put(dev, i, SONIC_CD_CAP0, addr[1] << 8 | addr[0]);
577 sonic_cda_put(dev, i, SONIC_CD_CAP1, addr[3] << 8 | addr[2]);
578 sonic_cda_put(dev, i, SONIC_CD_CAP2, addr[5] << 8 | addr[4]);
579 sonic_set_cam_enable(dev, sonic_get_cam_enable(dev) | (1 << i));
1da177e4
LT
580 }
581 SONIC_WRITE(SONIC_CDC, 16);
582 /* issue Load CAM command */
583 SONIC_WRITE(SONIC_CDP, lp->cda_laddr & 0xffff);
584 SONIC_WRITE(SONIC_CMD, SONIC_CR_LCAM);
585 }
586 }
587
588 if (sonic_debug > 2)
589 printk("sonic_multicast_list: setting RCR=%x\n", rcr);
590
591 SONIC_WRITE(SONIC_RCR, rcr);
592}
593
594
595/*
596 * Initialize the SONIC ethernet controller.
597 */
598static int sonic_init(struct net_device *dev)
599{
1da177e4 600 unsigned int cmd;
efcce839 601 struct sonic_local *lp = netdev_priv(dev);
1da177e4
LT
602 int i;
603
604 /*
605 * put the Sonic into software-reset mode and
606 * disable all interrupts
607 */
1da177e4 608 SONIC_WRITE(SONIC_IMR, 0);
efcce839 609 SONIC_WRITE(SONIC_ISR, 0x7fff);
1da177e4
LT
610 SONIC_WRITE(SONIC_CMD, SONIC_CR_RST);
611
612 /*
613 * clear software reset flag, disable receiver, clear and
614 * enable interrupts, then completely initialize the SONIC
615 */
616 SONIC_WRITE(SONIC_CMD, 0);
617 SONIC_WRITE(SONIC_CMD, SONIC_CR_RXDIS);
618
619 /*
620 * initialize the receive resource area
621 */
622 if (sonic_debug > 2)
623 printk("sonic_init: initialize receive resource area\n");
624
1da177e4 625 for (i = 0; i < SONIC_NUM_RRS; i++) {
efcce839
FT
626 u16 bufadr_l = (unsigned long)lp->rx_laddr[i] & 0xffff;
627 u16 bufadr_h = (unsigned long)lp->rx_laddr[i] >> 16;
628 sonic_rra_put(dev, i, SONIC_RR_BUFADR_L, bufadr_l);
629 sonic_rra_put(dev, i, SONIC_RR_BUFADR_H, bufadr_h);
630 sonic_rra_put(dev, i, SONIC_RR_BUFSIZE_L, SONIC_RBSIZE >> 1);
631 sonic_rra_put(dev, i, SONIC_RR_BUFSIZE_H, 0);
1da177e4
LT
632 }
633
634 /* initialize all RRA registers */
efcce839
FT
635 lp->rra_end = (lp->rra_laddr + SONIC_NUM_RRS * SIZEOF_SONIC_RR *
636 SONIC_BUS_SCALE(lp->dma_bitmode)) & 0xffff;
637 lp->cur_rwp = (lp->rra_laddr + (SONIC_NUM_RRS - 1) * SIZEOF_SONIC_RR *
638 SONIC_BUS_SCALE(lp->dma_bitmode)) & 0xffff;
6aa20a22 639
efcce839
FT
640 SONIC_WRITE(SONIC_RSA, lp->rra_laddr & 0xffff);
641 SONIC_WRITE(SONIC_REA, lp->rra_end);
642 SONIC_WRITE(SONIC_RRP, lp->rra_laddr & 0xffff);
643 SONIC_WRITE(SONIC_RWP, lp->cur_rwp);
1da177e4 644 SONIC_WRITE(SONIC_URRA, lp->rra_laddr >> 16);
efcce839 645 SONIC_WRITE(SONIC_EOBC, (SONIC_RBSIZE >> 1) - (lp->dma_bitmode ? 2 : 1));
1da177e4
LT
646
647 /* load the resource pointers */
648 if (sonic_debug > 3)
efcce839 649 printk("sonic_init: issuing RRRA command\n");
6aa20a22 650
1da177e4
LT
651 SONIC_WRITE(SONIC_CMD, SONIC_CR_RRRA);
652 i = 0;
653 while (i++ < 100) {
654 if (SONIC_READ(SONIC_CMD) & SONIC_CR_RRRA)
655 break;
656 }
657
658 if (sonic_debug > 2)
efcce839 659 printk("sonic_init: status=%x i=%d\n", SONIC_READ(SONIC_CMD), i);
6aa20a22 660
1da177e4
LT
661 /*
662 * Initialize the receive descriptors so that they
663 * become a circular linked list, ie. let the last
664 * descriptor point to the first again.
665 */
666 if (sonic_debug > 2)
6aa20a22 667 printk("sonic_init: initialize receive descriptors\n");
efcce839
FT
668 for (i=0; i<SONIC_NUM_RDS; i++) {
669 sonic_rda_put(dev, i, SONIC_RD_STATUS, 0);
670 sonic_rda_put(dev, i, SONIC_RD_PKTLEN, 0);
671 sonic_rda_put(dev, i, SONIC_RD_PKTPTR_L, 0);
672 sonic_rda_put(dev, i, SONIC_RD_PKTPTR_H, 0);
673 sonic_rda_put(dev, i, SONIC_RD_SEQNO, 0);
674 sonic_rda_put(dev, i, SONIC_RD_IN_USE, 1);
675 sonic_rda_put(dev, i, SONIC_RD_LINK,
676 lp->rda_laddr +
677 ((i+1) * SIZEOF_SONIC_RD * SONIC_BUS_SCALE(lp->dma_bitmode)));
1da177e4
LT
678 }
679 /* fix last descriptor */
efcce839
FT
680 sonic_rda_put(dev, SONIC_NUM_RDS - 1, SONIC_RD_LINK,
681 (lp->rda_laddr & 0xffff) | SONIC_EOL);
682 lp->eol_rx = SONIC_NUM_RDS - 1;
1da177e4
LT
683 lp->cur_rx = 0;
684 SONIC_WRITE(SONIC_URDA, lp->rda_laddr >> 16);
685 SONIC_WRITE(SONIC_CRDA, lp->rda_laddr & 0xffff);
686
6aa20a22 687 /*
1da177e4
LT
688 * initialize transmit descriptors
689 */
690 if (sonic_debug > 2)
691 printk("sonic_init: initialize transmit descriptors\n");
692 for (i = 0; i < SONIC_NUM_TDS; i++) {
efcce839
FT
693 sonic_tda_put(dev, i, SONIC_TD_STATUS, 0);
694 sonic_tda_put(dev, i, SONIC_TD_CONFIG, 0);
695 sonic_tda_put(dev, i, SONIC_TD_PKTSIZE, 0);
696 sonic_tda_put(dev, i, SONIC_TD_FRAG_COUNT, 0);
697 sonic_tda_put(dev, i, SONIC_TD_LINK,
698 (lp->tda_laddr & 0xffff) +
699 (i + 1) * SIZEOF_SONIC_TD * SONIC_BUS_SCALE(lp->dma_bitmode));
700 lp->tx_skb[i] = NULL;
1da177e4 701 }
efcce839
FT
702 /* fix last descriptor */
703 sonic_tda_put(dev, SONIC_NUM_TDS - 1, SONIC_TD_LINK,
704 (lp->tda_laddr & 0xffff));
1da177e4
LT
705
706 SONIC_WRITE(SONIC_UTDA, lp->tda_laddr >> 16);
707 SONIC_WRITE(SONIC_CTDA, lp->tda_laddr & 0xffff);
efcce839
FT
708 lp->cur_tx = lp->next_tx = 0;
709 lp->eol_tx = SONIC_NUM_TDS - 1;
6aa20a22 710
1da177e4
LT
711 /*
712 * put our own address to CAM desc[0]
713 */
efcce839
FT
714 sonic_cda_put(dev, 0, SONIC_CD_CAP0, dev->dev_addr[1] << 8 | dev->dev_addr[0]);
715 sonic_cda_put(dev, 0, SONIC_CD_CAP1, dev->dev_addr[3] << 8 | dev->dev_addr[2]);
716 sonic_cda_put(dev, 0, SONIC_CD_CAP2, dev->dev_addr[5] << 8 | dev->dev_addr[4]);
717 sonic_set_cam_enable(dev, 1);
1da177e4
LT
718
719 for (i = 0; i < 16; i++)
efcce839 720 sonic_cda_put(dev, i, SONIC_CD_ENTRY_POINTER, i);
1da177e4
LT
721
722 /*
723 * initialize CAM registers
724 */
725 SONIC_WRITE(SONIC_CDP, lp->cda_laddr & 0xffff);
726 SONIC_WRITE(SONIC_CDC, 16);
727
728 /*
729 * load the CAM
730 */
731 SONIC_WRITE(SONIC_CMD, SONIC_CR_LCAM);
732
733 i = 0;
734 while (i++ < 100) {
735 if (SONIC_READ(SONIC_ISR) & SONIC_INT_LCD)
736 break;
737 }
738 if (sonic_debug > 2) {
efcce839
FT
739 printk("sonic_init: CMD=%x, ISR=%x\n, i=%d",
740 SONIC_READ(SONIC_CMD), SONIC_READ(SONIC_ISR), i);
1da177e4
LT
741 }
742
743 /*
744 * enable receiver, disable loopback
745 * and enable all interrupts
746 */
747 SONIC_WRITE(SONIC_CMD, SONIC_CR_RXEN | SONIC_CR_STP);
748 SONIC_WRITE(SONIC_RCR, SONIC_RCR_DEFAULT);
749 SONIC_WRITE(SONIC_TCR, SONIC_TCR_DEFAULT);
750 SONIC_WRITE(SONIC_ISR, 0x7fff);
751 SONIC_WRITE(SONIC_IMR, SONIC_IMR_DEFAULT);
752
753 cmd = SONIC_READ(SONIC_CMD);
754 if ((cmd & SONIC_CR_RXEN) == 0 || (cmd & SONIC_CR_STP) == 0)
efcce839 755 printk(KERN_ERR "sonic_init: failed, status=%x\n", cmd);
1da177e4
LT
756
757 if (sonic_debug > 2)
758 printk("sonic_init: new status=%x\n",
759 SONIC_READ(SONIC_CMD));
760
761 return 0;
762}
763
764MODULE_LICENSE("GPL");