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

嵌入式Linux

开发平台:

Unix_Linux

  1. /* sis900.c: A SiS 900/7016 PCI Fast Ethernet driver for Linux.
  2.    Copyright 1999 Silicon Integrated System Corporation 
  3.    Revision: 1.08.02 Nov. 30 2001
  4.    
  5.    Modified from the driver which is originally written by Donald Becker.
  6.    
  7.    This software may be used and distributed according to the terms
  8.    of the GNU General Public License (GPL), incorporated herein by reference.
  9.    Drivers based on this skeleton fall under the GPL and must retain
  10.    the authorship (implicit copyright) notice.
  11.    
  12.    References:
  13.    SiS 7016 Fast Ethernet PCI Bus 10/100 Mbps LAN Controller with OnNow Support,
  14.    preliminary Rev. 1.0 Jan. 14, 1998
  15.    SiS 900 Fast Ethernet PCI Bus 10/100 Mbps LAN Single Chip with OnNow Support,
  16.    preliminary Rev. 1.0 Nov. 10, 1998
  17.    SiS 7014 Single Chip 100BASE-TX/10BASE-T Physical Layer Solution,
  18.    preliminary Rev. 1.0 Jan. 18, 1998
  19.    http://www.sis.com.tw/support/databook.htm
  20.    Rev 1.08.02 Nov. 30 2001 Hui-Fen Hsu workaround for EDB & bug fix for dhcp problem
  21.    Rev 1.08.01 Aug. 25 2001 Hui-Fen Hsu update for 630ET & workaround for ICS1893 PHY
  22.    Rev 1.08.00 Jun. 11 2001 Hui-Fen Hsu workaround for RTL8201 PHY and some bug fix
  23.    Rev 1.07.11 Apr.  2 2001 Hui-Fen Hsu updates PCI drivers to use the new pci_set_dma_mask for kernel 2.4.3
  24.    Rev 1.07.10 Mar.  1 2001 Hui-Fen Hsu <hfhsu@sis.com.tw> some bug fix & 635M/B support 
  25.    Rev 1.07.09 Feb.  9 2001 Dave Jones <davej@suse.de> PCI enable cleanup
  26.    Rev 1.07.08 Jan.  8 2001 Lei-Chun Chang added RTL8201 PHY support
  27.    Rev 1.07.07 Nov. 29 2000 Lei-Chun Chang added kernel-doc extractable documentation and 630 workaround fix
  28.    Rev 1.07.06 Nov.  7 2000 Jeff Garzik <jgarzik@mandrakesoft.com> some bug fix and cleaning
  29.    Rev 1.07.05 Nov.  6 2000 metapirat<metapirat@gmx.de> contribute media type select by ifconfig
  30.    Rev 1.07.04 Sep.  6 2000 Lei-Chun Chang added ICS1893 PHY support
  31.    Rev 1.07.03 Aug. 24 2000 Lei-Chun Chang (lcchang@sis.com.tw) modified 630E eqaulizer workaround rule
  32.    Rev 1.07.01 Aug. 08 2000 Ollie Lho minor update for SiS 630E and SiS 630E A1
  33.    Rev 1.07    Mar. 07 2000 Ollie Lho bug fix in Rx buffer ring
  34.    Rev 1.06.04 Feb. 11 2000 Jeff Garzik <jgarzik@mandrakesoft.com> softnet and init for kernel 2.4
  35.    Rev 1.06.03 Dec. 23 1999 Ollie Lho Third release
  36.    Rev 1.06.02 Nov. 23 1999 Ollie Lho bug in mac probing fixed
  37.    Rev 1.06.01 Nov. 16 1999 Ollie Lho CRC calculation provide by Joseph Zbiciak (im14u2c@primenet.com)
  38.    Rev 1.06 Nov. 4 1999 Ollie Lho (ollie@sis.com.tw) Second release
  39.    Rev 1.05.05 Oct. 29 1999 Ollie Lho (ollie@sis.com.tw) Single buffer Tx/Rx
  40.    Chin-Shan Li (lcs@sis.com.tw) Added AMD Am79c901 HomePNA PHY support
  41.    Rev 1.05 Aug. 7 1999 Jim Huang (cmhuang@sis.com.tw) Initial release
  42. */
  43. #include <linux/module.h>
  44. #include <linux/version.h>
  45. #include <linux/kernel.h>
  46. #include <linux/sched.h>
  47. #include <linux/string.h>
  48. #include <linux/timer.h>
  49. #include <linux/errno.h>
  50. #include <linux/ioport.h>
  51. #include <linux/slab.h>
  52. #include <linux/interrupt.h>
  53. #include <linux/pci.h>
  54. #include <linux/netdevice.h>
  55. #include <linux/init.h>
  56. #include <linux/mii.h>
  57. #include <linux/etherdevice.h>
  58. #include <linux/skbuff.h>
  59. #include <linux/delay.h>
  60. #include <linux/ethtool.h>
  61. #include <asm/processor.h>      /* Processor type for cache alignment. */
  62. #include <asm/bitops.h>
  63. #include <asm/io.h>
  64. #include <asm/uaccess.h> /* User space memory access functions */
  65. #include "sis900.h"
  66. #define SIS900_MODULE_NAME "sis900"
  67. #define SIS900_DRV_VERSION "v1.08.02 11/30/2001"
  68. static char version[] __devinitdata =
  69. KERN_INFO "sis900.c: " SIS900_DRV_VERSION "n";
  70. static int max_interrupt_work = 40;
  71. static int multicast_filter_limit = 128;
  72. #define sis900_debug debug
  73. static int sis900_debug;
  74. /* Time in jiffies before concluding the transmitter is hung. */
  75. #define TX_TIMEOUT  (4*HZ)
  76. /* SiS 900 is capable of 32 bits BM DMA */
  77. #define SIS900_DMA_MASK 0xffffffff
  78. enum {
  79. SIS_900 = 0,
  80. SIS_7016
  81. };
  82. static char * card_names[] = {
  83. "SiS 900 PCI Fast Ethernet",
  84. "SiS 7016 PCI Fast Ethernet"
  85. };
  86. static struct pci_device_id sis900_pci_tbl [] __devinitdata = {
  87. {PCI_VENDOR_ID_SI, PCI_DEVICE_ID_SI_900,
  88.  PCI_ANY_ID, PCI_ANY_ID, 0, 0, SIS_900},
  89. {PCI_VENDOR_ID_SI, PCI_DEVICE_ID_SI_7016,
  90.  PCI_ANY_ID, PCI_ANY_ID, 0, 0, SIS_7016},
  91. {0,}
  92. };
  93. MODULE_DEVICE_TABLE (pci, sis900_pci_tbl);
  94. static void sis900_read_mode(struct net_device *net_dev, int *speed, int *duplex);
  95. static struct mii_chip_info {
  96. const char * name;
  97. u16 phy_id0;
  98. u16 phy_id1;
  99. u8  phy_types;
  100. #define HOME  0x0001
  101. #define LAN 0x0002
  102. #define MIX 0x0003
  103. } mii_chip_table[] = {
  104. { "SiS 900 Internal MII PHY",  0x001d, 0x8000, LAN },
  105. { "SiS 7014 Physical Layer Solution",  0x0016, 0xf830, LAN },
  106. { "AMD 79C901 10BASE-T PHY",   0x0000, 0x6B70, LAN },
  107. { "AMD 79C901 HomePNA PHY", 0x0000, 0x6B90, HOME},
  108. { "ICS LAN PHY", 0x0015, 0xF440, LAN },
  109. { "NS 83851 PHY", 0x2000, 0x5C20, MIX },
  110. { "Realtek RTL8201 PHY", 0x0000, 0x8200, LAN },
  111. {0,},
  112. };
  113. struct mii_phy {
  114. struct mii_phy * next;
  115. int phy_addr;
  116. u16 phy_id0;
  117. u16 phy_id1;
  118. u16 status;
  119. u8  phy_types;
  120. };
  121. typedef struct _BufferDesc {
  122. u32 link;
  123. u32 cmdsts;
  124. u32 bufptr;
  125. } BufferDesc;
  126. struct sis900_private {
  127. struct net_device_stats stats;
  128. struct pci_dev * pci_dev;
  129. spinlock_t lock;
  130. struct mii_phy * mii;
  131. struct mii_phy * first_mii; /* record the first mii structure */
  132. unsigned int cur_phy;
  133. struct timer_list timer; /* Link status detection timer. */
  134. u8     autong_complete; /* 1: auto-negotiate complete  */
  135. unsigned int cur_rx, dirty_rx; /* producer/comsumer pointers for Tx/Rx ring */
  136. unsigned int cur_tx, dirty_tx;
  137. /* The saved address of a sent/receive-in-place packet buffer */
  138. struct sk_buff *tx_skbuff[NUM_TX_DESC];
  139. struct sk_buff *rx_skbuff[NUM_RX_DESC];
  140. BufferDesc *tx_ring;
  141. BufferDesc *rx_ring;
  142. dma_addr_t tx_ring_dma;
  143. dma_addr_t rx_ring_dma;
  144. unsigned int tx_full; /* The Tx queue is full.    */
  145. };
  146. MODULE_AUTHOR("Jim Huang <cmhuang@sis.com.tw>, Ollie Lho <ollie@sis.com.tw>");
  147. MODULE_DESCRIPTION("SiS 900 PCI Fast Ethernet driver");
  148. MODULE_LICENSE("GPL");
  149. MODULE_PARM(multicast_filter_limit, "i");
  150. MODULE_PARM(max_interrupt_work, "i");
  151. MODULE_PARM(debug, "i");
  152. MODULE_PARM_DESC(multicast_filter_limit, "SiS 900/7016 maximum number of filtered multicast addresses");
  153. MODULE_PARM_DESC(max_interrupt_work, "SiS 900/7016 maximum events handled per interrupt");
  154. MODULE_PARM_DESC(debug, "SiS 900/7016 debug level (2-4)");
  155. static int sis900_open(struct net_device *net_dev);
  156. static int sis900_mii_probe (struct net_device * net_dev);
  157. static void sis900_init_rxfilter (struct net_device * net_dev);
  158. static u16 read_eeprom(long ioaddr, int location);
  159. static u16 mdio_read(struct net_device *net_dev, int phy_id, int location);
  160. static void mdio_write(struct net_device *net_dev, int phy_id, int location, int val);
  161. static void sis900_timer(unsigned long data);
  162. static void sis900_check_mode (struct net_device *net_dev, struct mii_phy *mii_phy);
  163. static void sis900_tx_timeout(struct net_device *net_dev);
  164. static void sis900_init_tx_ring(struct net_device *net_dev);
  165. static void sis900_init_rx_ring(struct net_device *net_dev);
  166. static int sis900_start_xmit(struct sk_buff *skb, struct net_device *net_dev);
  167. static int sis900_rx(struct net_device *net_dev);
  168. static void sis900_finish_xmit (struct net_device *net_dev);
  169. static void sis900_interrupt(int irq, void *dev_instance, struct pt_regs *regs);
  170. static int sis900_close(struct net_device *net_dev);
  171. static int mii_ioctl(struct net_device *net_dev, struct ifreq *rq, int cmd);
  172. static struct net_device_stats *sis900_get_stats(struct net_device *net_dev);
  173. static u16 sis900_compute_hashtable_index(u8 *addr, u8 revision);
  174. static void set_rx_mode(struct net_device *net_dev);
  175. static void sis900_reset(struct net_device *net_dev);
  176. static void sis630_set_eq(struct net_device *net_dev, u8 revision);
  177. static int sis900_set_config(struct net_device *dev, struct ifmap *map);
  178. static u16 sis900_default_phy(struct net_device * net_dev);
  179. static void sis900_set_capability( struct net_device *net_dev ,struct mii_phy *phy);
  180. static u16 sis900_reset_phy(struct net_device *net_dev, int phy_addr);
  181. static void sis900_auto_negotiate(struct net_device *net_dev, int phy_addr);
  182. static void sis900_set_mode (long ioaddr, int speed, int duplex);
  183. /**
  184.  * sis900_get_mac_addr: - Get MAC address for stand alone SiS900 model
  185.  * @pci_dev: the sis900 pci device
  186.  * @net_dev: the net device to get address for 
  187.  *
  188.  * Older SiS900 and friends, use EEPROM to store MAC address.
  189.  * MAC address is read from read_eeprom() into @net_dev->dev_addr.
  190.  */
  191. static int __devinit sis900_get_mac_addr(struct pci_dev * pci_dev, struct net_device *net_dev)
  192. {
  193. long ioaddr = pci_resource_start(pci_dev, 0);
  194. u16 signature;
  195. int i;
  196. /* check to see if we have sane EEPROM */
  197. signature = (u16) read_eeprom(ioaddr, EEPROMSignature);    
  198. if (signature == 0xffff || signature == 0x0000) {
  199. printk (KERN_INFO "%s: Error EERPOM read %xn", 
  200. net_dev->name, signature);
  201. return 0;
  202. }
  203. /* get MAC address from EEPROM */
  204. for (i = 0; i < 3; i++)
  205.         ((u16 *)(net_dev->dev_addr))[i] = read_eeprom(ioaddr, i+EEPROMMACAddr);
  206. return 1;
  207. }
  208. /**
  209.  * sis630e_get_mac_addr: - Get MAC address for SiS630E model
  210.  * @pci_dev: the sis900 pci device
  211.  * @net_dev: the net device to get address for 
  212.  *
  213.  * SiS630E model, use APC CMOS RAM to store MAC address.
  214.  * APC CMOS RAM is accessed through ISA bridge.
  215.  * MAC address is read into @net_dev->dev_addr.
  216.  */
  217. static int __devinit sis630e_get_mac_addr(struct pci_dev * pci_dev, struct net_device *net_dev)
  218. {
  219. struct pci_dev *isa_bridge = NULL;
  220. u8 reg;
  221. int i;
  222. if ((isa_bridge = pci_find_device(0x1039, 0x0008, isa_bridge)) == NULL) {
  223. printk("%s: Can not find ISA bridgen", net_dev->name);
  224. return 0;
  225. }
  226. pci_read_config_byte(isa_bridge, 0x48, &reg);
  227. pci_write_config_byte(isa_bridge, 0x48, reg | 0x40);
  228. for (i = 0; i < 6; i++) {
  229. outb(0x09 + i, 0x70);
  230. ((u8 *)(net_dev->dev_addr))[i] = inb(0x71); 
  231. }
  232. pci_write_config_byte(isa_bridge, 0x48, reg & ~0x40);
  233. return 1;
  234. }
  235. /**
  236.  * sis635_get_mac_addr: - Get MAC address for SIS635 model
  237.  * @pci_dev: the sis900 pci device
  238.  * @net_dev: the net device to get address for 
  239.  *
  240.  * SiS635 model, set MAC Reload Bit to load Mac address from APC
  241.  * to rfdr. rfdr is accessed through rfcr. MAC address is read into 
  242.  * @net_dev->dev_addr.
  243.  */
  244. static int __devinit sis635_get_mac_addr(struct pci_dev * pci_dev, struct net_device *net_dev)
  245. {
  246. long ioaddr = net_dev->base_addr;
  247. u32 rfcrSave;
  248. u32 i;
  249. rfcrSave = inl(rfcr + ioaddr);
  250. outl(rfcrSave | RELOAD, ioaddr + cr);
  251. outl(0, ioaddr + cr);
  252. /* disable packet filtering before setting filter */
  253. outl(rfcrSave & ~RFEN, rfcr + ioaddr);
  254. /* load MAC addr to filter data register */
  255. for (i = 0 ; i < 3 ; i++) {
  256. outl((i << RFADDR_shift), ioaddr + rfcr);
  257. *( ((u16 *)net_dev->dev_addr) + i) = inw(ioaddr + rfdr);
  258. }
  259. /* enable packet filitering */
  260. outl(rfcrSave | RFEN, rfcr + ioaddr);
  261. return 1;
  262. }
  263. /**
  264.  * sis900_probe: - Probe for sis900 device
  265.  * @pci_dev: the sis900 pci device
  266.  * @pci_id: the pci device ID
  267.  *
  268.  * Check and probe sis900 net device for @pci_dev.
  269.  * Get mac address according to the chip revision, 
  270.  * and assign SiS900-specific entries in the device structure.
  271.  * ie: sis900_open(), sis900_start_xmit(), sis900_close(), etc.
  272.  */
  273. static int __devinit sis900_probe (struct pci_dev *pci_dev, const struct pci_device_id *pci_id)
  274. {
  275. struct sis900_private *sis_priv;
  276. struct net_device *net_dev;
  277. dma_addr_t ring_dma;
  278. void *ring_space;
  279. long ioaddr;
  280. int i, ret;
  281. u8 revision;
  282. char *card_name = card_names[pci_id->driver_data];
  283. /* when built into the kernel, we only print version if device is found */
  284. #ifndef MODULE
  285. static int printed_version;
  286. if (!printed_version++)
  287. printk(version);
  288. #endif
  289. /* setup various bits in PCI command register */
  290. ret = pci_enable_device(pci_dev);
  291. if(ret) return ret;
  292. i = pci_set_dma_mask(pci_dev, SIS900_DMA_MASK);
  293. if(i){
  294. printk(KERN_ERR "sis900.c: architecture does not support"
  295. "32bit PCI busmaster DMAn");
  296. return i;
  297. }
  298. pci_set_master(pci_dev);
  299. net_dev = alloc_etherdev(sizeof(struct sis900_private));
  300. if (!net_dev)
  301. return -ENOMEM;
  302. SET_MODULE_OWNER(net_dev);
  303. /* We do a request_region() to register /proc/ioports info. */
  304. ioaddr = pci_resource_start(pci_dev, 0);
  305. ret = pci_request_regions(pci_dev, "sis900");
  306. if (ret)
  307. goto err_out;
  308. sis_priv = net_dev->priv;
  309. net_dev->base_addr = ioaddr;
  310. net_dev->irq = pci_dev->irq;
  311. sis_priv->pci_dev = pci_dev;
  312. spin_lock_init(&sis_priv->lock);
  313. pci_set_drvdata(pci_dev, net_dev);
  314. ring_space = pci_alloc_consistent(pci_dev, TX_TOTAL_SIZE, &ring_dma);
  315. if (!ring_space) {
  316. ret = -ENOMEM;
  317. goto err_out_cleardev;
  318. }
  319. sis_priv->tx_ring = (BufferDesc *)ring_space;
  320. sis_priv->tx_ring_dma = ring_dma;
  321. ring_space = pci_alloc_consistent(pci_dev, RX_TOTAL_SIZE, &ring_dma);
  322. if (!ring_space) {
  323. ret = -ENOMEM;
  324. goto err_unmap_tx;
  325. }
  326. sis_priv->rx_ring = (BufferDesc *)ring_space;
  327. sis_priv->rx_ring_dma = ring_dma;
  328. /* The SiS900-specific entries in the device structure. */
  329. net_dev->open = &sis900_open;
  330. net_dev->hard_start_xmit = &sis900_start_xmit;
  331. net_dev->stop = &sis900_close;
  332. net_dev->get_stats = &sis900_get_stats;
  333. net_dev->set_config = &sis900_set_config;
  334. net_dev->set_multicast_list = &set_rx_mode;
  335. net_dev->do_ioctl = &mii_ioctl;
  336. net_dev->tx_timeout = sis900_tx_timeout;
  337. net_dev->watchdog_timeo = TX_TIMEOUT;
  338. ret = register_netdev(net_dev);
  339. if (ret)
  340. goto err_unmap_rx;
  341. /* Get Mac address according to the chip revision */
  342. pci_read_config_byte(pci_dev, PCI_CLASS_REVISION, &revision);
  343. ret = 0;
  344. if (revision == SIS630E_900_REV)
  345. ret = sis630e_get_mac_addr(pci_dev, net_dev);
  346. else if ((revision > 0x81) && (revision <= 0x90) )
  347. ret = sis635_get_mac_addr(pci_dev, net_dev);
  348. else
  349. ret = sis900_get_mac_addr(pci_dev, net_dev);
  350. if (ret == 0) {
  351. ret = -ENODEV;
  352. goto err_out_unregister;
  353. }
  354. /* 630ET : set the mii access mode as software-mode */
  355. if (revision == SIS630ET_900_REV)
  356. outl(ACCESSMODE | inl(ioaddr + cr), ioaddr + cr);
  357. /* probe for mii transceiver */
  358. if (sis900_mii_probe(net_dev) == 0) {
  359. ret = -ENODEV;
  360. goto err_out_unregister;
  361. }
  362. /* print some information about our NIC */
  363. printk(KERN_INFO "%s: %s at %#lx, IRQ %d, ", net_dev->name,
  364.        card_name, ioaddr, net_dev->irq);
  365. for (i = 0; i < 5; i++)
  366. printk("%2.2x:", (u8)net_dev->dev_addr[i]);
  367. printk("%2.2x.n", net_dev->dev_addr[i]);
  368. return 0;
  369.  err_out_unregister:
  370.   unregister_netdev(net_dev);
  371.  err_unmap_rx:
  372. pci_free_consistent(pci_dev, RX_TOTAL_SIZE, sis_priv->rx_ring,
  373. sis_priv->rx_ring_dma);
  374.  err_unmap_tx:
  375. pci_free_consistent(pci_dev, TX_TOTAL_SIZE, sis_priv->tx_ring,
  376. sis_priv->tx_ring_dma);
  377.  err_out_cleardev:
  378.   pci_set_drvdata(pci_dev, NULL);
  379. pci_release_regions(pci_dev);
  380.  err_out:
  381. kfree(net_dev);
  382. return ret;
  383. }
  384. /**
  385.  * sis900_mii_probe: - Probe MII PHY for sis900
  386.  * @net_dev: the net device to probe for
  387.  *
  388.  * Search for total of 32 possible mii phy addresses.
  389.  * Identify and set current phy if found one,
  390.  * return error if it failed to found.
  391.  */
  392. static int __init sis900_mii_probe (struct net_device * net_dev)
  393. {
  394. struct sis900_private * sis_priv = net_dev->priv;
  395. u16 poll_bit = MII_STAT_LINK, status = 0;
  396. unsigned int timeout = jiffies + 5 * HZ;
  397. int phy_addr;
  398. u8 revision;
  399. sis_priv->mii = NULL;
  400. /* search for total of 32 possible mii phy addresses */
  401. for (phy_addr = 0; phy_addr < 32; phy_addr++) {
  402. struct mii_phy * mii_phy = NULL;
  403. u16 mii_status;
  404. int i;
  405. mii_phy = NULL;
  406. for(i = 0; i < 2; i++)
  407. mii_status = mdio_read(net_dev, phy_addr, MII_STATUS);
  408. if (mii_status == 0xffff || mii_status == 0x0000)
  409. /* the mii is not accessable, try next one */
  410. continue;
  411. if ((mii_phy = kmalloc(sizeof(struct mii_phy), GFP_KERNEL)) == NULL) {
  412. printk(KERN_INFO "Cannot allocate mem for struct mii_phyn");
  413. return 0;
  414. }
  415. mii_phy->phy_id0 = mdio_read(net_dev, phy_addr, MII_PHY_ID0);
  416. mii_phy->phy_id1 = mdio_read(net_dev, phy_addr, MII_PHY_ID1);
  417. mii_phy->phy_addr = phy_addr;
  418. mii_phy->status = mii_status;
  419. mii_phy->next = sis_priv->mii;
  420. sis_priv->mii = mii_phy;
  421. sis_priv->first_mii = mii_phy;
  422. for (i = 0; mii_chip_table[i].phy_id1; i++)
  423. if ((mii_phy->phy_id0 == mii_chip_table[i].phy_id0 ) &&
  424.     ((mii_phy->phy_id1 & 0xFFF0) == mii_chip_table[i].phy_id1)){
  425. mii_phy->phy_types = mii_chip_table[i].phy_types;
  426. if (mii_chip_table[i].phy_types == MIX)
  427. mii_phy->phy_types =
  428. (mii_status & (MII_STAT_CAN_TX_FDX | MII_STAT_CAN_TX)) ? LAN : HOME;
  429. printk(KERN_INFO "%s: %s transceiver found at address %d.n",
  430.        net_dev->name, mii_chip_table[i].name, phy_addr);
  431. break;
  432. }
  433. if( !mii_chip_table[i].phy_id1 )
  434. printk(KERN_INFO "%s: Unknown PHY transceiver found at address %d.n",
  435.        net_dev->name, phy_addr);
  436. }
  437. if (sis_priv->mii == NULL) {
  438. printk(KERN_INFO "%s: No MII transceivers found!n",
  439.        net_dev->name);
  440. return 0;
  441. }
  442. /* select default PHY for mac */
  443. sis_priv->mii = NULL;
  444. sis900_default_phy( net_dev );
  445. /* Reset phy if default phy is internal sis900 */
  446.         if ((sis_priv->mii->phy_id0 == 0x001D) &&
  447.     ((sis_priv->mii->phy_id1&0xFFF0) == 0x8000))
  448.          status = sis900_reset_phy(net_dev, sis_priv->cur_phy);
  449.         
  450.         /* workaround for ICS1893 PHY */
  451.         if ((sis_priv->mii->phy_id0 == 0x0015) &&
  452.             ((sis_priv->mii->phy_id1&0xFFF0) == 0xF440))
  453.              mdio_write(net_dev, sis_priv->cur_phy, 0x0018, 0xD200);
  454. if(status & MII_STAT_LINK){
  455. while (poll_bit) {
  456. current->state = TASK_INTERRUPTIBLE;
  457. schedule_timeout(0);
  458. poll_bit ^= (mdio_read(net_dev, sis_priv->cur_phy, MII_STATUS) & poll_bit);
  459. if (jiffies >= timeout) {
  460. printk(KERN_WARNING "%s: reset phy and link down nown", net_dev->name);
  461. return -ETIME;
  462. }
  463. }
  464. }
  465. pci_read_config_byte(sis_priv->pci_dev, PCI_CLASS_REVISION, &revision);
  466. if (revision == SIS630E_900_REV) {
  467. /* SiS 630E has some bugs on default value of PHY registers */
  468. mdio_write(net_dev, sis_priv->cur_phy, MII_ANADV, 0x05e1);
  469. mdio_write(net_dev, sis_priv->cur_phy, MII_CONFIG1, 0x22);
  470. mdio_write(net_dev, sis_priv->cur_phy, MII_CONFIG2, 0xff00);
  471. mdio_write(net_dev, sis_priv->cur_phy, MII_MASK, 0xffc0);
  472. //mdio_write(net_dev, sis_priv->cur_phy, MII_CONTROL, 0x1000);
  473. }
  474. if (sis_priv->mii->status & MII_STAT_LINK)
  475. netif_carrier_on(net_dev);
  476. else
  477. netif_carrier_off(net_dev);
  478. return 1;
  479. }
  480. /**
  481.  * sis900_default_phy: - Select default PHY for sis900 mac.
  482.  * @net_dev: the net device to probe for
  483.  *
  484.  * Select first detected PHY with link as default.
  485.  * If no one is link on, select PHY whose types is HOME as default.
  486.  * If HOME doesn't exist, select LAN.
  487.  */
  488. static u16 sis900_default_phy(struct net_device * net_dev)
  489. {
  490. struct sis900_private * sis_priv = net_dev->priv;
  491.   struct mii_phy *phy = NULL, *phy_home = NULL, *default_phy = NULL;
  492. u16 status;
  493.         for( phy=sis_priv->first_mii; phy; phy=phy->next ){
  494. status = mdio_read(net_dev, phy->phy_addr, MII_STATUS);
  495. status = mdio_read(net_dev, phy->phy_addr, MII_STATUS);
  496. /* Link ON & Not select deafalut PHY */
  497.  if ( (status & MII_STAT_LINK) && !(default_phy) )
  498.   default_phy = phy;
  499.  else{
  500. status = mdio_read(net_dev, phy->phy_addr, MII_CONTROL);
  501. mdio_write(net_dev, phy->phy_addr, MII_CONTROL,
  502. status | MII_CNTL_AUTO | MII_CNTL_ISOLATE);
  503. if( phy->phy_types == HOME )
  504. phy_home = phy;
  505.  }
  506. }
  507. if( (!default_phy) && phy_home )
  508. default_phy = phy_home;
  509. else if(!default_phy)
  510. default_phy = sis_priv->first_mii;
  511. if( sis_priv->mii != default_phy ){
  512. sis_priv->mii = default_phy;
  513. sis_priv->cur_phy = default_phy->phy_addr;
  514. printk(KERN_INFO "%s: Using transceiver found at address %d as defaultn", net_dev->name,sis_priv->cur_phy);
  515. }
  516. status = mdio_read(net_dev, sis_priv->cur_phy, MII_CONTROL);
  517. status &= (~MII_CNTL_ISOLATE);
  518. mdio_write(net_dev, sis_priv->cur_phy, MII_CONTROL, status);
  519. status = mdio_read(net_dev, sis_priv->cur_phy, MII_STATUS);
  520. status = mdio_read(net_dev, sis_priv->cur_phy, MII_STATUS);
  521. return status;
  522. }
  523. /**
  524.  *  sis900_set_capability: - set the media capability of network adapter.
  525.  * @net_dev : the net device to probe for
  526.  * @phy : default PHY
  527.  *
  528.  * Set the media capability of network adapter according to
  529.  * mii status register. It's necessary before auto-negotiate.
  530.  */
  531.  
  532. static void sis900_set_capability( struct net_device *net_dev , struct mii_phy *phy )
  533. {
  534. u16 cap;
  535. u16 status;
  536. status = mdio_read(net_dev, phy->phy_addr, MII_STATUS);
  537. status = mdio_read(net_dev, phy->phy_addr, MII_STATUS);
  538. cap = MII_NWAY_CSMA_CD |
  539. ((phy->status & MII_STAT_CAN_TX_FDX)? MII_NWAY_TX_FDX:0) |
  540. ((phy->status & MII_STAT_CAN_TX)    ? MII_NWAY_TX:0) |
  541. ((phy->status & MII_STAT_CAN_T_FDX) ? MII_NWAY_T_FDX:0)|
  542. ((phy->status & MII_STAT_CAN_T)     ? MII_NWAY_T:0);
  543. mdio_write(net_dev, phy->phy_addr, MII_ANADV, cap);
  544. }
  545. /* Delay between EEPROM clock transitions. */
  546. #define eeprom_delay()  inl(ee_addr)
  547. /**
  548.  * read_eeprom: - Read Serial EEPROM
  549.  * @ioaddr: base i/o address
  550.  * @location: the EEPROM location to read
  551.  *
  552.  * Read Serial EEPROM through EEPROM Access Register.
  553.  * Note that location is in word (16 bits) unit
  554.  */
  555. static u16 read_eeprom(long ioaddr, int location)
  556. {
  557. int i;
  558. u16 retval = 0;
  559. long ee_addr = ioaddr + mear;
  560. u32 read_cmd = location | EEread;
  561. outl(0, ee_addr);
  562. eeprom_delay();
  563. outl(EECLK, ee_addr);
  564. eeprom_delay();
  565. /* Shift the read command (9) bits out. */
  566. for (i = 8; i >= 0; i--) {
  567. u32 dataval = (read_cmd & (1 << i)) ? EEDI | EECS : EECS;
  568. outl(dataval, ee_addr);
  569. eeprom_delay();
  570. outl(dataval | EECLK, ee_addr);
  571. eeprom_delay();
  572. }
  573. outb(EECS, ee_addr);
  574. eeprom_delay();
  575. /* read the 16-bits data in */
  576. for (i = 16; i > 0; i--) {
  577. outl(EECS, ee_addr);
  578. eeprom_delay();
  579. outl(EECS | EECLK, ee_addr);
  580. eeprom_delay();
  581. retval = (retval << 1) | ((inl(ee_addr) & EEDO) ? 1 : 0);
  582. eeprom_delay();
  583. }
  584. /* Terminate the EEPROM access. */
  585. outl(0, ee_addr);
  586. eeprom_delay();
  587. outl(EECLK, ee_addr);
  588. return (retval);
  589. }
  590. /* Read and write the MII management registers using software-generated
  591.    serial MDIO protocol. Note that the command bits and data bits are
  592.    send out seperately */
  593. #define mdio_delay()    inl(mdio_addr)
  594. static void mdio_idle(long mdio_addr)
  595. {
  596. outl(MDIO | MDDIR, mdio_addr);
  597. mdio_delay();
  598. outl(MDIO | MDDIR | MDC, mdio_addr);
  599. }
  600. /* Syncronize the MII management interface by shifting 32 one bits out. */
  601. static void mdio_reset(long mdio_addr)
  602. {
  603. int i;
  604. for (i = 31; i >= 0; i--) {
  605. outl(MDDIR | MDIO, mdio_addr);
  606. mdio_delay();
  607. outl(MDDIR | MDIO | MDC, mdio_addr);
  608. mdio_delay();
  609. }
  610. return;
  611. }
  612. /**
  613.  * mdio_read: - read MII PHY register
  614.  * @net_dev: the net device to read
  615.  * @phy_id: the phy address to read
  616.  * @location: the phy regiester id to read
  617.  *
  618.  * Read MII registers through MDIO and MDC
  619.  * using MDIO management frame structure and protocol(defined by ISO/IEC).
  620.  * Please see SiS7014 or ICS spec
  621.  */
  622. static u16 mdio_read(struct net_device *net_dev, int phy_id, int location)
  623. {
  624. long mdio_addr = net_dev->base_addr + mear;
  625. int mii_cmd = MIIread|(phy_id<<MIIpmdShift)|(location<<MIIregShift);
  626. u16 retval = 0;
  627. int i;
  628. mdio_reset(mdio_addr);
  629. mdio_idle(mdio_addr);
  630. for (i = 15; i >= 0; i--) {
  631. int dataval = (mii_cmd & (1 << i)) ? MDDIR | MDIO : MDDIR;
  632. outl(dataval, mdio_addr);
  633. mdio_delay();
  634. outl(dataval | MDC, mdio_addr);
  635. mdio_delay();
  636. }
  637. /* Read the 16 data bits. */
  638. for (i = 16; i > 0; i--) {
  639. outl(0, mdio_addr);
  640. mdio_delay();
  641. retval = (retval << 1) | ((inl(mdio_addr) & MDIO) ? 1 : 0);
  642. outl(MDC, mdio_addr);
  643. mdio_delay();
  644. }
  645. outl(0x00, mdio_addr);
  646. return retval;
  647. }
  648. /**
  649.  * mdio_write: - write MII PHY register
  650.  * @net_dev: the net device to write
  651.  * @phy_id: the phy address to write
  652.  * @location: the phy regiester id to write
  653.  * @value: the register value to write with
  654.  *
  655.  * Write MII registers with @value through MDIO and MDC
  656.  * using MDIO management frame structure and protocol(defined by ISO/IEC)
  657.  * please see SiS7014 or ICS spec
  658.  */
  659. static void mdio_write(struct net_device *net_dev, int phy_id, int location, int value)
  660. {
  661. long mdio_addr = net_dev->base_addr + mear;
  662. int mii_cmd = MIIwrite|(phy_id<<MIIpmdShift)|(location<<MIIregShift);
  663. int i;
  664. mdio_reset(mdio_addr);
  665. mdio_idle(mdio_addr);
  666. /* Shift the command bits out. */
  667. for (i = 15; i >= 0; i--) {
  668. int dataval = (mii_cmd & (1 << i)) ? MDDIR | MDIO : MDDIR;
  669. outb(dataval, mdio_addr);
  670. mdio_delay();
  671. outb(dataval | MDC, mdio_addr);
  672. mdio_delay();
  673. }
  674. mdio_delay();
  675. /* Shift the value bits out. */
  676. for (i = 15; i >= 0; i--) {
  677. int dataval = (value & (1 << i)) ? MDDIR | MDIO : MDDIR;
  678. outl(dataval, mdio_addr);
  679. mdio_delay();
  680. outl(dataval | MDC, mdio_addr);
  681. mdio_delay();
  682. }
  683. mdio_delay();
  684. /* Clear out extra bits. */
  685. for (i = 2; i > 0; i--) {
  686. outb(0, mdio_addr);
  687. mdio_delay();
  688. outb(MDC, mdio_addr);
  689. mdio_delay();
  690. }
  691. outl(0x00, mdio_addr);
  692. return;
  693. }
  694. /**
  695.  * sis900_reset_phy: - reset sis900 mii phy.
  696.  * @net_dev: the net device to write
  697.  * @phy_addr: default phy address
  698.  *
  699.  * Some specific phy can't work properly without reset.
  700.  * This function will be called during initialization and
  701.  * link status change from ON to DOWN.
  702.  */
  703. static u16 sis900_reset_phy(struct net_device *net_dev, int phy_addr)
  704. {
  705. int i = 0;
  706. u16 status;
  707. while (i++ < 2)
  708. status = mdio_read(net_dev, phy_addr, MII_STATUS);
  709. mdio_write( net_dev, phy_addr, MII_CONTROL, MII_CNTL_RESET );
  710. return status;
  711. }
  712. /**
  713.  * sis900_open: - open sis900 device
  714.  * @net_dev: the net device to open
  715.  *
  716.  * Do some initialization and start net interface.
  717.  * enable interrupts and set sis900 timer.
  718.  */
  719. static int
  720. sis900_open(struct net_device *net_dev)
  721. {
  722. struct sis900_private *sis_priv = net_dev->priv;
  723. long ioaddr = net_dev->base_addr;
  724. u8 revision;
  725. int ret;
  726. /* Soft reset the chip. */
  727. sis900_reset(net_dev);
  728. /* Equalizer workaround Rule */
  729. pci_read_config_byte(sis_priv->pci_dev, PCI_CLASS_REVISION, &revision);
  730. sis630_set_eq(net_dev, revision);
  731. ret = request_irq(net_dev->irq, &sis900_interrupt, SA_SHIRQ, net_dev->name, net_dev);
  732. if (ret)
  733. return ret;
  734. sis900_init_rxfilter(net_dev);
  735. sis900_init_tx_ring(net_dev);
  736. sis900_init_rx_ring(net_dev);
  737. set_rx_mode(net_dev);
  738. netif_start_queue(net_dev);
  739. /* Workaround for EDB */
  740. sis900_set_mode(ioaddr, HW_SPEED_10_MBPS, FDX_CAPABLE_HALF_SELECTED);
  741. /* Enable all known interrupts by setting the interrupt mask. */
  742. outl((RxSOVR|RxORN|RxERR|RxOK|TxURN|TxERR|TxIDLE), ioaddr + imr);
  743. outl(RxENA | inl(ioaddr + cr), ioaddr + cr);
  744. outl(IE, ioaddr + ier);
  745. sis900_check_mode(net_dev, sis_priv->mii);
  746. /* Set the timer to switch to check for link beat and perhaps switch
  747.    to an alternate media type. */
  748. init_timer(&sis_priv->timer);
  749. sis_priv->timer.expires = jiffies + HZ;
  750. sis_priv->timer.data = (unsigned long)net_dev;
  751. sis_priv->timer.function = &sis900_timer;
  752. add_timer(&sis_priv->timer);
  753. return 0;
  754. }
  755. /**
  756.  * sis900_init_rxfilter: - Initialize the Rx filter
  757.  * @net_dev: the net device to initialize for
  758.  *
  759.  * Set receive filter address to our MAC address
  760.  * and enable packet filtering.
  761.  */
  762. static void
  763. sis900_init_rxfilter (struct net_device * net_dev)
  764. {
  765. long ioaddr = net_dev->base_addr;
  766. u32 rfcrSave;
  767. u32 i;
  768. rfcrSave = inl(rfcr + ioaddr);
  769. /* disable packet filtering before setting filter */
  770. outl(rfcrSave & ~RFEN, rfcr + ioaddr);
  771. /* load MAC addr to filter data register */
  772. for (i = 0 ; i < 3 ; i++) {
  773. u32 w;
  774. w = (u32) *((u16 *)(net_dev->dev_addr)+i);
  775. outl((i << RFADDR_shift), ioaddr + rfcr);
  776. outl(w, ioaddr + rfdr);
  777. if (sis900_debug > 2) {
  778. printk(KERN_INFO "%s: Receive Filter Addrss[%d]=%xn",
  779.        net_dev->name, i, inl(ioaddr + rfdr));
  780. }
  781. }
  782. /* enable packet filitering */
  783. outl(rfcrSave | RFEN, rfcr + ioaddr);
  784. }
  785. /**
  786.  * sis900_init_tx_ring: - Initialize the Tx descriptor ring
  787.  * @net_dev: the net device to initialize for
  788.  *
  789.  * Initialize the Tx descriptor ring, 
  790.  */
  791. static void
  792. sis900_init_tx_ring(struct net_device *net_dev)
  793. {
  794. struct sis900_private *sis_priv = net_dev->priv;
  795. long ioaddr = net_dev->base_addr;
  796. int i;
  797. sis_priv->tx_full = 0;
  798. sis_priv->dirty_tx = sis_priv->cur_tx = 0;
  799. for (i = 0; i < NUM_TX_DESC; i++) {
  800. sis_priv->tx_skbuff[i] = NULL;
  801. sis_priv->tx_ring[i].link = sis_priv->tx_ring_dma +
  802. ((i+1)%NUM_TX_DESC)*sizeof(BufferDesc);
  803. sis_priv->tx_ring[i].cmdsts = 0;
  804. sis_priv->tx_ring[i].bufptr = 0;
  805. }
  806. /* load Transmit Descriptor Register */
  807. outl(sis_priv->tx_ring_dma, ioaddr + txdp);
  808. if (sis900_debug > 2)
  809. printk(KERN_INFO "%s: TX descriptor register loaded with: %8.8xn",
  810.        net_dev->name, inl(ioaddr + txdp));
  811. }
  812. /**
  813.  * sis900_init_rx_ring: - Initialize the Rx descriptor ring
  814.  * @net_dev: the net device to initialize for
  815.  *
  816.  * Initialize the Rx descriptor ring, 
  817.  * and pre-allocate recevie buffers (socket buffer)
  818.  */
  819. static void 
  820. sis900_init_rx_ring(struct net_device *net_dev)
  821. {
  822. struct sis900_private *sis_priv = net_dev->priv;
  823. long ioaddr = net_dev->base_addr;
  824. int i;
  825. sis_priv->cur_rx = 0;
  826. sis_priv->dirty_rx = 0;
  827. /* init RX descriptor */
  828. for (i = 0; i < NUM_RX_DESC; i++) {
  829. sis_priv->rx_skbuff[i] = NULL;
  830. sis_priv->rx_ring[i].link = sis_priv->rx_ring_dma +
  831. ((i+1)%NUM_RX_DESC)*sizeof(BufferDesc);
  832. sis_priv->rx_ring[i].cmdsts = 0;
  833. sis_priv->rx_ring[i].bufptr = 0;
  834. }
  835. /* allocate sock buffers */
  836. for (i = 0; i < NUM_RX_DESC; i++) {
  837. struct sk_buff *skb;
  838. if ((skb = dev_alloc_skb(RX_BUF_SIZE)) == NULL) {
  839. /* not enough memory for skbuff, this makes a "hole"
  840.    on the buffer ring, it is not clear how the
  841.    hardware will react to this kind of degenerated
  842.    buffer */
  843. break;
  844. }
  845. skb->dev = net_dev;
  846. sis_priv->rx_skbuff[i] = skb;
  847. sis_priv->rx_ring[i].cmdsts = RX_BUF_SIZE;
  848.                 sis_priv->rx_ring[i].bufptr = pci_map_single(sis_priv->pci_dev,
  849.                         skb->tail, RX_BUF_SIZE, PCI_DMA_FROMDEVICE);
  850. }
  851. sis_priv->dirty_rx = (unsigned int) (i - NUM_RX_DESC);
  852. /* load Receive Descriptor Register */
  853. outl(sis_priv->rx_ring_dma, ioaddr + rxdp);
  854. if (sis900_debug > 2)
  855. printk(KERN_INFO "%s: RX descriptor register loaded with: %8.8xn",
  856.        net_dev->name, inl(ioaddr + rxdp));
  857. }
  858. /**
  859.  * sis630_set_eq: - set phy equalizer value for 630 LAN
  860.  * @net_dev: the net device to set equalizer value
  861.  * @revision: 630 LAN revision number
  862.  *
  863.  * 630E equalizer workaround rule(Cyrus Huang 08/15)
  864.  * PHY register 14h(Test)
  865.  * Bit 14: 0 -- Automatically dectect (default)
  866.  * 1 -- Manually set Equalizer filter
  867.  * Bit 13: 0 -- (Default)
  868.  * 1 -- Speed up convergence of equalizer setting
  869.  * Bit 9 : 0 -- (Default)
  870.  * 1 -- Disable Baseline Wander
  871.  * Bit 3~7   -- Equalizer filter setting
  872.  * Link ON: Set Bit 9, 13 to 1, Bit 14 to 0
  873.  * Then calculate equalizer value
  874.  * Then set equalizer value, and set Bit 14 to 1, Bit 9 to 0
  875.  * Link Off:Set Bit 13 to 1, Bit 14 to 0
  876.  * Calculate Equalizer value:
  877.  * When Link is ON and Bit 14 is 0, SIS900PHY will auto-dectect proper equalizer value.
  878.  * When the equalizer is stable, this value is not a fixed value. It will be within
  879.  * a small range(eg. 7~9). Then we get a minimum and a maximum value(eg. min=7, max=9)
  880.  * 0 <= max <= 4  --> set equalizer to max
  881.  * 5 <= max <= 14 --> set equalizer to max+1 or set equalizer to max+2 if max == min
  882.  * max >= 15      --> set equalizer to max+5 or set equalizer to max+6 if max == min
  883.  */
  884. static void sis630_set_eq(struct net_device *net_dev, u8 revision)
  885. {
  886. struct sis900_private *sis_priv = net_dev->priv;
  887. u16 reg14h, eq_value=0, max_value=0, min_value=0;
  888. u8 host_bridge_rev;
  889. int i, maxcount=10;
  890. struct pci_dev *dev=NULL;
  891. if ( !(revision == SIS630E_900_REV || revision == SIS630EA1_900_REV ||
  892.        revision == SIS630A_900_REV || revision ==  SIS630ET_900_REV) )
  893. return;
  894. dev = pci_find_device(PCI_VENDOR_ID_SI, PCI_DEVICE_ID_SI_630, dev);
  895. if (dev)
  896. pci_read_config_byte(dev, PCI_CLASS_REVISION, &host_bridge_rev);
  897. if (netif_carrier_ok(net_dev)) {
  898. reg14h=mdio_read(net_dev, sis_priv->cur_phy, MII_RESV);
  899. mdio_write(net_dev, sis_priv->cur_phy, MII_RESV, (0x2200 | reg14h) & 0xBFFF);
  900. for (i=0; i < maxcount; i++) {
  901. eq_value=(0x00F8 & mdio_read(net_dev, sis_priv->cur_phy, MII_RESV)) >> 3;
  902. if (i == 0)
  903. max_value=min_value=eq_value;
  904. max_value=(eq_value > max_value) ? eq_value : max_value;
  905. min_value=(eq_value < min_value) ? eq_value : min_value;
  906. }
  907. /* 630E rule to determine the equalizer value */
  908. if (revision == SIS630E_900_REV || revision == SIS630EA1_900_REV ||
  909.     revision == SIS630ET_900_REV) {
  910. if (max_value < 5)
  911. eq_value=max_value;
  912. else if (max_value >= 5 && max_value < 15)
  913. eq_value=(max_value == min_value) ? max_value+2 : max_value+1;
  914. else if (max_value >= 15)
  915. eq_value=(max_value == min_value) ? max_value+6 : max_value+5;
  916. }
  917. /* 630B0&B1 rule to determine the equalizer value */
  918. if (revision == SIS630A_900_REV && 
  919.     (host_bridge_rev == SIS630B0 || host_bridge_rev == SIS630B1)) {
  920. if (max_value == 0)
  921. eq_value=3;
  922. else
  923. eq_value=(max_value+min_value+1)/2;
  924. }
  925. /* write equalizer value and setting */
  926. reg14h=mdio_read(net_dev, sis_priv->cur_phy, MII_RESV);
  927. reg14h=(reg14h & 0xFF07) | ((eq_value << 3) & 0x00F8);
  928. reg14h=(reg14h | 0x6000) & 0xFDFF;
  929. mdio_write(net_dev, sis_priv->cur_phy, MII_RESV, reg14h);
  930. }
  931. else {
  932. reg14h=mdio_read(net_dev, sis_priv->cur_phy, MII_RESV);
  933. if (revision == SIS630A_900_REV && 
  934.     (host_bridge_rev == SIS630B0 || host_bridge_rev == SIS630B1)) 
  935. mdio_write(net_dev, sis_priv->cur_phy, MII_RESV, (reg14h | 0x2200) & 0xBFFF);
  936. else
  937. mdio_write(net_dev, sis_priv->cur_phy, MII_RESV, (reg14h | 0x2000) & 0xBFFF);
  938. }
  939. return;
  940. }
  941. /**
  942.  * sis900_timer: - sis900 timer routine
  943.  * @data: pointer to sis900 net device
  944.  *
  945.  * On each timer ticks we check two things, 
  946.  * link status (ON/OFF) and link mode (10/100/Full/Half)
  947.  */
  948. static void sis900_timer(unsigned long data)
  949. {
  950. struct net_device *net_dev = (struct net_device *)data;
  951. struct sis900_private *sis_priv = net_dev->priv;
  952. struct mii_phy *mii_phy = sis_priv->mii;
  953. static int next_tick = 5*HZ;
  954. u16 status;
  955. u8 revision;
  956. if (!sis_priv->autong_complete){
  957. int speed, duplex = 0;
  958. sis900_read_mode(net_dev, &speed, &duplex);
  959. if (duplex){
  960. sis900_set_mode(net_dev->base_addr, speed, duplex);
  961. pci_read_config_byte(sis_priv->pci_dev, PCI_CLASS_REVISION, &revision);
  962. sis630_set_eq(net_dev, revision);
  963. netif_start_queue(net_dev);
  964. }
  965. sis_priv->timer.expires = jiffies + HZ;
  966. add_timer(&sis_priv->timer);
  967. return;
  968. }
  969. status = mdio_read(net_dev, sis_priv->cur_phy, MII_STATUS);
  970. status = mdio_read(net_dev, sis_priv->cur_phy, MII_STATUS);
  971. /* Link OFF -> ON */
  972. if (!netif_carrier_ok(net_dev)) {
  973. LookForLink:
  974. /* Search for new PHY */
  975. status = sis900_default_phy(net_dev);
  976. mii_phy = sis_priv->mii;
  977. if (status & MII_STAT_LINK){
  978. sis900_check_mode(net_dev, mii_phy);
  979. netif_carrier_on(net_dev);
  980. }
  981. }
  982. /* Link ON -> OFF */
  983. else {
  984.                 if (!(status & MII_STAT_LINK)){
  985.                  netif_carrier_off(net_dev);
  986.                  printk(KERN_INFO "%s: Media Link Offn", net_dev->name);
  987.                  /* Change mode issue */
  988.                  if ((mii_phy->phy_id0 == 0x001D) && 
  989.     ((mii_phy->phy_id1 & 0xFFF0) == 0x8000))
  990.                 sis900_reset_phy(net_dev,  sis_priv->cur_phy);
  991.   
  992.                  pci_read_config_byte(sis_priv->pci_dev, PCI_CLASS_REVISION, &revision);
  993. sis630_set_eq(net_dev, revision);
  994.   
  995.                  goto LookForLink;
  996.                 }
  997. }
  998. sis_priv->timer.expires = jiffies + next_tick;
  999. add_timer(&sis_priv->timer);
  1000. }
  1001. /**
  1002.  * sis900_check_mode: - check the media mode for sis900
  1003.  * @net_dev: the net device to be checked
  1004.  * @mii_phy: the mii phy
  1005.  *
  1006.  * Older driver gets the media mode from mii status output
  1007.  * register. Now we set our media capability and auto-negotiate
  1008.  * to get the upper bound of speed and duplex between two ends.
  1009.  * If the types of mii phy is HOME, it doesn't need to auto-negotiate
  1010.  * and autong_complete should be set to 1.
  1011.  */
  1012. static void sis900_check_mode (struct net_device *net_dev, struct mii_phy *mii_phy)
  1013. {
  1014. struct sis900_private *sis_priv = net_dev->priv;
  1015. long ioaddr = net_dev->base_addr;
  1016. int speed, duplex;
  1017. if( mii_phy->phy_types == LAN  ){
  1018. outl( ~EXD & inl( ioaddr + cfg ), ioaddr + cfg);
  1019. sis900_set_capability(net_dev , mii_phy);
  1020. sis900_auto_negotiate(net_dev, sis_priv->cur_phy);
  1021. }else{
  1022. outl(EXD | inl( ioaddr + cfg ), ioaddr + cfg);
  1023. speed = HW_SPEED_HOME;
  1024. duplex = FDX_CAPABLE_HALF_SELECTED;
  1025. sis900_set_mode(ioaddr, speed, duplex);
  1026. sis_priv->autong_complete = 1;
  1027. }
  1028. }
  1029. /**
  1030.  * sis900_set_mode: - Set the media mode of mac register.
  1031.  * @ioaddr: the address of the device
  1032.  * @speed : the transmit speed to be determined
  1033.  * @duplex: the duplex mode to be determined
  1034.  *
  1035.  * Set the media mode of mac register txcfg/rxcfg according to
  1036.  * speed and duplex of phy. Bit EDB_MASTER_EN indicates the EDB
  1037.  * bus is used instead of PCI bus. When this bit is set 1, the
  1038.  * Max DMA Burst Size for TX/RX DMA should be no larger than 16
  1039.  * double words.
  1040.  */
  1041. static void sis900_set_mode (long ioaddr, int speed, int duplex)
  1042. {
  1043. u32 tx_flags = 0, rx_flags = 0;
  1044. if( inl(ioaddr + cfg) & EDB_MASTER_EN ){
  1045. tx_flags = TxATP | (DMA_BURST_64 << TxMXDMA_shift) | (TX_FILL_THRESH << TxFILLT_shift);
  1046. rx_flags = DMA_BURST_64 << RxMXDMA_shift;
  1047. }
  1048. else{
  1049. tx_flags = TxATP | (DMA_BURST_512 << TxMXDMA_shift) | (TX_FILL_THRESH << TxFILLT_shift);
  1050. rx_flags = DMA_BURST_512 << RxMXDMA_shift;
  1051. }
  1052. if (speed == HW_SPEED_HOME || speed == HW_SPEED_10_MBPS ) {
  1053. rx_flags |= (RxDRNT_10 << RxDRNT_shift);
  1054. tx_flags |= (TxDRNT_10 << TxDRNT_shift);
  1055. }
  1056. else {
  1057. rx_flags |= (RxDRNT_100 << RxDRNT_shift);
  1058. tx_flags |= (TxDRNT_100 << TxDRNT_shift);
  1059. }
  1060. if (duplex == FDX_CAPABLE_FULL_SELECTED) {
  1061. tx_flags |= (TxCSI | TxHBI);
  1062. rx_flags |= RxATX;
  1063. }
  1064. outl (tx_flags, ioaddr + txcfg);
  1065. outl (rx_flags, ioaddr + rxcfg);
  1066. }
  1067. /**
  1068.  * sis900_auto_negotiate:  Set the Auto-Negotiation Enable/Reset bit.
  1069.  * @net_dev: the net device to read mode for
  1070.  * @phy_addr: mii phy address
  1071.  *
  1072.  * If the adapter is link-on, set the auto-negotiate enable/reset bit.
  1073.  * autong_complete should be set to 0 when starting auto-negotiation.
  1074.  * autong_complete should be set to 1 if we didn't start auto-negotiation.
  1075.  * sis900_timer will wait for link on again if autong_complete = 0.
  1076.  */
  1077. static void sis900_auto_negotiate(struct net_device *net_dev, int phy_addr)
  1078. {
  1079. struct sis900_private *sis_priv = net_dev->priv;
  1080. int i = 0;
  1081. u32 status;
  1082. while (i++ < 2)
  1083. status = mdio_read(net_dev, phy_addr, MII_STATUS);
  1084. if (!(status & MII_STAT_LINK)){
  1085. printk(KERN_INFO "%s: Media Link Offn", net_dev->name);
  1086. sis_priv->autong_complete = 1;
  1087. netif_carrier_off(net_dev);
  1088. return;
  1089. }
  1090. /* (Re)start AutoNegotiate */
  1091. mdio_write(net_dev, phy_addr, MII_CONTROL,
  1092.    MII_CNTL_AUTO | MII_CNTL_RST_AUTO);
  1093. sis_priv->autong_complete = 0;
  1094. }
  1095. /**
  1096.  * sis900_read_mode: - read media mode for sis900 internal phy
  1097.  * @net_dev: the net device to read mode for
  1098.  * @speed  : the transmit speed to be determined
  1099.  * @duplex : the duplex mode to be determined
  1100.  *
  1101.  * The capability of remote end will be put in mii register autorec
  1102.  * after auto-negotiation. Use AND operation to get the upper bound
  1103.  * of speed and duplex between two ends.
  1104.  */
  1105. static void sis900_read_mode(struct net_device *net_dev, int *speed, int *duplex)
  1106. {
  1107. struct sis900_private *sis_priv = net_dev->priv;
  1108. struct mii_phy *phy = sis_priv->mii;
  1109. int phy_addr = sis_priv->cur_phy;
  1110. u32 status;
  1111. u16 autoadv, autorec;
  1112. int i = 0;
  1113. while (i++ < 2)
  1114. status = mdio_read(net_dev, phy_addr, MII_STATUS);
  1115. if (!(status & MII_STAT_LINK))
  1116. return;
  1117. /* AutoNegotiate completed */
  1118. autoadv = mdio_read(net_dev, phy_addr, MII_ANADV);
  1119. autorec = mdio_read(net_dev, phy_addr, MII_ANLPAR);
  1120. status = autoadv & autorec;
  1121. *speed = HW_SPEED_10_MBPS;
  1122. *duplex = FDX_CAPABLE_HALF_SELECTED;
  1123. if (status & (MII_NWAY_TX | MII_NWAY_TX_FDX))
  1124. *speed = HW_SPEED_100_MBPS;
  1125. if (status & ( MII_NWAY_TX_FDX | MII_NWAY_T_FDX))
  1126. *duplex = FDX_CAPABLE_FULL_SELECTED;
  1127. sis_priv->autong_complete = 1;
  1128. /* Workaround for Realtek RTL8201 PHY issue */
  1129. if((phy->phy_id0 == 0x0000) && ((phy->phy_id1 & 0xFFF0) == 0x8200)){
  1130. if(mdio_read(net_dev, phy_addr, MII_CONTROL) & MII_CNTL_FDX)
  1131. *duplex = FDX_CAPABLE_FULL_SELECTED;
  1132. if(mdio_read(net_dev, phy_addr, 0x0019) & 0x01)
  1133. *speed = HW_SPEED_100_MBPS;
  1134. }
  1135. printk(KERN_INFO "%s: Media Link On %s %s-duplex n",
  1136.        net_dev->name,
  1137.        *speed == HW_SPEED_100_MBPS ?
  1138.        "100mbps" : "10mbps",
  1139.        *duplex == FDX_CAPABLE_FULL_SELECTED ?
  1140.        "full" : "half");
  1141. }
  1142. /**
  1143.  * sis900_tx_timeout: - sis900 transmit timeout routine
  1144.  * @net_dev: the net device to transmit
  1145.  *
  1146.  * print transmit timeout status
  1147.  * disable interrupts and do some tasks
  1148.  */
  1149. static void sis900_tx_timeout(struct net_device *net_dev)
  1150. {
  1151. struct sis900_private *sis_priv = net_dev->priv;
  1152. long ioaddr = net_dev->base_addr;
  1153. unsigned long flags;
  1154. int i;
  1155. printk(KERN_INFO "%s: Transmit timeout, status %8.8x %8.8x n",
  1156.        net_dev->name, inl(ioaddr + cr), inl(ioaddr + isr));
  1157. /* Disable interrupts by clearing the interrupt mask. */
  1158. outl(0x0000, ioaddr + imr);
  1159. /* use spinlock to prevent interrupt handler accessing buffer ring */
  1160. spin_lock_irqsave(&sis_priv->lock, flags);
  1161. /* discard unsent packets */
  1162. sis_priv->dirty_tx = sis_priv->cur_tx = 0;
  1163. for (i = 0; i < NUM_TX_DESC; i++) {
  1164. struct sk_buff *skb = sis_priv->tx_skbuff[i];
  1165. if (skb) {
  1166. pci_unmap_single(sis_priv->pci_dev, 
  1167. sis_priv->tx_ring[i].bufptr, skb->len,
  1168. PCI_DMA_TODEVICE);
  1169. dev_kfree_skb(skb);
  1170. sis_priv->tx_skbuff[i] = 0;
  1171. sis_priv->tx_ring[i].cmdsts = 0;
  1172. sis_priv->tx_ring[i].bufptr = 0;
  1173. sis_priv->stats.tx_dropped++;
  1174. }
  1175. }
  1176. sis_priv->tx_full = 0;
  1177. netif_wake_queue(net_dev);
  1178. spin_unlock_irqrestore(&sis_priv->lock, flags);
  1179. net_dev->trans_start = jiffies;
  1180. /* FIXME: Should we restart the transmission thread here  ?? */
  1181. outl(TxENA | inl(ioaddr + cr), ioaddr + cr);
  1182. /* Enable all known interrupts by setting the interrupt mask. */
  1183. outl((RxSOVR|RxORN|RxERR|RxOK|TxURN|TxERR|TxIDLE), ioaddr + imr);
  1184. return;
  1185. }
  1186. /**
  1187.  * sis900_start_xmit: - sis900 start transmit routine
  1188.  * @skb: socket buffer pointer to put the data being transmitted
  1189.  * @net_dev: the net device to transmit with
  1190.  *
  1191.  * Set the transmit buffer descriptor, 
  1192.  * and write TxENA to enable transimt state machine.
  1193.  * tell upper layer if the buffer is full
  1194.  */
  1195. static int
  1196. sis900_start_xmit(struct sk_buff *skb, struct net_device *net_dev)
  1197. {
  1198. struct sis900_private *sis_priv = net_dev->priv;
  1199. long ioaddr = net_dev->base_addr;
  1200. unsigned int  entry;
  1201. unsigned long flags;
  1202. /* Don't transmit data before the complete of auto-negotiation */
  1203. if(!sis_priv->autong_complete){
  1204. netif_stop_queue(net_dev);
  1205. return 1;
  1206. }
  1207. spin_lock_irqsave(&sis_priv->lock, flags);
  1208. /* Calculate the next Tx descriptor entry. */
  1209. entry = sis_priv->cur_tx % NUM_TX_DESC;
  1210. sis_priv->tx_skbuff[entry] = skb;
  1211. /* set the transmit buffer descriptor and enable Transmit State Machine */
  1212. sis_priv->tx_ring[entry].bufptr = pci_map_single(sis_priv->pci_dev,
  1213. skb->data, skb->len, PCI_DMA_TODEVICE);
  1214. sis_priv->tx_ring[entry].cmdsts = (OWN | skb->len);
  1215. outl(TxENA | inl(ioaddr + cr), ioaddr + cr);
  1216. if (++sis_priv->cur_tx - sis_priv->dirty_tx < NUM_TX_DESC) {
  1217. /* Typical path, tell upper layer that more transmission is possible */
  1218. netif_start_queue(net_dev);
  1219. } else {
  1220. /* buffer full, tell upper layer no more transmission */
  1221. sis_priv->tx_full = 1;
  1222. netif_stop_queue(net_dev);
  1223. }
  1224. spin_unlock_irqrestore(&sis_priv->lock, flags);
  1225. net_dev->trans_start = jiffies;
  1226. if (sis900_debug > 3)
  1227. printk(KERN_INFO "%s: Queued Tx packet at %p size %d "
  1228.        "to slot %d.n",
  1229.        net_dev->name, skb->data, (int)skb->len, entry);
  1230. return 0;
  1231. }
  1232. /**
  1233.  * sis900_interrupt: - sis900 interrupt handler
  1234.  * @irq: the irq number
  1235.  * @dev_instance: the client data object
  1236.  * @regs: snapshot of processor context
  1237.  *
  1238.  * The interrupt handler does all of the Rx thread work, 
  1239.  * and cleans up after the Tx thread
  1240.  */
  1241. static void sis900_interrupt(int irq, void *dev_instance, struct pt_regs *regs)
  1242. {
  1243. struct net_device *net_dev = dev_instance;
  1244. struct sis900_private *sis_priv = net_dev->priv;
  1245. int boguscnt = max_interrupt_work;
  1246. long ioaddr = net_dev->base_addr;
  1247. u32 status;
  1248. spin_lock (&sis_priv->lock);
  1249. do {
  1250. status = inl(ioaddr + isr);
  1251. if ((status & (HIBERR|TxURN|TxERR|TxIDLE|RxORN|RxERR|RxOK)) == 0)
  1252. /* nothing intresting happened */
  1253. break;
  1254. /* why dow't we break after Tx/Rx case ?? keyword: full-duplex */
  1255. if (status & (RxORN | RxERR | RxOK))
  1256. /* Rx interrupt */
  1257. sis900_rx(net_dev);
  1258. if (status & (TxURN | TxERR | TxIDLE))
  1259. /* Tx interrupt */
  1260. sis900_finish_xmit(net_dev);
  1261. /* something strange happened !!! */
  1262. if (status & HIBERR) {
  1263. printk(KERN_INFO "%s: Abnormal interrupt,"
  1264.        "status %#8.8x.n", net_dev->name, status);
  1265. break;
  1266. }
  1267. if (--boguscnt < 0) {
  1268. printk(KERN_INFO "%s: Too much work at interrupt, "
  1269.        "interrupt status = %#8.8x.n",
  1270.        net_dev->name, status);
  1271. break;
  1272. }
  1273. } while (1);
  1274. if (sis900_debug > 3)
  1275. printk(KERN_INFO "%s: exiting interrupt, "
  1276.        "interrupt status = 0x%#8.8x.n",
  1277.        net_dev->name, inl(ioaddr + isr));
  1278. spin_unlock (&sis_priv->lock);
  1279. return;
  1280. }
  1281. /**
  1282.  * sis900_rx: - sis900 receive routine
  1283.  * @net_dev: the net device which receives data
  1284.  *
  1285.  * Process receive interrupt events, 
  1286.  * put buffer to higher layer and refill buffer pool
  1287.  * Note: This fucntion is called by interrupt handler, 
  1288.  * don't do "too much" work here
  1289.  */
  1290. static int sis900_rx(struct net_device *net_dev)
  1291. {
  1292. struct sis900_private *sis_priv = net_dev->priv;
  1293. long ioaddr = net_dev->base_addr;
  1294. unsigned int entry = sis_priv->cur_rx % NUM_RX_DESC;
  1295. u32 rx_status = sis_priv->rx_ring[entry].cmdsts;
  1296. if (sis900_debug > 3)
  1297. printk(KERN_INFO "sis900_rx, cur_rx:%4.4d, dirty_rx:%4.4d "
  1298.        "status:0x%8.8xn",
  1299.        sis_priv->cur_rx, sis_priv->dirty_rx, rx_status);
  1300. while (rx_status & OWN) {
  1301. unsigned int rx_size;
  1302. rx_size = (rx_status & DSIZE) - CRC_SIZE;
  1303. if (rx_status & (ABORT|OVERRUN|TOOLONG|RUNT|RXISERR|CRCERR|FAERR)) {
  1304. /* corrupted packet received */
  1305. if (sis900_debug > 3)
  1306. printk(KERN_INFO "%s: Corrupted packet "
  1307.        "received, buffer status = 0x%8.8x.n",
  1308.        net_dev->name, rx_status);
  1309. sis_priv->stats.rx_errors++;
  1310. if (rx_status & OVERRUN)
  1311. sis_priv->stats.rx_over_errors++;
  1312. if (rx_status & (TOOLONG|RUNT))
  1313. sis_priv->stats.rx_length_errors++;
  1314. if (rx_status & (RXISERR | FAERR))
  1315. sis_priv->stats.rx_frame_errors++;
  1316. if (rx_status & CRCERR) 
  1317. sis_priv->stats.rx_crc_errors++;
  1318. /* reset buffer descriptor state */
  1319. sis_priv->rx_ring[entry].cmdsts = RX_BUF_SIZE;
  1320. } else {
  1321. struct sk_buff * skb;
  1322. /* This situation should never happen, but due to
  1323.    some unknow bugs, it is possible that
  1324.    we are working on NULL sk_buff :-( */
  1325. if (sis_priv->rx_skbuff[entry] == NULL) {
  1326. printk(KERN_INFO "%s: NULL pointer " 
  1327.        "encountered in Rx ring, skippingn",
  1328.        net_dev->name);
  1329. break;
  1330. }
  1331. pci_dma_sync_single(sis_priv->pci_dev, 
  1332. sis_priv->rx_ring[entry].bufptr, RX_BUF_SIZE, 
  1333. PCI_DMA_FROMDEVICE);
  1334. pci_unmap_single(sis_priv->pci_dev, 
  1335. sis_priv->rx_ring[entry].bufptr, RX_BUF_SIZE, 
  1336. PCI_DMA_FROMDEVICE);
  1337. /* give the socket buffer to upper layers */
  1338. skb = sis_priv->rx_skbuff[entry];
  1339. skb_put(skb, rx_size);
  1340. skb->protocol = eth_type_trans(skb, net_dev);
  1341. netif_rx(skb);
  1342. /* some network statistics */
  1343. if ((rx_status & BCAST) == MCAST)
  1344. sis_priv->stats.multicast++;
  1345. net_dev->last_rx = jiffies;
  1346. sis_priv->stats.rx_bytes += rx_size;
  1347. sis_priv->stats.rx_packets++;
  1348. /* refill the Rx buffer, what if there is not enought memory for
  1349.    new socket buffer ?? */
  1350. if ((skb = dev_alloc_skb(RX_BUF_SIZE)) == NULL) {
  1351. /* not enough memory for skbuff, this makes a "hole"
  1352.    on the buffer ring, it is not clear how the
  1353.    hardware will react to this kind of degenerated
  1354.    buffer */
  1355. printk(KERN_INFO "%s: Memory squeeze,"
  1356.        "deferring packet.n",
  1357.        net_dev->name);
  1358. sis_priv->rx_skbuff[entry] = NULL;
  1359. /* reset buffer descriptor state */
  1360. sis_priv->rx_ring[entry].cmdsts = 0;
  1361. sis_priv->rx_ring[entry].bufptr = 0;
  1362. sis_priv->stats.rx_dropped++;
  1363. break;
  1364. }
  1365. skb->dev = net_dev;
  1366. sis_priv->rx_skbuff[entry] = skb;
  1367. sis_priv->rx_ring[entry].cmdsts = RX_BUF_SIZE;
  1368.                  sis_priv->rx_ring[entry].bufptr = 
  1369. pci_map_single(sis_priv->pci_dev, skb->tail, 
  1370. RX_BUF_SIZE, PCI_DMA_FROMDEVICE);
  1371. sis_priv->dirty_rx++;
  1372. }
  1373. sis_priv->cur_rx++;
  1374. entry = sis_priv->cur_rx % NUM_RX_DESC;
  1375. rx_status = sis_priv->rx_ring[entry].cmdsts;
  1376. } // while
  1377. /* refill the Rx buffer, what if the rate of refilling is slower than 
  1378.    consuming ?? */
  1379. for (;sis_priv->cur_rx - sis_priv->dirty_rx > 0; sis_priv->dirty_rx++) {
  1380. struct sk_buff *skb;
  1381. entry = sis_priv->dirty_rx % NUM_RX_DESC;
  1382. if (sis_priv->rx_skbuff[entry] == NULL) {
  1383. if ((skb = dev_alloc_skb(RX_BUF_SIZE)) == NULL) {
  1384. /* not enough memory for skbuff, this makes a "hole"
  1385.    on the buffer ring, it is not clear how the 
  1386.    hardware will react to this kind of degenerated 
  1387.    buffer */
  1388. printk(KERN_INFO "%s: Memory squeeze,"
  1389.        "deferring packet.n",
  1390.        net_dev->name);
  1391. sis_priv->stats.rx_dropped++;
  1392. break;
  1393. }
  1394. skb->dev = net_dev;
  1395. sis_priv->rx_skbuff[entry] = skb;
  1396. sis_priv->rx_ring[entry].cmdsts = RX_BUF_SIZE;
  1397.                  sis_priv->rx_ring[entry].bufptr =
  1398. pci_map_single(sis_priv->pci_dev, skb->tail,
  1399. RX_BUF_SIZE, PCI_DMA_FROMDEVICE);
  1400. }
  1401. }
  1402. /* re-enable the potentially idle receive state matchine */
  1403. outl(RxENA | inl(ioaddr + cr), ioaddr + cr );
  1404. return 0;
  1405. }
  1406. /**
  1407.  * sis900_finish_xmit: - finish up transmission of packets
  1408.  * @net_dev: the net device to be transmitted on
  1409.  *
  1410.  * Check for error condition and free socket buffer etc 
  1411.  * schedule for more transmission as needed
  1412.  * Note: This fucntion is called by interrupt handler, 
  1413.  * don't do "too much" work here
  1414.  */
  1415. static void sis900_finish_xmit (struct net_device *net_dev)
  1416. {
  1417. struct sis900_private *sis_priv = net_dev->priv;
  1418. for (; sis_priv->dirty_tx < sis_priv->cur_tx; sis_priv->dirty_tx++) {
  1419. struct sk_buff *skb;
  1420. unsigned int entry;
  1421. u32 tx_status;
  1422. entry = sis_priv->dirty_tx % NUM_TX_DESC;
  1423. tx_status = sis_priv->tx_ring[entry].cmdsts;
  1424. if (tx_status & OWN) {
  1425. /* The packet is not transmitted yet (owned by hardware) !
  1426.    Note: the interrupt is generated only when Tx Machine
  1427.    is idle, so this is an almost impossible case */
  1428. break;
  1429. }
  1430. if (tx_status & (ABORT | UNDERRUN | OWCOLL)) {
  1431. /* packet unsuccessfully transmitted */
  1432. if (sis900_debug > 3)
  1433. printk(KERN_INFO "%s: Transmit "
  1434.        "error, Tx status %8.8x.n",
  1435.        net_dev->name, tx_status);
  1436. sis_priv->stats.tx_errors++;
  1437. if (tx_status & UNDERRUN)
  1438. sis_priv->stats.tx_fifo_errors++;
  1439. if (tx_status & ABORT)
  1440. sis_priv->stats.tx_aborted_errors++;
  1441. if (tx_status & NOCARRIER)
  1442. sis_priv->stats.tx_carrier_errors++;
  1443. if (tx_status & OWCOLL)
  1444. sis_priv->stats.tx_window_errors++;
  1445. } else {
  1446. /* packet successfully transmitted */
  1447. sis_priv->stats.collisions += (tx_status & COLCNT) >> 16;
  1448. sis_priv->stats.tx_bytes += tx_status & DSIZE;
  1449. sis_priv->stats.tx_packets++;
  1450. }
  1451. /* Free the original skb. */
  1452. skb = sis_priv->tx_skbuff[entry];
  1453. pci_unmap_single(sis_priv->pci_dev, 
  1454. sis_priv->tx_ring[entry].bufptr, skb->len,
  1455. PCI_DMA_TODEVICE);
  1456. dev_kfree_skb_irq(skb);
  1457. sis_priv->tx_skbuff[entry] = NULL;
  1458. sis_priv->tx_ring[entry].bufptr = 0;
  1459. sis_priv->tx_ring[entry].cmdsts = 0;
  1460. }
  1461. if (sis_priv->tx_full && netif_queue_stopped(net_dev) &&
  1462.     sis_priv->cur_tx - sis_priv->dirty_tx < NUM_TX_DESC - 4) {
  1463. /* The ring is no longer full, clear tx_full and schedule more transmission
  1464.    by netif_wake_queue(net_dev) */
  1465. sis_priv->tx_full = 0;
  1466. netif_wake_queue (net_dev);
  1467. }
  1468. }
  1469. /**
  1470.  * sis900_close: - close sis900 device 
  1471.  * @net_dev: the net device to be closed
  1472.  *
  1473.  * Disable interrupts, stop the Tx and Rx Status Machine 
  1474.  * free Tx and RX socket buffer
  1475.  */
  1476. static int
  1477. sis900_close(struct net_device *net_dev)
  1478. {
  1479. long ioaddr = net_dev->base_addr;
  1480. struct sis900_private *sis_priv = net_dev->priv;
  1481. struct sk_buff *skb;
  1482. int i;
  1483. netif_stop_queue(net_dev);
  1484. /* Disable interrupts by clearing the interrupt mask. */
  1485. outl(0x0000, ioaddr + imr);
  1486. outl(0x0000, ioaddr + ier);
  1487. /* Stop the chip's Tx and Rx Status Machine */
  1488. outl(RxDIS | TxDIS | inl(ioaddr + cr), ioaddr + cr);
  1489. del_timer(&sis_priv->timer);
  1490. free_irq(net_dev->irq, net_dev);
  1491. /* Free Tx and RX skbuff */
  1492. for (i = 0; i < NUM_RX_DESC; i++) {
  1493. skb = sis_priv->rx_skbuff[i];
  1494. if (skb) {
  1495. pci_unmap_single(sis_priv->pci_dev, 
  1496. sis_priv->rx_ring[i].bufptr,
  1497. RX_BUF_SIZE, PCI_DMA_FROMDEVICE);
  1498. dev_kfree_skb(skb);
  1499. sis_priv->rx_skbuff[i] = 0;
  1500. }
  1501. }
  1502. for (i = 0; i < NUM_TX_DESC; i++) {
  1503. skb = sis_priv->tx_skbuff[i];
  1504. if (skb) {
  1505. pci_unmap_single(sis_priv->pci_dev, 
  1506. sis_priv->tx_ring[i].bufptr, skb->len,
  1507. PCI_DMA_TODEVICE);
  1508. dev_kfree_skb(skb);
  1509. sis_priv->tx_skbuff[i] = 0;
  1510. }
  1511. }
  1512. /* Green! Put the chip in low-power mode. */
  1513. return 0;
  1514. }
  1515. /**
  1516.  * netdev_ethtool_ioctl: - For the basic support of ethtool
  1517.  * @net_dev: the net device to command for
  1518.  * @useraddr: start address of interface request
  1519.  *
  1520.  * Process ethtool command such as "ehtool -i" to show information
  1521.  */
  1522. static int netdev_ethtool_ioctl (struct net_device *net_dev, void *useraddr)
  1523. {
  1524.   struct sis900_private *sis_priv = net_dev->priv;
  1525.   u32 ethcmd;
  1526. if (copy_from_user (&ethcmd, useraddr, sizeof (ethcmd)))
  1527. return -EFAULT;
  1528. switch (ethcmd) {
  1529. case ETHTOOL_GDRVINFO:
  1530. {
  1531. struct ethtool_drvinfo info = { ETHTOOL_GDRVINFO };
  1532. strcpy (info.driver, SIS900_MODULE_NAME);
  1533. strcpy (info.version, SIS900_DRV_VERSION);
  1534. strcpy (info.bus_info, sis_priv->pci_dev->slot_name);
  1535. if (copy_to_user (useraddr, &info, sizeof (info)))
  1536. return -EFAULT;
  1537. return 0;
  1538. }
  1539. default:
  1540. break;
  1541. }
  1542. return -EOPNOTSUPP;
  1543. }
  1544. /**
  1545.  * mii_ioctl: - process MII i/o control command 
  1546.  * @net_dev: the net device to command for
  1547.  * @rq: parameter for command
  1548.  * @cmd: the i/o command
  1549.  *
  1550.  * Process MII command like read/write MII register
  1551.  */
  1552. static int mii_ioctl(struct net_device *net_dev, struct ifreq *rq, int cmd)
  1553. {
  1554. struct sis900_private *sis_priv = net_dev->priv;
  1555. struct mii_ioctl_data *data = (struct mii_ioctl_data *)&rq->ifr_data;
  1556. switch(cmd) {
  1557. case SIOCETHTOOL:
  1558. return netdev_ethtool_ioctl(net_dev, (void *) rq->ifr_data);
  1559. case SIOCGMIIPHY: /* Get address of MII PHY in use. */
  1560. case SIOCDEVPRIVATE: /* for binary compat, remove in 2.5 */
  1561. data->phy_id = sis_priv->mii->phy_addr;
  1562. /* Fall Through */
  1563. case SIOCGMIIREG: /* Read MII PHY register. */
  1564. case SIOCDEVPRIVATE+1: /* for binary compat, remove in 2.5 */
  1565. data->val_out = mdio_read(net_dev, data->phy_id & 0x1f, data->reg_num & 0x1f);
  1566. return 0;
  1567. case SIOCSMIIREG: /* Write MII PHY register. */
  1568. case SIOCDEVPRIVATE+2: /* for binary compat, remove in 2.5 */
  1569. if (!capable(CAP_NET_ADMIN))
  1570. return -EPERM;
  1571. mdio_write(net_dev, data->phy_id & 0x1f, data->reg_num & 0x1f, data->val_in);
  1572. return 0;
  1573. default:
  1574. return -EOPNOTSUPP;
  1575. }
  1576. }
  1577. /**
  1578.  * sis900_get_stats: - Get sis900 read/write statistics 
  1579.  * @net_dev: the net device to get statistics for
  1580.  *
  1581.  * get tx/rx statistics for sis900
  1582.  */
  1583. static struct net_device_stats *
  1584. sis900_get_stats(struct net_device *net_dev)
  1585. {
  1586. struct sis900_private *sis_priv = net_dev->priv;
  1587. return &sis_priv->stats;
  1588. }
  1589. /**
  1590.  * sis900_set_config: - Set media type by net_device.set_config 
  1591.  * @dev: the net device for media type change
  1592.  * @map: ifmap passed by ifconfig
  1593.  *
  1594.  * Set media type to 10baseT, 100baseT or 0(for auto) by ifconfig
  1595.  * we support only port changes. All other runtime configuration
  1596.  * changes will be ignored
  1597.  */
  1598. static int sis900_set_config(struct net_device *dev, struct ifmap *map)
  1599. {    
  1600. struct sis900_private *sis_priv = dev->priv;
  1601. struct mii_phy *mii_phy = sis_priv->mii;
  1602.         
  1603. u16 status;
  1604. if ((map->port != (u_char)(-1)) && (map->port != dev->if_port)) {
  1605. /* we switch on the ifmap->port field. I couldn't find anything
  1606.    like a definition or standard for the values of that field.
  1607.    I think the meaning of those values is device specific. But
  1608.    since I would like to change the media type via the ifconfig
  1609.    command I use the definition from linux/netdevice.h 
  1610.    (which seems to be different from the ifport(pcmcia) definition) 
  1611. */
  1612. switch(map->port){
  1613. case IF_PORT_UNKNOWN: /* use auto here */   
  1614. dev->if_port = map->port;
  1615. /* we are going to change the media type, so the Link will
  1616.    be temporary down and we need to reflect that here. When
  1617.    the Link comes up again, it will be sensed by the sis_timer
  1618.    procedure, which also does all the rest for us */
  1619. netif_carrier_off(dev);
  1620.                 
  1621. /* read current state */
  1622. status = mdio_read(dev, mii_phy->phy_addr, MII_CONTROL);
  1623.                 
  1624. /* enable auto negotiation and reset the negotioation
  1625.    (I dont really know what the auto negatiotiation reset
  1626.    really means, but it sounds for me right to do one here)*/
  1627. mdio_write(dev, mii_phy->phy_addr,
  1628.    MII_CONTROL, status | MII_CNTL_AUTO | MII_CNTL_RST_AUTO);
  1629. break;
  1630.             
  1631. case IF_PORT_10BASET: /* 10BaseT */         
  1632. dev->if_port = map->port;
  1633.                 
  1634. /* we are going to change the media type, so the Link will
  1635.    be temporary down and we need to reflect that here. When
  1636.    the Link comes up again, it will be sensed by the sis_timer
  1637.    procedure, which also does all the rest for us */
  1638. netif_carrier_off(dev);
  1639.         
  1640. /* set Speed to 10Mbps */
  1641. /* read current state */
  1642. status = mdio_read(dev, mii_phy->phy_addr, MII_CONTROL);
  1643.                 
  1644. /* disable auto negotiation and force 10MBit mode*/
  1645. mdio_write(dev, mii_phy->phy_addr,
  1646.    MII_CONTROL, status & ~(MII_CNTL_SPEED | MII_CNTL_AUTO));
  1647. break;
  1648.             
  1649. case IF_PORT_100BASET: /* 100BaseT */
  1650. case IF_PORT_100BASETX: /* 100BaseTx */ 
  1651. dev->if_port = map->port;
  1652.                 
  1653. /* we are going to change the media type, so the Link will
  1654.    be temporary down and we need to reflect that here. When
  1655.    the Link comes up again, it will be sensed by the sis_timer
  1656.    procedure, which also does all the rest for us */
  1657. netif_carrier_off(dev);
  1658.                 
  1659. /* set Speed to 100Mbps */
  1660. /* disable auto negotiation and enable 100MBit Mode */
  1661. status = mdio_read(dev, mii_phy->phy_addr, MII_CONTROL);
  1662. mdio_write(dev, mii_phy->phy_addr,
  1663.    MII_CONTROL, (status & ~MII_CNTL_SPEED) | MII_CNTL_SPEED);
  1664.                 
  1665. break;
  1666.             
  1667. case IF_PORT_10BASE2: /* 10Base2 */
  1668. case IF_PORT_AUI: /* AUI */
  1669. case IF_PORT_100BASEFX: /* 100BaseFx */
  1670.                  /* These Modes are not supported (are they?)*/
  1671. printk(KERN_INFO "Not supported");
  1672. return -EOPNOTSUPP;
  1673. break;
  1674.             
  1675. default:
  1676. printk(KERN_INFO "Invalid");
  1677. return -EINVAL;
  1678. }
  1679. }
  1680. return 0;
  1681. }
  1682. /**
  1683.  * sis900_compute_hashtable_index: - compute hashtable index 
  1684.  * @addr: multicast address
  1685.  * @revision: revision id of chip
  1686.  *
  1687.  * SiS 900 uses the most sigificant 7 bits to index a 128 bits multicast
  1688.  * hash table, which makes this function a little bit different from other drivers
  1689.  * SiS 900 B0 & 635 M/B uses the most significat 8 bits to index 256 bits
  1690.  *    multicast hash table. 
  1691.  */
  1692. static u16 sis900_compute_hashtable_index(u8 *addr, u8 revision)
  1693. {
  1694. /* what is the correct value of the POLYNOMIAL ??
  1695.    Donald Becker use 0x04C11DB7U
  1696.    Joseph Zbiciak im14u2c@primenet.com gives me the
  1697.    correct answer, thank you Joe !! */
  1698. #define POLYNOMIAL 0x04C11DB7L
  1699. u32 crc = 0xffffffff, msb;
  1700. int  i, j;
  1701. u32  byte;
  1702. for (i = 0; i < 6; i++) {
  1703. byte = *addr++;
  1704. for (j = 0; j < 8; j++) {
  1705. msb = crc >> 31;
  1706. crc <<= 1;
  1707. if (msb ^ (byte & 1)) {
  1708. crc ^= POLYNOMIAL;
  1709. }
  1710. byte >>= 1;
  1711. }
  1712. }
  1713. /* leave 8 or 7 most siginifant bits */
  1714. if ((revision == SIS635A_900_REV) || (revision == SIS900B_900_REV))
  1715. return ((int)(crc >> 24));
  1716. else
  1717. return ((int)(crc >> 25));
  1718. }
  1719. /**
  1720.  * set_rx_mode: - Set SiS900 receive mode 
  1721.  * @net_dev: the net device to be set
  1722.  *
  1723.  * Set SiS900 receive mode for promiscuous, multicast, or broadcast mode.
  1724.  * And set the appropriate multicast filter.
  1725.  * Multicast hash table changes from 128 to 256 bits for 635M/B & 900B0.
  1726.  */
  1727. static void set_rx_mode(struct net_device *net_dev)
  1728. {
  1729. long ioaddr = net_dev->base_addr;
  1730. struct sis900_private * sis_priv = net_dev->priv;
  1731. u16 mc_filter[16] = {0}; /* 256/128 bits multicast hash table */
  1732. int i, table_entries;
  1733. u32 rx_mode;
  1734. u8 revision;
  1735. /* 635 Hash Table entires = 256(2^16) */
  1736. pci_read_config_byte(sis_priv->pci_dev, PCI_CLASS_REVISION, &revision);
  1737. if((revision == SIS635A_900_REV) || (revision == SIS900B_900_REV))
  1738. table_entries = 16;
  1739. else
  1740. table_entries = 8;
  1741. if (net_dev->flags & IFF_PROMISC) {
  1742. /* Accept any kinds of packets */
  1743. rx_mode = RFPromiscuous;
  1744. for (i = 0; i < table_entries; i++)
  1745. mc_filter[i] = 0xffff;
  1746. } else if ((net_dev->mc_count > multicast_filter_limit) ||
  1747.    (net_dev->flags & IFF_ALLMULTI)) {
  1748. /* too many multicast addresses or accept all multicast packet */
  1749. rx_mode = RFAAB | RFAAM;
  1750. for (i = 0; i < table_entries; i++)
  1751. mc_filter[i] = 0xffff;
  1752. } else {
  1753. /* Accept Broadcast packet, destination address matchs our MAC address,
  1754.    use Receive Filter to reject unwanted MCAST packet */
  1755. struct dev_mc_list *mclist;
  1756. rx_mode = RFAAB;
  1757. for (i = 0, mclist = net_dev->mc_list; mclist && i < net_dev->mc_count;
  1758.      i++, mclist = mclist->next)
  1759. set_bit(sis900_compute_hashtable_index(mclist->dmi_addr, revision),
  1760. mc_filter);
  1761. }
  1762. /* update Multicast Hash Table in Receive Filter */
  1763. for (i = 0; i < table_entries; i++) {
  1764.                 /* why plus 0x04 ??, That makes the correct value for hash table. */
  1765. outl((u32)(0x00000004+i) << RFADDR_shift, ioaddr + rfcr);
  1766. outl(mc_filter[i], ioaddr + rfdr);
  1767. }
  1768. outl(RFEN | rx_mode, ioaddr + rfcr);
  1769. /* sis900 is capatable of looping back packet at MAC level for debugging purpose */
  1770. if (net_dev->flags & IFF_LOOPBACK) {
  1771. u32 cr_saved;
  1772. /* We must disable Tx/Rx before setting loopback mode */
  1773. cr_saved = inl(ioaddr + cr);
  1774. outl(cr_saved | TxDIS | RxDIS, ioaddr + cr);
  1775. /* enable loopback */
  1776. outl(inl(ioaddr + txcfg) | TxMLB, ioaddr + txcfg);
  1777. outl(inl(ioaddr + rxcfg) | RxATX, ioaddr + rxcfg);
  1778. /* restore cr */
  1779. outl(cr_saved, ioaddr + cr);
  1780. }
  1781. return;
  1782. }
  1783. /**
  1784.  * sis900_reset: - Reset sis900 MAC 
  1785.  * @net_dev: the net device to reset
  1786.  *
  1787.  * reset sis900 MAC and wait until finished
  1788.  * reset through command register
  1789.  * change backoff algorithm for 900B0 & 635 M/B
  1790.  */
  1791. static void sis900_reset(struct net_device *net_dev)
  1792. {
  1793. struct sis900_private * sis_priv = net_dev->priv;
  1794. long ioaddr = net_dev->base_addr;
  1795. int i = 0;
  1796. u32 status = TxRCMP | RxRCMP;
  1797. u8  revision;
  1798. outl(0, ioaddr + ier);
  1799. outl(0, ioaddr + imr);
  1800. outl(0, ioaddr + rfcr);
  1801. outl(RxRESET | TxRESET | RESET | inl(ioaddr + cr), ioaddr + cr);
  1802. /* Check that the chip has finished the reset. */
  1803. while (status && (i++ < 1000)) {
  1804. status ^= (inl(isr + ioaddr) & status);
  1805. }
  1806. pci_read_config_byte(sis_priv->pci_dev, PCI_CLASS_REVISION, &revision);
  1807. if( (revision == SIS635A_900_REV) || (revision == SIS900B_900_REV) )
  1808. outl(PESEL | RND_CNT, ioaddr + cfg);
  1809. else
  1810. outl(PESEL, ioaddr + cfg);
  1811. }
  1812. /**
  1813.  * sis900_remove: - Remove sis900 device 
  1814.  * @pci_dev: the pci device to be removed
  1815.  *
  1816.  * remove and release SiS900 net device
  1817.  */
  1818. static void __devexit sis900_remove(struct pci_dev *pci_dev)
  1819. {
  1820. struct net_device *net_dev = pci_get_drvdata(pci_dev);
  1821. struct sis900_private * sis_priv = net_dev->priv;
  1822. struct mii_phy *phy = NULL;
  1823. while (sis_priv->first_mii) {
  1824. phy = sis_priv->first_mii;
  1825. sis_priv->first_mii = phy->next;
  1826. kfree(phy);
  1827. }
  1828. pci_free_consistent(pci_dev, RX_TOTAL_SIZE, sis_priv->rx_ring,
  1829. sis_priv->rx_ring_dma);
  1830. pci_free_consistent(pci_dev, TX_TOTAL_SIZE, sis_priv->tx_ring,
  1831. sis_priv->tx_ring_dma);
  1832. unregister_netdev(net_dev);
  1833. kfree(net_dev);
  1834. pci_release_regions(pci_dev);
  1835. pci_set_drvdata(pci_dev, NULL);
  1836. }
  1837. static struct pci_driver sis900_pci_driver = {
  1838. name: SIS900_MODULE_NAME,
  1839. id_table: sis900_pci_tbl,
  1840. probe: sis900_probe,
  1841. remove: __devexit_p(sis900_remove),
  1842. };
  1843. static int __init sis900_init_module(void)
  1844. {
  1845. /* when a module, this is printed whether or not devices are found in probe */
  1846. #ifdef MODULE
  1847. printk(version);
  1848. #endif
  1849. return pci_module_init(&sis900_pci_driver);
  1850. }
  1851. static void __exit sis900_cleanup_module(void)
  1852. {
  1853. pci_unregister_driver(&sis900_pci_driver);
  1854. }
  1855. module_init(sis900_init_module);
  1856. module_exit(sis900_cleanup_module);