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

嵌入式Linux

开发平台:

Unix_Linux

  1. /*  smc-ultra32.c: An SMC Ultra32 EISA ethernet driver for linux.
  2. Sources:
  3. This driver is based on (cloned from) the ISA SMC Ultra driver
  4. written by Donald Becker. Modifications to support the EISA
  5. version of the card by Paul Gortmaker and Leonard N. Zubkoff.
  6. This software may be used and distributed according to the terms
  7. of the GNU General Public License, incorporated herein by reference.
  8. Theory of Operation:
  9. The SMC Ultra32C card uses the SMC 83c790 chip which is also
  10. found on the ISA SMC Ultra cards. It has a shared memory mode of
  11. operation that makes it similar to the ISA version of the card.
  12. The main difference is that the EISA card has 32KB of RAM, but
  13. only an 8KB window into that memory. The EISA card also can be
  14. set for a bus-mastering mode of operation via the ECU, but that
  15. is not (and probably will never be) supported by this driver.
  16. The ECU should be run to enable shared memory and to disable the
  17. bus-mastering feature for use with linux.
  18. By programming the 8390 to use only 8KB RAM, the modifications
  19. to the ISA driver can be limited to the probe and initialization
  20. code. This allows easy integration of EISA support into the ISA
  21. driver. However, the driver development kit from SMC provided the
  22. register information for sliding the 8KB window, and hence the 8390
  23. is programmed to use the full 32KB RAM.
  24. Unfortunately this required code changes outside the probe/init
  25. routines, and thus we decided to separate the EISA driver from
  26. the ISA one. In this way, ISA users don't end up with a larger
  27. driver due to the EISA code, and EISA users don't end up with a
  28. larger driver due to the ISA EtherEZ PIO code. The driver is
  29. similar to the 3c503/16 driver, in that the window must be set
  30. back to the 1st 8KB of space for access to the two 8390 Tx slots.
  31. In testing, using only 8KB RAM (3 Tx / 5 Rx) didn't appear to
  32. be a limiting factor, since the EISA bus could get packets off
  33. the card fast enough, but having the use of lots of RAM as Rx
  34. space is extra insurance if interrupt latencies become excessive.
  35. */
  36. static const char *version = "smc-ultra32.c: 06/97 v1.00n";
  37. #include <linux/module.h>
  38. #include <linux/kernel.h>
  39. #include <linux/sched.h>
  40. #include <linux/errno.h>
  41. #include <linux/string.h>
  42. #include <linux/init.h>
  43. #include <asm/io.h>
  44. #include <asm/system.h>
  45. #include <linux/netdevice.h>
  46. #include <linux/etherdevice.h>
  47. #include "8390.h"
  48. int ultra32_probe(struct net_device *dev);
  49. static int ultra32_probe1(struct net_device *dev, int ioaddr);
  50. static int ultra32_open(struct net_device *dev);
  51. static void ultra32_reset_8390(struct net_device *dev);
  52. static void ultra32_get_8390_hdr(struct net_device *dev, struct e8390_pkt_hdr *hdr,
  53.  int ring_page);
  54. static void ultra32_block_input(struct net_device *dev, int count,
  55. struct sk_buff *skb, int ring_offset);
  56. static void ultra32_block_output(struct net_device *dev, int count,
  57.  const unsigned char *buf,
  58.  const int start_page);
  59. static int ultra32_close(struct net_device *dev);
  60. #define ULTRA32_CMDREG 0 /* Offset to ASIC command register. */
  61. #define  ULTRA32_RESET 0x80 /* Board reset, in ULTRA32_CMDREG. */
  62. #define  ULTRA32_MEMENB 0x40 /* Enable the shared memory. */
  63. #define ULTRA32_NIC_OFFSET 16 /* NIC register offset from the base_addr. */
  64. #define ULTRA32_IO_EXTENT 32
  65. #define EN0_ERWCNT 0x08 /* Early receive warning count. */
  66. /*
  67.  * Defines that apply only to the Ultra32 EISA card. Note that
  68.  * "smc" = 10011 01101 00011 = 0x4da3, and hence !smc8010.cfg translates
  69.  * into an EISA ID of 0x1080A34D
  70.  */
  71. #define ULTRA32_BASE 0xca0
  72. #define ULTRA32_ID 0x1080a34d
  73. #define ULTRA32_IDPORT (-0x20) /* 0xc80 */
  74. /* Config regs 1->7 from the EISA !SMC8010.CFG file. */
  75. #define ULTRA32_CFG1 0x04 /* 0xca4 */
  76. #define ULTRA32_CFG2 0x05 /* 0xca5 */
  77. #define ULTRA32_CFG3 (-0x18) /* 0xc88 */
  78. #define ULTRA32_CFG4 (-0x17) /* 0xc89 */
  79. #define ULTRA32_CFG5 (-0x16) /* 0xc8a */
  80. #define ULTRA32_CFG6 (-0x15) /* 0xc8b */
  81. #define ULTRA32_CFG7 0x0d /* 0xcad */
  82. /* Probe for the Ultra32.  This looks like a 8013 with the station
  83. address PROM at I/O ports <base>+8 to <base>+13, with a checksum
  84. following.
  85. */
  86. int __init ultra32_probe(struct net_device *dev)
  87. {
  88. int ioaddr;
  89. if (!EISA_bus) return -ENODEV;
  90. SET_MODULE_OWNER(dev);
  91. /* EISA spec allows for up to 16 slots, but 8 is typical. */
  92. for (ioaddr = 0x1000 + ULTRA32_BASE; ioaddr < 0x9000; ioaddr += 0x1000)
  93. if (ultra32_probe1(dev, ioaddr) == 0)
  94. return 0;
  95. return -ENODEV;
  96. }
  97. static int __init ultra32_probe1(struct net_device *dev, int ioaddr)
  98. {
  99. int i, edge, media, retval;
  100. int checksum = 0;
  101. const char *model_name;
  102. static unsigned version_printed;
  103. /* Values from various config regs. */
  104. unsigned char idreg;
  105. unsigned char reg4;
  106. const char *ifmap[] = {"UTP No Link", "", "UTP/AUI", "UTP/BNC"};
  107. if (!request_region(ioaddr, ULTRA32_IO_EXTENT, dev->name))
  108. return -EBUSY;
  109. if (inb(ioaddr + ULTRA32_IDPORT) == 0xff ||
  110.     inl(ioaddr + ULTRA32_IDPORT) != ULTRA32_ID) {
  111. retval = -ENODEV;
  112. goto out;
  113. }
  114. media = inb(ioaddr + ULTRA32_CFG7) & 0x03;
  115. edge = inb(ioaddr + ULTRA32_CFG5) & 0x08;
  116. printk("SMC Ultra32 in EISA Slot %d, Media: %s, %s IRQs.n",
  117. ioaddr >> 12, ifmap[media],
  118. (edge ? "Edge Triggered" : "Level Sensitive"));
  119. idreg = inb(ioaddr + 7);
  120. reg4 = inb(ioaddr + 4) & 0x7f;
  121. /* Check the ID nibble. */
  122. if ((idreg & 0xf0) != 0x20) { /* SMC Ultra */
  123. retval = -ENODEV;
  124. goto out;
  125. }
  126. /* Select the station address register set. */
  127. outb(reg4, ioaddr + 4);
  128. for (i = 0; i < 8; i++)
  129. checksum += inb(ioaddr + 8 + i);
  130. if ((checksum & 0xff) != 0xff) {
  131. retval = -ENODEV;
  132. goto out;
  133. }
  134. if (ei_debug  &&  version_printed++ == 0)
  135. printk(version);
  136. model_name = "SMC Ultra32";
  137. printk("%s: %s at 0x%X,", dev->name, model_name, ioaddr);
  138. for (i = 0; i < 6; i++)
  139. printk(" %2.2X", dev->dev_addr[i] = inb(ioaddr + 8 + i));
  140. /* Switch from the station address to the alternate register set and
  141.    read the useful registers there. */
  142. outb(0x80 | reg4, ioaddr + 4);
  143. /* Enable FINE16 mode to avoid BIOS ROM width mismatches @ reboot. */
  144. outb(0x80 | inb(ioaddr + 0x0c), ioaddr + 0x0c);
  145. /* Reset RAM addr. */
  146. outb(0x00, ioaddr + 0x0b);
  147. /* Switch back to the station address register set so that the
  148.    MS-DOS driver can find the card after a warm boot. */
  149. outb(reg4, ioaddr + 4);
  150. if ((inb(ioaddr + ULTRA32_CFG5) & 0x40) == 0) {
  151. printk("nsmc-ultra32: Card RAM is disabled!  "
  152.        "Run EISA config utility.n");
  153. retval = -ENODEV;
  154. goto out;
  155. }
  156. if ((inb(ioaddr + ULTRA32_CFG2) & 0x04) == 0)
  157. printk("nsmc-ultra32: Ignoring Bus-Master enable bit.  "
  158.        "Run EISA config utility.n");
  159. if (dev->irq < 2) {
  160. unsigned char irqmap[] = {0, 9, 3, 5, 7, 10, 11, 15};
  161. int irq = irqmap[inb(ioaddr + ULTRA32_CFG5) & 0x07];
  162. if (irq == 0) {
  163. printk(", failed to detect IRQ line.n");
  164. retval = -EAGAIN;
  165. goto out;
  166. }
  167. dev->irq = irq;
  168. }
  169. /* Allocate dev->priv and fill in 8390 specific dev fields. */
  170. if (ethdev_init(dev)) {
  171. printk (", no memory for dev->priv.n");
  172.                 retval = -ENOMEM;
  173. goto out;
  174.         }
  175. /* The 8390 isn't at the base address, so fake the offset */
  176. dev->base_addr = ioaddr + ULTRA32_NIC_OFFSET;
  177. /* Save RAM address in the unused reg0 to avoid excess inb's. */
  178. ei_status.reg0 = inb(ioaddr + ULTRA32_CFG3) & 0xfc;
  179. dev->mem_start =  0xc0000 + ((ei_status.reg0 & 0x7c) << 11);
  180. ei_status.name = model_name;
  181. ei_status.word16 = 1;
  182. ei_status.tx_start_page = 0;
  183. ei_status.rx_start_page = TX_PAGES;
  184. /* All Ultra32 cards have 32KB memory with an 8KB window. */
  185. ei_status.stop_page = 128;
  186. dev->rmem_start = dev->mem_start + TX_PAGES*256;
  187. dev->mem_end = dev->rmem_end = dev->mem_start + 0x1fff;
  188. printk(", IRQ %d, 32KB memory, 8KB window at 0x%lx-0x%lx.n",
  189.        dev->irq, dev->mem_start, dev->mem_end);
  190. ei_status.block_input = &ultra32_block_input;
  191. ei_status.block_output = &ultra32_block_output;
  192. ei_status.get_8390_hdr = &ultra32_get_8390_hdr;
  193. ei_status.reset_8390 = &ultra32_reset_8390;
  194. dev->open = &ultra32_open;
  195. dev->stop = &ultra32_close;
  196. NS8390_init(dev, 0);
  197. return 0;
  198. out:
  199. release_region(ioaddr, ULTRA32_IO_EXTENT);
  200. return retval;
  201. }
  202. static int ultra32_open(struct net_device *dev)
  203. {
  204. int ioaddr = dev->base_addr - ULTRA32_NIC_OFFSET; /* ASIC addr */
  205. int irq_flags = (inb(ioaddr + ULTRA32_CFG5) & 0x08) ? 0 : SA_SHIRQ;
  206. int retval;
  207. retval = request_irq(dev->irq, ei_interrupt, irq_flags, dev->name, dev);
  208. if (retval)
  209. return retval;
  210. outb(ULTRA32_MEMENB, ioaddr); /* Enable Shared Memory. */
  211. outb(0x80, ioaddr + ULTRA32_CFG6); /* Enable Interrupts. */
  212. outb(0x84, ioaddr + 5); /* Enable MEM16 & Disable Bus Master. */
  213. outb(0x01, ioaddr + 6); /* Enable Interrupts. */
  214. /* Set the early receive warning level in window 0 high enough not
  215.    to receive ERW interrupts. */
  216. outb_p(E8390_NODMA+E8390_PAGE0, dev->base_addr);
  217. outb(0xff, dev->base_addr + EN0_ERWCNT);
  218. ei_open(dev);
  219. return 0;
  220. }
  221. static int ultra32_close(struct net_device *dev)
  222. {
  223. int ioaddr = dev->base_addr - ULTRA32_NIC_OFFSET; /* CMDREG */
  224. netif_stop_queue(dev);
  225. if (ei_debug > 1)
  226. printk("%s: Shutting down ethercard.n", dev->name);
  227. outb(0x00, ioaddr + ULTRA32_CFG6); /* Disable Interrupts. */
  228. outb(0x00, ioaddr + 6); /* Disable interrupts. */
  229. free_irq(dev->irq, dev);
  230. NS8390_init(dev, 0);
  231. return 0;
  232. }
  233. static void ultra32_reset_8390(struct net_device *dev)
  234. {
  235. int ioaddr = dev->base_addr - ULTRA32_NIC_OFFSET; /* ASIC base addr */
  236. outb(ULTRA32_RESET, ioaddr);
  237. if (ei_debug > 1) printk("resetting Ultra32, t=%ld...", jiffies);
  238. ei_status.txing = 0;
  239. outb(ULTRA32_MEMENB, ioaddr); /* Enable Shared Memory. */
  240. outb(0x80, ioaddr + ULTRA32_CFG6); /* Enable Interrupts. */
  241. outb(0x84, ioaddr + 5); /* Enable MEM16 & Disable Bus Master. */
  242. outb(0x01, ioaddr + 6); /* Enable Interrupts. */
  243. if (ei_debug > 1) printk("reset donen");
  244. return;
  245. }
  246. /* Grab the 8390 specific header. Similar to the block_input routine, but
  247.    we don't need to be concerned with ring wrap as the header will be at
  248.    the start of a page, so we optimize accordingly. */
  249. static void ultra32_get_8390_hdr(struct net_device *dev,
  250.  struct e8390_pkt_hdr *hdr,
  251.  int ring_page)
  252. {
  253. unsigned long hdr_start = dev->mem_start + ((ring_page & 0x1f) << 8);
  254. unsigned int RamReg = dev->base_addr - ULTRA32_NIC_OFFSET + ULTRA32_CFG3;
  255. /* Select correct 8KB Window. */
  256. outb(ei_status.reg0 | ((ring_page & 0x60) >> 5), RamReg);
  257. #ifdef notdef
  258. /* Officially this is what we are doing, but the readl() is faster */
  259. isa_memcpy_fromio(hdr, hdr_start, sizeof(struct e8390_pkt_hdr));
  260. #else
  261. ((unsigned int*)hdr)[0] = isa_readl(hdr_start);
  262. #endif
  263. }
  264. /* Block input and output are easy on shared memory ethercards, the only
  265.    complication is when the ring buffer wraps, or in this case, when a
  266.    packet spans an 8KB boundary. Note that the current 8KB segment is
  267.    already set by the get_8390_hdr routine. */
  268. static void ultra32_block_input(struct net_device *dev,
  269. int count,
  270. struct sk_buff *skb,
  271. int ring_offset)
  272. {
  273. unsigned long xfer_start = dev->mem_start + (ring_offset & 0x1fff);
  274. unsigned int RamReg = dev->base_addr - ULTRA32_NIC_OFFSET + ULTRA32_CFG3;
  275. if ((ring_offset & ~0x1fff) != ((ring_offset + count - 1) & ~0x1fff)) {
  276. int semi_count = 8192 - (ring_offset & 0x1FFF);
  277. isa_memcpy_fromio(skb->data, xfer_start, semi_count);
  278. count -= semi_count;
  279. if (ring_offset < 96*256) {
  280. /* Select next 8KB Window. */
  281. ring_offset += semi_count;
  282. outb(ei_status.reg0 | ((ring_offset & 0x6000) >> 13), RamReg);
  283. isa_memcpy_fromio(skb->data + semi_count, dev->mem_start, count);
  284. } else {
  285. /* Select first 8KB Window. */
  286. outb(ei_status.reg0, RamReg);
  287. isa_memcpy_fromio(skb->data + semi_count, dev->rmem_start, count);
  288. }
  289. } else {
  290. /* Packet is in one chunk -- we can copy + cksum. */
  291. isa_eth_io_copy_and_sum(skb, xfer_start, count, 0);
  292. }
  293. }
  294. static void ultra32_block_output(struct net_device *dev,
  295.  int count,
  296.  const unsigned char *buf,
  297.  int start_page)
  298. {
  299. unsigned long xfer_start = dev->mem_start + (start_page<<8);
  300. unsigned int RamReg = dev->base_addr - ULTRA32_NIC_OFFSET + ULTRA32_CFG3;
  301. /* Select first 8KB Window. */
  302. outb(ei_status.reg0, RamReg);
  303. isa_memcpy_toio(xfer_start, buf, count);
  304. }
  305. #ifdef MODULE
  306. #define MAX_ULTRA32_CARDS   4 /* Max number of Ultra cards per module */
  307. static struct net_device dev_ultra[MAX_ULTRA32_CARDS];
  308. int init_module(void)
  309. {
  310. int this_dev, found = 0;
  311. for (this_dev = 0; this_dev < MAX_ULTRA32_CARDS; this_dev++) {
  312. struct net_device *dev = &dev_ultra[this_dev];
  313. dev->init = ultra32_probe;
  314. if (register_netdev(dev) != 0) {
  315. if (found > 0) { /* Got at least one. */
  316. return 0;
  317. }
  318. printk(KERN_WARNING "smc-ultra32.c: No SMC Ultra32 found.n");
  319. return -ENXIO;
  320. }
  321. found++;
  322. }
  323. return 0;
  324. }
  325. void cleanup_module(void)
  326. {
  327. int this_dev;
  328. for (this_dev = 0; this_dev < MAX_ULTRA32_CARDS; this_dev++) {
  329. struct net_device *dev = &dev_ultra[this_dev];
  330. if (dev->priv != NULL) {
  331. int ioaddr = dev->base_addr - ULTRA32_NIC_OFFSET;
  332. void *priv = dev->priv;
  333. /* NB: ultra32_close_card() does free_irq */
  334. release_region(ioaddr, ULTRA32_IO_EXTENT);
  335. unregister_netdev(dev);
  336. kfree(priv);
  337. }
  338. }
  339. }
  340. #endif /* MODULE */
  341. MODULE_LICENSE("GPL");