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

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2. Written 1998-2000 by Donald Becker.
  3. This software may be used and distributed according to the terms of
  4. the GNU General Public License (GPL), incorporated herein by reference.
  5. Drivers based on or derived from this code fall under the GPL and must
  6. retain the authorship, copyright and license notice.  This file is not
  7. a complete program and may only be used when the entire operating
  8. system is licensed under the GPL.
  9. The author may be reached as becker@scyld.com, or C/O
  10. Scyld Computing Corporation
  11. 410 Severn Ave., Suite 210
  12. Annapolis MD 21403
  13. Support information and updates available at
  14. http://www.scyld.com/network/pci-skeleton.html
  15. Linux kernel updates:
  16. Version 2.51, Nov 17, 2001 (jgarzik):
  17. - Add ethtool support
  18. - Replace some MII-related magic numbers with constants
  19. */
  20. #define DRV_NAME "fealnx"
  21. #define DRV_VERSION "2.51"
  22. #define DRV_RELDATE "Nov-17-2001"
  23. static int debug; /* 1-> print debug message */
  24. static int max_interrupt_work = 20;
  25. /* Maximum number of multicast addresses to filter (vs. Rx-all-multicast). */
  26. static int multicast_filter_limit = 32;
  27. /* Set the copy breakpoint for the copy-only-tiny-frames scheme. */
  28. /* Setting to > 1518 effectively disables this feature.          */
  29. static int rx_copybreak;
  30. /* Used to pass the media type, etc.                            */
  31. /* Both 'options[]' and 'full_duplex[]' should exist for driver */
  32. /* interoperability.                                            */
  33. /* The media type is usually passed in 'options[]'.             */
  34. #define MAX_UNITS 8 /* More are supported, limit only on options */
  35. static int options[MAX_UNITS] = { -1, -1, -1, -1, -1, -1, -1, -1 };
  36. static int full_duplex[MAX_UNITS] = { -1, -1, -1, -1, -1, -1, -1, -1 };
  37. /* Operational parameters that are set at compile time.                 */
  38. /* Keep the ring sizes a power of two for compile efficiency.           */
  39. /* The compiler will convert <unsigned>'%'<2^N> into a bit mask.        */
  40. /* Making the Tx ring too large decreases the effectiveness of channel  */
  41. /* bonding and packet priority.                                         */
  42. /* There are no ill effects from too-large receive rings.               */
  43. // 88-12-9 modify,
  44. // #define TX_RING_SIZE    16
  45. // #define RX_RING_SIZE    32
  46. #define TX_RING_SIZE    6
  47. #define RX_RING_SIZE    12
  48. #define TX_TOTAL_SIZE TX_RING_SIZE*sizeof(struct fealnx_desc)
  49. #define RX_TOTAL_SIZE RX_RING_SIZE*sizeof(struct fealnx_desc)
  50. /* Operational parameters that usually are not changed. */
  51. /* Time in jiffies before concluding the transmitter is hung. */
  52. #define TX_TIMEOUT      (2*HZ)
  53. #define PKT_BUF_SZ      1536 /* Size of each temporary Rx buffer. */
  54. /* Include files, designed to support most kernel versions 2.0.0 and later. */
  55. #include <linux/module.h>
  56. #include <linux/kernel.h>
  57. #include <linux/sched.h>
  58. #include <linux/string.h>
  59. #include <linux/timer.h>
  60. #include <linux/errno.h>
  61. #include <linux/ioport.h>
  62. #include <linux/slab.h>
  63. #include <linux/interrupt.h>
  64. #include <linux/pci.h>
  65. #include <linux/netdevice.h>
  66. #include <linux/etherdevice.h>
  67. #include <linux/skbuff.h>
  68. #include <linux/init.h>
  69. #include <linux/mii.h>
  70. #include <linux/ethtool.h>
  71. #include <asm/processor.h> /* Processor type for cache alignment. */
  72. #include <asm/bitops.h>
  73. #include <asm/io.h>
  74. #include <asm/uaccess.h>
  75. /* These identify the driver base version and may not be removed. */
  76. static char version[] __devinitdata =
  77. KERN_INFO DRV_NAME ".c:v" DRV_VERSION " " DRV_RELDATE "n";
  78. /* This driver was written to use PCI memory space, however some x86 systems
  79.    work only with I/O space accesses. */
  80. #ifndef __alpha__
  81. #define USE_IO_OPS
  82. #endif
  83. #ifdef USE_IO_OPS
  84. #undef readb
  85. #undef readw
  86. #undef readl
  87. #undef writeb
  88. #undef writew
  89. #undef writel
  90. #define readb inb
  91. #define readw inw
  92. #define readl inl
  93. #define writeb outb
  94. #define writew outw
  95. #define writel outl
  96. #endif
  97. /* Kernel compatibility defines, some common to David Hinds' PCMCIA package. */
  98. /* This is only in the support-all-kernels source code. */
  99. #define RUN_AT(x) (jiffies + (x))
  100. MODULE_AUTHOR("Myson or whoever");
  101. MODULE_DESCRIPTION("Myson MTD-8xx 100/10M Ethernet PCI Adapter Driver");
  102. MODULE_LICENSE("GPL");
  103. MODULE_PARM(max_interrupt_work, "i");
  104. //MODULE_PARM(min_pci_latency, "i");
  105. MODULE_PARM(debug, "i");
  106. MODULE_PARM(rx_copybreak, "i");
  107. MODULE_PARM(multicast_filter_limit, "i");
  108. MODULE_PARM(options, "1-" __MODULE_STRING(MAX_UNITS) "i");
  109. MODULE_PARM(full_duplex, "1-" __MODULE_STRING(MAX_UNITS) "i");
  110. MODULE_PARM_DESC(max_interrupt_work, "fealnx maximum events handled per interrupt");
  111. MODULE_PARM_DESC(debug, "fealnx enable debugging (0-1)");
  112. MODULE_PARM_DESC(rx_copybreak, "fealnx copy breakpoint for copy-only-tiny-frames");
  113. MODULE_PARM_DESC(multicast_filter_limit, "fealnx maximum number of filtered multicast addresses");
  114. MODULE_PARM_DESC(options, "fealnx: Bits 0-3: media type, bit 17: full duplex");
  115. MODULE_PARM_DESC(full_duplex, "fealnx full duplex setting(s) (1)");
  116. #define MIN_REGION_SIZE 136
  117. enum pci_flags_bit {
  118. PCI_USES_IO = 1,
  119. PCI_USES_MEM = 2,
  120. PCI_USES_MASTER = 4,
  121. PCI_ADDR0 = 0x10 << 0,
  122. PCI_ADDR1 = 0x10 << 1,
  123. PCI_ADDR2 = 0x10 << 2,
  124. PCI_ADDR3 = 0x10 << 3,
  125. };
  126. /* A chip capabilities table, matching the entries in pci_tbl[] above. */
  127. enum chip_capability_flags {
  128. HAS_MII_XCVR,
  129. HAS_CHIP_XCVR,
  130. };
  131. /* 89/6/13 add, */
  132. /* for different PHY */
  133. enum phy_type_flags {
  134. MysonPHY = 1,
  135. AhdocPHY = 2,
  136. SeeqPHY = 3,
  137. MarvellPHY = 4,
  138. Myson981 = 5,
  139. LevelOnePHY = 6,
  140. OtherPHY = 10,
  141. };
  142. struct chip_info {
  143. char *chip_name;
  144. int io_size;
  145. int flags;
  146. };
  147. static struct chip_info skel_netdrv_tbl[] = {
  148. {"100/10M Ethernet PCI Adapter", 136, HAS_MII_XCVR},
  149. {"100/10M Ethernet PCI Adapter", 136, HAS_CHIP_XCVR},
  150. {"1000/100/10M Ethernet PCI Adapter", 136, HAS_MII_XCVR},
  151. };
  152. /* Offsets to the Command and Status Registers. */
  153. enum fealnx_offsets {
  154. PAR0 = 0x0, /* physical address 0-3 */
  155. PAR1 = 0x04, /* physical address 4-5 */
  156. MAR0 = 0x08, /* multicast address 0-3 */
  157. MAR1 = 0x0C, /* multicast address 4-7 */
  158. FAR0 = 0x10, /* flow-control address 0-3 */
  159. FAR1 = 0x14, /* flow-control address 4-5 */
  160. TCRRCR = 0x18, /* receive & transmit configuration */
  161. BCR = 0x1C, /* bus command */
  162. TXPDR = 0x20, /* transmit polling demand */
  163. RXPDR = 0x24, /* receive polling demand */
  164. RXCWP = 0x28, /* receive current word pointer */
  165. TXLBA = 0x2C, /* transmit list base address */
  166. RXLBA = 0x30, /* receive list base address */
  167. ISR = 0x34, /* interrupt status */
  168. IMR = 0x38, /* interrupt mask */
  169. FTH = 0x3C, /* flow control high/low threshold */
  170. MANAGEMENT = 0x40, /* bootrom/eeprom and mii management */
  171. TALLY = 0x44, /* tally counters for crc and mpa */
  172. TSR = 0x48, /* tally counter for transmit status */
  173. BMCRSR = 0x4c, /* basic mode control and status */
  174. PHYIDENTIFIER = 0x50, /* phy identifier */
  175. ANARANLPAR = 0x54, /* auto-negotiation advertisement and link
  176.    partner ability */
  177. ANEROCR = 0x58, /* auto-negotiation expansion and pci conf. */
  178. BPREMRPSR = 0x5c, /* bypass & receive error mask and phy status */
  179. };
  180. /* Bits in the interrupt status/enable registers. */
  181. /* The bits in the Intr Status/Enable registers, mostly interrupt sources. */
  182. enum intr_status_bits {
  183. RFCON = 0x00020000, /* receive flow control xon packet */
  184. RFCOFF = 0x00010000, /* receive flow control xoff packet */
  185. LSCStatus = 0x00008000, /* link status change */
  186. ANCStatus = 0x00004000, /* autonegotiation completed */
  187. FBE = 0x00002000, /* fatal bus error */
  188. FBEMask = 0x00001800, /* mask bit12-11 */
  189. ParityErr = 0x00000000, /* parity error */
  190. TargetErr = 0x00001000, /* target abort */
  191. MasterErr = 0x00000800, /* master error */
  192. TUNF = 0x00000400, /* transmit underflow */
  193. ROVF = 0x00000200, /* receive overflow */
  194. ETI = 0x00000100, /* transmit early int */
  195. ERI = 0x00000080, /* receive early int */
  196. CNTOVF = 0x00000040, /* counter overflow */
  197. RBU = 0x00000020, /* receive buffer unavailable */
  198. TBU = 0x00000010, /* transmit buffer unavilable */
  199. TI = 0x00000008, /* transmit interrupt */
  200. RI = 0x00000004, /* receive interrupt */
  201. RxErr = 0x00000002, /* receive error */
  202. };
  203. /* Bits in the NetworkConfig register. */
  204. enum rx_mode_bits {
  205. RxModeMask = 0xe0,
  206. PROM = 0x80, /* promiscuous mode */
  207. AB = 0x40, /* accept broadcast */
  208. AM = 0x20, /* accept mutlicast */
  209. ARP = 0x08, /* receive runt pkt */
  210. ALP = 0x04, /* receive long pkt */
  211. SEP = 0x02, /* receive error pkt */
  212. };
  213. /* The Tulip Rx and Tx buffer descriptors. */
  214. struct fealnx_desc {
  215. s32 status;
  216. s32 control;
  217. u32 buffer;
  218. u32 next_desc;
  219. struct fealnx_desc *next_desc_logical;
  220. struct sk_buff *skbuff;
  221. u32 reserved1;
  222. u32 reserved2;
  223. };
  224. /* Bits in network_desc.status */
  225. enum rx_desc_status_bits {
  226. RXOWN = 0x80000000, /* own bit */
  227. FLNGMASK = 0x0fff0000, /* frame length */
  228. FLNGShift = 16,
  229. MARSTATUS = 0x00004000, /* multicast address received */
  230. BARSTATUS = 0x00002000, /* broadcast address received */
  231. PHYSTATUS = 0x00001000, /* physical address received */
  232. RXFSD = 0x00000800, /* first descriptor */
  233. RXLSD = 0x00000400, /* last descriptor */
  234. ErrorSummary = 0x80, /* error summary */
  235. RUNT = 0x40, /* runt packet received */
  236. LONG = 0x20, /* long packet received */
  237. FAE = 0x10, /* frame align error */
  238. CRC = 0x08, /* crc error */
  239. RXER = 0x04, /* receive error */
  240. };
  241. enum rx_desc_control_bits {
  242. RXIC = 0x00800000, /* interrupt control */
  243. RBSShift = 0,
  244. };
  245. enum tx_desc_status_bits {
  246. TXOWN = 0x80000000, /* own bit */
  247. JABTO = 0x00004000, /* jabber timeout */
  248. CSL = 0x00002000, /* carrier sense lost */
  249. LC = 0x00001000, /* late collision */
  250. EC = 0x00000800, /* excessive collision */
  251. UDF = 0x00000400, /* fifo underflow */
  252. DFR = 0x00000200, /* deferred */
  253. HF = 0x00000100, /* heartbeat fail */
  254. NCRMask = 0x000000ff, /* collision retry count */
  255. NCRShift = 0,
  256. };
  257. enum tx_desc_control_bits {
  258. TXIC = 0x80000000, /* interrupt control */
  259. ETIControl = 0x40000000, /* early transmit interrupt */
  260. TXLD = 0x20000000, /* last descriptor */
  261. TXFD = 0x10000000, /* first descriptor */
  262. CRCEnable = 0x08000000, /* crc control */
  263. PADEnable = 0x04000000, /* padding control */
  264. RetryTxLC = 0x02000000, /* retry late collision */
  265. PKTSMask = 0x3ff800, /* packet size bit21-11 */
  266. PKTSShift = 11,
  267. TBSMask = 0x000007ff, /* transmit buffer bit 10-0 */
  268. TBSShift = 0,
  269. };
  270. /* BootROM/EEPROM/MII Management Register */
  271. #define MASK_MIIR_MII_READ       0x00000000
  272. #define MASK_MIIR_MII_WRITE      0x00000008
  273. #define MASK_MIIR_MII_MDO        0x00000004
  274. #define MASK_MIIR_MII_MDI        0x00000002
  275. #define MASK_MIIR_MII_MDC        0x00000001
  276. /* ST+OP+PHYAD+REGAD+TA */
  277. #define OP_READ             0x6000 /* ST:01+OP:10+PHYAD+REGAD+TA:Z0 */
  278. #define OP_WRITE            0x5002 /* ST:01+OP:01+PHYAD+REGAD+TA:10 */
  279. /* ------------------------------------------------------------------------- */
  280. /*      Constants for Myson PHY                                              */
  281. /* ------------------------------------------------------------------------- */
  282. #define MysonPHYID      0xd0000302
  283. /* 89-7-27 add, (begin) */
  284. #define MysonPHYID0     0x0302
  285. #define StatusRegister  18
  286. #define SPEED100        0x0400 // bit10
  287. #define FULLMODE        0x0800 // bit11
  288. /* 89-7-27 add, (end) */
  289. /* ------------------------------------------------------------------------- */
  290. /*      Constants for Seeq 80225 PHY                                         */
  291. /* ------------------------------------------------------------------------- */
  292. #define SeeqPHYID0      0x0016
  293. #define MIIRegister18   18
  294. #define SPD_DET_100     0x80
  295. #define DPLX_DET_FULL   0x40
  296. /* ------------------------------------------------------------------------- */
  297. /*      Constants for Ahdoc 101 PHY                                          */
  298. /* ------------------------------------------------------------------------- */
  299. #define AhdocPHYID0     0x0022
  300. #define DiagnosticReg   18
  301. #define DPLX_FULL       0x0800
  302. #define Speed_100       0x0400
  303. /* 89/6/13 add, */
  304. /* -------------------------------------------------------------------------- */
  305. /*      Constants                                                             */
  306. /* -------------------------------------------------------------------------- */
  307. #define MarvellPHYID0           0x0141
  308. #define LevelOnePHYID0 0x0013
  309. #define MII1000BaseTControlReg  9
  310. #define MII1000BaseTStatusReg   10
  311. #define SpecificReg 17
  312. /* for 1000BaseT Control Register */
  313. #define PHYAbletoPerform1000FullDuplex  0x0200
  314. #define PHYAbletoPerform1000HalfDuplex  0x0100
  315. #define PHY1000AbilityMask              0x300
  316. // for phy specific status register, marvell phy.
  317. #define SpeedMask       0x0c000
  318. #define Speed_1000M     0x08000
  319. #define Speed_100M      0x4000
  320. #define Speed_10M       0
  321. #define Full_Duplex     0x2000
  322. // 89/12/29 add, for phy specific status register, levelone phy, (begin)
  323. #define LXT1000_100M    0x08000
  324. #define LXT1000_1000M   0x0c000
  325. #define LXT1000_Full    0x200
  326. // 89/12/29 add, for phy specific status register, levelone phy, (end)
  327. /* for 3-in-1 case */
  328. #define PS10            0x00080000
  329. #define FD              0x00100000
  330. #define PS1000          0x00010000
  331. #define LinkIsUp2 0x00040000
  332. /* for PHY */
  333. #define LinkIsUp        0x0004
  334. struct netdev_private {
  335. /* Descriptor rings first for alignment. */
  336. struct fealnx_desc *rx_ring;
  337. struct fealnx_desc *tx_ring;
  338. dma_addr_t rx_ring_dma;
  339. dma_addr_t tx_ring_dma;
  340. spinlock_t lock;
  341. struct net_device_stats stats;
  342. /* Media monitoring timer. */
  343. struct timer_list timer;
  344. /* Frequently used values: keep some adjacent for cache effect. */
  345. int flags;
  346. struct pci_dev *pci_dev;
  347. unsigned long crvalue;
  348. unsigned long bcrvalue;
  349. unsigned long imrvalue;
  350. struct fealnx_desc *cur_rx;
  351. struct fealnx_desc *lack_rxbuf;
  352. int really_rx_count;
  353. struct fealnx_desc *cur_tx;
  354. struct fealnx_desc *cur_tx_copy;
  355. int really_tx_count;
  356. int free_tx_count;
  357. unsigned int rx_buf_sz; /* Based on MTU+slack. */
  358. /* These values are keep track of the transceiver/media in use. */
  359. unsigned int linkok;
  360. unsigned int line_speed;
  361. unsigned int duplexmode;
  362. unsigned int default_port:4; /* Last dev->if_port value. */
  363. unsigned int PHYType;
  364. /* MII transceiver section. */
  365. int mii_cnt; /* MII device addresses. */
  366. unsigned char phys[2]; /* MII device addresses. */
  367. struct mii_if_info mii;
  368. };
  369. static int mdio_read(struct net_device *dev, int phy_id, int location);
  370. static void mdio_write(struct net_device *dev, int phy_id, int location, int value);
  371. static int netdev_open(struct net_device *dev);
  372. static void getlinktype(struct net_device *dev);
  373. static void getlinkstatus(struct net_device *dev);
  374. static void netdev_timer(unsigned long data);
  375. static void tx_timeout(struct net_device *dev);
  376. static void init_ring(struct net_device *dev);
  377. static int start_tx(struct sk_buff *skb, struct net_device *dev);
  378. static void intr_handler(int irq, void *dev_instance, struct pt_regs *regs);
  379. static int netdev_rx(struct net_device *dev);
  380. static inline unsigned ether_crc(int length, unsigned char *data);
  381. static void set_rx_mode(struct net_device *dev);
  382. static struct net_device_stats *get_stats(struct net_device *dev);
  383. static int mii_ioctl(struct net_device *dev, struct ifreq *rq, int cmd);
  384. static int netdev_close(struct net_device *dev);
  385. static void reset_rx_descriptors(struct net_device *dev);
  386. void stop_nic_tx(long ioaddr, long crvalue)
  387. {
  388. writel(crvalue & (~0x40000), ioaddr + TCRRCR);
  389. /* wait for tx stop */
  390. {
  391. int i = 0, delay = 0x1000;
  392. while ((!(readl(ioaddr + TCRRCR) & 0x04000000)) && (i < delay)) {
  393. ++i;
  394. }
  395. }
  396. }
  397. void stop_nic_rx(long ioaddr, long crvalue)
  398. {
  399. writel(crvalue & (~0x1), ioaddr + TCRRCR);
  400. /* wait for rx stop */
  401. {
  402. int i = 0, delay = 0x1000;
  403. while ((!(readl(ioaddr + TCRRCR) & 0x00008000)) && (i < delay)) {
  404. ++i;
  405. }
  406. }
  407. }
  408. static int __devinit fealnx_init_one(struct pci_dev *pdev,
  409.      const struct pci_device_id *ent)
  410. {
  411. struct netdev_private *np;
  412. int i, option, err, irq;
  413. static int card_idx = -1;
  414. char boardname[12];
  415. long ioaddr;
  416. unsigned int chip_id = ent->driver_data;
  417. struct net_device *dev;
  418. void *ring_space;
  419. dma_addr_t ring_dma;
  420. /* when built into the kernel, we only print version if device is found */
  421. #ifndef MODULE
  422. static int printed_version;
  423. if (!printed_version++)
  424. printk (version);
  425. #endif
  426. card_idx++;
  427. sprintf(boardname, "fealnx%d", card_idx);
  428. option = card_idx < MAX_UNITS ? options[card_idx] : 0;
  429. i = pci_enable_device(pdev);
  430. if (i) return i;
  431. pci_set_master(pdev);
  432. #ifdef USE_IO_OPS
  433. ioaddr = pci_resource_len(pdev, 0);
  434. #else
  435. ioaddr = pci_resource_len(pdev, 1);
  436. #endif
  437. if (ioaddr < MIN_REGION_SIZE) {
  438. printk(KERN_ERR "%s: region size %ld too small, abortingn",
  439.        boardname, ioaddr);
  440. return -ENODEV;
  441. }
  442. i = pci_request_regions(pdev, boardname);
  443. if (i) return i;
  444. irq = pdev->irq;
  445. #ifdef USE_IO_OPS
  446. ioaddr = pci_resource_start(pdev, 0);
  447. #else
  448. ioaddr = (long) ioremap(pci_resource_start(pdev, 1),
  449. pci_resource_len(pdev, 1));
  450. if (!ioaddr) {
  451. err = -ENOMEM;
  452. goto err_out_res;
  453. }
  454. #endif
  455. dev = alloc_etherdev(sizeof(struct netdev_private));
  456. if (!dev) {
  457. err = -ENOMEM;
  458. goto err_out_unmap;
  459. }
  460. SET_MODULE_OWNER(dev);
  461. /* read ethernet id */
  462. for (i = 0; i < 6; ++i)
  463. dev->dev_addr[i] = readb(ioaddr + PAR0 + i);
  464. /* Reset the chip to erase previous misconfiguration. */
  465. writel(0x00000001, ioaddr + BCR);
  466. dev->base_addr = ioaddr;
  467. dev->irq = irq;
  468. /* Make certain the descriptor lists are aligned. */
  469. np = dev->priv;
  470. spin_lock_init(&np->lock);
  471. np->pci_dev = pdev;
  472. np->flags = skel_netdrv_tbl[chip_id].flags;
  473. pci_set_drvdata(pdev, dev);
  474. np->mii.dev = dev;
  475. np->mii.mdio_read = mdio_read;
  476. np->mii.mdio_write = mdio_write;
  477. ring_space = pci_alloc_consistent(pdev, RX_TOTAL_SIZE, &ring_dma);
  478. if (!ring_space) {
  479. err = -ENOMEM;
  480. goto err_out_free_dev;
  481. }
  482. np->rx_ring = (struct fealnx_desc *)ring_space;
  483. np->rx_ring_dma = ring_dma;
  484. ring_space = pci_alloc_consistent(pdev, TX_TOTAL_SIZE, &ring_dma);
  485. if (!ring_space) {
  486. err = -ENOMEM;
  487. goto err_out_free_rx;
  488. }
  489. np->tx_ring = (struct fealnx_desc *)ring_space;
  490. np->tx_ring_dma = ring_dma;
  491. /* find the connected MII xcvrs */
  492. if (np->flags == HAS_MII_XCVR) {
  493. int phy, phy_idx = 0;
  494. for (phy = 1; phy < 32 && phy_idx < 4; phy++) {
  495. int mii_status = mdio_read(dev, phy, 1);
  496. if (mii_status != 0xffff && mii_status != 0x0000) {
  497. np->phys[phy_idx++] = phy;
  498. printk(KERN_INFO
  499.        "%s: MII PHY found at address %d, status "
  500.        "0x%4.4x.n", dev->name, phy, mii_status);
  501. /* get phy type */
  502. {
  503. unsigned int data;
  504. data = mdio_read(dev, np->phys[0], 2);
  505. if (data == SeeqPHYID0)
  506. np->PHYType = SeeqPHY;
  507. else if (data == AhdocPHYID0)
  508. np->PHYType = AhdocPHY;
  509. else if (data == MarvellPHYID0)
  510. np->PHYType = MarvellPHY;
  511. else if (data == MysonPHYID0)
  512. np->PHYType = Myson981;
  513. else if (data == LevelOnePHYID0)
  514. np->PHYType = LevelOnePHY;
  515. else
  516. np->PHYType = OtherPHY;
  517. }
  518. }
  519. }
  520. np->mii_cnt = phy_idx;
  521. if (phy_idx == 0) {
  522. printk(KERN_WARNING "%s: MII PHY not found -- this device may "
  523.        "not operate correctly.n", dev->name);
  524. }
  525. } else {
  526. np->phys[0] = 32;
  527. /* 89/6/23 add, (begin) */
  528. /* get phy type */
  529. if (readl(dev->base_addr + PHYIDENTIFIER) == MysonPHYID)
  530. np->PHYType = MysonPHY;
  531. else
  532. np->PHYType = OtherPHY;
  533. }
  534. np->mii.phy_id = np->phys[0];
  535. if (dev->mem_start)
  536. option = dev->mem_start;
  537. /* The lower four bits are the media type. */
  538. if (option > 0) {
  539. if (option & 0x200)
  540. np->mii.full_duplex = 1;
  541. np->default_port = option & 15;
  542. }
  543. if (card_idx < MAX_UNITS && full_duplex[card_idx] > 0)
  544. np->mii.full_duplex = full_duplex[card_idx];
  545. if (np->mii.full_duplex) {
  546. printk(KERN_INFO "%s: Media type forced to Full Duplex.n", dev->name);
  547. /* 89/6/13 add, (begin) */
  548. //      if (np->PHYType==MarvellPHY)
  549. if ((np->PHYType == MarvellPHY) || (np->PHYType == LevelOnePHY)) {
  550. unsigned int data;
  551. data = mdio_read(dev, np->phys[0], 9);
  552. data = (data & 0xfcff) | 0x0200;
  553. mdio_write(dev, np->phys[0], 9, data);
  554. }
  555. /* 89/6/13 add, (end) */
  556. if (np->flags == HAS_MII_XCVR)
  557. mdio_write(dev, np->phys[0], MII_ADVERTISE, ADVERTISE_FULL);
  558. else
  559. writel(ADVERTISE_FULL, dev->base_addr + ANARANLPAR);
  560. np->mii.duplex_lock = 1;
  561. }
  562. /* The chip-specific entries in the device structure. */
  563. dev->open = &netdev_open;
  564. dev->hard_start_xmit = &start_tx;
  565. dev->stop = &netdev_close;
  566. dev->get_stats = &get_stats;
  567. dev->set_multicast_list = &set_rx_mode;
  568. dev->do_ioctl = &mii_ioctl;
  569. dev->tx_timeout = tx_timeout;
  570. dev->watchdog_timeo = TX_TIMEOUT;
  571. err = register_netdev(dev);
  572. if (err)
  573. goto err_out_free_tx;
  574. printk(KERN_INFO "%s: %s at 0x%lx, ",
  575.        dev->name, skel_netdrv_tbl[chip_id].chip_name, ioaddr);
  576. for (i = 0; i < 5; i++)
  577. printk("%2.2x:", dev->dev_addr[i]);
  578. printk("%2.2x, IRQ %d.n", dev->dev_addr[i], irq);
  579. return 0;
  580. err_out_free_tx:
  581. pci_free_consistent(pdev, TX_TOTAL_SIZE, np->tx_ring, np->tx_ring_dma);
  582. err_out_free_rx:
  583. pci_free_consistent(pdev, RX_TOTAL_SIZE, np->rx_ring, np->rx_ring_dma);
  584. err_out_free_dev:
  585. kfree(dev);
  586. err_out_unmap:
  587. #ifndef USE_IO_OPS
  588. iounmap((void *)ioaddr);
  589. err_out_res:
  590. #endif
  591. pci_release_regions(pdev);
  592. return err;
  593. }
  594. static void __devexit fealnx_remove_one(struct pci_dev *pdev)
  595. {
  596. struct net_device *dev = pci_get_drvdata(pdev);
  597. if (dev) {
  598. struct netdev_private *np = dev->priv;
  599. pci_free_consistent(pdev, TX_TOTAL_SIZE, np->tx_ring,
  600. np->tx_ring_dma);
  601. pci_free_consistent(pdev, RX_TOTAL_SIZE, np->rx_ring,
  602. np->rx_ring_dma);
  603. unregister_netdev(dev);
  604. #ifndef USE_IO_OPS
  605. iounmap((void *)dev->base_addr);
  606. #endif
  607. kfree(dev);
  608. pci_release_regions(pdev);
  609. pci_set_drvdata(pdev, NULL);
  610. } else
  611. printk(KERN_ERR "fealnx: remove for unknown devicen");
  612. }
  613. unsigned int m80x_read_tick(void)
  614. /* function: Reads the Timer tick count register which decrements by 2 from  */
  615. /*           65536 to 0 every 1/36.414 of a second. Each 2 decrements of the *//*           count represents 838 nsec's.                                    */
  616. /* input   : none.                                                           */
  617. /* output  : none.                                                           */
  618. {
  619. unsigned char tmp;
  620. int value;
  621. writeb((char) 0x06, 0x43); // Command 8254 to latch T0's count
  622. // now read the count.
  623. tmp = (unsigned char) readb(0x40);
  624. value = ((int) tmp) << 8;
  625. tmp = (unsigned char) readb(0x40);
  626. value |= (((int) tmp) & 0xff);
  627. return (value);
  628. }
  629. void m80x_delay(unsigned int interval)
  630. /* function: to wait for a specified time.                                   */
  631. /* input   : interval ... the specified time.                                */
  632. /* output  : none.                                                           */
  633. {
  634. unsigned int interval1, interval2, i = 0;
  635. interval1 = m80x_read_tick(); // get initial value
  636. do {
  637. interval2 = m80x_read_tick();
  638. if (interval1 < interval2)
  639. interval1 = interval2;
  640. ++i;
  641. } while (((interval1 - interval2) < (ushort) interval) && (i < 65535));
  642. }
  643. static ulong m80x_send_cmd_to_phy(long miiport, int opcode, int phyad, int regad)
  644. {
  645. ulong miir;
  646. int i;
  647. unsigned int mask, data;
  648. /* enable MII output */
  649. miir = (ulong) readl(miiport);
  650. miir &= 0xfffffff0;
  651. miir |= MASK_MIIR_MII_WRITE + MASK_MIIR_MII_MDO;
  652. /* send 32 1's preamble */
  653. for (i = 0; i < 32; i++) {
  654. /* low MDC; MDO is already high (miir) */
  655. miir &= ~MASK_MIIR_MII_MDC;
  656. writel(miir, miiport);
  657. /* high MDC */
  658. miir |= MASK_MIIR_MII_MDC;
  659. writel(miir, miiport);
  660. }
  661. /* calculate ST+OP+PHYAD+REGAD+TA */
  662. data = opcode | (phyad << 7) | (regad << 2);
  663. /* sent out */
  664. mask = 0x8000;
  665. while (mask) {
  666. /* low MDC, prepare MDO */
  667. miir &= ~(MASK_MIIR_MII_MDC + MASK_MIIR_MII_MDO);
  668. if (mask & data)
  669. miir |= MASK_MIIR_MII_MDO;
  670. writel(miir, miiport);
  671. /* high MDC */
  672. miir |= MASK_MIIR_MII_MDC;
  673. writel(miir, miiport);
  674. m80x_delay(30);
  675. /* next */
  676. mask >>= 1;
  677. if (mask == 0x2 && opcode == OP_READ)
  678. miir &= ~MASK_MIIR_MII_WRITE;
  679. }
  680. return miir;
  681. }
  682. static int mdio_read(struct net_device *dev, int phyad, int regad)
  683. {
  684. long miiport = dev->base_addr + MANAGEMENT;
  685. ulong miir;
  686. unsigned int mask, data;
  687. miir = m80x_send_cmd_to_phy(miiport, OP_READ, phyad, regad);
  688. /* read data */
  689. mask = 0x8000;
  690. data = 0;
  691. while (mask) {
  692. /* low MDC */
  693. miir &= ~MASK_MIIR_MII_MDC;
  694. writel(miir, miiport);
  695. /* read MDI */
  696. miir = readl(miiport);
  697. if (miir & MASK_MIIR_MII_MDI)
  698. data |= mask;
  699. /* high MDC, and wait */
  700. miir |= MASK_MIIR_MII_MDC;
  701. writel(miir, miiport);
  702. m80x_delay((int) 30);
  703. /* next */
  704. mask >>= 1;
  705. }
  706. /* low MDC */
  707. miir &= ~MASK_MIIR_MII_MDC;
  708. writel(miir, miiport);
  709. return data & 0xffff;
  710. }
  711. static void mdio_write(struct net_device *dev, int phyad, int regad, int data)
  712. {
  713. long miiport = dev->base_addr + MANAGEMENT;
  714. ulong miir;
  715. unsigned int mask;
  716. miir = m80x_send_cmd_to_phy(miiport, OP_WRITE, phyad, regad);
  717. /* write data */
  718. mask = 0x8000;
  719. while (mask) {
  720. /* low MDC, prepare MDO */
  721. miir &= ~(MASK_MIIR_MII_MDC + MASK_MIIR_MII_MDO);
  722. if (mask & data)
  723. miir |= MASK_MIIR_MII_MDO;
  724. writel(miir, miiport);
  725. /* high MDC */
  726. miir |= MASK_MIIR_MII_MDC;
  727. writel(miir, miiport);
  728. /* next */
  729. mask >>= 1;
  730. }
  731. /* low MDC */
  732. miir &= ~MASK_MIIR_MII_MDC;
  733. writel(miir, miiport);
  734. return;
  735. }
  736. static int netdev_open(struct net_device *dev)
  737. {
  738. struct netdev_private *np = dev->priv;
  739. long ioaddr = dev->base_addr;
  740. writel(0x00000001, ioaddr + BCR); /* Reset */
  741. if (request_irq(dev->irq, &intr_handler, SA_SHIRQ, dev->name, dev))
  742. return -EAGAIN;
  743. init_ring(dev);
  744. writel(np->rx_ring_dma, ioaddr + RXLBA);
  745. writel(np->tx_ring_dma, ioaddr + TXLBA);
  746. /* Initialize other registers. */
  747. /* Configure the PCI bus bursts and FIFO thresholds.
  748.    486: Set 8 longword burst.
  749.    586: no burst limit.
  750.    Burst length 5:3
  751.    0 0 0   1
  752.    0 0 1   4
  753.    0 1 0   8
  754.    0 1 1   16
  755.    1 0 0   32
  756.    1 0 1   64
  757.    1 1 0   128
  758.    1 1 1   256
  759.    Wait the specified 50 PCI cycles after a reset by initializing
  760.    Tx and Rx queues and the address filter list.
  761.    FIXME (Ueimor): optimistic for alpha + posted writes ? */
  762. #if defined(__powerpc__) || defined(__sparc__)
  763. // 89/9/1 modify, 
  764. //   np->bcrvalue=0x04 | 0x0x38;  /* big-endian, 256 burst length */
  765. np->bcrvalue = 0x04 | 0x10; /* big-endian, tx 8 burst length */
  766. np->crvalue = 0xe00; /* rx 128 burst length */
  767. #elif defined(__alpha__) || defined(__x86_64__)
  768. // 89/9/1 modify, 
  769. //   np->bcrvalue=0x38;           /* little-endian, 256 burst length */
  770. np->bcrvalue = 0x10; /* little-endian, 8 burst length */
  771. np->crvalue = 0xe00; /* rx 128 burst length */
  772. #elif defined(__i386__)
  773. #if defined(MODULE)
  774. // 89/9/1 modify, 
  775. //   np->bcrvalue=0x38;           /* little-endian, 256 burst length */
  776. np->bcrvalue = 0x10; /* little-endian, 8 burst length */
  777. np->crvalue = 0xe00; /* rx 128 burst length */
  778. #else
  779. /* When not a module we can work around broken '486 PCI boards. */
  780. #define x86 boot_cpu_data.x86
  781. // 89/9/1 modify, 
  782. //   np->bcrvalue=(x86 <= 4 ? 0x10 : 0x38);
  783. np->bcrvalue = 0x10;
  784. np->crvalue = (x86 <= 4 ? 0xa00 : 0xe00);
  785. if (x86 <= 4)
  786. printk(KERN_INFO "%s: This is a 386/486 PCI system, setting burst "
  787.        "length to %x.n", dev->name, (x86 <= 4 ? 0x10 : 0x38));
  788. #endif
  789. #else
  790. // 89/9/1 modify,
  791. //   np->bcrvalue=0x38;
  792. np->bcrvalue = 0x10;
  793. np->cralue = 0xe00; /* rx 128 burst length */
  794. #warning Processor architecture undefined!
  795. #endif
  796. // 89/12/29 add,
  797. // 90/1/16 modify,
  798. //   np->imrvalue=FBE|TUNF|CNTOVF|RBU|TI|RI;
  799. np->imrvalue = TUNF | CNTOVF | RBU | TI | RI;
  800. if (np->pci_dev->device == 0x891) {
  801. np->bcrvalue |= 0x200; /* set PROG bit */
  802. np->crvalue |= 0x02000000; /* set enhanced bit */
  803. np->imrvalue |= ETI;
  804. }
  805. writel(np->bcrvalue, ioaddr + BCR);
  806. if (dev->if_port == 0)
  807. dev->if_port = np->default_port;
  808. writel(0, dev->base_addr + RXPDR);
  809. // 89/9/1 modify,
  810. //   np->crvalue = 0x00e40001;    /* tx store and forward, tx/rx enable */
  811. np->crvalue |= 0x00e40001; /* tx store and forward, tx/rx enable */
  812. np->mii.full_duplex = np->mii.duplex_lock;
  813. getlinkstatus(dev);
  814. if (np->linkok)
  815. getlinktype(dev);
  816. set_rx_mode(dev);
  817. netif_start_queue(dev);
  818. /* Clear and Enable interrupts by setting the interrupt mask. */
  819. writel(FBE | TUNF | CNTOVF | RBU | TI | RI, ioaddr + ISR);
  820. writel(np->imrvalue, ioaddr + IMR);
  821. if (debug)
  822. printk(KERN_DEBUG "%s: Done netdev_open().n", dev->name);
  823. /* Set the timer to check for link beat. */
  824. init_timer(&np->timer);
  825. np->timer.expires = RUN_AT(3 * HZ);
  826. np->timer.data = (unsigned long) dev;
  827. np->timer.function = &netdev_timer;
  828. /* timer handler */
  829. add_timer(&np->timer);
  830. return 0;
  831. }
  832. static void getlinkstatus(struct net_device *dev)
  833. /* function: Routine will read MII Status Register to get link status.       */
  834. /* input   : dev... pointer to the adapter block.                            */
  835. /* output  : none.                                                           */
  836. {
  837. struct netdev_private *np = dev->priv;
  838. unsigned int i, DelayTime = 0x1000;
  839. np->linkok = 0;
  840. if (np->PHYType == MysonPHY) {
  841. for (i = 0; i < DelayTime; ++i) {
  842. if (readl(dev->base_addr + BMCRSR) & LinkIsUp2) {
  843. np->linkok = 1;
  844. return;
  845. }
  846. // delay
  847. m80x_delay(100);
  848. }
  849. } else {
  850. for (i = 0; i < DelayTime; ++i) {
  851. if (mdio_read(dev, np->phys[0], MII_BMSR) & BMSR_LSTATUS) {
  852. np->linkok = 1;
  853. return;
  854. }
  855. // delay
  856. m80x_delay(100);
  857. }
  858. }
  859. }
  860. static void getlinktype(struct net_device *dev)
  861. {
  862. struct netdev_private *np = dev->priv;
  863. if (np->PHYType == MysonPHY) { /* 3-in-1 case */
  864. if (readl(dev->base_addr + TCRRCR) & FD)
  865. np->duplexmode = 2; /* full duplex */
  866. else
  867. np->duplexmode = 1; /* half duplex */
  868. if (readl(dev->base_addr + TCRRCR) & PS10)
  869. np->line_speed = 1; /* 10M */
  870. else
  871. np->line_speed = 2; /* 100M */
  872. } else {
  873. if (np->PHYType == SeeqPHY) { /* this PHY is SEEQ 80225 */
  874. unsigned int data;
  875. data = mdio_read(dev, np->phys[0], MIIRegister18);
  876. if (data & SPD_DET_100)
  877. np->line_speed = 2; /* 100M */
  878. else
  879. np->line_speed = 1; /* 10M */
  880. if (data & DPLX_DET_FULL)
  881. np->duplexmode = 2; /* full duplex mode */
  882. else
  883. np->duplexmode = 1; /* half duplex mode */
  884. } else if (np->PHYType == AhdocPHY) {
  885. unsigned int data;
  886. data = mdio_read(dev, np->phys[0], DiagnosticReg);
  887. if (data & Speed_100)
  888. np->line_speed = 2; /* 100M */
  889. else
  890. np->line_speed = 1; /* 10M */
  891. if (data & DPLX_FULL)
  892. np->duplexmode = 2; /* full duplex mode */
  893. else
  894. np->duplexmode = 1; /* half duplex mode */
  895. }
  896. /* 89/6/13 add, (begin) */
  897. else if (np->PHYType == MarvellPHY) {
  898. unsigned int data;
  899. data = mdio_read(dev, np->phys[0], SpecificReg);
  900. if (data & Full_Duplex)
  901. np->duplexmode = 2; /* full duplex mode */
  902. else
  903. np->duplexmode = 1; /* half duplex mode */
  904. data &= SpeedMask;
  905. if (data == Speed_1000M)
  906. np->line_speed = 3; /* 1000M */
  907. else if (data == Speed_100M)
  908. np->line_speed = 2; /* 100M */
  909. else
  910. np->line_speed = 1; /* 10M */
  911. }
  912. /* 89/6/13 add, (end) */
  913. /* 89/7/27 add, (begin) */
  914. else if (np->PHYType == Myson981) {
  915. unsigned int data;
  916. data = mdio_read(dev, np->phys[0], StatusRegister);
  917. if (data & SPEED100)
  918. np->line_speed = 2;
  919. else
  920. np->line_speed = 1;
  921. if (data & FULLMODE)
  922. np->duplexmode = 2;
  923. else
  924. np->duplexmode = 1;
  925. }
  926. /* 89/7/27 add, (end) */
  927. /* 89/12/29 add */
  928. else if (np->PHYType == LevelOnePHY) {
  929. unsigned int data;
  930. data = mdio_read(dev, np->phys[0], SpecificReg);
  931. if (data & LXT1000_Full)
  932. np->duplexmode = 2; /* full duplex mode */
  933. else
  934. np->duplexmode = 1; /* half duplex mode */
  935. data &= SpeedMask;
  936. if (data == LXT1000_1000M)
  937. np->line_speed = 3; /* 1000M */
  938. else if (data == LXT1000_100M)
  939. np->line_speed = 2; /* 100M */
  940. else
  941. np->line_speed = 1; /* 10M */
  942. }
  943. // chage crvalue
  944. // np->crvalue&=(~PS10)&(~FD);
  945. np->crvalue &= (~PS10) & (~FD) & (~PS1000);
  946. if (np->line_speed == 1)
  947. np->crvalue |= PS10;
  948. else if (np->line_speed == 3)
  949. np->crvalue |= PS1000;
  950. if (np->duplexmode == 2)
  951. np->crvalue |= FD;
  952. }
  953. }
  954. static void allocate_rx_buffers(struct net_device *dev)
  955. {
  956. struct netdev_private *np = dev->priv;
  957. /*  allocate skb for rx buffers */
  958. while (np->really_rx_count != RX_RING_SIZE) {
  959. struct sk_buff *skb;
  960. skb = dev_alloc_skb(np->rx_buf_sz);
  961. np->lack_rxbuf->skbuff = skb;
  962. if (skb == NULL)
  963. break; /* Better luck next round. */
  964. skb->dev = dev; /* Mark as being used by this device. */
  965. np->lack_rxbuf->buffer = pci_map_single(np->pci_dev, skb->tail,
  966. np->rx_buf_sz, PCI_DMA_FROMDEVICE);
  967. np->lack_rxbuf = np->lack_rxbuf->next_desc_logical;
  968. ++np->really_rx_count;
  969. }
  970. }
  971. static void netdev_timer(unsigned long data)
  972. {
  973. struct net_device *dev = (struct net_device *) data;
  974. struct netdev_private *np = dev->priv;
  975. long ioaddr = dev->base_addr;
  976. int next_tick = 10 * HZ;
  977. int old_crvalue = np->crvalue;
  978. unsigned int old_linkok = np->linkok;
  979. if (debug)
  980. printk(KERN_DEBUG "%s: Media selection timer tick, status %8.8x "
  981.        "config %8.8x.n", dev->name, readl(ioaddr + ISR),
  982.        readl(ioaddr + TCRRCR));
  983. if (np->flags == HAS_MII_XCVR) {
  984. getlinkstatus(dev);
  985. if ((old_linkok == 0) && (np->linkok == 1)) { /* we need to detect the media type again */
  986. getlinktype(dev);
  987. if (np->crvalue != old_crvalue) {
  988. stop_nic_tx(ioaddr, np->crvalue);
  989. stop_nic_rx(ioaddr, np->crvalue & (~0x40000));
  990. writel(np->crvalue, ioaddr + TCRRCR);
  991. }
  992. }
  993. }
  994. allocate_rx_buffers(dev);
  995. np->timer.expires = RUN_AT(next_tick);
  996. add_timer(&np->timer);
  997. }
  998. static void tx_timeout(struct net_device *dev)
  999. {
  1000. struct netdev_private *np = dev->priv;
  1001. long ioaddr = dev->base_addr;
  1002. int i;
  1003. printk(KERN_WARNING "%s: Transmit timed out, status %8.8x,"
  1004.        " resetting...n", dev->name, readl(ioaddr + ISR));
  1005. {
  1006. printk(KERN_DEBUG "  Rx ring %p: ", np->rx_ring);
  1007. for (i = 0; i < RX_RING_SIZE; i++)
  1008. printk(" %8.8x", (unsigned int) np->rx_ring[i].status);
  1009. printk("n" KERN_DEBUG "  Tx ring %p: ", np->tx_ring);
  1010. for (i = 0; i < TX_RING_SIZE; i++)
  1011. printk(" %4.4x", np->tx_ring[i].status);
  1012. printk("n");
  1013. }
  1014.    + dev->if_port = np->default_port;
  1015. /* Reinit. Gross */
  1016. /* Reset the chip's Tx and Rx processes. */
  1017. stop_nic_tx(ioaddr, 0);
  1018. reset_rx_descriptors(dev);
  1019. /* Disable interrupts by clearing the interrupt mask. */
  1020. writel(0x0000, ioaddr + IMR);
  1021. /* Reset the chip to erase previous misconfiguration. */
  1022. writel(0x00000001, ioaddr + BCR);
  1023. /* Ueimor: wait for 50 PCI cycles (and flush posted writes btw). 
  1024.    We surely wait too long (address+data phase). Who cares ? */
  1025. for (i = 0; i < 50; i++) {
  1026. readl(ioaddr + BCR);
  1027. rmb();
  1028. }
  1029. writel((np->cur_tx - np->tx_ring)*sizeof(struct fealnx_desc) +
  1030. np->tx_ring_dma, ioaddr + TXLBA);
  1031. writel((np->cur_rx - np->rx_ring)*sizeof(struct fealnx_desc) +
  1032. np->rx_ring_dma, ioaddr + RXLBA);
  1033. writel(np->bcrvalue, ioaddr + BCR);
  1034. writel(0, dev->base_addr + RXPDR);
  1035. set_rx_mode(dev);
  1036. /* Clear and Enable interrupts by setting the interrupt mask. */
  1037. writel(FBE | TUNF | CNTOVF | RBU | TI | RI, ioaddr + ISR);
  1038. writel(np->imrvalue, ioaddr + IMR);
  1039. writel(0, dev->base_addr + TXPDR);
  1040. dev->trans_start = jiffies;
  1041. np->stats.tx_errors++;
  1042. return;
  1043. }
  1044. /* Initialize the Rx and Tx rings, along with various 'dev' bits. */
  1045. static void init_ring(struct net_device *dev)
  1046. {
  1047. struct netdev_private *np = dev->priv;
  1048. int i;
  1049. /* initialize rx variables */
  1050. np->rx_buf_sz = (dev->mtu <= 1500 ? PKT_BUF_SZ : dev->mtu + 32);
  1051. np->cur_rx = &np->rx_ring[0];
  1052. np->lack_rxbuf = NULL;
  1053. np->really_rx_count = 0;
  1054. /* initial rx descriptors. */
  1055. for (i = 0; i < RX_RING_SIZE; i++) {
  1056. np->rx_ring[i].status = 0;
  1057. np->rx_ring[i].control = np->rx_buf_sz << RBSShift;
  1058. np->rx_ring[i].next_desc = np->rx_ring_dma +
  1059. (i + 1)*sizeof(struct fealnx_desc);
  1060. np->rx_ring[i].next_desc_logical = &np->rx_ring[i + 1];
  1061. np->rx_ring[i].skbuff = NULL;
  1062. }
  1063. /* for the last rx descriptor */
  1064. np->rx_ring[i - 1].next_desc = np->rx_ring_dma;
  1065. np->rx_ring[i - 1].next_desc_logical = np->rx_ring;
  1066. /* allocate skb for rx buffers */
  1067. for (i = 0; i < RX_RING_SIZE; i++) {
  1068. struct sk_buff *skb = dev_alloc_skb(np->rx_buf_sz);
  1069. if (skb == NULL) {
  1070. np->lack_rxbuf = &np->rx_ring[i];
  1071. break;
  1072. }
  1073. ++np->really_rx_count;
  1074. np->rx_ring[i].skbuff = skb;
  1075. skb->dev = dev; /* Mark as being used by this device. */
  1076. np->rx_ring[i].buffer = pci_map_single(np->pci_dev, skb->tail,
  1077. np->rx_buf_sz, PCI_DMA_FROMDEVICE);
  1078. np->rx_ring[i].status = RXOWN;
  1079. np->rx_ring[i].control |= RXIC;
  1080. }
  1081. /* initialize tx variables */
  1082. np->cur_tx = &np->tx_ring[0];
  1083. np->cur_tx_copy = &np->tx_ring[0];
  1084. np->really_tx_count = 0;
  1085. np->free_tx_count = TX_RING_SIZE;
  1086. for (i = 0; i < TX_RING_SIZE; i++) {
  1087. np->tx_ring[i].status = 0;
  1088. np->tx_ring[i].next_desc = np->tx_ring_dma +
  1089. (i + 1)*sizeof(struct fealnx_desc);
  1090. np->tx_ring[i].next_desc_logical = &np->tx_ring[i + 1];
  1091. np->tx_ring[i].skbuff = NULL;
  1092. }
  1093. /* for the last tx descriptor */
  1094. np->tx_ring[i - 1].next_desc = np->tx_ring_dma;
  1095. np->tx_ring[i - 1].next_desc_logical = &np->tx_ring[0];
  1096. return;
  1097. }
  1098. static int start_tx(struct sk_buff *skb, struct net_device *dev)
  1099. {
  1100. struct netdev_private *np = dev->priv;
  1101. np->cur_tx_copy->skbuff = skb;
  1102. #define one_buffer
  1103. #define BPT 1022
  1104. #if defined(one_buffer)
  1105. np->cur_tx_copy->buffer = pci_map_single(np->pci_dev, skb->data,
  1106. skb->len, PCI_DMA_TODEVICE);
  1107. np->cur_tx_copy->control = TXIC | TXLD | TXFD | CRCEnable | PADEnable;
  1108. np->cur_tx_copy->control |= (skb->len << PKTSShift); /* pkt size */
  1109. np->cur_tx_copy->control |= (skb->len << TBSShift); /* buffer size */
  1110. // 89/12/29 add,
  1111. if (np->pci_dev->device == 0x891)
  1112. np->cur_tx_copy->control |= ETIControl | RetryTxLC;
  1113. np->cur_tx_copy->status = TXOWN;
  1114. np->cur_tx_copy = np->cur_tx_copy->next_desc_logical;
  1115. --np->free_tx_count;
  1116. #elif defined(two_buffer)
  1117. if (skb->len > BPT) {
  1118. struct fealnx_desc *next;
  1119. /* for the first descriptor */
  1120. np->cur_tx_copy->buffer = pci_map_single(np->pci_dev, skb->data,
  1121. BPT, PCI_DMA_TODEVICE);
  1122. np->cur_tx_copy->control = TXIC | TXFD | CRCEnable | PADEnable;
  1123. np->cur_tx_copy->control |= (skb->len << PKTSShift); /* pkt size */
  1124. np->cur_tx_copy->control |= (BPT << TBSShift); /* buffer size */
  1125. /* for the last descriptor */
  1126. next = (struct fealnx *) np->cur_tx_copy.next_desc_logical;
  1127. next->skbuff = skb;
  1128. next->control = TXIC | TXLD | CRCEnable | PADEnable;
  1129. next->control |= (skb->len << PKTSShift); /* pkt size */
  1130. next->control |= ((skb->len - BPT) << TBSShift); /* buf size */
  1131. // 89/12/29 add,
  1132. if (np->pci_dev->device == 0x891)
  1133. np->cur_tx_copy->control |= ETIControl | RetryTxLC;
  1134. next->buffer = pci_map_single(ep->pci_dev, skb->data + BPT,
  1135.                                 skb->len - BPT, PCI_DMA_TODEVICE);
  1136. next->status = TXOWN;
  1137. np->cur_tx_copy->status = TXOWN;
  1138. np->cur_tx_copy = next->next_desc_logical;
  1139. np->free_tx_count -= 2;
  1140. } else {
  1141. np->cur_tx_copy->buffer = pci_map_single(np->pci_dev, skb->data,
  1142. skb->len, PCI_DMA_TODEVICE);
  1143. np->cur_tx_copy->control = TXIC | TXLD | TXFD | CRCEnable | PADEnable;
  1144. np->cur_tx_copy->control |= (skb->len << PKTSShift); /* pkt size */
  1145. np->cur_tx_copy->control |= (skb->len << TBSShift); /* buffer size */
  1146. // 89/12/29 add,
  1147. if (np->pci_dev->device == 0x891)
  1148. np->cur_tx_copy->control |= ETIControl | RetryTxLC;
  1149. np->cur_tx_copy->status = TXOWN;
  1150. np->cur_tx_copy = np->cur_tx_copy->next_desc_logical;
  1151. --np->free_tx_count;
  1152. }
  1153. #endif
  1154. if (np->free_tx_count < 2)
  1155. netif_stop_queue(dev);
  1156. ++np->really_tx_count;
  1157. writel(0, dev->base_addr + TXPDR);
  1158. dev->trans_start = jiffies;
  1159. return 0;
  1160. }
  1161. void free_one_rx_descriptor(struct netdev_private *np)
  1162. {
  1163. if (np->really_rx_count == RX_RING_SIZE)
  1164. np->cur_rx->status = RXOWN;
  1165. else {
  1166. np->lack_rxbuf->skbuff = np->cur_rx->skbuff;
  1167. np->lack_rxbuf->buffer = np->cur_rx->buffer;
  1168. np->lack_rxbuf->status = RXOWN;
  1169. ++np->really_rx_count;
  1170. np->lack_rxbuf = np->lack_rxbuf->next_desc_logical;
  1171. }
  1172. np->cur_rx = np->cur_rx->next_desc_logical;
  1173. }
  1174. void reset_rx_descriptors(struct net_device *dev)
  1175. {
  1176. struct netdev_private *np = dev->priv;
  1177. stop_nic_rx(dev->base_addr, np->crvalue);
  1178. while (!(np->cur_rx->status & RXOWN))
  1179. free_one_rx_descriptor(np);
  1180. allocate_rx_buffers(dev);
  1181. writel(np->rx_ring_dma + (np->cur_rx - np->rx_ring),
  1182. dev->base_addr + RXLBA);
  1183. writel(np->crvalue, dev->base_addr + TCRRCR);
  1184. }
  1185. /* The interrupt handler does all of the Rx thread work and cleans up
  1186.    after the Tx thread. */
  1187. static void intr_handler(int irq, void *dev_instance, struct pt_regs *rgs)
  1188. {
  1189. struct net_device *dev = (struct net_device *) dev_instance;
  1190. struct netdev_private *np = dev->priv;
  1191. long ioaddr, boguscnt = max_interrupt_work;
  1192. unsigned int num_tx = 0;
  1193. writel(0, dev->base_addr + IMR);
  1194. ioaddr = dev->base_addr;
  1195. np = (struct netdev_private *) dev->priv;
  1196. do {
  1197. u32 intr_status = readl(ioaddr + ISR);
  1198. /* Acknowledge all of the current interrupt sources ASAP. */
  1199. writel(intr_status, ioaddr + ISR);
  1200. if (debug)
  1201. printk(KERN_DEBUG "%s: Interrupt, status %4.4x.n", dev->name,
  1202.        intr_status);
  1203. if (!(intr_status & np->imrvalue))
  1204. break;
  1205. // 90/1/16 delete,
  1206. //
  1207. //      if (intr_status & FBE)
  1208. //      {   /* fatal error */
  1209. //          stop_nic_tx(ioaddr, 0);
  1210. //          stop_nic_rx(ioaddr, 0);
  1211. //          break;
  1212. //      };
  1213. if (intr_status & TUNF)
  1214. writel(0, ioaddr + TXPDR);
  1215. if (intr_status & CNTOVF) {
  1216. /* missed pkts */
  1217. np->stats.rx_missed_errors += readl(ioaddr + TALLY) & 0x7fff;
  1218. /* crc error */
  1219. np->stats.rx_crc_errors +=
  1220.     (readl(ioaddr + TALLY) & 0x7fff0000) >> 16;
  1221. }
  1222. if (intr_status & (RI | RBU)) {
  1223. if (intr_status & RI)
  1224. netdev_rx(dev);
  1225. else
  1226. reset_rx_descriptors(dev);
  1227. }
  1228. while (np->really_tx_count) {
  1229. long tx_status = np->cur_tx->status;
  1230. long tx_control = np->cur_tx->control;
  1231. if (!(tx_control & TXLD)) { /* this pkt is combined by two tx descriptors */
  1232. struct fealnx_desc *next;
  1233. next = np->cur_tx->next_desc_logical;
  1234. tx_status = next->status;
  1235. tx_control = next->control;
  1236. }
  1237. if (tx_status & TXOWN)
  1238. break;
  1239. if (!(np->crvalue & 0x02000000)) {
  1240. if (tx_status & (CSL | LC | EC | UDF | HF)) {
  1241. np->stats.tx_errors++;
  1242. if (tx_status & EC)
  1243. np->stats.tx_aborted_errors++;
  1244. if (tx_status & CSL)
  1245. np->stats.tx_carrier_errors++;
  1246. if (tx_status & LC)
  1247. np->stats.tx_window_errors++;
  1248. if (tx_status & UDF)
  1249. np->stats.tx_fifo_errors++;
  1250. if ((tx_status & HF) && np->mii.full_duplex == 0)
  1251. np->stats.tx_heartbeat_errors++;
  1252. #ifdef ETHER_STATS
  1253. if (tx_status & EC)
  1254. np->stats.collisions16++;
  1255. #endif
  1256. } else {
  1257. #ifdef ETHER_STATS
  1258. if (tx_status & DFR)
  1259. np->stats.tx_deferred++;
  1260. #endif
  1261. np->stats.tx_bytes +=
  1262.     ((tx_control & PKTSMask) >> PKTSShift);
  1263. np->stats.collisions +=
  1264.     ((tx_status & NCRMask) >> NCRShift);
  1265. np->stats.tx_packets++;
  1266. }
  1267. } else {
  1268. np->stats.tx_bytes +=
  1269.     ((tx_control & PKTSMask) >> PKTSShift);
  1270. np->stats.tx_packets++;
  1271. }
  1272. /* Free the original skb. */
  1273. pci_unmap_single(np->pci_dev, np->cur_tx->buffer,
  1274. np->cur_tx->skbuff->len, PCI_DMA_TODEVICE);
  1275. dev_kfree_skb_irq(np->cur_tx->skbuff);
  1276. np->cur_tx->skbuff = NULL;
  1277. --np->really_tx_count;
  1278. if (np->cur_tx->control & TXLD) {
  1279. np->cur_tx = np->cur_tx->next_desc_logical;
  1280. ++np->free_tx_count;
  1281. } else {
  1282. np->cur_tx = np->cur_tx->next_desc_logical;
  1283. np->cur_tx = np->cur_tx->next_desc_logical;
  1284. np->free_tx_count += 2;
  1285. }
  1286. num_tx++;
  1287. } /* end of for loop */
  1288. if (num_tx && np->free_tx_count >= 2)
  1289. netif_wake_queue(dev);
  1290. /* read transmit status for enhanced mode only */
  1291. if (np->crvalue & 0x02000000) {
  1292. long data;
  1293. data = readl(ioaddr + TSR);
  1294. np->stats.tx_errors += (data & 0xff000000) >> 24;
  1295. np->stats.tx_aborted_errors += (data & 0xff000000) >> 24;
  1296. np->stats.tx_window_errors += (data & 0x00ff0000) >> 16;
  1297. #ifdef ETHER_STATS
  1298. np->stats.collisions16 += (data & 0xff000000) >> 24;
  1299. #endif
  1300. np->stats.collisions += (data & 0x0000ffff);
  1301. }
  1302. if (--boguscnt < 0) {
  1303. printk(KERN_WARNING "%s: Too much work at interrupt, "
  1304.        "status=0x%4.4x.n", dev->name, intr_status);
  1305. break;
  1306. }
  1307. } while (1);
  1308. /* read the tally counters */
  1309. /* missed pkts */
  1310. np->stats.rx_missed_errors += readl(ioaddr + TALLY) & 0x7fff;
  1311. /* crc error */
  1312. np->stats.rx_crc_errors += (readl(ioaddr + TALLY) & 0x7fff0000) >> 16;
  1313. if (debug)
  1314. printk(KERN_DEBUG "%s: exiting interrupt, status=%#4.4x.n",
  1315.        dev->name, readl(ioaddr + ISR));
  1316. writel(np->imrvalue, ioaddr + IMR);
  1317. return;
  1318. }
  1319. /* This routine is logically part of the interrupt handler, but seperated
  1320.    for clarity and better register allocation. */
  1321. static int netdev_rx(struct net_device *dev)
  1322. {
  1323. struct netdev_private *np = dev->priv;
  1324. /* If EOP is set on the next entry, it's a new packet. Send it up. */
  1325. while (!(np->cur_rx->status & RXOWN)) {
  1326. s32 rx_status = np->cur_rx->status;
  1327. if (np->really_rx_count == 0)
  1328. break;
  1329. if (debug)
  1330. printk(KERN_DEBUG "  netdev_rx() status was %8.8x.n", rx_status);
  1331. if ((!((rx_status & RXFSD) && (rx_status & RXLSD)))
  1332.     || (rx_status & ErrorSummary)) {
  1333. if (rx_status & ErrorSummary) { /* there was a fatal error */
  1334. if (debug)
  1335. printk(KERN_DEBUG
  1336.        "%s: Receive error, Rx status %8.8x.n",
  1337.        dev->name, rx_status);
  1338. np->stats.rx_errors++; /* end of a packet. */
  1339. if (rx_status & (LONG | RUNT))
  1340. np->stats.rx_length_errors++;
  1341. if (rx_status & RXER)
  1342. np->stats.rx_frame_errors++;
  1343. if (rx_status & CRC)
  1344. np->stats.rx_crc_errors++;
  1345. } else {
  1346. int need_to_reset = 0;
  1347. int desno = 0;
  1348. if (rx_status & RXFSD) { /* this pkt is too long, over one rx buffer */
  1349. struct fealnx_desc *cur;
  1350. /* check this packet is received completely? */
  1351. cur = np->cur_rx;
  1352. while (desno <= np->really_rx_count) {
  1353. ++desno;
  1354. if ((!(cur->status & RXOWN))
  1355.     && (cur->status & RXLSD))
  1356. break;
  1357. /* goto next rx descriptor */
  1358. cur = cur->next_desc_logical;
  1359. }
  1360. if (desno > np->really_rx_count)
  1361. need_to_reset = 1;
  1362. } else /* RXLSD did not find, something error */
  1363. need_to_reset = 1;
  1364. if (need_to_reset == 0) {
  1365. int i;
  1366. np->stats.rx_length_errors++;
  1367. /* free all rx descriptors related this long pkt */
  1368. for (i = 0; i < desno; ++i)
  1369. free_one_rx_descriptor(np);
  1370. continue;
  1371. } else { /* something error, need to reset this chip */
  1372. reset_rx_descriptors(dev);
  1373. }
  1374. break; /* exit the while loop */
  1375. }
  1376. } else { /* this received pkt is ok */
  1377. struct sk_buff *skb;
  1378. /* Omit the four octet CRC from the length. */
  1379. short pkt_len = ((rx_status & FLNGMASK) >> FLNGShift) - 4;
  1380. #ifndef final_version
  1381. if (debug)
  1382. printk(KERN_DEBUG "  netdev_rx() normal Rx pkt length %d"
  1383.        " status %x.n", pkt_len, rx_status);
  1384. #endif
  1385. pci_dma_sync_single(np->pci_dev, np->cur_rx->buffer,
  1386. np->rx_buf_sz, PCI_DMA_FROMDEVICE);
  1387. pci_unmap_single(np->pci_dev, np->cur_rx->buffer,
  1388. np->rx_buf_sz, PCI_DMA_FROMDEVICE);
  1389. /* Check if the packet is long enough to accept without copying
  1390.    to a minimally-sized skbuff. */
  1391. if (pkt_len < rx_copybreak &&
  1392.     (skb = dev_alloc_skb(pkt_len + 2)) != NULL) {
  1393. skb->dev = dev;
  1394. skb_reserve(skb, 2); /* 16 byte align the IP header */
  1395. /* Call copy + cksum if available. */
  1396. #if ! defined(__alpha__)
  1397. eth_copy_and_sum(skb, 
  1398. np->cur_rx->skbuff->tail, pkt_len, 0);
  1399. skb_put(skb, pkt_len);
  1400. #else
  1401. memcpy(skb_put(skb, pkt_len),
  1402. np->cur_rx->skbuff->tail, pkt_len);
  1403. #endif
  1404. } else {
  1405. skb_put(skb = np->cur_rx->skbuff, pkt_len);
  1406. np->cur_rx->skbuff = NULL;
  1407. if (np->really_rx_count == RX_RING_SIZE)
  1408. np->lack_rxbuf = np->cur_rx;
  1409. --np->really_rx_count;
  1410. }
  1411. skb->protocol = eth_type_trans(skb, dev);
  1412. netif_rx(skb);
  1413. dev->last_rx = jiffies;
  1414. np->stats.rx_packets++;
  1415. np->stats.rx_bytes += pkt_len;
  1416. }
  1417. if (np->cur_rx->skbuff == NULL) {
  1418. struct sk_buff *skb;
  1419. skb = dev_alloc_skb(np->rx_buf_sz);
  1420. if (skb != NULL) {
  1421. skb->dev = dev; /* Mark as being used by this device. */
  1422. np->cur_rx->buffer = pci_map_single(np->pci_dev, skb->tail,
  1423. np->rx_buf_sz, PCI_DMA_FROMDEVICE);
  1424. np->cur_rx->skbuff = skb;
  1425. ++np->really_rx_count;
  1426. }
  1427. }
  1428. if (np->cur_rx->skbuff != NULL)
  1429. free_one_rx_descriptor(np);
  1430. } /* end of while loop */
  1431. /*  allocate skb for rx buffers */
  1432. allocate_rx_buffers(dev);
  1433. return 0;
  1434. }
  1435. static struct net_device_stats *get_stats(struct net_device *dev)
  1436. {
  1437. long ioaddr = dev->base_addr;
  1438. struct netdev_private *np = dev->priv;
  1439. /* The chip only need report frame silently dropped. */
  1440. if (netif_running(dev)) {
  1441. np->stats.rx_missed_errors += readl(ioaddr + TALLY) & 0x7fff;
  1442. np->stats.rx_crc_errors += (readl(ioaddr + TALLY) & 0x7fff0000) >> 16;
  1443. }
  1444. return &np->stats;
  1445. }
  1446. static unsigned const ethernet_polynomial = 0x04c11db7U;
  1447. static inline u32 ether_crc(int length, unsigned char *data)
  1448. {
  1449. int crc = -1;
  1450. while (--length >= 0) {
  1451. unsigned char current_octet = *data++;
  1452. int bit;
  1453. for (bit = 0; bit < 8; bit++, current_octet >>= 1) {
  1454. crc = (crc << 1) ^
  1455.     ((crc < 0) ^ (current_octet & 1) ? ethernet_polynomial : 0);
  1456. }
  1457. }
  1458. return crc;
  1459. }
  1460. static void set_rx_mode(struct net_device *dev)
  1461. {
  1462. struct netdev_private *np = dev->priv;
  1463. long ioaddr = dev->base_addr;
  1464. u32 mc_filter[2]; /* Multicast hash filter */
  1465. u32 rx_mode;
  1466. if (dev->flags & IFF_PROMISC) { /* Set promiscuous. */
  1467. /* Unconditionally log net taps. */
  1468. printk(KERN_NOTICE "%s: Promiscuous mode enabled.n", dev->name);
  1469. memset(mc_filter, 0xff, sizeof(mc_filter));
  1470. rx_mode = PROM | AB | AM;
  1471. } else if ((dev->mc_count > multicast_filter_limit)
  1472.    || (dev->flags & IFF_ALLMULTI)) {
  1473. /* Too many to match, or accept all multicasts. */
  1474. memset(mc_filter, 0xff, sizeof(mc_filter));
  1475. rx_mode = AB | AM;
  1476. } else {
  1477. struct dev_mc_list *mclist;
  1478. int i;
  1479. memset(mc_filter, 0, sizeof(mc_filter));
  1480. for (i = 0, mclist = dev->mc_list; mclist && i < dev->mc_count;
  1481.      i++, mclist = mclist->next) {
  1482. set_bit((ether_crc(ETH_ALEN, mclist->dmi_addr) >> 26) ^ 0x3F,
  1483. mc_filter);
  1484. }
  1485. rx_mode = AB | AM;
  1486. }
  1487. stop_nic_tx(ioaddr, np->crvalue);
  1488. stop_nic_rx(ioaddr, np->crvalue & (~0x40000));
  1489. writel(mc_filter[0], ioaddr + MAR0);
  1490. writel(mc_filter[1], ioaddr + MAR1);
  1491. np->crvalue &= ~RxModeMask;
  1492. np->crvalue |= rx_mode;
  1493. writel(np->crvalue, ioaddr + TCRRCR);
  1494. }
  1495. static int netdev_ethtool_ioctl (struct net_device *dev, void *useraddr)
  1496. {
  1497. struct netdev_private *np = dev->priv;
  1498. u32 ethcmd;
  1499. if (copy_from_user (&ethcmd, useraddr, sizeof (ethcmd)))
  1500. return -EFAULT;
  1501. switch (ethcmd) {
  1502. case ETHTOOL_GDRVINFO: {
  1503. struct ethtool_drvinfo info = { ETHTOOL_GDRVINFO };
  1504. strcpy (info.driver, DRV_NAME);
  1505. strcpy (info.version, DRV_VERSION);
  1506. strcpy (info.bus_info, np->pci_dev->slot_name);
  1507. if (copy_to_user (useraddr, &info, sizeof (info)))
  1508. return -EFAULT;
  1509. return 0;
  1510. }
  1511. /* get settings */
  1512. case ETHTOOL_GSET: {
  1513. struct ethtool_cmd ecmd = { ETHTOOL_GSET };
  1514. spin_lock_irq(&np->lock);
  1515. mii_ethtool_gset(&np->mii, &ecmd);
  1516. spin_unlock_irq(&np->lock);
  1517. if (copy_to_user(useraddr, &ecmd, sizeof(ecmd)))
  1518. return -EFAULT;
  1519. return 0;
  1520. }
  1521. /* set settings */
  1522. case ETHTOOL_SSET: {
  1523. int r;
  1524. struct ethtool_cmd ecmd;
  1525. if (copy_from_user(&ecmd, useraddr, sizeof(ecmd)))
  1526. return -EFAULT;
  1527. spin_lock_irq(&np->lock);
  1528. r = mii_ethtool_sset(&np->mii, &ecmd);
  1529. spin_unlock_irq(&np->lock);
  1530. return r;
  1531. }
  1532. /* restart autonegotiation */
  1533. case ETHTOOL_NWAY_RST: {
  1534. return mii_nway_restart(&np->mii);
  1535. }
  1536. /* get link status */
  1537. case ETHTOOL_GLINK: {
  1538. struct ethtool_value edata = {ETHTOOL_GLINK};
  1539. edata.data = mii_link_ok(&np->mii);
  1540. if (copy_to_user(useraddr, &edata, sizeof(edata)))
  1541. return -EFAULT;
  1542. return 0;
  1543. }
  1544. /* get message-level */
  1545. case ETHTOOL_GMSGLVL: {
  1546. struct ethtool_value edata = {ETHTOOL_GMSGLVL};
  1547. edata.data = debug;
  1548. if (copy_to_user(useraddr, &edata, sizeof(edata)))
  1549. return -EFAULT;
  1550. return 0;
  1551. }
  1552. /* set message-level */
  1553. case ETHTOOL_SMSGLVL: {
  1554. struct ethtool_value edata;
  1555. if (copy_from_user(&edata, useraddr, sizeof(edata)))
  1556. return -EFAULT;
  1557. debug = edata.data;
  1558. return 0;
  1559. }
  1560. default:
  1561. break;
  1562. }
  1563. return -EOPNOTSUPP;
  1564. }
  1565. static int mii_ioctl(struct net_device *dev, struct ifreq *rq, int cmd)
  1566. {
  1567. struct mii_ioctl_data *data = (struct mii_ioctl_data *) & rq->ifr_data;
  1568. switch (cmd) {
  1569. case SIOCETHTOOL:
  1570. return netdev_ethtool_ioctl(dev, (void *) rq->ifr_data);
  1571. case SIOCGMIIPHY: /* Get address of MII PHY in use. */
  1572. case SIOCDEVPRIVATE: /* for binary compat, remove in 2.5 */
  1573. data->phy_id = ((struct netdev_private *) dev->priv)->phys[0] & 0x1f;
  1574. /* Fall Through */
  1575. case SIOCGMIIREG: /* Read MII PHY register. */
  1576. case SIOCDEVPRIVATE+1: /* for binary compat, remove in 2.5 */
  1577. data->val_out = mdio_read(dev, data->phy_id & 0x1f, data->reg_num & 0x1f);
  1578. return 0;
  1579. case SIOCSMIIREG: /* Write MII PHY register. */
  1580. case SIOCDEVPRIVATE+2: /* for binary compat, remove in 2.5 */
  1581. if (!capable(CAP_NET_ADMIN))
  1582. return -EPERM;
  1583. mdio_write(dev, data->phy_id & 0x1f, data->reg_num & 0x1f, data->val_in);
  1584. return 0;
  1585. default:
  1586. return -EOPNOTSUPP;
  1587. }
  1588. }
  1589. static int netdev_close(struct net_device *dev)
  1590. {
  1591. long ioaddr = dev->base_addr;
  1592. struct netdev_private *np = dev->priv;
  1593. int i;
  1594. netif_stop_queue(dev);
  1595. /* Disable interrupts by clearing the interrupt mask. */
  1596. writel(0x0000, ioaddr + IMR);
  1597. /* Stop the chip's Tx and Rx processes. */
  1598. stop_nic_tx(ioaddr, 0);
  1599. stop_nic_rx(ioaddr, 0);
  1600. del_timer_sync(&np->timer);
  1601. free_irq(dev->irq, dev);
  1602. /* Free all the skbuffs in the Rx queue. */
  1603. for (i = 0; i < RX_RING_SIZE; i++) {
  1604. struct sk_buff *skb = np->rx_ring[i].skbuff;
  1605. np->rx_ring[i].status = 0;
  1606. if (skb) {
  1607. pci_unmap_single(np->pci_dev, np->rx_ring[i].buffer,
  1608. np->rx_buf_sz, PCI_DMA_FROMDEVICE);
  1609. dev_kfree_skb(skb);
  1610. np->rx_ring[i].skbuff = NULL;
  1611. }
  1612. }
  1613. for (i = 0; i < TX_RING_SIZE; i++) {
  1614. struct sk_buff *skb = np->tx_ring[i].skbuff;
  1615. if (skb) {
  1616. pci_unmap_single(np->pci_dev, np->tx_ring[i].buffer,
  1617. skb->len, PCI_DMA_TODEVICE);
  1618. dev_kfree_skb(skb);
  1619. np->tx_ring[i].skbuff = NULL;
  1620. }
  1621. }
  1622. return 0;
  1623. }
  1624. static struct pci_device_id fealnx_pci_tbl[] __devinitdata = {
  1625. {0x1516, 0x0800, PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0},
  1626. {0x1516, 0x0803, PCI_ANY_ID, PCI_ANY_ID, 0, 0, 1},
  1627. {0x1516, 0x0891, PCI_ANY_ID, PCI_ANY_ID, 0, 0, 2},
  1628. {} /* terminate list */
  1629. };
  1630. MODULE_DEVICE_TABLE(pci, fealnx_pci_tbl);
  1631. static struct pci_driver fealnx_driver = {
  1632. name: "fealnx",
  1633. id_table: fealnx_pci_tbl,
  1634. probe: fealnx_init_one,
  1635. remove: __devexit_p(fealnx_remove_one),
  1636. };
  1637. static int __init fealnx_init(void)
  1638. {
  1639. /* when a module, this is printed whether or not devices are found in probe */
  1640. #ifdef MODULE
  1641. printk (version);
  1642. #endif
  1643. return pci_module_init(&fealnx_driver);
  1644. }
  1645. static void __exit fealnx_exit(void)
  1646. {
  1647. pci_unregister_driver(&fealnx_driver);
  1648. }
  1649. module_init(fealnx_init);
  1650. module_exit(fealnx_exit);