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

嵌入式Linux

开发平台:

Unix_Linux

  1. /* epic100.c: A SMC 83c170 EPIC/100 Fast Ethernet driver for Linux. */
  2. /*
  3. Written/copyright 1997-2001 by Donald Becker.
  4. This software may be used and distributed according to the terms of
  5. the GNU General Public License (GPL), incorporated herein by reference.
  6. Drivers based on or derived from this code fall under the GPL and must
  7. retain the authorship, copyright and license notice.  This file is not
  8. a complete program and may only be used when the entire operating
  9. system is licensed under the GPL.
  10. This driver is for the SMC83c170/175 "EPIC" series, as used on the
  11. SMC EtherPower II 9432 PCI adapter, and several CardBus cards.
  12. The author may be reached as becker@scyld.com, or C/O
  13. Scyld Computing Corporation
  14. 410 Severn Ave., Suite 210
  15. Annapolis MD 21403
  16. Information and updates available at
  17. http://www.scyld.com/network/epic100.html
  18. ---------------------------------------------------------------------
  19. Linux kernel-specific changes:
  20. LK1.1.2 (jgarzik):
  21. * Merge becker version 1.09 (4/08/2000)
  22. LK1.1.3:
  23. * Major bugfix to 1.09 driver (Francis Romieu)
  24. LK1.1.4 (jgarzik):
  25. * Merge becker test version 1.09 (5/29/2000)
  26. LK1.1.5:
  27. * Fix locking (jgarzik)
  28. * Limit 83c175 probe to ethernet-class PCI devices (rgooch)
  29. LK1.1.6:
  30. * Merge becker version 1.11
  31. * Move pci_enable_device before any PCI BAR len checks
  32. LK1.1.7:
  33. * { fill me in }
  34. LK1.1.8:
  35. * ethtool driver info support (jgarzik)
  36. LK1.1.9:
  37. * ethtool media get/set support (jgarzik)
  38. LK1.1.10:
  39. * revert MII transceiver init change (jgarzik)
  40. LK1.1.11:
  41. * implement ETHTOOL_[GS]SET, _NWAY_RST, _[GS]MSGLVL, _GLINK (jgarzik)
  42. * replace some MII-related magic numbers with constants
  43. LK1.1.12:
  44. * fix power-up sequence
  45. */
  46. #define DRV_NAME "epic100"
  47. #define DRV_VERSION "1.11+LK1.1.12"
  48. #define DRV_RELDATE "Jan 18, 2002"
  49. /* The user-configurable values.
  50.    These may be modified when a driver module is loaded.*/
  51. static int debug = 1; /* 1 normal messages, 0 quiet .. 7 verbose. */
  52. /* Maximum events (Rx packets, etc.) to handle at each interrupt. */
  53. static int max_interrupt_work = 32;
  54. /* Used to pass the full-duplex flag, etc. */
  55. #define MAX_UNITS 8 /* More are supported, limit only on options */
  56. static int options[MAX_UNITS] = {-1, -1, -1, -1, -1, -1, -1, -1};
  57. static int full_duplex[MAX_UNITS] = {-1, -1, -1, -1, -1, -1, -1, -1};
  58. /* Set the copy breakpoint for the copy-only-tiny-frames scheme.
  59.    Setting to > 1518 effectively disables this feature. */
  60. static int rx_copybreak;
  61. /* Operational parameters that are set at compile time. */
  62. /* Keep the ring sizes a power of two for operational efficiency.
  63.    The compiler will convert <unsigned>'%'<2^N> into a bit mask.
  64.    Making the Tx ring too large decreases the effectiveness of channel
  65.    bonding and packet priority.
  66.    There are no ill effects from too-large receive rings. */
  67. #define TX_RING_SIZE 16
  68. #define TX_QUEUE_LEN 10 /* Limit ring entries actually used.  */
  69. #define RX_RING_SIZE 32
  70. #define TX_TOTAL_SIZE TX_RING_SIZE*sizeof(struct epic_tx_desc)
  71. #define RX_TOTAL_SIZE RX_RING_SIZE*sizeof(struct epic_rx_desc)
  72. /* Operational parameters that usually are not changed. */
  73. /* Time in jiffies before concluding the transmitter is hung. */
  74. #define TX_TIMEOUT  (2*HZ)
  75. #define PKT_BUF_SZ 1536 /* Size of each temporary Rx buffer.*/
  76. /* Bytes transferred to chip before transmission starts. */
  77. /* Initial threshold, increased on underflow, rounded down to 4 byte units. */
  78. #define TX_FIFO_THRESH 256
  79. #define RX_FIFO_THRESH 1 /* 0-3, 0==32, 64,96, or 3==128 bytes  */
  80. #if !defined(__OPTIMIZE__)
  81. #warning  You must compile this file with the correct options!
  82. #warning  See the last lines of the source file.
  83. #error You must compile this driver with "-O".
  84. #endif
  85. #include <linux/config.h>
  86. #include <linux/module.h>
  87. #include <linux/kernel.h>
  88. #include <linux/string.h>
  89. #include <linux/timer.h>
  90. #include <linux/errno.h>
  91. #include <linux/ioport.h>
  92. #include <linux/slab.h>
  93. #include <linux/interrupt.h>
  94. #include <linux/pci.h>
  95. #include <linux/delay.h>
  96. #include <linux/netdevice.h>
  97. #include <linux/etherdevice.h>
  98. #include <linux/skbuff.h>
  99. #include <linux/init.h>
  100. #include <linux/spinlock.h>
  101. #include <linux/ethtool.h>
  102. #include <linux/mii.h>
  103. #include <asm/bitops.h>
  104. #include <asm/io.h>
  105. #include <asm/uaccess.h>
  106. /* These identify the driver base version and may not be removed. */
  107. static char version[] __devinitdata =
  108. DRV_NAME ".c:v1.11 1/7/2001 Written by Donald Becker <becker@scyld.com>n";
  109. static char version2[] __devinitdata =
  110. "  http://www.scyld.com/network/epic100.htmln";
  111. static char version3[] __devinitdata =
  112. "  (unofficial 2.4.x kernel port, version " DRV_VERSION ", " DRV_RELDATE ")n";
  113. MODULE_AUTHOR("Donald Becker <becker@scyld.com>");
  114. MODULE_DESCRIPTION("SMC 83c170 EPIC series Ethernet driver");
  115. MODULE_LICENSE("GPL");
  116. MODULE_PARM(debug, "i");
  117. MODULE_PARM(max_interrupt_work, "i");
  118. MODULE_PARM(rx_copybreak, "i");
  119. MODULE_PARM(options, "1-" __MODULE_STRING(MAX_UNITS) "i");
  120. MODULE_PARM(full_duplex, "1-" __MODULE_STRING(MAX_UNITS) "i");
  121. MODULE_PARM_DESC(debug, "EPIC/100 debug level (0-5)");
  122. MODULE_PARM_DESC(max_interrupt_work, "EPIC/100 maximum events handled per interrupt");
  123. MODULE_PARM_DESC(options, "EPIC/100: Bits 0-3: media type, bit 4: full duplex");
  124. MODULE_PARM_DESC(rx_copybreak, "EPIC/100 copy breakpoint for copy-only-tiny-frames");
  125. MODULE_PARM_DESC(full_duplex, "EPIC/100 full duplex setting(s) (1)");
  126. /*
  127. Theory of Operation
  128. I. Board Compatibility
  129. This device driver is designed for the SMC "EPIC/100", the SMC
  130. single-chip Ethernet controllers for PCI.  This chip is used on
  131. the SMC EtherPower II boards.
  132. II. Board-specific settings
  133. PCI bus devices are configured by the system at boot time, so no jumpers
  134. need to be set on the board.  The system BIOS will assign the
  135. PCI INTA signal to a (preferably otherwise unused) system IRQ line.
  136. Note: Kernel versions earlier than 1.3.73 do not support shared PCI
  137. interrupt lines.
  138. III. Driver operation
  139. IIIa. Ring buffers
  140. IVb. References
  141. http://www.smsc.com/main/datasheets/83c171.pdf
  142. http://www.smsc.com/main/datasheets/83c175.pdf
  143. http://scyld.com/expert/NWay.html
  144. http://www.national.com/pf/DP/DP83840A.html
  145. IVc. Errata
  146. */
  147. enum pci_id_flags_bits {
  148.         /* Set PCI command register bits before calling probe1(). */
  149.         PCI_USES_IO=1, PCI_USES_MEM=2, PCI_USES_MASTER=4,
  150.         /* Read and map the single following PCI BAR. */
  151.         PCI_ADDR0=0<<4, PCI_ADDR1=1<<4, PCI_ADDR2=2<<4, PCI_ADDR3=3<<4,
  152.         PCI_ADDR_64BITS=0x100, PCI_NO_ACPI_WAKE=0x200, PCI_NO_MIN_LATENCY=0x400,
  153. };
  154. enum chip_capability_flags { MII_PWRDWN=1, TYPE2_INTR=2, NO_MII=4 };
  155. #define EPIC_TOTAL_SIZE 0x100
  156. #define USE_IO_OPS 1
  157. #ifdef USE_IO_OPS
  158. #define EPIC_IOTYPE PCI_USES_MASTER|PCI_USES_IO|PCI_ADDR0
  159. #else
  160. #define EPIC_IOTYPE PCI_USES_MASTER|PCI_USES_MEM|PCI_ADDR1
  161. #endif
  162. typedef enum {
  163. SMSC_83C170_0,
  164. SMSC_83C170,
  165. SMSC_83C175,
  166. } chip_t;
  167. struct epic_chip_info {
  168. const char *name;
  169. enum pci_id_flags_bits pci_flags;
  170.         int io_size;                            /* Needed for I/O region check or ioremap(). */
  171.         int drv_flags;                          /* Driver use, intended as capability flags. */
  172. };
  173. /* indexed by chip_t */
  174. static struct epic_chip_info pci_id_tbl[] = {
  175. { "SMSC EPIC/100 83c170",
  176.  EPIC_IOTYPE, EPIC_TOTAL_SIZE, TYPE2_INTR | NO_MII | MII_PWRDWN },
  177. { "SMSC EPIC/100 83c170",
  178.  EPIC_IOTYPE, EPIC_TOTAL_SIZE, TYPE2_INTR },
  179. { "SMSC EPIC/C 83c175",
  180.  EPIC_IOTYPE, EPIC_TOTAL_SIZE, TYPE2_INTR | MII_PWRDWN },
  181. };
  182. static struct pci_device_id epic_pci_tbl[] __devinitdata = {
  183. { 0x10B8, 0x0005, 0x1092, 0x0AB4, 0, 0, SMSC_83C170_0 },
  184. { 0x10B8, 0x0005, PCI_ANY_ID, PCI_ANY_ID, 0, 0, SMSC_83C170 },
  185. { 0x10B8, 0x0006, PCI_ANY_ID, PCI_ANY_ID,
  186.   PCI_CLASS_NETWORK_ETHERNET << 8, 0xffff00, SMSC_83C175 },
  187. { 0,}
  188. };
  189. MODULE_DEVICE_TABLE (pci, epic_pci_tbl);
  190. #ifndef USE_IO_OPS
  191. #undef inb
  192. #undef inw
  193. #undef inl
  194. #undef outb
  195. #undef outw
  196. #undef outl
  197. #define inb readb
  198. #define inw readw
  199. #define inl readl
  200. #define outb writeb
  201. #define outw writew
  202. #define outl writel
  203. #endif
  204. /* Offsets to registers, using the (ugh) SMC names. */
  205. enum epic_registers {
  206.   COMMAND=0, INTSTAT=4, INTMASK=8, GENCTL=0x0C, NVCTL=0x10, EECTL=0x14,
  207.   PCIBurstCnt=0x18,
  208.   TEST1=0x1C, CRCCNT=0x20, ALICNT=0x24, MPCNT=0x28, /* Rx error counters. */
  209.   MIICtrl=0x30, MIIData=0x34, MIICfg=0x38,
  210.   LAN0=64, /* MAC address. */
  211.   MC0=80, /* Multicast filter table. */
  212.   RxCtrl=96, TxCtrl=112, TxSTAT=0x74,
  213.   PRxCDAR=0x84, RxSTAT=0xA4, EarlyRx=0xB0, PTxCDAR=0xC4, TxThresh=0xDC,
  214. };
  215. /* Interrupt register bits, using my own meaningful names. */
  216. enum IntrStatus {
  217. TxIdle=0x40000, RxIdle=0x20000, IntrSummary=0x010000,
  218. PCIBusErr170=0x7000, PCIBusErr175=0x1000, PhyEvent175=0x8000,
  219. RxStarted=0x0800, RxEarlyWarn=0x0400, CntFull=0x0200, TxUnderrun=0x0100,
  220. TxEmpty=0x0080, TxDone=0x0020, RxError=0x0010,
  221. RxOverflow=0x0008, RxFull=0x0004, RxHeader=0x0002, RxDone=0x0001,
  222. };
  223. enum CommandBits {
  224. StopRx=1, StartRx=2, TxQueued=4, RxQueued=8,
  225. StopTxDMA=0x20, StopRxDMA=0x40, RestartTx=0x80,
  226. };
  227. static u16 media2miictl[16] = {
  228. 0, 0x0C00, 0x0C00, 0x2000,  0x0100, 0x2100, 0, 0,
  229. 0, 0, 0, 0,  0, 0, 0, 0 };
  230. /* The EPIC100 Rx and Tx buffer descriptors. */
  231. struct epic_tx_desc {
  232. u32 txstatus;
  233. u32 bufaddr;
  234. u32 buflength;
  235. u32 next;
  236. };
  237. struct epic_rx_desc {
  238. u32 rxstatus;
  239. u32 bufaddr;
  240. u32 buflength;
  241. u32 next;
  242. };
  243. enum desc_status_bits {
  244. DescOwn=0x8000,
  245. };
  246. #define PRIV_ALIGN 15  /* Required alignment mask */
  247. struct epic_private {
  248. struct epic_rx_desc *rx_ring;
  249. struct epic_tx_desc *tx_ring;
  250. /* The saved address of a sent-in-place packet/buffer, for skfree(). */
  251. struct sk_buff* tx_skbuff[TX_RING_SIZE];
  252. /* The addresses of receive-in-place skbuffs. */
  253. struct sk_buff* rx_skbuff[RX_RING_SIZE];
  254. dma_addr_t tx_ring_dma;
  255. dma_addr_t rx_ring_dma;
  256. /* Ring pointers. */
  257. spinlock_t lock; /* Group with Tx control cache line. */
  258. unsigned int cur_tx, dirty_tx;
  259. unsigned int cur_rx, dirty_rx;
  260. unsigned int rx_buf_sz; /* Based on MTU+slack. */
  261. struct pci_dev *pci_dev; /* PCI bus location. */
  262. int chip_id, chip_flags;
  263. struct net_device_stats stats;
  264. struct timer_list timer; /* Media selection timer. */
  265. int tx_threshold;
  266. unsigned char mc_filter[8];
  267. signed char phys[4]; /* MII device addresses. */
  268. u16 advertising; /* NWay media advertisement */
  269. int mii_phy_cnt;
  270. struct mii_if_info mii;
  271. unsigned int tx_full:1; /* The Tx queue is full. */
  272. unsigned int default_port:4; /* Last dev->if_port value. */
  273. };
  274. static int epic_open(struct net_device *dev);
  275. static int read_eeprom(long ioaddr, int location);
  276. static int mdio_read(struct net_device *dev, int phy_id, int location);
  277. static void mdio_write(struct net_device *dev, int phy_id, int loc, int val);
  278. static void epic_restart(struct net_device *dev);
  279. static void epic_timer(unsigned long data);
  280. static void epic_tx_timeout(struct net_device *dev);
  281. static void epic_init_ring(struct net_device *dev);
  282. static int epic_start_xmit(struct sk_buff *skb, struct net_device *dev);
  283. static int epic_rx(struct net_device *dev);
  284. static void epic_interrupt(int irq, void *dev_instance, struct pt_regs *regs);
  285. static int netdev_ioctl(struct net_device *dev, struct ifreq *rq, int cmd);
  286. static int epic_close(struct net_device *dev);
  287. static struct net_device_stats *epic_get_stats(struct net_device *dev);
  288. static void set_rx_mode(struct net_device *dev);
  289. static int __devinit epic_init_one (struct pci_dev *pdev,
  290.     const struct pci_device_id *ent)
  291. {
  292. static int card_idx = -1;
  293. long ioaddr;
  294. int chip_idx = (int) ent->driver_data;
  295. int irq;
  296. struct net_device *dev;
  297. struct epic_private *ep;
  298. int i, option = 0, duplex = 0;
  299. void *ring_space;
  300. dma_addr_t ring_dma;
  301. /* when built into the kernel, we only print version if device is found */
  302. #ifndef MODULE
  303. static int printed_version;
  304. if (!printed_version++)
  305. printk (KERN_INFO "%s" KERN_INFO "%s" KERN_INFO "%s",
  306. version, version2, version3);
  307. #endif
  308. card_idx++;
  309. i = pci_enable_device(pdev);
  310. if (i)
  311. return i;
  312. irq = pdev->irq;
  313. if (pci_resource_len(pdev, 0) < pci_id_tbl[chip_idx].io_size) {
  314. printk (KERN_ERR "card %d: no PCI region spacen", card_idx);
  315. return -ENODEV;
  316. }
  317. pci_set_master(pdev);
  318. dev = alloc_etherdev(sizeof (*ep));
  319. if (!dev) {
  320. printk (KERN_ERR "card %d: no memory for eth devicen", card_idx);
  321. return -ENOMEM;
  322. }
  323. SET_MODULE_OWNER(dev);
  324. if (pci_request_regions(pdev, DRV_NAME))
  325. goto err_out_free_netdev;
  326. #ifdef USE_IO_OPS
  327. ioaddr = pci_resource_start (pdev, 0);
  328. #else
  329. ioaddr = pci_resource_start (pdev, 1);
  330. ioaddr = (long) ioremap (ioaddr, pci_resource_len (pdev, 1));
  331. if (!ioaddr) {
  332. printk (KERN_ERR DRV_NAME " %d: ioremap failedn", card_idx);
  333. goto err_out_free_res;
  334. }
  335. #endif
  336. pci_set_drvdata(pdev, dev);
  337. ep = dev->priv;
  338. ep->mii.dev = dev;
  339. ep->mii.mdio_read = mdio_read;
  340. ep->mii.mdio_write = mdio_write;
  341. ring_space = pci_alloc_consistent(pdev, TX_TOTAL_SIZE, &ring_dma);
  342. if (!ring_space)
  343. goto err_out_iounmap;
  344. ep->tx_ring = (struct epic_tx_desc *)ring_space;
  345. ep->tx_ring_dma = ring_dma;
  346. ring_space = pci_alloc_consistent(pdev, RX_TOTAL_SIZE, &ring_dma);
  347. if (!ring_space)
  348. goto err_out_unmap_tx;
  349. ep->rx_ring = (struct epic_rx_desc *)ring_space;
  350. ep->rx_ring_dma = ring_dma;
  351. if (dev->mem_start) {
  352. option = dev->mem_start;
  353. duplex = (dev->mem_start & 16) ? 1 : 0;
  354. } else if (card_idx >= 0  &&  card_idx < MAX_UNITS) {
  355. if (options[card_idx] >= 0)
  356. option = options[card_idx];
  357. if (full_duplex[card_idx] >= 0)
  358. duplex = full_duplex[card_idx];
  359. }
  360. dev->base_addr = ioaddr;
  361. dev->irq = irq;
  362. spin_lock_init (&ep->lock);
  363. /* Bring the chip out of low-power mode. */
  364. outl(0x4200, ioaddr + GENCTL);
  365. /* Magic?!  If we don't set this bit the MII interface won't work. */
  366. outl(0x0008, ioaddr + TEST1);
  367. /* Turn on the MII transceiver. */
  368. outl(0x12, ioaddr + MIICfg);
  369. if (chip_idx == 1)
  370. outl((inl(ioaddr + NVCTL) & ~0x003C) | 0x4800, ioaddr + NVCTL);
  371. outl(0x0200, ioaddr + GENCTL);
  372. /* Note: the '175 does not have a serial EEPROM. */
  373. for (i = 0; i < 3; i++)
  374. ((u16 *)dev->dev_addr)[i] = le16_to_cpu(inw(ioaddr + LAN0 + i*4));
  375. if (debug > 2) {
  376. printk(KERN_DEBUG DRV_NAME "(%s): EEPROM contentsn",
  377.        pdev->slot_name);
  378. for (i = 0; i < 64; i++)
  379. printk(" %4.4x%s", read_eeprom(ioaddr, i),
  380.    i % 16 == 15 ? "n" : "");
  381. }
  382. ep->pci_dev = pdev;
  383. ep->chip_id = chip_idx;
  384. ep->chip_flags = pci_id_tbl[chip_idx].drv_flags;
  385. /* Find the connected MII xcvrs.
  386.    Doing this in open() would allow detecting external xcvrs later, but
  387.    takes much time and no cards have external MII. */
  388. {
  389. int phy, phy_idx = 0;
  390. for (phy = 1; phy < 32 && phy_idx < sizeof(ep->phys); phy++) {
  391. int mii_status = mdio_read(dev, phy, MII_BMSR);
  392. if (mii_status != 0xffff  &&  mii_status != 0x0000) {
  393. ep->phys[phy_idx++] = phy;
  394. printk(KERN_INFO DRV_NAME "(%s): MII transceiver #%d control "
  395.    "%4.4x status %4.4x.n",
  396.    pdev->slot_name, phy, mdio_read(dev, phy, 0), mii_status);
  397. }
  398. }
  399. ep->mii_phy_cnt = phy_idx;
  400. if (phy_idx != 0) {
  401. phy = ep->phys[0];
  402. ep->mii.advertising = mdio_read(dev, phy, MII_ADVERTISE);
  403. printk(KERN_INFO DRV_NAME "(%s): Autonegotiation advertising %4.4x link "
  404.    "partner %4.4x.n",
  405.    pdev->slot_name, ep->mii.advertising, mdio_read(dev, phy, 5));
  406. } else if ( ! (ep->chip_flags & NO_MII)) {
  407. printk(KERN_WARNING DRV_NAME "(%s): ***WARNING***: No MII transceiver found!n",
  408.        pdev->slot_name);
  409. /* Use the known PHY address of the EPII. */
  410. ep->phys[0] = 3;
  411. }
  412. ep->mii.phy_id = ep->phys[0];
  413. }
  414. /* Turn off the MII xcvr (175 only!), leave the chip in low-power mode. */
  415. if (ep->chip_flags & MII_PWRDWN)
  416. outl(inl(ioaddr + NVCTL) & ~0x483C, ioaddr + NVCTL);
  417. outl(0x0008, ioaddr + GENCTL);
  418. /* The lower four bits are the media type. */
  419. if (duplex) {
  420. ep->mii.duplex_lock = ep->mii.full_duplex = 1;
  421. printk(KERN_INFO DRV_NAME "(%s):  Forced full duplex operation requested.n",
  422.        pdev->slot_name);
  423. }
  424. dev->if_port = ep->default_port = option;
  425. /* The Epic-specific entries in the device structure. */
  426. dev->open = &epic_open;
  427. dev->hard_start_xmit = &epic_start_xmit;
  428. dev->stop = &epic_close;
  429. dev->get_stats = &epic_get_stats;
  430. dev->set_multicast_list = &set_rx_mode;
  431. dev->do_ioctl = &netdev_ioctl;
  432. dev->watchdog_timeo = TX_TIMEOUT;
  433. dev->tx_timeout = &epic_tx_timeout;
  434. i = register_netdev(dev);
  435. if (i)
  436. goto err_out_unmap_tx;
  437. printk(KERN_INFO "%s: %s at %#lx, IRQ %d, ",
  438.    dev->name, pci_id_tbl[chip_idx].name, ioaddr, dev->irq);
  439. for (i = 0; i < 5; i++)
  440. printk("%2.2x:", dev->dev_addr[i]);
  441. printk("%2.2x.n", dev->dev_addr[i]);
  442. return 0;
  443. err_out_unmap_tx:
  444. pci_free_consistent(pdev, TX_TOTAL_SIZE, ep->tx_ring, ep->tx_ring_dma);
  445. err_out_iounmap:
  446. #ifndef USE_IO_OPS
  447. iounmap(ioaddr);
  448. err_out_free_res:
  449. #endif
  450. pci_release_regions(pdev);
  451. err_out_free_netdev:
  452. kfree(dev);
  453. return -ENODEV;
  454. }
  455. /* Serial EEPROM section. */
  456. /*  EEPROM_Ctrl bits. */
  457. #define EE_SHIFT_CLK 0x04 /* EEPROM shift clock. */
  458. #define EE_CS 0x02 /* EEPROM chip select. */
  459. #define EE_DATA_WRITE 0x08 /* EEPROM chip data in. */
  460. #define EE_WRITE_0 0x01
  461. #define EE_WRITE_1 0x09
  462. #define EE_DATA_READ 0x10 /* EEPROM chip data out. */
  463. #define EE_ENB (0x0001 | EE_CS)
  464. /* Delay between EEPROM clock transitions.
  465.    This serves to flush the operation to the PCI bus.
  466.  */
  467. #define eeprom_delay() inl(ee_addr)
  468. /* The EEPROM commands include the alway-set leading bit. */
  469. #define EE_WRITE_CMD (5 << 6)
  470. #define EE_READ64_CMD (6 << 6)
  471. #define EE_READ256_CMD (6 << 8)
  472. #define EE_ERASE_CMD (7 << 6)
  473. static int read_eeprom(long ioaddr, int location)
  474. {
  475. int i;
  476. int retval = 0;
  477. long ee_addr = ioaddr + EECTL;
  478. int read_cmd = location |
  479. (inl(ee_addr) & 0x40 ? EE_READ64_CMD : EE_READ256_CMD);
  480. outl(EE_ENB & ~EE_CS, ee_addr);
  481. outl(EE_ENB, ee_addr);
  482. /* Shift the read command bits out. */
  483. for (i = 12; i >= 0; i--) {
  484. short dataval = (read_cmd & (1 << i)) ? EE_WRITE_1 : EE_WRITE_0;
  485. outl(EE_ENB | dataval, ee_addr);
  486. eeprom_delay();
  487. outl(EE_ENB | dataval | EE_SHIFT_CLK, ee_addr);
  488. eeprom_delay();
  489. }
  490. outl(EE_ENB, ee_addr);
  491. for (i = 16; i > 0; i--) {
  492. outl(EE_ENB | EE_SHIFT_CLK, ee_addr);
  493. eeprom_delay();
  494. retval = (retval << 1) | ((inl(ee_addr) & EE_DATA_READ) ? 1 : 0);
  495. outl(EE_ENB, ee_addr);
  496. eeprom_delay();
  497. }
  498. /* Terminate the EEPROM access. */
  499. outl(EE_ENB & ~EE_CS, ee_addr);
  500. return retval;
  501. }
  502. #define MII_READOP 1
  503. #define MII_WRITEOP 2
  504. static int mdio_read(struct net_device *dev, int phy_id, int location)
  505. {
  506. long ioaddr = dev->base_addr;
  507. int read_cmd = (phy_id << 9) | (location << 4) | MII_READOP;
  508. int i;
  509. outl(read_cmd, ioaddr + MIICtrl);
  510. /* Typical operation takes 25 loops. */
  511. for (i = 400; i > 0; i--) {
  512. barrier();
  513. if ((inl(ioaddr + MIICtrl) & MII_READOP) == 0) {
  514. /* Work around read failure bug. */
  515. if (phy_id == 1 && location < 6
  516. && inw(ioaddr + MIIData) == 0xffff) {
  517. outl(read_cmd, ioaddr + MIICtrl);
  518. continue;
  519. }
  520. return inw(ioaddr + MIIData);
  521. }
  522. }
  523. return 0xffff;
  524. }
  525. static void mdio_write(struct net_device *dev, int phy_id, int loc, int value)
  526. {
  527. long ioaddr = dev->base_addr;
  528. int i;
  529. outw(value, ioaddr + MIIData);
  530. outl((phy_id << 9) | (loc << 4) | MII_WRITEOP, ioaddr + MIICtrl);
  531. for (i = 10000; i > 0; i--) { 
  532. barrier();
  533. if ((inl(ioaddr + MIICtrl) & MII_WRITEOP) == 0)
  534. break;
  535. }
  536. return;
  537. }
  538. static int epic_open(struct net_device *dev)
  539. {
  540. struct epic_private *ep = dev->priv;
  541. long ioaddr = dev->base_addr;
  542. int i;
  543. int retval;
  544. /* Soft reset the chip. */
  545. outl(0x4001, ioaddr + GENCTL);
  546. if ((retval = request_irq(dev->irq, &epic_interrupt, SA_SHIRQ, dev->name, dev)))
  547. return retval;
  548. epic_init_ring(dev);
  549. outl(0x4000, ioaddr + GENCTL);
  550. /* This magic is documented in SMSC app note 7.15 */
  551. outl(0x0008, ioaddr + TEST1);
  552. /* Pull the chip out of low-power mode, enable interrupts, and set for
  553.    PCI read multiple.  The MIIcfg setting and strange write order are
  554.    required by the details of which bits are reset and the transceiver
  555.    wiring on the Ositech CardBus card.
  556. */
  557. outl(0x12, ioaddr + MIICfg);
  558. if (ep->chip_flags & MII_PWRDWN)
  559. outl((inl(ioaddr + NVCTL) & ~0x003C) | 0x4800, ioaddr + NVCTL);
  560. #if defined(__powerpc__) || defined(__sparc__) /* Big endian */
  561. outl(0x4432 | (RX_FIFO_THRESH<<8), ioaddr + GENCTL);
  562. inl(ioaddr + GENCTL);
  563. outl(0x0432 | (RX_FIFO_THRESH<<8), ioaddr + GENCTL);
  564. #else
  565. outl(0x4412 | (RX_FIFO_THRESH<<8), ioaddr + GENCTL);
  566. inl(ioaddr + GENCTL);
  567. outl(0x0412 | (RX_FIFO_THRESH<<8), ioaddr + GENCTL);
  568. #endif
  569. for (i = 0; i < 3; i++)
  570. outl(cpu_to_le16(((u16*)dev->dev_addr)[i]), ioaddr + LAN0 + i*4);
  571. ep->tx_threshold = TX_FIFO_THRESH;
  572. outl(ep->tx_threshold, ioaddr + TxThresh);
  573. if (media2miictl[dev->if_port & 15]) {
  574. if (ep->mii_phy_cnt)
  575. mdio_write(dev, ep->phys[0], MII_BMCR, media2miictl[dev->if_port&15]);
  576. if (dev->if_port == 1) {
  577. if (debug > 1)
  578. printk(KERN_INFO "%s: Using the 10base2 transceiver, MII "
  579.    "status %4.4x.n",
  580.    dev->name, mdio_read(dev, ep->phys[0], MII_BMSR));
  581. }
  582. } else {
  583. int mii_lpa = mdio_read(dev, ep->phys[0], MII_LPA);
  584. if (mii_lpa != 0xffff) {
  585. if ((mii_lpa & LPA_100FULL) || (mii_lpa & 0x01C0) == LPA_10FULL)
  586. ep->mii.full_duplex = 1;
  587. else if (! (mii_lpa & LPA_LPACK))
  588. mdio_write(dev, ep->phys[0], MII_BMCR, BMCR_ANENABLE|BMCR_ANRESTART);
  589. if (debug > 1)
  590. printk(KERN_INFO "%s: Setting %s-duplex based on MII xcvr %d"
  591.    " register read of %4.4x.n", dev->name,
  592.    ep->mii.full_duplex ? "full" : "half",
  593.    ep->phys[0], mii_lpa);
  594. }
  595. }
  596. outl(ep->mii.full_duplex ? 0x7F : 0x79, ioaddr + TxCtrl);
  597. outl(ep->rx_ring_dma, ioaddr + PRxCDAR);
  598. outl(ep->tx_ring_dma, ioaddr + PTxCDAR);
  599. /* Start the chip's Rx process. */
  600. set_rx_mode(dev);
  601. outl(StartRx | RxQueued, ioaddr + COMMAND);
  602. netif_start_queue(dev);
  603. /* Enable interrupts by setting the interrupt mask. */
  604. outl((ep->chip_flags & TYPE2_INTR ? PCIBusErr175 : PCIBusErr170)
  605.  | CntFull | TxUnderrun | TxDone | TxEmpty
  606.  | RxError | RxOverflow | RxFull | RxHeader | RxDone,
  607.  ioaddr + INTMASK);
  608. if (debug > 1)
  609. printk(KERN_DEBUG "%s: epic_open() ioaddr %lx IRQ %d status %4.4x "
  610.    "%s-duplex.n",
  611.    dev->name, ioaddr, dev->irq, (int)inl(ioaddr + GENCTL),
  612.    ep->mii.full_duplex ? "full" : "half");
  613. /* Set the timer to switch to check for link beat and perhaps switch
  614.    to an alternate media type. */
  615. init_timer(&ep->timer);
  616. ep->timer.expires = jiffies + 3*HZ;
  617. ep->timer.data = (unsigned long)dev;
  618. ep->timer.function = &epic_timer; /* timer handler */
  619. add_timer(&ep->timer);
  620. return 0;
  621. }
  622. /* Reset the chip to recover from a PCI transaction error.
  623.    This may occur at interrupt time. */
  624. static void epic_pause(struct net_device *dev)
  625. {
  626. long ioaddr = dev->base_addr;
  627. struct epic_private *ep = dev->priv;
  628. netif_stop_queue (dev);
  629. /* Disable interrupts by clearing the interrupt mask. */
  630. outl(0x00000000, ioaddr + INTMASK);
  631. /* Stop the chip's Tx and Rx DMA processes. */
  632. outw(StopRx | StopTxDMA | StopRxDMA, ioaddr + COMMAND);
  633. /* Update the error counts. */
  634. if (inw(ioaddr + COMMAND) != 0xffff) {
  635. ep->stats.rx_missed_errors += inb(ioaddr + MPCNT);
  636. ep->stats.rx_frame_errors += inb(ioaddr + ALICNT);
  637. ep->stats.rx_crc_errors += inb(ioaddr + CRCCNT);
  638. }
  639. /* Remove the packets on the Rx queue. */
  640. epic_rx(dev);
  641. }
  642. static void epic_restart(struct net_device *dev)
  643. {
  644. long ioaddr = dev->base_addr;
  645. struct epic_private *ep = dev->priv;
  646. int i;
  647. /* Soft reset the chip. */
  648. outl(0x4001, ioaddr + GENCTL);
  649. printk(KERN_DEBUG "%s: Restarting the EPIC chip, Rx %d/%d Tx %d/%d.n",
  650.    dev->name, ep->cur_rx, ep->dirty_rx, ep->dirty_tx, ep->cur_tx);
  651. udelay(1);
  652. /* This magic is documented in SMSC app note 7.15 */
  653. for (i = 16; i > 0; i--)
  654. outl(0x0008, ioaddr + TEST1);
  655. #if defined(__powerpc__) || defined(__sparc__) /* Big endian */
  656. outl(0x0432 | (RX_FIFO_THRESH<<8), ioaddr + GENCTL);
  657. #else
  658. outl(0x0412 | (RX_FIFO_THRESH<<8), ioaddr + GENCTL);
  659. #endif
  660. outl(dev->if_port == 1 ? 0x13 : 0x12, ioaddr + MIICfg);
  661. if (ep->chip_flags & MII_PWRDWN)
  662. outl((inl(ioaddr + NVCTL) & ~0x003C) | 0x4800, ioaddr + NVCTL);
  663. for (i = 0; i < 3; i++)
  664. outl(cpu_to_le16(((u16*)dev->dev_addr)[i]), ioaddr + LAN0 + i*4);
  665. ep->tx_threshold = TX_FIFO_THRESH;
  666. outl(ep->tx_threshold, ioaddr + TxThresh);
  667. outl(ep->mii.full_duplex ? 0x7F : 0x79, ioaddr + TxCtrl);
  668. outl(ep->rx_ring_dma + (ep->cur_rx%RX_RING_SIZE)*
  669. sizeof(struct epic_rx_desc), ioaddr + PRxCDAR);
  670. outl(ep->tx_ring_dma + (ep->dirty_tx%TX_RING_SIZE)*
  671.  sizeof(struct epic_tx_desc), ioaddr + PTxCDAR);
  672. /* Start the chip's Rx process. */
  673. set_rx_mode(dev);
  674. outl(StartRx | RxQueued, ioaddr + COMMAND);
  675. /* Enable interrupts by setting the interrupt mask. */
  676. outl((ep->chip_flags & TYPE2_INTR ? PCIBusErr175 : PCIBusErr170)
  677.  | CntFull | TxUnderrun | TxDone | TxEmpty
  678.  | RxError | RxOverflow | RxFull | RxHeader | RxDone,
  679.  ioaddr + INTMASK);
  680. printk(KERN_DEBUG "%s: epic_restart() done, cmd status %4.4x, ctl %4.4x"
  681.    " interrupt %4.4x.n",
  682.    dev->name, (int)inl(ioaddr + COMMAND), (int)inl(ioaddr + GENCTL),
  683.    (int)inl(ioaddr + INTSTAT));
  684. return;
  685. }
  686. static void check_media(struct net_device *dev)
  687. {
  688. struct epic_private *ep = dev->priv;
  689. long ioaddr = dev->base_addr;
  690. int mii_lpa = ep->mii_phy_cnt ? mdio_read(dev, ep->phys[0], MII_LPA) : 0;
  691. int negotiated = mii_lpa & ep->mii.advertising;
  692. int duplex = (negotiated & 0x0100) || (negotiated & 0x01C0) == 0x0040;
  693. if (ep->mii.duplex_lock)
  694. return;
  695. if (mii_lpa == 0xffff) /* Bogus read */
  696. return;
  697. if (ep->mii.full_duplex != duplex) {
  698. ep->mii.full_duplex = duplex;
  699. printk(KERN_INFO "%s: Setting %s-duplex based on MII #%d link"
  700.    " partner capability of %4.4x.n", dev->name,
  701.    ep->mii.full_duplex ? "full" : "half", ep->phys[0], mii_lpa);
  702. outl(ep->mii.full_duplex ? 0x7F : 0x79, ioaddr + TxCtrl);
  703. }
  704. }
  705. static void epic_timer(unsigned long data)
  706. {
  707. struct net_device *dev = (struct net_device *)data;
  708. struct epic_private *ep = dev->priv;
  709. long ioaddr = dev->base_addr;
  710. int next_tick = 5*HZ;
  711. if (debug > 3) {
  712. printk(KERN_DEBUG "%s: Media monitor tick, Tx status %8.8x.n",
  713.    dev->name, (int)inl(ioaddr + TxSTAT));
  714. printk(KERN_DEBUG "%s: Other registers are IntMask %4.4x "
  715.    "IntStatus %4.4x RxStatus %4.4x.n",
  716.    dev->name, (int)inl(ioaddr + INTMASK),
  717.    (int)inl(ioaddr + INTSTAT), (int)inl(ioaddr + RxSTAT));
  718. }
  719. check_media(dev);
  720. ep->timer.expires = jiffies + next_tick;
  721. add_timer(&ep->timer);
  722. }
  723. static void epic_tx_timeout(struct net_device *dev)
  724. {
  725. struct epic_private *ep = dev->priv;
  726. long ioaddr = dev->base_addr;
  727. if (debug > 0) {
  728. printk(KERN_WARNING "%s: Transmit timeout using MII device, "
  729.    "Tx status %4.4x.n",
  730.    dev->name, (int)inw(ioaddr + TxSTAT));
  731. if (debug > 1) {
  732. printk(KERN_DEBUG "%s: Tx indices: dirty_tx %d, cur_tx %d.n",
  733.    dev->name, ep->dirty_tx, ep->cur_tx);
  734. }
  735. }
  736. if (inw(ioaddr + TxSTAT) & 0x10) { /* Tx FIFO underflow. */
  737. ep->stats.tx_fifo_errors++;
  738. outl(RestartTx, ioaddr + COMMAND);
  739. } else {
  740. epic_restart(dev);
  741. outl(TxQueued, dev->base_addr + COMMAND);
  742. }
  743. dev->trans_start = jiffies;
  744. ep->stats.tx_errors++;
  745. if (!ep->tx_full)
  746. netif_wake_queue(dev);
  747. }
  748. /* Initialize the Rx and Tx rings, along with various 'dev' bits. */
  749. static void epic_init_ring(struct net_device *dev)
  750. {
  751. struct epic_private *ep = dev->priv;
  752. int i;
  753. ep->tx_full = 0;
  754. ep->lock = (spinlock_t) SPIN_LOCK_UNLOCKED;
  755. ep->dirty_tx = ep->cur_tx = 0;
  756. ep->cur_rx = ep->dirty_rx = 0;
  757. ep->rx_buf_sz = (dev->mtu <= 1500 ? PKT_BUF_SZ : dev->mtu + 32);
  758. /* Initialize all Rx descriptors. */
  759. for (i = 0; i < RX_RING_SIZE; i++) {
  760. ep->rx_ring[i].rxstatus = 0;
  761. ep->rx_ring[i].buflength = cpu_to_le32(ep->rx_buf_sz);
  762. ep->rx_ring[i].next = ep->rx_ring_dma + 
  763.       (i+1)*sizeof(struct epic_rx_desc);
  764. ep->rx_skbuff[i] = 0;
  765. }
  766. /* Mark the last entry as wrapping the ring. */
  767. ep->rx_ring[i-1].next = ep->rx_ring_dma;
  768. /* Fill in the Rx buffers.  Handle allocation failure gracefully. */
  769. for (i = 0; i < RX_RING_SIZE; i++) {
  770. struct sk_buff *skb = dev_alloc_skb(ep->rx_buf_sz);
  771. ep->rx_skbuff[i] = skb;
  772. if (skb == NULL)
  773. break;
  774. skb->dev = dev; /* Mark as being used by this device. */
  775. skb_reserve(skb, 2); /* 16 byte align the IP header. */
  776. ep->rx_ring[i].bufaddr = pci_map_single(ep->pci_dev, 
  777. skb->tail, ep->rx_buf_sz, PCI_DMA_FROMDEVICE);
  778. ep->rx_ring[i].rxstatus = cpu_to_le32(DescOwn);
  779. }
  780. ep->dirty_rx = (unsigned int)(i - RX_RING_SIZE);
  781. /* The Tx buffer descriptor is filled in as needed, but we
  782.    do need to clear the ownership bit. */
  783. for (i = 0; i < TX_RING_SIZE; i++) {
  784. ep->tx_skbuff[i] = 0;
  785. ep->tx_ring[i].txstatus = 0x0000;
  786. ep->tx_ring[i].next = ep->tx_ring_dma + 
  787. (i+1)*sizeof(struct epic_tx_desc);
  788. }
  789. ep->tx_ring[i-1].next = ep->tx_ring_dma;
  790. return;
  791. }
  792. static int epic_start_xmit(struct sk_buff *skb, struct net_device *dev)
  793. {
  794. struct epic_private *ep = dev->priv;
  795. int entry, free_count;
  796. u32 ctrl_word;
  797. long flags;
  798. /* Caution: the write order is important here, set the field with the
  799.    "ownership" bit last. */
  800. /* Calculate the next Tx descriptor entry. */
  801. spin_lock_irqsave(&ep->lock, flags);
  802. free_count = ep->cur_tx - ep->dirty_tx;
  803. entry = ep->cur_tx % TX_RING_SIZE;
  804. ep->tx_skbuff[entry] = skb;
  805. ep->tx_ring[entry].bufaddr = pci_map_single(ep->pci_dev, skb->data, 
  806.               skb->len, PCI_DMA_TODEVICE);
  807. if (free_count < TX_QUEUE_LEN/2) {/* Typical path */
  808. ctrl_word = cpu_to_le32(0x100000); /* No interrupt */
  809. } else if (free_count == TX_QUEUE_LEN/2) {
  810. ctrl_word = cpu_to_le32(0x140000); /* Tx-done intr. */
  811. } else if (free_count < TX_QUEUE_LEN - 1) {
  812. ctrl_word = cpu_to_le32(0x100000); /* No Tx-done intr. */
  813. } else {
  814. /* Leave room for an additional entry. */
  815. ctrl_word = cpu_to_le32(0x140000); /* Tx-done intr. */
  816. ep->tx_full = 1;
  817. }
  818. ep->tx_ring[entry].buflength = ctrl_word | cpu_to_le32(skb->len);
  819. ep->tx_ring[entry].txstatus =
  820. ((skb->len >= ETH_ZLEN ? skb->len : ETH_ZLEN) << 16)
  821. | cpu_to_le32(DescOwn);
  822. ep->cur_tx++;
  823. if (ep->tx_full)
  824. netif_stop_queue(dev);
  825. spin_unlock_irqrestore(&ep->lock, flags);
  826. /* Trigger an immediate transmit demand. */
  827. outl(TxQueued, dev->base_addr + COMMAND);
  828. dev->trans_start = jiffies;
  829. if (debug > 4)
  830. printk(KERN_DEBUG "%s: Queued Tx packet size %d to slot %d, "
  831.    "flag %2.2x Tx status %8.8x.n",
  832.    dev->name, (int)skb->len, entry, ctrl_word,
  833.    (int)inl(dev->base_addr + TxSTAT));
  834. return 0;
  835. }
  836. /* The interrupt handler does all of the Rx thread work and cleans up
  837.    after the Tx thread. */
  838. static void epic_interrupt(int irq, void *dev_instance, struct pt_regs *regs)
  839. {
  840. struct net_device *dev = dev_instance;
  841. struct epic_private *ep = dev->priv;
  842. long ioaddr = dev->base_addr;
  843. int status, boguscnt = max_interrupt_work;
  844. do {
  845. status = inl(ioaddr + INTSTAT);
  846. /* Acknowledge all of the current interrupt sources ASAP. */
  847. outl(status & 0x00007fff, ioaddr + INTSTAT);
  848. if (debug > 4)
  849. printk(KERN_DEBUG "%s: Interrupt, status=%#8.8x new "
  850.    "intstat=%#8.8x.n",
  851.    dev->name, status, (int)inl(ioaddr + INTSTAT));
  852. if ((status & IntrSummary) == 0)
  853. break;
  854. if (status & (RxDone | RxStarted | RxEarlyWarn | RxOverflow))
  855. epic_rx(dev);
  856. if (status & (TxEmpty | TxDone)) {
  857. unsigned int dirty_tx, cur_tx;
  858. /* Note: if this lock becomes a problem we can narrow the locked
  859.    region at the cost of occasionally grabbing the lock more
  860.    times. */
  861. spin_lock(&ep->lock);
  862. cur_tx = ep->cur_tx;
  863. dirty_tx = ep->dirty_tx;
  864. for (; cur_tx - dirty_tx > 0; dirty_tx++) {
  865. struct sk_buff *skb;
  866. int entry = dirty_tx % TX_RING_SIZE;
  867. int txstatus = le32_to_cpu(ep->tx_ring[entry].txstatus);
  868. if (txstatus & DescOwn)
  869. break; /* It still hasn't been Txed */
  870. if ( ! (txstatus & 0x0001)) {
  871. /* There was an major error, log it. */
  872. #ifndef final_version
  873. if (debug > 1)
  874. printk(KERN_DEBUG "%s: Transmit error, Tx status %8.8x.n",
  875.    dev->name, txstatus);
  876. #endif
  877. ep->stats.tx_errors++;
  878. if (txstatus & 0x1050) ep->stats.tx_aborted_errors++;
  879. if (txstatus & 0x0008) ep->stats.tx_carrier_errors++;
  880. if (txstatus & 0x0040) ep->stats.tx_window_errors++;
  881. if (txstatus & 0x0010) ep->stats.tx_fifo_errors++;
  882. #ifdef ETHER_STATS
  883. if (txstatus & 0x1000) ep->stats.collisions16++;
  884. #endif
  885. } else {
  886. #ifdef ETHER_STATS
  887. if ((txstatus & 0x0002) != 0) ep->stats.tx_deferred++;
  888. #endif
  889. ep->stats.collisions += (txstatus >> 8) & 15;
  890. ep->stats.tx_packets++;
  891. ep->stats.tx_bytes += ep->tx_skbuff[entry]->len;
  892. }
  893. /* Free the original skb. */
  894. skb = ep->tx_skbuff[entry];
  895. pci_unmap_single(ep->pci_dev, ep->tx_ring[entry].bufaddr, 
  896.  skb->len, PCI_DMA_TODEVICE);
  897. dev_kfree_skb_irq(skb);
  898. ep->tx_skbuff[entry] = 0;
  899. }
  900. #ifndef final_version
  901. if (cur_tx - dirty_tx > TX_RING_SIZE) {
  902. printk(KERN_WARNING "%s: Out-of-sync dirty pointer, %d vs. %d, full=%d.n",
  903.    dev->name, dirty_tx, cur_tx, ep->tx_full);
  904. dirty_tx += TX_RING_SIZE;
  905. }
  906. #endif
  907. ep->dirty_tx = dirty_tx;
  908. if (ep->tx_full
  909. && cur_tx - dirty_tx < TX_QUEUE_LEN - 4) {
  910. /* The ring is no longer full, allow new TX entries. */
  911. ep->tx_full = 0;
  912. spin_unlock(&ep->lock);
  913. netif_wake_queue(dev);
  914. } else
  915. spin_unlock(&ep->lock);
  916. }
  917. /* Check uncommon events all at once. */
  918. if (status & (CntFull | TxUnderrun | RxOverflow | RxFull |
  919.   PCIBusErr170 | PCIBusErr175)) {
  920. if (status == 0xffffffff) /* Chip failed or removed (CardBus). */
  921. break;
  922. /* Always update the error counts to avoid overhead later. */
  923. ep->stats.rx_missed_errors += inb(ioaddr + MPCNT);
  924. ep->stats.rx_frame_errors += inb(ioaddr + ALICNT);
  925. ep->stats.rx_crc_errors += inb(ioaddr + CRCCNT);
  926. if (status & TxUnderrun) { /* Tx FIFO underflow. */
  927. ep->stats.tx_fifo_errors++;
  928. outl(ep->tx_threshold += 128, ioaddr + TxThresh);
  929. /* Restart the transmit process. */
  930. outl(RestartTx, ioaddr + COMMAND);
  931. }
  932. if (status & RxOverflow) { /* Missed a Rx frame. */
  933. ep->stats.rx_errors++;
  934. }
  935. if (status & (RxOverflow | RxFull))
  936. outw(RxQueued, ioaddr + COMMAND);
  937. if (status & PCIBusErr170) {
  938. printk(KERN_ERR "%s: PCI Bus Error!  EPIC status %4.4x.n",
  939.    dev->name, status);
  940. epic_pause(dev);
  941. epic_restart(dev);
  942. }
  943. /* Clear all error sources. */
  944. outl(status & 0x7f18, ioaddr + INTSTAT);
  945. }
  946. if (--boguscnt < 0) {
  947. printk(KERN_ERR "%s: Too much work at interrupt, "
  948.    "IntrStatus=0x%8.8x.n",
  949.    dev->name, status);
  950. /* Clear all interrupt sources. */
  951. outl(0x0001ffff, ioaddr + INTSTAT);
  952. break;
  953. }
  954. } while (1);
  955. if (debug > 3)
  956. printk(KERN_DEBUG "%s: exiting interrupt, intr_status=%#4.4x.n",
  957.    dev->name, status);
  958. return;
  959. }
  960. static int epic_rx(struct net_device *dev)
  961. {
  962. struct epic_private *ep = dev->priv;
  963. int entry = ep->cur_rx % RX_RING_SIZE;
  964. int rx_work_limit = ep->dirty_rx + RX_RING_SIZE - ep->cur_rx;
  965. int work_done = 0;
  966. if (debug > 4)
  967. printk(KERN_DEBUG " In epic_rx(), entry %d %8.8x.n", entry,
  968.    ep->rx_ring[entry].rxstatus);
  969. /* If we own the next entry, it's a new packet. Send it up. */
  970. while ((ep->rx_ring[entry].rxstatus & cpu_to_le32(DescOwn)) == 0) {
  971. int status = le32_to_cpu(ep->rx_ring[entry].rxstatus);
  972. if (debug > 4)
  973. printk(KERN_DEBUG "  epic_rx() status was %8.8x.n", status);
  974. if (--rx_work_limit < 0)
  975. break;
  976. if (status & 0x2006) {
  977. if (debug > 2)
  978. printk(KERN_DEBUG "%s: epic_rx() error status was %8.8x.n",
  979.    dev->name, status);
  980. if (status & 0x2000) {
  981. printk(KERN_WARNING "%s: Oversized Ethernet frame spanned "
  982.    "multiple buffers, status %4.4x!n", dev->name, status);
  983. ep->stats.rx_length_errors++;
  984. } else if (status & 0x0006)
  985. /* Rx Frame errors are counted in hardware. */
  986. ep->stats.rx_errors++;
  987. } else {
  988. /* Malloc up new buffer, compatible with net-2e. */
  989. /* Omit the four octet CRC from the length. */
  990. short pkt_len = (status >> 16) - 4;
  991. struct sk_buff *skb;
  992. pci_dma_sync_single(ep->pci_dev, ep->rx_ring[entry].bufaddr, 
  993.     ep->rx_buf_sz, PCI_DMA_FROMDEVICE);
  994. if (pkt_len > PKT_BUF_SZ - 4) {
  995. printk(KERN_ERR "%s: Oversized Ethernet frame, status %x "
  996.    "%d bytes.n",
  997.    dev->name, status, pkt_len);
  998. pkt_len = 1514;
  999. }
  1000. /* Check if the packet is long enough to accept without copying
  1001.    to a minimally-sized skbuff. */
  1002. if (pkt_len < rx_copybreak
  1003. && (skb = dev_alloc_skb(pkt_len + 2)) != NULL) {
  1004. skb->dev = dev;
  1005. skb_reserve(skb, 2); /* 16 byte align the IP header */
  1006. #if 1 /* HAS_IP_COPYSUM */
  1007. eth_copy_and_sum(skb, ep->rx_skbuff[entry]->tail, pkt_len, 0);
  1008. skb_put(skb, pkt_len);
  1009. #else
  1010. memcpy(skb_put(skb, pkt_len), ep->rx_skbuff[entry]->tail,
  1011.    pkt_len);
  1012. #endif
  1013. } else {
  1014. pci_unmap_single(ep->pci_dev, 
  1015. ep->rx_ring[entry].bufaddr, 
  1016. ep->rx_buf_sz, PCI_DMA_FROMDEVICE);
  1017. skb_put(skb = ep->rx_skbuff[entry], pkt_len);
  1018. ep->rx_skbuff[entry] = NULL;
  1019. }
  1020. skb->protocol = eth_type_trans(skb, dev);
  1021. netif_rx(skb);
  1022. dev->last_rx = jiffies;
  1023. ep->stats.rx_packets++;
  1024. ep->stats.rx_bytes += pkt_len;
  1025. }
  1026. work_done++;
  1027. entry = (++ep->cur_rx) % RX_RING_SIZE;
  1028. }
  1029. /* Refill the Rx ring buffers. */
  1030. for (; ep->cur_rx - ep->dirty_rx > 0; ep->dirty_rx++) {
  1031. entry = ep->dirty_rx % RX_RING_SIZE;
  1032. if (ep->rx_skbuff[entry] == NULL) {
  1033. struct sk_buff *skb;
  1034. skb = ep->rx_skbuff[entry] = dev_alloc_skb(ep->rx_buf_sz);
  1035. if (skb == NULL)
  1036. break;
  1037. skb->dev = dev; /* Mark as being used by this device. */
  1038. skb_reserve(skb, 2); /* Align IP on 16 byte boundaries */
  1039. ep->rx_ring[entry].bufaddr = pci_map_single(ep->pci_dev, 
  1040. skb->tail, ep->rx_buf_sz, PCI_DMA_FROMDEVICE);
  1041. work_done++;
  1042. }
  1043. ep->rx_ring[entry].rxstatus = cpu_to_le32(DescOwn);
  1044. }
  1045. return work_done;
  1046. }
  1047. static int epic_close(struct net_device *dev)
  1048. {
  1049. long ioaddr = dev->base_addr;
  1050. struct epic_private *ep = dev->priv;
  1051. struct sk_buff *skb;
  1052. int i;
  1053. netif_stop_queue(dev);
  1054. if (debug > 1)
  1055. printk(KERN_DEBUG "%s: Shutting down ethercard, status was %2.2x.n",
  1056.    dev->name, (int)inl(ioaddr + INTSTAT));
  1057. del_timer_sync(&ep->timer);
  1058. epic_pause(dev);
  1059. free_irq(dev->irq, dev);
  1060. /* Free all the skbuffs in the Rx queue. */
  1061. for (i = 0; i < RX_RING_SIZE; i++) {
  1062. skb = ep->rx_skbuff[i];
  1063. ep->rx_skbuff[i] = 0;
  1064. ep->rx_ring[i].rxstatus = 0; /* Not owned by Epic chip. */
  1065. ep->rx_ring[i].buflength = 0;
  1066. if (skb) {
  1067. pci_unmap_single(ep->pci_dev, ep->rx_ring[i].bufaddr, 
  1068.    ep->rx_buf_sz, PCI_DMA_FROMDEVICE);
  1069. dev_kfree_skb(skb);
  1070. }
  1071. ep->rx_ring[i].bufaddr = 0xBADF00D0; /* An invalid address. */
  1072. }
  1073. for (i = 0; i < TX_RING_SIZE; i++) {
  1074. skb = ep->tx_skbuff[i];
  1075. ep->tx_skbuff[i] = 0;
  1076. if (!skb)
  1077. continue;
  1078. pci_unmap_single(ep->pci_dev, ep->tx_ring[i].bufaddr, 
  1079.  skb->len, PCI_DMA_TODEVICE);
  1080. dev_kfree_skb(skb);
  1081. }
  1082. /* Green! Leave the chip in low-power mode. */
  1083. outl(0x0008, ioaddr + GENCTL);
  1084. return 0;
  1085. }
  1086. static struct net_device_stats *epic_get_stats(struct net_device *dev)
  1087. {
  1088. struct epic_private *ep = dev->priv;
  1089. long ioaddr = dev->base_addr;
  1090. if (netif_running(dev)) {
  1091. /* Update the error counts. */
  1092. ep->stats.rx_missed_errors += inb(ioaddr + MPCNT);
  1093. ep->stats.rx_frame_errors += inb(ioaddr + ALICNT);
  1094. ep->stats.rx_crc_errors += inb(ioaddr + CRCCNT);
  1095. }
  1096. return &ep->stats;
  1097. }
  1098. /* Set or clear the multicast filter for this adaptor.
  1099.    Note that we only use exclusion around actually queueing the
  1100.    new frame, not around filling ep->setup_frame.  This is non-deterministic
  1101.    when re-entered but still correct. */
  1102. /* The little-endian AUTODIN II ethernet CRC calculation.
  1103.    N.B. Do not use for bulk data, use a table-based routine instead.
  1104.    This is common code and should be moved to net/core/crc.c */
  1105. static unsigned const ethernet_polynomial_le = 0xedb88320U;
  1106. static inline unsigned ether_crc_le(int length, unsigned char *data)
  1107. {
  1108. unsigned int crc = 0xffffffff; /* Initial value. */
  1109. while(--length >= 0) {
  1110. unsigned char current_octet = *data++;
  1111. int bit;
  1112. for (bit = 8; --bit >= 0; current_octet >>= 1) {
  1113. if ((crc ^ current_octet) & 1) {
  1114. crc >>= 1;
  1115. crc ^= ethernet_polynomial_le;
  1116. } else
  1117. crc >>= 1;
  1118. }
  1119. }
  1120. return crc;
  1121. }
  1122. static void set_rx_mode(struct net_device *dev)
  1123. {
  1124. long ioaddr = dev->base_addr;
  1125. struct epic_private *ep = dev->priv;
  1126. unsigned char mc_filter[8];  /* Multicast hash filter */
  1127. int i;
  1128. if (dev->flags & IFF_PROMISC) { /* Set promiscuous. */
  1129. outl(0x002C, ioaddr + RxCtrl);
  1130. /* Unconditionally log net taps. */
  1131. printk(KERN_INFO "%s: Promiscuous mode enabled.n", dev->name);
  1132. memset(mc_filter, 0xff, sizeof(mc_filter));
  1133. } else if ((dev->mc_count > 0)  ||  (dev->flags & IFF_ALLMULTI)) {
  1134. /* There is apparently a chip bug, so the multicast filter
  1135.    is never enabled. */
  1136. /* Too many to filter perfectly -- accept all multicasts. */
  1137. memset(mc_filter, 0xff, sizeof(mc_filter));
  1138. outl(0x000C, ioaddr + RxCtrl);
  1139. } else if (dev->mc_count == 0) {
  1140. outl(0x0004, ioaddr + RxCtrl);
  1141. return;
  1142. } else { /* Never executed, for now. */
  1143. struct dev_mc_list *mclist;
  1144. memset(mc_filter, 0, sizeof(mc_filter));
  1145. for (i = 0, mclist = dev->mc_list; mclist && i < dev->mc_count;
  1146.  i++, mclist = mclist->next)
  1147. set_bit(ether_crc_le(ETH_ALEN, mclist->dmi_addr) & 0x3f,
  1148. mc_filter);
  1149. }
  1150. /* ToDo: perhaps we need to stop the Tx and Rx process here? */
  1151. if (memcmp(mc_filter, ep->mc_filter, sizeof(mc_filter))) {
  1152. for (i = 0; i < 4; i++)
  1153. outw(((u16 *)mc_filter)[i], ioaddr + MC0 + i*4);
  1154. memcpy(ep->mc_filter, mc_filter, sizeof(mc_filter));
  1155. }
  1156. return;
  1157. }
  1158. static int netdev_ethtool_ioctl (struct net_device *dev, void *useraddr)
  1159. {
  1160. struct epic_private *np = dev->priv;
  1161. u32 ethcmd;
  1162. if (copy_from_user (&ethcmd, useraddr, sizeof (ethcmd)))
  1163. return -EFAULT;
  1164. switch (ethcmd) {
  1165. case ETHTOOL_GDRVINFO: {
  1166. struct ethtool_drvinfo info = { ETHTOOL_GDRVINFO };
  1167. strcpy (info.driver, DRV_NAME);
  1168. strcpy (info.version, DRV_VERSION);
  1169. strcpy (info.bus_info, np->pci_dev->slot_name);
  1170. if (copy_to_user (useraddr, &info, sizeof (info)))
  1171. return -EFAULT;
  1172. return 0;
  1173. }
  1174. /* get settings */
  1175. case ETHTOOL_GSET: {
  1176. struct ethtool_cmd ecmd = { ETHTOOL_GSET };
  1177. spin_lock_irq(&np->lock);
  1178. mii_ethtool_gset(&np->mii, &ecmd);
  1179. spin_unlock_irq(&np->lock);
  1180. if (copy_to_user(useraddr, &ecmd, sizeof(ecmd)))
  1181. return -EFAULT;
  1182. return 0;
  1183. }
  1184. /* set settings */
  1185. case ETHTOOL_SSET: {
  1186. int r;
  1187. struct ethtool_cmd ecmd;
  1188. if (copy_from_user(&ecmd, useraddr, sizeof(ecmd)))
  1189. return -EFAULT;
  1190. spin_lock_irq(&np->lock);
  1191. r = mii_ethtool_sset(&np->mii, &ecmd);
  1192. spin_unlock_irq(&np->lock);
  1193. return r;
  1194. }
  1195. /* restart autonegotiation */
  1196. case ETHTOOL_NWAY_RST: {
  1197. return mii_nway_restart(&np->mii);
  1198. }
  1199. /* get link status */
  1200. case ETHTOOL_GLINK: {
  1201. struct ethtool_value edata = {ETHTOOL_GLINK};
  1202. edata.data = mii_link_ok(&np->mii);
  1203. if (copy_to_user(useraddr, &edata, sizeof(edata)))
  1204. return -EFAULT;
  1205. return 0;
  1206. }
  1207. /* get message-level */
  1208. case ETHTOOL_GMSGLVL: {
  1209. struct ethtool_value edata = {ETHTOOL_GMSGLVL};
  1210. edata.data = debug;
  1211. if (copy_to_user(useraddr, &edata, sizeof(edata)))
  1212. return -EFAULT;
  1213. return 0;
  1214. }
  1215. /* set message-level */
  1216. case ETHTOOL_SMSGLVL: {
  1217. struct ethtool_value edata;
  1218. if (copy_from_user(&edata, useraddr, sizeof(edata)))
  1219. return -EFAULT;
  1220. debug = edata.data;
  1221. return 0;
  1222. }
  1223. default:
  1224. break;
  1225. }
  1226. return -EOPNOTSUPP;
  1227. }
  1228. static int netdev_ioctl(struct net_device *dev, struct ifreq *rq, int cmd)
  1229. {
  1230. struct epic_private *ep = dev->priv;
  1231. long ioaddr = dev->base_addr;
  1232. struct mii_ioctl_data *data = (struct mii_ioctl_data *)&rq->ifr_data;
  1233. switch(cmd) {
  1234. case SIOCETHTOOL:
  1235. return netdev_ethtool_ioctl(dev, (void *) rq->ifr_data);
  1236. case SIOCGMIIPHY: /* Get address of MII PHY in use. */
  1237. case SIOCDEVPRIVATE: /* for binary compat, remove in 2.5 */
  1238. data->phy_id = ep->phys[0] & 0x1f;
  1239. /* Fall Through */
  1240. case SIOCGMIIREG: /* Read MII PHY register. */
  1241. case SIOCDEVPRIVATE+1: /* for binary compat, remove in 2.5 */
  1242. if (! netif_running(dev)) {
  1243. outl(0x0200, ioaddr + GENCTL);
  1244. outl((inl(ioaddr + NVCTL) & ~0x003C) | 0x4800, ioaddr + NVCTL);
  1245. }
  1246. data->val_out = mdio_read(dev, data->phy_id & 0x1f, data->reg_num & 0x1f);
  1247. #if 0 /* Just leave on if the ioctl() is ever used. */
  1248. if (! netif_running(dev)) {
  1249. outl(0x0008, ioaddr + GENCTL);
  1250. outl((inl(ioaddr + NVCTL) & ~0x483C) | 0x0000, ioaddr + NVCTL);
  1251. }
  1252. #endif
  1253. return 0;
  1254. case SIOCSMIIREG: /* Write MII PHY register. */
  1255. case SIOCDEVPRIVATE+2: /* for binary compat, remove in 2.5 */
  1256. if (!capable(CAP_NET_ADMIN))
  1257. return -EPERM;
  1258. if (! netif_running(dev)) {
  1259. outl(0x0200, ioaddr + GENCTL);
  1260. outl((inl(ioaddr + NVCTL) & ~0x003C) | 0x4800, ioaddr + NVCTL);
  1261. }
  1262. if (data->phy_id == ep->phys[0]) {
  1263. u16 value = data->val_in;
  1264. switch (data->reg_num) {
  1265. case 0:
  1266. /* Check for autonegotiation on or reset. */
  1267. ep->mii.duplex_lock = (value & 0x9000) ? 0 : 1;
  1268. if (ep->mii.duplex_lock)
  1269. ep->mii.full_duplex = (value & 0x0100) ? 1 : 0;
  1270. break;
  1271. case 4: ep->mii.advertising = value; break;
  1272. }
  1273. /* Perhaps check_duplex(dev), depending on chip semantics. */
  1274. }
  1275. mdio_write(dev, data->phy_id & 0x1f, data->reg_num & 0x1f, data->val_in);
  1276. #if 0 /* Leave on if the ioctl() is used. */
  1277. if (! netif_running(dev)) {
  1278. outl(0x0008, ioaddr + GENCTL);
  1279. outl((inl(ioaddr + NVCTL) & ~0x483C) | 0x0000, ioaddr + NVCTL);
  1280. }
  1281. #endif
  1282. return 0;
  1283. default:
  1284. return -EOPNOTSUPP;
  1285. }
  1286. }
  1287. static void __devexit epic_remove_one (struct pci_dev *pdev)
  1288. {
  1289. struct net_device *dev = pci_get_drvdata(pdev);
  1290. struct epic_private *ep = dev->priv;
  1291. pci_free_consistent(pdev, TX_TOTAL_SIZE, ep->tx_ring, ep->tx_ring_dma);
  1292. pci_free_consistent(pdev, RX_TOTAL_SIZE, ep->rx_ring, ep->rx_ring_dma);
  1293. unregister_netdev(dev);
  1294. #ifndef USE_IO_OPS
  1295. iounmap((void*) dev->base_addr);
  1296. #endif
  1297. pci_release_regions(pdev);
  1298. kfree(dev);
  1299. pci_set_drvdata(pdev, NULL);
  1300. /* pci_power_off(pdev, -1); */
  1301. }
  1302. #ifdef CONFIG_PM
  1303. static int epic_suspend (struct pci_dev *pdev, u32 state)
  1304. {
  1305. struct net_device *dev = pci_get_drvdata(pdev);
  1306. long ioaddr = dev->base_addr;
  1307. if (!netif_running(dev))
  1308. return 0;
  1309. epic_pause(dev);
  1310. /* Put the chip into low-power mode. */
  1311. outl(0x0008, ioaddr + GENCTL);
  1312. /* pci_power_off(pdev, -1); */
  1313. return 0;
  1314. }
  1315. static int epic_resume (struct pci_dev *pdev)
  1316. {
  1317. struct net_device *dev = pci_get_drvdata(pdev);
  1318. if (!netif_running(dev))
  1319. return 0;
  1320. epic_restart(dev);
  1321. /* pci_power_on(pdev); */
  1322. return 0;
  1323. }
  1324. #endif /* CONFIG_PM */
  1325. static struct pci_driver epic_driver = {
  1326. name: DRV_NAME,
  1327. id_table: epic_pci_tbl,
  1328. probe: epic_init_one,
  1329. remove: __devexit_p(epic_remove_one),
  1330. #ifdef CONFIG_PM
  1331. suspend: epic_suspend,
  1332. resume: epic_resume,
  1333. #endif /* CONFIG_PM */
  1334. };
  1335. static int __init epic_init (void)
  1336. {
  1337. /* when a module, this is printed whether or not devices are found in probe */
  1338. #ifdef MODULE
  1339. printk (KERN_INFO "%s" KERN_INFO "%s" KERN_INFO "%s",
  1340. version, version2, version3);
  1341. #endif
  1342. return pci_module_init (&epic_driver);
  1343. }
  1344. static void __exit epic_cleanup (void)
  1345. {
  1346. pci_unregister_driver (&epic_driver);
  1347. }
  1348. module_init(epic_init);
  1349. module_exit(epic_cleanup);