ne.c 26 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883
  1. /* ne.c: A general non-shared-memory NS8390 ethernet driver for linux. */
  2. /*
  3. Written 1992-94 by Donald Becker.
  4. Copyright 1993 United States Government as represented by the
  5. Director, National Security Agency.
  6. This software may be used and distributed according to the terms
  7. of the GNU General Public License, incorporated herein by reference.
  8. The author may be reached as becker@scyld.com, or C/O
  9. Scyld Computing Corporation, 410 Severn Ave., Suite 210, Annapolis MD 21403
  10. This driver should work with many programmed-I/O 8390-based ethernet
  11. boards. Currently it supports the NE1000, NE2000, many clones,
  12. and some Cabletron products.
  13. Changelog:
  14. Paul Gortmaker : use ENISR_RDC to monitor Tx PIO uploads, made
  15. sanity checks and bad clone support optional.
  16. Paul Gortmaker : new reset code, reset card after probe at boot.
  17. Paul Gortmaker : multiple card support for module users.
  18. Paul Gortmaker : Support for PCI ne2k clones, similar to lance.c
  19. Paul Gortmaker : Allow users with bad cards to avoid full probe.
  20. Paul Gortmaker : PCI probe changes, more PCI cards supported.
  21. rjohnson@analogic.com : Changed init order so an interrupt will only
  22. occur after memory is allocated for dev->priv. Deallocated memory
  23. last in cleanup_modue()
  24. Richard Guenther : Added support for ISAPnP cards
  25. Paul Gortmaker : Discontinued PCI support - use ne2k-pci.c instead.
  26. Hayato Fujiwara : Add m32r support.
  27. */
  28. /* Routines for the NatSemi-based designs (NE[12]000). */
  29. static const char version1[] =
  30. "ne.c:v1.10 9/23/94 Donald Becker (becker@scyld.com)\n";
  31. static const char version2[] =
  32. "Last modified Nov 1, 2000 by Paul Gortmaker\n";
  33. #include <linux/module.h>
  34. #include <linux/kernel.h>
  35. #include <linux/errno.h>
  36. #include <linux/isapnp.h>
  37. #include <linux/init.h>
  38. #include <linux/interrupt.h>
  39. #include <linux/delay.h>
  40. #include <linux/netdevice.h>
  41. #include <linux/etherdevice.h>
  42. #include <linux/jiffies.h>
  43. #include <asm/system.h>
  44. #include <asm/io.h>
  45. #if defined(CONFIG_TOSHIBA_RBTX4927) || defined(CONFIG_TOSHIBA_RBTX4938)
  46. #include <asm/tx4938/rbtx4938.h>
  47. #endif
  48. #include "8390.h"
  49. #define DRV_NAME "ne"
  50. /* Some defines that people can play with if so inclined. */
  51. /* Do we support clones that don't adhere to 14,15 of the SAprom ? */
  52. #define SUPPORT_NE_BAD_CLONES
  53. /* Do we perform extra sanity checks on stuff ? */
  54. /* #define NE_SANITY_CHECK */
  55. /* Do we implement the read before write bugfix ? */
  56. /* #define NE_RW_BUGFIX */
  57. /* Do we have a non std. amount of memory? (in units of 256 byte pages) */
  58. /* #define PACKETBUF_MEMSIZE 0x40 */
  59. /* A zero-terminated list of I/O addresses to be probed at boot. */
  60. #ifndef MODULE
  61. static unsigned int netcard_portlist[] __initdata = {
  62. 0x300, 0x280, 0x320, 0x340, 0x360, 0x380, 0
  63. };
  64. #endif
  65. static struct isapnp_device_id isapnp_clone_list[] __initdata = {
  66. { ISAPNP_CARD_ID('A','X','E',0x2011),
  67. ISAPNP_VENDOR('A','X','E'), ISAPNP_FUNCTION(0x2011),
  68. (long) "NetGear EA201" },
  69. { ISAPNP_ANY_ID, ISAPNP_ANY_ID,
  70. ISAPNP_VENDOR('E','D','I'), ISAPNP_FUNCTION(0x0216),
  71. (long) "NN NE2000" },
  72. { ISAPNP_ANY_ID, ISAPNP_ANY_ID,
  73. ISAPNP_VENDOR('P','N','P'), ISAPNP_FUNCTION(0x80d6),
  74. (long) "Generic PNP" },
  75. { } /* terminate list */
  76. };
  77. MODULE_DEVICE_TABLE(isapnp, isapnp_clone_list);
  78. #ifdef SUPPORT_NE_BAD_CLONES
  79. /* A list of bad clones that we none-the-less recognize. */
  80. static struct { const char *name8, *name16; unsigned char SAprefix[4];}
  81. bad_clone_list[] __initdata = {
  82. {"DE100", "DE200", {0x00, 0xDE, 0x01,}},
  83. {"DE120", "DE220", {0x00, 0x80, 0xc8,}},
  84. {"DFI1000", "DFI2000", {'D', 'F', 'I',}}, /* Original, eh? */
  85. {"EtherNext UTP8", "EtherNext UTP16", {0x00, 0x00, 0x79}},
  86. {"NE1000","NE2000-invalid", {0x00, 0x00, 0xd8}}, /* Ancient real NE1000. */
  87. {"NN1000", "NN2000", {0x08, 0x03, 0x08}}, /* Outlaw no-name clone. */
  88. {"4-DIM8","4-DIM16", {0x00,0x00,0x4d,}}, /* Outlaw 4-Dimension cards. */
  89. {"Con-Intl_8", "Con-Intl_16", {0x00, 0x00, 0x24}}, /* Connect Int'nl */
  90. {"ET-100","ET-200", {0x00, 0x45, 0x54}}, /* YANG and YA clone */
  91. {"COMPEX","COMPEX16",{0x00,0x80,0x48}}, /* Broken ISA Compex cards */
  92. {"E-LAN100", "E-LAN200", {0x00, 0x00, 0x5d}}, /* Broken ne1000 clones */
  93. {"PCM-4823", "PCM-4823", {0x00, 0xc0, 0x6c}}, /* Broken Advantech MoBo */
  94. {"REALTEK", "RTL8019", {0x00, 0x00, 0xe8}}, /* no-name with Realtek chip */
  95. #if defined(CONFIG_TOSHIBA_RBTX4927) || defined(CONFIG_TOSHIBA_RBTX4938)
  96. {"RBHMA4X00-RTL8019", "RBHMA4X00/RTL8019", {0x00, 0x60, 0x0a}}, /* Toshiba built-in */
  97. #endif
  98. {"LCS-8834", "LCS-8836", {0x04, 0x04, 0x37}}, /* ShinyNet (SET) */
  99. {NULL,}
  100. };
  101. #endif
  102. /* ---- No user-serviceable parts below ---- */
  103. #define NE_BASE (dev->base_addr)
  104. #define NE_CMD 0x00
  105. #define NE_DATAPORT 0x10 /* NatSemi-defined port window offset. */
  106. #define NE_RESET 0x1f /* Issue a read to reset, a write to clear. */
  107. #define NE_IO_EXTENT 0x20
  108. #define NE1SM_START_PG 0x20 /* First page of TX buffer */
  109. #define NE1SM_STOP_PG 0x40 /* Last page +1 of RX ring */
  110. #define NESM_START_PG 0x40 /* First page of TX buffer */
  111. #define NESM_STOP_PG 0x80 /* Last page +1 of RX ring */
  112. #if defined(CONFIG_PLAT_MAPPI)
  113. # define DCR_VAL 0x4b
  114. #elif defined(CONFIG_PLAT_OAKS32R) || \
  115. defined(CONFIG_TOSHIBA_RBTX4927) || defined(CONFIG_TOSHIBA_RBTX4938)
  116. # define DCR_VAL 0x48 /* 8-bit mode */
  117. #else
  118. # define DCR_VAL 0x49
  119. #endif
  120. static int ne_probe1(struct net_device *dev, int ioaddr);
  121. static int ne_probe_isapnp(struct net_device *dev);
  122. static int ne_open(struct net_device *dev);
  123. static int ne_close(struct net_device *dev);
  124. static void ne_reset_8390(struct net_device *dev);
  125. static void ne_get_8390_hdr(struct net_device *dev, struct e8390_pkt_hdr *hdr,
  126. int ring_page);
  127. static void ne_block_input(struct net_device *dev, int count,
  128. struct sk_buff *skb, int ring_offset);
  129. static void ne_block_output(struct net_device *dev, const int count,
  130. const unsigned char *buf, const int start_page);
  131. /* Probe for various non-shared-memory ethercards.
  132. NEx000-clone boards have a Station Address PROM (SAPROM) in the packet
  133. buffer memory space. NE2000 clones have 0x57,0x57 in bytes 0x0e,0x0f of
  134. the SAPROM, while other supposed NE2000 clones must be detected by their
  135. SA prefix.
  136. Reading the SAPROM from a word-wide card with the 8390 set in byte-wide
  137. mode results in doubled values, which can be detected and compensated for.
  138. The probe is also responsible for initializing the card and filling
  139. in the 'dev' and 'ei_status' structures.
  140. We use the minimum memory size for some ethercard product lines, iff we can't
  141. distinguish models. You can increase the packet buffer size by setting
  142. PACKETBUF_MEMSIZE. Reported Cabletron packet buffer locations are:
  143. E1010 starts at 0x100 and ends at 0x2000.
  144. E1010-x starts at 0x100 and ends at 0x8000. ("-x" means "more memory")
  145. E2010 starts at 0x100 and ends at 0x4000.
  146. E2010-x starts at 0x100 and ends at 0xffff. */
  147. static int __init do_ne_probe(struct net_device *dev)
  148. {
  149. unsigned int base_addr = dev->base_addr;
  150. #ifndef MODULE
  151. int orig_irq = dev->irq;
  152. #endif
  153. SET_MODULE_OWNER(dev);
  154. /* First check any supplied i/o locations. User knows best. <cough> */
  155. if (base_addr > 0x1ff) /* Check a single specified location. */
  156. return ne_probe1(dev, base_addr);
  157. else if (base_addr != 0) /* Don't probe at all. */
  158. return -ENXIO;
  159. /* Then look for any installed ISAPnP clones */
  160. if (isapnp_present() && (ne_probe_isapnp(dev) == 0))
  161. return 0;
  162. #ifndef MODULE
  163. /* Last resort. The semi-risky ISA auto-probe. */
  164. for (base_addr = 0; netcard_portlist[base_addr] != 0; base_addr++) {
  165. int ioaddr = netcard_portlist[base_addr];
  166. dev->irq = orig_irq;
  167. if (ne_probe1(dev, ioaddr) == 0)
  168. return 0;
  169. }
  170. #endif
  171. return -ENODEV;
  172. }
  173. #ifndef MODULE
  174. struct net_device * __init ne_probe(int unit)
  175. {
  176. struct net_device *dev = alloc_ei_netdev();
  177. int err;
  178. if (!dev)
  179. return ERR_PTR(-ENOMEM);
  180. sprintf(dev->name, "eth%d", unit);
  181. netdev_boot_setup_check(dev);
  182. #ifdef CONFIG_TOSHIBA_RBTX4938
  183. dev->base_addr = RBTX4938_RTL_8019_BASE;
  184. dev->irq = RBTX4938_RTL_8019_IRQ;
  185. #endif
  186. err = do_ne_probe(dev);
  187. if (err)
  188. goto out;
  189. return dev;
  190. out:
  191. free_netdev(dev);
  192. return ERR_PTR(err);
  193. }
  194. #endif
  195. static int __init ne_probe_isapnp(struct net_device *dev)
  196. {
  197. int i;
  198. for (i = 0; isapnp_clone_list[i].vendor != 0; i++) {
  199. struct pnp_dev *idev = NULL;
  200. while ((idev = pnp_find_dev(NULL,
  201. isapnp_clone_list[i].vendor,
  202. isapnp_clone_list[i].function,
  203. idev))) {
  204. /* Avoid already found cards from previous calls */
  205. if (pnp_device_attach(idev) < 0)
  206. continue;
  207. if (pnp_activate_dev(idev) < 0) {
  208. pnp_device_detach(idev);
  209. continue;
  210. }
  211. /* if no io and irq, search for next */
  212. if (!pnp_port_valid(idev, 0) || !pnp_irq_valid(idev, 0)) {
  213. pnp_device_detach(idev);
  214. continue;
  215. }
  216. /* found it */
  217. dev->base_addr = pnp_port_start(idev, 0);
  218. dev->irq = pnp_irq(idev, 0);
  219. printk(KERN_INFO "ne.c: ISAPnP reports %s at i/o %#lx, irq %d.\n",
  220. (char *) isapnp_clone_list[i].driver_data,
  221. dev->base_addr, dev->irq);
  222. if (ne_probe1(dev, dev->base_addr) != 0) { /* Shouldn't happen. */
  223. printk(KERN_ERR "ne.c: Probe of ISAPnP card at %#lx failed.\n", dev->base_addr);
  224. pnp_device_detach(idev);
  225. return -ENXIO;
  226. }
  227. ei_status.priv = (unsigned long)idev;
  228. break;
  229. }
  230. if (!idev)
  231. continue;
  232. return 0;
  233. }
  234. return -ENODEV;
  235. }
  236. static int __init ne_probe1(struct net_device *dev, int ioaddr)
  237. {
  238. int i;
  239. unsigned char SA_prom[32];
  240. int wordlength = 2;
  241. const char *name = NULL;
  242. int start_page, stop_page;
  243. int neX000, ctron, copam, bad_card;
  244. int reg0, ret;
  245. static unsigned version_printed;
  246. if (!request_region(ioaddr, NE_IO_EXTENT, DRV_NAME))
  247. return -EBUSY;
  248. reg0 = inb_p(ioaddr);
  249. if (reg0 == 0xFF) {
  250. ret = -ENODEV;
  251. goto err_out;
  252. }
  253. /* Do a preliminary verification that we have a 8390. */
  254. {
  255. int regd;
  256. outb_p(E8390_NODMA+E8390_PAGE1+E8390_STOP, ioaddr + E8390_CMD);
  257. regd = inb_p(ioaddr + 0x0d);
  258. outb_p(0xff, ioaddr + 0x0d);
  259. outb_p(E8390_NODMA+E8390_PAGE0, ioaddr + E8390_CMD);
  260. inb_p(ioaddr + EN0_COUNTER0); /* Clear the counter by reading. */
  261. if (inb_p(ioaddr + EN0_COUNTER0) != 0) {
  262. outb_p(reg0, ioaddr);
  263. outb_p(regd, ioaddr + 0x0d); /* Restore the old values. */
  264. ret = -ENODEV;
  265. goto err_out;
  266. }
  267. }
  268. if (ei_debug && version_printed++ == 0)
  269. printk(KERN_INFO "%s" KERN_INFO "%s", version1, version2);
  270. printk(KERN_INFO "NE*000 ethercard probe at %#3x:", ioaddr);
  271. /* A user with a poor card that fails to ack the reset, or that
  272. does not have a valid 0x57,0x57 signature can still use this
  273. without having to recompile. Specifying an i/o address along
  274. with an otherwise unused dev->mem_end value of "0xBAD" will
  275. cause the driver to skip these parts of the probe. */
  276. bad_card = ((dev->base_addr != 0) && (dev->mem_end == 0xbad));
  277. /* Reset card. Who knows what dain-bramaged state it was left in. */
  278. {
  279. unsigned long reset_start_time = jiffies;
  280. /* DON'T change these to inb_p/outb_p or reset will fail on clones. */
  281. outb(inb(ioaddr + NE_RESET), ioaddr + NE_RESET);
  282. while ((inb_p(ioaddr + EN0_ISR) & ENISR_RESET) == 0)
  283. if (time_after(jiffies, reset_start_time + 2*HZ/100)) {
  284. if (bad_card) {
  285. printk(" (warning: no reset ack)");
  286. break;
  287. } else {
  288. printk(" not found (no reset ack).\n");
  289. ret = -ENODEV;
  290. goto err_out;
  291. }
  292. }
  293. outb_p(0xff, ioaddr + EN0_ISR); /* Ack all intr. */
  294. }
  295. /* Read the 16 bytes of station address PROM.
  296. We must first initialize registers, similar to NS8390_init(eifdev, 0).
  297. We can't reliably read the SAPROM address without this.
  298. (I learned the hard way!). */
  299. {
  300. struct {unsigned char value, offset; } program_seq[] =
  301. {
  302. {E8390_NODMA+E8390_PAGE0+E8390_STOP, E8390_CMD}, /* Select page 0*/
  303. {0x48, EN0_DCFG}, /* Set byte-wide (0x48) access. */
  304. {0x00, EN0_RCNTLO}, /* Clear the count regs. */
  305. {0x00, EN0_RCNTHI},
  306. {0x00, EN0_IMR}, /* Mask completion irq. */
  307. {0xFF, EN0_ISR},
  308. {E8390_RXOFF, EN0_RXCR}, /* 0x20 Set to monitor */
  309. {E8390_TXOFF, EN0_TXCR}, /* 0x02 and loopback mode. */
  310. {32, EN0_RCNTLO},
  311. {0x00, EN0_RCNTHI},
  312. {0x00, EN0_RSARLO}, /* DMA starting at 0x0000. */
  313. {0x00, EN0_RSARHI},
  314. {E8390_RREAD+E8390_START, E8390_CMD},
  315. };
  316. for (i = 0; i < sizeof(program_seq)/sizeof(program_seq[0]); i++)
  317. outb_p(program_seq[i].value, ioaddr + program_seq[i].offset);
  318. }
  319. for(i = 0; i < 32 /*sizeof(SA_prom)*/; i+=2) {
  320. SA_prom[i] = inb(ioaddr + NE_DATAPORT);
  321. SA_prom[i+1] = inb(ioaddr + NE_DATAPORT);
  322. if (SA_prom[i] != SA_prom[i+1])
  323. wordlength = 1;
  324. }
  325. if (wordlength == 2)
  326. {
  327. for (i = 0; i < 16; i++)
  328. SA_prom[i] = SA_prom[i+i];
  329. /* We must set the 8390 for word mode. */
  330. outb_p(DCR_VAL, ioaddr + EN0_DCFG);
  331. start_page = NESM_START_PG;
  332. /*
  333. * Realtek RTL8019AS datasheet says that the PSTOP register
  334. * shouldn't exceed 0x60 in 8-bit mode.
  335. * This chip can be identified by reading the signature from
  336. * the remote byte count registers (otherwise write-only)...
  337. */
  338. if ((DCR_VAL & 0x01) == 0 && /* 8-bit mode */
  339. inb(ioaddr + EN0_RCNTLO) == 0x50 &&
  340. inb(ioaddr + EN0_RCNTHI) == 0x70)
  341. stop_page = 0x60;
  342. else
  343. stop_page = NESM_STOP_PG;
  344. } else {
  345. start_page = NE1SM_START_PG;
  346. stop_page = NE1SM_STOP_PG;
  347. }
  348. #if defined(CONFIG_PLAT_MAPPI) || defined(CONFIG_PLAT_OAKS32R)
  349. neX000 = ((SA_prom[14] == 0x57 && SA_prom[15] == 0x57)
  350. || (SA_prom[14] == 0x42 && SA_prom[15] == 0x42));
  351. #else
  352. neX000 = (SA_prom[14] == 0x57 && SA_prom[15] == 0x57);
  353. #endif
  354. ctron = (SA_prom[0] == 0x00 && SA_prom[1] == 0x00 && SA_prom[2] == 0x1d);
  355. copam = (SA_prom[14] == 0x49 && SA_prom[15] == 0x00);
  356. /* Set up the rest of the parameters. */
  357. if (neX000 || bad_card || copam) {
  358. name = (wordlength == 2) ? "NE2000" : "NE1000";
  359. }
  360. else if (ctron)
  361. {
  362. name = (wordlength == 2) ? "Ctron-8" : "Ctron-16";
  363. start_page = 0x01;
  364. stop_page = (wordlength == 2) ? 0x40 : 0x20;
  365. }
  366. else
  367. {
  368. #ifdef SUPPORT_NE_BAD_CLONES
  369. /* Ack! Well, there might be a *bad* NE*000 clone there.
  370. Check for total bogus addresses. */
  371. for (i = 0; bad_clone_list[i].name8; i++)
  372. {
  373. if (SA_prom[0] == bad_clone_list[i].SAprefix[0] &&
  374. SA_prom[1] == bad_clone_list[i].SAprefix[1] &&
  375. SA_prom[2] == bad_clone_list[i].SAprefix[2])
  376. {
  377. if (wordlength == 2)
  378. {
  379. name = bad_clone_list[i].name16;
  380. } else {
  381. name = bad_clone_list[i].name8;
  382. }
  383. break;
  384. }
  385. }
  386. if (bad_clone_list[i].name8 == NULL)
  387. {
  388. printk(" not found (invalid signature %2.2x %2.2x).\n",
  389. SA_prom[14], SA_prom[15]);
  390. ret = -ENXIO;
  391. goto err_out;
  392. }
  393. #else
  394. printk(" not found.\n");
  395. ret = -ENXIO;
  396. goto err_out;
  397. #endif
  398. }
  399. if (dev->irq < 2)
  400. {
  401. unsigned long cookie = probe_irq_on();
  402. outb_p(0x50, ioaddr + EN0_IMR); /* Enable one interrupt. */
  403. outb_p(0x00, ioaddr + EN0_RCNTLO);
  404. outb_p(0x00, ioaddr + EN0_RCNTHI);
  405. outb_p(E8390_RREAD+E8390_START, ioaddr); /* Trigger it... */
  406. mdelay(10); /* wait 10ms for interrupt to propagate */
  407. outb_p(0x00, ioaddr + EN0_IMR); /* Mask it again. */
  408. dev->irq = probe_irq_off(cookie);
  409. if (ei_debug > 2)
  410. printk(" autoirq is %d\n", dev->irq);
  411. } else if (dev->irq == 2)
  412. /* Fixup for users that don't know that IRQ 2 is really IRQ 9,
  413. or don't know which one to set. */
  414. dev->irq = 9;
  415. if (! dev->irq) {
  416. printk(" failed to detect IRQ line.\n");
  417. ret = -EAGAIN;
  418. goto err_out;
  419. }
  420. /* Snarf the interrupt now. There's no point in waiting since we cannot
  421. share and the board will usually be enabled. */
  422. ret = request_irq(dev->irq, ei_interrupt, 0, name, dev);
  423. if (ret) {
  424. printk (" unable to get IRQ %d (errno=%d).\n", dev->irq, ret);
  425. goto err_out;
  426. }
  427. dev->base_addr = ioaddr;
  428. #ifdef CONFIG_PLAT_MAPPI
  429. outb_p(E8390_NODMA + E8390_PAGE1 + E8390_STOP,
  430. ioaddr + E8390_CMD); /* 0x61 */
  431. for (i = 0 ; i < ETHER_ADDR_LEN ; i++) {
  432. dev->dev_addr[i] = SA_prom[i]
  433. = inb_p(ioaddr + EN1_PHYS_SHIFT(i));
  434. printk(" %2.2x", SA_prom[i]);
  435. }
  436. #else
  437. for(i = 0; i < ETHER_ADDR_LEN; i++) {
  438. printk(" %2.2x", SA_prom[i]);
  439. dev->dev_addr[i] = SA_prom[i];
  440. }
  441. #endif
  442. printk("\n%s: %s found at %#x, using IRQ %d.\n",
  443. dev->name, name, ioaddr, dev->irq);
  444. ei_status.name = name;
  445. ei_status.tx_start_page = start_page;
  446. ei_status.stop_page = stop_page;
  447. /* Use 16-bit mode only if this wasn't overridden by DCR_VAL */
  448. ei_status.word16 = (wordlength == 2 && (DCR_VAL & 0x01));
  449. ei_status.rx_start_page = start_page + TX_PAGES;
  450. #ifdef PACKETBUF_MEMSIZE
  451. /* Allow the packet buffer size to be overridden by know-it-alls. */
  452. ei_status.stop_page = ei_status.tx_start_page + PACKETBUF_MEMSIZE;
  453. #endif
  454. ei_status.reset_8390 = &ne_reset_8390;
  455. ei_status.block_input = &ne_block_input;
  456. ei_status.block_output = &ne_block_output;
  457. ei_status.get_8390_hdr = &ne_get_8390_hdr;
  458. ei_status.priv = 0;
  459. dev->open = &ne_open;
  460. dev->stop = &ne_close;
  461. #ifdef CONFIG_NET_POLL_CONTROLLER
  462. dev->poll_controller = ei_poll;
  463. #endif
  464. NS8390_init(dev, 0);
  465. ret = register_netdev(dev);
  466. if (ret)
  467. goto out_irq;
  468. return 0;
  469. out_irq:
  470. free_irq(dev->irq, dev);
  471. err_out:
  472. release_region(ioaddr, NE_IO_EXTENT);
  473. return ret;
  474. }
  475. static int ne_open(struct net_device *dev)
  476. {
  477. ei_open(dev);
  478. return 0;
  479. }
  480. static int ne_close(struct net_device *dev)
  481. {
  482. if (ei_debug > 1)
  483. printk(KERN_DEBUG "%s: Shutting down ethercard.\n", dev->name);
  484. ei_close(dev);
  485. return 0;
  486. }
  487. /* Hard reset the card. This used to pause for the same period that a
  488. 8390 reset command required, but that shouldn't be necessary. */
  489. static void ne_reset_8390(struct net_device *dev)
  490. {
  491. unsigned long reset_start_time = jiffies;
  492. if (ei_debug > 1)
  493. printk(KERN_DEBUG "resetting the 8390 t=%ld...", jiffies);
  494. /* DON'T change these to inb_p/outb_p or reset will fail on clones. */
  495. outb(inb(NE_BASE + NE_RESET), NE_BASE + NE_RESET);
  496. ei_status.txing = 0;
  497. ei_status.dmaing = 0;
  498. /* This check _should_not_ be necessary, omit eventually. */
  499. while ((inb_p(NE_BASE+EN0_ISR) & ENISR_RESET) == 0)
  500. if (time_after(jiffies, reset_start_time + 2*HZ/100)) {
  501. printk(KERN_WARNING "%s: ne_reset_8390() did not complete.\n", dev->name);
  502. break;
  503. }
  504. outb_p(ENISR_RESET, NE_BASE + EN0_ISR); /* Ack intr. */
  505. }
  506. /* Grab the 8390 specific header. Similar to the block_input routine, but
  507. we don't need to be concerned with ring wrap as the header will be at
  508. the start of a page, so we optimize accordingly. */
  509. static void ne_get_8390_hdr(struct net_device *dev, struct e8390_pkt_hdr *hdr, int ring_page)
  510. {
  511. int nic_base = dev->base_addr;
  512. /* This *shouldn't* happen. If it does, it's the last thing you'll see */
  513. if (ei_status.dmaing)
  514. {
  515. printk(KERN_EMERG "%s: DMAing conflict in ne_get_8390_hdr "
  516. "[DMAstat:%d][irqlock:%d].\n",
  517. dev->name, ei_status.dmaing, ei_status.irqlock);
  518. return;
  519. }
  520. ei_status.dmaing |= 0x01;
  521. outb_p(E8390_NODMA+E8390_PAGE0+E8390_START, nic_base+ NE_CMD);
  522. outb_p(sizeof(struct e8390_pkt_hdr), nic_base + EN0_RCNTLO);
  523. outb_p(0, nic_base + EN0_RCNTHI);
  524. outb_p(0, nic_base + EN0_RSARLO); /* On page boundary */
  525. outb_p(ring_page, nic_base + EN0_RSARHI);
  526. outb_p(E8390_RREAD+E8390_START, nic_base + NE_CMD);
  527. if (ei_status.word16)
  528. insw(NE_BASE + NE_DATAPORT, hdr, sizeof(struct e8390_pkt_hdr)>>1);
  529. else
  530. insb(NE_BASE + NE_DATAPORT, hdr, sizeof(struct e8390_pkt_hdr));
  531. outb_p(ENISR_RDC, nic_base + EN0_ISR); /* Ack intr. */
  532. ei_status.dmaing &= ~0x01;
  533. le16_to_cpus(&hdr->count);
  534. }
  535. /* Block input and output, similar to the Crynwr packet driver. If you
  536. are porting to a new ethercard, look at the packet driver source for hints.
  537. The NEx000 doesn't share the on-board packet memory -- you have to put
  538. the packet out through the "remote DMA" dataport using outb. */
  539. static void ne_block_input(struct net_device *dev, int count, struct sk_buff *skb, int ring_offset)
  540. {
  541. #ifdef NE_SANITY_CHECK
  542. int xfer_count = count;
  543. #endif
  544. int nic_base = dev->base_addr;
  545. char *buf = skb->data;
  546. /* This *shouldn't* happen. If it does, it's the last thing you'll see */
  547. if (ei_status.dmaing)
  548. {
  549. printk(KERN_EMERG "%s: DMAing conflict in ne_block_input "
  550. "[DMAstat:%d][irqlock:%d].\n",
  551. dev->name, ei_status.dmaing, ei_status.irqlock);
  552. return;
  553. }
  554. ei_status.dmaing |= 0x01;
  555. outb_p(E8390_NODMA+E8390_PAGE0+E8390_START, nic_base+ NE_CMD);
  556. outb_p(count & 0xff, nic_base + EN0_RCNTLO);
  557. outb_p(count >> 8, nic_base + EN0_RCNTHI);
  558. outb_p(ring_offset & 0xff, nic_base + EN0_RSARLO);
  559. outb_p(ring_offset >> 8, nic_base + EN0_RSARHI);
  560. outb_p(E8390_RREAD+E8390_START, nic_base + NE_CMD);
  561. if (ei_status.word16)
  562. {
  563. insw(NE_BASE + NE_DATAPORT,buf,count>>1);
  564. if (count & 0x01)
  565. {
  566. buf[count-1] = inb(NE_BASE + NE_DATAPORT);
  567. #ifdef NE_SANITY_CHECK
  568. xfer_count++;
  569. #endif
  570. }
  571. } else {
  572. insb(NE_BASE + NE_DATAPORT, buf, count);
  573. }
  574. #ifdef NE_SANITY_CHECK
  575. /* This was for the ALPHA version only, but enough people have
  576. been encountering problems so it is still here. If you see
  577. this message you either 1) have a slightly incompatible clone
  578. or 2) have noise/speed problems with your bus. */
  579. if (ei_debug > 1)
  580. {
  581. /* DMA termination address check... */
  582. int addr, tries = 20;
  583. do {
  584. /* DON'T check for 'inb_p(EN0_ISR) & ENISR_RDC' here
  585. -- it's broken for Rx on some cards! */
  586. int high = inb_p(nic_base + EN0_RSARHI);
  587. int low = inb_p(nic_base + EN0_RSARLO);
  588. addr = (high << 8) + low;
  589. if (((ring_offset + xfer_count) & 0xff) == low)
  590. break;
  591. } while (--tries > 0);
  592. if (tries <= 0)
  593. printk(KERN_WARNING "%s: RX transfer address mismatch,"
  594. "%#4.4x (expected) vs. %#4.4x (actual).\n",
  595. dev->name, ring_offset + xfer_count, addr);
  596. }
  597. #endif
  598. outb_p(ENISR_RDC, nic_base + EN0_ISR); /* Ack intr. */
  599. ei_status.dmaing &= ~0x01;
  600. }
  601. static void ne_block_output(struct net_device *dev, int count,
  602. const unsigned char *buf, const int start_page)
  603. {
  604. int nic_base = NE_BASE;
  605. unsigned long dma_start;
  606. #ifdef NE_SANITY_CHECK
  607. int retries = 0;
  608. #endif
  609. /* Round the count up for word writes. Do we need to do this?
  610. What effect will an odd byte count have on the 8390?
  611. I should check someday. */
  612. if (ei_status.word16 && (count & 0x01))
  613. count++;
  614. /* This *shouldn't* happen. If it does, it's the last thing you'll see */
  615. if (ei_status.dmaing)
  616. {
  617. printk(KERN_EMERG "%s: DMAing conflict in ne_block_output."
  618. "[DMAstat:%d][irqlock:%d]\n",
  619. dev->name, ei_status.dmaing, ei_status.irqlock);
  620. return;
  621. }
  622. ei_status.dmaing |= 0x01;
  623. /* We should already be in page 0, but to be safe... */
  624. outb_p(E8390_PAGE0+E8390_START+E8390_NODMA, nic_base + NE_CMD);
  625. #ifdef NE_SANITY_CHECK
  626. retry:
  627. #endif
  628. #ifdef NE8390_RW_BUGFIX
  629. /* Handle the read-before-write bug the same way as the
  630. Crynwr packet driver -- the NatSemi method doesn't work.
  631. Actually this doesn't always work either, but if you have
  632. problems with your NEx000 this is better than nothing! */
  633. outb_p(0x42, nic_base + EN0_RCNTLO);
  634. outb_p(0x00, nic_base + EN0_RCNTHI);
  635. outb_p(0x42, nic_base + EN0_RSARLO);
  636. outb_p(0x00, nic_base + EN0_RSARHI);
  637. outb_p(E8390_RREAD+E8390_START, nic_base + NE_CMD);
  638. /* Make certain that the dummy read has occurred. */
  639. udelay(6);
  640. #endif
  641. outb_p(ENISR_RDC, nic_base + EN0_ISR);
  642. /* Now the normal output. */
  643. outb_p(count & 0xff, nic_base + EN0_RCNTLO);
  644. outb_p(count >> 8, nic_base + EN0_RCNTHI);
  645. outb_p(0x00, nic_base + EN0_RSARLO);
  646. outb_p(start_page, nic_base + EN0_RSARHI);
  647. outb_p(E8390_RWRITE+E8390_START, nic_base + NE_CMD);
  648. if (ei_status.word16) {
  649. outsw(NE_BASE + NE_DATAPORT, buf, count>>1);
  650. } else {
  651. outsb(NE_BASE + NE_DATAPORT, buf, count);
  652. }
  653. dma_start = jiffies;
  654. #ifdef NE_SANITY_CHECK
  655. /* This was for the ALPHA version only, but enough people have
  656. been encountering problems so it is still here. */
  657. if (ei_debug > 1)
  658. {
  659. /* DMA termination address check... */
  660. int addr, tries = 20;
  661. do {
  662. int high = inb_p(nic_base + EN0_RSARHI);
  663. int low = inb_p(nic_base + EN0_RSARLO);
  664. addr = (high << 8) + low;
  665. if ((start_page << 8) + count == addr)
  666. break;
  667. } while (--tries > 0);
  668. if (tries <= 0)
  669. {
  670. printk(KERN_WARNING "%s: Tx packet transfer address mismatch,"
  671. "%#4.4x (expected) vs. %#4.4x (actual).\n",
  672. dev->name, (start_page << 8) + count, addr);
  673. if (retries++ == 0)
  674. goto retry;
  675. }
  676. }
  677. #endif
  678. while ((inb_p(nic_base + EN0_ISR) & ENISR_RDC) == 0)
  679. if (time_after(jiffies, dma_start + 2*HZ/100)) { /* 20ms */
  680. printk(KERN_WARNING "%s: timeout waiting for Tx RDC.\n", dev->name);
  681. ne_reset_8390(dev);
  682. NS8390_init(dev,1);
  683. break;
  684. }
  685. outb_p(ENISR_RDC, nic_base + EN0_ISR); /* Ack intr. */
  686. ei_status.dmaing &= ~0x01;
  687. return;
  688. }
  689. #ifdef MODULE
  690. #define MAX_NE_CARDS 4 /* Max number of NE cards per module */
  691. static struct net_device *dev_ne[MAX_NE_CARDS];
  692. static int io[MAX_NE_CARDS];
  693. static int irq[MAX_NE_CARDS];
  694. static int bad[MAX_NE_CARDS]; /* 0xbad = bad sig or no reset ack */
  695. module_param_array(io, int, NULL, 0);
  696. module_param_array(irq, int, NULL, 0);
  697. module_param_array(bad, int, NULL, 0);
  698. MODULE_PARM_DESC(io, "I/O base address(es),required");
  699. MODULE_PARM_DESC(irq, "IRQ number(s)");
  700. MODULE_PARM_DESC(bad, "Accept card(s) with bad signatures");
  701. MODULE_DESCRIPTION("NE1000/NE2000 ISA/PnP Ethernet driver");
  702. MODULE_LICENSE("GPL");
  703. /* This is set up so that no ISA autoprobe takes place. We can't guarantee
  704. that the ne2k probe is the last 8390 based probe to take place (as it
  705. is at boot) and so the probe will get confused by any other 8390 cards.
  706. ISA device autoprobes on a running machine are not recommended anyway. */
  707. int __init init_module(void)
  708. {
  709. int this_dev, found = 0;
  710. for (this_dev = 0; this_dev < MAX_NE_CARDS; this_dev++) {
  711. struct net_device *dev = alloc_ei_netdev();
  712. if (!dev)
  713. break;
  714. dev->irq = irq[this_dev];
  715. dev->mem_end = bad[this_dev];
  716. dev->base_addr = io[this_dev];
  717. if (do_ne_probe(dev) == 0) {
  718. dev_ne[found++] = dev;
  719. continue;
  720. }
  721. free_netdev(dev);
  722. if (found)
  723. break;
  724. if (io[this_dev] != 0)
  725. printk(KERN_WARNING "ne.c: No NE*000 card found at i/o = %#x\n", io[this_dev]);
  726. else
  727. printk(KERN_NOTICE "ne.c: You must supply \"io=0xNNN\" value(s) for ISA cards.\n");
  728. return -ENXIO;
  729. }
  730. if (found)
  731. return 0;
  732. return -ENODEV;
  733. }
  734. static void cleanup_card(struct net_device *dev)
  735. {
  736. struct pnp_dev *idev = (struct pnp_dev *)ei_status.priv;
  737. if (idev)
  738. pnp_device_detach(idev);
  739. free_irq(dev->irq, dev);
  740. release_region(dev->base_addr, NE_IO_EXTENT);
  741. }
  742. void cleanup_module(void)
  743. {
  744. int this_dev;
  745. for (this_dev = 0; this_dev < MAX_NE_CARDS; this_dev++) {
  746. struct net_device *dev = dev_ne[this_dev];
  747. if (dev) {
  748. unregister_netdev(dev);
  749. cleanup_card(dev);
  750. free_netdev(dev);
  751. }
  752. }
  753. }
  754. #endif /* MODULE */