sis900.c
上传用户:jlfgdled
上传日期:2013-04-10
资源大小:33168k
文件大小:65k
源码类别:

Linux/Unix编程

开发平台:

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