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

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2. drivers/net/tulip/pnic.c
  3. Maintained by Jeff Garzik <jgarzik@mandrakesoft.com>
  4. Copyright 2000,2001  The Linux Kernel Team
  5. Written/copyright 1994-2001 by Donald Becker.
  6. This software may be used and distributed according to the terms
  7. of the GNU General Public License, incorporated herein by reference.
  8. Please refer to Documentation/DocBook/tulip.{pdf,ps,html}
  9. for more information on this driver, or visit the project
  10. Web page at http://sourceforge.net/projects/tulip/
  11. */
  12. #include <linux/kernel.h>
  13. #include "tulip.h"
  14. void pnic_do_nway(struct net_device *dev)
  15. {
  16. struct tulip_private *tp = (struct tulip_private *)dev->priv;
  17. long ioaddr = dev->base_addr;
  18. u32 phy_reg = inl(ioaddr + 0xB8);
  19. u32 new_csr6 = tp->csr6 & ~0x40C40200;
  20. if (phy_reg & 0x78000000) { /* Ignore baseT4 */
  21. if (phy_reg & 0x20000000) dev->if_port = 5;
  22. else if (phy_reg & 0x40000000) dev->if_port = 3;
  23. else if (phy_reg & 0x10000000) dev->if_port = 4;
  24. else if (phy_reg & 0x08000000) dev->if_port = 0;
  25. tp->nwayset = 1;
  26. new_csr6 = (dev->if_port & 1) ? 0x01860000 : 0x00420000;
  27. outl(0x32 | (dev->if_port & 1), ioaddr + CSR12);
  28. if (dev->if_port & 1)
  29. outl(0x1F868, ioaddr + 0xB8);
  30. if (phy_reg & 0x30000000) {
  31. tp->full_duplex = 1;
  32. new_csr6 |= 0x00000200;
  33. }
  34. if (tulip_debug > 1)
  35. printk(KERN_DEBUG "%s: PNIC autonegotiated status %8.8x, %s.n",
  36.    dev->name, phy_reg, medianame[dev->if_port]);
  37. if (tp->csr6 != new_csr6) {
  38. tp->csr6 = new_csr6;
  39. /* Restart Tx */
  40. tulip_restart_rxtx(tp);
  41. dev->trans_start = jiffies;
  42. }
  43. }
  44. }
  45. void pnic_lnk_change(struct net_device *dev, int csr5)
  46. {
  47. struct tulip_private *tp = (struct tulip_private *)dev->priv;
  48. long ioaddr = dev->base_addr;
  49. int phy_reg = inl(ioaddr + 0xB8);
  50. if (tulip_debug > 1)
  51. printk(KERN_DEBUG "%s: PNIC link changed state %8.8x, CSR5 %8.8x.n",
  52.    dev->name, phy_reg, csr5);
  53. if (inl(ioaddr + CSR5) & TPLnkFail) {
  54. outl((inl(ioaddr + CSR7) & ~TPLnkFail) | TPLnkPass, ioaddr + CSR7);
  55. /* If we use an external MII, then we mustn't use the
  56.  * internal negotiation.
  57.  */
  58. if (tulip_media_cap[dev->if_port] & MediaIsMII)
  59. return;
  60. if (! tp->nwayset  ||  jiffies - dev->trans_start > 1*HZ) {
  61. tp->csr6 = 0x00420000 | (tp->csr6 & 0x0000fdff);
  62. outl(tp->csr6, ioaddr + CSR6);
  63. outl(0x30, ioaddr + CSR12);
  64. outl(0x0201F078, ioaddr + 0xB8); /* Turn on autonegotiation. */
  65. dev->trans_start = jiffies;
  66. }
  67. } else if (inl(ioaddr + CSR5) & TPLnkPass) {
  68. if (tulip_media_cap[dev->if_port] & MediaIsMII) {
  69. spin_lock(&tp->lock);
  70. tulip_check_duplex(dev);
  71. spin_unlock(&tp->lock);
  72. } else {
  73. pnic_do_nway(dev);
  74. }
  75. outl((inl(ioaddr + CSR7) & ~TPLnkPass) | TPLnkFail, ioaddr + CSR7);
  76. }
  77. }
  78. void pnic_timer(unsigned long data)
  79. {
  80. struct net_device *dev = (struct net_device *)data;
  81. struct tulip_private *tp = (struct tulip_private *)dev->priv;
  82. long ioaddr = dev->base_addr;
  83. int next_tick = 60*HZ;
  84. if(!inl(ioaddr + CSR7)) {
  85. /* the timer was called due to a work overflow
  86.  * in the interrupt handler. Skip the connection
  87.  * checks, the nic is definitively speaking with
  88.  * his link partner.
  89.  */
  90. goto too_good_connection;
  91. }
  92. if (tulip_media_cap[dev->if_port] & MediaIsMII) {
  93. spin_lock_irq(&tp->lock);
  94. if (tulip_check_duplex(dev) > 0)
  95. next_tick = 3*HZ;
  96. spin_unlock_irq(&tp->lock);
  97. } else {
  98. int csr12 = inl(ioaddr + CSR12);
  99. int new_csr6 = tp->csr6 & ~0x40C40200;
  100. int phy_reg = inl(ioaddr + 0xB8);
  101. int csr5 = inl(ioaddr + CSR5);
  102. if (tulip_debug > 1)
  103. printk(KERN_DEBUG "%s: PNIC timer PHY status %8.8x, %s "
  104.    "CSR5 %8.8x.n",
  105.    dev->name, phy_reg, medianame[dev->if_port], csr5);
  106. if (phy_reg & 0x04000000) { /* Remote link fault */
  107. outl(0x0201F078, ioaddr + 0xB8);
  108. next_tick = 1*HZ;
  109. tp->nwayset = 0;
  110. } else if (phy_reg & 0x78000000) { /* Ignore baseT4 */
  111. pnic_do_nway(dev);
  112. next_tick = 60*HZ;
  113. } else if (csr5 & TPLnkFail) { /* 100baseTx link beat */
  114. if (tulip_debug > 1)
  115. printk(KERN_DEBUG "%s: %s link beat failed, CSR12 %4.4x, "
  116.    "CSR5 %8.8x, PHY %3.3x.n",
  117.    dev->name, medianame[dev->if_port], csr12,
  118.    inl(ioaddr + CSR5), inl(ioaddr + 0xB8));
  119. next_tick = 3*HZ;
  120. if (tp->medialock) {
  121. } else if (tp->nwayset  &&  (dev->if_port & 1)) {
  122. next_tick = 1*HZ;
  123. } else if (dev->if_port == 0) {
  124. dev->if_port = 3;
  125. outl(0x33, ioaddr + CSR12);
  126. new_csr6 = 0x01860000;
  127. outl(0x1F868, ioaddr + 0xB8);
  128. } else {
  129. dev->if_port = 0;
  130. outl(0x32, ioaddr + CSR12);
  131. new_csr6 = 0x00420000;
  132. outl(0x1F078, ioaddr + 0xB8);
  133. }
  134. if (tp->csr6 != new_csr6) {
  135. tp->csr6 = new_csr6;
  136. /* Restart Tx */
  137. tulip_restart_rxtx(tp);
  138. dev->trans_start = jiffies;
  139. if (tulip_debug > 1)
  140. printk(KERN_INFO "%s: Changing PNIC configuration to %s "
  141.    "%s-duplex, CSR6 %8.8x.n",
  142.    dev->name, medianame[dev->if_port],
  143.    tp->full_duplex ? "full" : "half", new_csr6);
  144. }
  145. }
  146. }
  147. too_good_connection:
  148. mod_timer(&tp->timer, RUN_AT(next_tick));
  149. if(!inl(ioaddr + CSR7)) {
  150. if (tulip_debug > 1)
  151. printk(KERN_INFO "%s: sw timer wakeup.n", dev->name);
  152. disable_irq(dev->irq);
  153. tulip_refill_rx(dev);
  154. enable_irq(dev->irq);
  155. outl(tulip_tbl[tp->chip_id].valid_intrs, ioaddr + CSR7);
  156. }
  157. }