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

Linux/Unix编程

开发平台:

Unix_Linux

  1. /* $Id: lmc_media.c,v 1.13 2000/04/11 05:25:26 asj Exp $ */
  2. #include <linux/version.h>
  3. #include <linux/config.h>
  4. #include <linux/kernel.h>
  5. #include <linux/sched.h>
  6. #include <linux/string.h>
  7. #include <linux/timer.h>
  8. #include <linux/ptrace.h>
  9. #include <linux/errno.h>
  10. #include <linux/ioport.h>
  11. #include <linux/slab.h>
  12. #include <linux/interrupt.h>
  13. #include <linux/pci.h>
  14. #include <asm/segment.h>
  15. //#include <asm/smp.h>
  16. #if LINUX_VERSION_CODE < 0x20155
  17. #include <linux/bios32.h>
  18. #endif
  19. #include <linux/in.h>
  20. #include <linux/if_arp.h>
  21. #include <asm/processor.h>             /* Processor type for cache alignment. */
  22. #include <asm/bitops.h>
  23. #include <asm/io.h>
  24. #include <asm/dma.h>
  25. #include <linux/netdevice.h>
  26. #include <linux/etherdevice.h>
  27. #include <linux/skbuff.h>
  28. #include <net/syncppp.h>
  29. #include <linux/inet.h>
  30. #if LINUX_VERSION_CODE >= 0x20200
  31. #include <asm/uaccess.h>
  32. //#include <asm/spinlock.h>
  33. #endif
  34. #include "lmc_ver.h"
  35. #include "lmc.h"
  36. #include "lmc_var.h"
  37. #include "lmc_ioctl.h"
  38. #include "lmc_debug.h"
  39. #define CONFIG_LMC_IGNORE_HARDWARE_HANDSHAKE 1
  40.  /*
  41.   * Copyright (c) 1997-2000 LAN Media Corporation (LMC)
  42.   * All rights reserved.  www.lanmedia.com
  43.   *
  44.   * This code is written by:
  45.   * Andrew Stanley-Jones (asj@cban.com)
  46.   * Rob Braun (bbraun@vix.com),
  47.   * Michael Graff (explorer@vix.com) and
  48.   * Matt Thomas (matt@3am-software.com).
  49.   *
  50.   * This software may be used and distributed according to the terms
  51.   * of the GNU General Public License version 2, incorporated herein by reference.
  52.   */
  53. /*
  54.  * For lack of a better place, put the SSI cable stuff here.
  55.  */
  56. char *lmc_t1_cables[] = {
  57.   "V.10/RS423", "EIA530A", "reserved", "X.21", "V.35",
  58.   "EIA449/EIA530/V.36", "V.28/EIA232", "none", NULL
  59. };
  60. /*
  61.  * protocol independent method.
  62.  */
  63. static void lmc_set_protocol (lmc_softc_t * const, lmc_ctl_t *);
  64. /*
  65.  * media independent methods to check on media status, link, light LEDs,
  66.  * etc.
  67.  */
  68. static void lmc_ds3_init (lmc_softc_t * const);
  69. static void lmc_ds3_default (lmc_softc_t * const);
  70. static void lmc_ds3_set_status (lmc_softc_t * const, lmc_ctl_t *);
  71. static void lmc_ds3_set_100ft (lmc_softc_t * const, int);
  72. static int lmc_ds3_get_link_status (lmc_softc_t * const);
  73. static void lmc_ds3_set_crc_length (lmc_softc_t * const, int);
  74. static void lmc_ds3_set_scram (lmc_softc_t * const, int);
  75. static void lmc_ds3_watchdog (lmc_softc_t * const);
  76. static void lmc_hssi_init (lmc_softc_t * const);
  77. static void lmc_hssi_default (lmc_softc_t * const);
  78. static void lmc_hssi_set_status (lmc_softc_t * const, lmc_ctl_t *);
  79. static void lmc_hssi_set_clock (lmc_softc_t * const, int);
  80. static int lmc_hssi_get_link_status (lmc_softc_t * const);
  81. static void lmc_hssi_set_link_status (lmc_softc_t * const, int);
  82. static void lmc_hssi_set_crc_length (lmc_softc_t * const, int);
  83. static void lmc_hssi_watchdog (lmc_softc_t * const);
  84. static void lmc_ssi_init (lmc_softc_t * const);
  85. static void lmc_ssi_default (lmc_softc_t * const);
  86. static void lmc_ssi_set_status (lmc_softc_t * const, lmc_ctl_t *);
  87. static void lmc_ssi_set_clock (lmc_softc_t * const, int);
  88. static void lmc_ssi_set_speed (lmc_softc_t * const, lmc_ctl_t *);
  89. static int lmc_ssi_get_link_status (lmc_softc_t * const);
  90. static void lmc_ssi_set_link_status (lmc_softc_t * const, int);
  91. static void lmc_ssi_set_crc_length (lmc_softc_t * const, int);
  92. static void lmc_ssi_watchdog (lmc_softc_t * const);
  93. static void lmc_t1_init (lmc_softc_t * const);
  94. static void lmc_t1_default (lmc_softc_t * const);
  95. static void lmc_t1_set_status (lmc_softc_t * const, lmc_ctl_t *);
  96. static int lmc_t1_get_link_status (lmc_softc_t * const);
  97. static void lmc_t1_set_circuit_type (lmc_softc_t * const, int);
  98. static void lmc_t1_set_crc_length (lmc_softc_t * const, int);
  99. static void lmc_t1_set_clock (lmc_softc_t * const, int);
  100. static void lmc_t1_watchdog (lmc_softc_t * const);
  101. static void lmc_dummy_set_1 (lmc_softc_t * const, int);
  102. static void lmc_dummy_set2_1 (lmc_softc_t * const, lmc_ctl_t *);
  103. static inline void write_av9110_bit (lmc_softc_t *, int);
  104. static void write_av9110 (lmc_softc_t *, u_int32_t, u_int32_t, u_int32_t,
  105.   u_int32_t, u_int32_t);
  106. lmc_media_t lmc_ds3_media = {
  107.   lmc_ds3_init, /* special media init stuff */
  108.   lmc_ds3_default, /* reset to default state */
  109.   lmc_ds3_set_status, /* reset status to state provided */
  110.   lmc_dummy_set_1, /* set clock source */
  111.   lmc_dummy_set2_1, /* set line speed */
  112.   lmc_ds3_set_100ft, /* set cable length */
  113.   lmc_ds3_set_scram, /* set scrambler */
  114.   lmc_ds3_get_link_status, /* get link status */
  115.   lmc_dummy_set_1, /* set link status */
  116.   lmc_ds3_set_crc_length, /* set CRC length */
  117.   lmc_dummy_set_1, /* set T1 or E1 circuit type */
  118.   lmc_ds3_watchdog
  119. };
  120. lmc_media_t lmc_hssi_media = {
  121.   lmc_hssi_init, /* special media init stuff */
  122.   lmc_hssi_default, /* reset to default state */
  123.   lmc_hssi_set_status, /* reset status to state provided */
  124.   lmc_hssi_set_clock, /* set clock source */
  125.   lmc_dummy_set2_1, /* set line speed */
  126.   lmc_dummy_set_1, /* set cable length */
  127.   lmc_dummy_set_1, /* set scrambler */
  128.   lmc_hssi_get_link_status, /* get link status */
  129.   lmc_hssi_set_link_status, /* set link status */
  130.   lmc_hssi_set_crc_length, /* set CRC length */
  131.   lmc_dummy_set_1, /* set T1 or E1 circuit type */
  132.   lmc_hssi_watchdog
  133. };
  134. lmc_media_t lmc_ssi_media = { lmc_ssi_init, /* special media init stuff */
  135.   lmc_ssi_default, /* reset to default state */
  136.   lmc_ssi_set_status, /* reset status to state provided */
  137.   lmc_ssi_set_clock, /* set clock source */
  138.   lmc_ssi_set_speed, /* set line speed */
  139.   lmc_dummy_set_1, /* set cable length */
  140.   lmc_dummy_set_1, /* set scrambler */
  141.   lmc_ssi_get_link_status, /* get link status */
  142.   lmc_ssi_set_link_status, /* set link status */
  143.   lmc_ssi_set_crc_length, /* set CRC length */
  144.   lmc_dummy_set_1, /* set T1 or E1 circuit type */
  145.   lmc_ssi_watchdog
  146. };
  147. lmc_media_t lmc_t1_media = {
  148.   lmc_t1_init, /* special media init stuff */
  149.   lmc_t1_default, /* reset to default state */
  150.   lmc_t1_set_status, /* reset status to state provided */
  151.   lmc_t1_set_clock, /* set clock source */
  152.   lmc_dummy_set2_1, /* set line speed */
  153.   lmc_dummy_set_1, /* set cable length */
  154.   lmc_dummy_set_1, /* set scrambler */
  155.   lmc_t1_get_link_status, /* get link status */
  156.   lmc_dummy_set_1, /* set link status */
  157.   lmc_t1_set_crc_length, /* set CRC length */
  158.   lmc_t1_set_circuit_type, /* set T1 or E1 circuit type */
  159.   lmc_t1_watchdog
  160. };
  161. static void
  162. lmc_dummy_set_1 (lmc_softc_t * const sc, int a)
  163. {
  164. }
  165. static void
  166. lmc_dummy_set2_1 (lmc_softc_t * const sc, lmc_ctl_t * a)
  167. {
  168. }
  169. /*
  170.  *  HSSI methods
  171.  */
  172. static void
  173. lmc_hssi_init (lmc_softc_t * const sc)
  174. {
  175.   sc->ictl.cardtype = LMC_CTL_CARDTYPE_LMC5200;
  176.   lmc_gpio_mkoutput (sc, LMC_GEP_HSSI_CLOCK);
  177. }
  178. static void
  179. lmc_hssi_default (lmc_softc_t * const sc)
  180. {
  181.   sc->lmc_miireg16 = LMC_MII16_LED_ALL;
  182.   sc->lmc_media->set_link_status (sc, LMC_LINK_DOWN);
  183.   sc->lmc_media->set_clock_source (sc, LMC_CTL_CLOCK_SOURCE_EXT);
  184.   sc->lmc_media->set_crc_length (sc, LMC_CTL_CRC_LENGTH_16);
  185. }
  186. /*
  187.  * Given a user provided state, set ourselves up to match it.  This will
  188.  * always reset the card if needed.
  189.  */
  190. static void
  191. lmc_hssi_set_status (lmc_softc_t * const sc, lmc_ctl_t * ctl)
  192. {
  193.   if (ctl == NULL)
  194.     {
  195.       sc->lmc_media->set_clock_source (sc, sc->ictl.clock_source);
  196.       lmc_set_protocol (sc, NULL);
  197.       return;
  198.     }
  199.   /*
  200.    * check for change in clock source
  201.    */
  202.   if (ctl->clock_source && !sc->ictl.clock_source)
  203.     {
  204.       sc->lmc_media->set_clock_source (sc, LMC_CTL_CLOCK_SOURCE_INT);
  205.       sc->lmc_timing = LMC_CTL_CLOCK_SOURCE_INT;
  206.     }
  207.   else if (!ctl->clock_source && sc->ictl.clock_source)
  208.     {
  209.       sc->lmc_timing = LMC_CTL_CLOCK_SOURCE_EXT;
  210.       sc->lmc_media->set_clock_source (sc, LMC_CTL_CLOCK_SOURCE_EXT);
  211.     }
  212.   lmc_set_protocol (sc, ctl);
  213. }
  214. /*
  215.  * 1 == internal, 0 == external
  216.  */
  217. static void
  218. lmc_hssi_set_clock (lmc_softc_t * const sc, int ie)
  219. {
  220.   int old;
  221.   old = sc->ictl.clock_source;
  222.   if (ie == LMC_CTL_CLOCK_SOURCE_EXT)
  223.     {
  224.       sc->lmc_gpio |= LMC_GEP_HSSI_CLOCK;
  225.       LMC_CSR_WRITE (sc, csr_gp, sc->lmc_gpio);
  226.       sc->ictl.clock_source = LMC_CTL_CLOCK_SOURCE_EXT;
  227.       if(old != ie)
  228.         printk (LMC_PRINTF_FMT ": clock externaln", LMC_PRINTF_ARGS);
  229.     }
  230.   else
  231.     {
  232.       sc->lmc_gpio &= ~(LMC_GEP_HSSI_CLOCK);
  233.       LMC_CSR_WRITE (sc, csr_gp, sc->lmc_gpio);
  234.       sc->ictl.clock_source = LMC_CTL_CLOCK_SOURCE_INT;
  235.       if(old != ie)
  236.         printk (LMC_PRINTF_FMT ": clock internaln", LMC_PRINTF_ARGS);
  237.     }
  238. }
  239. /*
  240.  * return hardware link status.
  241.  * 0 == link is down, 1 == link is up.
  242.  */
  243. static int
  244. lmc_hssi_get_link_status (lmc_softc_t * const sc)
  245. {
  246.     /*
  247.      * We're using the same code as SSI since
  248.      * they're practically the same
  249.      */
  250.     return lmc_ssi_get_link_status(sc);
  251. }
  252. static void
  253. lmc_hssi_set_link_status (lmc_softc_t * const sc, int state)
  254. {
  255.   if (state == LMC_LINK_UP)
  256.     sc->lmc_miireg16 |= LMC_MII16_HSSI_TA;
  257.   else
  258.     sc->lmc_miireg16 &= ~LMC_MII16_HSSI_TA;
  259.   lmc_mii_writereg (sc, 0, 16, sc->lmc_miireg16);
  260. }
  261. /*
  262.  * 0 == 16bit, 1 == 32bit
  263.  */
  264. static void
  265. lmc_hssi_set_crc_length (lmc_softc_t * const sc, int state)
  266. {
  267.   if (state == LMC_CTL_CRC_LENGTH_32)
  268.     {
  269.       /* 32 bit */
  270.       sc->lmc_miireg16 |= LMC_MII16_HSSI_CRC;
  271.       sc->ictl.crc_length = LMC_CTL_CRC_LENGTH_32;
  272.     }
  273.   else
  274.     {
  275.       /* 16 bit */
  276.       sc->lmc_miireg16 &= ~LMC_MII16_HSSI_CRC;
  277.       sc->ictl.crc_length = LMC_CTL_CRC_LENGTH_16;
  278.     }
  279.   lmc_mii_writereg (sc, 0, 16, sc->lmc_miireg16);
  280. }
  281. static void
  282. lmc_hssi_watchdog (lmc_softc_t * const sc)
  283. {
  284.   /* HSSI is blank */
  285. }
  286. /*
  287.  *  DS3 methods
  288.  */
  289. /*
  290.  * Set cable length
  291.  */
  292. static void
  293. lmc_ds3_set_100ft (lmc_softc_t * const sc, int ie)
  294. {
  295.   if (ie == LMC_CTL_CABLE_LENGTH_GT_100FT)
  296.     {
  297.       sc->lmc_miireg16 &= ~LMC_MII16_DS3_ZERO;
  298.       sc->ictl.cable_length = LMC_CTL_CABLE_LENGTH_GT_100FT;
  299.     }
  300.   else if (ie == LMC_CTL_CABLE_LENGTH_LT_100FT)
  301.     {
  302.       sc->lmc_miireg16 |= LMC_MII16_DS3_ZERO;
  303.       sc->ictl.cable_length = LMC_CTL_CABLE_LENGTH_LT_100FT;
  304.     }
  305.   lmc_mii_writereg (sc, 0, 16, sc->lmc_miireg16);
  306. }
  307. static void
  308. lmc_ds3_default (lmc_softc_t * const sc)
  309. {
  310.   sc->lmc_miireg16 = LMC_MII16_LED_ALL;
  311.   sc->lmc_media->set_link_status (sc, LMC_LINK_DOWN);
  312.   sc->lmc_media->set_cable_length (sc, LMC_CTL_CABLE_LENGTH_LT_100FT);
  313.   sc->lmc_media->set_scrambler (sc, LMC_CTL_OFF);
  314.   sc->lmc_media->set_crc_length (sc, LMC_CTL_CRC_LENGTH_16);
  315. }
  316. /*
  317.  * Given a user provided state, set ourselves up to match it.  This will
  318.  * always reset the card if needed.
  319.  */
  320. static void
  321. lmc_ds3_set_status (lmc_softc_t * const sc, lmc_ctl_t * ctl)
  322. {
  323.   if (ctl == NULL)
  324.     {
  325.       sc->lmc_media->set_cable_length (sc, sc->ictl.cable_length);
  326.       sc->lmc_media->set_scrambler (sc, sc->ictl.scrambler_onoff);
  327.       lmc_set_protocol (sc, NULL);
  328.       return;
  329.     }
  330.   /*
  331.    * check for change in cable length setting
  332.    */
  333.   if (ctl->cable_length && !sc->ictl.cable_length)
  334.     lmc_ds3_set_100ft (sc, LMC_CTL_CABLE_LENGTH_GT_100FT);
  335.   else if (!ctl->cable_length && sc->ictl.cable_length)
  336.     lmc_ds3_set_100ft (sc, LMC_CTL_CABLE_LENGTH_LT_100FT);
  337.   /*
  338.    * Check for change in scrambler setting (requires reset)
  339.    */
  340.   if (ctl->scrambler_onoff && !sc->ictl.scrambler_onoff)
  341.     lmc_ds3_set_scram (sc, LMC_CTL_ON);
  342.   else if (!ctl->scrambler_onoff && sc->ictl.scrambler_onoff)
  343.     lmc_ds3_set_scram (sc, LMC_CTL_OFF);
  344.   lmc_set_protocol (sc, ctl);
  345. }
  346. static void
  347. lmc_ds3_init (lmc_softc_t * const sc)
  348. {
  349.   int i;
  350.   sc->ictl.cardtype = LMC_CTL_CARDTYPE_LMC5245;
  351.   /* writes zeros everywhere */
  352.   for (i = 0; i < 21; i++)
  353.     {
  354.       lmc_mii_writereg (sc, 0, 17, i);
  355.       lmc_mii_writereg (sc, 0, 18, 0);
  356.     }
  357.   /* set some essential bits */
  358.   lmc_mii_writereg (sc, 0, 17, 1);
  359.   lmc_mii_writereg (sc, 0, 18, 0x25); /* ser, xtx */
  360.   lmc_mii_writereg (sc, 0, 17, 5);
  361.   lmc_mii_writereg (sc, 0, 18, 0x80); /* emode */
  362.   lmc_mii_writereg (sc, 0, 17, 14);
  363.   lmc_mii_writereg (sc, 0, 18, 0x30); /* rcgen, tcgen */
  364.   /* clear counters and latched bits */
  365.   for (i = 0; i < 21; i++)
  366.     {
  367.       lmc_mii_writereg (sc, 0, 17, i);
  368.       lmc_mii_readreg (sc, 0, 18);
  369.     }
  370. }
  371. /*
  372.  * 1 == DS3 payload scrambled, 0 == not scrambled
  373.  */
  374. static void
  375. lmc_ds3_set_scram (lmc_softc_t * const sc, int ie)
  376. {
  377.   if (ie == LMC_CTL_ON)
  378.     {
  379.       sc->lmc_miireg16 |= LMC_MII16_DS3_SCRAM;
  380.       sc->ictl.scrambler_onoff = LMC_CTL_ON;
  381.     }
  382.   else
  383.     {
  384.       sc->lmc_miireg16 &= ~LMC_MII16_DS3_SCRAM;
  385.       sc->ictl.scrambler_onoff = LMC_CTL_OFF;
  386.     }
  387.   lmc_mii_writereg (sc, 0, 16, sc->lmc_miireg16);
  388. }
  389. /*
  390.  * return hardware link status.
  391.  * 0 == link is down, 1 == link is up.
  392.  */
  393. static int
  394. lmc_ds3_get_link_status (lmc_softc_t * const sc)
  395. {
  396.     u_int16_t link_status, link_status_11;
  397.     int ret = 1;
  398.     lmc_mii_writereg (sc, 0, 17, 7);
  399.     link_status = lmc_mii_readreg (sc, 0, 18);
  400.     /* LMC5245 (DS3) & LMC1200 (DS1) LED definitions
  401.      * led0 yellow = far-end adapter is in Red alarm condition
  402.      * led1 blue   = received an Alarm Indication signal
  403.      *               (upstream failure)
  404.      * led2 Green  = power to adapter, Gate Array loaded & driver
  405.      *               attached
  406.      * led3 red    = Loss of Signal (LOS) or out of frame (OOF)
  407.      *               conditions detected on T3 receive signal
  408.      */
  409.     lmc_led_on(sc, LMC_DS3_LED2);
  410.     if ((link_status & LMC_FRAMER_REG0_DLOS) ||
  411.         (link_status & LMC_FRAMER_REG0_OOFS)){
  412.         ret = 0;
  413.         if(sc->last_led_err[3] != 1){
  414.             u16 r1;
  415.             lmc_mii_writereg (sc, 0, 17, 01); /* Turn on Xbit error as our cisco does */
  416.             r1 = lmc_mii_readreg (sc, 0, 18);
  417.             r1 &= 0xfe;
  418.             lmc_mii_writereg(sc, 0, 18, r1);
  419.             printk(KERN_WARNING "%s: Red Alarm - Loss of Signal or Loss of Framingn", sc->name);
  420.         }
  421.         lmc_led_on(sc, LMC_DS3_LED3); /* turn on red LED */
  422.         sc->last_led_err[3] = 1;
  423.     }
  424.     else {
  425.         lmc_led_off(sc, LMC_DS3_LED3); /* turn on red LED */
  426.         if(sc->last_led_err[3] == 1){
  427.             u16 r1;
  428.             lmc_mii_writereg (sc, 0, 17, 01); /* Turn off Xbit error */
  429.             r1 = lmc_mii_readreg (sc, 0, 18);
  430.             r1 |= 0x01;
  431.             lmc_mii_writereg(sc, 0, 18, r1);
  432.         }
  433.         sc->last_led_err[3] = 0;
  434.     }
  435.     lmc_mii_writereg(sc, 0, 17, 0x10);
  436.     link_status_11 = lmc_mii_readreg(sc, 0, 18);
  437.     if((link_status & LMC_FRAMER_REG0_AIS) ||
  438.        (link_status_11 & LMC_FRAMER_REG10_XBIT)) {
  439.         ret = 0;
  440.         if(sc->last_led_err[0] != 1){
  441.             printk(KERN_WARNING "%s: AIS Alarm or XBit Errorn", sc->name);
  442.             printk(KERN_WARNING "%s: Remote end has loss of signal or framingn", sc->name);
  443.         }
  444.         lmc_led_on(sc, LMC_DS3_LED0);
  445.         sc->last_led_err[0] = 1;
  446.     }
  447.     else {
  448.         lmc_led_off(sc, LMC_DS3_LED0);
  449.         sc->last_led_err[0] = 0;
  450.     }
  451.     lmc_mii_writereg (sc, 0, 17, 9);
  452.     link_status = lmc_mii_readreg (sc, 0, 18);
  453.     
  454.     if(link_status & LMC_FRAMER_REG9_RBLUE){
  455.         ret = 0;
  456.         if(sc->last_led_err[1] != 1){
  457.             printk(KERN_WARNING "%s: Blue Alarm - Receiving all 1'sn", sc->name);
  458.         }
  459.         lmc_led_on(sc, LMC_DS3_LED1);
  460.         sc->last_led_err[1] = 1;
  461.     }
  462.     else {
  463.         lmc_led_off(sc, LMC_DS3_LED1);
  464.         sc->last_led_err[1] = 0;
  465.     }
  466.     return ret;
  467. }
  468. /*
  469.  * 0 == 16bit, 1 == 32bit
  470.  */
  471. static void
  472. lmc_ds3_set_crc_length (lmc_softc_t * const sc, int state)
  473. {
  474.   if (state == LMC_CTL_CRC_LENGTH_32)
  475.     {
  476.       /* 32 bit */
  477.       sc->lmc_miireg16 |= LMC_MII16_DS3_CRC;
  478.       sc->ictl.crc_length = LMC_CTL_CRC_LENGTH_32;
  479.     }
  480.   else
  481.     {
  482.       /* 16 bit */
  483.       sc->lmc_miireg16 &= ~LMC_MII16_DS3_CRC;
  484.       sc->ictl.crc_length = LMC_CTL_CRC_LENGTH_16;
  485.     }
  486.   lmc_mii_writereg (sc, 0, 16, sc->lmc_miireg16);
  487. }
  488. static void
  489. lmc_ds3_watchdog (lmc_softc_t * const sc)
  490. {
  491.     
  492. }
  493. /*
  494.  *  SSI methods
  495.  */
  496. static void
  497. lmc_ssi_init (lmc_softc_t * const sc)
  498. {
  499.   u_int16_t mii17;
  500.   int cable;
  501.   sc->ictl.cardtype = LMC_CTL_CARDTYPE_LMC1000;
  502.   mii17 = lmc_mii_readreg (sc, 0, 17);
  503.   cable = (mii17 & LMC_MII17_SSI_CABLE_MASK) >> LMC_MII17_SSI_CABLE_SHIFT;
  504.   sc->ictl.cable_type = cable;
  505.   lmc_gpio_mkoutput (sc, LMC_GEP_SSI_TXCLOCK);
  506. }
  507. static void
  508. lmc_ssi_default (lmc_softc_t * const sc)
  509. {
  510.   sc->lmc_miireg16 = LMC_MII16_LED_ALL;
  511.   /*
  512.    * make TXCLOCK always be an output
  513.    */
  514.   lmc_gpio_mkoutput (sc, LMC_GEP_SSI_TXCLOCK);
  515.   sc->lmc_media->set_link_status (sc, LMC_LINK_DOWN);
  516.   sc->lmc_media->set_clock_source (sc, LMC_CTL_CLOCK_SOURCE_EXT);
  517.   sc->lmc_media->set_speed (sc, NULL);
  518.   sc->lmc_media->set_crc_length (sc, LMC_CTL_CRC_LENGTH_16);
  519. }
  520. /*
  521.  * Given a user provided state, set ourselves up to match it.  This will
  522.  * always reset the card if needed.
  523.  */
  524. static void
  525. lmc_ssi_set_status (lmc_softc_t * const sc, lmc_ctl_t * ctl)
  526. {
  527.   if (ctl == NULL)
  528.     {
  529.       sc->lmc_media->set_clock_source (sc, sc->ictl.clock_source);
  530.       sc->lmc_media->set_speed (sc, &sc->ictl);
  531.       lmc_set_protocol (sc, NULL);
  532.       return;
  533.     }
  534.   /*
  535.    * check for change in clock source
  536.    */
  537.   if (ctl->clock_source == LMC_CTL_CLOCK_SOURCE_INT
  538.       && sc->ictl.clock_source == LMC_CTL_CLOCK_SOURCE_EXT)
  539.     {
  540.       sc->lmc_media->set_clock_source (sc, LMC_CTL_CLOCK_SOURCE_INT);
  541.       sc->lmc_timing = LMC_CTL_CLOCK_SOURCE_INT;
  542.     }
  543.   else if (ctl->clock_source == LMC_CTL_CLOCK_SOURCE_EXT
  544.    && sc->ictl.clock_source == LMC_CTL_CLOCK_SOURCE_INT)
  545.     {
  546.       sc->lmc_media->set_clock_source (sc, LMC_CTL_CLOCK_SOURCE_EXT);
  547.       sc->lmc_timing = LMC_CTL_CLOCK_SOURCE_EXT;
  548.     }
  549.   if (ctl->clock_rate != sc->ictl.clock_rate)
  550.     sc->lmc_media->set_speed (sc, ctl);
  551.   lmc_set_protocol (sc, ctl);
  552. }
  553. /*
  554.  * 1 == internal, 0 == external
  555.  */
  556. static void
  557. lmc_ssi_set_clock (lmc_softc_t * const sc, int ie)
  558. {
  559.   int old;
  560.   old = ie;
  561.   if (ie == LMC_CTL_CLOCK_SOURCE_EXT)
  562.     {
  563.       sc->lmc_gpio &= ~(LMC_GEP_SSI_TXCLOCK);
  564.       LMC_CSR_WRITE (sc, csr_gp, sc->lmc_gpio);
  565.       sc->ictl.clock_source = LMC_CTL_CLOCK_SOURCE_EXT;
  566.       if(ie != old)
  567.         printk (LMC_PRINTF_FMT ": clock externaln", LMC_PRINTF_ARGS);
  568.     }
  569.   else
  570.     {
  571.       sc->lmc_gpio |= LMC_GEP_SSI_TXCLOCK;
  572.       LMC_CSR_WRITE (sc, csr_gp, sc->lmc_gpio);
  573.       sc->ictl.clock_source = LMC_CTL_CLOCK_SOURCE_INT;
  574.       if(ie != old)
  575.         printk (LMC_PRINTF_FMT ": clock internaln", LMC_PRINTF_ARGS);
  576.     }
  577. }
  578. static void
  579. lmc_ssi_set_speed (lmc_softc_t * const sc, lmc_ctl_t * ctl)
  580. {
  581.   lmc_ctl_t *ictl = &sc->ictl;
  582.   lmc_av9110_t *av;
  583.   /* original settings for clock rate of:
  584.    *  100 Khz (8,25,0,0,2) were incorrect
  585.    *  they should have been 80,125,1,3,3
  586.    *  There are 17 param combinations to produce this freq.
  587.    *  For 1.5 Mhz use 120,100,1,1,2 (226 param. combinations)
  588.    */
  589.   if (ctl == NULL)
  590.     {
  591.       av = &ictl->cardspec.ssi;
  592.       ictl->clock_rate = 1500000;
  593.       av->f = ictl->clock_rate;
  594.       av->n = 120;
  595.       av->m = 100;
  596.       av->v = 1;
  597.       av->x = 1;
  598.       av->r = 2;
  599.       write_av9110 (sc, av->n, av->m, av->v, av->x, av->r);
  600.       return;
  601.     }
  602.   av = &ctl->cardspec.ssi;
  603.   if (av->f == 0)
  604.     return;
  605.   ictl->clock_rate = av->f; /* really, this is the rate we are */
  606.   ictl->cardspec.ssi = *av;
  607.   write_av9110 (sc, av->n, av->m, av->v, av->x, av->r);
  608. }
  609. /*
  610.  * return hardware link status.
  611.  * 0 == link is down, 1 == link is up.
  612.  */
  613. static int
  614. lmc_ssi_get_link_status (lmc_softc_t * const sc)
  615. {
  616.   u_int16_t link_status;
  617.   u_int32_t ticks;
  618.   int ret = 1;
  619.   int hw_hdsk = 1;
  620.   
  621.   /*
  622.    * missing CTS?  Hmm.  If we require CTS on, we may never get the
  623.    * link to come up, so omit it in this test.
  624.    *
  625.    * Also, it seems that with a loopback cable, DCD isn't asserted,
  626.    * so just check for things like this:
  627.    *      DSR _must_ be asserted.
  628.    *      One of DCD or CTS must be asserted.
  629.    */
  630.   /* LMC 1000 (SSI) LED definitions
  631.    * led0 Green = power to adapter, Gate Array loaded &
  632.    *              driver attached
  633.    * led1 Green = DSR and DTR and RTS and CTS are set
  634.    * led2 Green = Cable detected
  635.    * led3 red   = No timing is available from the
  636.    *              cable or the on-board frequency
  637.    *              generator.
  638.    */
  639.   link_status = lmc_mii_readreg (sc, 0, 16);
  640.   /* Is the transmit clock still available */
  641.   ticks = LMC_CSR_READ (sc, csr_gp_timer);
  642.   ticks = 0x0000ffff - (ticks & 0x0000ffff);
  643.   lmc_led_on (sc, LMC_MII16_LED0);
  644.   /* ====== transmit clock determination ===== */
  645.   if (sc->lmc_timing == LMC_CTL_CLOCK_SOURCE_INT) {
  646.       lmc_led_off(sc, LMC_MII16_LED3);
  647.   }
  648.   else if (ticks == 0 ) { /* no clock found ? */
  649.       ret = 0;
  650.       if(sc->last_led_err[3] != 1){
  651.           sc->stats.tx_lossOfClockCnt++;
  652.           printk(KERN_WARNING "%s: Lost Clock, Link Downn", sc->name);
  653.       }
  654.       sc->last_led_err[3] = 1;
  655.       lmc_led_on (sc, LMC_MII16_LED3); /* turn ON red LED */
  656.   }
  657.   else {
  658.       if(sc->last_led_err[3] == 1)
  659.           printk(KERN_WARNING "%s: Clock Returnedn", sc->name);
  660.       sc->last_led_err[3] = 0;
  661.       lmc_led_off (sc, LMC_MII16_LED3); /* turn OFF red LED */
  662.   }
  663.   if ((link_status & LMC_MII16_SSI_DSR) == 0) { /* Also HSSI CA */
  664.       ret = 0;
  665.       hw_hdsk = 0;
  666.   }
  667. #ifdef CONFIG_LMC_IGNORE_HARDWARE_HANDSHAKE
  668.   if ((link_status & (LMC_MII16_SSI_CTS | LMC_MII16_SSI_DCD)) == 0){
  669.       ret = 0;
  670.       hw_hdsk = 0;
  671.   }
  672. #endif
  673.   if(hw_hdsk == 0){
  674.       if(sc->last_led_err[1] != 1)
  675.           printk(KERN_WARNING "%s: DSR not assertedn", sc->name);
  676.       sc->last_led_err[1] = 1;
  677.       lmc_led_off(sc, LMC_MII16_LED1);
  678.   }
  679.   else {
  680.       if(sc->last_led_err[1] != 0)
  681.           printk(KERN_WARNING "%s: DSR now assertedn", sc->name);
  682.       sc->last_led_err[1] = 0;
  683.       lmc_led_on(sc, LMC_MII16_LED1);
  684.   }
  685.   if(ret == 1) {
  686.       lmc_led_on(sc, LMC_MII16_LED2); /* Over all good status? */
  687.   }
  688.   
  689.   return ret;
  690. }
  691. static void
  692. lmc_ssi_set_link_status (lmc_softc_t * const sc, int state)
  693. {
  694.   if (state == LMC_LINK_UP)
  695.     {
  696.       sc->lmc_miireg16 |= (LMC_MII16_SSI_DTR | LMC_MII16_SSI_RTS);
  697.       printk (LMC_PRINTF_FMT ": asserting DTR and RTSn", LMC_PRINTF_ARGS);
  698.     }
  699.   else
  700.     {
  701.       sc->lmc_miireg16 &= ~(LMC_MII16_SSI_DTR | LMC_MII16_SSI_RTS);
  702.       printk (LMC_PRINTF_FMT ": deasserting DTR and RTSn", LMC_PRINTF_ARGS);
  703.     }
  704.   lmc_mii_writereg (sc, 0, 16, sc->lmc_miireg16);
  705. }
  706. /*
  707.  * 0 == 16bit, 1 == 32bit
  708.  */
  709. static void
  710. lmc_ssi_set_crc_length (lmc_softc_t * const sc, int state)
  711. {
  712.   if (state == LMC_CTL_CRC_LENGTH_32)
  713.     {
  714.       /* 32 bit */
  715.       sc->lmc_miireg16 |= LMC_MII16_SSI_CRC;
  716.       sc->ictl.crc_length = LMC_CTL_CRC_LENGTH_32;
  717.       sc->lmc_crcSize = LMC_CTL_CRC_BYTESIZE_4;
  718.     }
  719.   else
  720.     {
  721.       /* 16 bit */
  722.       sc->lmc_miireg16 &= ~LMC_MII16_SSI_CRC;
  723.       sc->ictl.crc_length = LMC_CTL_CRC_LENGTH_16;
  724.       sc->lmc_crcSize = LMC_CTL_CRC_BYTESIZE_2;
  725.     }
  726.   lmc_mii_writereg (sc, 0, 16, sc->lmc_miireg16);
  727. }
  728. /*
  729.  * These are bits to program the ssi frequency generator
  730.  */
  731. static inline void
  732. write_av9110_bit (lmc_softc_t * sc, int c)
  733. {
  734.   /*
  735.    * set the data bit as we need it.
  736.    */
  737.   sc->lmc_gpio &= ~(LMC_GEP_CLK);
  738.   if (c & 0x01)
  739.     sc->lmc_gpio |= LMC_GEP_DATA;
  740.   else
  741.     sc->lmc_gpio &= ~(LMC_GEP_DATA);
  742.   LMC_CSR_WRITE (sc, csr_gp, sc->lmc_gpio);
  743.   /*
  744.    * set the clock to high
  745.    */
  746.   sc->lmc_gpio |= LMC_GEP_CLK;
  747.   LMC_CSR_WRITE (sc, csr_gp, sc->lmc_gpio);
  748.   /*
  749.    * set the clock to low again.
  750.    */
  751.   sc->lmc_gpio &= ~(LMC_GEP_CLK);
  752.   LMC_CSR_WRITE (sc, csr_gp, sc->lmc_gpio);
  753. }
  754. static void
  755. write_av9110 (lmc_softc_t * sc, u_int32_t n, u_int32_t m, u_int32_t v,
  756.       u_int32_t x, u_int32_t r)
  757. {
  758.   int i;
  759. #if 0
  760.   printk (LMC_PRINTF_FMT ": speed %u, %d %d %d %d %dn",
  761.   LMC_PRINTF_ARGS, sc->ictl.clock_rate, n, m, v, x, r);
  762. #endif
  763.   sc->lmc_gpio |= LMC_GEP_SSI_GENERATOR;
  764.   sc->lmc_gpio &= ~(LMC_GEP_DATA | LMC_GEP_CLK);
  765.   LMC_CSR_WRITE (sc, csr_gp, sc->lmc_gpio);
  766.   /*
  767.    * Set the TXCLOCK, GENERATOR, SERIAL, and SERIALCLK
  768.    * as outputs.
  769.    */
  770.   lmc_gpio_mkoutput (sc, (LMC_GEP_DATA | LMC_GEP_CLK
  771.   | LMC_GEP_SSI_GENERATOR));
  772.   sc->lmc_gpio &= ~(LMC_GEP_SSI_GENERATOR);
  773.   LMC_CSR_WRITE (sc, csr_gp, sc->lmc_gpio);
  774.   /*
  775.    * a shifting we will go...
  776.    */
  777.   for (i = 0; i < 7; i++)
  778.     write_av9110_bit (sc, n >> i);
  779.   for (i = 0; i < 7; i++)
  780.     write_av9110_bit (sc, m >> i);
  781.   for (i = 0; i < 1; i++)
  782.     write_av9110_bit (sc, v >> i);
  783.   for (i = 0; i < 2; i++)
  784.     write_av9110_bit (sc, x >> i);
  785.   for (i = 0; i < 2; i++)
  786.     write_av9110_bit (sc, r >> i);
  787.   for (i = 0; i < 5; i++)
  788.     write_av9110_bit (sc, 0x17 >> i);
  789.   /*
  790.    * stop driving serial-related signals
  791.    */
  792.   lmc_gpio_mkinput (sc,
  793.     (LMC_GEP_DATA | LMC_GEP_CLK
  794.      | LMC_GEP_SSI_GENERATOR));
  795. }
  796. static void
  797. lmc_ssi_watchdog (lmc_softc_t * const sc)
  798. {
  799.   u_int16_t mii17;
  800.   struct ssicsr2
  801.   {
  802.     unsigned short dtr:1, dsr:1, rts:1, cable:3, crc:1, led0:1, led1:1,
  803.       led2:1, led3:1, fifo:1, ll:1, rl:1, tm:1, loop:1;
  804.   };
  805.   struct ssicsr2 *ssicsr;
  806.   mii17 = lmc_mii_readreg (sc, 0, 17);
  807.   ssicsr = (struct ssicsr2 *) &mii17;
  808.   if (ssicsr->cable == 7)
  809.     {
  810.       lmc_led_off (sc, LMC_MII16_LED2);
  811.     }
  812.   else
  813.     {
  814.       lmc_led_on (sc, LMC_MII16_LED2);
  815.     }
  816. }
  817. /*
  818.  *  T1 methods
  819.  */
  820. /*
  821.  * The framer regs are multiplexed through MII regs 17 & 18
  822.  *  write the register address to MII reg 17 and the *  data to MII reg 18. */
  823. static void
  824. lmc_t1_write (lmc_softc_t * const sc, int a, int d)
  825. {
  826.   lmc_mii_writereg (sc, 0, 17, a);
  827.   lmc_mii_writereg (sc, 0, 18, d);
  828. }
  829. /* Save a warning
  830. static int
  831. lmc_t1_read (lmc_softc_t * const sc, int a)
  832. {
  833.   lmc_mii_writereg (sc, 0, 17, a);
  834.   return lmc_mii_readreg (sc, 0, 18);
  835. }
  836. */
  837. static void
  838. lmc_t1_init (lmc_softc_t * const sc)
  839. {
  840.   u_int16_t mii16;
  841.   int i;
  842.   sc->ictl.cardtype = LMC_CTL_CARDTYPE_LMC1200;
  843.   mii16 = lmc_mii_readreg (sc, 0, 16);
  844.   /* reset 8370 */
  845.   mii16 &= ~LMC_MII16_T1_RST;
  846.   lmc_mii_writereg (sc, 0, 16, mii16 | LMC_MII16_T1_RST);
  847.   lmc_mii_writereg (sc, 0, 16, mii16);
  848.   /* set T1 or E1 line.  Uses sc->lmcmii16 reg in function so update it */
  849.   sc->lmc_miireg16 = mii16;
  850.   lmc_t1_set_circuit_type(sc, LMC_CTL_CIRCUIT_TYPE_T1);
  851.   mii16 = sc->lmc_miireg16;
  852.   lmc_t1_write (sc, 0x01, 0x1B); /* CR0     - primary control             */
  853.   lmc_t1_write (sc, 0x02, 0x42); /* JAT_CR  - jitter atten config         */
  854.   lmc_t1_write (sc, 0x14, 0x00); /* LOOP    - loopback config             */
  855.   lmc_t1_write (sc, 0x15, 0x00); /* DL3_TS  - external data link timeslot */
  856.   lmc_t1_write (sc, 0x18, 0xFF); /* PIO     - programmable I/O            */
  857.   lmc_t1_write (sc, 0x19, 0x30); /* POE     - programmable OE             */
  858.   lmc_t1_write (sc, 0x1A, 0x0F); /* CMUX    - clock input mux             */
  859.   lmc_t1_write (sc, 0x20, 0x41); /* LIU_CR  - RX LIU config               */
  860.   lmc_t1_write (sc, 0x22, 0x76); /* RLIU_CR - RX LIU config               */
  861.   lmc_t1_write (sc, 0x40, 0x03); /* RCR0    - RX config                   */
  862.   lmc_t1_write (sc, 0x45, 0x00); /* RALM    - RX alarm config             */
  863.   lmc_t1_write (sc, 0x46, 0x05); /* LATCH   - RX alarm/err/cntr latch     */
  864.   lmc_t1_write (sc, 0x68, 0x40); /* TLIU_CR - TX LIU config               */
  865.   lmc_t1_write (sc, 0x70, 0x0D); /* TCR0    - TX framer config            */
  866.   lmc_t1_write (sc, 0x71, 0x05); /* TCR1    - TX config                   */
  867.   lmc_t1_write (sc, 0x72, 0x0B); /* TFRM    - TX frame format             */
  868.   lmc_t1_write (sc, 0x73, 0x00); /* TERROR  - TX error insert             */
  869.   lmc_t1_write (sc, 0x74, 0x00); /* TMAN    - TX manual Sa/FEBE config    */
  870.   lmc_t1_write (sc, 0x75, 0x00); /* TALM    - TX alarm signal config      */
  871.   lmc_t1_write (sc, 0x76, 0x00); /* TPATT   - TX test pattern config      */
  872.   lmc_t1_write (sc, 0x77, 0x00); /* TLB     - TX inband loopback config   */
  873.   lmc_t1_write (sc, 0x90, 0x05); /* CLAD_CR - clock rate adapter config   */
  874.   lmc_t1_write (sc, 0x91, 0x05); /* CSEL    - clad freq sel               */
  875.   lmc_t1_write (sc, 0xA6, 0x00); /* DL1_CTL - DL1 control                 */
  876.   lmc_t1_write (sc, 0xB1, 0x00); /* DL2_CTL - DL2 control                 */
  877.   lmc_t1_write (sc, 0xD0, 0x47); /* SBI_CR  - sys bus iface config        */
  878.   lmc_t1_write (sc, 0xD1, 0x70); /* RSB_CR  - RX sys bus config           */
  879.   lmc_t1_write (sc, 0xD4, 0x30); /* TSB_CR  - TX sys bus config           */
  880.   for (i = 0; i < 32; i++)
  881.     {
  882.       lmc_t1_write (sc, 0x0E0 + i, 0x00); /* SBCn - sys bus per-channel ctl    */
  883.       lmc_t1_write (sc, 0x100 + i, 0x00); /* TPCn - TX per-channel ctl         */
  884.       lmc_t1_write (sc, 0x180 + i, 0x00); /* RPCn - RX per-channel ctl         */
  885.     }
  886.   for (i = 1; i < 25; i++)
  887.     {
  888.       lmc_t1_write (sc, 0x0E0 + i, 0x0D); /* SBCn - sys bus per-channel ctl    */
  889.     }
  890.   mii16 |= LMC_MII16_T1_XOE;
  891.   lmc_mii_writereg (sc, 0, 16, mii16);
  892.   sc->lmc_miireg16 = mii16;
  893. }
  894. static void
  895. lmc_t1_default (lmc_softc_t * const sc)
  896. {
  897.   sc->lmc_miireg16 = LMC_MII16_LED_ALL;
  898.   sc->lmc_media->set_link_status (sc, LMC_LINK_DOWN);
  899.   sc->lmc_media->set_circuit_type (sc, LMC_CTL_CIRCUIT_TYPE_T1);
  900.   sc->lmc_media->set_crc_length (sc, LMC_CTL_CRC_LENGTH_16);
  901.   /* Right now we can only clock from out internal source */
  902.   sc->ictl.clock_source = LMC_CTL_CLOCK_SOURCE_INT;
  903. }
  904. /* * Given a user provided state, set ourselves up to match it.  This will * always reset the card if needed.
  905.  */
  906. static void
  907. lmc_t1_set_status (lmc_softc_t * const sc, lmc_ctl_t * ctl)
  908. {
  909.   if (ctl == NULL)
  910.     {
  911.       sc->lmc_media->set_circuit_type (sc, sc->ictl.circuit_type);
  912.       lmc_set_protocol (sc, NULL);
  913.       return;
  914.     }
  915.   /*
  916.    * check for change in circuit type         */
  917.   if (ctl->circuit_type == LMC_CTL_CIRCUIT_TYPE_T1
  918.       && sc->ictl.circuit_type ==
  919.       LMC_CTL_CIRCUIT_TYPE_E1) sc->lmc_media->set_circuit_type (sc,
  920. LMC_CTL_CIRCUIT_TYPE_E1);
  921.   else if (ctl->circuit_type == LMC_CTL_CIRCUIT_TYPE_E1
  922.    && sc->ictl.circuit_type == LMC_CTL_CIRCUIT_TYPE_T1)
  923.     sc->lmc_media->set_circuit_type (sc, LMC_CTL_CIRCUIT_TYPE_T1);
  924.   lmc_set_protocol (sc, ctl);
  925. }
  926. /*
  927.  * return hardware link status.
  928.  * 0 == link is down, 1 == link is up.
  929.  */ static int
  930. lmc_t1_get_link_status (lmc_softc_t * const sc)
  931. {
  932.     u_int16_t link_status;
  933.     int ret = 1;
  934.   /* LMC5245 (DS3) & LMC1200 (DS1) LED definitions
  935.    * led0 yellow = far-end adapter is in Red alarm condition
  936.    * led1 blue   = received an Alarm Indication signal
  937.    *               (upstream failure)
  938.    * led2 Green  = power to adapter, Gate Array loaded & driver
  939.    *               attached
  940.    * led3 red    = Loss of Signal (LOS) or out of frame (OOF)
  941.    *               conditions detected on T3 receive signal
  942.    */
  943.     lmc_trace(sc->lmc_device, "lmc_t1_get_link_status in");
  944.     lmc_led_on(sc, LMC_DS3_LED2);
  945.     lmc_mii_writereg (sc, 0, 17, T1FRAMER_ALARM1_STATUS);
  946.     link_status = lmc_mii_readreg (sc, 0, 18);
  947.     if (link_status & T1F_RAIS) { /* turn on blue LED */
  948.         ret = 0;
  949.         if(sc->last_led_err[1] != 1){
  950.             printk(KERN_WARNING "%s: Receive AIS/Blue Alarm. Far end in RED alarmn", sc->name);
  951.         }
  952.         lmc_led_on(sc, LMC_DS3_LED1);
  953.         sc->last_led_err[1] = 1;
  954.     }
  955.     else {
  956.         if(sc->last_led_err[1] != 0){
  957.             printk(KERN_WARNING "%s: End AIS/Blue Alarmn", sc->name);
  958.         }
  959.         lmc_led_off (sc, LMC_DS3_LED1);
  960.         sc->last_led_err[1] = 0;
  961.     }
  962.     /*
  963.      * Yellow Alarm is nasty evil stuff, looks at data patterns
  964.      * inside the channel and confuses it with HDLC framing
  965.      * ignore all yellow alarms.
  966.      *
  967.      * Do listen to MultiFrame Yellow alarm which while implemented
  968.      * different ways isn't in the channel and hence somewhat
  969.      * more reliable
  970.      */
  971.     if (link_status & T1F_RMYEL) {
  972.         ret = 0;
  973.         if(sc->last_led_err[0] != 1){
  974.             printk(KERN_WARNING "%s: Receive Yellow AIS Alarmn", sc->name);
  975.         }
  976.         lmc_led_on(sc, LMC_DS3_LED0);
  977.         sc->last_led_err[0] = 1;
  978.     }
  979.     else {
  980.         if(sc->last_led_err[0] != 0){
  981.             printk(KERN_WARNING "%s: End of Yellow AIS Alarmn", sc->name);
  982.         }
  983.         lmc_led_off(sc, LMC_DS3_LED0);
  984.         sc->last_led_err[0] = 0;
  985.     }
  986.     /*
  987.      * Loss of signal and los of frame
  988.      * Use the green bit to identify which one lit the led
  989.      */
  990.     if(link_status & T1F_RLOF){
  991.         ret = 0;
  992.         if(sc->last_led_err[3] != 1){
  993.             printk(KERN_WARNING "%s: Local Red Alarm: Loss of Framingn", sc->name);
  994.         }
  995.         lmc_led_on(sc, LMC_DS3_LED3);
  996.         sc->last_led_err[3] = 1;
  997.     }
  998.     else {
  999.         if(sc->last_led_err[3] != 0){
  1000.             printk(KERN_WARNING "%s: End Red Alarm (LOF)n", sc->name);
  1001.         }
  1002.         if( ! (link_status & T1F_RLOS))
  1003.             lmc_led_off(sc, LMC_DS3_LED3);
  1004.         sc->last_led_err[3] = 0;
  1005.     }
  1006.     
  1007.     if(link_status & T1F_RLOS){
  1008.         ret = 0;
  1009.         if(sc->last_led_err[2] != 1){
  1010.             printk(KERN_WARNING "%s: Local Red Alarm: Loss of Signaln", sc->name);
  1011.         }
  1012.         lmc_led_on(sc, LMC_DS3_LED3);
  1013.         sc->last_led_err[2] = 1;
  1014.     }
  1015.     else {
  1016.         if(sc->last_led_err[2] != 0){
  1017.             printk(KERN_WARNING "%s: End Red Alarm (LOS)n", sc->name);
  1018.         }
  1019.         if( ! (link_status & T1F_RLOF))
  1020.             lmc_led_off(sc, LMC_DS3_LED3);
  1021.         sc->last_led_err[2] = 0;
  1022.     }
  1023.     sc->lmc_xinfo.t1_alarm1_status = link_status;
  1024.     lmc_mii_writereg (sc, 0, 17, T1FRAMER_ALARM2_STATUS);
  1025.     sc->lmc_xinfo.t1_alarm2_status = lmc_mii_readreg (sc, 0, 18);
  1026.     
  1027.     lmc_trace(sc->lmc_device, "lmc_t1_get_link_status out");
  1028.     return ret;
  1029. }
  1030. /*
  1031.  * 1 == T1 Circuit Type , 0 == E1 Circuit Type
  1032.  */
  1033. static void
  1034. lmc_t1_set_circuit_type (lmc_softc_t * const sc, int ie)
  1035. {
  1036.   if (ie == LMC_CTL_CIRCUIT_TYPE_T1) {
  1037.       sc->lmc_miireg16 |= LMC_MII16_T1_Z;
  1038.       sc->ictl.circuit_type = LMC_CTL_CIRCUIT_TYPE_T1;
  1039.       printk(KERN_INFO "%s: In T1 Moden", sc->name);
  1040.   }
  1041.   else {
  1042.       sc->lmc_miireg16 &= ~LMC_MII16_T1_Z;
  1043.       sc->ictl.circuit_type = LMC_CTL_CIRCUIT_TYPE_E1;
  1044.       printk(KERN_INFO "%s: In E1 Moden", sc->name);
  1045.   }
  1046.   lmc_mii_writereg (sc, 0, 16, sc->lmc_miireg16);
  1047.   
  1048. }
  1049. /*
  1050.  * 0 == 16bit, 1 == 32bit */
  1051. static void
  1052. lmc_t1_set_crc_length (lmc_softc_t * const sc, int state)
  1053. {
  1054.   if (state == LMC_CTL_CRC_LENGTH_32)
  1055.     {
  1056.       /* 32 bit */
  1057.       sc->lmc_miireg16 |= LMC_MII16_T1_CRC;
  1058.       sc->ictl.crc_length = LMC_CTL_CRC_LENGTH_32;
  1059.       sc->lmc_crcSize = LMC_CTL_CRC_BYTESIZE_4;
  1060.     }
  1061.   else
  1062.     {
  1063.       /* 16 bit */ sc->lmc_miireg16 &= ~LMC_MII16_T1_CRC;
  1064.       sc->ictl.crc_length = LMC_CTL_CRC_LENGTH_16;
  1065.       sc->lmc_crcSize = LMC_CTL_CRC_BYTESIZE_2;
  1066.     }
  1067.   lmc_mii_writereg (sc, 0, 16, sc->lmc_miireg16);
  1068. }
  1069. /*
  1070.  * 1 == internal, 0 == external
  1071.  */
  1072. static void
  1073. lmc_t1_set_clock (lmc_softc_t * const sc, int ie)
  1074. {
  1075.   int old;
  1076.   old = ie;
  1077.   if (ie == LMC_CTL_CLOCK_SOURCE_EXT)
  1078.     {
  1079.       sc->lmc_gpio &= ~(LMC_GEP_SSI_TXCLOCK);
  1080.       LMC_CSR_WRITE (sc, csr_gp, sc->lmc_gpio);
  1081.       sc->ictl.clock_source = LMC_CTL_CLOCK_SOURCE_EXT;
  1082.       if(old != ie)
  1083.         printk (LMC_PRINTF_FMT ": clock externaln", LMC_PRINTF_ARGS);
  1084.     }
  1085.   else
  1086.     {
  1087.       sc->lmc_gpio |= LMC_GEP_SSI_TXCLOCK;
  1088.       LMC_CSR_WRITE (sc, csr_gp, sc->lmc_gpio);
  1089.       sc->ictl.clock_source = LMC_CTL_CLOCK_SOURCE_INT;
  1090.       if(old != ie)
  1091.         printk (LMC_PRINTF_FMT ": clock internaln", LMC_PRINTF_ARGS);
  1092.     }
  1093. }
  1094. static void
  1095. lmc_t1_watchdog (lmc_softc_t * const sc)
  1096. {
  1097. }
  1098. static void
  1099. lmc_set_protocol (lmc_softc_t * const sc, lmc_ctl_t * ctl)
  1100. {
  1101.   if (ctl == 0)
  1102.     {
  1103.       sc->ictl.keepalive_onoff = LMC_CTL_ON;
  1104.       return;
  1105.     }
  1106. }