📄 etherh.c
字号:
addr = dev->base_addr; dma_addr = dev->mem_start; outb (E8390_NODMA | E8390_PAGE0 | E8390_START, addr + E8390_CMD); outb (sizeof (*hdr), addr + EN0_RCNTLO); outb (0, addr + EN0_RCNTHI); outb (0, addr + EN0_RSARLO); outb (ring_page, addr + EN0_RSARHI); outb (E8390_RREAD | E8390_START, addr + E8390_CMD); if (ei_local->word16) insw (dma_addr, hdr, sizeof (*hdr) >> 1); else insb (dma_addr, hdr, sizeof (*hdr)); outb (ENISR_RDC, addr + EN0_ISR); ei_local->dmaing &= ~1;}/* * Open/initialize the board. This is called (in the current kernel) * sometime after booting when the 'ifconfig' program is run. * * This routine should set everything up anew at each open, even * registers that "should" only need to be set once at boot, so that * there is non-reboot way to recover if something goes wrong. */static intetherh_open(struct net_device *dev){ struct ei_device *ei_local = (struct ei_device *) dev->priv; if (request_irq(dev->irq, ei_interrupt, 0, dev->name, dev)) return -EAGAIN; /* * Make sure that we aren't going to change the * media type on the next reset - we are about to * do automedia manually now. */ ei_local->interface_num = 0; /* * If we are doing automedia detection, do it now. * This is more reliable than the 8390's detection. */ if (dev->flags & IFF_AUTOMEDIA) { dev->if_port = IF_PORT_10BASET; etherh_setif(dev); mdelay(1); if (!etherh_getifstat(dev)) { dev->if_port = IF_PORT_10BASE2; etherh_setif(dev); } } else etherh_setif(dev); etherh_reset(dev); ei_open(dev); return 0;}/* * The inverse routine to etherh_open(). */static intetherh_close(struct net_device *dev){ ei_close (dev); free_irq (dev->irq, dev); return 0;}static void etherh_irq_enable(ecard_t *ec, int irqnr){ unsigned int ctrl_addr = (unsigned int)ec->irq_data; outb(inb(ctrl_addr) | ETHERH_CP_IE, ctrl_addr);}static void etherh_irq_disable(ecard_t *ec, int irqnr){ unsigned int ctrl_addr = (unsigned int)ec->irq_data; outb(inb(ctrl_addr) & ~ETHERH_CP_IE, ctrl_addr);}static expansioncard_ops_t etherh_ops = { irqenable: etherh_irq_enable, irqdisable: etherh_irq_disable,};/* * Initialisation */static void __init etherh_banner(void){ static int version_printed; if (net_debug && version_printed++ == 0) printk(KERN_INFO "%s", version);}/* * Read the ethernet address string from the on board rom. * This is an ascii string... */static int __init etherh_addr(char *addr, struct expansion_card *ec){ struct in_chunk_dir cd; char *s; if (ecard_readchunk(&cd, ec, 0xf5, 0) && (s = strchr(cd.d.string, '('))) { int i; for (i = 0; i < 6; i++) { addr[i] = simple_strtoul(s + 1, &s, 0x10); if (*s != (i == 5? ')' : ':')) break; } if (i == 6) return 0; } return ENODEV;}/* * Create an ethernet address from the system serial number. */static int __init etherm_addr(char *addr){ unsigned int serial; if (system_serial_low == 0 && system_serial_high == 0) return ENODEV; serial = system_serial_low | system_serial_high; addr[0] = 0; addr[1] = 0; addr[2] = 0xa4; addr[3] = 0x10 + (serial >> 24); addr[4] = serial >> 16; addr[5] = serial >> 8; return 0;}static u32 etherh_regoffsets[16];static u32 etherm_regoffsets[16];static struct net_device * __init etherh_init_one(struct expansion_card *ec){ struct ei_device *ei_local; struct net_device *dev; const char *dev_type; int i, size; etherh_banner(); ecard_claim(ec); dev = init_etherdev(NULL, 0); if (!dev) goto out; SET_MODULE_OWNER(dev); dev->open = etherh_open; dev->stop = etherh_close; dev->set_config = etherh_set_config; dev->irq = ec->irq; dev->base_addr = ecard_address(ec, ECARD_MEMC, 0); dev->mem_end = ec->cid.product; ec->ops = ðerh_ops; switch (ec->cid.product) { case PROD_ANT_ETHERM: if (etherm_addr(dev->dev_addr)) goto free; dev->base_addr += ETHERM_NS8390; dev->mem_start = dev->base_addr + ETHERM_DATAPORT; ec->irq_data = (void *)(dev->base_addr + ETHERM_CTRLPORT); break; case PROD_I3_ETHERLAN500: if (etherh_addr(dev->dev_addr, ec)) goto free; dev->base_addr += ETHERH500_NS8390; dev->mem_start = dev->base_addr + ETHERH500_DATAPORT; dev->rmem_start = (unsigned long) ec->irq_data = (void *)ecard_address (ec, ECARD_IOC, ECARD_FAST) + ETHERH500_CTRLPORT; break; case PROD_I3_ETHERLAN600: case PROD_I3_ETHERLAN600A: if (etherh_addr(dev->dev_addr, ec)) goto free; dev->base_addr += ETHERH600_NS8390; dev->mem_start = dev->base_addr + ETHERH600_DATAPORT; ec->irq_data = (void *)(dev->base_addr + ETHERH600_CTRLPORT); break; default: printk(KERN_ERR "%s: unknown card type %x\n", dev->name, ec->cid.product); goto free; } size = 16; if (ec->cid.product == PROD_ANT_ETHERM) size <<= 3; if (!request_region(dev->base_addr, size, dev->name)) goto free; if (ethdev_init(dev)) goto release; /* * Unfortunately, ethdev_init eventually calls * ether_setup, which re-writes dev->flags. */ switch (ec->cid.product) { case PROD_ANT_ETHERM: dev_type = "ANT EtherM"; dev->if_port = IF_PORT_UNKNOWN; break; case PROD_I3_ETHERLAN500: dev_type = "i3 EtherH 500"; dev->if_port = IF_PORT_UNKNOWN; break; case PROD_I3_ETHERLAN600: dev_type = "i3 EtherH 600"; dev->flags |= IFF_PORTSEL | IFF_AUTOMEDIA; dev->if_port = IF_PORT_10BASET; break; case PROD_I3_ETHERLAN600A: dev_type = "i3 EtherH 600A"; dev->flags |= IFF_PORTSEL | IFF_AUTOMEDIA; dev->if_port = IF_PORT_10BASET; break; default: dev_type = "unknown"; break; } printk(KERN_INFO "%s: %s in slot %d, ", dev->name, dev_type, ec->slot_no); for (i = 0; i < 6; i++) printk("%2.2x%c", dev->dev_addr[i], i == 5 ? '\n' : ':'); ei_local = (struct ei_device *) dev->priv; if (ec->cid.product == PROD_ANT_ETHERM) { ei_local->tx_start_page = ETHERM_TX_START_PAGE; ei_local->stop_page = ETHERM_STOP_PAGE; ei_local->reg_offset = etherm_regoffsets; } else { ei_local->tx_start_page = ETHERH_TX_START_PAGE; ei_local->stop_page = ETHERH_STOP_PAGE; ei_local->reg_offset = etherh_regoffsets; } ei_local->name = dev->name; ei_local->word16 = 1; ei_local->rx_start_page = ei_local->tx_start_page + TX_PAGES; ei_local->reset_8390 = etherh_reset; ei_local->block_input = etherh_block_input; ei_local->block_output = etherh_block_output; ei_local->get_8390_hdr = etherh_get_header; ei_local->interface_num = 0; etherh_reset(dev); NS8390_init(dev, 0); return dev;release: release_region(dev->base_addr, 16);free: unregister_netdev(dev); kfree(dev);out: ecard_release(ec); return NULL;}#define MAX_ETHERH_CARDS 2static struct net_device *e_dev[MAX_ETHERH_CARDS];static struct expansion_card *e_card[MAX_ETHERH_CARDS];static int __init etherh_init(void){ int i, ret = -ENODEV; for (i = 0; i < 16; i++) { etherh_regoffsets[i] = i; etherm_regoffsets[i] = i << 3; } ecard_startfind(); for (i = 0; i < MAX_ECARDS; i++) { struct expansion_card *ec; struct net_device *dev; ec = ecard_find(0, etherh_cids); if (!ec) break; dev = etherh_init_one(ec); if (!dev) break; e_card[i] = ec; e_dev[i] = dev; ret = 0; } return ret;}static void __exit etherh_exit(void){ int i; for (i = 0; i < MAX_ETHERH_CARDS; i++) { if (e_dev[i]) { int size; unregister_netdev(e_dev[i]); size = 16; if (e_card[i]->cid.product == PROD_ANT_ETHERM) size <<= 3; release_region(e_dev[i]->base_addr, size); kfree(e_dev[i]); e_dev[i] = NULL; } if (e_card[i]) { e_card[i]->ops = NULL; ecard_release(e_card[i]); e_card[i] = NULL; } }}module_init(etherh_init);module_exit(etherh_exit);
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -