📄 wd.c
字号:
/* Allocate dev->priv and fill in 8390 specific dev fields. */ if (ethdev_init(dev)) { printk (" unable to get memory for dev->priv.\n"); return -ENOMEM; } /* Snarf the interrupt now. There's no point in waiting since we cannot share and the board will usually be enabled. */ i = request_irq(dev->irq, ei_interrupt, 0, dev->name, dev); if (i) { printk (" unable to get IRQ %d.\n", dev->irq); kfree(dev->priv); dev->priv = NULL; return i; } /* OK, were are certain this is going to work. Setup the device. */ ei_status.name = model_name; ei_status.word16 = word16; ei_status.tx_start_page = WD_START_PG; ei_status.rx_start_page = WD_START_PG + TX_PAGES; /* Don't map in the shared memory until the board is actually opened. */ dev->rmem_start = dev->mem_start + TX_PAGES*256; /* Some cards (eg WD8003EBT) can be jumpered for more (32k!) memory. */ if (dev->mem_end != 0) { ei_status.stop_page = (dev->mem_end - dev->mem_start)/256; } else { ei_status.stop_page = word16 ? WD13_STOP_PG : WD03_STOP_PG; dev->mem_end = dev->mem_start + (ei_status.stop_page - WD_START_PG)*256; } dev->rmem_end = dev->mem_end; printk(" %s, IRQ %d, shared memory at %#lx-%#lx.\n", model_name, dev->irq, dev->mem_start, dev->mem_end-1); ei_status.reset_8390 = &wd_reset_8390; ei_status.block_input = &wd_block_input; ei_status.block_output = &wd_block_output; ei_status.get_8390_hdr = &wd_get_8390_hdr; dev->open = &wd_open; dev->stop = &wd_close; NS8390_init(dev, 0);#if 1 /* Enable interrupt generation on softconfig cards -- M.U */ /* .. but possibly potentially unsafe - Donald */ if (inb(ioaddr+14) & 0x20) outb(inb(ioaddr+4)|0x80, ioaddr+4);#endif return 0;}static intwd_open(struct net_device *dev){ int ioaddr = dev->base_addr - WD_NIC_OFFSET; /* WD_CMDREG */ /* Map in the shared memory. Always set register 0 last to remain compatible with very old boards. */ ei_status.reg0 = ((dev->mem_start>>13) & 0x3f) | WD_MEMENB; ei_status.reg5 = ((dev->mem_start>>19) & 0x1f) | NIC16; if (ei_status.word16) outb(ei_status.reg5, ioaddr+WD_CMDREG5); outb(ei_status.reg0, ioaddr); /* WD_CMDREG */ ei_open(dev); return 0;}static voidwd_reset_8390(struct net_device *dev){ int wd_cmd_port = dev->base_addr - WD_NIC_OFFSET; /* WD_CMDREG */ outb(WD_RESET, wd_cmd_port); if (ei_debug > 1) printk("resetting the WD80x3 t=%lu...", jiffies); ei_status.txing = 0; /* Set up the ASIC registers, just in case something changed them. */ outb((((dev->mem_start>>13) & 0x3f)|WD_MEMENB), wd_cmd_port); if (ei_status.word16) outb(NIC16 | ((dev->mem_start>>19) & 0x1f), wd_cmd_port+WD_CMDREG5); if (ei_debug > 1) printk("reset done\n"); return;}/* Grab the 8390 specific header. Similar to the block_input routine, but we don't need to be concerned with ring wrap as the header will be at the start of a page, so we optimize accordingly. */static voidwd_get_8390_hdr(struct net_device *dev, struct e8390_pkt_hdr *hdr, int ring_page){ int wd_cmdreg = dev->base_addr - WD_NIC_OFFSET; /* WD_CMDREG */ unsigned long hdr_start = dev->mem_start + ((ring_page - WD_START_PG)<<8); /* We'll always get a 4 byte header read followed by a packet read, so we enable 16 bit mode before the header, and disable after the body. */ if (ei_status.word16) outb(ISA16 | ei_status.reg5, wd_cmdreg+WD_CMDREG5);#ifdef notdef /* Officially this is what we are doing, but the readl() is faster */ isa_memcpy_fromio(hdr, hdr_start, sizeof(struct e8390_pkt_hdr));#else ((unsigned int*)hdr)[0] = isa_readl(hdr_start);#endif}/* Block input and output are easy on shared memory ethercards, and trivial on the Western digital card where there is no choice of how to do it. The only complications are that the ring buffer wraps, and need to map switch between 8- and 16-bit modes. */static voidwd_block_input(struct net_device *dev, int count, struct sk_buff *skb, int ring_offset){ int wd_cmdreg = dev->base_addr - WD_NIC_OFFSET; /* WD_CMDREG */ unsigned long xfer_start = dev->mem_start + ring_offset - (WD_START_PG<<8); if (xfer_start + count > dev->rmem_end) { /* We must wrap the input move. */ int semi_count = dev->rmem_end - xfer_start; isa_memcpy_fromio(skb->data, xfer_start, semi_count); count -= semi_count; isa_memcpy_fromio(skb->data + semi_count, dev->rmem_start, count); } else { /* Packet is in one chunk -- we can copy + cksum. */ isa_eth_io_copy_and_sum(skb, xfer_start, count, 0); } /* Turn off 16 bit access so that reboot works. ISA brain-damage */ if (ei_status.word16) outb(ei_status.reg5, wd_cmdreg+WD_CMDREG5);}static voidwd_block_output(struct net_device *dev, int count, const unsigned char *buf, int start_page){ int wd_cmdreg = dev->base_addr - WD_NIC_OFFSET; /* WD_CMDREG */ long shmem = dev->mem_start + ((start_page - WD_START_PG)<<8); if (ei_status.word16) { /* Turn on and off 16 bit access so that reboot works. */ outb(ISA16 | ei_status.reg5, wd_cmdreg+WD_CMDREG5); isa_memcpy_toio(shmem, buf, count); outb(ei_status.reg5, wd_cmdreg+WD_CMDREG5); } else isa_memcpy_toio(shmem, buf, count);}static intwd_close(struct net_device *dev){ int wd_cmdreg = dev->base_addr - WD_NIC_OFFSET; /* WD_CMDREG */ if (ei_debug > 1) printk("%s: Shutting down ethercard.\n", dev->name); ei_close(dev); /* Change from 16-bit to 8-bit shared memory so reboot works. */ if (ei_status.word16) outb(ei_status.reg5, wd_cmdreg + WD_CMDREG5 ); /* And disable the shared memory. */ outb(ei_status.reg0 & ~WD_MEMENB, wd_cmdreg); return 0;}#ifdef MODULE#define MAX_WD_CARDS 4 /* Max number of wd cards per module */static struct net_device dev_wd[MAX_WD_CARDS];static int io[MAX_WD_CARDS];static int irq[MAX_WD_CARDS];static int mem[MAX_WD_CARDS];static int mem_end[MAX_WD_CARDS]; /* for non std. mem size */MODULE_PARM(io, "1-" __MODULE_STRING(MAX_WD_CARDS) "i");MODULE_PARM(irq, "1-" __MODULE_STRING(MAX_WD_CARDS) "i");MODULE_PARM(mem, "1-" __MODULE_STRING(MAX_WD_CARDS) "i");MODULE_PARM(mem_end, "1-" __MODULE_STRING(MAX_WD_CARDS) "i");MODULE_PARM_DESC(io, "WD80x3 I/O base address(es)");MODULE_PARM_DESC(irq, "WD80x3 IRQ number(s) (ignored for PureData boards)");MODULE_PARM_DESC(mem, "WD80x3 memory base address(es)(ignored for PureData boards)");MODULE_PARM_DESC(mem_end, "WD80x3 memory end address(es)");MODULE_LICENSE("GPL");/* This is set up so that only a single autoprobe takes place per call.ISA device autoprobes on a running machine are not recommended. */intinit_module(void){ int this_dev, found = 0; for (this_dev = 0; this_dev < MAX_WD_CARDS; this_dev++) { struct net_device *dev = &dev_wd[this_dev]; dev->irq = irq[this_dev]; dev->base_addr = io[this_dev]; dev->mem_start = mem[this_dev]; dev->mem_end = mem_end[this_dev]; dev->init = wd_probe; if (io[this_dev] == 0) { if (this_dev != 0) break; /* only autoprobe 1st one */ printk(KERN_NOTICE "wd.c: Presently autoprobing (not recommended) for a single card.\n"); } if (register_netdev(dev) != 0) { printk(KERN_WARNING "wd.c: No wd80x3 card found (i/o = 0x%x).\n", io[this_dev]); if (found != 0) { /* Got at least one. */ return 0; } return -ENXIO; } found++; } return 0;}voidcleanup_module(void){ int this_dev; for (this_dev = 0; this_dev < MAX_WD_CARDS; this_dev++) { struct net_device *dev = &dev_wd[this_dev]; if (dev->priv != NULL) { void *priv = dev->priv; int ioaddr = dev->base_addr - WD_NIC_OFFSET; free_irq(dev->irq, dev); release_region(ioaddr, WD_IO_EXTENT); unregister_netdev(dev); kfree(priv); } }}#endif /* MODULE *//* * Local variables: * compile-command: "gcc -D__KERNEL__ -I/usr/src/linux/net/inet -Wall -Wstrict-prototypes -O6 -m486 -c wd.c" * version-control: t * tab-width: 4 * kept-new-versions: 5 * End: */
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -