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

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2. drivers/net/tulip/pnic2.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.         Modified to hep support PNIC_II by Kevin B. Hendricks
  7. This software may be used and distributed according to the terms
  8. of the GNU General Public License, incorporated herein by reference.
  9. Please refer to Documentation/DocBook/tulip.{pdf,ps,html}
  10. for more information on this driver, or visit the project
  11. Web page at http://sourceforge.net/projects/tulip/
  12. */
  13. /* Understanding the PNIC_II - everything is this file is based
  14.  * on the PNIC_II_PDF datasheet which is sorely lacking in detail
  15.  *
  16.  * As I understand things, here are the registers and bits that
  17.  * explain the masks and constants used in this file that are
  18.  * either different from the 21142/3 or important for basic operation.
  19.  *
  20.  *
  21.  * CSR 6  (mask = 0xfe3bd1fd of bits not to change)
  22.  * -----
  23.  * Bit 24    - SCR
  24.  * Bit 23    - PCS
  25.  * Bit 22    - TTM (Trasmit Threshold Mode)
  26.  * Bit 18    - Port Select
  27.  * Bit 13    - Start - 1, Stop - 0 Transmissions
  28.  * Bit 11:10 - Loop Back Operation Mode
  29.  * Bit 9     - Full Duplex mode (Advertise 10BaseT-FD is CSR14<7> is set)
  30.  * Bit 1     - Start - 1, Stop - 0 Receive
  31.  *
  32.  *
  33.  * CSR 14  (mask = 0xfff0ee39 of bits not to change)
  34.  * ------
  35.  * Bit 19    - PAUSE-Pause
  36.  * Bit 18    - Advertise T4
  37.  * Bit 17    - Advertise 100baseTx-FD
  38.  * Bit 16    - Advertise 100baseTx-HD
  39.  * Bit 12    - LTE - Link Test Enable
  40.  * Bit 7     - ANE - Auto Negotiate Enable
  41.  * Bit 6     - HDE - Advertise 10baseT-HD
  42.  * Bit 2     - Reset to Power down - kept as 1 for normal operation
  43.  * Bit 1     -  Loop Back enable for 10baseT MCC
  44.  *
  45.  *
  46.  * CSR 12
  47.  * ------
  48.  * Bit 25    - Partner can do T4
  49.  * Bit 24    - Partner can do 100baseTx-FD
  50.  * Bit 23    - Partner can do 100baseTx-HD
  51.  * Bit 22    - Partner can do 10baseT-FD
  52.  * Bit 21    - Partner can do 10baseT-HD
  53.  * Bit 15    - LPN is 1 if all above bits are valid other wise 0
  54.  * Bit 14:12 - autonegotiation state (write 001 to start autonegotiate)
  55.  * Bit 3     - Autopolarity state
  56.  * Bit 2     - LS10B - link state of 10baseT 0 - good, 1 - failed
  57.  * Bit 1     - LS100B - link state of 100baseT 0 - good, 1- faild
  58.  *
  59.  *
  60.  * Data Port Selection Info
  61.  *-------------------------
  62.  *
  63.  * CSR14<7>   CSR6<18>    CSR6<22>    CSR6<23>    CSR6<24>   MODE/PORT
  64.  *   1           0           0 (X)       0 (X)       1        NWAY
  65.  *   0           0           1           0 (X)       0        10baseT
  66.  *   0           1           0           1           1 (X)    100baseT
  67.  *
  68.  *
  69.  */
  70. #include "tulip.h"
  71. #include <linux/pci.h>
  72. #include <linux/delay.h>
  73. void pnic2_timer(unsigned long data)
  74. {
  75. struct net_device *dev = (struct net_device *)data;
  76. struct tulip_private *tp = (struct tulip_private *)dev->priv;
  77. long ioaddr = dev->base_addr;
  78. int next_tick = 60*HZ;
  79. if (tulip_debug > 3)
  80. printk(KERN_INFO"%s: PNIC2 negotiation status %8.8x.n",
  81.                     dev->name,inl(ioaddr + CSR12));
  82. if (next_tick) {
  83. mod_timer(&tp->timer, RUN_AT(next_tick));
  84. }
  85. }
  86. void pnic2_start_nway(struct net_device *dev)
  87. {
  88. struct tulip_private *tp = (struct tulip_private *)dev->priv;
  89. long ioaddr = dev->base_addr;
  90.         int csr14;
  91.         int csr12;
  92.         /* set up what to advertise during the negotiation */
  93.         /* load in csr14  and mask off bits not to touch
  94.          * comment at top of file explains mask value
  95.          */
  96. csr14 = (inl(ioaddr + CSR14) & 0xfff0ee39);
  97.         /* bit 17 - advetise 100baseTx-FD */
  98.         if (tp->sym_advertise & 0x0100) csr14 |= 0x00020000;
  99.         /* bit 16 - advertise 100baseTx-HD */
  100.         if (tp->sym_advertise & 0x0080) csr14 |= 0x00010000;
  101.         /* bit 6 - advertise 10baseT-HD */
  102.         if (tp->sym_advertise & 0x0020) csr14 |= 0x00000040;
  103.         /* Now set bit 12 Link Test Enable, Bit 7 Autonegotiation Enable
  104.          * and bit 0 Don't PowerDown 10baseT
  105.          */
  106.         csr14 |= 0x00001184;
  107. if (tulip_debug > 1)
  108. printk(KERN_DEBUG "%s: Restarting PNIC2 autonegotiation, "
  109.                       "csr14=%8.8x.n", dev->name, csr14);
  110.         /* tell pnic2_lnk_change we are doing an nway negotiation */
  111. dev->if_port = 0;
  112. tp->nway = tp->mediasense = 1;
  113. tp->nwayset = tp->lpar = 0;
  114.         /* now we have to set up csr6 for NWAY state */
  115. tp->csr6 = inl(ioaddr + CSR6);
  116. if (tulip_debug > 1)
  117. printk(KERN_DEBUG "%s: On Entry to Nway, "
  118.                       "csr6=%8.8x.n", dev->name, tp->csr6);
  119.         /* mask off any bits not to touch
  120.          * comment at top of file explains mask value
  121.          */
  122. tp->csr6 = tp->csr6 & 0xfe3bd1fd;
  123.         /* don't forget that bit 9 is also used for advertising */
  124.         /* advertise 10baseT-FD for the negotiation (bit 9) */
  125.         if (tp->sym_advertise & 0x0040) tp->csr6 |= 0x00000200;
  126.         /* set bit 24 for nway negotiation mode ...
  127.          * see Data Port Selection comment at top of file
  128.          * and "Stop" - reset both Transmit (bit 13) and Receive (bit 1)
  129.          */
  130.         tp->csr6 |= 0x01000000;
  131. outl(csr14, ioaddr + CSR14);
  132. outl(tp->csr6, ioaddr + CSR6);
  133.         udelay(100);
  134.         /* all set up so now force the negotiation to begin */
  135.         /* read in current values and mask off all but the
  136.  * Autonegotiation bits 14:12.  Writing a 001 to those bits
  137.          * should start the autonegotiation
  138.          */
  139.         csr12 = (inl(ioaddr + CSR12) & 0xffff8fff);
  140.         csr12 |= 0x1000;
  141. outl(csr12, ioaddr + CSR12);
  142. }
  143. void pnic2_lnk_change(struct net_device *dev, int csr5)
  144. {
  145. struct tulip_private *tp = (struct tulip_private *)dev->priv;
  146. long ioaddr = dev->base_addr;
  147.         int csr14;
  148.         /* read the staus register to find out what is up */
  149. int csr12 = inl(ioaddr + CSR12);
  150. if (tulip_debug > 1)
  151. printk(KERN_INFO"%s: PNIC2 link status interrupt %8.8x, "
  152.                        " CSR5 %x, %8.8x.n", dev->name, csr12,
  153.                        csr5, inl(ioaddr + CSR14));
  154. /* If NWay finished and we have a negotiated partner capability.
  155.          * check bits 14:12 for bit pattern 101 - all is good
  156.          */
  157. if (tp->nway  &&  !tp->nwayset) {
  158.         /* we did an auto negotiation */
  159.                 if ((csr12 & 0x7000) == 0x5000) {
  160.                /* negotiation ended successfully */
  161.                /* get the link partners reply and mask out all but
  162.                         * bits 24-21 which show the partners capabilites
  163.                         * and match those to what we advertised
  164.                         *
  165.                         * then begin to interpret the results of the negotiation.
  166.                         * Always go in this order : (we are ignoring T4 for now)
  167.                         *     100baseTx-FD, 100baseTx-HD, 10baseT-FD, 10baseT-HD
  168.                         */
  169.         int negotiated = ((csr12 >> 16) & 0x01E0) & tp->sym_advertise;
  170.         tp->lpar = (csr12 >> 16);
  171.         tp->nwayset = 1;
  172.                         if (negotiated & 0x0100)        dev->if_port = 5;
  173.         else if (negotiated & 0x0080) dev->if_port = 3;
  174.         else if (negotiated & 0x0040) dev->if_port = 4;
  175. else if (negotiated & 0x0020) dev->if_port = 0;
  176. else {
  177.      if (tulip_debug > 1)
  178.                    printk(KERN_INFO "%s: funny autonegotiate result "
  179.                                         "csr12 %8.8x advertising %4.4xn",
  180.                  dev->name, csr12, tp->sym_advertise);
  181.      tp->nwayset = 0;
  182.      /* so check  if 100baseTx link state is okay */
  183.      if ((csr12 & 2) == 0  &&  (tp->sym_advertise & 0x0180))
  184.        dev->if_port = 3;
  185. }
  186. /* now record the duplex that was negotiated */
  187. tp->full_duplex = 0;
  188. if ((dev->if_port == 4) || (dev->if_port == 5))
  189.        tp->full_duplex = 1;
  190. if (tulip_debug > 1) {
  191.        if (tp->nwayset)
  192.              printk(KERN_INFO "%s: Switching to %s based on link "
  193.     "negotiation %4.4x & %4.4x = %4.4x.n",
  194.      dev->name, medianame[dev->if_port],
  195.                                      tp->sym_advertise, tp->lpar, negotiated);
  196. }
  197.                         /* remember to turn off bit 7 - autonegotiate
  198.                          * enable so we can properly end nway mode and
  199.                          * set duplex (ie. use csr6<9> again)
  200.                          */
  201.                 csr14 = (inl(ioaddr + CSR14) & 0xffffff7f);
  202.                         outl(csr14,ioaddr + CSR14);
  203.                         /* now set the data port and operating mode
  204.  * (see the Data Port Selection comments at
  205.  * the top of the file
  206.  */
  207. /* get current csr6 and mask off bits not to touch */
  208. /* see comment at top of file */
  209. tp->csr6 = (inl(ioaddr + CSR6) & 0xfe3bd1fd);
  210. /* so if using if_port 3 or 5 then select the 100baseT
  211.  * port else select the 10baseT port.
  212.  * See the Data Port Selection table at the top
  213.  * of the file which was taken from the PNIC_II.PDF
  214.  * datasheet
  215.  */
  216. if (dev->if_port & 1) tp->csr6 |= 0x01840000;
  217. else tp->csr6 |= 0x00400000;
  218. /* now set the full duplex bit appropriately */
  219. if (tp->full_duplex) tp->csr6 |= 0x00000200;
  220. outl(1, ioaddr + CSR13);
  221. if (tulip_debug > 2)
  222.         printk(KERN_DEBUG "%s:  Setting CSR6 %8.8x/%x CSR12 "
  223.                                       "%8.8x.n", dev->name, tp->csr6,
  224.                                       inl(ioaddr + CSR6), inl(ioaddr + CSR12));
  225. /* now the following actually writes out the
  226.  * new csr6 values
  227.  */
  228. tulip_start_rxtx(tp);
  229.                         return;
  230.         } else {
  231.                 printk(KERN_INFO "%s: Autonegotiation failed, "
  232.                                     "using %s, link beat status %4.4x.n",
  233.      dev->name, medianame[dev->if_port], csr12);
  234.                         /* remember to turn off bit 7 - autonegotiate
  235.                          * enable so we don't forget
  236.                          */
  237.                 csr14 = (inl(ioaddr + CSR14) & 0xffffff7f);
  238.                         outl(csr14,ioaddr + CSR14);
  239.                         /* what should we do when autonegotiate fails?
  240.                          * should we try again or default to baseline
  241.                          * case.  I just don't know.
  242.                          *
  243.                          * for now default to some baseline case
  244.                          */
  245.                  dev->if_port = 0;
  246.                          tp->nway = 0;
  247.                          tp->nwayset = 1;
  248.                          /* set to 10baseTx-HD - see Data Port Selection
  249.                           * comment given at the top of the file
  250.                           */
  251.                  tp->csr6 = (inl(ioaddr + CSR6) & 0xfe3bd1fd);
  252.                          tp->csr6 |= 0x00400000;
  253.                  tulip_restart_rxtx(tp);
  254.                          return;
  255. }
  256. }
  257. if ((tp->nwayset  &&  (csr5 & 0x08000000)
  258.   && (dev->if_port == 3  ||  dev->if_port == 5)
  259.   && (csr12 & 2) == 2) || (tp->nway && (csr5 & (TPLnkFail)))) {
  260. /* Link blew? Maybe restart NWay. */
  261. if (tulip_debug > 2)
  262. printk(KERN_DEBUG "%s: Ugh! Link blew?n", dev->name);
  263. del_timer_sync(&tp->timer);
  264. pnic2_start_nway(dev);
  265. tp->timer.expires = RUN_AT(3*HZ);
  266. add_timer(&tp->timer);
  267.                 return;
  268. }
  269.         if (dev->if_port == 3  ||  dev->if_port == 5) {
  270.         /* we are at 100mb and a potential link change occurred */
  271. if (tulip_debug > 1)
  272. printk(KERN_INFO"%s: PNIC2 %s link beat %s.n",
  273.    dev->name, medianame[dev->if_port],
  274.    (csr12 & 2) ? "failed" : "good");
  275.                 /* check 100 link beat */
  276.                 tp->nway = 0;
  277.                 tp->nwayset = 1;
  278.                 /* if failed then try doing an nway to get in sync */
  279. if ((csr12 & 2)  &&  ! tp->medialock) {
  280. del_timer_sync(&tp->timer);
  281. pnic2_start_nway(dev);
  282. tp->timer.expires = RUN_AT(3*HZ);
  283.         add_timer(&tp->timer);
  284.                 }
  285.                 return;
  286.         }
  287. if (dev->if_port == 0  ||  dev->if_port == 4) {
  288.         /* we are at 10mb and a potential link change occurred */
  289. if (tulip_debug > 1)
  290. printk(KERN_INFO"%s: PNIC2 %s link beat %s.n",
  291.    dev->name, medianame[dev->if_port],
  292.    (csr12 & 4) ? "failed" : "good");
  293.                 tp->nway = 0;
  294.                 tp->nwayset = 1;
  295.                 /* if failed, try doing an nway to get in sync */
  296. if ((csr12 & 4)  &&  ! tp->medialock) {
  297. del_timer_sync(&tp->timer);
  298. pnic2_start_nway(dev);
  299. tp->timer.expires = RUN_AT(3*HZ);
  300.         add_timer(&tp->timer);
  301.                 }
  302.                 return;
  303.         }
  304. if (tulip_debug > 1)
  305. printk(KERN_INFO"%s: PNIC2 Link Change Default?n",dev->name);
  306.         /* if all else fails default to trying 10baseT-HD */
  307. dev->if_port = 0;
  308.         /* make sure autonegotiate enable is off */
  309. csr14 = (inl(ioaddr + CSR14) & 0xffffff7f);
  310.         outl(csr14,ioaddr + CSR14);
  311.         /* set to 10baseTx-HD - see Data Port Selection
  312.          * comment given at the top of the file
  313.          */
  314. tp->csr6 = (inl(ioaddr + CSR6) & 0xfe3bd1fd);
  315.         tp->csr6 |= 0x00400000;
  316. tulip_restart_rxtx(tp);
  317. }