es3210.c
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:13k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2. es3210.c
  3. Linux driver for Racal-Interlan ES3210 EISA Network Adapter
  4. Copyright (C) 1996, Paul Gortmaker.
  5. This software may be used and distributed according to the terms
  6. of the GNU General Public License, incorporated herein by reference.
  7. Information and Code Sources:
  8. 1) The existing myriad of Linux 8390 drivers written by Donald Becker.
  9. 2) Once again Russ Nelson's asm packet driver provided additional info.
  10. 3) Info for getting IRQ and sh-mem gleaned from the EISA cfg files.
  11.    Too bad it doesn't work -- see below.
  12. The ES3210 is an EISA shared memory NS8390 implementation. Note
  13. that all memory copies to/from the board must be 32bit transfers.
  14. Which rules out using eth_io_copy_and_sum() in this driver.
  15. Apparently there are two slightly different revisions of the
  16. card, since there are two distinct EISA cfg files (!rii0101.cfg
  17. and !rii0102.cfg) One has media select in the cfg file and the
  18. other doesn't. Hopefully this will work with either.
  19. That is about all I can tell you about it, having never actually
  20. even seen one of these cards. :)  Try http://www.interlan.com
  21. if you want more info.
  22. Thanks go to Mark Salazar for testing v0.02 of this driver.
  23. Bugs, to-fix, etc:
  24. 1) The EISA cfg ports that are *supposed* to have the IRQ and shared
  25.    mem values just read 0xff all the time. Hrrmpf. Apparently the
  26.    same happens with the packet driver as the code for reading
  27.    these registers is disabled there. In the meantime, boot with:
  28.    ether=<IRQ>,0,0x<shared_mem_addr>,eth0 to override the IRQ and
  29.    shared memory detection. (The i/o port detection is okay.)
  30. 2) Module support currently untested. Probably works though.
  31. */
  32. static const char version[] =
  33. "es3210.c: Driver revision v0.03, 14/09/96n";
  34. #include <linux/module.h>
  35. #include <linux/kernel.h>
  36. #include <linux/sched.h>
  37. #include <linux/errno.h>
  38. #include <linux/string.h>
  39. #include <linux/init.h>
  40. #include <asm/io.h>
  41. #include <asm/system.h>
  42. #include <linux/netdevice.h>
  43. #include <linux/etherdevice.h>
  44. #include "8390.h"
  45. int es_probe(struct net_device *dev);
  46. static int es_probe1(struct net_device *dev, int ioaddr);
  47. static int es_open(struct net_device *dev);
  48. static int es_close(struct net_device *dev);
  49. static void es_reset_8390(struct net_device *dev);
  50. static void es_get_8390_hdr(struct net_device *dev, struct e8390_pkt_hdr *hdr, int ring_page);
  51. static void es_block_input(struct net_device *dev, int count, struct sk_buff *skb, int ring_offset);
  52. static void es_block_output(struct net_device *dev, int count, const unsigned char *buf, int start_page);
  53. #define ES_START_PG 0x00    /* First page of TX buffer */
  54. #define ES_STOP_PG 0x40    /* Last page +1 of RX ring */
  55. #define ES_IO_EXTENT 0x37 /* The cfg file says 0xc90 -> 0xcc7 */
  56. #define ES_ID_PORT 0xc80 /* Same for all EISA cards  */
  57. #define ES_SA_PROM 0xc90 /* Start of e'net addr. */
  58. #define ES_RESET_PORT 0xc84 /* From the packet driver source */
  59. #define ES_NIC_OFFSET 0xca0 /* Hello, the 8390 is *here* */
  60. #define ES_ADDR0 0x02 /* 3 byte vendor prefix */
  61. #define ES_ADDR1 0x07
  62. #define ES_ADDR2 0x01
  63. /*
  64.  * Two card revisions. EISA ID's are always rev. minor, rev. major,, and
  65.  * then the three vendor letters stored in 5 bits each, with an "a" = 1.
  66.  * For eg: "rii" = 10010 01001 01001 = 0x4929, which is how the EISA
  67.  * config utility determines automagically what config file(s) to use.
  68.  */
  69. #define ES_EISA_ID1 0x01012949 /* !rii0101.cfg  */
  70. #define ES_EISA_ID2 0x02012949 /* !rii0102.cfg  */
  71. #define ES_CFG1 0xcc0 /* IOPORT(1) --> IOPORT(6) in cfg file */
  72. #define ES_CFG2 0xcc1
  73. #define ES_CFG3 0xcc2
  74. #define ES_CFG4 0xcc3
  75. #define ES_CFG5 0xcc4
  76. #define ES_CFG6 0xc84 /* NB: 0xc84 is also "reset" port. */
  77. /*
  78.  * You can OR any of the following bits together and assign it
  79.  * to ES_DEBUG to get verbose driver info during operation.
  80.  * Some of these don't do anything yet.
  81.  */
  82. #define ES_D_PROBE 0x01
  83. #define ES_D_RX_PKT 0x02
  84. #define ES_D_TX_PKT 0x04
  85. #define ED_D_IRQ 0x08
  86. #define ES_DEBUG 0
  87. static unsigned char lo_irq_map[] __initdata = {3, 4, 5, 6, 7, 9, 10};
  88. static unsigned char hi_irq_map[] __initdata = {11, 12, 0, 14, 0, 0, 0, 15};
  89. /*
  90.  * Probe for the card. The best way is to read the EISA ID if it
  91.  * is known. Then we check the prefix of the station address
  92.  * PROM for a match against the Racal-Interlan assigned value.
  93.  */
  94. int __init es_probe(struct net_device *dev)
  95. {
  96. unsigned short ioaddr = dev->base_addr;
  97. SET_MODULE_OWNER(dev);
  98. if (ioaddr > 0x1ff) /* Check a single specified location. */
  99. return es_probe1(dev, ioaddr);
  100. else if (ioaddr > 0) /* Don't probe at all. */
  101. return -ENXIO;
  102. if (!EISA_bus) {
  103. #if ES_DEBUG & ES_D_PROBE
  104. printk("es3210.c: Not EISA bus. Not probing high ports.n");
  105. #endif
  106. return -ENXIO;
  107. }
  108. /* EISA spec allows for up to 16 slots, but 8 is typical. */
  109. for (ioaddr = 0x1000; ioaddr < 0x9000; ioaddr += 0x1000)
  110. if (es_probe1(dev, ioaddr) == 0)
  111. return 0;
  112. return -ENODEV;
  113. }
  114. static int __init es_probe1(struct net_device *dev, int ioaddr)
  115. {
  116. int i, retval;
  117. unsigned long eisa_id;
  118. if (!request_region(ioaddr + ES_SA_PROM, ES_IO_EXTENT, "es3210"))
  119. return -ENODEV;
  120. #if ES_DEBUG & ES_D_PROBE
  121. printk("es3210.c: probe at %#x, ID %#8xn", ioaddr, inl(ioaddr + ES_ID_PORT));
  122. printk("es3210.c: config regs: %#x %#x %#x %#x %#x %#xn",
  123. inb(ioaddr + ES_CFG1), inb(ioaddr + ES_CFG2), inb(ioaddr + ES_CFG3),
  124. inb(ioaddr + ES_CFG4), inb(ioaddr + ES_CFG5), inb(ioaddr + ES_CFG6));
  125. #endif
  126. /* Check the EISA ID of the card. */
  127. eisa_id = inl(ioaddr + ES_ID_PORT);
  128. if ((eisa_id != ES_EISA_ID1) && (eisa_id != ES_EISA_ID2)) {
  129. retval = -ENODEV;
  130. goto out;
  131. }
  132. /* Check the Racal vendor ID as well. */
  133. if (inb(ioaddr + ES_SA_PROM + 0) != ES_ADDR0
  134. || inb(ioaddr + ES_SA_PROM + 1) != ES_ADDR1
  135. || inb(ioaddr + ES_SA_PROM + 2) != ES_ADDR2 ) {
  136. printk("es3210.c: card not found");
  137. for(i = 0; i < ETHER_ADDR_LEN; i++)
  138. printk(" %02x", inb(ioaddr + ES_SA_PROM + i));
  139. printk(" (invalid prefix).n");
  140. retval = -ENODEV;
  141. goto out;
  142. }
  143. printk("es3210.c: ES3210 rev. %ld at %#x, node", eisa_id>>24, ioaddr);
  144. for(i = 0; i < ETHER_ADDR_LEN; i++)
  145. printk(" %02x", (dev->dev_addr[i] = inb(ioaddr + ES_SA_PROM + i)));
  146. /* Snarf the interrupt now. */
  147. if (dev->irq == 0) {
  148. unsigned char hi_irq = inb(ioaddr + ES_CFG2) & 0x07;
  149. unsigned char lo_irq = inb(ioaddr + ES_CFG1) & 0xfe;
  150. if (hi_irq != 0) {
  151. dev->irq = hi_irq_map[hi_irq - 1];
  152. } else {
  153. int i = 0;
  154. while (lo_irq > (1<<i)) i++;
  155. dev->irq = lo_irq_map[i];
  156. }
  157. printk(" using IRQ %d", dev->irq);
  158. #if ES_DEBUG & ES_D_PROBE
  159. printk("es3210.c: hi_irq %#x, lo_irq %#x, dev->irq = %dn",
  160. hi_irq, lo_irq, dev->irq);
  161. #endif
  162. } else {
  163. if (dev->irq == 2)
  164. dev->irq = 9; /* Doh! */
  165. printk(" assigning IRQ %d", dev->irq);
  166. }
  167. if (request_irq(dev->irq, ei_interrupt, 0, "es3210", dev)) {
  168. printk (" unable to get IRQ %d.n", dev->irq);
  169. retval = -EAGAIN;
  170. goto out;
  171. }
  172. if (dev->mem_start == 0) {
  173. unsigned char mem_enabled = inb(ioaddr + ES_CFG2) & 0xc0;
  174. unsigned char mem_bits = inb(ioaddr + ES_CFG3) & 0x07;
  175. if (mem_enabled != 0x80) {
  176. printk(" shared mem disabled - giving upn");
  177. retval = -ENXIO;
  178. goto out1;
  179. }
  180. dev->mem_start = 0xC0000 + mem_bits*0x4000;
  181. printk(" using ");
  182. } else {
  183. printk(" assigning ");
  184. }
  185. dev->mem_end = dev->rmem_end = dev->mem_start
  186. + (ES_STOP_PG - ES_START_PG)*256;
  187. dev->rmem_start = dev->mem_start + TX_PAGES*256;
  188. printk("mem %#lx-%#lxn", dev->mem_start, dev->mem_end-1);
  189. /* Allocate dev->priv and fill in 8390 specific dev fields. */
  190. if (ethdev_init(dev)) {
  191. printk (" unable to allocate memory for dev->priv.n");
  192. retval = -ENOMEM;
  193. goto out1;
  194. }
  195. #if ES_DEBUG & ES_D_PROBE
  196. if (inb(ioaddr + ES_CFG5))
  197. printk("es3210: Warning - DMA channel enabled, but not used here.n");
  198. #endif
  199. /* Note, point at the 8390, and not the card... */
  200. dev->base_addr = ioaddr + ES_NIC_OFFSET;
  201. ei_status.name = "ES3210";
  202. ei_status.tx_start_page = ES_START_PG;
  203. ei_status.rx_start_page = ES_START_PG + TX_PAGES;
  204. ei_status.stop_page = ES_STOP_PG;
  205. ei_status.word16 = 1;
  206. if (ei_debug > 0)
  207. printk(version);
  208. ei_status.reset_8390 = &es_reset_8390;
  209. ei_status.block_input = &es_block_input;
  210. ei_status.block_output = &es_block_output;
  211. ei_status.get_8390_hdr = &es_get_8390_hdr;
  212. dev->open = &es_open;
  213. dev->stop = &es_close;
  214. NS8390_init(dev, 0);
  215. return 0;
  216. out1:
  217. free_irq(dev->irq, dev);
  218. out:
  219. release_region(ioaddr + ES_SA_PROM, ES_IO_EXTENT);
  220. return retval;
  221. }
  222. /*
  223.  * Reset as per the packet driver method. Judging by the EISA cfg
  224.  * file, this just toggles the "Board Enable" bits (bit 2 and 0).
  225.  */
  226. static void es_reset_8390(struct net_device *dev)
  227. {
  228. unsigned short ioaddr = dev->base_addr;
  229. unsigned long end;
  230. outb(0x04, ioaddr + ES_RESET_PORT);
  231. if (ei_debug > 1) printk("%s: resetting the ES3210...", dev->name);
  232. end = jiffies + 2*HZ/100;
  233.         while ((signed)(end - jiffies) > 0) continue;
  234. ei_status.txing = 0;
  235. outb(0x01, ioaddr + ES_RESET_PORT);
  236. if (ei_debug > 1) printk("reset donen");
  237. return;
  238. }
  239. /*
  240.  * Note: In the following three functions is the implicit assumption
  241.  * that the associated memcpy will only use "rep; movsl" as long as
  242.  * we keep the counts as some multiple of doublewords. This is a
  243.  * requirement of the hardware, and also prevents us from using
  244.  * eth_io_copy_and_sum() since we can't guarantee it will limit
  245.  * itself to doubleword access.
  246.  */
  247. /*
  248.  * Grab the 8390 specific header. Similar to the block_input routine, but
  249.  * we don't need to be concerned with ring wrap as the header will be at
  250.  * the start of a page, so we optimize accordingly. (A single doubleword.)
  251.  */
  252. static void
  253. es_get_8390_hdr(struct net_device *dev, struct e8390_pkt_hdr *hdr, int ring_page)
  254. {
  255. unsigned long hdr_start = dev->mem_start + ((ring_page - ES_START_PG)<<8);
  256. isa_memcpy_fromio(hdr, hdr_start, sizeof(struct e8390_pkt_hdr));
  257. hdr->count = (hdr->count + 3) & ~3;     /* Round up allocation. */
  258. }
  259. /*
  260.  * Block input and output are easy on shared memory ethercards, the only
  261.  * complication is when the ring buffer wraps. The count will already
  262.  * be rounded up to a doubleword value via es_get_8390_hdr() above.
  263.  */
  264. static void es_block_input(struct net_device *dev, int count, struct sk_buff *skb,
  265.   int ring_offset)
  266. {
  267. unsigned long xfer_start = dev->mem_start + ring_offset - (ES_START_PG<<8);
  268. if (xfer_start + count > dev->rmem_end) {
  269. /* Packet wraps over end of ring buffer. */
  270. int semi_count = dev->rmem_end - xfer_start;
  271. isa_memcpy_fromio(skb->data, xfer_start, semi_count);
  272. count -= semi_count;
  273. isa_memcpy_fromio(skb->data + semi_count, dev->rmem_start, count);
  274. } else {
  275. /* Packet is in one chunk. */
  276. isa_eth_io_copy_and_sum(skb, xfer_start, count, 0);
  277. }
  278. }
  279. static void es_block_output(struct net_device *dev, int count,
  280. const unsigned char *buf, int start_page)
  281. {
  282. unsigned long shmem = dev->mem_start + ((start_page - ES_START_PG)<<8);
  283. count = (count + 3) & ~3;     /* Round up to doubleword */
  284. isa_memcpy_toio(shmem, buf, count);
  285. }
  286. static int es_open(struct net_device *dev)
  287. {
  288. ei_open(dev);
  289. return 0;
  290. }
  291. static int es_close(struct net_device *dev)
  292. {
  293. if (ei_debug > 1)
  294. printk("%s: Shutting down ethercard.n", dev->name);
  295. ei_close(dev);
  296. return 0;
  297. }
  298. #ifdef MODULE
  299. #define MAX_ES_CARDS 4 /* Max number of ES3210 cards per module */
  300. #define NAMELEN 8 /* # of chars for storing dev->name */
  301. static struct net_device dev_es3210[MAX_ES_CARDS];
  302. static int io[MAX_ES_CARDS];
  303. static int irq[MAX_ES_CARDS];
  304. static int mem[MAX_ES_CARDS];
  305. MODULE_PARM(io, "1-" __MODULE_STRING(MAX_ES_CARDS) "i");
  306. MODULE_PARM(irq, "1-" __MODULE_STRING(MAX_ES_CARDS) "i");
  307. MODULE_PARM(mem, "1-" __MODULE_STRING(MAX_ES_CARDS) "i");
  308. MODULE_PARM_DESC(io, "ES3210 I/O base address(es)");
  309. MODULE_PARM_DESC(irq, "ES3210 IRQ number(s)");
  310. MODULE_PARM_DESC(mem, "ES3210 memory base address(es)");
  311. int
  312. init_module(void)
  313. {
  314. int this_dev, found = 0;
  315. for (this_dev = 0; this_dev < MAX_ES_CARDS; this_dev++) {
  316. struct net_device *dev = &dev_es3210[this_dev];
  317. dev->irq = irq[this_dev];
  318. dev->base_addr = io[this_dev];
  319. dev->mem_start = mem[this_dev]; /* Currently ignored by driver */
  320. dev->init = es_probe;
  321. /* Default is to only install one card. */
  322. if (io[this_dev] == 0 && this_dev != 0) break;
  323. if (register_netdev(dev) != 0) {
  324. printk(KERN_WARNING "es3210.c: No es3210 card found (i/o = 0x%x).n", io[this_dev]);
  325. if (found != 0) { /* Got at least one. */
  326. return 0;
  327. }
  328. return -ENXIO;
  329. }
  330. found++;
  331. }
  332. return 0;
  333. }
  334. void
  335. cleanup_module(void)
  336. {
  337. int this_dev;
  338. for (this_dev = 0; this_dev < MAX_ES_CARDS; this_dev++) {
  339. struct net_device *dev = &dev_es3210[this_dev];
  340. if (dev->priv != NULL) {
  341. void *priv = dev->priv;
  342. free_irq(dev->irq, dev);
  343. release_region(dev->base_addr, ES_IO_EXTENT);
  344. unregister_netdev(dev);
  345. kfree(priv);
  346. }
  347. }
  348. }
  349. #endif /* MODULE */
  350. MODULE_LICENSE("GPL");