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

Linux/Unix编程

开发平台:

Unix_Linux

  1. /*
  2. drivers/net/tulip/timer.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 "tulip.h"
  13. void tulip_timer(unsigned long data)
  14. {
  15. struct net_device *dev = (struct net_device *)data;
  16. struct tulip_private *tp = (struct tulip_private *)dev->priv;
  17. long ioaddr = dev->base_addr;
  18. u32 csr12 = inl(ioaddr + CSR12);
  19. int next_tick = 2*HZ;
  20. if (tulip_debug > 2) {
  21. printk(KERN_DEBUG "%s: Media selection tick, %s, status %8.8x mode"
  22.    " %8.8x SIA %8.8x %8.8x %8.8x %8.8x.n",
  23.    dev->name, medianame[dev->if_port], inl(ioaddr + CSR5),
  24.    inl(ioaddr + CSR6), csr12, inl(ioaddr + CSR13),
  25.    inl(ioaddr + CSR14), inl(ioaddr + CSR15));
  26. }
  27. switch (tp->chip_id) {
  28. case DC21040:
  29. if (!tp->medialock  &&  csr12 & 0x0002) { /* Network error */
  30. printk(KERN_INFO "%s: No link beat found.n",
  31.    dev->name);
  32. dev->if_port = (dev->if_port == 2 ? 0 : 2);
  33. tulip_select_media(dev, 0);
  34. dev->trans_start = jiffies;
  35. }
  36. break;
  37. case DC21041:
  38. if (tulip_debug > 2)
  39. printk(KERN_DEBUG "%s: 21041 media tick  CSR12 %8.8x.n",
  40.    dev->name, csr12);
  41. if (tp->medialock) break;
  42. switch (dev->if_port) {
  43. case 0: case 3: case 4:
  44.   if (csr12 & 0x0004) { /*LnkFail */
  45. /* 10baseT is dead.  Check for activity on alternate port. */
  46. tp->mediasense = 1;
  47. if (csr12 & 0x0200)
  48. dev->if_port = 2;
  49. else
  50. dev->if_port = 1;
  51. printk(KERN_INFO "%s: No 21041 10baseT link beat, Media switched to %s.n",
  52.    dev->name, medianame[dev->if_port]);
  53. outl(0, ioaddr + CSR13); /* Reset */
  54. outl(t21041_csr14[dev->if_port], ioaddr + CSR14);
  55. outl(t21041_csr15[dev->if_port], ioaddr + CSR15);
  56. outl(t21041_csr13[dev->if_port], ioaddr + CSR13);
  57. next_tick = 10*HZ; /* 2.4 sec. */
  58.   } else
  59. next_tick = 30*HZ;
  60.   break;
  61. case 1: /* 10base2 */
  62. case 2: /* AUI */
  63. if (csr12 & 0x0100) {
  64. next_tick = (30*HZ); /* 30 sec. */
  65. tp->mediasense = 0;
  66. } else if ((csr12 & 0x0004) == 0) {
  67. printk(KERN_INFO "%s: 21041 media switched to 10baseT.n",
  68.    dev->name);
  69. dev->if_port = 0;
  70. tulip_select_media(dev, 0);
  71. next_tick = (24*HZ)/10; /* 2.4 sec. */
  72. } else if (tp->mediasense || (csr12 & 0x0002)) {
  73. dev->if_port = 3 - dev->if_port; /* Swap ports. */
  74. tulip_select_media(dev, 0);
  75. next_tick = 20*HZ;
  76. } else {
  77. next_tick = 20*HZ;
  78. }
  79. break;
  80. }
  81. break;
  82. case DC21140:
  83. case DC21142:
  84. case MX98713:
  85. case COMPEX9881:
  86. case DM910X:
  87. default: {
  88. struct medialeaf *mleaf;
  89. unsigned char *p;
  90. if (tp->mtable == NULL) { /* No EEPROM info, use generic code. */
  91. /* Not much that can be done.
  92.    Assume this a generic MII or SYM transceiver. */
  93. next_tick = 60*HZ;
  94. if (tulip_debug > 2)
  95. printk(KERN_DEBUG "%s: network media monitor CSR6 %8.8x "
  96.    "CSR12 0x%2.2x.n",
  97.    dev->name, inl(ioaddr + CSR6), csr12 & 0xff);
  98. break;
  99. }
  100. mleaf = &tp->mtable->mleaf[tp->cur_index];
  101. p = mleaf->leafdata;
  102. switch (mleaf->type) {
  103. case 0: case 4: {
  104. /* Type 0 serial or 4 SYM transceiver.  Check the link beat bit. */
  105. int offset = mleaf->type == 4 ? 5 : 2;
  106. s8 bitnum = p[offset];
  107. if (p[offset+1] & 0x80) {
  108. if (tulip_debug > 1)
  109. printk(KERN_DEBUG"%s: Transceiver monitor tick "
  110.    "CSR12=%#2.2x, no media sense.n",
  111.    dev->name, csr12);
  112. if (mleaf->type == 4) {
  113. if (mleaf->media == 3 && (csr12 & 0x02))
  114. goto select_next_media;
  115. }
  116. break;
  117. }
  118. if (tulip_debug > 2)
  119. printk(KERN_DEBUG "%s: Transceiver monitor tick: CSR12=%#2.2x"
  120.    " bit %d is %d, expecting %d.n",
  121.    dev->name, csr12, (bitnum >> 1) & 7,
  122.    (csr12 & (1 << ((bitnum >> 1) & 7))) != 0,
  123.    (bitnum >= 0));
  124. /* Check that the specified bit has the proper value. */
  125. if ((bitnum < 0) !=
  126. ((csr12 & (1 << ((bitnum >> 1) & 7))) != 0)) {
  127. if (tulip_debug > 2)
  128. printk(KERN_DEBUG "%s: Link beat detected for %s.n", dev->name,
  129.        medianame[mleaf->media & MEDIA_MASK]);
  130. if ((p[2] & 0x61) == 0x01) /* Bogus Znyx board. */
  131. goto actually_mii;
  132. /* netif_carrier_on(dev); */
  133. break;
  134. }
  135. /* netif_carrier_off(dev); */
  136. if (tp->medialock)
  137. break;
  138.   select_next_media:
  139. if (--tp->cur_index < 0) {
  140. /* We start again, but should instead look for default. */
  141. tp->cur_index = tp->mtable->leafcount - 1;
  142. }
  143. dev->if_port = tp->mtable->mleaf[tp->cur_index].media;
  144. if (tulip_media_cap[dev->if_port] & MediaIsFD)
  145. goto select_next_media; /* Skip FD entries. */
  146. if (tulip_debug > 1)
  147. printk(KERN_DEBUG "%s: No link beat on media %s,"
  148.        " trying transceiver type %s.n",
  149.        dev->name, medianame[mleaf->media & MEDIA_MASK],
  150.        medianame[tp->mtable->mleaf[tp->cur_index].media]);
  151. tulip_select_media(dev, 0);
  152. /* Restart the transmit process. */
  153. tulip_restart_rxtx(tp);
  154. next_tick = (24*HZ)/10;
  155. break;
  156. }
  157. case 1:  case 3: /* 21140, 21142 MII */
  158. actually_mii:
  159. if (tulip_check_duplex(dev) < 0)
  160. { /* netif_carrier_off(dev); */ }
  161. else
  162. { /* netif_carrier_on(dev); */ }
  163. next_tick = 60*HZ;
  164. break;
  165. case 2: /* 21142 serial block has no link beat. */
  166. default:
  167. break;
  168. }
  169. }
  170. break;
  171. }
  172. /* mod_timer synchronizes us with potential add_timer calls
  173.  * from interrupts.
  174.  */
  175. mod_timer(&tp->timer, RUN_AT(next_tick));
  176. }
  177. void mxic_timer(unsigned long data)
  178. {
  179. struct net_device *dev = (struct net_device *)data;
  180. struct tulip_private *tp = (struct tulip_private *)dev->priv;
  181. long ioaddr = dev->base_addr;
  182. int next_tick = 60*HZ;
  183. if (tulip_debug > 3) {
  184. printk(KERN_INFO"%s: MXIC negotiation status %8.8x.n", dev->name,
  185.    inl(ioaddr + CSR12));
  186. }
  187. if (next_tick) {
  188. mod_timer(&tp->timer, RUN_AT(next_tick));
  189. }
  190. }
  191. void comet_timer(unsigned long data)
  192. {
  193. struct net_device *dev = (struct net_device *)data;
  194. struct tulip_private *tp = (struct tulip_private *)dev->priv;
  195. long ioaddr = dev->base_addr;
  196. int next_tick = 60*HZ;
  197. if (tulip_debug > 1)
  198. printk(KERN_DEBUG "%s: Comet link status %4.4x partner capability "
  199.    "%4.4x.n",
  200.    dev->name, inl(ioaddr + 0xB8), inl(ioaddr + 0xC8));
  201. /* mod_timer synchronizes us with potential add_timer calls
  202.  * from interrupts.
  203.  */
  204. mod_timer(&tp->timer, RUN_AT(next_tick));
  205. }