📄 via-velocity.c
字号:
#endif velocity_nics++;out: return ret;err_iounmap: iounmap(regs);err_release_res: pci_release_regions(pdev);err_disable: pci_disable_device(pdev);err_free_dev: free_netdev(dev); goto out;}/** * velocity_print_info - per driver data * @vptr: velocity * * Print per driver data as the kernel driver finds Velocity * hardware */static void __devinit velocity_print_info(struct velocity_info *vptr){ struct net_device *dev = vptr->dev; printk(KERN_INFO "%s: %s\n", dev->name, get_chip_name(vptr->chip_id)); printk(KERN_INFO "%s: Ethernet Address: %2.2X:%2.2X:%2.2X:%2.2X:%2.2X:%2.2X\n", dev->name, dev->dev_addr[0], dev->dev_addr[1], dev->dev_addr[2], dev->dev_addr[3], dev->dev_addr[4], dev->dev_addr[5]);}/** * velocity_init_info - init private data * @pdev: PCI device * @vptr: Velocity info * @info: Board type * * Set up the initial velocity_info struct for the device that has been * discovered. */static void __devinit velocity_init_info(struct pci_dev *pdev, struct velocity_info *vptr, const struct velocity_info_tbl *info){ memset(vptr, 0, sizeof(struct velocity_info)); vptr->pdev = pdev; vptr->chip_id = info->chip_id; vptr->num_txq = info->txqueue; vptr->multicast_limit = MCAM_SIZE; spin_lock_init(&vptr->lock); INIT_LIST_HEAD(&vptr->list);}/** * velocity_get_pci_info - retrieve PCI info for device * @vptr: velocity device * @pdev: PCI device it matches * * Retrieve the PCI configuration space data that interests us from * the kernel PCI layer */static int __devinit velocity_get_pci_info(struct velocity_info *vptr, struct pci_dev *pdev){ vptr->rev_id = pdev->revision; pci_set_master(pdev); vptr->ioaddr = pci_resource_start(pdev, 0); vptr->memaddr = pci_resource_start(pdev, 1); if (!(pci_resource_flags(pdev, 0) & IORESOURCE_IO)) { dev_err(&pdev->dev, "region #0 is not an I/O resource, aborting.\n"); return -EINVAL; } if ((pci_resource_flags(pdev, 1) & IORESOURCE_IO)) { dev_err(&pdev->dev, "region #1 is an I/O resource, aborting.\n"); return -EINVAL; } if (pci_resource_len(pdev, 1) < VELOCITY_IO_SIZE) { dev_err(&pdev->dev, "region #1 is too small.\n"); return -EINVAL; } vptr->pdev = pdev; return 0;}/** * velocity_init_rings - set up DMA rings * @vptr: Velocity to set up * * Allocate PCI mapped DMA rings for the receive and transmit layer * to use. */static int velocity_init_rings(struct velocity_info *vptr){ int i; unsigned int psize; unsigned int tsize; dma_addr_t pool_dma; u8 *pool; /* * Allocate all RD/TD rings a single pool */ psize = vptr->options.numrx * sizeof(struct rx_desc) + vptr->options.numtx * sizeof(struct tx_desc) * vptr->num_txq; /* * pci_alloc_consistent() fulfills the requirement for 64 bytes * alignment */ pool = pci_alloc_consistent(vptr->pdev, psize, &pool_dma); if (pool == NULL) { printk(KERN_ERR "%s : DMA memory allocation failed.\n", vptr->dev->name); return -ENOMEM; } memset(pool, 0, psize); vptr->rd_ring = (struct rx_desc *) pool; vptr->rd_pool_dma = pool_dma; tsize = vptr->options.numtx * PKT_BUF_SZ * vptr->num_txq; vptr->tx_bufs = pci_alloc_consistent(vptr->pdev, tsize, &vptr->tx_bufs_dma); if (vptr->tx_bufs == NULL) { printk(KERN_ERR "%s: DMA memory allocation failed.\n", vptr->dev->name); pci_free_consistent(vptr->pdev, psize, pool, pool_dma); return -ENOMEM; } memset(vptr->tx_bufs, 0, vptr->options.numtx * PKT_BUF_SZ * vptr->num_txq); i = vptr->options.numrx * sizeof(struct rx_desc); pool += i; pool_dma += i; for (i = 0; i < vptr->num_txq; i++) { int offset = vptr->options.numtx * sizeof(struct tx_desc); vptr->td_pool_dma[i] = pool_dma; vptr->td_rings[i] = (struct tx_desc *) pool; pool += offset; pool_dma += offset; } return 0;}/** * velocity_free_rings - free PCI ring pointers * @vptr: Velocity to free from * * Clean up the PCI ring buffers allocated to this velocity. */static void velocity_free_rings(struct velocity_info *vptr){ int size; size = vptr->options.numrx * sizeof(struct rx_desc) + vptr->options.numtx * sizeof(struct tx_desc) * vptr->num_txq; pci_free_consistent(vptr->pdev, size, vptr->rd_ring, vptr->rd_pool_dma); size = vptr->options.numtx * PKT_BUF_SZ * vptr->num_txq; pci_free_consistent(vptr->pdev, size, vptr->tx_bufs, vptr->tx_bufs_dma);}static inline void velocity_give_many_rx_descs(struct velocity_info *vptr){ struct mac_regs __iomem *regs = vptr->mac_regs; int avail, dirty, unusable; /* * RD number must be equal to 4X per hardware spec * (programming guide rev 1.20, p.13) */ if (vptr->rd_filled < 4) return; wmb(); unusable = vptr->rd_filled & 0x0003; dirty = vptr->rd_dirty - unusable; for (avail = vptr->rd_filled & 0xfffc; avail; avail--) { dirty = (dirty > 0) ? dirty - 1 : vptr->options.numrx - 1; vptr->rd_ring[dirty].rdesc0.owner = OWNED_BY_NIC; } writew(vptr->rd_filled & 0xfffc, ®s->RBRDU); vptr->rd_filled = unusable;}static int velocity_rx_refill(struct velocity_info *vptr){ int dirty = vptr->rd_dirty, done = 0, ret = 0; do { struct rx_desc *rd = vptr->rd_ring + dirty; /* Fine for an all zero Rx desc at init time as well */ if (rd->rdesc0.owner == OWNED_BY_NIC) break; if (!vptr->rd_info[dirty].skb) { ret = velocity_alloc_rx_buf(vptr, dirty); if (ret < 0) break; } done++; dirty = (dirty < vptr->options.numrx - 1) ? dirty + 1 : 0; } while (dirty != vptr->rd_curr); if (done) { vptr->rd_dirty = dirty; vptr->rd_filled += done; velocity_give_many_rx_descs(vptr); } return ret;}/** * velocity_init_rd_ring - set up receive ring * @vptr: velocity to configure * * Allocate and set up the receive buffers for each ring slot and * assign them to the network adapter. */static int velocity_init_rd_ring(struct velocity_info *vptr){ int ret; int mtu = vptr->dev->mtu; vptr->rx_buf_sz = (mtu <= ETH_DATA_LEN) ? PKT_BUF_SZ : mtu + 32; vptr->rd_info = kcalloc(vptr->options.numrx, sizeof(struct velocity_rd_info), GFP_KERNEL); if (!vptr->rd_info) return -ENOMEM; vptr->rd_filled = vptr->rd_dirty = vptr->rd_curr = 0; ret = velocity_rx_refill(vptr); if (ret < 0) { VELOCITY_PRT(MSG_LEVEL_ERR, KERN_ERR "%s: failed to allocate RX buffer.\n", vptr->dev->name); velocity_free_rd_ring(vptr); } return ret;}/** * velocity_free_rd_ring - free receive ring * @vptr: velocity to clean up * * Free the receive buffers for each ring slot and any * attached socket buffers that need to go away. */static void velocity_free_rd_ring(struct velocity_info *vptr){ int i; if (vptr->rd_info == NULL) return; for (i = 0; i < vptr->options.numrx; i++) { struct velocity_rd_info *rd_info = &(vptr->rd_info[i]); struct rx_desc *rd = vptr->rd_ring + i; memset(rd, 0, sizeof(*rd)); if (!rd_info->skb) continue; pci_unmap_single(vptr->pdev, rd_info->skb_dma, vptr->rx_buf_sz, PCI_DMA_FROMDEVICE); rd_info->skb_dma = (dma_addr_t) NULL; dev_kfree_skb(rd_info->skb); rd_info->skb = NULL; } kfree(vptr->rd_info); vptr->rd_info = NULL;}/** * velocity_init_td_ring - set up transmit ring * @vptr: velocity * * Set up the transmit ring and chain the ring pointers together. * Returns zero on success or a negative posix errno code for * failure. */static int velocity_init_td_ring(struct velocity_info *vptr){ int i, j; dma_addr_t curr; struct tx_desc *td; struct velocity_td_info *td_info; /* Init the TD ring entries */ for (j = 0; j < vptr->num_txq; j++) { curr = vptr->td_pool_dma[j]; vptr->td_infos[j] = kcalloc(vptr->options.numtx, sizeof(struct velocity_td_info), GFP_KERNEL); if (!vptr->td_infos[j]) { while(--j >= 0) kfree(vptr->td_infos[j]); return -ENOMEM; } for (i = 0; i < vptr->options.numtx; i++, curr += sizeof(struct tx_desc)) { td = &(vptr->td_rings[j][i]); td_info = &(vptr->td_infos[j][i]); td_info->buf = vptr->tx_bufs + (j * vptr->options.numtx + i) * PKT_BUF_SZ; td_info->buf_dma = vptr->tx_bufs_dma + (j * vptr->options.numtx + i) * PKT_BUF_SZ; } vptr->td_tail[j] = vptr->td_curr[j] = vptr->td_used[j] = 0; } return 0;}/* * FIXME: could we merge this with velocity_free_tx_buf ? */static void velocity_free_td_ring_entry(struct velocity_info *vptr, int q, int n){ struct velocity_td_info * td_info = &(vptr->td_infos[q][n]); int i; if (td_info == NULL) return; if (td_info->skb) { for (i = 0; i < td_info->nskb_dma; i++) { if (td_info->skb_dma[i]) { pci_unmap_single(vptr->pdev, td_info->skb_dma[i], td_info->skb->len, PCI_DMA_TODEVICE); td_info->skb_dma[i] = (dma_addr_t) NULL; } } dev_kfree_skb(td_info->skb); td_info->skb = NULL; }}/** * velocity_free_td_ring - free td ring * @vptr: velocity * * Free up the transmit ring for this particular velocity adapter. * We free the ring contents but not the ring itself. */static void velocity_free_td_ring(struct velocity_info *vptr){ int i, j; for (j = 0; j < vptr->num_txq; j++) { if (vptr->td_infos[j] == NULL) continue; for (i = 0; i < vptr->options.numtx; i++) { velocity_free_td_ring_entry(vptr, j, i); } kfree(vptr->td_infos[j]); vptr->td_infos[j] = NULL; }}/** * velocity_rx_srv - service RX interrupt * @vptr: velocity * @status: adapter status (unused) * * Walk the receive ring of the velocity adapter and remove * any received packets from the receive queue. Hand the ring * slots back to the adapter for reuse. */static int velocity_rx_srv(struct velocity_info *vptr, int status){ struct net_device_stats *stats = &vptr->stats; int rd_curr = vptr->rd_curr; int works = 0; do { struct rx_desc *rd = vptr->rd_ring + rd_curr; if (!vptr->rd_info[rd_curr].skb) break; if (rd->rdesc0.owner == OWNED_BY_NIC) break; rmb(); /* * Don't drop CE or RL error frame although RXOK is off */ if ((rd->rdesc0.RSR & RSR_RXOK) || (!(rd->rdesc0.RSR & RSR_RXOK) && (rd->rdesc0.RSR & (RSR_CE | RSR_RL)))) { if (velocity_receive_frame(vptr, rd_curr) < 0) stats->rx_dropped++; } else { if (rd->rdesc0.RSR & RSR_CRC) stats->rx_crc_errors++; if (rd->rdesc0.RSR & RSR_FAE) stats->rx_frame_errors++; stats->rx_dropped++; } rd->inten = 1; vptr->dev->last_rx = jiffies; rd_curr++; if (rd_curr >= vptr->options.numrx) rd_curr = 0; } while (++works <= 15); vptr->rd_curr = rd_curr; if (works > 0 && velocity_rx_refill(vptr) < 0) { VELOCITY_PRT(MSG_LEVEL_ERR, KERN_ERR "%s: rx buf allocation failure\n", vptr->dev->name); } VAR_USED(stats); return works;}/** * velocity_rx_csum - checksum process * @rd: receive packet descriptor * @skb: network layer packet buffer * * Process the status bits for the received packet and determine * if the checksum was computed and verified by the hardware */static inline void velocity_rx_csum(struct rx_desc *rd, struct sk_buff *skb){ skb->ip_summed = CHECKSUM_NONE; if (rd->rdesc1.CSM & CSM_IPKT) { if (rd->rdesc1.CSM & CSM_IPOK) { if ((rd->rdesc1.CSM & CSM_TCPKT) || (rd->rdesc1.CSM & CSM_UDPKT)) { if (!(rd->rdesc1.CSM & CSM_TUPOK)) { return; } } skb->ip_summed = CHECKSUM_UNNECESSARY; } }}/** * velocity_rx_copy - in place Rx copy for small packets * @rx_skb: network layer packet buffer candidate * @pkt_size: received data size * @rd: receive packet descriptor * @dev: network device *
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -