ne2.c
上传用户:jlfgdled
上传日期:2013-04-10
资源大小:33168k
文件大小:23k
源码类别:

Linux/Unix编程

开发平台:

Unix_Linux

  1. /* ne2.c: A NE/2 Ethernet Driver for Linux. */
  2. /*
  3.    Based on the NE2000 driver written by Donald Becker (1992-94).
  4.    modified by Wim Dumon (Apr 1996)
  5.    This software may be used and distributed according to the terms
  6.    of the GNU General Public License, incorporated herein by reference.
  7.    The author may be reached as wimpie@linux.cc.kuleuven.ac.be
  8.    Currently supported: NE/2
  9.    This patch was never tested on other MCA-ethernet adapters, but it
  10.    might work. Just give it a try and let me know if you have problems.
  11.    Also mail me if it really works, please!
  12.    Changelog:
  13.    Mon Feb  3 16:26:02 MET 1997
  14.    - adapted the driver to work with the 2.1.25 kernel
  15.    - multiple ne2 support (untested)
  16.    - module support (untested)
  17.    Fri Aug 28 00:18:36 CET 1998 (David Weinehall)
  18.    - fixed a few minor typos
  19.    - made the MODULE_PARM conditional (it only works with the v2.1.x kernels)
  20.    - fixed the module support (Now it's working...)
  21.    Mon Sep  7 19:01:44 CET 1998 (David Weinehall)
  22.    - added support for Arco Electronics AE/2-card (experimental)
  23.    Mon Sep 14 09:53:42 CET 1998 (David Weinehall)
  24.    - added support for Compex ENET-16MC/P (experimental) 
  25.    Tue Sep 15 16:21:12 CET 1998 (David Weinehall, Magnus Jonsson, Tomas Ogren)
  26.    - Miscellaneous bugfixes
  27.    Tue Sep 19 16:21:12 CET 1998 (Magnus Jonsson)
  28.    - Cleanup
  29.    Wed Sep 23 14:33:34 CET 1998 (David Weinehall)
  30.    - Restructuring and rewriting for v2.1.x compliance
  31.    Wed Oct 14 17:19:21 CET 1998 (David Weinehall)
  32.    - Added code that unregisters irq and proc-info
  33.    - Version# bump
  34.    Mon Nov 16 15:28:23 CET 1998 (Wim Dumon)
  35.    - pass 'dev' as last parameter of request_irq in stead of 'NULL'   
  36.    Wed Feb  7 21:24:00 CET 2001 (Alfred Arnold)
  37.    - added support for the D-Link DE-320CT
  38.    
  39.    *    WARNING
  40. -------
  41. This is alpha-test software.  It is not guaranteed to work. As a
  42. matter of fact, I'm quite sure there are *LOTS* of bugs in here. I
  43. would like to hear from you if you use this driver, even if it works.
  44. If it doesn't work, be sure to send me a mail with the problems !
  45. */
  46. static const char *version = "ne2.c:v0.91 Nov 16 1998 Wim Dumon <wimpie@kotnet.org>n";
  47. #include <linux/module.h>
  48. #include <linux/version.h>
  49. #include <linux/kernel.h>
  50. #include <linux/sched.h>
  51. #include <linux/types.h>
  52. #include <linux/fcntl.h>
  53. #include <linux/interrupt.h>
  54. #include <linux/ptrace.h>
  55. #include <linux/ioport.h>
  56. #include <linux/in.h>
  57. #include <linux/slab.h>
  58. #include <linux/string.h>
  59. #include <asm/system.h>
  60. #include <asm/bitops.h>
  61. #include <asm/io.h>
  62. #include <asm/dma.h>
  63. #include <linux/errno.h>
  64. #include <linux/init.h>
  65. #include <linux/mca.h>
  66. #include <linux/netdevice.h>
  67. #include <linux/etherdevice.h>
  68. #include <linux/skbuff.h>
  69. #include "8390.h"
  70. /* Some defines that people can play with if so inclined. */
  71. /* Do we perform extra sanity checks on stuff ? */
  72. /* #define NE_SANITY_CHECK */
  73. /* Do we implement the read before write bugfix ? */
  74. /* #define NE_RW_BUGFIX */
  75. /* Do we have a non std. amount of memory? (in units of 256 byte pages) */
  76. /* #define PACKETBUF_MEMSIZE 0x40 */
  77. /* ---- No user-serviceable parts below ---- */
  78. #define NE_BASE  (dev->base_addr)
  79. #define NE_CMD   0x00
  80. #define NE_DATAPORT 0x10 /* NatSemi-defined port window offset. */
  81. #define NE_RESET 0x20 /* Issue a read to reset, a write to clear. */
  82. #define NE_IO_EXTENT 0x30
  83. #define NE1SM_START_PG 0x20 /* First page of TX buffer */
  84. #define NE1SM_STOP_PG  0x40 /* Last page +1 of RX ring */
  85. #define NESM_START_PG 0x40 /* First page of TX buffer */
  86. #define NESM_STOP_PG 0x80 /* Last page +1 of RX ring */
  87. /* From the .ADF file: */
  88. static unsigned int addresses[7] __initdata =
  89. {0x1000, 0x2020, 0x8020, 0xa0a0, 0xb0b0, 0xc0c0, 0xc3d0};
  90. static int irqs[4] __initdata = {3, 4, 5, 9};
  91. /* From the D-Link ADF file: */
  92. static unsigned int dlink_addresses[4] __initdata =
  93.                 {0x300, 0x320, 0x340, 0x360};
  94. static int dlink_irqs[8] __initdata = {3, 4, 5, 9, 10, 11, 14, 15};
  95. struct ne2_adapters_t {
  96. unsigned int id;
  97. char *name;
  98. };
  99. static struct ne2_adapters_t ne2_adapters[] __initdata = {
  100. { 0x6354, "Arco Ethernet Adapter AE/2" },
  101. { 0x70DE, "Compex ENET-16 MC/P" },
  102. { 0x7154, "Novell Ethernet Adapter NE/2" },
  103.         { 0x56ea, "D-Link DE-320CT" },
  104. { 0x0000, NULL }
  105. };
  106. extern int netcard_probe(struct net_device *dev);
  107. static int ne2_probe1(struct net_device *dev, int slot);
  108. static int ne_open(struct net_device *dev);
  109. static int ne_close(struct net_device *dev);
  110. static void ne_reset_8390(struct net_device *dev);
  111. static void ne_get_8390_hdr(struct net_device *dev, struct e8390_pkt_hdr *hdr,
  112. int ring_page);
  113. static void ne_block_input(struct net_device *dev, int count,
  114. struct sk_buff *skb, int ring_offset);
  115. static void ne_block_output(struct net_device *dev, const int count,
  116. const unsigned char *buf, const int start_page);
  117. /*
  118.  * special code to read the DE-320's MAC address EEPROM.  In contrast to a 
  119.  * standard NE design, this is a serial EEPROM (93C46) that has to be read
  120.  * bit by bit.  The EEPROM cotrol port at base + 0x1e has the following 
  121.  * layout:
  122.  *
  123.  * Bit 0 = Data out (read from EEPROM)
  124.  * Bit 1 = Data in  (write to EEPROM)
  125.  * Bit 2 = Clock
  126.  * Bit 3 = Chip Select
  127.  * Bit 7 = ~50 kHz clock for defined delays
  128.  *
  129.  */
  130. static void __init dlink_put_eeprom(unsigned char value, unsigned int addr)
  131. {
  132. int z;
  133. unsigned char v1, v2;
  134. /* write the value to the NIC EEPROM register */
  135. outb(value, addr + 0x1e);
  136. /* now wait the clock line to toggle twice.  Effectively, we are
  137.    waiting (at least) for one clock cycle */
  138. for (z = 0; z < 2; z++) {
  139. do {
  140. v1 = inb(addr + 0x1e);
  141. v2 = inb(addr + 0x1e);
  142. }
  143. while (!((v1 ^ v2) & 0x80));
  144. }
  145. }
  146. static void __init dlink_send_eeprom_bit(unsigned int bit, unsigned int addr)
  147. {
  148. /* shift data bit into correct position */
  149. bit = bit << 1;
  150. /* write value, keep clock line high for two cycles */
  151. dlink_put_eeprom(0x09 | bit, addr);
  152. dlink_put_eeprom(0x0d | bit, addr);
  153. dlink_put_eeprom(0x0d | bit, addr);
  154. dlink_put_eeprom(0x09 | bit, addr);
  155. }
  156. static void __init dlink_send_eeprom_word(unsigned int value, unsigned int len, unsigned int addr)
  157. {
  158. int z;
  159. /* adjust bits so that they are left-aligned in a 16-bit-word */
  160. value = value << (16 - len);
  161. /* shift bits out to the EEPROM */
  162. for (z = 0; z < len; z++) {
  163. dlink_send_eeprom_bit((value & 0x8000) >> 15, addr);
  164. value = value << 1;
  165. }
  166. }
  167. static unsigned int __init dlink_get_eeprom(unsigned int eeaddr, unsigned int addr)
  168. {
  169. int z;
  170. unsigned int value = 0;
  171.  
  172. /* pull the CS line low for a moment.  This resets the EEPROM-
  173.    internal logic, and makes it ready for a new command. */
  174. dlink_put_eeprom(0x01, addr);
  175. dlink_put_eeprom(0x09, addr);
  176. /* send one start bit, read command (1 - 0), plus the address to
  177.            the EEPROM */
  178. dlink_send_eeprom_word(0x0180 | (eeaddr & 0x3f), 9, addr);
  179. /* get the data word.  We clock by sending 0s to the EEPROM, which
  180.    get ignored during the read process */
  181. for (z = 0; z < 16; z++) {
  182. dlink_send_eeprom_bit(0, addr);
  183. value = (value << 1) | (inb(addr + 0x1e) & 0x01);
  184. }
  185. return value;
  186. }
  187. /*
  188.  * Note that at boot, this probe only picks up one card at a time.
  189.  */
  190. int __init ne2_probe(struct net_device *dev)
  191. {
  192. static int current_mca_slot = -1;
  193. int i;
  194. int adapter_found = 0;
  195. SET_MODULE_OWNER(dev);
  196. /* Do not check any supplied i/o locations. 
  197.    POS registers usually don't fail :) */
  198. /* MCA cards have POS registers.  
  199.    Autodetecting MCA cards is extremely simple. 
  200.    Just search for the card. */
  201. for(i = 0; (ne2_adapters[i].name != NULL) && !adapter_found; i++) {
  202. current_mca_slot = 
  203. mca_find_unused_adapter(ne2_adapters[i].id, 0);
  204. if((current_mca_slot != MCA_NOTFOUND) && !adapter_found) {
  205. mca_set_adapter_name(current_mca_slot, 
  206. ne2_adapters[i].name);
  207. mca_mark_as_used(current_mca_slot);
  208. return ne2_probe1(dev, current_mca_slot);
  209. }
  210. }
  211. return -ENODEV;
  212. }
  213. static int ne2_procinfo(char *buf, int slot, struct net_device *dev)
  214. {
  215. int len=0;
  216. len += sprintf(buf+len, "The NE/2 Ethernet Adaptern" );
  217. len += sprintf(buf+len, "Driver written by Wim Dumon ");
  218. len += sprintf(buf+len, "<wimpie@kotnet.org>n"); 
  219. len += sprintf(buf+len, "Modified by ");
  220. len += sprintf(buf+len, "David Weinehall <tao@acc.umu.se>n");
  221. len += sprintf(buf+len, "and by Magnus Jonsson <bigfoot@acc.umu.se>n");
  222. len += sprintf(buf+len, "Based on the original NE2000 driversn" );
  223. len += sprintf(buf+len, "Base IO: %#xn", (unsigned int)dev->base_addr);
  224. len += sprintf(buf+len, "IRQ    : %dn", dev->irq);
  225. #define HW_ADDR(i) dev->dev_addr[i]
  226. len += sprintf(buf+len, "HW addr : %x:%x:%x:%x:%x:%xn", 
  227. HW_ADDR(0), HW_ADDR(1), HW_ADDR(2), 
  228. HW_ADDR(3), HW_ADDR(4), HW_ADDR(5) );
  229. #undef HW_ADDR
  230. return len;
  231. }
  232. static int __init ne2_probe1(struct net_device *dev, int slot)
  233. {
  234. int i, base_addr, irq, retval;
  235. unsigned char POS;
  236. unsigned char SA_prom[32];
  237. const char *name = "NE/2";
  238. int start_page, stop_page;
  239. static unsigned version_printed;
  240. if (ei_debug && version_printed++ == 0)
  241. printk(version);
  242. printk("NE/2 ethercard found in slot %d:", slot);
  243. /* Read base IO and IRQ from the POS-registers */
  244. POS = mca_read_stored_pos(slot, 2);
  245. if(!(POS % 2)) {
  246. printk(" disabled.n");
  247. return -ENODEV;
  248. }
  249. /* handle different POS register structure for D-Link card */
  250. if (mca_read_stored_pos(slot, 0) == 0xea) {
  251. base_addr = dlink_addresses[(POS >> 5) & 0x03];
  252. irq = dlink_irqs[(POS >> 2) & 0x07];
  253. }
  254.         else {
  255. i = (POS & 0xE)>>1;
  256. /* printk("Halleluja sdog, als er na de pijl een 1 staat is 1 - 1 == 0"
  257.     " en zou het moeten werken -> %dn", i);
  258.     The above line was for remote testing, thanx to sdog ... */
  259. base_addr = addresses[i - 1];
  260. irq = irqs[(POS & 0x60)>>5];
  261. }
  262. if (!request_region(base_addr, NE_IO_EXTENT, dev->name))
  263. return -EBUSY;
  264. #ifdef DEBUG
  265. printk("POS info : pos 2 = %#x ; base = %#x ; irq = %ldn", POS,
  266. base_addr, irq);
  267. #endif
  268. #ifndef CRYNWR_WAY
  269. /* Reset the card the way they do it in the Crynwr packet driver */
  270. for (i=0; i<8; i++) 
  271. outb(0x0, base_addr + NE_RESET);
  272. inb(base_addr + NE_RESET);
  273. outb(0x21, base_addr + NE_CMD);
  274. if (inb(base_addr + NE_CMD) != 0x21) {
  275. printk("NE/2 adapter not respondingn");
  276. retval = -ENODEV;
  277. goto out;
  278. }
  279. /* In the crynwr sources they do a RAM-test here. I skip it. I suppose
  280.    my RAM is okay.  Suppose your memory is broken.  Then this test
  281.    should fail and you won't be able to use your card.  But if I do not
  282.    test, you won't be able to use your card, neither.  So this test
  283.    won't help you. */
  284. #else  /* _I_ never tested it this way .. Go ahead and try ...*/
  285. /* Reset card. Who knows what dain-bramaged state it was left in. */
  286. unsigned long reset_start_time = jiffies;
  287. /* DON'T change these to inb_p/outb_p or reset will fail on 
  288.    clones.. */
  289. outb(inb(base_addr + NE_RESET), base_addr + NE_RESET);
  290. while ((inb_p(base_addr + EN0_ISR) & ENISR_RESET) == 0)
  291. if (jiffies - reset_start_time > 2*HZ/100) {
  292. printk(" not found (no reset ack).n");
  293. retval = -ENODEV;
  294. goto out;
  295. }
  296. outb_p(0xff, base_addr + EN0_ISR);         /* Ack all intr. */
  297. }
  298. #endif
  299. /* Read the 16 bytes of station address PROM.
  300.    We must first initialize registers, similar to 
  301.    NS8390_init(eifdev, 0).
  302.    We can't reliably read the SAPROM address without this.
  303.    (I learned the hard way!). */
  304. {
  305. struct { 
  306. unsigned char value, offset; 
  307. } program_seq[] = {
  308. /* Select page 0 */
  309. {E8390_NODMA+E8390_PAGE0+E8390_STOP, E8390_CMD}, 
  310. {0x49, EN0_DCFG},  /* Set WORD-wide (0x49) access. */
  311. {0x00, EN0_RCNTLO},  /* Clear the count regs. */
  312. {0x00, EN0_RCNTHI},
  313. {0x00, EN0_IMR},  /* Mask completion irq. */
  314. {0xFF, EN0_ISR},
  315. {E8390_RXOFF, EN0_RXCR},  /* 0x20  Set to monitor */
  316. {E8390_TXOFF, EN0_TXCR},  /* 0x02  and loopback mode. */
  317. {32, EN0_RCNTLO},
  318. {0x00, EN0_RCNTHI},
  319. {0x00, EN0_RSARLO},  /* DMA starting at 0x0000. */
  320. {0x00, EN0_RSARHI},
  321. {E8390_RREAD+E8390_START, E8390_CMD},
  322. };
  323. for (i = 0; i < sizeof(program_seq)/sizeof(program_seq[0]); i++)
  324. outb_p(program_seq[i].value, base_addr + 
  325. program_seq[i].offset);
  326. }
  327. for(i = 0; i < 6 /*sizeof(SA_prom)*/; i+=1) {
  328. SA_prom[i] = inb(base_addr + NE_DATAPORT);
  329. }
  330. /* I don't know whether the previous sequence includes the general
  331.            board reset procedure, so better don't omit it and just overwrite
  332.            the garbage read from a DE-320 with correct stuff. */
  333. if (mca_read_stored_pos(slot, 0) == 0xea) {
  334. unsigned int v;
  335. for (i = 0; i < 3; i++) {
  336.   v = dlink_get_eeprom(i, base_addr);
  337. SA_prom[(i << 1)    ] = v & 0xff;
  338. SA_prom[(i << 1) + 1] = (v >> 8) & 0xff;
  339. }
  340. }
  341. start_page = NESM_START_PG;
  342. stop_page = NESM_STOP_PG;
  343. dev->irq=irq;
  344. /* Snarf the interrupt now.  There's no point in waiting since we cannot
  345.    share and the board will usually be enabled. */
  346. retval = request_irq(dev->irq, ei_interrupt, 0, dev->name, dev);
  347. if (retval) {
  348. printk (" unable to get IRQ %d (irqval=%d).n", 
  349. dev->irq, retval);
  350. goto out;
  351. }
  352. dev->base_addr = base_addr;
  353. /* Allocate dev->priv and fill in 8390 specific dev fields. */
  354. if (ethdev_init(dev)) {
  355. printk (" unable to get memory for dev->priv.n");
  356. free_irq(dev->irq, dev);
  357. retval = -ENOMEM;
  358. goto out;
  359. }
  360. for(i = 0; i < ETHER_ADDR_LEN; i++) {
  361. printk(" %2.2x", SA_prom[i]);
  362. dev->dev_addr[i] = SA_prom[i];
  363. }
  364. printk("n%s: %s found at %#x, using IRQ %d.n",
  365. dev->name, name, base_addr, dev->irq);
  366. mca_set_adapter_procfn(slot, (MCA_ProcFn) ne2_procinfo, dev);
  367. ei_status.name = name;
  368. ei_status.tx_start_page = start_page;
  369. ei_status.stop_page = stop_page;
  370. ei_status.word16 = (2 == 2);
  371. ei_status.rx_start_page = start_page + TX_PAGES;
  372. #ifdef PACKETBUF_MEMSIZE
  373. /* Allow the packet buffer size to be overridden by know-it-alls. */
  374. ei_status.stop_page = ei_status.tx_start_page + PACKETBUF_MEMSIZE;
  375. #endif
  376. ei_status.reset_8390 = &ne_reset_8390;
  377. ei_status.block_input = &ne_block_input;
  378. ei_status.block_output = &ne_block_output;
  379. ei_status.get_8390_hdr = &ne_get_8390_hdr;
  380. ei_status.priv = slot;
  381. dev->open = &ne_open;
  382. dev->stop = &ne_close;
  383. NS8390_init(dev, 0);
  384. return 0;
  385. out:
  386. release_region(base_addr, NE_IO_EXTENT);
  387. return retval;
  388. }
  389. static int ne_open(struct net_device *dev)
  390. {
  391. ei_open(dev);
  392. return 0;
  393. }
  394. static int ne_close(struct net_device *dev)
  395. {
  396. if (ei_debug > 1)
  397. printk("%s: Shutting down ethercard.n", dev->name);
  398. ei_close(dev);
  399. return 0;
  400. }
  401. /* Hard reset the card.  This used to pause for the same period that a
  402.    8390 reset command required, but that shouldn't be necessary. */
  403. static void ne_reset_8390(struct net_device *dev)
  404. {
  405. unsigned long reset_start_time = jiffies;
  406. if (ei_debug > 1) 
  407. printk("resetting the 8390 t=%ld...", jiffies);
  408. /* DON'T change these to inb_p/outb_p or reset will fail on clones. */
  409. outb(inb(NE_BASE + NE_RESET), NE_BASE + NE_RESET);
  410. ei_status.txing = 0;
  411. ei_status.dmaing = 0;
  412. /* This check _should_not_ be necessary, omit eventually. */
  413. while ((inb_p(NE_BASE+EN0_ISR) & ENISR_RESET) == 0)
  414. if (jiffies - reset_start_time > 2*HZ/100) {
  415. printk("%s: ne_reset_8390() did not complete.n", 
  416. dev->name);
  417. break;
  418. }
  419. outb_p(ENISR_RESET, NE_BASE + EN0_ISR); /* Ack intr. */
  420. }
  421. /* Grab the 8390 specific header. Similar to the block_input routine, but
  422.    we don't need to be concerned with ring wrap as the header will be at
  423.    the start of a page, so we optimize accordingly. */
  424. static void ne_get_8390_hdr(struct net_device *dev, struct e8390_pkt_hdr *hdr, 
  425. int ring_page)
  426. {
  427. int nic_base = dev->base_addr;
  428. /* This *shouldn't* happen. 
  429.    If it does, it's the last thing you'll see */
  430. if (ei_status.dmaing) {
  431. printk("%s: DMAing conflict in ne_get_8390_hdr "
  432. "[DMAstat:%d][irqlock:%d].n",
  433. dev->name, ei_status.dmaing, ei_status.irqlock);
  434. return;
  435. }
  436. ei_status.dmaing |= 0x01;
  437. outb_p(E8390_NODMA+E8390_PAGE0+E8390_START, nic_base+ NE_CMD);
  438. outb_p(sizeof(struct e8390_pkt_hdr), nic_base + EN0_RCNTLO);
  439. outb_p(0, nic_base + EN0_RCNTHI);
  440. outb_p(0, nic_base + EN0_RSARLO); /* On page boundary */
  441. outb_p(ring_page, nic_base + EN0_RSARHI);
  442. outb_p(E8390_RREAD+E8390_START, nic_base + NE_CMD);
  443. if (ei_status.word16)
  444. insw(NE_BASE + NE_DATAPORT, hdr, 
  445. sizeof(struct e8390_pkt_hdr)>>1);
  446. else
  447. insb(NE_BASE + NE_DATAPORT, hdr, 
  448. sizeof(struct e8390_pkt_hdr));
  449. outb_p(ENISR_RDC, nic_base + EN0_ISR); /* Ack intr. */
  450. ei_status.dmaing &= ~0x01;
  451. }
  452. /* Block input and output, similar to the Crynwr packet driver.  If you
  453.    are porting to a new ethercard, look at the packet driver source for
  454.    hints. The NEx000 doesn't share the on-board packet memory -- you have
  455.    to put the packet out through the "remote DMA" dataport using outb. */
  456. static void ne_block_input(struct net_device *dev, int count, struct sk_buff *skb, 
  457. int ring_offset)
  458. {
  459. #ifdef NE_SANITY_CHECK
  460. int xfer_count = count;
  461. #endif
  462. int nic_base = dev->base_addr;
  463. char *buf = skb->data;
  464. /* This *shouldn't* happen. 
  465.    If it does, it's the last thing you'll see */
  466. if (ei_status.dmaing) {
  467. printk("%s: DMAing conflict in ne_block_input "
  468. "[DMAstat:%d][irqlock:%d].n",
  469. dev->name, ei_status.dmaing, ei_status.irqlock);
  470. return;
  471. }
  472. ei_status.dmaing |= 0x01;
  473. outb_p(E8390_NODMA+E8390_PAGE0+E8390_START, nic_base+ NE_CMD);
  474. outb_p(count & 0xff, nic_base + EN0_RCNTLO);
  475. outb_p(count >> 8, nic_base + EN0_RCNTHI);
  476. outb_p(ring_offset & 0xff, nic_base + EN0_RSARLO);
  477. outb_p(ring_offset >> 8, nic_base + EN0_RSARHI);
  478. outb_p(E8390_RREAD+E8390_START, nic_base + NE_CMD);
  479. if (ei_status.word16) {
  480. insw(NE_BASE + NE_DATAPORT,buf,count>>1);
  481. if (count & 0x01) {
  482. buf[count-1] = inb(NE_BASE + NE_DATAPORT);
  483. #ifdef NE_SANITY_CHECK
  484. xfer_count++;
  485. #endif
  486. }
  487. } else {
  488. insb(NE_BASE + NE_DATAPORT, buf, count);
  489. }
  490. #ifdef NE_SANITY_CHECK
  491. /* This was for the ALPHA version only, but enough people have
  492.    been encountering problems so it is still here.  If you see
  493.    this message you either 1) have a slightly incompatible clone
  494.    or 2) have noise/speed problems with your bus. */
  495. if (ei_debug > 1) { /* DMA termination address check... */
  496. int addr, tries = 20;
  497. do {
  498. /* DON'T check for 'inb_p(EN0_ISR) & ENISR_RDC' here
  499.    -- it's broken for Rx on some cards! */
  500. int high = inb_p(nic_base + EN0_RSARHI);
  501. int low = inb_p(nic_base + EN0_RSARLO);
  502. addr = (high << 8) + low;
  503. if (((ring_offset + xfer_count) & 0xff) == low)
  504. break;
  505. } while (--tries > 0);
  506. if (tries <= 0)
  507. printk("%s: RX transfer address mismatch,"
  508. "%#4.4x (expected) vs. %#4.4x (actual).n",
  509. dev->name, ring_offset + xfer_count, addr);
  510. }
  511. #endif
  512. outb_p(ENISR_RDC, nic_base + EN0_ISR); /* Ack intr. */
  513. ei_status.dmaing &= ~0x01;
  514. }
  515. static void ne_block_output(struct net_device *dev, int count,
  516. const unsigned char *buf, const int start_page)
  517. {
  518. int nic_base = NE_BASE;
  519. unsigned long dma_start;
  520. #ifdef NE_SANITY_CHECK
  521. int retries = 0;
  522. #endif
  523. /* Round the count up for word writes. Do we need to do this?
  524.    What effect will an odd byte count have on the 8390?
  525.    I should check someday. */
  526. if (ei_status.word16 && (count & 0x01))
  527. count++;
  528. /* This *shouldn't* happen. 
  529.    If it does, it's the last thing you'll see */
  530. if (ei_status.dmaing) {
  531. printk("%s: DMAing conflict in ne_block_output."
  532. "[DMAstat:%d][irqlock:%d]n",
  533. dev->name, ei_status.dmaing, ei_status.irqlock);
  534. return;
  535. }
  536. ei_status.dmaing |= 0x01;
  537. /* We should already be in page 0, but to be safe... */
  538. outb_p(E8390_PAGE0+E8390_START+E8390_NODMA, nic_base + NE_CMD);
  539. #ifdef NE_SANITY_CHECK
  540. retry:
  541. #endif
  542. #ifdef NE8390_RW_BUGFIX
  543. /* Handle the read-before-write bug the same way as the
  544.    Crynwr packet driver -- the NatSemi method doesn't work.
  545.    Actually this doesn't always work either, but if you have
  546.    problems with your NEx000 this is better than nothing! */
  547. outb_p(0x42, nic_base + EN0_RCNTLO);
  548. outb_p(0x00, nic_base + EN0_RCNTHI);
  549. outb_p(0x42, nic_base + EN0_RSARLO);
  550. outb_p(0x00, nic_base + EN0_RSARHI);
  551. outb_p(E8390_RREAD+E8390_START, nic_base + NE_CMD);
  552. /* Make certain that the dummy read has occurred. */
  553. SLOW_DOWN_IO;
  554. SLOW_DOWN_IO;
  555. SLOW_DOWN_IO;
  556. #endif
  557. outb_p(ENISR_RDC, nic_base + EN0_ISR);
  558. /* Now the normal output. */
  559. outb_p(count & 0xff, nic_base + EN0_RCNTLO);
  560. outb_p(count >> 8,   nic_base + EN0_RCNTHI);
  561. outb_p(0x00, nic_base + EN0_RSARLO);
  562. outb_p(start_page, nic_base + EN0_RSARHI);
  563. outb_p(E8390_RWRITE+E8390_START, nic_base + NE_CMD);
  564. if (ei_status.word16) {
  565. outsw(NE_BASE + NE_DATAPORT, buf, count>>1);
  566. } else {
  567. outsb(NE_BASE + NE_DATAPORT, buf, count);
  568. }
  569. dma_start = jiffies;
  570. #ifdef NE_SANITY_CHECK
  571. /* This was for the ALPHA version only, but enough people have
  572.    been encountering problems so it is still here. */
  573. if (ei_debug > 1) { /* DMA termination address check... */
  574. int addr, tries = 20;
  575. do {
  576. int high = inb_p(nic_base + EN0_RSARHI);
  577. int low = inb_p(nic_base + EN0_RSARLO);
  578. addr = (high << 8) + low;
  579. if ((start_page << 8) + count == addr)
  580. break;
  581. } while (--tries > 0);
  582. if (tries <= 0) {
  583. printk("%s: Tx packet transfer address mismatch,"
  584. "%#4.4x (expected) vs. %#4.4x (actual).n",
  585. dev->name, (start_page << 8) + count, addr);
  586. if (retries++ == 0)
  587. goto retry;
  588. }
  589. }
  590. #endif
  591. while ((inb_p(nic_base + EN0_ISR) & ENISR_RDC) == 0)
  592. if (jiffies - dma_start > 2*HZ/100) { /* 20ms */
  593. printk("%s: timeout waiting for Tx RDC.n", dev->name);
  594. ne_reset_8390(dev);
  595. NS8390_init(dev,1);
  596. break;
  597. }
  598. outb_p(ENISR_RDC, nic_base + EN0_ISR); /* Ack intr. */
  599. ei_status.dmaing &= ~0x01;
  600. return;
  601. }
  602. #ifdef MODULE
  603. #define MAX_NE_CARDS 4 /* Max number of NE cards per module */
  604. static struct net_device dev_ne[MAX_NE_CARDS];
  605. static int io[MAX_NE_CARDS];
  606. static int irq[MAX_NE_CARDS];
  607. static int bad[MAX_NE_CARDS]; /* 0xbad = bad sig or no reset ack */
  608. MODULE_LICENSE("GPL");
  609. #ifdef MODULE_PARM
  610. MODULE_PARM(io, "1-" __MODULE_STRING(MAX_NE_CARDS) "i");
  611. MODULE_PARM(irq, "1-" __MODULE_STRING(MAX_NE_CARDS) "i");
  612. MODULE_PARM(bad, "1-" __MODULE_STRING(MAX_NE_CARDS) "i");
  613. MODULE_PARM_DESC(io, "(ignored)");
  614. MODULE_PARM_DESC(irq, "(ignored)");
  615. MODULE_PARM_DESC(bad, "(ignored)");
  616. #endif
  617. /* Module code fixed by David Weinehall */
  618. int init_module(void)
  619. {
  620. int this_dev, found = 0;
  621. for (this_dev = 0; this_dev < MAX_NE_CARDS; this_dev++) {
  622. struct net_device *dev = &dev_ne[this_dev];
  623. dev->irq = irq[this_dev];
  624. dev->mem_end = bad[this_dev];
  625. dev->base_addr = io[this_dev];
  626. dev->init = ne2_probe;
  627. if (register_netdev(dev) != 0) {
  628. if (found != 0) return 0;   /* Got at least one. */
  629. printk(KERN_WARNING "ne2.c: No NE/2 card found.n");
  630. return -ENXIO;
  631. }
  632. found++;
  633. }
  634. return 0;
  635. }
  636. void cleanup_module(void)
  637. {
  638. int this_dev;
  639. for (this_dev = 0; this_dev < MAX_NE_CARDS; this_dev++) {
  640. struct net_device *dev = &dev_ne[this_dev];
  641. if (dev->priv != NULL) {
  642. mca_mark_as_unused(ei_status.priv);
  643. mca_set_adapter_procfn( ei_status.priv, NULL, NULL);
  644. kfree(dev->priv);
  645. free_irq(dev->irq, dev);
  646. release_region(dev->base_addr, NE_IO_EXTENT);
  647. unregister_netdev(dev);
  648. }
  649. }
  650. }
  651. #endif /* MODULE */
  652. /*
  653.  * Local variables:
  654.  *  compile-command: "gcc -DKERNEL -Wall -O6 -fomit-frame-pointer -I/usr/src/linux/net/tcp -c ne2.c"
  655.  *  version-control: t
  656.  *  kept-new-versions: 5
  657.  * End:
  658.  */