iPXE
tg3.c
Go to the documentation of this file.
1
2FILE_LICENCE ( GPL2_ONLY );
3
4#include <mii.h>
5#include <stdio.h>
6#include <string.h>
7#include <errno.h>
8#include <unistd.h>
9#include <byteswap.h>
10#include <ipxe/pci.h>
11#include <ipxe/iobuf.h>
12#include <ipxe/timer.h>
13#include <ipxe/malloc.h>
14#include <ipxe/if_ether.h>
15#include <ipxe/ethernet.h>
16#include <ipxe/netdevice.h>
17
18#include "tg3.h"
19
20#define TG3_DEF_RX_MODE 0
21#define TG3_DEF_TX_MODE 0
22
23static void tg3_refill_prod_ring(struct tg3 *tp);
24
25/* Do not place this n-ring entries value into the tp struct itself,
26 * we really want to expose these constants to GCC so that modulo et
27 * al. operations are done with shifts and masks instead of with
28 * hw multiply/modulo instructions. Another solution would be to
29 * replace things like '% foo' with '& (foo - 1)'.
30 */
31
32#define TG3_TX_RING_BYTES (sizeof(struct tg3_tx_buffer_desc) * \
33 TG3_TX_RING_SIZE)
34
35/* FIXME: does TG3_RX_RET_MAX_SIZE_5705 work for all cards? */
36#define TG3_RX_RCB_RING_BYTES(tp) \
37 (sizeof(struct tg3_rx_buffer_desc) * (TG3_RX_RET_MAX_SIZE_5705))
38
39#define TG3_RX_STD_RING_BYTES(tp) \
40 (sizeof(struct tg3_rx_buffer_desc) * TG3_RX_STD_MAX_SIZE_5700)
41
43 struct tg3_rx_prodring_set *tpr)
44{ DBGP("%s\n", __func__);
45
46 if (tpr->rx_std) {
47 dma_free(&tpr->rx_std_map, tpr->rx_std,
49 tpr->rx_std = NULL;
50 }
51}
52
53/*
54 * Must not be invoked with interrupt sources disabled and
55 * the hardware shutdown down.
56 */
57static void tg3_free_consistent(struct tg3 *tp)
58{ DBGP("%s\n", __func__);
59
60 if (tp->tx_ring) {
61 dma_free(&tp->tx_desc_map, tp->tx_ring, TG3_TX_RING_BYTES);
62 tp->tx_ring = NULL;
63 }
64
65 free(tp->tx_buffers);
66 tp->tx_buffers = NULL;
67
68 if (tp->rx_rcb) {
69 dma_free(&tp->rx_rcb_map, tp->rx_rcb,
71 tp->rx_rcb = NULL;
72 }
73
74 tg3_rx_prodring_fini(tp, &tp->prodring);
75
76 if (tp->hw_status) {
77 dma_free(&tp->status_map, tp->hw_status, TG3_HW_STATUS_SIZE);
78 tp->hw_status = NULL;
79 }
80}
81
82/*
83 * Must not be invoked with interrupt sources disabled and
84 * the hardware shutdown down. Can sleep.
85 */
87{ DBGP("%s\n", __func__);
88
89 struct tg3_hw_status *sblk;
90 struct tg3_rx_prodring_set *tpr = &tp->prodring;
91
92 tp->hw_status = dma_alloc(tp->dma, &tp->status_map,
94 if (!tp->hw_status) {
95 DBGC(tp->dev, "hw_status alloc failed\n");
96 goto err_out;
97 }
98
99 memset(tp->hw_status, 0, TG3_HW_STATUS_SIZE);
100 sblk = tp->hw_status;
101
102 tpr->rx_std = dma_alloc(tp->dma, &tpr->rx_std_map,
104 if (!tpr->rx_std) {
105 DBGC(tp->dev, "rx prodring alloc failed\n");
106 goto err_out;
107 }
109
110 tp->tx_buffers = zalloc(sizeof(struct ring_info) * TG3_TX_RING_SIZE);
111 if (!tp->tx_buffers)
112 goto err_out;
113
114 tp->tx_ring = dma_alloc(tp->dma, &tp->tx_desc_map,
116 if (!tp->tx_ring)
117 goto err_out;
118
119 /*
120 * When RSS is enabled, the status block format changes
121 * slightly. The "rx_jumbo_consumer", "reserved",
122 * and "rx_mini_consumer" members get mapped to the
123 * other three rx return ring producer indexes.
124 */
125
126 tp->rx_rcb_prod_idx = &sblk->idx[0].rx_producer;
127
128 tp->rx_rcb = dma_alloc(tp->dma, &tp->rx_rcb_map,
130 if (!tp->rx_rcb)
131 goto err_out;
132
133 memset(tp->rx_rcb, 0, TG3_RX_RCB_RING_BYTES(tp));
134
135 return 0;
136
137err_out:
139 return -ENOMEM;
140}
141
142#define TG3_RX_STD_BUFF_RING_BYTES(tp) \
143 (sizeof(struct ring_info) * TG3_RX_STD_MAX_SIZE_5700)
144#define TG3_RX_STD_RING_BYTES(tp) \
145 (sizeof(struct tg3_rx_buffer_desc) * TG3_RX_STD_MAX_SIZE_5700)
146
147/* Initialize rx rings for packet processing.
148 *
149 * The chip has been shut down and the driver detached from
150 * the networking, so no interrupts or new tx packets will
151 * end up in the driver.
152 */
154 struct tg3_rx_prodring_set *tpr)
155{ DBGP("%s\n", __func__);
156
157 u32 i;
158
159 tpr->rx_std_cons_idx = 0;
160 tpr->rx_std_prod_idx = 0;
161
162 /* Initialize invariants of the rings, we only set this
163 * stuff once. This works because the card does not
164 * write into the rx buffer posting rings.
165 */
166 /* FIXME: does TG3_RX_STD_MAX_SIZE_5700 work on all cards? */
167 for (i = 0; i < TG3_RX_STD_MAX_SIZE_5700; i++) {
168 struct tg3_rx_buffer_desc *rxd;
169
170 rxd = &tpr->rx_std[i];
171 rxd->idx_len = (TG3_RX_STD_DMA_SZ - 64 - 2) << RXD_LEN_SHIFT;
172 rxd->type_flags = (RXD_FLAG_END << RXD_FLAGS_SHIFT);
173 rxd->opaque = (RXD_OPAQUE_RING_STD |
175 }
176
177 return 0;
178}
179
180static void tg3_rx_iob_free(struct io_buffer *iobs[], int i)
181{ DBGP("%s\n", __func__);
182
183 if (iobs[i] == NULL)
184 return;
185
186 /* RX iobufs were allocated via alloc_rx_iob() and are therefore
187 * DMA-mapped through the platform DMA API; they must be released
188 * via free_rx_iob() so the mapping is torn down.
189 */
190 free_rx_iob(iobs[i]);
191 iobs[i] = NULL;
192}
193
195{ DBGP("%s\n", __func__);
196
197 unsigned int i;
198
199 for (i = 0; i < TG3_DEF_RX_RING_PENDING; i++)
200 tg3_rx_iob_free(tpr->rx_iobufs, i);
201}
202
203/* Initialize tx/rx rings for packet processing.
204 *
205 * The chip has been shut down and the driver detached from
206 * the networking, so no interrupts or new tx packets will
207 * end up in the driver.
208 */
210{ DBGP("%s\n", __func__);
211
212 /* Free up all the SKBs. */
213/// tg3_free_rings(tp);
214
215 tp->last_tag = 0;
216 tp->last_irq_tag = 0;
217 tp->hw_status->status = 0;
218 tp->hw_status->status_tag = 0;
219 memset(tp->hw_status, 0, TG3_HW_STATUS_SIZE);
220
221 tp->tx_prod = 0;
222 tp->tx_cons = 0;
223 if (tp->tx_ring)
224 memset(tp->tx_ring, 0, TG3_TX_RING_BYTES);
225
226 tp->rx_rcb_ptr = 0;
227 if (tp->rx_rcb)
228 memset(tp->rx_rcb, 0, TG3_RX_RCB_RING_BYTES(tp));
229
230 if (tg3_rx_prodring_alloc(tp, &tp->prodring)) {
231 DBGC(tp->dev, "tg3_rx_prodring_alloc() failed\n");
232 tg3_rx_prodring_free(&tp->prodring);
233 return -ENOMEM;
234 }
235
236 return 0;
237}
238
239static int tg3_open(struct net_device *dev)
240{ DBGP("%s\n", __func__);
241
242 struct tg3 *tp = dev->priv;
243 struct tg3_rx_prodring_set *tpr = &tp->prodring;
244 int err = 0;
245
247
248 /* Initialize MAC address and backoff seed. */
250
252 if (err)
253 return err;
254
255 tpr->rx_std_iob_cnt = 0;
256
257 err = tg3_init_hw(tp, 1);
258 if (err != 0)
259 DBGC(tp->dev, "tg3_init_hw failed: %s\n", strerror(err));
260 else
262
263 return err;
264}
265
266static inline u32 tg3_tx_avail(struct tg3 *tp)
267{ DBGP("%s\n", __func__);
268
269 /* Tell compiler to fetch tx indices from memory. */
270 barrier();
272 ((tp->tx_prod - tp->tx_cons) & (TG3_TX_RING_SIZE - 1));
273}
274
275#if 0
276/**
277 *
278 * Prints all registers that could cause a set ERR bit in hw_status->status
279 */
280static void tg3_dump_err_reg(struct tg3 *tp)
281{ DBGP("%s\n", __func__);
282
283 printf("FLOW_ATTN: %#08x\n", tr32(HOSTCC_FLOW_ATTN));
284 printf("MAC ATTN: %#08x\n", tr32(MAC_STATUS));
285 printf("MSI STATUS: %#08x\n", tr32(MSGINT_STATUS));
286 printf("DMA RD: %#08x\n", tr32(RDMAC_STATUS));
287 printf("DMA WR: %#08x\n", tr32(WDMAC_STATUS));
288 printf("TX CPU STATE: %#08x\n", tr32(TX_CPU_STATE));
289 printf("RX CPU STATE: %#08x\n", tr32(RX_CPU_STATE));
290}
291
292static void __unused tw32_mailbox2(struct tg3 *tp, uint32_t reg, uint32_t val)
293{ DBGP("%s\n", __func__);
294
296 tr32(reg);
297}
298#endif
299
300#define NEXT_TX(N) (((N) + 1) & (TG3_TX_RING_SIZE - 1))
301
302/* hard_start_xmit for devices that have the 4G bug and/or 40-bit bug and
303 * support TG3_FLAG_HW_TSO_1 or firmware TSO only.
304 */
305static int tg3_transmit(struct net_device *dev, struct io_buffer *iob)
306{ DBGP("%s\n", __func__);
307
308 struct tg3 *tp = dev->priv;
309 u32 len, entry;
310 physaddr_t mapping;
311
312 if (tg3_tx_avail(tp) < 1) {
313 DBGC(dev, "Transmit ring full\n");
314 return -ENOBUFS;
315 }
316
317 entry = tp->tx_prod;
318
319 iob_pad(iob, ETH_ZLEN);
320 /* The netdevice core has already called iob_map_tx() for this
321 * iobuf (because netdev->dma is set), so iob_dma() returns the
322 * platform-translated bus address suitable for the device.
323 */
324 mapping = iob_dma(iob);
325 len = iob_len(iob);
326
327 tp->tx_buffers[entry].iob = iob;
328
329 tg3_set_txd(tp, entry, mapping, len, TXD_FLAG_END);
330
331 entry = NEXT_TX(entry);
332
333 /* Packets are ready, update Tx producer idx local and on card. */
334 tw32_tx_mbox(tp->prodmbox, entry);
335
336 tp->tx_prod = entry;
337
338 mb();
339
340 return 0;
341}
342
343static void tg3_tx_complete(struct net_device *dev)
344{ DBGP("%s\n", __func__);
345
346 struct tg3 *tp = dev->priv;
347 u32 hw_idx = tp->hw_status->idx[0].tx_consumer;
348 u32 sw_idx = tp->tx_cons;
349
350 while (sw_idx != hw_idx) {
351 struct io_buffer *iob = tp->tx_buffers[sw_idx].iob;
352
353 DBGC2(dev, "Transmitted packet: %zd bytes\n", iob_len(iob));
354
355 netdev_tx_complete(dev, iob);
356 sw_idx = NEXT_TX(sw_idx);
357 }
358
359 tp->tx_cons = sw_idx;
360}
361
362#define TG3_RX_STD_BUFF_RING_BYTES(tp) \
363 (sizeof(struct ring_info) * TG3_RX_STD_MAX_SIZE_5700)
364#define TG3_RX_STD_RING_BYTES(tp) \
365 (sizeof(struct tg3_rx_buffer_desc) * TG3_RX_STD_MAX_SIZE_5700)
366
367/* Returns 0 or < 0 on error.
368 *
369 * We only need to fill in the address because the other members
370 * of the RX descriptor are invariant, see tg3_init_rings.
371 *
372 * Note the purposeful assymetry of cpu vs. chip accesses. For
373 * posting buffers we only dirty the first cache line of the RX
374 * descriptor (containing the address). Whereas for the RX status
375 * buffers the cpu only reads the last cacheline of the RX descriptor
376 * (to fetch the error flags, vlan tag, checksum, and opaque cookie).
377 */
378static int tg3_alloc_rx_iob(struct tg3 *tp, struct tg3_rx_prodring_set *tpr,
379 u32 dest_idx_unmasked)
380{ DBGP("%s\n", __func__);
381
382 struct tg3_rx_buffer_desc *desc;
383 struct io_buffer *iob;
384 physaddr_t mapping;
385 int dest_idx, iob_idx;
386
387 dest_idx = dest_idx_unmasked & (TG3_RX_STD_MAX_SIZE_5700 - 1);
388 desc = &tpr->rx_std[dest_idx];
389
390 /* Do not overwrite any of the map or rp information
391 * until we are sure we can commit to a new buffer.
392 *
393 * Callers depend upon this behavior and assume that
394 * we leave everything unchanged if we fail.
395 *
396 * Allocate the receive iobuf already DMA-mapped through the
397 * platform DMA API so the device may write into it under
398 * preboot DMA protection (IOMMU).
399 */
400 iob = alloc_rx_iob(TG3_RX_STD_DMA_SZ, tp->dma);
401 if (iob == NULL)
402 return -ENOMEM;
403
404 iob_idx = dest_idx % TG3_DEF_RX_RING_PENDING;
405 tpr->rx_iobufs[iob_idx] = iob;
406
407 mapping = iob_dma(iob);
408
409 desc->addr_hi = ((u64)mapping >> 32);
410 desc->addr_lo = ((u64)mapping & 0xffffffff);
411
412 return 0;
413}
414
415static void tg3_refill_prod_ring(struct tg3 *tp)
416{ DBGP("%s\n", __func__);
417
418 struct tg3_rx_prodring_set *tpr = &tp->prodring;
419 int idx = tpr->rx_std_prod_idx;
420
421 DBGCP(tp->dev, "%s\n", __func__);
422
424 if (tpr->rx_iobufs[idx % TG3_DEF_RX_RING_PENDING] == NULL) {
425 if (tg3_alloc_rx_iob(tp, tpr, idx) < 0) {
426 DBGC(tp->dev, "alloc_iob() failed for descriptor %d\n", idx);
427 break;
428 }
429 DBGC2(tp->dev, "allocated iob_buffer for descriptor %d\n", idx);
430 }
431
432 idx = (idx + 1) % TG3_RX_STD_MAX_SIZE_5700;
433 tpr->rx_std_iob_cnt++;
434 }
435
436 if ((u32)idx != tpr->rx_std_prod_idx) {
437 tpr->rx_std_prod_idx = idx;
439 }
440}
441
442static void tg3_rx_complete(struct net_device *dev)
443{ DBGP("%s\n", __func__);
444
445 struct tg3 *tp = dev->priv;
446
447 u32 sw_idx = tp->rx_rcb_ptr;
448 u16 hw_idx;
449 struct tg3_rx_prodring_set *tpr = &tp->prodring;
450
451 hw_idx = *(tp->rx_rcb_prod_idx);
452
453 while (sw_idx != hw_idx) {
454 struct tg3_rx_buffer_desc *desc = &tp->rx_rcb[sw_idx];
455 u32 desc_idx = desc->opaque & RXD_OPAQUE_INDEX_MASK;
456 int iob_idx = desc_idx % TG3_DEF_RX_RING_PENDING;
457 struct io_buffer *iob = tpr->rx_iobufs[iob_idx];
458 unsigned int len;
459
460 DBGC2(dev, "RX - desc_idx: %d sw_idx: %d hw_idx: %d\n", desc_idx, sw_idx, hw_idx);
461
462 assert(iob != NULL);
463
464 if ((desc->err_vlan & RXD_ERR_MASK) != 0 &&
465 (desc->err_vlan != RXD_ERR_ODD_NIBBLE_RCVD_MII)) {
466 /* drop packet */
467 DBGC(dev, "Corrupted packet received\n");
468 netdev_rx_err(dev, iob, -EINVAL);
469 } else {
470 len = ((desc->idx_len & RXD_LEN_MASK) >> RXD_LEN_SHIFT) -
472 iob_put(iob, len);
473 netdev_rx(dev, iob);
474
475 DBGC2(dev, "Received packet: %d bytes %d %d\n", len, sw_idx, hw_idx);
476 }
477
478 sw_idx++;
479 sw_idx &= TG3_RX_RET_MAX_SIZE_5705 - 1;
480
481 tpr->rx_iobufs[iob_idx] = NULL;
482 tpr->rx_std_iob_cnt--;
483 }
484
485 if (tp->rx_rcb_ptr != sw_idx) {
486 tw32_rx_mbox(tp->consmbox, sw_idx);
487 tp->rx_rcb_ptr = sw_idx;
488 }
489
491}
492
493static void tg3_poll(struct net_device *dev)
494{ DBGP("%s\n", __func__);
495
496 struct tg3 *tp = dev->priv;
497
498 /* ACK interrupts */
499 /*
500 *tw32_mailbox_f(MAILBOX_INTERRUPT_0 + TG3_64BIT_REG_LOW, 0x00);
501 */
502 tp->hw_status->status &= ~SD_STATUS_UPDATED;
503
504 mb();
505
509}
510
511static void tg3_close(struct net_device *dev)
512{ DBGP("%s\n", __func__);
513
514 struct tg3 *tp = dev->priv;
515
516 DBGP("%s\n", __func__);
517
518 tg3_halt(tp);
519 tg3_rx_prodring_free(&tp->prodring);
520 tg3_flag_clear(tp, INIT_COMPLETE);
521
523
524}
525
526static void tg3_irq(struct net_device *dev, int enable)
527{ DBGP("%s\n", __func__);
528
529 struct tg3 *tp = dev->priv;
530
531 DBGP("%s: %d\n", __func__, enable);
532
533 if (enable)
535 else
537}
538
540 .open = tg3_open,
541 .close = tg3_close,
542 .poll = tg3_poll,
543 .transmit = tg3_transmit,
544 .irq = tg3_irq,
545};
546
547#define TEST_BUFFER_SIZE 0x2000
548
549int tg3_do_test_dma(struct tg3 *tp, u32 __unused *buf, physaddr_t buf_dma, int size, int to_device);
550void tg3_read_mem(struct tg3 *tp, u32 off, u32 *val);
551
552static int tg3_test_dma(struct tg3 *tp)
553{ DBGP("%s\n", __func__);
554
555 struct dma_mapping buf_map;
556 physaddr_t buf_dma;
557 u32 *buf;
558 int ret = 0;
559
560 memset(&buf_map, 0, sizeof(buf_map));
561 buf = dma_alloc(tp->dma, &buf_map, TEST_BUFFER_SIZE, TG3_DMA_ALIGNMENT);
562 if (!buf) {
563 ret = -ENOMEM;
564 goto out_nofree;
565 }
566 buf_dma = dma(&buf_map, buf);
567 DBGC2(tp->dev, "dma test buffer, virt: %p phys: %#016lx\n", buf, buf_dma);
568
569 if (tg3_flag(tp, 57765_PLUS)) {
571 goto out;
572 }
573
574 tp->dma_rwctrl = ((0x7 << DMA_RWCTRL_PCI_WRITE_CMD_SHIFT) |
576
577 if (tg3_flag(tp, PCI_EXPRESS)) {
578 /* DMA read watermark not used on PCIE */
579 tp->dma_rwctrl |= 0x00180000;
580 } else if (!tg3_flag(tp, PCIX_MODE)) {
581 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5705 ||
582 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5750)
583 tp->dma_rwctrl |= 0x003f0000;
584 else
585 tp->dma_rwctrl |= 0x003f000f;
586 } else {
587 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5703 ||
588 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5704) {
589 u32 ccval = (tr32(TG3PCI_CLOCK_CTRL) & 0x1f);
590 u32 read_water = 0x7;
591
592 if (ccval == 0x6 || ccval == 0x7)
593 tp->dma_rwctrl |= DMA_RWCTRL_ONE_DMA;
594
595 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5703)
596 read_water = 4;
597 /* Set bit 23 to enable PCIX hw bug fix */
598 tp->dma_rwctrl |=
599 (read_water << DMA_RWCTRL_READ_WATER_SHIFT) |
601 (1 << 23);
602 } else if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5780) {
603 /* 5780 always in PCIX mode */
604 tp->dma_rwctrl |= 0x00144000;
605 } else if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5714) {
606 /* 5714 always in PCIX mode */
607 tp->dma_rwctrl |= 0x00148000;
608 } else {
609 tp->dma_rwctrl |= 0x001b000f;
610 }
611 }
612
613 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5703 ||
614 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5704)
615 tp->dma_rwctrl &= 0xfffffff0;
616
617 if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5700 ||
618 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5701) {
619 /* Remove this if it causes problems for some boards. */
620 tp->dma_rwctrl |= DMA_RWCTRL_USE_MEM_READ_MULT;
621
622 /* On 5700/5701 chips, we need to set this bit.
623 * Otherwise the chip will issue cacheline transactions
624 * to streamable DMA memory with not all the byte
625 * enables turned on. This is an error on several
626 * RISC PCI controllers, in particular sparc64.
627 *
628 * On 5703/5704 chips, this bit has been reassigned
629 * a different meaning. In particular, it is used
630 * on those chips to enable a PCI-X workaround.
631 */
632 tp->dma_rwctrl |= DMA_RWCTRL_ASSERT_ALL_BE;
633 }
634
635 tw32(TG3PCI_DMA_RW_CTRL, tp->dma_rwctrl);
636
637#if 0
638 /* Unneeded, already done by tg3_get_invariants. */
640#endif
641
642 if (GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5700 &&
643 GET_ASIC_REV(tp->pci_chip_rev_id) != ASIC_REV_5701)
644 goto out;
645
646 /* It is best to perform DMA test with maximum write burst size
647 * to expose the 5700/5701 write DMA bug.
648 */
649 tp->dma_rwctrl &= ~DMA_RWCTRL_WRITE_BNDRY_MASK;
650 tw32(TG3PCI_DMA_RW_CTRL, tp->dma_rwctrl);
651
652 while (1) {
653 u32 *p = buf, i;
654
655 for (i = 0; i < TEST_BUFFER_SIZE / sizeof(u32); i++)
656 p[i] = i;
657
658 /* Send the buffer to the chip. */
659 ret = tg3_do_test_dma(tp, buf, buf_dma, TEST_BUFFER_SIZE, 1);
660 if (ret) {
661 DBGC(&tp->pdev->dev,
662 "%s: Buffer write failed. err = %d\n",
663 __func__, ret);
664 break;
665 }
666
667 /* validate data reached card RAM correctly. */
668 for (i = 0; i < TEST_BUFFER_SIZE / sizeof(u32); i++) {
669 u32 val;
670 tg3_read_mem(tp, 0x2100 + (i*4), &val);
671 if (le32_to_cpu(val) != p[i]) {
672 DBGC(&tp->pdev->dev,
673 "%s: Buffer corrupted on device! "
674 "(%d != %d)\n", __func__, val, i);
675 /* ret = -ENODEV here? */
676 }
677 p[i] = 0;
678 }
679
680 /* Now read it back. */
681 ret = tg3_do_test_dma(tp, buf, buf_dma, TEST_BUFFER_SIZE, 0);
682 if (ret) {
683 DBGC(&tp->pdev->dev, "%s: Buffer read failed. "
684 "err = %d\n", __func__, ret);
685 break;
686 }
687
688 /* Verify it. */
689 for (i = 0; i < TEST_BUFFER_SIZE / sizeof(u32); i++) {
690 if (p[i] == i)
691 continue;
692
693 if ((tp->dma_rwctrl & DMA_RWCTRL_WRITE_BNDRY_MASK) !=
695 tp->dma_rwctrl &= ~DMA_RWCTRL_WRITE_BNDRY_MASK;
696 tp->dma_rwctrl |= DMA_RWCTRL_WRITE_BNDRY_16;
697 tw32(TG3PCI_DMA_RW_CTRL, tp->dma_rwctrl);
698 break;
699 } else {
700 DBGC(&tp->pdev->dev,
701 "%s: Buffer corrupted on read back! "
702 "(%d != %d)\n", __func__, p[i], i);
703 ret = -ENODEV;
704 goto out;
705 }
706 }
707
708 if (i == (TEST_BUFFER_SIZE / sizeof(u32))) {
709 /* Success. */
710 ret = 0;
711 break;
712 }
713 }
714
715 if ((tp->dma_rwctrl & DMA_RWCTRL_WRITE_BNDRY_MASK) !=
717 /* DMA test passed without adjusting DMA boundary,
718 * now look for chipsets that are known to expose the
719 * DMA bug without failing the test.
720 */
721 tp->dma_rwctrl &= ~DMA_RWCTRL_WRITE_BNDRY_MASK;
722 tp->dma_rwctrl |= DMA_RWCTRL_WRITE_BNDRY_16;
723
724 tw32(TG3PCI_DMA_RW_CTRL, tp->dma_rwctrl);
725 }
726
727out:
728 dma_free(&buf_map, buf, TEST_BUFFER_SIZE);
729out_nofree:
730 return ret;
731}
732
733static int tg3_init_one(struct pci_device *pdev)
734{ DBGP("%s\n", __func__);
735
736 struct net_device *dev;
737 struct tg3 *tp;
738 int err = 0;
739 unsigned long reg_base, reg_size;
740
742
743 dev = alloc_etherdev(sizeof(*tp));
744 if (!dev) {
745 DBGC(&pdev->dev, "Failed to allocate etherdev\n");
746 err = -ENOMEM;
747 goto err_out_disable_pdev;
748 }
749
752
753 dev->dev = &pdev->dev;
754
755 tp = dev->priv;
756 tp->pdev = pdev;
757 tp->dev = dev;
758 tp->rx_mode = TG3_DEF_RX_MODE;
759 tp->tx_mode = TG3_DEF_TX_MODE;
760
761 /* Configure DMA. This must be done before any DMA allocation
762 * (including the self-test buffer in tg3_test_dma) so that
763 * buffers are mapped through the platform DMA implementation,
764 * which is required when preboot DMA protection (IOMMU) is
765 * active.
766 */
767 tp->dma = &pdev->dma;
768 dev->dma = tp->dma;
769 dma_set_mask_64bit ( tp->dma );
770
771 /* Subsystem IDs are required later */
772 pci_read_config_word(tp->pdev, PCI_SUBSYSTEM_VENDOR_ID, &tp->subsystem_vendor);
773 pci_read_config_word(tp->pdev, PCI_SUBSYSTEM_ID, &tp->subsystem_device);
774
775 /* The word/byte swap controls here control register access byte
776 * swapping. DMA data byte swapping is controlled in the GRC_MODE
777 * setting below.
778 */
779 tp->misc_host_ctrl =
784
785 /* The NONFRM (non-frame) byte/word swap controls take effect
786 * on descriptor entries, anything which isn't packet data.
787 *
788 * The StrongARM chips on the board (one for tx, one for rx)
789 * are running in big-endian mode.
790 */
793#if __BYTE_ORDER == __BIG_ENDIAN
794 tp->grc_mode |= GRC_MODE_BSWAP_NONFRM_DATA;
795#endif
796
797 /* FIXME: how can we detect errors here? */
800
801 tp->regs = pci_ioremap(pdev, reg_base, reg_size);
802 if (!tp->regs) {
803 DBGC(&pdev->dev, "Failed to remap device registers\n");
804 errno = -ENOENT;
805 goto err_out_disable_pdev;
806 }
807
808 err = tg3_get_invariants(tp);
809 if (err) {
810 DBGC(&pdev->dev, "Problem fetching invariants of chip, aborting\n");
811 goto err_out_iounmap;
812 }
813
815
817 if (err) {
818 DBGC(&pdev->dev, "Could not obtain valid ethernet address, aborting\n");
819 goto err_out_iounmap;
820 }
821
822 /*
823 * Reset chip in case UNDI or EFI driver did not shutdown
824 * DMA self test will enable WDMAC and we'll see (spurious)
825 * pending DMA on the PCI bus at that point.
826 */
830 tg3_halt(tp);
831 }
832
833 err = tg3_test_dma(tp);
834 if (err) {
835 DBGC(&pdev->dev, "DMA engine test failed, aborting\n");
836 goto err_out_iounmap;
837 }
838
842
843 tp->coal_now = HOSTCC_MODE_NOW;
844
845 err = register_netdev(dev);
846 if (err) {
847 DBGC(&pdev->dev, "Cannot register net device, aborting\n");
848 goto err_out_iounmap;
849 }
850
851 /* Call tg3_setup_phy() to start autoneg process, which saves time
852 * over starting autoneg in tg3_open();
853 */
854 err = tg3_setup_phy(tp, 0);
855 if (err) {
856 DBGC(tp->dev, "tg3_setup_phy() call failed in %s\n", __func__);
857 goto err_out_iounmap;
858 }
859
860 return 0;
861
862err_out_iounmap:
863 if (tp->regs) {
864 iounmap(tp->regs);
865 tp->regs = NULL;
866 }
867
869
870err_out_disable_pdev:
872 return err;
873}
874
875static void tg3_remove_one(struct pci_device *pci)
876{ DBGP("%s\n", __func__);
877
878 struct net_device *netdev = pci_get_drvdata(pci);
879
883}
884
885static struct pci_device_id tg3_nics[] = {
886 PCI_ROM(0x106b, 0x1645, "106b-1645", "106b-1645", 0),
887 PCI_ROM(0x1148, 0x4400, "1148-4400", "1148-4400", 0),
888 PCI_ROM(0x1148, 0x4500, "1148-4500", "1148-4500", 0),
889 PCI_ROM(0x14e4, 0x1600, "14e4-1600", "14e4-1600", 0),
890 PCI_ROM(0x14e4, 0x1601, "14e4-1601", "14e4-1601", 0),
891 PCI_ROM(0x14e4, 0x1644, "14e4-1644", "14e4-1644", 0),
892 PCI_ROM(0x14e4, 0x1645, "14e4-1645", "14e4-1645", 0),
893 PCI_ROM(0x14e4, 0x1646, "14e4-1646", "14e4-1646", 0),
894 PCI_ROM(0x14e4, 0x1647, "14e4-1647", "14e4-1647", 0),
895 PCI_ROM(0x14e4, 0x1648, "14e4-1648", "14e4-1648", 0),
896 PCI_ROM(0x14e4, 0x1649, "14e4-1649", "14e4-1649", 0),
897 PCI_ROM(0x14e4, 0x164d, "14e4-164d", "14e4-164d", 0),
898 PCI_ROM(0x14e4, 0x1653, "14e4-1653", "14e4-1653", 0),
899 PCI_ROM(0x14e4, 0x1654, "14e4-1654", "14e4-1654", 0),
900 PCI_ROM(0x14e4, 0x1655, "14e4-1655", "14e4-1655", 0),
901 PCI_ROM(0x14e4, 0x1656, "14e4-1656", "14e4-1656", 0),
902 PCI_ROM(0x14e4, 0x1657, "14e4-1657", "14e4-1657", 0),
903 PCI_ROM(0x14e4, 0x1659, "14e4-1659", "14e4-1659", 0),
904 PCI_ROM(0x14e4, 0x165a, "14e4-165a", "14e4-165a", 0),
905 PCI_ROM(0x14e4, 0x165b, "14e4-165b", "14e4-165b", 0),
906 PCI_ROM(0x14e4, 0x165d, "14e4-165d", "14e4-165d", 0),
907 PCI_ROM(0x14e4, 0x165e, "14e4-165e", "14e4-165e", 0),
908 PCI_ROM(0x14e4, 0x165f, "14e4-165f", "14e4-165f", 0),
909 PCI_ROM(0x14e4, 0x1668, "14e4-1668", "14e4-1668", 0),
910 PCI_ROM(0x14e4, 0x1669, "14e4-1669", "14e4-1669", 0),
911 PCI_ROM(0x14e4, 0x166a, "14e4-166a", "14e4-166a", 0),
912 PCI_ROM(0x14e4, 0x166b, "14e4-166b", "14e4-166b", 0),
913 PCI_ROM(0x14e4, 0x166e, "14e4-166e", "14e4-166e", 0),
914 PCI_ROM(0x14e4, 0x1672, "14e4-1672", "14e4-1672", 0),
915 PCI_ROM(0x14e4, 0x1673, "14e4-1673", "14e4-1673", 0),
916 PCI_ROM(0x14e4, 0x1674, "14e4-1674", "14e4-1674", 0),
917 PCI_ROM(0x14e4, 0x1677, "14e4-1677", "14e4-1677", 0),
918 PCI_ROM(0x14e4, 0x1678, "14e4-1678", "14e4-1678", 0),
919 PCI_ROM(0x14e4, 0x1679, "14e4-1679", "14e4-1679", 0),
920 PCI_ROM(0x14e4, 0x167a, "14e4-167a", "14e4-167a", 0),
921 PCI_ROM(0x14e4, 0x167b, "14e4-167b", "14e4-167b", 0),
922 PCI_ROM(0x14e4, 0x167d, "14e4-167d", "14e4-167d", 0),
923 PCI_ROM(0x14e4, 0x167e, "14e4-167e", "14e4-167e", 0),
924 PCI_ROM(0x14e4, 0x167f, "14e4-167f", "14e4-167f", 0),
925 PCI_ROM(0x14e4, 0x1680, "14e4-1680", "14e4-1680", 0),
926 PCI_ROM(0x14e4, 0x1681, "14e4-1681", "14e4-1681", 0),
927 PCI_ROM(0x14e4, 0x1682, "14e4-1682", "14e4-1682", 0),
928 PCI_ROM(0x14e4, 0x1684, "14e4-1684", "14e4-1684", 0),
929 PCI_ROM(0x14e4, 0x1686, "14e4-1686", "14e4-1686", 0),
930 PCI_ROM(0x14e4, 0x1688, "14e4-1688", "14e4-1688", 0),
931 PCI_ROM(0x14e4, 0x1689, "14e4-1689", "14e4-1689", 0),
932 PCI_ROM(0x14e4, 0x1690, "14e4-1690", "14e4-1690", 0),
933 PCI_ROM(0x14e4, 0x1691, "14e4-1691", "14e4-1691", 0),
934 PCI_ROM(0x14e4, 0x1692, "14e4-1692", "14e4-1692", 0),
935 PCI_ROM(0x14e4, 0x1693, "14e4-1693", "14e4-1693", 0),
936 PCI_ROM(0x14e4, 0x1694, "14e4-1694", "14e4-1694", 0),
937 PCI_ROM(0x14e4, 0x1696, "14e4-1696", "14e4-1696", 0),
938 PCI_ROM(0x14e4, 0x1698, "14e4-1698", "14e4-1698", 0),
939 PCI_ROM(0x14e4, 0x1699, "14e4-1699", "14e4-1699", 0),
940 PCI_ROM(0x14e4, 0x169a, "14e4-169a", "14e4-169a", 0),
941 PCI_ROM(0x14e4, 0x169b, "14e4-169b", "14e4-169b", 0),
942 PCI_ROM(0x14e4, 0x169c, "14e4-169c", "14e4-169c", 0),
943 PCI_ROM(0x14e4, 0x169d, "14e4-169d", "14e4-169d", 0),
944 PCI_ROM(0x14e4, 0x16a0, "14e4-16a0", "14e4-16a0", 0),
945 PCI_ROM(0x14e4, 0x16a6, "14e4-16a6", "14e4-16a6", 0),
946 PCI_ROM(0x14e4, 0x16a7, "14e4-16a7", "14e4-16a7", 0),
947 PCI_ROM(0x14e4, 0x16a8, "14e4-16a8", "14e4-16a8", 0),
948 PCI_ROM(0x14e4, 0x16b0, "14e4-16b0", "14e4-16b0", 0),
949 PCI_ROM(0x14e4, 0x16b1, "14e4-16b1", "14e4-16b1", 0),
950 PCI_ROM(0x14e4, 0x16b2, "14e4-16b2", "14e4-16b2", 0),
951 PCI_ROM(0x14e4, 0x16b4, "14e4-16b4", "14e4-16b4", 0),
952 PCI_ROM(0x14e4, 0x16b5, "14e4-16b5", "14e4-16b5", 0),
953 PCI_ROM(0x14e4, 0x16b6, "14e4-16b6", "14e4-16b6", 0),
954 PCI_ROM(0x14e4, 0x16c6, "14e4-16c6", "14e4-16c6", 0),
955 PCI_ROM(0x14e4, 0x16c7, "14e4-16c7", "14e4-16c7", 0),
956 PCI_ROM(0x14e4, 0x16dd, "14e4-16dd", "14e4-16dd", 0),
957 PCI_ROM(0x14e4, 0x16f7, "14e4-16f7", "14e4-16f7", 0),
958 PCI_ROM(0x14e4, 0x16fd, "14e4-16fd", "14e4-16fd", 0),
959 PCI_ROM(0x14e4, 0x16fe, "14e4-16fe", "14e4-16fe", 0),
960 PCI_ROM(0x14e4, 0x170d, "14e4-170d", "14e4-170d", 0),
961 PCI_ROM(0x14e4, 0x170e, "14e4-170e", "14e4-170e", 0),
962 PCI_ROM(0x14e4, 0x1712, "14e4-1712", "14e4-1712", 0),
963 PCI_ROM(0x14e4, 0x1713, "14e4-1713", "14e4-1713", 0),
964 PCI_ROM(0x173b, 0x03e8, "173b-03e8", "173b-03e8", 0),
965 PCI_ROM(0x173b, 0x03e9, "173b-03e9", "173b-03e9", 0),
966 PCI_ROM(0x173b, 0x03ea, "173b-03ea", "173b-03ea", 0),
967 PCI_ROM(0x173b, 0x03eb, "173b-03eb", "173b-03eb", 0),
968};
969
970struct pci_driver tg3_pci_driver __pci_driver = {
971 .ids = tg3_nics,
972 .id_count = ARRAY_SIZE(tg3_nics),
973 .probe = tg3_init_one,
974 .remove = tg3_remove_one,
975};
#define NULL
NULL pointer (VOID *).
Definition Base.h:321
__be32 out[4]
Definition CIB_PRM.h:8
unsigned int uint32_t
Definition stdint.h:12
unsigned long physaddr_t
Definition stdint.h:20
#define assert(condition)
Assert a condition at run-time.
Definition assert.h:50
#define ETH_FCS_LEN
Definition atl1e.h:45
#define rxd
Definition davicom.c:146
ring len
Length.
Definition dwmac.h:226
#define ARRAY_SIZE(x)
Definition efx_common.h:43
struct ena_llq_option desc
Descriptor counts.
Definition ena.h:9
int errno
Global "last error" number.
Definition errno.c:21
Error codes.
struct net_device * alloc_etherdev(size_t priv_size)
Allocate Ethernet device.
Definition ethernet.c:265
Ethernet protocol.
static struct net_device * netdev
Definition gdbudp.c:53
#define __unused
Declare a variable or data structure as unused.
Definition compiler.h:598
#define DBGP(...)
Definition compiler.h:557
#define DBGC2(...)
Definition compiler.h:547
#define DBGCP(...)
Definition compiler.h:564
#define DBGC(...)
Definition compiler.h:530
uint16_t size
Buffer size.
Definition dwmac.h:3
#define FILE_LICENCE(_licence)
Declare a particular licence as applying to a file.
Definition compiler.h:921
#define ENOENT
No such file or directory.
Definition errno.h:515
#define EINVAL
Invalid argument.
Definition errno.h:429
#define ENOMEM
Not enough space.
Definition errno.h:535
#define ENOBUFS
No buffer space available.
Definition errno.h:499
#define ENODEV
No such device.
Definition errno.h:510
#define ETH_ZLEN
Definition if_ether.h:11
#define le32_to_cpu(value)
Definition byteswap.h:114
#define barrier()
Optimisation barrier.
Definition compiler.h:658
void mb(void)
Memory barrier.
void iounmap(volatile const void *io_addr)
Unmap I/O address.
int pci_read_config_word(struct pci_device *pci, unsigned int where, uint16_t *value)
Read 16-bit word from PCI configuration space.
void * pci_ioremap(struct pci_device *pci, unsigned long bus_addr, size_t len)
Map PCI bus address as an I/O address.
iPXE timers
void __asmcall int val
Definition setjmp.h:12
uint64_t u64
Definition stdint.h:26
String functions.
void * memset(void *dest, int character, size_t len) __nonnull
void iob_pad(struct io_buffer *iobuf, size_t min_len)
Pad I/O buffer.
Definition iobpad.c:50
struct io_buffer * alloc_rx_iob(size_t len, struct dma_device *dma)
Allocate and map I/O buffer for receive DMA.
Definition iobuf.c:188
void free_rx_iob(struct io_buffer *iobuf)
Unmap and free I/O buffer for receive DMA.
Definition iobuf.c:215
I/O buffers.
#define iob_put(iobuf, len)
Definition iobuf.h:125
static __always_inline physaddr_t iob_dma(struct io_buffer *iobuf)
Get I/O buffer DMA address.
Definition iobuf.h:268
static size_t iob_len(struct io_buffer *iobuf)
Calculate length of data in an I/O buffer.
Definition iobuf.h:160
static __always_inline void dma_set_mask_64bit(struct dma_device *dma)
Set 64-bit addressable space mask.
Definition dma.h:467
void dma_free(struct dma_mapping *map, void *addr, size_t len)
Unmap and free DMA-coherent buffer.
void * dma_alloc(struct dma_device *dma, struct dma_mapping *map, size_t len, size_t align)
Allocate and map DMA-coherent buffer.
physaddr_t dma(struct dma_mapping *map, void *addr)
Get DMA address from virtual address.
void * zalloc(size_t size)
Allocate cleared memory.
Definition malloc.c:662
Dynamic memory allocation.
Media Independent Interface constants.
static unsigned int unsigned int reg
Definition myson.h:162
void netdev_rx(struct net_device *netdev, struct io_buffer *iobuf)
Add packet to receive queue.
Definition netdevice.c:549
void unregister_netdev(struct net_device *netdev)
Unregister network device.
Definition netdevice.c:946
void netdev_rx_err(struct net_device *netdev, struct io_buffer *iobuf, int rc)
Discard received packet.
Definition netdevice.c:587
int register_netdev(struct net_device *netdev)
Register network device.
Definition netdevice.c:760
Network device management.
static void netdev_init(struct net_device *netdev, struct net_device_operations *op)
Initialise a network device.
Definition netdevice.h:522
static void netdev_nullify(struct net_device *netdev)
Stop using a network device.
Definition netdevice.h:535
static void netdev_put(struct net_device *netdev)
Drop reference to network device.
Definition netdevice.h:579
static void netdev_tx_complete(struct net_device *netdev, struct io_buffer *iobuf)
Complete network transmission.
Definition netdevice.h:770
unsigned long pci_bar_size(struct pci_device *pci, unsigned int reg)
Get the size of a PCI BAR.
Definition pci.c:178
void adjust_pci_device(struct pci_device *pci)
Enable PCI device.
Definition pci.c:255
unsigned long pci_bar_start(struct pci_device *pci, unsigned int reg)
Find the start of a PCI BAR.
Definition pci.c:111
PCI bus.
#define __pci_driver
Declare a PCI driver.
Definition pci.h:281
#define PCI_SUBSYSTEM_ID
PCI subsystem ID.
Definition pci.h:79
static void pci_set_drvdata(struct pci_device *pci, void *priv)
Set PCI driver-private data.
Definition pci.h:370
#define PCI_ROM(_vendor, _device, _name, _description, _data)
Definition pci.h:311
#define PCI_BASE_ADDRESS_0
Definition pci.h:63
static void * pci_get_drvdata(struct pci_device *pci)
Get PCI driver-private data.
Definition pci.h:380
#define PCI_SUBSYSTEM_VENDOR_ID
PCI subsystem vendor ID.
Definition pci.h:76
static void(* free)(struct refcnt *refcnt))
Definition refcnt.h:55
char * strerror(int errno)
Retrieve string representation of error number.
Definition strerror.c:79
A DMA mapping.
Definition dma.h:33
A persistent I/O buffer.
Definition iobuf.h:38
Network device operations.
Definition netdevice.h:214
A network device.
Definition netdevice.h:353
void * priv
Driver private data.
Definition netdevice.h:432
struct dma_device * dma
DMA device.
Definition netdevice.h:367
struct device * dev
Underlying hardware device.
Definition netdevice.h:365
A PCI device ID list entry.
Definition pci.h:178
A PCI device.
Definition pci.h:214
struct device dev
Generic device.
Definition pci.h:216
struct dma_device dma
DMA device.
Definition pci.h:218
A PCI driver.
Definition pci.h:255
struct tg3_hw_status::@346154016361251030104324040037321237160035164370 idx[16]
u16 rx_producer
Definition tg3.h:2696
struct tg3_rx_buffer_desc * rx_std
Definition tg3.h:2953
struct dma_mapping rx_std_map
Definition tg3.h:2955
struct io_buffer * rx_iobufs[TG3_DEF_RX_RING_PENDING]
Definition tg3.h:2954
Definition tg3.h:3045
struct pci_device * pdev
Definition tg3.h:3090
struct net_device * dev
Definition tg3.h:3089
void tg3_rx_prodring_fini(struct tg3 __unused *tp, struct tg3_rx_prodring_set *tpr)
Definition tg3.c:42
#define TEST_BUFFER_SIZE
Definition tg3.c:547
static int tg3_transmit(struct net_device *dev, struct io_buffer *iob)
Definition tg3.c:305
static int tg3_open(struct net_device *dev)
Definition tg3.c:239
int tg3_do_test_dma(struct tg3 *tp, u32 __unused *buf, physaddr_t buf_dma, int size, int to_device)
Definition tg3_hw.c:2607
#define TG3_TX_RING_BYTES
Definition tg3.c:32
static int tg3_test_dma(struct tg3 *tp)
Definition tg3.c:552
static void tg3_irq(struct net_device *dev, int enable)
Definition tg3.c:526
static u32 tg3_tx_avail(struct tg3 *tp)
Definition tg3.c:266
#define TG3_DEF_TX_MODE
Definition tg3.c:21
static struct pci_device_id tg3_nics[]
Definition tg3.c:885
static void tg3_refill_prod_ring(struct tg3 *tp)
Definition tg3.c:415
#define TG3_RX_RCB_RING_BYTES(tp)
Definition tg3.c:36
static void tg3_rx_iob_free(struct io_buffer *iobs[], int i)
Definition tg3.c:180
static void tg3_remove_one(struct pci_device *pci)
Definition tg3.c:875
static int tg3_alloc_rx_iob(struct tg3 *tp, struct tg3_rx_prodring_set *tpr, u32 dest_idx_unmasked)
Definition tg3.c:378
static int tg3_rx_prodring_alloc(struct tg3 __unused *tp, struct tg3_rx_prodring_set *tpr)
Definition tg3.c:153
static void tg3_free_consistent(struct tg3 *tp)
Definition tg3.c:57
void tg3_read_mem(struct tg3 *tp, u32 off, u32 *val)
Definition tg3_hw.c:153
static void tg3_rx_complete(struct net_device *dev)
Definition tg3.c:442
static int tg3_init_one(struct pci_device *pdev)
Definition tg3.c:733
static void tg3_rx_prodring_free(struct tg3_rx_prodring_set *tpr)
Definition tg3.c:194
#define NEXT_TX(N)
Definition tg3.c:300
int tg3_alloc_consistent(struct tg3 *tp)
Definition tg3.c:86
#define TG3_RX_STD_RING_BYTES(tp)
Definition tg3.c:39
#define TG3_DEF_RX_MODE
Definition tg3.c:20
int tg3_init_rings(struct tg3 *tp)
Definition tg3.c:209
static struct net_device_operations tg3_netdev_ops
Definition tg3.c:539
static void tg3_tx_complete(struct net_device *dev)
Definition tg3.c:343
static void tg3_poll(struct net_device *dev)
Definition tg3.c:493
static void tg3_close(struct net_device *dev)
Definition tg3.c:511
#define MISC_HOST_CTRL_INDIR_ACCESS
Definition tg3.h:252
void tg3_set_power_state_0(struct tg3 *tp)
Definition tg3_hw.c:130
#define TG3_DMA_ALIGNMENT
Definition tg3.h:3312
#define RDMAC_STATUS
Definition tg3.h:1495
#define ASIC_REV_5780
Definition tg3.h:306
int tg3_init_hw(struct tg3 *tp, int reset_phy)
Definition tg3_hw.c:2585
#define TG3_RX_STD_DMA_SZ
Definition tg3.h:3314
#define ASIC_REV_5701
Definition tg3.h:300
#define tw32_tx_mbox(reg, val)
Definition tg3.h:3335
#define DMA_RWCTRL_PCI_WRITE_CMD_SHIFT
Definition tg3.h:378
#define MAILBOX_INTERRUPT_0
Definition tg3.h:431
#define TG3PCI_DMA_RW_CTRL
Definition tg3.h:340
#define RXD_ERR_MASK
Definition tg3.h:2625
#define tr32(reg)
Definition tg3.h:3338
#define ASIC_REV_5705
Definition tg3.h:303
#define RXD_FLAG_END
Definition tg3.h:2597
#define MAILBOX_SNDHOST_PROD_IDX_0
Definition tg3.h:467
#define TG3_HW_STATUS_SIZE
Definition tg3.h:2669
#define DMA_RWCTRL_WRITE_BNDRY_MASK
Definition tg3.h:356
#define TG3_DEF_TX_RING_PENDING
Definition tg3.h:3310
#define RXD_ERR_ODD_NIBBLE_RCVD_MII
Definition tg3.h:2620
#define GRC_MODE_WSWAP_DATA
Definition tg3.h:1787
#define GET_ASIC_REV(CHIP_REV_ID)
Definition tg3.h:298
#define tg3_flag(tp, flag)
Definition tg3.h:3364
#define TX_CPU_STATE
Definition tg3.h:1607
#define RXD_LEN_MASK
Definition tg3.h:2590
#define HOSTCC_MODE_NOW
Definition tg3.h:1303
#define MISC_HOST_CTRL_PCISTATE_RW
Definition tg3.h:249
#define DMA_RWCTRL_PCI_READ_CMD_SHIFT
Definition tg3.h:376
#define WDMAC_STATUS
Definition tg3.h:1536
void tg3_enable_ints(struct tg3 *tp)
Definition tg3_hw.c:968
#define MISC_HOST_CTRL_MASK_PCI_INT
Definition tg3.h:246
#define MSGINT_STATUS
Definition tg3.h:1770
#define tw32(reg, val)
Definition tg3.h:3328
#define TG3_RX_STD_PROD_IDX_REG
Definition tg3.h:445
#define HOSTCC_MODE
Definition tg3.h:1299
#define ASIC_REV_5750
Definition tg3.h:304
#define TG3_DEF_RX_RING_PENDING
Definition tg3.h:2947
#define ASIC_REV_5703
Definition tg3.h:301
#define TG3PCI_CLOCK_CTRL
Definition tg3.h:395
#define RXD_FLAGS_SHIFT
Definition tg3.h:2595
#define HOSTCC_FLOW_ATTN
Definition tg3.h:1359
#define GRC_MODE_WSWAP_NONFRM_DATA
Definition tg3.h:1785
#define SD_STATUS_UPDATED
Definition tg3.h:2672
#define MAILBOX_RCVRET_CON_IDX_0
Definition tg3.h:451
#define tg3_flag_clear(tp, flag)
Definition tg3.h:3368
void tg3_set_txd(struct tg3 *tp, int entry, physaddr_t mapping, int len, u32 flags)
Definition tg3_hw.c:2595
#define WDMAC_MODE_ENABLE
Definition tg3.h:1524
void tg3_init_bufmgr_config(struct tg3 *tp)
Definition tg3_hw.c:850
#define DMA_RWCTRL_USE_MEM_READ_MULT
Definition tg3.h:373
#define RX_CPU_STATE
Definition tg3.h:1602
int tg3_get_invariants(struct tg3 *tp)
Definition tg3_hw.c:394
#define TG3_RX_STD_MAX_SIZE_5700
Definition tg3.h:173
#define RXD_LEN_SHIFT
Definition tg3.h:2591
int tg3_halt(struct tg3 *tp)
Definition tg3_hw.c:1481
#define MEMARB_MODE
Definition tg3.h:1410
#define ASIC_REV_5700
Definition tg3.h:299
#define MISC_HOST_CTRL_WORD_SWAP
Definition tg3.h:248
#define RXD_OPAQUE_RING_STD
Definition tg3.h:2631
#define DMA_RWCTRL_ONE_DMA
Definition tg3.h:368
#define GRC_MODE_BSWAP_DATA
Definition tg3.h:1786
#define ASIC_REV_5704
Definition tg3.h:302
int tg3_setup_phy(struct tg3 *tp, int force_reset)
Definition tg3_phy.c:2521
void tg3_poll_link(struct tg3 *tp)
Definition tg3_phy.c:1009
#define TG3_RX_RET_MAX_SIZE_5705
Definition tg3.h:178
void __tg3_set_mac_addr(struct tg3 *tp, int skip_mac_1)
Definition tg3_hw.c:1094
#define tw32_rx_mbox(reg, val)
Definition tg3.h:3336
#define RXD_OPAQUE_INDEX_SHIFT
Definition tg3.h:2630
#define MAC_STATUS
Definition tg3.h:530
#define DMA_RWCTRL_DIS_CACHE_ALIGNMENT
Definition tg3.h:341
#define HOSTCC_MODE_ENABLE
Definition tg3.h:1301
#define tw32_mailbox(reg, val)
define tw32_mailbox(reg, val) tg3_write_indirect_mbox(((val) & 0xffffffff), tp->regs + (reg))
Definition tg3.h:3330
#define MEMARB_MODE_ENABLE
Definition tg3.h:1412
#define DMA_RWCTRL_READ_WATER_SHIFT
Definition tg3.h:370
#define RXD_OPAQUE_INDEX_MASK
Definition tg3.h:2629
void tg3_disable_ints(struct tg3 *tp)
Definition tg3_hw.c:959
#define TG3_64BIT_REG_LOW
Definition tg3.h:160
int tg3_get_device_address(struct tg3 *tp)
Definition tg3_hw.c:1650
#define DMA_RWCTRL_WRITE_WATER_SHIFT
Definition tg3.h:372
#define DMA_RWCTRL_ASSERT_ALL_BE
Definition tg3.h:374
#define ASIC_REV_5714
Definition tg3.h:307
#define DMA_RWCTRL_WRITE_BNDRY_16
Definition tg3.h:358
#define TG3_TX_RING_SIZE
Definition tg3.h:3309
#define TXD_FLAG_END
Definition tg3.h:2560
#define GRC_MODE_BSWAP_NONFRM_DATA
Definition tg3.h:1784
#define WDMAC_MODE
Definition tg3.h:1522
static void tg3_switch_clocks(struct tg3 *tp)
Definition tg3_hw.c:360
static struct tulip_private * tp
Definition tulip.c:442
#define u16
Definition vga.h:20
#define u32
Definition vga.h:21
int printf(const char *fmt,...)
Write a formatted string to the console.
Definition vsprintf.c:465